{-# LANGUAGE TypeFamilies #-}
module GHC.Tc.Gen.Sig(
TcSigInfo(..), TcIdSig(..), TcSigFun,
isPartialSig, hasCompleteSig, tcSigInfoName, tcIdSigLoc,
completeSigPolyId_maybe, isCompleteHsSig,
lhsSigWcTypeContextSpan, lhsSigTypeContextSpan,
tcTySigs, tcUserTypeSig, completeSigFromId,
tcInstSig,
TcPragEnv, emptyPragEnv, lookupPragEnv, extendPragEnv,
mkPragEnv, tcSpecPrags, tcSpecWrapper, tcImpPrags,
addInlinePrags, addInlinePragArity,
tcRules
) where
import GHC.Prelude
import GHC.Data.FastString
import GHC.Driver.DynFlags
import GHC.Driver.Backend
import GHC.Hs
import {-# SOURCE #-} GHC.Tc.Gen.Expr ( tcInferRho, tcCheckMonoExpr )
import GHC.Tc.Errors.Types
import GHC.Tc.Gen.HsType
import GHC.Tc.Solver( reportUnsolvedEqualities, pushLevelAndSolveEqualitiesX
, emitResidualConstraints )
import GHC.Tc.Solver.Solve( solveWanteds )
import GHC.Tc.Solver.Monad( runTcS, runTcSSpecPrag )
import GHC.Tc.Validity ( checkValidType )
import GHC.Tc.Utils.Monad
import GHC.Tc.Utils.TcType
import GHC.Tc.Utils.TcMType
import GHC.Tc.Utils.Unify( DeepSubsumptionFlag(..), tcSkolemise, unifyType, buildImplicationFor )
import GHC.Tc.Utils.Instantiate( topInstantiate, tcInstTypeBndrs )
import GHC.Tc.Utils.Env
import GHC.Tc.Types.Origin
import GHC.Tc.Types.Evidence
import GHC.Tc.Types.Constraint
import GHC.Tc.Zonk.TcType
import GHC.Tc.Zonk.Type
import GHC.Core( hasSomeUnfolding )
import GHC.Core.Type
import GHC.Core.Multiplicity
import GHC.Core.Predicate
import GHC.Core.TyCo.Rep( mkNakedFunTy )
import GHC.Core.TyCon( isTypeFamilyTyCon )
import GHC.Types.Var
import GHC.Types.Var.Set
import GHC.Types.Id ( idName, idType, setInlinePragma
, mkLocalId, realIdUnfolding )
import GHC.Types.Basic
import GHC.Types.Name
import GHC.Types.Name.Env
import GHC.Types.SrcLoc
import GHC.Builtin.Names( mkUnboundName )
import GHC.Unit.Module( Module, getModule )
import GHC.Utils.Misc as Utils ( singleton )
import GHC.Utils.Outputable
import GHC.Utils.Panic
import GHC.Data.Bag
import GHC.Data.Maybe( orElse, whenIsJust )
import Control.Monad( unless )
import Data.Foldable ( toList )
import qualified Data.List.NonEmpty as NE
import Data.Maybe( mapMaybe )
tcTySigs :: [LSig GhcRn] -> TcM ([TcId], TcSigFun)
tcTySigs :: [LSig GhcRn] -> TcM ([EvVar], TcSigFun)
tcTySigs [LSig GhcRn]
hs_sigs
= TcM ([EvVar], TcSigFun) -> TcM ([EvVar], TcSigFun)
forall r. TcM r -> TcM r
checkNoErrs (TcM ([EvVar], TcSigFun) -> TcM ([EvVar], TcSigFun))
-> TcM ([EvVar], TcSigFun) -> TcM ([EvVar], TcSigFun)
forall a b. (a -> b) -> a -> b
$
do {
ty_sigs_s <- (GenLocated SrcSpanAnnA (Sig GhcRn) -> TcRn [TcSigInfo])
-> [GenLocated SrcSpanAnnA (Sig GhcRn)] -> TcRn [[TcSigInfo]]
forall a b. (a -> TcRn b) -> [a] -> TcRn [b]
mapAndReportM LSig GhcRn -> TcRn [TcSigInfo]
GenLocated SrcSpanAnnA (Sig GhcRn) -> TcRn [TcSigInfo]
tcTySig [LSig GhcRn]
[GenLocated SrcSpanAnnA (Sig GhcRn)]
hs_sigs
; let ty_sigs = [[TcSigInfo]] -> [TcSigInfo]
forall (t :: * -> *) a. Foldable t => t [a] -> [a]
concat [[TcSigInfo]]
ty_sigs_s
poly_ids = (TcSigInfo -> Maybe EvVar) -> [TcSigInfo] -> [EvVar]
forall a b. (a -> Maybe b) -> [a] -> [b]
mapMaybe TcSigInfo -> Maybe EvVar
completeSigPolyId_maybe [TcSigInfo]
ty_sigs
env = [(Name, TcSigInfo)] -> NameEnv TcSigInfo
forall a. [(Name, a)] -> NameEnv a
mkNameEnv [(TcSigInfo -> Name
tcSigInfoName TcSigInfo
sig, TcSigInfo
sig) | TcSigInfo
sig <- [TcSigInfo]
ty_sigs]
; return (poly_ids, lookupNameEnv env) }
tcTySig :: LSig GhcRn -> TcM [TcSigInfo]
tcTySig :: LSig GhcRn -> TcRn [TcSigInfo]
tcTySig (L SrcSpanAnnA
_ (XSig (IdSig EvVar
id)))
= do { let ctxt :: UserTypeCtxt
ctxt = Name -> ReportRedundantConstraints -> UserTypeCtxt
FunSigCtxt (EvVar -> Name
idName EvVar
id) ReportRedundantConstraints
NoRRC
sig :: TcCompleteSig
sig = UserTypeCtxt -> EvVar -> TcCompleteSig
completeSigFromId UserTypeCtxt
ctxt EvVar
id
; [TcSigInfo] -> TcRn [TcSigInfo]
forall a. a -> IOEnv (Env TcGblEnv TcLclEnv) a
forall (m :: * -> *) a. Monad m => a -> m a
return [TcIdSig -> TcSigInfo
TcIdSig (TcCompleteSig -> TcIdSig
TcCompleteSig TcCompleteSig
sig)] }
tcTySig (L SrcSpanAnnA
loc (TypeSig XTypeSig GhcRn
_ [XRec GhcRn (IdP GhcRn)]
names LHsSigWcType GhcRn
sig_ty))
= SrcSpanAnnA -> TcRn [TcSigInfo] -> TcRn [TcSigInfo]
forall ann a. EpAnn ann -> TcRn a -> TcRn a
setSrcSpanA SrcSpanAnnA
loc (TcRn [TcSigInfo] -> TcRn [TcSigInfo])
-> TcRn [TcSigInfo] -> TcRn [TcSigInfo]
forall a b. (a -> b) -> a -> b
$
do { sigs <- [IOEnv (Env TcGblEnv TcLclEnv) TcIdSig]
-> IOEnv (Env TcGblEnv TcLclEnv) [TcIdSig]
forall (t :: * -> *) (m :: * -> *) a.
(Traversable t, Monad m) =>
t (m a) -> m (t a)
forall (m :: * -> *) a. Monad m => [m a] -> m [a]
sequence [ SrcSpan
-> LHsSigWcType GhcRn
-> Maybe Name
-> IOEnv (Env TcGblEnv TcLclEnv) TcIdSig
tcUserTypeSig (SrcSpanAnnA -> SrcSpan
forall a. HasLoc a => a -> SrcSpan
locA SrcSpanAnnA
loc) LHsSigWcType GhcRn
sig_ty (Name -> Maybe Name
forall a. a -> Maybe a
Just Name
name)
| L SrcSpanAnnN
_ Name
name <- [XRec GhcRn (IdP GhcRn)]
[GenLocated SrcSpanAnnN Name]
names ]
; return (map TcIdSig sigs) }
tcTySig (L SrcSpanAnnA
loc (PatSynSig XPatSynSig GhcRn
_ [XRec GhcRn (IdP GhcRn)]
names LHsSigType GhcRn
sig_ty))
= SrcSpanAnnA -> TcRn [TcSigInfo] -> TcRn [TcSigInfo]
forall ann a. EpAnn ann -> TcRn a -> TcRn a
setSrcSpanA SrcSpanAnnA
loc (TcRn [TcSigInfo] -> TcRn [TcSigInfo])
-> TcRn [TcSigInfo] -> TcRn [TcSigInfo]
forall a b. (a -> b) -> a -> b
$
do { tpsigs <- [IOEnv (Env TcGblEnv TcLclEnv) TcPatSynSig]
-> IOEnv (Env TcGblEnv TcLclEnv) [TcPatSynSig]
forall (t :: * -> *) (m :: * -> *) a.
(Traversable t, Monad m) =>
t (m a) -> m (t a)
forall (m :: * -> *) a. Monad m => [m a] -> m [a]
sequence [ Name
-> LHsSigType GhcRn -> IOEnv (Env TcGblEnv TcLclEnv) TcPatSynSig
tcPatSynSig Name
name LHsSigType GhcRn
sig_ty
| L SrcSpanAnnN
_ Name
name <- [XRec GhcRn (IdP GhcRn)]
[GenLocated SrcSpanAnnN Name]
names ]
; return (map TcPatSynSig tpsigs) }
tcTySig LSig GhcRn
_ = [TcSigInfo] -> TcRn [TcSigInfo]
forall a. a -> IOEnv (Env TcGblEnv TcLclEnv) a
forall (m :: * -> *) a. Monad m => a -> m a
return []
tcUserTypeSig :: SrcSpan -> LHsSigWcType GhcRn -> Maybe Name -> TcM TcIdSig
tcUserTypeSig :: SrcSpan
-> LHsSigWcType GhcRn
-> Maybe Name
-> IOEnv (Env TcGblEnv TcLclEnv) TcIdSig
tcUserTypeSig SrcSpan
loc LHsSigWcType GhcRn
hs_sig_ty Maybe Name
mb_name
| LHsSigWcType GhcRn -> Bool
isCompleteHsSig LHsSigWcType GhcRn
hs_sig_ty
= do { sigma_ty <- UserTypeCtxt -> LHsSigWcType GhcRn -> TcM TcRhoType
tcHsSigWcType UserTypeCtxt
ctxt_no_rrc LHsSigWcType GhcRn
hs_sig_ty
; traceTc "tcuser" (ppr sigma_ty)
; return $ TcCompleteSig $
CSig { sig_bndr = mkLocalId name ManyTy sigma_ty
, sig_ctxt = ctxt_rrc
, sig_loc = loc } }
| Bool
otherwise
= TcIdSig -> IOEnv (Env TcGblEnv TcLclEnv) TcIdSig
forall a. a -> IOEnv (Env TcGblEnv TcLclEnv) a
forall (m :: * -> *) a. Monad m => a -> m a
return (TcIdSig -> IOEnv (Env TcGblEnv TcLclEnv) TcIdSig)
-> TcIdSig -> IOEnv (Env TcGblEnv TcLclEnv) TcIdSig
forall a b. (a -> b) -> a -> b
$ TcPartialSig -> TcIdSig
TcPartialSig (TcPartialSig -> TcIdSig) -> TcPartialSig -> TcIdSig
forall a b. (a -> b) -> a -> b
$
PSig { psig_name :: Name
psig_name = Name
name, psig_hs_ty :: LHsSigWcType GhcRn
psig_hs_ty = LHsSigWcType GhcRn
hs_sig_ty
, psig_ctxt :: UserTypeCtxt
psig_ctxt = UserTypeCtxt
ctxt_no_rrc, psig_loc :: SrcSpan
psig_loc = SrcSpan
loc }
where
name :: Name
name = case Maybe Name
mb_name of
Just Name
n -> Name
n
Maybe Name
Nothing -> OccName -> Name
mkUnboundName (FastString -> OccName
mkVarOccFS (String -> FastString
fsLit String
"<expression>"))
ctxt_rrc :: UserTypeCtxt
ctxt_rrc = ReportRedundantConstraints -> UserTypeCtxt
ctxt_fn (LHsSigWcType GhcRn -> ReportRedundantConstraints
lhsSigWcTypeContextSpan LHsSigWcType GhcRn
hs_sig_ty)
ctxt_no_rrc :: UserTypeCtxt
ctxt_no_rrc = ReportRedundantConstraints -> UserTypeCtxt
ctxt_fn ReportRedundantConstraints
NoRRC
ctxt_fn :: ReportRedundantConstraints -> UserTypeCtxt
ctxt_fn :: ReportRedundantConstraints -> UserTypeCtxt
ctxt_fn ReportRedundantConstraints
rcc = case Maybe Name
mb_name of
Just Name
n -> Name -> ReportRedundantConstraints -> UserTypeCtxt
FunSigCtxt Name
n ReportRedundantConstraints
rcc
Maybe Name
Nothing -> ReportRedundantConstraints -> UserTypeCtxt
ExprSigCtxt ReportRedundantConstraints
rcc
lhsSigWcTypeContextSpan :: LHsSigWcType GhcRn -> ReportRedundantConstraints
lhsSigWcTypeContextSpan :: LHsSigWcType GhcRn -> ReportRedundantConstraints
lhsSigWcTypeContextSpan (HsWC { hswc_body :: forall pass thing. HsWildCardBndrs pass thing -> thing
hswc_body = LHsSigType GhcRn
sigType }) = LHsSigType GhcRn -> ReportRedundantConstraints
lhsSigTypeContextSpan LHsSigType GhcRn
sigType
lhsSigTypeContextSpan :: LHsSigType GhcRn -> ReportRedundantConstraints
lhsSigTypeContextSpan :: LHsSigType GhcRn -> ReportRedundantConstraints
lhsSigTypeContextSpan (L SrcSpanAnnA
_ HsSig { sig_body :: forall pass. HsSigType pass -> LHsType pass
sig_body = XRec GhcRn (HsType GhcRn)
sig_ty }) = GenLocated SrcSpanAnnA (HsType GhcRn) -> ReportRedundantConstraints
forall {pass} {l} {a}.
(XRec pass (HsType pass) ~ GenLocated l (HsType pass),
XRec pass [GenLocated l (HsType pass)]
~ GenLocated a [GenLocated l (HsType pass)],
HasLoc a) =>
GenLocated l (HsType pass) -> ReportRedundantConstraints
go XRec GhcRn (HsType GhcRn)
GenLocated SrcSpanAnnA (HsType GhcRn)
sig_ty
where
go :: GenLocated l (HsType pass) -> ReportRedundantConstraints
go (L l
_ (HsQualTy { hst_ctxt :: forall pass. HsType pass -> LHsContext pass
hst_ctxt = L a
span [XRec pass (HsType pass)]
_ })) = SrcSpan -> ReportRedundantConstraints
WantRRC (SrcSpan -> ReportRedundantConstraints)
-> SrcSpan -> ReportRedundantConstraints
forall a b. (a -> b) -> a -> b
$ a -> SrcSpan
forall a. HasLoc a => a -> SrcSpan
locA a
span
go (L l
_ (HsForAllTy { hst_body :: forall pass. HsType pass -> LHsType pass
hst_body = XRec pass (HsType pass)
hs_ty })) = GenLocated l (HsType pass) -> ReportRedundantConstraints
go XRec pass (HsType pass)
GenLocated l (HsType pass)
hs_ty
go (L l
_ (HsParTy XParTy pass
_ XRec pass (HsType pass)
hs_ty)) = GenLocated l (HsType pass) -> ReportRedundantConstraints
go XRec pass (HsType pass)
GenLocated l (HsType pass)
hs_ty
go GenLocated l (HsType pass)
_ = ReportRedundantConstraints
NoRRC
completeSigFromId :: UserTypeCtxt -> Id -> TcCompleteSig
completeSigFromId :: UserTypeCtxt -> EvVar -> TcCompleteSig
completeSigFromId UserTypeCtxt
ctxt EvVar
id
= CSig { sig_bndr :: EvVar
sig_bndr = EvVar
id
, sig_ctxt :: UserTypeCtxt
sig_ctxt = UserTypeCtxt
ctxt
, sig_loc :: SrcSpan
sig_loc = EvVar -> SrcSpan
forall a. NamedThing a => a -> SrcSpan
getSrcSpan EvVar
id }
isCompleteHsSig :: LHsSigWcType GhcRn -> Bool
isCompleteHsSig :: LHsSigWcType GhcRn -> Bool
isCompleteHsSig (HsWC { hswc_ext :: forall pass thing. HsWildCardBndrs pass thing -> XHsWC pass thing
hswc_ext = XHsWC GhcRn (LHsSigType GhcRn)
wcs, hswc_body :: forall pass thing. HsWildCardBndrs pass thing -> thing
hswc_body = LHsSigType GhcRn
hs_sig_ty })
= [Name] -> Bool
forall a. [a] -> Bool
forall (t :: * -> *) a. Foldable t => t a -> Bool
null [Name]
XHsWC GhcRn (LHsSigType GhcRn)
wcs Bool -> Bool -> Bool
&& LHsSigType GhcRn -> Bool
no_anon_wc_sig_ty LHsSigType GhcRn
hs_sig_ty
no_anon_wc_sig_ty :: LHsSigType GhcRn -> Bool
no_anon_wc_sig_ty :: LHsSigType GhcRn -> Bool
no_anon_wc_sig_ty (L SrcSpanAnnA
_ (HsSig{sig_bndrs :: forall pass. HsSigType pass -> HsOuterSigTyVarBndrs pass
sig_bndrs = HsOuterSigTyVarBndrs GhcRn
outer_bndrs, sig_body :: forall pass. HsSigType pass -> LHsType pass
sig_body = XRec GhcRn (HsType GhcRn)
body}))
= (GenLocated SrcSpanAnnA (HsTyVarBndr Specificity GhcRn) -> Bool)
-> [GenLocated SrcSpanAnnA (HsTyVarBndr Specificity GhcRn)] -> Bool
forall (t :: * -> *) a. Foldable t => (a -> Bool) -> t a -> Bool
all LHsTyVarBndr Specificity GhcRn -> Bool
GenLocated SrcSpanAnnA (HsTyVarBndr Specificity GhcRn) -> Bool
forall flag. LHsTyVarBndr flag GhcRn -> Bool
no_anon_wc_tvb (HsOuterSigTyVarBndrs GhcRn
-> [LHsTyVarBndr Specificity (NoGhcTc GhcRn)]
forall flag (p :: Pass).
HsOuterTyVarBndrs flag (GhcPass p)
-> [LHsTyVarBndr flag (NoGhcTc (GhcPass p))]
hsOuterExplicitBndrs HsOuterSigTyVarBndrs GhcRn
outer_bndrs)
Bool -> Bool -> Bool
&& XRec GhcRn (HsType GhcRn) -> Bool
no_anon_wc_ty XRec GhcRn (HsType GhcRn)
body
no_anon_wc_ty :: LHsType GhcRn -> Bool
no_anon_wc_ty :: XRec GhcRn (HsType GhcRn) -> Bool
no_anon_wc_ty XRec GhcRn (HsType GhcRn)
lty = GenLocated SrcSpanAnnA (HsType GhcRn) -> Bool
go XRec GhcRn (HsType GhcRn)
GenLocated SrcSpanAnnA (HsType GhcRn)
lty
where
go :: GenLocated SrcSpanAnnA (HsType GhcRn) -> Bool
go (L SrcSpanAnnA
_ HsType GhcRn
ty) = case HsType GhcRn
ty of
HsWildCardTy XWildCardTy GhcRn
_ -> Bool
False
HsAppTy XAppTy GhcRn
_ XRec GhcRn (HsType GhcRn)
ty1 XRec GhcRn (HsType GhcRn)
ty2 -> GenLocated SrcSpanAnnA (HsType GhcRn) -> Bool
go XRec GhcRn (HsType GhcRn)
GenLocated SrcSpanAnnA (HsType GhcRn)
ty1 Bool -> Bool -> Bool
&& GenLocated SrcSpanAnnA (HsType GhcRn) -> Bool
go XRec GhcRn (HsType GhcRn)
GenLocated SrcSpanAnnA (HsType GhcRn)
ty2
HsAppKindTy XAppKindTy GhcRn
_ XRec GhcRn (HsType GhcRn)
ty XRec GhcRn (HsType GhcRn)
ki -> GenLocated SrcSpanAnnA (HsType GhcRn) -> Bool
go XRec GhcRn (HsType GhcRn)
GenLocated SrcSpanAnnA (HsType GhcRn)
ty Bool -> Bool -> Bool
&& GenLocated SrcSpanAnnA (HsType GhcRn) -> Bool
go XRec GhcRn (HsType GhcRn)
GenLocated SrcSpanAnnA (HsType GhcRn)
ki
HsFunTy XFunTy GhcRn
_ HsMultAnn GhcRn
w XRec GhcRn (HsType GhcRn)
ty1 XRec GhcRn (HsType GhcRn)
ty2 -> GenLocated SrcSpanAnnA (HsType GhcRn) -> Bool
go XRec GhcRn (HsType GhcRn)
GenLocated SrcSpanAnnA (HsType GhcRn)
ty1 Bool -> Bool -> Bool
&& GenLocated SrcSpanAnnA (HsType GhcRn) -> Bool
go XRec GhcRn (HsType GhcRn)
GenLocated SrcSpanAnnA (HsType GhcRn)
ty2 Bool -> Bool -> Bool
&& (GenLocated SrcSpanAnnA (HsType GhcRn) -> Bool)
-> Maybe (GenLocated SrcSpanAnnA (HsType GhcRn)) -> Bool
forall (t :: * -> *) a. Foldable t => (a -> Bool) -> t a -> Bool
all GenLocated SrcSpanAnnA (HsType GhcRn) -> Bool
go (HsMultAnn GhcRn -> Maybe (XRec GhcRn (HsType GhcRn))
multAnnToHsType HsMultAnn GhcRn
w)
HsListTy XListTy GhcRn
_ XRec GhcRn (HsType GhcRn)
ty -> GenLocated SrcSpanAnnA (HsType GhcRn) -> Bool
go XRec GhcRn (HsType GhcRn)
GenLocated SrcSpanAnnA (HsType GhcRn)
ty
HsTupleTy XTupleTy GhcRn
_ HsTupleSort
_ [XRec GhcRn (HsType GhcRn)]
tys -> [GenLocated SrcSpanAnnA (HsType GhcRn)] -> Bool
gos [XRec GhcRn (HsType GhcRn)]
[GenLocated SrcSpanAnnA (HsType GhcRn)]
tys
HsSumTy XSumTy GhcRn
_ [XRec GhcRn (HsType GhcRn)]
tys -> [GenLocated SrcSpanAnnA (HsType GhcRn)] -> Bool
gos [XRec GhcRn (HsType GhcRn)]
[GenLocated SrcSpanAnnA (HsType GhcRn)]
tys
HsOpTy XOpTy GhcRn
_ PromotionFlag
_ XRec GhcRn (HsType GhcRn)
ty1 XRec GhcRn (IdP GhcRn)
_ XRec GhcRn (HsType GhcRn)
ty2 -> GenLocated SrcSpanAnnA (HsType GhcRn) -> Bool
go XRec GhcRn (HsType GhcRn)
GenLocated SrcSpanAnnA (HsType GhcRn)
ty1 Bool -> Bool -> Bool
&& GenLocated SrcSpanAnnA (HsType GhcRn) -> Bool
go XRec GhcRn (HsType GhcRn)
GenLocated SrcSpanAnnA (HsType GhcRn)
ty2
HsParTy XParTy GhcRn
_ XRec GhcRn (HsType GhcRn)
ty -> GenLocated SrcSpanAnnA (HsType GhcRn) -> Bool
go XRec GhcRn (HsType GhcRn)
GenLocated SrcSpanAnnA (HsType GhcRn)
ty
HsIParamTy XIParamTy GhcRn
_ XRec GhcRn HsIPName
_ XRec GhcRn (HsType GhcRn)
ty -> GenLocated SrcSpanAnnA (HsType GhcRn) -> Bool
go XRec GhcRn (HsType GhcRn)
GenLocated SrcSpanAnnA (HsType GhcRn)
ty
HsKindSig XKindSig GhcRn
_ XRec GhcRn (HsType GhcRn)
ty XRec GhcRn (HsType GhcRn)
kind -> GenLocated SrcSpanAnnA (HsType GhcRn) -> Bool
go XRec GhcRn (HsType GhcRn)
GenLocated SrcSpanAnnA (HsType GhcRn)
ty Bool -> Bool -> Bool
&& GenLocated SrcSpanAnnA (HsType GhcRn) -> Bool
go XRec GhcRn (HsType GhcRn)
GenLocated SrcSpanAnnA (HsType GhcRn)
kind
HsDocTy XDocTy GhcRn
_ XRec GhcRn (HsType GhcRn)
ty LHsDoc GhcRn
_ -> GenLocated SrcSpanAnnA (HsType GhcRn) -> Bool
go XRec GhcRn (HsType GhcRn)
GenLocated SrcSpanAnnA (HsType GhcRn)
ty
HsExplicitListTy XExplicitListTy GhcRn
_ PromotionFlag
_ [XRec GhcRn (HsType GhcRn)]
tys -> [GenLocated SrcSpanAnnA (HsType GhcRn)] -> Bool
gos [XRec GhcRn (HsType GhcRn)]
[GenLocated SrcSpanAnnA (HsType GhcRn)]
tys
HsExplicitTupleTy XExplicitTupleTy GhcRn
_ PromotionFlag
_ [XRec GhcRn (HsType GhcRn)]
tys -> [GenLocated SrcSpanAnnA (HsType GhcRn)] -> Bool
gos [XRec GhcRn (HsType GhcRn)]
[GenLocated SrcSpanAnnA (HsType GhcRn)]
tys
HsForAllTy { hst_tele :: forall pass. HsType pass -> HsForAllTelescope pass
hst_tele = HsForAllTelescope GhcRn
tele
, hst_body :: forall pass. HsType pass -> LHsType pass
hst_body = XRec GhcRn (HsType GhcRn)
ty } -> HsForAllTelescope GhcRn -> Bool
no_anon_wc_tele HsForAllTelescope GhcRn
tele
Bool -> Bool -> Bool
&& GenLocated SrcSpanAnnA (HsType GhcRn) -> Bool
go XRec GhcRn (HsType GhcRn)
GenLocated SrcSpanAnnA (HsType GhcRn)
ty
HsQualTy { hst_ctxt :: forall pass. HsType pass -> LHsContext pass
hst_ctxt = LHsContext GhcRn
ctxt
, hst_body :: forall pass. HsType pass -> LHsType pass
hst_body = XRec GhcRn (HsType GhcRn)
ty } -> [GenLocated SrcSpanAnnA (HsType GhcRn)] -> Bool
gos (GenLocated SrcSpanAnnC [GenLocated SrcSpanAnnA (HsType GhcRn)]
-> [GenLocated SrcSpanAnnA (HsType GhcRn)]
forall l e. GenLocated l e -> e
unLoc LHsContext GhcRn
GenLocated SrcSpanAnnC [GenLocated SrcSpanAnnA (HsType GhcRn)]
ctxt) Bool -> Bool -> Bool
&& GenLocated SrcSpanAnnA (HsType GhcRn) -> Bool
go XRec GhcRn (HsType GhcRn)
GenLocated SrcSpanAnnA (HsType GhcRn)
ty
HsSpliceTy (HsUntypedSpliceTop ThModFinalizers
_ GenLocated SrcSpanAnnA (HsType GhcRn)
ty) HsUntypedSplice GhcRn
_ -> GenLocated SrcSpanAnnA (HsType GhcRn) -> Bool
go GenLocated SrcSpanAnnA (HsType GhcRn)
ty
HsSpliceTy (HsUntypedSpliceNested Name
_) HsUntypedSplice GhcRn
_ -> Bool
True
HsTyLit{} -> Bool
True
HsTyVar{} -> Bool
True
HsStarTy{} -> Bool
True
XHsType{} -> Bool
True
gos :: [GenLocated SrcSpanAnnA (HsType GhcRn)] -> Bool
gos = (GenLocated SrcSpanAnnA (HsType GhcRn) -> Bool)
-> [GenLocated SrcSpanAnnA (HsType GhcRn)] -> Bool
forall (t :: * -> *) a. Foldable t => (a -> Bool) -> t a -> Bool
all GenLocated SrcSpanAnnA (HsType GhcRn) -> Bool
go
no_anon_wc_tele :: HsForAllTelescope GhcRn -> Bool
no_anon_wc_tele :: HsForAllTelescope GhcRn -> Bool
no_anon_wc_tele HsForAllTelescope GhcRn
tele = case HsForAllTelescope GhcRn
tele of
HsForAllVis { hsf_vis_bndrs :: forall pass. HsForAllTelescope pass -> [LHsTyVarBndr () pass]
hsf_vis_bndrs = [LHsTyVarBndr () GhcRn]
ltvs } -> (GenLocated SrcSpanAnnA (HsTyVarBndr () GhcRn) -> Bool)
-> [GenLocated SrcSpanAnnA (HsTyVarBndr () GhcRn)] -> Bool
forall (t :: * -> *) a. Foldable t => (a -> Bool) -> t a -> Bool
all LHsTyVarBndr () GhcRn -> Bool
GenLocated SrcSpanAnnA (HsTyVarBndr () GhcRn) -> Bool
forall flag. LHsTyVarBndr flag GhcRn -> Bool
no_anon_wc_tvb [LHsTyVarBndr () GhcRn]
[GenLocated SrcSpanAnnA (HsTyVarBndr () GhcRn)]
ltvs
HsForAllInvis { hsf_invis_bndrs :: forall pass.
HsForAllTelescope pass -> [LHsTyVarBndr Specificity pass]
hsf_invis_bndrs = [LHsTyVarBndr Specificity GhcRn]
ltvs } -> (GenLocated SrcSpanAnnA (HsTyVarBndr Specificity GhcRn) -> Bool)
-> [GenLocated SrcSpanAnnA (HsTyVarBndr Specificity GhcRn)] -> Bool
forall (t :: * -> *) a. Foldable t => (a -> Bool) -> t a -> Bool
all LHsTyVarBndr Specificity GhcRn -> Bool
GenLocated SrcSpanAnnA (HsTyVarBndr Specificity GhcRn) -> Bool
forall flag. LHsTyVarBndr flag GhcRn -> Bool
no_anon_wc_tvb [LHsTyVarBndr Specificity GhcRn]
[GenLocated SrcSpanAnnA (HsTyVarBndr Specificity GhcRn)]
ltvs
no_anon_wc_tvb :: LHsTyVarBndr flag GhcRn -> Bool
no_anon_wc_tvb :: forall flag. LHsTyVarBndr flag GhcRn -> Bool
no_anon_wc_tvb (L SrcSpanAnnA
_ HsTyVarBndr flag GhcRn
tvb) = case HsTyVarBndr flag GhcRn -> HsBndrKind GhcRn
forall flag (pass :: Pass).
HsTyVarBndr flag (GhcPass pass) -> HsBndrKind (GhcPass pass)
hsBndrKind HsTyVarBndr flag GhcRn
tvb of
HsBndrNoKind XBndrNoKind GhcRn
_ -> Bool
True
HsBndrKind XBndrKind GhcRn
_ XRec GhcRn (HsType GhcRn)
ki -> XRec GhcRn (HsType GhcRn) -> Bool
no_anon_wc_ty XRec GhcRn (HsType GhcRn)
ki
tcPatSynSig :: Name -> LHsSigType GhcRn -> TcM TcPatSynSig
tcPatSynSig :: Name
-> LHsSigType GhcRn -> IOEnv (Env TcGblEnv TcLclEnv) TcPatSynSig
tcPatSynSig Name
name sig_ty :: LHsSigType GhcRn
sig_ty@(L SrcSpanAnnA
_ (HsSig{sig_bndrs :: forall pass. HsSigType pass -> HsOuterSigTyVarBndrs pass
sig_bndrs = HsOuterSigTyVarBndrs GhcRn
hs_outer_bndrs, sig_body :: forall pass. HsSigType pass -> LHsType pass
sig_body = XRec GhcRn (HsType GhcRn)
hs_ty}))
| (Maybe (LHsContext GhcRn)
hs_req, XRec GhcRn (HsType GhcRn)
hs_ty1) <- XRec GhcRn (HsType GhcRn)
-> (Maybe (LHsContext GhcRn), XRec GhcRn (HsType GhcRn))
forall (pass :: Pass).
LHsType (GhcPass pass)
-> (Maybe (LHsContext (GhcPass pass)), LHsType (GhcPass pass))
splitLHsQualTy XRec GhcRn (HsType GhcRn)
hs_ty
, ([LHsTyVarBndr Specificity GhcRn]
ex_hs_tvbndrs, Maybe (LHsContext GhcRn)
hs_prov, XRec GhcRn (HsType GhcRn)
hs_body_ty) <- XRec GhcRn (HsType GhcRn)
-> ([LHsTyVarBndr Specificity GhcRn], Maybe (LHsContext GhcRn),
XRec GhcRn (HsType GhcRn))
forall (p :: Pass).
LHsType (GhcPass p)
-> ([LHsTyVarBndr Specificity (GhcPass p)],
Maybe (LHsContext (GhcPass p)), LHsType (GhcPass p))
splitLHsSigmaTyInvis XRec GhcRn (HsType GhcRn)
hs_ty1
= do { String -> SDoc -> TcRn ()
traceTc String
"tcPatSynSig 1" (GenLocated SrcSpanAnnA (HsSigType GhcRn) -> SDoc
forall a. Outputable a => a -> SDoc
ppr LHsSigType GhcRn
GenLocated SrcSpanAnnA (HsSigType GhcRn)
sig_ty)
; skol_info <- SkolemInfoAnon -> IOEnv (Env TcGblEnv TcLclEnv) SkolemInfo
forall (m :: * -> *). MonadIO m => SkolemInfoAnon -> m SkolemInfo
mkSkolemInfo (Name -> SkolemInfoAnon
DataConSkol Name
name)
; (tclvl, wanted, (outer_bndrs, (ex_bndrs, (req, prov, body_ty))))
<- pushLevelAndSolveEqualitiesX "tcPatSynSig" $
do { res_kind <- newOpenTypeKind
; tcOuterTKBndrs skol_info hs_outer_bndrs $
tcExplicitTKBndrs skol_info ex_hs_tvbndrs $
do { req <- tcHsContext hs_req
; prov <- tcHsContext hs_prov
; body_ty <- tcCheckLHsType hs_body_ty res_kind
; return (req, prov, body_ty) } }
; let implicit_tvs :: [TcTyVar]
univ_bndrs :: [TcInvisTVBinder]
(implicit_tvs, univ_bndrs) = case outer_bndrs of
HsOuterImplicit{hso_ximplicit :: forall flag pass.
HsOuterTyVarBndrs flag pass -> XHsOuterImplicit pass
hso_ximplicit = XHsOuterImplicit GhcTc
implicit_tvs} -> ([EvVar]
XHsOuterImplicit GhcTc
implicit_tvs, [])
HsOuterExplicit{hso_xexplicit :: forall flag pass.
HsOuterTyVarBndrs flag pass -> XHsOuterExplicit pass flag
hso_xexplicit = XHsOuterExplicit GhcTc Specificity
univ_bndrs} -> ([], [VarBndr EvVar Specificity]
XHsOuterExplicit GhcTc Specificity
univ_bndrs)
; implicit_tvs <- zonkAndScopedSort implicit_tvs
; let implicit_bndrs = Specificity -> [EvVar] -> [VarBndr EvVar Specificity]
forall vis. vis -> [EvVar] -> [VarBndr EvVar vis]
mkTyVarBinders Specificity
SpecifiedSpec [EvVar]
implicit_tvs
; let ungen_patsyn_ty = [VarBndr EvVar Specificity]
-> [VarBndr EvVar Specificity]
-> [TcRhoType]
-> [VarBndr EvVar Specificity]
-> [TcRhoType]
-> TcRhoType
-> TcRhoType
build_patsyn_type [VarBndr EvVar Specificity]
implicit_bndrs [VarBndr EvVar Specificity]
univ_bndrs
[TcRhoType]
req [VarBndr EvVar Specificity]
ex_bndrs [TcRhoType]
prov TcRhoType
body_ty
; traceTc "tcPatSynSig" (ppr ungen_patsyn_ty)
; kvs <- kindGeneralizeAll skol_info ungen_patsyn_ty
; reportUnsolvedEqualities skol_info kvs tclvl wanted
; (kv_bndrs, implicit_bndrs, univ_bndrs, ex_bndrs, req, prov, body_ty) <-
initZonkEnv NoFlexi $
runZonkBndrT (zonkTyVarBindersX (mkTyVarBinders InferredSpec kvs)) $ \ [VarBndr EvVar Specificity]
kv_bndrs ->
ZonkBndrT
(IOEnv (Env TcGblEnv TcLclEnv)) [VarBndr EvVar Specificity]
-> forall r.
([VarBndr EvVar Specificity]
-> ZonkT (IOEnv (Env TcGblEnv TcLclEnv)) r)
-> ZonkT (IOEnv (Env TcGblEnv TcLclEnv)) r
forall (m :: * -> *) a.
ZonkBndrT m a -> forall r. (a -> ZonkT m r) -> ZonkT m r
runZonkBndrT ([VarBndr EvVar Specificity]
-> ZonkBndrT
(IOEnv (Env TcGblEnv TcLclEnv)) [VarBndr EvVar Specificity]
forall vis. [VarBndr EvVar vis] -> ZonkBndrTcM [VarBndr EvVar vis]
zonkTyVarBindersX [VarBndr EvVar Specificity]
implicit_bndrs) (([VarBndr EvVar Specificity]
-> ZonkT
(IOEnv (Env TcGblEnv TcLclEnv))
([VarBndr EvVar Specificity], [VarBndr EvVar Specificity],
[VarBndr EvVar Specificity], [VarBndr EvVar Specificity],
[TcRhoType], [TcRhoType], TcRhoType))
-> ZonkT
(IOEnv (Env TcGblEnv TcLclEnv))
([VarBndr EvVar Specificity], [VarBndr EvVar Specificity],
[VarBndr EvVar Specificity], [VarBndr EvVar Specificity],
[TcRhoType], [TcRhoType], TcRhoType))
-> ([VarBndr EvVar Specificity]
-> ZonkT
(IOEnv (Env TcGblEnv TcLclEnv))
([VarBndr EvVar Specificity], [VarBndr EvVar Specificity],
[VarBndr EvVar Specificity], [VarBndr EvVar Specificity],
[TcRhoType], [TcRhoType], TcRhoType))
-> ZonkT
(IOEnv (Env TcGblEnv TcLclEnv))
([VarBndr EvVar Specificity], [VarBndr EvVar Specificity],
[VarBndr EvVar Specificity], [VarBndr EvVar Specificity],
[TcRhoType], [TcRhoType], TcRhoType)
forall a b. (a -> b) -> a -> b
$ \ [VarBndr EvVar Specificity]
implicit_bndrs ->
ZonkBndrT
(IOEnv (Env TcGblEnv TcLclEnv)) [VarBndr EvVar Specificity]
-> forall r.
([VarBndr EvVar Specificity]
-> ZonkT (IOEnv (Env TcGblEnv TcLclEnv)) r)
-> ZonkT (IOEnv (Env TcGblEnv TcLclEnv)) r
forall (m :: * -> *) a.
ZonkBndrT m a -> forall r. (a -> ZonkT m r) -> ZonkT m r
runZonkBndrT ([VarBndr EvVar Specificity]
-> ZonkBndrT
(IOEnv (Env TcGblEnv TcLclEnv)) [VarBndr EvVar Specificity]
forall vis. [VarBndr EvVar vis] -> ZonkBndrTcM [VarBndr EvVar vis]
zonkTyVarBindersX [VarBndr EvVar Specificity]
univ_bndrs) (([VarBndr EvVar Specificity]
-> ZonkT
(IOEnv (Env TcGblEnv TcLclEnv))
([VarBndr EvVar Specificity], [VarBndr EvVar Specificity],
[VarBndr EvVar Specificity], [VarBndr EvVar Specificity],
[TcRhoType], [TcRhoType], TcRhoType))
-> ZonkT
(IOEnv (Env TcGblEnv TcLclEnv))
([VarBndr EvVar Specificity], [VarBndr EvVar Specificity],
[VarBndr EvVar Specificity], [VarBndr EvVar Specificity],
[TcRhoType], [TcRhoType], TcRhoType))
-> ([VarBndr EvVar Specificity]
-> ZonkT
(IOEnv (Env TcGblEnv TcLclEnv))
([VarBndr EvVar Specificity], [VarBndr EvVar Specificity],
[VarBndr EvVar Specificity], [VarBndr EvVar Specificity],
[TcRhoType], [TcRhoType], TcRhoType))
-> ZonkT
(IOEnv (Env TcGblEnv TcLclEnv))
([VarBndr EvVar Specificity], [VarBndr EvVar Specificity],
[VarBndr EvVar Specificity], [VarBndr EvVar Specificity],
[TcRhoType], [TcRhoType], TcRhoType)
forall a b. (a -> b) -> a -> b
$ \ [VarBndr EvVar Specificity]
univ_bndrs ->
do { req <- [TcRhoType] -> ZonkTcM [TcRhoType]
zonkTcTypesToTypesX [TcRhoType]
req
; runZonkBndrT (zonkTyVarBindersX ex_bndrs) $ \ [VarBndr EvVar Specificity]
ex_bndrs ->
do { prov <- [TcRhoType] -> ZonkTcM [TcRhoType]
zonkTcTypesToTypesX [TcRhoType]
prov
; body_ty <- zonkTcTypeToTypeX body_ty
; return (kv_bndrs, implicit_bndrs, univ_bndrs, ex_bndrs,
req, prov, body_ty) } }
; checkValidType ctxt $
build_patsyn_type implicit_bndrs univ_bndrs req ex_bndrs prov body_ty
; let (arg_tys, res_ty) = tcSplitFunTys body_ty
; mapM_
(\(Scaled TcRhoType
_ TcRhoType
arg_ty) -> FixedRuntimeRepProvenance -> TcRhoType -> TcRn ()
checkTypeHasFixedRuntimeRep FixedRuntimeRepProvenance
FixedRuntimeRepPatSynSigArg TcRhoType
arg_ty)
arg_tys
; checkTypeHasFixedRuntimeRep FixedRuntimeRepPatSynSigRes res_ty
; traceTc "tcTySig }" $
vcat [ text "kvs" <+> ppr_tvs (binderVars kv_bndrs)
, text "implicit_tvs" <+> ppr_tvs (binderVars implicit_bndrs)
, text "univ_tvs" <+> ppr_tvs (binderVars univ_bndrs)
, text "req" <+> ppr req
, text "ex_tvs" <+> ppr_tvs (binderVars ex_bndrs)
, text "prov" <+> ppr prov
, text "body_ty" <+> ppr body_ty ]
; return $
PatSig { patsig_name = name
, patsig_implicit_bndrs = kv_bndrs ++ implicit_bndrs
, patsig_univ_bndrs = univ_bndrs
, patsig_req = req
, patsig_ex_bndrs = ex_bndrs
, patsig_prov = prov
, patsig_body_ty = body_ty } }
where
ctxt :: UserTypeCtxt
ctxt = Name -> UserTypeCtxt
PatSynCtxt Name
name
build_patsyn_type :: [VarBndr EvVar Specificity]
-> [VarBndr EvVar Specificity]
-> [TcRhoType]
-> [VarBndr EvVar Specificity]
-> [TcRhoType]
-> TcRhoType
-> TcRhoType
build_patsyn_type [VarBndr EvVar Specificity]
implicit_bndrs [VarBndr EvVar Specificity]
univ_bndrs [TcRhoType]
req [VarBndr EvVar Specificity]
ex_bndrs [TcRhoType]
prov TcRhoType
body
= [VarBndr EvVar Specificity] -> TcRhoType -> TcRhoType
mkInvisForAllTys [VarBndr EvVar Specificity]
implicit_bndrs (TcRhoType -> TcRhoType) -> TcRhoType -> TcRhoType
forall a b. (a -> b) -> a -> b
$
[VarBndr EvVar Specificity] -> TcRhoType -> TcRhoType
mkInvisForAllTys [VarBndr EvVar Specificity]
univ_bndrs (TcRhoType -> TcRhoType) -> TcRhoType -> TcRhoType
forall a b. (a -> b) -> a -> b
$
[TcRhoType] -> TcRhoType -> TcRhoType
mk_naked_phi_ty [TcRhoType]
req (TcRhoType -> TcRhoType) -> TcRhoType -> TcRhoType
forall a b. (a -> b) -> a -> b
$
[VarBndr EvVar Specificity] -> TcRhoType -> TcRhoType
mkInvisForAllTys [VarBndr EvVar Specificity]
ex_bndrs (TcRhoType -> TcRhoType) -> TcRhoType -> TcRhoType
forall a b. (a -> b) -> a -> b
$
[TcRhoType] -> TcRhoType -> TcRhoType
mk_naked_phi_ty [TcRhoType]
prov (TcRhoType -> TcRhoType) -> TcRhoType -> TcRhoType
forall a b. (a -> b) -> a -> b
$
TcRhoType
body
mk_naked_phi_ty :: [TcPredType] -> TcType -> TcType
mk_naked_phi_ty :: [TcRhoType] -> TcRhoType -> TcRhoType
mk_naked_phi_ty [TcRhoType]
theta TcRhoType
body = (TcRhoType -> TcRhoType -> TcRhoType)
-> TcRhoType -> [TcRhoType] -> TcRhoType
forall a b. (a -> b -> b) -> b -> [a] -> b
forall (t :: * -> *) a b.
Foldable t =>
(a -> b -> b) -> b -> t a -> b
foldr (FunTyFlag -> TcRhoType -> TcRhoType -> TcRhoType
mkNakedFunTy FunTyFlag
invisArgTypeLike) TcRhoType
body [TcRhoType]
theta
ppr_tvs :: [TyVar] -> SDoc
ppr_tvs :: [EvVar] -> SDoc
ppr_tvs [EvVar]
tvs = SDoc -> SDoc
forall doc. IsLine doc => doc -> doc
braces ([SDoc] -> SDoc
forall doc. IsDoc doc => [doc] -> doc
vcat [ EvVar -> SDoc
forall a. Outputable a => a -> SDoc
ppr EvVar
tv SDoc -> SDoc -> SDoc
forall doc. IsLine doc => doc -> doc -> doc
<+> SDoc
dcolon SDoc -> SDoc -> SDoc
forall doc. IsLine doc => doc -> doc -> doc
<+> TcRhoType -> SDoc
forall a. Outputable a => a -> SDoc
ppr (EvVar -> TcRhoType
tyVarKind EvVar
tv)
| EvVar
tv <- [EvVar]
tvs])
tcInstSig :: TcIdSig -> TcM TcIdSigInst
tcInstSig :: TcIdSig -> TcM TcIdSigInst
tcInstSig hs_sig :: TcIdSig
hs_sig@(TcCompleteSig (CSig { sig_bndr :: TcCompleteSig -> EvVar
sig_bndr = EvVar
poly_id, sig_loc :: TcCompleteSig -> SrcSpan
sig_loc = SrcSpan
loc }))
= SrcSpan -> TcM TcIdSigInst -> TcM TcIdSigInst
forall a. SrcSpan -> TcRn a -> TcRn a
setSrcSpan SrcSpan
loc (TcM TcIdSigInst -> TcM TcIdSigInst)
-> TcM TcIdSigInst -> TcM TcIdSigInst
forall a b. (a -> b) -> a -> b
$
do { (tv_prs, theta, tau) <- TcRhoType
-> TcM
([(Name, VarBndr EvVar Specificity)], [TcRhoType], TcRhoType)
tcInstTypeBndrs (EvVar -> TcRhoType
idType EvVar
poly_id)
; return (TISI { sig_inst_sig = hs_sig
, sig_inst_skols = tv_prs
, sig_inst_wcs = []
, sig_inst_wcx = Nothing
, sig_inst_theta = theta
, sig_inst_tau = tau }) }
tcInstSig hs_sig :: TcIdSig
hs_sig@(TcPartialSig (PSig { psig_hs_ty :: TcPartialSig -> LHsSigWcType GhcRn
psig_hs_ty = LHsSigWcType GhcRn
hs_ty
, psig_ctxt :: TcPartialSig -> UserTypeCtxt
psig_ctxt = UserTypeCtxt
ctxt
, psig_loc :: TcPartialSig -> SrcSpan
psig_loc = SrcSpan
loc }))
= SrcSpan -> TcM TcIdSigInst -> TcM TcIdSigInst
forall a. SrcSpan -> TcRn a -> TcRn a
setSrcSpan SrcSpan
loc (TcM TcIdSigInst -> TcM TcIdSigInst)
-> TcM TcIdSigInst -> TcM TcIdSigInst
forall a b. (a -> b) -> a -> b
$
do { String -> SDoc -> TcRn ()
traceTc String
"Staring partial sig {" (TcIdSig -> SDoc
forall a. Outputable a => a -> SDoc
ppr TcIdSig
hs_sig)
; (wcs, wcx, tv_prs, theta, tau) <- UserTypeCtxt
-> LHsSigWcType GhcRn
-> TcM
([(Name, EvVar)], Maybe TcRhoType,
[(Name, VarBndr EvVar Specificity)], [TcRhoType], TcRhoType)
tcHsPartialSigType UserTypeCtxt
ctxt LHsSigWcType GhcRn
hs_ty
; let inst_sig = TISI { sig_inst_sig :: TcIdSig
sig_inst_sig = TcIdSig
hs_sig
, sig_inst_skols :: [(Name, VarBndr EvVar Specificity)]
sig_inst_skols = [(Name, VarBndr EvVar Specificity)]
tv_prs
, sig_inst_wcs :: [(Name, EvVar)]
sig_inst_wcs = [(Name, EvVar)]
wcs
, sig_inst_wcx :: Maybe TcRhoType
sig_inst_wcx = Maybe TcRhoType
wcx
, sig_inst_theta :: [TcRhoType]
sig_inst_theta = [TcRhoType]
theta
, sig_inst_tau :: TcRhoType
sig_inst_tau = TcRhoType
tau }
; traceTc "End partial sig }" (ppr inst_sig)
; return inst_sig }
type TcPragEnv = NameEnv [LSig GhcRn]
emptyPragEnv :: TcPragEnv
emptyPragEnv :: TcPragEnv
emptyPragEnv = TcPragEnv
NameEnv [GenLocated SrcSpanAnnA (Sig GhcRn)]
forall a. NameEnv a
emptyNameEnv
lookupPragEnv :: TcPragEnv -> Name -> [LSig GhcRn]
lookupPragEnv :: TcPragEnv -> Name -> [LSig GhcRn]
lookupPragEnv TcPragEnv
prag_fn Name
n = NameEnv [GenLocated SrcSpanAnnA (Sig GhcRn)]
-> Name -> Maybe [GenLocated SrcSpanAnnA (Sig GhcRn)]
forall a. NameEnv a -> Name -> Maybe a
lookupNameEnv TcPragEnv
NameEnv [GenLocated SrcSpanAnnA (Sig GhcRn)]
prag_fn Name
n Maybe [GenLocated SrcSpanAnnA (Sig GhcRn)]
-> [GenLocated SrcSpanAnnA (Sig GhcRn)]
-> [GenLocated SrcSpanAnnA (Sig GhcRn)]
forall a. Maybe a -> a -> a
`orElse` []
extendPragEnv :: TcPragEnv -> (Name, LSig GhcRn) -> TcPragEnv
extendPragEnv :: TcPragEnv -> (Name, LSig GhcRn) -> TcPragEnv
extendPragEnv TcPragEnv
prag_fn (Name
n, LSig GhcRn
sig) = (GenLocated SrcSpanAnnA (Sig GhcRn)
-> [GenLocated SrcSpanAnnA (Sig GhcRn)]
-> [GenLocated SrcSpanAnnA (Sig GhcRn)])
-> (GenLocated SrcSpanAnnA (Sig GhcRn)
-> [GenLocated SrcSpanAnnA (Sig GhcRn)])
-> NameEnv [GenLocated SrcSpanAnnA (Sig GhcRn)]
-> Name
-> GenLocated SrcSpanAnnA (Sig GhcRn)
-> NameEnv [GenLocated SrcSpanAnnA (Sig GhcRn)]
forall a b.
(a -> b -> b) -> (a -> b) -> NameEnv b -> Name -> a -> NameEnv b
extendNameEnv_Acc (:) GenLocated SrcSpanAnnA (Sig GhcRn)
-> [GenLocated SrcSpanAnnA (Sig GhcRn)]
forall a. a -> [a]
Utils.singleton TcPragEnv
NameEnv [GenLocated SrcSpanAnnA (Sig GhcRn)]
prag_fn Name
n LSig GhcRn
GenLocated SrcSpanAnnA (Sig GhcRn)
sig
mkPragEnv :: [LSig GhcRn] -> LHsBinds GhcRn -> TcPragEnv
mkPragEnv :: [LSig GhcRn] -> LHsBinds GhcRn -> TcPragEnv
mkPragEnv [LSig GhcRn]
sigs LHsBinds GhcRn
binds
= (NameEnv [GenLocated SrcSpanAnnA (Sig GhcRn)]
-> (Name, GenLocated SrcSpanAnnA (Sig GhcRn))
-> NameEnv [GenLocated SrcSpanAnnA (Sig GhcRn)])
-> NameEnv [GenLocated SrcSpanAnnA (Sig GhcRn)]
-> [(Name, GenLocated SrcSpanAnnA (Sig GhcRn))]
-> NameEnv [GenLocated SrcSpanAnnA (Sig GhcRn)]
forall b a. (b -> a -> b) -> b -> [a] -> b
forall (t :: * -> *) b a.
Foldable t =>
(b -> a -> b) -> b -> t a -> b
foldl' TcPragEnv -> (Name, LSig GhcRn) -> TcPragEnv
NameEnv [GenLocated SrcSpanAnnA (Sig GhcRn)]
-> (Name, GenLocated SrcSpanAnnA (Sig GhcRn))
-> NameEnv [GenLocated SrcSpanAnnA (Sig GhcRn)]
extendPragEnv NameEnv [GenLocated SrcSpanAnnA (Sig GhcRn)]
forall a. NameEnv a
emptyNameEnv [(Name, GenLocated SrcSpanAnnA (Sig GhcRn))]
prs
where
prs :: [(Name, GenLocated SrcSpanAnnA (Sig GhcRn))]
prs = (GenLocated SrcSpanAnnA (Sig GhcRn)
-> Maybe (Name, GenLocated SrcSpanAnnA (Sig GhcRn)))
-> [GenLocated SrcSpanAnnA (Sig GhcRn)]
-> [(Name, GenLocated SrcSpanAnnA (Sig GhcRn))]
forall a b. (a -> Maybe b) -> [a] -> [b]
mapMaybe LSig GhcRn -> Maybe (Name, LSig GhcRn)
GenLocated SrcSpanAnnA (Sig GhcRn)
-> Maybe (Name, GenLocated SrcSpanAnnA (Sig GhcRn))
get_sig [LSig GhcRn]
[GenLocated SrcSpanAnnA (Sig GhcRn)]
sigs
get_sig :: LSig GhcRn -> Maybe (Name, LSig GhcRn)
get_sig :: LSig GhcRn -> Maybe (Name, LSig GhcRn)
get_sig sig :: LSig GhcRn
sig@(L SrcSpanAnnA
_ (SpecSig XSpecSig GhcRn
_ (L SrcSpanAnnN
_ Name
nm) [LHsSigType GhcRn]
_ InlinePragma
_)) = (Name, GenLocated SrcSpanAnnA (Sig GhcRn))
-> Maybe (Name, GenLocated SrcSpanAnnA (Sig GhcRn))
forall a. a -> Maybe a
Just (Name
nm, Name
-> GenLocated SrcSpanAnnA (Sig GhcRn)
-> GenLocated SrcSpanAnnA (Sig GhcRn)
add_arity Name
nm LSig GhcRn
GenLocated SrcSpanAnnA (Sig GhcRn)
sig)
get_sig sig :: LSig GhcRn
sig@(L SrcSpanAnnA
_ (SpecSigE XSpecSigE GhcRn
nm RuleBndrs GhcRn
_ LHsExpr GhcRn
_ InlinePragma
_)) = (Name, GenLocated SrcSpanAnnA (Sig GhcRn))
-> Maybe (Name, GenLocated SrcSpanAnnA (Sig GhcRn))
forall a. a -> Maybe a
Just (XSpecSigE GhcRn
Name
nm, Name
-> GenLocated SrcSpanAnnA (Sig GhcRn)
-> GenLocated SrcSpanAnnA (Sig GhcRn)
add_arity XSpecSigE GhcRn
Name
nm LSig GhcRn
GenLocated SrcSpanAnnA (Sig GhcRn)
sig)
get_sig sig :: LSig GhcRn
sig@(L SrcSpanAnnA
_ (InlineSig XInlineSig GhcRn
_ (L SrcSpanAnnN
_ Name
nm) InlinePragma
_)) = (Name, GenLocated SrcSpanAnnA (Sig GhcRn))
-> Maybe (Name, GenLocated SrcSpanAnnA (Sig GhcRn))
forall a. a -> Maybe a
Just (Name
nm, Name
-> GenLocated SrcSpanAnnA (Sig GhcRn)
-> GenLocated SrcSpanAnnA (Sig GhcRn)
add_arity Name
nm LSig GhcRn
GenLocated SrcSpanAnnA (Sig GhcRn)
sig)
get_sig sig :: LSig GhcRn
sig@(L SrcSpanAnnA
_ (SCCFunSig XSCCFunSig GhcRn
_ (L SrcSpanAnnN
_ Name
nm) Maybe (XRec GhcRn StringLiteral)
_)) = (Name, GenLocated SrcSpanAnnA (Sig GhcRn))
-> Maybe (Name, GenLocated SrcSpanAnnA (Sig GhcRn))
forall a. a -> Maybe a
Just (Name
nm, LSig GhcRn
GenLocated SrcSpanAnnA (Sig GhcRn)
sig)
get_sig LSig GhcRn
_ = Maybe (Name, LSig GhcRn)
Maybe (Name, GenLocated SrcSpanAnnA (Sig GhcRn))
forall a. Maybe a
Nothing
add_arity :: Name -> GenLocated SrcSpanAnnA (Sig GhcRn) -> LSig GhcRn
add_arity Name
n GenLocated SrcSpanAnnA (Sig GhcRn)
sig
= case NameEnv Arity -> Name -> Maybe Arity
forall a. NameEnv a -> Name -> Maybe a
lookupNameEnv NameEnv Arity
ar_env Name
n of
Just Arity
ar -> Arity -> LSig GhcRn -> LSig GhcRn
addInlinePragArity Arity
ar LSig GhcRn
GenLocated SrcSpanAnnA (Sig GhcRn)
sig
Maybe Arity
Nothing -> LSig GhcRn
GenLocated SrcSpanAnnA (Sig GhcRn)
sig
ar_env :: NameEnv Arity
ar_env :: NameEnv Arity
ar_env = (GenLocated SrcSpanAnnA (HsBindLR GhcRn GhcRn)
-> NameEnv Arity -> NameEnv Arity)
-> NameEnv Arity
-> [GenLocated SrcSpanAnnA (HsBindLR GhcRn GhcRn)]
-> NameEnv Arity
forall a b. (a -> b -> b) -> b -> [a] -> b
forall (t :: * -> *) a b.
Foldable t =>
(a -> b -> b) -> b -> t a -> b
foldr LHsBind GhcRn -> NameEnv Arity -> NameEnv Arity
GenLocated SrcSpanAnnA (HsBindLR GhcRn GhcRn)
-> NameEnv Arity -> NameEnv Arity
lhsBindArity NameEnv Arity
forall a. NameEnv a
emptyNameEnv LHsBinds GhcRn
[GenLocated SrcSpanAnnA (HsBindLR GhcRn GhcRn)]
binds
addInlinePragArity :: Arity -> LSig GhcRn -> LSig GhcRn
addInlinePragArity :: Arity -> LSig GhcRn -> LSig GhcRn
addInlinePragArity Arity
ar (L SrcSpanAnnA
l (InlineSig XInlineSig GhcRn
x XRec GhcRn (IdP GhcRn)
nm InlinePragma
inl)) = SrcSpanAnnA -> Sig GhcRn -> GenLocated SrcSpanAnnA (Sig GhcRn)
forall l e. l -> e -> GenLocated l e
L SrcSpanAnnA
l (XInlineSig GhcRn
-> XRec GhcRn (IdP GhcRn) -> InlinePragma -> Sig GhcRn
forall pass.
XInlineSig pass -> LIdP pass -> InlinePragma -> Sig pass
InlineSig XInlineSig GhcRn
x XRec GhcRn (IdP GhcRn)
nm (Arity -> InlinePragma -> InlinePragma
add_inl_arity Arity
ar InlinePragma
inl))
addInlinePragArity Arity
ar (L SrcSpanAnnA
l (SpecSig XSpecSig GhcRn
x XRec GhcRn (IdP GhcRn)
nm [LHsSigType GhcRn]
ty InlinePragma
inl)) = SrcSpanAnnA -> Sig GhcRn -> GenLocated SrcSpanAnnA (Sig GhcRn)
forall l e. l -> e -> GenLocated l e
L SrcSpanAnnA
l (XSpecSig GhcRn
-> XRec GhcRn (IdP GhcRn)
-> [LHsSigType GhcRn]
-> InlinePragma
-> Sig GhcRn
forall pass.
XSpecSig pass
-> LIdP pass -> [LHsSigType pass] -> InlinePragma -> Sig pass
SpecSig XSpecSig GhcRn
x XRec GhcRn (IdP GhcRn)
nm [LHsSigType GhcRn]
ty (Arity -> InlinePragma -> InlinePragma
add_inl_arity Arity
ar InlinePragma
inl))
addInlinePragArity Arity
ar (L SrcSpanAnnA
l (SpecSigE XSpecSigE GhcRn
n RuleBndrs GhcRn
x LHsExpr GhcRn
e InlinePragma
inl)) = SrcSpanAnnA -> Sig GhcRn -> GenLocated SrcSpanAnnA (Sig GhcRn)
forall l e. l -> e -> GenLocated l e
L SrcSpanAnnA
l (XSpecSigE GhcRn
-> RuleBndrs GhcRn -> LHsExpr GhcRn -> InlinePragma -> Sig GhcRn
forall pass.
XSpecSigE pass
-> RuleBndrs pass -> LHsExpr pass -> InlinePragma -> Sig pass
SpecSigE XSpecSigE GhcRn
n RuleBndrs GhcRn
x LHsExpr GhcRn
e (Arity -> InlinePragma -> InlinePragma
add_inl_arity Arity
ar InlinePragma
inl))
addInlinePragArity Arity
_ LSig GhcRn
sig = LSig GhcRn
sig
add_inl_arity :: Arity -> InlinePragma -> InlinePragma
add_inl_arity :: Arity -> InlinePragma -> InlinePragma
add_inl_arity Arity
ar prag :: InlinePragma
prag@(InlinePragma { inl_inline :: InlinePragma -> InlineSpec
inl_inline = InlineSpec
inl_spec })
| Inline {} <- InlineSpec
inl_spec
= InlinePragma
prag { inl_sat = Just ar }
| Bool
otherwise
= InlinePragma
prag
lhsBindArity :: LHsBind GhcRn -> NameEnv Arity -> NameEnv Arity
lhsBindArity :: LHsBind GhcRn -> NameEnv Arity -> NameEnv Arity
lhsBindArity (L SrcSpanAnnA
_ (FunBind { fun_id :: forall idL idR. HsBindLR idL idR -> LIdP idL
fun_id = XRec GhcRn (IdP GhcRn)
id, fun_matches :: forall idL idR. HsBindLR idL idR -> MatchGroup idR (LHsExpr idR)
fun_matches = MatchGroup GhcRn (LHsExpr GhcRn)
ms })) NameEnv Arity
env
= NameEnv Arity -> Name -> Arity -> NameEnv Arity
forall a. NameEnv a -> Name -> a -> NameEnv a
extendNameEnv NameEnv Arity
env (GenLocated SrcSpanAnnN Name -> Name
forall l e. GenLocated l e -> e
unLoc XRec GhcRn (IdP GhcRn)
GenLocated SrcSpanAnnN Name
id) (MatchGroup GhcRn (GenLocated SrcSpanAnnA (HsExpr GhcRn)) -> Arity
forall (id :: Pass) body. MatchGroup (GhcPass id) body -> Arity
matchGroupArity MatchGroup GhcRn (LHsExpr GhcRn)
MatchGroup GhcRn (GenLocated SrcSpanAnnA (HsExpr GhcRn))
ms)
lhsBindArity LHsBind GhcRn
_ NameEnv Arity
env = NameEnv Arity
env
addInlinePrags :: TcId -> [LSig GhcRn] -> TcM TcId
addInlinePrags :: EvVar -> [LSig GhcRn] -> TcM EvVar
addInlinePrags EvVar
poly_id [LSig GhcRn]
prags_for_me
| inl :: GenLocated SrcSpanAnnA InlinePragma
inl@(L SrcSpanAnnA
_ InlinePragma
prag) : [GenLocated SrcSpanAnnA InlinePragma]
inls <- [GenLocated SrcSpanAnnA InlinePragma]
inl_prags
= do { String -> SDoc -> TcRn ()
traceTc String
"addInlinePrag" (EvVar -> SDoc
forall a. Outputable a => a -> SDoc
ppr EvVar
poly_id SDoc -> SDoc -> SDoc
forall doc. IsDoc doc => doc -> doc -> doc
$$ InlinePragma -> SDoc
forall a. Outputable a => a -> SDoc
ppr InlinePragma
prag)
; Bool -> TcRn () -> TcRn ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
unless ([GenLocated SrcSpanAnnA InlinePragma] -> Bool
forall a. [a] -> Bool
forall (t :: * -> *) a. Foldable t => t a -> Bool
null [GenLocated SrcSpanAnnA InlinePragma]
inls) (GenLocated SrcSpanAnnA InlinePragma
-> [GenLocated SrcSpanAnnA InlinePragma] -> TcRn ()
warn_multiple_inlines GenLocated SrcSpanAnnA InlinePragma
inl [GenLocated SrcSpanAnnA InlinePragma]
inls)
; EvVar -> TcM EvVar
forall a. a -> IOEnv (Env TcGblEnv TcLclEnv) a
forall (m :: * -> *) a. Monad m => a -> m a
return (EvVar
poly_id EvVar -> InlinePragma -> EvVar
`setInlinePragma` InlinePragma
prag) }
| Bool
otherwise
= EvVar -> TcM EvVar
forall a. a -> IOEnv (Env TcGblEnv TcLclEnv) a
forall (m :: * -> *) a. Monad m => a -> m a
return EvVar
poly_id
where
inl_prags :: [GenLocated SrcSpanAnnA InlinePragma]
inl_prags = [SrcSpanAnnA -> InlinePragma -> GenLocated SrcSpanAnnA InlinePragma
forall l e. l -> e -> GenLocated l e
L SrcSpanAnnA
loc InlinePragma
prag | L SrcSpanAnnA
loc (InlineSig XInlineSig GhcRn
_ XRec GhcRn (IdP GhcRn)
_ InlinePragma
prag) <- [LSig GhcRn]
[GenLocated SrcSpanAnnA (Sig GhcRn)]
prags_for_me]
warn_multiple_inlines :: GenLocated SrcSpanAnnA InlinePragma
-> [GenLocated SrcSpanAnnA InlinePragma] -> TcRn ()
warn_multiple_inlines GenLocated SrcSpanAnnA InlinePragma
_ [] = () -> TcRn ()
forall a. a -> IOEnv (Env TcGblEnv TcLclEnv) a
forall (m :: * -> *) a. Monad m => a -> m a
return ()
warn_multiple_inlines inl1 :: GenLocated SrcSpanAnnA InlinePragma
inl1@(L SrcSpanAnnA
loc InlinePragma
prag1) (inl2 :: GenLocated SrcSpanAnnA InlinePragma
inl2@(L SrcSpanAnnA
_ InlinePragma
prag2) : [GenLocated SrcSpanAnnA InlinePragma]
inls)
| InlinePragma -> Activation
inlinePragmaActivation InlinePragma
prag1 Activation -> Activation -> Bool
forall a. Eq a => a -> a -> Bool
== InlinePragma -> Activation
inlinePragmaActivation InlinePragma
prag2
, InlineSpec -> Bool
noUserInlineSpec (InlinePragma -> InlineSpec
inlinePragmaSpec InlinePragma
prag1)
=
GenLocated SrcSpanAnnA InlinePragma
-> [GenLocated SrcSpanAnnA InlinePragma] -> TcRn ()
warn_multiple_inlines GenLocated SrcSpanAnnA InlinePragma
inl2 [GenLocated SrcSpanAnnA InlinePragma]
inls
| Bool
otherwise
= SrcSpanAnnA -> TcRn () -> TcRn ()
forall ann a. EpAnn ann -> TcRn a -> TcRn a
setSrcSpanA SrcSpanAnnA
loc (TcRn () -> TcRn ()) -> TcRn () -> TcRn ()
forall a b. (a -> b) -> a -> b
$
let dia :: TcRnMessage
dia = EvVar
-> GenLocated SrcSpanAnnA InlinePragma
-> NonEmpty (GenLocated SrcSpanAnnA InlinePragma)
-> TcRnMessage
TcRnMultipleInlinePragmas EvVar
poly_id GenLocated SrcSpanAnnA InlinePragma
inl1 (GenLocated SrcSpanAnnA InlinePragma
inl2 GenLocated SrcSpanAnnA InlinePragma
-> [GenLocated SrcSpanAnnA InlinePragma]
-> NonEmpty (GenLocated SrcSpanAnnA InlinePragma)
forall a. a -> [a] -> NonEmpty a
NE.:| [GenLocated SrcSpanAnnA InlinePragma]
inls)
in TcRnMessage -> TcRn ()
addDiagnosticTc TcRnMessage
dia
tcSpecPrags :: Id -> [LSig GhcRn]
-> TcM [LTcSpecPrag]
tcSpecPrags :: EvVar -> [LSig GhcRn] -> TcM [LTcSpecPrag]
tcSpecPrags EvVar
poly_id [LSig GhcRn]
prag_sigs
= do { String -> SDoc -> TcRn ()
traceTc String
"tcSpecPrags" (EvVar -> SDoc
forall a. Outputable a => a -> SDoc
ppr EvVar
poly_id SDoc -> SDoc -> SDoc
forall doc. IsLine doc => doc -> doc -> doc
<+> [GenLocated SrcSpanAnnA (Sig GhcRn)] -> SDoc
forall a. Outputable a => a -> SDoc
ppr [GenLocated SrcSpanAnnA (Sig GhcRn)]
spec_sigs)
; Maybe (NonEmpty (GenLocated SrcSpanAnnA (Sig GhcRn)))
-> (NonEmpty (GenLocated SrcSpanAnnA (Sig GhcRn)) -> TcRn ())
-> TcRn ()
forall (m :: * -> *) a. Monad m => Maybe a -> (a -> m ()) -> m ()
whenIsJust ([GenLocated SrcSpanAnnA (Sig GhcRn)]
-> Maybe (NonEmpty (GenLocated SrcSpanAnnA (Sig GhcRn)))
forall a. [a] -> Maybe (NonEmpty a)
NE.nonEmpty [GenLocated SrcSpanAnnA (Sig GhcRn)]
bad_sigs) NonEmpty (GenLocated SrcSpanAnnA (Sig GhcRn)) -> TcRn ()
warn_discarded_sigs
; pss <- (GenLocated SrcSpanAnnA (Sig GhcRn)
-> TcRn (GenLocated SrcSpanAnnA [TcSpecPrag]))
-> [GenLocated SrcSpanAnnA (Sig GhcRn)]
-> TcRn [GenLocated SrcSpanAnnA [TcSpecPrag]]
forall a b. (a -> TcRn b) -> [a] -> TcRn [b]
mapAndRecoverM ((Sig GhcRn -> TcM [TcSpecPrag])
-> GenLocated SrcSpanAnnA (Sig GhcRn)
-> TcRn (GenLocated SrcSpanAnnA [TcSpecPrag])
forall a b ann.
(a -> TcM b)
-> GenLocated (EpAnn ann) a -> TcRn (GenLocated (EpAnn ann) b)
wrapLocMA (EvVar -> Sig GhcRn -> TcM [TcSpecPrag]
tcSpecPrag EvVar
poly_id)) [GenLocated SrcSpanAnnA (Sig GhcRn)]
spec_sigs
; return $ concatMap (\(L SrcSpanAnnA
l [TcSpecPrag]
ps) -> (TcSpecPrag -> LTcSpecPrag) -> [TcSpecPrag] -> [LTcSpecPrag]
forall a b. (a -> b) -> [a] -> [b]
map (SrcSpan -> TcSpecPrag -> LTcSpecPrag
forall l e. l -> e -> GenLocated l e
L (SrcSpanAnnA -> SrcSpan
forall a. HasLoc a => a -> SrcSpan
locA SrcSpanAnnA
l)) [TcSpecPrag]
ps) pss }
where
spec_sigs :: [GenLocated SrcSpanAnnA (Sig GhcRn)]
spec_sigs = (GenLocated SrcSpanAnnA (Sig GhcRn) -> Bool)
-> [GenLocated SrcSpanAnnA (Sig GhcRn)]
-> [GenLocated SrcSpanAnnA (Sig GhcRn)]
forall a. (a -> Bool) -> [a] -> [a]
filter LSig GhcRn -> Bool
GenLocated SrcSpanAnnA (Sig GhcRn) -> Bool
forall p. UnXRec p => LSig p -> Bool
isSpecLSig [LSig GhcRn]
[GenLocated SrcSpanAnnA (Sig GhcRn)]
prag_sigs
bad_sigs :: [GenLocated SrcSpanAnnA (Sig GhcRn)]
bad_sigs = (GenLocated SrcSpanAnnA (Sig GhcRn) -> Bool)
-> [GenLocated SrcSpanAnnA (Sig GhcRn)]
-> [GenLocated SrcSpanAnnA (Sig GhcRn)]
forall a. (a -> Bool) -> [a] -> [a]
filter LSig GhcRn -> Bool
GenLocated SrcSpanAnnA (Sig GhcRn) -> Bool
forall p. UnXRec p => LSig p -> Bool
is_bad_sig [LSig GhcRn]
[GenLocated SrcSpanAnnA (Sig GhcRn)]
prag_sigs
is_bad_sig :: XRec p (Sig p) -> Bool
is_bad_sig XRec p (Sig p)
s = Bool -> Bool
not (XRec p (Sig p) -> Bool
forall p. UnXRec p => LSig p -> Bool
isSpecLSig XRec p (Sig p)
s Bool -> Bool -> Bool
|| XRec p (Sig p) -> Bool
forall p. UnXRec p => LSig p -> Bool
isInlineLSig XRec p (Sig p)
s Bool -> Bool -> Bool
|| XRec p (Sig p) -> Bool
forall p. UnXRec p => LSig p -> Bool
isSCCFunSig XRec p (Sig p)
s)
warn_discarded_sigs :: NonEmpty (GenLocated SrcSpanAnnA (Sig GhcRn)) -> TcRn ()
warn_discarded_sigs NonEmpty (GenLocated SrcSpanAnnA (Sig GhcRn))
bad_sigs_ne
= let dia :: TcRnMessage
dia = EvVar -> NonEmpty (LSig GhcRn) -> TcRnMessage
TcRnUnexpectedPragmas EvVar
poly_id NonEmpty (LSig GhcRn)
NonEmpty (GenLocated SrcSpanAnnA (Sig GhcRn))
bad_sigs_ne
in TcRnMessage -> TcRn ()
addDiagnosticTc TcRnMessage
dia
tcSpecPrag :: TcId -> Sig GhcRn -> TcM [TcSpecPrag]
tcSpecPrag :: EvVar -> Sig GhcRn -> TcM [TcSpecPrag]
tcSpecPrag EvVar
poly_id prag :: Sig GhcRn
prag@(SpecSig XSpecSig GhcRn
_ XRec GhcRn (IdP GhcRn)
fun_name [LHsSigType GhcRn]
hs_tys InlinePragma
inl)
= ErrCtxtMsg -> TcM [TcSpecPrag] -> TcM [TcSpecPrag]
forall a. ErrCtxtMsg -> TcM a -> TcM a
addErrCtxt (Sig GhcRn -> ErrCtxtMsg
SpecPragmaCtxt Sig GhcRn
prag) (TcM [TcSpecPrag] -> TcM [TcSpecPrag])
-> TcM [TcSpecPrag] -> TcM [TcSpecPrag]
forall a b. (a -> b) -> a -> b
$
do { Bool -> TcRnMessage -> TcRn ()
warnIf (Bool -> Bool
not (TcRhoType -> Bool
isOverloadedTy TcRhoType
poly_ty Bool -> Bool -> Bool
|| InlinePragma -> Bool
isInlinePragma InlinePragma
inl)) (TcRnMessage -> TcRn ()) -> TcRnMessage -> TcRn ()
forall a b. (a -> b) -> a -> b
$
XRec GhcRn (IdP GhcRn) -> TcRnMessage
TcRnNonOverloadedSpecialisePragma XRec GhcRn (IdP GhcRn)
fun_name
; spec_prags <- (GenLocated SrcSpanAnnA (HsSigType GhcRn)
-> IOEnv (Env TcGblEnv TcLclEnv) TcSpecPrag)
-> [GenLocated SrcSpanAnnA (HsSigType GhcRn)] -> TcM [TcSpecPrag]
forall (t :: * -> *) (m :: * -> *) a b.
(Traversable t, Monad m) =>
(a -> m b) -> t a -> m (t b)
forall (m :: * -> *) a b. Monad m => (a -> m b) -> [a] -> m [b]
mapM GenLocated SrcSpanAnnA (HsSigType GhcRn)
-> IOEnv (Env TcGblEnv TcLclEnv) TcSpecPrag
tc_one [LHsSigType GhcRn]
[GenLocated SrcSpanAnnA (HsSigType GhcRn)]
hs_tys
; traceTc "tcSpecPrag" (ppr poly_id $$ nest 2 (vcat (map ppr spec_prags)))
; return spec_prags }
where
name :: Name
name = EvVar -> Name
idName EvVar
poly_id
poly_ty :: TcRhoType
poly_ty = EvVar -> TcRhoType
idType EvVar
poly_id
tc_one :: GenLocated SrcSpanAnnA (HsSigType GhcRn)
-> IOEnv (Env TcGblEnv TcLclEnv) TcSpecPrag
tc_one GenLocated SrcSpanAnnA (HsSigType GhcRn)
hs_ty
= do { spec_ty <- UserTypeCtxt -> LHsSigType GhcRn -> TcM TcRhoType
tcHsSigType (Name -> ReportRedundantConstraints -> UserTypeCtxt
FunSigCtxt Name
name ReportRedundantConstraints
NoRRC) LHsSigType GhcRn
GenLocated SrcSpanAnnA (HsSigType GhcRn)
hs_ty
; wrap <- tcSpecWrapper (FunSigCtxt name (lhsSigTypeContextSpan hs_ty)) poly_ty spec_ty
; return (SpecPrag poly_id wrap inl) }
tcSpecPrag EvVar
poly_id (SpecSigE XSpecSigE GhcRn
nm RuleBndrs GhcRn
rule_bndrs LHsExpr GhcRn
spec_e InlinePragma
inl)
= do {
let skol_info_anon :: SkolemInfoAnon
skol_info_anon = Name -> SkolemInfoAnon
SpecESkol XSpecSigE GhcRn
Name
nm
; String -> SDoc -> TcRn ()
traceTc String
"tcSpecPrag SpecSigE {" (Name -> SDoc
forall a. Outputable a => a -> SDoc
ppr XSpecSigE GhcRn
Name
nm SDoc -> SDoc -> SDoc
forall doc. IsDoc doc => doc -> doc -> doc
$$ GenLocated SrcSpanAnnA (HsExpr GhcRn) -> SDoc
forall a. Outputable a => a -> SDoc
ppr LHsExpr GhcRn
GenLocated SrcSpanAnnA (HsExpr GhcRn)
spec_e)
; skol_info <- SkolemInfoAnon -> IOEnv (Env TcGblEnv TcLclEnv) SkolemInfo
forall (m :: * -> *). MonadIO m => SkolemInfoAnon -> m SkolemInfo
mkSkolemInfo SkolemInfoAnon
skol_info_anon
; (rhs_tclvl, spec_e_wanted, (rule_bndrs', (tc_spec_e, _rho)))
<- tcRuleBndrs skol_info rule_bndrs $
tcInferRho spec_e
; ev_binds_var <- newTcEvBinds
; spec_e_wanted <- setTcLevel rhs_tclvl $
runTcSSpecPrag ev_binds_var $
solveWanteds spec_e_wanted
; spec_e_wanted <- liftZonkM $ zonkWC spec_e_wanted
; (quant_cands, residual_wc) <- getRuleQuantCts spec_e_wanted
; let tv_bndrs = (EvVar -> Bool) -> [EvVar] -> [EvVar]
forall a. (a -> Bool) -> [a] -> [a]
filter EvVar -> Bool
isTyVar [EvVar]
rule_bndrs'
qevs = (Ct -> EvVar) -> [Ct] -> [EvVar]
forall a b. (a -> b) -> [a] -> [b]
map HasDebugCallStack => Ct -> EvVar
Ct -> EvVar
ctEvId (Cts -> [Ct]
forall a. Bag a -> [a]
bagToList Cts
quant_cands)
; emitResidualConstraints rhs_tclvl skol_info_anon ev_binds_var
emptyVarSet tv_bndrs qevs
residual_wc
; let lhs_call = HsWrapper -> LHsExpr GhcTc -> LHsExpr GhcTc
mkLHsWrap (TcEvBinds -> HsWrapper
WpLet (EvBindsVar -> TcEvBinds
TcEvBinds EvBindsVar
ev_binds_var)) LHsExpr GhcTc
tc_spec_e
; ev_binds <- getTcEvBindsMap ev_binds_var
; traceTc "tcSpecPrag SpecSigE }" $
vcat [ text "nm:" <+> ppr nm
, text "rule_bndrs':" <+> ppr rule_bndrs'
, text "qevs:" <+> ppr qevs
, text "spec_e:" <+> ppr tc_spec_e
, text "inl:" <+> ppr inl
, text "spec_e_wanted:" <+> ppr spec_e_wanted
, text "quant_cands:" <+> ppr quant_cands
, text "residual_wc:" <+> ppr residual_wc
, text (replicate 80 '-')
, text "ev_binds_var:" <+> ppr ev_binds_var
, text "ev_binds:" <+> ppr ev_binds
]
; return [SpecPragE { spe_fn_nm = nm
, spe_fn_id = poly_id
, spe_bndrs = qevs ++ rule_bndrs'
, spe_call = lhs_call
, spe_inl = inl }] }
tcSpecPrag EvVar
_ Sig GhcRn
prag = String -> SDoc -> TcM [TcSpecPrag]
forall a. HasCallStack => String -> SDoc -> a
pprPanic String
"tcSpecPrag" (Sig GhcRn -> SDoc
forall a. Outputable a => a -> SDoc
ppr Sig GhcRn
prag)
tcSpecWrapper :: UserTypeCtxt -> TcType -> TcType -> TcM HsWrapper
tcSpecWrapper :: UserTypeCtxt -> TcRhoType -> TcRhoType -> TcM HsWrapper
tcSpecWrapper UserTypeCtxt
ctxt TcRhoType
poly_ty TcRhoType
spec_ty
= do { (sk_wrap, inst_wrap)
<- DeepSubsumptionFlag
-> UserTypeCtxt
-> TcRhoType
-> (TcRhoType -> TcM HsWrapper)
-> TcM (HsWrapper, HsWrapper)
forall result.
DeepSubsumptionFlag
-> UserTypeCtxt
-> TcRhoType
-> (TcRhoType -> TcM result)
-> TcM (HsWrapper, result)
tcSkolemise DeepSubsumptionFlag
Shallow UserTypeCtxt
ctxt TcRhoType
spec_ty ((TcRhoType -> TcM HsWrapper) -> TcM (HsWrapper, HsWrapper))
-> (TcRhoType -> TcM HsWrapper) -> TcM (HsWrapper, HsWrapper)
forall a b. (a -> b) -> a -> b
$ \TcRhoType
spec_tau ->
do { (inst_wrap, tau) <- CtOrigin -> TcRhoType -> TcM (HsWrapper, TcRhoType)
topInstantiate CtOrigin
orig TcRhoType
poly_ty
; _ <- unifyType Nothing spec_tau tau
; return inst_wrap }
; return (sk_wrap <.> inst_wrap) }
where
orig :: CtOrigin
orig = UserTypeCtxt -> CtOrigin
SpecPragOrigin UserTypeCtxt
ctxt
tcImpPrags :: [LSig GhcRn] -> TcM [LTcSpecPrag]
tcImpPrags :: [LSig GhcRn] -> TcM [LTcSpecPrag]
tcImpPrags [LSig GhcRn]
prags
= do { dflags <- IOEnv (Env TcGblEnv TcLclEnv) DynFlags
forall (m :: * -> *). HasDynFlags m => m DynFlags
getDynFlags
; traceTc "tcImpPrags1" (ppr prags)
; if (not_specialising dflags) then
return []
else do
{ this_mod <- getModule
; pss <- mapAndRecoverM (wrapLocMA (tcImpSpec this_mod)) prags
; return $ concatMap (\(L SrcSpanAnnA
l [TcSpecPrag]
ps) -> (TcSpecPrag -> LTcSpecPrag) -> [TcSpecPrag] -> [LTcSpecPrag]
forall a b. (a -> b) -> [a] -> [b]
map (SrcSpan -> TcSpecPrag -> LTcSpecPrag
forall l e. l -> e -> GenLocated l e
L (SrcSpanAnnA -> SrcSpan
forall a. HasLoc a => a -> SrcSpan
locA SrcSpanAnnA
l)) [TcSpecPrag]
ps) pss } }
where
not_specialising :: DynFlags -> Bool
not_specialising DynFlags
dflags =
Bool -> Bool
not (GeneralFlag -> DynFlags -> Bool
gopt GeneralFlag
Opt_Specialise DynFlags
dflags) Bool -> Bool -> Bool
|| Bool -> Bool
not (Backend -> Bool
backendRespectsSpecialise (DynFlags -> Backend
backend DynFlags
dflags))
tcImpSpec :: Module -> Sig GhcRn -> TcM [TcSpecPrag]
tcImpSpec :: Module -> Sig GhcRn -> TcM [TcSpecPrag]
tcImpSpec Module
this_mod Sig GhcRn
prag
| Just IdP GhcRn
name <- Sig GhcRn -> Maybe (IdP GhcRn)
forall {pass} {l}.
(XRec pass (IdP pass) ~ GenLocated l (IdP pass),
XSpecSigE pass ~ IdP pass) =>
Sig pass -> Maybe (IdP pass)
is_spec_prag Sig GhcRn
prag
, Bool -> Bool
not (Module -> Name -> Bool
nameIsLocalOrFrom Module
this_mod IdP GhcRn
Name
name)
= do { id <- Name -> TcM EvVar
tcLookupId IdP GhcRn
Name
name
; if hasSomeUnfolding (realIdUnfolding id)
then tcSpecPrag id prag
else do { let dia = Name -> TcRnMessage
TcRnSpecialiseNotVisible IdP GhcRn
Name
name
; addDiagnosticTc dia
; return [] } }
| Bool
otherwise
= [TcSpecPrag] -> TcM [TcSpecPrag]
forall a. a -> IOEnv (Env TcGblEnv TcLclEnv) a
forall (m :: * -> *) a. Monad m => a -> m a
return []
where
is_spec_prag :: Sig pass -> Maybe (IdP pass)
is_spec_prag (SpecSig XSpecSig pass
_ (L l
_ IdP pass
nm) [LHsSigType pass]
_ InlinePragma
_) = IdP pass -> Maybe (IdP pass)
forall a. a -> Maybe a
Just IdP pass
nm
is_spec_prag (SpecSigE XSpecSigE pass
nm RuleBndrs pass
_ LHsExpr pass
_ InlinePragma
_) = IdP pass -> Maybe (IdP pass)
forall a. a -> Maybe a
Just XSpecSigE pass
IdP pass
nm
is_spec_prag Sig pass
_ = Maybe (IdP pass)
forall a. Maybe a
Nothing
tcRules :: [LRuleDecls GhcRn] -> TcM [LRuleDecls GhcTc]
tcRules :: [LRuleDecls GhcRn] -> TcM [LRuleDecls GhcTc]
tcRules [LRuleDecls GhcRn]
decls = (GenLocated SrcSpanAnnA (RuleDecls GhcRn)
-> IOEnv
(Env TcGblEnv TcLclEnv) (GenLocated SrcSpanAnnA (RuleDecls GhcTc)))
-> [GenLocated SrcSpanAnnA (RuleDecls GhcRn)]
-> IOEnv
(Env TcGblEnv TcLclEnv) [GenLocated SrcSpanAnnA (RuleDecls GhcTc)]
forall (t :: * -> *) (m :: * -> *) a b.
(Traversable t, Monad m) =>
(a -> m b) -> t a -> m (t b)
forall (m :: * -> *) a b. Monad m => (a -> m b) -> [a] -> m [b]
mapM ((RuleDecls GhcRn -> TcM (RuleDecls GhcTc))
-> GenLocated SrcSpanAnnA (RuleDecls GhcRn)
-> IOEnv
(Env TcGblEnv TcLclEnv) (GenLocated SrcSpanAnnA (RuleDecls GhcTc))
forall a b ann.
(a -> TcM b)
-> GenLocated (EpAnn ann) a -> TcRn (GenLocated (EpAnn ann) b)
wrapLocMA RuleDecls GhcRn -> TcM (RuleDecls GhcTc)
tcRuleDecls) [LRuleDecls GhcRn]
[GenLocated SrcSpanAnnA (RuleDecls GhcRn)]
decls
tcRuleDecls :: RuleDecls GhcRn -> TcM (RuleDecls GhcTc)
tcRuleDecls :: RuleDecls GhcRn -> TcM (RuleDecls GhcTc)
tcRuleDecls (HsRules { rds_ext :: forall pass. RuleDecls pass -> XCRuleDecls pass
rds_ext = XCRuleDecls GhcRn
src
, rds_rules :: forall pass. RuleDecls pass -> [LRuleDecl pass]
rds_rules = [LRuleDecl GhcRn]
decls })
= do { maybe_tc_decls <- (GenLocated SrcSpanAnnA (RuleDecl GhcRn)
-> IOEnv
(Env TcGblEnv TcLclEnv)
(GenLocated SrcSpanAnnA (Maybe (RuleDecl GhcTc))))
-> [GenLocated SrcSpanAnnA (RuleDecl GhcRn)]
-> IOEnv
(Env TcGblEnv TcLclEnv)
[GenLocated SrcSpanAnnA (Maybe (RuleDecl GhcTc))]
forall (t :: * -> *) (m :: * -> *) a b.
(Traversable t, Monad m) =>
(a -> m b) -> t a -> m (t b)
forall (m :: * -> *) a b. Monad m => (a -> m b) -> [a] -> m [b]
mapM ((RuleDecl GhcRn -> TcM (Maybe (RuleDecl GhcTc)))
-> GenLocated SrcSpanAnnA (RuleDecl GhcRn)
-> IOEnv
(Env TcGblEnv TcLclEnv)
(GenLocated SrcSpanAnnA (Maybe (RuleDecl GhcTc)))
forall a b ann.
(a -> TcM b)
-> GenLocated (EpAnn ann) a -> TcRn (GenLocated (EpAnn ann) b)
wrapLocMA RuleDecl GhcRn -> TcM (Maybe (RuleDecl GhcTc))
tcRule) [LRuleDecl GhcRn]
[GenLocated SrcSpanAnnA (RuleDecl GhcRn)]
decls
; let tc_decls = [SrcSpanAnnA
-> RuleDecl GhcTc -> GenLocated SrcSpanAnnA (RuleDecl GhcTc)
forall l e. l -> e -> GenLocated l e
L SrcSpanAnnA
loc RuleDecl GhcTc
rule | (L SrcSpanAnnA
loc (Just RuleDecl GhcTc
rule)) <- [GenLocated SrcSpanAnnA (Maybe (RuleDecl GhcTc))]
maybe_tc_decls]
; return $ HsRules { rds_ext = src
, rds_rules = tc_decls } }
tcRule :: RuleDecl GhcRn -> TcM (Maybe (RuleDecl GhcTc))
tcRule :: RuleDecl GhcRn -> TcM (Maybe (RuleDecl GhcTc))
tcRule (HsRule { rd_ext :: forall pass. RuleDecl pass -> XHsRule pass
rd_ext = XHsRule GhcRn
ext
, rd_name :: forall pass. RuleDecl pass -> XRec pass FastString
rd_name = rname :: XRec GhcRn FastString
rname@(L EpAnnCO
_ FastString
name)
, rd_act :: forall pass. RuleDecl pass -> Activation
rd_act = Activation
act
, rd_bndrs :: forall pass. RuleDecl pass -> RuleBndrs pass
rd_bndrs = RuleBndrs GhcRn
bndrs
, rd_lhs :: forall pass. RuleDecl pass -> XRec pass (HsExpr pass)
rd_lhs = LHsExpr GhcRn
lhs
, rd_rhs :: forall pass. RuleDecl pass -> XRec pass (HsExpr pass)
rd_rhs = LHsExpr GhcRn
rhs })
= ErrCtxtMsg
-> TcM (Maybe (RuleDecl GhcTc)) -> TcM (Maybe (RuleDecl GhcTc))
forall a. ErrCtxtMsg -> TcM a -> TcM a
addErrCtxt (FastString -> ErrCtxtMsg
RuleCtxt FastString
name) (TcM (Maybe (RuleDecl GhcTc)) -> TcM (Maybe (RuleDecl GhcTc)))
-> TcM (Maybe (RuleDecl GhcTc)) -> TcM (Maybe (RuleDecl GhcTc))
forall a b. (a -> b) -> a -> b
$
do { String -> SDoc -> TcRn ()
traceTc String
"---- Rule ------" (SourceText -> GenLocated EpAnnCO FastString -> SDoc
forall a. SourceText -> GenLocated a FastString -> SDoc
pprFullRuleName ((HsRuleRn, SourceText) -> SourceText
forall a b. (a, b) -> b
snd (HsRuleRn, SourceText)
XHsRule GhcRn
ext) XRec GhcRn FastString
GenLocated EpAnnCO FastString
rname)
; skol_info <- SkolemInfoAnon -> IOEnv (Env TcGblEnv TcLclEnv) SkolemInfo
forall (m :: * -> *). MonadIO m => SkolemInfoAnon -> m SkolemInfo
mkSkolemInfo (FastString -> SkolemInfoAnon
RuleSkol FastString
name)
; (tc_lvl, lhs_wanted, stuff)
<- tcRuleBndrs skol_info bndrs $
do { (lhs', rule_ty) <- tcInferRho lhs
; (rhs', rhs_wanted) <- captureConstraints $
tcCheckMonoExpr rhs rule_ty
; return (lhs', rule_ty, rhs', rhs_wanted) }
; let (bndrs', (lhs', rule_ty, rhs', rhs_wanted)) = stuff
; traceTc "tcRule 1" (vcat [ pprFullRuleName (snd ext) rname
, ppr lhs_wanted
, ppr rhs_wanted ])
; (lhs_evs, residual_lhs_wanted, dont_default)
<- simplifyRule name tc_lvl lhs_wanted rhs_wanted
; let tpl_ids = [EvVar]
lhs_evs [EvVar] -> [EvVar] -> [EvVar]
forall a. [a] -> [a] -> [a]
++ (EvVar -> Bool) -> [EvVar] -> [EvVar]
forall a. (a -> Bool) -> [a] -> [a]
filter EvVar -> Bool
isId [EvVar]
bndrs'
; dvs <- candidateQTyVarsOfTypes (rule_ty : map idType tpl_ids)
; let weed_out = (DVarSet -> TyCoVarSet -> DVarSet
`dVarSetMinusVarSet` TyCoVarSet
dont_default)
weeded_dvs = (DVarSet -> DVarSet) -> CandidatesQTvs -> CandidatesQTvs
weedOutCandidates DVarSet -> DVarSet
weed_out CandidatesQTvs
dvs
; qtkvs <- quantifyTyVars skol_info DefaultNonStandardTyVars weeded_dvs
; traceTc "tcRule" (vcat [ pprFullRuleName (snd ext) rname
, text "dvs:" <+> ppr dvs
, text "weeded_dvs:" <+> ppr weeded_dvs
, text "dont_default:" <+> ppr dont_default
, text "residual_lhs_wanted:" <+> ppr residual_lhs_wanted
, text "qtkvs:" <+> ppr qtkvs
, text "rule_ty:" <+> ppr rule_ty
, text "bndrs:" <+> ppr bndrs
, text "qtkvs ++ tpl_ids:" <+> ppr (qtkvs ++ tpl_ids)
, text "tpl_id info:" <+>
vcat [ ppr id <+> dcolon <+> ppr (idType id) | id <- tpl_ids ]
])
; case allPreviouslyQuantifiableEqualities residual_lhs_wanted of {
Just NonEmpty Ct
cts | Bool -> Bool
not (WantedConstraints -> Bool
insolubleWC WantedConstraints
rhs_wanted)
-> do { TcRnMessage -> TcRn ()
addDiagnostic (TcRnMessage -> TcRn ()) -> TcRnMessage -> TcRn ()
forall a b. (a -> b) -> a -> b
$ FastString -> LHsExpr GhcRn -> NonEmpty Ct -> TcRnMessage
TcRnRuleLhsEqualities FastString
name LHsExpr GhcRn
lhs NonEmpty Ct
cts
; Maybe (RuleDecl GhcTc) -> TcM (Maybe (RuleDecl GhcTc))
forall a. a -> IOEnv (Env TcGblEnv TcLclEnv) a
forall (m :: * -> *) a. Monad m => a -> m a
return Maybe (RuleDecl GhcTc)
forall a. Maybe a
Nothing } ;
Maybe (NonEmpty Ct)
_ ->
do {
(lhs_implic, lhs_binds) <- TcLevel
-> SkolemInfoAnon
-> [EvVar]
-> [EvVar]
-> WantedConstraints
-> TcM (Bag Implication, TcEvBinds)
buildImplicationFor TcLevel
tc_lvl (SkolemInfo -> SkolemInfoAnon
getSkolemInfo SkolemInfo
skol_info) [EvVar]
qtkvs
[EvVar]
lhs_evs WantedConstraints
residual_lhs_wanted
; (rhs_implic, rhs_binds) <- buildImplicationFor tc_lvl (getSkolemInfo skol_info) qtkvs
lhs_evs rhs_wanted
; emitImplications (lhs_implic `unionBags` rhs_implic)
; return $ Just $
HsRule { rd_ext = ext
, rd_name = rname
, rd_act = act
, rd_bndrs = bndrs { rb_ext = qtkvs ++ tpl_ids }
, rd_lhs = mkHsDictLet lhs_binds lhs'
, rd_rhs = mkHsDictLet rhs_binds rhs' } } } }
tcRuleBndrs :: SkolemInfo -> RuleBndrs GhcRn
-> TcM a
-> TcM (TcLevel, WantedConstraints, ([Var], a))
tcRuleBndrs :: forall a.
SkolemInfo
-> RuleBndrs GhcRn
-> TcM a
-> TcM (TcLevel, WantedConstraints, ([EvVar], a))
tcRuleBndrs SkolemInfo
skol_info (RuleBndrs { rb_tyvs :: forall pass.
RuleBndrs pass -> Maybe [LHsTyVarBndr () (NoGhcTc pass)]
rb_tyvs = Maybe [LHsTyVarBndr () (NoGhcTc GhcRn)]
mb_tv_bndrs, rb_tmvs :: forall pass. RuleBndrs pass -> [LRuleBndr (NoGhcTc pass)]
rb_tmvs = [LRuleBndr (NoGhcTc GhcRn)]
tm_bndrs })
TcM a
thing_inside
= TcM ([EvVar], a) -> TcM (TcLevel, WantedConstraints, ([EvVar], a))
forall a. TcM a -> TcM (TcLevel, WantedConstraints, a)
pushLevelAndCaptureConstraints (TcM ([EvVar], a)
-> TcM (TcLevel, WantedConstraints, ([EvVar], a)))
-> TcM ([EvVar], a)
-> TcM (TcLevel, WantedConstraints, ([EvVar], a))
forall a b. (a -> b) -> a -> b
$
case Maybe [LHsTyVarBndr () (NoGhcTc GhcRn)]
mb_tv_bndrs of
Maybe [LHsTyVarBndr () (NoGhcTc GhcRn)]
Nothing -> [GenLocated EpAnnCO (RuleBndr GhcRn)] -> TcM a -> TcM ([EvVar], a)
go_tms [LRuleBndr (NoGhcTc GhcRn)]
[GenLocated EpAnnCO (RuleBndr GhcRn)]
tm_bndrs TcM a
thing_inside
Just [LHsTyVarBndr () (NoGhcTc GhcRn)]
tv_bndrs -> do { (bndrs1, (bndrs2, res)) <- [GenLocated SrcSpanAnnA (HsTyVarBndr () GhcRn)]
-> TcM ([EvVar], a) -> TcM ([VarBndr EvVar ()], ([EvVar], a))
go_tvs [LHsTyVarBndr () (NoGhcTc GhcRn)]
[GenLocated SrcSpanAnnA (HsTyVarBndr () GhcRn)]
tv_bndrs (TcM ([EvVar], a) -> TcM ([VarBndr EvVar ()], ([EvVar], a)))
-> TcM ([EvVar], a) -> TcM ([VarBndr EvVar ()], ([EvVar], a))
forall a b. (a -> b) -> a -> b
$
[GenLocated EpAnnCO (RuleBndr GhcRn)] -> TcM a -> TcM ([EvVar], a)
go_tms [LRuleBndr (NoGhcTc GhcRn)]
[GenLocated EpAnnCO (RuleBndr GhcRn)]
tm_bndrs (TcM a -> TcM ([EvVar], a)) -> TcM a -> TcM ([EvVar], a)
forall a b. (a -> b) -> a -> b
$
TcM a
thing_inside
; return (binderVars bndrs1 ++ bndrs2, res) }
where
go_tvs :: [GenLocated SrcSpanAnnA (HsTyVarBndr () GhcRn)]
-> TcM ([EvVar], a) -> TcM ([VarBndr EvVar ()], ([EvVar], a))
go_tvs [GenLocated SrcSpanAnnA (HsTyVarBndr () GhcRn)]
tvs TcM ([EvVar], a)
thing_inside = SkolemInfo
-> [LHsTyVarBndr () GhcRn]
-> TcM ([EvVar], a)
-> TcM ([VarBndr EvVar ()], ([EvVar], a))
forall flag a.
OutputableBndrFlag flag 'Renamed =>
SkolemInfo
-> [LHsTyVarBndr flag GhcRn]
-> TcM a
-> TcM ([VarBndr EvVar flag], a)
bindExplicitTKBndrs_Skol SkolemInfo
skol_info [LHsTyVarBndr () GhcRn]
[GenLocated SrcSpanAnnA (HsTyVarBndr () GhcRn)]
tvs TcM ([EvVar], a)
thing_inside
go_tms :: [GenLocated EpAnnCO (RuleBndr GhcRn)] -> TcM a -> TcM ([EvVar], a)
go_tms [] TcM a
thing_inside
= do { res <- TcM a
thing_inside; return ([], res) }
go_tms (L EpAnnCO
_ (RuleBndr XCRuleBndr GhcRn
_ (L SrcSpanAnnN
_ Name
name)) : [GenLocated EpAnnCO (RuleBndr GhcRn)]
rule_bndrs) TcM a
thing_inside
= do { ty <- TcM TcRhoType
newOpenFlexiTyVarTy
; let bndr_id = HasDebugCallStack => Name -> TcRhoType -> TcRhoType -> EvVar
Name -> TcRhoType -> TcRhoType -> EvVar
mkLocalId Name
name TcRhoType
ManyTy TcRhoType
ty
; (bndrs, res) <- tcExtendIdEnv [bndr_id] $
go_tms rule_bndrs thing_inside
; return (bndr_id : bndrs, res) }
go_tms (L EpAnnCO
_ (RuleBndrSig XRuleBndrSig GhcRn
_ (L SrcSpanAnnN
_ Name
name) HsPatSigType GhcRn
rn_ty) : [GenLocated EpAnnCO (RuleBndr GhcRn)]
rule_bndrs) TcM a
thing_inside
= do { (_ , tv_prs, id_ty) <- Name
-> SkolemInfo
-> HsPatSigType GhcRn
-> TcM ([(Name, EvVar)], [(Name, EvVar)], TcRhoType)
tcRuleBndrSig Name
name SkolemInfo
skol_info HsPatSigType GhcRn
rn_ty
; let bndr_id = HasDebugCallStack => Name -> TcRhoType -> TcRhoType -> EvVar
Name -> TcRhoType -> TcRhoType -> EvVar
mkLocalId Name
name TcRhoType
ManyTy TcRhoType
id_ty
; (bndrs, res) <- tcExtendNameTyVarEnv tv_prs $
tcExtendIdEnv [bndr_id] $
go_tms rule_bndrs thing_inside
; return (map snd tv_prs ++ bndr_id : bndrs, res) }
simplifyRule :: RuleName
-> TcLevel
-> WantedConstraints
-> WantedConstraints
-> TcM ( [EvVar]
, WantedConstraints
, TcTyVarSet )
simplifyRule :: FastString
-> TcLevel
-> WantedConstraints
-> WantedConstraints
-> TcM ([EvVar], WantedConstraints, TyCoVarSet)
simplifyRule FastString
name TcLevel
tc_lvl WantedConstraints
lhs_wanted WantedConstraints
rhs_wanted
= do {
; lhs_clone <- WantedConstraints -> TcM WantedConstraints
cloneWC WantedConstraints
lhs_wanted
; rhs_clone <- cloneWC rhs_wanted
; (dont_default, _)
<- setTcLevel tc_lvl $
runTcS $
do { lhs_wc <- solveWanteds lhs_clone
; _rhs_wc <- solveWanteds rhs_clone
; let dont_default = WantedConstraints -> TyCoVarSet
nonDefaultableTyVarsOfWC WantedConstraints
lhs_wc
; return dont_default }
; lhs_wanted <- liftZonkM $ zonkWC lhs_wanted
; (quant_cts, residual_lhs_wanted) <- getRuleQuantCts lhs_wanted
; let quant_evs = (Ct -> EvVar) -> [Ct] -> [EvVar]
forall a b. (a -> b) -> [a] -> [b]
map HasDebugCallStack => Ct -> EvVar
Ct -> EvVar
ctEvId (Cts -> [Ct]
forall a. Bag a -> [a]
bagToList Cts
quant_cts)
; traceTc "simplifyRule" $
vcat [ text "LHS of rule" <+> doubleQuotes (ftext name)
, text "lhs_wanted" <+> ppr lhs_wanted
, text "rhs_wanted" <+> ppr rhs_wanted
, text "quant_cts" <+> ppr quant_evs
, text "residual_lhs_wanted" <+> ppr residual_lhs_wanted
, text "dont_default" <+> ppr dont_default
]
; return (quant_evs, residual_lhs_wanted, dont_default) }
getRuleQuantCts :: WantedConstraints -> TcM (Cts, WantedConstraints)
getRuleQuantCts :: WantedConstraints -> TcM (Cts, WantedConstraints)
getRuleQuantCts WantedConstraints
wc
= (Cts, WantedConstraints) -> TcM (Cts, WantedConstraints)
forall a. a -> IOEnv (Env TcGblEnv TcLclEnv) a
forall (m :: * -> *) a. Monad m => a -> m a
return ((Cts, WantedConstraints) -> TcM (Cts, WantedConstraints))
-> (Cts, WantedConstraints) -> TcM (Cts, WantedConstraints)
forall a b. (a -> b) -> a -> b
$ TyCoVarSet -> WantedConstraints -> (Cts, WantedConstraints)
float_wc TyCoVarSet
emptyVarSet WantedConstraints
wc
where
float_wc :: TcTyCoVarSet -> WantedConstraints -> (Cts, WantedConstraints)
float_wc :: TyCoVarSet -> WantedConstraints -> (Cts, WantedConstraints)
float_wc TyCoVarSet
skol_tvs (WC { wc_simple :: WantedConstraints -> Cts
wc_simple = Cts
simples, wc_impl :: WantedConstraints -> Bag Implication
wc_impl = Bag Implication
implics, wc_errors :: WantedConstraints -> Bag DelayedError
wc_errors = Bag DelayedError
errs })
= ( Cts
simple_yes Cts -> Cts -> Cts
`andCts` Cts
implic_yes
, WantedConstraints
emptyWC { wc_simple = simple_no, wc_impl = implics_no, wc_errors = errs })
where
(Cts
simple_yes, Cts
simple_no) = (Ct -> Bool) -> Cts -> (Cts, Cts)
forall a. (a -> Bool) -> Bag a -> (Bag a, Bag a)
partitionBag (TyCoVarSet -> Ct -> Bool
rule_quant_ct TyCoVarSet
skol_tvs) Cts
simples
(Cts
implic_yes, Bag Implication
implics_no) = (Cts -> Implication -> (Cts, Implication))
-> Cts -> Bag Implication -> (Cts, Bag Implication)
forall acc x y.
(acc -> x -> (acc, y)) -> acc -> Bag x -> (acc, Bag y)
mapAccumBagL (TyCoVarSet -> Cts -> Implication -> (Cts, Implication)
float_implic TyCoVarSet
skol_tvs) Cts
forall a. Bag a
emptyBag Bag Implication
implics
float_implic :: TcTyCoVarSet -> Cts -> Implication -> (Cts, Implication)
float_implic :: TyCoVarSet -> Cts -> Implication -> (Cts, Implication)
float_implic TyCoVarSet
skol_tvs Cts
yes1 Implication
imp
= (Cts
yes1 Cts -> Cts -> Cts
`andCts` Cts
yes2, Implication
imp { ic_wanted = no })
where
(Cts
yes2, WantedConstraints
no) = TyCoVarSet -> WantedConstraints -> (Cts, WantedConstraints)
float_wc TyCoVarSet
new_skol_tvs (Implication -> WantedConstraints
ic_wanted Implication
imp)
new_skol_tvs :: TyCoVarSet
new_skol_tvs = TyCoVarSet
skol_tvs TyCoVarSet -> [EvVar] -> TyCoVarSet
`extendVarSetList` Implication -> [EvVar]
ic_skols Implication
imp
rule_quant_ct :: TcTyCoVarSet -> Ct -> Bool
rule_quant_ct :: TyCoVarSet -> Ct -> Bool
rule_quant_ct TyCoVarSet
skol_tvs Ct
ct
| Ct -> Bool
insolubleWantedCt Ct
ct
= Bool
False
| Bool
otherwise
= case TcRhoType -> Pred
classifyPredType (Ct -> TcRhoType
ctPred Ct
ct) of
EqPred {} -> Bool
False
Pred
_ -> Ct -> TyCoVarSet
tyCoVarsOfCt Ct
ct TyCoVarSet -> TyCoVarSet -> Bool
`disjointVarSet` TyCoVarSet
skol_tvs
allPreviouslyQuantifiableEqualities :: WantedConstraints -> Maybe (NE.NonEmpty Ct)
allPreviouslyQuantifiableEqualities :: WantedConstraints -> Maybe (NonEmpty Ct)
allPreviouslyQuantifiableEqualities WantedConstraints
wc = TyCoVarSet -> WantedConstraints -> Maybe (NonEmpty Ct)
go TyCoVarSet
emptyVarSet WantedConstraints
wc
where
go :: TyVarSet -> WantedConstraints -> Maybe (NE.NonEmpty Ct)
go :: TyCoVarSet -> WantedConstraints -> Maybe (NonEmpty Ct)
go TyCoVarSet
skol_tvs (WC { wc_simple :: WantedConstraints -> Cts
wc_simple = Cts
simples, wc_impl :: WantedConstraints -> Bag Implication
wc_impl = Bag Implication
implics })
= do { cts1 <- (Ct -> Maybe Ct) -> Cts -> Maybe Cts
forall (t :: * -> *) (m :: * -> *) a b.
(Traversable t, Monad m) =>
(a -> m b) -> t a -> m (t b)
forall (m :: * -> *) a b.
Monad m =>
(a -> m b) -> Bag a -> m (Bag b)
mapM (TyCoVarSet -> Ct -> Maybe Ct
go_simple TyCoVarSet
skol_tvs) Cts
simples
; cts2 <- concatMapM (go_implic skol_tvs) implics
; NE.nonEmpty $ toList cts1 ++ toList cts2 }
go_simple :: TyVarSet -> Ct -> Maybe Ct
go_simple :: TyCoVarSet -> Ct -> Maybe Ct
go_simple TyCoVarSet
skol_tvs Ct
ct
| Bool -> Bool
not (Ct -> TyCoVarSet
tyCoVarsOfCt Ct
ct TyCoVarSet -> TyCoVarSet -> Bool
`disjointVarSet` TyCoVarSet
skol_tvs)
= Maybe Ct
forall a. Maybe a
Nothing
| EqPred EqRel
_ TcRhoType
t1 TcRhoType
t2 <- TcRhoType -> Pred
classifyPredType (Ct -> TcRhoType
ctPred Ct
ct), TcRhoType -> TcRhoType -> Bool
ok_eq TcRhoType
t1 TcRhoType
t2
= Ct -> Maybe Ct
forall a. a -> Maybe a
Just Ct
ct
| Bool
otherwise
= Maybe Ct
forall a. Maybe a
Nothing
go_implic :: TyVarSet -> Implication -> Maybe [Ct]
go_implic :: TyCoVarSet -> Implication -> Maybe [Ct]
go_implic TyCoVarSet
skol_tvs (Implic { ic_skols :: Implication -> [EvVar]
ic_skols = [EvVar]
skols, ic_wanted :: Implication -> WantedConstraints
ic_wanted = WantedConstraints
wc })
= (NonEmpty Ct -> [Ct]) -> Maybe (NonEmpty Ct) -> Maybe [Ct]
forall a b. (a -> b) -> Maybe a -> Maybe b
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap NonEmpty Ct -> [Ct]
forall a. NonEmpty a -> [a]
forall (t :: * -> *) a. Foldable t => t a -> [a]
toList (Maybe (NonEmpty Ct) -> Maybe [Ct])
-> Maybe (NonEmpty Ct) -> Maybe [Ct]
forall a b. (a -> b) -> a -> b
$ TyCoVarSet -> WantedConstraints -> Maybe (NonEmpty Ct)
go (TyCoVarSet
skol_tvs TyCoVarSet -> [EvVar] -> TyCoVarSet
`extendVarSetList` [EvVar]
skols) WantedConstraints
wc
ok_eq :: TcRhoType -> TcRhoType -> Bool
ok_eq TcRhoType
t1 TcRhoType
t2
| TcRhoType
t1 HasDebugCallStack => TcRhoType -> TcRhoType -> Bool
TcRhoType -> TcRhoType -> Bool
`tcEqType` TcRhoType
t2 = Bool
False
| Bool
otherwise = TcRhoType -> Bool
is_fun_app TcRhoType
t1 Bool -> Bool -> Bool
|| TcRhoType -> Bool
is_fun_app TcRhoType
t2
is_fun_app :: TcRhoType -> Bool
is_fun_app TcRhoType
ty
= case TcRhoType -> Maybe TyCon
tyConAppTyCon_maybe TcRhoType
ty of
Just TyCon
tc -> TyCon -> Bool
isTypeFamilyTyCon TyCon
tc
Maybe TyCon
Nothing -> Bool
False