19#include "mlir/Dialect/LLVMIR/LLVMDialect.h"
20#include "mlir/IR/Attributes.h"
25#include "llvm/ADT/FloatingPointMode.h"
26#include "llvm/ADT/StringSet.h"
27#include "llvm/Support/TypeSize.h"
38 void *buffer =
operator new(
39 totalSizeToAlloc<CanQualType>(
argTypes.size() + 1));
43 CIRGenFunctionInfo *fi =
new (buffer) CIRGenFunctionInfo();
45 fi->callingConvention = llvm::to_underlying(cirCC);
46 fi->astCallingConvention = info.getCC();
47 fi->noReturn = info.getNoReturn();
50 fi->required = required;
57 assert((!required.allowsOptionalArgs() ||
58 required.getNumRequiredArgs() <= fi->numArgs) &&
59 "more required arguments than argument types");
61 fi->getArgTypes()[0] = resultType;
74 mlir::Type resultType =
convertType(info.getReturnType());
76 argTypes.reserve(info.getNumRequiredArgs());
78 for (
const CanQualType &argType : info.requiredArguments())
81 return cir::FuncType::get(argTypes,
82 (resultType ? resultType : builder.getVoidTy()),
108 mlir::OpBuilder::InsertionGuard guard(builder);
109 builder.setInsertionPointAfter(value.getDefiningOp());
114 mlir::NamedAttrList &attrs,
121 attrs.set(cir::CIRDialect::getNoThrowAttrName(),
122 mlir::UnitAttr::get(builder.getContext()));
126 mlir::NamedAttrList &attrs,
128 const NoBuiltinAttr *nba =
nullptr) {
132 if (langOpts.NoBuiltin ||
133 (nba && llvm::is_contained(nba->builtinNames(),
"*"))) {
136 attrs.set(cir::CIRDialect::getNoBuiltinsAttrName(),
137 mlir::ArrayAttr::get(&ctx, {}));
141 llvm::SetVector<mlir::Attribute> nbFuncs;
142 auto addNoBuiltinAttr = [&ctx, &nbFuncs](StringRef builtinName) {
143 nbFuncs.insert(mlir::StringAttr::get(&ctx, builtinName));
152 llvm::for_each(nba->builtinNames(), addNoBuiltinAttr);
154 if (!nbFuncs.empty())
155 attrs.set(cir::CIRDialect::getNoBuiltinsAttrName(),
156 mlir::ArrayAttr::get(&ctx, nbFuncs.getArrayRef()));
163 llvm::DenormalMode fp32DenormalMode,
164 mlir::NamedAttrList &attrs) {
176 mlir::NamedAttrList &attrs) {
181static llvm::StringLiteral
184 case llvm::ZeroCallUsedRegs::ZeroCallUsedRegsKind::Skip:
185 llvm_unreachable(
"No string value, shouldn't be able to get here");
186 case llvm::ZeroCallUsedRegs::ZeroCallUsedRegsKind::UsedGPRArg:
187 return "used-gpr-arg";
188 case llvm::ZeroCallUsedRegs::ZeroCallUsedRegsKind::UsedGPR:
190 case llvm::ZeroCallUsedRegs::ZeroCallUsedRegsKind::UsedArg:
192 case llvm::ZeroCallUsedRegs::ZeroCallUsedRegsKind::Used:
194 case llvm::ZeroCallUsedRegs::ZeroCallUsedRegsKind::AllGPRArg:
195 return "all-gpr-arg";
196 case llvm::ZeroCallUsedRegs::ZeroCallUsedRegsKind::AllGPR:
198 case llvm::ZeroCallUsedRegs::ZeroCallUsedRegsKind::AllArg:
200 case llvm::ZeroCallUsedRegs::ZeroCallUsedRegsKind::All:
204 llvm_unreachable(
"Unknown kind?");
211 mlir::MLIRContext *mlirCtx, StringRef name,
bool hasOptNoneAttr,
213 bool attrOnCallSite, mlir::NamedAttrList &attrs) {
216 if (!hasOptNoneAttr) {
217 if (codeGenOpts.OptimizeSize)
218 attrs.set(cir::CIRDialect::getOptimizeForSizeAttrName(),
219 mlir::UnitAttr::get(mlirCtx));
220 if (codeGenOpts.OptimizeSize == 2)
221 attrs.set(cir::CIRDialect::getMinSizeAttrName(),
222 mlir::UnitAttr::get(mlirCtx));
228 if (attrOnCallSite) {
231 attrs.set(cir::CIRDialect::getNoBuiltinAttrName(),
232 mlir::UnitAttr::get(mlirCtx));
235 attrs.set(cir::CIRDialect::getTrapFuncNameAttrName(),
236 mlir::StringAttr::get(mlirCtx, codeGenOpts.
TrapFuncName));
251 if (codeGenOpts.getZeroCallUsedRegs() ==
252 llvm::ZeroCallUsedRegs::ZeroCallUsedRegsKind::Skip)
253 attrs.erase(cir::CIRDialect::getZeroCallUsedRegsAttrName());
255 attrs.set(cir::CIRDialect::getZeroCallUsedRegsAttrName(),
256 mlir::StringAttr::get(mlirCtx,
258 codeGenOpts.getZeroCallUsedRegs())));
267 attrs.set(cir::CIRDialect::getConvergentAttrName(),
268 mlir::UnitAttr::get(mlirCtx));
274 if (codeGenOpts.SaveRegParams && !attrOnCallSite)
275 attrs.set(cir::CIRDialect::getSaveRegParamsAttrName(),
276 mlir::UnitAttr::get(mlirCtx));
285 [mlirCtx](llvm::StringRef arg) {
286 auto [var, value] = arg.split(
'=');
289 ? cast<mlir::Attribute>(mlir::UnitAttr::get(mlirCtx))
290 : cast<mlir::Attribute>(mlir::StringAttr::get(mlirCtx, value));
291 return mlir::NamedAttribute(var, valueAttr);
294 if (!defaultFuncAttrs.empty())
295 attrs.set(cir::CIRDialect::getDefaultFuncAttrsAttrName(),
296 mlir::DictionaryAttr::get(mlirCtx, defaultFuncAttrs));
308 mlir::NamedAttrList &attrs) {
311 codeGenOpts, langOpts, attrOnCallSite,
314 if (!attrOnCallSite) {
327 mlir::NamedAttrList &retAttrs, cir::CallingConv &callingConv,
328 bool attrOnCallSite,
bool isThunk) {
329 callingConv = info.getCallingConvention();
331 auto addUnitAttr = [&](llvm::StringRef name) {
335 if (info.isNoReturn())
336 addUnitAttr(cir::CIRDialect::getNoReturnAttrName());
348 const NoBuiltinAttr *nba =
nullptr;
354 if (targetDecl->
hasAttr<NoThrowAttr>())
355 addUnitAttr(cir::CIRDialect::getNoThrowAttrName());
360 if (targetDecl->
hasAttr<NoReturnAttr>())
361 addUnitAttr(cir::CIRDialect::getNoReturnAttrName());
362 if (targetDecl->
hasAttr<ReturnsTwiceAttr>())
363 addUnitAttr(cir::CIRDialect::getReturnsTwiceAttrName());
364 if (targetDecl->
hasAttr<ColdAttr>())
365 addUnitAttr(cir::CIRDialect::getColdAttrName());
366 if (targetDecl->
hasAttr<HotAttr>())
367 addUnitAttr(cir::CIRDialect::getHotAttrName());
368 if (targetDecl->
hasAttr<NoDuplicateAttr>())
369 addUnitAttr(cir::CIRDialect::getNoDuplicatesAttrName());
370 if (targetDecl->
hasAttr<ConvergentAttr>())
371 addUnitAttr(cir::CIRDialect::getConvergentAttrName());
373 if (
const FunctionDecl *func = dyn_cast<FunctionDecl>(targetDecl)) {
387 if (func->isNoReturn())
388 addUnitAttr(cir::CIRDialect::getNoReturnAttrName());
389 nba = func->getAttr<NoBuiltinAttr>();
395 auto setMemoryEffects = [&](cir::MemoryEffectsAttr effects) {
396 attrs.set(cir::CIRDialect::getMemoryEffectsAttrName(), effects);
400 if (targetDecl->
hasAttr<ConstAttr>()) {
401 setMemoryEffects(cir::MemoryEffectsAttr::none(&
getMLIRContext()));
402 addUnitAttr(cir::CIRDialect::getNoUnwindAttrName());
405 addUnitAttr(cir::CIRDialect::getWillReturnAttrName());
406 }
else if (targetDecl->
hasAttr<PureAttr>()) {
407 setMemoryEffects(cir::MemoryEffectsAttr::readOnly(&
getMLIRContext()));
408 addUnitAttr(cir::CIRDialect::getNoUnwindAttrName());
410 addUnitAttr(cir::CIRDialect::getWillReturnAttrName());
411 }
else if (targetDecl->
hasAttr<NoAliasAttr>()) {
413 cir::MemoryEffectsAttr::inaccessibleOrArgMemOnly(&
getMLIRContext()));
414 addUnitAttr(cir::CIRDialect::getNoUnwindAttrName());
420 if (targetDecl->
hasAttr<ReturnsNonNullAttr>() &&
421 !codeGenOpts.NullPointerIsValid)
422 retAttrs.set(mlir::LLVM::LLVMDialect::getNonNullAttrName(),
424 if (targetDecl->
hasAttr<AnyX86NoCallerSavedRegistersAttr>())
425 addUnitAttr(cir::CIRDialect::getNoCallerSavedRegsAttrName());
428 if (targetDecl->
hasAttr<LeafAttr>())
429 addUnitAttr(cir::CIRDialect::getNoCallbackAttrName());
433 if (
auto *allocSizeAttr = targetDecl->
getAttr<AllocSizeAttr>()) {
434 unsigned size = allocSizeAttr->getElemSizeParam().getLLVMIndex();
436 if (allocSizeAttr->getNumElemsParam().isValid()) {
437 unsigned numElts = allocSizeAttr->getNumElemsParam().getLLVMIndex();
438 attrs.set(cir::CIRDialect::getAllocSizeAttrName(),
439 builder.getDenseI32ArrayAttr(
440 {static_cast<int>(size), static_cast<int>(numElts)}));
442 attrs.set(cir::CIRDialect::getAllocSizeAttrName(),
443 builder.getDenseI32ArrayAttr({static_cast<int>(size)}));
451 if (langOpts.OffloadUniformBlock)
452 addUnitAttr(cir::CIRDialect::getUniformWorkGroupSizeAttrName());
454 if (langOpts.CUDA && !langOpts.CUDAIsDevice &&
455 targetDecl->
hasAttr<CUDAGlobalAttr>()) {
459 auto attr = cir::CUDAKernelNameAttr::get(
462 attrs.set(
attr.getMnemonic(),
attr);
467 if (
auto *modularFormat = targetDecl->
getAttr<ModularFormatAttr>()) {
469 StringRef
type =
format->getType()->getName();
470 std::string formatIdx = std::to_string(
format->getFormatIdx());
471 std::string firstArg = std::to_string(
format->getFirstArg());
473 type, formatIdx, firstArg,
474 modularFormat->getModularImplFn()->getName(),
475 modularFormat->getImplName()};
476 llvm::append_range(args, modularFormat->aspects());
477 attrs.set(cir::CIRDialect::getModularFormatAttrName(),
478 builder.getStringAttr(llvm::join(args,
",")));
484 bool hasOptNoneAttr = targetDecl && targetDecl->
hasAttr<OptimizeNoneAttr>();
496 if (targetDecl->
hasAttr<ZeroCallUsedRegsAttr>()) {
499 targetDecl->
getAttr<ZeroCallUsedRegsAttr>()->getZeroCallUsedRegs();
501 cir::CIRDialect::getZeroCallUsedRegsAttrName(),
502 mlir::StringAttr::get(
504 ZeroCallUsedRegsAttr::ConvertZeroCallUsedRegsKindToStr(
kind)));
507 if (targetDecl->
hasAttr<NoConvergentAttr>())
508 attrs.erase(cir::CIRDialect::getConvergentAttrName());
513 if (!attrOnCallSite) {
517 static const llvm::StringSet<> returnsTwiceFn{
518 "_setjmpex",
"setjmp",
"_setjmp",
"vfork",
519 "sigsetjmp",
"__sigsetjmp",
"savectx",
"getcontext"};
520 if (returnsTwiceFn.contains(name))
521 addUnitAttr(cir::CIRDialect::getReturnsTwiceAttrName());
523 llvm::StringMap<std::string> cpuAndFeatures;
526 for (
const auto &[key, val] : cpuAndFeatures)
527 attrs.set(key, builder.getStringAttr(val));
537 constructFunctionReturnAttributes(info, targetDecl, isThunk, retAttrs);
538 constructFunctionArgumentAttributes(info, targetDecl, isThunk, attrOnCallSite,
542bool CIRGenModule::hasStrictReturn(
QualType retTy,
const Decl *targetDecl) {
548 if (
getLangOpts().Sanitize.has(SanitizerKind::Memory))
555 if (
const FunctionDecl *func = dyn_cast<FunctionDecl>(targetDecl)) {
556 if (func->isExternC())
558 }
else if (
const VarDecl *var = dyn_cast<VarDecl>(targetDecl)) {
560 if (var->isExternC())
573bool CIRGenModule::mayDropFunctionReturn(
const ASTContext &context,
577 if (
const RecordType *recTy =
579 if (
const auto *record = dyn_cast<CXXRecordDecl>(recTy->getDecl()))
580 return record->hasTrivialDestructor();
623 if (
const MatrixType *Matrix = dyn_cast<MatrixType>(clangTy))
632void CIRGenModule::constructFunctionReturnAttributes(
634 mlir::NamedAttrList &retAttrs) {
636 QualType retTy =
info.getReturnType();
637 const cir::ABIArgInfo retInfo =
info.getReturnInfo();
640 if (codeGenOpts.EnableNoundefAttrs && hasStrictReturn(retTy, targetDecl) &&
643 retAttrs.set(mlir::LLVM::LLVMDialect::getNoUndefAttrName(),
647 if (llvm::FPClassTest mask =
649 retAttrs.set(mlir::LLVM::LLVMDialect::getNoFPClassAttrName(),
650 builder.getI64IntegerAttr(mask));
656 if (
const auto *refTy = retTy->
getAs<ReferenceType>()) {
657 QualType pointeeTy = refTy->getPointeeType();
659 retAttrs.set(mlir::LLVM::LLVMDialect::getDereferenceableAttrName(),
660 builder.getI64IntegerAttr(
663 if (
getTypes().getTargetAddressSpace(pointeeTy) == 0 &&
664 !codeGenOpts.NullPointerIsValid)
665 retAttrs.set(mlir::LLVM::LLVMDialect::getNonNullAttrName(),
669 retAttrs.set(mlir::LLVM::LLVMDialect::getAlignAttrName(),
670 builder.getI64IntegerAttr(
676void CIRGenModule::constructFunctionArgumentAttributes(
678 bool attrOnCallSite, llvm::MutableArrayRef<mlir::NamedAttrList> argAttrs) {
683 if (
info.isInstanceMethod() && !isThunk) {
684 QualType thisPtrTy =
info.arguments()[0];
690 if (!codeGenOpts.NullPointerIsValid &&
691 getTypes().getTargetAddressSpace(thisPtrTy) == 0) {
692 argAttrs[0].set(mlir::LLVM::LLVMDialect::getDereferenceableAttrName(),
693 builder.getI64IntegerAttr(
695 argAttrs[0].set(mlir::LLVM::LLVMDialect::getNonNullAttrName(),
702 mlir::LLVM::LLVMDialect::getDereferenceableOrNullAttrName(),
703 builder.getI64IntegerAttr(
bytes));
707 mlir::LLVM::LLVMDialect::getAlignAttrName(),
708 builder.getI64IntegerAttr(
725 const auto *fd = dyn_cast_or_null<FunctionDecl>(targetDecl);
730 SmallVector<const ParmVarDecl *> parmDecls;
731 parmDecls.reserve(argAttrs.size());
733 if (
info.isInstanceMethod())
734 parmDecls.push_back(
nullptr);
735 parmDecls.insert(parmDecls.end(), fd->param_begin(), fd->param_end());
737 parmDecls.resize(argAttrs.size(),
nullptr);
739 for (
const auto &[argAttrList, argCanType, pvd] :
740 llvm::zip_equal(argAttrs,
info.arguments(), parmDecls)) {
742 QualType argType = argCanType;
745 if (codeGenOpts.EnableNoundefAttrs &&
747 argAttrList.set(mlir::LLVM::LLVMDialect::getNoUndefAttrName(),
755 if (
const auto *refTy = argType->
getAs<ReferenceType>()) {
758 argAttrList.set(mlir::LLVM::LLVMDialect::getDereferenceableAttrName(),
759 builder.getI64IntegerAttr(
761 if (
getTypes().getTargetAddressSpace(pointeeTy) == 0 &&
762 !codeGenOpts.NullPointerIsValid)
763 argAttrList.set(mlir::LLVM::LLVMDialect::getNonNullAttrName(),
767 mlir::LLVM::LLVMDialect::getAlignAttrName(),
768 builder.getI64IntegerAttr(
773 if (llvm::FPClassTest mask =
775 argAttrList.set(mlir::LLVM::LLVMDialect::getNoFPClassAttrName(),
776 builder.getI64IntegerAttr(mask));
780 if (!attrOnCallSite && pvd && pvd->getType()->isPointerType() &&
781 pvd->getType().isRestrictQualified() && !fd->getBuiltinID())
782 argAttrList.set(mlir::LLVM::LLVMDialect::getNoAliasAttrName(),
787 if (pvd && argType->
isAnyPointerType() && !codeGenOpts.NullPointerIsValid) {
788 unsigned srcIdx = pvd->getFunctionScopeIndex();
789 if (pvd->hasAttr<NonNullAttr>() ||
790 (fd->getAttr<NonNullAttr>() &&
791 fd->getAttr<NonNullAttr>()->isNonNull(srcIdx)))
792 argAttrList.set(mlir::LLVM::LLVMDialect::getNonNullAttrName(),
805 if (!fpt->hasExtParameterInfos()) {
806 prefix.append(fpt->param_type_begin(), fpt->param_type_end());
813 prefix.reserve(prefix.size() + fpt->getNumParams());
815 fpt->getExtParameterInfos();
816 assert(extInfos.size() == fpt->getNumParams());
817 for (
auto [paramType, extInfo] : llvm::zip_equal(
818 llvm::make_range(fpt->param_type_begin(), fpt->param_type_end()),
820 prefix.push_back(paramType);
821 if (extInfo.hasPassObjectSize())
833 bool passParams =
true;
835 if (
auto *cd = dyn_cast<CXXConstructorDecl>(md)) {
838 if (
auto inherited = cd->getInheritedConstructor())
849 theCXXABI.buildStructorSignature(gd, argTypes);
853 (passParams && md->isVariadic() ?
RequiredArgs(argTypes.size())
856 CanQualType resultType = theCXXABI.hasThisReturn(gd) ? argTypes.front()
857 : theCXXABI.hasMostDerivedReturn(gd)
858 ? astContext.VoidPtrTy
861 assert(!theCXXABI.hasThisReturn(gd) &&
862 "Please send PR with a test and remove this");
868 fpt->getExtInfo(), required);
884 cgm.errorNYI(
"deriveThisType: no record decl");
907 fpt->getExtInfo(), required);
921 if (
type->isReferenceType()) {
927 "emitDelegateCallArg: ObjCAutoRefCount");
936 if (
type->isRecordType() &&
937 type->castAsRecordDecl()->isParamDestroyedInCallee() &&
940 "emitDelegateCallArg: callee-destructed param");
951 if (
const auto *proto = dyn_cast<FunctionProtoType>(fnType)) {
957 if (proto->isVariadic())
961 cgm.
errorNYI(
"call to function without a prototype");
964 for (
const CallArg &arg : args)
982 unsigned extraPrefixArgs,
unsigned extraSuffixArgs,
bool passProtoArgs) {
986 for (
const auto &arg : args)
987 argTypes.push_back(astContext.getCanonicalParamType(arg.ty));
990 unsigned totalPrefixArgs = 1 + extraPrefixArgs;
995 fpt, totalPrefixArgs + extraSuffixArgs)
999 if (theCXXABI.hasThisReturn(gd))
1001 "arrangeCXXConstructorCall: hasThisReturn");
1002 if (theCXXABI.hasMostDerivedReturn(gd))
1004 "arrangeCXXConstructorCall: hasMostDerivedReturn");
1011 fpt->getExtInfo(), required);
1022 assert(numPrefixArgs + 1 <= args.size() &&
1023 "Emitting a call with less args than the required prefix?");
1027 for (
const CallArg &arg : args)
1028 argTypes.push_back(astContext.getCanonicalParamType(arg.ty));
1033 true, argTypes, proto->
getExtInfo(), required);
1046 for (
const CallArg &arg : args)
1047 argTypes.push_back(astContext.getCanonicalParamType(arg.ty));
1058 if (fd->
hasAttr<CUDAGlobalAttr>()) {
1087 auto *thisType = theCXXABI.getThisArgumentTypeForMethod(md);
1109 return ::arrangeCIRFunctionInfo(
1110 *
this,
true, argTypes,
1118 if (
const auto *md = dyn_cast<CXXMethodDecl>(fd))
1119 if (md->isInstance())
1154 if (!ac.
getDecl() || !(
sanOpts.has(SanitizerKind::NonnullAttribute) ||
1155 sanOpts.has(SanitizerKind::NullabilityArg)))
1157 cgm.errorNYI(
"non-null arg check is NYI");
1160static cir::CIRCallOpInterface
1162 cir::FuncType indirectFuncTy, mlir::Value indirectFuncVal,
1163 cir::FuncOp directFuncOp,
1165 const mlir::NamedAttrList &attrs,
1167 const mlir::NamedAttrList &retAttrs) {
1172 assert(builder.getInsertionBlock() &&
"expected valid basic block");
1175 if (indirectFuncTy) {
1179 cirCallArgs, attrs, argAttrs, retAttrs);
1181 op = builder.
createCallOp(callLoc, directFuncOp, cirCallArgs, attrs,
1182 argAttrs, retAttrs);
1192 return ::arrangeCIRFunctionInfo(*
this,
false, argTypes,
1208 cir::CIRCallOpInterface *callOp,
1212 mlir::Location loc =
getLoc(clangLoc);
1218 if (
const FunctionDecl *fd = dyn_cast_or_null<FunctionDecl>(targetDecl)) {
1225 if ((targetDecl->
hasAttr<AlwaysInlineAttr>() &&
1226 (targetDecl->
hasAttr<TargetAttr>() ||
1230 targetDecl->
hasAttr<TargetAttr>())))
1235 const FunctionDecl *calleeDecl = dyn_cast_or_null<FunctionDecl>(targetDecl);
1240 for (
auto [argNo, arg, canQualArgType] :
1241 llvm::enumerate(args, funcInfo.
argTypes())) {
1247 if (!mlir::isa<cir::RecordType>(argType) &&
1248 !mlir::isa<cir::ComplexType>(argType)) {
1250 if (arg.isAggregate())
1251 cgm.errorNYI(loc,
"emitCall: aggregate call argument");
1252 v = arg.getKnownRValue().getValue();
1255 if (argType != v.getType() && mlir::isa<cir::IntType>(v.getType()))
1256 cgm.errorNYI(loc,
"emitCall: widening integer call argument");
1260 if (argType != v.getType()) {
1261 auto argPtrTy = mlir::dyn_cast<cir::PointerType>(argType);
1262 auto vPtrTy = mlir::dyn_cast<cir::PointerType>(v.getType());
1263 if (argPtrTy && vPtrTy &&
1264 argPtrTy.getPointee() == vPtrTy.getPointee() &&
1265 argPtrTy.getAddrSpace() != vPtrTy.getAddrSpace()) {
1275 cirCallArgs[argNo] = v;
1278 if (!arg.isAggregate()) {
1280 arg.copyInto(*
this, src, loc);
1282 src = arg.hasLValue() ? arg.getKnownLValue().getAddress()
1283 : arg.getKnownRValue().getAggregateAddress();
1290 mlir::Location argLoc = loc;
1303 if (srcTy != argType) {
1304 cgm.errorNYI(loc,
"emitCall: source type does not match argument type");
1320 cirCallArgs[argNo] = builder.createLoad(argLoc, src);
1329 mlir::NamedAttrList attrs;
1330 std::vector<mlir::NamedAttrList> argAttrs(funcInfo.
arguments().size());
1331 mlir::NamedAttrList retAttrs;
1333 if (
auto calleeFuncOp = dyn_cast<cir::FuncOp>(calleePtr))
1334 funcName = calleeFuncOp.getName();
1338 cir::CallingConv callingConv;
1340 attrs, argAttrs, retAttrs, callingConv,
1343 auto resolvedFuncOpFromGlobal = [&](mlir::Operation *op) -> cir::FuncOp {
1344 if (
auto fnOp = dyn_cast<cir::FuncOp>(op))
1346 if (
auto getGlobalOp = dyn_cast<cir::GetGlobalOp>(op)) {
1351 mlir::Operation *globalOp =
cgm.getGlobalValue(getGlobalOp.getName());
1352 assert(globalOp &&
"undefined global function");
1358 cir::FuncType indirectFuncTy;
1359 mlir::Value indirectFuncVal;
1360 cir::FuncOp directFuncOp;
1369 if (cir::FuncOp candidate = resolvedFuncOpFromGlobal(calleePtr)) {
1370 if (candidate.getFunctionType() == cirFuncTy) {
1371 directFuncOp = candidate;
1373 mlir::Value addr = cir::GetGlobalOp::create(
1374 builder, loc, cir::PointerType::get(candidate.getFunctionType()),
1375 candidate.getSymName());
1376 indirectFuncTy = cirFuncTy;
1378 builder.createBitcast(addr, cir::PointerType::get(cirFuncTy));
1381 [[maybe_unused]] mlir::ValueTypeRange<mlir::ResultRange> resultTypes =
1382 calleePtr->getResultTypes();
1383 [[maybe_unused]]
auto funcPtrTy =
1384 mlir::dyn_cast<cir::PointerType>(resultTypes.front());
1385 assert(funcPtrTy && mlir::isa<cir::FuncType>(funcPtrTy.getPointee()) &&
1386 "expected pointer to function");
1388 indirectFuncTy = cirFuncTy;
1389 indirectFuncVal = calleePtr->getResult(0);
1396 bool cannotThrow = attrs.getNamed(
"nothrow").has_value();
1399 mlir::Location callLoc = loc;
1400 cir::CIRCallOpInterface theCall =
1401 emitCallLikeOp(*
this, loc, indirectFuncTy, indirectFuncVal, directFuncOp,
1402 cirCallArgs, isInvoke, attrs, argAttrs, retAttrs);
1412 theCall.setInlineKind(cir::InlineKind::NoInline);
1414 !
cgm.getTargetCIRGenInfo().wouldInliningViolateFunctionCallABI(
1415 callerDecl, calleeDecl))
1416 theCall.setInlineKind(cir::InlineKind::AlwaysInline);
1422 if (triple.isPPC() || triple.isMIPS()) {
1424 "musttail call target legality checks");
1434 cgm.errorUnsupported(
mustTailCall,
"tail call skipping over cleanups");
1442 diag::err_musttail_noexcept_mismatch);
1454 auto *cleanupScope = dyn_cast<EHCleanupScope>(&*it);
1455 if (!cleanupScope ||
1456 !cleanupScope->getCleanup()->isRedundantBeforeReturn()) {
1457 cgm.errorUnsupported(
mustTailCall,
"tail call skipping over cleanups");
1462 theCall->setAttr(cir::CIRDialect::getMustTailAttrName(),
1463 builder.getUnitAttr());
1466 cir::ReturnOp::create(builder, loc);
1468 cir::ReturnOp::create(builder, loc, theCall->getResult(0));
1473 builder.createBlock(builder.getBlock()->getParent());
1489 mlir::ResultRange results = theCall->getOpResults();
1490 assert(results.size() <= 1 &&
"multiple returns from a call");
1497 mlir::ResultRange results = theCall->getOpResults();
1498 assert(results.size() == 1 &&
"unexpected number of returns");
1502 if (results[0].
getType() != retCIRTy)
1503 cgm.errorNYI(loc,
"bitcast on function return value");
1505 mlir::Region *region = builder.getBlock()->getParent();
1506 if (region != theCall->getParentRegion())
1507 cgm.errorNYI(loc,
"function calls with cleanup");
1512 mlir::ResultRange results = theCall->getOpResults();
1513 assert(!results.empty() &&
1514 "Expected at least one result for complex rvalue");
1518 llvm_unreachable(
"Invalid evaluation kind");
1522 mlir::Location loc)
const {
1524 if (!hasLV &&
rv.isScalar())
1526 else if (!hasLV &&
rv.isComplex())
1536 mlir::NamedAttrList attrs) {
1541 cir::CallOp call = builder.createCallOp(loc, callee, args);
1542 assert(call->getNumResults() <= 1 &&
1543 "runtime functions have at most 1 result");
1546 call->setAttrs(attrs);
1548 if (call->getNumResults() == 0)
1551 return call->getResult(0);
1557 "reference binding to unmaterialized r-value!");
1573 bool destroyedInCallee =
true;
1575 destroyedInCallee = rd->hasNonTrivialDestructor();
1577 if (destroyedInCallee)
1582 args.
add(rv, argType);
1584 if (destroyedInCallee &&
getLangOpts().Exceptions)
1586 "callee-destructed param with exceptions");
1601QualType CIRGenFunction::getVarArgType(
const Expr *arg) {
1606 return arg->getType();
1609 cgm.
errorNYI(arg->getSourceRange(),
"getVarArgType: NYI for Windows target");
1610 return arg->getType();
1627 llvm::iterator_range<clang::CallExpr::const_arg_iterator> argRange,
1634 bool isVariadic =
false;
1639 isVariadic = fpt->isVariadic();
1641 argTypes.assign(fpt->param_type_begin() + paramsToSkip,
1642 fpt->param_type_end());
1646 for (
const clang::Expr *a : llvm::drop_begin(argRange, argTypes.size()))
1647 argTypes.push_back(isVariadic ? getVarArgType(a) : a->getType());
1648 assert(argTypes.size() == (
size_t)(argRange.end() - argRange.begin()));
1655 auto leftToRight =
true;
1658 auto maybeEmitImplicitObjectSize = [&](
size_t i,
const Expr *arg,
1667 assert(emittedArg.getValue() &&
"We emitted nothing for the arg?");
1670 emittedArg.getValue(), ps->isDynamic());
1676 std::iter_swap(args.rbegin(), std::next(args.rbegin()));
1680 size_t callArgsStart = args.size();
1681 for (
size_t i = 0; i != argTypes.size(); ++i) {
1682 size_t idx = leftToRight ? i : argTypes.size() - i - 1;
1684 size_t initialArgSize = args.size();
1690 assert(initialArgSize + 1 == args.size() &&
1691 "The code below depends on only adding one arg per emitCallArg");
1692 (void)initialArgSize;
1696 if (!args.back().hasLValue()) {
1697 RValue rvArg = args.back().getKnownRValue();
1699 maybeEmitImplicitObjectSize(idx, *currentArg, rvArg);
1703 std::reverse(args.begin() + callArgsStart, args.end());
static StringRef bytes(const std::vector< T, Allocator > &v)
static void setCUDAKernelCallingConvention(CanQualType &funcTy, CIRGenModule &cgm, const FunctionDecl *fd)
Set calling convention for CUDA/HIP kernel.
static void addTrivialDefaultFunctionAttributes(mlir::MLIRContext *mlirCtx, StringRef name, bool hasOptNoneAttr, const CodeGenOptions &codeGenOpts, const LangOptions &langOpts, bool attrOnCallSite, mlir::NamedAttrList &attrs)
Add default attributes to a function, which have merge semantics under -mlink-builtin-bitcode and sho...
static void addNoBuiltinAttributes(mlir::MLIRContext &ctx, mlir::NamedAttrList &attrs, const LangOptions &langOpts, const NoBuiltinAttr *nba=nullptr)
static bool determineNoUndef(QualType clangTy, CIRGenTypes &types, const cir::CIRDataLayout &layout, const cir::ABIArgInfo &argInfo)
static void addDenormalModeAttrs(llvm::DenormalMode fpDenormalMode, llvm::DenormalMode fp32DenormalMode, mlir::NamedAttrList &attrs)
Add denormal-fp-math and denormal-fp-math-f32 as appropriate for the requested denormal behavior,...
static void addMergeableDefaultFunctionAttributes(const CodeGenOptions &codeGenOpts, mlir::NamedAttrList &attrs)
Add default attributes to a function, which have merge semantics under -mlink-builtin-bitcode and sho...
static void appendParameterTypes(const CIRGenTypes &cgt, SmallVectorImpl< CanQualType > &prefix, CanQual< FunctionProtoType > fpt)
Adds the formal parameters in FPT to the given prefix.
static cir::CIRCallOpInterface emitCallLikeOp(CIRGenFunction &cgf, mlir::Location callLoc, cir::FuncType indirectFuncTy, mlir::Value indirectFuncVal, cir::FuncOp directFuncOp, const SmallVectorImpl< mlir::Value > &cirCallArgs, bool isInvoke, const mlir::NamedAttrList &attrs, llvm::ArrayRef< mlir::NamedAttrList > argAttrs, const mlir::NamedAttrList &retAttrs)
static void addAttributesFromFunctionProtoType(CIRGenBuilderTy &builder, mlir::NamedAttrList &attrs, const FunctionProtoType *fpt)
static llvm::StringLiteral getZeroCallUsedRegsKindStr(llvm::ZeroCallUsedRegs::ZeroCallUsedRegsKind k)
static const CIRGenFunctionInfo & arrangeFreeFunctionLikeCall(CIRGenTypes &cgt, CIRGenModule &cgm, const CallArgList &args, const FunctionType *fnType)
static const CIRGenFunctionInfo & arrangeCIRFunctionInfo(CIRGenTypes &cgt, bool instanceMethod, SmallVectorImpl< CanQualType > &prefix, CanQual< FunctionProtoType > fpt)
Arrange the CIR function layout for a value of the given function type, on top of any implicit parame...
static StringRef getTriple(const Command &Job)
*collection of selector each with an associated kind and an ordered *collection of selectors A selector has a kind
static bool isVirtualCall(const CallExpr *CE)
bool isIndirectAliased() const
static ABIArgInfo getDirect(mlir::Type ty=nullptr)
cir::CallOp createIndirectCallOp(mlir::Location loc, mlir::Value indirectTarget, cir::FuncType funcType, mlir::ValueRange operands, llvm::ArrayRef< mlir::NamedAttribute > attrs={}, llvm::ArrayRef< mlir::NamedAttrList > argAttrs={}, llvm::ArrayRef< mlir::NamedAttribute > resAttrs={})
cir::CallOp createCallOp(mlir::Location loc, mlir::SymbolRefAttr callee, mlir::Type returnType, mlir::ValueRange operands, llvm::ArrayRef< mlir::NamedAttribute > attrs={}, llvm::ArrayRef< mlir::NamedAttrList > argAttrs={}, llvm::ArrayRef< mlir::NamedAttribute > resAttrs={})
bool typeSizeEqualsStoreSize(mlir::Type ty) const
Returns true if no extra padding bits are needed when storing the specified type.
CanQualType getCanonicalParamType(QualType T) const
Return the canonical parameter type corresponding to the specific potentially non-canonical one.
QualType getPointerType(QualType T) const
Return the uniqued reference to the type for a pointer to the specified type.
CanQualType getCanonicalSizeType() const
QualType getSizeType() const
Return the unique type for "size_t" (C99 7.17), defined in <stddef.h>.
const TargetInfo & getTargetInfo() const
CanQualType getCanonicalTagType(const TagDecl *TD) const
Represents an array type, per C99 6.7.5.2 - Array Declarators.
mlir::Type getElementType() const
void setExternallyDestructed(bool destructed=true)
static AggValueSlot ignored()
Returns an aggregate value slot indicating that the aggregate value is being ignored.
virtual CIRGenCallee getVirtualFunctionPointer(CIRGenFunction &cgf, clang::GlobalDecl gd, Address thisAddr, mlir::Type ty, SourceLocation loc)=0
Build a virtual function pointer in the ABI-specific way.
Abstract information about a function or function prototype.
clang::GlobalDecl getCalleeDecl() const
const clang::FunctionProtoType * getCalleeFunctionProtoType() const
CIRGenCalleeInfo getAbstractInfo() const
clang::GlobalDecl getVirtualMethodDecl() const
CIRGenCallee prepareConcreteCallee(CIRGenFunction &cgf) const
If this is a delayed callee computation of some sort, prepare a concrete callee.
Address getThisAddress() const
cir::FuncType getVirtualFunctionType() const
const clang::CallExpr * getVirtualCallExpr() const
mlir::Operation * getFunctionPointer() const
CanQualType getReturnType() const
llvm::MutableArrayRef< CanQualType > argTypes()
static CIRGenFunctionInfo * create(cir::CallingConv cirCC, FunctionType::ExtInfo info, bool instanceMethod, CanQualType resultType, llvm::ArrayRef< CanQualType > argTypes, RequiredArgs required)
bool isInstanceMethod() const
llvm::ArrayRef< CanQualType > arguments() const
const_arg_iterator argTypesBegin() const
An abstract representation of regular/ObjC call/message targets.
bool hasFunctionDecl() const
unsigned getNumParams() const
const clang::Decl * getDecl() const
const clang::ParmVarDecl * getParamDecl(unsigned I) const
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.
RValue convertTempToRValue(Address addr, clang::QualType type, clang::SourceLocation loc)
Given the address of a temporary variable, produce an r-value of its type.
EHScopeStack::stable_iterator prologueCleanupDepth
The cleanup depth enclosing all the cleanups associated with the parameters.
CIRGenTypes & getTypes() const
const clang::LangOptions & getLangOpts() const
const TargetInfo & getTarget() const
LValue emitLValue(const clang::Expr *e)
Emit code to compute a designator that specifies the location of the expression.
const clang::Decl * curFuncDecl
Address getAddrOfLocalVar(const clang::VarDecl *vd)
Return the address of a local variable.
void emitAggregateCopy(LValue dest, LValue src, QualType eltTy, AggValueSlot::Overlap_t mayOverlap, bool isVolatile=false)
Emit an aggregate copy.
cir::TryOp ehSpecTryOp
The cir.try wrapping a function whose exception specification has to be enforced.
mlir::Location getLoc(clang::SourceLocation srcLoc)
Helpers to convert Clang's SourceLocation to a MLIR Location.
void emitAggregateStore(mlir::Value value, Address dest)
mlir::Value performAddrSpaceCast(mlir::Value v, mlir::Type destTy) const
RValue emitReferenceBindingToExpr(const Expr *e)
Emits a reference binding to the passed in expression.
mlir::Value evaluateOrEmitBuiltinObjectSize(const clang::Expr *e, unsigned type, cir::IntType resType, mlir::Value emittedE, bool isDynamic)
void checkTargetFeatures(const clang::CallExpr *e, const clang::FunctionDecl *targetDecl)
Emit a diagnostic if the target features required by targetDecl are not available in the calling func...
EHScopeStack ehStack
Tracks function scope overall cleanup handling.
AggValueSlot createAggTemp(QualType ty, mlir::Location loc, const Twine &name="tmp", Address *alloca=nullptr)
Create a temporary memory object for the given aggregate type.
clang::SanitizerSet sanOpts
Sanitizers enabled for this function.
RValue getUndefRValue(clang::QualType ty)
Get an appropriate 'undef' rvalue for the given type.
Address returnValue
The temporary alloca to hold the return value.
static bool hasAggregateEvaluationKind(clang::QualType type)
RValue emitAnyExprToTemp(const clang::Expr *e)
Similarly to emitAnyExpr(), however, the result will always be accessible even if no aggregate locati...
const CallExpr * mustTailCall
void emitStoreOfComplex(mlir::Location loc, mlir::Value v, LValue dest, bool isInit)
EmitStoreOfComplex - Store a complex number into the specified l-value.
std::string getCounterAggTmpAsString()
void emitCallArg(CallArgList &args, const clang::Expr *e, clang::QualType argType)
const clang::Decl * curCodeDecl
This is the inner-most code context, which includes blocks.
CIRGenBuilderTy & getBuilder()
void emitNonNullArgCheck(RValue rv, QualType argType, SourceLocation argLoc, AbstractCallee ac, unsigned paramNum)
Create a check for a function parameter that may potentially be declared as non-null.
mlir::Value emitRuntimeCall(mlir::Location loc, cir::FuncOp callee, llvm::ArrayRef< mlir::Value > args={}, mlir::NamedAttrList attrs={})
std::optional< SourceRange > currSrcLoc
Use to track source locations across nested visitor traversals.
RValue emitCall(const CIRGenFunctionInfo &funcInfo, const CIRGenCallee &callee, ReturnValueSlot returnValue, const CallArgList &args, cir::CIRCallOpInterface *callOp, bool isMustTail, SourceRange clangLoc)
LValue makeAddrLValue(Address addr, QualType ty, AlignmentSource source=AlignmentSource::Type)
bool isCatchOrCleanupRequired()
RValue emitAnyExpr(const clang::Expr *e, AggValueSlot aggSlot=AggValueSlot::ignored(), bool ignoreResult=false)
Emit code to compute the specified expression which can have any type.
void emitDelegateCallArg(CallArgList &args, const clang::VarDecl *param, clang::SourceLocation loc)
We are performing a delegate call; that is, the current function is delegating to another one.
bool inEHSpecTerminateScope()
Whether the wrapper opened by emitStartEHSpec is a terminate scope, whose handler calls std::terminat...
clang::ASTContext & getContext() const
bool inAlwaysInlineAttributedStmt
True if the current statement has always_inline attribute.
bool inNoInlineAttributedStmt
True if the current statement has noinline attribute.
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...
void emitAggExpr(const clang::Expr *e, AggValueSlot slot)
This class organizes the cross-function state that is used while generating CIR code.
llvm::StringRef getMangledName(clang::GlobalDecl gd)
DiagnosticBuilder errorNYI(SourceLocation, llvm::StringRef)
Helpers to emit "not yet implemented" error diagnostics.
clang::ASTContext & getASTContext() const
void addDefaultFunctionAttributes(StringRef name, bool hasOptNoneAttr, bool attrOnCallSite, mlir::NamedAttrList &attrs)
Helper function for constructAttributeList/others.
CIRGenBuilderTy & getBuilder()
CharUnits getMinimumObjectSize(QualType ty)
Returns the minimum object size for an object of the given type.
const cir::CIRDataLayout getDataLayout() const
const clang::CodeGenOptions & getCodeGenOpts() const
const clang::LangOptions & getLangOpts() const
const TargetCIRGenInfo & getTargetCIRGenInfo()
mlir::MLIRContext & getMLIRContext()
CIRGenCXXABI & getCXXABI() const
clang::CharUnits getNaturalPointeeTypeAlignment(clang::QualType t, LValueBaseInfo *baseInfo=nullptr)
void constructAttributeList(llvm::StringRef name, const CIRGenFunctionInfo &info, CIRGenCalleeInfo calleeInfo, mlir::NamedAttrList &attrs, llvm::MutableArrayRef< mlir::NamedAttrList > argAttrs, mlir::NamedAttrList &retAttrs, cir::CallingConv &callingConv, bool attrOnCallSite, bool isThunk)
Get the CIR attributes and calling convention to use for a particular function type.
This class organizes the cross-module state that is used while lowering AST types to CIR types.
const CIRGenFunctionInfo & arrangeGlobalDeclaration(GlobalDecl gd)
const CIRGenFunctionInfo & arrangeCXXMethodDeclaration(const clang::CXXMethodDecl *md)
C++ methods have some special rules and also have implicit parameters.
const CIRGenFunctionInfo & arrangeCXXStructorDeclaration(clang::GlobalDecl gd)
const CIRGenFunctionInfo & arrangeCIRFunctionInfo(CanQualType returnType, bool isInstanceMethod, llvm::ArrayRef< CanQualType > argTypes, FunctionType::ExtInfo info, RequiredArgs required)
const CIRGenFunctionInfo & arrangeFreeFunctionCall(const CallArgList &args, const FunctionType *fnType)
const CIRGenFunctionInfo & arrangeFreeFunctionType(CanQual< FunctionProtoType > fpt)
const CIRGenFunctionInfo & arrangeBuiltinFunctionCall(QualType resultType, const CallArgList &args)
A builtin function is a freestanding function using the default C conventions.
const CIRGenFunctionInfo & arrangeCXXConstructorCall(const CallArgList &args, const clang::CXXConstructorDecl *d, clang::CXXCtorType ctorKind, unsigned extraPrefixArgs, unsigned extraSuffixArgs, bool passProtoArgs=true)
Arrange a call to a C++ method, passing the given arguments.
const CIRGenFunctionInfo & arrangeCXXMethodType(const clang::CXXRecordDecl *rd, const clang::FunctionProtoType *ftp, const clang::CXXMethodDecl *md)
Arrange the argument and result information for a call to an unknown C++ non-static member function o...
cir::FuncType getFunctionType(const CIRGenFunctionInfo &info)
Get the CIR function type for.
bool inheritingCtorHasParams(const InheritedConstructor &inherited, CXXCtorType type)
Determine if a C++ inheriting constructor should have parameters matching those of its inherited cons...
clang::CanQualType deriveThisType(const clang::CXXRecordDecl *rd, const clang::CXXMethodDecl *md)
Derives the 'this' type for CIRGen purposes, i.e.
const CIRGenFunctionInfo & arrangeFunctionDeclaration(const clang::FunctionDecl *fd)
Free functions are functions that are compatible with an ordinary C function pointer type.
clang::ASTContext & getASTContext() const
const CIRGenFunctionInfo & arrangeCXXMethodCall(const CallArgList &args, const clang::FunctionProtoType *type, RequiredArgs required, unsigned numPrefixArgs)
Arrange a call to a C++ method, passing the given arguments.
mlir::Type convertType(clang::QualType type)
Convert a Clang type into a mlir::Type.
mlir::Type convertTypeForMem(clang::QualType, bool forBitField=false)
Convert type T into an mlir::Type.
void addUncopiedAggregate(LValue lvalue, clang::QualType type)
void add(RValue rvalue, clang::QualType type)
A non-stable pointer into the scope stack.
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)
static RValue getAggregate(Address addr, bool isVolatile=false)
Convert an Address to an RValue.
static RValue getComplex(mlir::Value v)
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...
virtual bool isNoProtoCallVariadic(const FunctionNoProtoType *fnType) const
Determine whether a call to an unprototyped functions under the given calling convention should use t...
virtual void setCUDAKernelCallingConvention(const clang::FunctionType *&ft) const
Represents a C++ constructor within a class.
Represents a static or instance method of a struct/union/class.
bool isImplicitObjectMemberFunction() const
[C++2b][dcl.fct]/p7 An implicit object member function is a non-static member function without an exp...
Qualifiers getMethodQualifiers() const
Represents a C++ struct/union/class.
CallExpr - Represents a function call (C99 6.5.2.2, C++ [expr.call]).
SourceLocation getBeginLoc() const
ConstExprIterator const_arg_iterator
Represents a canonical, potentially-qualified type.
static CanQual< Type > CreateUnsafe(QualType Other)
CanProxy< U > castAs() const
CanQual< T > getUnqualifiedType() const
Retrieve the unqualified form of this type.
CanProxy< U > getAs() const
Retrieve a canonical type pointer with a different static type, upcasting or downcasting as needed.
QuantityType getQuantity() const
getQuantity - Get the raw integer representation of this quantity.
CodeGenOptions - Track various options which control how the code is optimized and passed to the back...
llvm::DenormalMode FPDenormalMode
The floating-point denormal mode to use.
llvm::DenormalMode FP32DenormalMode
The floating-point denormal mode to use, for float.
std::string TrapFuncName
If not an empty string, trap intrinsics are lowered to calls to this function instead of to trap inst...
std::vector< std::string > DefaultFunctionAttrs
Complex values, per C99 6.2.5p11.
bool constructsVirtualBase() const
Returns true if the constructed base class is a virtual base class subobject of this declaration's cl...
This represents one expression.
ExprObjectKind getObjectKind() const
getObjectKind - The object kind that this expression produces.
Represents a function declaration or definition.
SourceRange getSourceRange() const override LLVM_READONLY
Source range that this declaration covers.
Represents a K&R-style 'int foo()' function, which has no information available about its arguments.
Represents a prototype with parameter type info, e.g.
ExceptionSpecificationType getExceptionSpecType() const
Get the kind of exception specification on this function.
bool isNothrow(bool ResultIfDependent=false) const
Determine whether this function type has a non-throwing exception specification.
A class which abstracts out some details necessary for making a call.
FunctionType - C99 6.7.5.3 - Function Declarators.
ExtInfo getExtInfo() const
QualType getReturnType() const
GlobalDecl - represents a global declaration.
CXXCtorType getCtorType() const
GlobalDecl getWithKernelReferenceKind(KernelReferenceKind Kind)
const Decl * getDecl() const
Description of a constructor that was inherited from a base class.
ConstructorUsingShadowDecl * getShadowDecl() const
Keeps track of the various options that can be enabled, which controls the dialect of C or C++ that i...
std::vector< std::string > NoBuiltinFuncs
A list of all -fno-builtin-* function names (e.g., memset).
bool isNoBuiltinFunc(StringRef Name) const
Is this a libc/libm function that is no longer recognized as a builtin because a -fno-builtin-* optio...
SanitizerSet Sanitize
Set of enabled sanitizers.
bool assumeFunctionsAreConvergent() const
Represents a matrix type, as defined in the Matrix Types clang extensions.
A (possibly-)qualified type.
bool isTriviallyCopyableType(const ASTContext &Context) const
Return true if this is a trivially copyable type (C++0x [basic.types]p9)
QualType getCanonicalType() const
LangAS getAddressSpace() const
bool isParamDestroyedInCallee() const
Encodes a location in the source.
A trivial tuple used to represent a source range.
SourceLocation getBegin() const
SourceRange getSourceRange() const LLVM_READONLY
SourceLocation tokens are not useful in isolation - they are low level value objects created/interpre...
bool hasConstructorVariants() const
Does this ABI have different entrypoints for complete-object and base-subobject constructors?
const llvm::Triple & getTriple() const
Returns the target triple of the primary target.
TargetCXXABI getCXXABI() const
Get the C++ ABI currently in use.
CXXRecordDecl * getAsCXXRecordDecl() const
Retrieves the CXXRecordDecl that this type refers to, either because the type is a RecordType or beca...
bool isVoidPointerType() const
bool isConstantSizeType() const
Return true if this is not a variable sized type, according to the rules of C99 6....
CanQualType getCanonicalTypeUnqualified() const
bool isReferenceType() const
bool isScalarType() const
QualType getPointeeType() const
If this is a pointer, ObjC object pointer, or block pointer, this returns the respective pointee.
bool isBitIntType() const
RecordDecl * castAsRecordDecl() const
bool isMemberPointerType() const
bool isObjectType() const
Determine whether this type is an object type.
bool isIncompleteType(NamedDecl **Def=nullptr) const
Types are partitioned into 3 broad categories (C99 6.2.5p1): object types, function types,...
bool hasFloatingRepresentation() const
Determine whether this type has a floating-point representation of some sort, e.g....
const T * getAsCanonical() const
If this type is canonically the specified type, return its canonical type cast to that specified type...
bool isAnyPointerType() const
const T * getAs() const
Member-template getAs<specific type>'.
bool isNullPtrType() const
bool isRecordType() const
Represents a variable declaration or definition.
SourceRange getSourceRange() const override LLVM_READONLY
Source range that this declaration covers.
QualType::DestructionKind needsDestruction(const ASTContext &Ctx) const
Would the destruction of this variable have any effect, and if so, what kind?
Represents a GCC generic vector type.
bool isSized(mlir::Type ty)
Returns true if the type is a CIR sized type.
@ Decl
The l-value was an access to a declared entity or something equivalently strong, like the address of ...
CanQual< FunctionProtoType > getFormalType(const CXXMethodDecl *MD)
Returns the canonical formal type of the given C++ method.
llvm::FPClassTest getNoFPClassTestMask(const LangOptions &LangOpts)
Returns the set of floating-point value kinds that the language options promise never reach a functio...
const internal::VariadicAllOfMatcher< Type > type
Matches Types in the clang AST.
void info(bool Verbose, unsigned Level, const char *Fmt, Ts &&...Args)
Prints an indented note to stderr when Verbose is set.
Top level wrappers for InstallAPI frontend operations.
CanQual< Type > CanQualType
Represents a canonical, potentially-qualified type.
CXXCtorType
C++ constructor types.
@ Ctor_Complete
Complete object ctor.
bool isa(CodeGen::Address addr)
bool isUnresolvedExceptionSpec(ExceptionSpecificationType ESpecType)
@ OK_Ordinary
An ordinary object is located at an address in memory.
@ Vector
'vector' clause, allowed on 'loop', Combined, and 'routine' directives.
U cast(CodeGen::Address addr)
static bool opCallBitcastArg()
static bool opCallCIRGenFuncInfoExtParamInfo()
static bool functionUsesSEHTry()
static bool emitLifetimeMarkers()
static bool lowerAggregateLoadStore()
static bool opCallSurroundingTry()
static bool nothrowAttr()
static bool opCallReturn()
static bool opCallPaddingArgs()
static bool opCallExtParameterInfo()
static bool dataLayoutTypeAllocSize()
static bool opCallObjCMethod()
static bool opCallInAlloca()
static bool opCallCallConv()
static bool opFuncCallingConv()
static bool opCallAttrs()
static bool fakeUseCleanup()
static bool opCallFnInfoOpts()
static bool msvcCXXPersonality()
static bool opCallCIRGenFuncInfoParamInfo()
Similar to AddedStructorArgs, but only notes the number of additional arguments.
llvm::PointerUnion< const clang::FunctionProtoType *, const clang::ObjCMethodDecl * > p
RValue getRValue(CIRGenFunction &cgf, mlir::Location loc) const
void copyInto(CIRGenFunction &cgf, Address addr, mlir::Location loc) const
bool has(SanitizerMask K) const
Check if a certain (single) sanitizer is enabled.