|
clang 24.0.0git
|
Namespaces | |
| namespace | acc |
| namespace | detail |
| namespace | direct |
| namespace | omp |
Classes | |
| class | ABIArgInfo |
| class | CIRABIRewriteContext |
| CIR-specific implementation of mlir::abi::ABIRewriteContext. More... | |
| class | CIRBaseBuilderTy |
| class | CIRBasicAliasAnalysis |
| Basic CIR alias analysis based on pointer provenance and distinct allocation sites. More... | |
| class | CIRCXXABI |
| class | CIRDataLayout |
| class | CIRDiagnosticHandler |
| Routes MLIR-side diagnostics emitted during CIR passes, the verifier, and CIR-to-LLVM lowering through the surrounding clang::DiagnosticsEngine. More... | |
| class | CIRGenAction |
| class | CIRGenConsumer |
| class | CIRGenerator |
| class | EmitAssemblyAction |
| class | EmitBCAction |
| class | EmitCIRAction |
| class | EmitLLVMAction |
| class | EmitObjAction |
| class | FenvOpTrait |
| struct | FloatingPointEnvironmentResource |
| The process floating-point environment, including its rounding mode and exception state. More... | |
| class | LowerModule |
| struct | MissingFeatures |
| class | RecordType |
| C++ view class that accepts both !cir.struct and !cir.union types. More... | |
| class | TargetLoweringInfo |
Enumerations | |
| enum class | OverflowBehavior { None = 0 , NoSignedWrap = 1 << 0 , NoUnsignedWrap = 1 << 1 , Saturated = 1 << 2 } |
| enum class | CallConvTarget { None , Test , X86_64 } |
| The ABI target whose calling-convention rules drive CallConvLowering. More... | |
| enum | TypeEvaluationKind { TEK_Scalar , TEK_Complex , TEK_Aggregate } |
Functions | |
| void | setMLIRDataLayout (mlir::ModuleOp mod, const llvm::DataLayout &dl) |
Translate dl into a DLTI data-layout spec and attach it to mod. | |
| mlir::LogicalResult | runCIRToCIRPasses (mlir::ModuleOp theModule, mlir::MLIRContext &mlirCtx, clang::ASTContext &astCtx, bool enableVerifier, bool enableIdiomRecognizer, bool enableCIRSimplify, bool enableLibOpt, llvm::StringRef libOptOptions, bool enableCallConvLowering) |
| void | registerCIRAliasAnalyses (mlir::AliasAnalysis &aa) |
| Register all CIR alias analysis implementations with aa. | |
| constexpr OverflowBehavior | operator| (OverflowBehavior a, OverflowBehavior b) |
| constexpr OverflowBehavior | operator& (OverflowBehavior a, OverflowBehavior b) |
| constexpr OverflowBehavior & | operator|= (OverflowBehavior &a, OverflowBehavior b) |
| constexpr OverflowBehavior & | operator&= (OverflowBehavior &a, OverflowBehavior b) |
| constexpr bool | testFlag (OverflowBehavior ob, OverflowBehavior flag) |
| void | buildTerminatedBody (mlir::OpBuilder &builder, mlir::Location loc) |
| RecordLayoutAttr | getRecordLayout (mlir::ModuleOp mod, mlir::StringAttr name) |
| Look up the RecordLayoutAttr for a named record in the module's cir.record_layouts dictionary. | |
| RecordLayoutAttr | tryGetRecordLayout (mlir::ModuleOp mod, mlir::StringAttr name) |
| Same lookup as getRecordLayout, but returns a null attribute instead of asserting when the record has no layout entry. | |
| static bool | isExternalLinkage (GlobalLinkageKind linkage) |
| static bool | isAvailableExternallyLinkage (GlobalLinkageKind linkage) |
| static bool | isLinkOnceAnyLinkage (GlobalLinkageKind linkage) |
| static bool | isLinkOnceODRLinkage (GlobalLinkageKind linkage) |
| static bool | isLinkOnceLinkage (GlobalLinkageKind linkage) |
| static bool | isWeakAnyLinkage (GlobalLinkageKind linkage) |
| static bool | isWeakODRLinkage (GlobalLinkageKind linkage) |
| static bool | isWeakLinkage (GlobalLinkageKind linkage) |
| static bool | isInternalLinkage (GlobalLinkageKind linkage) |
| static bool | isPrivateLinkage (GlobalLinkageKind linkage) |
| static bool | isLocalLinkage (GlobalLinkageKind linkage) |
| static bool | isExternalWeakLinkage (GlobalLinkageKind linkage) |
| static bool | isCommonLinkage (GlobalLinkageKind linkage) |
| static bool | isAppendingLinkage (GlobalLinkageKind linkage) |
| static bool | isValidDeclarationLinkage (GlobalLinkageKind linkage) |
| static bool | isInterposableLinkage (GlobalLinkageKind linkage) |
| Whether the definition of this global may be replaced by something non-equivalent at link time. | |
| static bool | isDiscardableIfUnused (GlobalLinkageKind linkage) |
| Whether the definition of this global may be discarded if it is not used in its compilation unit. | |
| static bool | isWeakForLinker (GlobalLinkageKind linkage) |
| Whether the definition of this global may be replaced at link time. | |
| static bool | isValidLinkage (GlobalLinkageKind gl) |
| bool | operator< (cir::MemOrder, cir::MemOrder)=delete |
| bool | operator> (cir::MemOrder, cir::MemOrder)=delete |
| bool | operator<= (cir::MemOrder, cir::MemOrder)=delete |
| bool | operator>= (cir::MemOrder, cir::MemOrder)=delete |
| template<typename Int> | |
| bool | isValidCIRAtomicOrderingCABI (Int value) |
| bool | isValidFundamentalIntWidth (unsigned width) |
| bool | holdsDataForABI (RecordMemberKind kind) |
| Whether a member of this kind holds data for argument passing. | |
| bool | anyMemberHoldsDataForABI (llvm::ArrayRef< RecordMemberKind > kinds) |
| Whether any member holds data for argument passing on its mark alone. | |
| bool | isNamedBitField (RecordMemberKind kind) |
| Whether a member of this kind is an access unit the source can read a bit-field of. | |
| bool | isSized (mlir::Type ty) |
| Returns true if the type is a CIR sized type. | |
| cir::FPTypeInterface | getFloatingPointType (const llvm::fltSemantics &sem, mlir::MLIRContext *ctx) |
| Returns the CIR floating-point type for the given semantics, or a null type if CIR has no type for it (e.g. | |
| cir::LangAddressSpace | toCIRLangAddressSpace (clang::LangAS langAS) |
| bool | isMatchingAddressSpace (mlir::ptr::MemorySpaceAttrInterface cirAS, clang::LangAS as) |
| mlir::ptr::MemorySpaceAttrInterface | toCIRAddressSpaceAttr (mlir::MLIRContext &ctx, clang::LangAS langAS) |
| Convert an AST LangAS to the appropriate CIR address space attribute interface. | |
| mlir::ptr::MemorySpaceAttrInterface | normalizeDefaultAddressSpace (mlir::ptr::MemorySpaceAttrInterface addrSpace) |
| Normalize LangAddressSpace::Default to null (empty attribute). | |
| bool | isSupportedCIRMemorySpaceAttr (mlir::ptr::MemorySpaceAttrInterface memorySpace) |
| bool | memberOwnsBytes (mlir::Type memberTy) |
| Whether a record member occupies bytes of its record. | |
| mlir::Type | memberStorageType (mlir::Type memberTy) |
| The storage a member is stored as: the access unit for a bit-field member, and the member type itself for anything else. | |
| mlir::Block * | replaceCallWithTryCall (cir::CallOp callOp, mlir::Block *unwindDest, mlir::Location loc, mlir::RewriterBase &rewriter) |
Replace a cir::CallOp with a cir::TryCallOp whose unwind destination is unwindDest. | |
| mlir::Block * | replaceThrowWithTryThrow (cir::ThrowOp throwOp, mlir::Block *unwindDest, mlir::Location loc, mlir::RewriterBase &rewriter) |
Replace a cir::ThrowOp with a cir::TryThrowOp whose unwind destination is unwindDest. | |
| void | collectUnreachable (mlir::Operation *parent, llvm::SmallVectorImpl< mlir::Operation * > &ops) |
Collect ops in blocks that are unreachable from their region's entry, appending them to ops. | |
| void | registerAllDialects (mlir::DialectRegistry ®istry) |
| void | registerAllDialects (mlir::MLIRContext &context) |
| std::unique_ptr< CIRCXXABI > | createItaniumCXXABI (LowerModule &lm) |
| Creates an Itanium-family ABI. | |
| static cir::IntType | getPtrDiffCIRTy (LowerModule &lm) |
| static mlir::Value | lowerDataMemberCast (mlir::Operation *op, mlir::Value loweredSrc, std::int64_t offset, bool isDerivedToBase, mlir::OpBuilder &builder) |
| static mlir::Value | lowerMethodCast (mlir::Operation *op, mlir::Value loweredSrc, std::int64_t offset, bool isDerivedToBase, bool useARMMethodPtrABI, LowerModule &lowerMod, mlir::OpBuilder &builder) |
| static void | buildBadCastCall (mlir::OpBuilder &builder, mlir::Location loc, mlir::FlatSymbolRefAttr badCastFuncRef) |
| static mlir::Value | buildDynamicCastAfterNullCheck (cir::DynamicCastOp op, mlir::OpBuilder &builder) |
| static mlir::Value | buildDynamicCastToVoidAfterNullCheck (cir::DynamicCastOp op, cir::LowerModule &lm, mlir::OpBuilder &builder) |
| static std::unique_ptr< CIRCXXABI > | createCXXABI (LowerModule &lm) |
| static std::unique_ptr< TargetLoweringInfo > | createTargetLoweringInfo (LowerModule &lm) |
| std::unique_ptr< LowerModule > | createLowerModule (mlir::ModuleOp module) |
| std::unique_ptr< TargetLoweringInfo > | createAMDGPUTargetLoweringInfo () |
| std::unique_ptr< TargetLoweringInfo > | createNVPTXTargetLoweringInfo () |
| std::unique_ptr< TargetLoweringInfo > | createSPIRVTargetLoweringInfo () |
| static BackendAction | getBackendActionFromOutputType (CIRGenAction::OutputType Action) |
| static std::unique_ptr< llvm::Module > | lowerFromCIRToLLVMIR (mlir::ModuleOp MLIRModule, llvm::LLVMContext &LLVMCtx, bool EnableOpenMP, llvm::StringRef mlirSaveTempsOutFile={}, llvm::vfs::FileSystem *fs=nullptr) |
| static CallConvTarget | getCallConvTarget (const llvm::Triple &triple) |
| Map a target triple to the ABI target that drives CallConvLowering. | |
| static llvm::abi::X86AVXABILevel | getX86AVXABILevel (llvm::StringRef abi) |
| The AVX level the classifier uses to size a native vector, read from the target ABI name. | |
| static bool | allowsX86TargetAttrAvx (const clang::ASTContext &astContext) |
| Whether __attribute__((target(...))) on a function may raise its AVX ABI level above the command line's. | |
| static llvm::abi::ABICompatInfo | getX86ABICompatInfo (const clang::ASTContext &astContext) |
| The x86_64 ABI-compatibility flags, derived from the target and the requested compatibility version. | |
|
strong |
|
strong |
| Enumerator | |
|---|---|
| None | |
| NoSignedWrap | |
| NoUnsignedWrap | |
| Saturated | |
Definition at line 32 of file CIRBaseBuilder.h.
| Enumerator | |
|---|---|
| TEK_Scalar | |
| TEK_Complex | |
| TEK_Aggregate | |
Definition at line 17 of file TypeEvaluationKind.h.
|
static |
Whether __attribute__((target(...))) on a function may raise its AVX ABI level above the command line's.
A target that opts out, and any ABI older than the rule, stay at the module level.
Definition at line 45 of file CIRPasses.cpp.
References clang::ASTContext::getLangOpts(), clang::ASTContext::getTargetInfo(), and clang::TargetInfo::getTriple().
Referenced by mlir::createCallConvLoweringPass(), and runCIRToCIRPasses().
|
inline |
Whether any member holds data for argument passing on its mark alone.
Definition at line 52 of file CIRTypes.h.
References holdsDataForABI(), and kind.
Referenced by cir::RecordType::isEmptyForABI().
|
static |
Definition at line 707 of file LowerItaniumCXXABI.cpp.
Referenced by buildDynamicCastAfterNullCheck().
|
static |
C++ [expr.dynamic.cast]p9: A failed cast to reference type throws std::bad_cast
Definition at line 719 of file LowerItaniumCXXABI.cpp.
References cir::MissingFeatures::addressSpace(), and buildBadCastCall().
|
static |
Definition at line 773 of file LowerItaniumCXXABI.cpp.
References cir::MissingFeatures::addressSpace(), clang::Default, clang::TargetInfo::getPointerAlign(), getPtrDiffCIRTy(), and cir::LowerModule::getTarget().
| void cir::buildTerminatedBody | ( | mlir::OpBuilder & | builder, |
| mlir::Location | loc ) |
| void cir::collectUnreachable | ( | mlir::Operation * | parent, |
| llvm::SmallVectorImpl< mlir::Operation * > & | ops ) |
Collect ops in blocks that are unreachable from their region's entry, appending them to ops.
Used by CIR passes that drive applyPartialConversion and need to feed it operations the conversion driver's dominance-order traversal would otherwise skip.
Definition at line 15 of file CIRTransformUtils.cpp.
Referenced by cir::direct::ConvertCIRToLLVMPass::runOnOperation().
| std::unique_ptr< TargetLoweringInfo > cir::createAMDGPUTargetLoweringInfo | ( | ) |
Definition at line 45 of file AMDGPU.cpp.
Referenced by createTargetLoweringInfo().
|
static |
Definition at line 26 of file LowerModule.cpp.
References createItaniumCXXABI(), and cir::LowerModule::getCXXABIKind().
Referenced by cir::LowerModule::LowerModule().
| std::unique_ptr< CIRCXXABI > cir::createItaniumCXXABI | ( | LowerModule & | lm | ) |
Creates an Itanium-family ABI.
Definition at line 132 of file LowerItaniumCXXABI.cpp.
References cir::MissingFeatures::appleArm64CXXABI(), and cir::LowerModule::getCXXABIKind().
Referenced by createCXXABI().
| std::unique_ptr< LowerModule > cir::createLowerModule | ( | mlir::ModuleOp | module | ) |
Definition at line 79 of file LowerModule.cpp.
References clang::targets::AllocateTarget(), cir::MissingFeatures::lowerModuleCodeGenOpts(), cir::MissingFeatures::lowerModuleLangOpts(), cir::MissingFeatures::makeTripleAlwaysPresent(), and clang::TargetOptions::Triple.
| std::unique_ptr< TargetLoweringInfo > cir::createNVPTXTargetLoweringInfo | ( | ) |
Definition at line 44 of file NVPTX.cpp.
Referenced by createTargetLoweringInfo().
| std::unique_ptr< TargetLoweringInfo > cir::createSPIRVTargetLoweringInfo | ( | ) |
Definition at line 41 of file SPIRV.cpp.
Referenced by createTargetLoweringInfo().
|
static |
Definition at line 47 of file LowerModule.cpp.
References createAMDGPUTargetLoweringInfo(), createNVPTXTargetLoweringInfo(), createSPIRVTargetLoweringInfo(), cir::LowerModule::getTarget(), clang::TargetInfo::getTriple(), and cir::MissingFeatures::targetLoweringInfo().
Referenced by cir::LowerModule::getTargetLoweringInfo().
|
static |
Definition at line 40 of file CIRGenAction.cpp.
References clang::Backend_EmitAssembly, clang::Backend_EmitBC, clang::Backend_EmitLL, clang::Backend_EmitObj, cir::CIRGenAction::EmitAssembly, cir::CIRGenAction::EmitBC, cir::CIRGenAction::EmitCIR, cir::CIRGenAction::EmitLLVM, and cir::CIRGenAction::EmitObj.
Referenced by cir::CIRGenConsumer::HandleTranslationUnit().
|
static |
Map a target triple to the ABI target that drives CallConvLowering.
Returns None for targets whose calling convention is not yet implemented.
Definition at line 26 of file CIRPasses.cpp.
Referenced by runCIRToCIRPasses().
| cir::FPTypeInterface cir::getFloatingPointType | ( | const llvm::fltSemantics & | sem, |
| mlir::MLIRContext * | ctx ) |
Returns the CIR floating-point type for the given semantics, or a null type if CIR has no type for it (e.g.
PPCDoubleDouble or a Float8 format). Mirrors llvm::Type::getFloatingPointTy.
Definition at line 42 of file CIRTypes.cpp.
|
static |
Definition at line 161 of file LowerItaniumCXXABI.cpp.
References clang::Default, cir::LowerModule::getMLIRContext(), clang::TargetInfo::getPtrDiffType(), cir::LowerModule::getTarget(), clang::TargetInfo::getTypeWidth(), and clang::TargetInfo::isTypeSigned().
Referenced by buildDynamicCastToVoidAfterNullCheck(), and lowerMethodCast().
| RecordLayoutAttr cir::getRecordLayout | ( | mlir::ModuleOp | mod, |
| mlir::StringAttr | name ) |
Look up the RecordLayoutAttr for a named record in the module's cir.record_layouts dictionary.
Asserts if the entry is missing.
Definition at line 938 of file CIRAttrs.cpp.
References tryGetRecordLayout().
|
static |
The x86_64 ABI-compatibility flags, derived from the target and the requested compatibility version.
Every flag defaults to true in the ABI library, which is not what any target computes: Clang11Compat is false for a modern Linux target, so leaving it at the default classifies a union larger than an eightbyte as though every member spanned its size.
Definition at line 57 of file CIRPasses.cpp.
References clang::ASTContext::getLangOpts(), clang::ASTContext::getTargetInfo(), and clang::TargetInfo::getTriple().
Referenced by runCIRToCIRPasses().
|
static |
The AVX level the classifier uses to size a native vector, read from the target ABI name.
Definition at line 34 of file CIRPasses.cpp.
Referenced by runCIRToCIRPasses().
|
inline |
Whether a member of this kind holds data for argument passing.
An empty member can hold data all the same, since an access unit of unnamed bit-fields takes that mark and is storage the classifier reads; use RecordType::isEmptyForABI to ask about a whole record.
Definition at line 47 of file CIRTypes.h.
References kind.
Referenced by anyMemberHoldsDataForABI().
|
static |
Definition at line 60 of file CIROpsEnums.h.
|
static |
Definition at line 24 of file CIROpsEnums.h.
Referenced by isDiscardableIfUnused().
|
static |
Definition at line 57 of file CIROpsEnums.h.
|
static |
Whether the definition of this global may be discarded if it is not used in its compilation unit.
Definition at line 95 of file CIROpsEnums.h.
References isAvailableExternallyLinkage(), isLinkOnceLinkage(), and isLocalLinkage().
Referenced by getCIRGenToUse().
|
static |
Definition at line 21 of file CIROpsEnums.h.
Referenced by isValidDeclarationLinkage(), and isValidLinkage().
|
static |
Definition at line 54 of file CIROpsEnums.h.
Referenced by isValidDeclarationLinkage().
|
static |
Definition at line 45 of file CIROpsEnums.h.
Referenced by isLocalLinkage().
|
static |
Whether the definition of this global may be replaced by something non-equivalent at link time.
For example, if a function has weak linkage then the code defining it may be replaced by different code.
Definition at line 71 of file CIROpsEnums.h.
|
static |
Definition at line 27 of file CIROpsEnums.h.
Referenced by isLinkOnceLinkage().
|
static |
Definition at line 33 of file CIROpsEnums.h.
References isLinkOnceAnyLinkage(), and isLinkOnceODRLinkage().
Referenced by getThreadLocalWrapperLinkage(), isDiscardableIfUnused(), and isValidLinkage().
|
static |
Definition at line 30 of file CIROpsEnums.h.
Referenced by isLinkOnceLinkage().
|
static |
Definition at line 51 of file CIROpsEnums.h.
References isInternalLinkage(), and isPrivateLinkage().
Referenced by clang::CIRGen::CIRGenVTables::generateConstructionVTable(), getThreadLocalWrapperLinkage(), isDiscardableIfUnused(), and isValidLinkage().
| bool cir::isMatchingAddressSpace | ( | mlir::ptr::MemorySpaceAttrInterface | cirAS, |
| clang::LangAS | as ) |
Definition at line 1743 of file CIRTypes.cpp.
References clang::Default, normalizeDefaultAddressSpace(), and toCIRAddressSpaceAttr().
Referenced by emitBuiltinAlloca().
|
inline |
Whether a member of this kind is an access unit the source can read a bit-field of.
A unit can be narrower than the type a bit-field in it was declared with, so its extent does not answer what the source declared; !cir.bitfield carries that. A true answer does not mean the member is an access unit: a union's base subobject takes this mark when any variant is one, whatever its own storage type came from. A unit of nothing but unnamed bit-fields is empty instead.
Definition at line 64 of file CIRTypes.h.
References kind.
|
static |
Definition at line 48 of file CIROpsEnums.h.
Referenced by isLocalLinkage().
| bool cir::isSized | ( | mlir::Type | ty | ) |
Returns true if the type is a CIR sized type.
Types are sized if they implement SizedTypeInterface and return true from its method isSized.
Unsized types are those that do not have a size, such as void, or abstract types.
Definition at line 35 of file CIRTypes.cpp.
References cir::MissingFeatures::unsizedTypes().
Referenced by clang::CIRGen::CIRGenTypes::convertType(), determineNoUndef(), and cir::CIRDataLayout::getTypeSizeInBits().
| bool cir::isSupportedCIRMemorySpaceAttr | ( | mlir::ptr::MemorySpaceAttrInterface | memorySpace | ) |
Definition at line 1590 of file CIRTypes.cpp.
|
inline |
Definition at line 125 of file CIROpsEnums.h.
Referenced by emitAtomicCmpXchgFailureSet(), and clang::CIRGen::CIRGenFunction::emitAtomicExprWithMemOrder().
|
static |
Definition at line 64 of file CIROpsEnums.h.
References isExternalLinkage(), and isExternalWeakLinkage().
Definition at line 1091 of file CIRTypes.cpp.
Referenced by clang::CIRGen::CIRGenBuilderTy::getArrayElement(), and getRecordedIntegerWidth().
|
static |
Definition at line 113 of file CIROpsEnums.h.
References isExternalLinkage(), isLinkOnceLinkage(), isLocalLinkage(), and isWeakLinkage().
Referenced by getCIRGenToUse().
|
static |
Definition at line 36 of file CIROpsEnums.h.
Referenced by isWeakLinkage().
|
static |
Whether the definition of this global may be replaced at link time.
NB: Using this method outside of the code generators is almost always a mistake: when working at the IR level use isInterposable instead as it knows about ODR semantics.
Definition at line 104 of file CIROpsEnums.h.
Referenced by clang::CIRGen::CIRGenModule::createOrReplaceCXXRuntimeVariable(), and getCIRGenToUse().
|
static |
Definition at line 42 of file CIROpsEnums.h.
References isWeakAnyLinkage(), and isWeakODRLinkage().
Referenced by isValidLinkage().
|
static |
Definition at line 39 of file CIROpsEnums.h.
Referenced by getThreadLocalWrapperLinkage(), and isWeakLinkage().
|
static |
Definition at line 452 of file LowerItaniumCXXABI.cpp.
|
static |
Definition at line 61 of file CIRGenAction.cpp.
Referenced by cir::CIRGenConsumer::HandleTranslationUnit().
|
static |
Definition at line 502 of file LowerItaniumCXXABI.cpp.
References getPtrDiffCIRTy().
|
inline |
Whether a record member occupies bytes of its record.
Every member does except a zero-width bit-field, which contributes neither size nor alignment to the record and is left out of the lowered LLVM struct body.
Definition at line 125 of file CIRTypes.h.
Referenced by collectStoredInitializers(), and cir::direct::prepareTypeConverter().
|
inline |
The storage a member is stored as: the access unit for a bit-field member, and the member type itself for anything else.
Null for a zero-width bit-field, which has no storage.
Definition at line 134 of file CIRTypes.h.
Referenced by memberPointeeType(), and cir::direct::prepareTypeConverter().
| mlir::ptr::MemorySpaceAttrInterface cir::normalizeDefaultAddressSpace | ( | mlir::ptr::MemorySpaceAttrInterface | addrSpace | ) |
Normalize LangAddressSpace::Default to null (empty attribute).
Definition at line 1719 of file CIRTypes.cpp.
Referenced by clang::CIRGen::CIRGenFunction::emitLifetimeEndOp(), clang::CIRGen::CIRGenFunction::emitLifetimeStartOp(), and isMatchingAddressSpace().
|
constexpr |
Definition at line 44 of file CIRBaseBuilder.h.
|
constexpr |
Definition at line 55 of file CIRBaseBuilder.h.
|
delete |
|
delete |
|
delete |
|
delete |
|
constexpr |
Definition at line 39 of file CIRBaseBuilder.h.
|
constexpr |
Definition at line 49 of file CIRBaseBuilder.h.
| void cir::registerAllDialects | ( | mlir::DialectRegistry & | registry | ) |
Definition at line 23 of file RegisterAllDialects.cpp.
References cir::acc::registerOpenACCExtensions(), and cir::omp::registerOpenMPExtensions().
Referenced by cir::CIRGenerator::Initialize(), and registerAllDialects().
| void cir::registerAllDialects | ( | mlir::MLIRContext & | context | ) |
Definition at line 31 of file RegisterAllDialects.cpp.
References registerAllDialects().
| void cir::registerCIRAliasAnalyses | ( | mlir::AliasAnalysis & | aa | ) |
Register all CIR alias analysis implementations with aa.
Passes that want full CIR alias information should call this rather than adding individual implementations:
mlir::AliasAnalysis aa(funcOp); cir::registerCIRAliasAnalyses(aa);
Definition at line 12 of file CIRAliasAnalysis.cpp.
| mlir::Block * cir::replaceCallWithTryCall | ( | cir::CallOp | callOp, |
| mlir::Block * | unwindDest, | ||
| mlir::Location | loc, | ||
| mlir::RewriterBase & | rewriter ) |
Replace a cir::CallOp with a cir::TryCallOp whose unwind destination is unwindDest.
The call's parent block is split immediately after the call; the resulting suffix block becomes the try_call's normal destination and is returned to the caller.
All attributes of the original call other than the callee and operand segment sizes (which TryCallOp::create sets itself) are copied onto the new try_call. Uses of the original call's result, if any, are redirected to the try_call's result, and the original call is erased.
The call must not already be marked nothrow.
Definition at line 48 of file CIRTransformUtils.cpp.
| mlir::Block * cir::replaceThrowWithTryThrow | ( | cir::ThrowOp | throwOp, |
| mlir::Block * | unwindDest, | ||
| mlir::Location | loc, | ||
| mlir::RewriterBase & | rewriter ) |
Replace a cir::ThrowOp with a cir::TryThrowOp whose unwind destination is unwindDest.
The throw's parent block is split immediately after the throw; the resulting suffix block (which should contain the cir.unreachable that follows every throw) becomes the try_throw's normal destination and is returned to the caller.
All attributes of the original throw other than the operand segment sizes (which TryThrowOp::create sets itself) are copied onto the new try_throw, and the original throw is erased.
Definition at line 109 of file CIRTransformUtils.cpp.
| mlir::LogicalResult cir::runCIRToCIRPasses | ( | mlir::ModuleOp | theModule, |
| mlir::MLIRContext & | mlirCtx, | ||
| clang::ASTContext & | astCtx, | ||
| bool | enableVerifier, | ||
| bool | enableIdiomRecognizer, | ||
| bool | enableCIRSimplify, | ||
| bool | enableLibOpt, | ||
| llvm::StringRef | libOptOptions, | ||
| bool | enableCallConvLowering ) |
Definition at line 77 of file CIRPasses.cpp.
References allowsX86TargetAttrAvx(), mlir::createCallConvLoweringPass(), mlir::createCIRCanonicalizePass(), mlir::createCIRSimplifyPass(), mlir::createCXXABILoweringPass(), mlir::createIdiomRecognizerPass(), mlir::createLibOptPass(), mlir::createLoweringPreparePass(), mlir::createTargetLoweringPass(), clang::TargetInfo::getABI(), getCallConvTarget(), clang::ASTContext::getTargetInfo(), clang::TargetInfo::getTriple(), getX86ABICompatInfo(), getX86AVXABILevel(), and None.
Referenced by cir::CIRGenConsumer::HandleTranslationUnit().
| void cir::setMLIRDataLayout | ( | mlir::ModuleOp | mod, |
| const llvm::DataLayout & | dl ) |
Translate dl into a DLTI data-layout spec and attach it to mod.
On top of the plain mlir::translateDataLayout entries this adds a #cir.ptr_spec entry keyed on !cir.ptr, which CIR pointer types read for their size and alignment; without it pointer widths default to 64 bits.
Definition at line 25 of file CIRDataLayoutSpec.cpp.
References cir::MissingFeatures::dataLayoutPtrHandlingBasedOnLangAS().
Referenced by cir::CIRGenerator::Initialize().
|
constexpr |
Definition at line 61 of file CIRBaseBuilder.h.
References None.
Referenced by cir::CIRBaseBuilderTy::createAdd(), cir::CIRBaseBuilderTy::createMul(), and cir::CIRBaseBuilderTy::createSub().
| mlir::ptr::MemorySpaceAttrInterface cir::toCIRAddressSpaceAttr | ( | mlir::MLIRContext & | ctx, |
| clang::LangAS | langAS ) |
Convert an AST LangAS to the appropriate CIR address space attribute interface.
Definition at line 1729 of file CIRTypes.cpp.
References clang::isTargetAddressSpace(), toCIRLangAddressSpace(), and clang::toTargetAddressSpace().
Referenced by cir::CIRBaseBuilderTy::getPointerTo(), isMatchingAddressSpace(), and clang::CIRGen::CIRGenFunction::maybeCastStackAddressSpace().
| cir::LangAddressSpace cir::toCIRLangAddressSpace | ( | clang::LangAS | langAS | ) |
Definition at line 1596 of file CIRTypes.cpp.
Referenced by toCIRAddressSpaceAttr().
| RecordLayoutAttr cir::tryGetRecordLayout | ( | mlir::ModuleOp | mod, |
| mlir::StringAttr | name ) |
Same lookup as getRecordLayout, but returns a null attribute instead of asserting when the record has no layout entry.
Definition at line 927 of file CIRAttrs.cpp.
Referenced by getRecordLayout().