X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=Pretty.hs;h=cb1f9fc7c1256900cb0476f0c993f43c953fdc3d;hb=6b3da07384004751bc64ef88429f452dfe1cee45;hp=6608f809088919db992ff7d5a57d62cb2ba623a4;hpb=1e30fe04f4c285970ad2d5e23930dd935b4214fa;p=matthijs%2Fmaster-project%2Fc%CE%BBash.git diff --git a/Pretty.hs b/Pretty.hs index 6608f80..cb1f9fc 100644 --- a/Pretty.hs +++ b/Pretty.hs @@ -1,6 +1,9 @@ module Pretty (prettyShow) where import qualified Data.Map as Map +import qualified Data.Foldable as Foldable +import qualified List + import qualified Var import qualified CoreSyn import qualified TypeRep @@ -36,17 +39,25 @@ instance Pretty x => Pretty (HsValueMap x) where instance Pretty HsValueUse where pPrint Port = char 'P' - pPrint (State n) = char 'C' <> int n + pPrint (State n) = char 'S' <> int n pPrint (HighOrder _ _) = text "Higher Order" instance Pretty FlatFunction where pPrint (FlatFunction args res defs sigs) = (text "Args: ") $$ nest 10 (pPrint args) $+$ (text "Result: ") $$ nest 10 (pPrint res) - $+$ (text "Defs: ") $$ nest 10 (pPrint defs) + $+$ (text "Defs: ") $$ nest 10 (ppdefs defs) $+$ text "Signals: " $$ nest 10 (printList ppsig sigs) where ppsig (id, info) = pPrint id <> pPrint info + ppdefs defs = vcat (map pPrint sorted) + where + -- Roughly sort the entries (inaccurate for Fapps) + sorted = List.sortBy (\a b -> compare (sigDefDst a) (sigDefDst b)) defs + sigDefDst (FApp _ _ dst) = head $ Foldable.toList dst + sigDefDst (CondDef _ _ _ dst) = dst + sigDefDst (UncondDef _ dst) = dst + instance Pretty SigDef where pPrint (FApp func args res) = @@ -62,6 +73,10 @@ instance Pretty SigDef where instance Pretty SignalExpr where pPrint (EqLit id lit) = parens $ pPrint id <> text " = " <> text lit + pPrint (Literal lit) = + text lit + pPrint (Eq a b) = + parens $ pPrint a <> text " = " <> pPrint b instance Pretty SignalInfo where pPrint (SignalInfo name use ty) =