[project @ 1999-06-24 12:27:58 by simonmar]
[ghc-hetmet.git] / ghc / compiler / stgSyn / StgLint.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1993-1998
3 %
4 \section[StgLint]{A ``lint'' pass to check for Stg correctness}
5
6 \begin{code}
7 module StgLint ( lintStgBindings ) where
8
9 #include "HsVersions.h"
10
11 import StgSyn
12
13 import Bag              ( Bag, emptyBag, isEmptyBag, snocBag, foldBag )
14 import Id               ( Id, idType )
15 import VarSet
16 import DataCon          ( DataCon, dataConArgTys, dataConType )
17 import Const            ( literalType, conType, Literal )
18 import Maybes           ( catMaybes )
19 import Name             ( isLocallyDefined, getSrcLoc )
20 import ErrUtils         ( ErrMsg, Message, addErrLocHdrLine, pprBagOfErrors, dontAddErrLoc )
21 import Type             ( mkFunTys, splitFunTys, splitAlgTyConApp_maybe, 
22                           isUnLiftedType, isTyVarTy, splitForAllTys, Type
23                         )
24 import TyCon            ( TyCon, isDataTyCon )
25 import Util             ( zipEqual )
26 import Outputable
27
28 infixr 9 `thenL`, `thenL_`, `thenMaybeL`, `thenMaybeL_`
29 \end{code}
30
31 Checks for
32         (a) *some* type errors
33         (b) locally-defined variables used but not defined
34
35 %************************************************************************
36 %*                                                                      *
37 \subsection{``lint'' for various constructs}
38 %*                                                                      *
39 %************************************************************************
40
41 @lintStgBindings@ is the top-level interface function.
42
43 \begin{code}
44 lintStgBindings :: String -> [StgBinding] -> [StgBinding]
45
46 lintStgBindings whodunnit binds
47   = _scc_ "StgLint"
48     case (initL (lint_binds binds)) of
49       Nothing  -> binds
50       Just msg -> pprPanic "" (vcat [
51                         ptext SLIT("*** Stg Lint ErrMsgs: in") <+> text whodunnit <+> ptext SLIT("***"),
52                         msg,
53                         ptext SLIT("*** Offending Program ***"),
54                         pprStgBindings binds,
55                         ptext SLIT("*** End of Offense ***")])
56   where
57     lint_binds :: [StgBinding] -> LintM ()
58
59     lint_binds [] = returnL ()
60     lint_binds (bind:binds)
61       = lintStgBinds bind               `thenL` \ binders ->
62         addInScopeVars binders (
63             lint_binds binds
64         )
65 \end{code}
66
67
68 \begin{code}
69 lintStgArg :: StgArg -> LintM (Maybe Type)
70 lintStgArg (StgConArg con) = returnL (Just (conType con))
71 lintStgArg (StgVarArg v)   = lintStgVar v
72
73 lintStgVar v  = checkInScope v  `thenL_`
74                 returnL (Just (idType v))
75 \end{code}
76
77 \begin{code}
78 lintStgBinds :: StgBinding -> LintM [Id]                -- Returns the binders
79 lintStgBinds (StgNonRec binder rhs)
80   = lint_binds_help (binder,rhs)        `thenL_`
81     returnL [binder]
82
83 lintStgBinds (StgRec pairs)
84   = addInScopeVars binders (
85         mapL lint_binds_help pairs `thenL_`
86         returnL binders
87     )
88   where
89     binders = [b | (b,_) <- pairs]
90
91 lint_binds_help (binder, rhs)
92   = addLoc (RhsOf binder) (
93         -- Check the rhs
94         lintStgRhs rhs    `thenL` \ maybe_rhs_ty ->
95
96         -- Check binder doesn't have unlifted type
97         checkL (not (isUnLiftedType binder_ty))
98                (mkUnLiftedTyMsg binder rhs)             `thenL_`
99
100         -- Check match to RHS type
101         (case maybe_rhs_ty of
102           Nothing     -> returnL ()
103           Just rhs_ty -> checkTys  binder_ty
104                                    rhs_ty
105                                    (mkRhsMsg binder rhs_ty)
106         )                       `thenL_`
107
108         returnL ()
109     )
110   where
111     binder_ty = idType binder
112 \end{code}
113
114 \begin{code}
115 lintStgRhs :: StgRhs -> LintM (Maybe Type)
116
117 lintStgRhs (StgRhsClosure _ _ _ _ _ [] expr)
118   = lintStgExpr expr
119
120 lintStgRhs (StgRhsClosure _ _ _ _ _ binders expr)
121   = addLoc (LambdaBodyOf binders) (
122     addInScopeVars binders (
123         lintStgExpr expr   `thenMaybeL` \ body_ty ->
124         returnL (Just (mkFunTys (map idType binders) body_ty))
125     ))
126
127 lintStgRhs (StgRhsCon _ con args)
128   = mapMaybeL lintStgArg args   `thenL` \ maybe_arg_tys ->
129     case maybe_arg_tys of
130       Nothing       -> returnL Nothing
131       Just arg_tys  -> checkFunApp con_ty arg_tys (mkRhsConMsg con_ty arg_tys)
132   where
133     con_ty = dataConType con
134 \end{code}
135
136 \begin{code}
137 lintStgExpr :: StgExpr -> LintM (Maybe Type)    -- Nothing if error found
138
139 lintStgExpr e@(StgApp fun args)
140   = lintStgVar fun              `thenMaybeL` \ fun_ty  ->
141     mapMaybeL lintStgArg args   `thenL`      \ maybe_arg_tys ->
142     case maybe_arg_tys of
143       Nothing       -> returnL Nothing
144       Just arg_tys  -> checkFunApp fun_ty arg_tys (mkFunAppMsg fun_ty arg_tys e)
145
146 lintStgExpr e@(StgCon con args _)
147   = mapMaybeL lintStgArg args   `thenL` \ maybe_arg_tys ->
148     case maybe_arg_tys of
149       Nothing       -> returnL Nothing
150       Just arg_tys  -> checkFunApp con_ty arg_tys (mkFunAppMsg con_ty arg_tys e)
151   where
152     con_ty = conType con
153
154 lintStgExpr (StgLam _ bndrs _)
155   = addErrL (ptext SLIT("Unexpected StgLam") <+> ppr bndrs)     `thenL_`
156     returnL Nothing
157
158 lintStgExpr (StgLet binds body)
159   = lintStgBinds binds          `thenL` \ binders ->
160     addLoc (BodyOfLetRec binders) (
161     addInScopeVars binders (
162         lintStgExpr body
163     ))
164
165 lintStgExpr (StgLetNoEscape _ _ binds body)
166   = lintStgBinds binds          `thenL` \ binders ->
167     addLoc (BodyOfLetRec binders) (
168     addInScopeVars binders (
169         lintStgExpr body
170     ))
171
172 lintStgExpr (StgSCC _ expr)     = lintStgExpr expr
173
174 lintStgExpr e@(StgCase scrut _ _ bndr _ alts)
175   = lintStgExpr scrut           `thenMaybeL` \ _ ->
176     checkTys (idType bndr) scrut_ty (mkDefltMsg bndr) `thenL_`
177
178     (trace (showSDoc (ppr e)) $ 
179         -- we only allow case of tail-call or primop.
180     (case scrut of
181         StgApp _ _ -> returnL ()
182         StgCon _ _ _ -> returnL ()
183         other -> addErrL (mkCaseOfCaseMsg e))   `thenL_`
184
185     addInScopeVars [bndr] (lintStgAlts alts scrut_ty)
186   )
187   where
188     scrut_ty = get_ty alts
189
190     get_ty (StgAlgAlts  ty _ _) = ty
191     get_ty (StgPrimAlts ty _ _) = ty
192 \end{code}
193
194 \begin{code}
195 lintStgAlts :: StgCaseAlts
196              -> Type            -- Type of scrutinee
197              -> LintM (Maybe Type)      -- Type of alternatives
198
199 lintStgAlts alts scrut_ty
200   = (case alts of
201          StgAlgAlts _ alg_alts deflt ->
202            mapL (lintAlgAlt scrut_ty) alg_alts  `thenL` \ maybe_alt_tys ->
203            lintDeflt deflt scrut_ty             `thenL` \ maybe_deflt_ty ->
204            returnL (maybe_deflt_ty : maybe_alt_tys)
205
206          StgPrimAlts _ prim_alts deflt ->
207            mapL (lintPrimAlt scrut_ty) prim_alts `thenL` \ maybe_alt_tys ->
208            lintDeflt deflt scrut_ty              `thenL` \ maybe_deflt_ty ->
209            returnL (maybe_deflt_ty : maybe_alt_tys)
210     )                                            `thenL` \ maybe_result_tys ->
211          -- Check the result types
212     case catMaybes (maybe_result_tys) of
213       []             -> returnL Nothing
214
215       (first_ty:tys) -> mapL check tys  `thenL_`
216                         returnL (Just first_ty)
217         where
218           check ty = checkTys first_ty ty (mkCaseAltMsg alts)
219
220 lintAlgAlt scrut_ty (con, args, _, rhs)
221   = (case splitAlgTyConApp_maybe scrut_ty of
222       Nothing ->
223          addErrL (mkAlgAltMsg1 scrut_ty)
224       Just (tycon, tys_applied, cons) ->
225          let
226            arg_tys = dataConArgTys con tys_applied
227          in
228          checkL (con `elem` cons) (mkAlgAltMsg2 scrut_ty con) `thenL_`
229          checkL (length arg_tys == length args) (mkAlgAltMsg3 con args)
230                                                                  `thenL_`
231          mapL check (zipEqual "lintAlgAlt:stg" arg_tys args)     `thenL_`
232          returnL ()
233     )                                                            `thenL_`
234     addInScopeVars args         (
235          lintStgExpr rhs
236     )
237   where
238     check (ty, arg) = checkTys ty (idType arg) (mkAlgAltMsg4 ty arg)
239
240     -- elem: yes, the elem-list here can sometimes be long-ish,
241     -- but as it's use-once, probably not worth doing anything different
242     -- We give it its own copy, so it isn't overloaded.
243     elem _ []       = False
244     elem x (y:ys)   = x==y || elem x ys
245
246 lintPrimAlt scrut_ty alt@(lit,rhs)
247  = checkTys (literalType lit) scrut_ty (mkPrimAltMsg alt)       `thenL_`
248    lintStgExpr rhs
249
250 lintDeflt StgNoDefault scrut_ty = returnL Nothing
251 lintDeflt deflt@(StgBindDefault rhs) scrut_ty = lintStgExpr rhs
252 \end{code}
253
254
255 %************************************************************************
256 %*                                                                      *
257 \subsection[lint-monad]{The Lint monad}
258 %*                                                                      *
259 %************************************************************************
260
261 \begin{code}
262 type LintM a = [LintLocInfo]    -- Locations
263             -> IdSet            -- Local vars in scope
264             -> Bag ErrMsg       -- Error messages so far
265             -> (a, Bag ErrMsg)  -- Result and error messages (if any)
266
267 data LintLocInfo
268   = RhsOf Id            -- The variable bound
269   | LambdaBodyOf [Id]   -- The lambda-binder
270   | BodyOfLetRec [Id]   -- One of the binders
271
272 dumpLoc (RhsOf v) =
273   (getSrcLoc v, ptext SLIT(" [RHS of ") <> pp_binders [v] <> char ']' )
274 dumpLoc (LambdaBodyOf bs) =
275   (getSrcLoc (head bs), ptext SLIT(" [in body of lambda with binders ") <> pp_binders bs <> char ']' )
276
277 dumpLoc (BodyOfLetRec bs) =
278   (getSrcLoc (head bs), ptext SLIT(" [in body of letrec with binders ") <> pp_binders bs <> char ']' )
279
280
281 pp_binders :: [Id] -> SDoc
282 pp_binders bs
283   = sep (punctuate comma (map pp_binder bs))
284   where
285     pp_binder b
286       = hsep [ppr b, dcolon, ppr (idType b)]
287 \end{code}
288
289 \begin{code}
290 initL :: LintM a -> Maybe Message
291 initL m
292   = case (m [] emptyVarSet emptyBag) of { (_, errs) ->
293     if isEmptyBag errs then
294         Nothing
295     else
296         Just (pprBagOfErrors errs)
297     }
298
299 returnL :: a -> LintM a
300 returnL r loc scope errs = (r, errs)
301
302 thenL :: LintM a -> (a -> LintM b) -> LintM b
303 thenL m k loc scope errs
304   = case m loc scope errs of
305       (r, errs') -> k r loc scope errs'
306
307 thenL_ :: LintM a -> LintM b -> LintM b
308 thenL_ m k loc scope errs
309   = case m loc scope errs of
310       (_, errs') -> k loc scope errs'
311
312 thenMaybeL :: LintM (Maybe a) -> (a -> LintM (Maybe b)) -> LintM (Maybe b)
313 thenMaybeL m k loc scope errs
314   = case m loc scope errs of
315       (Nothing, errs2) -> (Nothing, errs2)
316       (Just r,  errs2) -> k r loc scope errs2
317
318 thenMaybeL_ :: LintM (Maybe a) -> LintM (Maybe b) -> LintM (Maybe b)
319 thenMaybeL_ m k loc scope errs
320   = case m loc scope errs of
321       (Nothing, errs2) -> (Nothing, errs2)
322       (Just _,  errs2) -> k loc scope errs2
323
324 mapL :: (a -> LintM b) -> [a] -> LintM [b]
325 mapL f [] = returnL []
326 mapL f (x:xs)
327   = f x         `thenL` \ r ->
328     mapL f xs   `thenL` \ rs ->
329     returnL (r:rs)
330
331 mapMaybeL :: (a -> LintM (Maybe b)) -> [a] -> LintM (Maybe [b])
332         -- Returns Nothing if anything fails
333 mapMaybeL f [] = returnL (Just [])
334 mapMaybeL f (x:xs)
335   = f x             `thenMaybeL` \ r ->
336     mapMaybeL f xs  `thenMaybeL` \ rs ->
337     returnL (Just (r:rs))
338 \end{code}
339
340 \begin{code}
341 checkL :: Bool -> Message -> LintM ()
342 checkL True  msg loc scope errs = ((), errs)
343 checkL False msg loc scope errs = ((), addErr errs msg loc)
344
345 addErrL :: Message -> LintM ()
346 addErrL msg loc scope errs = ((), addErr errs msg loc)
347
348 addErr :: Bag ErrMsg -> Message -> [LintLocInfo] -> Bag ErrMsg
349
350 addErr errs_so_far msg locs
351   = errs_so_far `snocBag` mk_msg locs
352   where
353     mk_msg (loc:_) = let (l,hdr) = dumpLoc loc in addErrLocHdrLine l hdr msg
354     mk_msg []      = dontAddErrLoc "" msg
355
356 addLoc :: LintLocInfo -> LintM a -> LintM a
357 addLoc extra_loc m loc scope errs
358   = m (extra_loc:loc) scope errs
359
360 addInScopeVars :: [Id] -> LintM a -> LintM a
361 addInScopeVars ids m loc scope errs
362   = -- We check if these "new" ids are already
363     -- in scope, i.e., we have *shadowing* going on.
364     -- For now, it's just a "trace"; we may make
365     -- a real error out of it...
366     let
367         new_set = mkVarSet ids
368
369         shadowed = scope `intersectVarSet` new_set
370     in
371 --  After adding -fliberate-case, Simon decided he likes shadowed
372 --  names after all.  WDP 94/07
373 --  (if isEmptyVarSet shadowed
374 --  then id
375 --  else pprTrace "Shadowed vars:" (ppr (varSetElems shadowed))) $
376     m loc (scope `unionVarSet` new_set) errs
377 \end{code}
378
379 Checking function applications: we only check that the type has the
380 right *number* of arrows, we don't actually compare the types.  This
381 is because we can't expect the types to be equal - the type
382 applications and type lambdas that we use to calculate accurate types
383 have long since disappeared.
384
385 \begin{code}
386 checkFunApp :: Type                 -- The function type
387             -> [Type]               -- The arg type(s)
388             -> Message              -- Error messgae
389             -> LintM (Maybe Type)   -- The result type
390
391 checkFunApp fun_ty arg_tys msg loc scope errs
392   = cfa res_ty expected_arg_tys arg_tys
393   where
394     (_, de_forall_ty)   = splitForAllTys fun_ty
395     (expected_arg_tys, res_ty) = splitFunTys de_forall_ty
396
397     cfa res_ty expected []      -- Args have run out; that's fine
398       = (Just (mkFunTys expected res_ty), errs)
399
400     cfa res_ty [] arg_tys       -- Expected arg tys ran out first;
401                                 -- first see if res_ty is a tyvar template;
402                                 -- otherwise, maybe res_ty is a
403                                 -- dictionary type which is actually a function?
404       | isTyVarTy res_ty
405       = (Just res_ty, errs)
406       | otherwise
407       = case splitFunTys res_ty of
408           ([], _)                 -> (Nothing, addErr errs msg loc)     -- Too many args
409           (new_expected, new_res) -> cfa new_res new_expected arg_tys
410
411     cfa res_ty (expected_arg_ty:expected_arg_tys) (arg_ty:arg_tys)
412       = cfa res_ty expected_arg_tys arg_tys
413 \end{code}
414
415 \begin{code}
416 checkInScope :: Id -> LintM ()
417 checkInScope id loc scope errs
418   = if isLocallyDefined id && not (id `elemVarSet` scope) then
419         ((), addErr errs (hsep [ppr id, ptext SLIT("is out of scope")]) loc)
420     else
421         ((), errs)
422
423 checkTys :: Type -> Type -> Message -> LintM ()
424 checkTys ty1 ty2 msg loc scope errs
425   = -- if (ty1 == ty2) then
426     ((), errs)
427     -- else ((), addErr errs msg loc)
428 \end{code}
429
430 \begin{code}
431 mkCaseAltMsg :: StgCaseAlts -> Message
432 mkCaseAltMsg alts
433   = ($$) (text "In some case alternatives, type of alternatives not all same:")
434             (empty) -- LATER: ppr alts
435
436 mkCaseAbstractMsg :: TyCon -> Message
437 mkCaseAbstractMsg tycon
438   = ($$) (ptext SLIT("An algebraic case on an abstract type:"))
439             (ppr tycon)
440
441 mkDefltMsg :: Id -> Message
442 mkDefltMsg bndr
443   = ($$) (ptext SLIT("Binder of a case expression doesn't match type of scrutinee:"))
444             (panic "mkDefltMsg")
445
446 mkFunAppMsg :: Type -> [Type] -> StgExpr -> Message
447 mkFunAppMsg fun_ty arg_tys expr
448   = vcat [text "In a function application, function type doesn't match arg types:",
449               hang (ptext SLIT("Function type:")) 4 (ppr fun_ty),
450               hang (ptext SLIT("Arg types:")) 4 (vcat (map (ppr) arg_tys)),
451               hang (ptext SLIT("Expression:")) 4 (ppr expr)]
452
453 mkRhsConMsg :: Type -> [Type] -> Message
454 mkRhsConMsg fun_ty arg_tys
455   = vcat [text "In a RHS constructor application, con type doesn't match arg types:",
456               hang (ptext SLIT("Constructor type:")) 4 (ppr fun_ty),
457               hang (ptext SLIT("Arg types:")) 4 (vcat (map (ppr) arg_tys))]
458
459 mkUnappTyMsg :: Id -> Type -> Message
460 mkUnappTyMsg var ty
461   = vcat [text "Variable has a for-all type, but isn't applied to any types.",
462               (<>) (ptext SLIT("Var:      ")) (ppr var),
463               (<>) (ptext SLIT("Its type: ")) (ppr ty)]
464
465 mkAlgAltMsg1 :: Type -> Message
466 mkAlgAltMsg1 ty
467   = ($$) (text "In some case statement, type of scrutinee is not a data type:")
468             (ppr ty)
469
470 mkAlgAltMsg2 :: Type -> DataCon -> Message
471 mkAlgAltMsg2 ty con
472   = vcat [
473         text "In some algebraic case alternative, constructor is not a constructor of scrutinee type:",
474         ppr ty,
475         ppr con
476     ]
477
478 mkAlgAltMsg3 :: DataCon -> [Id] -> Message
479 mkAlgAltMsg3 con alts
480   = vcat [
481         text "In some algebraic case alternative, number of arguments doesn't match constructor:",
482         ppr con,
483         ppr alts
484     ]
485
486 mkAlgAltMsg4 :: Type -> Id -> Message
487 mkAlgAltMsg4 ty arg
488   = vcat [
489         text "In some algebraic case alternative, type of argument doesn't match data constructor:",
490         ppr ty,
491         ppr arg
492     ]
493
494 mkPrimAltMsg :: (Literal, StgExpr) -> Message
495 mkPrimAltMsg alt
496   = text "In a primitive case alternative, type of literal doesn't match type of scrutinee:"
497     $$ ppr alt
498
499 mkCaseOfCaseMsg :: StgExpr -> Message
500 mkCaseOfCaseMsg e
501   = text "Case of non-tail-call:" $$ ppr e
502
503 mkRhsMsg :: Id -> Type -> Message
504 mkRhsMsg binder ty
505   = vcat [hsep [ptext SLIT("The type of this binder doesn't match the type of its RHS:"),
506                      ppr binder],
507               hsep [ptext SLIT("Binder's type:"), ppr (idType binder)],
508               hsep [ptext SLIT("Rhs type:"), ppr ty]
509              ]
510
511 mkUnLiftedTyMsg binder rhs
512   = (ptext SLIT("Let(rec) binder") <+> quotes (ppr binder) <+> 
513      ptext SLIT("has unlifted type") <+> quotes (ppr (idType binder)))
514     $$
515     (ptext SLIT("RHS:") <+> ppr rhs)
516 \end{code}