X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=VHDLTypes.hs;h=0a81b7bf75534d314c928ca5e1b3f1f2ca0a89db;hb=3b0ce3044e2c62906a4b26cd7e1b004fea88c21e;hp=c1d9332f993d340772e2d7d9cfbb19a60187ab52;hpb=1a10d214e6ffc7097c0f4bddf16f0dd87b5355a8;p=matthijs%2Fmaster-project%2Fc%CE%BBash.git diff --git a/VHDLTypes.hs b/VHDLTypes.hs index c1d9332..0a81b7b 100644 --- a/VHDLTypes.hs +++ b/VHDLTypes.hs @@ -48,11 +48,24 @@ type TypeFunMap = Map.Map (OrdType, String) (AST.VHDLId, AST.SubProgBody) -- A map of a Haskell function to a hardware signature type SignatureMap = Map.Map CoreSyn.CoreBndr Entity -data VHDLState = VHDLState { +data TypeState = TypeState { -- | A map of Core type -> VHDL Type vsTypes_ :: TypeMap, + -- | A list of type declarations + vsTypeDecls_ :: [AST.PackageDecItem], -- | A map of vector Core type -> VHDL type function - vsTypeFuns_ :: TypeFunMap, + vsTypeFuns_ :: TypeFunMap +} +-- Derive accessors +$( Data.Accessor.Template.deriveAccessors ''TypeState ) +-- Define an empty TypeState +emptyTypeState = TypeState Map.empty [] Map.empty +-- Define a session +type TypeSession = State.State TypeState + +data VHDLState = VHDLState { + -- | A subtype with typing info + vsType_ :: TypeState, -- | A map of HsFunction -> hardware signature (entity name, port names, -- etc.) vsSignatures_ :: SignatureMap @@ -64,9 +77,6 @@ $( Data.Accessor.Template.deriveAccessors ''VHDLState ) -- | The state containing a VHDL Session type VHDLSession = State.State VHDLState --- | A substate containing just the types -type TypeState = State.State TypeMap - -- A function that generates VHDL for a builtin function type BuiltinBuilder = (Either CoreSyn.CoreBndr AST.VHDLName) -- ^ The destination signal and it's original type