18#include "mlir/IR/Location.h"
20#include "clang/AST/Attrs.inc"
46 mlir::OpBuilder::InsertPoint ip) {
60 "emitAutoVarAlloca: decl escaping by reference");
84 getContext().getBaseElementType(ty)->isObjCObjectPointerType()) &&
98 (
cgm.getCodeGenOpts().MergeAllConstants && !nrvo &&
118 if (
const auto *cxxrd = dyn_cast<CXXRecordDecl>(rd);
119 (cxxrd && !cxxrd->hasTrivialDestructor()) ||
120 rd->isNonTrivialToPrimitiveDestroy()) {
125 cir::ConstantOp falseNVRO = builder.getFalse(loc);
129 assert(builder.getInsertionBlock());
130 builder.createStore(loc, falseNVRO, nrvoFlag);
142 nullptr,
nullptr, ip);
162 cgm.getDataLayout().getAlignment(defaultTy,
false));
165 mlir::Value v = builder.createStackSave(loc, defaultTy);
167 builder.createStore(loc, v, stack);
182 nullptr, builder.saveInsertionPoint());
190 emission.
addr = address;
210 if (constructor->isTrivial() && constructor->isDefaultConstructor() &&
211 !construct->requiresZeroInitialization())
220 mlir::TypedAttr constant) {
221 mlir::Type ty = constant.getType();
242 mlir::Location loc = builder.getUnknownLoc();
256 assert(emission.
variable &&
"emission was not valid!");
272 if (!init &&
type.isNonTrivialToPrimitiveDefaultInitialize() ==
275 "emitAutoVarInit: non-trivial to default initialize");
290 : (d.
getAttr<UninitializedAttr>()
294 auto initializeWhatIsTechnicallyUninitialized = [&](
Address addr) {
295 if (trivialAutoVarInit ==
303 initializeWhatIsTechnicallyUninitialized(addr);
307 mlir::Attribute constant;
316 if (constant && !mlir::isa<cir::ZeroAttr>(constant) &&
317 (trivialAutoVarInit !=
329 initializeWhatIsTechnicallyUninitialized(addr);
337 assert(addr.
isValid() &&
"Should have an address");
339 assert(allocaOp &&
"Address should come straight out of the alloca");
341 if (!allocaOp.use_empty())
349 auto typedConstant = mlir::dyn_cast<mlir::TypedAttr>(constant);
350 assert(typedConstant &&
"expected typed attribute");
354 assert(init &&
"expected initializer");
358 RValue::get(builder.getConstant(initLoc, typedConstant)), lv);
404 "emitLoopConditionVariable: OpenCL local address space");
406 CIRGenFunction::VarDeclContext varDeclCtx{*
this, &d};
426 builder.getBoolTy(),
CharUnits::One(), loc,
"cond.cleanup.isactive",
429 builder.createFlagStore(loc,
false, activeFlag.
getPointer());
437 builder.createFlagStore(loc,
true, activeFlag.
getPointer());
464 cir::GlobalLinkageKind linkage =
cgm.getCIRLinkageVarDefinition(&d);
478 CIRGenFunction::VarDeclContext varDeclCtx{*
this, &d};
488 std::string contextName;
490 if (
auto *cd = dyn_cast<CapturedDecl>(dc))
492 if (
const auto *fd = dyn_cast<FunctionDecl>(dc))
496 "getStaticDeclName: block decl context for static var");
499 "getStaticDeclName: ObjC decl context for static var");
502 "getStaticDeclName: Unknown context for static var decl");
512 cir::GlobalLinkageKind linkage) {
534 mlir::Attribute init =
nullptr;
536 d.
hasAttr<CUDASharedAttr>() || d.
hasAttr<LoaderUninitializedAttr>())
537 init = cir::UndefAttr::get(lty);
541 cir::GlobalOp gv = builder.createVersionedGlobal(
546 gv.setInitialValueAttr(init);
547 gv.setAlignment(
getASTContext().getDeclAlign(&d).getAsAlign().value());
582 if (
const auto *cd = dyn_cast<CXXConstructorDecl>(dc))
584 else if (
const auto *dd = dyn_cast<CXXDestructorDecl>(dc))
586 else if (
const auto *fd = dyn_cast<FunctionDecl>(dc))
598 "OpenMP: DisableAutoDeclareTargetRAII for static local");
607 mlir::Attribute constAttr,
609 auto functionName = [&](
const DeclContext *dc) -> std::string {
610 if (
const auto *fd = dyn_cast<FunctionDecl>(dc)) {
611 if (
const auto *cc = dyn_cast<CXXConstructorDecl>(fd))
612 return cc->getNameAsString();
613 if (
const auto *cd = dyn_cast<CXXDestructorDecl>(fd))
614 return cd->getNameAsString();
616 }
else if (
const auto *om = dyn_cast<ObjCMethodDecl>(dc)) {
617 return om->getNameAsString();
623 llvm_unreachable(
"expected a function or method");
630 if (!cacheEntry || cacheEntry.getInitialValue() != constAttr) {
631 auto ty = mlir::cast<mlir::TypedAttr>(constAttr).getType();
632 bool isConstant =
true;
638 name = (
"__const." + functionName(dc) +
"." + d.
getName()).str();
640 llvm_unreachable(
"local variable has no parent function or method");
643 cir::GlobalOp gv = builder.createVersionedGlobal(
645 cir::GlobalLinkageKind::PrivateLinkage);
649 cir::GlobalLinkageKind::PrivateLinkage));
650 gv.setInitialValueAttr(constAttr);
651 gv.setAlignment(align.getAsAlign().value());
655 }
else if (cacheEntry.getAlignment() < align.getQuantity()) {
656 cacheEntry.setAlignment(align.getAsAlign().value());
661 mlir::Type eltTy = mlir::cast<mlir::TypedAttr>(constAttr).getType();
662 auto ptrTy = builder.getPointerTo(cacheEntry.getSymType());
663 mlir::Value globalPtr = cir::GetGlobalOp::create(
665 return Address(globalPtr, eltTy, align);
672 const VarDecl &d, cir::GlobalOp gv, cir::GetGlobalOp gvAddr) {
674 mlir::TypedAttr init = mlir::dyn_cast_if_present<mlir::TypedAttr>(
682 "constant l-value expression");
688 gv.setConstant(
false);
690 gvAddr.setStaticLocal(
true);
704 if (gv.getSymType() != init.getType()) {
705 gv.setSymType(init.getType());
713 gvAddr.getAddr().setType(builder.getPointerTo(init.getType()));
721 gv.setInitialValueAttr(init);
730 gvAddr.setStaticLocal(
true);
737 cir::GlobalLinkageKind linkage) {
741 cir::GlobalOp globalOp =
cgm.getOrCreateStaticVarDecl(d, linkage);
746 auto getAddrOp = addr.getDefiningOp<cir::GetGlobalOp>();
747 assert(getAddrOp &&
"expected cir::GetGlobalOp");
763 mlir::Type expectedType = addr.getType();
765 cir::GlobalOp var = globalOp;
773 var.setAlignment(alignment.
getAsAlign().value());
778 cgm.addGlobalAnnotations(&d, var);
779 if (d.
getAttr<PragmaClangBSSSectionAttr>())
781 "emitStaticVarDecl: CIR global BSS section attribute");
782 if (d.
getAttr<PragmaClangDataSectionAttr>())
784 "emitStaticVarDecl: CIR global Data section attribute");
785 if (d.
getAttr<PragmaClangRodataSectionAttr>())
787 "emitStaticVarDecl: CIR global Rodata section attribute");
788 if (d.
getAttr<PragmaClangRelroSectionAttr>())
790 "emitStaticVarDecl: CIR global Relro section attribute");
792 if (
const SectionAttr *sa = d.
getAttr<SectionAttr>())
793 var.setSectionAttr(builder.getStringAttr(sa->getName()));
795 if (
cgm.getCodeGenOpts().KeepPersistentStorageVariables)
804 mlir::Value castedAddr =
805 builder.createBitcast(getAddrOp.getAddr(), expectedType);
807 cgm.setStaticLocalDeclAddress(&d, var);
814 LValue lvalue,
bool capturedByInit) {
819 if (capturedByInit) {
828 LValue lvalue,
bool capturedByInit) {
830 if (capturedByInit) {
837 if (
type->isReferenceType()) {
852 "emitExprAsInit: complex type captured by init");
867 llvm_unreachable(
"bad evaluation kind");
872 case Decl::BuiltinTemplate:
873 case Decl::TranslationUnit:
874 case Decl::ExternCContext:
875 case Decl::Namespace:
876 case Decl::UnresolvedUsingTypename:
877 case Decl::ClassTemplateSpecialization:
878 case Decl::ClassTemplatePartialSpecialization:
879 case Decl::VarTemplateSpecialization:
880 case Decl::VarTemplatePartialSpecialization:
881 case Decl::TemplateTypeParm:
882 case Decl::UnresolvedUsingValue:
883 case Decl::NonTypeTemplateParm:
884 case Decl::CXXDeductionGuide:
885 case Decl::CXXMethod:
886 case Decl::CXXConstructor:
887 case Decl::CXXDestructor:
888 case Decl::CXXConversion:
890 case Decl::MSProperty:
891 case Decl::IndirectField:
893 case Decl::ObjCAtDefsField:
895 case Decl::ImplicitParam:
896 case Decl::ClassTemplate:
897 case Decl::VarTemplate:
898 case Decl::FunctionTemplate:
899 case Decl::TypeAliasTemplate:
900 case Decl::TemplateTemplateParm:
901 case Decl::ObjCMethod:
902 case Decl::ObjCCategory:
903 case Decl::ObjCProtocol:
904 case Decl::ObjCInterface:
905 case Decl::ObjCCategoryImpl:
906 case Decl::ObjCImplementation:
907 case Decl::ObjCProperty:
908 case Decl::ObjCCompatibleAlias:
909 case Decl::PragmaComment:
910 case Decl::PragmaDetectMismatch:
911 case Decl::AccessSpec:
912 case Decl::LinkageSpec:
914 case Decl::ObjCPropertyImpl:
915 case Decl::FileScopeAsm:
917 case Decl::FriendTemplate:
919 case Decl::OutlinedFunction:
921 case Decl::UsingShadow:
922 case Decl::ConstructorUsingShadow:
923 case Decl::ObjCTypeParam:
925 case Decl::UnresolvedUsingIfExists:
926 case Decl::HLSLBuffer:
927 case Decl::HLSLRootSignature:
928 llvm_unreachable(
"Declaration should not be in declstmts!");
931 case Decl::EnumConstant:
932 case Decl::ExplicitInstantiation:
933 case Decl::StaticAssert:
937 case Decl::TemplateParamObject:
940 case Decl::LifetimeExtendedTemporary:
941 case Decl::RequiresExprBody:
942 case Decl::UnnamedGlobalConstant:
948 case Decl::CXXRecord:
949 case Decl::NamespaceAlias:
951 case Decl::UsingEnum:
952 case Decl::UsingDirective:
956 case Decl::Decomposition: {
959 "Should not see file-scope variables inside a function!");
961 if (evaluateConditionDecl)
965 case Decl::OpenACCDeclare:
968 case Decl::OpenACCRoutine:
971 case Decl::OMPThreadPrivate:
974 case Decl::OMPGroupPrivate:
977 case Decl::OMPAllocate:
980 case Decl::OMPCapturedExpr:
983 case Decl::OMPRequires:
986 case Decl::OMPDeclareMapper:
989 case Decl::OMPDeclareReduction:
993 case Decl::TypeAlias: {
1000 case Decl::ImplicitConceptSpecialization:
1001 case Decl::TopLevelStmt:
1002 case Decl::UsingPack:
1003 case Decl::CXXExpansionStmt:
1005 std::string(
"emitDecl: unhandled decl type: ") +
1012 if (!
sanOpts.has(SanitizerKind::NullabilityAssign))
1022 : addr(addr),
type(
type), destroyer(destroyer) {
1037 DestroyNRVOVariable(Address addr, QualType
type, mlir::Value nrvoFlag)
1038 : nrvoFlag(nrvoFlag), addr(addr), ty(
type) {}
1040 mlir::Value nrvoFlag;
1044 void emit(CIRGenFunction &cgf, Flags flags)
override {
1046 bool nrvo = flags.isForNormalCleanup() && nrvoFlag;
1049 mlir::OpBuilder::InsertionGuard guard(builder);
1052 mlir::Location loc = addr.
getPointer().getLoc();
1054 mlir::Value notNRVO = builder.
createNot(didNRVO);
1055 cir::IfOp::create(builder, loc, notNRVO,
false,
1056 [&](mlir::OpBuilder &b, mlir::Location) {
1057 static_cast<Derived *
>(
this)->emitDestructorCall(cgf);
1061 static_cast<Derived *
>(
this)->emitDestructorCall(cgf);
1065 virtual ~DestroyNRVOVariable() =
default;
1068struct DestroyNRVOVariableCXX final
1069 : DestroyNRVOVariable<DestroyNRVOVariableCXX> {
1070 DestroyNRVOVariableCXX(Address addr, QualType
type,
1071 const CXXDestructorDecl *dtor, mlir::Value nrvoFlag)
1072 : DestroyNRVOVariable<DestroyNRVOVariableCXX>(addr,
type, nrvoFlag),
1075 const CXXDestructorDecl *dtor;
1077 void emitDestructorCall(CIRGenFunction &cgf) {
1086 CallStackRestore(Address stack) : stack(stack) {}
1087 void emit(CIRGenFunction &cgf, Flags flags)
override {
1088 mlir::Location loc = stack.
getPointer().getLoc();
1097 mlir::Value arrayBegin;
1099 QualType elementType;
1100 CharUnits elementAlign;
1103 IrregularPartialArrayDestroy(mlir::Value arrayBegin, Address arrayEndPointer,
1104 QualType elementType, CharUnits elementAlign,
1106 : arrayBegin(arrayBegin), arrayEndPointer(arrayEndPointer),
1107 elementType(elementType), elementAlign(elementAlign),
1108 destroyer(destroyer) {}
1110 void emit(CIRGenFunction &cgf, Flags flags)
override {
1112 mlir::Location loc = arrayBegin.getLoc();
1114 mlir::Value arrayEnd = builder.
createLoad(loc, arrayEndPointer);
1121 cir::PointerType ptrToElmType = builder.
getPointerTo(cirElementType);
1123 mlir::Value begin = arrayBegin;
1124 if (baseElementType != elementType) {
1133 cir::CmpOp::create(builder, loc, cir::CmpOpKind::ne, arrayEnd, begin);
1135 builder, loc, ne,
false,
1136 [&](mlir::OpBuilder &b, mlir::Location loc) {
1143 [&](mlir::OpBuilder &b, mlir::Location loc) {
1144 mlir::Value cur = builder.
createLoad(loc, iterAddr);
1145 mlir::Value cmp = cir::CmpOp::create(
1146 builder, loc, cir::CmpOpKind::ne, cur, begin);
1150 [&](mlir::OpBuilder &b, mlir::Location loc) {
1151 mlir::Value cur = builder.
createLoad(loc, iterAddr);
1153 loc, mlir::cast<cir::IntType>(cgf.
ptrDiffTy), -1);
1154 mlir::Value prev = cir::PtrStrideOp::create(
1155 builder, loc, ptrToElmType, cur, negOne);
1158 destroyer(cgf, elemAddr, baseElementType);
1178 ehStack.pushCleanup<IrregularPartialArrayDestroy>(
1179 EHCleanup, arrayBegin, arrayEndPointer, elementType, elementAlign,
1198 assert(dtorKind &&
"cannot push destructor for trivial type");
1211 assert(dtorKind &&
"cannot push destructor for trivial type");
1220 bool useEHCleanupForArray) {
1229 bool useEHCleanupForArray) {
1231 cgm.errorNYI(
"conditional lifetime-extended destroy");
1238 useEHCleanupForArray);
1265 mlir::Value numElements,
1274 cir::PointerType ptrToElmType = builder.getPointerTo(cirElementType);
1276 auto regionBuilder = [&](mlir::OpBuilder &b, mlir::Location loc) {
1277 mlir::BlockArgument arg =
1278 b.getInsertionBlock()->addArgument(ptrToElmType, loc);
1283 destroyer(*
this, curAddr, elementType);
1285 cir::YieldOp::create(b, loc);
1289 if (
auto constantCount = numElements.getDefiningOp<cir::ConstantOp>()) {
1291 if (
auto constIntAttr = constantCount.getValueAttr<cir::IntAttr>())
1292 size = constIntAttr.getUInt();
1293 auto arrayTy = cir::ArrayType::get(cirElementType, size);
1294 mlir::Value arrayOp = builder.createPtrBitcast(begin, arrayTy);
1295 cir::ArrayDtor::create(builder, *
currSrcLoc, arrayOp, regionBuilder);
1300 mlir::Value elemBegin = builder.createPtrBitcast(begin, cirElementType);
1301 cir::ArrayDtor::create(builder, *
currSrcLoc, elemBegin, numElements,
1316 return destroyer(*
this, addr,
type);
1324 auto constantCount =
length.getDefiningOp<cir::ConstantOp>();
1325 if (constantCount) {
1326 auto constIntAttr = mlir::dyn_cast<cir::IntAttr>(constantCount.getValue());
1327 if (constIntAttr && constIntAttr.getUInt() == 0)
1336 if (constantCount && constantCount.use_empty())
1337 constantCount.erase();
1344 llvm_unreachable(
"no destroyer for trivial dtor");
1350 cgm.errorNYI(
"getDestroyer: other destruction kind");
1353 llvm_unreachable(
"Unknown DestructionKind");
1357 ehStack.pushCleanup<CallStackRestore>(
kind, spMem);
1378 llvm_unreachable(
"no cleanup for trivially-destructible variable");
1384 assert(!
type->isArrayType());
1386 ehStack.pushCleanup<DestroyNRVOVariableCXX>(cleanupKind, addr,
type, dtor,
1396 cgm.errorNYI(var->getSourceRange(),
1397 "emitAutoVarTypeCleanup: other dtor kind");
1406 ehStack.pushCleanup<DestroyObject>(cleanupKind, addr,
type, destroyer);
1410 if (
auto *dd = dyn_cast_if_present<DecompositionDecl>(vd)) {
1411 for (
auto *b : dd->flat_bindings())
1412 if (
auto *hd = b->getHoldingVar())
1418 if (!shouldEmitLifetimeMarkers)
1421 assert(mlir::cast<cir::PointerType>(addr.getType()).getAddrSpace() ==
1423 "Pointer should be in alloca address space");
1425 cir::LifetimeStartOp::create(builder, loc, addr);
1430 if (!shouldEmitLifetimeMarkers)
1433 assert(mlir::cast<cir::PointerType>(addr.getType()).getAddrSpace() ==
1435 "Pointer should be in alloca address space");
1437 cir::LifetimeEndOp::create(builder, loc, addr);
static void emit(Program &P, llvm::SmallVectorImpl< std::byte > &Code, const T &Val, bool &Success)
Helper to write bytecode and bail out if 32-bit offsets become invalid.
static void emitStoresForConstant(CIRGenModule &cgm, const VarDecl &d, Address addr, bool isVolatile, CIRGenBuilderTy &builder, mlir::TypedAttr constant)
static std::string getStaticDeclName(CIRGenModule &cgm, const VarDecl &d)
This file defines OpenACC nodes for declarative directives.
static constexpr bool needsDtor()
Defines the clang::Expr interface and subclasses for C++ expressions.
*collection of selector each with an associated kind and an ordered *collection of selectors A selector has a kind
cir::ConditionOp createCondition(mlir::Value condition)
Create a loop condition.
cir::ConstantOp getConstant(mlir::Location loc, mlir::TypedAttr attr)
cir::PointerType getPointerTo(mlir::Type ty)
cir::DoWhileOp createDoWhile(mlir::Location loc, llvm::function_ref< void(mlir::OpBuilder &, mlir::Location)> condBuilder, llvm::function_ref< void(mlir::OpBuilder &, mlir::Location)> bodyBuilder)
Create a do-while operation.
mlir::Value createPtrBitcast(mlir::Value src, mlir::Type newPointeeTy)
mlir::Value createNot(mlir::Location loc, mlir::Value value)
cir::YieldOp createYield(mlir::Location loc, mlir::ValueRange value={})
Create a yield operation.
cir::LoadOp createFlagLoad(mlir::Location loc, mlir::Value addr)
Emit a load from an boolean flag variable.
llvm::TypeSize getTypeAllocSize(mlir::Type ty) const
Returns the offset in bytes between successive objects of the specified type, including alignment pad...
const LangOptions & getLangOpts() const
QualType getBaseElementType(const ArrayType *VAT) const
Return the innermost element type of an array type.
CharUnits getDeclAlign(const Decl *D, bool ForAlignof=false) const
Return a conservative estimate of the alignment of the specified decl D.
const ArrayType * getAsArrayType(QualType T) const
Type Query functions.
Represents an array type, per C99 6.7.5.2 - Array Declarators.
mlir::Value getPointer() const
mlir::Type getElementType() const
Address withElementType(CIRGenBuilderTy &builder, mlir::Type ElemTy) const
Return address with different element type, a bitcast pointer, and the same alignment.
clang::CharUnits getAlignment() const
cir::AllocaOp getUnderlyingAllocaOp() const
Return the underlying alloca for this address, if any.
static AggValueSlot forLValue(const LValue &LV, IsDestructed_t isDestructed, IsAliased_t isAliased, Overlap_t mayOverlap, IsZeroed_t isZeroed=IsNotZeroed)
cir::LoadOp createLoad(mlir::Location loc, Address addr, bool isVolatile=false, bool isNontemporal=false)
cir::StoreOp createStore(mlir::Location loc, mlir::Value val, Address dst, bool isVolatile=false, bool isNontemporal=false, mlir::IntegerAttr align={}, cir::SyncScopeKindAttr scope={}, cir::MemOrderAttr order={})
cir::StackRestoreOp createStackRestore(mlir::Location loc, mlir::Value v)
cir::ConstantOp getConstInt(mlir::Location loc, llvm::APSInt intVal)
An RAII class that suppresses cir.cleanup.scope creation for cleanups pushed onto the EH stack while ...
Captures cleanups for a loop's condition variable so that they can be emitted into the loop op's per-...
void emitOpenACCRoutine(const OpenACCRoutineDecl &d)
cir::GlobalOp addInitializerToStaticVarDecl(const VarDecl &d, cir::GlobalOp gv, cir::GetGlobalOp gvAddr)
Add the initializer for 'd' to the global variable that has already been created for it.
static cir::TypeEvaluationKind getEvaluationKind(clang::QualType type)
Return the cir::TypeEvaluationKind of QualType type.
AutoVarEmission emitAutoVarAlloca(const clang::VarDecl &d, mlir::OpBuilder::InsertPoint ip={})
void emitAutoVarTypeCleanup(const AutoVarEmission &emission, clang::QualType::DestructionKind dtorKind)
Enter a destroy cleanup for the given local variable.
void emitVariablyModifiedType(QualType ty)
const clang::LangOptions & getLangOpts() const
cir::AllocaOp createTempAlloca(mlir::Type ty, mlir::Location loc, const Twine &name="tmp", mlir::Value arraySize=nullptr, bool insertIntoFnEntryBlock=false)
This creates an alloca and inserts it into the entry block if ArraySize is nullptr,...
mlir::Block * getCurFunctionEntryBlock()
bool isInConditionalBranch() const
void emitOMPRequiresDecl(const OMPRequiresDecl &d)
VlaSizePair getVLASize(const VariableArrayType *type)
Returns an MLIR::Value+QualType pair that corresponds to the size, in non-variably-sized elements,...
void emitStaticVarDecl(const VarDecl &d, cir::GlobalLinkageKind linkage)
mlir::Value emitComplexExpr(const Expr *e)
Emit the computation of the specified expression of complex type, returning the result.
bool isTrivialInitializer(const Expr *init)
Determine whether the given initializer is trivial in the sense that it requires no code to be genera...
void emitOpenACCDeclare(const OpenACCDeclareDecl &d)
void pushIrregularPartialArrayCleanup(mlir::Value arrayBegin, Address arrayEndPointer, QualType elementType, CharUnits elementAlign, Destroyer *destroyer)
Push an EH cleanup to destroy already-constructed elements of the given array.
void emitLifetimeEndOp(mlir::Location loc, mlir::Value addr)
void pushCleanupAndDeferDeactivation(CleanupKind kind, As... a)
Push a cleanup and record it for deferred deactivation.
mlir::Location getLoc(clang::SourceLocation srcLoc)
Helpers to convert Clang's SourceLocation to a MLIR Location.
void emitLoopConditionVariable(const clang::VarDecl &d, DeferredLoopConditionCleanup &condCleanup)
Emit a loop's condition-variable declaration.
void emitOMPDeclareReduction(const OMPDeclareReductionDecl &d)
void emitExprAsInit(const clang::Expr *init, const clang::ValueDecl *d, LValue lvalue, bool capturedByInit=false)
Emit an expression as an initializer for an object (variable, field, etc.) at the given location.
void emitCXXGuardedInit(const VarDecl &varDecl, cir::GlobalOp globalOp, bool performInit)
Emit a guarded initializer for a static local variable.
mlir::Value emitArrayLength(const clang::ArrayType *arrayType, QualType &baseType, Address &addr)
Computes the length of an array in elements, as well as the base element type and a properly-typed fi...
RValue emitReferenceBindingToExpr(const Expr *e)
Emits a reference binding to the passed in expression.
void pushDestroyAndDeferDeactivation(QualType::DestructionKind dtorKind, Address addr, QualType type)
CleanupKind getCleanupKind(QualType::DestructionKind kind)
void emitOMPAllocateDecl(const OMPAllocateDecl &d)
void emitOMPDeclareMapper(const OMPDeclareMapperDecl &d)
EHScopeStack ehStack
Tracks function scope overall cleanup handling.
clang::SanitizerSet sanOpts
Sanitizers enabled for this function.
mlir::Type convertTypeForMem(QualType t)
void pushDestroy(QualType::DestructionKind dtorKind, Address addr, QualType type)
Push the standard destructor for the given type as at least a normal cleanup.
void emitVarDecl(const clang::VarDecl &d)
This method handles emission of any variable declaration inside a function, including static vars etc...
static Destroyer destroyCXXObject
Address returnValue
The temporary alloca to hold the return value.
void emitArrayDestroy(mlir::Value begin, mlir::Value numElements, QualType elementType, CharUnits elementAlign, Destroyer *destroyer)
Destroys all the elements of the given array, beginning from last to first.
void initFullExprCleanupWithFlag(Address activeFlag)
void emitStoreOfComplex(mlir::Location loc, mlir::Value v, LValue dest, bool isInit)
EmitStoreOfComplex - Store a complex number into the specified l-value.
void emitScalarInit(const clang::Expr *init, mlir::Location loc, LValue lvalue, bool capturedByInit=false)
bool haveInsertPoint() const
True if an insertion point is defined.
void emitAutoVarInit(const AutoVarEmission &emission)
Emit the initializer for an allocated variable.
void maybeEmitDeferredVarDeclInit(const VarDecl *vd)
mlir::Value emitScalarExpr(const clang::Expr *e, bool ignoreResultAssign=false)
Emit the computation of the specified expression of scalar type.
void pushStackRestore(CleanupKind kind, Address spMem)
void emitAutoVarDecl(const clang::VarDecl &d)
Emit code and set up symbol table for a variable declaration with auto, register, or no storage class...
bool needsEHCleanup(QualType::DestructionKind kind)
Determines whether an EH cleanup is required to destroy a type with the given destruction kind.
CIRGenBuilderTy & getBuilder()
bool didCallStackSave
Whether a cir.stacksave operation has been added.
void emitDecl(const clang::Decl &d, bool evaluateConditionDecl=false)
void emitDestroy(Address addr, QualType type, Destroyer *destroyer)
Immediately perform the destruction of the given object.
void pushPendingCleanupToEHStack(const PendingCleanupEntry &entry)
Promote a single pending cleanup entry onto the EH scope stack.
llvm::DenseMap< const VarDecl *, mlir::Value > nrvoFlags
A mapping from NRVO variables to the flags used to indicate when the NRVO has been applied to this va...
mlir::MLIRContext & getMLIRContext()
Destroyer * getDestroyer(clang::QualType::DestructionKind kind)
void Destroyer(CIRGenFunction &cgf, Address addr, QualType ty)
DeclMapTy localDeclMap
This keeps track of the CIR allocas or globals for local C declarations.
void pushEHDestroyIfNeeded(QualType::DestructionKind dtorKind, Address addr, QualType type)
pushEHDestroyIfNeeded - Push the standard destructor for the given type as an EH-only cleanup.
void emitOMPThreadPrivateDecl(const OMPThreadPrivateDecl &d)
void emitOMPGroupPrivateDecl(const OMPGroupPrivateDecl &d)
bool emitLifetimeStartOp(mlir::Location loc, mlir::Value addr)
LValue makeAddrLValue(Address addr, QualType ty, AlignmentSource source=AlignmentSource::Type)
void emitCXXDestructorCall(const CXXDestructorDecl *dd, CXXDtorType type, bool forVirtualBase, bool delegating, Address thisAddr, QualType thisTy)
void pushFullExprCleanup(CleanupKind kind, As... a)
Push a cleanup to be run at the end of the current full-expression.
std::optional< mlir::Location > currSrcLoc
Use to track source locations across nested visitor traversals.
clang::ASTContext & getContext() const
void setAddrOfLocalVar(const clang::VarDecl *vd, Address addr)
Set the address of a local variable.
void pushCleanupAfterFullExpr(CleanupKind kind, Address addr, QualType type, Destroyer *destroyer)
Queue a cleanup to be pushed after finishing the current full-expression.
void emitNullabilityCheck(LValue lhs, mlir::Value rhs, clang::SourceLocation loc)
Given an assignment *lhs = rhs, emit a test that checks if rhs is nonnull, if 1LHS is marked _Nonnull...
void emitOMPCapturedExpr(const OMPCapturedExprDecl &d)
void emitStoreThroughLValue(RValue src, LValue dst, bool isInit=false)
Store the specified rvalue into the specified lvalue, where both are guaranteed to the have the same ...
void pushLifetimeExtendedDestroy(CleanupKind kind, Address addr, QualType type, Destroyer *destroyer, bool useEHCleanupForArray)
Address createTempAllocaWithoutCast(mlir::Type ty, CharUnits align, mlir::Location loc, const Twine &name="tmp", mlir::Value arraySize=nullptr, mlir::OpBuilder::InsertPoint ip={})
This creates a alloca and inserts it into the entry block of the current region.
void emitAggExpr(const clang::Expr *e, AggValueSlot slot)
void emitAutoVarCleanups(const AutoVarEmission &emission)
This class organizes the cross-function state that is used while generating CIR code.
llvm::StringRef getMangledName(clang::GlobalDecl gd)
cir::GlobalOp getOrCreateStaticVarDecl(const VarDecl &d, cir::GlobalLinkageKind linkage)
DiagnosticBuilder errorNYI(SourceLocation, llvm::StringRef)
Helpers to emit "not yet implemented" error diagnostics.
clang::ASTContext & getASTContext() const
void insertGlobalSymbol(mlir::Operation *op)
mlir::Type convertType(clang::QualType type)
llvm::DenseMap< const VarDecl *, cir::GlobalOp > initializerConstants
void setGVProperties(mlir::Operation *op, const NamedDecl *d) const
Set visibility, dllimport/dllexport and dso_local.
static mlir::SymbolTable::Visibility getMLIRVisibilityFromCIRLinkage(cir::GlobalLinkageKind GLK)
void setTLSMode(mlir::Operation *op, const VarDecl &d, bool isExtendingDecl=false)
Set TLS mode for the given operation based on the given variable declaration.
const clang::LangOptions & getLangOpts() const
void setStaticLocalDeclAddress(const VarDecl *d, cir::GlobalOp c)
mlir::Location getLoc(clang::SourceLocation cLoc)
Helpers to convert the presumed location of Clang's SourceLocation to an MLIR Location.
mlir::ModuleOp getModule() const
bool supportsCOMDAT() const
mlir::MLIRContext & getMLIRContext()
mlir::Operation * getAddrOfGlobal(clang::GlobalDecl gd, ForDefinition_t isForDefinition=NotForDefinition)
cir::GlobalOp getStaticLocalDeclAddress(const VarDecl *d)
Address createUnnamedGlobalFrom(const VarDecl &d, mlir::Attribute constAttr, CharUnits align)
mlir::Type convertTypeForMem(clang::QualType, bool forBitField=false)
Convert type T into an mlir::Type.
void finalize(cir::GlobalOp gv)
mlir::Attribute tryEmitForInitializer(const VarDecl &d)
Try to emit the initializer of the given declaration as an abstract constant.
mlir::Attribute tryEmitAbstractForInitializer(const VarDecl &d)
Try to emit the initializer of the given declaration as an abstract constant.
A cleanup scope which generates the cleanup blocks lazily.
void setTestFlagInEHCleanup(bool value)
void setTestFlagInNormalCleanup(bool value)
bool isNormalCleanup() const
void setActiveFlag(Address var)
Information for lazily generating a cleanup.
Address getAddress() const
This trivial value class is used to represent the result of an expression that is evaluated.
static RValue get(mlir::Value v)
Represents a call to a C++ constructor.
Represents a C++ constructor within a class.
Represents a C++ destructor within a class.
CharUnits - This is an opaque type for sizes expressed in character units.
llvm::Align getAsAlign() const
getAsAlign - Returns Quantity as a valid llvm::Align, Beware llvm::Align assumes power of two 8-bit b...
static CharUnits One()
One - Construct a CharUnits quantity of one.
CharUnits alignmentOfArrayElement(CharUnits elementSize) const
Given that this is the alignment of the first element of an array, return the minimum alignment of an...
static CharUnits fromQuantity(QuantityType Quantity)
fromQuantity - Construct a CharUnits quantity from a raw integer type.
DeclContext - This is used only as base class of specific decl types that can act as declaration cont...
const DeclContext * getParentFunctionOrMethod(bool LexicalParent=false) const
If this decl is defined inside a function/method/block it returns the corresponding DeclContext,...
Decl * getNonClosureContext()
Find the innermost non-closure ancestor of this declaration, walking up through blocks,...
SourceLocation getLocation() const
const char * getDeclKindName() const
DeclContext * getDeclContext()
virtual SourceRange getSourceRange() const LLVM_READONLY
Source range that this declaration covers.
This represents one expression.
bool isConstantInitializer(ASTContext &Ctx, bool ForRef=false, const Expr **Culprit=nullptr) const
Returns true if this expression can be emitted to IR as a constant, and thus can be used as a constan...
SourceLocation getExprLoc() const LLVM_READONLY
getExprLoc - Return the preferred location for the arrow when diagnosing a problem with a generic exp...
GlobalDecl - represents a global declaration.
const Decl * getDecl() const
StringRef getName() const
Get the name of identifier for this declaration as a StringRef.
std::string getNameAsString() const
Get a human-readable name for the declaration, even if it is one of the special kinds of names (C++ c...
bool isExternallyVisible() const
A (possibly-)qualified type.
@ DK_objc_strong_lifetime
@ PDIK_Struct
The type is a struct containing a field whose type is not PCK_Trivial.
LangAS getAddressSpace() const
Return the address space of this type.
bool isConstantStorage(const ASTContext &Ctx, bool ExcludeCtor, bool ExcludeDtor)
bool isPODType(const ASTContext &Context) const
Determine whether this is a Plain Old Data (POD) type (C++ 3.9p10).
Represents a struct/union/class.
Encodes a location in the source.
SourceRange getSourceRange() const LLVM_READONLY
SourceLocation tokens are not useful in isolation - they are low level value objects created/interpre...
RecordDecl * getAsRecordDecl() const
Retrieves the RecordDecl this type refers to.
bool isConstantSizeType() const
Return true if this is not a variable sized type, according to the rules of C99 6....
bool isVariablyModifiedType() const
Whether this type is a variably-modified type (C99 6.7.5).
bool isVectorType() const
bool isRecordType() const
Represent the declaration of a variable (in which case it is an lvalue) a function (in which case it ...
Represents a variable declaration or definition.
bool isConstexpr() const
Whether this variable is (C++11) constexpr.
TLSKind getTLSKind() const
SourceRange getSourceRange() const override LLVM_READONLY
Source range that this declaration covers.
bool hasFlexibleArrayInit(const ASTContext &Ctx) const
Whether this variable has a flexible array member initialized with one or more elements.
bool hasGlobalStorage() const
Returns true for all variables that do not have local storage.
bool mightBeUsableInConstantExpressions(const ASTContext &C) const
Determine whether this variable's value might be usable in a constant expression, according to the re...
bool isNRVOVariable() const
Determine whether this local variable can be used with the named return value optimization (NRVO).
QualType::DestructionKind needsDestruction(const ASTContext &Ctx) const
Would the destruction of this variable have any effect, and if so, what kind?
const Expr * getInit() const
bool hasExternalStorage() const
Returns true if a variable has extern or private_extern storage.
bool hasLocalStorage() const
Returns true if a variable with function scope is a non-static local variable.
@ TLS_None
Not a TLS variable.
bool isLocalVarDecl() const
Returns true for local variable declarations other than parameters.
StorageDuration getStorageDuration() const
Get the storage duration of this variable, per C++ [basic.stc].
bool isEscapingByref() const
Indicates the capture is a __block variable that is captured by a block that can potentially escape (...
mlir::ptr::MemorySpaceAttrInterface normalizeDefaultAddressSpace(mlir::ptr::MemorySpaceAttrInterface addrSpace)
Normalize LangAddressSpace::Default to null (empty attribute).
@ Decl
The l-value was an access to a declared entity or something equivalently strong, like the address of ...
@ EHCleanup
Denotes a cleanup that should run when a scope is exited using exceptional control flow (a throw stat...
@ NormalCleanup
Denotes a cleanup that should run when a scope is exited using normal control flow (falling off the e...
const internal::VariadicAllOfMatcher< Type > type
Matches Types in the clang AST.
const AstTypeMatcher< ArrayType > arrayType
@ Address
A pointer to a ValueDecl.
Top level wrappers for InstallAPI frontend operations.
@ Ctor_Base
Base object ctor.
bool isa(CodeGen::Address addr)
@ SD_Automatic
Automatic storage duration (most local variables).
@ Dtor_Base
Base object dtor.
@ Dtor_Complete
Complete object dtor.
U cast(CodeGen::Address addr)
float __ovld __cnfn length(float)
Return the length of vector p, i.e., sqrt(p.x2 + p.y 2 + ...)
CallLifetimeEnd(mlir::Value addr)
void emit(CIRGenFunction &cgf, Flags flags) override
Emit the cleanup.
static bool objCLifetime()
static bool addAutoInitAnnotation()
static bool addressSpace()
static bool emitNullabilityCheck()
static bool useEHCleanupForArray()
static bool vectorConstants()
static bool aggValueSlotMayOverlap()
static bool dtorCleanups()
static bool dataLayoutTypeAllocSize()
static bool opAllocaCaptureByInit()
static bool lifetimeMarkersBypass()
static bool opAllocaPreciseLifetime()
static bool cudaSupport()
static bool generateDebugInfo()
bool wasEmittedAsGlobal() const
bool isEscapingByRef
True if the variable is a __block variable that is captured by an escaping block.
Address addr
The address of the alloca for languages with explicit address space (e.g.
bool useLifetimeMarkers
True if lifetime op should be used.
const clang::VarDecl * variable
bool isConstantAggregate
True if the variable is of aggregate type and has a constant initializer.
bool wasEmittedAsOffloadClause() const
Address getObjectAddress(CIRGenFunction &cgf) const
Returns the address of the object within this declaration.
A cleanup entry that will be promoted onto the EH scope stack at a later point.
clang::CharUnits getPointerAlign() const
cir::PointerType allocaInt8PtrTy
void* in alloca address space
mlir::ptr::MemorySpaceAttrInterface getCIRAllocaAddressSpace() const