From: Matthijs Kooijman Date: Thu, 5 Mar 2009 13:36:36 +0000 (+0100) Subject: Remove createEntity from the VHDLState monad. X-Git-Url: https://git.stderr.nl/gitweb?a=commitdiff_plain;h=d3a445954d4e2f93ff64839f4db72e7541b69a86;hp=bf0b6fedf46d525cc7e4d389b4fb7dd539174939;p=matthijs%2Fmaster-project%2Fc%CE%BBash.git Remove createEntity from the VHDLState monad. --- diff --git a/Translator.hs b/Translator.hs index 5e36b38..6a78425 100644 --- a/Translator.hs +++ b/Translator.hs @@ -92,7 +92,7 @@ moduleToVHDL core list = do -- Create entities and architectures for them Monad.zipWithM processBind statefuls binds modFuncs nameFlatFunction - modFuncs VHDL.createEntity + modFuncMap $ Map.mapWithKey (\hsfunc fdata -> fdata {funcEntity = VHDL.createEntity hsfunc fdata}) modFuncs VHDL.createArchitecture funcs <- getFuncs return $ VHDL.getDesignFiles (map snd funcs) diff --git a/VHDL.hs b/VHDL.hs index d9dce9e..6f3705e 100644 --- a/VHDL.hs +++ b/VHDL.hs @@ -38,13 +38,12 @@ getDesignFiles funcs = createEntity :: HsFunction -- | The function signature -> FuncData -- | The function data collected so far - -> VHDLState () + -> Maybe Entity -- | The resulting entity createEntity hsfunc fdata = - let func = flatFunc fdata in - case func of + case flatFunc fdata of -- Skip (builtin) functions without a FlatFunction - Nothing -> do return () + Nothing -> Nothing -- Create an entity for all other functions Just flatfunc -> let @@ -60,9 +59,8 @@ createEntity hsfunc fdata = then Nothing else Just $ AST.PackageDec pkg_id (map AST.PDITD $ ty_decls ++ ty_decls') AST.EntityDec entity_id _ = ent_decl' - entity' = Entity entity_id args' res' (Just ent_decl') pkg_decl - in do - setEntity hsfunc entity' + in + Just $ Entity entity_id args' res' (Just ent_decl') pkg_decl where mkMap :: [(SignalId, SignalInfo)]