X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=FlattenTypes.hs;h=c7e0c1e79e6eca5c771c455052b2860b467ca870;hb=1e30fe04f4c285970ad2d5e23930dd935b4214fa;hp=8dbdc3b6ab2b9b1a676cd554ba72a78d96e52b38;hpb=d704c6a23e75f563d4816a0e01219fa7a3be266c;p=matthijs%2Fmaster-project%2Fc%CE%BBash.git diff --git a/FlattenTypes.hs b/FlattenTypes.hs index 8dbdc3b..c7e0c1e 100644 --- a/FlattenTypes.hs +++ b/FlattenTypes.hs @@ -92,10 +92,15 @@ data SigDef = } -- | Unconditional signal definition | UncondDef { - defSrc :: SignalId, + defSrc :: Either SignalId SignalExpr, defDst :: SignalId } deriving (Show, Eq) +-- | An expression on signals +data SignalExpr = + EqLit SignalId String -- ^ Is the given signal equal to the given (VHDL) literal + deriving (Show, Eq) + -- Returns the function used by the given SigDef, if any usedHsFunc :: SigDef -> Maybe HsFunction usedHsFunc (FApp hsfunc _ _) = Just hsfunc @@ -150,6 +155,10 @@ signalInfo sigs id = Maybe.fromJust $ lookup id sigs -- | A list of binds in effect at a particular point of evaluation type BindMap = [( CoreBndr, -- ^ The bind name + BindValue -- ^ The value bound to it + )] + +type BindValue = Either -- ^ The bind value which is either (SignalMap) -- ^ a signal @@ -157,7 +166,6 @@ type BindMap = [( HsValueUse, -- ^ or a HighOrder function [SignalId] -- ^ With these signals already applied to it ) - )] -- | The state during the flattening of a single function type FlattenState = State.State ([SigDef], [(SignalId, SignalInfo)], SignalId)