X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=Translator.hs;h=b7d3e0ef32d681fc2f80562212a79d7960611a54;hb=30a05fb3678f430135654b3f5d6612b409b7cd39;hp=d0738d3f9175a8058d3621bdf17479d52ff3b517;hpb=535eeae192a34920407f47626fea2534bb5c263b;p=matthijs%2Fmaster-project%2Fc%CE%BBash.git diff --git a/Translator.hs b/Translator.hs index d0738d3..b7d3e0e 100644 --- a/Translator.hs +++ b/Translator.hs @@ -68,9 +68,15 @@ main = mapM addBuiltIn builtin_funcs -- Create entities and architectures for them mapM processBind binds + modFuncs nameFlatFunction + modFuncs VHDL.createEntity + -- 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 = @@ -166,6 +172,24 @@ mkHsFunction f ty = error $ "Input state type of function " ++ hsname ++ ": " ++ (showSDoc $ ppr state_ty) ++ " does not match output state type: " ++ (showSDoc $ ppr outstate_ty) otherwise -> error $ "Return type of top-level function " ++ hsname ++ " must be a two-tuple containing a state and output ports." +-- | Adds signal names to the given FlatFunction +nameFlatFunction :: + HsFunction + -> FuncData + -> FuncData + +nameFlatFunction hsfunc fdata = + let func = flatFunc fdata in + case func of + -- Skip (builtin) functions without a FlatFunction + Nothing -> fdata + -- 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' } + -- | Splits a tuple type into a list of element types, or Nothing if the type -- is not a tuple type. splitTupleType ::