X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=FlattenTypes.hs;h=f20fbc30f11f0c9bc8ac0379fa63d3b0d7af3c78;hb=2fc713015ccdabfb4f979546c3ecd0dd40329bb8;hp=eba0599e271ce1245c5bf5549814a866d9d9be54;hpb=ab69875b604cf6e97bb3c9c19f4d997a57578ec4;p=matthijs%2Fmaster-project%2Fc%CE%BBash.git diff --git a/FlattenTypes.hs b/FlattenTypes.hs index eba0599..f20fbc3 100644 --- a/FlattenTypes.hs +++ b/FlattenTypes.hs @@ -3,12 +3,13 @@ module FlattenTypes where import qualified Maybe import Data.Traversable import qualified Data.Foldable as Foldable -import qualified Control.Monad.State as State +import qualified Control.Monad.Trans.State as State import CoreSyn import qualified Type import HsValueMap +import CoreShow -- | A signal identifier type SignalId = Int @@ -102,6 +103,13 @@ is_FApp d = case d of (FApp _ _ _) -> True _ -> False +-- | Which signals are used by the given SigDef? +sigDefUses :: SigDef -> [SignalId] +sigDefUses (UncondDef (Left id) _) = [id] +sigDefUses (UncondDef (Right expr) _) = sigExprUses expr +sigDefUses (CondDef cond true false _) = [cond, true, false] +sigDefUses (FApp _ args _) = concat $ map Foldable.toList args + -- | An expression on signals data SignalExpr = EqLit SignalId String -- ^ Is the given signal equal to the given (VHDL) literal @@ -109,6 +117,12 @@ data SignalExpr = | Eq SignalId SignalId -- ^ A comparison between to signals deriving (Show, Eq) +-- | Which signals are used by the given SignalExpr? +sigExprUses :: SignalExpr -> [SignalId] +sigExprUses (EqLit id _) = [id] +sigExprUses (Literal _) = [] +sigExprUses (Eq a b) = [a, b] + -- Returns the function used by the given SigDef, if any usedHsFunc :: SigDef -> Maybe HsFunction usedHsFunc (FApp hsfunc _ _) = Just hsfunc @@ -122,6 +136,7 @@ data SigUse = | SigStateOld StateId -- | Use as the current internal state | SigStateNew StateId -- | Use as the new internal state | SigSubState -- | Do not use, state variable is used in a subcircuit + deriving (Show) -- | Is this a port signal use? isPortSigUse :: SigUse -> Bool @@ -140,13 +155,21 @@ isInternalSigUse :: SigUse -> Bool isInternalSigUse SigInternal = True isInternalSigUse _ = False +oldStateId :: SigUse -> Maybe StateId +oldStateId (SigStateOld id) = Just id +oldStateId _ = Nothing + +newStateId :: SigUse -> Maybe StateId +newStateId (SigStateNew id) = Just id +newStateId _ = Nothing + -- | Information on a signal definition data SignalInfo = SignalInfo { sigName :: Maybe String, sigUse :: SigUse, sigTy :: Type.Type, nameHints :: [String] -} +} deriving (Show) -- | A flattened function data FlatFunction = FlatFunction { @@ -154,7 +177,7 @@ data FlatFunction = FlatFunction { flat_res :: SignalMap, flat_defs :: [SigDef], flat_sigs :: [(SignalId, SignalInfo)] -} +} deriving (Show) -- | Lookup a given signal id in a signal map, and return the associated -- SignalInfo. Errors out if the signal was not found.