[project @ 1998-03-19 23:54:49 by simonpj]
[ghc-hetmet.git] / ghc / compiler / typecheck / TcIfaceSig.lhs
index 1218e41..94e42b7 100644 (file)
@@ -10,7 +10,7 @@ module TcIfaceSig ( tcInterfaceSigs ) where
 
 import HsSyn           ( HsDecl(..), IfaceSig(..) )
 import TcMonad
-import TcMonoType      ( tcHsType, tcHsTypeKind )
+import TcMonoType      ( tcHsType, tcHsTypeKind, tcTyVarScope )
 import TcEnv           ( tcExtendTyVarEnv, tcExtendGlobalValEnv,
                          tcLookupTyConByKey, tcLookupGlobalValueMaybe,
                          tcExplicitLookupGlobal
@@ -28,20 +28,20 @@ import MagicUFs             ( MagicUnfoldingFun )
 import WwLib           ( mkWrapper )
 import PrimOp          ( PrimOp(..) )
 
-import Id              ( GenId, mkImported, mkUserId, addInlinePragma,
-                         isPrimitiveId_maybe, dataConArgTys, Id )
+import MkId            ( mkImportedId, mkUserId )
+import Id              ( Id, addInlinePragma, isPrimitiveId_maybe, dataConArgTys )
+import IdInfo
+import SpecEnv         ( addToSpecEnv )
 import Type            ( mkSynTy, splitAlgTyConApp )
 import TyVar           ( mkSysTyVar )
 import Name            ( Name )
 import Unique          ( rationalTyConKey, uniqueOf )
 import TysWiredIn      ( integerTy )
-import PragmaInfo      ( PragmaInfo(..) )
 import ErrUtils                ( pprBagOfErrors )
-import Maybes          ( maybeToBool )
+import Maybes          ( maybeToBool, MaybeErr(..) )
 import Outputable      
 import Util            ( zipWithEqual )
 
-import IdInfo
 \end{code}
 
 Ultimately, type signatures in interfaces will have pragmatic
@@ -61,17 +61,8 @@ tcInterfaceSigs unf_env (SigD (IfaceSig name ty id_infos src_loc) : rest)
   = tcAddSrcLoc src_loc (
     tcAddErrCtxt (ifaceSigCtxt name) (
        tcHsType ty                                             `thenTc` \ sigma_ty ->
-       tcIdInfo unf_env name sigma_ty noIdInfo id_infos        `thenTc` \ id_info' ->
-       let
-           imp_id = mkImported name sigma_ty id_info'
-           sig_id | any inline_please id_infos = addInlinePragma imp_id
-                  | otherwise                  = imp_id
-
-           inline_please (HsUnfold inline _)                          = inline
-           inline_please (HsStrictness (HsStrictnessInfo _ (Just _))) = True   -- Inline wrappers
-           inline_please other                                        = False
-       in
-       returnTc sig_id
+       tcIdInfo unf_env name sigma_ty noIdInfo id_infos        `thenTc` \ id_info ->
+       returnTc (mkImportedId name sigma_ty id_info)
     ))                                         `thenTc` \ sig_id ->
     tcInterfaceSigs unf_env rest               `thenTc` \ sig_ids ->
     returnTc (sig_id : sig_ids)
@@ -83,19 +74,48 @@ tcInterfaceSigs unf_env [] = returnTc []
 
 \begin{code}
 tcIdInfo unf_env name ty info info_ins
-  = go noIdInfo info_ins
+  = foldlTc tcPrag noIdInfo info_ins
   where
-    go info_so_far []             = returnTc info_so_far
-    go info (HsArity arity : rest) = go (info `addArityInfo` arity) rest
-    go info (HsUpdate upd : rest)  = go (info `addUpdateInfo` upd)  rest
-    go info (HsFBType fb : rest)   = go (info `addFBTypeInfo` fb)   rest
-    go info (HsArgUsage au : rest) = go (info `addArgUsageInfo` au) rest
-
-    go info (HsUnfold inline expr : rest) = tcUnfolding unf_env name expr      `thenNF_Tc` \ unfold_info ->
-                                           go (info `addUnfoldInfo` unfold_info) rest
-
-    go info (HsStrictness strict : rest)  = tcStrictness unf_env ty info strict        `thenTc` \ info' ->
-                                           go info' rest
+    tcPrag info (HsArity arity) = returnTc (arity `setArityInfo` info)
+    tcPrag info (HsUpdate upd)  = returnTc (upd   `setUpdateInfo` info)
+    tcPrag info (HsFBType fb)   = returnTc (fb    `setFBTypeInfo` info)
+    tcPrag info (HsArgUsage au) = returnTc (au    `setArgUsageInfo` info)
+
+    tcPrag info (HsUnfold inline expr)
+       = tcPragExpr unf_env name expr  `thenNF_Tc` \ maybe_expr' ->
+         let
+               -- maybe_expr doesn't get looked at if the unfolding
+               -- is never inspected; so the typecheck doesn't even happen
+               unfold_info = case maybe_expr' of
+                               Nothing    -> NoUnfolding
+                               Just expr' -> mkUnfolding expr' 
+               info1 = unfold_info `setUnfoldingInfo` info
+
+               info2 | inline    = IWantToBeINLINEd `setInlinePragInfo` info1
+                     | otherwise = info1
+         in
+         returnTc info2
+
+    tcPrag info (HsStrictness strict)
+       = tcStrictness unf_env ty info strict
+
+    tcPrag info (HsSpecialise tyvars tys rhs)
+       = tcTyVarScope tyvars           $ \ tyvars' ->
+         mapTc tcHsType tys            `thenTc` \ tys' -> 
+         tcPragExpr unf_env name rhs   `thenNF_Tc` \ maybe_rhs' ->
+         let
+               -- If spec_env isn't looked at, none of this 
+               -- actually takes place
+           spec_env  = specInfo info
+           spec_env' = case maybe_rhs' of
+                         Nothing -> spec_env
+                         Just rhs' -> case addToSpecEnv True {- overlap ok -} spec_env tyvars' tys' rhs' of
+                                         Succeeded spec_env' -> spec_env'
+                                         Failed err          -> pprTrace "tcIdInfo: bad specialisation"
+                                                                         (ppr name <+> ppr err) $
+                                                                spec_env
+         in
+         returnTc (spec_env' `setSpecInfo` info)
 \end{code}
 
 \begin{code}
@@ -105,15 +125,18 @@ tcStrictness unf_env ty info (HsStrictnessInfo demands maybe_worker)
     let
        -- Watch out! We can't pull on maybe_worker_id too eagerly!
        info' = case maybe_worker_id of
-                       Just worker_id -> info `addUnfoldInfo` mkUnfolding NoPragmaInfo (wrap_fn worker_id)
+                       Just worker_id -> setUnfoldingInfo (mkUnfolding (wrap_fn worker_id)) $
+                                         setInlinePragInfo IWantToBeINLINEd info
+
                        Nothing        -> info
+
        has_worker = maybeToBool maybe_worker_id
     in
-    returnTc (info' `addStrictnessInfo` StrictnessInfo demands has_worker)
+    returnTc (StrictnessInfo demands has_worker  `setStrictnessInfo` info')
 
 -- Boring to write these out, but the result type differs from the arg type...
 tcStrictness unf_env ty info HsBottom
-  = returnTc (info `addStrictnessInfo` BottomGuaranteed)
+  = returnTc (BottomGuaranteed `setStrictnessInfo` info)
 \end{code}
 
 \begin{code}
@@ -133,20 +156,20 @@ For unfoldings we try to do the job lazily, so that we never type check
 an unfolding that isn't going to be looked at.
 
 \begin{code}
-tcUnfolding unf_env name core_expr
+tcPragExpr unf_env name core_expr
   = forkNF_Tc (
        recoverNF_Tc no_unfolding (
                tcSetEnv unf_env $
                tcCoreExpr core_expr    `thenTc` \ core_expr' ->
-               returnTc (mkUnfolding NoPragmaInfo core_expr')
+               returnTc (Just core_expr')
     ))                 
   where
        -- The trace tells what wasn't available, for the benefit of
        -- compiler hackers who want to improve it!
     no_unfolding = getErrsTc           `thenNF_Tc` \ (warns,errs) ->
                   returnNF_Tc (pprTrace "tcUnfolding failed with:" 
-                                       (hang (ppr name) 4 (pprBagOfErrors errs))
-                                       NoUnfolding)
+                                        (hang (ppr name) 4 (pprBagOfErrors errs))
+                                        Nothing)
 \end{code}
 
 
@@ -212,15 +235,18 @@ tcCoreExpr (UfCase scrut alts)
     tcCoreAlts (coreExprType scrut') alts      `thenTc` \ alts' ->
     returnTc (Case scrut' alts')
 
-tcCoreExpr (UfSCC cc expr) 
+tcCoreExpr (UfNote note expr) 
   = tcCoreExpr expr            `thenTc` \ expr' ->
-    returnTc  (SCC cc expr') 
-
-tcCoreExpr(UfCoerce coercion ty body)
-  = tcCoercion coercion                `thenTc` \ coercion' ->
-    tcHsTypeKind ty            `thenTc` \ (_,ty') ->
-    tcCoreExpr body            `thenTc` \ body' ->
-    returnTc (Coerce coercion' ty' body')
+    case note of
+       UfCoerce to_ty -> tcHsTypeKind to_ty    `thenTc` \ (_,to_ty') ->
+                         returnTc (Note (Coerce to_ty' (coreExprType expr')) expr')
+       UfInlineCall   -> returnTc (Note InlineCall expr')
+       UfSCC cc       -> returnTc (Note (SCC cc) expr')
+
+tcCoreNote (UfSCC cc)   = returnTc (SCC cc)
+tcCoreNote UfInlineCall = returnTc InlineCall 
+\end{code}
+    returnTc (Note note' expr') 
 
 tcCoreExpr (UfLam bndr body)
   = tcCoreLamBndr bndr                 $ \ bndr' ->
@@ -317,9 +343,6 @@ tcCoreDefault scrut_ty (UfBindDefault name rhs)
     returnTc (BindDefault deflt_id rhs')
     
 
-tcCoercion (UfIn  n) = tcVar n `thenTc` \ n' -> returnTc (CoerceIn  n')
-tcCoercion (UfOut n) = tcVar n `thenTc` \ n' -> returnTc (CoerceOut n')
-
 tcCorePrim (UfOtherOp op) 
   = tcVar op           `thenTc` \ op_id ->
     case isPrimitiveId_maybe op_id of