Safe Haskell | None |
---|---|
Language | Haskell2010 |
Synopsis
- module GHC.Iface.Type
- data IfaceDecl
- = IfaceId { }
- | IfaceData { }
- | IfaceSynonym {
- ifName :: IfaceTopBndr
- ifRoles :: [Role]
- ifBinders :: [IfaceTyConBinder]
- ifResKind :: IfaceKind
- ifSynRhs :: IfaceType
- | IfaceFamily { }
- | IfaceClass {
- ifName :: IfaceTopBndr
- ifRoles :: [Role]
- ifBinders :: [IfaceTyConBinder]
- ifFDs :: [FunDep IfLclName]
- ifBody :: IfaceClassBody
- | IfaceAxiom {
- ifName :: IfaceTopBndr
- ifTyCon :: IfaceTyCon
- ifRole :: Role
- ifAxBranches :: [IfaceAxBranch]
- | IfacePatSyn {
- ifName :: IfaceTopBndr
- ifPatIsInfix :: Bool
- ifPatMatcher :: (IfExtName, Bool)
- ifPatBuilder :: Maybe (IfExtName, Bool)
- ifPatUnivBndrs :: [IfaceForAllSpecBndr]
- ifPatExBndrs :: [IfaceForAllSpecBndr]
- ifPatProvCtxt :: IfaceContext
- ifPatReqCtxt :: IfaceContext
- ifPatArgs :: [IfaceType]
- ifPatTy :: IfaceType
- ifFieldLabels :: [FieldLabel]
- data IfaceFamTyConFlav
- data IfaceClassOp = IfaceClassOp IfaceTopBndr IfaceType (Maybe (DefMethSpec IfaceType))
- data IfaceAT = IfaceAT IfaceDecl (Maybe IfaceType)
- data IfaceConDecl = IfCon {
- ifConName :: IfaceTopBndr
- ifConWrapper :: Bool
- ifConInfix :: Bool
- ifConExTCvs :: [IfaceBndr]
- ifConUserTvBinders :: [IfaceForAllSpecBndr]
- ifConEqSpec :: IfaceEqSpec
- ifConCtxt :: IfaceContext
- ifConArgTys :: [(IfaceMult, IfaceType)]
- ifConFields :: [FieldLabel]
- ifConStricts :: [IfaceBang]
- ifConSrcStricts :: [IfaceSrcBang]
- data IfaceConDecls
- type IfaceEqSpec = [(IfLclName, IfaceType)]
- data IfaceExpr
- = IfaceLcl IfLclName
- | IfaceExt IfExtName
- | IfaceType IfaceType
- | IfaceCo IfaceCoercion
- | IfaceTuple TupleSort [IfaceExpr]
- | IfaceLam IfaceLamBndr IfaceExpr
- | IfaceApp IfaceExpr IfaceExpr
- | IfaceCase IfaceExpr IfLclName [IfaceAlt]
- | IfaceECase IfaceExpr IfaceType
- | IfaceLet IfaceBinding IfaceExpr
- | IfaceCast IfaceExpr IfaceCoercion
- | IfaceLit Literal
- | IfaceFCall ForeignCall IfaceType
- | IfaceTick IfaceTickish IfaceExpr
- type IfaceAlt = (IfaceConAlt, [IfLclName], IfaceExpr)
- data IfaceLetBndr = IfLetBndr IfLclName IfaceType IfaceIdInfo IfaceJoinInfo
- data IfaceJoinInfo
- data IfaceBinding
- data IfaceConAlt
- type IfaceIdInfo = [IfaceInfoItem]
- data IfaceIdDetails
- data IfaceUnfolding
- data IfaceInfoItem
- data IfaceRule = IfaceRule {}
- data IfaceAnnotation = IfaceAnnotation {}
- type IfaceAnnTarget = AnnTarget OccName
- data IfaceClsInst = IfaceClsInst {}
- data IfaceFamInst = IfaceFamInst {}
- data IfaceTickish
- data IfaceClassBody
- = IfAbstractClass
- | IfConcreteClass {
- ifClassCtxt :: IfaceContext
- ifATs :: [IfaceAT]
- ifSigs :: [IfaceClassOp]
- ifMinDef :: BooleanFormula IfLclName
- data IfaceBang
- data IfaceSrcBang = IfSrcBang SrcUnpackedness SrcStrictness
- data SrcUnpackedness
- data SrcStrictness
- data IfaceAxBranch = IfaceAxBranch {
- ifaxbTyVars :: [IfaceTvBndr]
- ifaxbEtaTyVars :: [IfaceTvBndr]
- ifaxbCoVars :: [IfaceIdBndr]
- ifaxbLHS :: IfaceAppArgs
- ifaxbRoles :: [Role]
- ifaxbRHS :: IfaceType
- ifaxbIncomps :: [BranchIndex]
- data IfaceTyConParent
- data IfaceCompleteMatch = IfaceCompleteMatch [IfExtName] IfExtName
- data IfaceLFInfo
- = IfLFReEntrant !RepArity
- | IfLFThunk !Bool !Bool
- | IfLFCon !Name
- | IfLFUnknown !Bool
- | IfLFUnlifted
- type IfaceTopBndr = Name
- putIfaceTopBndr :: BinHandle -> IfaceTopBndr -> IO ()
- getIfaceTopBndr :: BinHandle -> IO IfaceTopBndr
- ifaceDeclImplicitBndrs :: IfaceDecl -> [OccName]
- visibleIfConDecls :: IfaceConDecls -> [IfaceConDecl]
- ifaceDeclFingerprints :: Fingerprint -> IfaceDecl -> [(OccName, Fingerprint)]
- freeNamesIfDecl :: IfaceDecl -> NameSet
- freeNamesIfRule :: IfaceRule -> NameSet
- freeNamesIfFamInst :: IfaceFamInst -> NameSet
- pprIfaceExpr :: (SDoc -> SDoc) -> IfaceExpr -> SDoc
- pprIfaceDecl :: ShowSub -> IfaceDecl -> SDoc
- newtype AltPpr = AltPpr (Maybe (OccName -> SDoc))
- data ShowSub = ShowSub {}
- data ShowHowMuch
- showToIface :: ShowSub
- showToHeader :: ShowSub
Documentation
module GHC.Iface.Type
Instances
data IfaceFamTyConFlav Source #
IfaceDataFamilyTyCon | |
IfaceOpenSynFamilyTyCon | |
IfaceClosedSynFamilyTyCon (Maybe (IfExtName, [IfaceAxBranch])) | Name of associated axiom and branches for pretty printing purposes,
or |
IfaceAbstractClosedSynFamilyTyCon | |
IfaceBuiltInSynFamTyCon |
Instances
NFData IfaceFamTyConFlav # | |
Defined in GHC.Iface.Syntax rnf :: IfaceFamTyConFlav -> () Source # | |
Binary IfaceFamTyConFlav # | |
Defined in GHC.Iface.Syntax put_ :: BinHandle -> IfaceFamTyConFlav -> IO () Source # put :: BinHandle -> IfaceFamTyConFlav -> IO (Bin IfaceFamTyConFlav) Source # |
data IfaceClassOp Source #
Instances
NFData IfaceClassOp # | |
Defined in GHC.Iface.Syntax rnf :: IfaceClassOp -> () Source # | |
Outputable IfaceClassOp # | |
Defined in GHC.Iface.Syntax | |
Binary IfaceClassOp # | |
Defined in GHC.Iface.Syntax put_ :: BinHandle -> IfaceClassOp -> IO () Source # put :: BinHandle -> IfaceClassOp -> IO (Bin IfaceClassOp) Source # | |
HasOccName IfaceClassOp # | |
Defined in GHC.Iface.Syntax occName :: IfaceClassOp -> OccName Source # | |
NamedThing IfaceClassOp # | |
Defined in GHC.Iface.Syntax getOccName :: IfaceClassOp -> OccName Source # getName :: IfaceClassOp -> Name Source # |
Instances
NFData IfaceAT # | |
Defined in GHC.Iface.Syntax | |
Outputable IfaceAT # | |
Binary IfaceAT # | |
data IfaceConDecl Source #
IfCon | |
|
Instances
NFData IfaceConDecl # | |
Defined in GHC.Iface.Syntax rnf :: IfaceConDecl -> () Source # | |
Binary IfaceConDecl # | |
Defined in GHC.Iface.Syntax put_ :: BinHandle -> IfaceConDecl -> IO () Source # put :: BinHandle -> IfaceConDecl -> IO (Bin IfaceConDecl) Source # | |
HasOccName IfaceConDecl # | |
Defined in GHC.Iface.Syntax occName :: IfaceConDecl -> OccName Source # | |
NamedThing IfaceConDecl # | |
Defined in GHC.Iface.Syntax getOccName :: IfaceConDecl -> OccName Source # getName :: IfaceConDecl -> Name Source # |
data IfaceConDecls Source #
Instances
NFData IfaceConDecls # | |
Defined in GHC.Iface.Syntax rnf :: IfaceConDecls -> () Source # | |
Binary IfaceConDecls # | |
Defined in GHC.Iface.Syntax put_ :: BinHandle -> IfaceConDecls -> IO () Source # put :: BinHandle -> IfaceConDecls -> IO (Bin IfaceConDecls) Source # |
type IfaceEqSpec = [(IfLclName, IfaceType)] Source #
Instances
NFData IfaceExpr # | |
Defined in GHC.Iface.Syntax | |
Outputable IfaceExpr # | |
Binary IfaceExpr # | |
data IfaceLetBndr Source #
Instances
NFData IfaceLetBndr # | |
Defined in GHC.Iface.Syntax rnf :: IfaceLetBndr -> () Source # | |
Binary IfaceLetBndr # | |
Defined in GHC.Iface.Syntax put_ :: BinHandle -> IfaceLetBndr -> IO () Source # put :: BinHandle -> IfaceLetBndr -> IO (Bin IfaceLetBndr) Source # |
data IfaceJoinInfo Source #
Instances
NFData IfaceJoinInfo # | |
Defined in GHC.Iface.Syntax rnf :: IfaceJoinInfo -> () Source # | |
Outputable IfaceJoinInfo # | |
Defined in GHC.Iface.Syntax | |
Binary IfaceJoinInfo # | |
Defined in GHC.Iface.Syntax put_ :: BinHandle -> IfaceJoinInfo -> IO () Source # put :: BinHandle -> IfaceJoinInfo -> IO (Bin IfaceJoinInfo) Source # |
data IfaceBinding Source #
Instances
NFData IfaceBinding # | |
Defined in GHC.Iface.Syntax rnf :: IfaceBinding -> () Source # | |
Binary IfaceBinding # | |
Defined in GHC.Iface.Syntax put_ :: BinHandle -> IfaceBinding -> IO () Source # put :: BinHandle -> IfaceBinding -> IO (Bin IfaceBinding) Source # |
data IfaceConAlt Source #
Instances
NFData IfaceConAlt # | |
Defined in GHC.Iface.Syntax rnf :: IfaceConAlt -> () Source # | |
Outputable IfaceConAlt # | |
Defined in GHC.Iface.Syntax | |
Binary IfaceConAlt # | |
Defined in GHC.Iface.Syntax put_ :: BinHandle -> IfaceConAlt -> IO () Source # put :: BinHandle -> IfaceConAlt -> IO (Bin IfaceConAlt) Source # |
type IfaceIdInfo = [IfaceInfoItem] Source #
data IfaceIdDetails Source #
Instances
NFData IfaceIdDetails # | |
Defined in GHC.Iface.Syntax rnf :: IfaceIdDetails -> () Source # | |
Outputable IfaceIdDetails # | |
Defined in GHC.Iface.Syntax | |
Binary IfaceIdDetails # | |
Defined in GHC.Iface.Syntax put_ :: BinHandle -> IfaceIdDetails -> IO () Source # put :: BinHandle -> IfaceIdDetails -> IO (Bin IfaceIdDetails) Source # |
data IfaceUnfolding Source #
IfCoreUnfold Bool IfaceExpr | |
IfCompulsory IfaceExpr | |
IfInlineRule Arity Bool Bool IfaceExpr | |
IfDFunUnfold [IfaceBndr] [IfaceExpr] |
Instances
NFData IfaceUnfolding # | |
Defined in GHC.Iface.Syntax rnf :: IfaceUnfolding -> () Source # | |
Outputable IfaceUnfolding # | |
Defined in GHC.Iface.Syntax | |
Binary IfaceUnfolding # | |
Defined in GHC.Iface.Syntax put_ :: BinHandle -> IfaceUnfolding -> IO () Source # put :: BinHandle -> IfaceUnfolding -> IO (Bin IfaceUnfolding) Source # |
data IfaceInfoItem Source #
HsArity Arity | |
HsStrictness StrictSig | |
HsCpr CprSig | |
HsInline InlinePragma | |
HsUnfold Bool IfaceUnfolding | |
HsNoCafRefs | |
HsLevity | |
HsLFInfo IfaceLFInfo |
Instances
NFData IfaceInfoItem # | |
Defined in GHC.Iface.Syntax rnf :: IfaceInfoItem -> () Source # | |
Outputable IfaceInfoItem # | |
Defined in GHC.Iface.Syntax | |
Binary IfaceInfoItem # | |
Defined in GHC.Iface.Syntax put_ :: BinHandle -> IfaceInfoItem -> IO () Source # put :: BinHandle -> IfaceInfoItem -> IO (Bin IfaceInfoItem) Source # |
IfaceRule | |
|
Instances
NFData IfaceRule # | |
Defined in GHC.Iface.Syntax | |
Outputable IfaceRule # | |
Binary IfaceRule # | |
data IfaceAnnotation Source #
Instances
NFData IfaceAnnotation # | |
Defined in GHC.Iface.Syntax rnf :: IfaceAnnotation -> () Source # | |
Outputable IfaceAnnotation # | |
Defined in GHC.Iface.Syntax | |
Binary IfaceAnnotation # | |
Defined in GHC.Iface.Syntax put_ :: BinHandle -> IfaceAnnotation -> IO () Source # put :: BinHandle -> IfaceAnnotation -> IO (Bin IfaceAnnotation) Source # |
type IfaceAnnTarget = AnnTarget OccName Source #
data IfaceClsInst Source #
IfaceClsInst | |
|
Instances
NFData IfaceClsInst # | |
Defined in GHC.Iface.Syntax rnf :: IfaceClsInst -> () Source # | |
Outputable IfaceClsInst # | |
Defined in GHC.Iface.Syntax | |
Binary IfaceClsInst # | |
Defined in GHC.Iface.Syntax put_ :: BinHandle -> IfaceClsInst -> IO () Source # put :: BinHandle -> IfaceClsInst -> IO (Bin IfaceClsInst) Source # |
data IfaceFamInst Source #
Instances
NFData IfaceFamInst # | |
Defined in GHC.Iface.Syntax rnf :: IfaceFamInst -> () Source # | |
Outputable IfaceFamInst # | |
Defined in GHC.Iface.Syntax | |
Binary IfaceFamInst # | |
Defined in GHC.Iface.Syntax put_ :: BinHandle -> IfaceFamInst -> IO () Source # put :: BinHandle -> IfaceFamInst -> IO (Bin IfaceFamInst) Source # |
data IfaceTickish Source #
Instances
NFData IfaceTickish # | |
Defined in GHC.Iface.Syntax rnf :: IfaceTickish -> () Source # | |
Binary IfaceTickish # | |
Defined in GHC.Iface.Syntax put_ :: BinHandle -> IfaceTickish -> IO () Source # put :: BinHandle -> IfaceTickish -> IO (Bin IfaceTickish) Source # |
data IfaceClassBody Source #
IfAbstractClass | |
IfConcreteClass | |
|
Instances
NFData IfaceClassBody # | |
Defined in GHC.Iface.Syntax rnf :: IfaceClassBody -> () Source # |
This corresponds to an HsImplBang; that is, the final implementation decision about the data constructor arg
data IfaceSrcBang Source #
This corresponds to HsSrcBang
Instances
NFData IfaceSrcBang # | |
Defined in GHC.Iface.Syntax rnf :: IfaceSrcBang -> () Source # | |
Binary IfaceSrcBang # | |
Defined in GHC.Iface.Syntax put_ :: BinHandle -> IfaceSrcBang -> IO () Source # put :: BinHandle -> IfaceSrcBang -> IO (Bin IfaceSrcBang) Source # |
data SrcUnpackedness Source #
Source Unpackedness
What unpackedness the user requested
SrcUnpack | {-# UNPACK #-} specified |
SrcNoUnpack | {-# NOUNPACK #-} specified |
NoSrcUnpack | no unpack pragma |
Instances
data SrcStrictness Source #
Source Strictness
What strictness annotation the user wrote
SrcLazy | Lazy, ie |
SrcStrict | Strict, ie |
NoSrcStrict | no strictness annotation |
Instances
data IfaceAxBranch Source #
IfaceAxBranch | |
|
Instances
NFData IfaceAxBranch # | |
Defined in GHC.Iface.Syntax rnf :: IfaceAxBranch -> () Source # | |
Binary IfaceAxBranch # | |
Defined in GHC.Iface.Syntax put_ :: BinHandle -> IfaceAxBranch -> IO () Source # put :: BinHandle -> IfaceAxBranch -> IO (Bin IfaceAxBranch) Source # |
data IfaceTyConParent Source #
Instances
NFData IfaceTyConParent # | |
Defined in GHC.Iface.Syntax rnf :: IfaceTyConParent -> () Source # | |
Outputable IfaceTyConParent # | |
Defined in GHC.Iface.Syntax | |
Binary IfaceTyConParent # | |
Defined in GHC.Iface.Syntax put_ :: BinHandle -> IfaceTyConParent -> IO () Source # put :: BinHandle -> IfaceTyConParent -> IO (Bin IfaceTyConParent) Source # |
data IfaceCompleteMatch Source #
Instances
NFData IfaceCompleteMatch # | |
Defined in GHC.Iface.Syntax rnf :: IfaceCompleteMatch -> () Source # | |
Outputable IfaceCompleteMatch # | |
Defined in GHC.Iface.Syntax | |
Binary IfaceCompleteMatch # | |
Defined in GHC.Iface.Syntax put_ :: BinHandle -> IfaceCompleteMatch -> IO () Source # put :: BinHandle -> IfaceCompleteMatch -> IO (Bin IfaceCompleteMatch) Source # |
data IfaceLFInfo Source #
Iface type for LambdaFormInfo. Fields not relevant for imported Ids are omitted in this type.
Instances
Outputable IfaceLFInfo # | |
Defined in GHC.Iface.Syntax | |
Binary IfaceLFInfo # | |
Defined in GHC.Iface.Syntax put_ :: BinHandle -> IfaceLFInfo -> IO () Source # put :: BinHandle -> IfaceLFInfo -> IO (Bin IfaceLFInfo) Source # |
Binding names
type IfaceTopBndr = Name Source #
putIfaceTopBndr :: BinHandle -> IfaceTopBndr -> IO () Source #
ifaceDeclImplicitBndrs :: IfaceDecl -> [OccName] Source #
ifaceDeclFingerprints :: Fingerprint -> IfaceDecl -> [(OccName, Fingerprint)] Source #
freeNamesIfDecl :: IfaceDecl -> NameSet Source #
freeNamesIfRule :: IfaceRule -> NameSet Source #
pprIfaceExpr :: (SDoc -> SDoc) -> IfaceExpr -> SDoc Source #
Pretty Print an IfaceExpr
The first argument should be a function that adds parens in context that need an atomic value (e.g. function args)
data ShowHowMuch Source #
ShowHeader AltPpr | Header information only, not rhs |
ShowSome [OccName] AltPpr | Show only some sub-components. Specifically,
|
ShowIface | Everything including GHC-internal information (used in --show-iface) |
Instances
Outputable ShowHowMuch # | |
Defined in GHC.Iface.Syntax |