[project @ 1998-03-08 22:44:44 by simonpj]
[ghc-hetmet.git] / ghc / compiler / coreSyn / PprCore.lhs
index 770e9bf..9eeadaf 100644 (file)
@@ -8,41 +8,26 @@
 %************************************************************************
 
 \begin{code}
-#include "HsVersions.h"
-
 module PprCore (
-       pprCoreExpr,
-       pprCoreBinding,
-       pprBigCoreBinder,
-       pprTypedCoreBinder,
-       pprPlainCoreBinding
-       
-       -- these are here to make the instances go in 0.26:
-#if __GLASGOW_HASKELL__ <= 26
-       , GenCoreBinding, GenCoreExpr, GenCoreCaseAlts
-       , GenCoreCaseDefault, GenCoreArg
-#endif
+       pprCoreExpr, pprIfaceUnfolding, 
+       pprCoreBinding, pprCoreBindings
     ) where
 
-import Ubiq{-uitous-}
+#include "HsVersions.h"
 
 import CoreSyn
 import CostCentre      ( showCostCentre )
-import Id              ( idType, getIdInfo, getIdStrictness,
-                         nullIdEnv, DataCon(..), GenId{-instances-}
-                       )
-import IdInfo          ( ppIdInfo, StrictnessInfo(..) )
+import Id              ( idType, getIdInfo, isTupleCon,
+                         DataCon, GenId{-instances-}, Id
+                       ) 
+import IdInfo          ( ppIdInfo, ppStrictnessInfo )
 import Literal         ( Literal{-instances-} )
 import Outputable      -- quite a few things
-import PprType         ( pprType_Internal,
-                         GenType{-instances-}, GenTyVar{-instance-}
-                       )
-import PprStyle                ( PprStyle(..) )
-import Pretty
+import PprEnv
+import PprType         ( pprParendGenType, pprTyVarBndr, GenType{-instances-}, GenTyVar{-instance-} )
 import PrimOp          ( PrimOp{-instances-} )
 import TyVar           ( GenTyVar{-instances-} )
 import Unique          ( Unique{-instances-} )
-import Usage           ( GenUsage{-instances-} )
 import Util            ( panic{-ToDo:rm-} )
 \end{code}
 
@@ -58,7 +43,7 @@ function for ``major'' val_bdrs (those next to equal signs :-),
 usually be called through some intermediary.
 
 The binder/occ printers take the default ``homogenized'' (see
-@PrintEnv@...) @Pretty@ and the binder/occ.  They can either use the
+@PprEnv@...) @Doc@ and the binder/occ.  They can either use the
 homogenized one, or they can ignore it completely.  In other words,
 the things passed in act as ``hooks'', getting the last word on how to
 print something.
@@ -66,70 +51,76 @@ print something.
 @pprParendCoreExpr@ puts parens around non-atomic Core expressions.
 
 \begin{code}
-pprPlainCoreBinding :: PprStyle -> CoreBinding -> Pretty
-
-pprCoreBinding
-       :: (Eq tyvar, Outputable tyvar,
-           Eq uvar,  Outputable uvar,
-           Outputable bndr,
-           Outputable occ)
-       => PprStyle
-       -> (bndr -> Pretty)     -- to print "major" val_bdrs
-       -> (bndr -> Pretty)     -- to print "minor" val_bdrs
-       -> (occ  -> Pretty)     -- to print bindees
-       -> GenCoreBinding bndr occ tyvar uvar
-       -> Pretty
-
-pprCoreBinding sty pbdr1 pbdr2 pocc bind
-  = ppr_bind (initial_pe sty (Left (pbdr1, pbdr2, pocc))) bind
-
-pprPlainCoreBinding sty (NonRec binder expr)
-  = ppHang (ppCat [pprBigCoreBinder sty binder, ppEquals])
-        4 (pprCoreExpr sty (pprBigCoreBinder sty) (pprBabyCoreBinder sty) (ppr sty) expr)
-
-pprPlainCoreBinding sty (Rec binds)
-  = ppAboves [ifPprDebug sty (ppStr "{- plain Rec -}"),
-             ppAboves (map ppr_bind binds),
-             ifPprDebug sty (ppStr "{- end plain Rec -}")]
+pprCoreBinding  :: CoreBinding   -> SDoc
+pprCoreBindings :: [CoreBinding] -> SDoc
+
+init_ppr_env tvbndr pbdr pocc
+  = initPprEnv
+       (Just ppr) -- literals
+       (Just ppr_con)          -- data cons
+       (Just ppr_prim)         -- primops
+       (Just (\ cc -> text (showCostCentre True cc)))
+
+       (Just tvbndr)           -- tyvar binders
+       (Just ppr)              -- tyvar occs
+       (Just pprParendGenType) -- types
+
+       (Just pbdr) (Just pocc) -- value vars
   where
-    ppr_bind (binder, expr)
-      = ppHang (ppCat [pprBigCoreBinder sty binder, ppEquals])
-            4 (pprCoreExpr sty (pprBigCoreBinder sty) (pprBabyCoreBinder sty) (ppr sty) expr)
+
+    ppr_con con = ppr con
+
+{-     [We now use Con {a,b,c} for Con expressions. SLPJ March 97.]
+       [We can't treat them as ordinary applications because the Con doesn't have
+        dictionaries in it, whereas the constructor Id does.]
+
+       OLD VERSION: 
+       -- ppr_con is used when printing Con expressions; we add a "!" 
+       -- to distinguish them from ordinary applications.  But not when
+       -- printing for interfaces, where they are treated as ordinary applications
+    ppr_con con | ifaceStyle sty = ppr sty con
+               | otherwise      = ppr sty con <> char '!'
+-}
+
+       -- We add a "!" to distinguish Primitive applications from ordinary applications.  
+       -- But not when printing for interfaces, where they are treated 
+       -- as ordinary applications
+    ppr_prim prim = getPprStyle (\sty -> if ifaceStyle sty then
+                                           ppr prim
+                                        else
+                                           ppr prim <> char '!')
+
+--------------
+pprCoreBindings binds = vcat (map pprCoreBinding binds)
+
+pprCoreBinding (NonRec binder expr) = ppr_binding (binder, expr)
+
+pprCoreBinding (Rec binds)
+  = vcat [ptext SLIT("Rec {"),
+         vcat (map ppr_binding binds),
+         ptext SLIT("end Rec }")]
+
+ppr_binding (binder, expr)
+ = sep [pprCoreBinder LetBind binder, 
+        nest 2 (equals <+> pprCoreExpr expr)]
 \end{code}
 
+General expression printer
+
 \begin{code}
-pprCoreExpr, pprParendCoreExpr
-       :: (Eq tyvar, Outputable tyvar, Eq uvar, Outputable uvar,
-           Outputable bndr,
-           Outputable occ)
-       => PprStyle
-       -> (bndr -> Pretty) -- to print "major" val_bdrs
-       -> (bndr -> Pretty) -- to print "minor" val_bdrs
-       -> (occ  -> Pretty) -- to print bindees
-       -> GenCoreExpr bndr occ tyvar uvar
-       -> Pretty
-
-pprCoreExpr sty pbdr1 pbdr2 pocc expr
-  = ppr_expr (initial_pe sty (Left (pbdr1, pbdr2, pocc))) expr
-
-pprParendCoreExpr sty pbdr1 pbdr2 pocc expr
-  = let
-       parenify
-         = case expr of
-             Var _ -> id       -- leave unchanged
-             Lit _ -> id
-             _     -> ppParens -- wraps in parens
-    in
-    parenify (pprCoreExpr sty pbdr1 pbdr2 pocc expr)
+pprCoreExpr :: CoreExpr        -> SDoc
+pprCoreExpr = ppr_expr pprCoreEnv
+
+pprCoreEnv = init_ppr_env ppr pprCoreBinder ppr
+\end{code}
 
-ppr_core_arg sty pocc arg
-  = ppr_arg (initial_pe sty (Left (pocc, pocc, pocc))) arg
+Printer for unfoldings in interfaces
 
-ppr_core_alts sty pbdr1 pbdr2 pocc alts
-  = ppr_alts (initial_pe sty (Left (pbdr1, pbdr2, pocc))) alts
+\begin{code}
+pprIfaceUnfolding :: CoreExpr -> SDoc
+pprIfaceUnfolding = ppr_expr pprIfaceEnv
 
-ppr_core_default sty pbdr1 pbdr2 pocc deflt
-  = ppr_default (initial_pe sty (Left (pbdr1, pbdr2, pocc))) deflt
+pprIfaceEnv = init_ppr_env pprTyVarBndr pprIfaceBinder  ppr
 \end{code}
 
 %************************************************************************
@@ -139,152 +130,26 @@ ppr_core_default sty pbdr1 pbdr2 pocc deflt
 %************************************************************************
 
 \begin{code}
-instance
-  (Outputable bndr, Outputable occ, Eq tyvar, Outputable tyvar,
-   Eq uvar, Outputable uvar)
- =>
-  Outputable (GenCoreBinding bndr occ tyvar uvar) where
-    ppr sty bind = pprCoreBinding sty (ppr sty) (ppr sty) (ppr sty) bind
-
-instance
-  (Outputable bndr, Outputable occ, Eq tyvar, Outputable tyvar,
-   Eq uvar, Outputable uvar)
- =>
-  Outputable (GenCoreExpr bndr occ tyvar uvar) where
-    ppr sty expr = pprCoreExpr sty (ppr sty) (ppr sty) (ppr sty) expr
-
-instance
-  (Outputable occ, Eq tyvar, Outputable tyvar, Eq uvar, Outputable uvar)
- =>
-  Outputable (GenCoreArg occ tyvar uvar) where
-    ppr sty arg = ppr_core_arg sty (ppr sty) arg
-
-instance
-  (Outputable bndr, Outputable occ, Eq tyvar, Outputable tyvar,
-   Eq uvar, Outputable uvar)
- =>
-  Outputable (GenCoreCaseAlts bndr occ tyvar uvar) where
-    ppr sty alts = ppr_core_alts sty (ppr sty) (ppr sty) (ppr sty) alts
-
-instance
-  (Outputable bndr, Outputable occ, Eq tyvar, Outputable tyvar,
-   Eq uvar, Outputable uvar)
- =>
-  Outputable (GenCoreCaseDefault bndr occ tyvar uvar) where
-    ppr sty deflt  = ppr_core_default sty (ppr sty) (ppr sty) (ppr sty) deflt
-\end{code}
+pprGenEnv :: (Outputable bndr, Outputable occ) => PprEnv flexi bndr occ
+pprGenEnv = init_ppr_env ppr (\_ -> ppr) ppr
 
-%************************************************************************
-%*                                                                     *
-\subsection{Core printing environment (purely local)}
-%*                                                                     *
-%************************************************************************
-
-Similar to @VE@ in @PprType@.  The ``values'' we print here
-are locally-defined nested-scope names; callers to @pprCoreBinding@,
-etc., can override these.
+pprGenArgEnv :: (Outputable occ) => PprEnv flexi bndr occ
+pprGenArgEnv = init_ppr_env ppr (error "ppr_bndr") ppr
 
-For tyvars and uvars, we {\em do} normally use these homogenized
-names; for values, we {\em don't}.  In printing interfaces, though,
-we use homogenized value names, so that interfaces don't wobble
-uncontrollably from changing Unique-based names.
+instance (Outputable bndr, Outputable occ) => Outputable (GenCoreBinding bndr occ flexi) where
+    ppr bind = ppr_bind pprGenEnv bind
 
-\begin{code}
-data PrintEnv tyvar uvar bndr occ
-  = PE (Literal -> Pretty)     -- Doing these this way saves
-       (DataCon -> Pretty)     -- carrying around a PprStyle
-       (PrimOp  -> Pretty)
-       (CostCentre -> Pretty)
-
-       [Pretty]                -- Tyvar pretty names
-       (tyvar -> Pretty)       -- Tyvar lookup function
-        [Pretty]               -- Uvar  pretty names
-       (uvar -> Pretty)        -- Uvar  lookup function
-
-       (GenType tyvar uvar -> Pretty)
-       (GenUsage uvar -> Pretty)
-
-       (ValPrinters bndr occ)
-
-data ValPrinters bndr occ
-  = BOPE -- print binders/occs differently
-        (bndr -> Pretty)       -- to print "major" val_bdrs
-        (bndr -> Pretty)       -- to print "minor" val_bdrs
-        (occ  -> Pretty)       -- to print bindees
-
-  | VPE  -- print all values the same way
-        [Pretty]               -- Value pretty names
-        (bndr -> Pretty)       -- Binder lookup function
-        (occ  -> Pretty)       -- Occurrence lookup function
-\end{code}
+instance (Outputable bndr, Outputable occ) => Outputable (GenCoreExpr bndr occ flexi) where
+    ppr expr = ppr_expr pprGenEnv expr
 
-\begin{code}
-initial_pe :: (Eq tyvar, Outputable tyvar, Eq uvar, Outputable uvar,
-              Outputable bndr, Outputable occ)
-          => PprStyle
-          -> Either
-               (bndr -> Pretty, bndr -> Pretty, occ -> Pretty)
-               ()
-          -> PrintEnv tyvar uvar bndr occ
-
-initial_pe sty val_printing
-  = PE (ppr sty)   -- for a Literal
-       (ppr sty)   -- for a DataCon
-       (ppr sty)   -- for a PrimOp
-       (\ cc -> ppStr (showCostCentre sty True cc)) -- CostCentre
-
-       tv_pretties ppr_tv -- for a TyVar
-        uv_pretties ppr_uv -- for a UsageVar
-
-       (\ ty -> pprType_Internal sty tv_pretties ppr_tv uv_pretties ppr_uv ty)
-       (ppr sty) -- for a Usage
-
-       val_printing_stuff
-  where
-    ppr_tv = ppr sty -- to print a tyvar
-    ppr_uv = ppr sty -- to print a uvar
-
-    tv_pretties = map (\ c -> ppChar c ) ['a' .. 'h']
-                 ++
-                 map (\ n -> ppBeside (ppChar 'a') (ppInt n))
-                     ([0 .. ] :: [Int])        -- a0 ... aN
-    
-    uv_pretties = map (\ c -> ppChar c ) ['u' .. 'y']
-                 ++
-                 map (\ n -> ppBeside (ppChar 'u') (ppInt n))
-                     ([0 .. ] :: [Int])        -- u0 ... uN
-    
-    val_pretties = map (\ c -> ppChar c ) ['i' .. 'k']
-               ++ map (\ n -> ppBeside (ppChar 'v') (ppInt n))
-                      ([0 .. ] :: [Int])       -- v0 ... vN
-
-    ------------------------
-    val_printing_stuff
-      = case val_printing of
-         Left  (pbdr1, pbdr2, pocc) -> BOPE pbdr1 pbdr2 pocc
-         Right () -> VPE val_pretties (ppr sty) (ppr sty)
+instance (Outputable occ) => Outputable (GenCoreArg occ flexi) where
+    ppr arg = ppr_arg pprGenArgEnv arg
 
-\end{code}
+instance (Outputable bndr, Outputable occ) => Outputable (GenCoreCaseAlts bndr occ flexi) where
+    ppr alts = ppr_alts pprGenEnv alts
 
-\begin{code}
-plit    (PE pp  _  _  _ _  _ _  _  _  _ _) = pp
-pcon    (PE  _ pp  _  _ _  _ _  _  _  _ _) = pp
-pprim   (PE  _  _ pp  _ _  _ _  _  _  _ _) = pp
-pscc    (PE  _  _  _ pp _  _ _  _  _  _ _) = pp
-ptyvar  (PE  _  _  _  _ _ pp _  _  _  _ _) = pp
-puvar   (PE  _  _  _  _ _  _ _ pp  _  _ _) = pp
-  
-pty     (PE  _  _  _  _ _  _ _  _ pp  _ _) = pp
-puse    (PE  _  _  _  _ _  _ _  _  _ pp _) = pp
-
-pmaj_bdr (PE  _  _  _  _ _  _ _  _  _  _ (BOPE pp _ _)) = pp
-pmaj_bdr (PE  _  _  _  _ _  _ _  _  _  _ (VPE  _ pp _)) = pp
-                                  
-pmin_bdr (PE  _  _  _  _ _  _ _  _  _  _ (BOPE _ pp _)) = pp
-pmin_bdr (PE  _  _  _  _ _  _ _  _  _  _ (VPE  _ pp _)) = pp
-                                  
-pocc    (PE  _  _  _  _ _  _ _  _  _  _ (BOPE _ _ pp)) = pp
-pocc    (PE  _  _  _  _ _  _ _  _  _  _ (VPE  _ _ pp)) = pp
+instance (Outputable bndr, Outputable occ) => Outputable (GenCoreCaseDefault bndr occ flexi) where
+    ppr deflt  = ppr_default pprGenEnv deflt
 \end{code}
 
 %************************************************************************
@@ -294,18 +159,14 @@ pocc       (PE  _  _  _  _ _  _ _  _  _  _ (VPE  _ _ pp)) = pp
 %************************************************************************
 
 \begin{code}
-ppr_bind pe (NonRec val_bdr expr)
-  = ppHang (ppCat [pmaj_bdr pe val_bdr, ppEquals])
-        4 (ppr_expr pe expr)
-
-ppr_bind pe (Rec binds)
-  = ppAboves [ ppStr "{- Rec -}",
-              ppAboves (map ppr_pair binds),
-              ppStr "{- end Rec -}" ]
-  where
-    ppr_pair (val_bdr, expr)
-      = ppHang (ppCat [pmaj_bdr pe val_bdr, ppEquals])
-            4 (ppr_expr pe expr)
+ppr_bind pe (NonRec val_bdr expr) = ppr_binding_pe pe (val_bdr, expr)
+ppr_bind pe (Rec binds)          = vcat (map pp binds)
+                                 where
+                                   pp bind = ppr_binding_pe pe bind <> semi
+
+ppr_binding_pe pe (val_bdr, expr)
+  = sep [pValBndr pe LetBind val_bdr, 
+        nest 2 (equals <+> ppr_expr pe expr)]
 \end{code}
 
 \begin{code}
@@ -315,143 +176,186 @@ ppr_parend_expr pe expr
          = case expr of
              Var _ -> id       -- leave unchanged
              Lit _ -> id
-             _     -> ppParens -- wraps in parens
+             _     -> parens   -- wraps in parens
     in
     parenify (ppr_expr pe expr)
 \end{code}
 
 \begin{code}
-ppr_expr pe (Var name)   = pocc pe name
-ppr_expr pe (Lit lit)    = plit pe lit
-ppr_expr pe (Con con []) = pcon pe con
+ppr_expr pe (Var name)   = pOcc pe name
+ppr_expr pe (Lit lit)    = pLit pe lit
 
 ppr_expr pe (Con con args)
-  = ppHang (ppBesides [pcon pe con, ppChar '!'])
-        4 (ppSep (map (ppr_arg pe) args))
+  = pCon pe con <+> (braces $ sep (map (ppr_arg pe) args))
 
 ppr_expr pe (Prim prim args)
-  = ppHang (ppBesides [pprim pe prim, ppChar '!'])
-        4 (ppSep (map (ppr_arg pe) args))
+  = pPrim pe prim <+> (sep (map (ppr_arg pe) args))
 
 ppr_expr pe expr@(Lam _ _)
   = let
-       (uvars, tyvars, vars, body) = collectBinders expr
+       (tyvars, vars, body) = collectBinders expr
     in
-    ppHang (ppCat [pp_vars SLIT("_/u\\_") (puvar    pe) uvars,
-                  pp_vars SLIT("_/\\_")  (ptyvar   pe) tyvars,
-                  pp_vars SLIT("\\")     (pmin_bdr pe) vars])
+    hang (hsep [pp_vars SLIT("_/\\_") (pTyVarB  pe) tyvars,
+               pp_vars SLIT("\\")    (pValBndr pe LambdaBind) vars])
         4 (ppr_expr pe body)
   where
-    pp_vars lam pp [] = ppNil
+    pp_vars lam pp [] = empty
     pp_vars lam pp vs
-      = ppCat [ppPStr lam, ppInterleave ppSP (map pp vs), ppStr "->"]
+      = hsep [ptext lam, hsep (map pp vs), ptext SLIT("->")]
 
-ppr_expr pe expr@(App _ _)
+ppr_expr pe expr@(App fun arg)
   = let
-       (fun, args) = collectArgs expr
+       (final_fun, final_args)      = go fun [arg]
+       go (App fun arg) args_so_far = go fun (arg:args_so_far)
+       go fun           args_so_far = (fun, args_so_far)
     in
-    ppHang (ppr_parend_expr pe fun)
-        4 (ppSep (map (ppr_arg pe) args))
+    hang (ppr_parend_expr pe final_fun) 4 (sep (map (ppr_arg pe) final_args))
 
 ppr_expr pe (Case expr alts)
-  = ppSep
-    [ppSep [ppPStr SLIT("case"), ppNest 4 (ppr_parend_expr pe expr), ppStr "of {"],
-     ppNest 2 (ppr_alts pe alts),
-     ppStr "}"]
+  | only_one_alt alts
+    -- johan thinks that single case patterns should be on same line as case,
+    -- and no indent; all sane persons agree with him.
+  = let
+       ppr_bndr = pValBndr pe CaseBind
+       
+       ppr_alt (AlgAlts  [] (BindDefault n _)) = (<>) (ppr_bndr n) ppr_arrow
+       ppr_alt (PrimAlts [] (BindDefault n _)) = (<>) (ppr_bndr n) ppr_arrow
+       ppr_alt (PrimAlts ((l, _):[]) NoDefault)= (<>) (pLit pe l)         ppr_arrow
+       ppr_alt (AlgAlts  ((con, params, _):[]) NoDefault)
+         = hsep [pCon pe con,
+                  hsep (map ppr_bndr params),
+                  ppr_arrow]
+
+       ppr_rhs (AlgAlts [] (BindDefault _ expr))   = ppr_expr pe expr
+       ppr_rhs (AlgAlts ((_,_,expr):[]) NoDefault) = ppr_expr pe expr
+       ppr_rhs (PrimAlts [] (BindDefault _ expr))  = ppr_expr pe expr
+       ppr_rhs (PrimAlts ((_,expr):[]) NoDefault)  = ppr_expr pe expr
+
+
+        ppr_arrow = ptext SLIT(" ->")
+    in 
+    sep
+    [sep [pp_keyword, nest 4 (ppr_expr pe expr), text "of {", ppr_alt alts],
+           (<>) (ppr_rhs alts) (text ";}")]
+
+  | otherwise -- default "case" printing
+  = sep
+    [sep [pp_keyword, nest 4 (ppr_expr pe expr), ptext SLIT("of {")],
+     nest 2 (ppr_alts pe alts),
+     text "}"]
+  where
+    pp_keyword = case alts of
+                 AlgAlts _ _  -> ptext SLIT("case")
+                 PrimAlts _ _ -> ptext SLIT("case#")
 
 -- special cases: let ... in let ...
 -- ("disgusting" SLPJ)
 
 ppr_expr pe (Let bind@(NonRec val_bdr rhs@(Let _ _)) body)
-  = ppAboves [
-      ppCat [ppStr "let {", pmaj_bdr pe val_bdr, ppEquals],
-      ppNest 2 (ppr_expr pe rhs),
-      ppStr "} in",
+  = vcat [
+      hsep [ptext SLIT("let {"), pValBndr pe LetBind val_bdr, equals],
+      nest 2 (ppr_expr pe rhs),
+      ptext SLIT("} in"),
       ppr_expr pe body ]
 
 ppr_expr pe (Let bind@(NonRec val_bdr rhs) expr@(Let _ _))
-  = ppAbove
-      (ppHang (ppStr "let {")
-           2 (ppCat [ppHang (ppCat [pmaj_bdr pe val_bdr, ppEquals])
+  = ($$)
+      (hang (ptext SLIT("let {"))
+           2 (hsep [hang (hsep [pValBndr pe LetBind val_bdr, equals])
                           4 (ppr_expr pe rhs),
-       ppStr "} in"]))
+       ptext SLIT("} in")]))
       (ppr_expr pe expr)
 
 -- general case (recursive case, too)
 ppr_expr pe (Let bind expr)
-  = ppSep [ppHang (ppStr "let {") 2 (ppr_bind pe bind),
-          ppHang (ppStr "} in ") 2 (ppr_expr pe expr)]
+  = sep [hang (ptext keyword) 2 (ppr_bind pe bind),
+          hang (ptext SLIT("} in ")) 2 (ppr_expr pe expr)]
+  where
+    keyword = case bind of
+               Rec _      -> SLIT("_letrec_ {")
+               NonRec _ _ -> SLIT("let {")
 
 ppr_expr pe (SCC cc expr)
-  = ppSep [ppCat [ppPStr SLIT("_scc_"), pscc pe cc],
+  = sep [hsep [ptext SLIT("_scc_"), pSCC pe cc],
           ppr_parend_expr pe expr ]
+
+ppr_expr pe (Coerce c ty expr)
+  = sep [pp_coerce c, pTy pe ty, ppr_expr pe expr]
+  where
+    pp_coerce (CoerceIn  v) = (<>) (ptext SLIT("_coerce_in_ "))  (ppr v)
+    pp_coerce (CoerceOut v) = (<>) (ptext SLIT("_coerce_out_ ")) (ppr v)
+
+only_one_alt (AlgAlts []     (BindDefault _ _)) = True
+only_one_alt (AlgAlts (_:[])  NoDefault)       = True
+only_one_alt (PrimAlts []    (BindDefault _ _)) = True
+only_one_alt (PrimAlts (_:[]) NoDefault)       = True
+only_one_alt _                                 = False 
 \end{code}
 
 \begin{code}
 ppr_alts pe (AlgAlts alts deflt)
-  = ppAboves [ ppAboves (map ppr_alt alts), ppr_default pe deflt ]
+  = vcat [ vcat (map ppr_alt alts), ppr_default pe deflt ]
   where
+    ppr_arrow = ptext SLIT("->")
+    ppr_bndr = pValBndr pe CaseBind
+
     ppr_alt (con, params, expr)
-      = ppHang (ppCat [ppr_con con (pcon pe con),
-                      ppInterleave ppSP (map (pmin_bdr pe) params),
-                      ppStr "->"])
-            4 (ppr_expr pe expr)
-      where
-       ppr_con con pp_con
-         = if isOpLexeme con then ppParens pp_con else pp_con
+      = hang (if isTupleCon con then
+                   hsep [parens (hsep (punctuate comma (map ppr_bndr params))),
+                         ppr_arrow]
+               else
+                   hsep [pCon pe con,
+                         hsep (map ppr_bndr params),
+                          ppr_arrow]
+              )
+            4 (ppr_expr pe expr <> semi)
 
 ppr_alts pe (PrimAlts alts deflt)
-  = ppAboves [ ppAboves (map ppr_alt alts), ppr_default pe deflt ]
+  = vcat [ vcat (map ppr_alt alts), ppr_default pe deflt ]
   where
     ppr_alt (lit, expr)
-      = ppHang (ppCat [plit pe lit, ppStr "->"])
-            4 (ppr_expr pe expr)
+      = hang (hsep [pLit pe lit, ptext SLIT("->")])
+            4 (ppr_expr pe expr <> semi)
 \end{code}
 
 \begin{code}
-ppr_default pe NoDefault = ppNil
+ppr_default pe NoDefault = empty
 
 ppr_default pe (BindDefault val_bdr expr)
-  = ppHang (ppCat [pmin_bdr pe val_bdr, ppStr "->"])
-        4 (ppr_expr pe expr)
+  = hang (hsep [pValBndr pe CaseBind val_bdr, ptext SLIT("->")])
+        4 (ppr_expr pe expr <> semi)
 \end{code}
 
 \begin{code}
-ppr_arg pe (LitArg   lit) = plit pe lit
-ppr_arg pe (VarArg   v)          = pocc pe v
-ppr_arg pe (TyArg    ty)  = pty  pe ty
-ppr_arg pe (UsageArg use) = puse pe use
+ppr_arg pe (LitArg   lit) = pLit pe lit
+ppr_arg pe (VarArg   v)          = pOcc pe v
+ppr_arg pe (TyArg    ty)  = ptext SLIT("_@_ ") <> pTy pe ty
 \end{code}
 
 Other printing bits-and-bobs used with the general @pprCoreBinding@
 and @pprCoreExpr@ functions.
 
 \begin{code}
-pprBigCoreBinder sty binder
-  = ppAboves [sig, pragmas, ppr sty binder]
+-- Used for printing dump info
+pprCoreBinder LetBind binder
+  = vcat [sig, pragmas, ppr binder]
   where
-    sig = ifnotPprShowAll sty (
-           ppHang (ppCat [ppr sty binder, ppStr "::"])
-                4 (ppr sty (idType binder)))
+    sig     = pprTypedBinder binder
+    pragmas = ppIdInfo False{-no specs, thanks-} (getIdInfo binder)
 
-    pragmas =
-       ifnotPprForUser sty
-        (ppIdInfo sty binder True{-specs, please-} id nullIdEnv
-         (getIdInfo binder))
+pprCoreBinder LambdaBind binder = pprTypedBinder binder
+pprCoreBinder CaseBind   binder = ppr binder
 
-pprBabyCoreBinder sty binder
-  = ppCat [ppr sty binder, pp_strictness]
-  where
-    pp_strictness
-      = case (getIdStrictness binder) of
-         NoStrictnessInfo    -> ppNil
-         BottomGuaranteed    -> ppStr "{- _!_ -}"
-         StrictnessInfo xx _ ->
-               panic "PprCore:pp_strictness:StrictnessInfo:ToDo"
-               -- ppStr ("{- " ++ (showList xx "") ++ " -}")
-
-pprTypedCoreBinder sty binder
-  = ppBesides [ppLparen, ppCat [ppr sty binder,
-       ppStr "::", ppr sty (idType binder)],
-       ppRparen]
+
+-- Used for printing interface-file unfoldings
+pprIfaceBinder CaseBind binder = ppr binder
+pprIfaceBinder other    binder = pprTypedBinder binder
+
+pprTypedBinder binder
+  = ppr binder <+> ptext SLIT("::") <+> pprParendGenType (idType binder)
+       -- The space before the :: is important; it helps the lexer
+       -- when reading inferfaces.  Otherwise it would lex "a::b" as one thing.
+       --
+       -- It's important that the type is parenthesised too, at least when
+       -- printing interfaces, because we get \ x::(a->b) y::(c->d) -> ...
 \end{code}