X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fmaster-project%2Fc%CE%BBash.git;a=blobdiff_plain;f=FlattenTypes.hs;h=bd6c1d5996cf2a75c6f6b9595444a795684c6e31;hp=f20fbc30f11f0c9bc8ac0379fa63d3b0d7af3c78;hb=HEAD;hpb=d8c4021114afc1f860763b3a8dceff3f219d4798 diff --git a/FlattenTypes.hs b/FlattenTypes.hs index f20fbc3..bd6c1d5 100644 --- a/FlattenTypes.hs +++ b/FlattenTypes.hs @@ -113,14 +113,18 @@ 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 - | Literal String -- ^ A literal value + | Literal String (Maybe Type.Type)-- ^ A literal value, with an optional type to cast to | Eq SignalId SignalId -- ^ A comparison between to signals deriving (Show, Eq) +-- Instantiate Eq for Type, so we can derive Eq for SignalExpr. +instance Eq Type.Type where + (==) = Type.coreEqType + -- | Which signals are used by the given SignalExpr? sigExprUses :: SignalExpr -> [SignalId] sigExprUses (EqLit id _) = [id] -sigExprUses (Literal _) = [] +sigExprUses (Literal _ _) = [] sigExprUses (Eq a b) = [a, b] -- Returns the function used by the given SigDef, if any