nameFlatFunction ::
HsFunction
-> FuncData
- -> FuncData
+ -> VHDLState ()
nameFlatFunction hsfunc fdata =
let func = flatFunc fdata in
case func of
-- Skip (builtin) functions without a FlatFunction
- Nothing -> fdata
+ Nothing -> do return ()
-- Name the signals in all other functions
Just flatfunc ->
let s = flat_sigs flatfunc in
let s' = map (\(id, (SignalInfo Nothing ty)) -> (id, SignalInfo (Just $ "sig_" ++ (show id)) ty)) s in
let flatfunc' = flatfunc { flat_sigs = s' } in
- fdata { flatFunc = Just flatfunc' }
+ setFlatFunc hsfunc flatfunc'
-- | Splits a tuple type into a list of element types, or Nothing if the type
-- is not a tuple type.
fs <- State.gets funcs -- Get the funcs element from the session
return $ Map.toList fs
--- | Sets the FlatFunction for the given HsFunction in the given setting.
+-- | Gets all the functions from the current session
+getHsFuncs :: VHDLState [HsFunction]
+getHsFuncs = do
+ fs <- State.gets funcs -- Get the funcs element from the session
+ return $ Map.keys fs
+
+-- | Sets the FlatFunction for the given HsFunction in the current session.
setFlatFunc :: HsFunction -> FlatFunction -> VHDLState ()
setFlatFunc hsfunc flatfunc =
modFunc (\d -> d { flatFunc = Just flatfunc }) hsfunc
+-- | Sets the Entity for the given HsFunction in the current session.
+setEntity :: HsFunction -> Entity -> VHDLState ()
+setEntity hsfunc entity =
+ modFunc (\d -> d { funcEntity = Just entity }) hsfunc
+
+-- | Sets the Entity for the given HsFunction in the current session.
+setArchitecture :: HsFunction -> AST.ArchBody -> VHDLState ()
+setArchitecture hsfunc arch =
+ modFunc (\d -> d { funcArch = Just arch }) hsfunc
+
-- | Modify a function in the map using the given function
modFunc :: (FuncData -> FuncData) -> HsFunction -> VHDLState ()
modFunc f hsfunc =
let fs' = f fs
State.modify (\x -> x {funcs = fs' })
--- | Modify all functions in the map using the given function
-modFuncs :: (HsFunction -> FuncData -> FuncData) -> VHDLState ()
-modFuncs f =
- modFuncMap (Map.mapWithKey f)
+-- | Apply the given function to all functions in the map, and collect the
+-- results. The function is allowed to change the function map in the
+-- session, but any new functions added will not be mapped.
+modFuncs :: (HsFunction -> FuncData -> VHDLState ()) -> VHDLState ()
+modFuncs f = do
+ hsfuncs <- getHsFuncs
+ mapM doFunc hsfuncs
+ return ()
+ where
+ doFunc hsfunc = do
+ fdata_maybe <- getFunc hsfunc
+ case fdata_maybe of
+ Nothing -> do return ()
+ Just fdata -> f hsfunc fdata
getModule :: VHDLState HscTypes.CoreModule
getModule = State.gets coreMod -- Get the coreMod element from the session
createEntity ::
HsFunction -- | The function signature
-> FuncData -- | The function data collected so far
- -> FuncData -- | The modified function data
+ -> VHDLState ()
createEntity hsfunc fdata =
let func = flatFunc fdata in
case func of
-- Skip (builtin) functions without a FlatFunction
- Nothing -> fdata
+ Nothing -> do return ()
-- Create an entity for all other functions
Just flatfunc ->
ent_decl' = createEntityAST hsfunc args' res'
entity' = Entity args' res' (Just ent_decl')
in
- fdata { funcEntity = Just entity' }
+ setEntity hsfunc entity'
where
mkMap :: Eq id => [(id, SignalInfo)] -> id -> (AST.VHDLId, AST.TypeMark)
mkMap sigmap id =
createArchitecture ::
HsFunction -- | The function signature
-> FuncData -- | The function data collected so far
- -> FuncData -- | The modified function data
+ -> VHDLState ()
createArchitecture hsfunc fdata =
let func = flatFunc fdata in
case func of
-- Skip (builtin) functions without a FlatFunction
- Nothing -> fdata
+ Nothing -> do return ()
-- Create an architecture for all other functions
Just flatfunc ->
let
insts = map (AST.CSISm . mkCompInsSm) apps
arch = AST.ArchBody (mkVHDLId "structural") (AST.NSimple entity_id) (map AST.BDISD sig_decs) insts
in
- fdata { funcArch = Just arch }
+ setArchitecture hsfunc arch
mkSigDec :: SignalInfo -> AST.SigDec
mkSigDec info =