18#include "mlir/IR/Location.h"
29 bool suppressNewContext)
40 switch (
type->getTypeClass()) {
41#define TYPE(name, parent)
42#define ABSTRACT_TYPE(name, parent)
43#define NON_CANONICAL_TYPE(name, parent) case Type::name:
44#define DEPENDENT_TYPE(name, parent) case Type::name:
45#define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(name, parent) case Type::name:
46#include "clang/AST/TypeNodes.inc"
47 llvm_unreachable(
"non-canonical or dependent type in IR-generation");
50 case Type::DeducedTemplateSpecialization:
51 llvm_unreachable(
"undeduced type in IR-generation");
56 case Type::BlockPointer:
57 case Type::LValueReference:
58 case Type::RValueReference:
59 case Type::MemberPointer:
62 case Type::ConstantMatrix:
63 case Type::FunctionProto:
64 case Type::FunctionNoProto:
66 case Type::ObjCObjectPointer:
69 case Type::HLSLAttributedResource:
70 case Type::HLSLInlineSpirv:
78 case Type::ConstantArray:
79 case Type::IncompleteArray:
80 case Type::VariableArray:
82 case Type::ObjCObject:
83 case Type::ObjCInterface:
84 case Type::ArrayParameter:
92 llvm_unreachable(
"unknown type kind!");
97 return cgm.getTypes().convertTypeForMem(t);
101 return cgm.getTypes().convertType(t);
111 return mlir::FileLineColLoc::get(builder.getStringAttr(filename),
115 assert(
currSrcLoc &&
"expected to inherit some source location");
126 mlir::Attribute metadata;
133 return builder.getUnknownLoc();
138 mlir::Attribute metadata;
165 ignoreCaseStmts =
true;
168 return std::any_of(
s->child_begin(),
s->child_end(),
169 [=](
const Stmt *subStmt) {
170 return containsLabel(subStmt, ignoreCaseStmts);
179 llvm::APSInt resultInt;
183 resultBool = resultInt.getBoolValue();
191 llvm::APSInt &resultInt,
199 llvm::APSInt intValue = result.
Val.
getInt();
203 resultInt = intValue;
207void CIRGenFunction::emitAndUpdateRetAlloca(
QualType type, mlir::Location loc,
209 if (!
type->isVoidType()) {
217void CIRGenFunction::declare(mlir::Value addrVal,
const Decl *var, QualType ty,
218 mlir::Location loc, CharUnits alignment,
221 assert(!
symbolTable.count(var) &&
"not supposed to be available just yet");
223 auto allocaOp = addrVal.getDefiningOp<cir::AllocaOp>();
224 assert(allocaOp &&
"expected cir::AllocaOp");
228 if (ty->isReferenceType() || ty.isConstQualified())
238 auto applyCleanup = [&]() {
253 for (mlir::Block *retBlock : localScope->
getRetBlocks()) {
254 mlir::OpBuilder::InsertionGuard guard(builder);
255 builder.setInsertionPointToEnd(retBlock);
256 retBlocks.push_back(retBlock);
257 mlir::Location retLoc = localScope->
getRetLoc(retBlock);
261 auto insertCleanupAndLeave = [&](mlir::Block *insPt) {
262 mlir::OpBuilder::InsertionGuard guard(builder);
263 builder.setInsertionPointToEnd(insPt);
275 cir::BrOp::create(builder, insPt->back().getLoc(), cleanupBlock);
276 if (!cleanupBlock->mightHaveTerminator()) {
277 mlir::OpBuilder::InsertionGuard guard(builder);
278 builder.setInsertionPointToEnd(cleanupBlock);
279 cir::YieldOp::create(builder, localScope->endLoc);
283 if (localScope->
depth == 0) {
288 mlir::Location retLoc = localScope->
getRetLoc(retBlock);
289 if (retBlock->getUses().empty()) {
294 for (mlir::BlockOperand &blockUse : retBlock->getUses()) {
295 cir::BrOp brOp = mlir::cast<cir::BrOp>(blockUse.getOwner());
296 brOp.setSuccessor(cleanupBlock);
300 cir::BrOp::create(builder, retLoc, retBlock);
304 emitImplicitReturn();
311 if (!localScope->
isTernary() && !insPt->mightHaveTerminator()) {
312 !retVal ? cir::YieldOp::create(builder, localScope->endLoc)
313 : cir::YieldOp::create(builder, localScope->endLoc, retVal);
323 insertCleanupAndLeave(cleanupBlock);
328 mlir::Block *curBlock = builder.getBlock();
331 if (curBlock->mightHaveTerminator() && curBlock->getTerminator())
335 bool entryBlock = builder.getInsertionBlock()->isEntryBlock();
336 if (!entryBlock && curBlock->empty()) {
338 for (mlir::Block *retBlock : retBlocks) {
339 if (retBlock->getUses().empty())
347 cir::BrOp::create(builder, curBlock->back().getLoc(), cleanupBlock);
352 insertCleanupAndLeave(curBlock);
355cir::ReturnOp CIRGenFunction::LexicalScope::emitReturn(mlir::Location loc) {
361 auto fn = dyn_cast<cir::FuncOp>(cgf.curFn);
362 assert(fn &&
"emitReturn from non-function");
363 if (!fn.getFunctionType().hasVoidReturn()) {
365 auto value = cir::LoadOp::create(
366 builder, loc, fn.getFunctionType().getReturnType(), *cgf.fnRetAlloca);
367 return cir::ReturnOp::create(builder, loc,
370 return cir::ReturnOp::create(builder, loc);
380 return classDecl->hasTrivialDestructor();
384void CIRGenFunction::LexicalScope::emitImplicitReturn() {
385 CIRGenBuilderTy &builder = cgf.getBuilder();
386 LexicalScope *localScope = cgf.curLexScope;
395 if (cgf.getLangOpts().CPlusPlus && !fd->hasImplicitReturnZero() &&
396 !cgf.sawAsmBlock && !fd->getReturnType()->isVoidType() &&
397 builder.getInsertionBlock()) {
398 bool shouldEmitUnreachable =
399 cgf.cgm.getCodeGenOpts().StrictReturn ||
402 if (shouldEmitUnreachable) {
404 if (cgf.cgm.getCodeGenOpts().OptimizationLevel == 0)
405 cir::TrapOp::create(builder, localScope->endLoc);
407 cir::UnreachableOp::create(builder, localScope->endLoc);
408 builder.clearInsertionPoint();
413 (void)emitReturn(localScope->endLoc);
421 scope = scope->parentScope;
434 if (value.getType() == ty)
437 assert((mlir::isa<cir::IntType>(ty) || cir::isAnyFloatingPointType(ty)) &&
438 "unexpected promotion type");
440 if (mlir::isa<cir::IntType>(ty))
441 return cgf.
getBuilder().CIRBaseBuilderTy::createIntCast(value, ty);
447 mlir::Block *entryBB,
451 if (fd && fd->
hasAttr<NakedAttr>()) {
452 cgm.errorNYI(bodyBeginLoc,
"naked function decl");
456 for (
const auto nameValue : llvm::zip(args, entryBB->getArguments())) {
457 const VarDecl *paramVar = std::get<0>(nameValue);
458 mlir::Value paramVal = std::get<1>(nameValue);
461 paramVal.setLoc(paramLoc);
463 mlir::Value addrVal =
468 declare(addrVal, paramVar, paramVar->
getType(), paramLoc, alignment,
481 mlir::Location fnBodyBegin =
getLoc(bodyBeginLoc);
482 builder.CIRBaseBuilderTy::createStore(fnBodyBegin, paramVal, addrVal);
484 assert(builder.getInsertionBlock() &&
"Should be valid");
488 cir::FuncOp fn, cir::FuncType funcType,
492 "CIRGenFunction can only be used for one function at a time");
500 const auto *fd = dyn_cast_or_null<FunctionDecl>(d);
505 mlir::Block *entryBB = &fn.getBlocks().front();
506 builder.setInsertionPointToStart(entryBB);
512 if (
Stmt *body = fd->getBody())
513 bodyBeginLoc = body->getBeginLoc();
515 bodyBeginLoc = fd->getLocation();
527 if (
Stmt *body = fd->getBody())
528 bodyEndLoc = body->getEndLoc();
530 bodyEndLoc = fd->getLocation();
532 emitAndUpdateRetAlloca(returnType,
getLoc(bodyEndLoc),
533 getContext().getTypeAlignInChars(returnType));
536 if (isa_and_nonnull<CXXMethodDecl>(d) &&
538 cgm.getCXXABI().emitInstanceFunctionProlog(loc, *
this);
541 if (md->getParent()->isLambda() && md->getOverloadedOperator() == OO_Call) {
543 auto fn = dyn_cast<cir::FuncOp>(
curFn);
544 assert(fn &&
"lambda in non-function region");
570 for (
auto *fd : md->getParent()->fields()) {
571 if (fd->hasCapturedVLAType())
572 cgm.errorNYI(loc,
"lambda captured VLA type");
587 for (cir::BlockAddressOp &blockAddress :
cgm.unresolvedBlockAddressToLabel) {
588 cir::LabelOp labelOp =
589 cgm.lookupBlockAddressInfo(blockAddress.getBlockAddrInfo());
590 assert(labelOp &&
"expected cir.labelOp to already be emitted");
591 cgm.updateResolvedBlockAddress(blockAddress, labelOp);
593 cgm.unresolvedBlockAddressToLabel.clear();
601 mlir::OpBuilder::InsertionGuard guard(builder);
603 for (
auto &[blockAdd, labelOp] :
cgm.blockAddressToLabel) {
604 succesors.push_back(labelOp->getBlock());
605 rangeOperands.push_back(labelOp->getBlock()->getArguments());
607 cir::IndirectBrOp::create(builder, builder.getUnknownLoc(),
609 rangeOperands, succesors);
610 cgm.blockAddressToLabel.clear();
625 indrBr.setPoison(
true);
645 if (
const CompoundStmt *block = dyn_cast<CompoundStmt>(body))
656 for (mlir::Block &block : func.getBlocks()) {
657 if (block.empty() && block.getUses().empty())
658 blocksToDelete.push_back(&block);
660 for (mlir::Block *block : blocksToDelete)
665 cir::FuncType funcType) {
669 if (funcDecl->isInlineBuiltinDeclaration()) {
673 std::string fdInlineName = (
cgm.getMangledName(funcDecl) +
".inline").str();
675 mlir::cast_or_null<cir::FuncOp>(
cgm.getGlobalValue(fdInlineName));
677 mlir::OpBuilder::InsertionGuard guard(builder);
678 builder.setInsertionPoint(fn);
679 clone = cir::FuncOp::create(builder, fn.getLoc(), fdInlineName,
680 fn.getFunctionType());
681 clone.setLinkage(cir::GlobalLinkageKind::InternalLinkage);
682 clone.setSymVisibility(
"private");
683 clone.setInlineKind(cir::InlineKind::AlwaysInline);
685 fn.setLinkage(cir::GlobalLinkageKind::ExternalLinkage);
686 fn.setSymVisibility(
"private");
694 if (LLVM_UNLIKELY(pd->isInlineBuiltinDeclaration())) {
695 std::string inlineName = funcDecl->getName().str() +
".inline";
696 if (
auto inlineFn = mlir::cast_or_null<cir::FuncOp>(
697 cgm.getGlobalValue(inlineName))) {
702 .replaceAllSymbolUses(fn.getSymNameAttr(),
cgm.getModule())
704 llvm_unreachable(
"Failed to replace inline builtin symbol uses");
713 Stmt *body = funcDecl->getBody();
718 : builder.getUnknownLoc()};
721 return clangLoc.isValid() ?
getLoc(clangLoc) : builder.getUnknownLoc();
723 const mlir::Location fusedLoc = mlir::FusedLoc::get(
725 {validMLIRLoc(bodyRange.
getBegin()), validMLIRLoc(bodyRange.
getEnd())});
726 mlir::Block *entryBB = fn.addEntryBlock();
740 if (body && isa_and_nonnull<CoroutineBodyStmt>(body))
741 llvm::append_range(
fnArgs, funcDecl->parameters());
748 funcDecl->hasAttr<CUDAGlobalAttr>()) {
769 llvm_unreachable(
"no definition for normal function");
772 if (mlir::failed(fn.verifyBody()))
787 assert((
cgm.getTarget().getCXXABI().hasConstructorVariants() ||
789 "can only generate complete ctor for this ABI");
794 cgm.getTarget().getCXXABI().hasConstructorVariants()) {
800 Stmt *body = ctor->getBody(definition);
801 assert(definition == ctor &&
"emitting wrong constructor body");
803 if (isa_and_nonnull<CXXTryStmt>(body)) {
804 cgm.errorNYI(ctor->getSourceRange(),
"emitConstructorBody: try body");
819 if (mlir::failed(
emitStmt(body,
true))) {
820 cgm.errorNYI(ctor->getSourceRange(),
821 "emitConstructorBody: emit body statement failed.");
865 const bool isTryBody = isa_and_nonnull<CXXTryStmt>(body);
881 llvm_unreachable(
"not expecting a unified dtor");
883 llvm_unreachable(
"not expecting a COMDAT");
886 llvm_unreachable(
"already handled deleting case");
889 assert((body ||
getTarget().getCXXABI().isMicrosoft()) &&
890 "can't emit a dtor without a body for non-Microsoft ABIs");
918 assert(dtor->
isImplicit() &&
"bodyless dtor not implicit");
944 CharUnits align =
cgm.getNaturalTypeAlignment(ty, &baseInfo);
951 CharUnits alignment =
cgm.getNaturalTypeAlignment(ty, &baseInfo);
960 QualType retTy = fd->getReturnType();
962 const auto *md = dyn_cast<CXXMethodDecl>(fd);
963 if (md && md->isInstance()) {
964 if (
cgm.getCXXABI().hasThisReturn(gd))
965 cgm.errorNYI(fd->getSourceRange(),
"this return");
966 else if (
cgm.getCXXABI().hasMostDerivedReturn(gd))
967 cgm.errorNYI(fd->getSourceRange(),
"most derived return");
968 cgm.getCXXABI().buildThisParam(*
this, args);
971 if (
const auto *cd = dyn_cast<CXXConstructorDecl>(fd))
972 if (cd->getInheritedConstructor())
973 cgm.errorNYI(fd->getSourceRange(),
974 "buildFunctionArgList: inherited constructor");
976 for (
auto *param : fd->parameters())
977 args.push_back(param);
980 cgm.getCXXABI().addImplicitStructorParams(*
this, retTy, args);
993 std::string(
"l-value not implemented for '") +
996 case Expr::ConditionalOperatorClass:
998 case Expr::BinaryConditionalOperatorClass:
1000 case Expr::ArraySubscriptExprClass:
1002 case Expr::ExtVectorElementExprClass:
1004 case Expr::UnaryOperatorClass:
1006 case Expr::StringLiteralClass:
1008 case Expr::MemberExprClass:
1010 case Expr::CompoundLiteralExprClass:
1012 case Expr::PredefinedExprClass:
1014 case Expr::BinaryOperatorClass:
1016 case Expr::CompoundAssignOperatorClass: {
1020 "CompoundAssignOperator with AtomicType");
1028 case Expr::CallExprClass:
1029 case Expr::CXXMemberCallExprClass:
1030 case Expr::CXXOperatorCallExprClass:
1031 case Expr::UserDefinedLiteralClass:
1033 case Expr::ExprWithCleanupsClass: {
1040 case Expr::CXXDefaultArgExprClass: {
1045 case Expr::ParenExprClass:
1047 case Expr::GenericSelectionExprClass:
1049 case Expr::DeclRefExprClass:
1051 case Expr::CStyleCastExprClass:
1052 case Expr::CXXStaticCastExprClass:
1053 case Expr::CXXDynamicCastExprClass:
1054 case Expr::ImplicitCastExprClass:
1056 case Expr::MaterializeTemporaryExprClass:
1058 case Expr::OpaqueValueExprClass:
1060 case Expr::ChooseExprClass:
1067 llvm::raw_svector_ostream
out(buffer);
1069 return std::string(
out.str());
1089 cgm.errorNYI(loc,
"Cast the dest ptr to the appropriate i8 pointer type");
1098 "emitNullInitialization for zero size VariableArrayType");
1108 if (!
cgm.getTypes().isZeroInitializable(ty)) {
1109 cgm.errorNYI(loc,
"type is not zero initializable");
1116 const mlir::Value zeroValue = builder.getNullValue(
convertType(ty), loc);
1117 builder.createStore(loc, zeroValue, destPtr);
1124 if (ce->
getCastKind() == CK_UncheckedDerivedToBase)
1134 if (ice->isGLValue())
1156 uint64_t countFromCLAs = 1;
1159 auto cirArrayType = mlir::dyn_cast<cir::ArrayType>(addr.
getElementType());
1161 while (cirArrayType) {
1163 countFromCLAs *= cirArrayType.getSize();
1167 mlir::dyn_cast<cir::ArrayType>(cirArrayType.getElementType());
1171 "CIR and Clang types are out-of-sync");
1178 cgm.errorNYI(*
currSrcLoc,
"length for non-array underlying types");
1190 mlir::OpBuilder::InsertionGuard guard(builder);
1192 builder.createBlock(builder.getBlock()->getParent(), {}, {voidPtrTy},
1193 {builder.getUnknownLoc()});
1198 SourceLocation assumptionLoc, int64_t alignment, mlir::Value offsetValue) {
1200 return cir::AssumeAlignedOp::create(builder,
getLoc(assumptionLoc), ptrValue,
1201 alignment, offsetValue);
1206 int64_t alignment, mlir::Value offsetValue) {
1215 cgm.getASTContext().getAsVariableArrayType(
type);
1216 assert(vla &&
"type was not a variable array type!");
1223 mlir::Value numElements;
1227 elementType =
type->getElementType();
1229 assert(vlaSize &&
"no size for VLA!");
1230 assert(vlaSize.getType() ==
sizeTy);
1233 numElements = vlaSize;
1239 builder.createMul(numElements.getLoc(), numElements, vlaSize,
1242 }
while ((
type =
getContext().getAsVariableArrayType(elementType)));
1244 assert(numElements &&
"Undefined elements number");
1245 return {numElements, elementType};
1251 assert(vlaSize &&
"no size for VLA!");
1252 assert(vlaSize.getType() ==
sizeTy);
1259 assert(
type->isVariablyModifiedType() &&
1260 "Must pass variably modified type to EmitVLASizes!");
1265 assert(
type->isVariablyModifiedType());
1267 const Type *ty =
type.getTypePtr();
1269 case Type::CountAttributed:
1270 case Type::PackIndexing:
1271 case Type::ArrayParameter:
1272 case Type::HLSLAttributedResource:
1273 case Type::HLSLInlineSpirv:
1274 case Type::PredefinedSugar:
1275 cgm.errorNYI(
"CIRGenFunction::emitVariablyModifiedType");
1278#define TYPE(Class, Base)
1279#define ABSTRACT_TYPE(Class, Base)
1280#define NON_CANONICAL_TYPE(Class, Base)
1281#define DEPENDENT_TYPE(Class, Base) case Type::Class:
1282#define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base)
1283#include "clang/AST/TypeNodes.inc"
1285 "dependent type must be resolved before the CIR codegen");
1291 case Type::ExtVector:
1292 case Type::ConstantMatrix:
1296 case Type::TemplateSpecialization:
1297 case Type::ObjCTypeParam:
1298 case Type::ObjCObject:
1299 case Type::ObjCInterface:
1300 case Type::ObjCObjectPointer:
1302 llvm_unreachable(
"type class is never variably-modified!");
1304 case Type::Adjusted:
1316 case Type::BlockPointer:
1320 case Type::LValueReference:
1321 case Type::RValueReference:
1325 case Type::MemberPointer:
1329 case Type::ConstantArray:
1330 case Type::IncompleteArray:
1335 case Type::VariableArray: {
1352 entry = builder.createIntCast(size,
sizeTy);
1359 case Type::FunctionProto:
1360 case Type::FunctionNoProto:
1366 case Type::UnaryTransform:
1367 case Type::Attributed:
1368 case Type::BTFTagAttributed:
1369 case Type::SubstTemplateTypeParm:
1370 case Type::MacroQualified:
1376 case Type::Decltype:
1378 case Type::DeducedTemplateSpecialization:
1382 case Type::TypeOfExpr:
1395 }
while (
type->isVariablyModifiedType());
1399 if (
getContext().getBuiltinVaListType()->isArrayType())
Defines the clang::Expr interface and subclasses for C++ expressions.
__device__ __2f16 float __ockl_bool s
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
SourceManager & getSourceManager()
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.
CharUnits getTypeSizeInChars(QualType T) const
Return the size of the specified (complete) type T, in characters.
Represents an array type, per C99 6.7.5.2 - Array Declarators.
QualType getElementType() const
mlir::Type getElementType() const
mlir::Value createFloatingCast(mlir::Value v, mlir::Type destType)
Enters a new scope for capturing cleanups, all of which will be executed once the scope is exited.
void forceCleanup()
Force the emission of cleanups now, instead of waiting until this object is destroyed.
static bool isConstructorDelegationValid(const clang::CXXConstructorDecl *ctor)
Checks whether the given constructor is a valid subject for the complete-to-base constructor delegati...
void emitFunctionProlog(const FunctionArgList &args, mlir::Block *entryBB, const FunctionDecl *fd, SourceLocation bodyBeginLoc)
Emit the function prologue: declare function arguments in the symbol table.
mlir::Type convertType(clang::QualType t)
LValue emitOpaqueValueLValue(const OpaqueValueExpr *e)
static cir::TypeEvaluationKind getEvaluationKind(clang::QualType type)
Return the cir::TypeEvaluationKind of QualType type.
clang::GlobalDecl curGD
The GlobalDecl for the current function being compiled or the global variable currently being initial...
EHScopeStack::stable_iterator prologueCleanupDepth
The cleanup depth enclosing all the cleanups associated with the parameters.
cir::FuncOp generateCode(clang::GlobalDecl gd, cir::FuncOp fn, cir::FuncType funcType)
Address emitPointerWithAlignment(const clang::Expr *expr, LValueBaseInfo *baseInfo=nullptr)
Given an expression with a pointer type, emit the value and compute our best estimate of the alignmen...
void emitVariablyModifiedType(QualType ty)
RValue emitLoadOfLValue(LValue lv, SourceLocation loc)
Given an expression that represents a value lvalue, this method emits the address of the lvalue,...
const clang::LangOptions & getLangOpts() const
mlir::Value cxxStructorImplicitParamValue
VlaSizePair getVLASize(const VariableArrayType *type)
Returns an MLIR::Value+QualType pair that corresponds to the size, in non-variably-sized elements,...
LValue makeNaturalAlignPointeeAddrLValue(mlir::Value v, clang::QualType t)
Given a value of type T* that may not be to a complete object, construct an l-vlaue withi the natural...
LValue emitMemberExpr(const MemberExpr *e)
const TargetInfo & getTarget() const
LValue emitConditionalOperatorLValue(const AbstractConditionalOperator *expr)
LValue emitLValue(const clang::Expr *e)
Emit code to compute a designator that specifies the location of the expression.
const clang::Decl * curFuncDecl
Address loadCXXThisAddress()
LValue emitLValueForLambdaField(const FieldDecl *field)
std::string getCounterRefTmpAsString()
LValue makeNaturalAlignAddrLValue(mlir::Value val, QualType ty)
llvm::DenseMap< const Expr *, mlir::Value > vlaSizeMap
bool constantFoldsToSimpleInteger(const clang::Expr *cond, llvm::APSInt &resultInt, bool allowLabels=false)
If the specified expression does not fold to a constant, or if it does fold but contains a label,...
LValue emitComplexCompoundAssignmentLValue(const CompoundAssignOperator *e)
mlir::Location getLoc(clang::SourceLocation srcLoc)
Helpers to convert Clang's SourceLocation to a MLIR Location.
bool constantFoldsToBool(const clang::Expr *cond, bool &resultBool, bool allowLabels=false)
If the specified expression does not fold to a constant, or if it does but contains a label,...
void emitDelegateCXXConstructorCall(const clang::CXXConstructorDecl *ctor, clang::CXXCtorType ctorType, const FunctionArgList &args, clang::SourceLocation loc)
VlaSizePair getVLAElements1D(const VariableArrayType *vla)
Return the number of elements for a single dimension for the given array type.
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...
void emitNullInitialization(mlir::Location loc, Address destPtr, QualType ty)
LValue emitArraySubscriptExpr(const clang::ArraySubscriptExpr *e)
llvm::ScopedHashTableScope< const clang::Decl *, mlir::Value > SymTableScopeTy
mlir::Block * indirectGotoBlock
IndirectBranch - The first time an indirect goto is seen we create a block reserved for the indirect ...
mlir::Operation * curFn
The current function or global initializer that is generated code for.
EHScopeStack ehStack
Tracks function scope overall cleanup handling.
void enterDtorCleanups(const CXXDestructorDecl *dtor, CXXDtorType type)
Enter the cleanups necessary to complete the given phase of destruction for a destructor.
llvm::SmallVector< const ParmVarDecl * > fnArgs
Save Parameter Decl for coroutine.
std::optional< mlir::Value > fnRetAlloca
The compiler-generated variable that holds the return value.
void emitImplicitAssignmentOperatorBody(FunctionArgList &args)
mlir::Type convertTypeForMem(QualType t)
clang::QualType buildFunctionArgList(clang::GlobalDecl gd, FunctionArgList &args)
void emitCtorPrologue(const clang::CXXConstructorDecl *ctor, clang::CXXCtorType ctorType, FunctionArgList &args)
This routine generates necessary code to initialize base classes and non-static data members belongin...
mlir::Value emitAlloca(llvm::StringRef name, mlir::Type ty, mlir::Location loc, clang::CharUnits alignment, bool insertIntoFnEntryBlock, mlir::Value arraySize=nullptr)
LValue emitCompoundAssignmentLValue(const clang::CompoundAssignOperator *e)
Address returnValue
The temporary alloca to hold the return value.
void finishFunction(SourceLocation endLoc)
mlir::LogicalResult emitFunctionBody(const clang::Stmt *body)
std::string getCounterAggTmpAsString()
LValue emitUnaryOpLValue(const clang::UnaryOperator *e)
clang::FieldDecl * lambdaThisCaptureField
const clang::Decl * curCodeDecl
This is the inner-most code context, which includes blocks.
void emitConstructorBody(FunctionArgList &args)
LValue emitCallExprLValue(const clang::CallExpr *e)
bool haveInsertPoint() const
True if an insertion point is defined.
void finishIndirectBranch()
LValue emitStringLiteralLValue(const StringLiteral *e, llvm::StringRef name=".str")
void resolveBlockAddresses()
mlir::Value emitScalarExpr(const clang::Expr *e, bool ignoreResultAssign=false)
Emit the computation of the specified expression of scalar type.
bool shouldNullCheckClassCastValue(const CastExpr *ce)
CIRGenBuilderTy & getBuilder()
bool didCallStackSave
Whether a cir.stacksave operation has been added.
LValue emitBinaryOperatorLValue(const BinaryOperator *e)
void startFunction(clang::GlobalDecl gd, clang::QualType returnType, cir::FuncOp fn, cir::FuncType funcType, FunctionArgList args, clang::SourceLocation loc, clang::SourceLocation startLoc)
Emit code for the start of a function.
CIRGenModule & getCIRGenModule()
unsigned counterRefTmp
Hold counters for incrementally naming temporaries.
mlir::MLIRContext & getMLIRContext()
void emitDestructorBody(FunctionArgList &args)
Emits the body of the current destructor.
LValue emitCastLValue(const CastExpr *e)
Casts are never lvalues unless that cast is to a reference type.
bool containsLabel(const clang::Stmt *s, bool ignoreCaseStmts=false)
Return true if the statement contains a label in it.
LValue emitDeclRefLValue(const clang::DeclRefExpr *e)
llvm::DenseMap< const clang::ValueDecl *, clang::FieldDecl * > lambdaCaptureFields
mlir::Value emitAlignmentAssumption(mlir::Value ptrValue, QualType ty, SourceLocation loc, SourceLocation assumptionLoc, int64_t alignment, mlir::Value offsetValue=nullptr)
LValue makeAddrLValue(Address addr, QualType ty, AlignmentSource source=AlignmentSource::Type)
LValue emitPredefinedLValue(const PredefinedExpr *e)
void emitCXXDestructorCall(const CXXDestructorDecl *dd, CXXDtorType type, bool forVirtualBase, bool delegating, Address thisAddr, QualType thisTy)
void emitLambdaStaticInvokeBody(const CXXMethodDecl *md)
void instantiateIndirectGotoBlock()
CIRGenFunction(CIRGenModule &cgm, CIRGenBuilderTy &builder, bool suppressNewContext=false)
std::optional< mlir::Location > currSrcLoc
Use to track source locations across nested visitor traversals.
LValue emitMaterializeTemporaryExpr(const MaterializeTemporaryExpr *e)
LValue emitExtVectorElementExpr(const ExtVectorElementExpr *e)
clang::ASTContext & getContext() const
void setAddrOfLocalVar(const clang::VarDecl *vd, Address addr)
Set the address of a local variable.
mlir::Value cxxabiThisValue
mlir::LogicalResult emitStmt(const clang::Stmt *s, bool useCurrentScope, llvm::ArrayRef< const Attr * > attrs={})
void popCleanupBlocks(EHScopeStack::stable_iterator oldCleanupStackDepth)
Takes the old cleanup stack size and emits the cleanup blocks that have been added.
Address emitVAListRef(const Expr *e)
Build a "reference" to a va_list; this is either the address or the value of the expression,...
mlir::LogicalResult emitCompoundStmtWithoutScope(const clang::CompoundStmt &s, Address *lastValue=nullptr, AggValueSlot slot=AggValueSlot::ignored())
void emitIgnoredExpr(const clang::Expr *e)
Emit code to compute the specified expression, ignoring the result.
LValue emitCompoundLiteralLValue(const CompoundLiteralExpr *e)
This class organizes the cross-function state that is used while generating CIR code.
DiagnosticBuilder errorNYI(SourceLocation, llvm::StringRef)
Helpers to emit "not yet implemented" error diagnostics.
Type for representing both the decl and type of parameters to a function.
Address getAddress() const
mlir::Value getPointer() const
mlir::Value getValue() const
Return the value of this scalar value.
Represents a C++ destructor within a class.
const CXXRecordDecl * getParent() const
Return the parent of this method declaration, which is the class in which this method is defined.
QualType getFunctionObjectParameterType() const
bool isAbstract() const
Determine whether this class has a pure virtual function.
bool isEmpty() const
Determine whether this is an empty class in the sense of (C++11 [meta.unary.prop]).
CastExpr - Base class for type casts, including both implicit casts (ImplicitCastExpr) and explicit c...
CastKind getCastKind() const
CharUnits - This is an opaque type for sizes expressed in character units.
bool isZero() const
isZero - Test whether the quantity equals zero.
CompoundStmt - This represents a group of statements like { stmt stmt }.
bool isImplicit() const
isImplicit - Indicates whether the declaration was implicitly generated by the implementation.
Decl * getNonClosureContext()
Find the innermost non-closure ancestor of this declaration, walking up through blocks,...
This represents one expression.
bool EvaluateAsInt(EvalResult &Result, const ASTContext &Ctx, SideEffectsKind AllowSideEffects=SE_NoSideEffects, bool InConstantContext=false) const
EvaluateAsInt - Return true if this is a constant which we can fold and convert to an integer,...
Expr * IgnoreParens() LLVM_READONLY
Skip past any parentheses which might surround this expression until reaching a fixed point.
Represents a function declaration or definition.
Stmt * getBody(const FunctionDecl *&Definition) const
Retrieve the body (definition) of the function.
SourceRange getSourceRange() const override LLVM_READONLY
Source range that this declaration covers.
FunctionDecl * getPreviousDecl()
Return the previous declaration of this declaration or NULL if this is the first declaration.
GlobalDecl - represents a global declaration.
const Decl * getDecl() const
ImplicitCastExpr - Allows us to explicitly represent implicit type conversions, which have no direct ...
Represents an unpacked "presumed" location which can be presented to the user.
unsigned getColumn() const
Return the presumed column number of this location.
const char * getFilename() const
Return the presumed filename of this location.
unsigned getLine() const
Return the presumed line number of this location.
A (possibly-)qualified type.
bool isTriviallyCopyableType(const ASTContext &Context) const
Return true if this is a trivially copyable type (C++0x [basic.types]p9)
Encodes a location in the source.
bool isValid() const
Return true if this is a valid SourceLocation object.
This class handles loading and caching of source files into memory.
PresumedLoc getPresumedLoc(SourceLocation Loc, bool UseLineDirectives=true) const
Returns the "presumed" location of a SourceLocation specifies.
A trivial tuple used to represent a source range.
SourceLocation getEnd() const
SourceLocation getBegin() const
Stmt - This represents one statement.
StmtClass getStmtClass() const
SourceRange getSourceRange() const LLVM_READONLY
SourceLocation tokens are not useful in isolation - they are low level value objects created/interpre...
const char * getStmtClassName() const
CXXRecordDecl * getAsCXXRecordDecl() const
Retrieves the CXXRecordDecl that this type refers to, either because the type is a RecordType or beca...
bool isAnyComplexType() const
TypeClass getTypeClass() const
const T * getAs() const
Member-template getAs<specific type>'.
Represents a variable declaration or definition.
SourceRange getSourceRange() const override LLVM_READONLY
Source range that this declaration covers.
Represents a C array with a specified size that is not an integer-constant-expression.
Expr * getSizeExpr() const
@ Type
The l-value was considered opaque, so the alignment was determined from a type.
@ Decl
The l-value was an access to a declared entity or something equivalently strong, like the address of ...
static std::string getVersionedTmpName(llvm::StringRef name, unsigned cnt)
static bool mayDropFunctionReturn(const ASTContext &astContext, QualType returnType)
static mlir::Value emitArgumentDemotion(CIRGenFunction &cgf, const VarDecl *var, mlir::Value value)
An argument came in as a promoted argument; demote it back to its declared type.
static void eraseEmptyAndUnusedBlocks(cir::FuncOp func)
const internal::VariadicAllOfMatcher< Type > type
Matches Types in the clang AST.
const AstTypeMatcher< ArrayType > arrayType
const internal::VariadicDynCastAllOfMatcher< Stmt, Expr > expr
Matches expressions.
CXXCtorType
C++ constructor types.
@ Ctor_Base
Base object ctor.
@ Ctor_Complete
Complete object ctor.
bool isa(CodeGen::Address addr)
CXXDtorType
C++ destructor types.
@ Dtor_VectorDeleting
Vector deleting dtor.
@ Dtor_Comdat
The COMDAT used for dtors.
@ Dtor_Unified
GCC-style unified dtor.
@ Dtor_Base
Base object dtor.
@ Dtor_Complete
Complete object dtor.
@ Dtor_Deleting
Deleting dtor.
U cast(CodeGen::Address addr)
static bool vtableInitialization()
static bool constructABIArgDirectExtend()
static bool coroEndBuiltinCall()
static bool runCleanupsScope()
static bool emitTypeCheck()
static bool generateDebugInfo()
static bool cleanupWithPreservedValues()
static bool incrementProfileCounter()
Represents a scope, including function bodies, compound statements, and the substatements of if/while...
llvm::ArrayRef< mlir::Block * > getRetBlocks()
LexicalScope(CIRGenFunction &cgf, mlir::Location loc, mlir::Block *eb)
mlir::Block * getCleanupBlock(mlir::OpBuilder &builder)
cir::TryOp getClosestTryParent()
mlir::Location getRetLoc(mlir::Block *b)
EvalResult is a struct with detailed info about an evaluated expression.
APValue Val
Val - This is the value the expression can be folded to.