{-# LANGUAGE DataKinds #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE GADTs #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE UndecidableInstances #-}
{-# OPTIONS_GHC -Wno-incomplete-uni-patterns #-}
module GHC.Tc.Gen.App
( tcApp
, tcInferSigma
, tcExprPrag ) where
import {-# SOURCE #-} GHC.Tc.Gen.Expr( tcPolyExpr )
import GHC.Types.Basic ( Arity, ExprOrPat(Expression) )
import GHC.Types.Id ( idArity, idName, hasNoBinding )
import GHC.Types.Name ( isWiredInName )
import GHC.Types.Var
import GHC.Builtin.Types ( multiplicityTy )
import GHC.Core.ConLike ( ConLike(..) )
import GHC.Core.DataCon ( dataConRepArity
, isNewDataCon, isUnboxedSumDataCon, isUnboxedTupleDataCon )
import GHC.Tc.Gen.Head
import GHC.Hs
import GHC.Tc.Errors.Types
import GHC.Tc.Utils.Monad
import GHC.Tc.Utils.Unify
import GHC.Tc.Utils.Instantiate
import GHC.Tc.Utils.Concrete ( hasFixedRuntimeRep_syntactic )
import GHC.Tc.Instance.Family ( tcGetFamInstEnvs, tcLookupDataFamInst_maybe )
import GHC.Tc.Gen.HsType
import GHC.Tc.Utils.TcMType
import GHC.Tc.Types.Origin
import GHC.Tc.Utils.TcType as TcType
import GHC.Core.TyCon
import GHC.Core.TyCo.Rep
import GHC.Core.TyCo.Ppr
import GHC.Core.TyCo.Subst (substTyWithInScope)
import GHC.Core.TyCo.FVs( shallowTyCoVarsOfType )
import GHC.Core.Type
import GHC.Tc.Types.Evidence
import GHC.Types.Var.Set
import GHC.Builtin.PrimOps( tagToEnumKey )
import GHC.Builtin.Names
import GHC.Driver.Session
import GHC.Types.SrcLoc
import GHC.Types.Var.Env ( emptyTidyEnv, mkInScopeSet )
import GHC.Data.Maybe
import GHC.Utils.Misc
import GHC.Utils.Outputable as Outputable
import GHC.Utils.Panic
import qualified GHC.LanguageExtensions as LangExt
import Control.Monad
import Data.Function
import GHC.Prelude
tcInferSigma :: Bool -> LHsExpr GhcRn -> TcM TcSigmaType
tcInferSigma :: Bool -> LHsExpr GhcRn -> TcM TcSigmaType
tcInferSigma Bool
inst (L loc rn_expr)
| (fun :: (HsExpr GhcRn, AppCtxt)
fun@(HsExpr GhcRn
rn_fun,AppCtxt
_), [HsExprArg 'TcpRn]
rn_args) <- HsExpr GhcRn -> ((HsExpr GhcRn, AppCtxt), [HsExprArg 'TcpRn])
splitHsApps HsExpr GhcRn
rn_expr
= HsExpr GhcRn -> TcM TcSigmaType -> TcM TcSigmaType
forall a. HsExpr GhcRn -> TcRn a -> TcRn a
addExprCtxt HsExpr GhcRn
rn_expr (TcM TcSigmaType -> TcM TcSigmaType)
-> TcM TcSigmaType -> TcM TcSigmaType
forall a b. (a -> b) -> a -> b
$
SrcSpanAnn' (EpAnn AnnListItem)
-> TcM TcSigmaType -> TcM TcSigmaType
forall ann a. SrcSpanAnn' ann -> TcRn a -> TcRn a
setSrcSpanA SrcSpanAnn' (EpAnn AnnListItem)
loc (TcM TcSigmaType -> TcM TcSigmaType)
-> TcM TcSigmaType -> TcM TcSigmaType
forall a b. (a -> b) -> a -> b
$
do { Bool
do_ql <- HsExpr GhcRn -> TcM Bool
wantQuickLook HsExpr GhcRn
rn_fun
; (HsExpr GhcTc
_tc_fun, TcSigmaType
fun_sigma) <- (HsExpr GhcRn, AppCtxt)
-> [HsExprArg 'TcpRn] -> TcM (HsExpr GhcTc, TcSigmaType)
tcInferAppHead (HsExpr GhcRn, AppCtxt)
fun [HsExprArg 'TcpRn]
rn_args
; (Delta
_delta, [HsExprArg 'TcpInst]
inst_args, TcSigmaType
app_res_sigma) <- Bool
-> Bool
-> (HsExpr GhcRn, AppCtxt)
-> TcSigmaType
-> [HsExprArg 'TcpRn]
-> TcM (Delta, [HsExprArg 'TcpInst], TcSigmaType)
tcInstFun Bool
do_ql Bool
inst (HsExpr GhcRn, AppCtxt)
fun TcSigmaType
fun_sigma [HsExprArg 'TcpRn]
rn_args
; [HsExprArg 'TcpTc]
_tc_args <- Bool -> [HsExprArg 'TcpInst] -> TcM [HsExprArg 'TcpTc]
tcValArgs Bool
do_ql [HsExprArg 'TcpInst]
inst_args
; TcSigmaType -> TcM TcSigmaType
forall (m :: * -> *) a. Monad m => a -> m a
return TcSigmaType
app_res_sigma }
tcApp :: HsExpr GhcRn -> ExpRhoType -> TcM (HsExpr GhcTc)
tcApp :: HsExpr GhcRn -> ExpRhoType -> TcM (HsExpr GhcTc)
tcApp HsExpr GhcRn
rn_expr ExpRhoType
exp_res_ty
| (fun :: (HsExpr GhcRn, AppCtxt)
fun@(HsExpr GhcRn
rn_fun, AppCtxt
fun_ctxt), [HsExprArg 'TcpRn]
rn_args) <- HsExpr GhcRn -> ((HsExpr GhcRn, AppCtxt), [HsExprArg 'TcpRn])
splitHsApps HsExpr GhcRn
rn_expr
= do { (HsExpr GhcTc
tc_fun, TcSigmaType
fun_sigma) <- (HsExpr GhcRn, AppCtxt)
-> [HsExprArg 'TcpRn] -> TcM (HsExpr GhcTc, TcSigmaType)
tcInferAppHead (HsExpr GhcRn, AppCtxt)
fun [HsExprArg 'TcpRn]
rn_args
; Bool
do_ql <- HsExpr GhcRn -> TcM Bool
wantQuickLook HsExpr GhcRn
rn_fun
; (Delta
delta, [HsExprArg 'TcpInst]
inst_args, TcSigmaType
app_res_rho) <- Bool
-> Bool
-> (HsExpr GhcRn, AppCtxt)
-> TcSigmaType
-> [HsExprArg 'TcpRn]
-> TcM (Delta, [HsExprArg 'TcpInst], TcSigmaType)
tcInstFun Bool
do_ql Bool
True (HsExpr GhcRn, AppCtxt)
fun TcSigmaType
fun_sigma [HsExprArg 'TcpRn]
rn_args
; String -> SDoc -> TcRn ()
traceTc String
"tcApp FRR" (SDoc -> TcRn ()) -> SDoc -> TcRn ()
forall a b. (a -> b) -> a -> b
$
[SDoc] -> SDoc
vcat
[ String -> SDoc
text String
"tc_fun =" SDoc -> SDoc -> SDoc
<+> HsExpr GhcTc -> SDoc
forall a. Outputable a => a -> SDoc
ppr HsExpr GhcTc
tc_fun
, String -> SDoc
text String
"inst_args =" SDoc -> SDoc -> SDoc
<+> [HsExprArg 'TcpInst] -> SDoc
forall a. Outputable a => a -> SDoc
ppr [HsExprArg 'TcpInst]
inst_args
, String -> SDoc
text String
"app_res_rho =" SDoc -> SDoc -> SDoc
<+> TcSigmaType -> SDoc
forall a. Outputable a => a -> SDoc
ppr TcSigmaType
app_res_rho ]
; [HsExprArg 'TcpInst] -> TcSigmaType -> HsExpr GhcTc -> TcRn ()
hasFixedRuntimeRep_remainingValArgs [HsExprArg 'TcpInst]
inst_args TcSigmaType
app_res_rho HsExpr GhcTc
tc_fun
; TcSigmaType
app_res_rho <- if Bool
do_ql
then Delta -> TcSigmaType -> ExpRhoType -> TcM TcSigmaType
quickLookResultType Delta
delta TcSigmaType
app_res_rho ExpRhoType
exp_res_ty
else TcSigmaType -> TcM TcSigmaType
forall (m :: * -> *) a. Monad m => a -> m a
return TcSigmaType
app_res_rho
; let perhaps_add_res_ty_ctxt :: IOEnv (Env TcGblEnv TcLclEnv) TcCoercionN
-> IOEnv (Env TcGblEnv TcLclEnv) TcCoercionN
perhaps_add_res_ty_ctxt IOEnv (Env TcGblEnv TcLclEnv) TcCoercionN
thing_inside
| AppCtxt -> Bool
insideExpansion AppCtxt
fun_ctxt
= IOEnv (Env TcGblEnv TcLclEnv) TcCoercionN
thing_inside
| Bool
otherwise
= HsExpr GhcRn
-> [HsExprArg 'TcpRn]
-> TcSigmaType
-> ExpRhoType
-> IOEnv (Env TcGblEnv TcLclEnv) TcCoercionN
-> IOEnv (Env TcGblEnv TcLclEnv) TcCoercionN
forall a.
HsExpr GhcRn
-> [HsExprArg 'TcpRn]
-> TcSigmaType
-> ExpRhoType
-> TcM a
-> TcM a
addFunResCtxt HsExpr GhcRn
rn_fun [HsExprArg 'TcpRn]
rn_args TcSigmaType
app_res_rho ExpRhoType
exp_res_ty (IOEnv (Env TcGblEnv TcLclEnv) TcCoercionN
-> IOEnv (Env TcGblEnv TcLclEnv) TcCoercionN)
-> IOEnv (Env TcGblEnv TcLclEnv) TcCoercionN
-> IOEnv (Env TcGblEnv TcLclEnv) TcCoercionN
forall a b. (a -> b) -> a -> b
$
IOEnv (Env TcGblEnv TcLclEnv) TcCoercionN
thing_inside
; TcCoercionN
res_co <- IOEnv (Env TcGblEnv TcLclEnv) TcCoercionN
-> IOEnv (Env TcGblEnv TcLclEnv) TcCoercionN
perhaps_add_res_ty_ctxt (IOEnv (Env TcGblEnv TcLclEnv) TcCoercionN
-> IOEnv (Env TcGblEnv TcLclEnv) TcCoercionN)
-> IOEnv (Env TcGblEnv TcLclEnv) TcCoercionN
-> IOEnv (Env TcGblEnv TcLclEnv) TcCoercionN
forall a b. (a -> b) -> a -> b
$
HsExpr GhcRn
-> TcSigmaType
-> ExpRhoType
-> IOEnv (Env TcGblEnv TcLclEnv) TcCoercionN
unifyExpectedType HsExpr GhcRn
rn_expr TcSigmaType
app_res_rho ExpRhoType
exp_res_ty
; DumpFlag -> TcRn () -> TcRn ()
forall gbl lcl. DumpFlag -> TcRnIf gbl lcl () -> TcRnIf gbl lcl ()
whenDOptM DumpFlag
Opt_D_dump_tc_trace (TcRn () -> TcRn ()) -> TcRn () -> TcRn ()
forall a b. (a -> b) -> a -> b
$
do { [HsExprArg 'TcpInst]
inst_args <- (HsExprArg 'TcpInst
-> IOEnv (Env TcGblEnv TcLclEnv) (HsExprArg 'TcpInst))
-> [HsExprArg 'TcpInst]
-> IOEnv (Env TcGblEnv TcLclEnv) [HsExprArg 'TcpInst]
forall (t :: * -> *) (m :: * -> *) a b.
(Traversable t, Monad m) =>
(a -> m b) -> t a -> m (t b)
mapM HsExprArg 'TcpInst
-> IOEnv (Env TcGblEnv TcLclEnv) (HsExprArg 'TcpInst)
zonkArg [HsExprArg 'TcpInst]
inst_args
; String -> SDoc -> TcRn ()
traceTc String
"tcApp" ([SDoc] -> SDoc
vcat [ String -> SDoc
text String
"rn_fun" SDoc -> SDoc -> SDoc
<+> HsExpr GhcRn -> SDoc
forall a. Outputable a => a -> SDoc
ppr HsExpr GhcRn
rn_fun
, String -> SDoc
text String
"inst_args" SDoc -> SDoc -> SDoc
<+> SDoc -> SDoc
brackets ((HsExprArg 'TcpInst -> SDoc) -> [HsExprArg 'TcpInst] -> SDoc
forall a. (a -> SDoc) -> [a] -> SDoc
pprWithCommas HsExprArg 'TcpInst -> SDoc
pprHsExprArgTc [HsExprArg 'TcpInst]
inst_args)
, String -> SDoc
text String
"do_ql: " SDoc -> SDoc -> SDoc
<+> Bool -> SDoc
forall a. Outputable a => a -> SDoc
ppr Bool
do_ql
, String -> SDoc
text String
"fun_sigma: " SDoc -> SDoc -> SDoc
<+> TcSigmaType -> SDoc
forall a. Outputable a => a -> SDoc
ppr TcSigmaType
fun_sigma
, String -> SDoc
text String
"delta: " SDoc -> SDoc -> SDoc
<+> Delta -> SDoc
forall a. Outputable a => a -> SDoc
ppr Delta
delta
, String -> SDoc
text String
"app_res_rho:" SDoc -> SDoc -> SDoc
<+> TcSigmaType -> SDoc
forall a. Outputable a => a -> SDoc
ppr TcSigmaType
app_res_rho
, String -> SDoc
text String
"exp_res_ty:" SDoc -> SDoc -> SDoc
<+> ExpRhoType -> SDoc
forall a. Outputable a => a -> SDoc
ppr ExpRhoType
exp_res_ty
, String -> SDoc
text String
"rn_expr:" SDoc -> SDoc -> SDoc
<+> HsExpr GhcRn -> SDoc
forall a. Outputable a => a -> SDoc
ppr HsExpr GhcRn
rn_expr ]) }
; [HsExprArg 'TcpTc]
tc_args <- Bool -> [HsExprArg 'TcpInst] -> TcM [HsExprArg 'TcpTc]
tcValArgs Bool
do_ql [HsExprArg 'TcpInst]
inst_args
; HsExpr GhcTc
tc_expr <-
if HsExpr GhcRn -> Bool
isTagToEnum HsExpr GhcRn
rn_fun
then HsExpr GhcTc
-> AppCtxt
-> [HsExprArg 'TcpTc]
-> TcSigmaType
-> TcM (HsExpr GhcTc)
tcTagToEnum HsExpr GhcTc
tc_fun AppCtxt
fun_ctxt [HsExprArg 'TcpTc]
tc_args TcSigmaType
app_res_rho
else do HsExpr GhcTc -> TcM (HsExpr GhcTc)
forall (m :: * -> *) a. Monad m => a -> m a
return (HsExpr GhcTc -> AppCtxt -> [HsExprArg 'TcpTc] -> HsExpr GhcTc
rebuildHsApps HsExpr GhcTc
tc_fun AppCtxt
fun_ctxt [HsExprArg 'TcpTc]
tc_args)
; HsExpr GhcTc -> TcM (HsExpr GhcTc)
forall (m :: * -> *) a. Monad m => a -> m a
return (TcCoercionN -> HsExpr GhcTc -> HsExpr GhcTc
mkHsWrapCo TcCoercionN
res_co HsExpr GhcTc
tc_expr) }
hasFixedRuntimeRep_remainingValArgs :: [HsExprArg 'TcpInst] -> TcRhoType -> HsExpr GhcTc -> TcM ()
hasFixedRuntimeRep_remainingValArgs :: [HsExprArg 'TcpInst] -> TcSigmaType -> HsExpr GhcTc -> TcRn ()
hasFixedRuntimeRep_remainingValArgs [HsExprArg 'TcpInst]
applied_args TcSigmaType
app_res_rho = \case
HsVar XVar GhcTc
_ (L _ fun_id)
| Id -> Name
idName Id
fun_id Name -> Name -> Bool
forall a. Eq a => a -> a -> Bool
== Name
unsafeCoercePrimName
-> Id -> Arity -> (Arity -> FixedRuntimeRepContext) -> TcRn ()
forall thing.
Outputable thing =>
thing -> Arity -> (Arity -> FixedRuntimeRepContext) -> TcRn ()
check_thing Id
fun_id Arity
1 (Id -> Arity -> FixedRuntimeRepContext
FRRNoBindingResArg Id
fun_id)
| Name -> Bool
isWiredInName (Id -> Name
idName Id
fun_id) Bool -> Bool -> Bool
&& Id -> Bool
hasNoBinding Id
fun_id
-> Id -> Arity -> (Arity -> FixedRuntimeRepContext) -> TcRn ()
forall thing.
Outputable thing =>
thing -> Arity -> (Arity -> FixedRuntimeRepContext) -> TcRn ()
check_thing Id
fun_id (Id -> Arity
idArity Id
fun_id) (Id -> Arity -> FixedRuntimeRepContext
FRRNoBindingResArg Id
fun_id)
XExpr (ConLikeTc (RealDataCon con) _ _)
| DataCon -> Bool
isNewDataCon DataCon
con
Bool -> Bool -> Bool
|| DataCon -> Bool
isUnboxedTupleDataCon DataCon
con
Bool -> Bool -> Bool
|| DataCon -> Bool
isUnboxedSumDataCon DataCon
con
-> DataCon -> Arity -> (Arity -> FixedRuntimeRepContext) -> TcRn ()
forall thing.
Outputable thing =>
thing -> Arity -> (Arity -> FixedRuntimeRepContext) -> TcRn ()
check_thing DataCon
con (DataCon -> Arity
dataConRepArity DataCon
con) (ExprOrPat -> DataCon -> Arity -> FixedRuntimeRepContext
FRRDataConArg ExprOrPat
Expression DataCon
con)
HsExpr GhcTc
_ -> () -> TcRn ()
forall (m :: * -> *) a. Monad m => a -> m a
return ()
where
nb_applied_vis_val_args :: Int
nb_applied_vis_val_args :: Arity
nb_applied_vis_val_args = (HsExprArg 'TcpInst -> Bool) -> [HsExprArg 'TcpInst] -> Arity
forall a. (a -> Bool) -> [a] -> Arity
count HsExprArg 'TcpInst -> Bool
forall (id :: TcPass). HsExprArg id -> Bool
isHsValArg [HsExprArg 'TcpInst]
applied_args
nb_applied_val_args :: Int
nb_applied_val_args :: Arity
nb_applied_val_args = [HsExprArg 'TcpInst] -> Arity
forall (id :: TcPass). [HsExprArg id] -> Arity
countVisAndInvisValArgs [HsExprArg 'TcpInst]
applied_args
arg_tys :: [(Type,AnonArgFlag)]
arg_tys :: [(TcSigmaType, AnonArgFlag)]
arg_tys = TcSigmaType -> [(TcSigmaType, AnonArgFlag)]
getRuntimeArgTys TcSigmaType
app_res_rho
check_thing :: Outputable thing
=> thing
-> Arity
-> (Int -> FixedRuntimeRepContext)
-> TcM ()
check_thing :: thing -> Arity -> (Arity -> FixedRuntimeRepContext) -> TcRn ()
check_thing thing
thing Arity
arity Arity -> FixedRuntimeRepContext
mk_frr_orig = do
String -> SDoc -> TcRn ()
traceTc String
"tcApp remainingValArgs check_thing" (thing -> Arity -> SDoc
forall thing. Outputable thing => thing -> Arity -> SDoc
debug_msg thing
thing Arity
arity)
Arity -> Arity -> [(TcSigmaType, AnonArgFlag)] -> TcRn ()
go (Arity
nb_applied_vis_val_args Arity -> Arity -> Arity
forall a. Num a => a -> a -> a
+ Arity
1) (Arity
nb_applied_val_args Arity -> Arity -> Arity
forall a. Num a => a -> a -> a
+ Arity
1) [(TcSigmaType, AnonArgFlag)]
arg_tys
where
go :: Int
-> Int
-> [(Type, AnonArgFlag)]
-> TcM ()
go :: Arity -> Arity -> [(TcSigmaType, AnonArgFlag)] -> TcRn ()
go Arity
_ Arity
i_val [(TcSigmaType, AnonArgFlag)]
_
| Arity
i_val Arity -> Arity -> Bool
forall a. Ord a => a -> a -> Bool
> Arity
arity
= () -> TcRn ()
forall (m :: * -> *) a. Monad m => a -> m a
return ()
go Arity
_ Arity
_ []
= String -> SDoc -> TcRn ()
forall a. HasCallStack => String -> SDoc -> a
pprPanic String
"hasFixedRuntimeRep_remainingValArgs" (thing -> Arity -> SDoc
forall thing. Outputable thing => thing -> Arity -> SDoc
debug_msg thing
thing Arity
arity)
go Arity
i_visval !Arity
i_val ((TcSigmaType
arg_ty, AnonArgFlag
af) : [(TcSigmaType, AnonArgFlag)]
tys)
= case AnonArgFlag
af of
AnonArgFlag
InvisArg ->
Arity -> Arity -> [(TcSigmaType, AnonArgFlag)] -> TcRn ()
go Arity
i_visval (Arity
i_val Arity -> Arity -> Arity
forall a. Num a => a -> a -> a
+ Arity
1) [(TcSigmaType, AnonArgFlag)]
tys
AnonArgFlag
VisArg -> do
HasDebugCallStack =>
FixedRuntimeRepContext -> TcSigmaType -> TcRn ()
FixedRuntimeRepContext -> TcSigmaType -> TcRn ()
hasFixedRuntimeRep_syntactic (Arity -> FixedRuntimeRepContext
mk_frr_orig Arity
i_visval) TcSigmaType
arg_ty
Arity -> Arity -> [(TcSigmaType, AnonArgFlag)] -> TcRn ()
go (Arity
i_visval Arity -> Arity -> Arity
forall a. Num a => a -> a -> a
+ Arity
1) (Arity
i_val Arity -> Arity -> Arity
forall a. Num a => a -> a -> a
+ Arity
1) [(TcSigmaType, AnonArgFlag)]
tys
debug_msg :: Outputable thing => thing -> Arity -> SDoc
debug_msg :: thing -> Arity -> SDoc
debug_msg thing
thing Arity
arity =
[SDoc] -> SDoc
vcat
[ String -> SDoc
text String
"thing =" SDoc -> SDoc -> SDoc
<+> thing -> SDoc
forall a. Outputable a => a -> SDoc
ppr thing
thing
, String -> SDoc
text String
"arity =" SDoc -> SDoc -> SDoc
<+> Arity -> SDoc
forall a. Outputable a => a -> SDoc
ppr Arity
arity
, String -> SDoc
text String
"applied_args =" SDoc -> SDoc -> SDoc
<+> [HsExprArg 'TcpInst] -> SDoc
forall a. Outputable a => a -> SDoc
ppr [HsExprArg 'TcpInst]
applied_args
, String -> SDoc
text String
"nb_applied_val_args =" SDoc -> SDoc -> SDoc
<+> Arity -> SDoc
forall a. Outputable a => a -> SDoc
ppr Arity
nb_applied_val_args
, String -> SDoc
text String
"arg_tys =" SDoc -> SDoc -> SDoc
<+> [(TcSigmaType, AnonArgFlag)] -> SDoc
forall a. Outputable a => a -> SDoc
ppr [(TcSigmaType, AnonArgFlag)]
arg_tys ]
wantQuickLook :: HsExpr GhcRn -> TcM Bool
wantQuickLook :: HsExpr GhcRn -> TcM Bool
wantQuickLook (HsVar XVar GhcRn
_ (L _ f))
| Name -> Unique
forall a. Uniquable a => a -> Unique
getUnique Name
f Unique -> [Unique] -> Bool
forall (t :: * -> *) a. (Foldable t, Eq a) => a -> t a -> Bool
`elem` [Unique]
quickLookKeys = Bool -> TcM Bool
forall (m :: * -> *) a. Monad m => a -> m a
return Bool
True
wantQuickLook HsExpr GhcRn
_ = Extension -> TcM Bool
forall gbl lcl. Extension -> TcRnIf gbl lcl Bool
xoptM Extension
LangExt.ImpredicativeTypes
quickLookKeys :: [Unique]
quickLookKeys :: [Unique]
quickLookKeys = [Unique
dollarIdKey, Unique
leftSectionKey, Unique
rightSectionKey]
zonkQuickLook :: Bool -> TcType -> TcM TcType
zonkQuickLook :: Bool -> TcSigmaType -> TcM TcSigmaType
zonkQuickLook Bool
do_ql TcSigmaType
ty
| Bool
do_ql = TcSigmaType -> TcM TcSigmaType
zonkTcType TcSigmaType
ty
| Bool
otherwise = TcSigmaType -> TcM TcSigmaType
forall (m :: * -> *) a. Monad m => a -> m a
return TcSigmaType
ty
zonkArg :: HsExprArg 'TcpInst -> TcM (HsExprArg 'TcpInst)
zonkArg :: HsExprArg 'TcpInst
-> IOEnv (Env TcGblEnv TcLclEnv) (HsExprArg 'TcpInst)
zonkArg eva :: HsExprArg 'TcpInst
eva@(EValArg { eva_arg_ty :: forall (p :: TcPass). HsExprArg p -> XEVAType p
eva_arg_ty = Scaled m ty })
= do { TcSigmaType
ty' <- TcSigmaType -> TcM TcSigmaType
zonkTcType TcSigmaType
ty
; HsExprArg 'TcpInst
-> IOEnv (Env TcGblEnv TcLclEnv) (HsExprArg 'TcpInst)
forall (m :: * -> *) a. Monad m => a -> m a
return (HsExprArg 'TcpInst
eva { eva_arg_ty :: XEVAType 'TcpInst
eva_arg_ty = TcSigmaType -> TcSigmaType -> Scaled TcSigmaType
forall a. TcSigmaType -> a -> Scaled a
Scaled TcSigmaType
m TcSigmaType
ty' }) }
zonkArg HsExprArg 'TcpInst
arg = HsExprArg 'TcpInst
-> IOEnv (Env TcGblEnv TcLclEnv) (HsExprArg 'TcpInst)
forall (m :: * -> *) a. Monad m => a -> m a
return HsExprArg 'TcpInst
arg
tcValArgs :: Bool
-> [HsExprArg 'TcpInst]
-> TcM [HsExprArg 'TcpTc]
tcValArgs :: Bool -> [HsExprArg 'TcpInst] -> TcM [HsExprArg 'TcpTc]
tcValArgs Bool
do_ql [HsExprArg 'TcpInst]
args
= (HsExprArg 'TcpInst
-> IOEnv (Env TcGblEnv TcLclEnv) (HsExprArg 'TcpTc))
-> [HsExprArg 'TcpInst] -> TcM [HsExprArg 'TcpTc]
forall (t :: * -> *) (m :: * -> *) a b.
(Traversable t, Monad m) =>
(a -> m b) -> t a -> m (t b)
mapM HsExprArg 'TcpInst
-> IOEnv (Env TcGblEnv TcLclEnv) (HsExprArg 'TcpTc)
tc_arg [HsExprArg 'TcpInst]
args
where
tc_arg :: HsExprArg 'TcpInst -> TcM (HsExprArg 'TcpTc)
tc_arg :: HsExprArg 'TcpInst
-> IOEnv (Env TcGblEnv TcLclEnv) (HsExprArg 'TcpTc)
tc_arg (EPrag AppCtxt
l HsPragE (GhcPass (XPass 'TcpInst))
p) = HsExprArg 'TcpTc
-> IOEnv (Env TcGblEnv TcLclEnv) (HsExprArg 'TcpTc)
forall (m :: * -> *) a. Monad m => a -> m a
return (AppCtxt -> HsPragE (GhcPass (XPass 'TcpTc)) -> HsExprArg 'TcpTc
forall (p :: TcPass).
AppCtxt -> HsPragE (GhcPass (XPass p)) -> HsExprArg p
EPrag AppCtxt
l (HsPragE GhcRn -> HsPragE GhcTc
tcExprPrag HsPragE GhcRn
HsPragE (GhcPass (XPass 'TcpInst))
p))
tc_arg (EWrap EWrap
w) = HsExprArg 'TcpTc
-> IOEnv (Env TcGblEnv TcLclEnv) (HsExprArg 'TcpTc)
forall (m :: * -> *) a. Monad m => a -> m a
return (EWrap -> HsExprArg 'TcpTc
forall (p :: TcPass). EWrap -> HsExprArg p
EWrap EWrap
w)
tc_arg (ETypeArg AppCtxt
l LHsWcType GhcRn
hs_ty XETAType 'TcpInst
ty) = HsExprArg 'TcpTc
-> IOEnv (Env TcGblEnv TcLclEnv) (HsExprArg 'TcpTc)
forall (m :: * -> *) a. Monad m => a -> m a
return (AppCtxt -> LHsWcType GhcRn -> XETAType 'TcpTc -> HsExprArg 'TcpTc
forall (p :: TcPass).
AppCtxt -> LHsWcType GhcRn -> XETAType p -> HsExprArg p
ETypeArg AppCtxt
l LHsWcType GhcRn
hs_ty XETAType 'TcpInst
XETAType 'TcpTc
ty)
tc_arg eva :: HsExprArg 'TcpInst
eva@(EValArg { eva_arg :: forall (p :: TcPass). HsExprArg p -> EValArg p
eva_arg = EValArg 'TcpInst
arg, eva_arg_ty :: forall (p :: TcPass). HsExprArg p -> XEVAType p
eva_arg_ty = Scaled mult arg_ty
, eva_ctxt :: forall (p :: TcPass). HsExprArg p -> AppCtxt
eva_ctxt = AppCtxt
ctxt })
= do {
TcSigmaType
arg_ty <- Bool -> TcSigmaType -> TcM TcSigmaType
zonkQuickLook Bool
do_ql TcSigmaType
arg_ty
; GenLocated (SrcSpanAnn' (EpAnn AnnListItem)) (HsExpr GhcTc)
arg' <- TcSigmaType
-> TcM
(GenLocated (SrcSpanAnn' (EpAnn AnnListItem)) (HsExpr GhcTc))
-> TcM
(GenLocated (SrcSpanAnn' (EpAnn AnnListItem)) (HsExpr GhcTc))
forall a. TcSigmaType -> TcM a -> TcM a
tcScalingUsage TcSigmaType
mult (TcM (GenLocated (SrcSpanAnn' (EpAnn AnnListItem)) (HsExpr GhcTc))
-> TcM
(GenLocated (SrcSpanAnn' (EpAnn AnnListItem)) (HsExpr GhcTc)))
-> TcM
(GenLocated (SrcSpanAnn' (EpAnn AnnListItem)) (HsExpr GhcTc))
-> TcM
(GenLocated (SrcSpanAnn' (EpAnn AnnListItem)) (HsExpr GhcTc))
forall a b. (a -> b) -> a -> b
$
do { String -> SDoc -> TcRn ()
traceTc String
"tcEValArg" (SDoc -> TcRn ()) -> SDoc -> TcRn ()
forall a b. (a -> b) -> a -> b
$
[SDoc] -> SDoc
vcat [ AppCtxt -> SDoc
forall a. Outputable a => a -> SDoc
ppr AppCtxt
ctxt
, String -> SDoc
text String
"arg type:" SDoc -> SDoc -> SDoc
<+> TcSigmaType -> SDoc
forall a. Outputable a => a -> SDoc
ppr TcSigmaType
arg_ty
, String -> SDoc
text String
"arg:" SDoc -> SDoc -> SDoc
<+> EValArg 'TcpInst -> SDoc
forall a. Outputable a => a -> SDoc
ppr EValArg 'TcpInst
arg ]
; AppCtxt -> EValArg 'TcpInst -> TcSigmaType -> TcM (LHsExpr GhcTc)
tcEValArg AppCtxt
ctxt EValArg 'TcpInst
arg TcSigmaType
arg_ty }
; HsExprArg 'TcpTc
-> IOEnv (Env TcGblEnv TcLclEnv) (HsExprArg 'TcpTc)
forall (m :: * -> *) a. Monad m => a -> m a
return (HsExprArg 'TcpInst
eva { eva_arg :: EValArg 'TcpTc
eva_arg = LHsExpr (GhcPass (XPass 'TcpTc)) -> EValArg 'TcpTc
forall (p :: TcPass). LHsExpr (GhcPass (XPass p)) -> EValArg p
ValArg LHsExpr (GhcPass (XPass 'TcpTc))
GenLocated (SrcSpanAnn' (EpAnn AnnListItem)) (HsExpr GhcTc)
arg'
, eva_arg_ty :: XEVAType 'TcpTc
eva_arg_ty = TcSigmaType -> TcSigmaType -> Scaled TcSigmaType
forall a. TcSigmaType -> a -> Scaled a
Scaled TcSigmaType
mult TcSigmaType
arg_ty }) }
tcEValArg :: AppCtxt -> EValArg 'TcpInst -> TcSigmaTypeFRR -> TcM (LHsExpr GhcTc)
tcEValArg :: AppCtxt -> EValArg 'TcpInst -> TcSigmaType -> TcM (LHsExpr GhcTc)
tcEValArg AppCtxt
ctxt (ValArg larg :: LHsExpr (GhcPass (XPass 'TcpInst))
larg@(L arg_loc arg)) TcSigmaType
exp_arg_sigma
= AppCtxt
-> LHsExpr GhcRn
-> TcM
(GenLocated (SrcSpanAnn' (EpAnn AnnListItem)) (HsExpr GhcTc))
-> TcM
(GenLocated (SrcSpanAnn' (EpAnn AnnListItem)) (HsExpr GhcTc))
forall a. AppCtxt -> LHsExpr GhcRn -> TcM a -> TcM a
addArgCtxt AppCtxt
ctxt LHsExpr GhcRn
LHsExpr (GhcPass (XPass 'TcpInst))
larg (TcM (GenLocated (SrcSpanAnn' (EpAnn AnnListItem)) (HsExpr GhcTc))
-> TcM
(GenLocated (SrcSpanAnn' (EpAnn AnnListItem)) (HsExpr GhcTc)))
-> TcM
(GenLocated (SrcSpanAnn' (EpAnn AnnListItem)) (HsExpr GhcTc))
-> TcM
(GenLocated (SrcSpanAnn' (EpAnn AnnListItem)) (HsExpr GhcTc))
forall a b. (a -> b) -> a -> b
$
do { HsExpr GhcTc
arg' <- HsExpr GhcRn -> ExpRhoType -> TcM (HsExpr GhcTc)
tcPolyExpr HsExpr GhcRn
arg (TcSigmaType -> ExpRhoType
mkCheckExpType TcSigmaType
exp_arg_sigma)
; GenLocated (SrcSpanAnn' (EpAnn AnnListItem)) (HsExpr GhcTc)
-> TcM
(GenLocated (SrcSpanAnn' (EpAnn AnnListItem)) (HsExpr GhcTc))
forall (m :: * -> *) a. Monad m => a -> m a
return (SrcSpanAnn' (EpAnn AnnListItem)
-> HsExpr GhcTc
-> GenLocated (SrcSpanAnn' (EpAnn AnnListItem)) (HsExpr GhcTc)
forall l e. l -> e -> GenLocated l e
L SrcSpanAnn' (EpAnn AnnListItem)
arg_loc HsExpr GhcTc
arg') }
tcEValArg AppCtxt
ctxt (ValArgQL { va_expr :: EValArg 'TcpInst -> LHsExpr GhcRn
va_expr = larg :: LHsExpr GhcRn
larg@(L arg_loc _)
, va_fun :: EValArg 'TcpInst -> (HsExpr GhcTc, AppCtxt)
va_fun = (HsExpr GhcTc
inner_fun, AppCtxt
fun_ctxt)
, va_args :: EValArg 'TcpInst -> [HsExprArg 'TcpInst]
va_args = [HsExprArg 'TcpInst]
inner_args
, va_ty :: EValArg 'TcpInst -> TcSigmaType
va_ty = TcSigmaType
app_res_rho }) TcSigmaType
exp_arg_sigma
= AppCtxt
-> LHsExpr GhcRn
-> TcM
(GenLocated (SrcSpanAnn' (EpAnn AnnListItem)) (HsExpr GhcTc))
-> TcM
(GenLocated (SrcSpanAnn' (EpAnn AnnListItem)) (HsExpr GhcTc))
forall a. AppCtxt -> LHsExpr GhcRn -> TcM a -> TcM a
addArgCtxt AppCtxt
ctxt LHsExpr GhcRn
larg (TcM (GenLocated (SrcSpanAnn' (EpAnn AnnListItem)) (HsExpr GhcTc))
-> TcM
(GenLocated (SrcSpanAnn' (EpAnn AnnListItem)) (HsExpr GhcTc)))
-> TcM
(GenLocated (SrcSpanAnn' (EpAnn AnnListItem)) (HsExpr GhcTc))
-> TcM
(GenLocated (SrcSpanAnn' (EpAnn AnnListItem)) (HsExpr GhcTc))
forall a b. (a -> b) -> a -> b
$
do { String -> SDoc -> TcRn ()
traceTc String
"tcEValArgQL {" ([SDoc] -> SDoc
vcat [ HsExpr GhcTc -> SDoc
forall a. Outputable a => a -> SDoc
ppr HsExpr GhcTc
inner_fun SDoc -> SDoc -> SDoc
<+> [HsExprArg 'TcpInst] -> SDoc
forall a. Outputable a => a -> SDoc
ppr [HsExprArg 'TcpInst]
inner_args ])
; [HsExprArg 'TcpTc]
tc_args <- Bool -> [HsExprArg 'TcpInst] -> TcM [HsExprArg 'TcpTc]
tcValArgs Bool
True [HsExprArg 'TcpInst]
inner_args
; TcCoercionN
co <- Maybe TypedThing
-> TcSigmaType
-> TcSigmaType
-> IOEnv (Env TcGblEnv TcLclEnv) TcCoercionN
unifyType Maybe TypedThing
forall a. Maybe a
Nothing TcSigmaType
app_res_rho TcSigmaType
exp_arg_sigma
; let arg' :: HsExpr GhcTc
arg' = TcCoercionN -> HsExpr GhcTc -> HsExpr GhcTc
mkHsWrapCo TcCoercionN
co (HsExpr GhcTc -> HsExpr GhcTc) -> HsExpr GhcTc -> HsExpr GhcTc
forall a b. (a -> b) -> a -> b
$ HsExpr GhcTc -> AppCtxt -> [HsExprArg 'TcpTc] -> HsExpr GhcTc
rebuildHsApps HsExpr GhcTc
inner_fun AppCtxt
fun_ctxt [HsExprArg 'TcpTc]
tc_args
; String -> SDoc -> TcRn ()
traceTc String
"tcEValArgQL }" SDoc
empty
; GenLocated (SrcSpanAnn' (EpAnn AnnListItem)) (HsExpr GhcTc)
-> TcM
(GenLocated (SrcSpanAnn' (EpAnn AnnListItem)) (HsExpr GhcTc))
forall (m :: * -> *) a. Monad m => a -> m a
return (SrcSpanAnn' (EpAnn AnnListItem)
-> HsExpr GhcTc
-> GenLocated (SrcSpanAnn' (EpAnn AnnListItem)) (HsExpr GhcTc)
forall l e. l -> e -> GenLocated l e
L SrcSpanAnn' (EpAnn AnnListItem)
arg_loc HsExpr GhcTc
arg') }
type Delta = TcTyVarSet
tcInstFun :: Bool
-> Bool
-> (HsExpr GhcRn, AppCtxt)
-> TcSigmaType -> [HsExprArg 'TcpRn]
-> TcM ( Delta
, [HsExprArg 'TcpInst]
, TcSigmaType )
tcInstFun :: Bool
-> Bool
-> (HsExpr GhcRn, AppCtxt)
-> TcSigmaType
-> [HsExprArg 'TcpRn]
-> TcM (Delta, [HsExprArg 'TcpInst], TcSigmaType)
tcInstFun Bool
do_ql Bool
inst_final (HsExpr GhcRn
rn_fun, AppCtxt
fun_ctxt) TcSigmaType
fun_sigma [HsExprArg 'TcpRn]
rn_args
= do { String -> SDoc -> TcRn ()
traceTc String
"tcInstFun" ([SDoc] -> SDoc
vcat [ HsExpr GhcRn -> SDoc
forall a. Outputable a => a -> SDoc
ppr HsExpr GhcRn
rn_fun, TcSigmaType -> SDoc
forall a. Outputable a => a -> SDoc
ppr TcSigmaType
fun_sigma
, String -> SDoc
text String
"args:" SDoc -> SDoc -> SDoc
<+> [HsExprArg 'TcpRn] -> SDoc
forall a. Outputable a => a -> SDoc
ppr [HsExprArg 'TcpRn]
rn_args
, String -> SDoc
text String
"do_ql" SDoc -> SDoc -> SDoc
<+> Bool -> SDoc
forall a. Outputable a => a -> SDoc
ppr Bool
do_ql ])
; Delta
-> [HsExprArg 'TcpInst]
-> [Scaled TcSigmaType]
-> TcSigmaType
-> [HsExprArg 'TcpRn]
-> TcM (Delta, [HsExprArg 'TcpInst], TcSigmaType)
go Delta
emptyVarSet [] [] TcSigmaType
fun_sigma [HsExprArg 'TcpRn]
rn_args }
where
fun_loc :: SrcSpan
fun_loc = AppCtxt -> SrcSpan
appCtxtLoc AppCtxt
fun_ctxt
fun_orig :: CtOrigin
fun_orig = HsExpr GhcRn -> CtOrigin
exprCtOrigin (case AppCtxt
fun_ctxt of
VAExpansion HsExpr GhcRn
e SrcSpan
_ -> HsExpr GhcRn
e
VACall HsExpr GhcRn
e Arity
_ SrcSpan
_ -> HsExpr GhcRn
e)
set_fun_ctxt :: IOEnv (Env TcGblEnv TcLclEnv) ([Id], HsWrapper, TcSigmaType)
-> IOEnv (Env TcGblEnv TcLclEnv) ([Id], HsWrapper, TcSigmaType)
set_fun_ctxt IOEnv (Env TcGblEnv TcLclEnv) ([Id], HsWrapper, TcSigmaType)
thing_inside
| Bool -> Bool
not (SrcSpan -> Bool
isGoodSrcSpan SrcSpan
fun_loc)
= IOEnv (Env TcGblEnv TcLclEnv) ([Id], HsWrapper, TcSigmaType)
thing_inside
| Bool
otherwise
= SrcSpan
-> IOEnv (Env TcGblEnv TcLclEnv) ([Id], HsWrapper, TcSigmaType)
-> IOEnv (Env TcGblEnv TcLclEnv) ([Id], HsWrapper, TcSigmaType)
forall a. SrcSpan -> TcRn a -> TcRn a
setSrcSpan SrcSpan
fun_loc (IOEnv (Env TcGblEnv TcLclEnv) ([Id], HsWrapper, TcSigmaType)
-> IOEnv (Env TcGblEnv TcLclEnv) ([Id], HsWrapper, TcSigmaType))
-> IOEnv (Env TcGblEnv TcLclEnv) ([Id], HsWrapper, TcSigmaType)
-> IOEnv (Env TcGblEnv TcLclEnv) ([Id], HsWrapper, TcSigmaType)
forall a b. (a -> b) -> a -> b
$
case AppCtxt
fun_ctxt of
VAExpansion HsExpr GhcRn
orig SrcSpan
_ -> HsExpr GhcRn
-> IOEnv (Env TcGblEnv TcLclEnv) ([Id], HsWrapper, TcSigmaType)
-> IOEnv (Env TcGblEnv TcLclEnv) ([Id], HsWrapper, TcSigmaType)
forall a. HsExpr GhcRn -> TcRn a -> TcRn a
addExprCtxt HsExpr GhcRn
orig IOEnv (Env TcGblEnv TcLclEnv) ([Id], HsWrapper, TcSigmaType)
thing_inside
VACall {} -> IOEnv (Env TcGblEnv TcLclEnv) ([Id], HsWrapper, TcSigmaType)
thing_inside
n_val_args :: Arity
n_val_args = (HsExprArg 'TcpRn -> Bool) -> [HsExprArg 'TcpRn] -> Arity
forall a. (a -> Bool) -> [a] -> Arity
count HsExprArg 'TcpRn -> Bool
forall (id :: TcPass). HsExprArg id -> Bool
isHsValArg [HsExprArg 'TcpRn]
rn_args
fun_is_out_of_scope :: Bool
fun_is_out_of_scope
= case HsExpr GhcRn
rn_fun of
HsUnboundVar {} -> Bool
True
HsExpr GhcRn
_ -> Bool
False
inst_all, inst_inferred, inst_none :: ArgFlag -> Bool
inst_all :: ArgFlag -> Bool
inst_all (Invisible {}) = Bool
True
inst_all ArgFlag
Required = Bool
False
inst_inferred :: ArgFlag -> Bool
inst_inferred (Invisible Specificity
InferredSpec) = Bool
True
inst_inferred (Invisible Specificity
SpecifiedSpec) = Bool
False
inst_inferred ArgFlag
Required = Bool
False
inst_none :: ArgFlag -> Bool
inst_none ArgFlag
_ = Bool
False
inst_fun :: [HsExprArg 'TcpRn] -> ArgFlag -> Bool
inst_fun :: [HsExprArg 'TcpRn] -> ArgFlag -> Bool
inst_fun [] | Bool
inst_final = ArgFlag -> Bool
inst_all
| Bool
otherwise = ArgFlag -> Bool
inst_none
inst_fun (EValArg {} : [HsExprArg 'TcpRn]
_) = ArgFlag -> Bool
inst_all
inst_fun [HsExprArg 'TcpRn]
_ = ArgFlag -> Bool
inst_inferred
go, go1 :: Delta
-> [HsExprArg 'TcpInst]
-> [Scaled TcSigmaTypeFRR]
-> TcSigmaType -> [HsExprArg 'TcpRn]
-> TcM (Delta, [HsExprArg 'TcpInst], TcSigmaType)
go :: Delta
-> [HsExprArg 'TcpInst]
-> [Scaled TcSigmaType]
-> TcSigmaType
-> [HsExprArg 'TcpRn]
-> TcM (Delta, [HsExprArg 'TcpInst], TcSigmaType)
go Delta
delta [HsExprArg 'TcpInst]
acc [Scaled TcSigmaType]
so_far TcSigmaType
fun_ty [HsExprArg 'TcpRn]
args
| Just Id
kappa <- TcSigmaType -> Maybe Id
tcGetTyVar_maybe TcSigmaType
fun_ty
, Id
kappa Id -> Delta -> Bool
`elemVarSet` Delta
delta
= do { MetaDetails
cts <- Id -> TcM MetaDetails
readMetaTyVar Id
kappa
; case MetaDetails
cts of
Indirect TcSigmaType
fun_ty' -> Delta
-> [HsExprArg 'TcpInst]
-> [Scaled TcSigmaType]
-> TcSigmaType
-> [HsExprArg 'TcpRn]
-> TcM (Delta, [HsExprArg 'TcpInst], TcSigmaType)
go Delta
delta [HsExprArg 'TcpInst]
acc [Scaled TcSigmaType]
so_far TcSigmaType
fun_ty' [HsExprArg 'TcpRn]
args
MetaDetails
Flexi -> Delta
-> [HsExprArg 'TcpInst]
-> [Scaled TcSigmaType]
-> TcSigmaType
-> [HsExprArg 'TcpRn]
-> TcM (Delta, [HsExprArg 'TcpInst], TcSigmaType)
go1 Delta
delta [HsExprArg 'TcpInst]
acc [Scaled TcSigmaType]
so_far TcSigmaType
fun_ty [HsExprArg 'TcpRn]
args }
| Bool
otherwise
= Delta
-> [HsExprArg 'TcpInst]
-> [Scaled TcSigmaType]
-> TcSigmaType
-> [HsExprArg 'TcpRn]
-> TcM (Delta, [HsExprArg 'TcpInst], TcSigmaType)
go1 Delta
delta [HsExprArg 'TcpInst]
acc [Scaled TcSigmaType]
so_far TcSigmaType
fun_ty [HsExprArg 'TcpRn]
args
go1 :: Delta
-> [HsExprArg 'TcpInst]
-> [Scaled TcSigmaType]
-> TcSigmaType
-> [HsExprArg 'TcpRn]
-> TcM (Delta, [HsExprArg 'TcpInst], TcSigmaType)
go1 Delta
delta [HsExprArg 'TcpInst]
acc [Scaled TcSigmaType]
so_far TcSigmaType
fun_ty [HsExprArg 'TcpRn]
args
| ([Id]
tvs, TcSigmaType
body1) <- (ArgFlag -> Bool) -> TcSigmaType -> ([Id], TcSigmaType)
tcSplitSomeForAllTyVars ([HsExprArg 'TcpRn] -> ArgFlag -> Bool
inst_fun [HsExprArg 'TcpRn]
args) TcSigmaType
fun_ty
, (ThetaType
theta, TcSigmaType
body2) <- TcSigmaType -> (ThetaType, TcSigmaType)
tcSplitPhiTy TcSigmaType
body1
, Bool -> Bool
not ([Id] -> Bool
forall (t :: * -> *) a. Foldable t => t a -> Bool
null [Id]
tvs Bool -> Bool -> Bool
&& ThetaType -> Bool
forall (t :: * -> *) a. Foldable t => t a -> Bool
null ThetaType
theta)
= do { ([Id]
inst_tvs, HsWrapper
wrap, TcSigmaType
fun_rho) <- IOEnv (Env TcGblEnv TcLclEnv) ([Id], HsWrapper, TcSigmaType)
-> IOEnv (Env TcGblEnv TcLclEnv) ([Id], HsWrapper, TcSigmaType)
set_fun_ctxt (IOEnv (Env TcGblEnv TcLclEnv) ([Id], HsWrapper, TcSigmaType)
-> IOEnv (Env TcGblEnv TcLclEnv) ([Id], HsWrapper, TcSigmaType))
-> IOEnv (Env TcGblEnv TcLclEnv) ([Id], HsWrapper, TcSigmaType)
-> IOEnv (Env TcGblEnv TcLclEnv) ([Id], HsWrapper, TcSigmaType)
forall a b. (a -> b) -> a -> b
$
CtOrigin
-> [Id]
-> ThetaType
-> TcSigmaType
-> IOEnv (Env TcGblEnv TcLclEnv) ([Id], HsWrapper, TcSigmaType)
instantiateSigma CtOrigin
fun_orig [Id]
tvs ThetaType
theta TcSigmaType
body2
; Delta
-> [HsExprArg 'TcpInst]
-> [Scaled TcSigmaType]
-> TcSigmaType
-> [HsExprArg 'TcpRn]
-> TcM (Delta, [HsExprArg 'TcpInst], TcSigmaType)
go (Delta
delta Delta -> [Id] -> Delta
`extendVarSetList` [Id]
inst_tvs)
(HsWrapper -> [HsExprArg 'TcpInst] -> [HsExprArg 'TcpInst]
addArgWrap HsWrapper
wrap [HsExprArg 'TcpInst]
acc) [Scaled TcSigmaType]
so_far TcSigmaType
fun_rho [HsExprArg 'TcpRn]
args }
go1 Delta
delta [HsExprArg 'TcpInst]
acc [Scaled TcSigmaType]
_ TcSigmaType
fun_ty []
= do { String -> SDoc -> TcRn ()
traceTc String
"tcInstFun:ret" (TcSigmaType -> SDoc
forall a. Outputable a => a -> SDoc
ppr TcSigmaType
fun_ty)
; (Delta, [HsExprArg 'TcpInst], TcSigmaType)
-> TcM (Delta, [HsExprArg 'TcpInst], TcSigmaType)
forall (m :: * -> *) a. Monad m => a -> m a
return (Delta
delta, [HsExprArg 'TcpInst] -> [HsExprArg 'TcpInst]
forall a. [a] -> [a]
reverse [HsExprArg 'TcpInst]
acc, TcSigmaType
fun_ty) }
go1 Delta
delta [HsExprArg 'TcpInst]
acc [Scaled TcSigmaType]
so_far TcSigmaType
fun_ty (EWrap EWrap
w : [HsExprArg 'TcpRn]
args)
= Delta
-> [HsExprArg 'TcpInst]
-> [Scaled TcSigmaType]
-> TcSigmaType
-> [HsExprArg 'TcpRn]
-> TcM (Delta, [HsExprArg 'TcpInst], TcSigmaType)
go1 Delta
delta (EWrap -> HsExprArg 'TcpInst
forall (p :: TcPass). EWrap -> HsExprArg p
EWrap EWrap
w HsExprArg 'TcpInst -> [HsExprArg 'TcpInst] -> [HsExprArg 'TcpInst]
forall a. a -> [a] -> [a]
: [HsExprArg 'TcpInst]
acc) [Scaled TcSigmaType]
so_far TcSigmaType
fun_ty [HsExprArg 'TcpRn]
args
go1 Delta
delta [HsExprArg 'TcpInst]
acc [Scaled TcSigmaType]
so_far TcSigmaType
fun_ty (EPrag AppCtxt
sp HsPragE (GhcPass (XPass 'TcpRn))
prag : [HsExprArg 'TcpRn]
args)
= Delta
-> [HsExprArg 'TcpInst]
-> [Scaled TcSigmaType]
-> TcSigmaType
-> [HsExprArg 'TcpRn]
-> TcM (Delta, [HsExprArg 'TcpInst], TcSigmaType)
go1 Delta
delta (AppCtxt -> HsPragE (GhcPass (XPass 'TcpInst)) -> HsExprArg 'TcpInst
forall (p :: TcPass).
AppCtxt -> HsPragE (GhcPass (XPass p)) -> HsExprArg p
EPrag AppCtxt
sp HsPragE (GhcPass (XPass 'TcpRn))
HsPragE (GhcPass (XPass 'TcpInst))
prag HsExprArg 'TcpInst -> [HsExprArg 'TcpInst] -> [HsExprArg 'TcpInst]
forall a. a -> [a] -> [a]
: [HsExprArg 'TcpInst]
acc) [Scaled TcSigmaType]
so_far TcSigmaType
fun_ty [HsExprArg 'TcpRn]
args
go1 Delta
delta [HsExprArg 'TcpInst]
acc [Scaled TcSigmaType]
so_far TcSigmaType
fun_ty ( ETypeArg { eva_ctxt :: forall (p :: TcPass). HsExprArg p -> AppCtxt
eva_ctxt = AppCtxt
ctxt, eva_hs_ty :: forall (p :: TcPass). HsExprArg p -> LHsWcType GhcRn
eva_hs_ty = LHsWcType GhcRn
hs_ty }
: [HsExprArg 'TcpRn]
rest_args )
| Bool
fun_is_out_of_scope
= Delta
-> [HsExprArg 'TcpInst]
-> [Scaled TcSigmaType]
-> TcSigmaType
-> [HsExprArg 'TcpRn]
-> TcM (Delta, [HsExprArg 'TcpInst], TcSigmaType)
go Delta
delta [HsExprArg 'TcpInst]
acc [Scaled TcSigmaType]
so_far TcSigmaType
fun_ty [HsExprArg 'TcpRn]
rest_args
| Bool
otherwise
= do { (TcSigmaType
ty_arg, TcSigmaType
inst_ty) <- TcSigmaType -> LHsWcType GhcRn -> TcM (TcSigmaType, TcSigmaType)
tcVTA TcSigmaType
fun_ty LHsWcType GhcRn
hs_ty
; let arg' :: HsExprArg 'TcpInst
arg' = ETypeArg :: forall (p :: TcPass).
AppCtxt -> LHsWcType GhcRn -> XETAType p -> HsExprArg p
ETypeArg { eva_ctxt :: AppCtxt
eva_ctxt = AppCtxt
ctxt, eva_hs_ty :: LHsWcType GhcRn
eva_hs_ty = LHsWcType GhcRn
hs_ty, eva_ty :: XETAType 'TcpInst
eva_ty = TcSigmaType
XETAType 'TcpInst
ty_arg }
; Delta
-> [HsExprArg 'TcpInst]
-> [Scaled TcSigmaType]
-> TcSigmaType
-> [HsExprArg 'TcpRn]
-> TcM (Delta, [HsExprArg 'TcpInst], TcSigmaType)
go Delta
delta (HsExprArg 'TcpInst
arg' HsExprArg 'TcpInst -> [HsExprArg 'TcpInst] -> [HsExprArg 'TcpInst]
forall a. a -> [a] -> [a]
: [HsExprArg 'TcpInst]
acc) [Scaled TcSigmaType]
so_far TcSigmaType
inst_ty [HsExprArg 'TcpRn]
rest_args }
go1 Delta
delta [HsExprArg 'TcpInst]
acc [Scaled TcSigmaType]
so_far TcSigmaType
fun_ty args :: [HsExprArg 'TcpRn]
args@(EValArg {} : [HsExprArg 'TcpRn]
_)
| Just Id
kappa <- TcSigmaType -> Maybe Id
tcGetTyVar_maybe TcSigmaType
fun_ty
, Id
kappa Id -> Delta -> Bool
`elemVarSet` Delta
delta
=
do { let valArgsCount :: Arity
valArgsCount = [HsExprArg 'TcpRn] -> Arity
forall (id :: TcPass). [HsExprArg id] -> Arity
countLeadingValArgs [HsExprArg 'TcpRn]
args
; [Id]
arg_nus <- Arity
-> IOEnv (Env TcGblEnv TcLclEnv) Id
-> IOEnv (Env TcGblEnv TcLclEnv) [Id]
forall (m :: * -> *) a. Applicative m => Arity -> m a -> m [a]
replicateM Arity
valArgsCount IOEnv (Env TcGblEnv TcLclEnv) Id
newOpenFlexiTyVar
; ThetaType
mults <- Arity -> TcM TcSigmaType -> IOEnv (Env TcGblEnv TcLclEnv) ThetaType
forall (m :: * -> *) a. Applicative m => Arity -> m a -> m [a]
replicateM Arity
valArgsCount (TcSigmaType -> TcM TcSigmaType
newFlexiTyVarTy TcSigmaType
multiplicityTy)
; Id
res_nu <- IOEnv (Env TcGblEnv TcLclEnv) Id
newOpenFlexiTyVar
; TcCoercionN
kind_co <- Maybe TypedThing
-> TcSigmaType
-> TcSigmaType
-> IOEnv (Env TcGblEnv TcLclEnv) TcCoercionN
unifyKind Maybe TypedThing
forall a. Maybe a
Nothing TcSigmaType
liftedTypeKind (Id -> TcSigmaType
tyVarKind Id
kappa)
; let delta' :: Delta
delta' = Delta
delta Delta -> [Id] -> Delta
`extendVarSetList` (Id
res_nuId -> [Id] -> [Id]
forall a. a -> [a] -> [a]
:[Id]
arg_nus)
arg_tys :: ThetaType
arg_tys = [Id] -> ThetaType
mkTyVarTys [Id]
arg_nus
res_ty :: TcSigmaType
res_ty = Id -> TcSigmaType
mkTyVarTy Id
res_nu
fun_ty' :: TcSigmaType
fun_ty' = [Scaled TcSigmaType] -> TcSigmaType -> TcSigmaType
mkVisFunTys (String
-> (TcSigmaType -> TcSigmaType -> Scaled TcSigmaType)
-> ThetaType
-> ThetaType
-> [Scaled TcSigmaType]
forall a b c. String -> (a -> b -> c) -> [a] -> [b] -> [c]
zipWithEqual String
"tcInstFun" TcSigmaType -> TcSigmaType -> Scaled TcSigmaType
forall a. TcSigmaType -> a -> Scaled a
mkScaled ThetaType
mults ThetaType
arg_tys) TcSigmaType
res_ty
co_wrap :: HsWrapper
co_wrap = TcCoercionN -> HsWrapper
mkWpCastN (Role -> TcSigmaType -> TcCoercionN -> TcCoercionN
mkTcGReflLeftCo Role
Nominal TcSigmaType
fun_ty' TcCoercionN
kind_co)
acc' :: [HsExprArg 'TcpInst]
acc' = HsWrapper -> [HsExprArg 'TcpInst] -> [HsExprArg 'TcpInst]
addArgWrap HsWrapper
co_wrap [HsExprArg 'TcpInst]
acc
; Id -> TcSigmaType -> TcRn ()
writeMetaTyVar Id
kappa (TcSigmaType -> TcCoercionN -> TcSigmaType
mkCastTy TcSigmaType
fun_ty' TcCoercionN
kind_co)
; Delta
-> [HsExprArg 'TcpInst]
-> [Scaled TcSigmaType]
-> TcSigmaType
-> [HsExprArg 'TcpRn]
-> TcM (Delta, [HsExprArg 'TcpInst], TcSigmaType)
go Delta
delta' [HsExprArg 'TcpInst]
acc' [Scaled TcSigmaType]
so_far TcSigmaType
fun_ty' [HsExprArg 'TcpRn]
args }
go1 Delta
delta [HsExprArg 'TcpInst]
acc [Scaled TcSigmaType]
so_far TcSigmaType
fun_ty
(eva :: HsExprArg 'TcpRn
eva@(EValArg { eva_arg :: forall (p :: TcPass). HsExprArg p -> EValArg p
eva_arg = ValArg LHsExpr (GhcPass (XPass 'TcpRn))
arg, eva_ctxt :: forall (p :: TcPass). HsExprArg p -> AppCtxt
eva_ctxt = AppCtxt
ctxt }) : [HsExprArg 'TcpRn]
rest_args)
= do { (HsWrapper
wrap, Scaled TcSigmaType
arg_ty, TcSigmaType
res_ty) <-
ExpectedFunTyOrigin
-> Maybe TypedThing
-> (Arity, [Scaled TcSigmaType])
-> TcSigmaType
-> TcM (HsWrapper, Scaled TcSigmaType, TcSigmaType)
matchActualFunTySigma
(TypedThing -> HsExpr GhcRn -> ExpectedFunTyOrigin
forall (p :: Pass).
OutputableBndrId p =>
TypedThing -> HsExpr (GhcPass p) -> ExpectedFunTyOrigin
ExpectedFunTyArg (HsExpr GhcRn -> TypedThing
HsExprRnThing HsExpr GhcRn
rn_fun) (GenLocated (SrcSpanAnn' (EpAnn AnnListItem)) (HsExpr GhcRn)
-> HsExpr GhcRn
forall l e. GenLocated l e -> e
unLoc LHsExpr (GhcPass (XPass 'TcpRn))
GenLocated (SrcSpanAnn' (EpAnn AnnListItem)) (HsExpr GhcRn)
arg))
(TypedThing -> Maybe TypedThing
forall a. a -> Maybe a
Just (TypedThing -> Maybe TypedThing) -> TypedThing -> Maybe TypedThing
forall a b. (a -> b) -> a -> b
$ HsExpr GhcRn -> TypedThing
HsExprRnThing HsExpr GhcRn
rn_fun)
(Arity
n_val_args, [Scaled TcSigmaType]
so_far) TcSigmaType
fun_ty
; (Delta
delta', EValArg 'TcpInst
arg') <- if Bool
do_ql
then AppCtxt
-> LHsExpr GhcRn
-> TcM (Delta, EValArg 'TcpInst)
-> TcM (Delta, EValArg 'TcpInst)
forall a. AppCtxt -> LHsExpr GhcRn -> TcM a -> TcM a
addArgCtxt AppCtxt
ctxt LHsExpr GhcRn
LHsExpr (GhcPass (XPass 'TcpRn))
arg (TcM (Delta, EValArg 'TcpInst) -> TcM (Delta, EValArg 'TcpInst))
-> TcM (Delta, EValArg 'TcpInst) -> TcM (Delta, EValArg 'TcpInst)
forall a b. (a -> b) -> a -> b
$
Delta
-> LHsExpr GhcRn
-> Scaled TcSigmaType
-> TcM (Delta, EValArg 'TcpInst)
quickLookArg Delta
delta LHsExpr GhcRn
LHsExpr (GhcPass (XPass 'TcpRn))
arg Scaled TcSigmaType
arg_ty
else (Delta, EValArg 'TcpInst) -> TcM (Delta, EValArg 'TcpInst)
forall (m :: * -> *) a. Monad m => a -> m a
return (Delta
delta, LHsExpr (GhcPass (XPass 'TcpInst)) -> EValArg 'TcpInst
forall (p :: TcPass). LHsExpr (GhcPass (XPass p)) -> EValArg p
ValArg LHsExpr (GhcPass (XPass 'TcpRn))
LHsExpr (GhcPass (XPass 'TcpInst))
arg)
; let acc' :: [HsExprArg 'TcpInst]
acc' = HsExprArg 'TcpRn
eva { eva_arg :: EValArg 'TcpInst
eva_arg = EValArg 'TcpInst
arg', eva_arg_ty :: XEVAType 'TcpInst
eva_arg_ty = Scaled TcSigmaType
XEVAType 'TcpInst
arg_ty }
HsExprArg 'TcpInst -> [HsExprArg 'TcpInst] -> [HsExprArg 'TcpInst]
forall a. a -> [a] -> [a]
: HsWrapper -> [HsExprArg 'TcpInst] -> [HsExprArg 'TcpInst]
addArgWrap HsWrapper
wrap [HsExprArg 'TcpInst]
acc
; Delta
-> [HsExprArg 'TcpInst]
-> [Scaled TcSigmaType]
-> TcSigmaType
-> [HsExprArg 'TcpRn]
-> TcM (Delta, [HsExprArg 'TcpInst], TcSigmaType)
go Delta
delta' [HsExprArg 'TcpInst]
acc' (Scaled TcSigmaType
arg_tyScaled TcSigmaType -> [Scaled TcSigmaType] -> [Scaled TcSigmaType]
forall a. a -> [a] -> [a]
:[Scaled TcSigmaType]
so_far) TcSigmaType
res_ty [HsExprArg 'TcpRn]
rest_args }
addArgCtxt :: AppCtxt -> LHsExpr GhcRn
-> TcM a -> TcM a
addArgCtxt :: AppCtxt -> LHsExpr GhcRn -> TcM a -> TcM a
addArgCtxt (VACall HsExpr GhcRn
fun Arity
arg_no SrcSpan
_) (L arg_loc arg) TcM a
thing_inside
= SrcSpanAnn' (EpAnn AnnListItem) -> TcM a -> TcM a
forall ann a. SrcSpanAnn' ann -> TcRn a -> TcRn a
setSrcSpanA SrcSpanAnn' (EpAnn AnnListItem)
arg_loc (TcM a -> TcM a) -> TcM a -> TcM a
forall a b. (a -> b) -> a -> b
$
SDoc -> TcM a -> TcM a
forall a. SDoc -> TcM a -> TcM a
addErrCtxt (HsExpr GhcRn -> HsExpr GhcRn -> Arity -> SDoc
forall fun arg.
(Outputable fun, Outputable arg) =>
fun -> arg -> Arity -> SDoc
funAppCtxt HsExpr GhcRn
fun HsExpr GhcRn
arg Arity
arg_no) (TcM a -> TcM a) -> TcM a -> TcM a
forall a b. (a -> b) -> a -> b
$
TcM a
thing_inside
addArgCtxt (VAExpansion {}) (L arg_loc arg) TcM a
thing_inside
= SrcSpanAnn' (EpAnn AnnListItem) -> TcM a -> TcM a
forall ann a. SrcSpanAnn' ann -> TcRn a -> TcRn a
setSrcSpanA SrcSpanAnn' (EpAnn AnnListItem)
arg_loc (TcM a -> TcM a) -> TcM a -> TcM a
forall a b. (a -> b) -> a -> b
$
HsExpr GhcRn -> TcM a -> TcM a
forall a. HsExpr GhcRn -> TcRn a -> TcRn a
addExprCtxt HsExpr GhcRn
arg (TcM a -> TcM a) -> TcM a -> TcM a
forall a b. (a -> b) -> a -> b
$
TcM a
thing_inside
tcVTA :: TcType
-> LHsWcType GhcRn
-> TcM (TcType, TcType)
tcVTA :: TcSigmaType -> LHsWcType GhcRn -> TcM (TcSigmaType, TcSigmaType)
tcVTA TcSigmaType
fun_ty LHsWcType GhcRn
hs_ty
| Just (TyVarBinder
tvb, TcSigmaType
inner_ty) <- TcSigmaType -> Maybe (TyVarBinder, TcSigmaType)
tcSplitForAllTyVarBinder_maybe TcSigmaType
fun_ty
, TyVarBinder -> ArgFlag
forall tv argf. VarBndr tv argf -> argf
binderArgFlag TyVarBinder
tvb ArgFlag -> ArgFlag -> Bool
forall a. Eq a => a -> a -> Bool
== ArgFlag
Specified
= do { let tv :: Id
tv = TyVarBinder -> Id
forall tv argf. VarBndr tv argf -> tv
binderVar TyVarBinder
tvb
kind :: TcSigmaType
kind = Id -> TcSigmaType
tyVarKind Id
tv
; TcSigmaType
ty_arg <- LHsWcType GhcRn -> TcSigmaType -> TcM TcSigmaType
tcHsTypeApp LHsWcType GhcRn
hs_ty TcSigmaType
kind
; TcSigmaType
inner_ty <- TcSigmaType -> TcM TcSigmaType
zonkTcType TcSigmaType
inner_ty
; let in_scope :: InScopeSet
in_scope = Delta -> InScopeSet
mkInScopeSet (ThetaType -> Delta
tyCoVarsOfTypes [TcSigmaType
fun_ty, TcSigmaType
ty_arg])
insted_ty :: TcSigmaType
insted_ty = InScopeSet -> [Id] -> ThetaType -> TcSigmaType -> TcSigmaType
substTyWithInScope InScopeSet
in_scope [Id
tv] [TcSigmaType
ty_arg] TcSigmaType
inner_ty
; String -> SDoc -> TcRn ()
traceTc String
"VTA" ([SDoc] -> SDoc
vcat [Id -> SDoc
forall a. Outputable a => a -> SDoc
ppr Id
tv, TcSigmaType -> SDoc
debugPprType TcSigmaType
kind
, TcSigmaType -> SDoc
debugPprType TcSigmaType
ty_arg
, TcSigmaType -> SDoc
debugPprType (HasDebugCallStack => TcSigmaType -> TcSigmaType
TcSigmaType -> TcSigmaType
tcTypeKind TcSigmaType
ty_arg)
, TcSigmaType -> SDoc
debugPprType TcSigmaType
inner_ty
, TcSigmaType -> SDoc
debugPprType TcSigmaType
insted_ty ])
; (TcSigmaType, TcSigmaType) -> TcM (TcSigmaType, TcSigmaType)
forall (m :: * -> *) a. Monad m => a -> m a
return (TcSigmaType
ty_arg, TcSigmaType
insted_ty) }
| Bool
otherwise
= do { (TidyEnv
_, TcSigmaType
fun_ty) <- TidyEnv -> TcSigmaType -> TcM (TidyEnv, TcSigmaType)
zonkTidyTcType TidyEnv
emptyTidyEnv TcSigmaType
fun_ty
; TcRnMessage -> TcM (TcSigmaType, TcSigmaType)
forall a. TcRnMessage -> TcRn a
failWith (TcRnMessage -> TcM (TcSigmaType, TcSigmaType))
-> TcRnMessage -> TcM (TcSigmaType, TcSigmaType)
forall a b. (a -> b) -> a -> b
$ TcSigmaType -> LHsWcType GhcRn -> TcRnMessage
TcRnInvalidTypeApplication TcSigmaType
fun_ty LHsWcType GhcRn
hs_ty }
quickLookArg :: Delta
-> LHsExpr GhcRn
-> Scaled TcSigmaTypeFRR
-> TcM (Delta, EValArg 'TcpInst)
quickLookArg :: Delta
-> LHsExpr GhcRn
-> Scaled TcSigmaType
-> TcM (Delta, EValArg 'TcpInst)
quickLookArg Delta
delta LHsExpr GhcRn
larg (Scaled TcSigmaType
_ TcSigmaType
arg_ty)
| Delta -> Bool
isEmptyVarSet Delta
delta = Delta -> LHsExpr GhcRn -> TcM (Delta, EValArg 'TcpInst)
skipQuickLook Delta
delta LHsExpr GhcRn
larg
| Bool
otherwise = TcSigmaType -> TcM (Delta, EValArg 'TcpInst)
go TcSigmaType
arg_ty
where
guarded :: Bool
guarded = TcSigmaType -> Bool
isGuardedTy TcSigmaType
arg_ty
go :: TcSigmaType -> TcM (Delta, EValArg 'TcpInst)
go TcSigmaType
arg_ty | Bool -> Bool
not (TcSigmaType -> Bool
isRhoTy TcSigmaType
arg_ty)
= Delta -> LHsExpr GhcRn -> TcM (Delta, EValArg 'TcpInst)
skipQuickLook Delta
delta LHsExpr GhcRn
larg
| Just Id
kappa <- TcSigmaType -> Maybe Id
tcGetTyVar_maybe TcSigmaType
arg_ty
, Id
kappa Id -> Delta -> Bool
`elemVarSet` Delta
delta
= do { MetaDetails
info <- Id -> TcM MetaDetails
readMetaTyVar Id
kappa
; case MetaDetails
info of
Indirect TcSigmaType
arg_ty' -> TcSigmaType -> TcM (Delta, EValArg 'TcpInst)
go TcSigmaType
arg_ty'
MetaDetails
Flexi -> Bool
-> Delta
-> LHsExpr GhcRn
-> TcSigmaType
-> TcM (Delta, EValArg 'TcpInst)
quickLookArg1 Bool
guarded Delta
delta LHsExpr GhcRn
larg TcSigmaType
arg_ty }
| Bool
otherwise
= Bool
-> Delta
-> LHsExpr GhcRn
-> TcSigmaType
-> TcM (Delta, EValArg 'TcpInst)
quickLookArg1 Bool
guarded Delta
delta LHsExpr GhcRn
larg TcSigmaType
arg_ty
isGuardedTy :: TcType -> Bool
isGuardedTy :: TcSigmaType -> Bool
isGuardedTy TcSigmaType
ty
| Just (TyCon
tc,ThetaType
_) <- HasCallStack => TcSigmaType -> Maybe (TyCon, ThetaType)
TcSigmaType -> Maybe (TyCon, ThetaType)
tcSplitTyConApp_maybe TcSigmaType
ty = TyCon -> Role -> Bool
isGenerativeTyCon TyCon
tc Role
Nominal
| Just {} <- TcSigmaType -> Maybe (TcSigmaType, TcSigmaType)
tcSplitAppTy_maybe TcSigmaType
ty = Bool
True
| Bool
otherwise = Bool
False
quickLookArg1 :: Bool -> Delta -> LHsExpr GhcRn -> TcSigmaTypeFRR
-> TcM (Delta, EValArg 'TcpInst)
quickLookArg1 :: Bool
-> Delta
-> LHsExpr GhcRn
-> TcSigmaType
-> TcM (Delta, EValArg 'TcpInst)
quickLookArg1 Bool
guarded Delta
delta larg :: LHsExpr GhcRn
larg@(L _ arg) TcSigmaType
arg_ty
= do { let (fun :: (HsExpr GhcRn, AppCtxt)
fun@(HsExpr GhcRn
rn_fun, AppCtxt
fun_ctxt), [HsExprArg 'TcpRn]
rn_args) = HsExpr GhcRn -> ((HsExpr GhcRn, AppCtxt), [HsExprArg 'TcpRn])
splitHsApps HsExpr GhcRn
arg
; Maybe (HsExpr GhcTc, TcSigmaType)
mb_fun_ty <- HsExpr GhcRn
-> [HsExprArg 'TcpRn] -> TcM (Maybe (HsExpr GhcTc, TcSigmaType))
tcInferAppHead_maybe HsExpr GhcRn
rn_fun [HsExprArg 'TcpRn]
rn_args
; String -> SDoc -> TcRn ()
traceTc String
"quickLookArg 1" (SDoc -> TcRn ()) -> SDoc -> TcRn ()
forall a b. (a -> b) -> a -> b
$
[SDoc] -> SDoc
vcat [ String -> SDoc
text String
"arg:" SDoc -> SDoc -> SDoc
<+> HsExpr GhcRn -> SDoc
forall a. Outputable a => a -> SDoc
ppr HsExpr GhcRn
arg
, String -> SDoc
text String
"head:" SDoc -> SDoc -> SDoc
<+> HsExpr GhcRn -> SDoc
forall a. Outputable a => a -> SDoc
ppr HsExpr GhcRn
rn_fun SDoc -> SDoc -> SDoc
<+> SDoc
dcolon SDoc -> SDoc -> SDoc
<+> Maybe (HsExpr GhcTc, TcSigmaType) -> SDoc
forall a. Outputable a => a -> SDoc
ppr Maybe (HsExpr GhcTc, TcSigmaType)
mb_fun_ty
, String -> SDoc
text String
"args:" SDoc -> SDoc -> SDoc
<+> [HsExprArg 'TcpRn] -> SDoc
forall a. Outputable a => a -> SDoc
ppr [HsExprArg 'TcpRn]
rn_args ]
; case Maybe (HsExpr GhcTc, TcSigmaType)
mb_fun_ty of {
Maybe (HsExpr GhcTc, TcSigmaType)
Nothing ->
Delta -> LHsExpr GhcRn -> TcM (Delta, EValArg 'TcpInst)
skipQuickLook Delta
delta LHsExpr GhcRn
larg ;
Just (HsExpr GhcTc
tc_fun, TcSigmaType
fun_sigma) ->
do { let no_free_kappas :: Bool
no_free_kappas = TcSigmaType -> [HsExprArg 'TcpRn] -> Bool
findNoQuantVars TcSigmaType
fun_sigma [HsExprArg 'TcpRn]
rn_args
; String -> SDoc -> TcRn ()
traceTc String
"quickLookArg 2" (SDoc -> TcRn ()) -> SDoc -> TcRn ()
forall a b. (a -> b) -> a -> b
$
[SDoc] -> SDoc
vcat [ String -> SDoc
text String
"no_free_kappas:" SDoc -> SDoc -> SDoc
<+> Bool -> SDoc
forall a. Outputable a => a -> SDoc
ppr Bool
no_free_kappas
, String -> SDoc
text String
"guarded:" SDoc -> SDoc -> SDoc
<+> Bool -> SDoc
forall a. Outputable a => a -> SDoc
ppr Bool
guarded
, String -> SDoc
text String
"tc_fun:" SDoc -> SDoc -> SDoc
<+> HsExpr GhcTc -> SDoc
forall a. Outputable a => a -> SDoc
ppr HsExpr GhcTc
tc_fun
, String -> SDoc
text String
"fun_sigma:" SDoc -> SDoc -> SDoc
<+> TcSigmaType -> SDoc
forall a. Outputable a => a -> SDoc
ppr TcSigmaType
fun_sigma ]
; if Bool -> Bool
not (Bool
guarded Bool -> Bool -> Bool
|| Bool
no_free_kappas)
then Delta -> LHsExpr GhcRn -> TcM (Delta, EValArg 'TcpInst)
skipQuickLook Delta
delta LHsExpr GhcRn
larg
else
do { Bool
do_ql <- HsExpr GhcRn -> TcM Bool
wantQuickLook HsExpr GhcRn
rn_fun
; (Delta
delta_app, [HsExprArg 'TcpInst]
inst_args, TcSigmaType
app_res_rho) <- Bool
-> Bool
-> (HsExpr GhcRn, AppCtxt)
-> TcSigmaType
-> [HsExprArg 'TcpRn]
-> TcM (Delta, [HsExprArg 'TcpInst], TcSigmaType)
tcInstFun Bool
do_ql Bool
True (HsExpr GhcRn, AppCtxt)
fun TcSigmaType
fun_sigma [HsExprArg 'TcpRn]
rn_args
; String -> SDoc -> TcRn ()
traceTc String
"quickLookArg 3" (SDoc -> TcRn ()) -> SDoc -> TcRn ()
forall a b. (a -> b) -> a -> b
$
[SDoc] -> SDoc
vcat [ String -> SDoc
text String
"arg:" SDoc -> SDoc -> SDoc
<+> HsExpr GhcRn -> SDoc
forall a. Outputable a => a -> SDoc
ppr HsExpr GhcRn
arg
, String -> SDoc
text String
"delta:" SDoc -> SDoc -> SDoc
<+> Delta -> SDoc
forall a. Outputable a => a -> SDoc
ppr Delta
delta
, String -> SDoc
text String
"delta_app:" SDoc -> SDoc -> SDoc
<+> Delta -> SDoc
forall a. Outputable a => a -> SDoc
ppr Delta
delta_app
, String -> SDoc
text String
"arg_ty:" SDoc -> SDoc -> SDoc
<+> TcSigmaType -> SDoc
forall a. Outputable a => a -> SDoc
ppr TcSigmaType
arg_ty
, String -> SDoc
text String
"app_res_rho:" SDoc -> SDoc -> SDoc
<+> TcSigmaType -> SDoc
forall a. Outputable a => a -> SDoc
ppr TcSigmaType
app_res_rho ]
; let delta' :: Delta
delta' = Delta
delta Delta -> Delta -> Delta
`unionVarSet` Delta
delta_app
; Delta -> TcSigmaType -> TcSigmaType -> TcRn ()
qlUnify Delta
delta' TcSigmaType
arg_ty TcSigmaType
app_res_rho
; let ql_arg :: EValArg 'TcpInst
ql_arg = ValArgQL :: LHsExpr GhcRn
-> (HsExpr GhcTc, AppCtxt)
-> [HsExprArg 'TcpInst]
-> TcSigmaType
-> EValArg 'TcpInst
ValArgQL { va_expr :: LHsExpr GhcRn
va_expr = LHsExpr GhcRn
larg
, va_fun :: (HsExpr GhcTc, AppCtxt)
va_fun = (HsExpr GhcTc
tc_fun, AppCtxt
fun_ctxt)
, va_args :: [HsExprArg 'TcpInst]
va_args = [HsExprArg 'TcpInst]
inst_args
, va_ty :: TcSigmaType
va_ty = TcSigmaType
app_res_rho }
; (Delta, EValArg 'TcpInst) -> TcM (Delta, EValArg 'TcpInst)
forall (m :: * -> *) a. Monad m => a -> m a
return (Delta
delta', EValArg 'TcpInst
ql_arg) } } } }
skipQuickLook :: Delta -> LHsExpr GhcRn -> TcM (Delta, EValArg 'TcpInst)
skipQuickLook :: Delta -> LHsExpr GhcRn -> TcM (Delta, EValArg 'TcpInst)
skipQuickLook Delta
delta LHsExpr GhcRn
larg = (Delta, EValArg 'TcpInst) -> TcM (Delta, EValArg 'TcpInst)
forall (m :: * -> *) a. Monad m => a -> m a
return (Delta
delta, LHsExpr (GhcPass (XPass 'TcpInst)) -> EValArg 'TcpInst
forall (p :: TcPass). LHsExpr (GhcPass (XPass p)) -> EValArg p
ValArg LHsExpr GhcRn
LHsExpr (GhcPass (XPass 'TcpInst))
larg)
quickLookResultType :: Delta -> TcRhoType -> ExpRhoType -> TcM TcRhoType
quickLookResultType :: Delta -> TcSigmaType -> ExpRhoType -> TcM TcSigmaType
quickLookResultType Delta
delta TcSigmaType
app_res_rho (Check TcSigmaType
exp_rho)
=
do { Bool -> TcRn () -> TcRn ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
unless (Delta -> Bool
isEmptyVarSet Delta
delta) (TcRn () -> TcRn ()) -> TcRn () -> TcRn ()
forall a b. (a -> b) -> a -> b
$
Delta -> TcSigmaType -> TcSigmaType -> TcRn ()
qlUnify Delta
delta TcSigmaType
app_res_rho TcSigmaType
exp_rho
; TcSigmaType -> TcM TcSigmaType
forall (m :: * -> *) a. Monad m => a -> m a
return TcSigmaType
app_res_rho }
quickLookResultType Delta
_ TcSigmaType
app_res_rho (Infer {})
= TcSigmaType -> TcM TcSigmaType
zonkTcType TcSigmaType
app_res_rho
qlUnify :: Delta -> TcType -> TcType -> TcM ()
qlUnify :: Delta -> TcSigmaType -> TcSigmaType -> TcRn ()
qlUnify Delta
delta TcSigmaType
ty1 TcSigmaType
ty2
= do { String -> SDoc -> TcRn ()
traceTc String
"qlUnify" (Delta -> SDoc
forall a. Outputable a => a -> SDoc
ppr Delta
delta SDoc -> SDoc -> SDoc
$$ TcSigmaType -> SDoc
forall a. Outputable a => a -> SDoc
ppr TcSigmaType
ty1 SDoc -> SDoc -> SDoc
$$ TcSigmaType -> SDoc
forall a. Outputable a => a -> SDoc
ppr TcSigmaType
ty2)
; (Delta, Delta) -> TcSigmaType -> TcSigmaType -> TcRn ()
go (Delta
emptyVarSet,Delta
emptyVarSet) TcSigmaType
ty1 TcSigmaType
ty2 }
where
go :: (TyVarSet, TcTyVarSet)
-> TcType -> TcType
-> TcM ()
go :: (Delta, Delta) -> TcSigmaType -> TcSigmaType -> TcRn ()
go (Delta, Delta)
bvs (TyVarTy Id
tv) TcSigmaType
ty2
| Id
tv Id -> Delta -> Bool
`elemVarSet` Delta
delta = (Delta, Delta) -> Id -> TcSigmaType -> TcRn ()
go_kappa (Delta, Delta)
bvs Id
tv TcSigmaType
ty2
go (Delta
bvs1, Delta
bvs2) TcSigmaType
ty1 (TyVarTy Id
tv)
| Id
tv Id -> Delta -> Bool
`elemVarSet` Delta
delta = (Delta, Delta) -> Id -> TcSigmaType -> TcRn ()
go_kappa (Delta
bvs2,Delta
bvs1) Id
tv TcSigmaType
ty1
go (Delta, Delta)
bvs (CastTy TcSigmaType
ty1 TcCoercionN
_) TcSigmaType
ty2 = (Delta, Delta) -> TcSigmaType -> TcSigmaType -> TcRn ()
go (Delta, Delta)
bvs TcSigmaType
ty1 TcSigmaType
ty2
go (Delta, Delta)
bvs TcSigmaType
ty1 (CastTy TcSigmaType
ty2 TcCoercionN
_) = (Delta, Delta) -> TcSigmaType -> TcSigmaType -> TcRn ()
go (Delta, Delta)
bvs TcSigmaType
ty1 TcSigmaType
ty2
go (Delta, Delta)
_ (TyConApp TyCon
tc1 []) (TyConApp TyCon
tc2 [])
| TyCon
tc1 TyCon -> TyCon -> Bool
forall a. Eq a => a -> a -> Bool
== TyCon
tc2
= () -> TcRn ()
forall (m :: * -> *) a. Monad m => a -> m a
return ()
go (Delta, Delta)
bvs TcSigmaType
rho1 TcSigmaType
rho2
| Just TcSigmaType
rho1 <- TcSigmaType -> Maybe TcSigmaType
tcView TcSigmaType
rho1 = (Delta, Delta) -> TcSigmaType -> TcSigmaType -> TcRn ()
go (Delta, Delta)
bvs TcSigmaType
rho1 TcSigmaType
rho2
| Just TcSigmaType
rho2 <- TcSigmaType -> Maybe TcSigmaType
tcView TcSigmaType
rho2 = (Delta, Delta) -> TcSigmaType -> TcSigmaType -> TcRn ()
go (Delta, Delta)
bvs TcSigmaType
rho1 TcSigmaType
rho2
go (Delta, Delta)
bvs (TyConApp TyCon
tc1 ThetaType
tys1) (TyConApp TyCon
tc2 ThetaType
tys2)
| TyCon
tc1 TyCon -> TyCon -> Bool
forall a. Eq a => a -> a -> Bool
== TyCon
tc2
, Bool -> Bool
not (TyCon -> Bool
isTypeFamilyTyCon TyCon
tc1)
, ThetaType
tys1 ThetaType -> ThetaType -> Bool
forall a b. [a] -> [b] -> Bool
`equalLength` ThetaType
tys2
= (TcSigmaType -> TcSigmaType -> TcRn ())
-> ThetaType -> ThetaType -> TcRn ()
forall (m :: * -> *) a b c.
Applicative m =>
(a -> b -> m c) -> [a] -> [b] -> m ()
zipWithM_ ((Delta, Delta) -> TcSigmaType -> TcSigmaType -> TcRn ()
go (Delta, Delta)
bvs) ThetaType
tys1 ThetaType
tys2
go (Delta, Delta)
bvs (FunTy { ft_af :: TcSigmaType -> AnonArgFlag
ft_af = AnonArgFlag
af1, ft_arg :: TcSigmaType -> TcSigmaType
ft_arg = TcSigmaType
arg1, ft_res :: TcSigmaType -> TcSigmaType
ft_res = TcSigmaType
res1, ft_mult :: TcSigmaType -> TcSigmaType
ft_mult = TcSigmaType
mult1 })
(FunTy { ft_af :: TcSigmaType -> AnonArgFlag
ft_af = AnonArgFlag
af2, ft_arg :: TcSigmaType -> TcSigmaType
ft_arg = TcSigmaType
arg2, ft_res :: TcSigmaType -> TcSigmaType
ft_res = TcSigmaType
res2, ft_mult :: TcSigmaType -> TcSigmaType
ft_mult = TcSigmaType
mult2 })
| AnonArgFlag
af1 AnonArgFlag -> AnonArgFlag -> Bool
forall a. Eq a => a -> a -> Bool
== AnonArgFlag
af2
= do { Bool -> TcRn () -> TcRn ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (AnonArgFlag
af1 AnonArgFlag -> AnonArgFlag -> Bool
forall a. Eq a => a -> a -> Bool
== AnonArgFlag
VisArg) (TcRn () -> TcRn ()) -> TcRn () -> TcRn ()
forall a b. (a -> b) -> a -> b
$
do { (Delta, Delta) -> TcSigmaType -> TcSigmaType -> TcRn ()
go (Delta, Delta)
bvs TcSigmaType
arg1 TcSigmaType
arg2; (Delta, Delta) -> TcSigmaType -> TcSigmaType -> TcRn ()
go (Delta, Delta)
bvs TcSigmaType
mult1 TcSigmaType
mult2 }
; (Delta, Delta) -> TcSigmaType -> TcSigmaType -> TcRn ()
go (Delta, Delta)
bvs TcSigmaType
res1 TcSigmaType
res2 }
go (Delta, Delta)
bvs (AppTy TcSigmaType
t1a TcSigmaType
t1b) TcSigmaType
ty2
| Just (TcSigmaType
t2a, TcSigmaType
t2b) <- TcSigmaType -> Maybe (TcSigmaType, TcSigmaType)
tcRepSplitAppTy_maybe TcSigmaType
ty2
= do { (Delta, Delta) -> TcSigmaType -> TcSigmaType -> TcRn ()
go (Delta, Delta)
bvs TcSigmaType
t1a TcSigmaType
t2a; (Delta, Delta) -> TcSigmaType -> TcSigmaType -> TcRn ()
go (Delta, Delta)
bvs TcSigmaType
t1b TcSigmaType
t2b }
go (Delta, Delta)
bvs TcSigmaType
ty1 (AppTy TcSigmaType
t2a TcSigmaType
t2b)
| Just (TcSigmaType
t1a, TcSigmaType
t1b) <- TcSigmaType -> Maybe (TcSigmaType, TcSigmaType)
tcRepSplitAppTy_maybe TcSigmaType
ty1
= do { (Delta, Delta) -> TcSigmaType -> TcSigmaType -> TcRn ()
go (Delta, Delta)
bvs TcSigmaType
t1a TcSigmaType
t2a; (Delta, Delta) -> TcSigmaType -> TcSigmaType -> TcRn ()
go (Delta, Delta)
bvs TcSigmaType
t1b TcSigmaType
t2b }
go (Delta
bvs1, Delta
bvs2) (ForAllTy TyVarBinder
bv1 TcSigmaType
ty1) (ForAllTy TyVarBinder
bv2 TcSigmaType
ty2)
= (Delta, Delta) -> TcSigmaType -> TcSigmaType -> TcRn ()
go (Delta
bvs1',Delta
bvs2') TcSigmaType
ty1 TcSigmaType
ty2
where
bvs1' :: Delta
bvs1' = Delta
bvs1 Delta -> Id -> Delta
`extendVarSet` TyVarBinder -> Id
forall tv argf. VarBndr tv argf -> tv
binderVar TyVarBinder
bv1
bvs2' :: Delta
bvs2' = Delta
bvs2 Delta -> Id -> Delta
`extendVarSet` TyVarBinder -> Id
forall tv argf. VarBndr tv argf -> tv
binderVar TyVarBinder
bv2
go (Delta, Delta)
_ TcSigmaType
_ TcSigmaType
_ = () -> TcRn ()
forall (m :: * -> *) a. Monad m => a -> m a
return ()
go_kappa :: (Delta, Delta) -> Id -> TcSigmaType -> TcRn ()
go_kappa (Delta, Delta)
bvs Id
kappa TcSigmaType
ty2
= Bool -> SDoc -> TcRn () -> TcRn ()
forall a. HasCallStack => Bool -> SDoc -> a -> a
assertPpr (Id -> Bool
isMetaTyVar Id
kappa) (Id -> SDoc
forall a. Outputable a => a -> SDoc
ppr Id
kappa) (TcRn () -> TcRn ()) -> TcRn () -> TcRn ()
forall a b. (a -> b) -> a -> b
$
do { MetaDetails
info <- Id -> TcM MetaDetails
readMetaTyVar Id
kappa
; case MetaDetails
info of
Indirect TcSigmaType
ty1 -> (Delta, Delta) -> TcSigmaType -> TcSigmaType -> TcRn ()
go (Delta, Delta)
bvs TcSigmaType
ty1 TcSigmaType
ty2
MetaDetails
Flexi -> do { TcSigmaType
ty2 <- TcSigmaType -> TcM TcSigmaType
zonkTcType TcSigmaType
ty2
; (Delta, Delta) -> Id -> TcSigmaType -> TcRn ()
forall a. (a, Delta) -> Id -> TcSigmaType -> TcRn ()
go_flexi (Delta, Delta)
bvs Id
kappa TcSigmaType
ty2 } }
go_flexi :: (a, Delta) -> Id -> TcSigmaType -> TcRn ()
go_flexi (a
_,Delta
bvs2) Id
kappa TcSigmaType
ty2
|
let ty2_tvs :: Delta
ty2_tvs = TcSigmaType -> Delta
shallowTyCoVarsOfType TcSigmaType
ty2
, Bool -> Bool
not (Delta
ty2_tvs Delta -> Delta -> Bool
`intersectsVarSet` Delta
bvs2)
, Just TcSigmaType
ty2 <- [Id] -> TcSigmaType -> Maybe TcSigmaType
occCheckExpand [Id
kappa] TcSigmaType
ty2
= do { let ty2_kind :: TcSigmaType
ty2_kind = HasDebugCallStack => TcSigmaType -> TcSigmaType
TcSigmaType -> TcSigmaType
typeKind TcSigmaType
ty2
kappa_kind :: TcSigmaType
kappa_kind = Id -> TcSigmaType
tyVarKind Id
kappa
; TcCoercionN
co <- Maybe TypedThing
-> TcSigmaType
-> TcSigmaType
-> IOEnv (Env TcGblEnv TcLclEnv) TcCoercionN
unifyKind (TypedThing -> Maybe TypedThing
forall a. a -> Maybe a
Just (TcSigmaType -> TypedThing
TypeThing TcSigmaType
ty2)) TcSigmaType
ty2_kind TcSigmaType
kappa_kind
; String -> SDoc -> TcRn ()
traceTc String
"qlUnify:update" (SDoc -> TcRn ()) -> SDoc -> TcRn ()
forall a b. (a -> b) -> a -> b
$
[SDoc] -> SDoc
vcat [ SDoc -> Arity -> SDoc -> SDoc
hang (Id -> SDoc
forall a. Outputable a => a -> SDoc
ppr Id
kappa SDoc -> SDoc -> SDoc
<+> SDoc
dcolon SDoc -> SDoc -> SDoc
<+> TcSigmaType -> SDoc
forall a. Outputable a => a -> SDoc
ppr TcSigmaType
kappa_kind)
Arity
2 (String -> SDoc
text String
":=" SDoc -> SDoc -> SDoc
<+> TcSigmaType -> SDoc
forall a. Outputable a => a -> SDoc
ppr TcSigmaType
ty2 SDoc -> SDoc -> SDoc
<+> SDoc
dcolon SDoc -> SDoc -> SDoc
<+> TcSigmaType -> SDoc
forall a. Outputable a => a -> SDoc
ppr TcSigmaType
ty2_kind)
, String -> SDoc
text String
"co:" SDoc -> SDoc -> SDoc
<+> TcCoercionN -> SDoc
forall a. Outputable a => a -> SDoc
ppr TcCoercionN
co ]
; Id -> TcSigmaType -> TcRn ()
writeMetaTyVar Id
kappa (TcSigmaType -> TcCoercionN -> TcSigmaType
mkCastTy TcSigmaType
ty2 TcCoercionN
co) }
| Bool
otherwise
= () -> TcRn ()
forall (m :: * -> *) a. Monad m => a -> m a
return ()
findNoQuantVars :: TcSigmaType -> [HsExprArg 'TcpRn] -> Bool
findNoQuantVars :: TcSigmaType -> [HsExprArg 'TcpRn] -> Bool
findNoQuantVars TcSigmaType
fun_ty [HsExprArg 'TcpRn]
args
= Delta -> TcSigmaType -> [HsExprArg 'TcpRn] -> Bool
go Delta
emptyVarSet TcSigmaType
fun_ty [HsExprArg 'TcpRn]
args
where
need_instantiation :: [HsExprArg p] -> Bool
need_instantiation [] = Bool
True
need_instantiation (EValArg {} : [HsExprArg p]
_) = Bool
True
need_instantiation [HsExprArg p]
_ = Bool
False
go :: TyVarSet -> TcSigmaType -> [HsExprArg 'TcpRn] -> Bool
go :: Delta -> TcSigmaType -> [HsExprArg 'TcpRn] -> Bool
go Delta
bvs TcSigmaType
fun_ty [HsExprArg 'TcpRn]
args
| [HsExprArg 'TcpRn] -> Bool
forall (p :: TcPass). [HsExprArg p] -> Bool
need_instantiation [HsExprArg 'TcpRn]
args
, ([Id]
tvs, ThetaType
theta, TcSigmaType
rho) <- TcSigmaType -> ([Id], ThetaType, TcSigmaType)
tcSplitSigmaTy TcSigmaType
fun_ty
, Bool -> Bool
not ([Id] -> Bool
forall (t :: * -> *) a. Foldable t => t a -> Bool
null [Id]
tvs Bool -> Bool -> Bool
&& ThetaType -> Bool
forall (t :: * -> *) a. Foldable t => t a -> Bool
null ThetaType
theta)
= Delta -> TcSigmaType -> [HsExprArg 'TcpRn] -> Bool
go (Delta
bvs Delta -> [Id] -> Delta
`extendVarSetList` [Id]
tvs) TcSigmaType
rho [HsExprArg 'TcpRn]
args
go Delta
bvs TcSigmaType
fun_ty [] = TcSigmaType -> Delta
tyCoVarsOfType TcSigmaType
fun_ty Delta -> Delta -> Bool
`disjointVarSet` Delta
bvs
go Delta
bvs TcSigmaType
fun_ty (EWrap {} : [HsExprArg 'TcpRn]
args) = Delta -> TcSigmaType -> [HsExprArg 'TcpRn] -> Bool
go Delta
bvs TcSigmaType
fun_ty [HsExprArg 'TcpRn]
args
go Delta
bvs TcSigmaType
fun_ty (EPrag {} : [HsExprArg 'TcpRn]
args) = Delta -> TcSigmaType -> [HsExprArg 'TcpRn] -> Bool
go Delta
bvs TcSigmaType
fun_ty [HsExprArg 'TcpRn]
args
go Delta
bvs TcSigmaType
fun_ty args :: [HsExprArg 'TcpRn]
args@(ETypeArg {} : [HsExprArg 'TcpRn]
rest_args)
| ([Id]
tvs, TcSigmaType
body1) <- (ArgFlag -> Bool) -> TcSigmaType -> ([Id], TcSigmaType)
tcSplitSomeForAllTyVars (ArgFlag -> ArgFlag -> Bool
forall a. Eq a => a -> a -> Bool
== ArgFlag
Inferred) TcSigmaType
fun_ty
, (ThetaType
theta, TcSigmaType
body2) <- TcSigmaType -> (ThetaType, TcSigmaType)
tcSplitPhiTy TcSigmaType
body1
, Bool -> Bool
not ([Id] -> Bool
forall (t :: * -> *) a. Foldable t => t a -> Bool
null [Id]
tvs Bool -> Bool -> Bool
&& ThetaType -> Bool
forall (t :: * -> *) a. Foldable t => t a -> Bool
null ThetaType
theta)
= Delta -> TcSigmaType -> [HsExprArg 'TcpRn] -> Bool
go (Delta
bvs Delta -> [Id] -> Delta
`extendVarSetList` [Id]
tvs) TcSigmaType
body2 [HsExprArg 'TcpRn]
args
| Just (TyVarBinder
_tv, TcSigmaType
res_ty) <- TcSigmaType -> Maybe (TyVarBinder, TcSigmaType)
tcSplitForAllTyVarBinder_maybe TcSigmaType
fun_ty
= Delta -> TcSigmaType -> [HsExprArg 'TcpRn] -> Bool
go Delta
bvs TcSigmaType
res_ty [HsExprArg 'TcpRn]
rest_args
| Bool
otherwise
= Bool
False
go Delta
bvs TcSigmaType
fun_ty (EValArg {} : [HsExprArg 'TcpRn]
rest_args)
| Just (Scaled TcSigmaType
_, TcSigmaType
res_ty) <- TcSigmaType -> Maybe (Scaled TcSigmaType, TcSigmaType)
tcSplitFunTy_maybe TcSigmaType
fun_ty
= Delta -> TcSigmaType -> [HsExprArg 'TcpRn] -> Bool
go Delta
bvs TcSigmaType
res_ty [HsExprArg 'TcpRn]
rest_args
| Bool
otherwise
= Bool
False
isTagToEnum :: HsExpr GhcRn -> Bool
isTagToEnum :: HsExpr GhcRn -> Bool
isTagToEnum (HsVar XVar GhcRn
_ (L _ fun_id)) = Name
fun_id Name -> Unique -> Bool
forall a. Uniquable a => a -> Unique -> Bool
`hasKey` Unique
tagToEnumKey
isTagToEnum HsExpr GhcRn
_ = Bool
False
tcTagToEnum :: HsExpr GhcTc -> AppCtxt -> [HsExprArg 'TcpTc]
-> TcRhoType
-> TcM (HsExpr GhcTc)
tcTagToEnum :: HsExpr GhcTc
-> AppCtxt
-> [HsExprArg 'TcpTc]
-> TcSigmaType
-> TcM (HsExpr GhcTc)
tcTagToEnum HsExpr GhcTc
tc_fun AppCtxt
fun_ctxt [HsExprArg 'TcpTc]
tc_args TcSigmaType
res_ty
| [HsExprArg 'TcpTc
val_arg] <- (HsExprArg 'TcpTc -> Bool)
-> [HsExprArg 'TcpTc] -> [HsExprArg 'TcpTc]
forall a. (a -> Bool) -> [a] -> [a]
dropWhile (Bool -> Bool
not (Bool -> Bool)
-> (HsExprArg 'TcpTc -> Bool) -> HsExprArg 'TcpTc -> Bool
forall b c a. (b -> c) -> (a -> b) -> a -> c
. HsExprArg 'TcpTc -> Bool
forall (id :: TcPass). HsExprArg id -> Bool
isHsValArg) [HsExprArg 'TcpTc]
tc_args
= do { TcSigmaType
res_ty <- TcSigmaType -> TcM TcSigmaType
zonkTcType TcSigmaType
res_ty
; case HasCallStack => TcSigmaType -> Maybe (TyCon, ThetaType)
TcSigmaType -> Maybe (TyCon, ThetaType)
tcSplitTyConApp_maybe TcSigmaType
res_ty of {
Maybe (TyCon, ThetaType)
Nothing -> do { TcRnMessage -> TcRn ()
addErrTc (TcSigmaType -> TcRnMessage
TcRnTagToEnumUnspecifiedResTy TcSigmaType
res_ty)
; TcM (HsExpr GhcTc)
vanilla_result } ;
Just (TyCon
tc, ThetaType
tc_args) ->
do {
; FamInstEnvs
fam_envs <- TcM FamInstEnvs
tcGetFamInstEnvs
; case FamInstEnvs
-> TyCon -> ThetaType -> Maybe (TyCon, ThetaType, TcCoercionN)
tcLookupDataFamInst_maybe FamInstEnvs
fam_envs TyCon
tc ThetaType
tc_args of {
Maybe (TyCon, ThetaType, TcCoercionN)
Nothing -> do { TcSigmaType -> TyCon -> TcRn ()
check_enumeration TcSigmaType
res_ty TyCon
tc
; TcM (HsExpr GhcTc)
vanilla_result } ;
Just (TyCon
rep_tc, ThetaType
rep_args, TcCoercionN
coi) ->
do {
TcSigmaType -> TyCon -> TcRn ()
check_enumeration TcSigmaType
res_ty TyCon
rep_tc
; let rep_ty :: TcSigmaType
rep_ty = TyCon -> ThetaType -> TcSigmaType
mkTyConApp TyCon
rep_tc ThetaType
rep_args
tc_fun' :: HsExpr GhcTc
tc_fun' = HsWrapper -> HsExpr GhcTc -> HsExpr GhcTc
mkHsWrap (TcSigmaType -> HsWrapper
WpTyApp TcSigmaType
rep_ty) HsExpr GhcTc
tc_fun
tc_expr :: HsExpr GhcTc
tc_expr = HsExpr GhcTc -> AppCtxt -> [HsExprArg 'TcpTc] -> HsExpr GhcTc
rebuildHsApps HsExpr GhcTc
tc_fun' AppCtxt
fun_ctxt [HsExprArg 'TcpTc
val_arg]
df_wrap :: HsWrapper
df_wrap = TcCoercionN -> HsWrapper
mkWpCastR (TcCoercionN -> TcCoercionN
mkTcSymCo TcCoercionN
coi)
; HsExpr GhcTc -> TcM (HsExpr GhcTc)
forall (m :: * -> *) a. Monad m => a -> m a
return (HsWrapper -> HsExpr GhcTc -> HsExpr GhcTc
mkHsWrap HsWrapper
df_wrap HsExpr GhcTc
tc_expr) }}}}}
| Bool
otherwise
= TcRnMessage -> TcM (HsExpr GhcTc)
forall a. TcRnMessage -> TcRn a
failWithTc TcRnMessage
TcRnTagToEnumMissingValArg
where
vanilla_result :: TcM (HsExpr GhcTc)
vanilla_result = HsExpr GhcTc -> TcM (HsExpr GhcTc)
forall (m :: * -> *) a. Monad m => a -> m a
return (HsExpr GhcTc -> AppCtxt -> [HsExprArg 'TcpTc] -> HsExpr GhcTc
rebuildHsApps HsExpr GhcTc
tc_fun AppCtxt
fun_ctxt [HsExprArg 'TcpTc]
tc_args)
check_enumeration :: TcSigmaType -> TyCon -> TcRn ()
check_enumeration TcSigmaType
ty' TyCon
tc
| TyCon -> Bool
isEnumerationTyCon TyCon
tc = () -> TcRn ()
forall (m :: * -> *) a. Monad m => a -> m a
return ()
| Bool
otherwise = TcRnMessage -> TcRn ()
addErrTc (TcSigmaType -> TcRnMessage
TcRnTagToEnumResTyNotAnEnum TcSigmaType
ty')
tcExprPrag :: HsPragE GhcRn -> HsPragE GhcTc
tcExprPrag :: HsPragE GhcRn -> HsPragE GhcTc
tcExprPrag (HsPragSCC XSCC GhcRn
x1 SourceText
src StringLiteral
ann) = XSCC GhcTc -> SourceText -> StringLiteral -> HsPragE GhcTc
forall p. XSCC p -> SourceText -> StringLiteral -> HsPragE p
HsPragSCC XSCC GhcTc
XSCC GhcRn
x1 SourceText
src StringLiteral
ann