[project @ 2005-03-07 16:46:08 by simonpj]
[ghc-hetmet.git] / ghc / compiler / coreSyn / PprCore.lhs
1 %
2 % (c) The AQUA Project, Glasgow University, 1996-1998
3 %
4 %************************************************************************
5 %*                                                                      *
6 \section[PprCore]{Printing of Core syntax, including for interfaces}
7 %*                                                                      *
8 %************************************************************************
9
10 \begin{code}
11 module PprCore (
12         pprCoreExpr, pprParendExpr,
13         pprCoreBinding, pprCoreBindings, pprCoreAlt,
14         pprIdRules
15     ) where
16
17 #include "HsVersions.h"
18
19 import CoreSyn
20 import CostCentre       ( pprCostCentreCore )
21 import Var              ( Var )
22 import Id               ( Id, idType, isDataConWorkId_maybe, idLBVarInfo, idArity,
23                           idInfo, idInlinePragma, idOccInfo,
24                           globalIdDetails, isGlobalId, isExportedId, 
25                           isSpecPragmaId, idNewDemandInfo
26                         )
27 import Var              ( TyVar, isTyVar, tyVarKind )
28 import IdInfo           ( IdInfo, megaSeqIdInfo, 
29                           arityInfo, ppArityInfo, 
30                           specInfo, pprNewStrictness,
31                           workerInfo, ppWorkerInfo,
32                           newStrictnessInfo, cafInfo, ppCafInfo,
33                         )
34
35 #ifdef OLD_STRICTNESS
36 import Id               ( idDemandInfo )
37 import IdInfo           ( cprInfo, ppCprInfo, strictnessInfo, ppStrictnessInfo ) 
38 #endif
39
40 import DataCon          ( dataConTyCon )
41 import TyCon            ( tupleTyConBoxity, isTupleTyCon )
42 import Type             ( pprParendType, pprType, pprParendKind )
43 import BasicTypes       ( tupleParens )
44 import Util             ( lengthIs )
45 import Outputable
46 import FastString       ( mkFastString )
47 \end{code}
48
49 %************************************************************************
50 %*                                                                      *
51 \subsection{Public interfaces for Core printing (excluding instances)}
52 %*                                                                      *
53 %************************************************************************
54
55 @pprParendCoreExpr@ puts parens around non-atomic Core expressions.
56
57 \begin{code}
58 pprCoreBindings :: OutputableBndr b => [Bind b] -> SDoc
59 pprCoreBinding  :: OutputableBndr b => Bind b  -> SDoc
60 pprCoreExpr     :: OutputableBndr b => Expr b  -> SDoc
61 pprParendExpr   :: OutputableBndr b => Expr b  -> SDoc
62
63 pprCoreBindings = pprTopBinds
64 pprCoreBinding  = pprTopBind 
65
66 instance OutputableBndr b => Outputable (Bind b) where
67     ppr bind = ppr_bind bind
68
69 instance OutputableBndr b => Outputable (Expr b) where
70     ppr expr = pprCoreExpr expr
71 \end{code}
72
73
74 %************************************************************************
75 %*                                                                      *
76 \subsection{The guts}
77 %*                                                                      *
78 %************************************************************************
79
80 \begin{code}
81 pprTopBinds binds = vcat (map pprTopBind binds)
82
83 pprTopBind (NonRec binder expr)
84  = ppr_binding (binder,expr) $$ text ""
85
86 pprTopBind (Rec binds)
87   = vcat [ptext SLIT("Rec {"),
88           vcat (map ppr_binding binds),
89           ptext SLIT("end Rec }"),
90           text ""]
91 \end{code}
92
93 \begin{code}
94 ppr_bind :: OutputableBndr b => Bind b -> SDoc
95
96 ppr_bind (NonRec val_bdr expr) = ppr_binding (val_bdr, expr)
97 ppr_bind (Rec binds)           = vcat (map pp binds)
98                                where
99                                  pp bind = ppr_binding bind <> semi
100
101 ppr_binding :: OutputableBndr b => (b, Expr b) -> SDoc
102 ppr_binding (val_bdr, expr)
103   = pprBndr LetBind val_bdr $$ 
104     (ppr val_bdr <+> equals <+> pprCoreExpr expr)
105 \end{code}
106
107 \begin{code}
108 pprParendExpr   expr = ppr_expr parens expr
109 pprCoreExpr expr = ppr_expr noParens expr
110
111 noParens :: SDoc -> SDoc
112 noParens pp = pp
113 \end{code}
114
115 \begin{code}
116 ppr_expr :: OutputableBndr b => (SDoc -> SDoc) -> Expr b -> SDoc
117         -- The function adds parens in context that need
118         -- an atomic value (e.g. function args)
119
120 ppr_expr add_par (Type ty)  = add_par (ptext SLIT("TYPE") <+> ppr ty)   -- Wierd
121                    
122 ppr_expr add_par (Var name) = ppr name
123 ppr_expr add_par (Lit lit)  = ppr lit
124
125 ppr_expr add_par expr@(Lam _ _)
126   = let
127         (bndrs, body) = collectBinders expr
128     in
129     add_par $
130     hang (ptext SLIT("\\") <+> sep (map (pprBndr LambdaBind) bndrs) <+> arrow)
131          2 (pprCoreExpr body)
132
133 ppr_expr add_par expr@(App fun arg)
134   = case collectArgs expr of { (fun, args) -> 
135     let
136         pp_args     = sep (map pprArg args)
137         val_args    = dropWhile isTypeArg args   -- Drop the type arguments for tuples
138         pp_tup_args = sep (punctuate comma (map pprArg val_args))
139     in
140     case fun of
141         Var f -> case isDataConWorkId_maybe f of
142                         -- Notice that we print the *worker*
143                         -- for tuples in paren'd format.
144                    Just dc | saturated && isTupleTyCon tc
145                            -> tupleParens (tupleTyConBoxity tc) pp_tup_args
146                            where
147                              tc        = dataConTyCon dc
148                              saturated = val_args `lengthIs` idArity f
149
150                    other -> add_par (hang (ppr f) 2 pp_args)
151
152         other -> add_par (hang (pprParendExpr fun) 2 pp_args)
153     }
154
155 ppr_expr add_par (Case expr var ty [(con,args,rhs)])
156   = add_par $
157     sep [sep [ptext SLIT("case") <+> pprParendType ty <+> pprCoreExpr expr,
158               hsep [ptext SLIT("of"),
159                     ppr_bndr var, 
160                     char '{',
161                     ppr_case_pat con args
162           ]],
163          pprCoreExpr rhs,
164          char '}'
165     ]
166   where
167     ppr_bndr = pprBndr CaseBind
168
169 ppr_expr add_par (Case expr var ty alts)
170   = add_par $
171     sep [sep [ptext SLIT("case") <+> pprParendType ty <+> pprCoreExpr expr,
172               ptext SLIT("of") <+> ppr_bndr var <+> char '{'],
173          nest 2 (sep (punctuate semi (map pprCoreAlt alts))),
174          char '}'
175     ]
176   where
177     ppr_bndr = pprBndr CaseBind
178  
179
180 -- special cases: let ... in let ...
181 -- ("disgusting" SLPJ)
182
183 {-
184 ppr_expr add_par (Let bind@(NonRec val_bdr rhs@(Let _ _)) body)
185   = add_par $
186     vcat [
187       hsep [ptext SLIT("let {"), (pprBndr LetBind val_bdr $$ ppr val_bndr), equals],
188       nest 2 (pprCoreExpr rhs),
189       ptext SLIT("} in"),
190       pprCoreExpr body ]
191 -}
192
193 ppr_expr add_par (Let bind@(NonRec val_bdr rhs) expr@(Let _ _))
194   = add_par
195     (hang (ptext SLIT("let {"))
196           2 (hsep [ppr_binding (val_bdr,rhs),
197                    ptext SLIT("} in")])
198      $$
199      pprCoreExpr expr)
200
201 -- general case (recursive case, too)
202 ppr_expr add_par (Let bind expr)
203   = add_par $
204     sep [hang (ptext keyword) 2 (ppr_bind bind),
205          hang (ptext SLIT("} in ")) 2 (pprCoreExpr expr)]
206   where
207     keyword = case bind of
208                 Rec _      -> SLIT("__letrec {")
209                 NonRec _ _ -> SLIT("let {")
210
211 ppr_expr add_par (Note (SCC cc) expr)
212   = add_par (sep [pprCostCentreCore cc, pprCoreExpr expr])
213
214 #ifdef DEBUG
215 ppr_expr add_par (Note (Coerce to_ty from_ty) expr)
216  = add_par $
217    getPprStyle $ \ sty ->
218    if debugStyle sty then
219       sep [ptext SLIT("__coerce") <+> 
220                 sep [pprParendType to_ty, pprParendType from_ty],
221            pprParendExpr expr]
222    else
223       sep [hsep [ptext SLIT("__coerce"), pprParendType to_ty],
224                   pprParendExpr expr]
225 #else
226 ppr_expr add_par (Note (Coerce to_ty from_ty) expr)
227   = add_par $
228     sep [sep [ptext SLIT("__coerce"), nest 2 (pprParendType to_ty)],
229          pprParendExpr expr]
230 #endif
231
232 ppr_expr add_par (Note InlineCall expr)
233   = add_par (ptext SLIT("__inline_call") <+> pprParendExpr expr)
234
235 ppr_expr add_par (Note InlineMe expr)
236   = add_par $ ptext SLIT("__inline_me") <+> pprParendExpr expr
237
238 ppr_expr add_par (Note (CoreNote s) expr)
239   = add_par $ 
240     sep [sep [ptext SLIT("__core_note"), pprHsString (mkFastString s)],
241          pprParendExpr expr]
242
243 pprCoreAlt (con, args, rhs) 
244   = hang (ppr_case_pat con args) 2 (pprCoreExpr rhs)
245
246 ppr_case_pat con@(DataAlt dc) args
247   | isTupleTyCon tc
248   = tupleParens (tupleTyConBoxity tc) (hsep (punctuate comma (map ppr_bndr args))) <+> arrow
249   where
250     ppr_bndr = pprBndr CaseBind
251     tc = dataConTyCon dc
252
253 ppr_case_pat con args
254   = ppr con <+> hsep (map ppr_bndr args) <+> arrow
255   where
256     ppr_bndr = pprBndr CaseBind
257
258 pprArg (Type ty) = ptext SLIT("@") <+> pprParendType ty
259 pprArg expr      = pprParendExpr expr
260 \end{code}
261
262 Other printing bits-and-bobs used with the general @pprCoreBinding@
263 and @pprCoreExpr@ functions.
264
265 \begin{code}
266 instance OutputableBndr Var where
267   pprBndr = pprCoreBinder
268
269 pprCoreBinder :: BindingSite -> Var -> SDoc
270 pprCoreBinder LetBind binder
271   = vcat [sig, pprIdDetails binder, pragmas]
272   where
273     sig     = pprTypedBinder binder
274     pragmas = ppIdInfo binder (idInfo binder)
275
276 -- Lambda bound type variables are preceded by "@"
277 pprCoreBinder LambdaBind bndr = parens (pprTypedBinder bndr)
278
279 -- Case bound things don't get a signature or a herald
280 pprCoreBinder CaseBind bndr = pprUntypedBinder bndr
281
282 pprUntypedBinder binder
283   | isTyVar binder = ptext SLIT("@") <+> ppr binder     -- NB: don't print kind
284   | otherwise      = pprIdBndr binder
285
286 pprTypedBinder binder
287   | isTyVar binder  = ptext SLIT("@") <+> pprTyVarBndr binder
288   | otherwise       = pprIdBndr binder <+> dcolon <+> pprType (idType binder)
289
290 pprTyVarBndr :: TyVar -> SDoc
291 pprTyVarBndr tyvar
292   = getPprStyle $ \ sty ->
293     if debugStyle sty then
294         hsep [ppr tyvar, dcolon, pprParendKind kind]
295                 -- See comments with ppDcolon in PprCore.lhs
296     else
297         ppr tyvar
298   where
299     kind = tyVarKind tyvar
300
301 -- pprIdBndr does *not* print the type
302 -- When printing any Id binder in debug mode, we print its inline pragma and one-shot-ness
303 pprIdBndr id = ppr id <+> 
304                (megaSeqIdInfo (idInfo id) `seq`
305                         -- Useful for poking on black holes
306                 ifPprDebug (ppr (idInlinePragma id) <+> ppr (idOccInfo id) <+> 
307 #ifdef OLD_STRICTNESS
308                             ppr (idDemandInfo id) <+>
309 #endif
310                             ppr (idNewDemandInfo id) <+>
311                             ppr (idLBVarInfo id)))
312 \end{code}
313
314
315 \begin{code}
316 pprIdDetails :: Id -> SDoc
317 pprIdDetails id | isGlobalId id     = ppr (globalIdDetails id)
318                 | isExportedId id   = ptext SLIT("[Exported]")
319                 | isSpecPragmaId id = ptext SLIT("[SpecPrag]")
320                 | otherwise         = empty
321
322 ppIdInfo :: Id -> IdInfo -> SDoc
323 ppIdInfo b info
324   = brackets $
325     vcat [  ppArityInfo a,
326             ppWorkerInfo (workerInfo info),
327             ppCafInfo (cafInfo info),
328 #ifdef OLD_STRICTNESS
329             ppStrictnessInfo s,
330             ppCprInfo m,
331 #endif
332             pprNewStrictness (newStrictnessInfo info),
333             if null rules then empty
334             else ptext SLIT("RULES:") <+> vcat (map (pprCoreRule (ppr b)) rules)
335         -- Inline pragma, occ, demand, lbvar info
336         -- printed out with all binders (when debug is on); 
337         -- see PprCore.pprIdBndr
338         ]
339   where
340     a = arityInfo info
341 #ifdef OLD_STRICTNESS
342     s = strictnessInfo info
343     m = cprInfo info
344 #endif
345     rules = rulesRules (specInfo info)
346 \end{code}
347
348
349 \begin{code}
350 pprIdRules :: [IdCoreRule] -> SDoc
351 pprIdRules rules = vcat (map pprIdRule rules)
352
353 pprIdRule :: IdCoreRule -> SDoc
354 pprIdRule (IdCoreRule id _ rule) = pprCoreRule (ppr id) rule
355
356 pprCoreRule :: SDoc -> CoreRule -> SDoc
357 pprCoreRule pp_fn (BuiltinRule name _)
358   = ptext SLIT("Built in rule for") <+> pp_fn <> colon <+> doubleQuotes (ftext name)
359
360 pprCoreRule pp_fn (Rule name act tpl_vars tpl_args rhs)
361   = doubleQuotes (ftext name) <+> ppr act <+>
362     sep [
363           ptext SLIT("__forall") <+> braces (sep (map pprTypedBinder tpl_vars)),
364           nest 2 (pp_fn <+> sep (map pprArg tpl_args)),
365           nest 2 (ptext SLIT("=") <+> pprCoreExpr rhs)
366     ] <+> semi
367 \end{code}