X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=VHDLTypes.hs;fp=VHDLTypes.hs;h=0a81b7bf75534d314c928ca5e1b3f1f2ca0a89db;hb=afd269e5653952394495a7a14ad1bfc0c0146b39;hp=61fb0035650002fa61c95db39bb6c56429114bfb;hpb=51de92c87cbd5a40c7e58480deef1af00418790f;p=matthijs%2Fmaster-project%2Fc%CE%BBash.git diff --git a/VHDLTypes.hs b/VHDLTypes.hs index 61fb003..0a81b7b 100644 --- a/VHDLTypes.hs +++ b/VHDLTypes.hs @@ -48,13 +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 @@ -66,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