X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=Translator.hs;h=37a812b2bceca493cf1e95824c6b7ea4b4484d4e;hb=b2a68b424663d5a909791080c416a54088321936;hp=30a71c5a2e68b51ef744ec917fa43f6c150e1a0f;hpb=fcd5e88b1c14a3129253de9e8c225e3b13e041e7;p=matthijs%2Fmaster-project%2Fc%CE%BBash.git diff --git a/Translator.hs b/Translator.hs index 30a71c5..37a812b 100644 --- a/Translator.hs +++ b/Translator.hs @@ -70,9 +70,14 @@ main = mapM processBind binds modFuncs nameFlatFunction modFuncs VHDL.createEntity + modFuncs VHDL.createArchitecture + -- Extract the library units generated from all the functions in the + -- session. + funcs <- getFuncs + let units = concat $ map VHDL.getLibraryUnits funcs return $ AST.DesignFile [] - [] + units findBind :: [CoreBind] -> String -> Maybe CoreBind findBind binds lookfor = @@ -111,7 +116,7 @@ flattenBind hsfunc bind@(NonRec var expr) = do let flatfunc = flattenFunction hsfunc bind addFunc hsfunc setFlatFunc hsfunc flatfunc - let used_hsfuncs = map appFunc (apps flatfunc) + let used_hsfuncs = map appFunc (flat_apps flatfunc) State.mapM resolvFunc used_hsfuncs return () @@ -172,19 +177,19 @@ mkHsFunction f ty = 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 = sigs flatfunc in - let s' = map (\(id, (SignalInfo Nothing)) -> (id, SignalInfo (Just $ "sig_" ++ (show id)))) s in - let flatfunc' = flatfunc { sigs = s' } in - fdata { flatFunc = 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 + setFlatFunc hsfunc flatfunc' -- | Splits a tuple type into a list of element types, or Nothing if the type -- is not a tuple type.