Name signals in a function after flattening it.
[matthijs/master-project/cλash.git] / TranslatorTypes.hs
index 4ced7de59b5bd5c28a23ebb7a398f322b5251729..271a5d39c019b56faab9e2112c6cedcdf13e9e94 100644 (file)
@@ -46,6 +46,13 @@ setFlatFunc hsfunc flatfunc = do
   let fs'= Map.adjust (\d -> d { flatFunc = Just flatfunc }) hsfunc fs
   State.modify (\x -> x {funcs = fs' })
 
+-- | Modify all functions in the map using the given function
+modFuncs :: (HsFunction -> FuncData -> FuncData) -> VHDLState ()
+modFuncs f = do
+  fs <- State.gets funcs -- Get the funcs element from the session
+  let fs' = Map.mapWithKey f fs
+  State.modify (\x -> x {funcs = fs' })
+
 getModule :: VHDLState HscTypes.CoreModule
 getModule = State.gets coreMod -- Get the coreMod element from the session