95#include "llvm/IR/IntrinsicsAArch64.h"
96#include "llvm/IR/IntrinsicsAMDGPU.h"
97#include "llvm/IR/IntrinsicsARM.h"
98#include "llvm/IR/IntrinsicsNVPTX.h"
99#include "llvm/IR/IntrinsicsWebAssembly.h"
137 cl::desc(
"Ensure that llvm.experimental.noalias.scope.decl for identical "
138 "scopes are not dominating"));
161 *
OS <<
"; ModuleID = '" << M->getModuleIdentifier() <<
"'\n";
174 V.printAsOperand(*
OS,
true,
MST);
179 void Write(
const DbgRecord *DR) {
195 *
OS <<
"declare_value";
216 template <
class T>
void Write(
const MDTupleTypedArrayWrapper<T> &MD) {
220 void Write(
const NamedMDNode *NMD) {
233 void Write(
const Comdat *
C) {
239 void Write(
const APInt *AI) {
245 void Write(
const unsigned i) { *
OS << i <<
'\n'; }
251 *
OS <<
A->getAsString() <<
'\n';
255 void Write(
const AttributeSet *AS) {
262 void Write(
const AttributeList *AL) {
268 void Write(Printable
P) { *
OS <<
P <<
'\n'; }
270 template <
typename T>
void Write(ArrayRef<T> Vs) {
271 for (
const T &V : Vs)
275 template <
typename T1,
typename... Ts>
276 void WriteTs(
const T1 &V1,
const Ts &... Vs) {
281 template <
typename... Ts>
void WriteTs() {}
290 *
OS << Message <<
'\n';
298 template <
typename T1,
typename... Ts>
308 *
OS << Message <<
'\n';
314 template <
typename T1,
typename... Ts>
346 Type *LandingPadResultTy;
353 bool HasDebugInfo =
false;
396 SawFrameEscape(
false), TBAAVerifyHelper(this) {
397 TreatBrokenDebugInfoAsError = ShouldTreatBrokenDebugInfoAsError;
400 bool hasBrokenDebugInfo()
const {
return BrokenDebugInfo; }
402 bool verify(
const Function &
F) {
403 llvm::TimeTraceScope timeScope(
"Verifier");
405 "An instance of this class only works with a specific module!");
414 DT.recalculate(
const_cast<Function &
>(
F));
416 for (
const BasicBlock &BB :
F) {
417 if (!BB.empty() && BB.back().isTerminator())
421 *OS <<
"Basic Block in function '" <<
F.getName()
422 <<
"' does not have terminator!\n";
423 BB.printAsOperand(*OS,
true, MST);
429 auto FailureCB = [
this](
const Twine &Message) {
430 this->CheckFailed(Message);
432 ConvergenceVerifyHelper.initialize(OS, FailureCB,
F);
437 verifySiblingFuncletUnwinds();
439 if (ConvergenceVerifyHelper.sawTokens())
440 ConvergenceVerifyHelper.verify(DT);
442 InstsInThisBlock.clear();
444 LandingPadResultTy =
nullptr;
445 SawFrameEscape =
false;
446 SiblingFuncletInfo.clear();
447 verifyNoAliasScopeDecl();
448 NoAliasScopeDecls.clear();
458 for (
const Function &
F : M)
459 if (
F.getIntrinsicID() == Intrinsic::experimental_deoptimize)
460 DeoptimizeDeclarations.push_back(&
F);
464 verifyFrameRecoverIndices();
465 for (
const GlobalVariable &GV :
M.globals())
466 visitGlobalVariable(GV);
468 for (
const GlobalAlias &GA :
M.aliases())
469 visitGlobalAlias(GA);
471 for (
const GlobalIFunc &GI :
M.ifuncs())
472 visitGlobalIFunc(GI);
474 for (
const NamedMDNode &NMD :
M.named_metadata())
475 visitNamedMDNode(NMD);
477 for (
const StringMapEntry<Comdat> &SMEC :
M.getComdatSymbolTable())
478 visitComdat(SMEC.getValue());
482 visitModuleCommandLines();
483 visitModuleErrnoTBAA();
485 verifyCompileUnits();
487 verifyDeoptimizeCallingConvs();
488 DISubprogramAttachments.clear();
494 enum class AreDebugLocsAllowed {
No,
Yes };
498 enum class RangeLikeMetadataKind {
505 void visitGlobalValue(
const GlobalValue &GV);
506 void visitGlobalVariable(
const GlobalVariable &GV);
507 void visitGlobalAlias(
const GlobalAlias &GA);
508 void visitGlobalIFunc(
const GlobalIFunc &GI);
509 void visitAliaseeSubExpr(
const GlobalAlias &
A,
const Constant &
C);
510 void visitAliaseeSubExpr(SmallPtrSetImpl<const GlobalAlias *> &Visited,
511 const GlobalAlias &
A,
const Constant &
C);
512 void visitNamedMDNode(
const NamedMDNode &NMD);
513 void visitMDNode(
const MDNode &MD, AreDebugLocsAllowed AllowLocs);
514 void visitMetadataAsValue(
const MetadataAsValue &MD, Function *
F);
515 void visitValueAsMetadata(
const ValueAsMetadata &MD, Function *
F);
516 void visitDIArgList(
const DIArgList &AL, Function *
F);
517 void visitComdat(
const Comdat &
C);
518 void visitModuleIdents();
519 void visitModuleCommandLines();
520 void visitModuleErrnoTBAA();
521 void visitModuleFlags();
522 void visitModuleFlag(
const MDNode *
Op,
523 DenseMap<const MDString *, const MDNode *> &SeenIDs,
524 SmallVectorImpl<const MDNode *> &Requirements);
525 void visitModuleFlagCGProfileEntry(
const MDOperand &MDO);
526 void visitFunction(
const Function &
F);
527 void visitBasicBlock(BasicBlock &BB);
528 void verifyRangeLikeMetadata(
const Value &V,
const MDNode *
Range,
Type *Ty,
529 RangeLikeMetadataKind Kind);
530 void visitRangeMetadata(Instruction &
I, MDNode *
Range,
Type *Ty);
531 void visitNoaliasAddrspaceMetadata(Instruction &
I, MDNode *
Range,
Type *Ty);
532 void visitDereferenceableMetadata(Instruction &
I, MDNode *MD);
533 void visitNofreeMetadata(Instruction &
I, MDNode *MD);
534 void visitProfMetadata(Instruction &
I, MDNode *MD);
535 void visitCallStackMetadata(MDNode *MD);
536 void visitMemProfMetadata(Instruction &
I, MDNode *MD);
537 void visitCallsiteMetadata(Instruction &
I, MDNode *MD);
538 void visitCalleeTypeMetadata(Instruction &
I, MDNode *MD);
539 void visitDIAssignIDMetadata(Instruction &
I, MDNode *MD);
540 void visitMMRAMetadata(Instruction &
I, MDNode *MD);
541 void visitAnnotationMetadata(MDNode *Annotation);
542 void visitAliasScopeMetadata(
const MDNode *MD);
543 void visitAliasScopeListMetadata(
const MDNode *MD);
544 void visitAccessGroupMetadata(
const MDNode *MD);
545 void visitCapturesMetadata(Instruction &
I,
const MDNode *Captures);
546 void visitAllocTokenMetadata(Instruction &
I, MDNode *MD);
548 template <
class Ty>
bool isValidMetadataArray(
const MDTuple &
N);
549#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) void visit##CLASS(const CLASS &N);
550#include "llvm/IR/Metadata.def"
551 void visitDIScope(
const DIScope &
N);
575 void checkPtrToAddr(
Type *SrcTy,
Type *DestTy,
const Value &V);
580 void visitPHINode(
PHINode &PN);
589 void visitVAArgInst(
VAArgInst &VAA) { visitInstruction(VAA); }
590 void visitCallInst(CallInst &CI);
591 void visitInvokeInst(InvokeInst &
II);
592 void visitGetElementPtrInst(GetElementPtrInst &
GEP);
593 void visitLoadInst(LoadInst &LI);
594 void visitStoreInst(StoreInst &SI);
595 void verifyDominatesUse(Instruction &
I,
unsigned i);
596 void visitInstruction(Instruction &
I);
597 void visitTerminator(Instruction &
I);
598 void visitBranchInst(BranchInst &BI);
599 void visitReturnInst(ReturnInst &RI);
600 void visitSwitchInst(SwitchInst &SI);
601 void visitIndirectBrInst(IndirectBrInst &BI);
602 void visitCallBrInst(CallBrInst &CBI);
603 void visitSelectInst(SelectInst &SI);
604 void visitUserOp1(Instruction &
I);
605 void visitUserOp2(Instruction &
I) { visitUserOp1(
I); }
607 void visitConstrainedFPIntrinsic(ConstrainedFPIntrinsic &FPI);
608 void visitVPIntrinsic(VPIntrinsic &VPI);
609 void visitDbgLabelIntrinsic(StringRef Kind, DbgLabelInst &DLI);
610 void visitAtomicCmpXchgInst(AtomicCmpXchgInst &CXI);
611 void visitAtomicRMWInst(AtomicRMWInst &RMWI);
612 void visitFenceInst(FenceInst &FI);
613 void visitAllocaInst(AllocaInst &AI);
614 void visitExtractValueInst(ExtractValueInst &EVI);
615 void visitInsertValueInst(InsertValueInst &IVI);
616 void visitEHPadPredecessors(Instruction &
I);
617 void visitLandingPadInst(LandingPadInst &LPI);
618 void visitResumeInst(ResumeInst &RI);
619 void visitCatchPadInst(CatchPadInst &CPI);
620 void visitCatchReturnInst(CatchReturnInst &CatchReturn);
621 void visitCleanupPadInst(CleanupPadInst &CPI);
622 void visitFuncletPadInst(FuncletPadInst &FPI);
623 void visitCatchSwitchInst(CatchSwitchInst &CatchSwitch);
624 void visitCleanupReturnInst(CleanupReturnInst &CRI);
626 void verifySwiftErrorCall(CallBase &
Call,
const Value *SwiftErrorVal);
627 void verifySwiftErrorValue(
const Value *SwiftErrorVal);
628 void verifyTailCCMustTailAttrs(
const AttrBuilder &Attrs, StringRef
Context);
629 void verifyMustTailCall(CallInst &CI);
630 bool verifyAttributeCount(AttributeList Attrs,
unsigned Params);
631 void verifyAttributeTypes(AttributeSet Attrs,
const Value *V);
632 void verifyParameterAttrs(AttributeSet Attrs,
Type *Ty,
const Value *V);
633 void checkUnsignedBaseTenFuncAttr(AttributeList Attrs, StringRef Attr,
635 void verifyFunctionAttrs(FunctionType *FT, AttributeList Attrs,
636 const Value *V,
bool IsIntrinsic,
bool IsInlineAsm);
637 void verifyFunctionMetadata(
ArrayRef<std::pair<unsigned, MDNode *>> MDs);
638 void verifyUnknownProfileMetadata(MDNode *MD);
639 void visitConstantExprsRecursively(
const Constant *EntryC);
640 void visitConstantExpr(
const ConstantExpr *CE);
641 void visitConstantPtrAuth(
const ConstantPtrAuth *CPA);
642 void verifyInlineAsmCall(
const CallBase &
Call);
643 void verifyStatepoint(
const CallBase &
Call);
644 void verifyFrameRecoverIndices();
645 void verifySiblingFuncletUnwinds();
647 void verifyFragmentExpression(
const DbgVariableRecord &
I);
648 template <
typename ValueOrMetadata>
649 void verifyFragmentExpression(
const DIVariable &V,
651 ValueOrMetadata *
Desc);
652 void verifyFnArgs(
const DbgVariableRecord &DVR);
653 void verifyNotEntryValue(
const DbgVariableRecord &
I);
656 void verifyCompileUnits();
660 void verifyDeoptimizeCallingConvs();
662 void verifyAttachedCallBundle(
const CallBase &
Call,
663 const OperandBundleUse &BU);
666 void verifyNoAliasScopeDecl();
672#define Check(C, ...) \
675 CheckFailed(__VA_ARGS__); \
682#define CheckDI(C, ...) \
685 DebugInfoCheckFailed(__VA_ARGS__); \
693 CheckDI(
I.DebugMarker->MarkedInstr == &
I,
694 "Instruction has invalid DebugMarker", &
I);
696 "PHI Node must not have any attached DbgRecords", &
I);
699 "DbgRecord had invalid DebugMarker", &
I, &DR);
702 visitMDNode(*
Loc, AreDebugLocsAllowed::Yes);
707 verifyFragmentExpression(*DVR);
708 verifyNotEntryValue(*DVR);
715void Verifier::visit(Instruction &
I) {
717 for (
unsigned i = 0, e =
I.getNumOperands(); i != e; ++i)
718 Check(
I.getOperand(i) !=
nullptr,
"Operand is null", &
I);
730 while (!WorkList.
empty()) {
732 if (!Visited.
insert(Cur).second)
739void Verifier::visitGlobalValue(
const GlobalValue &GV) {
741 "Global is external, but doesn't have external or weak linkage!", &GV);
744 if (
const MDNode *Associated =
745 GO->getMetadata(LLVMContext::MD_associated)) {
746 Check(Associated->getNumOperands() == 1,
747 "associated metadata must have one operand", &GV, Associated);
748 const Metadata *
Op = Associated->getOperand(0).get();
749 Check(
Op,
"associated metadata must have a global value", GO, Associated);
752 Check(VM,
"associated metadata must be ValueAsMetadata", GO, Associated);
755 "associated value must be pointer typed", GV, Associated);
757 const Value *Stripped = VM->getValue()->stripPointerCastsAndAliases();
759 "associated metadata must point to a GlobalObject", GO, Stripped);
760 Check(Stripped != GO,
761 "global values should not associate to themselves", GO,
767 if (
const MDNode *AbsoluteSymbol =
768 GO->getMetadata(LLVMContext::MD_absolute_symbol)) {
769 verifyRangeLikeMetadata(*GO, AbsoluteSymbol,
770 DL.getIntPtrType(GO->getType()),
771 RangeLikeMetadataKind::AbsoluteSymbol);
774 if (GO->hasMetadata(LLVMContext::MD_implicit_ref)) {
775 Check(!GO->isDeclaration(),
776 "ref metadata must not be placed on a declaration", GO);
779 GO->getMetadata(LLVMContext::MD_implicit_ref, MDs);
780 for (
const MDNode *MD : MDs) {
781 Check(MD->getNumOperands() == 1,
"ref metadata must have one operand",
785 Check(VM,
"ref metadata must be ValueAsMetadata", GO, MD);
788 "ref value must be pointer typed", GV, MD);
792 "ref metadata must point to a GlobalObject", GO, Stripped);
793 Check(Stripped != GO,
"values should not reference themselves", GO,
801 "Only global variables can have appending linkage!", &GV);
806 "Only global arrays can have appending linkage!", GVar);
810 Check(!GV.
hasComdat(),
"Declaration may not be in a Comdat!", &GV);
814 "dllexport GlobalValue must have default or protected visibility",
819 "dllimport GlobalValue must have default visibility", &GV);
820 Check(!GV.
isDSOLocal(),
"GlobalValue with DLLImport Storage is dso_local!",
826 "Global is marked as dllimport, but not external", &GV);
831 "GlobalValue with local linkage or non-default "
832 "visibility must be dso_local!",
837 if (!
I->getParent() || !
I->getParent()->getParent())
838 CheckFailed(
"Global is referenced by parentless instruction!", &GV, &M,
840 else if (
I->getParent()->getParent()->getParent() != &M)
841 CheckFailed(
"Global is referenced in a different module!", &GV, &M,
I,
842 I->getParent()->getParent(),
843 I->getParent()->getParent()->getParent());
846 if (
F->getParent() != &M)
847 CheckFailed(
"Global is used by function in a different module", &GV, &M,
855void Verifier::visitGlobalVariable(
const GlobalVariable &GV) {
859 Check(
A->value() <= Value::MaximumAlignment,
860 "huge alignment values are unsupported", &GV);
865 "Global variable initializer type does not match global "
869 "Global variable initializer must be sized", &GV);
875 "'common' global must have a zero initializer!", &GV);
878 Check(!GV.
hasComdat(),
"'common' global may not be in a Comdat!", &GV);
883 GV.
getName() ==
"llvm.global_dtors")) {
885 "invalid linkage for intrinsic global variable", &GV);
887 "invalid uses of intrinsic global variable", &GV);
894 PointerType::get(
Context,
DL.getProgramAddressSpace());
898 "wrong type for intrinsic global variable", &GV);
900 "the third field of the element type is mandatory, "
901 "specify ptr null to migrate from the obsoleted 2-field form");
909 GV.
getName() ==
"llvm.compiler.used")) {
911 "invalid linkage for intrinsic global variable", &GV);
913 "invalid uses of intrinsic global variable", &GV);
917 Check(PTy,
"wrong type for intrinsic global variable", &GV);
921 Check(InitArray,
"wrong initializer for intrinsic global variable",
927 Twine(
"invalid ") + GV.
getName() +
" member", V);
929 Twine(
"members of ") + GV.
getName() +
" must be named", V);
938 for (
auto *MD : MDs) {
940 visitDIGlobalVariableExpression(*GVE);
942 CheckDI(
false,
"!dbg attachment of global variable must be a "
943 "DIGlobalVariableExpression");
953 "Global @" + GV.
getName() +
" has illegal target extension type",
957 visitGlobalValue(GV);
964 visitGlobalValue(GV);
967void Verifier::visitAliaseeSubExpr(
const GlobalAlias &GA,
const Constant &
C) {
968 SmallPtrSet<const GlobalAlias*, 4> Visited;
970 visitAliaseeSubExpr(Visited, GA,
C);
973void Verifier::visitAliaseeSubExpr(SmallPtrSetImpl<const GlobalAlias*> &Visited,
974 const GlobalAlias &GA,
const Constant &
C) {
978 "available_externally alias must point to available_externally "
989 Check(Visited.
insert(GA2).second,
"Aliases cannot form a cycle", &GA);
991 Check(!GA2->isInterposable(),
992 "Alias cannot point to an interposable alias", &GA);
1001 visitConstantExprsRecursively(CE);
1003 for (
const Use &U :
C.operands()) {
1006 visitAliaseeSubExpr(Visited, GA, *GA2->getAliasee());
1008 visitAliaseeSubExpr(Visited, GA, *C2);
1012void Verifier::visitGlobalAlias(
const GlobalAlias &GA) {
1014 "Alias should have private, internal, linkonce, weak, linkonce_odr, "
1015 "weak_odr, external, or available_externally linkage!",
1018 Check(Aliasee,
"Aliasee cannot be NULL!", &GA);
1020 "Alias and aliasee types should match!", &GA);
1023 "Aliasee should be either GlobalValue or ConstantExpr", &GA);
1025 visitAliaseeSubExpr(GA, *Aliasee);
1027 visitGlobalValue(GA);
1030void Verifier::visitGlobalIFunc(
const GlobalIFunc &GI) {
1031 visitGlobalValue(GI);
1035 for (
const auto &
I : MDs) {
1036 CheckDI(
I.first != LLVMContext::MD_dbg,
1037 "an ifunc may not have a !dbg attachment", &GI);
1038 Check(
I.first != LLVMContext::MD_prof,
1039 "an ifunc may not have a !prof attachment", &GI);
1040 visitMDNode(*
I.second, AreDebugLocsAllowed::No);
1044 "IFunc should have private, internal, linkonce, weak, linkonce_odr, "
1045 "weak_odr, or external linkage!",
1050 Check(Resolver,
"IFunc must have a Function resolver", &GI);
1052 "IFunc resolver must be a definition", &GI);
1059 "IFunc resolver must return a pointer", &GI);
1062 "IFunc resolver has incorrect type", &GI);
1065void Verifier::visitNamedMDNode(
const NamedMDNode &NMD) {
1070 "unrecognized named metadata node in the llvm.dbg namespace", &NMD);
1071 for (
const MDNode *MD : NMD.
operands()) {
1072 if (NMD.
getName() ==
"llvm.dbg.cu")
1078 visitMDNode(*MD, AreDebugLocsAllowed::Yes);
1082void Verifier::visitMDNode(
const MDNode &MD, AreDebugLocsAllowed AllowLocs) {
1085 if (!MDNodes.
insert(&MD).second)
1089 "MDNode context does not match Module context!", &MD);
1094 case Metadata::MDTupleKind:
1096#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) \
1097 case Metadata::CLASS##Kind: \
1098 visit##CLASS(cast<CLASS>(MD)); \
1100#include "llvm/IR/Metadata.def"
1109 "DILocation not allowed within this metadata node", &MD,
Op);
1111 visitMDNode(*
N, AllowLocs);
1115 visitValueAsMetadata(*V,
nullptr);
1127 "Expected second operand to be an integer constant of type i32 or "
1137void Verifier::visitValueAsMetadata(
const ValueAsMetadata &MD, Function *
F) {
1140 "Unexpected metadata round-trip through values", &MD, MD.
getValue());
1146 Check(
F,
"function-local metadata used outside a function", L);
1152 Check(
I->getParent(),
"function-local metadata not in basic block", L,
I);
1158 assert(ActualF &&
"Unimplemented function local metadata case!");
1160 Check(ActualF ==
F,
"function-local metadata used in wrong function", L);
1163void Verifier::visitDIArgList(
const DIArgList &AL, Function *
F) {
1164 for (
const ValueAsMetadata *VAM :
AL.getArgs())
1165 visitValueAsMetadata(*VAM,
F);
1168void Verifier::visitMetadataAsValue(
const MetadataAsValue &MDV, Function *
F) {
1171 visitMDNode(*
N, AreDebugLocsAllowed::No);
1177 if (!MDNodes.
insert(MD).second)
1181 visitValueAsMetadata(*V,
F);
1184 visitDIArgList(*AL,
F);
1192void Verifier::visitDILocation(
const DILocation &
N) {
1194 "location requires a valid scope", &
N,
N.getRawScope());
1195 if (
auto *IA =
N.getRawInlinedAt())
1198 CheckDI(
SP->isDefinition(),
"scope points into the type hierarchy", &
N);
1201void Verifier::visitGenericDINode(
const GenericDINode &
N) {
1205void Verifier::visitDIScope(
const DIScope &
N) {
1206 if (
auto *
F =
N.getRawFile())
1210void Verifier::visitDISubrangeType(
const DISubrangeType &
N) {
1211 CheckDI(
N.getTag() == dwarf::DW_TAG_subrange_type,
"invalid tag", &
N);
1214 auto *LBound =
N.getRawLowerBound();
1218 "LowerBound must be signed constant or DIVariable or DIExpression or "
1221 auto *UBound =
N.getRawUpperBound();
1225 "UpperBound must be signed constant or DIVariable or DIExpression or "
1228 auto *Stride =
N.getRawStride();
1231 "Stride must be signed constant or DIVariable or DIExpression", &
N);
1232 auto *Bias =
N.getRawBias();
1235 "Bias must be signed constant or DIVariable or DIExpression", &
N);
1237 auto *
Size =
N.getRawSizeInBits();
1239 "SizeInBits must be a constant");
1242void Verifier::visitDISubrange(
const DISubrange &
N) {
1243 CheckDI(
N.getTag() == dwarf::DW_TAG_subrange_type,
"invalid tag", &
N);
1244 CheckDI(!
N.getRawCountNode() || !
N.getRawUpperBound(),
1245 "Subrange can have any one of count or upperBound", &
N);
1246 auto *CBound =
N.getRawCountNode();
1249 "Count must be signed constant or DIVariable or DIExpression", &
N);
1250 auto Count =
N.getCount();
1253 "invalid subrange count", &
N);
1254 auto *LBound =
N.getRawLowerBound();
1257 "LowerBound must be signed constant or DIVariable or DIExpression",
1259 auto *UBound =
N.getRawUpperBound();
1262 "UpperBound must be signed constant or DIVariable or DIExpression",
1264 auto *Stride =
N.getRawStride();
1267 "Stride must be signed constant or DIVariable or DIExpression", &
N);
1270void Verifier::visitDIGenericSubrange(
const DIGenericSubrange &
N) {
1271 CheckDI(
N.getTag() == dwarf::DW_TAG_generic_subrange,
"invalid tag", &
N);
1272 CheckDI(!
N.getRawCountNode() || !
N.getRawUpperBound(),
1273 "GenericSubrange can have any one of count or upperBound", &
N);
1274 auto *CBound =
N.getRawCountNode();
1276 "Count must be signed constant or DIVariable or DIExpression", &
N);
1277 auto *LBound =
N.getRawLowerBound();
1278 CheckDI(LBound,
"GenericSubrange must contain lowerBound", &
N);
1280 "LowerBound must be signed constant or DIVariable or DIExpression",
1282 auto *UBound =
N.getRawUpperBound();
1284 "UpperBound must be signed constant or DIVariable or DIExpression",
1286 auto *Stride =
N.getRawStride();
1287 CheckDI(Stride,
"GenericSubrange must contain stride", &
N);
1289 "Stride must be signed constant or DIVariable or DIExpression", &
N);
1292void Verifier::visitDIEnumerator(
const DIEnumerator &
N) {
1293 CheckDI(
N.getTag() == dwarf::DW_TAG_enumerator,
"invalid tag", &
N);
1296void Verifier::visitDIBasicType(
const DIBasicType &
N) {
1297 CheckDI(
N.getTag() == dwarf::DW_TAG_base_type ||
1298 N.getTag() == dwarf::DW_TAG_unspecified_type ||
1299 N.getTag() == dwarf::DW_TAG_string_type,
1302 auto *
Size =
N.getRawSizeInBits();
1304 "SizeInBits must be a constant");
1307void Verifier::visitDIFixedPointType(
const DIFixedPointType &
N) {
1308 visitDIBasicType(
N);
1310 CheckDI(
N.getTag() == dwarf::DW_TAG_base_type,
"invalid tag", &
N);
1311 CheckDI(
N.getEncoding() == dwarf::DW_ATE_signed_fixed ||
1312 N.getEncoding() == dwarf::DW_ATE_unsigned_fixed,
1313 "invalid encoding", &
N);
1317 "invalid kind", &
N);
1319 N.getFactorRaw() == 0,
1320 "factor should be 0 for rationals", &
N);
1322 (
N.getNumeratorRaw() == 0 &&
N.getDenominatorRaw() == 0),
1323 "numerator and denominator should be 0 for non-rationals", &
N);
1326void Verifier::visitDIStringType(
const DIStringType &
N) {
1327 CheckDI(
N.getTag() == dwarf::DW_TAG_string_type,
"invalid tag", &
N);
1328 CheckDI(!(
N.isBigEndian() &&
N.isLittleEndian()),
"has conflicting flags",
1332void Verifier::visitDIDerivedType(
const DIDerivedType &
N) {
1336 CheckDI(
N.getTag() == dwarf::DW_TAG_typedef ||
1337 N.getTag() == dwarf::DW_TAG_pointer_type ||
1338 N.getTag() == dwarf::DW_TAG_ptr_to_member_type ||
1339 N.getTag() == dwarf::DW_TAG_reference_type ||
1340 N.getTag() == dwarf::DW_TAG_rvalue_reference_type ||
1341 N.getTag() == dwarf::DW_TAG_const_type ||
1342 N.getTag() == dwarf::DW_TAG_immutable_type ||
1343 N.getTag() == dwarf::DW_TAG_volatile_type ||
1344 N.getTag() == dwarf::DW_TAG_restrict_type ||
1345 N.getTag() == dwarf::DW_TAG_atomic_type ||
1346 N.getTag() == dwarf::DW_TAG_LLVM_ptrauth_type ||
1347 N.getTag() == dwarf::DW_TAG_member ||
1348 (
N.getTag() == dwarf::DW_TAG_variable &&
N.isStaticMember()) ||
1349 N.getTag() == dwarf::DW_TAG_inheritance ||
1350 N.getTag() == dwarf::DW_TAG_friend ||
1351 N.getTag() == dwarf::DW_TAG_set_type ||
1352 N.getTag() == dwarf::DW_TAG_template_alias,
1354 if (
N.getTag() == dwarf::DW_TAG_ptr_to_member_type) {
1355 CheckDI(
isType(
N.getRawExtraData()),
"invalid pointer to member type", &
N,
1356 N.getRawExtraData());
1357 }
else if (
N.getTag() == dwarf::DW_TAG_template_alias) {
1359 N.getRawExtraData());
1360 }
else if (
N.getTag() == dwarf::DW_TAG_inheritance ||
1361 N.getTag() == dwarf::DW_TAG_member ||
1362 N.getTag() == dwarf::DW_TAG_variable) {
1363 auto *ExtraData =
N.getRawExtraData();
1364 auto IsValidExtraData = [&]() {
1365 if (ExtraData ==
nullptr)
1371 if (Tuple->getNumOperands() != 1)
1378 "extraData must be ConstantAsMetadata, MDString, DIObjCProperty, "
1379 "or MDTuple with single ConstantAsMetadata operand",
1383 if (
N.getTag() == dwarf::DW_TAG_set_type) {
1384 if (
auto *
T =
N.getRawBaseType()) {
1389 (Enum &&
Enum->getTag() == dwarf::DW_TAG_enumeration_type) ||
1390 (Subrange &&
Subrange->getTag() == dwarf::DW_TAG_subrange_type) ||
1391 (
Basic && (
Basic->getEncoding() == dwarf::DW_ATE_unsigned ||
1392 Basic->getEncoding() == dwarf::DW_ATE_signed ||
1393 Basic->getEncoding() == dwarf::DW_ATE_unsigned_char ||
1394 Basic->getEncoding() == dwarf::DW_ATE_signed_char ||
1395 Basic->getEncoding() == dwarf::DW_ATE_boolean)),
1396 "invalid set base type", &
N,
T);
1402 N.getRawBaseType());
1404 if (
N.getDWARFAddressSpace()) {
1405 CheckDI(
N.getTag() == dwarf::DW_TAG_pointer_type ||
1406 N.getTag() == dwarf::DW_TAG_reference_type ||
1407 N.getTag() == dwarf::DW_TAG_rvalue_reference_type,
1408 "DWARF address space only applies to pointer or reference types",
1412 auto *
Size =
N.getRawSizeInBits();
1415 "SizeInBits must be a constant or DIVariable or DIExpression");
1420 return ((Flags & DINode::FlagLValueReference) &&
1421 (Flags & DINode::FlagRValueReference)) ||
1422 ((Flags & DINode::FlagTypePassByValue) &&
1423 (Flags & DINode::FlagTypePassByReference));
1426void Verifier::visitTemplateParams(
const MDNode &
N,
const Metadata &RawParams) {
1428 CheckDI(Params,
"invalid template params", &
N, &RawParams);
1435void Verifier::visitDICompositeType(
const DICompositeType &
N) {
1439 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type ||
1440 N.getTag() == dwarf::DW_TAG_structure_type ||
1441 N.getTag() == dwarf::DW_TAG_union_type ||
1442 N.getTag() == dwarf::DW_TAG_enumeration_type ||
1443 N.getTag() == dwarf::DW_TAG_class_type ||
1444 N.getTag() == dwarf::DW_TAG_variant_part ||
1445 N.getTag() == dwarf::DW_TAG_variant ||
1446 N.getTag() == dwarf::DW_TAG_namelist,
1451 N.getRawBaseType());
1454 "invalid composite elements", &
N,
N.getRawElements());
1456 N.getRawVTableHolder());
1458 "invalid reference flags", &
N);
1459 unsigned DIBlockByRefStruct = 1 << 4;
1460 CheckDI((
N.getFlags() & DIBlockByRefStruct) == 0,
1461 "DIBlockByRefStruct on DICompositeType is no longer supported", &
N);
1463 "DISubprogram contains null entry in `elements` field", &
N);
1466 const DINodeArray
Elements =
N.getElements();
1468 Elements[0]->getTag() == dwarf::DW_TAG_subrange_type,
1469 "invalid vector, expected one element of type subrange", &
N);
1472 if (
auto *Params =
N.getRawTemplateParams())
1473 visitTemplateParams(
N, *Params);
1475 if (
auto *
D =
N.getRawDiscriminator()) {
1477 "discriminator can only appear on variant part");
1480 if (
N.getRawDataLocation()) {
1481 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1482 "dataLocation can only appear in array type");
1485 if (
N.getRawAssociated()) {
1486 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1487 "associated can only appear in array type");
1490 if (
N.getRawAllocated()) {
1491 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1492 "allocated can only appear in array type");
1495 if (
N.getRawRank()) {
1496 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1497 "rank can only appear in array type");
1500 if (
N.getTag() == dwarf::DW_TAG_array_type) {
1501 CheckDI(
N.getRawBaseType(),
"array types must have a base type", &
N);
1504 auto *
Size =
N.getRawSizeInBits();
1507 "SizeInBits must be a constant or DIVariable or DIExpression");
1510void Verifier::visitDISubroutineType(
const DISubroutineType &
N) {
1511 CheckDI(
N.getTag() == dwarf::DW_TAG_subroutine_type,
"invalid tag", &
N);
1512 if (
auto *Types =
N.getRawTypeArray()) {
1514 for (
Metadata *Ty :
N.getTypeArray()->operands()) {
1515 CheckDI(
isType(Ty),
"invalid subroutine type ref", &
N, Types, Ty);
1519 "invalid reference flags", &
N);
1522void Verifier::visitDIFile(
const DIFile &
N) {
1523 CheckDI(
N.getTag() == dwarf::DW_TAG_file_type,
"invalid tag", &
N);
1524 std::optional<DIFile::ChecksumInfo<StringRef>> Checksum =
N.getChecksum();
1526 CheckDI(Checksum->Kind <= DIFile::ChecksumKind::CSK_Last,
1527 "invalid checksum kind", &
N);
1529 switch (Checksum->Kind) {
1540 CheckDI(Checksum->Value.size() ==
Size,
"invalid checksum length", &
N);
1542 "invalid checksum", &
N);
1546void Verifier::visitDICompileUnit(
const DICompileUnit &
N) {
1547 CheckDI(
N.isDistinct(),
"compile units must be distinct", &
N);
1548 CheckDI(
N.getTag() == dwarf::DW_TAG_compile_unit,
"invalid tag", &
N);
1554 CheckDI(!
N.getFile()->getFilename().empty(),
"invalid filename", &
N,
1558 "invalid emission kind", &
N);
1560 if (
auto *Array =
N.getRawEnumTypes()) {
1562 for (
Metadata *
Op :
N.getEnumTypes()->operands()) {
1564 CheckDI(Enum &&
Enum->getTag() == dwarf::DW_TAG_enumeration_type,
1565 "invalid enum type", &
N,
N.getEnumTypes(),
Op);
1568 if (
auto *Array =
N.getRawRetainedTypes()) {
1570 for (
Metadata *
Op :
N.getRetainedTypes()->operands()) {
1574 "invalid retained type", &
N,
Op);
1577 if (
auto *Array =
N.getRawGlobalVariables()) {
1579 for (
Metadata *
Op :
N.getGlobalVariables()->operands()) {
1581 "invalid global variable ref", &
N,
Op);
1584 if (
auto *Array =
N.getRawImportedEntities()) {
1586 for (
Metadata *
Op :
N.getImportedEntities()->operands()) {
1591 if (
auto *Array =
N.getRawMacros()) {
1600void Verifier::visitDISubprogram(
const DISubprogram &
N) {
1601 CheckDI(
N.getTag() == dwarf::DW_TAG_subprogram,
"invalid tag", &
N);
1603 if (
auto *
F =
N.getRawFile())
1606 CheckDI(
N.getLine() == 0,
"line specified with no file", &
N,
N.getLine());
1607 if (
auto *
T =
N.getRawType())
1609 CheckDI(
isType(
N.getRawContainingType()),
"invalid containing type", &
N,
1610 N.getRawContainingType());
1611 if (
auto *Params =
N.getRawTemplateParams())
1612 visitTemplateParams(
N, *Params);
1613 if (
auto *S =
N.getRawDeclaration())
1615 "invalid subprogram declaration", &
N, S);
1616 if (
auto *RawNode =
N.getRawRetainedNodes()) {
1618 CheckDI(Node,
"invalid retained nodes list", &
N, RawNode);
1620 CheckDI(
Op,
"nullptr in retained nodes", &
N, Node);
1622 auto True = [](
const Metadata *) {
return true; };
1623 auto False = [](
const Metadata *) {
return false; };
1624 bool IsTypeCorrect =
1625 DISubprogram::visitRetainedNode<bool>(
Op, True, True, True, False);
1627 "invalid retained nodes, expected DILocalVariable, DILabel or "
1635 "invalid retained nodes, retained node is not local", &
N, Node,
1638 RetainedNodeScope->getSubprogram() == &
N,
1639 "invalid retained nodes, retained node does not belong to subprogram",
1640 &
N, Node, RetainedNode, RetainedNodeScope);
1644 "invalid reference flags", &
N);
1646 auto *
Unit =
N.getRawUnit();
1647 if (
N.isDefinition()) {
1649 CheckDI(
N.isDistinct(),
"subprogram definitions must be distinct", &
N);
1650 CheckDI(Unit,
"subprogram definitions must have a compile unit", &
N);
1655 if (CT && CT->getRawIdentifier() &&
1656 M.getContext().isODRUniquingDebugTypes())
1658 "definition subprograms cannot be nested within DICompositeType "
1659 "when enabling ODR",
1663 CheckDI(!Unit,
"subprogram declarations must not have a compile unit", &
N);
1665 "subprogram declaration must not have a declaration field");
1668 if (
auto *RawThrownTypes =
N.getRawThrownTypes()) {
1670 CheckDI(ThrownTypes,
"invalid thrown types list", &
N, RawThrownTypes);
1676 if (
N.areAllCallsDescribed())
1678 "DIFlagAllCallsDescribed must be attached to a definition");
1681void Verifier::visitDILexicalBlockBase(
const DILexicalBlockBase &
N) {
1682 CheckDI(
N.getTag() == dwarf::DW_TAG_lexical_block,
"invalid tag", &
N);
1684 "invalid local scope", &
N,
N.getRawScope());
1686 CheckDI(
SP->isDefinition(),
"scope points into the type hierarchy", &
N);
1689void Verifier::visitDILexicalBlock(
const DILexicalBlock &
N) {
1690 visitDILexicalBlockBase(
N);
1693 "cannot have column info without line info", &
N);
1696void Verifier::visitDILexicalBlockFile(
const DILexicalBlockFile &
N) {
1697 visitDILexicalBlockBase(
N);
1700void Verifier::visitDICommonBlock(
const DICommonBlock &
N) {
1701 CheckDI(
N.getTag() == dwarf::DW_TAG_common_block,
"invalid tag", &
N);
1702 if (
auto *S =
N.getRawScope())
1704 if (
auto *S =
N.getRawDecl())
1708void Verifier::visitDINamespace(
const DINamespace &
N) {
1709 CheckDI(
N.getTag() == dwarf::DW_TAG_namespace,
"invalid tag", &
N);
1710 if (
auto *S =
N.getRawScope())
1714void Verifier::visitDIMacro(
const DIMacro &
N) {
1717 "invalid macinfo type", &
N);
1718 CheckDI(!
N.getName().empty(),
"anonymous macro", &
N);
1719 if (!
N.getValue().empty()) {
1720 assert(
N.getValue().data()[0] !=
' ' &&
"Macro value has a space prefix");
1724void Verifier::visitDIMacroFile(
const DIMacroFile &
N) {
1726 "invalid macinfo type", &
N);
1727 if (
auto *
F =
N.getRawFile())
1730 if (
auto *Array =
N.getRawElements()) {
1732 for (
Metadata *
Op :
N.getElements()->operands()) {
1738void Verifier::visitDIModule(
const DIModule &
N) {
1739 CheckDI(
N.getTag() == dwarf::DW_TAG_module,
"invalid tag", &
N);
1740 CheckDI(!
N.getName().empty(),
"anonymous module", &
N);
1743void Verifier::visitDITemplateParameter(
const DITemplateParameter &
N) {
1747void Verifier::visitDITemplateTypeParameter(
const DITemplateTypeParameter &
N) {
1748 visitDITemplateParameter(
N);
1750 CheckDI(
N.getTag() == dwarf::DW_TAG_template_type_parameter,
"invalid tag",
1754void Verifier::visitDITemplateValueParameter(
1755 const DITemplateValueParameter &
N) {
1756 visitDITemplateParameter(
N);
1758 CheckDI(
N.getTag() == dwarf::DW_TAG_template_value_parameter ||
1759 N.getTag() == dwarf::DW_TAG_GNU_template_template_param ||
1760 N.getTag() == dwarf::DW_TAG_GNU_template_parameter_pack,
1764void Verifier::visitDIVariable(
const DIVariable &
N) {
1765 if (
auto *S =
N.getRawScope())
1767 if (
auto *
F =
N.getRawFile())
1771void Verifier::visitDIGlobalVariable(
const DIGlobalVariable &
N) {
1775 CheckDI(
N.getTag() == dwarf::DW_TAG_variable,
"invalid tag", &
N);
1778 if (
N.isDefinition())
1779 CheckDI(
N.getType(),
"missing global variable type", &
N);
1780 if (
auto *Member =
N.getRawStaticDataMemberDeclaration()) {
1782 "invalid static data member declaration", &
N, Member);
1786void Verifier::visitDILocalVariable(
const DILocalVariable &
N) {
1791 CheckDI(
N.getTag() == dwarf::DW_TAG_variable,
"invalid tag", &
N);
1793 "local variable requires a valid scope", &
N,
N.getRawScope());
1794 if (
auto Ty =
N.getType())
1798void Verifier::visitDIAssignID(
const DIAssignID &
N) {
1799 CheckDI(!
N.getNumOperands(),
"DIAssignID has no arguments", &
N);
1800 CheckDI(
N.isDistinct(),
"DIAssignID must be distinct", &
N);
1803void Verifier::visitDILabel(
const DILabel &
N) {
1804 if (
auto *S =
N.getRawScope())
1806 if (
auto *
F =
N.getRawFile())
1809 CheckDI(
N.getTag() == dwarf::DW_TAG_label,
"invalid tag", &
N);
1811 "label requires a valid scope", &
N,
N.getRawScope());
1814void Verifier::visitDIExpression(
const DIExpression &
N) {
1815 CheckDI(
N.isValid(),
"invalid expression", &
N);
1818void Verifier::visitDIGlobalVariableExpression(
1819 const DIGlobalVariableExpression &GVE) {
1822 visitDIGlobalVariable(*Var);
1824 visitDIExpression(*Expr);
1825 if (
auto Fragment = Expr->getFragmentInfo())
1826 verifyFragmentExpression(*GVE.
getVariable(), *Fragment, &GVE);
1830void Verifier::visitDIObjCProperty(
const DIObjCProperty &
N) {
1831 CheckDI(
N.getTag() == dwarf::DW_TAG_APPLE_property,
"invalid tag", &
N);
1832 if (
auto *
T =
N.getRawType())
1834 if (
auto *
F =
N.getRawFile())
1838void Verifier::visitDIImportedEntity(
const DIImportedEntity &
N) {
1839 CheckDI(
N.getTag() == dwarf::DW_TAG_imported_module ||
1840 N.getTag() == dwarf::DW_TAG_imported_declaration,
1842 if (
auto *S =
N.getRawScope())
1848void Verifier::visitComdat(
const Comdat &
C) {
1851 if (
TT.isOSBinFormatCOFF())
1852 if (
const GlobalValue *GV =
M.getNamedValue(
C.getName()))
1857void Verifier::visitModuleIdents() {
1858 const NamedMDNode *Idents =
M.getNamedMetadata(
"llvm.ident");
1864 for (
const MDNode *
N : Idents->
operands()) {
1865 Check(
N->getNumOperands() == 1,
1866 "incorrect number of operands in llvm.ident metadata",
N);
1868 (
"invalid value for llvm.ident metadata entry operand"
1869 "(the operand should be a string)"),
1874void Verifier::visitModuleCommandLines() {
1875 const NamedMDNode *CommandLines =
M.getNamedMetadata(
"llvm.commandline");
1882 for (
const MDNode *
N : CommandLines->
operands()) {
1883 Check(
N->getNumOperands() == 1,
1884 "incorrect number of operands in llvm.commandline metadata",
N);
1886 (
"invalid value for llvm.commandline metadata entry operand"
1887 "(the operand should be a string)"),
1892void Verifier::visitModuleErrnoTBAA() {
1893 const NamedMDNode *ErrnoTBAA =
M.getNamedMetadata(
"llvm.errno.tbaa");
1898 "llvm.errno.tbaa must have at least one operand", ErrnoTBAA);
1900 for (
const MDNode *
N : ErrnoTBAA->
operands())
1904void Verifier::visitModuleFlags() {
1905 const NamedMDNode *
Flags =
M.getModuleFlagsMetadata();
1909 DenseMap<const MDString*, const MDNode*> SeenIDs;
1911 uint64_t PAuthABIPlatform = -1;
1912 uint64_t PAuthABIVersion = -1;
1913 for (
const MDNode *MDN :
Flags->operands()) {
1914 visitModuleFlag(MDN, SeenIDs, Requirements);
1915 if (MDN->getNumOperands() != 3)
1918 if (FlagName->getString() ==
"aarch64-elf-pauthabi-platform") {
1919 if (
const auto *PAP =
1921 PAuthABIPlatform = PAP->getZExtValue();
1922 }
else if (FlagName->getString() ==
"aarch64-elf-pauthabi-version") {
1923 if (
const auto *PAV =
1925 PAuthABIVersion = PAV->getZExtValue();
1930 if ((PAuthABIPlatform == uint64_t(-1)) != (PAuthABIVersion == uint64_t(-1)))
1931 CheckFailed(
"either both or no 'aarch64-elf-pauthabi-platform' and "
1932 "'aarch64-elf-pauthabi-version' module flags must be present");
1935 for (
const MDNode *Requirement : Requirements) {
1937 const Metadata *ReqValue = Requirement->getOperand(1);
1939 const MDNode *
Op = SeenIDs.
lookup(Flag);
1941 CheckFailed(
"invalid requirement on flag, flag is not present in module",
1946 if (
Op->getOperand(2) != ReqValue) {
1947 CheckFailed((
"invalid requirement on flag, "
1948 "flag does not have the required value"),
1956Verifier::visitModuleFlag(
const MDNode *
Op,
1957 DenseMap<const MDString *, const MDNode *> &SeenIDs,
1958 SmallVectorImpl<const MDNode *> &Requirements) {
1962 "incorrect number of operands in module flag",
Op);
1963 Module::ModFlagBehavior MFB;
1964 if (!Module::isValidModFlagBehavior(
Op->getOperand(0), MFB)) {
1966 "invalid behavior operand in module flag (expected constant integer)",
1969 "invalid behavior operand in module flag (unexpected constant)",
1973 Check(
ID,
"invalid ID operand in module flag (expected metadata string)",
1979 case Module::Warning:
1980 case Module::Override:
1986 Check(V &&
V->getValue().isNonNegative(),
1987 "invalid value for 'min' module flag (expected constant non-negative "
1995 "invalid value for 'max' module flag (expected constant integer)",
2000 case Module::Require: {
2005 "invalid value for 'require' module flag (expected metadata pair)",
2008 (
"invalid value for 'require' module flag "
2009 "(first value operand should be a string)"),
2010 Value->getOperand(0));
2018 case Module::Append:
2019 case Module::AppendUnique: {
2022 "invalid value for 'append'-type module flag "
2023 "(expected a metadata node)",
2030 if (MFB != Module::Require) {
2033 "module flag identifiers must be unique (or of 'require' type)",
ID);
2036 if (
ID->getString() ==
"wchar_size") {
2039 Check(
Value,
"wchar_size metadata requires constant integer argument");
2042 if (
ID->getString() ==
"Linker Options") {
2046 Check(
M.getNamedMetadata(
"llvm.linker.options"),
2047 "'Linker Options' named metadata no longer supported");
2050 if (
ID->getString() ==
"SemanticInterposition") {
2051 ConstantInt *
Value =
2054 "SemanticInterposition metadata requires constant integer argument");
2057 if (
ID->getString() ==
"CG Profile") {
2058 for (
const MDOperand &MDO :
cast<MDNode>(
Op->getOperand(2))->operands())
2059 visitModuleFlagCGProfileEntry(MDO);
2063void Verifier::visitModuleFlagCGProfileEntry(
const MDOperand &MDO) {
2064 auto CheckFunction = [&](
const MDOperand &FuncMDO) {
2069 "expected a Function or null", FuncMDO);
2072 Check(Node &&
Node->getNumOperands() == 3,
"expected a MDNode triple", MDO);
2073 CheckFunction(
Node->getOperand(0));
2074 CheckFunction(
Node->getOperand(1));
2077 "expected an integer constant",
Node->getOperand(2));
2080void Verifier::verifyAttributeTypes(AttributeSet Attrs,
const Value *V) {
2083 if (
A.isStringAttribute()) {
2084#define GET_ATTR_NAMES
2085#define ATTRIBUTE_ENUM(ENUM_NAME, DISPLAY_NAME)
2086#define ATTRIBUTE_STRBOOL(ENUM_NAME, DISPLAY_NAME) \
2087 if (A.getKindAsString() == #DISPLAY_NAME) { \
2088 auto V = A.getValueAsString(); \
2089 if (!(V.empty() || V == "true" || V == "false")) \
2090 CheckFailed("invalid value for '" #DISPLAY_NAME "' attribute: " + V + \
2094#include "llvm/IR/Attributes.inc"
2098 if (
A.isIntAttribute() != Attribute::isIntAttrKind(
A.getKindAsEnum())) {
2099 CheckFailed(
"Attribute '" +
A.getAsString() +
"' should have an Argument",
2108void Verifier::verifyParameterAttrs(AttributeSet Attrs,
Type *Ty,
2110 if (!
Attrs.hasAttributes())
2113 verifyAttributeTypes(Attrs, V);
2116 Check(Attr.isStringAttribute() ||
2117 Attribute::canUseAsParamAttr(Attr.getKindAsEnum()),
2118 "Attribute '" + Attr.getAsString() +
"' does not apply to parameters",
2121 if (
Attrs.hasAttribute(Attribute::ImmArg)) {
2122 unsigned AttrCount =
2123 Attrs.getNumAttributes() -
Attrs.hasAttribute(Attribute::Range);
2124 Check(AttrCount == 1,
2125 "Attribute 'immarg' is incompatible with other attributes except the "
2126 "'range' attribute",
2132 unsigned AttrCount = 0;
2133 AttrCount +=
Attrs.hasAttribute(Attribute::ByVal);
2134 AttrCount +=
Attrs.hasAttribute(Attribute::InAlloca);
2135 AttrCount +=
Attrs.hasAttribute(Attribute::Preallocated);
2136 AttrCount +=
Attrs.hasAttribute(Attribute::StructRet) ||
2137 Attrs.hasAttribute(Attribute::InReg);
2138 AttrCount +=
Attrs.hasAttribute(Attribute::Nest);
2139 AttrCount +=
Attrs.hasAttribute(Attribute::ByRef);
2140 Check(AttrCount <= 1,
2141 "Attributes 'byval', 'inalloca', 'preallocated', 'inreg', 'nest', "
2142 "'byref', and 'sret' are incompatible!",
2145 Check(!(
Attrs.hasAttribute(Attribute::InAlloca) &&
2146 Attrs.hasAttribute(Attribute::ReadOnly)),
2148 "'inalloca and readonly' are incompatible!",
2151 Check(!(
Attrs.hasAttribute(Attribute::StructRet) &&
2152 Attrs.hasAttribute(Attribute::Returned)),
2154 "'sret and returned' are incompatible!",
2157 Check(!(
Attrs.hasAttribute(Attribute::ZExt) &&
2158 Attrs.hasAttribute(Attribute::SExt)),
2160 "'zeroext and signext' are incompatible!",
2163 Check(!(
Attrs.hasAttribute(Attribute::ReadNone) &&
2164 Attrs.hasAttribute(Attribute::ReadOnly)),
2166 "'readnone and readonly' are incompatible!",
2169 Check(!(
Attrs.hasAttribute(Attribute::ReadNone) &&
2170 Attrs.hasAttribute(Attribute::WriteOnly)),
2172 "'readnone and writeonly' are incompatible!",
2175 Check(!(
Attrs.hasAttribute(Attribute::ReadOnly) &&
2176 Attrs.hasAttribute(Attribute::WriteOnly)),
2178 "'readonly and writeonly' are incompatible!",
2181 Check(!(
Attrs.hasAttribute(Attribute::NoInline) &&
2182 Attrs.hasAttribute(Attribute::AlwaysInline)),
2184 "'noinline and alwaysinline' are incompatible!",
2187 Check(!(
Attrs.hasAttribute(Attribute::Writable) &&
2188 Attrs.hasAttribute(Attribute::ReadNone)),
2189 "Attributes writable and readnone are incompatible!", V);
2191 Check(!(
Attrs.hasAttribute(Attribute::Writable) &&
2192 Attrs.hasAttribute(Attribute::ReadOnly)),
2193 "Attributes writable and readonly are incompatible!", V);
2195 AttributeMask IncompatibleAttrs = AttributeFuncs::typeIncompatible(Ty, Attrs);
2197 if (!Attr.isStringAttribute() &&
2198 IncompatibleAttrs.
contains(Attr.getKindAsEnum())) {
2199 CheckFailed(
"Attribute '" + Attr.getAsString() +
2200 "' applied to incompatible type!", V);
2206 if (
Attrs.hasAttribute(Attribute::Alignment)) {
2207 Align AttrAlign =
Attrs.getAlignment().valueOrOne();
2208 Check(AttrAlign.
value() <= Value::MaximumAlignment,
2209 "huge alignment values are unsupported", V);
2211 if (
Attrs.hasAttribute(Attribute::ByVal)) {
2213 SmallPtrSet<Type *, 4> Visited;
2215 "Attribute 'byval' does not support unsized types!", V);
2219 "'byval' argument has illegal target extension type", V);
2220 Check(
DL.getTypeAllocSize(ByValTy).getKnownMinValue() < (1ULL << 32),
2221 "huge 'byval' arguments are unsupported", V);
2223 if (
Attrs.hasAttribute(Attribute::ByRef)) {
2224 SmallPtrSet<Type *, 4> Visited;
2225 Check(
Attrs.getByRefType()->isSized(&Visited),
2226 "Attribute 'byref' does not support unsized types!", V);
2227 Check(
DL.getTypeAllocSize(
Attrs.getByRefType()).getKnownMinValue() <
2229 "huge 'byref' arguments are unsupported", V);
2231 if (
Attrs.hasAttribute(Attribute::InAlloca)) {
2232 SmallPtrSet<Type *, 4> Visited;
2233 Check(
Attrs.getInAllocaType()->isSized(&Visited),
2234 "Attribute 'inalloca' does not support unsized types!", V);
2235 Check(
DL.getTypeAllocSize(
Attrs.getInAllocaType()).getKnownMinValue() <
2237 "huge 'inalloca' arguments are unsupported", V);
2239 if (
Attrs.hasAttribute(Attribute::Preallocated)) {
2240 SmallPtrSet<Type *, 4> Visited;
2241 Check(
Attrs.getPreallocatedType()->isSized(&Visited),
2242 "Attribute 'preallocated' does not support unsized types!", V);
2244 DL.getTypeAllocSize(
Attrs.getPreallocatedType()).getKnownMinValue() <
2246 "huge 'preallocated' arguments are unsupported", V);
2250 if (
Attrs.hasAttribute(Attribute::Initializes)) {
2251 auto Inits =
Attrs.getAttribute(Attribute::Initializes).getInitializes();
2252 Check(!Inits.empty(),
"Attribute 'initializes' does not support empty list",
2255 "Attribute 'initializes' does not support unordered ranges", V);
2258 if (
Attrs.hasAttribute(Attribute::NoFPClass)) {
2259 uint64_t Val =
Attrs.getAttribute(Attribute::NoFPClass).getValueAsInt();
2260 Check(Val != 0,
"Attribute 'nofpclass' must have at least one test bit set",
2263 "Invalid value for 'nofpclass' test mask", V);
2265 if (
Attrs.hasAttribute(Attribute::Range)) {
2266 const ConstantRange &CR =
2267 Attrs.getAttribute(Attribute::Range).getValueAsConstantRange();
2269 "Range bit width must match type bit width!", V);
2273void Verifier::checkUnsignedBaseTenFuncAttr(AttributeList Attrs, StringRef Attr,
2275 if (
Attrs.hasFnAttr(Attr)) {
2276 StringRef S =
Attrs.getFnAttr(Attr).getValueAsString();
2279 CheckFailed(
"\"" + Attr +
"\" takes an unsigned integer: " + S, V);
2285void Verifier::verifyFunctionAttrs(FunctionType *FT, AttributeList Attrs,
2286 const Value *V,
bool IsIntrinsic,
2288 if (
Attrs.isEmpty())
2291 if (AttributeListsVisited.
insert(
Attrs.getRawPointer()).second) {
2293 "Attribute list does not match Module context!", &Attrs, V);
2294 for (
const auto &AttrSet : Attrs) {
2295 Check(!AttrSet.hasAttributes() || AttrSet.hasParentContext(
Context),
2296 "Attribute set does not match Module context!", &AttrSet, V);
2297 for (
const auto &
A : AttrSet) {
2299 "Attribute does not match Module context!", &
A, V);
2304 bool SawNest =
false;
2305 bool SawReturned =
false;
2306 bool SawSRet =
false;
2307 bool SawSwiftSelf =
false;
2308 bool SawSwiftAsync =
false;
2309 bool SawSwiftError =
false;
2312 AttributeSet RetAttrs =
Attrs.getRetAttrs();
2315 Attribute::canUseAsRetAttr(
RetAttr.getKindAsEnum()),
2316 "Attribute '" +
RetAttr.getAsString() +
2317 "' does not apply to function return values",
2320 unsigned MaxParameterWidth = 0;
2321 auto GetMaxParameterWidth = [&MaxParameterWidth](
Type *Ty) {
2324 unsigned Size = VT->getPrimitiveSizeInBits().getFixedValue();
2325 if (
Size > MaxParameterWidth)
2326 MaxParameterWidth =
Size;
2330 GetMaxParameterWidth(FT->getReturnType());
2331 verifyParameterAttrs(RetAttrs, FT->getReturnType(), V);
2334 for (
unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
2335 Type *Ty = FT->getParamType(i);
2336 AttributeSet ArgAttrs =
Attrs.getParamAttrs(i);
2340 "immarg attribute only applies to intrinsics", V);
2343 "Attribute 'elementtype' can only be applied to intrinsics"
2348 verifyParameterAttrs(ArgAttrs, Ty, V);
2349 GetMaxParameterWidth(Ty);
2352 Check(!SawNest,
"More than one parameter has attribute nest!", V);
2357 Check(!SawReturned,
"More than one parameter has attribute returned!", V);
2359 "Incompatible argument and return types for 'returned' attribute",
2365 Check(!SawSRet,
"Cannot have multiple 'sret' parameters!", V);
2366 Check(i == 0 || i == 1,
2367 "Attribute 'sret' is not on first or second parameter!", V);
2372 Check(!SawSwiftSelf,
"Cannot have multiple 'swiftself' parameters!", V);
2373 SawSwiftSelf =
true;
2377 Check(!SawSwiftAsync,
"Cannot have multiple 'swiftasync' parameters!", V);
2378 SawSwiftAsync =
true;
2382 Check(!SawSwiftError,
"Cannot have multiple 'swifterror' parameters!", V);
2383 SawSwiftError =
true;
2387 Check(i == FT->getNumParams() - 1,
2388 "inalloca isn't on the last parameter!", V);
2392 if (!
Attrs.hasFnAttrs())
2395 verifyAttributeTypes(
Attrs.getFnAttrs(), V);
2398 Attribute::canUseAsFnAttr(
FnAttr.getKindAsEnum()),
2399 "Attribute '" +
FnAttr.getAsString() +
2400 "' does not apply to functions!",
2403 Check(!(
Attrs.hasFnAttr(Attribute::NoInline) &&
2404 Attrs.hasFnAttr(Attribute::AlwaysInline)),
2405 "Attributes 'noinline and alwaysinline' are incompatible!", V);
2407 if (
Attrs.hasFnAttr(Attribute::OptimizeNone)) {
2409 "Attribute 'optnone' requires 'noinline'!", V);
2411 Check(!
Attrs.hasFnAttr(Attribute::OptimizeForSize),
2412 "Attributes 'optsize and optnone' are incompatible!", V);
2415 "Attributes 'minsize and optnone' are incompatible!", V);
2417 Check(!
Attrs.hasFnAttr(Attribute::OptimizeForDebugging),
2418 "Attributes 'optdebug and optnone' are incompatible!", V);
2421 Check(!(
Attrs.hasFnAttr(Attribute::SanitizeRealtime) &&
2422 Attrs.hasFnAttr(Attribute::SanitizeRealtimeBlocking)),
2424 "'sanitize_realtime and sanitize_realtime_blocking' are incompatible!",
2427 if (
Attrs.hasFnAttr(Attribute::OptimizeForDebugging)) {
2428 Check(!
Attrs.hasFnAttr(Attribute::OptimizeForSize),
2429 "Attributes 'optsize and optdebug' are incompatible!", V);
2432 "Attributes 'minsize and optdebug' are incompatible!", V);
2435 Check(!
Attrs.hasAttrSomewhere(Attribute::Writable) ||
2436 isModSet(
Attrs.getMemoryEffects().getModRef(IRMemLocation::ArgMem)),
2437 "Attribute writable and memory without argmem: write are incompatible!",
2440 if (
Attrs.hasFnAttr(
"aarch64_pstate_sm_enabled")) {
2441 Check(!
Attrs.hasFnAttr(
"aarch64_pstate_sm_compatible"),
2442 "Attributes 'aarch64_pstate_sm_enabled and "
2443 "aarch64_pstate_sm_compatible' are incompatible!",
2447 Check((
Attrs.hasFnAttr(
"aarch64_new_za") +
Attrs.hasFnAttr(
"aarch64_in_za") +
2448 Attrs.hasFnAttr(
"aarch64_inout_za") +
2449 Attrs.hasFnAttr(
"aarch64_out_za") +
2450 Attrs.hasFnAttr(
"aarch64_preserves_za") +
2451 Attrs.hasFnAttr(
"aarch64_za_state_agnostic")) <= 1,
2452 "Attributes 'aarch64_new_za', 'aarch64_in_za', 'aarch64_out_za', "
2453 "'aarch64_inout_za', 'aarch64_preserves_za' and "
2454 "'aarch64_za_state_agnostic' are mutually exclusive",
2458 Attrs.hasFnAttr(
"aarch64_in_zt0") +
2459 Attrs.hasFnAttr(
"aarch64_inout_zt0") +
2460 Attrs.hasFnAttr(
"aarch64_out_zt0") +
2461 Attrs.hasFnAttr(
"aarch64_preserves_zt0") +
2462 Attrs.hasFnAttr(
"aarch64_za_state_agnostic")) <= 1,
2463 "Attributes 'aarch64_new_zt0', 'aarch64_in_zt0', 'aarch64_out_zt0', "
2464 "'aarch64_inout_zt0', 'aarch64_preserves_zt0' and "
2465 "'aarch64_za_state_agnostic' are mutually exclusive",
2468 if (
Attrs.hasFnAttr(Attribute::JumpTable)) {
2471 "Attribute 'jumptable' requires 'unnamed_addr'", V);
2474 if (
auto Args =
Attrs.getFnAttrs().getAllocSizeArgs()) {
2475 auto CheckParam = [&](StringRef
Name,
unsigned ParamNo) {
2476 if (ParamNo >= FT->getNumParams()) {
2477 CheckFailed(
"'allocsize' " + Name +
" argument is out of bounds", V);
2481 if (!FT->getParamType(ParamNo)->isIntegerTy()) {
2482 CheckFailed(
"'allocsize' " + Name +
2483 " argument must refer to an integer parameter",
2491 if (!CheckParam(
"element size",
Args->first))
2494 if (
Args->second && !CheckParam(
"number of elements", *
Args->second))
2498 if (
Attrs.hasFnAttr(Attribute::AllocKind)) {
2501 K & (AllocFnKind::Alloc | AllocFnKind::Realloc | AllocFnKind::Free);
2503 {AllocFnKind::Alloc, AllocFnKind::Realloc, AllocFnKind::Free},
2506 "'allockind()' requires exactly one of alloc, realloc, and free");
2507 if ((
Type == AllocFnKind::Free) &&
2508 ((K & (AllocFnKind::Uninitialized | AllocFnKind::Zeroed |
2509 AllocFnKind::Aligned)) != AllocFnKind::Unknown))
2510 CheckFailed(
"'allockind(\"free\")' doesn't allow uninitialized, zeroed, "
2511 "or aligned modifiers.");
2512 AllocFnKind ZeroedUninit = AllocFnKind::Uninitialized | AllocFnKind::Zeroed;
2513 if ((K & ZeroedUninit) == ZeroedUninit)
2514 CheckFailed(
"'allockind()' can't be both zeroed and uninitialized");
2518 StringRef S =
A.getValueAsString();
2519 Check(!S.
empty(),
"'alloc-variant-zeroed' must not be empty");
2527 "'alloc-variant-zeroed' must name a function belonging to the "
2528 "same 'alloc-family'");
2531 (
Variant->getFnAttribute(Attribute::AllocKind).getAllocKind() &
2532 AllocFnKind::Zeroed) != AllocFnKind::Unknown,
2533 "'alloc-variant-zeroed' must name a function with "
2534 "'allockind(\"zeroed\")'");
2537 "'alloc-variant-zeroed' must name a function with the same "
2542 if (
Attrs.hasFnAttr(Attribute::VScaleRange)) {
2543 unsigned VScaleMin =
Attrs.getFnAttrs().getVScaleRangeMin();
2545 CheckFailed(
"'vscale_range' minimum must be greater than 0", V);
2547 CheckFailed(
"'vscale_range' minimum must be power-of-two value", V);
2548 std::optional<unsigned> VScaleMax =
Attrs.getFnAttrs().getVScaleRangeMax();
2549 if (VScaleMax && VScaleMin > VScaleMax)
2550 CheckFailed(
"'vscale_range' minimum cannot be greater than maximum", V);
2552 CheckFailed(
"'vscale_range' maximum must be power-of-two value", V);
2555 if (
Attribute FPAttr =
Attrs.getFnAttr(
"frame-pointer"); FPAttr.isValid()) {
2556 StringRef
FP = FPAttr.getValueAsString();
2557 if (
FP !=
"all" &&
FP !=
"non-leaf" &&
FP !=
"none" &&
FP !=
"reserved" &&
2558 FP !=
"non-leaf-no-reserve")
2559 CheckFailed(
"invalid value for 'frame-pointer' attribute: " +
FP, V);
2562 checkUnsignedBaseTenFuncAttr(Attrs,
"patchable-function-prefix", V);
2563 checkUnsignedBaseTenFuncAttr(Attrs,
"patchable-function-entry", V);
2564 if (
Attrs.hasFnAttr(
"patchable-function-entry-section"))
2565 Check(!
Attrs.getFnAttr(
"patchable-function-entry-section")
2568 "\"patchable-function-entry-section\" must not be empty");
2569 checkUnsignedBaseTenFuncAttr(Attrs,
"warn-stack-size", V);
2571 if (
auto A =
Attrs.getFnAttr(
"sign-return-address");
A.isValid()) {
2572 StringRef S =
A.getValueAsString();
2573 if (S !=
"none" && S !=
"all" && S !=
"non-leaf")
2574 CheckFailed(
"invalid value for 'sign-return-address' attribute: " + S, V);
2577 if (
auto A =
Attrs.getFnAttr(
"sign-return-address-key");
A.isValid()) {
2578 StringRef S =
A.getValueAsString();
2579 if (S !=
"a_key" && S !=
"b_key")
2580 CheckFailed(
"invalid value for 'sign-return-address-key' attribute: " + S,
2582 if (
auto AA =
Attrs.getFnAttr(
"sign-return-address"); !AA.isValid()) {
2584 "'sign-return-address-key' present without `sign-return-address`");
2588 if (
auto A =
Attrs.getFnAttr(
"branch-target-enforcement");
A.isValid()) {
2589 StringRef S =
A.getValueAsString();
2590 if (S !=
"" && S !=
"true" && S !=
"false")
2592 "invalid value for 'branch-target-enforcement' attribute: " + S, V);
2595 if (
auto A =
Attrs.getFnAttr(
"branch-protection-pauth-lr");
A.isValid()) {
2596 StringRef S =
A.getValueAsString();
2597 if (S !=
"" && S !=
"true" && S !=
"false")
2599 "invalid value for 'branch-protection-pauth-lr' attribute: " + S, V);
2602 if (
auto A =
Attrs.getFnAttr(
"guarded-control-stack");
A.isValid()) {
2603 StringRef S =
A.getValueAsString();
2604 if (S !=
"" && S !=
"true" && S !=
"false")
2605 CheckFailed(
"invalid value for 'guarded-control-stack' attribute: " + S,
2609 if (
auto A =
Attrs.getFnAttr(
"vector-function-abi-variant");
A.isValid()) {
2610 StringRef S =
A.getValueAsString();
2613 CheckFailed(
"invalid name for a VFABI variant: " + S, V);
2616 if (
auto A =
Attrs.getFnAttr(
"denormal-fp-math");
A.isValid()) {
2617 StringRef S =
A.getValueAsString();
2619 CheckFailed(
"invalid value for 'denormal-fp-math' attribute: " + S, V);
2622 if (
auto A =
Attrs.getFnAttr(
"denormal-fp-math-f32");
A.isValid()) {
2623 StringRef S =
A.getValueAsString();
2625 CheckFailed(
"invalid value for 'denormal-fp-math-f32' attribute: " + S,
2629 if (
auto A =
Attrs.getFnAttr(
"modular-format");
A.isValid()) {
2630 StringRef S =
A.getValueAsString();
2634 "modular-format attribute requires at least 5 arguments", V);
2635 unsigned FirstArgIdx;
2636 Check(!Args[2].getAsInteger(10, FirstArgIdx),
2637 "modular-format attribute first arg index is not an integer", V);
2638 unsigned UpperBound = FT->getNumParams() + (FT->isVarArg() ? 1 : 0);
2639 Check(FirstArgIdx > 0 && FirstArgIdx <= UpperBound,
2640 "modular-format attribute first arg index is out of bounds", V);
2643 if (
auto A =
Attrs.getFnAttr(
"target-features");
A.isValid()) {
2644 StringRef S =
A.getValueAsString();
2646 for (
auto FeatureFlag :
split(S,
',')) {
2647 if (FeatureFlag.empty())
2649 "target-features attribute should not contain an empty string");
2651 Check(FeatureFlag[0] ==
'+' || FeatureFlag[0] ==
'-',
2652 "target feature '" + FeatureFlag +
2653 "' must start with a '+' or '-'",
2659void Verifier::verifyUnknownProfileMetadata(MDNode *MD) {
2661 "'unknown' !prof should have a single additional operand", MD);
2664 "'unknown' !prof should have an additional operand of type "
2667 "the 'unknown' !prof operand should not be an empty string");
2670void Verifier::verifyFunctionMetadata(
2671 ArrayRef<std::pair<unsigned, MDNode *>> MDs) {
2672 for (
const auto &Pair : MDs) {
2673 if (Pair.first == LLVMContext::MD_prof) {
2674 MDNode *MD = Pair.second;
2676 "!prof annotations should have no less than 2 operands", MD);
2681 verifyUnknownProfileMetadata(MD);
2686 Check(MD->
getOperand(0) !=
nullptr,
"first operand should not be null",
2689 "expected string with name of the !prof annotation", MD);
2694 "first operand should be 'function_entry_count'"
2695 " or 'synthetic_function_entry_count'",
2699 Check(MD->
getOperand(1) !=
nullptr,
"second operand should not be null",
2702 "expected integer argument to function_entry_count", MD);
2703 }
else if (Pair.first == LLVMContext::MD_kcfi_type) {
2704 MDNode *MD = Pair.second;
2706 "!kcfi_type must have exactly one operand", MD);
2707 Check(MD->
getOperand(0) !=
nullptr,
"!kcfi_type operand must not be null",
2710 "expected a constant operand for !kcfi_type", MD);
2713 "expected a constant integer operand for !kcfi_type", MD);
2715 "expected a 32-bit integer constant operand for !kcfi_type", MD);
2720void Verifier::visitConstantExprsRecursively(
const Constant *EntryC) {
2724 if (!ConstantExprVisited.
insert(EntryC).second)
2728 Stack.push_back(EntryC);
2730 while (!
Stack.empty()) {
2735 visitConstantExpr(CE);
2738 visitConstantPtrAuth(CPA);
2743 Check(GV->
getParent() == &M,
"Referencing global in another module!",
2749 for (
const Use &U :
C->operands()) {
2753 if (!ConstantExprVisited.
insert(OpC).second)
2755 Stack.push_back(OpC);
2760void Verifier::visitConstantExpr(
const ConstantExpr *CE) {
2761 if (
CE->getOpcode() == Instruction::BitCast)
2764 "Invalid bitcast", CE);
2765 else if (
CE->getOpcode() == Instruction::PtrToAddr)
2766 checkPtrToAddr(
CE->getOperand(0)->getType(),
CE->getType(), *CE);
2769void Verifier::visitConstantPtrAuth(
const ConstantPtrAuth *CPA) {
2771 "signed ptrauth constant base pointer must have pointer type");
2774 "signed ptrauth constant must have same type as its base pointer");
2777 "signed ptrauth constant key must be i32 constant integer");
2780 "signed ptrauth constant address discriminator must be a pointer");
2783 "signed ptrauth constant discriminator must be i64 constant integer");
2786 "signed ptrauth constant deactivation symbol must be a pointer");
2790 "signed ptrauth constant deactivation symbol must be a global value "
2794bool Verifier::verifyAttributeCount(AttributeList Attrs,
unsigned Params) {
2797 return Attrs.getNumAttrSets() <= Params + 2;
2800void Verifier::verifyInlineAsmCall(
const CallBase &
Call) {
2803 unsigned LabelNo = 0;
2804 for (
const InlineAsm::ConstraintInfo &CI :
IA->ParseConstraints()) {
2814 if (CI.isIndirect) {
2817 "Operand for indirect constraint must have pointer type", &
Call);
2820 "Operand for indirect constraint must have elementtype attribute",
2824 "Elementtype attribute can only be applied for indirect "
2833 Check(LabelNo == CallBr->getNumIndirectDests(),
2834 "Number of label constraints does not match number of callbr dests",
2837 Check(LabelNo == 0,
"Label constraints can only be used with callbr",
2843void Verifier::verifyStatepoint(
const CallBase &
Call) {
2848 "gc.statepoint must read and write all memory to preserve "
2849 "reordering restrictions required by safepoint semantics",
2852 const int64_t NumPatchBytes =
2855 Check(NumPatchBytes >= 0,
2856 "gc.statepoint number of patchable bytes must be "
2861 Check(TargetElemType,
2862 "gc.statepoint callee argument must have elementtype attribute",
Call);
2864 Check(TargetFuncType,
2865 "gc.statepoint callee elementtype must be function type",
Call);
2868 Check(NumCallArgs >= 0,
2869 "gc.statepoint number of arguments to underlying call "
2872 const int NumParams = (int)TargetFuncType->getNumParams();
2873 if (TargetFuncType->isVarArg()) {
2874 Check(NumCallArgs >= NumParams,
2875 "gc.statepoint mismatch in number of vararg call args",
Call);
2878 Check(TargetFuncType->getReturnType()->isVoidTy(),
2879 "gc.statepoint doesn't support wrapping non-void "
2880 "vararg functions yet",
2883 Check(NumCallArgs == NumParams,
2884 "gc.statepoint mismatch in number of call args",
Call);
2886 const uint64_t
Flags
2888 Check((Flags & ~(uint64_t)StatepointFlags::MaskAll) == 0,
2889 "unknown flag used in gc.statepoint flags argument",
Call);
2894 for (
int i = 0; i < NumParams; i++) {
2895 Type *ParamType = TargetFuncType->getParamType(i);
2897 Check(ArgType == ParamType,
2898 "gc.statepoint call argument does not match wrapped "
2902 if (TargetFuncType->isVarArg()) {
2903 AttributeSet ArgAttrs =
Attrs.getParamAttrs(5 + i);
2905 "Attribute 'sret' cannot be used for vararg call arguments!",
Call);
2909 const int EndCallArgsInx = 4 + NumCallArgs;
2913 "gc.statepoint number of transition arguments "
2914 "must be constant integer",
2916 const int NumTransitionArgs =
2918 Check(NumTransitionArgs == 0,
2919 "gc.statepoint w/inline transition bundle is deprecated",
Call);
2920 const int EndTransitionArgsInx = EndCallArgsInx + 1 + NumTransitionArgs;
2924 "gc.statepoint number of deoptimization arguments "
2925 "must be constant integer",
2928 Check(NumDeoptArgs == 0,
2929 "gc.statepoint w/inline deopt operands is deprecated",
Call);
2931 const int ExpectedNumArgs = 7 + NumCallArgs;
2933 "gc.statepoint too many arguments",
Call);
2940 Check(UserCall,
"illegal use of statepoint token",
Call, U);
2944 "gc.result or gc.relocate are the only value uses "
2945 "of a gc.statepoint",
2949 "gc.result connected to wrong gc.statepoint",
Call, UserCall);
2952 "gc.relocate connected to wrong gc.statepoint",
Call, UserCall);
2966void Verifier::verifyFrameRecoverIndices() {
2967 for (
auto &Counts : FrameEscapeInfo) {
2969 unsigned EscapedObjectCount = Counts.second.first;
2970 unsigned MaxRecoveredIndex = Counts.second.second;
2971 Check(MaxRecoveredIndex <= EscapedObjectCount,
2972 "all indices passed to llvm.localrecover must be less than the "
2973 "number of arguments passed to llvm.localescape in the parent "
2982 UnwindDest =
II->getUnwindDest();
2984 UnwindDest = CSI->getUnwindDest();
2990void Verifier::verifySiblingFuncletUnwinds() {
2991 llvm::TimeTraceScope timeScope(
"Verifier verify sibling funclet unwinds");
2992 SmallPtrSet<Instruction *, 8> Visited;
2993 SmallPtrSet<Instruction *, 8>
Active;
2994 for (
const auto &Pair : SiblingFuncletInfo) {
2996 if (Visited.
count(PredPad))
3002 if (
Active.count(SuccPad)) {
3005 SmallVector<Instruction *, 8> CycleNodes;
3008 Instruction *CycleTerminator = SiblingFuncletInfo[CyclePad];
3009 if (CycleTerminator != CyclePad)
3012 }
while (CyclePad != SuccPad);
3013 Check(
false,
"EH pads can't handle each other's exceptions",
3017 if (!Visited.
insert(SuccPad).second)
3021 auto TermI = SiblingFuncletInfo.find(PredPad);
3022 if (TermI == SiblingFuncletInfo.end())
3035void Verifier::visitFunction(
const Function &
F) {
3036 visitGlobalValue(
F);
3039 FunctionType *FT =
F.getFunctionType();
3040 unsigned NumArgs =
F.arg_size();
3043 "Function context does not match Module context!", &
F);
3045 Check(!
F.hasCommonLinkage(),
"Functions may not have common linkage", &
F);
3046 Check(FT->getNumParams() == NumArgs,
3047 "# formal arguments must match # of arguments for function type!", &
F,
3049 Check(
F.getReturnType()->isFirstClassType() ||
3050 F.getReturnType()->isVoidTy() ||
F.getReturnType()->isStructTy(),
3051 "Functions cannot return aggregate values!", &
F);
3053 Check(!
F.hasStructRetAttr() ||
F.getReturnType()->isVoidTy(),
3054 "Invalid struct return type!", &
F);
3056 if (MaybeAlign
A =
F.getAlign()) {
3057 Check(
A->value() <= Value::MaximumAlignment,
3058 "huge alignment values are unsupported", &
F);
3061 AttributeList
Attrs =
F.getAttributes();
3063 Check(verifyAttributeCount(Attrs, FT->getNumParams()),
3064 "Attribute after last parameter!", &
F);
3066 bool IsIntrinsic =
F.isIntrinsic();
3069 verifyFunctionAttrs(FT, Attrs, &
F, IsIntrinsic,
false);
3075 "Attribute 'builtin' can only be applied to a callsite.", &
F);
3077 Check(!
Attrs.hasAttrSomewhere(Attribute::ElementType),
3078 "Attribute 'elementtype' can only be applied to a callsite.", &
F);
3081 "Attribute 'aarch64_zt0_undef' can only be applied to a callsite.");
3083 if (
Attrs.hasFnAttr(Attribute::Naked))
3084 for (
const Argument &Arg :
F.args())
3085 Check(Arg.use_empty(),
"cannot use argument of naked function", &Arg);
3090 switch (
F.getCallingConv()) {
3092 case CallingConv::C:
3094 case CallingConv::X86_INTR: {
3095 Check(
F.arg_empty() ||
Attrs.hasParamAttr(0, Attribute::ByVal),
3096 "Calling convention parameter requires byval", &
F);
3099 case CallingConv::AMDGPU_KERNEL:
3100 case CallingConv::SPIR_KERNEL:
3101 case CallingConv::AMDGPU_CS_Chain:
3102 case CallingConv::AMDGPU_CS_ChainPreserve:
3103 Check(
F.getReturnType()->isVoidTy(),
3104 "Calling convention requires void return type", &
F);
3106 case CallingConv::AMDGPU_VS:
3107 case CallingConv::AMDGPU_HS:
3108 case CallingConv::AMDGPU_GS:
3109 case CallingConv::AMDGPU_PS:
3110 case CallingConv::AMDGPU_CS:
3111 Check(!
F.hasStructRetAttr(),
"Calling convention does not allow sret", &
F);
3112 if (
F.getCallingConv() != CallingConv::SPIR_KERNEL) {
3113 const unsigned StackAS =
DL.getAllocaAddrSpace();
3115 for (
const Argument &Arg :
F.args()) {
3116 Check(!
Attrs.hasParamAttr(i, Attribute::ByVal),
3117 "Calling convention disallows byval", &
F);
3118 Check(!
Attrs.hasParamAttr(i, Attribute::Preallocated),
3119 "Calling convention disallows preallocated", &
F);
3120 Check(!
Attrs.hasParamAttr(i, Attribute::InAlloca),
3121 "Calling convention disallows inalloca", &
F);
3123 if (
Attrs.hasParamAttr(i, Attribute::ByRef)) {
3126 Check(Arg.getType()->getPointerAddressSpace() != StackAS,
3127 "Calling convention disallows stack byref", &
F);
3135 case CallingConv::Fast:
3136 case CallingConv::Cold:
3137 case CallingConv::Intel_OCL_BI:
3138 case CallingConv::PTX_Kernel:
3139 case CallingConv::PTX_Device:
3141 "Calling convention does not support varargs or "
3142 "perfect forwarding!",
3145 case CallingConv::AMDGPU_Gfx_WholeWave:
3146 Check(!
F.arg_empty() &&
F.arg_begin()->getType()->isIntegerTy(1),
3147 "Calling convention requires first argument to be i1", &
F);
3148 Check(!
F.arg_begin()->hasInRegAttr(),
3149 "Calling convention requires first argument to not be inreg", &
F);
3151 "Calling convention does not support varargs or "
3152 "perfect forwarding!",
3159 for (
const Argument &Arg :
F.args()) {
3160 Check(Arg.getType() == FT->getParamType(i),
3161 "Argument value does not match function argument type!", &Arg,
3162 FT->getParamType(i));
3163 Check(Arg.getType()->isFirstClassType(),
3164 "Function arguments must have first-class types!", &Arg);
3166 Check(!Arg.getType()->isMetadataTy(),
3167 "Function takes metadata but isn't an intrinsic", &Arg, &
F);
3168 Check(!Arg.getType()->isTokenLikeTy(),
3169 "Function takes token but isn't an intrinsic", &Arg, &
F);
3170 Check(!Arg.getType()->isX86_AMXTy(),
3171 "Function takes x86_amx but isn't an intrinsic", &Arg, &
F);
3175 if (
Attrs.hasParamAttr(i, Attribute::SwiftError)) {
3176 verifySwiftErrorValue(&Arg);
3182 Check(!
F.getReturnType()->isTokenLikeTy(),
3183 "Function returns a token but isn't an intrinsic", &
F);
3184 Check(!
F.getReturnType()->isX86_AMXTy(),
3185 "Function returns a x86_amx but isn't an intrinsic", &
F);
3190 F.getAllMetadata(MDs);
3191 assert(
F.hasMetadata() != MDs.
empty() &&
"Bit out-of-sync");
3192 verifyFunctionMetadata(MDs);
3195 if (
F.hasPersonalityFn()) {
3198 Check(Per->getParent() ==
F.getParent(),
3199 "Referencing personality function in another module!", &
F,
3200 F.getParent(), Per, Per->getParent());
3204 BlockEHFuncletColors.
clear();
3206 if (
F.isMaterializable()) {
3208 Check(MDs.
empty(),
"unmaterialized function cannot have metadata", &
F,
3210 }
else if (
F.isDeclaration()) {
3211 for (
const auto &
I : MDs) {
3213 CheckDI(
I.first != LLVMContext::MD_dbg ||
3215 "function declaration may only have a unique !dbg attachment",
3217 Check(
I.first != LLVMContext::MD_prof,
3218 "function declaration may not have a !prof attachment", &
F);
3221 visitMDNode(*
I.second, AreDebugLocsAllowed::Yes);
3223 Check(!
F.hasPersonalityFn(),
3224 "Function declaration shouldn't have a personality routine", &
F);
3228 Check(!IsIntrinsic,
"llvm intrinsics cannot be defined!", &
F);
3233 "Entry block to function must not have predecessors!", Entry);
3236 if (
Entry->hasAddressTaken()) {
3238 "blockaddress may not be used with the entry block!", Entry);
3241 unsigned NumDebugAttachments = 0, NumProfAttachments = 0,
3242 NumKCFIAttachments = 0;
3244 for (
const auto &
I : MDs) {
3246 auto AllowLocs = AreDebugLocsAllowed::No;
3250 case LLVMContext::MD_dbg: {
3251 ++NumDebugAttachments;
3252 CheckDI(NumDebugAttachments == 1,
3253 "function must have a single !dbg attachment", &
F,
I.second);
3255 "function !dbg attachment must be a subprogram", &
F,
I.second);
3257 "function definition may only have a distinct !dbg attachment",
3261 const Function *&AttachedTo = DISubprogramAttachments[
SP];
3262 CheckDI(!AttachedTo || AttachedTo == &
F,
3263 "DISubprogram attached to more than one function", SP, &
F);
3265 AllowLocs = AreDebugLocsAllowed::Yes;
3268 case LLVMContext::MD_prof:
3269 ++NumProfAttachments;
3270 Check(NumProfAttachments == 1,
3271 "function must have a single !prof attachment", &
F,
I.second);
3273 case LLVMContext::MD_kcfi_type:
3274 ++NumKCFIAttachments;
3275 Check(NumKCFIAttachments == 1,
3276 "function must have a single !kcfi_type attachment", &
F,
3282 visitMDNode(*
I.second, AllowLocs);
3290 if (
F.isIntrinsic() &&
F.getParent()->isMaterialized()) {
3292 if (
F.hasAddressTaken(&U,
false,
true,
false,
3294 Check(
false,
"Invalid user of intrinsic instruction!", U);
3298 switch (
F.getIntrinsicID()) {
3299 case Intrinsic::experimental_gc_get_pointer_base: {
3300 FunctionType *FT =
F.getFunctionType();
3301 Check(FT->getNumParams() == 1,
"wrong number of parameters",
F);
3303 "gc.get.pointer.base must return a pointer",
F);
3304 Check(FT->getParamType(0) ==
F.getReturnType(),
3305 "gc.get.pointer.base operand and result must be of the same type",
F);
3308 case Intrinsic::experimental_gc_get_pointer_offset: {
3309 FunctionType *FT =
F.getFunctionType();
3310 Check(FT->getNumParams() == 1,
"wrong number of parameters",
F);
3312 "gc.get.pointer.offset operand must be a pointer",
F);
3313 Check(
F.getReturnType()->isIntegerTy(),
3314 "gc.get.pointer.offset must return integer",
F);
3319 auto *
N =
F.getSubprogram();
3320 HasDebugInfo = (
N !=
nullptr);
3328 SmallPtrSet<const MDNode *, 32> Seen;
3340 "DILocation's scope must be a DILocalScope",
N, &
F, &
I,
DL, Parent);
3342 DILocalScope *
Scope =
DL->getInlinedAtScope();
3343 Check(Scope,
"Failed to find DILocalScope",
DL);
3345 if (!Seen.
insert(Scope).second)
3348 DISubprogram *
SP =
Scope->getSubprogram();
3352 if ((Scope != SP) && !Seen.
insert(SP).second)
3356 "!dbg attachment points at wrong subprogram for function",
N, &
F,
3360 for (
auto &
I : BB) {
3361 VisitDebugLoc(
I,
I.getDebugLoc().getAsMDNode());
3363 if (
auto MD =
I.getMetadata(LLVMContext::MD_loop))
3366 if (BrokenDebugInfo)
3373void Verifier::visitBasicBlock(BasicBlock &BB) {
3374 InstsInThisBlock.
clear();
3375 ConvergenceVerifyHelper.
visit(BB);
3386 for (
const PHINode &PN : BB.
phis()) {
3387 Check(PN.getNumIncomingValues() == Preds.size(),
3388 "PHINode should have one entry for each predecessor of its "
3389 "parent basic block!",
3394 Values.
reserve(PN.getNumIncomingValues());
3395 for (
unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i)
3397 std::make_pair(PN.getIncomingBlock(i), PN.getIncomingValue(i)));
3400 for (
unsigned i = 0, e = Values.
size(); i != e; ++i) {
3405 Check(i == 0 || Values[i].first != Values[i - 1].first ||
3406 Values[i].second == Values[i - 1].second,
3407 "PHI node has multiple entries for the same basic block with "
3408 "different incoming values!",
3409 &PN, Values[i].first, Values[i].second, Values[i - 1].second);
3413 Check(Values[i].first == Preds[i],
3414 "PHI node entries do not match predecessors!", &PN,
3415 Values[i].first, Preds[i]);
3423 Check(
I.getParent() == &BB,
"Instruction has bogus parent pointer!");
3427 CheckDI(!BB.getTrailingDbgRecords(),
"Basic Block has trailing DbgRecords!",
3431void Verifier::visitTerminator(Instruction &
I) {
3433 Check(&
I ==
I.getParent()->getTerminator(),
3434 "Terminator found in the middle of a basic block!",
I.getParent());
3435 visitInstruction(
I);
3438void Verifier::visitBranchInst(BranchInst &BI) {
3441 "Branch condition is not 'i1' type!", &BI, BI.
getCondition());
3443 visitTerminator(BI);
3446void Verifier::visitReturnInst(ReturnInst &RI) {
3449 if (
F->getReturnType()->isVoidTy())
3451 "Found return instr that returns non-void in Function of void "
3453 &RI,
F->getReturnType());
3456 "Function return type does not match operand "
3457 "type of return inst!",
3458 &RI,
F->getReturnType());
3462 visitTerminator(RI);
3465void Verifier::visitSwitchInst(SwitchInst &SI) {
3466 Check(
SI.getType()->isVoidTy(),
"Switch must have void result type!", &SI);
3469 Type *SwitchTy =
SI.getCondition()->getType();
3470 SmallPtrSet<ConstantInt*, 32>
Constants;
3471 for (
auto &Case :
SI.cases()) {
3473 "Case value is not a constant integer.", &SI);
3474 Check(Case.getCaseValue()->getType() == SwitchTy,
3475 "Switch constants must all be same type as switch value!", &SI);
3477 "Duplicate integer as switch case", &SI, Case.getCaseValue());
3480 visitTerminator(SI);
3483void Verifier::visitIndirectBrInst(IndirectBrInst &BI) {
3485 "Indirectbr operand must have pointer type!", &BI);
3488 "Indirectbr destinations must all have pointer type!", &BI);
3490 visitTerminator(BI);
3493void Verifier::visitCallBrInst(CallBrInst &CBI) {
3496 "Callbr: indirect function / invalid signature");
3498 "Callbr for intrinsics currently doesn't support operand bundles");
3501 case Intrinsic::amdgcn_kill: {
3503 "Callbr amdgcn_kill only supports one indirect dest");
3507 Intrinsic::amdgcn_unreachable),
3508 "Callbr amdgcn_kill indirect dest needs to be unreachable");
3513 "Callbr currently only supports asm-goto and selected intrinsics");
3518 Check(!
IA->canThrow(),
"Unwinding from Callbr is not allowed");
3520 verifyInlineAsmCall(CBI);
3522 visitTerminator(CBI);
3525void Verifier::visitSelectInst(SelectInst &SI) {
3528 "Invalid operands for select instruction!", &SI);
3530 Check(
SI.getTrueValue()->getType() ==
SI.getType(),
3531 "Select values must have same type as select instruction!", &SI);
3532 visitInstruction(SI);
3538void Verifier::visitUserOp1(Instruction &
I) {
3539 Check(
false,
"User-defined operators should not live outside of a pass!", &
I);
3542void Verifier::visitTruncInst(TruncInst &
I) {
3544 Type *SrcTy =
I.getOperand(0)->getType();
3545 Type *DestTy =
I.getType();
3554 "trunc source and destination must both be a vector or neither", &
I);
3555 Check(SrcBitSize > DestBitSize,
"DestTy too big for Trunc", &
I);
3557 visitInstruction(
I);
3560void Verifier::visitZExtInst(ZExtInst &
I) {
3562 Type *SrcTy =
I.getOperand(0)->getType();
3563 Type *DestTy =
I.getType();
3569 "zext source and destination must both be a vector or neither", &
I);
3573 Check(SrcBitSize < DestBitSize,
"Type too small for ZExt", &
I);
3575 visitInstruction(
I);
3578void Verifier::visitSExtInst(SExtInst &
I) {
3580 Type *SrcTy =
I.getOperand(0)->getType();
3581 Type *DestTy =
I.getType();
3590 "sext source and destination must both be a vector or neither", &
I);
3591 Check(SrcBitSize < DestBitSize,
"Type too small for SExt", &
I);
3593 visitInstruction(
I);
3596void Verifier::visitFPTruncInst(FPTruncInst &
I) {
3598 Type *SrcTy =
I.getOperand(0)->getType();
3599 Type *DestTy =
I.getType();
3607 "fptrunc source and destination must both be a vector or neither", &
I);
3608 Check(SrcBitSize > DestBitSize,
"DestTy too big for FPTrunc", &
I);
3610 visitInstruction(
I);
3613void Verifier::visitFPExtInst(FPExtInst &
I) {
3615 Type *SrcTy =
I.getOperand(0)->getType();
3616 Type *DestTy =
I.getType();
3625 "fpext source and destination must both be a vector or neither", &
I);
3626 Check(SrcBitSize < DestBitSize,
"DestTy too small for FPExt", &
I);
3628 visitInstruction(
I);
3631void Verifier::visitUIToFPInst(UIToFPInst &
I) {
3633 Type *SrcTy =
I.getOperand(0)->getType();
3634 Type *DestTy =
I.getType();
3639 Check(SrcVec == DstVec,
3640 "UIToFP source and dest must both be vector or scalar", &
I);
3642 "UIToFP source must be integer or integer vector", &
I);
3646 if (SrcVec && DstVec)
3649 "UIToFP source and dest vector length mismatch", &
I);
3651 visitInstruction(
I);
3654void Verifier::visitSIToFPInst(SIToFPInst &
I) {
3656 Type *SrcTy =
I.getOperand(0)->getType();
3657 Type *DestTy =
I.getType();
3662 Check(SrcVec == DstVec,
3663 "SIToFP source and dest must both be vector or scalar", &
I);
3665 "SIToFP source must be integer or integer vector", &
I);
3669 if (SrcVec && DstVec)
3672 "SIToFP source and dest vector length mismatch", &
I);
3674 visitInstruction(
I);
3677void Verifier::visitFPToUIInst(FPToUIInst &
I) {
3679 Type *SrcTy =
I.getOperand(0)->getType();
3680 Type *DestTy =
I.getType();
3685 Check(SrcVec == DstVec,
3686 "FPToUI source and dest must both be vector or scalar", &
I);
3689 "FPToUI result must be integer or integer vector", &
I);
3691 if (SrcVec && DstVec)
3694 "FPToUI source and dest vector length mismatch", &
I);
3696 visitInstruction(
I);
3699void Verifier::visitFPToSIInst(FPToSIInst &
I) {
3701 Type *SrcTy =
I.getOperand(0)->getType();
3702 Type *DestTy =
I.getType();
3707 Check(SrcVec == DstVec,
3708 "FPToSI source and dest must both be vector or scalar", &
I);
3711 "FPToSI result must be integer or integer vector", &
I);
3713 if (SrcVec && DstVec)
3716 "FPToSI source and dest vector length mismatch", &
I);
3718 visitInstruction(
I);
3721void Verifier::checkPtrToAddr(
Type *SrcTy,
Type *DestTy,
const Value &V) {
3730 Check(VSrc->getElementCount() == VDest->getElementCount(),
3731 "PtrToAddr vector length mismatch", V);
3734 Type *AddrTy =
DL.getAddressType(SrcTy);
3735 Check(AddrTy == DestTy,
"PtrToAddr result must be address width", V);
3738void Verifier::visitPtrToAddrInst(PtrToAddrInst &
I) {
3739 checkPtrToAddr(
I.getOperand(0)->getType(),
I.getType(),
I);
3740 visitInstruction(
I);
3743void Verifier::visitPtrToIntInst(PtrToIntInst &
I) {
3745 Type *SrcTy =
I.getOperand(0)->getType();
3746 Type *DestTy =
I.getType();
3757 Check(VSrc->getElementCount() == VDest->getElementCount(),
3758 "PtrToInt Vector length mismatch", &
I);
3761 visitInstruction(
I);
3764void Verifier::visitIntToPtrInst(IntToPtrInst &
I) {
3766 Type *SrcTy =
I.getOperand(0)->getType();
3767 Type *DestTy =
I.getType();
3777 Check(VSrc->getElementCount() == VDest->getElementCount(),
3778 "IntToPtr Vector length mismatch", &
I);
3780 visitInstruction(
I);
3783void Verifier::visitBitCastInst(BitCastInst &
I) {
3786 "Invalid bitcast", &
I);
3787 visitInstruction(
I);
3790void Verifier::visitAddrSpaceCastInst(AddrSpaceCastInst &
I) {
3791 Type *SrcTy =
I.getOperand(0)->getType();
3792 Type *DestTy =
I.getType();
3799 "AddrSpaceCast must be between different address spaces", &
I);
3801 Check(SrcVTy->getElementCount() ==
3803 "AddrSpaceCast vector pointer number of elements mismatch", &
I);
3804 visitInstruction(
I);
3809void Verifier::visitPHINode(PHINode &PN) {
3816 "PHI nodes not grouped at top of basic block!", &PN, PN.
getParent());
3825 "PHI node operands are not the same type as the result!", &PN);
3830 visitInstruction(PN);
3833void Verifier::visitCallBase(CallBase &
Call) {
3835 "Called function must be a pointer!",
Call);
3839 if (FTy->isVarArg())
3841 "Called function requires more parameters than were provided!",
Call);
3844 "Incorrect number of arguments passed to called function!",
Call);
3847 for (
unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
3849 "Call parameter type does not match function signature!",
3855 "Attribute after last parameter!",
Call);
3862 "Intrinsic called with incompatible signature",
Call);
3866 "calling convention does not permit calls",
Call);
3872 auto VerifyTypeAlign = [&](
Type *Ty,
const Twine &Message) {
3875 Align ABIAlign =
DL.getABITypeAlign(Ty);
3876 Check(ABIAlign.
value() <= Value::MaximumAlignment,
3877 "Incorrect alignment of " + Message +
" to called function!",
Call);
3881 VerifyTypeAlign(FTy->getReturnType(),
"return type");
3882 for (
unsigned i = 0, e = FTy->getNumParams(); i != e; ++i) {
3883 Type *Ty = FTy->getParamType(i);
3884 VerifyTypeAlign(Ty,
"argument passed");
3888 if (
Attrs.hasFnAttr(Attribute::Speculatable)) {
3892 "speculatable attribute may not apply to call sites",
Call);
3895 if (
Attrs.hasFnAttr(Attribute::Preallocated)) {
3897 "preallocated as a call site attribute can only be on "
3898 "llvm.call.preallocated.arg");
3910 Check(AI->isUsedWithInAlloca(),
3911 "inalloca argument for call has mismatched alloca", AI,
Call);
3917 for (
unsigned i = 0, e = FTy->getNumParams(); i != e; ++i) {
3921 Check(AI->isSwiftError(),
3922 "swifterror argument for call has mismatched alloca", AI,
Call);
3926 Check(ArgI,
"swifterror argument should come from an alloca or parameter",
3927 SwiftErrorArg,
Call);
3928 Check(ArgI->hasSwiftErrorAttr(),
3929 "swifterror argument for call has mismatched parameter", ArgI,
3933 if (
Attrs.hasParamAttr(i, Attribute::ImmArg)) {
3936 Check(Callee &&
Callee->hasParamAttribute(i, Attribute::ImmArg),
3944 "immarg operand has non-immediate parameter", ArgVal,
Call);
3950 const ConstantRange &CR =
3953 "immarg value " + Twine(CI->getValue().getSExtValue()) +
3966 Check(hasOB != isMustTail,
3967 "preallocated operand either requires a preallocated bundle or "
3968 "the call to be musttail (but not both)",
3973 if (FTy->isVarArg()) {
3975 bool SawNest =
false;
3976 bool SawReturned =
false;
3978 for (
unsigned Idx = 0; Idx < FTy->getNumParams(); ++Idx) {
3979 if (
Attrs.hasParamAttr(Idx, Attribute::Nest))
3981 if (
Attrs.hasParamAttr(Idx, Attribute::Returned))
3986 for (
unsigned Idx = FTy->getNumParams(); Idx <
Call.
arg_size(); ++Idx) {
3988 AttributeSet ArgAttrs =
Attrs.getParamAttrs(Idx);
3989 verifyParameterAttrs(ArgAttrs, Ty, &
Call);
3992 Check(!SawNest,
"More than one parameter has attribute nest!",
Call);
3997 Check(!SawReturned,
"More than one parameter has attribute returned!",
4000 "Incompatible argument and return types for 'returned' "
4010 "Attribute 'sret' cannot be used for vararg call arguments!",
4015 "inalloca isn't on the last argument!",
Call);
4021 for (
Type *ParamTy : FTy->params()) {
4022 Check(!ParamTy->isMetadataTy(),
4023 "Function has metadata parameter but isn't an intrinsic",
Call);
4024 Check(!ParamTy->isTokenLikeTy(),
4025 "Function has token parameter but isn't an intrinsic",
Call);
4031 Check(!FTy->getReturnType()->isTokenLikeTy(),
4032 "Return type cannot be token for indirect call!");
4033 Check(!FTy->getReturnType()->isX86_AMXTy(),
4034 "Return type cannot be x86_amx for indirect call!");
4038 visitIntrinsicCall(
ID,
Call);
4043 bool FoundDeoptBundle =
false, FoundFuncletBundle =
false,
4044 FoundGCTransitionBundle =
false, FoundCFGuardTargetBundle =
false,
4045 FoundPreallocatedBundle =
false, FoundGCLiveBundle =
false,
4046 FoundPtrauthBundle =
false, FoundKCFIBundle =
false,
4047 FoundAttachedCallBundle =
false;
4052 Check(!FoundDeoptBundle,
"Multiple deopt operand bundles",
Call);
4053 FoundDeoptBundle =
true;
4055 Check(!FoundGCTransitionBundle,
"Multiple gc-transition operand bundles",
4057 FoundGCTransitionBundle =
true;
4059 Check(!FoundFuncletBundle,
"Multiple funclet operand bundles",
Call);
4060 FoundFuncletBundle =
true;
4062 "Expected exactly one funclet bundle operand",
Call);
4064 "Funclet bundle operands should correspond to a FuncletPadInst",
4067 Check(!FoundCFGuardTargetBundle,
"Multiple CFGuardTarget operand bundles",
4069 FoundCFGuardTargetBundle =
true;
4071 "Expected exactly one cfguardtarget bundle operand",
Call);
4073 Check(!FoundPtrauthBundle,
"Multiple ptrauth operand bundles",
Call);
4074 FoundPtrauthBundle =
true;
4076 "Expected exactly two ptrauth bundle operands",
Call);
4078 BU.
Inputs[0]->getType()->isIntegerTy(32),
4079 "Ptrauth bundle key operand must be an i32 constant",
Call);
4081 "Ptrauth bundle discriminator operand must be an i64",
Call);
4083 Check(!FoundKCFIBundle,
"Multiple kcfi operand bundles",
Call);
4084 FoundKCFIBundle =
true;
4085 Check(BU.
Inputs.size() == 1,
"Expected exactly one kcfi bundle operand",
4088 BU.
Inputs[0]->getType()->isIntegerTy(32),
4089 "Kcfi bundle operand must be an i32 constant",
Call);
4091 Check(!FoundPreallocatedBundle,
"Multiple preallocated operand bundles",
4093 FoundPreallocatedBundle =
true;
4095 "Expected exactly one preallocated bundle operand",
Call);
4098 Input->getIntrinsicID() == Intrinsic::call_preallocated_setup,
4099 "\"preallocated\" argument must be a token from "
4100 "llvm.call.preallocated.setup",
4103 Check(!FoundGCLiveBundle,
"Multiple gc-live operand bundles",
Call);
4104 FoundGCLiveBundle =
true;
4106 Check(!FoundAttachedCallBundle,
4107 "Multiple \"clang.arc.attachedcall\" operand bundles",
Call);
4108 FoundAttachedCallBundle =
true;
4109 verifyAttachedCallBundle(
Call, BU);
4115 "Direct call cannot have a ptrauth bundle",
Call);
4127 "inlinable function call in a function with "
4128 "debug info must have a !dbg location",
4132 verifyInlineAsmCall(
Call);
4136 visitInstruction(
Call);
4139void Verifier::verifyTailCCMustTailAttrs(
const AttrBuilder &Attrs,
4142 Twine(
"inalloca attribute not allowed in ") +
Context);
4144 Twine(
"inreg attribute not allowed in ") +
Context);
4145 Check(!
Attrs.contains(Attribute::SwiftError),
4146 Twine(
"swifterror attribute not allowed in ") +
Context);
4147 Check(!
Attrs.contains(Attribute::Preallocated),
4148 Twine(
"preallocated attribute not allowed in ") +
Context);
4150 Twine(
"byref attribute not allowed in ") +
Context);
4162 return PL->getAddressSpace() == PR->getAddressSpace();
4167 Attribute::StructRet, Attribute::ByVal, Attribute::InAlloca,
4168 Attribute::InReg, Attribute::StackAlignment, Attribute::SwiftSelf,
4169 Attribute::SwiftAsync, Attribute::SwiftError, Attribute::Preallocated,
4171 AttrBuilder Copy(
C);
4172 for (
auto AK : ABIAttrs) {
4173 Attribute Attr = Attrs.getParamAttrs(
I).getAttribute(AK);
4175 Copy.addAttribute(Attr);
4179 if (Attrs.hasParamAttr(
I, Attribute::Alignment) &&
4180 (Attrs.hasParamAttr(
I, Attribute::ByVal) ||
4181 Attrs.hasParamAttr(
I, Attribute::ByRef)))
4182 Copy.addAlignmentAttr(Attrs.getParamAlignment(
I));
4186void Verifier::verifyMustTailCall(CallInst &CI) {
4190 FunctionType *CallerTy =
F->getFunctionType();
4192 Check(CallerTy->isVarArg() == CalleeTy->isVarArg(),
4193 "cannot guarantee tail call due to mismatched varargs", &CI);
4195 "cannot guarantee tail call due to mismatched return types", &CI);
4199 "cannot guarantee tail call due to mismatched calling conv", &CI);
4205 Value *RetVal = &CI;
4211 "bitcast following musttail call must use the call", BI);
4218 Check(Ret,
"musttail call must precede a ret with an optional bitcast", &CI);
4221 "musttail call result must be returned", Ret);
4223 AttributeList CallerAttrs =
F->getAttributes();
4228 CI.
getCallingConv() == CallingConv::Tail ?
"tailcc" :
"swifttailcc";
4232 for (
unsigned I = 0,
E = CallerTy->getNumParams();
I !=
E; ++
I) {
4234 SmallString<32>
Context{CCName, StringRef(
" musttail caller")};
4235 verifyTailCCMustTailAttrs(ABIAttrs,
Context);
4237 for (
unsigned I = 0,
E = CalleeTy->getNumParams();
I !=
E; ++
I) {
4239 SmallString<32>
Context{CCName, StringRef(
" musttail callee")};
4240 verifyTailCCMustTailAttrs(ABIAttrs,
Context);
4243 Check(!CallerTy->isVarArg(), Twine(
"cannot guarantee ") + CCName +
4244 " tail call for varargs function");
4252 Check(CallerTy->getNumParams() == CalleeTy->getNumParams(),
4253 "cannot guarantee tail call due to mismatched parameter counts", &CI);
4254 for (
unsigned I = 0,
E = CallerTy->getNumParams();
I !=
E; ++
I) {
4257 "cannot guarantee tail call due to mismatched parameter types", &CI);
4263 for (
unsigned I = 0,
E = CallerTy->getNumParams();
I !=
E; ++
I) {
4266 Check(CallerABIAttrs == CalleeABIAttrs,
4267 "cannot guarantee tail call due to mismatched ABI impacting "
4268 "function attributes",
4273void Verifier::visitCallInst(CallInst &CI) {
4277 verifyMustTailCall(CI);
4280void Verifier::visitInvokeInst(InvokeInst &
II) {
4286 II.getUnwindDest()->isEHPad(),
4287 "The unwind destination does not have an exception handling instruction!",
4290 visitTerminator(
II);
4295void Verifier::visitUnaryOperator(UnaryOperator &U) {
4296 Check(
U.getType() ==
U.getOperand(0)->getType(),
4297 "Unary operators must have same type for"
4298 "operands and result!",
4301 switch (
U.getOpcode()) {
4304 case Instruction::FNeg:
4305 Check(
U.getType()->isFPOrFPVectorTy(),
4306 "FNeg operator only works with float types!", &U);
4312 visitInstruction(U);
4318void Verifier::visitBinaryOperator(BinaryOperator &
B) {
4319 Check(
B.getOperand(0)->getType() ==
B.getOperand(1)->getType(),
4320 "Both operands to a binary operator are not of the same type!", &
B);
4322 switch (
B.getOpcode()) {
4325 case Instruction::Add:
4326 case Instruction::Sub:
4327 case Instruction::Mul:
4328 case Instruction::SDiv:
4329 case Instruction::UDiv:
4330 case Instruction::SRem:
4331 case Instruction::URem:
4332 Check(
B.getType()->isIntOrIntVectorTy(),
4333 "Integer arithmetic operators only work with integral types!", &
B);
4334 Check(
B.getType() ==
B.getOperand(0)->getType(),
4335 "Integer arithmetic operators must have same type "
4336 "for operands and result!",
4341 case Instruction::FAdd:
4342 case Instruction::FSub:
4343 case Instruction::FMul:
4344 case Instruction::FDiv:
4345 case Instruction::FRem:
4346 Check(
B.getType()->isFPOrFPVectorTy(),
4347 "Floating-point arithmetic operators only work with "
4348 "floating-point types!",
4350 Check(
B.getType() ==
B.getOperand(0)->getType(),
4351 "Floating-point arithmetic operators must have same type "
4352 "for operands and result!",
4356 case Instruction::And:
4357 case Instruction::Or:
4358 case Instruction::Xor:
4359 Check(
B.getType()->isIntOrIntVectorTy(),
4360 "Logical operators only work with integral types!", &
B);
4361 Check(
B.getType() ==
B.getOperand(0)->getType(),
4362 "Logical operators must have same type for operands and result!", &
B);
4364 case Instruction::Shl:
4365 case Instruction::LShr:
4366 case Instruction::AShr:
4367 Check(
B.getType()->isIntOrIntVectorTy(),
4368 "Shifts only work with integral types!", &
B);
4369 Check(
B.getType() ==
B.getOperand(0)->getType(),
4370 "Shift return type must be same as operands!", &
B);
4376 visitInstruction(
B);
4379void Verifier::visitICmpInst(ICmpInst &IC) {
4383 Check(Op0Ty == Op1Ty,
4384 "Both operands to ICmp instruction are not of the same type!", &IC);
4387 "Invalid operand types for ICmp instruction", &IC);
4391 visitInstruction(IC);
4394void Verifier::visitFCmpInst(FCmpInst &FC) {
4396 Type *Op0Ty =
FC.getOperand(0)->getType();
4397 Type *Op1Ty =
FC.getOperand(1)->getType();
4398 Check(Op0Ty == Op1Ty,
4399 "Both operands to FCmp instruction are not of the same type!", &FC);
4404 Check(
FC.isFPPredicate(),
"Invalid predicate in FCmp instruction!", &FC);
4406 visitInstruction(FC);
4409void Verifier::visitExtractElementInst(ExtractElementInst &EI) {
4411 "Invalid extractelement operands!", &EI);
4412 visitInstruction(EI);
4415void Verifier::visitInsertElementInst(InsertElementInst &IE) {
4418 "Invalid insertelement operands!", &IE);
4419 visitInstruction(IE);
4422void Verifier::visitShuffleVectorInst(ShuffleVectorInst &SV) {
4425 "Invalid shufflevector operands!", &SV);
4426 visitInstruction(SV);
4429void Verifier::visitGetElementPtrInst(GetElementPtrInst &
GEP) {
4430 Type *TargetTy =
GEP.getPointerOperandType()->getScalarType();
4433 "GEP base pointer is not a vector or a vector of pointers", &
GEP);
4434 Check(
GEP.getSourceElementType()->isSized(),
"GEP into unsized type!", &
GEP);
4438 "getelementptr cannot target structure that contains scalable vector"
4443 SmallVector<Value *, 16> Idxs(
GEP.indices());
4445 all_of(Idxs, [](
Value *V) {
return V->getType()->isIntOrIntVectorTy(); }),
4446 "GEP indexes must be integers", &
GEP);
4449 Check(ElTy,
"Invalid indices for GEP pointer type!", &
GEP);
4453 Check(PtrTy &&
GEP.getResultElementType() == ElTy,
4454 "GEP is not of right type for indices!", &
GEP, ElTy);
4458 ElementCount GEPWidth = GEPVTy->getElementCount();
4459 if (
GEP.getPointerOperandType()->isVectorTy())
4463 "Vector GEP result width doesn't match operand's", &
GEP);
4464 for (
Value *Idx : Idxs) {
4465 Type *IndexTy = Idx->getType();
4467 ElementCount IndexWidth = IndexVTy->getElementCount();
4468 Check(IndexWidth == GEPWidth,
"Invalid GEP index vector width", &
GEP);
4471 "All GEP indices should be of integer type");
4475 Check(
GEP.getAddressSpace() == PtrTy->getAddressSpace(),
4476 "GEP address space doesn't match type", &
GEP);
4478 visitInstruction(
GEP);
4482 return A.getUpper() ==
B.getLower() ||
A.getLower() ==
B.getUpper();
4487void Verifier::verifyRangeLikeMetadata(
const Value &
I,
const MDNode *
Range,
4488 Type *Ty, RangeLikeMetadataKind Kind) {
4489 unsigned NumOperands =
Range->getNumOperands();
4490 Check(NumOperands % 2 == 0,
"Unfinished range!",
Range);
4491 unsigned NumRanges = NumOperands / 2;
4492 Check(NumRanges >= 1,
"It should have at least one range!",
Range);
4494 ConstantRange LastRange(1,
true);
4495 for (
unsigned i = 0; i < NumRanges; ++i) {
4498 Check(
Low,
"The lower limit must be an integer!",
Low);
4503 Check(
High->getType() ==
Low->getType(),
"Range pair types must match!",
4506 if (Kind == RangeLikeMetadataKind::NoaliasAddrspace) {
4508 "noalias.addrspace type must be i32!", &
I);
4511 "Range types must match instruction type!", &
I);
4514 APInt HighV =
High->getValue();
4515 APInt LowV =
Low->getValue();
4520 "The upper and lower limits cannot be the same value", &
I);
4522 ConstantRange CurRange(LowV, HighV);
4523 Check(!CurRange.isEmptySet() &&
4524 (Kind == RangeLikeMetadataKind::AbsoluteSymbol ||
4525 !CurRange.isFullSet()),
4526 "Range must not be empty!",
Range);
4528 Check(CurRange.intersectWith(LastRange).isEmptySet(),
4529 "Intervals are overlapping",
Range);
4530 Check(LowV.
sgt(LastRange.getLower()),
"Intervals are not in order",
4535 LastRange = ConstantRange(LowV, HighV);
4537 if (NumRanges > 2) {
4542 ConstantRange FirstRange(FirstLow, FirstHigh);
4543 Check(FirstRange.intersectWith(LastRange).isEmptySet(),
4544 "Intervals are overlapping",
Range);
4550void Verifier::visitRangeMetadata(Instruction &
I, MDNode *
Range,
Type *Ty) {
4552 "precondition violation");
4553 verifyRangeLikeMetadata(
I,
Range, Ty, RangeLikeMetadataKind::Range);
4556void Verifier::visitNoaliasAddrspaceMetadata(Instruction &
I, MDNode *
Range,
4559 "precondition violation");
4560 verifyRangeLikeMetadata(
I,
Range, Ty,
4561 RangeLikeMetadataKind::NoaliasAddrspace);
4564void Verifier::checkAtomicMemAccessSize(
Type *Ty,
const Instruction *
I) {
4565 unsigned Size =
DL.getTypeSizeInBits(Ty).getFixedValue();
4566 Check(
Size >= 8,
"atomic memory access' size must be byte-sized", Ty,
I);
4568 "atomic memory access' operand must have a power-of-two size", Ty,
I);
4571void Verifier::visitLoadInst(LoadInst &LI) {
4573 Check(PTy,
"Load operand must be a pointer.", &LI);
4576 Check(
A->value() <= Value::MaximumAlignment,
4577 "huge alignment values are unsupported", &LI);
4579 Check(ElTy->
isSized(),
"loading unsized types is not allowed", &LI);
4582 LI.
getOrdering() != AtomicOrdering::AcquireRelease,
4583 "Load cannot have Release ordering", &LI);
4586 "atomic load operand must have integer, pointer, floating point, "
4590 checkAtomicMemAccessSize(ElTy, &LI);
4593 "Non-atomic load cannot have SynchronizationScope specified", &LI);
4596 visitInstruction(LI);
4599void Verifier::visitStoreInst(StoreInst &SI) {
4601 Check(PTy,
"Store operand must be a pointer.", &SI);
4602 Type *ElTy =
SI.getOperand(0)->getType();
4603 if (MaybeAlign
A =
SI.getAlign()) {
4604 Check(
A->value() <= Value::MaximumAlignment,
4605 "huge alignment values are unsupported", &SI);
4607 Check(ElTy->
isSized(),
"storing unsized types is not allowed", &SI);
4608 if (
SI.isAtomic()) {
4609 Check(
SI.getOrdering() != AtomicOrdering::Acquire &&
4610 SI.getOrdering() != AtomicOrdering::AcquireRelease,
4611 "Store cannot have Acquire ordering", &SI);
4614 "atomic store operand must have integer, pointer, floating point, "
4617 checkAtomicMemAccessSize(ElTy, &SI);
4620 "Non-atomic store cannot have SynchronizationScope specified", &SI);
4622 visitInstruction(SI);
4626void Verifier::verifySwiftErrorCall(CallBase &
Call,
4627 const Value *SwiftErrorVal) {
4629 if (
I.value() == SwiftErrorVal) {
4631 "swifterror value when used in a callsite should be marked "
4632 "with swifterror attribute",
4633 SwiftErrorVal,
Call);
4638void Verifier::verifySwiftErrorValue(
const Value *SwiftErrorVal) {
4641 for (
const User *U : SwiftErrorVal->
users()) {
4644 "swifterror value can only be loaded and stored from, or "
4645 "as a swifterror argument!",
4649 Check(StoreI->getOperand(1) == SwiftErrorVal,
4650 "swifterror value should be the second operand when used "
4654 verifySwiftErrorCall(*
const_cast<CallBase *
>(
Call), SwiftErrorVal);
4658void Verifier::visitAllocaInst(AllocaInst &AI) {
4660 SmallPtrSet<Type*, 4> Visited;
4661 Check(Ty->
isSized(&Visited),
"Cannot allocate unsized type", &AI);
4665 "Alloca has illegal target extension type", &AI);
4667 "Alloca array size must have integer type", &AI);
4669 Check(
A->value() <= Value::MaximumAlignment,
4670 "huge alignment values are unsupported", &AI);
4676 "swifterror alloca must not be array allocation", &AI);
4677 verifySwiftErrorValue(&AI);
4680 if (
TT.isAMDGPU()) {
4682 "alloca on amdgpu must be in addrspace(5)", &AI);
4685 visitInstruction(AI);
4688void Verifier::visitAtomicCmpXchgInst(AtomicCmpXchgInst &CXI) {
4691 "cmpxchg operand must have integer or pointer type", ElTy, &CXI);
4692 checkAtomicMemAccessSize(ElTy, &CXI);
4693 visitInstruction(CXI);
4696void Verifier::visitAtomicRMWInst(AtomicRMWInst &RMWI) {
4698 "atomicrmw instructions cannot be unordered.", &RMWI);
4705 " operand must have integer or floating point type!",
4710 " operand must have floating-point or fixed vector of floating-point "
4716 " operand must have integer type!",
4719 checkAtomicMemAccessSize(ElTy, &RMWI);
4721 "Invalid binary operation!", &RMWI);
4722 visitInstruction(RMWI);
4725void Verifier::visitFenceInst(FenceInst &FI) {
4727 Check(Ordering == AtomicOrdering::Acquire ||
4728 Ordering == AtomicOrdering::Release ||
4729 Ordering == AtomicOrdering::AcquireRelease ||
4730 Ordering == AtomicOrdering::SequentiallyConsistent,
4731 "fence instructions may only have acquire, release, acq_rel, or "
4732 "seq_cst ordering.",
4734 visitInstruction(FI);
4737void Verifier::visitExtractValueInst(ExtractValueInst &EVI) {
4740 "Invalid ExtractValueInst operands!", &EVI);
4742 visitInstruction(EVI);
4745void Verifier::visitInsertValueInst(InsertValueInst &IVI) {
4749 "Invalid InsertValueInst operands!", &IVI);
4751 visitInstruction(IVI);
4756 return FPI->getParentPad();
4761void Verifier::visitEHPadPredecessors(Instruction &
I) {
4767 Check(BB != &
F->getEntryBlock(),
"EH pad cannot be in entry block.", &
I);
4775 Check(
II &&
II->getUnwindDest() == BB &&
II->getNormalDest() != BB,
4776 "Block containing LandingPadInst must be jumped to "
4777 "only by the unwind edge of an invoke.",
4785 "Block containg CatchPadInst must be jumped to "
4786 "only by its catchswitch.",
4788 Check(BB != CPI->getCatchSwitch()->getUnwindDest(),
4789 "Catchswitch cannot unwind to one of its catchpads",
4790 CPI->getCatchSwitch(), CPI);
4802 Check(
II->getUnwindDest() == BB &&
II->getNormalDest() != BB,
4803 "EH pad must be jumped to via an unwind edge", ToPad,
II);
4806 if (CalledFn && CalledFn->isIntrinsic() &&
II->doesNotThrow() &&
4810 FromPad = Bundle->Inputs[0];
4814 FromPad = CRI->getOperand(0);
4815 Check(FromPad != ToPadParent,
"A cleanupret must exit its cleanup", CRI);
4819 Check(
false,
"EH pad must be jumped to via an unwind edge", ToPad, TI);
4823 SmallPtrSet<Value *, 8> Seen;
4825 Check(FromPad != ToPad,
4826 "EH pad cannot handle exceptions raised within it", FromPad, TI);
4827 if (FromPad == ToPadParent) {
4832 "A single unwind edge may only enter one EH pad", TI);
4833 Check(Seen.
insert(FromPad).second,
"EH pad jumps through a cycle of pads",
4839 "Parent pad must be catchpad/cleanuppad/catchswitch", TI);
4844void Verifier::visitLandingPadInst(LandingPadInst &LPI) {
4848 "LandingPadInst needs at least one clause or to be a cleanup.", &LPI);
4850 visitEHPadPredecessors(LPI);
4852 if (!LandingPadResultTy)
4853 LandingPadResultTy = LPI.
getType();
4856 "The landingpad instruction should have a consistent result type "
4857 "inside a function.",
4861 Check(
F->hasPersonalityFn(),
4862 "LandingPadInst needs to be in a function with a personality.", &LPI);
4867 "LandingPadInst not the first non-PHI instruction in the block.", &LPI);
4873 "Catch operand does not have pointer type!", &LPI);
4875 Check(LPI.
isFilter(i),
"Clause is neither catch nor filter!", &LPI);
4877 "Filter operand is not an array of constants!", &LPI);
4881 visitInstruction(LPI);
4884void Verifier::visitResumeInst(ResumeInst &RI) {
4886 "ResumeInst needs to be in a function with a personality.", &RI);
4888 if (!LandingPadResultTy)
4892 "The resume instruction should have a consistent result type "
4893 "inside a function.",
4896 visitTerminator(RI);
4899void Verifier::visitCatchPadInst(CatchPadInst &CPI) {
4903 Check(
F->hasPersonalityFn(),
4904 "CatchPadInst needs to be in a function with a personality.", &CPI);
4907 "CatchPadInst needs to be directly nested in a CatchSwitchInst.",
4913 "CatchPadInst not the first non-PHI instruction in the block.", &CPI);
4915 visitEHPadPredecessors(CPI);
4916 visitFuncletPadInst(CPI);
4919void Verifier::visitCatchReturnInst(CatchReturnInst &CatchReturn) {
4921 "CatchReturnInst needs to be provided a CatchPad", &CatchReturn,
4924 visitTerminator(CatchReturn);
4927void Verifier::visitCleanupPadInst(CleanupPadInst &CPI) {
4931 Check(
F->hasPersonalityFn(),
4932 "CleanupPadInst needs to be in a function with a personality.", &CPI);
4937 "CleanupPadInst not the first non-PHI instruction in the block.", &CPI);
4941 "CleanupPadInst has an invalid parent.", &CPI);
4943 visitEHPadPredecessors(CPI);
4944 visitFuncletPadInst(CPI);
4947void Verifier::visitFuncletPadInst(FuncletPadInst &FPI) {
4948 User *FirstUser =
nullptr;
4949 Value *FirstUnwindPad =
nullptr;
4951 SmallPtrSet<FuncletPadInst *, 8> Seen;
4953 while (!Worklist.empty()) {
4954 FuncletPadInst *CurrentPad = Worklist.pop_back_val();
4956 "FuncletPadInst must not be nested within itself", CurrentPad);
4957 Value *UnresolvedAncestorPad =
nullptr;
4958 for (User *U : CurrentPad->
users()) {
4961 UnwindDest = CRI->getUnwindDest();
4967 if (CSI->unwindsToCaller())
4969 UnwindDest = CSI->getUnwindDest();
4971 UnwindDest =
II->getUnwindDest();
4981 Worklist.push_back(CPI);
4996 if (UnwindParent == CurrentPad)
5002 Value *ExitedPad = CurrentPad;
5005 if (ExitedPad == &FPI) {
5010 UnresolvedAncestorPad = &FPI;
5014 if (ExitedParent == UnwindParent) {
5018 UnresolvedAncestorPad = ExitedParent;
5021 ExitedPad = ExitedParent;
5027 UnresolvedAncestorPad = &FPI;
5034 Check(UnwindPad == FirstUnwindPad,
5035 "Unwind edges out of a funclet "
5036 "pad must have the same unwind "
5038 &FPI, U, FirstUser);
5041 FirstUnwindPad = UnwindPad;
5050 if (CurrentPad != &FPI)
5053 if (UnresolvedAncestorPad) {
5054 if (CurrentPad == UnresolvedAncestorPad) {
5058 assert(CurrentPad == &FPI);
5066 Value *ResolvedPad = CurrentPad;
5067 while (!Worklist.empty()) {
5068 Value *UnclePad = Worklist.back();
5072 while (ResolvedPad != AncestorPad) {
5074 if (ResolvedParent == UnresolvedAncestorPad) {
5077 ResolvedPad = ResolvedParent;
5081 if (ResolvedPad != AncestorPad)
5084 Worklist.pop_back();
5089 if (FirstUnwindPad) {
5091 BasicBlock *SwitchUnwindDest = CatchSwitch->getUnwindDest();
5092 Value *SwitchUnwindPad;
5093 if (SwitchUnwindDest)
5097 Check(SwitchUnwindPad == FirstUnwindPad,
5098 "Unwind edges out of a catch must have the same unwind dest as "
5099 "the parent catchswitch",
5100 &FPI, FirstUser, CatchSwitch);
5104 visitInstruction(FPI);
5107void Verifier::visitCatchSwitchInst(CatchSwitchInst &CatchSwitch) {
5111 Check(
F->hasPersonalityFn(),
5112 "CatchSwitchInst needs to be in a function with a personality.",
5118 "CatchSwitchInst not the first non-PHI instruction in the block.",
5123 "CatchSwitchInst has an invalid parent.", ParentPad);
5128 "CatchSwitchInst must unwind to an EH block which is not a "
5134 SiblingFuncletInfo[&CatchSwitch] = &CatchSwitch;
5138 "CatchSwitchInst cannot have empty handler list", &CatchSwitch);
5140 for (BasicBlock *Handler : CatchSwitch.
handlers()) {
5142 "CatchSwitchInst handlers must be catchpads", &CatchSwitch, Handler);
5145 visitEHPadPredecessors(CatchSwitch);
5146 visitTerminator(CatchSwitch);
5149void Verifier::visitCleanupReturnInst(CleanupReturnInst &CRI) {
5151 "CleanupReturnInst needs to be provided a CleanupPad", &CRI,
5157 "CleanupReturnInst must unwind to an EH block which is not a "
5162 visitTerminator(CRI);
5165void Verifier::verifyDominatesUse(Instruction &
I,
unsigned i) {
5171 if (
II->getNormalDest() ==
II->getUnwindDest())
5185 const Use &
U =
I.getOperandUse(i);
5186 Check(DT.dominates(
Op, U),
"Instruction does not dominate all uses!",
Op, &
I);
5189void Verifier::visitDereferenceableMetadata(Instruction&
I, MDNode* MD) {
5190 Check(
I.getType()->isPointerTy(),
5191 "dereferenceable, dereferenceable_or_null "
5192 "apply only to pointer types",
5195 "dereferenceable, dereferenceable_or_null apply only to load"
5196 " and inttoptr instructions, use attributes for calls or invokes",
5199 "dereferenceable, dereferenceable_or_null "
5200 "take one operand!",
5205 "dereferenceable_or_null metadata value must be an i64!",
5209void Verifier::visitNofreeMetadata(Instruction &
I, MDNode *MD) {
5210 Check(
I.getType()->isPointerTy(),
"nofree applies only to pointer types", &
I);
5216void Verifier::visitProfMetadata(Instruction &
I, MDNode *MD) {
5217 auto GetBranchingTerminatorNumOperands = [&]() {
5218 unsigned ExpectedNumOperands = 0;
5222 ExpectedNumOperands =
SI->getNumSuccessors();
5224 ExpectedNumOperands = 1;
5226 ExpectedNumOperands = IBI->getNumDestinations();
5228 ExpectedNumOperands = 2;
5231 return ExpectedNumOperands;
5234 "!prof annotations should have at least 1 operand", MD);
5236 Check(MD->
getOperand(0) !=
nullptr,
"first operand should not be null", MD);
5238 "expected string with name of the !prof annotation", MD);
5244 "'unknown' !prof should only appear on instructions on which "
5245 "'branch_weights' would",
5247 verifyUnknownProfileMetadata(MD);
5252 "!prof annotations should have no less than 2 operands", MD);
5258 Check(NumBranchWeights == 1 || NumBranchWeights == 2,
5259 "Wrong number of InvokeInst branch_weights operands", MD);
5261 const unsigned ExpectedNumOperands = GetBranchingTerminatorNumOperands();
5262 if (ExpectedNumOperands == 0)
5263 CheckFailed(
"!prof branch_weights are not allowed for this instruction",
5266 Check(NumBranchWeights == ExpectedNumOperands,
"Wrong number of operands",
5272 Check(MDO,
"second operand should not be null", MD);
5274 "!prof brunch_weights operand is not a const int");
5279 Check(KindInt,
"VP !prof missing kind argument", MD);
5282 Check(Kind >= InstrProfValueKind::IPVK_First &&
5283 Kind <= InstrProfValueKind::IPVK_Last,
5284 "Invalid VP !prof kind", MD);
5286 "VP !prof should have an even number "
5287 "of arguments after 'VP'",
5289 if (Kind == InstrProfValueKind::IPVK_IndirectCallTarget ||
5290 Kind == InstrProfValueKind::IPVK_MemOPSize)
5292 "VP !prof indirect call or memop size expected to be applied to "
5293 "CallBase instructions only",
5296 CheckFailed(
"expected either branch_weights or VP profile name", MD);
5300void Verifier::visitDIAssignIDMetadata(Instruction &
I, MDNode *MD) {
5301 assert(
I.hasMetadata(LLVMContext::MD_DIAssignID));
5306 bool ExpectedInstTy =
5308 CheckDI(ExpectedInstTy,
"!DIAssignID attached to unexpected instruction kind",
5313 for (
auto *User : AsValue->users()) {
5315 "!DIAssignID should only be used by llvm.dbg.assign intrinsics",
5319 CheckDI(DAI->getFunction() ==
I.getFunction(),
5320 "dbg.assign not in same function as inst", DAI, &
I);
5323 for (DbgVariableRecord *DVR :
5326 "!DIAssignID should only be used by Assign DVRs.", MD, DVR);
5327 CheckDI(DVR->getFunction() ==
I.getFunction(),
5328 "DVRAssign not in same function as inst", DVR, &
I);
5332void Verifier::visitMMRAMetadata(Instruction &
I, MDNode *MD) {
5334 "!mmra metadata attached to unexpected instruction kind",
I, MD);
5345 for (
const MDOperand &MDOp : MD->
operands())
5347 "!mmra metadata tuple operand is not an MMRA tag",
I, MDOp.get());
5350void Verifier::visitCallStackMetadata(MDNode *MD) {
5354 "call stack metadata should have at least 1 operand", MD);
5358 "call stack metadata operand should be constant integer",
Op);
5361void Verifier::visitMemProfMetadata(Instruction &
I, MDNode *MD) {
5364 "!memprof annotations should have at least 1 metadata operand "
5369 for (
auto &MIBOp : MD->
operands()) {
5375 "Each !memprof MemInfoBlock should have at least 2 operands", MIB);
5379 "!memprof MemInfoBlock first operand should not be null", MIB);
5381 "!memprof MemInfoBlock first operand should be an MDNode", MIB);
5383 visitCallStackMetadata(StackMD);
5387 "!memprof MemInfoBlock second operand should be an MDString", MIB);
5392 Check(OpNode,
"Not all !memprof MemInfoBlock operands 2 to N are MDNode",
5395 "Not all !memprof MemInfoBlock operands 2 to N are MDNode with 2 "
5400 [](
const MDOperand &
Op) {
5401 return mdconst::hasa<ConstantInt>(Op);
5403 "Not all !memprof MemInfoBlock operands 2 to N are MDNode with "
5404 "ConstantInt operands",
5410void Verifier::visitCallsiteMetadata(Instruction &
I, MDNode *MD) {
5414 visitCallStackMetadata(MD);
5423void Verifier::visitCalleeTypeMetadata(Instruction &
I, MDNode *MD) {
5428 "The callee_type metadata must be a list of type metadata nodes",
Op);
5430 Check(TypeMD->getNumOperands() == 2,
5431 "Well-formed generalized type metadata must contain exactly two "
5436 "The first operand of type metadata for functions must be zero",
Op);
5437 Check(TypeMD->hasGeneralizedMDString(),
5438 "Only generalized type metadata can be part of the callee_type "
5444void Verifier::visitAnnotationMetadata(MDNode *Annotation) {
5447 "annotation must have at least one operand");
5449 bool TupleOfStrings =
5455 "operands must be a string or a tuple of strings");
5459void Verifier::visitAliasScopeMetadata(
const MDNode *MD) {
5464 "first scope operand must be self-referential or string", MD);
5467 "third scope operand must be string (if used)", MD);
5470 Check(
Domain !=
nullptr,
"second scope operand must be MDNode", MD);
5472 unsigned NumDomainOps =
Domain->getNumOperands();
5473 Check(NumDomainOps >= 1 && NumDomainOps <= 2,
5474 "domain must have one or two operands",
Domain);
5477 "first domain operand must be self-referential or string",
Domain);
5478 if (NumDomainOps == 2)
5480 "second domain operand must be string (if used)",
Domain);
5483void Verifier::visitAliasScopeListMetadata(
const MDNode *MD) {
5486 Check(OpMD !=
nullptr,
"scope list must consist of MDNodes", MD);
5487 visitAliasScopeMetadata(OpMD);
5491void Verifier::visitAccessGroupMetadata(
const MDNode *MD) {
5492 auto IsValidAccessScope = [](
const MDNode *MD) {
5497 if (IsValidAccessScope(MD))
5503 Check(OpMD !=
nullptr,
"Access scope list must consist of MDNodes", MD);
5504 Check(IsValidAccessScope(OpMD),
5505 "Access scope list contains invalid access scope", MD);
5509void Verifier::visitCapturesMetadata(Instruction &
I,
const MDNode *Captures) {
5510 static const char *ValidArgs[] = {
"address_is_null",
"address",
5511 "read_provenance",
"provenance"};
5514 Check(SI,
"!captures metadata can only be applied to store instructions", &
I);
5515 Check(
SI->getValueOperand()->getType()->isPointerTy(),
5516 "!captures metadata can only be applied to store with value operand of "
5524 Check(Str,
"!captures metadata must be a list of strings", &
I);
5526 "invalid entry in !captures metadata", &
I, Str);
5530void Verifier::visitAllocTokenMetadata(Instruction &
I, MDNode *MD) {
5535 "expected integer constant", MD);
5540void Verifier::visitInstruction(Instruction &
I) {
5542 Check(BB,
"Instruction not embedded in basic block!", &
I);
5545 for (User *U :
I.users()) {
5546 Check(U != (User *)&
I || !DT.isReachableFromEntry(BB),
5547 "Only PHI nodes may reference their own value!", &
I);
5552 Check(!
I.getType()->isVoidTy() || !
I.hasName(),
5553 "Instruction has a name, but provides a void value!", &
I);
5557 Check(
I.getType()->isVoidTy() ||
I.getType()->isFirstClassType(),
5558 "Instruction returns a non-scalar type!", &
I);
5563 "Invalid use of metadata!", &
I);
5568 for (Use &U :
I.uses()) {
5571 "Instruction referencing"
5572 " instruction not embedded in a basic block!",
5575 CheckFailed(
"Use of instruction is not an instruction!", U);
5584 for (
unsigned i = 0, e =
I.getNumOperands(); i != e; ++i) {
5585 Check(
I.getOperand(i) !=
nullptr,
"Instruction has null operand!", &
I);
5589 if (!
I.getOperand(i)->getType()->isFirstClassType()) {
5590 Check(
false,
"Instruction operands must be first-class values!", &
I);
5596 auto IsAttachedCallOperand = [](
Function *
F,
const CallBase *CBI,
5598 return CBI && CBI->isOperandBundleOfType(
5606 Check((!
F->isIntrinsic() ||
5607 (CBI && &CBI->getCalledOperandUse() == &
I.getOperandUse(i)) ||
5608 IsAttachedCallOperand(
F, CBI, i)),
5609 "Cannot take the address of an intrinsic!", &
I);
5611 F->getIntrinsicID() == Intrinsic::donothing ||
5612 F->getIntrinsicID() == Intrinsic::seh_try_begin ||
5613 F->getIntrinsicID() == Intrinsic::seh_try_end ||
5614 F->getIntrinsicID() == Intrinsic::seh_scope_begin ||
5615 F->getIntrinsicID() == Intrinsic::seh_scope_end ||
5616 F->getIntrinsicID() == Intrinsic::coro_resume ||
5617 F->getIntrinsicID() == Intrinsic::coro_destroy ||
5618 F->getIntrinsicID() == Intrinsic::coro_await_suspend_void ||
5619 F->getIntrinsicID() == Intrinsic::coro_await_suspend_bool ||
5620 F->getIntrinsicID() == Intrinsic::coro_await_suspend_handle ||
5621 F->getIntrinsicID() ==
5622 Intrinsic::experimental_patchpoint_void ||
5623 F->getIntrinsicID() == Intrinsic::experimental_patchpoint ||
5624 F->getIntrinsicID() == Intrinsic::fake_use ||
5625 F->getIntrinsicID() == Intrinsic::experimental_gc_statepoint ||
5626 F->getIntrinsicID() == Intrinsic::wasm_throw ||
5627 F->getIntrinsicID() == Intrinsic::wasm_rethrow ||
5628 IsAttachedCallOperand(
F, CBI, i),
5629 "Cannot invoke an intrinsic other than donothing, patchpoint, "
5630 "statepoint, coro_resume, coro_destroy, clang.arc.attachedcall or "
5633 Check(
F->getParent() == &M,
"Referencing function in another module!", &
I,
5634 &M,
F,
F->getParent());
5637 "Referring to a basic block in another function!", &
I);
5640 "Referring to an argument in another function!", &
I);
5642 Check(GV->
getParent() == &M,
"Referencing global in another module!", &
I,
5646 "Referring to an instruction in another function!", &
I);
5647 verifyDominatesUse(
I, i);
5649 Check(CBI && &CBI->getCalledOperandUse() == &
I.getOperandUse(i),
5650 "Cannot take the address of an inline asm!", &
I);
5652 visitConstantExprsRecursively(
C);
5656 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_fpmath)) {
5657 Check(
I.getType()->isFPOrFPVectorTy(),
5658 "fpmath requires a floating point result!", &
I);
5660 if (ConstantFP *CFP0 =
5662 const APFloat &Accuracy = CFP0->getValueAPF();
5664 "fpmath accuracy must have float type", &
I);
5666 "fpmath accuracy not a positive number!", &
I);
5668 Check(
false,
"invalid fpmath accuracy!", &
I);
5672 if (MDNode *
Range =
I.getMetadata(LLVMContext::MD_range)) {
5674 "Ranges are only for loads, calls and invokes!", &
I);
5675 visitRangeMetadata(
I,
Range,
I.getType());
5678 if (MDNode *
Range =
I.getMetadata(LLVMContext::MD_noalias_addrspace)) {
5681 "noalias.addrspace are only for memory operations!", &
I);
5682 visitNoaliasAddrspaceMetadata(
I,
Range,
I.getType());
5685 if (
I.hasMetadata(LLVMContext::MD_invariant_group)) {
5687 "invariant.group metadata is only for loads and stores", &
I);
5690 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_nonnull)) {
5691 Check(
I.getType()->isPointerTy(),
"nonnull applies only to pointer types",
5694 "nonnull applies only to load instructions, use attributes"
5695 " for calls or invokes",
5700 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_dereferenceable))
5701 visitDereferenceableMetadata(
I, MD);
5703 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_dereferenceable_or_null))
5704 visitDereferenceableMetadata(
I, MD);
5706 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_nofree))
5707 visitNofreeMetadata(
I, MD);
5709 if (MDNode *TBAA =
I.getMetadata(LLVMContext::MD_tbaa))
5712 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_noalias))
5713 visitAliasScopeListMetadata(MD);
5714 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_alias_scope))
5715 visitAliasScopeListMetadata(MD);
5717 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_access_group))
5718 visitAccessGroupMetadata(MD);
5720 if (MDNode *AlignMD =
I.getMetadata(LLVMContext::MD_align)) {
5721 Check(
I.getType()->isPointerTy(),
"align applies only to pointer types",
5724 "align applies only to load instructions, "
5725 "use attributes for calls or invokes",
5727 Check(AlignMD->getNumOperands() == 1,
"align takes one operand!", &
I);
5730 "align metadata value must be an i64!", &
I);
5734 Check(Align <= Value::MaximumAlignment,
5735 "alignment is larger that implementation defined limit", &
I);
5738 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_prof))
5739 visitProfMetadata(
I, MD);
5741 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_memprof))
5742 visitMemProfMetadata(
I, MD);
5744 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_callsite))
5745 visitCallsiteMetadata(
I, MD);
5747 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_callee_type))
5748 visitCalleeTypeMetadata(
I, MD);
5750 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_DIAssignID))
5751 visitDIAssignIDMetadata(
I, MD);
5753 if (MDNode *MMRA =
I.getMetadata(LLVMContext::MD_mmra))
5754 visitMMRAMetadata(
I, MMRA);
5756 if (MDNode *Annotation =
I.getMetadata(LLVMContext::MD_annotation))
5757 visitAnnotationMetadata(Annotation);
5759 if (MDNode *Captures =
I.getMetadata(LLVMContext::MD_captures))
5760 visitCapturesMetadata(
I, Captures);
5762 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_alloc_token))
5763 visitAllocTokenMetadata(
I, MD);
5765 if (MDNode *
N =
I.getDebugLoc().getAsMDNode()) {
5767 visitMDNode(*
N, AreDebugLocsAllowed::Yes);
5770 if (
DL->getAtomGroup()) {
5771 CheckDI(
DL->getScope()->getSubprogram()->getKeyInstructionsEnabled(),
5772 "DbgLoc uses atomGroup but DISubprogram doesn't have Key "
5773 "Instructions enabled",
5774 DL,
DL->getScope()->getSubprogram());
5780 I.getAllMetadata(MDs);
5781 for (
auto Attachment : MDs) {
5782 unsigned Kind = Attachment.first;
5784 (
Kind == LLVMContext::MD_dbg ||
Kind == LLVMContext::MD_loop)
5785 ? AreDebugLocsAllowed::Yes
5786 : AreDebugLocsAllowed::
No;
5787 visitMDNode(*Attachment.second, AllowLocs);
5802 bool IsVarArg = IFTy->isVarArg();
5813 "Intrinsic has incorrect return type!", IF);
5815 "Intrinsic has incorrect argument type!", IF);
5820 "Intrinsic was not defined with variable arguments!", IF);
5823 "Callsite was not defined with variable arguments!", IF);
5832 const std::string ExpectedName =
5835 "Intrinsic name not mangled correctly for type arguments! "
5847 "const x86_amx is not allowed in argument!");
5853 case Intrinsic::assume: {
5857 "assume with operand bundles must have i1 true condition",
Call);
5860 unsigned ArgCount = Elem.End - Elem.Begin;
5863 if (Elem.Tag->getKey() ==
"separate_storage") {
5864 Check(ArgCount == 2,
5865 "separate_storage assumptions should have 2 arguments",
Call);
5868 "arguments to separate_storage assumptions should be pointers",
5872 Check(Elem.Tag->getKey() ==
"ignore" ||
5873 Attribute::isExistingAttribute(Elem.Tag->getKey()),
5874 "tags must be valid attribute names",
Call);
5875 Attribute::AttrKind
Kind =
5876 Attribute::getAttrKindFromName(Elem.Tag->getKey());
5877 if (Kind == Attribute::Alignment) {
5878 Check(ArgCount <= 3 && ArgCount >= 2,
5879 "alignment assumptions should have 2 or 3 arguments",
Call);
5881 "first argument should be a pointer",
Call);
5883 "second argument should be an integer",
Call);
5886 "third argument should be an integer if present",
Call);
5889 if (Kind == Attribute::Dereferenceable) {
5890 Check(ArgCount == 2,
5891 "dereferenceable assumptions should have 2 arguments",
Call);
5893 "first argument should be a pointer",
Call);
5895 "second argument should be an integer",
Call);
5898 Check(ArgCount <= 2,
"too many arguments",
Call);
5899 if (Kind == Attribute::None)
5901 if (Attribute::isIntAttrKind(Kind)) {
5902 Check(ArgCount == 2,
"this attribute should have 2 arguments",
Call);
5904 "the second argument should be a constant integral value",
Call);
5905 }
else if (Attribute::canUseAsParamAttr(Kind)) {
5906 Check((ArgCount) == 1,
"this attribute should have one argument",
Call);
5907 }
else if (Attribute::canUseAsFnAttr(Kind)) {
5908 Check((ArgCount) == 0,
"this attribute has no argument",
Call);
5913 case Intrinsic::ucmp:
5914 case Intrinsic::scmp: {
5919 "result type must be at least 2 bits wide",
Call);
5921 bool IsDestTypeVector = DestTy->
isVectorTy();
5923 "ucmp/scmp argument and result types must both be either vector or "
5926 if (IsDestTypeVector) {
5929 Check(SrcVecLen == DestVecLen,
5930 "return type and arguments must have the same number of "
5936 case Intrinsic::coro_id: {
5942 "info argument of llvm.coro.id must refer to an initialized "
5946 "info argument of llvm.coro.id must refer to either a struct or "
5950 case Intrinsic::is_fpclass: {
5953 "unsupported bits for llvm.is.fpclass test mask");
5956 case Intrinsic::fptrunc_round: {
5961 MD = MAV->getMetadata();
5963 Check(MD !=
nullptr,
"missing rounding mode argument",
Call);
5966 (
"invalid value for llvm.fptrunc.round metadata operand"
5967 " (the operand should be a string)"),
5970 std::optional<RoundingMode> RoundMode =
5972 Check(RoundMode && *RoundMode != RoundingMode::Dynamic,
5973 "unsupported rounding mode argument",
Call);
5976 case Intrinsic::convert_to_arbitrary_fp: {
5984 "if floating-point operand is a vector, integer operand must also "
5987 Check(ValueVecTy->getElementCount() == IntVecTy->getElementCount(),
5988 "floating-point and integer vector operands must have the same "
5995 Check(InterpMAV,
"missing interpretation metadata operand",
Call);
5997 Check(InterpStr,
"interpretation metadata operand must be a string",
Call);
5998 StringRef Interp = InterpStr->getString();
6000 Check(!Interp.
empty(),
"interpretation metadata string must not be empty",
6005 "unsupported interpretation metadata string",
Call);
6009 Check(RoundingMAV,
"missing rounding mode metadata operand",
Call);
6011 Check(RoundingStr,
"rounding mode metadata operand must be a string",
Call);
6013 std::optional<RoundingMode>
RM =
6015 Check(RM && *RM != RoundingMode::Dynamic,
6016 "unsupported rounding mode argument",
Call);
6019 case Intrinsic::convert_from_arbitrary_fp: {
6027 "if floating-point operand is a vector, integer operand must also "
6030 Check(ValueVecTy->getElementCount() == IntVecTy->getElementCount(),
6031 "floating-point and integer vector operands must have the same "
6038 Check(InterpMAV,
"missing interpretation metadata operand",
Call);
6040 Check(InterpStr,
"interpretation metadata operand must be a string",
Call);
6041 StringRef Interp = InterpStr->getString();
6043 Check(!Interp.
empty(),
"interpretation metadata string must not be empty",
6048 "unsupported interpretation metadata string",
Call);
6051#define BEGIN_REGISTER_VP_INTRINSIC(VPID, ...) case Intrinsic::VPID:
6052#include "llvm/IR/VPIntrinsics.def"
6053#undef BEGIN_REGISTER_VP_INTRINSIC
6056#define INSTRUCTION(NAME, NARGS, ROUND_MODE, INTRINSIC) \
6057 case Intrinsic::INTRINSIC:
6058#include "llvm/IR/ConstrainedOps.def"
6062 case Intrinsic::dbg_declare:
6063 case Intrinsic::dbg_value:
6064 case Intrinsic::dbg_assign:
6065 case Intrinsic::dbg_label:
6072 case Intrinsic::memcpy:
6073 case Intrinsic::memcpy_inline:
6074 case Intrinsic::memmove:
6075 case Intrinsic::memset:
6076 case Intrinsic::memset_inline:
6078 case Intrinsic::experimental_memset_pattern: {
6080 Check(Memset->getValue()->getType()->isSized(),
6081 "unsized types cannot be used as memset patterns",
Call);
6084 case Intrinsic::memcpy_element_unordered_atomic:
6085 case Intrinsic::memmove_element_unordered_atomic:
6086 case Intrinsic::memset_element_unordered_atomic: {
6089 ConstantInt *ElementSizeCI =
6091 const APInt &ElementSizeVal = ElementSizeCI->
getValue();
6093 "element size of the element-wise atomic memory intrinsic "
6094 "must be a power of 2",
6097 auto IsValidAlignment = [&](MaybeAlign Alignment) {
6098 return Alignment && ElementSizeVal.
ule(Alignment->value());
6100 Check(IsValidAlignment(AMI->getDestAlign()),
6101 "incorrect alignment of the destination argument",
Call);
6103 Check(IsValidAlignment(AMT->getSourceAlign()),
6104 "incorrect alignment of the source argument",
Call);
6108 case Intrinsic::call_preallocated_setup: {
6110 bool FoundCall =
false;
6113 Check(UseCall !=
nullptr,
6114 "Uses of llvm.call.preallocated.setup must be calls");
6116 if (IID == Intrinsic::call_preallocated_arg) {
6118 Check(AllocArgIndex !=
nullptr,
6119 "llvm.call.preallocated.alloc arg index must be a constant");
6120 auto AllocArgIndexInt = AllocArgIndex->getValue();
6121 Check(AllocArgIndexInt.sge(0) &&
6122 AllocArgIndexInt.slt(NumArgs->getValue()),
6123 "llvm.call.preallocated.alloc arg index must be between 0 and "
6125 "llvm.call.preallocated.setup's argument count");
6126 }
else if (IID == Intrinsic::call_preallocated_teardown) {
6129 Check(!FoundCall,
"Can have at most one call corresponding to a "
6130 "llvm.call.preallocated.setup");
6132 size_t NumPreallocatedArgs = 0;
6133 for (
unsigned i = 0; i < UseCall->arg_size(); i++) {
6134 if (UseCall->paramHasAttr(i, Attribute::Preallocated)) {
6135 ++NumPreallocatedArgs;
6138 Check(NumPreallocatedArgs != 0,
6139 "cannot use preallocated intrinsics on a call without "
6140 "preallocated arguments");
6141 Check(NumArgs->equalsInt(NumPreallocatedArgs),
6142 "llvm.call.preallocated.setup arg size must be equal to number "
6143 "of preallocated arguments "
6153 auto PreallocatedBundle =
6155 Check(PreallocatedBundle,
6156 "Use of llvm.call.preallocated.setup outside intrinsics "
6157 "must be in \"preallocated\" operand bundle");
6158 Check(PreallocatedBundle->Inputs.front().get() == &
Call,
6159 "preallocated bundle must have token from corresponding "
6160 "llvm.call.preallocated.setup");
6165 case Intrinsic::call_preallocated_arg: {
6168 Token->getIntrinsicID() == Intrinsic::call_preallocated_setup,
6169 "llvm.call.preallocated.arg token argument must be a "
6170 "llvm.call.preallocated.setup");
6172 "llvm.call.preallocated.arg must be called with a \"preallocated\" "
6173 "call site attribute");
6176 case Intrinsic::call_preallocated_teardown: {
6179 Token->getIntrinsicID() == Intrinsic::call_preallocated_setup,
6180 "llvm.call.preallocated.teardown token argument must be a "
6181 "llvm.call.preallocated.setup");
6184 case Intrinsic::gcroot:
6185 case Intrinsic::gcwrite:
6186 case Intrinsic::gcread:
6187 if (
ID == Intrinsic::gcroot) {
6190 Check(AI,
"llvm.gcroot parameter #1 must be an alloca.",
Call);
6192 "llvm.gcroot parameter #2 must be a constant.",
Call);
6195 "llvm.gcroot parameter #1 must either be a pointer alloca, "
6196 "or argument #2 must be a non-null constant.",
6202 "Enclosing function does not use GC.",
Call);
6204 case Intrinsic::init_trampoline:
6206 "llvm.init_trampoline parameter #2 must resolve to a function.",
6209 case Intrinsic::prefetch:
6211 "rw argument to llvm.prefetch must be 0-1",
Call);
6213 "locality argument to llvm.prefetch must be 0-3",
Call);
6215 "cache type argument to llvm.prefetch must be 0-1",
Call);
6217 case Intrinsic::reloc_none: {
6220 "llvm.reloc.none argument must be a metadata string", &
Call);
6223 case Intrinsic::stackprotector:
6225 "llvm.stackprotector parameter #2 must resolve to an alloca.",
Call);
6227 case Intrinsic::localescape: {
6231 Check(!SawFrameEscape,
"multiple calls to llvm.localescape in one function",
6238 "llvm.localescape only accepts static allocas",
Call);
6241 SawFrameEscape =
true;
6244 case Intrinsic::localrecover: {
6248 "llvm.localrecover first "
6249 "argument must be function defined in this module",
6252 auto &
Entry = FrameEscapeInfo[Fn];
6253 Entry.second = unsigned(
6254 std::max(uint64_t(
Entry.second), IdxArg->getLimitedValue(~0U) + 1));
6258 case Intrinsic::experimental_gc_statepoint:
6260 Check(!CI->isInlineAsm(),
6261 "gc.statepoint support for inline assembly unimplemented", CI);
6263 "Enclosing function does not use GC.",
Call);
6265 verifyStatepoint(
Call);
6267 case Intrinsic::experimental_gc_result: {
6269 "Enclosing function does not use GC.",
Call);
6277 Check(StatepointCall && StatepointCall->getIntrinsicID() ==
6278 Intrinsic::experimental_gc_statepoint,
6279 "gc.result operand #1 must be from a statepoint",
Call,
6283 auto *TargetFuncType =
6286 "gc.result result type does not match wrapped callee",
Call);
6289 case Intrinsic::experimental_gc_relocate: {
6293 "gc.relocate must return a pointer or a vector of pointers",
Call);
6298 if (LandingPadInst *LandingPad =
6302 LandingPad->getParent()->getUniquePredecessor();
6306 Check(InvokeBB,
"safepoints should have unique landingpads",
6307 LandingPad->getParent());
6311 "gc relocate should be linked to a statepoint", InvokeBB);
6318 "gc relocate is incorrectly tied to the statepoint",
Call, Token);
6327 "gc.relocate operand #2 must be integer offset",
Call);
6331 "gc.relocate operand #3 must be integer offset",
Call);
6341 Check(BaseIndex < Opt->Inputs.size(),
6342 "gc.relocate: statepoint base index out of bounds",
Call);
6343 Check(DerivedIndex < Opt->Inputs.size(),
6344 "gc.relocate: statepoint derived index out of bounds",
Call);
6357 "gc.relocate: relocated value must be a pointer",
Call);
6358 Check(DerivedType->isPtrOrPtrVectorTy(),
6359 "gc.relocate: relocated value must be a pointer",
Call);
6361 Check(ResultType->isVectorTy() == DerivedType->isVectorTy(),
6362 "gc.relocate: vector relocates to vector and pointer to pointer",
6365 ResultType->getPointerAddressSpace() ==
6366 DerivedType->getPointerAddressSpace(),
6367 "gc.relocate: relocating a pointer shouldn't change its address space",
6371 Check(GC,
"gc.relocate: calling function must have GCStrategy",
6374 auto isGCPtr = [&
GC](
Type *PTy) {
6375 return GC->isGCManagedPointer(PTy->getScalarType()).value_or(
true);
6377 Check(isGCPtr(ResultType),
"gc.relocate: must return gc pointer",
Call);
6379 "gc.relocate: relocated value must be a gc pointer",
Call);
6380 Check(isGCPtr(DerivedType),
6381 "gc.relocate: relocated value must be a gc pointer",
Call);
6385 case Intrinsic::experimental_patchpoint: {
6388 "patchpoint: invalid return type used with anyregcc",
Call);
6392 case Intrinsic::eh_exceptioncode:
6393 case Intrinsic::eh_exceptionpointer: {
6395 "eh.exceptionpointer argument must be a catchpad",
Call);
6398 case Intrinsic::get_active_lane_mask: {
6400 "get_active_lane_mask: must return a "
6404 Check(ElemTy->isIntegerTy(1),
6405 "get_active_lane_mask: element type is not "
6410 case Intrinsic::experimental_get_vector_length: {
6413 "get_vector_length: VF must be positive",
Call);
6416 case Intrinsic::masked_load: {
6422 Check(
Mask->getType()->isVectorTy(),
"masked_load: mask must be vector",
6425 "masked_load: pass through and return type must match",
Call);
6428 "masked_load: vector mask must be same length as return",
Call);
6431 case Intrinsic::masked_store: {
6434 Check(
Mask->getType()->isVectorTy(),
"masked_store: mask must be vector",
6438 "masked_store: vector mask must be same length as value",
Call);
6442 case Intrinsic::experimental_guard: {
6445 "experimental_guard must have exactly one "
6446 "\"deopt\" operand bundle");
6450 case Intrinsic::experimental_deoptimize: {
6454 "experimental_deoptimize must have exactly one "
6455 "\"deopt\" operand bundle");
6457 "experimental_deoptimize return type must match caller return type");
6462 "calls to experimental_deoptimize must be followed by a return");
6466 "calls to experimental_deoptimize must be followed by a return "
6467 "of the value computed by experimental_deoptimize");
6472 case Intrinsic::vastart: {
6474 "va_start called in a non-varargs function");
6477 case Intrinsic::get_dynamic_area_offset: {
6479 Check(IntTy &&
DL.getPointerSizeInBits(
DL.getAllocaAddrSpace()) ==
6480 IntTy->getBitWidth(),
6481 "get_dynamic_area_offset result type must be scalar integer matching "
6482 "alloca address space width",
6486 case Intrinsic::vector_reduce_and:
6487 case Intrinsic::vector_reduce_or:
6488 case Intrinsic::vector_reduce_xor:
6489 case Intrinsic::vector_reduce_add:
6490 case Intrinsic::vector_reduce_mul:
6491 case Intrinsic::vector_reduce_smax:
6492 case Intrinsic::vector_reduce_smin:
6493 case Intrinsic::vector_reduce_umax:
6494 case Intrinsic::vector_reduce_umin: {
6497 "Intrinsic has incorrect argument type!");
6500 case Intrinsic::vector_reduce_fmax:
6501 case Intrinsic::vector_reduce_fmin: {
6504 "Intrinsic has incorrect argument type!");
6507 case Intrinsic::vector_reduce_fadd:
6508 case Intrinsic::vector_reduce_fmul: {
6513 "Intrinsic has incorrect argument type!");
6516 case Intrinsic::smul_fix:
6517 case Intrinsic::smul_fix_sat:
6518 case Intrinsic::umul_fix:
6519 case Intrinsic::umul_fix_sat:
6520 case Intrinsic::sdiv_fix:
6521 case Intrinsic::sdiv_fix_sat:
6522 case Intrinsic::udiv_fix:
6523 case Intrinsic::udiv_fix_sat: {
6527 "first operand of [us][mul|div]_fix[_sat] must be an int type or "
6530 "second operand of [us][mul|div]_fix[_sat] must be an int type or "
6534 Check(Op3->getType()->isIntegerTy(),
6535 "third operand of [us][mul|div]_fix[_sat] must be an int type");
6536 Check(Op3->getBitWidth() <= 32,
6537 "third operand of [us][mul|div]_fix[_sat] must fit within 32 bits");
6539 if (
ID == Intrinsic::smul_fix ||
ID == Intrinsic::smul_fix_sat ||
6540 ID == Intrinsic::sdiv_fix ||
ID == Intrinsic::sdiv_fix_sat) {
6542 "the scale of s[mul|div]_fix[_sat] must be less than the width of "
6546 "the scale of u[mul|div]_fix[_sat] must be less than or equal "
6547 "to the width of the operands");
6551 case Intrinsic::lrint:
6552 case Intrinsic::llrint:
6553 case Intrinsic::lround:
6554 case Intrinsic::llround: {
6560 ExpectedName +
": argument must be floating-point or vector "
6561 "of floating-points, and result must be integer or "
6562 "vector of integers",
6565 ExpectedName +
": argument and result disagree on vector use", &
Call);
6567 Check(VTy->getElementCount() == RTy->getElementCount(),
6568 ExpectedName +
": argument must be same length as result", &
Call);
6572 case Intrinsic::bswap: {
6575 Check(
Size % 16 == 0,
"bswap must be an even number of bytes", &
Call);
6578 case Intrinsic::invariant_start: {
6580 Check(InvariantSize &&
6582 "invariant_start parameter must be -1, 0 or a positive number",
6586 case Intrinsic::matrix_multiply:
6587 case Intrinsic::matrix_transpose:
6588 case Intrinsic::matrix_column_major_load:
6589 case Intrinsic::matrix_column_major_store: {
6591 ConstantInt *Stride =
nullptr;
6592 ConstantInt *NumRows;
6593 ConstantInt *NumColumns;
6595 Type *Op0ElemTy =
nullptr;
6596 Type *Op1ElemTy =
nullptr;
6598 case Intrinsic::matrix_multiply: {
6603 ->getNumElements() ==
6605 "First argument of a matrix operation does not match specified "
6608 ->getNumElements() ==
6610 "Second argument of a matrix operation does not match specified "
6620 case Intrinsic::matrix_transpose:
6627 case Intrinsic::matrix_column_major_load: {
6634 case Intrinsic::matrix_column_major_store: {
6647 Check(ResultTy->getElementType()->isIntegerTy() ||
6648 ResultTy->getElementType()->isFloatingPointTy(),
6649 "Result type must be an integer or floating-point type!", IF);
6652 Check(ResultTy->getElementType() == Op0ElemTy,
6653 "Vector element type mismatch of the result and first operand "
6658 Check(ResultTy->getElementType() == Op1ElemTy,
6659 "Vector element type mismatch of the result and second operand "
6665 "Result of a matrix operation does not fit in the returned vector!");
6671 "Stride must be greater or equal than the number of rows!", IF);
6676 case Intrinsic::vector_splice_left:
6677 case Intrinsic::vector_splice_right: {
6680 uint64_t KnownMinNumElements = VecTy->getElementCount().getKnownMinValue();
6684 if (
Attrs.hasFnAttr(Attribute::VScaleRange))
6685 KnownMinNumElements *=
Attrs.getFnAttrs().getVScaleRangeMin();
6687 if (
ID == Intrinsic::vector_splice_left)
6688 Check(Idx < KnownMinNumElements,
6689 "The splice index exceeds the range [0, VL-1] where VL is the "
6690 "known minimum number of elements in the vector. For scalable "
6691 "vectors the minimum number of elements is determined from "
6695 Check(Idx <= KnownMinNumElements,
6696 "The splice index exceeds the range [0, VL] where VL is the "
6697 "known minimum number of elements in the vector. For scalable "
6698 "vectors the minimum number of elements is determined from "
6703 case Intrinsic::stepvector: {
6705 Check(VecTy && VecTy->getScalarType()->isIntegerTy() &&
6706 VecTy->getScalarSizeInBits() >= 8,
6707 "stepvector only supported for vectors of integers "
6708 "with a bitwidth of at least 8.",
6712 case Intrinsic::experimental_vector_match: {
6721 Check(Op1Ty && Op2Ty && MaskTy,
"Operands must be vectors.", &
Call);
6723 "Second operand must be a fixed length vector.", &
Call);
6724 Check(Op1Ty->getElementType()->isIntegerTy(),
6725 "First operand must be a vector of integers.", &
Call);
6726 Check(Op1Ty->getElementType() == Op2Ty->getElementType(),
6727 "First two operands must have the same element type.", &
Call);
6728 Check(Op1Ty->getElementCount() == MaskTy->getElementCount(),
6729 "First operand and mask must have the same number of elements.",
6731 Check(MaskTy->getElementType()->isIntegerTy(1),
6732 "Mask must be a vector of i1's.", &
Call);
6737 case Intrinsic::vector_insert: {
6746 ElementCount VecEC = VecTy->getElementCount();
6747 ElementCount SubVecEC = SubVecTy->getElementCount();
6748 Check(VecTy->getElementType() == SubVecTy->getElementType(),
6749 "vector_insert parameters must have the same element "
6753 "vector_insert index must be a constant multiple of "
6754 "the subvector's known minimum vector length.");
6762 "subvector operand of vector_insert would overrun the "
6763 "vector being inserted into.");
6767 case Intrinsic::vector_extract: {
6775 ElementCount VecEC = VecTy->getElementCount();
6776 ElementCount ResultEC = ResultTy->getElementCount();
6778 Check(ResultTy->getElementType() == VecTy->getElementType(),
6779 "vector_extract result must have the same element "
6780 "type as the input vector.",
6783 "vector_extract index must be a constant multiple of "
6784 "the result type's known minimum vector length.");
6792 "vector_extract would overrun.");
6796 case Intrinsic::vector_partial_reduce_fadd:
6797 case Intrinsic::vector_partial_reduce_add: {
6801 unsigned VecWidth = VecTy->getElementCount().getKnownMinValue();
6802 unsigned AccWidth = AccTy->getElementCount().getKnownMinValue();
6804 Check((VecWidth % AccWidth) == 0,
6805 "Invalid vector widths for partial "
6806 "reduction. The width of the input vector "
6807 "must be a positive integer multiple of "
6808 "the width of the accumulator vector.");
6811 case Intrinsic::experimental_noalias_scope_decl: {
6815 case Intrinsic::preserve_array_access_index:
6816 case Intrinsic::preserve_struct_access_index:
6817 case Intrinsic::aarch64_ldaxr:
6818 case Intrinsic::aarch64_ldxr:
6819 case Intrinsic::arm_ldaex:
6820 case Intrinsic::arm_ldrex: {
6822 Check(ElemTy,
"Intrinsic requires elementtype attribute on first argument.",
6826 case Intrinsic::aarch64_stlxr:
6827 case Intrinsic::aarch64_stxr:
6828 case Intrinsic::arm_stlex:
6829 case Intrinsic::arm_strex: {
6832 "Intrinsic requires elementtype attribute on second argument.",
6836 case Intrinsic::aarch64_prefetch: {
6838 "write argument to llvm.aarch64.prefetch must be 0 or 1",
Call);
6840 "target argument to llvm.aarch64.prefetch must be 0-3",
Call);
6842 "stream argument to llvm.aarch64.prefetch must be 0 or 1",
Call);
6844 "isdata argument to llvm.aarch64.prefetch must be 0 or 1",
Call);
6847 case Intrinsic::aarch64_range_prefetch: {
6849 "write argument to llvm.aarch64.range.prefetch must be 0 or 1",
Call);
6851 "stream argument to llvm.aarch64.range.prefetch must be 0 or 1",
6855 case Intrinsic::callbr_landingpad: {
6857 Check(CBR,
"intrinstic requires callbr operand", &
Call);
6864 CheckFailed(
"Intrinsic in block must have 1 unique predecessor", &
Call);
6868 CheckFailed(
"Intrinsic must have corresponding callbr in predecessor",
6873 "Intrinsic's corresponding callbr must have intrinsic's parent basic "
6874 "block in indirect destination list",
6877 Check(&
First == &
Call,
"No other instructions may proceed intrinsic",
6881 case Intrinsic::amdgcn_cs_chain: {
6884 case CallingConv::AMDGPU_CS:
6885 case CallingConv::AMDGPU_CS_Chain:
6886 case CallingConv::AMDGPU_CS_ChainPreserve:
6887 case CallingConv::AMDGPU_ES:
6888 case CallingConv::AMDGPU_GS:
6889 case CallingConv::AMDGPU_HS:
6890 case CallingConv::AMDGPU_LS:
6891 case CallingConv::AMDGPU_VS:
6894 CheckFailed(
"Intrinsic cannot be called from functions with this "
6895 "calling convention",
6901 "SGPR arguments must have the `inreg` attribute", &
Call);
6903 "VGPR arguments must not have the `inreg` attribute", &
Call);
6908 Intrinsic::amdgcn_unreachable;
6910 "llvm.amdgcn.cs.chain must be followed by unreachable", &
Call);
6913 case Intrinsic::amdgcn_init_exec_from_input: {
6916 "only inreg arguments to the parent function are valid as inputs to "
6921 case Intrinsic::amdgcn_set_inactive_chain_arg: {
6924 case CallingConv::AMDGPU_CS_Chain:
6925 case CallingConv::AMDGPU_CS_ChainPreserve:
6928 CheckFailed(
"Intrinsic can only be used from functions with the "
6929 "amdgpu_cs_chain or amdgpu_cs_chain_preserve "
6930 "calling conventions",
6935 unsigned InactiveIdx = 1;
6937 "Value for inactive lanes must not have the `inreg` attribute",
6940 "Value for inactive lanes must be a function argument", &
Call);
6942 "Value for inactive lanes must be a VGPR function argument", &
Call);
6945 case Intrinsic::amdgcn_call_whole_wave: {
6947 Check(
F,
"Indirect whole wave calls are not allowed", &
Call);
6949 CallingConv::ID CC =
F->getCallingConv();
6950 Check(CC == CallingConv::AMDGPU_Gfx_WholeWave,
6951 "Callee must have the amdgpu_gfx_whole_wave calling convention",
6954 Check(!
F->isVarArg(),
"Variadic whole wave calls are not allowed", &
Call);
6957 "Call argument count must match callee argument count", &
Call);
6961 Check(
F->arg_begin()->getType()->isIntegerTy(1),
6962 "Callee must have i1 as its first argument", &
Call);
6963 for (
auto [CallArg, FuncArg] :
6965 Check(CallArg->getType() == FuncArg.getType(),
6966 "Argument types must match", &
Call);
6970 FuncArg.hasInRegAttr(),
6971 "Argument inreg attributes must match", &
Call);
6975 case Intrinsic::amdgcn_s_prefetch_data: {
6979 "llvm.amdgcn.s.prefetch.data only supports global or constant memory");
6982 case Intrinsic::amdgcn_mfma_scale_f32_16x16x128_f8f6f4:
6983 case Intrinsic::amdgcn_mfma_scale_f32_32x32x64_f8f6f4: {
6989 Check(CBSZ <= 4,
"invalid value for cbsz format",
Call,
6991 Check(BLGP <= 4,
"invalid value for blgp format",
Call,
6995 auto getFormatNumRegs = [](
unsigned FormatVal) {
6996 switch (FormatVal) {
7010 auto isValidSrcASrcBVector = [](FixedVectorType *Ty) {
7011 if (!Ty || !Ty->getElementType()->
isIntegerTy(32))
7013 unsigned NumElts = Ty->getNumElements();
7014 return NumElts == 4 || NumElts == 6 || NumElts == 8;
7019 Check(isValidSrcASrcBVector(Src0Ty),
7020 "operand 0 must be 4, 6 or 8 element i32 vector", &
Call, Src0);
7021 Check(isValidSrcASrcBVector(Src1Ty),
7022 "operand 1 must be 4, 6 or 8 element i32 vector", &
Call, Src1);
7025 Check(Src0Ty->getNumElements() >= getFormatNumRegs(CBSZ),
7027 Check(Src1Ty->getNumElements() >= getFormatNumRegs(BLGP),
7031 case Intrinsic::amdgcn_wmma_f32_16x16x128_f8f6f4:
7032 case Intrinsic::amdgcn_wmma_scale_f32_16x16x128_f8f6f4:
7033 case Intrinsic::amdgcn_wmma_scale16_f32_16x16x128_f8f6f4: {
7039 Check(FmtA <= 4,
"invalid value for matrix format",
Call,
7041 Check(FmtB <= 4,
"invalid value for matrix format",
Call,
7045 auto getFormatNumRegs = [](
unsigned FormatVal) {
7046 switch (FormatVal) {
7060 auto isValidSrcASrcBVector = [](FixedVectorType *Ty) {
7061 if (!Ty || !Ty->getElementType()->
isIntegerTy(32))
7063 unsigned NumElts = Ty->getNumElements();
7064 return NumElts == 16 || NumElts == 12 || NumElts == 8;
7069 Check(isValidSrcASrcBVector(Src0Ty),
7070 "operand 1 must be 8, 12 or 16 element i32 vector", &
Call, Src0);
7071 Check(isValidSrcASrcBVector(Src1Ty),
7072 "operand 3 must be 8, 12 or 16 element i32 vector", &
Call, Src1);
7075 Check(Src0Ty->getNumElements() >= getFormatNumRegs(FmtA),
7077 Check(Src1Ty->getNumElements() >= getFormatNumRegs(FmtB),
7081 case Intrinsic::amdgcn_cooperative_atomic_load_32x4B:
7082 case Intrinsic::amdgcn_cooperative_atomic_load_16x8B:
7083 case Intrinsic::amdgcn_cooperative_atomic_load_8x16B:
7084 case Intrinsic::amdgcn_cooperative_atomic_store_32x4B:
7085 case Intrinsic::amdgcn_cooperative_atomic_store_16x8B:
7086 case Intrinsic::amdgcn_cooperative_atomic_store_8x16B: {
7091 "cooperative atomic intrinsics require a generic or global pointer",
7098 "cooperative atomic intrinsics require that the last argument is a "
7103 case Intrinsic::nvvm_setmaxnreg_inc_sync_aligned_u32:
7104 case Intrinsic::nvvm_setmaxnreg_dec_sync_aligned_u32: {
7107 Check(RegCount % 8 == 0,
7108 "reg_count argument to nvvm.setmaxnreg must be in multiples of 8");
7111 case Intrinsic::experimental_convergence_entry:
7112 case Intrinsic::experimental_convergence_anchor:
7114 case Intrinsic::experimental_convergence_loop:
7116 case Intrinsic::ptrmask: {
7120 "llvm.ptrmask intrinsic first argument must be pointer or vector "
7125 "llvm.ptrmask intrinsic arguments must be both scalars or both vectors",
7130 "llvm.ptrmask intrinsic arguments must have the same number of "
7134 "llvm.ptrmask intrinsic second argument bitwidth must match "
7135 "pointer index type size of first argument",
7139 case Intrinsic::thread_pointer: {
7141 DL.getDefaultGlobalsAddressSpace(),
7142 "llvm.thread.pointer intrinsic return type must be for the globals "
7147 case Intrinsic::threadlocal_address: {
7150 "llvm.threadlocal.address first argument must be a GlobalValue");
7152 "llvm.threadlocal.address operand isThreadLocal() must be true");
7155 case Intrinsic::lifetime_start:
7156 case Intrinsic::lifetime_end: {
7159 "llvm.lifetime.start/end can only be used on alloca or poison",
7168 if (
F->hasPersonalityFn() &&
7172 if (BlockEHFuncletColors.
empty())
7176 bool InEHFunclet =
false;
7180 for (BasicBlock *ColorFirstBB : CV)
7181 if (
auto It = ColorFirstBB->getFirstNonPHIIt();
7182 It != ColorFirstBB->end())
7187 bool HasToken =
false;
7194 Check(HasToken,
"Missing funclet token on intrinsic call", &
Call);
7218void Verifier::visit(DbgLabelRecord &DLR) {
7220 "invalid #dbg_label intrinsic variable", &DLR, DLR.
getRawLabel());
7233 CheckDI(Loc,
"#dbg_label record requires a !dbg attachment", &DLR, BB,
F);
7237 if (!LabelSP || !LocSP)
7241 "mismatched subprogram between #dbg_label label and !dbg attachment",
7242 &DLR, BB,
F, Label,
Label->getScope()->getSubprogram(), Loc,
7243 Loc->getScope()->getSubprogram());
7246void Verifier::visit(DbgVariableRecord &DVR) {
7250 CheckDI(DVR.
getType() == DbgVariableRecord::LocationType::Value ||
7251 DVR.
getType() == DbgVariableRecord::LocationType::Declare ||
7252 DVR.
getType() == DbgVariableRecord::LocationType::DeclareValue ||
7253 DVR.
getType() == DbgVariableRecord::LocationType::Assign,
7254 "invalid #dbg record type", &DVR, DVR.
getType(), BB,
F);
7262 "invalid #dbg record address/value", &DVR, MD, BB,
F);
7264 visitValueAsMetadata(*VAM,
F);
7267 Type *Ty = VAM->getValue()->getType();
7269 "location of #dbg_declare must be a pointer or int", &DVR, MD, BB,
7273 visitDIArgList(*AL,
F);
7287 "invalid #dbg_assign DIAssignID", &DVR, DVR.
getRawAssignID(), BB,
7290 AreDebugLocsAllowed::No);
7299 "invalid #dbg_assign address", &DVR, DVR.
getRawAddress(), BB,
F);
7301 visitValueAsMetadata(*VAM,
F);
7304 "invalid #dbg_assign address expression", &DVR,
7311 "inst not in same function as #dbg_assign",
I, &DVR, BB,
F);
7321 &DVR, DLNode, BB,
F);
7327 if (!VarSP || !LocSP)
7331 "mismatched subprogram between #dbg record variable and DILocation",
7333 Loc->getScope()->getSubprogram(), BB,
F);
7338void Verifier::visitVPIntrinsic(VPIntrinsic &VPI) {
7342 Check(RetTy->getElementCount() == ValTy->getElementCount(),
7343 "VP cast intrinsic first argument and result vector lengths must be "
7347 switch (VPCast->getIntrinsicID()) {
7350 case Intrinsic::vp_trunc:
7352 "llvm.vp.trunc intrinsic first argument and result element type "
7356 "llvm.vp.trunc intrinsic the bit size of first argument must be "
7357 "larger than the bit size of the return type",
7360 case Intrinsic::vp_zext:
7361 case Intrinsic::vp_sext:
7363 "llvm.vp.zext or llvm.vp.sext intrinsic first argument and result "
7364 "element type must be integer",
7367 "llvm.vp.zext or llvm.vp.sext intrinsic the bit size of first "
7368 "argument must be smaller than the bit size of the return type",
7371 case Intrinsic::vp_fptoui:
7372 case Intrinsic::vp_fptosi:
7373 case Intrinsic::vp_lrint:
7374 case Intrinsic::vp_llrint:
7377 "llvm.vp.fptoui, llvm.vp.fptosi, llvm.vp.lrint or llvm.vp.llrint" "intrinsic first argument element "
7378 "type must be floating-point and result element type must be integer",
7381 case Intrinsic::vp_uitofp:
7382 case Intrinsic::vp_sitofp:
7385 "llvm.vp.uitofp or llvm.vp.sitofp intrinsic first argument element "
7386 "type must be integer and result element type must be floating-point",
7389 case Intrinsic::vp_fptrunc:
7391 "llvm.vp.fptrunc intrinsic first argument and result element type "
7392 "must be floating-point",
7395 "llvm.vp.fptrunc intrinsic the bit size of first argument must be "
7396 "larger than the bit size of the return type",
7399 case Intrinsic::vp_fpext:
7401 "llvm.vp.fpext intrinsic first argument and result element type "
7402 "must be floating-point",
7405 "llvm.vp.fpext intrinsic the bit size of first argument must be "
7406 "smaller than the bit size of the return type",
7409 case Intrinsic::vp_ptrtoint:
7411 "llvm.vp.ptrtoint intrinsic first argument element type must be "
7412 "pointer and result element type must be integer",
7415 case Intrinsic::vp_inttoptr:
7417 "llvm.vp.inttoptr intrinsic first argument element type must be "
7418 "integer and result element type must be pointer",
7425 case Intrinsic::vp_fcmp: {
7428 "invalid predicate for VP FP comparison intrinsic", &VPI);
7431 case Intrinsic::vp_icmp: {
7434 "invalid predicate for VP integer comparison intrinsic", &VPI);
7437 case Intrinsic::vp_is_fpclass: {
7440 "unsupported bits for llvm.vp.is.fpclass test mask");
7443 case Intrinsic::experimental_vp_splice: {
7446 int64_t KnownMinNumElements = VecTy->getElementCount().getKnownMinValue();
7448 AttributeList
Attrs = VPI.
getParent()->getParent()->getAttributes();
7449 if (
Attrs.hasFnAttr(Attribute::VScaleRange))
7450 KnownMinNumElements *=
Attrs.getFnAttrs().getVScaleRangeMin();
7452 Check((Idx < 0 && std::abs(Idx) <= KnownMinNumElements) ||
7453 (Idx >= 0 && Idx < KnownMinNumElements),
7454 "The splice index exceeds the range [-VL, VL-1] where VL is the "
7455 "known minimum number of elements in the vector. For scalable "
7456 "vectors the minimum number of elements is determined from "
7464void Verifier::visitConstrainedFPIntrinsic(ConstrainedFPIntrinsic &FPI) {
7466 bool HasRoundingMD =
7470 NumOperands += (1 + HasRoundingMD);
7476 "invalid arguments for constrained FP intrinsic", &FPI);
7479 case Intrinsic::experimental_constrained_lrint:
7480 case Intrinsic::experimental_constrained_llrint: {
7484 "Intrinsic does not support vectors", &FPI);
7488 case Intrinsic::experimental_constrained_lround:
7489 case Intrinsic::experimental_constrained_llround: {
7493 "Intrinsic does not support vectors", &FPI);
7497 case Intrinsic::experimental_constrained_fcmp:
7498 case Intrinsic::experimental_constrained_fcmps: {
7501 "invalid predicate for constrained FP comparison intrinsic", &FPI);
7505 case Intrinsic::experimental_constrained_fptosi:
7506 case Intrinsic::experimental_constrained_fptoui: {
7510 "Intrinsic first argument must be floating point", &FPI);
7517 "Intrinsic first argument and result disagree on vector use", &FPI);
7519 "Intrinsic result must be an integer", &FPI);
7522 "Intrinsic first argument and result vector lengths must be equal",
7528 case Intrinsic::experimental_constrained_sitofp:
7529 case Intrinsic::experimental_constrained_uitofp: {
7533 "Intrinsic first argument must be integer", &FPI);
7540 "Intrinsic first argument and result disagree on vector use", &FPI);
7542 "Intrinsic result must be a floating point", &FPI);
7545 "Intrinsic first argument and result vector lengths must be equal",
7551 case Intrinsic::experimental_constrained_fptrunc:
7552 case Intrinsic::experimental_constrained_fpext: {
7558 "Intrinsic first argument must be FP or FP vector", &FPI);
7560 "Intrinsic result must be FP or FP vector", &FPI);
7562 "Intrinsic first argument and result disagree on vector use", &FPI);
7566 "Intrinsic first argument and result vector lengths must be equal",
7569 if (FPI.
getIntrinsicID() == Intrinsic::experimental_constrained_fptrunc) {
7571 "Intrinsic first argument's type must be larger than result type",
7575 "Intrinsic first argument's type must be smaller than result type",
7591 "invalid exception behavior argument", &FPI);
7592 if (HasRoundingMD) {
7598void Verifier::verifyFragmentExpression(
const DbgVariableRecord &DVR) {
7603 if (!V || !
E || !
E->isValid())
7607 auto Fragment =
E->getFragmentInfo();
7617 if (
V->isArtificial())
7620 verifyFragmentExpression(*V, *Fragment, &DVR);
7623template <
typename ValueOrMetadata>
7624void Verifier::verifyFragmentExpression(
const DIVariable &V,
7626 ValueOrMetadata *
Desc) {
7629 auto VarSize =
V.getSizeInBits();
7635 CheckDI(FragSize + FragOffset <= *VarSize,
7636 "fragment is larger than or outside of variable",
Desc, &V);
7637 CheckDI(FragSize != *VarSize,
"fragment covers entire variable",
Desc, &V);
7640void Verifier::verifyFnArgs(
const DbgVariableRecord &DVR) {
7652 CheckDI(Var,
"#dbg record without variable");
7654 unsigned ArgNo = Var->
getArg();
7660 if (DebugFnArgs.
size() < ArgNo)
7661 DebugFnArgs.
resize(ArgNo,
nullptr);
7663 auto *Prev = DebugFnArgs[ArgNo - 1];
7664 DebugFnArgs[ArgNo - 1] = Var;
7665 CheckDI(!Prev || (Prev == Var),
"conflicting debug info for argument", &DVR,
7669void Verifier::verifyNotEntryValue(
const DbgVariableRecord &DVR) {
7673 if (!
E || !
E->isValid())
7683 ArgLoc && ArgLoc->hasAttribute(Attribute::SwiftAsync))
7688 "Entry values are only allowed in MIR unless they target a "
7689 "swiftasync Argument",
7693void Verifier::verifyCompileUnits() {
7697 if (
M.getContext().isODRUniquingDebugTypes())
7699 auto *CUs =
M.getNamedMetadata(
"llvm.dbg.cu");
7700 SmallPtrSet<const Metadata *, 2> Listed;
7703 for (
const auto *CU : CUVisited)
7704 CheckDI(Listed.
count(CU),
"DICompileUnit not listed in llvm.dbg.cu", CU);
7708void Verifier::verifyDeoptimizeCallingConvs() {
7709 if (DeoptimizeDeclarations.
empty())
7713 for (
const auto *
F :
ArrayRef(DeoptimizeDeclarations).slice(1)) {
7714 Check(
First->getCallingConv() ==
F->getCallingConv(),
7715 "All llvm.experimental.deoptimize declarations must have the same "
7716 "calling convention",
7721void Verifier::verifyAttachedCallBundle(
const CallBase &
Call,
7722 const OperandBundleUse &BU) {
7725 Check((FTy->getReturnType()->isPointerTy() ||
7727 "a call with operand bundle \"clang.arc.attachedcall\" must call a "
7728 "function returning a pointer or a non-returning function that has a "
7733 "operand bundle \"clang.arc.attachedcall\" requires one function as "
7741 Check((IID == Intrinsic::objc_retainAutoreleasedReturnValue ||
7742 IID == Intrinsic::objc_claimAutoreleasedReturnValue ||
7743 IID == Intrinsic::objc_unsafeClaimAutoreleasedReturnValue),
7744 "invalid function argument",
Call);
7746 StringRef FnName = Fn->
getName();
7747 Check((FnName ==
"objc_retainAutoreleasedReturnValue" ||
7748 FnName ==
"objc_claimAutoreleasedReturnValue" ||
7749 FnName ==
"objc_unsafeClaimAutoreleasedReturnValue"),
7750 "invalid function argument",
Call);
7754void Verifier::verifyNoAliasScopeDecl() {
7755 if (NoAliasScopeDecls.
empty())
7759 for (
auto *
II : NoAliasScopeDecls) {
7760 assert(
II->getIntrinsicID() == Intrinsic::experimental_noalias_scope_decl &&
7761 "Not a llvm.experimental.noalias.scope.decl ?");
7764 Check(ScopeListMV !=
nullptr,
7765 "llvm.experimental.noalias.scope.decl must have a MetadataAsValue "
7770 Check(ScopeListMD !=
nullptr,
"!id.scope.list must point to an MDNode",
II);
7771 Check(ScopeListMD->getNumOperands() == 1,
7772 "!id.scope.list must point to a list with a single scope",
II);
7773 visitAliasScopeListMetadata(ScopeListMD);
7783 auto GetScope = [](IntrinsicInst *
II) {
7786 return &
cast<MDNode>(ScopeListMV->getMetadata())->getOperand(0);
7791 auto Compare = [GetScope](IntrinsicInst *Lhs, IntrinsicInst *Rhs) {
7792 return GetScope(Lhs) < GetScope(Rhs);
7799 auto ItCurrent = NoAliasScopeDecls.begin();
7800 while (ItCurrent != NoAliasScopeDecls.end()) {
7801 auto CurScope = GetScope(*ItCurrent);
7802 auto ItNext = ItCurrent;
7805 }
while (ItNext != NoAliasScopeDecls.end() &&
7806 GetScope(*ItNext) == CurScope);
7811 if (ItNext - ItCurrent < 32)
7815 Check(!DT.dominates(
I, J),
7816 "llvm.experimental.noalias.scope.decl dominates another one "
7817 "with the same scope",
7831 Verifier V(OS,
true, *f.getParent());
7835 return !V.verify(
F);
7839 bool *BrokenDebugInfo) {
7841 Verifier V(OS, !BrokenDebugInfo, M);
7843 bool Broken =
false;
7845 Broken |= !V.verify(
F);
7847 Broken |= !V.verify();
7848 if (BrokenDebugInfo)
7849 *BrokenDebugInfo = V.hasBrokenDebugInfo();
7860 std::unique_ptr<Verifier> V;
7861 bool FatalErrors =
true;
7866 explicit VerifierLegacyPass(
bool FatalErrors)
7868 FatalErrors(FatalErrors) {
7872 bool doInitialization(
Module &M)
override {
7873 V = std::make_unique<Verifier>(
7879 if (!
V->verify(
F) && FatalErrors) {
7880 errs() <<
"in function " <<
F.getName() <<
'\n';
7886 bool doFinalization(
Module &M)
override {
7887 bool HasErrors =
false;
7888 for (Function &
F : M)
7889 if (
F.isDeclaration())
7890 HasErrors |= !
V->verify(
F);
7892 HasErrors |= !
V->verify();
7893 if (FatalErrors && (HasErrors ||
V->hasBrokenDebugInfo()))
7898 void getAnalysisUsage(AnalysisUsage &AU)
const override {
7906template <
typename... Tys>
void TBAAVerifier::CheckFailed(Tys &&... Args) {
7908 return Diagnostic->CheckFailed(
Args...);
7911#define CheckTBAA(C, ...) \
7914 CheckFailed(__VA_ARGS__); \
7922TBAAVerifier::TBAABaseNodeSummary
7926 CheckFailed(
"Base nodes must have at least two operands",
I, BaseNode);
7930 auto Itr = TBAABaseNodes.find(BaseNode);
7931 if (Itr != TBAABaseNodes.end())
7934 auto Result = verifyTBAABaseNodeImpl(
I, BaseNode, IsNewFormat);
7935 auto InsertResult = TBAABaseNodes.insert({BaseNode, Result});
7937 assert(InsertResult.second &&
"We just checked!");
7941TBAAVerifier::TBAABaseNodeSummary
7942TBAAVerifier::verifyTBAABaseNodeImpl(
const Instruction *
I,
7943 const MDNode *BaseNode,
bool IsNewFormat) {
7944 const TBAAVerifier::TBAABaseNodeSummary InvalidNode = {
true, ~0
u};
7948 return isValidScalarTBAANode(BaseNode)
7949 ? TBAAVerifier::TBAABaseNodeSummary({
false, 0})
7955 CheckFailed(
"Access tag nodes must have the number of operands that is a "
7956 "multiple of 3!", BaseNode);
7961 CheckFailed(
"Struct tag nodes must have an odd number of operands!",
7971 if (!TypeSizeNode) {
7972 CheckFailed(
"Type size nodes must be constants!",
I, BaseNode);
7979 CheckFailed(
"Struct tag nodes have a string as their first operand",
7986 std::optional<APInt> PrevOffset;
7991 unsigned FirstFieldOpNo = IsNewFormat ? 3 : 1;
7992 unsigned NumOpsPerField = IsNewFormat ? 3 : 2;
7993 for (
unsigned Idx = FirstFieldOpNo; Idx < BaseNode->
getNumOperands();
7994 Idx += NumOpsPerField) {
7995 const MDOperand &FieldTy = BaseNode->
getOperand(Idx);
7996 const MDOperand &FieldOffset = BaseNode->
getOperand(Idx + 1);
7998 CheckFailed(
"Incorrect field entry in struct type node!",
I, BaseNode);
8003 auto *OffsetEntryCI =
8005 if (!OffsetEntryCI) {
8006 CheckFailed(
"Offset entries must be constants!",
I, BaseNode);
8012 BitWidth = OffsetEntryCI->getBitWidth();
8014 if (OffsetEntryCI->getBitWidth() !=
BitWidth) {
8016 "Bitwidth between the offsets and struct type entries must match",
I,
8028 !PrevOffset || PrevOffset->ule(OffsetEntryCI->getValue());
8031 CheckFailed(
"Offsets must be increasing!",
I, BaseNode);
8035 PrevOffset = OffsetEntryCI->getValue();
8040 if (!MemberSizeNode) {
8041 CheckFailed(
"Member size entries must be constants!",
I, BaseNode);
8048 return Failed ? InvalidNode
8049 : TBAAVerifier::TBAABaseNodeSummary(
false,
BitWidth);
8071 return Parent && Visited.
insert(Parent).second &&
8075bool TBAAVerifier::isValidScalarTBAANode(
const MDNode *MD) {
8076 auto ResultIt = TBAAScalarNodes.find(MD);
8077 if (ResultIt != TBAAScalarNodes.end())
8078 return ResultIt->second;
8080 SmallPtrSet<const MDNode *, 4> Visited;
8082 auto InsertResult = TBAAScalarNodes.insert({MD,
Result});
8084 assert(InsertResult.second &&
"Just checked!");
8093MDNode *TBAAVerifier::getFieldNodeFromTBAABaseNode(
const Instruction *
I,
8094 const MDNode *BaseNode,
8105 unsigned FirstFieldOpNo = IsNewFormat ? 3 : 1;
8106 unsigned NumOpsPerField = IsNewFormat ? 3 : 2;
8107 for (
unsigned Idx = FirstFieldOpNo; Idx < BaseNode->
getNumOperands();
8108 Idx += NumOpsPerField) {
8109 auto *OffsetEntryCI =
8111 if (OffsetEntryCI->getValue().ugt(
Offset)) {
8112 if (Idx == FirstFieldOpNo) {
8113 CheckFailed(
"Could not find TBAA parent in struct type node",
I,
8118 unsigned PrevIdx = Idx - NumOpsPerField;
8119 auto *PrevOffsetEntryCI =
8121 Offset -= PrevOffsetEntryCI->getValue();
8129 Offset -= LastOffsetEntryCI->getValue();
8134 if (!
Type ||
Type->getNumOperands() < 3)
8150 "This instruction shall not have a TBAA access tag!",
I);
8152 bool IsStructPathTBAA =
8156 "Old-style TBAA is no longer allowed, use struct-path TBAA instead",
8166 "Access tag metadata must have either 4 or 5 operands",
I, MD);
8169 "Struct tag metadata must have either 3 or 4 operands",
I, MD);
8176 CheckTBAA(AccessSizeNode,
"Access size field must be a constant",
I, MD);
8180 unsigned ImmutabilityFlagOpNo = IsNewFormat ? 4 : 3;
8185 "Immutability tag on struct tag metadata must be a constant",
I,
8188 IsImmutableCI->isZero() || IsImmutableCI->isOne(),
8189 "Immutability part of the struct tag metadata must be either 0 or 1",
I,
8194 "Malformed struct tag metadata: base and access-type "
8195 "should be non-null and point to Metadata nodes",
8196 I, MD, BaseNode, AccessType);
8199 CheckTBAA(isValidScalarTBAANode(AccessType),
8200 "Access type node must be a valid scalar type",
I, MD,
8205 CheckTBAA(OffsetCI,
"Offset must be constant integer",
I, MD);
8208 bool SeenAccessTypeInPath =
false;
8214 getFieldNodeFromTBAABaseNode(
I, BaseNode,
Offset, IsNewFormat)) {
8215 if (!StructPath.
insert(BaseNode).second) {
8216 CheckFailed(
"Cycle detected in struct path",
I, MD);
8221 unsigned BaseNodeBitWidth;
8222 std::tie(
Invalid, BaseNodeBitWidth) =
8223 verifyTBAABaseNode(
I, BaseNode, IsNewFormat);
8230 SeenAccessTypeInPath |= BaseNode == AccessType;
8232 if (isValidScalarTBAANode(BaseNode) || BaseNode == AccessType)
8237 (BaseNodeBitWidth == 0 &&
Offset == 0) ||
8238 (IsNewFormat && BaseNodeBitWidth == ~0u),
8239 "Access bit-width not the same as description bit-width",
I, MD,
8240 BaseNodeBitWidth,
Offset.getBitWidth());
8242 if (IsNewFormat && SeenAccessTypeInPath)
8246 CheckTBAA(SeenAccessTypeInPath,
"Did not see access type in access path!",
I,
8251char VerifierLegacyPass::ID = 0;
8252INITIALIZE_PASS(VerifierLegacyPass,
"verify",
"Module Verifier",
false,
false)
8255 return new VerifierLegacyPass(FatalErrors);
8273 if (FatalErrors && (Res.IRBroken || Res.DebugInfoBroken))
8281 if (res.IRBroken && FatalErrors)
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
AMDGPU address space definition.
ArrayRef< TableEntry > TableRef
This file declares a class to represent arbitrary precision floating point values and provide a varie...
This file implements a class to represent arbitrary precision integral constant values and operations...
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
Atomic ordering constants.
This file contains the simple types necessary to represent the attributes associated with functions a...
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
Analysis containing CSE Info
This file contains the declarations for the subclasses of Constant, which represent the different fla...
This file declares the LLVM IR specialization of the GenericConvergenceVerifier template.
static DISubprogram * getSubprogram(bool IsDistinct, Ts &&...Args)
This file defines the DenseMap class.
This file contains constants used for implementing Dwarf debug support.
static bool runOnFunction(Function &F, bool PostInlining)
This file contains the declarations of entities that describe floating point environment and related ...
This file provides various utilities for inspecting and working with the control flow graph in LLVM I...
Module.h This file contains the declarations for the Module class.
This header defines various interfaces for pass management in LLVM.
This defines the Use class.
const size_t AbstractManglingParser< Derived, Alloc >::NumOps
Machine Check Debug Module
This file implements a map that provides insertion order iteration.
This file provides utility for Memory Model Relaxation Annotations (MMRAs).
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
uint64_t IntrinsicInst * II
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
This file contains the declarations for profiling metadata utility functions.
const SmallVectorImpl< MachineOperand > & Cond
static bool isValid(const char C)
Returns true if C is a valid mangled character: <0-9a-zA-Z_>.
static unsigned getNumElements(Type *Ty)
void visit(MachineFunction &MF, MachineBasicBlock &Start, std::function< void(MachineBasicBlock *)> op)
verify safepoint Safepoint IR Verifier
BaseType
A given derived pointer can have multiple base pointers through phi/selects.
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
static unsigned getBitWidth(Type *Ty, const DataLayout &DL)
Returns the bitwidth of the given scalar or pointer type.
static bool IsScalarTBAANodeImpl(const MDNode *MD, SmallPtrSetImpl< const MDNode * > &Visited)
static bool isType(const Metadata *MD)
static Instruction * getSuccPad(Instruction *Terminator)
static bool isMDTuple(const Metadata *MD)
static bool isNewFormatTBAATypeNode(llvm::MDNode *Type)
#define CheckDI(C,...)
We know that a debug info condition should be true, if not print an error message.
static void forEachUser(const Value *User, SmallPtrSet< const Value *, 32 > &Visited, llvm::function_ref< bool(const Value *)> Callback)
static bool isDINode(const Metadata *MD)
static bool isScope(const Metadata *MD)
static cl::opt< bool > VerifyNoAliasScopeDomination("verify-noalias-scope-decl-dom", cl::Hidden, cl::init(false), cl::desc("Ensure that llvm.experimental.noalias.scope.decl for identical " "scopes are not dominating"))
static bool isTypeCongruent(Type *L, Type *R)
Two types are "congruent" if they are identical, or if they are both pointer types with different poi...
static bool isConstantIntMetadataOperand(const Metadata *MD)
static bool IsRootTBAANode(const MDNode *MD)
static Value * getParentPad(Value *EHPad)
static bool hasConflictingReferenceFlags(unsigned Flags)
Detect mutually exclusive flags.
static AttrBuilder getParameterABIAttributes(LLVMContext &C, unsigned I, AttributeList Attrs)
static const char PassName[]
static LLVM_ABI bool isValidArbitraryFPFormat(StringRef Format)
Returns true if the given string is a valid arbitrary floating-point format interpretation for llvm....
bool isFiniteNonZero() const
const fltSemantics & getSemantics() const
Class for arbitrary precision integers.
bool sgt(const APInt &RHS) const
Signed greater than comparison.
bool isMinValue() const
Determine if this is the smallest unsigned value.
bool ule(const APInt &RHS) const
Unsigned less or equal comparison.
bool isPowerOf2() const
Check if this APInt's value is a power of two greater than zero.
int64_t getSExtValue() const
Get sign extended value.
bool isMaxValue() const
Determine if this is the largest unsigned value.
This class represents a conversion between pointers from one address space to another.
bool isSwiftError() const
Return true if this alloca is used as a swifterror argument to a call.
LLVM_ABI bool isStaticAlloca() const
Return true if this alloca is in the entry block of the function and is a constant size.
Align getAlign() const
Return the alignment of the memory that is being allocated by the instruction.
Type * getAllocatedType() const
Return the type that is being allocated by the instruction.
unsigned getAddressSpace() const
Return the address space for the allocation.
LLVM_ABI bool isArrayAllocation() const
Return true if there is an allocation size parameter to the allocation instruction that is not 1.
const Value * getArraySize() const
Get the number of elements allocated.
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
void setPreservesAll()
Set by analyses that do not transform their input at all.
LLVM_ABI bool hasInRegAttr() const
Return true if this argument has the inreg attribute.
bool empty() const
empty - Check if the array is empty.
static bool isFPOperation(BinOp Op)
BinOp getOperation() const
static LLVM_ABI StringRef getOperationName(BinOp Op)
AtomicOrdering getOrdering() const
Returns the ordering constraint of this rmw instruction.
bool contains(Attribute::AttrKind A) const
Return true if the builder has the specified attribute.
LLVM_ABI bool hasAttribute(Attribute::AttrKind Kind) const
Return true if the attribute exists in this set.
LLVM_ABI std::string getAsString(bool InAttrGrp=false) const
Functions, function parameters, and return types can have attributes to indicate how they should be t...
LLVM_ABI const ConstantRange & getValueAsConstantRange() const
Return the attribute's value as a ConstantRange.
LLVM_ABI StringRef getValueAsString() const
Return the attribute's value as a string.
AttrKind
This enumeration lists the attributes that can be associated with parameters, function results,...
bool isValid() const
Return true if the attribute is any kind of attribute.
LLVM Basic Block Representation.
iterator begin()
Instruction iterator methods.
iterator_range< const_phi_iterator > phis() const
Returns a range that iterates over the phis in the basic block.
const Function * getParent() const
Return the enclosing method, or null if none.
LLVM_ABI InstListType::const_iterator getFirstNonPHIIt() const
Returns an iterator to the first instruction in this block that is not a PHINode instruction.
LLVM_ABI bool isEntryBlock() const
Return true if this is the entry block of the containing function.
const Instruction & front() const
LLVM_ABI const BasicBlock * getUniquePredecessor() const
Return the predecessor of this block if it has a unique predecessor block.
InstListType::iterator iterator
Instruction iterators...
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction if the block is well formed or null if the block is not well forme...
This class represents a no-op cast from one type to another.
static LLVM_ABI BlockAddress * lookup(const BasicBlock *BB)
Lookup an existing BlockAddress constant for the given BasicBlock.
bool isConditional() const
Value * getCondition() const
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
bool isInlineAsm() const
Check if this call is an inline asm statement.
bool hasInAllocaArgument() const
Determine if there are is an inalloca argument.
OperandBundleUse getOperandBundleAt(unsigned Index) const
Return the operand bundle at a specific index.
Function * getCalledFunction() const
Returns the function called, or null if this is an indirect function invocation or the function signa...
bool doesNotAccessMemory(unsigned OpNo) const
bool hasFnAttr(Attribute::AttrKind Kind) const
Determine whether this call has the given attribute.
unsigned getNumOperandBundles() const
Return the number of operand bundles associated with this User.
CallingConv::ID getCallingConv() const
LLVM_ABI bool paramHasAttr(unsigned ArgNo, Attribute::AttrKind Kind) const
Determine whether the argument or parameter has the given attribute.
Attribute getParamAttr(unsigned ArgNo, Attribute::AttrKind Kind) const
Get the attribute of a given kind from a given arg.
iterator_range< bundle_op_iterator > bundle_op_infos()
Return the range [bundle_op_info_begin, bundle_op_info_end).
unsigned countOperandBundlesOfType(StringRef Name) const
Return the number of operand bundles with the tag Name attached to this instruction.
bool onlyReadsMemory(unsigned OpNo) const
Value * getCalledOperand() const
Type * getParamElementType(unsigned ArgNo) const
Extract the elementtype type for a parameter.
Value * getArgOperand(unsigned i) const
FunctionType * getFunctionType() const
LLVM_ABI Intrinsic::ID getIntrinsicID() const
Returns the intrinsic ID of the intrinsic called or Intrinsic::not_intrinsic if the called function i...
iterator_range< User::op_iterator > args()
Iteration adapter for range-for loops.
bool doesNotReturn() const
Determine if the call cannot return.
LLVM_ABI bool onlyAccessesArgMemory() const
Determine if the call can access memmory only using pointers based on its arguments.
unsigned arg_size() const
AttributeList getAttributes() const
Return the attributes for this call.
bool hasOperandBundles() const
Return true if this User has any operand bundles.
LLVM_ABI Function * getCaller()
Helper to get the caller (the parent function).
BasicBlock * getIndirectDest(unsigned i) const
unsigned getNumIndirectDests() const
Return the number of callbr indirect dest labels.
bool isMustTailCall() const
static LLVM_ABI bool castIsValid(Instruction::CastOps op, Type *SrcTy, Type *DstTy)
This method can be used to determine if a cast from SrcTy to DstTy using Opcode op is valid or not.
unsigned getNumHandlers() const
return the number of 'handlers' in this catchswitch instruction, except the default handler
Value * getParentPad() const
BasicBlock * getUnwindDest() const
handler_range handlers()
iteration adapter for range-for loops.
BasicBlock * getUnwindDest() const
bool isFPPredicate() const
bool isIntPredicate() const
static bool isIntPredicate(Predicate P)
bool isMinusOne() const
This function will return true iff every bit in this constant is set to true.
bool isZero() const
This is just a convenience method to make client code smaller for a common code.
unsigned getBitWidth() const
getBitWidth - Return the scalar bitwidth of this constant.
uint64_t getZExtValue() const
Return the constant as a 64-bit unsigned integer value after it has been zero extended as appropriate...
const APInt & getValue() const
Return the constant as an APInt value reference.
Constant * getAddrDiscriminator() const
The address discriminator if any, or the null constant.
Constant * getPointer() const
The pointer that is signed in this ptrauth signed pointer.
ConstantInt * getKey() const
The Key ID, an i32 constant.
Constant * getDeactivationSymbol() const
ConstantInt * getDiscriminator() const
The integer discriminator, an i64 constant, or 0.
static LLVM_ABI bool isOrderedRanges(ArrayRef< ConstantRange > RangesRef)
This class represents a range of values.
const APInt & getLower() const
Return the lower value for this range.
const APInt & getUpper() const
Return the upper value for this range.
LLVM_ABI bool contains(const APInt &Val) const
Return true if the specified value is in the set.
uint32_t getBitWidth() const
Get the bit width of this ConstantRange.
static LLVM_ABI ConstantTokenNone * get(LLVMContext &Context)
Return the ConstantTokenNone.
LLVM_ABI bool isNullValue() const
Return true if this is the value that would be returned by getNullValue.
LLVM_ABI std::optional< fp::ExceptionBehavior > getExceptionBehavior() const
LLVM_ABI std::optional< RoundingMode > getRoundingMode() const
LLVM_ABI unsigned getNonMetadataArgCount() const
DbgVariableFragmentInfo FragmentInfo
@ FixedPointBinary
Scale factor 2^Factor.
@ FixedPointDecimal
Scale factor 10^Factor.
@ FixedPointRational
Arbitrary rational scale factor.
DIGlobalVariable * getVariable() const
DIExpression * getExpression() const
LLVM_ABI DISubprogram * getSubprogram() const
Get the subprogram for this scope.
DILocalScope * getScope() const
Get the local scope for this variable.
Metadata * getRawScope() const
Base class for scope-like contexts.
Subprogram description. Uses SubclassData1.
static const DIScope * getRawRetainedNodeScope(const MDNode *N)
Base class for template parameters.
Base class for variables.
Metadata * getRawType() const
Metadata * getRawScope() const
uint64_t getNumOperands() const
A parsed version of the target data layout string in and methods for querying it.
Records a position in IR for a source label (DILabel).
MDNode * getRawLabel() const
DILabel * getLabel() const
Base class for non-instruction debug metadata records that have positions within IR.
LLVM_ABI void print(raw_ostream &O, bool IsForDebug=false) const
DebugLoc getDebugLoc() const
LLVM_ABI const BasicBlock * getParent() const
LLVM_ABI Function * getFunction()
Record of a variable value-assignment, aka a non instruction representation of the dbg....
LocationType getType() const
MDNode * getRawExpression() const
MDNode * getRawAddressExpression() const
LLVM_ABI Value * getVariableLocationOp(unsigned OpIdx) const
DIExpression * getExpression() const
Metadata * getRawAssignID() const
MDNode * getRawVariable() const
DILocalVariable * getVariable() const
Metadata * getRawLocation() const
Returns the metadata operand for the first location description.
bool isDbgDeclare() const
Metadata * getRawAddress() const
@ End
Marks the end of the concrete types.
@ Any
To indicate all LocationTypes in searches.
DIExpression * getAddressExpression() const
MDNode * getAsMDNode() const
Return this as a bar MDNode.
ValueT lookup(const_arg_type_t< KeyT > Val) const
lookup - Return the entry for the specified key, or a default constructed value if no such entry exis...
iterator find(const_arg_type_t< KeyT > Val)
std::pair< iterator, bool > insert(const std::pair< KeyT, ValueT > &KV)
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
This instruction compares its operands according to the predicate given to the constructor.
This class represents an extension of floating point types.
This class represents a cast from floating point to signed integer.
This class represents a cast from floating point to unsigned integer.
This class represents a truncation of floating point types.
AtomicOrdering getOrdering() const
Returns the ordering constraint of this fence instruction.
Value * getParentPad() const
Convenience accessors.
FunctionPass class - This class is used to implement most global optimizations.
Type * getReturnType() const
FunctionType * getFunctionType() const
Returns the FunctionType for me.
Intrinsic::ID getIntrinsicID() const LLVM_READONLY
getIntrinsicID - This method returns the ID number of the specified function, or Intrinsic::not_intri...
DISubprogram * getSubprogram() const
Get the attached subprogram.
CallingConv::ID getCallingConv() const
getCallingConv()/setCallingConv(CC) - These method get and set the calling convention of this functio...
bool hasPersonalityFn() const
Check whether this function has a personality function.
const Function & getFunction() const
const std::string & getGC() const
Type * getReturnType() const
Returns the type of the ret val.
bool isVarArg() const
isVarArg - Return true if this function takes a variable number of arguments.
LLVM_ABI Value * getBasePtr() const
LLVM_ABI Value * getDerivedPtr() const
void visit(const BlockT &BB)
static LLVM_ABI Type * getIndexedType(Type *Ty, ArrayRef< Value * > IdxList)
Returns the result type of a getelementptr with the given source element type and indexes.
static bool isValidLinkage(LinkageTypes L)
const Constant * getAliasee() const
LLVM_ABI const Function * getResolverFunction() const
static bool isValidLinkage(LinkageTypes L)
const Constant * getResolver() const
LLVM_ABI void getAllMetadata(SmallVectorImpl< std::pair< unsigned, MDNode * > > &MDs) const
Appends all metadata attached to this value to MDs, sorting by KindID.
MDNode * getMetadata(unsigned KindID) const
Get the current metadata attachments for the given kind, if any.
bool hasExternalLinkage() const
bool isImplicitDSOLocal() const
LLVM_ABI bool isDeclaration() const
Return true if the primary definition of this global value is outside of the current translation unit...
bool hasValidDeclarationLinkage() const
LinkageTypes getLinkage() const
bool hasDefaultVisibility() const
bool hasPrivateLinkage() const
bool hasHiddenVisibility() const
bool hasExternalWeakLinkage() const
bool hasDLLImportStorageClass() const
bool hasDLLExportStorageClass() const
bool isDeclarationForLinker() const
unsigned getAddressSpace() const
Module * getParent()
Get the module that this global value is contained inside of...
PointerType * getType() const
Global values are always pointers.
LLVM_ABI bool isInterposable() const
Return true if this global's definition can be substituted with an arbitrary definition at link time ...
bool hasCommonLinkage() const
bool hasGlobalUnnamedAddr() const
bool hasAppendingLinkage() const
bool hasAvailableExternallyLinkage() const
Type * getValueType() const
const Constant * getInitializer() const
getInitializer - Return the initializer for this global variable.
bool hasInitializer() const
Definitions have initializers, declarations don't.
MaybeAlign getAlign() const
Returns the alignment of the given variable.
bool isConstant() const
If the value is a global constant, its value is immutable throughout the runtime execution of the pro...
bool hasDefinitiveInitializer() const
hasDefinitiveInitializer - Whether the global variable has an initializer, and any other instances of...
This instruction compares its operands according to the predicate given to the constructor.
BasicBlock * getDestination(unsigned i)
Return the specified destination.
unsigned getNumDestinations() const
return the number of possible destinations in this indirectbr instruction.
unsigned getNumSuccessors() const
This instruction inserts a single (scalar) element into a VectorType value.
static LLVM_ABI bool isValidOperands(const Value *Vec, const Value *NewElt, const Value *Idx)
Return true if an insertelement instruction can be formed with the specified operands.
Value * getAggregateOperand()
ArrayRef< unsigned > getIndices() const
Base class for instruction visitors.
void visit(Iterator Start, Iterator End)
LLVM_ABI unsigned getNumSuccessors() const LLVM_READONLY
Return the number of successors that this instruction has.
const DebugLoc & getDebugLoc() const
Return the debug location for this node as a DebugLoc.
LLVM_ABI bool isAtomic() const LLVM_READONLY
Return true if this instruction has an AtomicOrdering of unordered or higher.
LLVM_ABI const Function * getFunction() const
Return the function this instruction belongs to.
This class represents a cast from an integer to a pointer.
static LLVM_ABI bool mayLowerToFunctionCall(Intrinsic::ID IID)
Check if the intrinsic might lower into a regular function call in the course of IR transformations.
Intrinsic::ID getIntrinsicID() const
Return the intrinsic ID of this intrinsic.
This is an important class for using LLVM in a threaded context.
@ OB_clang_arc_attachedcall
bool isCleanup() const
Return 'true' if this landingpad instruction is a cleanup.
unsigned getNumClauses() const
Get the number of clauses for this landing pad.
bool isCatch(unsigned Idx) const
Return 'true' if the clause and index Idx is a catch clause.
bool isFilter(unsigned Idx) const
Return 'true' if the clause and index Idx is a filter clause.
Constant * getClause(unsigned Idx) const
Get the value of the clause at index Idx.
AtomicOrdering getOrdering() const
Returns the ordering constraint of this load instruction.
SyncScope::ID getSyncScopeID() const
Returns the synchronization scope ID of this load instruction.
Align getAlign() const
Return the alignment of the access that is being performed.
const MDOperand & getOperand(unsigned I) const
ArrayRef< MDOperand > operands() const
unsigned getNumOperands() const
Return number of MDNode operands.
bool isResolved() const
Check if node is fully resolved.
LLVMContext & getContext() const
bool equalsStr(StringRef Str) const
LLVM_ABI StringRef getString() const
This class implements a map that also provides access to all stored values in a deterministic order.
Manage lifetime of a slot tracker for printing IR.
A Module instance is used to store all the information related to an LLVM module.
LLVM_ABI StringRef getName() const
LLVM_ABI void print(raw_ostream &ROS, bool IsForDebug=false) const
LLVM_ABI unsigned getNumOperands() const
iterator_range< op_iterator > operands()
op_range incoming_values()
static LLVM_ABI PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
A set of analyses that are preserved following a run of a transformation pass.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
This class represents a cast from a pointer to an address (non-capturing ptrtoint).
This class represents a cast from a pointer to an integer.
Value * getValue() const
Convenience accessor.
Value * getReturnValue() const
Convenience accessor. Returns null if there is no return value.
This class represents a sign extension of integer types.
This class represents a cast from signed integer to floating point.
static LLVM_ABI const char * areInvalidOperands(Value *Cond, Value *True, Value *False)
Return a string if the specified operands are invalid for a select operation, otherwise return null.
This instruction constructs a fixed permutation of two input vectors.
static LLVM_ABI bool isValidOperands(const Value *V1, const Value *V2, const Value *Mask)
Return true if a shufflevector instruction can be formed with the specified operands.
static LLVM_ABI void getShuffleMask(const Constant *Mask, SmallVectorImpl< int > &Result)
Convert the input shuffle mask operand to a vector of integers.
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
size_type count(ConstPtrType Ptr) const
count - Return 1 if the specified pointer is in the set, 0 otherwise.
void insert_range(Range &&R)
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
void reserve(size_type N)
iterator insert(iterator I, T &&Elt)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
std::pair< StringRef, StringRef > split(char Separator) const
Split into two substrings around the first occurrence of a separator character.
static constexpr size_t npos
bool getAsInteger(unsigned Radix, T &Result) const
Parse the current string as an integer of the specified radix.
bool starts_with(StringRef Prefix) const
Check if this string starts with the given Prefix.
constexpr bool empty() const
empty - Check if the string is empty.
unsigned getNumElements() const
Random access to the elements.
LLVM_ABI Type * getTypeAtIndex(const Value *V) const
Given an index value into the type, return the type of the element.
LLVM_ABI bool isScalableTy(SmallPtrSetImpl< const Type * > &Visited) const
Returns true if this struct contains a scalable vector.
Verify that the TBAA Metadatas are valid.
LLVM_ABI bool visitTBAAMetadata(const Instruction *I, const MDNode *MD)
Visit an instruction, or a TBAA node itself as part of a metadata, and return true if it is valid,...
Triple - Helper class for working with autoconf configuration names.
This class represents a truncation of integer types.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
The instances of the Type class are immutable: once they are created, they are never changed.
bool isVectorTy() const
True if this is an instance of VectorType.
LLVM_ABI bool containsNonGlobalTargetExtType(SmallPtrSetImpl< const Type * > &Visited) const
Return true if this type is or contains a target extension type that disallows being used as a global...
bool isArrayTy() const
True if this is an instance of ArrayType.
LLVM_ABI bool containsNonLocalTargetExtType(SmallPtrSetImpl< const Type * > &Visited) const
Return true if this type is or contains a target extension type that disallows being used as a local.
LLVM_ABI bool isScalableTy(SmallPtrSetImpl< const Type * > &Visited) const
Return true if this is a type whose size is a known multiple of vscale.
bool isLabelTy() const
Return true if this is 'label'.
bool isIntOrIntVectorTy() const
Return true if this is an integer type or a vector of integer types.
bool isPointerTy() const
True if this is an instance of PointerType.
LLVM_ABI bool isTokenLikeTy() const
Returns true if this is 'token' or a token-like target type.s.
LLVM_ABI unsigned getPointerAddressSpace() const
Get the address space of this pointer or pointer vector type.
bool isSingleValueType() const
Return true if the type is a valid type for a register in codegen.
LLVM_ABI bool canLosslesslyBitCastTo(Type *Ty) const
Return true if this type could be converted with a lossless BitCast to type 'Ty'.
Type * getScalarType() const
If this is a vector type, return the element type, otherwise return 'this'.
bool isSized(SmallPtrSetImpl< Type * > *Visited=nullptr) const
Return true if it makes sense to take the size of this type.
LLVM_ABI unsigned getScalarSizeInBits() const LLVM_READONLY
If this is a vector type, return the getPrimitiveSizeInBits value for the element type.
bool isFloatingPointTy() const
Return true if this is one of the floating-point types.
bool isPtrOrPtrVectorTy() const
Return true if this is a pointer type or a vector of pointer types.
bool isIntOrPtrTy() const
Return true if this is an integer type or a pointer type.
bool isIntegerTy() const
True if this is an instance of IntegerType.
bool isFPOrFPVectorTy() const
Return true if this is a FP type or a vector of FP.
bool isVoidTy() const
Return true if this is 'void'.
bool isMetadataTy() const
Return true if this is 'metadata'.
This class represents a cast unsigned integer to floating point.
Value * getOperand(unsigned i) const
unsigned getNumOperands() const
This class represents the va_arg llvm instruction, which returns an argument of the specified type gi...
LLVM Value Representation.
iterator_range< user_iterator > materialized_users()
Type * getType() const
All values are typed, get the type of this value.
LLVM_ABI const Value * stripPointerCastsAndAliases() const
Strip off pointer casts, all-zero GEPs, address space casts, and aliases.
LLVM_ABI const Value * stripInBoundsOffsets(function_ref< void(const Value *)> Func=[](const Value *) {}) const
Strip off pointer casts and inbounds GEPs.
iterator_range< user_iterator > users()
bool materialized_use_empty() const
LLVM_ABI const Value * stripPointerCasts() const
Strip off pointer casts, all-zero GEPs and address space casts.
LLVM_ABI LLVMContext & getContext() const
All values hold a context through their type.
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
Check a module for errors, and report separate error states for IR and debug info errors.
LLVM_ABI Result run(Module &M, ModuleAnalysisManager &)
LLVM_ABI PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM)
This class represents zero extension of integer types.
constexpr bool isNonZero() const
constexpr bool isScalable() const
Returns whether the quantity is scaled by a runtime quantity (vscale).
constexpr ScalarTy getKnownMinValue() const
Returns the minimum value this quantity can represent.
An efficient, type-erasing, non-owning reference to a callable.
const ParentTy * getParent() const
NodeTy * getNextNode()
Get the next node, or nullptr for the list tail.
This class implements an extremely fast bulk output stream that can only output to a stream.
This file contains the declaration of the Comdat class, which represents a single COMDAT in LLVM.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ FLAT_ADDRESS
Address space for flat memory.
@ GLOBAL_ADDRESS
Address space for global memory (RAT0, VTX0).
@ PRIVATE_ADDRESS
Address space for private memory.
constexpr char Align[]
Key for Kernel::Arg::Metadata::mAlign.
constexpr char Args[]
Key for Kernel::Metadata::mArgs.
constexpr char Attrs[]
Key for Kernel::Metadata::mAttrs.
bool isFlatGlobalAddrSpace(unsigned AS)
constexpr std::underlying_type_t< E > Mask()
Get a bitmask with 1s in all places up to the high-order bit of E's largest value.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
@ C
The default llvm calling convention, compatible with C.
@ BasicBlock
Various leaf nodes.
LLVM_ABI MatchIntrinsicTypesResult matchIntrinsicSignature(FunctionType *FTy, ArrayRef< IITDescriptor > &Infos, SmallVectorImpl< Type * > &ArgTys)
Match the specified function type with the type constraints specified by the .td file.
LLVM_ABI void getIntrinsicInfoTableEntries(ID id, SmallVectorImpl< IITDescriptor > &T)
Return the IIT table descriptor for the specified intrinsic into an array of IITDescriptors.
MatchIntrinsicTypesResult
@ MatchIntrinsicTypes_NoMatchRet
@ MatchIntrinsicTypes_NoMatchArg
LLVM_ABI bool hasConstrainedFPRoundingModeOperand(ID QID)
Returns true if the intrinsic ID is for one of the "ConstrainedFloating-Point Intrinsics" that take r...
LLVM_ABI StringRef getName(ID id)
Return the LLVM name for an intrinsic, such as "llvm.ppc.altivec.lvx".
static const int NoAliasScopeDeclScopeArg
LLVM_ABI bool matchIntrinsicVarArg(bool isVarArg, ArrayRef< IITDescriptor > &Infos)
Verify if the intrinsic has variable arguments.
std::variant< std::monostate, Loc::Single, Loc::Multi, Loc::MMI, Loc::EntryValue > Variant
Alias for the std::variant specialization base class of DbgVariable.
Flag
These should be considered private to the implementation of the MCInstrDesc class.
@ System
Synchronized with respect to all concurrently executing threads.
LLVM_ABI std::optional< VFInfo > tryDemangleForVFABI(StringRef MangledName, const FunctionType *FTy)
Function to construct a VFInfo out of a mangled names in the following format:
@ CE
Windows NT (Windows on ARM)
LLVM_ABI AssignmentInstRange getAssignmentInsts(DIAssignID *ID)
Return a range of instructions (typically just one) that have ID as an attachment.
initializer< Ty > init(const Ty &Val)
Scope
Defines the scope in which this symbol should be visible: Default – Visible in the public interface o...
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > dyn_extract_or_null(Y &&MD)
Extract a Value from Metadata, if any, allowing null.
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > dyn_extract(Y &&MD)
Extract a Value from Metadata, if any.
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > extract(Y &&MD)
Extract a Value from Metadata.
@ User
could "use" a pointer
NodeAddr< UseNode * > Use
NodeAddr< NodeBase * > Node
friend class Instruction
Iterator for Instructions in a `BasicBlock.
This is an optimization pass for GlobalISel generic memory operations.
auto drop_begin(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the first N elements excluded.
@ Low
Lower the current thread's priority such that it does not affect foreground tasks significantly.
FunctionAddr VTableAddr Value
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI bool canInstructionHaveMMRAs(const Instruction &I)
detail::zippy< detail::zip_first, T, U, Args... > zip_equal(T &&t, U &&u, Args &&...args)
zip iterator that assumes that all iteratees have the same length.
LLVM_ABI unsigned getBranchWeightOffset(const MDNode *ProfileData)
Return the offset to the first branch weight data.
constexpr bool isInt(int64_t x)
Checks if an integer fits into the given bit width.
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
LLVM_ABI bool verifyFunction(const Function &F, raw_ostream *OS=nullptr)
Check a function for errors, useful for use when debugging a pass.
testing::Matcher< const detail::ErrorHolder & > Failed()
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
LLVM_ABI DenseMap< BasicBlock *, ColorVector > colorEHFunclets(Function &F)
If an EH funclet personality is in use (see isFuncletEHPersonality), this will recompute which blocks...
constexpr bool isPowerOf2_64(uint64_t Value)
Return true if the argument is a power of two > 0 (64 bit edition.)
bool isa_and_nonnull(const Y &Val)
bool isScopedEHPersonality(EHPersonality Pers)
Returns true if this personality uses scope-style EH IR instructions: catchswitch,...
auto dyn_cast_or_null(const Y &Val)
GenericConvergenceVerifier< SSAContext > ConvergenceVerifier
LLVM_ABI void initializeVerifierLegacyPassPass(PassRegistry &)
constexpr bool isPowerOf2_32(uint32_t Value)
Return true if the argument is a power of two > 0.
bool isModSet(const ModRefInfo MRI)
void sort(IteratorTy Start, IteratorTy End)
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
FunctionAddr VTableAddr Count
LLVM_ABI EHPersonality classifyEHPersonality(const Value *Pers)
See if the given exception handling personality function is one that we understand.
iterator_range< SplittingIterator > split(StringRef Str, StringRef Separator)
Split the specified string over a separator and return a range-compatible iterable over its partition...
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
LLVM_ABI bool isValueProfileMD(const MDNode *ProfileData)
Checks if an MDNode contains value profiling Metadata.
LLVM_ABI raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
LLVM_ABI unsigned getNumBranchWeights(const MDNode &ProfileData)
AtomicOrdering
Atomic ordering for LLVM's memory model.
@ First
Helpers to iterate all locations in the MemoryEffectsBase class.
LLVM_ABI FunctionPass * createVerifierPass(bool FatalErrors=true)
FunctionAddr VTableAddr Next
DWARFExpression::Operation Op
ArrayRef(const T &OneElt) -> ArrayRef< T >
constexpr unsigned BitWidth
TinyPtrVector< BasicBlock * > ColorVector
LLVM_ABI const char * LLVMLoopEstimatedTripCount
Profile-based loop metadata that should be accessed only by using llvm::getLoopEstimatedTripCount and...
DenormalMode parseDenormalFPAttribute(StringRef Str)
Returns the denormal mode to use for inputs and outputs.
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
LLVM_ABI std::optional< RoundingMode > convertStrToRoundingMode(StringRef)
Returns a valid RoundingMode enumerator when given a string that is valid as input in constrained int...
LLVM_ABI std::unique_ptr< GCStrategy > getGCStrategy(const StringRef Name)
Lookup the GCStrategy object associated with the given gc name.
auto predecessors(const MachineBasicBlock *BB)
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
bool pred_empty(const BasicBlock *BB)
bool isHexDigit(char C)
Checks if character C is a hexadecimal numeric character.
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.
constexpr bool isCallableCC(CallingConv::ID CC)
LLVM_ABI bool verifyModule(const Module &M, raw_ostream *OS=nullptr, bool *BrokenDebugInfo=nullptr)
Check a module for errors.
AnalysisManager< Module > ModuleAnalysisManager
Convenience typedef for the Module analysis manager.
constexpr uint64_t value() const
This is a hole in the type system and should not be abused.
A special type used by analysis passes to provide an address that identifies that particular analysis...
static LLVM_ABI const char * SyntheticFunctionEntryCount
static LLVM_ABI const char * UnknownBranchWeightsMarker
static LLVM_ABI const char * ValueProfile
static LLVM_ABI const char * FunctionEntryCount
static LLVM_ABI const char * BranchWeights
uint32_t getTagID() const
Return the tag of this operand bundle as an integer.
void DebugInfoCheckFailed(const Twine &Message)
A debug info check failed.
VerifierSupport(raw_ostream *OS, const Module &M)
bool Broken
Track the brokenness of the module while recursively visiting.
void CheckFailed(const Twine &Message, const T1 &V1, const Ts &... Vs)
A check failed (with values to print).
bool BrokenDebugInfo
Broken debug info can be "recovered" from by stripping the debug info.
bool TreatBrokenDebugInfoAsError
Whether to treat broken debug info as an error.
void CheckFailed(const Twine &Message)
A check failed, so printout out the condition and the message.
void DebugInfoCheckFailed(const Twine &Message, const T1 &V1, const Ts &... Vs)
A debug info check failed (with values to print).