24#include "llvm/ADT/Sequence.h"
25#include "llvm/Support/TrailingObjects.h"
31struct MemberCallInfo {
45 "Trying to emit a member or operator call expr on a static method!");
60 unsigned prefixSize = args.size() - 1;
75 fpt->getNumParams() == 0 &&
76 "No CallExpr specified for function with non-zero number of arguments");
80 return {required, prefixSize};
109 auto [ calleePtr, adjustedThis] =
110 builder.createGetMethod(loc, memFnPtr, thisAddr.getPointer());
122 return emitCall(
cgm.getTypes().arrangeCXXMethodCall(argsList, fpt, required,
134 bool canUseVirtualCall = md->
isVirtual() && !hasQualifier;
138 if (canUseVirtualCall &&
142 assert(devirtualizedMethod);
158 devirtualizedMethod =
nullptr;
168 devirtualizedMethod =
nullptr;
184 if (
auto *oce = dyn_cast<CXXOperatorCallExpr>(ce)) {
185 if (oce->isAssignmentOp()) {
186 rtlArgs = &rtlArgStorage;
205 "emitCXXMemberOrOperatorMemberCallExpr: constructor call");
215 devirtualizedMethod ? devirtualizedMethod : md;
217 if (
const auto *dtor = dyn_cast<CXXDestructorDecl>(calleeDecl))
218 fInfo = &
cgm.getTypes().arrangeCXXStructorDeclaration(
221 fInfo = &
cgm.getTypes().arrangeCXXMethodDeclaration(calleeDecl);
223 cir::FuncType ty =
cgm.getTypes().getFunctionType(*fInfo);
234 bool useVirtualCall = canUseVirtualCall && !devirtualizedMethod;
236 if (
const auto *dtor = dyn_cast<CXXDestructorDecl>(calleeDecl)) {
238 "Destructor shouldn't have explicit parameters");
239 assert(
returnValue.isNull() &&
"Destructor shouldn't have return value");
240 if (useVirtualCall) {
248 if (!devirtualizedMethod) {
250 cgm.getAddrOfCXXStructor(globalDecl, fInfo, ty), globalDecl);
268 if (useVirtualCall) {
274 "emitCXXMemberOrOperatorMemberCallExpr: AppleKext");
284 cgm.getCXXABI().adjustThisArgumentForVirtualFunctionCall(
285 *
this, calleeDecl, thisPtr.
getAddress(), useVirtualCall);
299 "Trying to emit a member call expr on a static method!");
309 cgm.errorNYI(
"CUDA Device side kernel call");
320 *
this, md, thisPtr, implicitParam, implicitParamTy, ce, args, rtlArgs);
321 auto &fnInfo =
cgm.getTypes().arrangeCXXMethodCall(
322 args, fpt, callInfo.reqArgs, callInfo.prefixSize);
323 assert((ce ||
currSrcLoc) &&
"expected source location");
358 "emitNullBaseClassInitialization: base constant is not null");
367 assert(stores.size() == 1 &&
"Expected only one store");
369 "Expected store to begin at offset zero");
379 assert(!dest.
isIgnored() &&
"Must have a destination!");
426 bool forVirtualBase =
false;
427 bool delegating =
false;
439 forVirtualBase =
true;
464 unsigned minElements,
465 mlir::Value &numElements,
466 mlir::Value &sizeWithoutCookie) {
474 return sizeWithoutCookie;
491 llvm::APInt arraySizeMultiplier(sizeWidth, 1);
494 type = cat->getElementType();
495 arraySizeMultiplier *= cat->getSize();
499 llvm::APInt typeSizeMultiplier(sizeWidth, typeSize.
getQuantity());
500 typeSizeMultiplier *= arraySizeMultiplier;
503 llvm::APInt cookieSize(sizeWidth,
513 mlir::Attribute constNumElements =
516 if (constNumElements) {
518 const llvm::APInt &count =
519 mlir::cast<cir::IntAttr>(constNumElements).getValue();
521 [[maybe_unused]]
unsigned numElementsWidth = count.getBitWidth();
522 bool hasAnyOverflow =
false;
532 assert(!count.isNegative() &&
"Expected non-negative array size");
533 assert(numElementsWidth <= sizeWidth &&
534 "Expected a size_t array size constant");
537 llvm::APInt adjustedCount = count.zextOrTrunc(sizeWidth);
549 llvm::APInt allocationSize =
550 adjustedCount.umul_ov(typeSizeMultiplier, overflow);
553 assert(!overflow &&
"Overflow in array allocation size");
556 if (cookieSize != 0) {
560 loc, allocationSize.zextOrTrunc(sizeWidth));
562 allocationSize = allocationSize.uadd_ov(cookieSize, overflow);
563 hasAnyOverflow |= overflow;
567 if (hasAnyOverflow) {
576 auto numElementsType = mlir::cast<cir::IntType>(numElements.getType());
577 unsigned numElementsWidth = numElementsType.getWidth();
586 (*e->
getArraySize())->getType()->isSignedIntegerOrEnumerationType();
601 mlir::Value hasOverflow;
606 if (numElementsWidth > sizeWidth) {
607 llvm::APInt threshold =
608 llvm::APInt::getOneBitSet(numElementsWidth, sizeWidth);
611 mlir::Value unsignedNumElements = numElements;
616 mlir::Value thresholdV =
619 loc, cir::CmpOpKind::ge, unsignedNumElements, thresholdV);
621 unsignedNumElements, mlir::cast<cir::IntType>(cgf.
sizeTy));
624 }
else if (isSigned) {
625 if (numElementsWidth < sizeWidth)
634 if (typeSizeMultiplier == 1)
636 loc, cir::CmpOpKind::lt, numElements,
641 numElements, mlir::cast<cir::IntType>(cgf.
sizeTy));
644 }
else if (numElementsWidth < sizeWidth) {
646 numElements, mlir::cast<cir::IntType>(cgf.
sizeTy));
649 assert(numElements.getType() == cgf.
sizeTy);
655 loc, llvm::APInt(sizeWidth, minElements));
657 numElements, minElementsV);
658 }
else if (numElementsWidth > sizeWidth) {
663 loc, llvm::APInt(sizeWidth, minElements));
680 if (typeSizeMultiplier != 1) {
682 auto mulOp = cir::MulOverflowOp::create(
690 hasOverflow = mulOp.getOverflow();
692 size = mulOp.getResult();
695 if (arraySizeMultiplier != 1) {
698 if (typeSize.
isOne()) {
699 assert(arraySizeMultiplier == typeSizeMultiplier);
711 assert(arraySizeMultiplier == 1);
715 if (cookieSize != 0) {
716 sizeWithoutCookie = size;
718 auto addOp = cir::AddOverflowOp::create(
726 hasOverflow = addOp.getOverflow();
728 size = addOp.getResult();
735 mlir::Value allOnes =
742 sizeWithoutCookie = size;
744 assert(sizeWithoutCookie &&
"didn't set sizeWithoutCookie?");
755 cir::CIRCallOpInterface callOrTryCall;
769 calleePtr->hasAttr(cir::CIRDialect::getNoBuiltinAttrName())) {
770 callOrTryCall->setAttr(cir::CIRDialect::getBuiltinAttrName(),
771 mlir::UnitAttr::get(callOrTryCall->getContext()));
784 assert(op == OO_New || op == OO_Delete);
790 if (
const auto *funcDecl = dyn_cast<FunctionDecl>(
decl)) {
792 if (
sanOpts.has(SanitizerKind::AllocToken)) {
795 cgm.errorNYI(
"Alloc token sanitizer not yet supported!");
804 llvm_unreachable(
"predeclared global operator new/delete is missing");
808template <
typename Traits>
struct PlacementArg {
809 typename Traits::RValueTy argValue;
816template <
typename Traits>
817class CallDeleteDuringNew final
818 :
public EHScopeStack::Cleanup,
819 private llvm::TrailingObjects<CallDeleteDuringNew<Traits>,
820 PlacementArg<Traits>> {
822 llvm::TrailingObjects<CallDeleteDuringNew<Traits>, PlacementArg<Traits>>;
824 using TrailingObj::getTrailingObjects;
827 typedef typename Traits::ValueTy ValueTy;
829 typedef typename Traits::RValueTy RValueTy;
831 unsigned numPlacementArgs : 30;
833 unsigned passAlignmentToPlacementDelete : 1;
839 PlacementArg<Traits> *getPlacementArgs() {
return getTrailingObjects(); }
842 void setPlacementArg(
unsigned i, RValueTy argValue,
QualType argType) {
843 assert(i < numPlacementArgs &&
"index out of range");
844 getPlacementArgs()[i] = {argValue, argType};
847 static size_t getExtraSize(
size_t numPlacementArgs) {
848 return TrailingObj::template additionalSizeToAlloc<PlacementArg<Traits>>(
852 CallDeleteDuringNew(
size_t numPlacementArgs,
853 const FunctionDecl *operatorDelete, ValueTy ptr,
855 const ImplicitAllocationParameters &iap,
856 CharUnits allocAlign)
857 : numPlacementArgs(numPlacementArgs),
859 operatorDelete(operatorDelete), ptr(ptr), allocSize(allocSize),
860 allocAlign(allocAlign) {}
862 void emit(CIRGenFunction &cgf, Flags flags)
override {
863 const auto *fpt = operatorDelete->
getType()->
castAs<FunctionProtoType>();
864 CallArgList deleteArgs;
866 unsigned firstNonTypeArg = 0;
872 deleteArgs.add(Traits::get(cgf, ptr), fpt->getParamType(firstNonTypeArg));
875 UsualDeleteParams params;
876 if (numPlacementArgs) {
890 "should not call destroying delete in a new-expression");
894 deleteArgs.add(Traits::get(cgf, allocSize),
909 for (
unsigned i = 0; i != numPlacementArgs; ++i) {
910 auto arg = getPlacementArgs()[i];
911 deleteArgs.add(Traits::get(cgf,
arg.argValue),
arg.argType);
923 Address newPtr, mlir::Value allocSize,
931 struct DirectCleanupTraits {
932 typedef mlir::Value ValueTy;
938 typedef CallDeleteDuringNew<DirectCleanupTraits> DirectCleanup;
946 const CallArg &arg = newArgs[i + numNonPlacementArgs];
955 auto saveValue = [&](mlir::Value value) -> mlir::Value {
959 value.getLoc(),
"cond-cleanup.save");
964 mlir::Value savedNewPtr = saveValue(newPtr.
getPointer());
965 mlir::Value savedAllocSize = saveValue(allocSize);
967 struct ConditionalCleanupTraits {
968 typedef mlir::Value ValueTy;
969 typedef mlir::Value RValueTy;
971 while (cir::CastOp castOp = v.getDefiningOp<cir::CastOp>()) {
972 if (castOp.getKind() != cir::CastKind::address_space &&
973 castOp.getKind() != cir::CastKind::bitcast)
977 cir::AllocaOp alloca = v.getDefiningOp<cir::AllocaOp>();
979 alloca.getLoc(), alloca.getAllocaType(), alloca,
980 llvm::MaybeAlign(alloca.getAlignment())));
983 typedef CallDeleteDuringNew<ConditionalCleanupTraits> ConditionalCleanup;
992 const CallArg &arg = newArgs[i + numNonPlacementArgs];
1026 llvm_unreachable(
"bad evaluation kind");
1031 Address beginPtr, mlir::Value numElements,
1032 mlir::Value allocSizeWithoutCookie) {
1040 unsigned initListElements = 0;
1048 auto tryMemsetInitialization = [&]() ->
bool {
1049 mlir::Location loc = numElements.getLoc();
1053 if (!
cgm.getTypes().isZeroInitializable(elementType))
1060 auto remainingSize = allocSizeWithoutCookie;
1061 if (initListElements) {
1063 unsigned initializedSize =
1066 cir::ConstantOp initSizeOp =
1067 builder.getConstInt(loc, remainingSize.getType(), initializedSize);
1068 remainingSize = builder.createSub(loc, remainingSize, initSizeOp);
1072 mlir::Value castOp =
1074 builder.createMemSet(loc, castOp, builder.getConstInt(loc,
cgm.uInt8Ty, 0),
1079 const InitListExpr *ile = dyn_cast<InitListExpr>(init);
1083 const Expr *ignoreParen =
nullptr;
1086 cplie = dyn_cast<CXXParenListInitExpr>(ignoreParen);
1087 sl = dyn_cast<StringLiteral>(ignoreParen);
1088 ocee = dyn_cast<ObjCEncodeExpr>(ignoreParen);
1091 if (ile || cplie || sl || ocee) {
1104 const Expr *initExpr = ile ? ile->
getInit(0) : init;
1121 bool alreadyInitedAll =
false;
1122 auto constElts = numElements.getDefiningOp<cir::ConstantOp>();
1125 alreadyInitedAll = (constVal == initListElements);
1129 if (!alreadyInitedAll) {
1131 mlir::Value initListElementsOp = builder.getUnsignedInt(
1132 initLoc, initListElements,
1134 curPtr = curPtr.
withPointer(builder.createPtrStride(
1135 initLoc, curPtr.
getPointer(), initListElementsOp));
1137 bool ok = tryMemsetInitialization();
1139 assert(ok &&
"couldn't memset character type?");
1146 initListElements = initExprs.size();
1163 "arrayinit.endOfInit");
1165 beginPtr.
getPointer(), endOfInit, elementType,
1172 for (
const Expr *ie : initExprs) {
1173 mlir::Location loc =
getLoc(ie->getExprLoc());
1179 builder.createStore(loc, curPtr.
getPointer(), endOfInit);
1186 mlir::Value castOp = builder.createPtrBitcast(
1188 mlir::Value offsetOp = builder.getSignedInt(loc, 1, 32);
1189 mlir::Value dataPtr = builder.createPtrStride(loc, castOp, offsetOp);
1201 auto *subIle = dyn_cast<InitListExpr>(init);
1204 assert(subIle->getNumInits() == 0 &&
"explicit inits in array filler?");
1205 init = subIle->getArrayFiller();
1214 auto constOp = mlir::dyn_cast<cir::ConstantOp>(numElements.getDefiningOp());
1216 auto constIntAttr = mlir::dyn_cast<cir::IntAttr>(constOp.getValue());
1218 if (constIntAttr && constIntAttr.getUInt() <= initListElements)
1222 assert(init &&
"have trailing elements to initialize but no initializer");
1231 if (!cce->requiresZeroInitialization())
1234 cgm.errorNYI(cce->getSourceRange(),
1235 "emitNewArrayInitializer: trivial ctor zero-init");
1247 mlir::Type initType =
convertType(cce->getType());
1249 if (initListElements) {
1254 auto constIntAttr = mlir::cast<cir::IntAttr>(constOp.getValue());
1255 uint64_t numRemainingElements =
1256 constIntAttr.getUInt() - initListElements;
1259 numElements.getType(), numRemainingElements);
1266 if (!mlir::isa<cir::ArrayType>(initType))
1267 initType = cir::ArrayType::get(initType, numRemainingElements);
1270 "emitNewArrayInitializer: numRemainingElements with "
1271 "non-constant count");
1279 cce->requiresZeroInitialization(), endOfInit);
1280 if (
getContext().getTargetInfo().emitVectorDeletingDtors(
1283 "emitNewArrayInitializer: emitVectorDeletingDtors");
1291 if (tryMemsetInitialization())
1302 "got wrong type of element to initialize");
1306 if (
auto *ile = dyn_cast<InitListExpr>(init)) {
1309 if (ile->
getNumInits() == 0 && tryMemsetInitialization())
1313 if (rtype->getDecl()->isStruct()) {
1315 unsigned numElements = 0;
1316 if (
auto *cxxrd = dyn_cast<CXXRecordDecl>(rd))
1317 numElements = cxxrd->getNumBases();
1319 if (!field->isUnnamedBitField())
1323 for (
unsigned i = 0, e = ile->
getNumInits(); i != e; ++i)
1326 if (ile->
getNumInits() == numElements && tryMemsetInitialization())
1337 "emitNewArrayInitializer: unsupported initializer");
1342 QualType elementType, mlir::Type elementTy,
1343 Address newPtr, mlir::Value numElements,
1344 mlir::Value allocSizeWithoutCookie) {
1348 allocSizeWithoutCookie);
1361 assert(!thisTy.
isNull());
1363 "Pointer/Object mixup");
1369 implicitParamTy, ce, args,
nullptr);
1370 assert((ce || dtor.
getDecl()) &&
"expected source location provider");
1372 return emitCall(
cgm.getTypes().arrangeCXXStructorDeclaration(dtor), callee,
1383 cgm.errorNYI(
expr->getExprLoc(),
1384 "emitCXXPseudoDestructorExpr: Objective-C lifetime is NYI");
1404 CallObjectDelete(mlir::Value ptr,
const FunctionDecl *operatorDelete,
1406 : ptr(ptr), operatorDelete(operatorDelete), elementType(elementType) {}
1449 if (rd->hasDefinition() && !rd->hasTrivialDestructor()) {
1450 dtor = rd->getDestructor();
1464 cgf.
ehStack.pushCleanup<CallObjectDelete>(
1470 false, ptr, elementType);
1491 cir::YieldOp thenYield;
1492 mlir::Value notNull = builder.createPtrIsNotNull(ptr.
getPointer());
1496 [&](mlir::OpBuilder &
b, mlir::Location loc) {
1497 thenYield = builder.createYield(loc);
1502 mlir::OpBuilder::InsertionGuard guard(builder);
1503 builder.setInsertionPoint(thenYield);
1519 cgm.getASTContext().getTargetInfo().emitVectorDeletingDtors(
1520 cgm.getASTContext().getLangOpts())) {
1522 "emitCXXDeleteExpr: emitVectorDeletingDtors");
1527 cir::FuncOp operatorDeleteFn =
cgm.getAddrOfFunction(operatorDelete);
1529 mlir::FlatSymbolRefAttr::get(operatorDeleteFn.getSymNameAttr());
1531 auto deleteParams = cir::UsualDeleteParamsAttr::get(
1535 mlir::FlatSymbolRefAttr elementDtor;
1536 bool hasThrowingDtor =
false;
1538 if (rd->hasDefinition() && !rd->hasTrivialDestructor()) {
1541 hasThrowingDtor =
true;
1542 cir::FuncOp dtorFn =
1544 elementDtor = mlir::FlatSymbolRefAttr::get(builder.getContext(),
1545 dtorFn.getSymNameAttr());
1549 cir::DeleteArrayOp::create(builder, ptr.
getPointer().getLoc(),
1551 elementDtor, hasThrowingDtor);
1565 unsigned minElements = 0;
1568 const InitListExpr *ile = dyn_cast<InitListExpr>(init);
1577 }
else if (ile || cplie) {
1582 mlir::Value numElements =
nullptr;
1583 mlir::Value allocSizeWithoutCookie =
nullptr;
1585 *
this, e, minElements, numElements, allocSizeWithoutCookie);
1591 if (allocator->isReservedGlobalPlacementOperator()) {
1611 "emitCXXNewExpr: reserved placement new with delete");
1616 unsigned paramsToSkip = 0;
1623 if (allocSize != allocSizeWithoutCookie) {
1625 allocAlign = std::max(allocAlign, cookieAlign);
1632 constexpr unsigned indexOfAlignArg = 1;
1638 alignValType = allocatorType->
getParamType(indexOfAlignArg);
1639 cir::ConstantOp align = builder.getAlignment(
1660 allocator->isReplaceableGlobalAllocationFunction()) {
1661 const TargetInfo &target =
cgm.getASTContext().getTargetInfo();
1662 unsigned allocatorAlign = llvm::bit_floor(std::min<uint64_t>(
1664 allocationAlign = std::max(
1665 allocationAlign,
getContext().toCharUnitsFromBits(allocatorAlign));
1668 mlir::Value allocPtr = rv.
getValue();
1670 allocPtr, mlir::cast<cir::PointerType>(allocPtr.getType()).getPointee(),
1686 bool useNewDeleteCleanup =
1690 mlir::Type elementTy;
1702 auto emitInit = [&]() {
1704 mlir::Operation *cleanupDominator =
nullptr;
1705 if (useNewDeleteCleanup) {
1709 operatorDeleteCleanup =
ehStack.stable_begin();
1718 if (allocSize != allocSizeWithoutCookie) {
1720 allocation =
cgm.getCXXABI().initializeArrayCookie(
1721 *
this, allocation, numElements, e, allocType);
1725 allocation, elementTy);
1737 if (
cgm.getCodeGenOpts().StrictVTablePointers &&
1738 allocator->isReservedGlobalPlacementOperator())
1740 "emitCXXNewExpr: strict vtable pointers");
1745 allocSizeWithoutCookie);
1749 if (useNewDeleteCleanup) {
1751 cleanupDominator->erase();
1752 cir::LoadOp loadResult =
1754 result = result.
withPointer(loadResult.getResult());
1758 cir::IfOp nullCheckOp;
1760 mlir::Value isNotNull = builder.createPtrIsNotNull(allocation.
getPointer());
1765 [&](mlir::OpBuilder &, mlir::Location loc) {
1767 builder.createYield(loc);
1773 mlir::Value resultValue = result.
getPointer();
1776 mlir::Type resultTy = resultValue.getType();
1781 mlir::Value trueVal;
1782 if (useNewDeleteCleanup) {
1788 if (trueVal.getType() != resultTy)
1789 trueVal = builder.createBitcast(trueVal, resultTy);
1790 mlir::Value nullPtr =
1794 nullCheckOp.getCondition(), trueVal, nullPtr);
1801 mlir::Value ptr,
QualType deleteTy) {
1808 auto paramTypeIter = deleteFTy->param_type_begin();
1813 "emitDeleteCall: type aware delete");
1817 std::advance(paramTypeIter, 1);
1818 mlir::Value deletePtr =
1819 builder.createBitcast(ptr.getLoc(), ptr,
convertType(argTy));
1825 std::advance(paramTypeIter, 1);
1833 QualType sizeType = *paramTypeIter;
1834 std::advance(paramTypeIter, 1);
1836 assert(mlir::isa<cir::IntType>(
convertType(sizeType)) &&
1837 "expected cir::IntType");
1838 cir::ConstantOp size = builder.getConstInt(
1846 QualType alignValType = *paramTypeIter++;
1850 cir::ConstantOp align = builder.getAlignment(
1855 assert(paramTypeIter == deleteFTy->param_type_end() &&
1856 "unknown parameter to usual delete function");
1863 mlir::Location loc,
QualType destTy) {
1865 assert(mlir::isa<cir::PointerType>(destCIRTy) &&
1866 "result of dynamic_cast should be a ptr");
1869 mlir::Region *currentRegion = cgf.
getBuilder().getBlock()->getParent();
1876 cgf.
getBuilder().createBlock(currentRegion, currentRegion->end());
1886 cgm.emitExplicitCastExprType(dce,
this);
1898 if (isDynCastToVoid) {
1905 srcRecordTy = srcTy;
1909 assert(srcRecordTy->
isRecordType() &&
"source type must be a record type!");
1915 auto destCirTy = mlir::cast<cir::PointerType>(
convertType(destTy));
1916 return cgm.getCXXABI().emitDynamicCast(*
this, loc, srcRecordTy, destRecordTy,
1917 destCirTy, isRefCast, thisAddr);
1921 mlir::Type typeInfoPtrTy,
1922 bool hasNullCheck) {
1933 mlir::Value isThisNull =
1939 false, [&](mlir::OpBuilder &, mlir::Location loc) {
1940 cgf.cgm.getCXXABI().emitBadTypeidCall(cgf, loc);
1973 auto typeInfoGlobal =
1975 auto getTypeInfo = cir::GetGlobalOp::create(
1976 builder, loc, builder.getPointerTo(typeInfoGlobal.getSymType()),
1977 typeInfoGlobal.getSymName());
1981 return builder.createBitcast(getTypeInfo, resultType);
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 CXXRecordDecl * getCXXRecord(const Expr *E)
static void emitNewInitializer(CIRGenFunction &cgf, const CXXNewExpr *e, QualType elementType, mlir::Type elementTy, Address newPtr, mlir::Value numElements, mlir::Value allocSizeWithoutCookie)
static mlir::Value emitCXXTypeidFromVTable(CIRGenFunction &cgf, const Expr *e, mlir::Type typeInfoPtrTy, bool hasNullCheck)
static void emitObjectDelete(CIRGenFunction &cgf, const CXXDeleteExpr *de, Address ptr, QualType elementType)
Emit the code for deleting a single object.
static void emitNullBaseClassInitialization(CIRGenFunction &cgf, Address destPtr, const CXXRecordDecl *base)
static void enterNewDeleteCleanup(CIRGenFunction &cgf, const CXXNewExpr *e, Address newPtr, mlir::Value allocSize, CharUnits allocAlign, const CallArgList &newArgs)
Enter a cleanup to call 'operator delete' if the initializer in a new-expression throws.
static mlir::Value emitCXXNewAllocSize(CIRGenFunction &cgf, const CXXNewExpr *e, unsigned minElements, mlir::Value &numElements, mlir::Value &sizeWithoutCookie)
static void emitDestroyingObjectDelete(CIRGenFunction &cgf, const CXXDeleteExpr *de, Address ptr, QualType elementType)
Emit the code for deleting a single object via a destroying operator delete.
static void storeAnyExprIntoOneUnit(CIRGenFunction &cgf, const Expr *init, QualType allocType, Address newPtr, AggValueSlot::Overlap_t mayOverlap)
static CharUnits calculateCookiePadding(CIRGenFunction &cgf, const CXXNewExpr *e)
static mlir::Value emitDynamicCastToNull(CIRGenFunction &cgf, mlir::Location loc, QualType destTy)
static MemberCallInfo commonBuildCXXMemberOrOperatorCall(CIRGenFunction &cgf, const CXXMethodDecl *md, mlir::Value thisPtr, mlir::Value implicitParam, QualType implicitParamTy, const CallExpr *ce, CallArgList &args, CallArgList *rtlArgs)
static RValue emitNewDeleteCall(CIRGenFunction &cgf, const FunctionDecl *calleeDecl, const FunctionProtoType *calleeType, const CallArgList &args)
Emit a call to an operator new or operator delete function, as implicitly created by new-expressions ...
Defines the C++ Decl subclasses, other than those for templates (found in DeclTemplate....
Defines the clang::Expr interface and subclasses for C++ expressions.
Defines an enumeration for C++ overloaded operators.
static QualType getPointeeType(const MemRegion *R)
cir::ConstantOp getConstant(mlir::Location loc, mlir::TypedAttr attr)
mlir::Value createOr(mlir::Location loc, mlir::Value lhs, mlir::Value rhs)
mlir::Value createPtrIsNull(mlir::Value ptr)
cir::ConstantOp getNullPtr(mlir::Type ty, mlir::Location loc)
mlir::Value createIntCast(mlir::Value src, mlir::Type newTy)
cir::CmpOp createCompare(mlir::Location loc, cir::CmpOpKind kind, mlir::Value lhs, mlir::Value rhs)
mlir::Value createSelect(mlir::Location loc, mlir::Value condition, mlir::Value trueValue, mlir::Value falseValue)
mlir::Value createMul(mlir::Location loc, mlir::Value lhs, mlir::Value rhs, OverflowBehavior ob=OverflowBehavior::None)
cir::ConstantOp getAlignment(mlir::Location loc, mlir::Type t, clang::CharUnits alignment)
llvm::Align getABITypeAlign(mlir::Type ty) const
llvm::TypeSize getTypeSizeInBits(mlir::Type ty) const
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
TranslationUnitDecl * getTranslationUnitDecl() const
const ConstantArrayType * getAsConstantArrayType(QualType T) const
CharUnits getTypeAlignInChars(QualType T) const
Return the ABI-specified alignment of a (complete) type T, in characters.
DeclarationNameTable DeclarationNames
const ASTRecordLayout & getASTRecordLayout(const RecordDecl *D) const
Get or compute information about the layout of the specified record (struct/union/class) D,...
QualType getBaseElementType(const ArrayType *VAT) const
Return the innermost element type of an array type.
CharUnits getTypeSizeInChars(QualType T) const
Return the size of the specified (complete) type T, in characters.
static bool hasSameType(QualType T1, QualType T2)
Determine whether the given types T1 and T2 are equivalent.
QualType getSizeType() const
Return the unique type for "size_t" (C99 7.17), defined in <stddef.h>.
CharUnits toCharUnitsFromBits(int64_t BitSize) const
Convert a size in bits to a size in characters.
uint64_t getConstantArrayElementCount(const ConstantArrayType *CA) const
Return number of constant array elements.
ASTRecordLayout - This class contains layout information for one RecordDecl, which is a struct/union/...
CharUnits getNonVirtualSize() const
getNonVirtualSize - Get the non-virtual size (in chars) of an object, which is the size of the object...
Represents an array type, per C99 6.7.5.2 - Array Declarators.
A builtin binary operation expression such as "x + y" or "x <= y".
Address withPointer(mlir::Value newPtr) const
Return address with different pointer, but same element type and alignment.
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
Address withAlignment(clang::CharUnits newAlignment) const
Return address with different alignment, but same pointer and element type.
mlir::Type getType() const
mlir::Value emitRawPointer() const
Return the pointer contained in this class after authenticating it and adding offset to it if necessa...
IsZeroed_t isZeroed() const
static AggValueSlot forAddr(Address addr, clang::Qualifiers quals, IsDestructed_t isDestructed, IsAliased_t isAliased, Overlap_t mayOverlap, IsZeroed_t isZeroed=IsNotZeroed)
Address getAddress() const
cir::IntType getSIntNTy(int n)
cir::LoadOp createAlignedLoad(mlir::Location loc, mlir::Type ty, mlir::Value ptr, llvm::MaybeAlign align)
bool isNullValue(mlir::Attribute attr) const
cir::StoreOp createStore(mlir::Location loc, mlir::Value val, Address dst, bool isVolatile=false, mlir::IntegerAttr align={}, cir::SyncScopeKindAttr scope={}, cir::MemOrderAttr order={})
cir::ConstantOp getConstInt(mlir::Location loc, llvm::APSInt intVal)
cir::IntType getUIntNTy(int n)
virtual void emitVirtualObjectDelete(CIRGenFunction &cgf, const CXXDeleteExpr *de, Address ptr, QualType elementType, const CXXDestructorDecl *dtor)=0
virtual const clang::CXXRecordDecl * getThisArgumentTypeForMethod(const clang::CXXMethodDecl *md)
Get the type of the implicit "this" parameter used by a method.
virtual bool shouldTypeidBeNullChecked(QualType srcTy)=0
virtual mlir::Value emitTypeid(CIRGenFunction &cgf, QualType srcTy, Address thisPtr, mlir::Type typeInfoPtrTy)=0
virtual void emitBadCastCall(CIRGenFunction &cgf, mlir::Location loc)=0
virtual CharUnits getArrayCookieSize(const CXXNewExpr *e)
Returns the extra size required in order to store the array cookie for the given new-expression.
static CIRGenCallee forDirect(mlir::Operation *funcPtr, const CIRGenCalleeInfo &abstractInfo=CIRGenCalleeInfo())
static CIRGenCallee forVirtual(const clang::CallExpr *ce, clang::GlobalDecl md, Address addr, cir::FuncType fTy)
An abstract representation of regular/ObjC call/message targets.
void emitCallArgs(CallArgList &args, PrototypeWrapper prototype, llvm::iterator_range< clang::CallExpr::const_arg_iterator > argRange, AbstractCallee callee=AbstractCallee(), unsigned paramsToSkip=0)
mlir::Type convertType(clang::QualType t)
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...
CIRGenTypes & getTypes() const
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 initFullExprCleanup()
Set up the last cleanup that was pushed as a conditional full-expression cleanup.
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,...
RValue emitCXXMemberPointerCallExpr(const CXXMemberCallExpr *ce, ReturnValueSlot returnValue)
bool isInConditionalBranch() const
void emitDeleteCall(const FunctionDecl *deleteFD, mlir::Value ptr, QualType deleteTy)
LValue emitLValue(const clang::Expr *e)
Emit code to compute a designator that specifies the location of the expression.
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.
mlir::Location getLoc(clang::SourceLocation srcLoc)
Helpers to convert Clang's SourceLocation to a MLIR Location.
RValue emitCXXMemberOrOperatorCall(const clang::CXXMethodDecl *md, const CIRGenCallee &callee, ReturnValueSlot returnValue, mlir::Value thisPtr, mlir::Value implicitParam, clang::QualType implicitParamTy, const clang::CallExpr *ce, CallArgList *rtlArgs)
void emitNullInitialization(mlir::Location loc, Address destPtr, QualType ty)
RValue emitCUDAKernelCallExpr(const CUDAKernelCallExpr *expr, ReturnValueSlot returnValue)
EHScopeStack ehStack
Tracks function scope overall cleanup handling.
void emitNewArrayInitializer(const CXXNewExpr *e, QualType elementType, mlir::Type elementTy, Address beginPtr, mlir::Value numElements, mlir::Value allocSizeWithoutCookie)
clang::SanitizerSet sanOpts
Sanitizers enabled for this function.
static int64_t getZExtIntValueFromConstOp(mlir::Value val)
Get zero-extended integer from a mlir::Value that is an int constant or a constant op.
mlir::Value emitCXXTypeidExpr(const CXXTypeidExpr *e)
mlir::Type convertTypeForMem(QualType t)
void emitCXXConstructExpr(const clang::CXXConstructExpr *e, AggValueSlot dest)
mlir::Value emitCXXNewExpr(const CXXNewExpr *e)
Address returnValue
The temporary alloca to hold the return value.
void emitCXXConstructorCall(const clang::CXXConstructorDecl *d, clang::CXXCtorType type, bool forVirtualBase, bool delegating, AggValueSlot thisAVS, const clang::CXXConstructExpr *e)
void emitScalarInit(const clang::Expr *init, mlir::Location loc, LValue lvalue, bool capturedByInit=false)
RValue emitCall(const CIRGenFunctionInfo &funcInfo, const CIRGenCallee &callee, ReturnValueSlot returnValue, const CallArgList &args, cir::CIRCallOpInterface *callOp, mlir::Location loc)
void deactivateCleanupBlock(EHScopeStack::stable_iterator cleanup, mlir::Operation *dominatingIP)
Deactivates the given cleanup block.
mlir::Value emitScalarExpr(const clang::Expr *e, bool ignoreResultAssign=false)
Emit the computation of the specified expression of scalar type.
CIRGenBuilderTy & getBuilder()
Destroyer * getDestroyer(clang::QualType::DestructionKind kind)
void popCleanupBlock(bool forDeactivation=false)
Pop a cleanup block from the stack.
void emitComplexExprIntoLValue(const Expr *e, LValue dest, bool isInit)
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)
RValue emitNewOrDeleteBuiltinCall(const FunctionProtoType *type, const CallExpr *callExpr, OverloadedOperatorKind op)
void emitCXXAggrConstructorCall(const CXXConstructorDecl *ctor, const clang::ArrayType *arrayType, Address arrayBegin, const CXXConstructExpr *e, bool newPointerIsChecked, bool zeroInitialize=false)
Emit a loop to call a particular constructor for each of several members of an array.
std::optional< mlir::Location > currSrcLoc
Use to track source locations across nested visitor traversals.
clang::ASTContext & getContext() const
RValue emitCXXMemberOrOperatorMemberCallExpr(const clang::CallExpr *ce, const clang::CXXMethodDecl *md, ReturnValueSlot returnValue, bool hasQualifier, clang::NestedNameSpecifier qualifier, bool isArrow, const clang::Expr *base)
void emitCXXDeleteExpr(const CXXDeleteExpr *e)
RValue emitCXXOperatorMemberCallExpr(const CXXOperatorCallExpr *e, const CXXMethodDecl *md, ReturnValueSlot returnValue)
void emitIgnoredExpr(const clang::Expr *e)
Emit code to compute the specified expression, ignoring the result.
Address createMemTemp(QualType t, mlir::Location loc, const Twine &name="tmp", Address *alloca=nullptr, mlir::OpBuilder::InsertPoint ip={})
Create a temporary memory object of the given type, with appropriate alignmen and cast it to the defa...
mlir::Value emitDynamicCast(Address thisAddr, const CXXDynamicCastExpr *dce)
void emitAggExpr(const clang::Expr *e, AggValueSlot slot)
RValue emitCXXPseudoDestructorExpr(const CXXPseudoDestructorExpr *expr)
DiagnosticBuilder errorNYI(SourceLocation, llvm::StringRef)
Helpers to emit "not yet implemented" error diagnostics.
mlir::TypedAttr emitNullConstantForBase(const CXXRecordDecl *record)
Return a null constant appropriate for zero-initializing a base class with the given type.
cir::FuncOp getAddrOfFunction(clang::GlobalDecl gd, mlir::Type funcType=nullptr, bool forVTable=false, bool dontDefer=false, ForDefinition_t isForDefinition=NotForDefinition)
Return the address of the given function.
const cir::CIRDataLayout getDataLayout() const
CIRGenCXXABI & getCXXABI() const
const CIRGenFunctionInfo & arrangeFreeFunctionCall(const CallArgList &args, const FunctionType *fnType)
clang::CanQualType deriveThisType(const clang::CXXRecordDecl *rd, const clang::CXXMethodDecl *md)
Derives the 'this' type for CIRGen purposes, i.e.
void addFrom(const CallArgList &other)
Add all the arguments from another CallArgList to this one.
void add(RValue rvalue, clang::QualType type)
mlir::Attribute tryEmitAbstract(const Expr *e, QualType destType)
Information for lazily generating a cleanup.
A saved depth on the scope stack.
T * pushCleanupWithExtra(CleanupKind kind, size_t n, As... a)
Push a cleanup with non-constant storage requirements on the stack.
AlignmentSource getAlignmentSource() const
Address getAddress() const
mlir::Value getPointer() const
void setAddress(Address address)
This trivial value class is used to represent the result of an expression that is evaluated.
static RValue get(mlir::Value v)
static RValue getAggregate(Address addr, bool isVolatile=false)
Convert an Address to an RValue.
mlir::Value getValue() const
Return the value of this scalar value.
A class for recording the number of arguments that a function signature requires.
static RequiredArgs getFromProtoWithExtraSlots(const clang::FunctionProtoType *prototype, unsigned additional)
Compute the arguments required by the given formal prototype, given that there may be some additional...
Contains the address where the return value of a function can be stored, and whether the address is v...
Represents a call to a CUDA kernel function.
Represents a call to a C++ constructor.
bool isElidable() const
Whether this construction is elidable.
Expr * getArg(unsigned Arg)
Return the specified argument.
bool requiresZeroInitialization() const
Whether this construction first requires zero-initialization before the initializer is called.
CXXConstructorDecl * getConstructor() const
Get the constructor that this expression will (ultimately) call.
CXXConstructionKind getConstructionKind() const
Determine whether this constructor is actually constructing a base class (rather than a complete obje...
Represents a C++ constructor within a class.
bool isDefaultConstructor() const
Whether this constructor is a default constructor (C++ [class.ctor]p5), which can be used to default-...
Represents a delete expression for memory deallocation and destructor calls, e.g.
FunctionDecl * getOperatorDelete() const
QualType getDestroyedType() const
Retrieve the type being destroyed.
Represents a C++ destructor within a class.
A C++ dynamic_cast expression (C++ [expr.dynamic.cast]).
bool isAlwaysNull() const
isAlwaysNull - Return whether the result of the dynamic_cast is proven to always be null.
Represents a call to a member function that may be written either with member call syntax (e....
SourceLocation getExprLoc() const LLVM_READONLY
Represents a static or instance method of a struct/union/class.
const CXXRecordDecl * getParent() const
Return the parent of this method declaration, which is the class in which this method is defined.
CXXMethodDecl * getDevirtualizedMethod(const Expr *Base, bool IsAppleKext)
If it's possible to devirtualize a call to this method, return the called function.
CXXMethodDecl * getCorrespondingMethodInClass(const CXXRecordDecl *RD, bool MayBeBase=false)
Find the method in RD that corresponds to this one.
Represents a new-expression for memory allocation and constructor calls, e.g: "new CXXNewExpr(foo)".
llvm::iterator_range< arg_iterator > placement_arguments()
QualType getAllocatedType() const
unsigned getNumImplicitArgs() const
std::optional< Expr * > getArraySize()
This might return std::nullopt even if isArray() returns true, since there might not be an array size...
ImplicitAllocationParameters implicitAllocationParameters() const
Provides the full set of information about expected implicit parameters in this call.
bool hasInitializer() const
Whether this new-expression has any initializer at all.
bool shouldNullCheckAllocation() const
True if the allocation result needs to be null-checked.
bool passAlignment() const
Indicates whether the required alignment should be implicitly passed to the allocation function.
FunctionDecl * getOperatorDelete() const
unsigned getNumPlacementArgs() const
SourceRange getSourceRange() const
FunctionDecl * getOperatorNew() const
Expr * getInitializer()
The initializer of this new-expression.
A call to an overloaded operator written using operator syntax.
Represents a list-initialization with parenthesis.
MutableArrayRef< Expr * > getInitExprs()
Represents a C++ pseudo-destructor (C++ [expr.pseudo]).
Represents a C++ struct/union/class.
bool isEmpty() const
Determine whether this is an empty class in the sense of (C++11 [meta.unary.prop]).
CXXDestructorDecl * getDestructor() const
Returns the destructor decl for this class.
A C++ typeid expression (C++ [expr.typeid]), which gets the type_info that corresponds to the supplie...
bool isTypeOperand() const
QualType getTypeOperand(const ASTContext &Context) const
Retrieves the type operand of this typeid() expression after various required adjustments (removing r...
Expr * getExprOperand() const
SourceRange getSourceRange() const LLVM_READONLY
bool isMostDerived(const ASTContext &Context) const
Best-effort check if the expression operand refers to a most derived object.
bool isPotentiallyEvaluated() const
Determine whether this typeid has a type operand which is potentially evaluated, per C++11 [expr....
bool hasNullCheck() const
Whether this is of a form like "typeid(*ptr)" that can throw a std::bad_typeid if a pointer is a null...
CallExpr - Represents a function call (C99 6.5.2.2, C++ [expr.call]).
Expr * getArg(unsigned Arg)
getArg - Return the specified argument.
FunctionDecl * getDirectCallee()
If the callee is a FunctionDecl, return it. Otherwise return null.
CharUnits - This is an opaque type for sizes expressed in character units.
CharUnits alignmentAtOffset(CharUnits offset) const
Given that this is a non-zero alignment value, what is the alignment at the given offset?
QuantityType getQuantity() const
getQuantity - Get the raw integer representation of this quantity.
CharUnits alignmentOfArrayElement(CharUnits elementSize) const
Given that this is the alignment of the first element of an array, return the minimum alignment of an...
bool isOne() const
isOne - Test whether the quantity equals one.
static CharUnits fromQuantity(QuantityType Quantity)
fromQuantity - Construct a CharUnits quantity from a raw integer type.
static CharUnits Zero()
Zero - Construct a CharUnits quantity of zero.
Represents the canonical version of C arrays with a specified constant size.
The results of name lookup within a DeclContext.
lookup_result lookup(DeclarationName Name) const
lookup - Find the declarations (if any) with the given Name in this context.
virtual SourceRange getSourceRange() const LLVM_READONLY
Source range that this declaration covers.
The name of a declaration.
QualType getTypeAsWritten() const
getTypeAsWritten - Returns the type that this expression is casting to, as written in the source code...
This represents one expression.
const CXXRecordDecl * getBestDynamicClassType() const
For an expression of class type or pointer to class type, return the most derived class decl the expr...
Expr * IgnoreParenImpCasts() LLVM_READONLY
Skip past any parentheses and implicit casts which might surround this expression until reaching a fi...
Expr * IgnoreParens() LLVM_READONLY
Skip past any parentheses which might surround this expression until reaching a fixed point.
Expr * IgnoreParenBaseCasts() LLVM_READONLY
Skip past any parentheses and derived-to-base casts until reaching a fixed point.
bool isTemporaryObject(ASTContext &Ctx, const CXXRecordDecl *TempTy) const
Determine whether the result of this expression is a temporary object of the given class type.
SourceLocation getExprLoc() const LLVM_READONLY
getExprLoc - Return the preferred location for the arrow when diagnosing a problem with a generic exp...
Represents a member of a struct/union/class.
Represents a function declaration or definition.
bool isDestroyingOperatorDelete() const
Determine whether this is a destroying operator delete.
QualType getReturnType() const
bool isTrivial() const
Whether this function is "trivial" in some specialized C++ senses.
bool isReplaceableGlobalAllocationFunction(UnsignedOrNone *AlignmentParam=nullptr, bool *IsNothrow=nullptr) const
Determines whether this function is one of the replaceable global allocation functions: void *operato...
UsualDeleteParams getUsualDeleteParams() const
bool isReservedGlobalPlacementOperator() const
Determines whether this operator new or delete is one of the reserved global placement operators: voi...
bool isDefaulted() const
Whether this function is defaulted.
SourceRange getSourceRange() const override LLVM_READONLY
Source range that this declaration covers.
Represents a prototype with parameter type info, e.g.
unsigned getNumParams() const
QualType getParamType(unsigned i) const
CanThrowResult canThrow() const
Determine whether this function type has a non-throwing exception specification.
GlobalDecl - represents a global declaration.
const Decl * getDecl() const
Represents an implicitly-generated value initialization of an object of a given type.
Describes an C or C++ initializer list.
bool isStringLiteralInit() const
Is this an initializer for an array of characters, initialized by a string literal or an @encode?
unsigned getNumInits() const
Expr * getArrayFiller()
If this initializer list initializes an array with more elements than there are initializers in the l...
const Expr * getInit(unsigned Init) const
ArrayRef< Expr * > inits() const
A pointer to member type per C++ 8.3.3 - Pointers to members.
QualType getPointeeType() const
This represents a decl that may have a name.
Represents a C++ nested name specifier, such as "\::std::vector<int>::".
ObjCEncodeExpr, used for @encode in Objective-C.
PointerType - C99 6.7.5.1 - Pointer Declarators.
A (possibly-)qualified type.
bool isNull() const
Return true if this QualType doesn't point to a type yet.
Qualifiers getQualifiers() const
Retrieve the set of qualifiers applied to this type.
Qualifiers::ObjCLifetime getObjCLifetime() const
Returns lifetime attribute of this type.
QualType getCanonicalType() const
DestructionKind isDestructedType() const
Returns a nonzero value if objects of this type require non-trivial work to clean up after.
bool isPODType(const ASTContext &Context) const
Determine whether this is a Plain Old Data (POD) type (C++ 3.9p10).
bool hasStrongOrWeakObjCLifetime() const
Represents a struct/union/class.
field_range fields() const
RecordDecl * getDefinitionOrSelf() const
Base for LValueReferenceType and RValueReferenceType.
SourceRange getSourceRange() const LLVM_READONLY
SourceLocation tokens are not useful in isolation - they are low level value objects created/interpre...
StringLiteral - This represents a string literal expression, e.g.
SourceRange getSourceRange() const override LLVM_READONLY
Source range that this declaration covers.
Exposes information about the current target.
unsigned getNewAlign() const
Return the largest alignment for which a suitably-sized allocation with 'operator new(size_t)' is gua...
SourceLocation getBeginLoc() const LLVM_READONLY
CXXRecordDecl * getAsCXXRecordDecl() const
Retrieves the CXXRecordDecl that this type refers to, either because the type is a RecordType or beca...
bool isConstantArrayType() const
bool isVoidPointerType() const
bool isPointerType() const
const T * castAs() const
Member-template castAs<specific type>.
bool isReferenceType() const
const CXXRecordDecl * getPointeeCXXRecordDecl() const
If this is a pointer or reference to a RecordType, return the CXXRecordDecl that the type refers to.
QualType getPointeeType() const
If this is a pointer, ObjC object pointer, or block pointer, this returns the respective pointee.
const ArrayType * getAsArrayTypeUnsafe() const
A variant of getAs<> for array types which silently discards qualifiers from the outermost type.
const T * getAsCanonical() const
If this type is canonically the specified type, return its canonical type cast to that specified type...
const T * getAs() const
Member-template getAs<specific type>'.
bool isRecordType() const
@ 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...
const internal::VariadicDynCastAllOfMatcher< Stmt, CallExpr > callExpr
Matches call expressions.
const AstTypeMatcher< TagType > tagType
const internal::VariadicAllOfMatcher< Type > type
Matches Types in the clang AST.
const AstTypeMatcher< ArrayType > arrayType
const internal::VariadicAllOfMatcher< Decl > decl
Matches declarations.
const internal::VariadicDynCastAllOfMatcher< Stmt, Expr > expr
Matches expressions.
constexpr size_t align(size_t Size)
Aligns a size to the pointer alignment.
The JSON file list parser is used to communicate input to InstallAPI.
OverloadedOperatorKind
Enumeration specifying the different kinds of C++ overloaded operators.
CXXCtorType
C++ constructor types.
@ Ctor_Base
Base object ctor.
@ Ctor_Complete
Complete object ctor.
bool isa(CodeGen::Address addr)
AlignedAllocationMode alignedAllocationModeFromBool(bool IsAligned)
bool isAlignedAllocation(AlignedAllocationMode Mode)
@ Dtor_Complete
Complete object dtor.
bool isTypeAwareAllocation(TypeAwareAllocationMode Mode)
U cast(CodeGen::Address addr)
__DEVICE__ _Tp arg(const std::complex< _Tp > &__c)
static bool objCLifetime()
static bool addressSpace()
static bool devirtualizeDestructor()
static bool aggValueSlotGC()
static bool deleteArray()
static bool emitTypeCheck()
static bool opCallMustTail()
static bool typeAwareAllocation()
static bool emitNullCheckForDeleteCalls()
static bool generateDebugInfo()
Scope that deactivates all enclosed deferred cleanups on exit.
clang::CharUnits getPointerAlign() const
clang::CharUnits getSizeAlign() const
The parameters to pass to a usual operator delete.
TypeAwareAllocationMode TypeAwareDelete
AlignedAllocationMode Alignment