7d51052798b0e56ca5440f662599e9d109b74526
[ghc-hetmet.git] / ghc / compiler / typecheck / Inst.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
3 %
4 \section[Inst]{The @Inst@ type: dictionaries or method instances}
5
6 \begin{code}
7 module Inst ( 
8         LIE, emptyLIE, unitLIE, plusLIE, consLIE, zonkLIE,
9         plusLIEs, mkLIE, isEmptyLIE, lieToList, listToLIE,
10
11         Inst, 
12         pprInst, pprInsts, pprInstsInFull, tidyInsts, tidyMoreInsts,
13
14         newDictsFromOld, newDicts, cloneDict,
15         newMethod, newMethodWithGivenTy, newMethodAtLoc,
16         newOverloadedLit, newIPDict, tcInstCall,
17
18         tyVarsOfInst, tyVarsOfInsts, tyVarsOfLIE, 
19         ipNamesOfInst, ipNamesOfInsts, predsOfInst, predsOfInsts,
20         instLoc, getDictClassTys, dictPred,
21
22         lookupInst, lookupSimpleInst, LookupInstResult(..),
23
24         isDict, isClassDict, isMethod, 
25         isLinearInst, linearInstType,
26         isTyVarDict, isStdClassTyVarDict, isMethodFor, 
27         instBindingRequired, instCanBeGeneralised,
28
29         zonkInst, zonkInsts,
30         instToId, instName,
31
32         InstOrigin(..), InstLoc, pprInstLoc
33     ) where
34
35 #include "HsVersions.h"
36
37 import CmdLineOpts ( opt_NoMethodSharing )
38 import HsSyn    ( HsLit(..), HsOverLit(..), HsExpr(..) )
39 import TcHsSyn  ( TcExpr, TcId, TypecheckedHsExpr,
40                   mkHsTyApp, mkHsDictApp, mkHsConApp, zonkId
41                 )
42 import TcMonad
43 import TcEnv    ( TcIdSet, tcGetInstEnv, tcLookupId )
44 import InstEnv  ( InstLookupResult(..), lookupInstEnv )
45 import TcMType  ( zonkTcType, zonkTcTypes, zonkTcPredType,
46                   zonkTcThetaType, tcInstTyVar, tcInstType,
47                 )
48 import TcType   ( Type, TcType, TcThetaType, TcPredType, TcTauType, TcTyVarSet,
49                   SourceType(..), PredType, ThetaType,
50                   tcSplitForAllTys, tcSplitForAllTys, 
51                   tcSplitMethodTy, tcSplitRhoTy, tcFunArgTy,
52                   isIntTy,isFloatTy, isIntegerTy, isDoubleTy,
53                   tcIsTyVarTy, mkPredTy, mkTyVarTy, mkTyVarTys,
54                   tyVarsOfType, tyVarsOfTypes, tyVarsOfPred, tidyPred,
55                   isClassPred, isTyVarClassPred, isLinearPred,
56                   getClassPredTys, getClassPredTys_maybe, mkPredName,
57                   tidyType, tidyTypes, tidyFreeTyVars,
58                   tcCmpType, tcCmpTypes, tcCmpPred
59                 )
60 import CoreFVs  ( idFreeTyVars )
61 import Class    ( Class )
62 import Id       ( Id, idName, idType, mkUserLocal, mkSysLocal, mkLocalId, setIdUnique )
63 import PrelInfo ( isStandardClass, isCcallishClass, isNoDictClass )
64 import Name     ( Name, mkMethodOcc, getOccName )
65 import PprType  ( pprPred, pprParendType )      
66 import Subst    ( emptyInScopeSet, mkSubst, 
67                   substTy, substTyWith, substTheta, mkTyVarSubst, mkTopTyVarSubst
68                 )
69 import Literal  ( inIntRange )
70 import VarEnv   ( TidyEnv, lookupSubstEnv, SubstResult(..) )
71 import VarSet   ( elemVarSet, emptyVarSet, unionVarSet )
72 import TysWiredIn ( floatDataCon, doubleDataCon )
73 import PrelNames( fromIntegerName, fromRationalName )
74 import Util     ( thenCmp, equalLength )
75 import BasicTypes( IPName(..), mapIPName, ipNameName )
76
77 import Bag
78 import Outputable
79 \end{code}
80
81 %************************************************************************
82 %*                                                                      *
83 \subsection[Inst-collections]{LIE: a collection of Insts}
84 %*                                                                      *
85 %************************************************************************
86
87 \begin{code}
88 type LIE = Bag Inst
89
90 isEmptyLIE        = isEmptyBag
91 emptyLIE          = emptyBag
92 unitLIE inst      = unitBag inst
93 mkLIE insts       = listToBag insts
94 plusLIE lie1 lie2 = lie1 `unionBags` lie2
95 consLIE inst lie  = inst `consBag` lie
96 plusLIEs lies     = unionManyBags lies
97 lieToList         = bagToList
98 listToLIE         = listToBag
99
100 zonkLIE :: LIE -> NF_TcM LIE
101 zonkLIE lie = mapBagNF_Tc zonkInst lie
102
103 pprInsts :: [Inst] -> SDoc
104 pprInsts insts  = parens (sep (punctuate comma (map pprInst insts)))
105
106
107 pprInstsInFull insts
108   = vcat (map go insts)
109   where
110     go inst = quotes (ppr inst) <+> pprInstLoc (instLoc inst)
111 \end{code}
112
113 %************************************************************************
114 %*                                                                      *
115 \subsection[Inst-types]{@Inst@ types}
116 %*                                                                      *
117 %************************************************************************
118
119 An @Inst@ is either a dictionary, an instance of an overloaded
120 literal, or an instance of an overloaded value.  We call the latter a
121 ``method'' even though it may not correspond to a class operation.
122 For example, we might have an instance of the @double@ function at
123 type Int, represented by
124
125         Method 34 doubleId [Int] origin
126
127 \begin{code}
128 data Inst
129   = Dict
130         Id
131         TcPredType
132         InstLoc
133
134   | Method
135         Id
136
137         TcId    -- The overloaded function
138                         -- This function will be a global, local, or ClassOpId;
139                         --   inside instance decls (only) it can also be an InstId!
140                         -- The id needn't be completely polymorphic.
141                         -- You'll probably find its name (for documentation purposes)
142                         --        inside the InstOrigin
143
144         [TcType]        -- The types to which its polymorphic tyvars
145                         --      should be instantiated.
146                         -- These types must saturate the Id's foralls.
147
148         TcThetaType     -- The (types of the) dictionaries to which the function
149                         -- must be applied to get the method
150
151         TcTauType       -- The type of the method
152
153         InstLoc
154
155         -- INVARIANT: in (Method u f tys theta tau loc)
156         --      type of (f tys dicts(from theta)) = tau
157
158   | LitInst
159         Id
160         HsOverLit       -- The literal from the occurrence site
161         TcType          -- The type at which the literal is used
162         InstLoc
163 \end{code}
164
165 Ordering
166 ~~~~~~~~
167 @Insts@ are ordered by their class/type info, rather than by their
168 unique.  This allows the context-reduction mechanism to use standard finite
169 maps to do their stuff.
170
171 \begin{code}
172 instance Ord Inst where
173   compare = cmpInst
174
175 instance Eq Inst where
176   (==) i1 i2 = case i1 `cmpInst` i2 of
177                  EQ    -> True
178                  other -> False
179
180 cmpInst (Dict _ pred1 _)          (Dict _ pred2 _)          = pred1 `tcCmpPred` pred2
181 cmpInst (Dict _ _ _)              other                     = LT
182
183 cmpInst (Method _ _ _ _ _ _)      (Dict _ _ _)              = GT
184 cmpInst (Method _ id1 tys1 _ _ _) (Method _ id2 tys2 _ _ _) = (id1 `compare` id2) `thenCmp` (tys1 `tcCmpTypes` tys2)
185 cmpInst (Method _ _ _ _ _ _)      other                     = LT
186
187 cmpInst (LitInst _ lit1 ty1 _)    (LitInst _ lit2 ty2 _)    = (lit1 `compare` lit2) `thenCmp` (ty1 `tcCmpType` ty2)
188 cmpInst (LitInst _ _ _ _)         other                     = GT
189
190 -- and they can only have HsInt or HsFracs in them.
191 \end{code}
192
193
194 Selection
195 ~~~~~~~~~
196 \begin{code}
197 instName :: Inst -> Name
198 instName inst = idName (instToId inst)
199
200 instToId :: Inst -> TcId
201 instToId (Dict id _ _)         = id
202 instToId (Method id _ _ _ _ _) = id
203 instToId (LitInst id _ _ _)    = id
204
205 instLoc (Dict _ _         loc) = loc
206 instLoc (Method _ _ _ _ _ loc) = loc
207 instLoc (LitInst _ _ _    loc) = loc
208
209 dictPred (Dict _ pred _ ) = pred
210 dictPred inst             = pprPanic "dictPred" (ppr inst)
211
212 getDictClassTys (Dict _ pred _) = getClassPredTys pred
213
214 predsOfInsts :: [Inst] -> [PredType]
215 predsOfInsts insts = concatMap predsOfInst insts
216
217 predsOfInst (Dict _ pred _)          = [pred]
218 predsOfInst (Method _ _ _ theta _ _) = theta
219 predsOfInst (LitInst _ _ _ _)        = []
220         -- The last case is is really a big cheat
221         -- LitInsts to give rise to a (Num a) or (Fractional a) predicate
222         -- But Num and Fractional have only one parameter and no functional
223         -- dependencies, so I think no caller of predsOfInst will care.
224
225 ipNamesOfInsts :: [Inst] -> [Name]
226 ipNamesOfInst  :: Inst   -> [Name]
227 -- Get the implicit parameters mentioned by these Insts
228 -- NB: ?x and %x get different Names
229
230 ipNamesOfInsts insts = [n | inst <- insts, n <- ipNamesOfInst inst]
231
232 ipNamesOfInst (Dict _ (IParam n _) _)  = [ipNameName n]
233 ipNamesOfInst (Method _ _ _ theta _ _) = [ipNameName n | IParam n _ <- theta]
234 ipNamesOfInst other                    = []
235
236 tyVarsOfInst :: Inst -> TcTyVarSet
237 tyVarsOfInst (LitInst _ _ ty _)      = tyVarsOfType  ty
238 tyVarsOfInst (Dict _ pred _)         = tyVarsOfPred pred
239 tyVarsOfInst (Method _ id tys _ _ _) = tyVarsOfTypes tys `unionVarSet` idFreeTyVars id
240                                          -- The id might have free type variables; in the case of
241                                          -- locally-overloaded class methods, for example
242
243 tyVarsOfInsts insts = foldr (unionVarSet . tyVarsOfInst) emptyVarSet insts
244 tyVarsOfLIE   lie   = tyVarsOfInsts (lieToList lie)
245 \end{code}
246
247 Predicates
248 ~~~~~~~~~~
249 \begin{code}
250 isDict :: Inst -> Bool
251 isDict (Dict _ _ _) = True
252 isDict other        = False
253
254 isClassDict :: Inst -> Bool
255 isClassDict (Dict _ pred _) = isClassPred pred
256 isClassDict other           = False
257
258 isTyVarDict :: Inst -> Bool
259 isTyVarDict (Dict _ pred _) = isTyVarClassPred pred
260 isTyVarDict other           = False
261
262 isMethod :: Inst -> Bool
263 isMethod (Method _ _ _ _ _ _) = True
264 isMethod other                = False
265
266 isMethodFor :: TcIdSet -> Inst -> Bool
267 isMethodFor ids (Method uniq id tys _ _ loc) = id `elemVarSet` ids
268 isMethodFor ids inst                         = False
269
270 isLinearInst :: Inst -> Bool
271 isLinearInst (Dict _ pred _) = isLinearPred pred
272 isLinearInst other           = False
273         -- We never build Method Insts that have
274         -- linear implicit paramters in them.
275         -- Hence no need to look for Methods
276         -- See TcExpr.tcId 
277
278 linearInstType :: Inst -> TcType        -- %x::t  -->  t
279 linearInstType (Dict _ (IParam _ ty) _) = ty
280
281
282 isStdClassTyVarDict (Dict _ pred _) = case getClassPredTys_maybe pred of
283                                         Just (clas, [ty]) -> isStandardClass clas && tcIsTyVarTy ty
284                                         other             -> False
285 \end{code}
286
287 Two predicates which deal with the case where class constraints don't
288 necessarily result in bindings.  The first tells whether an @Inst@
289 must be witnessed by an actual binding; the second tells whether an
290 @Inst@ can be generalised over.
291
292 \begin{code}
293 instBindingRequired :: Inst -> Bool
294 instBindingRequired (Dict _ (ClassP clas _) _) = not (isNoDictClass clas)
295 instBindingRequired other                      = True
296
297 instCanBeGeneralised :: Inst -> Bool
298 instCanBeGeneralised (Dict _ (ClassP clas _) _) = not (isCcallishClass clas)
299 instCanBeGeneralised other                      = True
300 \end{code}
301
302
303 %************************************************************************
304 %*                                                                      *
305 \subsection{Building dictionaries}
306 %*                                                                      *
307 %************************************************************************
308
309 \begin{code}
310 newDicts :: InstOrigin
311          -> TcThetaType
312          -> NF_TcM [Inst]
313 newDicts orig theta
314   = tcGetInstLoc orig           `thenNF_Tc` \ loc ->
315     newDictsAtLoc loc theta
316
317 cloneDict :: Inst -> NF_TcM Inst
318 cloneDict (Dict id ty loc) = tcGetUnique        `thenNF_Tc` \ uniq ->
319                              returnNF_Tc (Dict (setIdUnique id uniq) ty loc)
320
321 newDictsFromOld :: Inst -> TcThetaType -> NF_TcM [Inst]
322 newDictsFromOld (Dict _ _ loc) theta = newDictsAtLoc loc theta
323
324 -- Local function, similar to newDicts, 
325 -- but with slightly different interface
326 newDictsAtLoc :: InstLoc
327               -> TcThetaType
328               -> NF_TcM [Inst]
329 newDictsAtLoc inst_loc@(_,loc,_) theta
330   = tcGetUniques                        `thenNF_Tc` \ new_uniqs ->
331     returnNF_Tc (zipWith mk_dict new_uniqs theta)
332   where
333     mk_dict uniq pred = Dict (mkLocalId (mkPredName uniq loc pred) (mkPredTy pred)) pred inst_loc
334
335 -- For vanilla implicit parameters, there is only one in scope
336 -- at any time, so we used to use the name of the implicit parameter itself
337 -- But with splittable implicit parameters there may be many in 
338 -- scope, so we make up a new name.
339 newIPDict :: InstOrigin -> IPName Name -> Type 
340           -> NF_TcM (IPName Id, Inst)
341 newIPDict orig ip_name ty
342   = tcGetInstLoc orig                   `thenNF_Tc` \ inst_loc@(_,loc,_) ->
343     tcGetUnique                         `thenNF_Tc` \ uniq ->
344     let
345         pred = IParam ip_name ty
346         id   = mkLocalId (mkPredName uniq loc pred) (mkPredTy pred)
347     in
348     returnNF_Tc (mapIPName (\n -> id) ip_name, Dict id pred inst_loc)
349 \end{code}
350
351
352 %************************************************************************
353 %*                                                                      *
354 \subsection{Building methods (calls of overloaded functions)}
355 %*                                                                      *
356 %************************************************************************
357
358
359 \begin{code}
360 tcInstCall :: InstOrigin  -> TcType -> NF_TcM (TypecheckedHsExpr -> TypecheckedHsExpr, LIE, TcType)
361 tcInstCall orig fun_ty  -- fun_ty is usually a sigma-type
362   = tcInstType fun_ty           `thenNF_Tc` \ (tyvars, theta, tau) ->
363     newDicts orig theta         `thenNF_Tc` \ dicts ->
364     let
365         inst_fn e = mkHsDictApp (mkHsTyApp e (mkTyVarTys tyvars)) (map instToId dicts)
366     in
367     returnNF_Tc (inst_fn, mkLIE dicts, tau)
368
369 newMethod :: InstOrigin
370           -> TcId
371           -> [TcType]
372           -> NF_TcM Inst
373 newMethod orig id tys
374   =     -- Get the Id type and instantiate it at the specified types
375     let
376         (tyvars, rho) = tcSplitForAllTys (idType id)
377         rho_ty        = substTyWith tyvars tys rho
378         (pred, tau)   = tcSplitMethodTy rho_ty
379     in
380     newMethodWithGivenTy orig id tys [pred] tau
381
382 newMethodWithGivenTy orig id tys theta tau
383   = tcGetInstLoc orig   `thenNF_Tc` \ loc ->
384     newMethodWith loc id tys theta tau
385
386 newMethodWith inst_loc@(_,loc,_) id tys theta tau
387   = tcGetUnique         `thenNF_Tc` \ new_uniq ->
388     let
389         meth_id = mkUserLocal (mkMethodOcc (getOccName id)) new_uniq tau loc
390     in
391     returnNF_Tc (Method meth_id id tys theta tau inst_loc)
392
393 newMethodAtLoc :: InstLoc
394                -> Id -> [TcType]
395                -> NF_TcM (Inst, TcId)
396 newMethodAtLoc inst_loc real_id tys
397         -- This actually builds the Inst
398   =     -- Get the Id type and instantiate it at the specified types
399     let
400         (tyvars,rho)  = tcSplitForAllTys (idType real_id)
401         rho_ty        = ASSERT( equalLength tyvars tys )
402                         substTy (mkTopTyVarSubst tyvars tys) rho
403         (theta, tau)  = tcSplitRhoTy rho_ty
404     in
405     newMethodWith inst_loc real_id tys theta tau        `thenNF_Tc` \ meth_inst ->
406     returnNF_Tc (meth_inst, instToId meth_inst)
407 \end{code}
408
409 In newOverloadedLit we convert directly to an Int or Integer if we
410 know that's what we want.  This may save some time, by not
411 temporarily generating overloaded literals, but it won't catch all
412 cases (the rest are caught in lookupInst).
413
414 \begin{code}
415 newOverloadedLit :: InstOrigin
416                  -> HsOverLit
417                  -> TcType
418                  -> NF_TcM (TcExpr, LIE)
419 newOverloadedLit orig lit ty
420   | Just expr <- shortCutLit lit ty
421   = returnNF_Tc (expr, emptyLIE)
422
423   | otherwise
424   = tcGetInstLoc orig           `thenNF_Tc` \ loc ->
425     tcGetUnique                 `thenNF_Tc` \ new_uniq ->
426     let
427         lit_inst = LitInst lit_id lit ty loc
428         lit_id   = mkSysLocal SLIT("lit") new_uniq ty
429     in
430     returnNF_Tc (HsVar (instToId lit_inst), unitLIE lit_inst)
431
432 shortCutLit :: HsOverLit -> TcType -> Maybe TcExpr
433 shortCutLit (HsIntegral i fi) ty
434   | isIntTy ty && inIntRange i && fi == fromIntegerName         -- Short cut for Int
435   = Just (HsLit (HsInt i))
436   | isIntegerTy ty && fi == fromIntegerName                     -- Short cut for Integer
437   = Just (HsLit (HsInteger i))
438
439 shortCutLit (HsFractional f fr) ty
440   | isFloatTy ty  && fr == fromRationalName 
441   = Just (mkHsConApp floatDataCon [] [HsLit (HsFloatPrim f)])
442   | isDoubleTy ty && fr == fromRationalName 
443   = Just (mkHsConApp doubleDataCon [] [HsLit (HsDoublePrim f)])
444
445 shortCutLit lit ty
446   = Nothing
447 \end{code}
448
449
450 %************************************************************************
451 %*                                                                      *
452 \subsection{Zonking}
453 %*                                                                      *
454 %************************************************************************
455
456 Zonking makes sure that the instance types are fully zonked,
457 but doesn't do the same for any of the Ids in an Inst.  There's no
458 need, and it's a lot of extra work.
459
460 \begin{code}
461 zonkInst :: Inst -> NF_TcM Inst
462 zonkInst (Dict id pred loc)
463   = zonkTcPredType pred                 `thenNF_Tc` \ new_pred ->
464     returnNF_Tc (Dict id new_pred loc)
465
466 zonkInst (Method m id tys theta tau loc) 
467   = zonkId id                   `thenNF_Tc` \ new_id ->
468         -- Essential to zonk the id in case it's a local variable
469         -- Can't use zonkIdOcc because the id might itself be
470         -- an InstId, in which case it won't be in scope
471
472     zonkTcTypes tys             `thenNF_Tc` \ new_tys ->
473     zonkTcThetaType theta       `thenNF_Tc` \ new_theta ->
474     zonkTcType tau              `thenNF_Tc` \ new_tau ->
475     returnNF_Tc (Method m new_id new_tys new_theta new_tau loc)
476
477 zonkInst (LitInst id lit ty loc)
478   = zonkTcType ty                       `thenNF_Tc` \ new_ty ->
479     returnNF_Tc (LitInst id lit new_ty loc)
480
481 zonkInsts insts = mapNF_Tc zonkInst insts
482 \end{code}
483
484
485 %************************************************************************
486 %*                                                                      *
487 \subsection{Printing}
488 %*                                                                      *
489 %************************************************************************
490
491 ToDo: improve these pretty-printing things.  The ``origin'' is really only
492 relevant in error messages.
493
494 \begin{code}
495 instance Outputable Inst where
496     ppr inst = pprInst inst
497
498 pprInst (LitInst u lit ty loc)
499   = hsep [ppr lit, ptext SLIT("at"), ppr ty, show_uniq u]
500
501 pprInst (Dict u pred loc) = pprPred pred <+> show_uniq u
502
503 pprInst m@(Method u id tys theta tau loc)
504   = hsep [ppr id, ptext SLIT("at"), 
505           brackets (sep (map pprParendType tys)) {- ,
506           ptext SLIT("theta"), ppr theta,
507           ptext SLIT("tau"), ppr tau
508           show_uniq u,
509           ppr (instToId m) -}]
510
511 show_uniq u = ifPprDebug (text "{-" <> ppr u <> text "-}")
512
513 tidyInst :: TidyEnv -> Inst -> Inst
514 tidyInst env (LitInst u lit ty loc)          = LitInst u lit (tidyType env ty) loc
515 tidyInst env (Dict u pred loc)               = Dict u (tidyPred env pred) loc
516 tidyInst env (Method u id tys theta tau loc) = Method u id (tidyTypes env tys) theta tau loc
517
518 tidyMoreInsts :: TidyEnv -> [Inst] -> (TidyEnv, [Inst])
519 -- This function doesn't assume that the tyvars are in scope
520 -- so it works like tidyOpenType, returning a TidyEnv
521 tidyMoreInsts env insts
522   = (env', map (tidyInst env') insts)
523   where
524     env' = tidyFreeTyVars env (tyVarsOfInsts insts)
525
526 tidyInsts :: [Inst] -> (TidyEnv, [Inst])
527 tidyInsts insts = tidyMoreInsts emptyTidyEnv insts
528 \end{code}
529
530
531 %************************************************************************
532 %*                                                                      *
533 \subsection{Looking up Insts}
534 %*                                                                      *
535 %************************************************************************
536
537 \begin{code}
538 data LookupInstResult s
539   = NoInstance
540   | SimpleInst TcExpr           -- Just a variable, type application, or literal
541   | GenInst    [Inst] TcExpr    -- The expression and its needed insts
542
543 lookupInst :: Inst 
544            -> NF_TcM (LookupInstResult s)
545
546 -- Dictionaries
547
548 lookupInst dict@(Dict _ (ClassP clas tys) loc)
549   = getDOptsTc                  `thenNF_Tc` \ dflags ->
550     tcGetInstEnv                `thenNF_Tc` \ inst_env ->
551     case lookupInstEnv dflags inst_env clas tys of
552
553       FoundInst tenv dfun_id
554         -> let
555                 (tyvars, rho) = tcSplitForAllTys (idType dfun_id)
556                 mk_ty_arg tv  = case lookupSubstEnv tenv tv of
557                                    Just (DoneTy ty) -> returnNF_Tc ty
558                                    Nothing          -> tcInstTyVar tv   `thenNF_Tc` \ tc_tv ->
559                                                        returnTc (mkTyVarTy tc_tv)
560            in
561                 -- It's possible that not all the tyvars are in
562                 -- the substitution, tenv. For example:
563                 --      instance C X a => D X where ...
564                 -- (presumably there's a functional dependency in class C)
565                 -- Hence the mk_ty_arg to instantiate any un-substituted tyvars.        
566            mapNF_Tc mk_ty_arg tyvars    `thenNF_Tc` \ ty_args ->
567            let
568                 dfun_rho   = substTy (mkTyVarSubst tyvars ty_args) rho
569                 (theta, _) = tcSplitRhoTy dfun_rho
570                 ty_app     = mkHsTyApp (HsVar dfun_id) ty_args
571            in
572            if null theta then
573                 returnNF_Tc (SimpleInst ty_app)
574            else
575            newDictsAtLoc loc theta      `thenNF_Tc` \ dicts ->
576            let 
577                 rhs = mkHsDictApp ty_app (map instToId dicts)
578            in
579            returnNF_Tc (GenInst dicts rhs)
580
581       other     -> returnNF_Tc NoInstance
582
583 lookupInst dict@(Dict _ _ loc) = returnNF_Tc NoInstance
584
585 -- Methods
586
587 lookupInst inst@(Method _ id tys theta _ loc)
588   = newDictsAtLoc loc theta             `thenNF_Tc` \ dicts ->
589     returnNF_Tc (GenInst dicts (mkHsDictApp (mkHsTyApp (HsVar id) tys) (map instToId dicts)))
590
591 -- Literals
592
593 -- Look for short cuts first: if the literal is *definitely* a 
594 -- int, integer, float or a double, generate the real thing here.
595 -- This is essential  (see nofib/spectral/nucleic).
596 -- [Same shortcut as in newOverloadedLit, but we
597 --  may have done some unification by now]              
598
599 lookupInst inst@(LitInst u lit ty loc)
600   | Just expr <- shortCutLit lit ty
601   = returnNF_Tc (GenInst [] expr)       -- GenInst, not SimpleInst, because 
602                                         -- expr may be a constructor application
603
604 lookupInst inst@(LitInst u (HsIntegral i from_integer_name) ty loc)
605   = tcLookupId from_integer_name                `thenNF_Tc` \ from_integer ->
606     newMethodAtLoc loc from_integer [ty]        `thenNF_Tc` \ (method_inst, method_id) ->
607     returnNF_Tc (GenInst [method_inst] 
608                          (HsApp (HsVar method_id) (HsLit (HsInteger i))))
609
610
611 lookupInst inst@(LitInst u (HsFractional f from_rat_name) ty loc)
612   = tcLookupId from_rat_name                    `thenNF_Tc` \ from_rational ->
613     newMethodAtLoc loc from_rational [ty]       `thenNF_Tc` \ (method_inst, method_id) ->
614     let
615         rational_ty  = tcFunArgTy (idType method_id)
616         rational_lit = HsLit (HsRat f rational_ty)
617     in
618     returnNF_Tc (GenInst [method_inst] (HsApp (HsVar method_id) rational_lit))
619 \end{code}
620
621 There is a second, simpler interface, when you want an instance of a
622 class at a given nullary type constructor.  It just returns the
623 appropriate dictionary if it exists.  It is used only when resolving
624 ambiguous dictionaries.
625
626 \begin{code}
627 lookupSimpleInst :: Class
628                  -> [Type]                      -- Look up (c,t)
629                  -> NF_TcM (Maybe ThetaType)    -- Here are the needed (c,t)s
630
631 lookupSimpleInst clas tys
632   = getDOptsTc                  `thenNF_Tc` \ dflags ->
633     tcGetInstEnv                `thenNF_Tc` \ inst_env -> 
634     case lookupInstEnv dflags inst_env clas tys of
635       FoundInst tenv dfun
636         -> returnNF_Tc (Just (substTheta (mkSubst emptyInScopeSet tenv) theta))
637         where
638            (_, rho)  = tcSplitForAllTys (idType dfun)
639            (theta,_) = tcSplitRhoTy rho
640
641       other  -> returnNF_Tc Nothing
642 \end{code}