X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fcompiler%2Ftypecheck%2FTcDefaults.lhs;h=6067ea8934588e3738cfd7530a40b89beefd5657;hb=20f50b2a3651ce7dacdcb86a83afb5c5d444cb0b;hp=066f90e625fc20c64b18081bbfe40956570ec068;hpb=12899612693163154531da3285ec99c1c8ca2226;p=ghc-hetmet.git diff --git a/ghc/compiler/typecheck/TcDefaults.lhs b/ghc/compiler/typecheck/TcDefaults.lhs index 066f90e..6067ea8 100644 --- a/ghc/compiler/typecheck/TcDefaults.lhs +++ b/ghc/compiler/typecheck/TcDefaults.lhs @@ -1,56 +1,85 @@ % -% (c) The AQUA Project, Glasgow University, 1993-1995 +% (c) The AQUA Project, Glasgow University, 1993-1998 % \section[TcDefaults]{Typechecking \tr{default} declarations} \begin{code} -#include "HsVersions.h" - -module TcDefaults ( tcDefaults ) where +module TcDefaults ( tcDefaults, defaultDefaultTys ) where -IMP_Ubiq() +#include "HsVersions.h" -import HsSyn ( DefaultDecl(..), MonoType, - HsExpr, HsLit, ArithSeqInfo, Fake, InPat) -import RnHsSyn ( RenamedDefaultDecl(..) ) -import TcHsSyn ( TcIdOcc ) +import HsSyn ( HsDecl(..), DefaultDecl(..) ) +import RnHsSyn ( RenamedHsDecl ) -import TcMonad hiding ( rnMtoTcM ) -import Inst ( InstOrigin(..) ) -import TcEnv ( tcLookupClassByKey ) -import SpecEnv ( SpecEnv ) -import TcMonoType ( tcMonoType ) -import TcSimplify ( tcSimplifyCheckThetas ) +import TcMonad +import TcEnv ( tcLookupGlobal_maybe ) +import TcMonoType ( tcHsType ) +import TcSimplify ( tcSimplifyDefault ) -import TysWiredIn ( intTy, doubleTy, unitTy ) -import Unique ( numClassKey ) -import Util +import TysWiredIn ( integerTy, doubleTy ) +import TcType ( Type, mkClassPred, isTauTy ) +import PrelNames ( numClassName ) +import Outputable +import HscTypes ( TyThing(..) ) \end{code} \begin{code} -tcDefaults :: [RenamedDefaultDecl] - -> TcM s [Type] -- defaulting types to heave +defaultDefaultTys = [integerTy, doubleTy] + +tcDefaults :: [RenamedHsDecl] + -> TcM [Type] -- defaulting types to heave -- into Tc monad for later use -- in Disambig. +tcDefaults decls = tc_defaults [default_decl | DefD default_decl <- decls] -tcDefaults [] - = returnTc [intTy, doubleTy] -- language-specified default `default' +tc_defaults [] = returnTc defaultDefaultTys -tcDefaults [DefaultDecl mono_tys locn] - = tcAddSrcLoc locn $ - mapTc tcMonoType mono_tys `thenTc` \ tau_tys -> +tc_defaults [DefaultDecl [] locn] + = returnTc [] -- no defaults - case tau_tys of - [] -> returnTc [] -- no defaults +tc_defaults [DefaultDecl mono_tys locn] + = tcLookupGlobal_maybe numClassName `thenNF_Tc` \ maybe_num -> + case maybe_num of + Just (AClass num_class) -> common_case num_class + other -> returnTc [] + -- In the Nothing case, Num has not been sucked in, so the + -- defaults will never be used; so simply discard the default decl. + -- This slightly benefits modules that don't use any + -- numeric stuff at all, by avoid the necessity of + -- always sucking in Num + where + common_case num_class + = tcAddSrcLoc locn $ + tcAddErrCtxt defaultDeclCtxt $ + mapTc tc_default_ty mono_tys `thenTc` \ tau_tys -> + + -- Check that all the types are instances of Num + -- We only care about whether it worked or not + tcSimplifyDefault [mkClassPred num_class [ty] | ty <- tau_tys] `thenTc_` + + returnTc tau_tys - _ -> - -- Check that all the types are instances of Num - -- We only care about whether it worked or not +tc_defaults decls@(DefaultDecl _ loc : _) = + tcAddSrcLoc loc $ + failWithTc (dupDefaultDeclErr decls) - tcLookupClassByKey numClassKey `thenNF_Tc` \ num -> - tcSimplifyCheckThetas - [ (num, ty) | ty <- tau_tys ] `thenTc_` - returnTc tau_tys +tc_default_ty hs_ty + = tcHsType hs_ty `thenTc` \ ty -> + checkTc (isTauTy ty) (polyDefErr hs_ty) `thenTc_` + returnTc ty +defaultDeclCtxt = ptext SLIT("when checking that each type in a default declaration") + $$ ptext SLIT("is an instance of class Num") + + +dupDefaultDeclErr (DefaultDecl _ locn1 : dup_things) + = hang (ptext SLIT("Multiple default declarations")) + 4 (vcat (map pp dup_things)) + where + pp (DefaultDecl _ locn) = ptext SLIT("here was another default declaration") <+> ppr locn + +polyDefErr ty + = hang (ptext SLIT("Illegal polymorphic type in default declaration") <> colon) 4 (ppr ty) \end{code} +