96#include "llvm/IR/IntrinsicsAArch64.h"
97#include "llvm/IR/IntrinsicsAMDGPU.h"
98#include "llvm/IR/IntrinsicsARM.h"
99#include "llvm/IR/IntrinsicsNVPTX.h"
100#include "llvm/IR/IntrinsicsWebAssembly.h"
138 cl::desc(
"Ensure that llvm.experimental.noalias.scope.decl for identical "
139 "scopes are not dominating"));
162 *
OS <<
"; ModuleID = '" << M->getModuleIdentifier() <<
"'\n";
175 V.printAsOperand(*
OS,
true,
MST);
180 void Write(
const DbgRecord *DR) {
196 *
OS <<
"declare_value";
217 template <
class T>
void Write(
const MDTupleTypedArrayWrapper<T> &MD) {
221 void Write(
const NamedMDNode *NMD) {
234 void Write(
const Comdat *
C) {
240 void Write(
const APInt *AI) {
246 void Write(
const unsigned i) { *
OS << i <<
'\n'; }
252 *
OS <<
A->getAsString() <<
'\n';
256 void Write(
const AttributeSet *AS) {
263 void Write(
const AttributeList *AL) {
269 void Write(Printable
P) { *
OS <<
P <<
'\n'; }
271 template <
typename T>
void Write(ArrayRef<T> Vs) {
272 for (
const T &V : Vs)
276 template <
typename T1,
typename... Ts>
277 void WriteTs(
const T1 &V1,
const Ts &... Vs) {
282 template <
typename... Ts>
void WriteTs() {}
291 *
OS << Message <<
'\n';
299 template <
typename T1,
typename... Ts>
309 *
OS << Message <<
'\n';
315 template <
typename T1,
typename... Ts>
347 Type *LandingPadResultTy;
354 bool HasDebugInfo =
false;
397 SawFrameEscape(
false), TBAAVerifyHelper(this) {
398 TreatBrokenDebugInfoAsError = ShouldTreatBrokenDebugInfoAsError;
401 bool hasBrokenDebugInfo()
const {
return BrokenDebugInfo; }
403 bool verify(
const Function &
F) {
404 llvm::TimeTraceScope timeScope(
"Verifier");
406 "An instance of this class only works with a specific module!");
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);
431 DT.recalculate(
const_cast<Function &
>(
F));
433 auto FailureCB = [
this](
const Twine &Message) {
434 this->CheckFailed(Message);
436 ConvergenceVerifyHelper.initialize(OS, FailureCB,
F);
441 verifySiblingFuncletUnwinds();
443 if (ConvergenceVerifyHelper.sawTokens())
444 ConvergenceVerifyHelper.verify(DT);
446 InstsInThisBlock.clear();
448 LandingPadResultTy =
nullptr;
449 SawFrameEscape =
false;
450 SiblingFuncletInfo.clear();
451 verifyNoAliasScopeDecl();
452 NoAliasScopeDecls.clear();
462 for (
const Function &
F : M)
463 if (
F.getIntrinsicID() == Intrinsic::experimental_deoptimize)
464 DeoptimizeDeclarations.push_back(&
F);
468 verifyFrameRecoverIndices();
469 for (
const GlobalVariable &GV :
M.globals())
470 visitGlobalVariable(GV);
472 for (
const GlobalAlias &GA :
M.aliases())
473 visitGlobalAlias(GA);
475 for (
const GlobalIFunc &GI :
M.ifuncs())
476 visitGlobalIFunc(GI);
478 for (
const NamedMDNode &NMD :
M.named_metadata())
479 visitNamedMDNode(NMD);
481 for (
const StringMapEntry<Comdat> &SMEC :
M.getComdatSymbolTable())
482 visitComdat(SMEC.getValue());
486 visitModuleCommandLines();
487 visitModuleErrnoTBAA();
489 verifyCompileUnits();
491 verifyDeoptimizeCallingConvs();
492 DISubprogramAttachments.clear();
498 enum class AreDebugLocsAllowed {
No,
Yes };
502 enum class RangeLikeMetadataKind {
509 void visitGlobalValue(
const GlobalValue &GV);
510 void visitGlobalVariable(
const GlobalVariable &GV);
511 void visitGlobalAlias(
const GlobalAlias &GA);
512 void visitGlobalIFunc(
const GlobalIFunc &GI);
513 void visitAliaseeSubExpr(
const GlobalAlias &
A,
const Constant &
C);
514 void visitAliaseeSubExpr(SmallPtrSetImpl<const GlobalAlias *> &Visited,
515 const GlobalAlias &
A,
const Constant &
C);
516 void visitNamedMDNode(
const NamedMDNode &NMD);
517 void visitMDNode(
const MDNode &MD, AreDebugLocsAllowed AllowLocs);
518 void visitMetadataAsValue(
const MetadataAsValue &MD, Function *
F);
519 void visitValueAsMetadata(
const ValueAsMetadata &MD, Function *
F);
520 void visitDIArgList(
const DIArgList &AL, Function *
F);
521 void visitComdat(
const Comdat &
C);
522 void visitModuleIdents();
523 void visitModuleCommandLines();
524 void visitModuleErrnoTBAA();
525 void visitModuleFlags();
526 void visitModuleFlag(
const MDNode *
Op,
527 DenseMap<const MDString *, const MDNode *> &SeenIDs,
528 SmallVectorImpl<const MDNode *> &Requirements);
529 void visitModuleFlagCGProfileEntry(
const MDOperand &MDO);
530 void visitFunction(
const Function &
F);
531 void visitBasicBlock(BasicBlock &BB);
532 void verifyRangeLikeMetadata(
const Value &V,
const MDNode *
Range,
Type *Ty,
533 RangeLikeMetadataKind Kind);
534 void visitRangeMetadata(Instruction &
I, MDNode *
Range,
Type *Ty);
535 void visitNoFPClassMetadata(Instruction &
I, MDNode *
Range,
Type *Ty);
536 void visitNoaliasAddrspaceMetadata(Instruction &
I, MDNode *
Range,
Type *Ty);
537 void visitDereferenceableMetadata(Instruction &
I, MDNode *MD);
538 void visitNofreeMetadata(Instruction &
I, MDNode *MD);
539 void visitProfMetadata(Instruction &
I, MDNode *MD);
540 void visitCallStackMetadata(MDNode *MD);
541 void visitMemProfMetadata(Instruction &
I, MDNode *MD);
542 void visitCallsiteMetadata(Instruction &
I, MDNode *MD);
543 void visitCalleeTypeMetadata(Instruction &
I, MDNode *MD);
544 void visitDIAssignIDMetadata(Instruction &
I, MDNode *MD);
545 void visitMMRAMetadata(Instruction &
I, MDNode *MD);
546 void visitAnnotationMetadata(MDNode *Annotation);
547 void visitAliasScopeMetadata(
const MDNode *MD);
548 void visitAliasScopeListMetadata(
const MDNode *MD);
549 void visitAccessGroupMetadata(
const MDNode *MD);
550 void visitCapturesMetadata(Instruction &
I,
const MDNode *Captures);
551 void visitAllocTokenMetadata(Instruction &
I, MDNode *MD);
552 void visitInlineHistoryMetadata(Instruction &
I, MDNode *MD);
554 template <
class Ty>
bool isValidMetadataArray(
const MDTuple &
N);
555#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) void visit##CLASS(const CLASS &N);
556#include "llvm/IR/Metadata.def"
557 void visitDIType(
const DIType &
N);
558 void visitDIScope(
const DIScope &
N);
582 void checkPtrToAddr(
Type *SrcTy,
Type *DestTy,
const Value &V);
587 void visitPHINode(
PHINode &PN);
596 void visitVAArgInst(
VAArgInst &VAA) { visitInstruction(VAA); }
597 void visitCallInst(CallInst &CI);
598 void visitInvokeInst(InvokeInst &
II);
599 void visitGetElementPtrInst(GetElementPtrInst &
GEP);
600 void visitLoadInst(LoadInst &LI);
601 void visitStoreInst(StoreInst &SI);
602 void verifyDominatesUse(Instruction &
I,
unsigned i);
603 void visitInstruction(Instruction &
I);
604 void visitTerminator(Instruction &
I);
605 void visitCondBrInst(CondBrInst &BI);
606 void visitReturnInst(ReturnInst &RI);
607 void visitSwitchInst(SwitchInst &SI);
608 void visitIndirectBrInst(IndirectBrInst &BI);
609 void visitCallBrInst(CallBrInst &CBI);
610 void visitSelectInst(SelectInst &SI);
611 void visitUserOp1(Instruction &
I);
612 void visitUserOp2(Instruction &
I) { visitUserOp1(
I); }
614 void visitConstrainedFPIntrinsic(ConstrainedFPIntrinsic &FPI);
615 void visitVPIntrinsic(VPIntrinsic &VPI);
616 void visitDbgLabelIntrinsic(StringRef Kind, DbgLabelInst &DLI);
617 void visitAtomicCmpXchgInst(AtomicCmpXchgInst &CXI);
618 void visitAtomicRMWInst(AtomicRMWInst &RMWI);
619 void visitFenceInst(FenceInst &FI);
620 void visitAllocaInst(AllocaInst &AI);
621 void visitExtractValueInst(ExtractValueInst &EVI);
622 void visitInsertValueInst(InsertValueInst &IVI);
623 void visitEHPadPredecessors(Instruction &
I);
624 void visitLandingPadInst(LandingPadInst &LPI);
625 void visitResumeInst(ResumeInst &RI);
626 void visitCatchPadInst(CatchPadInst &CPI);
627 void visitCatchReturnInst(CatchReturnInst &CatchReturn);
628 void visitCleanupPadInst(CleanupPadInst &CPI);
629 void visitFuncletPadInst(FuncletPadInst &FPI);
630 void visitCatchSwitchInst(CatchSwitchInst &CatchSwitch);
631 void visitCleanupReturnInst(CleanupReturnInst &CRI);
633 void verifySwiftErrorCall(CallBase &
Call,
const Value *SwiftErrorVal);
634 void verifySwiftErrorValue(
const Value *SwiftErrorVal);
635 void verifyTailCCMustTailAttrs(
const AttrBuilder &Attrs, StringRef
Context);
636 void verifyMustTailCall(CallInst &CI);
637 bool verifyAttributeCount(AttributeList Attrs,
unsigned Params);
638 void verifyAttributeTypes(AttributeSet Attrs,
const Value *V);
639 void verifyParameterAttrs(AttributeSet Attrs,
Type *Ty,
const Value *V);
640 void checkUnsignedBaseTenFuncAttr(AttributeList Attrs, StringRef Attr,
642 void verifyFunctionAttrs(FunctionType *FT, AttributeList Attrs,
643 const Value *V,
bool IsIntrinsic,
bool IsInlineAsm);
644 void verifyFunctionMetadata(
ArrayRef<std::pair<unsigned, MDNode *>> MDs);
645 void verifyUnknownProfileMetadata(MDNode *MD);
646 void visitConstantExprsRecursively(
const Constant *EntryC);
647 void visitConstantExpr(
const ConstantExpr *CE);
648 void visitConstantPtrAuth(
const ConstantPtrAuth *CPA);
649 void verifyInlineAsmCall(
const CallBase &
Call);
650 void verifyStatepoint(
const CallBase &
Call);
651 void verifyFrameRecoverIndices();
652 void verifySiblingFuncletUnwinds();
654 void verifyFragmentExpression(
const DbgVariableRecord &
I);
655 template <
typename ValueOrMetadata>
656 void verifyFragmentExpression(
const DIVariable &V,
658 ValueOrMetadata *
Desc);
659 void verifyFnArgs(
const DbgVariableRecord &DVR);
660 void verifyNotEntryValue(
const DbgVariableRecord &
I);
663 void verifyCompileUnits();
667 void verifyDeoptimizeCallingConvs();
669 void verifyAttachedCallBundle(
const CallBase &
Call,
670 const OperandBundleUse &BU);
673 void verifyNoAliasScopeDecl();
679#define Check(C, ...) \
682 CheckFailed(__VA_ARGS__); \
689#define CheckDI(C, ...) \
692 DebugInfoCheckFailed(__VA_ARGS__); \
700 CheckDI(
I.DebugMarker->MarkedInstr == &
I,
701 "Instruction has invalid DebugMarker", &
I);
703 "PHI Node must not have any attached DbgRecords", &
I);
706 "DbgRecord had invalid DebugMarker", &
I, &DR);
709 visitMDNode(*
Loc, AreDebugLocsAllowed::Yes);
714 verifyFragmentExpression(*DVR);
715 verifyNotEntryValue(*DVR);
722void Verifier::visit(Instruction &
I) {
724 for (
unsigned i = 0, e =
I.getNumOperands(); i != e; ++i)
725 Check(
I.getOperand(i) !=
nullptr,
"Operand is null", &
I);
737 while (!WorkList.
empty()) {
739 if (!Visited.
insert(Cur).second)
746void Verifier::visitGlobalValue(
const GlobalValue &GV) {
748 "Global is external, but doesn't have external or weak linkage!", &GV);
751 if (
const MDNode *Associated =
752 GO->getMetadata(LLVMContext::MD_associated)) {
753 Check(Associated->getNumOperands() == 1,
754 "associated metadata must have one operand", &GV, Associated);
755 const Metadata *
Op = Associated->getOperand(0).get();
756 Check(
Op,
"associated metadata must have a global value", GO, Associated);
759 Check(VM,
"associated metadata must be ValueAsMetadata", GO, Associated);
762 "associated value must be pointer typed", GV, Associated);
764 const Value *Stripped = VM->getValue()->stripPointerCastsAndAliases();
766 "associated metadata must point to a GlobalObject", GO, Stripped);
767 Check(Stripped != GO,
768 "global values should not associate to themselves", GO,
774 if (
const MDNode *AbsoluteSymbol =
775 GO->getMetadata(LLVMContext::MD_absolute_symbol)) {
776 verifyRangeLikeMetadata(*GO, AbsoluteSymbol,
777 DL.getIntPtrType(GO->getType()),
778 RangeLikeMetadataKind::AbsoluteSymbol);
781 if (GO->hasMetadata(LLVMContext::MD_implicit_ref)) {
782 Check(!GO->isDeclaration(),
783 "ref metadata must not be placed on a declaration", GO);
786 GO->getMetadata(LLVMContext::MD_implicit_ref, MDs);
787 for (
const MDNode *MD : MDs) {
788 Check(MD->getNumOperands() == 1,
"ref metadata must have one operand",
792 Check(VM,
"ref metadata must be ValueAsMetadata", GO, MD);
795 "ref value must be pointer typed", GV, MD);
799 "ref metadata must point to a GlobalObject", GO, Stripped);
800 Check(Stripped != GO,
"values should not reference themselves", GO,
808 "Only global variables can have appending linkage!", &GV);
813 "Only global arrays can have appending linkage!", GVar);
817 Check(!GV.
hasComdat(),
"Declaration may not be in a Comdat!", &GV);
821 "dllexport GlobalValue must have default or protected visibility",
826 "dllimport GlobalValue must have default visibility", &GV);
827 Check(!GV.
isDSOLocal(),
"GlobalValue with DLLImport Storage is dso_local!",
833 "Global is marked as dllimport, but not external", &GV);
838 "GlobalValue with local linkage or non-default "
839 "visibility must be dso_local!",
844 if (!
I->getParent() || !
I->getParent()->getParent())
845 CheckFailed(
"Global is referenced by parentless instruction!", &GV, &M,
847 else if (
I->getParent()->getParent()->getParent() != &M)
848 CheckFailed(
"Global is referenced in a different module!", &GV, &M,
I,
849 I->getParent()->getParent(),
850 I->getParent()->getParent()->getParent());
853 if (
F->getParent() != &M)
854 CheckFailed(
"Global is used by function in a different module", &GV, &M,
862void Verifier::visitGlobalVariable(
const GlobalVariable &GV) {
866 Check(
A->value() <= Value::MaximumAlignment,
867 "huge alignment values are unsupported", &GV);
872 "Global variable initializer type does not match global "
876 "Global variable initializer must be sized", &GV);
882 "'common' global must have a zero initializer!", &GV);
885 Check(!GV.
hasComdat(),
"'common' global may not be in a Comdat!", &GV);
890 GV.
getName() ==
"llvm.global_dtors")) {
892 "invalid linkage for intrinsic global variable", &GV);
894 "invalid uses of intrinsic global variable", &GV);
901 PointerType::get(
Context,
DL.getProgramAddressSpace());
905 "wrong type for intrinsic global variable", &GV);
907 "the third field of the element type is mandatory, "
908 "specify ptr null to migrate from the obsoleted 2-field form");
916 GV.
getName() ==
"llvm.compiler.used")) {
918 "invalid linkage for intrinsic global variable", &GV);
920 "invalid uses of intrinsic global variable", &GV);
924 Check(PTy,
"wrong type for intrinsic global variable", &GV);
928 Check(InitArray,
"wrong initializer for intrinsic global variable",
934 Twine(
"invalid ") + GV.
getName() +
" member", V);
936 Twine(
"members of ") + GV.
getName() +
" must be named", V);
945 for (
auto *MD : MDs) {
947 visitDIGlobalVariableExpression(*GVE);
949 CheckDI(
false,
"!dbg attachment of global variable must be a "
950 "DIGlobalVariableExpression");
960 "Global @" + GV.
getName() +
" has illegal target extension type",
969 "Global variable is too large to fit into the address space", &GV,
973 visitGlobalValue(GV);
980 visitGlobalValue(GV);
983void Verifier::visitAliaseeSubExpr(
const GlobalAlias &GA,
const Constant &
C) {
984 SmallPtrSet<const GlobalAlias*, 4> Visited;
986 visitAliaseeSubExpr(Visited, GA,
C);
989void Verifier::visitAliaseeSubExpr(SmallPtrSetImpl<const GlobalAlias*> &Visited,
990 const GlobalAlias &GA,
const Constant &
C) {
994 "available_externally alias must point to available_externally "
1005 Check(Visited.
insert(GA2).second,
"Aliases cannot form a cycle", &GA);
1007 Check(!GA2->isInterposable(),
1008 "Alias cannot point to an interposable alias", &GA);
1017 visitConstantExprsRecursively(CE);
1019 for (
const Use &U :
C.operands()) {
1022 visitAliaseeSubExpr(Visited, GA, *GA2->getAliasee());
1024 visitAliaseeSubExpr(Visited, GA, *C2);
1028void Verifier::visitGlobalAlias(
const GlobalAlias &GA) {
1030 "Alias should have private, internal, linkonce, weak, linkonce_odr, "
1031 "weak_odr, external, or available_externally linkage!",
1034 Check(Aliasee,
"Aliasee cannot be NULL!", &GA);
1036 "Alias and aliasee types should match!", &GA);
1039 "Aliasee should be either GlobalValue or ConstantExpr", &GA);
1041 visitAliaseeSubExpr(GA, *Aliasee);
1043 visitGlobalValue(GA);
1046void Verifier::visitGlobalIFunc(
const GlobalIFunc &GI) {
1047 visitGlobalValue(GI);
1051 for (
const auto &
I : MDs) {
1052 CheckDI(
I.first != LLVMContext::MD_dbg,
1053 "an ifunc may not have a !dbg attachment", &GI);
1054 Check(
I.first != LLVMContext::MD_prof,
1055 "an ifunc may not have a !prof attachment", &GI);
1056 visitMDNode(*
I.second, AreDebugLocsAllowed::No);
1060 "IFunc should have private, internal, linkonce, weak, linkonce_odr, "
1061 "weak_odr, or external linkage!",
1066 Check(Resolver,
"IFunc must have a Function resolver", &GI);
1068 "IFunc resolver must be a definition", &GI);
1075 "IFunc resolver must return a pointer", &GI);
1078 "IFunc resolver has incorrect type", &GI);
1081void Verifier::visitNamedMDNode(
const NamedMDNode &NMD) {
1086 "unrecognized named metadata node in the llvm.dbg namespace", &NMD);
1087 for (
const MDNode *MD : NMD.
operands()) {
1088 if (NMD.
getName() ==
"llvm.dbg.cu")
1094 visitMDNode(*MD, AreDebugLocsAllowed::Yes);
1098void Verifier::visitMDNode(
const MDNode &MD, AreDebugLocsAllowed AllowLocs) {
1101 if (!MDNodes.
insert(&MD).second)
1105 "MDNode context does not match Module context!", &MD);
1110 case Metadata::MDTupleKind:
1112#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) \
1113 case Metadata::CLASS##Kind: \
1114 visit##CLASS(cast<CLASS>(MD)); \
1116#include "llvm/IR/Metadata.def"
1125 "DILocation not allowed within this metadata node", &MD,
Op);
1127 visitMDNode(*
N, AllowLocs);
1131 visitValueAsMetadata(*V,
nullptr);
1143 "Expected second operand to be an integer constant of type i32 or "
1153void Verifier::visitValueAsMetadata(
const ValueAsMetadata &MD, Function *
F) {
1156 "Unexpected metadata round-trip through values", &MD, MD.
getValue());
1162 Check(
F,
"function-local metadata used outside a function", L);
1168 Check(
I->getParent(),
"function-local metadata not in basic block", L,
I);
1174 assert(ActualF &&
"Unimplemented function local metadata case!");
1176 Check(ActualF ==
F,
"function-local metadata used in wrong function", L);
1179void Verifier::visitDIArgList(
const DIArgList &AL, Function *
F) {
1180 for (
const ValueAsMetadata *VAM :
AL.getArgs())
1181 visitValueAsMetadata(*VAM,
F);
1184void Verifier::visitMetadataAsValue(
const MetadataAsValue &MDV, Function *
F) {
1187 visitMDNode(*
N, AreDebugLocsAllowed::No);
1193 if (!MDNodes.
insert(MD).second)
1197 visitValueAsMetadata(*V,
F);
1200 visitDIArgList(*AL,
F);
1208void Verifier::visitDILocation(
const DILocation &
N) {
1210 "location requires a valid scope", &
N,
N.getRawScope());
1211 if (
auto *IA =
N.getRawInlinedAt())
1214 CheckDI(
SP->isDefinition(),
"scope points into the type hierarchy", &
N);
1217void Verifier::visitGenericDINode(
const GenericDINode &
N) {
1221void Verifier::visitDIScope(
const DIScope &
N) {
1222 if (
auto *
F =
N.getRawFile())
1226void Verifier::visitDIType(
const DIType &
N) {
1229 CheckDI(
N.getRawFile() ||
N.getLine() == 0,
"line specified with no file", &
N,
1233void Verifier::visitDISubrangeType(
const DISubrangeType &
N) {
1236 CheckDI(
N.getTag() == dwarf::DW_TAG_subrange_type,
"invalid tag", &
N);
1239 auto *LBound =
N.getRawLowerBound();
1243 "LowerBound must be signed constant or DIVariable or DIExpression or "
1246 auto *UBound =
N.getRawUpperBound();
1250 "UpperBound must be signed constant or DIVariable or DIExpression or "
1253 auto *Stride =
N.getRawStride();
1256 "Stride must be signed constant or DIVariable or DIExpression", &
N);
1257 auto *Bias =
N.getRawBias();
1260 "Bias must be signed constant or DIVariable or DIExpression", &
N);
1262 auto *
Size =
N.getRawSizeInBits();
1264 "SizeInBits must be a constant");
1267void Verifier::visitDISubrange(
const DISubrange &
N) {
1268 CheckDI(
N.getTag() == dwarf::DW_TAG_subrange_type,
"invalid tag", &
N);
1269 CheckDI(!
N.getRawCountNode() || !
N.getRawUpperBound(),
1270 "Subrange can have any one of count or upperBound", &
N);
1271 auto *CBound =
N.getRawCountNode();
1274 "Count must be signed constant or DIVariable or DIExpression", &
N);
1275 auto Count =
N.getCount();
1278 "invalid subrange count", &
N);
1279 auto *LBound =
N.getRawLowerBound();
1282 "LowerBound must be signed constant or DIVariable or DIExpression",
1284 auto *UBound =
N.getRawUpperBound();
1287 "UpperBound must be signed constant or DIVariable or DIExpression",
1289 auto *Stride =
N.getRawStride();
1292 "Stride must be signed constant or DIVariable or DIExpression", &
N);
1295void Verifier::visitDIGenericSubrange(
const DIGenericSubrange &
N) {
1296 CheckDI(
N.getTag() == dwarf::DW_TAG_generic_subrange,
"invalid tag", &
N);
1297 CheckDI(!
N.getRawCountNode() || !
N.getRawUpperBound(),
1298 "GenericSubrange can have any one of count or upperBound", &
N);
1299 auto *CBound =
N.getRawCountNode();
1301 "Count must be signed constant or DIVariable or DIExpression", &
N);
1302 auto *LBound =
N.getRawLowerBound();
1303 CheckDI(LBound,
"GenericSubrange must contain lowerBound", &
N);
1305 "LowerBound must be signed constant or DIVariable or DIExpression",
1307 auto *UBound =
N.getRawUpperBound();
1309 "UpperBound must be signed constant or DIVariable or DIExpression",
1311 auto *Stride =
N.getRawStride();
1312 CheckDI(Stride,
"GenericSubrange must contain stride", &
N);
1314 "Stride must be signed constant or DIVariable or DIExpression", &
N);
1317void Verifier::visitDIEnumerator(
const DIEnumerator &
N) {
1318 CheckDI(
N.getTag() == dwarf::DW_TAG_enumerator,
"invalid tag", &
N);
1321void Verifier::visitDIBasicType(
const DIBasicType &
N) {
1324 CheckDI(
N.getTag() == dwarf::DW_TAG_base_type ||
1325 N.getTag() == dwarf::DW_TAG_unspecified_type ||
1326 N.getTag() == dwarf::DW_TAG_string_type,
1329 auto *
Size =
N.getRawSizeInBits();
1331 "SizeInBits must be a constant");
1334void Verifier::visitDIFixedPointType(
const DIFixedPointType &
N) {
1335 visitDIBasicType(
N);
1337 CheckDI(
N.getTag() == dwarf::DW_TAG_base_type,
"invalid tag", &
N);
1338 CheckDI(
N.getEncoding() == dwarf::DW_ATE_signed_fixed ||
1339 N.getEncoding() == dwarf::DW_ATE_unsigned_fixed,
1340 "invalid encoding", &
N);
1344 "invalid kind", &
N);
1346 N.getFactorRaw() == 0,
1347 "factor should be 0 for rationals", &
N);
1349 (
N.getNumeratorRaw() == 0 &&
N.getDenominatorRaw() == 0),
1350 "numerator and denominator should be 0 for non-rationals", &
N);
1353void Verifier::visitDIStringType(
const DIStringType &
N) {
1356 CheckDI(
N.getTag() == dwarf::DW_TAG_string_type,
"invalid tag", &
N);
1357 CheckDI(!(
N.isBigEndian() &&
N.isLittleEndian()),
"has conflicting flags",
1361void Verifier::visitDIDerivedType(
const DIDerivedType &
N) {
1365 CheckDI(
N.getTag() == dwarf::DW_TAG_typedef ||
1366 N.getTag() == dwarf::DW_TAG_pointer_type ||
1367 N.getTag() == dwarf::DW_TAG_ptr_to_member_type ||
1368 N.getTag() == dwarf::DW_TAG_reference_type ||
1369 N.getTag() == dwarf::DW_TAG_rvalue_reference_type ||
1370 N.getTag() == dwarf::DW_TAG_const_type ||
1371 N.getTag() == dwarf::DW_TAG_immutable_type ||
1372 N.getTag() == dwarf::DW_TAG_volatile_type ||
1373 N.getTag() == dwarf::DW_TAG_restrict_type ||
1374 N.getTag() == dwarf::DW_TAG_atomic_type ||
1375 N.getTag() == dwarf::DW_TAG_LLVM_ptrauth_type ||
1376 N.getTag() == dwarf::DW_TAG_member ||
1377 (
N.getTag() == dwarf::DW_TAG_variable &&
N.isStaticMember()) ||
1378 N.getTag() == dwarf::DW_TAG_inheritance ||
1379 N.getTag() == dwarf::DW_TAG_friend ||
1380 N.getTag() == dwarf::DW_TAG_set_type ||
1381 N.getTag() == dwarf::DW_TAG_template_alias,
1383 if (
N.getTag() == dwarf::DW_TAG_ptr_to_member_type) {
1384 CheckDI(
isType(
N.getRawExtraData()),
"invalid pointer to member type", &
N,
1385 N.getRawExtraData());
1386 }
else if (
N.getTag() == dwarf::DW_TAG_template_alias) {
1388 N.getRawExtraData());
1389 }
else if (
N.getTag() == dwarf::DW_TAG_inheritance ||
1390 N.getTag() == dwarf::DW_TAG_member ||
1391 N.getTag() == dwarf::DW_TAG_variable) {
1392 auto *ExtraData =
N.getRawExtraData();
1393 auto IsValidExtraData = [&]() {
1394 if (ExtraData ==
nullptr)
1400 if (Tuple->getNumOperands() != 1)
1407 "extraData must be ConstantAsMetadata, MDString, DIObjCProperty, "
1408 "or MDTuple with single ConstantAsMetadata operand",
1412 if (
N.getTag() == dwarf::DW_TAG_set_type) {
1413 if (
auto *
T =
N.getRawBaseType()) {
1418 (Enum &&
Enum->getTag() == dwarf::DW_TAG_enumeration_type) ||
1419 (Subrange &&
Subrange->getTag() == dwarf::DW_TAG_subrange_type) ||
1420 (
Basic && (
Basic->getEncoding() == dwarf::DW_ATE_unsigned ||
1421 Basic->getEncoding() == dwarf::DW_ATE_signed ||
1422 Basic->getEncoding() == dwarf::DW_ATE_unsigned_char ||
1423 Basic->getEncoding() == dwarf::DW_ATE_signed_char ||
1424 Basic->getEncoding() == dwarf::DW_ATE_boolean)),
1425 "invalid set base type", &
N,
T);
1430 N.getRawBaseType());
1432 if (
N.getDWARFAddressSpace()) {
1433 CheckDI(
N.getTag() == dwarf::DW_TAG_pointer_type ||
1434 N.getTag() == dwarf::DW_TAG_reference_type ||
1435 N.getTag() == dwarf::DW_TAG_rvalue_reference_type,
1436 "DWARF address space only applies to pointer or reference types",
1440 auto *
Size =
N.getRawSizeInBits();
1443 "SizeInBits must be a constant or DIVariable or DIExpression");
1448 return ((Flags & DINode::FlagLValueReference) &&
1449 (Flags & DINode::FlagRValueReference)) ||
1450 ((Flags & DINode::FlagTypePassByValue) &&
1451 (Flags & DINode::FlagTypePassByReference));
1454void Verifier::visitTemplateParams(
const MDNode &
N,
const Metadata &RawParams) {
1456 CheckDI(Params,
"invalid template params", &
N, &RawParams);
1463void Verifier::visitDICompositeType(
const DICompositeType &
N) {
1467 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type ||
1468 N.getTag() == dwarf::DW_TAG_structure_type ||
1469 N.getTag() == dwarf::DW_TAG_union_type ||
1470 N.getTag() == dwarf::DW_TAG_enumeration_type ||
1471 N.getTag() == dwarf::DW_TAG_class_type ||
1472 N.getTag() == dwarf::DW_TAG_variant_part ||
1473 N.getTag() == dwarf::DW_TAG_variant ||
1474 N.getTag() == dwarf::DW_TAG_namelist,
1478 N.getRawBaseType());
1481 "invalid composite elements", &
N,
N.getRawElements());
1483 N.getRawVTableHolder());
1485 "invalid reference flags", &
N);
1486 unsigned DIBlockByRefStruct = 1 << 4;
1487 CheckDI((
N.getFlags() & DIBlockByRefStruct) == 0,
1488 "DIBlockByRefStruct on DICompositeType is no longer supported", &
N);
1490 "DISubprogram contains null entry in `elements` field", &
N);
1493 const DINodeArray
Elements =
N.getElements();
1495 Elements[0]->getTag() == dwarf::DW_TAG_subrange_type,
1496 "invalid vector, expected one element of type subrange", &
N);
1499 if (
auto *Params =
N.getRawTemplateParams())
1500 visitTemplateParams(
N, *Params);
1502 if (
auto *
D =
N.getRawDiscriminator()) {
1504 "discriminator can only appear on variant part");
1507 if (
N.getRawDataLocation()) {
1508 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1509 "dataLocation can only appear in array type");
1512 if (
N.getRawAssociated()) {
1513 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1514 "associated can only appear in array type");
1517 if (
N.getRawAllocated()) {
1518 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1519 "allocated can only appear in array type");
1522 if (
N.getRawRank()) {
1523 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1524 "rank can only appear in array type");
1527 if (
N.getTag() == dwarf::DW_TAG_array_type) {
1528 CheckDI(
N.getRawBaseType(),
"array types must have a base type", &
N);
1531 auto *
Size =
N.getRawSizeInBits();
1534 "SizeInBits must be a constant or DIVariable or DIExpression");
1537void Verifier::visitDISubroutineType(
const DISubroutineType &
N) {
1539 CheckDI(
N.getTag() == dwarf::DW_TAG_subroutine_type,
"invalid tag", &
N);
1540 if (
auto *Types =
N.getRawTypeArray()) {
1542 for (
Metadata *Ty :
N.getTypeArray()->operands()) {
1543 CheckDI(
isType(Ty),
"invalid subroutine type ref", &
N, Types, Ty);
1547 "invalid reference flags", &
N);
1550void Verifier::visitDIFile(
const DIFile &
N) {
1551 CheckDI(
N.getTag() == dwarf::DW_TAG_file_type,
"invalid tag", &
N);
1552 std::optional<DIFile::ChecksumInfo<StringRef>> Checksum =
N.getChecksum();
1554 CheckDI(Checksum->Kind <= DIFile::ChecksumKind::CSK_Last,
1555 "invalid checksum kind", &
N);
1557 switch (Checksum->Kind) {
1568 CheckDI(Checksum->Value.size() ==
Size,
"invalid checksum length", &
N);
1570 "invalid checksum", &
N);
1574void Verifier::visitDICompileUnit(
const DICompileUnit &
N) {
1575 CheckDI(
N.isDistinct(),
"compile units must be distinct", &
N);
1576 CheckDI(
N.getTag() == dwarf::DW_TAG_compile_unit,
"invalid tag", &
N);
1582 CheckDI(!
N.getFile()->getFilename().empty(),
"invalid filename", &
N,
1586 "invalid emission kind", &
N);
1588 if (
auto *Array =
N.getRawEnumTypes()) {
1590 for (
Metadata *
Op :
N.getEnumTypes()->operands()) {
1592 CheckDI(Enum &&
Enum->getTag() == dwarf::DW_TAG_enumeration_type,
1593 "invalid enum type", &
N,
N.getEnumTypes(),
Op);
1595 "function-local enum in a DICompileUnit's enum list", &
N,
1596 N.getEnumTypes(),
Op);
1599 if (
auto *Array =
N.getRawRetainedTypes()) {
1601 for (
Metadata *
Op :
N.getRetainedTypes()->operands()) {
1605 "invalid retained type", &
N,
Op);
1608 if (
auto *Array =
N.getRawGlobalVariables()) {
1610 for (
Metadata *
Op :
N.getGlobalVariables()->operands()) {
1612 "invalid global variable ref", &
N,
Op);
1615 if (
auto *Array =
N.getRawImportedEntities()) {
1617 for (
Metadata *
Op :
N.getImportedEntities()->operands()) {
1619 CheckDI(IE,
"invalid imported entity ref", &
N,
Op);
1621 "function-local imports are not allowed in a DICompileUnit's "
1622 "imported entities list",
1626 if (
auto *Array =
N.getRawMacros()) {
1635void Verifier::visitDISubprogram(
const DISubprogram &
N) {
1636 CheckDI(
N.getTag() == dwarf::DW_TAG_subprogram,
"invalid tag", &
N);
1638 if (
auto *
F =
N.getRawFile())
1641 CheckDI(
N.getLine() == 0,
"line specified with no file", &
N,
N.getLine());
1642 if (
auto *
T =
N.getRawType())
1644 CheckDI(
isType(
N.getRawContainingType()),
"invalid containing type", &
N,
1645 N.getRawContainingType());
1646 if (
auto *Params =
N.getRawTemplateParams())
1647 visitTemplateParams(
N, *Params);
1648 if (
auto *S =
N.getRawDeclaration())
1650 "invalid subprogram declaration", &
N, S);
1651 if (
auto *RawNode =
N.getRawRetainedNodes()) {
1653 CheckDI(Node,
"invalid retained nodes list", &
N, RawNode);
1655 DenseMap<unsigned, DILocalVariable *>
Args;
1657 CheckDI(
Op,
"nullptr in retained nodes", &
N, Node);
1659 auto True = [](
const Metadata *) {
return true; };
1660 auto False = [](
const Metadata *) {
return false; };
1661 bool IsTypeCorrect = DISubprogram::visitRetainedNode<bool>(
1662 Op, True, True, True, True, False);
1664 "invalid retained nodes, expected DILocalVariable, DILabel, "
1665 "DIImportedEntity or DIType",
1672 "invalid retained nodes, retained node is not local", &
N, Node,
1675 DISubprogram *RetainedNodeSP = RetainedNodeScope->getSubprogram();
1676 DICompileUnit *RetainedNodeUnit =
1677 RetainedNodeSP ? RetainedNodeSP->getUnit() :
nullptr;
1679 RetainedNodeSP == &
N,
1680 "invalid retained nodes, retained node does not belong to subprogram",
1681 &
N, Node, RetainedNode, RetainedNodeScope, RetainedNodeSP,
1687 if (
unsigned ArgNum = DV->getArg()) {
1689 CheckDI(Inserted || DV == ArgI->second,
1690 "invalid retained nodes, more than one local variable with the "
1691 "same argument index",
1692 &
N,
N.getUnit(), Node, RetainedNode, Args[ArgNum]);
1697 "invalid reference flags", &
N);
1699 auto *
Unit =
N.getRawUnit();
1700 if (
N.isDefinition()) {
1702 CheckDI(
N.isDistinct(),
"subprogram definitions must be distinct", &
N);
1703 CheckDI(Unit,
"subprogram definitions must have a compile unit", &
N);
1708 if (CT && CT->getRawIdentifier() &&
1709 M.getContext().isODRUniquingDebugTypes())
1711 "definition subprograms cannot be nested within DICompositeType "
1712 "when enabling ODR",
1716 CheckDI(!Unit,
"subprogram declarations must not have a compile unit", &
N);
1718 "subprogram declaration must not have a declaration field");
1721 if (
auto *RawThrownTypes =
N.getRawThrownTypes()) {
1723 CheckDI(ThrownTypes,
"invalid thrown types list", &
N, RawThrownTypes);
1729 if (
N.areAllCallsDescribed())
1731 "DIFlagAllCallsDescribed must be attached to a definition");
1734void Verifier::visitDILexicalBlockBase(
const DILexicalBlockBase &
N) {
1735 CheckDI(
N.getTag() == dwarf::DW_TAG_lexical_block,
"invalid tag", &
N);
1737 "invalid local scope", &
N,
N.getRawScope());
1739 CheckDI(
SP->isDefinition(),
"scope points into the type hierarchy", &
N);
1742void Verifier::visitDILexicalBlock(
const DILexicalBlock &
N) {
1743 visitDILexicalBlockBase(
N);
1746 "cannot have column info without line info", &
N);
1749void Verifier::visitDILexicalBlockFile(
const DILexicalBlockFile &
N) {
1750 visitDILexicalBlockBase(
N);
1753void Verifier::visitDICommonBlock(
const DICommonBlock &
N) {
1754 CheckDI(
N.getTag() == dwarf::DW_TAG_common_block,
"invalid tag", &
N);
1755 if (
auto *S =
N.getRawScope())
1757 if (
auto *S =
N.getRawDecl())
1761void Verifier::visitDINamespace(
const DINamespace &
N) {
1762 CheckDI(
N.getTag() == dwarf::DW_TAG_namespace,
"invalid tag", &
N);
1763 if (
auto *S =
N.getRawScope())
1767void Verifier::visitDIMacro(
const DIMacro &
N) {
1770 "invalid macinfo type", &
N);
1771 CheckDI(!
N.getName().empty(),
"anonymous macro", &
N);
1772 if (!
N.getValue().empty()) {
1773 assert(
N.getValue().data()[0] !=
' ' &&
"Macro value has a space prefix");
1777void Verifier::visitDIMacroFile(
const DIMacroFile &
N) {
1779 "invalid macinfo type", &
N);
1780 if (
auto *
F =
N.getRawFile())
1783 if (
auto *Array =
N.getRawElements()) {
1785 for (
Metadata *
Op :
N.getElements()->operands()) {
1791void Verifier::visitDIModule(
const DIModule &
N) {
1792 CheckDI(
N.getTag() == dwarf::DW_TAG_module,
"invalid tag", &
N);
1793 CheckDI(!
N.getName().empty(),
"anonymous module", &
N);
1796void Verifier::visitDITemplateParameter(
const DITemplateParameter &
N) {
1800void Verifier::visitDITemplateTypeParameter(
const DITemplateTypeParameter &
N) {
1801 visitDITemplateParameter(
N);
1803 CheckDI(
N.getTag() == dwarf::DW_TAG_template_type_parameter,
"invalid tag",
1807void Verifier::visitDITemplateValueParameter(
1808 const DITemplateValueParameter &
N) {
1809 visitDITemplateParameter(
N);
1811 CheckDI(
N.getTag() == dwarf::DW_TAG_template_value_parameter ||
1812 N.getTag() == dwarf::DW_TAG_GNU_template_template_param ||
1813 N.getTag() == dwarf::DW_TAG_GNU_template_parameter_pack,
1817void Verifier::visitDIVariable(
const DIVariable &
N) {
1818 if (
auto *S =
N.getRawScope())
1820 if (
auto *
F =
N.getRawFile())
1824void Verifier::visitDIGlobalVariable(
const DIGlobalVariable &
N) {
1828 CheckDI(
N.getTag() == dwarf::DW_TAG_variable,
"invalid tag", &
N);
1831 if (
N.isDefinition())
1832 CheckDI(
N.getType(),
"missing global variable type", &
N);
1833 if (
auto *Member =
N.getRawStaticDataMemberDeclaration()) {
1835 "invalid static data member declaration", &
N, Member);
1839void Verifier::visitDILocalVariable(
const DILocalVariable &
N) {
1844 CheckDI(
N.getTag() == dwarf::DW_TAG_variable,
"invalid tag", &
N);
1846 "local variable requires a valid scope", &
N,
N.getRawScope());
1847 if (
auto Ty =
N.getType())
1851void Verifier::visitDIAssignID(
const DIAssignID &
N) {
1852 CheckDI(!
N.getNumOperands(),
"DIAssignID has no arguments", &
N);
1853 CheckDI(
N.isDistinct(),
"DIAssignID must be distinct", &
N);
1856void Verifier::visitDILabel(
const DILabel &
N) {
1857 if (
auto *S =
N.getRawScope())
1859 if (
auto *
F =
N.getRawFile())
1862 CheckDI(
N.getTag() == dwarf::DW_TAG_label,
"invalid tag", &
N);
1864 "label requires a valid scope", &
N,
N.getRawScope());
1867void Verifier::visitDIExpression(
const DIExpression &
N) {
1868 CheckDI(
N.isValid(),
"invalid expression", &
N);
1871void Verifier::visitDIGlobalVariableExpression(
1872 const DIGlobalVariableExpression &GVE) {
1875 visitDIGlobalVariable(*Var);
1877 visitDIExpression(*Expr);
1878 if (
auto Fragment = Expr->getFragmentInfo())
1879 verifyFragmentExpression(*GVE.
getVariable(), *Fragment, &GVE);
1883void Verifier::visitDIObjCProperty(
const DIObjCProperty &
N) {
1884 CheckDI(
N.getTag() == dwarf::DW_TAG_APPLE_property,
"invalid tag", &
N);
1885 if (
auto *
T =
N.getRawType())
1887 if (
auto *
F =
N.getRawFile())
1891void Verifier::visitDIImportedEntity(
const DIImportedEntity &
N) {
1892 CheckDI(
N.getTag() == dwarf::DW_TAG_imported_module ||
1893 N.getTag() == dwarf::DW_TAG_imported_declaration,
1895 if (
auto *S =
N.getRawScope())
1901void Verifier::visitComdat(
const Comdat &
C) {
1904 if (
TT.isOSBinFormatCOFF())
1905 if (
const GlobalValue *GV =
M.getNamedValue(
C.getName()))
1910void Verifier::visitModuleIdents() {
1911 const NamedMDNode *Idents =
M.getNamedMetadata(
"llvm.ident");
1917 for (
const MDNode *
N : Idents->
operands()) {
1918 Check(
N->getNumOperands() == 1,
1919 "incorrect number of operands in llvm.ident metadata",
N);
1921 (
"invalid value for llvm.ident metadata entry operand"
1922 "(the operand should be a string)"),
1927void Verifier::visitModuleCommandLines() {
1928 const NamedMDNode *CommandLines =
M.getNamedMetadata(
"llvm.commandline");
1935 for (
const MDNode *
N : CommandLines->
operands()) {
1936 Check(
N->getNumOperands() == 1,
1937 "incorrect number of operands in llvm.commandline metadata",
N);
1939 (
"invalid value for llvm.commandline metadata entry operand"
1940 "(the operand should be a string)"),
1945void Verifier::visitModuleErrnoTBAA() {
1946 const NamedMDNode *ErrnoTBAA =
M.getNamedMetadata(
"llvm.errno.tbaa");
1951 "llvm.errno.tbaa must have at least one operand", ErrnoTBAA);
1953 for (
const MDNode *
N : ErrnoTBAA->
operands())
1957void Verifier::visitModuleFlags() {
1958 const NamedMDNode *
Flags =
M.getModuleFlagsMetadata();
1962 DenseMap<const MDString*, const MDNode*> SeenIDs;
1964 uint64_t PAuthABIPlatform = -1;
1965 uint64_t PAuthABIVersion = -1;
1966 for (
const MDNode *MDN :
Flags->operands()) {
1967 visitModuleFlag(MDN, SeenIDs, Requirements);
1968 if (MDN->getNumOperands() != 3)
1971 if (FlagName->getString() ==
"aarch64-elf-pauthabi-platform") {
1972 if (
const auto *PAP =
1974 PAuthABIPlatform = PAP->getZExtValue();
1975 }
else if (FlagName->getString() ==
"aarch64-elf-pauthabi-version") {
1976 if (
const auto *PAV =
1978 PAuthABIVersion = PAV->getZExtValue();
1983 if ((PAuthABIPlatform == uint64_t(-1)) != (PAuthABIVersion == uint64_t(-1)))
1984 CheckFailed(
"either both or no 'aarch64-elf-pauthabi-platform' and "
1985 "'aarch64-elf-pauthabi-version' module flags must be present");
1988 for (
const MDNode *Requirement : Requirements) {
1990 const Metadata *ReqValue = Requirement->getOperand(1);
1992 const MDNode *
Op = SeenIDs.
lookup(Flag);
1994 CheckFailed(
"invalid requirement on flag, flag is not present in module",
1999 if (
Op->getOperand(2) != ReqValue) {
2000 CheckFailed((
"invalid requirement on flag, "
2001 "flag does not have the required value"),
2009Verifier::visitModuleFlag(
const MDNode *
Op,
2010 DenseMap<const MDString *, const MDNode *> &SeenIDs,
2011 SmallVectorImpl<const MDNode *> &Requirements) {
2015 "incorrect number of operands in module flag",
Op);
2016 Module::ModFlagBehavior MFB;
2017 if (!Module::isValidModFlagBehavior(
Op->getOperand(0), MFB)) {
2019 "invalid behavior operand in module flag (expected constant integer)",
2022 "invalid behavior operand in module flag (unexpected constant)",
2026 Check(
ID,
"invalid ID operand in module flag (expected metadata string)",
2032 case Module::Warning:
2033 case Module::Override:
2039 Check(V &&
V->getValue().isNonNegative(),
2040 "invalid value for 'min' module flag (expected constant non-negative "
2048 "invalid value for 'max' module flag (expected constant integer)",
2053 case Module::Require: {
2058 "invalid value for 'require' module flag (expected metadata pair)",
2061 (
"invalid value for 'require' module flag "
2062 "(first value operand should be a string)"),
2063 Value->getOperand(0));
2071 case Module::Append:
2072 case Module::AppendUnique: {
2075 "invalid value for 'append'-type module flag "
2076 "(expected a metadata node)",
2083 if (MFB != Module::Require) {
2086 "module flag identifiers must be unique (or of 'require' type)",
ID);
2089 if (
ID->getString() ==
"wchar_size") {
2092 Check(
Value,
"wchar_size metadata requires constant integer argument");
2095 if (
ID->getString() ==
"Linker Options") {
2099 Check(
M.getNamedMetadata(
"llvm.linker.options"),
2100 "'Linker Options' named metadata no longer supported");
2103 if (
ID->getString() ==
"SemanticInterposition") {
2104 ConstantInt *
Value =
2107 "SemanticInterposition metadata requires constant integer argument");
2110 if (
ID->getString() ==
"CG Profile") {
2111 for (
const MDOperand &MDO :
cast<MDNode>(
Op->getOperand(2))->operands())
2112 visitModuleFlagCGProfileEntry(MDO);
2116void Verifier::visitModuleFlagCGProfileEntry(
const MDOperand &MDO) {
2117 auto CheckFunction = [&](
const MDOperand &FuncMDO) {
2122 "expected a Function or null", FuncMDO);
2125 Check(Node &&
Node->getNumOperands() == 3,
"expected a MDNode triple", MDO);
2126 CheckFunction(
Node->getOperand(0));
2127 CheckFunction(
Node->getOperand(1));
2130 "expected an integer constant",
Node->getOperand(2));
2133void Verifier::verifyAttributeTypes(AttributeSet Attrs,
const Value *V) {
2136 if (
A.isStringAttribute()) {
2137#define GET_ATTR_NAMES
2138#define ATTRIBUTE_ENUM(ENUM_NAME, DISPLAY_NAME)
2139#define ATTRIBUTE_STRBOOL(ENUM_NAME, DISPLAY_NAME) \
2140 if (A.getKindAsString() == #DISPLAY_NAME) { \
2141 auto V = A.getValueAsString(); \
2142 if (!(V.empty() || V == "true" || V == "false")) \
2143 CheckFailed("invalid value for '" #DISPLAY_NAME "' attribute: " + V + \
2147#include "llvm/IR/Attributes.inc"
2151 if (
A.isIntAttribute() != Attribute::isIntAttrKind(
A.getKindAsEnum())) {
2152 CheckFailed(
"Attribute '" +
A.getAsString() +
"' should have an Argument",
2161void Verifier::verifyParameterAttrs(AttributeSet Attrs,
Type *Ty,
2163 if (!
Attrs.hasAttributes())
2166 verifyAttributeTypes(Attrs, V);
2169 Check(Attr.isStringAttribute() ||
2170 Attribute::canUseAsParamAttr(Attr.getKindAsEnum()),
2171 "Attribute '" + Attr.getAsString() +
"' does not apply to parameters",
2174 if (
Attrs.hasAttribute(Attribute::ImmArg)) {
2175 unsigned AttrCount =
2176 Attrs.getNumAttributes() -
Attrs.hasAttribute(Attribute::Range);
2177 Check(AttrCount == 1,
2178 "Attribute 'immarg' is incompatible with other attributes except the "
2179 "'range' attribute",
2185 unsigned AttrCount = 0;
2186 AttrCount +=
Attrs.hasAttribute(Attribute::ByVal);
2187 AttrCount +=
Attrs.hasAttribute(Attribute::InAlloca);
2188 AttrCount +=
Attrs.hasAttribute(Attribute::Preallocated);
2189 AttrCount +=
Attrs.hasAttribute(Attribute::StructRet) ||
2190 Attrs.hasAttribute(Attribute::InReg);
2191 AttrCount +=
Attrs.hasAttribute(Attribute::Nest);
2192 AttrCount +=
Attrs.hasAttribute(Attribute::ByRef);
2193 Check(AttrCount <= 1,
2194 "Attributes 'byval', 'inalloca', 'preallocated', 'inreg', 'nest', "
2195 "'byref', and 'sret' are incompatible!",
2198 Check(!(
Attrs.hasAttribute(Attribute::InAlloca) &&
2199 Attrs.hasAttribute(Attribute::ReadOnly)),
2201 "'inalloca and readonly' are incompatible!",
2204 Check(!(
Attrs.hasAttribute(Attribute::StructRet) &&
2205 Attrs.hasAttribute(Attribute::Returned)),
2207 "'sret and returned' are incompatible!",
2210 Check(!(
Attrs.hasAttribute(Attribute::ZExt) &&
2211 Attrs.hasAttribute(Attribute::SExt)),
2213 "'zeroext and signext' are incompatible!",
2216 Check(!(
Attrs.hasAttribute(Attribute::ReadNone) &&
2217 Attrs.hasAttribute(Attribute::ReadOnly)),
2219 "'readnone and readonly' are incompatible!",
2222 Check(!(
Attrs.hasAttribute(Attribute::ReadNone) &&
2223 Attrs.hasAttribute(Attribute::WriteOnly)),
2225 "'readnone and writeonly' are incompatible!",
2228 Check(!(
Attrs.hasAttribute(Attribute::ReadOnly) &&
2229 Attrs.hasAttribute(Attribute::WriteOnly)),
2231 "'readonly and writeonly' are incompatible!",
2234 Check(!(
Attrs.hasAttribute(Attribute::NoInline) &&
2235 Attrs.hasAttribute(Attribute::AlwaysInline)),
2237 "'noinline and alwaysinline' are incompatible!",
2240 Check(!(
Attrs.hasAttribute(Attribute::Writable) &&
2241 Attrs.hasAttribute(Attribute::ReadNone)),
2242 "Attributes writable and readnone are incompatible!", V);
2244 Check(!(
Attrs.hasAttribute(Attribute::Writable) &&
2245 Attrs.hasAttribute(Attribute::ReadOnly)),
2246 "Attributes writable and readonly are incompatible!", V);
2248 AttributeMask IncompatibleAttrs = AttributeFuncs::typeIncompatible(Ty, Attrs);
2250 if (!Attr.isStringAttribute() &&
2251 IncompatibleAttrs.
contains(Attr.getKindAsEnum())) {
2252 CheckFailed(
"Attribute '" + Attr.getAsString() +
2253 "' applied to incompatible type!", V);
2259 if (
Attrs.hasAttribute(Attribute::Alignment)) {
2260 Align AttrAlign =
Attrs.getAlignment().valueOrOne();
2261 Check(AttrAlign.
value() <= Value::MaximumAlignment,
2262 "huge alignment values are unsupported", V);
2264 if (
Attrs.hasAttribute(Attribute::ByVal)) {
2266 SmallPtrSet<Type *, 4> Visited;
2268 "Attribute 'byval' does not support unsized types!", V);
2272 "'byval' argument has illegal target extension type", V);
2273 Check(
DL.getTypeAllocSize(ByValTy).getKnownMinValue() < (1ULL << 32),
2274 "huge 'byval' arguments are unsupported", V);
2276 if (
Attrs.hasAttribute(Attribute::ByRef)) {
2277 SmallPtrSet<Type *, 4> Visited;
2278 Check(
Attrs.getByRefType()->isSized(&Visited),
2279 "Attribute 'byref' does not support unsized types!", V);
2280 Check(
DL.getTypeAllocSize(
Attrs.getByRefType()).getKnownMinValue() <
2282 "huge 'byref' arguments are unsupported", V);
2284 if (
Attrs.hasAttribute(Attribute::InAlloca)) {
2285 SmallPtrSet<Type *, 4> Visited;
2286 Check(
Attrs.getInAllocaType()->isSized(&Visited),
2287 "Attribute 'inalloca' does not support unsized types!", V);
2288 Check(
DL.getTypeAllocSize(
Attrs.getInAllocaType()).getKnownMinValue() <
2290 "huge 'inalloca' arguments are unsupported", V);
2292 if (
Attrs.hasAttribute(Attribute::Preallocated)) {
2293 SmallPtrSet<Type *, 4> Visited;
2294 Check(
Attrs.getPreallocatedType()->isSized(&Visited),
2295 "Attribute 'preallocated' does not support unsized types!", V);
2297 DL.getTypeAllocSize(
Attrs.getPreallocatedType()).getKnownMinValue() <
2299 "huge 'preallocated' arguments are unsupported", V);
2303 if (
Attrs.hasAttribute(Attribute::Initializes)) {
2304 auto Inits =
Attrs.getAttribute(Attribute::Initializes).getInitializes();
2305 Check(!Inits.empty(),
"Attribute 'initializes' does not support empty list",
2308 "Attribute 'initializes' does not support unordered ranges", V);
2311 if (
Attrs.hasAttribute(Attribute::NoFPClass)) {
2312 uint64_t Val =
Attrs.getAttribute(Attribute::NoFPClass).getValueAsInt();
2313 Check(Val != 0,
"Attribute 'nofpclass' must have at least one test bit set",
2316 "Invalid value for 'nofpclass' test mask", V);
2318 if (
Attrs.hasAttribute(Attribute::Range)) {
2319 const ConstantRange &CR =
2320 Attrs.getAttribute(Attribute::Range).getValueAsConstantRange();
2322 "Range bit width must match type bit width!", V);
2326void Verifier::checkUnsignedBaseTenFuncAttr(AttributeList Attrs, StringRef Attr,
2328 if (
Attrs.hasFnAttr(Attr)) {
2329 StringRef S =
Attrs.getFnAttr(Attr).getValueAsString();
2332 CheckFailed(
"\"" + Attr +
"\" takes an unsigned integer: " + S, V);
2338void Verifier::verifyFunctionAttrs(FunctionType *FT, AttributeList Attrs,
2339 const Value *V,
bool IsIntrinsic,
2341 if (
Attrs.isEmpty())
2344 if (AttributeListsVisited.
insert(
Attrs.getRawPointer()).second) {
2346 "Attribute list does not match Module context!", &Attrs, V);
2347 for (
const auto &AttrSet : Attrs) {
2348 Check(!AttrSet.hasAttributes() || AttrSet.hasParentContext(
Context),
2349 "Attribute set does not match Module context!", &AttrSet, V);
2350 for (
const auto &
A : AttrSet) {
2352 "Attribute does not match Module context!", &
A, V);
2357 bool SawNest =
false;
2358 bool SawReturned =
false;
2359 bool SawSRet =
false;
2360 bool SawSwiftSelf =
false;
2361 bool SawSwiftAsync =
false;
2362 bool SawSwiftError =
false;
2365 AttributeSet RetAttrs =
Attrs.getRetAttrs();
2368 Attribute::canUseAsRetAttr(
RetAttr.getKindAsEnum()),
2369 "Attribute '" +
RetAttr.getAsString() +
2370 "' does not apply to function return values",
2373 unsigned MaxParameterWidth = 0;
2374 auto GetMaxParameterWidth = [&MaxParameterWidth](
Type *Ty) {
2377 unsigned Size = VT->getPrimitiveSizeInBits().getFixedValue();
2378 if (
Size > MaxParameterWidth)
2379 MaxParameterWidth =
Size;
2383 GetMaxParameterWidth(FT->getReturnType());
2384 verifyParameterAttrs(RetAttrs, FT->getReturnType(), V);
2387 for (
unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
2388 Type *Ty = FT->getParamType(i);
2389 AttributeSet ArgAttrs =
Attrs.getParamAttrs(i);
2393 "immarg attribute only applies to intrinsics", V);
2396 "Attribute 'elementtype' can only be applied to intrinsics"
2401 verifyParameterAttrs(ArgAttrs, Ty, V);
2402 GetMaxParameterWidth(Ty);
2405 Check(!SawNest,
"More than one parameter has attribute nest!", V);
2410 Check(!SawReturned,
"More than one parameter has attribute returned!", V);
2412 "Incompatible argument and return types for 'returned' attribute",
2418 Check(!SawSRet,
"Cannot have multiple 'sret' parameters!", V);
2419 Check(i == 0 || i == 1,
2420 "Attribute 'sret' is not on first or second parameter!", V);
2425 Check(!SawSwiftSelf,
"Cannot have multiple 'swiftself' parameters!", V);
2426 SawSwiftSelf =
true;
2430 Check(!SawSwiftAsync,
"Cannot have multiple 'swiftasync' parameters!", V);
2431 SawSwiftAsync =
true;
2435 Check(!SawSwiftError,
"Cannot have multiple 'swifterror' parameters!", V);
2436 SawSwiftError =
true;
2440 Check(i == FT->getNumParams() - 1,
2441 "inalloca isn't on the last parameter!", V);
2445 if (!
Attrs.hasFnAttrs())
2448 verifyAttributeTypes(
Attrs.getFnAttrs(), V);
2451 Attribute::canUseAsFnAttr(
FnAttr.getKindAsEnum()),
2452 "Attribute '" +
FnAttr.getAsString() +
2453 "' does not apply to functions!",
2456 Check(!(
Attrs.hasFnAttr(Attribute::NoInline) &&
2457 Attrs.hasFnAttr(Attribute::AlwaysInline)),
2458 "Attributes 'noinline and alwaysinline' are incompatible!", V);
2460 if (
Attrs.hasFnAttr(Attribute::OptimizeNone)) {
2462 "Attribute 'optnone' requires 'noinline'!", V);
2464 Check(!
Attrs.hasFnAttr(Attribute::OptimizeForSize),
2465 "Attributes 'optsize and optnone' are incompatible!", V);
2468 "Attributes 'minsize and optnone' are incompatible!", V);
2470 Check(!
Attrs.hasFnAttr(Attribute::OptimizeForDebugging),
2471 "Attributes 'optdebug and optnone' are incompatible!", V);
2474 Check(!(
Attrs.hasFnAttr(Attribute::SanitizeRealtime) &&
2475 Attrs.hasFnAttr(Attribute::SanitizeRealtimeBlocking)),
2477 "'sanitize_realtime and sanitize_realtime_blocking' are incompatible!",
2480 if (
Attrs.hasFnAttr(Attribute::OptimizeForDebugging)) {
2481 Check(!
Attrs.hasFnAttr(Attribute::OptimizeForSize),
2482 "Attributes 'optsize and optdebug' are incompatible!", V);
2485 "Attributes 'minsize and optdebug' are incompatible!", V);
2488 Check(!
Attrs.hasAttrSomewhere(Attribute::Writable) ||
2489 isModSet(
Attrs.getMemoryEffects().getModRef(IRMemLocation::ArgMem)),
2490 "Attribute writable and memory without argmem: write are incompatible!",
2493 if (
Attrs.hasFnAttr(
"aarch64_pstate_sm_enabled")) {
2494 Check(!
Attrs.hasFnAttr(
"aarch64_pstate_sm_compatible"),
2495 "Attributes 'aarch64_pstate_sm_enabled and "
2496 "aarch64_pstate_sm_compatible' are incompatible!",
2500 Check((
Attrs.hasFnAttr(
"aarch64_new_za") +
Attrs.hasFnAttr(
"aarch64_in_za") +
2501 Attrs.hasFnAttr(
"aarch64_inout_za") +
2502 Attrs.hasFnAttr(
"aarch64_out_za") +
2503 Attrs.hasFnAttr(
"aarch64_preserves_za") +
2504 Attrs.hasFnAttr(
"aarch64_za_state_agnostic")) <= 1,
2505 "Attributes 'aarch64_new_za', 'aarch64_in_za', 'aarch64_out_za', "
2506 "'aarch64_inout_za', 'aarch64_preserves_za' and "
2507 "'aarch64_za_state_agnostic' are mutually exclusive",
2511 Attrs.hasFnAttr(
"aarch64_in_zt0") +
2512 Attrs.hasFnAttr(
"aarch64_inout_zt0") +
2513 Attrs.hasFnAttr(
"aarch64_out_zt0") +
2514 Attrs.hasFnAttr(
"aarch64_preserves_zt0") +
2515 Attrs.hasFnAttr(
"aarch64_za_state_agnostic")) <= 1,
2516 "Attributes 'aarch64_new_zt0', 'aarch64_in_zt0', 'aarch64_out_zt0', "
2517 "'aarch64_inout_zt0', 'aarch64_preserves_zt0' and "
2518 "'aarch64_za_state_agnostic' are mutually exclusive",
2521 if (
Attrs.hasFnAttr(Attribute::JumpTable)) {
2524 "Attribute 'jumptable' requires 'unnamed_addr'", V);
2527 if (
auto Args =
Attrs.getFnAttrs().getAllocSizeArgs()) {
2528 auto CheckParam = [&](StringRef
Name,
unsigned ParamNo) {
2529 if (ParamNo >= FT->getNumParams()) {
2530 CheckFailed(
"'allocsize' " + Name +
" argument is out of bounds", V);
2534 if (!FT->getParamType(ParamNo)->isIntegerTy()) {
2535 CheckFailed(
"'allocsize' " + Name +
2536 " argument must refer to an integer parameter",
2544 if (!CheckParam(
"element size",
Args->first))
2547 if (
Args->second && !CheckParam(
"number of elements", *
Args->second))
2551 if (
Attrs.hasFnAttr(Attribute::AllocKind)) {
2554 K & (AllocFnKind::Alloc | AllocFnKind::Realloc | AllocFnKind::Free);
2556 {AllocFnKind::Alloc, AllocFnKind::Realloc, AllocFnKind::Free},
2559 "'allockind()' requires exactly one of alloc, realloc, and free");
2560 if ((
Type == AllocFnKind::Free) &&
2561 ((K & (AllocFnKind::Uninitialized | AllocFnKind::Zeroed |
2562 AllocFnKind::Aligned)) != AllocFnKind::Unknown))
2563 CheckFailed(
"'allockind(\"free\")' doesn't allow uninitialized, zeroed, "
2564 "or aligned modifiers.");
2565 AllocFnKind ZeroedUninit = AllocFnKind::Uninitialized | AllocFnKind::Zeroed;
2566 if ((K & ZeroedUninit) == ZeroedUninit)
2567 CheckFailed(
"'allockind()' can't be both zeroed and uninitialized");
2571 StringRef S =
A.getValueAsString();
2572 Check(!S.
empty(),
"'alloc-variant-zeroed' must not be empty");
2580 "'alloc-variant-zeroed' must name a function belonging to the "
2581 "same 'alloc-family'");
2584 (
Variant->getFnAttribute(Attribute::AllocKind).getAllocKind() &
2585 AllocFnKind::Zeroed) != AllocFnKind::Unknown,
2586 "'alloc-variant-zeroed' must name a function with "
2587 "'allockind(\"zeroed\")'");
2590 "'alloc-variant-zeroed' must name a function with the same "
2595 "'alloc-variant-zeroed' must name a function with the same "
2596 "calling convention");
2600 if (
Attrs.hasFnAttr(Attribute::VScaleRange)) {
2601 unsigned VScaleMin =
Attrs.getFnAttrs().getVScaleRangeMin();
2603 CheckFailed(
"'vscale_range' minimum must be greater than 0", V);
2605 CheckFailed(
"'vscale_range' minimum must be power-of-two value", V);
2606 std::optional<unsigned> VScaleMax =
Attrs.getFnAttrs().getVScaleRangeMax();
2607 if (VScaleMax && VScaleMin > VScaleMax)
2608 CheckFailed(
"'vscale_range' minimum cannot be greater than maximum", V);
2610 CheckFailed(
"'vscale_range' maximum must be power-of-two value", V);
2613 if (
Attribute FPAttr =
Attrs.getFnAttr(
"frame-pointer"); FPAttr.isValid()) {
2614 StringRef
FP = FPAttr.getValueAsString();
2615 if (
FP !=
"all" &&
FP !=
"non-leaf" &&
FP !=
"none" &&
FP !=
"reserved" &&
2616 FP !=
"non-leaf-no-reserve")
2617 CheckFailed(
"invalid value for 'frame-pointer' attribute: " +
FP, V);
2620 checkUnsignedBaseTenFuncAttr(Attrs,
"patchable-function-prefix", V);
2621 checkUnsignedBaseTenFuncAttr(Attrs,
"patchable-function-entry", V);
2622 if (
Attrs.hasFnAttr(
"patchable-function-entry-section"))
2623 Check(!
Attrs.getFnAttr(
"patchable-function-entry-section")
2626 "\"patchable-function-entry-section\" must not be empty");
2627 checkUnsignedBaseTenFuncAttr(Attrs,
"warn-stack-size", V);
2629 if (
auto A =
Attrs.getFnAttr(
"sign-return-address");
A.isValid()) {
2630 StringRef S =
A.getValueAsString();
2631 if (S !=
"none" && S !=
"all" && S !=
"non-leaf")
2632 CheckFailed(
"invalid value for 'sign-return-address' attribute: " + S, V);
2635 if (
auto A =
Attrs.getFnAttr(
"sign-return-address-key");
A.isValid()) {
2636 StringRef S =
A.getValueAsString();
2637 if (S !=
"a_key" && S !=
"b_key")
2638 CheckFailed(
"invalid value for 'sign-return-address-key' attribute: " + S,
2640 if (
auto AA =
Attrs.getFnAttr(
"sign-return-address"); !AA.isValid()) {
2642 "'sign-return-address-key' present without `sign-return-address`");
2646 if (
auto A =
Attrs.getFnAttr(
"branch-target-enforcement");
A.isValid()) {
2647 StringRef S =
A.getValueAsString();
2648 if (S !=
"" && S !=
"true" && S !=
"false")
2650 "invalid value for 'branch-target-enforcement' attribute: " + S, V);
2653 if (
auto A =
Attrs.getFnAttr(
"branch-protection-pauth-lr");
A.isValid()) {
2654 StringRef S =
A.getValueAsString();
2655 if (S !=
"" && S !=
"true" && S !=
"false")
2657 "invalid value for 'branch-protection-pauth-lr' attribute: " + S, V);
2660 if (
auto A =
Attrs.getFnAttr(
"guarded-control-stack");
A.isValid()) {
2661 StringRef S =
A.getValueAsString();
2662 if (S !=
"" && S !=
"true" && S !=
"false")
2663 CheckFailed(
"invalid value for 'guarded-control-stack' attribute: " + S,
2667 if (
auto A =
Attrs.getFnAttr(
"vector-function-abi-variant");
A.isValid()) {
2668 StringRef S =
A.getValueAsString();
2671 CheckFailed(
"invalid name for a VFABI variant: " + S, V);
2674 if (
auto A =
Attrs.getFnAttr(
"modular-format");
A.isValid()) {
2675 StringRef S =
A.getValueAsString();
2679 "modular-format attribute requires at least 5 arguments", V);
2680 unsigned FirstArgIdx;
2681 Check(!Args[2].getAsInteger(10, FirstArgIdx),
2682 "modular-format attribute first arg index is not an integer", V);
2683 unsigned UpperBound = FT->getNumParams() + (FT->isVarArg() ? 1 : 0);
2684 Check(FirstArgIdx > 0 && FirstArgIdx <= UpperBound,
2685 "modular-format attribute first arg index is out of bounds", V);
2688 if (
auto A =
Attrs.getFnAttr(
"target-features");
A.isValid()) {
2689 StringRef S =
A.getValueAsString();
2691 for (
auto FeatureFlag :
split(S,
',')) {
2692 if (FeatureFlag.empty())
2694 "target-features attribute should not contain an empty string");
2696 Check(FeatureFlag[0] ==
'+' || FeatureFlag[0] ==
'-',
2697 "target feature '" + FeatureFlag +
2698 "' must start with a '+' or '-'",
2704void Verifier::verifyUnknownProfileMetadata(MDNode *MD) {
2706 "'unknown' !prof should have a single additional operand", MD);
2709 "'unknown' !prof should have an additional operand of type "
2712 "the 'unknown' !prof operand should not be an empty string");
2715void Verifier::verifyFunctionMetadata(
2716 ArrayRef<std::pair<unsigned, MDNode *>> MDs) {
2717 for (
const auto &Pair : MDs) {
2718 if (Pair.first == LLVMContext::MD_prof) {
2719 MDNode *MD = Pair.second;
2721 "!prof annotations should have no less than 2 operands", MD);
2726 verifyUnknownProfileMetadata(MD);
2731 Check(MD->
getOperand(0) !=
nullptr,
"first operand should not be null",
2734 "expected string with name of the !prof annotation", MD);
2739 "first operand should be 'function_entry_count'"
2740 " or 'synthetic_function_entry_count'",
2744 Check(MD->
getOperand(1) !=
nullptr,
"second operand should not be null",
2747 "expected integer argument to function_entry_count", MD);
2748 }
else if (Pair.first == LLVMContext::MD_kcfi_type) {
2749 MDNode *MD = Pair.second;
2751 "!kcfi_type must have exactly one operand", MD);
2752 Check(MD->
getOperand(0) !=
nullptr,
"!kcfi_type operand must not be null",
2755 "expected a constant operand for !kcfi_type", MD);
2758 "expected a constant integer operand for !kcfi_type", MD);
2760 "expected a 32-bit integer constant operand for !kcfi_type", MD);
2765void Verifier::visitConstantExprsRecursively(
const Constant *EntryC) {
2769 if (!ConstantExprVisited.
insert(EntryC).second)
2773 Stack.push_back(EntryC);
2775 while (!
Stack.empty()) {
2780 visitConstantExpr(CE);
2783 visitConstantPtrAuth(CPA);
2788 Check(GV->
getParent() == &M,
"Referencing global in another module!",
2794 for (
const Use &U :
C->operands()) {
2798 if (!ConstantExprVisited.
insert(OpC).second)
2800 Stack.push_back(OpC);
2805void Verifier::visitConstantExpr(
const ConstantExpr *CE) {
2806 if (
CE->getOpcode() == Instruction::BitCast)
2809 "Invalid bitcast", CE);
2810 else if (
CE->getOpcode() == Instruction::PtrToAddr)
2811 checkPtrToAddr(
CE->getOperand(0)->getType(),
CE->getType(), *CE);
2814void Verifier::visitConstantPtrAuth(
const ConstantPtrAuth *CPA) {
2816 "signed ptrauth constant base pointer must have pointer type");
2819 "signed ptrauth constant must have same type as its base pointer");
2822 "signed ptrauth constant key must be i32 constant integer");
2825 "signed ptrauth constant address discriminator must be a pointer");
2828 "signed ptrauth constant discriminator must be i64 constant integer");
2831 "signed ptrauth constant deactivation symbol must be a pointer");
2835 "signed ptrauth constant deactivation symbol must be a global value "
2839bool Verifier::verifyAttributeCount(AttributeList Attrs,
unsigned Params) {
2842 return Attrs.getNumAttrSets() <= Params + 2;
2845void Verifier::verifyInlineAsmCall(
const CallBase &
Call) {
2848 unsigned LabelNo = 0;
2849 for (
const InlineAsm::ConstraintInfo &CI :
IA->ParseConstraints()) {
2859 if (CI.isIndirect) {
2862 "Operand for indirect constraint must have pointer type", &
Call);
2865 "Operand for indirect constraint must have elementtype attribute",
2869 "Elementtype attribute can only be applied for indirect "
2878 Check(LabelNo == CallBr->getNumIndirectDests(),
2879 "Number of label constraints does not match number of callbr dests",
2882 Check(LabelNo == 0,
"Label constraints can only be used with callbr",
2888void Verifier::verifyStatepoint(
const CallBase &
Call) {
2893 "gc.statepoint must read and write all memory to preserve "
2894 "reordering restrictions required by safepoint semantics",
2897 const int64_t NumPatchBytes =
2900 Check(NumPatchBytes >= 0,
2901 "gc.statepoint number of patchable bytes must be "
2906 Check(TargetElemType,
2907 "gc.statepoint callee argument must have elementtype attribute",
Call);
2909 Check(TargetFuncType,
2910 "gc.statepoint callee elementtype must be function type",
Call);
2913 Check(NumCallArgs >= 0,
2914 "gc.statepoint number of arguments to underlying call "
2917 const int NumParams = (int)TargetFuncType->getNumParams();
2918 if (TargetFuncType->isVarArg()) {
2919 Check(NumCallArgs >= NumParams,
2920 "gc.statepoint mismatch in number of vararg call args",
Call);
2923 Check(TargetFuncType->getReturnType()->isVoidTy(),
2924 "gc.statepoint doesn't support wrapping non-void "
2925 "vararg functions yet",
2928 Check(NumCallArgs == NumParams,
2929 "gc.statepoint mismatch in number of call args",
Call);
2931 const uint64_t
Flags
2933 Check((Flags & ~(uint64_t)StatepointFlags::MaskAll) == 0,
2934 "unknown flag used in gc.statepoint flags argument",
Call);
2939 for (
int i = 0; i < NumParams; i++) {
2940 Type *ParamType = TargetFuncType->getParamType(i);
2942 Check(ArgType == ParamType,
2943 "gc.statepoint call argument does not match wrapped "
2947 if (TargetFuncType->isVarArg()) {
2948 AttributeSet ArgAttrs =
Attrs.getParamAttrs(5 + i);
2950 "Attribute 'sret' cannot be used for vararg call arguments!",
Call);
2954 const int EndCallArgsInx = 4 + NumCallArgs;
2958 "gc.statepoint number of transition arguments "
2959 "must be constant integer",
2961 const int NumTransitionArgs =
2963 Check(NumTransitionArgs == 0,
2964 "gc.statepoint w/inline transition bundle is deprecated",
Call);
2965 const int EndTransitionArgsInx = EndCallArgsInx + 1 + NumTransitionArgs;
2969 "gc.statepoint number of deoptimization arguments "
2970 "must be constant integer",
2973 Check(NumDeoptArgs == 0,
2974 "gc.statepoint w/inline deopt operands is deprecated",
Call);
2976 const int ExpectedNumArgs = 7 + NumCallArgs;
2978 "gc.statepoint too many arguments",
Call);
2985 Check(UserCall,
"illegal use of statepoint token",
Call, U);
2989 "gc.result or gc.relocate are the only value uses "
2990 "of a gc.statepoint",
2994 "gc.result connected to wrong gc.statepoint",
Call, UserCall);
2997 "gc.relocate connected to wrong gc.statepoint",
Call, UserCall);
3011void Verifier::verifyFrameRecoverIndices() {
3012 for (
auto &Counts : FrameEscapeInfo) {
3014 unsigned EscapedObjectCount = Counts.second.first;
3015 unsigned MaxRecoveredIndex = Counts.second.second;
3016 Check(MaxRecoveredIndex <= EscapedObjectCount,
3017 "all indices passed to llvm.localrecover must be less than the "
3018 "number of arguments passed to llvm.localescape in the parent "
3027 UnwindDest =
II->getUnwindDest();
3029 UnwindDest = CSI->getUnwindDest();
3035void Verifier::verifySiblingFuncletUnwinds() {
3036 llvm::TimeTraceScope timeScope(
"Verifier verify sibling funclet unwinds");
3037 SmallPtrSet<Instruction *, 8> Visited;
3038 SmallPtrSet<Instruction *, 8>
Active;
3039 for (
const auto &Pair : SiblingFuncletInfo) {
3041 if (Visited.
count(PredPad))
3047 if (
Active.count(SuccPad)) {
3050 SmallVector<Instruction *, 8> CycleNodes;
3053 Instruction *CycleTerminator = SiblingFuncletInfo[CyclePad];
3054 if (CycleTerminator != CyclePad)
3057 }
while (CyclePad != SuccPad);
3058 Check(
false,
"EH pads can't handle each other's exceptions",
3062 if (!Visited.
insert(SuccPad).second)
3066 auto TermI = SiblingFuncletInfo.find(PredPad);
3067 if (TermI == SiblingFuncletInfo.end())
3080void Verifier::visitFunction(
const Function &
F) {
3081 visitGlobalValue(
F);
3084 FunctionType *FT =
F.getFunctionType();
3085 unsigned NumArgs =
F.arg_size();
3088 "Function context does not match Module context!", &
F);
3090 Check(!
F.hasCommonLinkage(),
"Functions may not have common linkage", &
F);
3091 Check(FT->getNumParams() == NumArgs,
3092 "# formal arguments must match # of arguments for function type!", &
F,
3094 Check(
F.getReturnType()->isFirstClassType() ||
3095 F.getReturnType()->isVoidTy() ||
F.getReturnType()->isStructTy(),
3096 "Functions cannot return aggregate values!", &
F);
3098 Check(!
F.hasStructRetAttr() ||
F.getReturnType()->isVoidTy(),
3099 "Invalid struct return type!", &
F);
3101 if (MaybeAlign
A =
F.getAlign()) {
3102 Check(
A->value() <= Value::MaximumAlignment,
3103 "huge alignment values are unsupported", &
F);
3106 AttributeList
Attrs =
F.getAttributes();
3108 Check(verifyAttributeCount(Attrs, FT->getNumParams()),
3109 "Attribute after last parameter!", &
F);
3111 bool IsIntrinsic =
F.isIntrinsic();
3114 verifyFunctionAttrs(FT, Attrs, &
F, IsIntrinsic,
false);
3120 "Attribute 'builtin' can only be applied to a callsite.", &
F);
3122 Check(!
Attrs.hasAttrSomewhere(Attribute::ElementType),
3123 "Attribute 'elementtype' can only be applied to a callsite.", &
F);
3125 if (
Attrs.hasFnAttr(Attribute::Naked))
3126 for (
const Argument &Arg :
F.args())
3127 Check(Arg.use_empty(),
"cannot use argument of naked function", &Arg);
3132 switch (
F.getCallingConv()) {
3134 case CallingConv::C:
3136 case CallingConv::X86_INTR: {
3137 Check(
F.arg_empty() ||
Attrs.hasParamAttr(0, Attribute::ByVal),
3138 "Calling convention parameter requires byval", &
F);
3141 case CallingConv::AMDGPU_KERNEL:
3142 case CallingConv::SPIR_KERNEL:
3143 case CallingConv::AMDGPU_CS_Chain:
3144 case CallingConv::AMDGPU_CS_ChainPreserve:
3145 Check(
F.getReturnType()->isVoidTy(),
3146 "Calling convention requires void return type", &
F);
3148 case CallingConv::AMDGPU_VS:
3149 case CallingConv::AMDGPU_HS:
3150 case CallingConv::AMDGPU_GS:
3151 case CallingConv::AMDGPU_PS:
3152 case CallingConv::AMDGPU_CS:
3153 Check(!
F.hasStructRetAttr(),
"Calling convention does not allow sret", &
F);
3154 if (
F.getCallingConv() != CallingConv::SPIR_KERNEL) {
3155 const unsigned StackAS =
DL.getAllocaAddrSpace();
3157 for (
const Argument &Arg :
F.args()) {
3158 Check(!
Attrs.hasParamAttr(i, Attribute::ByVal),
3159 "Calling convention disallows byval", &
F);
3160 Check(!
Attrs.hasParamAttr(i, Attribute::Preallocated),
3161 "Calling convention disallows preallocated", &
F);
3162 Check(!
Attrs.hasParamAttr(i, Attribute::InAlloca),
3163 "Calling convention disallows inalloca", &
F);
3165 if (
Attrs.hasParamAttr(i, Attribute::ByRef)) {
3168 Check(Arg.getType()->getPointerAddressSpace() != StackAS,
3169 "Calling convention disallows stack byref", &
F);
3177 case CallingConv::Fast:
3178 case CallingConv::Cold:
3179 case CallingConv::Intel_OCL_BI:
3180 case CallingConv::PTX_Kernel:
3181 case CallingConv::PTX_Device:
3183 "Calling convention does not support varargs or "
3184 "perfect forwarding!",
3187 case CallingConv::AMDGPU_Gfx_WholeWave:
3188 Check(!
F.arg_empty() &&
F.arg_begin()->getType()->isIntegerTy(1),
3189 "Calling convention requires first argument to be i1", &
F);
3190 Check(!
F.arg_begin()->hasInRegAttr(),
3191 "Calling convention requires first argument to not be inreg", &
F);
3193 "Calling convention does not support varargs or "
3194 "perfect forwarding!",
3201 for (
const Argument &Arg :
F.args()) {
3202 Check(Arg.getType() == FT->getParamType(i),
3203 "Argument value does not match function argument type!", &Arg,
3204 FT->getParamType(i));
3205 Check(Arg.getType()->isFirstClassType(),
3206 "Function arguments must have first-class types!", &Arg);
3208 Check(!Arg.getType()->isMetadataTy(),
3209 "Function takes metadata but isn't an intrinsic", &Arg, &
F);
3210 Check(!Arg.getType()->isTokenLikeTy(),
3211 "Function takes token but isn't an intrinsic", &Arg, &
F);
3212 Check(!Arg.getType()->isX86_AMXTy(),
3213 "Function takes x86_amx but isn't an intrinsic", &Arg, &
F);
3217 if (
Attrs.hasParamAttr(i, Attribute::SwiftError)) {
3218 verifySwiftErrorValue(&Arg);
3224 Check(!
F.getReturnType()->isTokenLikeTy(),
3225 "Function returns a token but isn't an intrinsic", &
F);
3226 Check(!
F.getReturnType()->isX86_AMXTy(),
3227 "Function returns a x86_amx but isn't an intrinsic", &
F);
3232 F.getAllMetadata(MDs);
3233 assert(
F.hasMetadata() != MDs.
empty() &&
"Bit out-of-sync");
3234 verifyFunctionMetadata(MDs);
3237 if (
F.hasPersonalityFn()) {
3240 Check(Per->getParent() ==
F.getParent(),
3241 "Referencing personality function in another module!", &
F,
3242 F.getParent(), Per, Per->getParent());
3246 BlockEHFuncletColors.
clear();
3248 if (
F.isMaterializable()) {
3250 Check(MDs.
empty(),
"unmaterialized function cannot have metadata", &
F,
3252 }
else if (
F.isDeclaration()) {
3253 for (
const auto &
I : MDs) {
3255 CheckDI(
I.first != LLVMContext::MD_dbg ||
3257 "function declaration may only have a unique !dbg attachment",
3259 Check(
I.first != LLVMContext::MD_prof,
3260 "function declaration may not have a !prof attachment", &
F);
3263 visitMDNode(*
I.second, AreDebugLocsAllowed::Yes);
3265 Check(!
F.hasPersonalityFn(),
3266 "Function declaration shouldn't have a personality routine", &
F);
3270 Check(!IsIntrinsic,
"llvm intrinsics cannot be defined!", &
F);
3275 "Entry block to function must not have predecessors!", Entry);
3278 if (
Entry->hasAddressTaken()) {
3280 "blockaddress may not be used with the entry block!", Entry);
3283 unsigned NumDebugAttachments = 0, NumProfAttachments = 0,
3284 NumKCFIAttachments = 0;
3286 for (
const auto &
I : MDs) {
3288 auto AllowLocs = AreDebugLocsAllowed::No;
3292 case LLVMContext::MD_dbg: {
3293 ++NumDebugAttachments;
3294 CheckDI(NumDebugAttachments == 1,
3295 "function must have a single !dbg attachment", &
F,
I.second);
3297 "function !dbg attachment must be a subprogram", &
F,
I.second);
3299 "function definition may only have a distinct !dbg attachment",
3303 const Function *&AttachedTo = DISubprogramAttachments[
SP];
3304 CheckDI(!AttachedTo || AttachedTo == &
F,
3305 "DISubprogram attached to more than one function", SP, &
F);
3307 AllowLocs = AreDebugLocsAllowed::Yes;
3310 case LLVMContext::MD_prof:
3311 ++NumProfAttachments;
3312 Check(NumProfAttachments == 1,
3313 "function must have a single !prof attachment", &
F,
I.second);
3315 case LLVMContext::MD_kcfi_type:
3316 ++NumKCFIAttachments;
3317 Check(NumKCFIAttachments == 1,
3318 "function must have a single !kcfi_type attachment", &
F,
3324 visitMDNode(*
I.second, AllowLocs);
3332 if (
F.isIntrinsic() &&
F.getParent()->isMaterialized()) {
3334 if (
F.hasAddressTaken(&U,
false,
true,
false,
3336 Check(
false,
"Invalid user of intrinsic instruction!", U);
3340 switch (
F.getIntrinsicID()) {
3341 case Intrinsic::experimental_gc_get_pointer_base: {
3342 FunctionType *FT =
F.getFunctionType();
3343 Check(FT->getNumParams() == 1,
"wrong number of parameters",
F);
3345 "gc.get.pointer.base must return a pointer",
F);
3346 Check(FT->getParamType(0) ==
F.getReturnType(),
3347 "gc.get.pointer.base operand and result must be of the same type",
F);
3350 case Intrinsic::experimental_gc_get_pointer_offset: {
3351 FunctionType *FT =
F.getFunctionType();
3352 Check(FT->getNumParams() == 1,
"wrong number of parameters",
F);
3354 "gc.get.pointer.offset operand must be a pointer",
F);
3355 Check(
F.getReturnType()->isIntegerTy(),
3356 "gc.get.pointer.offset must return integer",
F);
3361 auto *
N =
F.getSubprogram();
3362 HasDebugInfo = (
N !=
nullptr);
3370 SmallPtrSet<const MDNode *, 32> Seen;
3382 "DILocation's scope must be a DILocalScope",
N, &
F, &
I,
DL, Parent);
3384 DILocalScope *
Scope =
DL->getInlinedAtScope();
3385 Check(Scope,
"Failed to find DILocalScope",
DL);
3387 if (!Seen.
insert(Scope).second)
3390 DISubprogram *
SP =
Scope->getSubprogram();
3394 if ((Scope != SP) && !Seen.
insert(SP).second)
3398 "!dbg attachment points at wrong subprogram for function",
N, &
F,
3402 for (
auto &
I : BB) {
3403 VisitDebugLoc(
I,
I.getDebugLoc().getAsMDNode());
3405 if (
auto MD =
I.getMetadata(LLVMContext::MD_loop))
3408 if (BrokenDebugInfo)
3415void Verifier::visitBasicBlock(BasicBlock &BB) {
3416 InstsInThisBlock.
clear();
3417 ConvergenceVerifyHelper.
visit(BB);
3428 for (
const PHINode &PN : BB.
phis()) {
3429 Check(PN.getNumIncomingValues() == Preds.size(),
3430 "PHINode should have one entry for each predecessor of its "
3431 "parent basic block!",
3436 Values.
reserve(PN.getNumIncomingValues());
3437 for (
unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i)
3439 std::make_pair(PN.getIncomingBlock(i), PN.getIncomingValue(i)));
3442 for (
unsigned i = 0, e = Values.
size(); i != e; ++i) {
3447 Check(i == 0 || Values[i].first != Values[i - 1].first ||
3448 Values[i].second == Values[i - 1].second,
3449 "PHI node has multiple entries for the same basic block with "
3450 "different incoming values!",
3451 &PN, Values[i].first, Values[i].second, Values[i - 1].second);
3455 Check(Values[i].first == Preds[i],
3456 "PHI node entries do not match predecessors!", &PN,
3457 Values[i].first, Preds[i]);
3465 Check(
I.getParent() == &BB,
"Instruction has bogus parent pointer!");
3469 CheckDI(!BB.getTrailingDbgRecords(),
"Basic Block has trailing DbgRecords!",
3473void Verifier::visitTerminator(Instruction &
I) {
3475 Check(&
I ==
I.getParent()->getTerminator(),
3476 "Terminator found in the middle of a basic block!",
I.getParent());
3477 visitInstruction(
I);
3480void Verifier::visitCondBrInst(CondBrInst &BI) {
3482 "Branch condition is not 'i1' type!", &BI, BI.
getCondition());
3483 visitTerminator(BI);
3486void Verifier::visitReturnInst(ReturnInst &RI) {
3489 if (
F->getReturnType()->isVoidTy())
3491 "Found return instr that returns non-void in Function of void "
3493 &RI,
F->getReturnType());
3496 "Function return type does not match operand "
3497 "type of return inst!",
3498 &RI,
F->getReturnType());
3502 visitTerminator(RI);
3505void Verifier::visitSwitchInst(SwitchInst &SI) {
3506 Check(
SI.getType()->isVoidTy(),
"Switch must have void result type!", &SI);
3509 Type *SwitchTy =
SI.getCondition()->getType();
3510 SmallPtrSet<ConstantInt*, 32>
Constants;
3511 for (
auto &Case :
SI.cases()) {
3513 "Case value is not a constant integer.", &SI);
3514 Check(Case.getCaseValue()->getType() == SwitchTy,
3515 "Switch constants must all be same type as switch value!", &SI);
3517 "Duplicate integer as switch case", &SI, Case.getCaseValue());
3520 visitTerminator(SI);
3523void Verifier::visitIndirectBrInst(IndirectBrInst &BI) {
3525 "Indirectbr operand must have pointer type!", &BI);
3528 "Indirectbr destinations must all have pointer type!", &BI);
3530 visitTerminator(BI);
3533void Verifier::visitCallBrInst(CallBrInst &CBI) {
3536 "Callbr: indirect function / invalid signature");
3538 "Callbr for intrinsics currently doesn't support operand bundles");
3541 case Intrinsic::amdgcn_kill: {
3543 "Callbr amdgcn_kill only supports one indirect dest");
3547 Intrinsic::amdgcn_unreachable),
3548 "Callbr amdgcn_kill indirect dest needs to be unreachable");
3553 "Callbr currently only supports asm-goto and selected intrinsics");
3558 Check(!
IA->canThrow(),
"Unwinding from Callbr is not allowed");
3560 verifyInlineAsmCall(CBI);
3562 visitTerminator(CBI);
3565void Verifier::visitSelectInst(SelectInst &SI) {
3568 "Invalid operands for select instruction!", &SI);
3570 Check(
SI.getTrueValue()->getType() ==
SI.getType(),
3571 "Select values must have same type as select instruction!", &SI);
3572 visitInstruction(SI);
3578void Verifier::visitUserOp1(Instruction &
I) {
3579 Check(
false,
"User-defined operators should not live outside of a pass!", &
I);
3582void Verifier::visitTruncInst(TruncInst &
I) {
3584 Type *SrcTy =
I.getOperand(0)->getType();
3585 Type *DestTy =
I.getType();
3594 "trunc source and destination must both be a vector or neither", &
I);
3595 Check(SrcBitSize > DestBitSize,
"DestTy too big for Trunc", &
I);
3597 visitInstruction(
I);
3600void Verifier::visitZExtInst(ZExtInst &
I) {
3602 Type *SrcTy =
I.getOperand(0)->getType();
3603 Type *DestTy =
I.getType();
3609 "zext source and destination must both be a vector or neither", &
I);
3613 Check(SrcBitSize < DestBitSize,
"Type too small for ZExt", &
I);
3615 visitInstruction(
I);
3618void Verifier::visitSExtInst(SExtInst &
I) {
3620 Type *SrcTy =
I.getOperand(0)->getType();
3621 Type *DestTy =
I.getType();
3630 "sext source and destination must both be a vector or neither", &
I);
3631 Check(SrcBitSize < DestBitSize,
"Type too small for SExt", &
I);
3633 visitInstruction(
I);
3636void Verifier::visitFPTruncInst(FPTruncInst &
I) {
3638 Type *SrcTy =
I.getOperand(0)->getType();
3639 Type *DestTy =
I.getType();
3647 "fptrunc source and destination must both be a vector or neither", &
I);
3648 Check(SrcBitSize > DestBitSize,
"DestTy too big for FPTrunc", &
I);
3650 visitInstruction(
I);
3653void Verifier::visitFPExtInst(FPExtInst &
I) {
3655 Type *SrcTy =
I.getOperand(0)->getType();
3656 Type *DestTy =
I.getType();
3665 "fpext source and destination must both be a vector or neither", &
I);
3666 Check(SrcBitSize < DestBitSize,
"DestTy too small for FPExt", &
I);
3668 visitInstruction(
I);
3671void Verifier::visitUIToFPInst(UIToFPInst &
I) {
3673 Type *SrcTy =
I.getOperand(0)->getType();
3674 Type *DestTy =
I.getType();
3679 Check(SrcVec == DstVec,
3680 "UIToFP source and dest must both be vector or scalar", &
I);
3682 "UIToFP source must be integer or integer vector", &
I);
3686 if (SrcVec && DstVec)
3689 "UIToFP source and dest vector length mismatch", &
I);
3691 visitInstruction(
I);
3694void Verifier::visitSIToFPInst(SIToFPInst &
I) {
3696 Type *SrcTy =
I.getOperand(0)->getType();
3697 Type *DestTy =
I.getType();
3702 Check(SrcVec == DstVec,
3703 "SIToFP source and dest must both be vector or scalar", &
I);
3705 "SIToFP source must be integer or integer vector", &
I);
3709 if (SrcVec && DstVec)
3712 "SIToFP source and dest vector length mismatch", &
I);
3714 visitInstruction(
I);
3717void Verifier::visitFPToUIInst(FPToUIInst &
I) {
3719 Type *SrcTy =
I.getOperand(0)->getType();
3720 Type *DestTy =
I.getType();
3725 Check(SrcVec == DstVec,
3726 "FPToUI source and dest must both be vector or scalar", &
I);
3729 "FPToUI result must be integer or integer vector", &
I);
3731 if (SrcVec && DstVec)
3734 "FPToUI source and dest vector length mismatch", &
I);
3736 visitInstruction(
I);
3739void Verifier::visitFPToSIInst(FPToSIInst &
I) {
3741 Type *SrcTy =
I.getOperand(0)->getType();
3742 Type *DestTy =
I.getType();
3747 Check(SrcVec == DstVec,
3748 "FPToSI source and dest must both be vector or scalar", &
I);
3751 "FPToSI result must be integer or integer vector", &
I);
3753 if (SrcVec && DstVec)
3756 "FPToSI source and dest vector length mismatch", &
I);
3758 visitInstruction(
I);
3761void Verifier::checkPtrToAddr(
Type *SrcTy,
Type *DestTy,
const Value &V) {
3770 Check(VSrc->getElementCount() == VDest->getElementCount(),
3771 "PtrToAddr vector length mismatch", V);
3774 Type *AddrTy =
DL.getAddressType(SrcTy);
3775 Check(AddrTy == DestTy,
"PtrToAddr result must be address width", V);
3778void Verifier::visitPtrToAddrInst(PtrToAddrInst &
I) {
3779 checkPtrToAddr(
I.getOperand(0)->getType(),
I.getType(),
I);
3780 visitInstruction(
I);
3783void Verifier::visitPtrToIntInst(PtrToIntInst &
I) {
3785 Type *SrcTy =
I.getOperand(0)->getType();
3786 Type *DestTy =
I.getType();
3797 Check(VSrc->getElementCount() == VDest->getElementCount(),
3798 "PtrToInt Vector length mismatch", &
I);
3801 visitInstruction(
I);
3804void Verifier::visitIntToPtrInst(IntToPtrInst &
I) {
3806 Type *SrcTy =
I.getOperand(0)->getType();
3807 Type *DestTy =
I.getType();
3817 Check(VSrc->getElementCount() == VDest->getElementCount(),
3818 "IntToPtr Vector length mismatch", &
I);
3820 visitInstruction(
I);
3823void Verifier::visitBitCastInst(BitCastInst &
I) {
3826 "Invalid bitcast", &
I);
3827 visitInstruction(
I);
3830void Verifier::visitAddrSpaceCastInst(AddrSpaceCastInst &
I) {
3831 Type *SrcTy =
I.getOperand(0)->getType();
3832 Type *DestTy =
I.getType();
3839 "AddrSpaceCast must be between different address spaces", &
I);
3841 Check(SrcVTy->getElementCount() ==
3843 "AddrSpaceCast vector pointer number of elements mismatch", &
I);
3844 visitInstruction(
I);
3849void Verifier::visitPHINode(PHINode &PN) {
3856 "PHI nodes not grouped at top of basic block!", &PN, PN.
getParent());
3865 "PHI node operands are not the same type as the result!", &PN);
3870 visitInstruction(PN);
3873void Verifier::visitCallBase(CallBase &
Call) {
3875 "Called function must be a pointer!",
Call);
3879 if (FTy->isVarArg())
3881 "Called function requires more parameters than were provided!",
Call);
3884 "Incorrect number of arguments passed to called function!",
Call);
3887 for (
unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
3889 "Call parameter type does not match function signature!",
3895 "Attribute after last parameter!",
Call);
3902 "Intrinsic called with incompatible signature",
Call);
3906 "calling convention does not permit calls",
Call);
3912 auto VerifyTypeAlign = [&](
Type *Ty,
const Twine &Message) {
3915 Align ABIAlign =
DL.getABITypeAlign(Ty);
3916 Check(ABIAlign.
value() <= Value::MaximumAlignment,
3917 "Incorrect alignment of " + Message +
" to called function!",
Call);
3921 VerifyTypeAlign(FTy->getReturnType(),
"return type");
3922 for (
unsigned i = 0, e = FTy->getNumParams(); i != e; ++i) {
3923 Type *Ty = FTy->getParamType(i);
3924 VerifyTypeAlign(Ty,
"argument passed");
3928 if (
Attrs.hasFnAttr(Attribute::Speculatable)) {
3932 "speculatable attribute may not apply to call sites",
Call);
3935 if (
Attrs.hasFnAttr(Attribute::Preallocated)) {
3937 "preallocated as a call site attribute can only be on "
3938 "llvm.call.preallocated.arg");
3941 Check(!
Attrs.hasFnAttr(Attribute::DenormalFPEnv),
3942 "denormal_fpenv attribute may not apply to call sites",
Call);
3953 Check(AI->isUsedWithInAlloca(),
3954 "inalloca argument for call has mismatched alloca", AI,
Call);
3960 for (
unsigned i = 0, e = FTy->getNumParams(); i != e; ++i) {
3964 Check(AI->isSwiftError(),
3965 "swifterror argument for call has mismatched alloca", AI,
Call);
3969 Check(ArgI,
"swifterror argument should come from an alloca or parameter",
3970 SwiftErrorArg,
Call);
3971 Check(ArgI->hasSwiftErrorAttr(),
3972 "swifterror argument for call has mismatched parameter", ArgI,
3976 if (
Attrs.hasParamAttr(i, Attribute::ImmArg)) {
3979 Check(Callee &&
Callee->hasParamAttribute(i, Attribute::ImmArg),
3987 "immarg operand has non-immediate parameter", ArgVal,
Call);
3993 const ConstantRange &CR =
3996 "immarg value " + Twine(CI->getValue().getSExtValue()) +
4009 Check(hasOB != isMustTail,
4010 "preallocated operand either requires a preallocated bundle or "
4011 "the call to be musttail (but not both)",
4016 if (FTy->isVarArg()) {
4018 bool SawNest =
false;
4019 bool SawReturned =
false;
4021 for (
unsigned Idx = 0; Idx < FTy->getNumParams(); ++Idx) {
4022 if (
Attrs.hasParamAttr(Idx, Attribute::Nest))
4024 if (
Attrs.hasParamAttr(Idx, Attribute::Returned))
4029 for (
unsigned Idx = FTy->getNumParams(); Idx <
Call.
arg_size(); ++Idx) {
4031 AttributeSet ArgAttrs =
Attrs.getParamAttrs(Idx);
4032 verifyParameterAttrs(ArgAttrs, Ty, &
Call);
4035 Check(!SawNest,
"More than one parameter has attribute nest!",
Call);
4040 Check(!SawReturned,
"More than one parameter has attribute returned!",
4043 "Incompatible argument and return types for 'returned' "
4053 "Attribute 'sret' cannot be used for vararg call arguments!",
4058 "inalloca isn't on the last argument!",
Call);
4064 for (
Type *ParamTy : FTy->params()) {
4065 Check(!ParamTy->isMetadataTy(),
4066 "Function has metadata parameter but isn't an intrinsic",
Call);
4067 Check(!ParamTy->isTokenLikeTy(),
4068 "Function has token parameter but isn't an intrinsic",
Call);
4074 Check(!FTy->getReturnType()->isTokenLikeTy(),
4075 "Return type cannot be token for indirect call!");
4076 Check(!FTy->getReturnType()->isX86_AMXTy(),
4077 "Return type cannot be x86_amx for indirect call!");
4081 visitIntrinsicCall(
ID,
Call);
4086 bool FoundDeoptBundle =
false, FoundFuncletBundle =
false,
4087 FoundGCTransitionBundle =
false, FoundCFGuardTargetBundle =
false,
4088 FoundPreallocatedBundle =
false, FoundGCLiveBundle =
false,
4089 FoundPtrauthBundle =
false, FoundKCFIBundle =
false,
4090 FoundAttachedCallBundle =
false;
4095 Check(!FoundDeoptBundle,
"Multiple deopt operand bundles",
Call);
4096 FoundDeoptBundle =
true;
4098 Check(!FoundGCTransitionBundle,
"Multiple gc-transition operand bundles",
4100 FoundGCTransitionBundle =
true;
4102 Check(!FoundFuncletBundle,
"Multiple funclet operand bundles",
Call);
4103 FoundFuncletBundle =
true;
4105 "Expected exactly one funclet bundle operand",
Call);
4107 "Funclet bundle operands should correspond to a FuncletPadInst",
4110 Check(!FoundCFGuardTargetBundle,
"Multiple CFGuardTarget operand bundles",
4112 FoundCFGuardTargetBundle =
true;
4114 "Expected exactly one cfguardtarget bundle operand",
Call);
4116 Check(!FoundPtrauthBundle,
"Multiple ptrauth operand bundles",
Call);
4117 FoundPtrauthBundle =
true;
4119 "Expected exactly two ptrauth bundle operands",
Call);
4121 BU.
Inputs[0]->getType()->isIntegerTy(32),
4122 "Ptrauth bundle key operand must be an i32 constant",
Call);
4124 "Ptrauth bundle discriminator operand must be an i64",
Call);
4126 Check(!FoundKCFIBundle,
"Multiple kcfi operand bundles",
Call);
4127 FoundKCFIBundle =
true;
4128 Check(BU.
Inputs.size() == 1,
"Expected exactly one kcfi bundle operand",
4131 BU.
Inputs[0]->getType()->isIntegerTy(32),
4132 "Kcfi bundle operand must be an i32 constant",
Call);
4134 Check(!FoundPreallocatedBundle,
"Multiple preallocated operand bundles",
4136 FoundPreallocatedBundle =
true;
4138 "Expected exactly one preallocated bundle operand",
Call);
4141 Input->getIntrinsicID() == Intrinsic::call_preallocated_setup,
4142 "\"preallocated\" argument must be a token from "
4143 "llvm.call.preallocated.setup",
4146 Check(!FoundGCLiveBundle,
"Multiple gc-live operand bundles",
Call);
4147 FoundGCLiveBundle =
true;
4149 Check(!FoundAttachedCallBundle,
4150 "Multiple \"clang.arc.attachedcall\" operand bundles",
Call);
4151 FoundAttachedCallBundle =
true;
4152 verifyAttachedCallBundle(
Call, BU);
4158 "Direct call cannot have a ptrauth bundle",
Call);
4170 "inlinable function call in a function with "
4171 "debug info must have a !dbg location",
4175 verifyInlineAsmCall(
Call);
4179 visitInstruction(
Call);
4182void Verifier::verifyTailCCMustTailAttrs(
const AttrBuilder &Attrs,
4185 Twine(
"inalloca attribute not allowed in ") +
Context);
4187 Twine(
"inreg attribute not allowed in ") +
Context);
4188 Check(!
Attrs.contains(Attribute::SwiftError),
4189 Twine(
"swifterror attribute not allowed in ") +
Context);
4190 Check(!
Attrs.contains(Attribute::Preallocated),
4191 Twine(
"preallocated attribute not allowed in ") +
Context);
4193 Twine(
"byref attribute not allowed in ") +
Context);
4205 return PL->getAddressSpace() == PR->getAddressSpace();
4210 Attribute::StructRet, Attribute::ByVal, Attribute::InAlloca,
4211 Attribute::InReg, Attribute::StackAlignment, Attribute::SwiftSelf,
4212 Attribute::SwiftAsync, Attribute::SwiftError, Attribute::Preallocated,
4214 AttrBuilder Copy(
C);
4215 for (
auto AK : ABIAttrs) {
4216 Attribute Attr = Attrs.getParamAttrs(
I).getAttribute(AK);
4218 Copy.addAttribute(Attr);
4222 if (Attrs.hasParamAttr(
I, Attribute::Alignment) &&
4223 (Attrs.hasParamAttr(
I, Attribute::ByVal) ||
4224 Attrs.hasParamAttr(
I, Attribute::ByRef)))
4225 Copy.addAlignmentAttr(Attrs.getParamAlignment(
I));
4229void Verifier::verifyMustTailCall(CallInst &CI) {
4233 FunctionType *CallerTy =
F->getFunctionType();
4235 Check(CallerTy->isVarArg() == CalleeTy->isVarArg(),
4236 "cannot guarantee tail call due to mismatched varargs", &CI);
4238 "cannot guarantee tail call due to mismatched return types", &CI);
4242 "cannot guarantee tail call due to mismatched calling conv", &CI);
4248 Value *RetVal = &CI;
4254 "bitcast following musttail call must use the call", BI);
4261 Check(Ret,
"musttail call must precede a ret with an optional bitcast", &CI);
4264 "musttail call result must be returned", Ret);
4266 AttributeList CallerAttrs =
F->getAttributes();
4271 CI.
getCallingConv() == CallingConv::Tail ?
"tailcc" :
"swifttailcc";
4275 for (
unsigned I = 0,
E = CallerTy->getNumParams();
I !=
E; ++
I) {
4277 SmallString<32>
Context{CCName, StringRef(
" musttail caller")};
4278 verifyTailCCMustTailAttrs(ABIAttrs,
Context);
4280 for (
unsigned I = 0,
E = CalleeTy->getNumParams();
I !=
E; ++
I) {
4282 SmallString<32>
Context{CCName, StringRef(
" musttail callee")};
4283 verifyTailCCMustTailAttrs(ABIAttrs,
Context);
4286 Check(!CallerTy->isVarArg(), Twine(
"cannot guarantee ") + CCName +
4287 " tail call for varargs function");
4295 Check(CallerTy->getNumParams() == CalleeTy->getNumParams(),
4296 "cannot guarantee tail call due to mismatched parameter counts", &CI);
4297 for (
unsigned I = 0,
E = CallerTy->getNumParams();
I !=
E; ++
I) {
4300 "cannot guarantee tail call due to mismatched parameter types", &CI);
4306 for (
unsigned I = 0,
E = CallerTy->getNumParams();
I !=
E; ++
I) {
4309 Check(CallerABIAttrs == CalleeABIAttrs,
4310 "cannot guarantee tail call due to mismatched ABI impacting "
4311 "function attributes",
4316void Verifier::visitCallInst(CallInst &CI) {
4320 verifyMustTailCall(CI);
4323void Verifier::visitInvokeInst(InvokeInst &
II) {
4329 II.getUnwindDest()->isEHPad(),
4330 "The unwind destination does not have an exception handling instruction!",
4333 visitTerminator(
II);
4338void Verifier::visitUnaryOperator(UnaryOperator &U) {
4339 Check(
U.getType() ==
U.getOperand(0)->getType(),
4340 "Unary operators must have same type for"
4341 "operands and result!",
4344 switch (
U.getOpcode()) {
4347 case Instruction::FNeg:
4348 Check(
U.getType()->isFPOrFPVectorTy(),
4349 "FNeg operator only works with float types!", &U);
4355 visitInstruction(U);
4361void Verifier::visitBinaryOperator(BinaryOperator &
B) {
4362 Check(
B.getOperand(0)->getType() ==
B.getOperand(1)->getType(),
4363 "Both operands to a binary operator are not of the same type!", &
B);
4365 switch (
B.getOpcode()) {
4368 case Instruction::Add:
4369 case Instruction::Sub:
4370 case Instruction::Mul:
4371 case Instruction::SDiv:
4372 case Instruction::UDiv:
4373 case Instruction::SRem:
4374 case Instruction::URem:
4375 Check(
B.getType()->isIntOrIntVectorTy(),
4376 "Integer arithmetic operators only work with integral types!", &
B);
4377 Check(
B.getType() ==
B.getOperand(0)->getType(),
4378 "Integer arithmetic operators must have same type "
4379 "for operands and result!",
4384 case Instruction::FAdd:
4385 case Instruction::FSub:
4386 case Instruction::FMul:
4387 case Instruction::FDiv:
4388 case Instruction::FRem:
4389 Check(
B.getType()->isFPOrFPVectorTy(),
4390 "Floating-point arithmetic operators only work with "
4391 "floating-point types!",
4393 Check(
B.getType() ==
B.getOperand(0)->getType(),
4394 "Floating-point arithmetic operators must have same type "
4395 "for operands and result!",
4399 case Instruction::And:
4400 case Instruction::Or:
4401 case Instruction::Xor:
4402 Check(
B.getType()->isIntOrIntVectorTy(),
4403 "Logical operators only work with integral types!", &
B);
4404 Check(
B.getType() ==
B.getOperand(0)->getType(),
4405 "Logical operators must have same type for operands and result!", &
B);
4407 case Instruction::Shl:
4408 case Instruction::LShr:
4409 case Instruction::AShr:
4410 Check(
B.getType()->isIntOrIntVectorTy(),
4411 "Shifts only work with integral types!", &
B);
4412 Check(
B.getType() ==
B.getOperand(0)->getType(),
4413 "Shift return type must be same as operands!", &
B);
4419 visitInstruction(
B);
4422void Verifier::visitICmpInst(ICmpInst &IC) {
4426 Check(Op0Ty == Op1Ty,
4427 "Both operands to ICmp instruction are not of the same type!", &IC);
4430 "Invalid operand types for ICmp instruction", &IC);
4434 visitInstruction(IC);
4437void Verifier::visitFCmpInst(FCmpInst &FC) {
4439 Type *Op0Ty =
FC.getOperand(0)->getType();
4440 Type *Op1Ty =
FC.getOperand(1)->getType();
4441 Check(Op0Ty == Op1Ty,
4442 "Both operands to FCmp instruction are not of the same type!", &FC);
4447 Check(
FC.isFPPredicate(),
"Invalid predicate in FCmp instruction!", &FC);
4449 visitInstruction(FC);
4452void Verifier::visitExtractElementInst(ExtractElementInst &EI) {
4454 "Invalid extractelement operands!", &EI);
4455 visitInstruction(EI);
4458void Verifier::visitInsertElementInst(InsertElementInst &IE) {
4461 "Invalid insertelement operands!", &IE);
4462 visitInstruction(IE);
4465void Verifier::visitShuffleVectorInst(ShuffleVectorInst &SV) {
4468 "Invalid shufflevector operands!", &SV);
4469 visitInstruction(SV);
4472void Verifier::visitGetElementPtrInst(GetElementPtrInst &
GEP) {
4473 Type *TargetTy =
GEP.getPointerOperandType()->getScalarType();
4476 "GEP base pointer is not a vector or a vector of pointers", &
GEP);
4477 Check(
GEP.getSourceElementType()->isSized(),
"GEP into unsized type!", &
GEP);
4481 "getelementptr cannot target structure that contains scalable vector"
4486 SmallVector<Value *, 16> Idxs(
GEP.indices());
4488 all_of(Idxs, [](
Value *V) {
return V->getType()->isIntOrIntVectorTy(); }),
4489 "GEP indexes must be integers", &
GEP);
4492 Check(ElTy,
"Invalid indices for GEP pointer type!", &
GEP);
4496 Check(PtrTy &&
GEP.getResultElementType() == ElTy,
4497 "GEP is not of right type for indices!", &
GEP, ElTy);
4501 ElementCount GEPWidth = GEPVTy->getElementCount();
4502 if (
GEP.getPointerOperandType()->isVectorTy())
4506 "Vector GEP result width doesn't match operand's", &
GEP);
4507 for (
Value *Idx : Idxs) {
4508 Type *IndexTy = Idx->getType();
4510 ElementCount IndexWidth = IndexVTy->getElementCount();
4511 Check(IndexWidth == GEPWidth,
"Invalid GEP index vector width", &
GEP);
4514 "All GEP indices should be of integer type");
4521 GTI != GTE; ++GTI) {
4522 if (GTI.isVector()) {
4523 Type *ElemTy = GTI.getIndexedType();
4524 Check(
DL.typeSizeEqualsStoreSize(ElemTy),
4525 "GEP into vector with non-byte-addressable element type", &
GEP);
4529 Check(
GEP.getAddressSpace() == PtrTy->getAddressSpace(),
4530 "GEP address space doesn't match type", &
GEP);
4532 visitInstruction(
GEP);
4536 return A.getUpper() ==
B.getLower() ||
A.getLower() ==
B.getUpper();
4541void Verifier::verifyRangeLikeMetadata(
const Value &
I,
const MDNode *
Range,
4542 Type *Ty, RangeLikeMetadataKind Kind) {
4543 unsigned NumOperands =
Range->getNumOperands();
4544 Check(NumOperands % 2 == 0,
"Unfinished range!",
Range);
4545 unsigned NumRanges = NumOperands / 2;
4546 Check(NumRanges >= 1,
"It should have at least one range!",
Range);
4548 ConstantRange LastRange(1,
true);
4549 for (
unsigned i = 0; i < NumRanges; ++i) {
4552 Check(
Low,
"The lower limit must be an integer!",
Low);
4557 Check(
High->getType() ==
Low->getType(),
"Range pair types must match!",
4560 if (Kind == RangeLikeMetadataKind::NoaliasAddrspace) {
4562 "noalias.addrspace type must be i32!", &
I);
4565 "Range types must match instruction type!", &
I);
4568 APInt HighV =
High->getValue();
4569 APInt LowV =
Low->getValue();
4574 "The upper and lower limits cannot be the same value", &
I);
4576 ConstantRange CurRange(LowV, HighV);
4577 Check(!CurRange.isEmptySet() &&
4578 (Kind == RangeLikeMetadataKind::AbsoluteSymbol ||
4579 !CurRange.isFullSet()),
4580 "Range must not be empty!",
Range);
4582 Check(CurRange.intersectWith(LastRange).isEmptySet(),
4583 "Intervals are overlapping",
Range);
4584 Check(LowV.
sgt(LastRange.getLower()),
"Intervals are not in order",
4589 LastRange = ConstantRange(LowV, HighV);
4591 if (NumRanges > 2) {
4596 ConstantRange FirstRange(FirstLow, FirstHigh);
4597 Check(FirstRange.intersectWith(LastRange).isEmptySet(),
4598 "Intervals are overlapping",
Range);
4604void Verifier::visitRangeMetadata(Instruction &
I, MDNode *
Range,
Type *Ty) {
4606 "precondition violation");
4607 verifyRangeLikeMetadata(
I,
Range, Ty, RangeLikeMetadataKind::Range);
4610void Verifier::visitNoFPClassMetadata(Instruction &
I, MDNode *NoFPClass,
4612 Check(AttributeFuncs::isNoFPClassCompatibleType(Ty),
4613 "nofpclass only applies to floating-point typed loads",
I);
4616 "nofpclass must have exactly one entry", NoFPClass);
4617 ConstantInt *MaskVal =
4620 "nofpclass entry must be a constant i32", NoFPClass);
4622 Check(Val != 0,
"'nofpclass' must have at least one test bit set", NoFPClass,
4626 "Invalid value for 'nofpclass' test mask", NoFPClass,
I);
4629void Verifier::visitNoaliasAddrspaceMetadata(Instruction &
I, MDNode *
Range,
4632 "precondition violation");
4633 verifyRangeLikeMetadata(
I,
Range, Ty,
4634 RangeLikeMetadataKind::NoaliasAddrspace);
4637void Verifier::checkAtomicMemAccessSize(
Type *Ty,
const Instruction *
I) {
4638 unsigned Size =
DL.getTypeSizeInBits(Ty).getFixedValue();
4639 Check(
Size >= 8,
"atomic memory access' size must be byte-sized", Ty,
I);
4641 "atomic memory access' operand must have a power-of-two size", Ty,
I);
4644void Verifier::visitLoadInst(LoadInst &LI) {
4646 Check(PTy,
"Load operand must be a pointer.", &LI);
4649 Check(
A->value() <= Value::MaximumAlignment,
4650 "huge alignment values are unsupported", &LI);
4652 Check(ElTy->
isSized(),
"loading unsized types is not allowed", &LI);
4655 LI.
getOrdering() != AtomicOrdering::AcquireRelease,
4656 "Load cannot have Release ordering", &LI);
4660 "atomic load operand must have integer, byte, pointer, floating "
4661 "point, or vector type!",
4664 checkAtomicMemAccessSize(ElTy, &LI);
4667 "Non-atomic load cannot have SynchronizationScope specified", &LI);
4670 visitInstruction(LI);
4673void Verifier::visitStoreInst(StoreInst &SI) {
4675 Check(PTy,
"Store operand must be a pointer.", &SI);
4676 Type *ElTy =
SI.getOperand(0)->getType();
4677 if (MaybeAlign
A =
SI.getAlign()) {
4678 Check(
A->value() <= Value::MaximumAlignment,
4679 "huge alignment values are unsupported", &SI);
4681 Check(ElTy->
isSized(),
"storing unsized types is not allowed", &SI);
4682 if (
SI.isAtomic()) {
4683 Check(
SI.getOrdering() != AtomicOrdering::Acquire &&
4684 SI.getOrdering() != AtomicOrdering::AcquireRelease,
4685 "Store cannot have Acquire ordering", &SI);
4689 "atomic store operand must have integer, byte, pointer, floating "
4690 "point, or vector type!",
4692 checkAtomicMemAccessSize(ElTy, &SI);
4695 "Non-atomic store cannot have SynchronizationScope specified", &SI);
4697 visitInstruction(SI);
4701void Verifier::verifySwiftErrorCall(CallBase &
Call,
4702 const Value *SwiftErrorVal) {
4704 if (
I.value() == SwiftErrorVal) {
4706 "swifterror value when used in a callsite should be marked "
4707 "with swifterror attribute",
4708 SwiftErrorVal,
Call);
4713void Verifier::verifySwiftErrorValue(
const Value *SwiftErrorVal) {
4716 for (
const User *U : SwiftErrorVal->
users()) {
4719 "swifterror value can only be loaded and stored from, or "
4720 "as a swifterror argument!",
4724 Check(StoreI->getOperand(1) == SwiftErrorVal,
4725 "swifterror value should be the second operand when used "
4729 verifySwiftErrorCall(*
const_cast<CallBase *
>(
Call), SwiftErrorVal);
4733void Verifier::visitAllocaInst(AllocaInst &AI) {
4735 SmallPtrSet<Type*, 4> Visited;
4736 Check(Ty->
isSized(&Visited),
"Cannot allocate unsized type", &AI);
4740 "Alloca has illegal target extension type", &AI);
4742 "Alloca array size must have integer type", &AI);
4744 Check(
A->value() <= Value::MaximumAlignment,
4745 "huge alignment values are unsupported", &AI);
4751 "swifterror alloca must not be array allocation", &AI);
4752 verifySwiftErrorValue(&AI);
4755 if (
TT.isAMDGPU()) {
4757 "alloca on amdgpu must be in addrspace(5)", &AI);
4760 visitInstruction(AI);
4763void Verifier::visitAtomicCmpXchgInst(AtomicCmpXchgInst &CXI) {
4766 "cmpxchg operand must have integer or pointer type", ElTy, &CXI);
4767 checkAtomicMemAccessSize(ElTy, &CXI);
4768 visitInstruction(CXI);
4771void Verifier::visitAtomicRMWInst(AtomicRMWInst &RMWI) {
4773 "atomicrmw instructions cannot be unordered.", &RMWI);
4780 " operand must have integer or floating point type!",
4785 " operand must have floating-point or fixed vector of floating-point "
4791 " operand must have integer type!",
4794 checkAtomicMemAccessSize(ElTy, &RMWI);
4796 "Invalid binary operation!", &RMWI);
4797 visitInstruction(RMWI);
4800void Verifier::visitFenceInst(FenceInst &FI) {
4802 Check(Ordering == AtomicOrdering::Acquire ||
4803 Ordering == AtomicOrdering::Release ||
4804 Ordering == AtomicOrdering::AcquireRelease ||
4805 Ordering == AtomicOrdering::SequentiallyConsistent,
4806 "fence instructions may only have acquire, release, acq_rel, or "
4807 "seq_cst ordering.",
4809 visitInstruction(FI);
4812void Verifier::visitExtractValueInst(ExtractValueInst &EVI) {
4815 "Invalid ExtractValueInst operands!", &EVI);
4817 visitInstruction(EVI);
4820void Verifier::visitInsertValueInst(InsertValueInst &IVI) {
4824 "Invalid InsertValueInst operands!", &IVI);
4826 visitInstruction(IVI);
4831 return FPI->getParentPad();
4836void Verifier::visitEHPadPredecessors(Instruction &
I) {
4842 Check(BB != &
F->getEntryBlock(),
"EH pad cannot be in entry block.", &
I);
4850 Check(
II &&
II->getUnwindDest() == BB &&
II->getNormalDest() != BB,
4851 "Block containing LandingPadInst must be jumped to "
4852 "only by the unwind edge of an invoke.",
4860 "Block containg CatchPadInst must be jumped to "
4861 "only by its catchswitch.",
4863 Check(BB != CPI->getCatchSwitch()->getUnwindDest(),
4864 "Catchswitch cannot unwind to one of its catchpads",
4865 CPI->getCatchSwitch(), CPI);
4877 Check(
II->getUnwindDest() == BB &&
II->getNormalDest() != BB,
4878 "EH pad must be jumped to via an unwind edge", ToPad,
II);
4881 if (CalledFn && CalledFn->isIntrinsic() &&
II->doesNotThrow() &&
4885 FromPad = Bundle->Inputs[0];
4889 FromPad = CRI->getOperand(0);
4890 Check(FromPad != ToPadParent,
"A cleanupret must exit its cleanup", CRI);
4894 Check(
false,
"EH pad must be jumped to via an unwind edge", ToPad, TI);
4898 SmallPtrSet<Value *, 8> Seen;
4900 Check(FromPad != ToPad,
4901 "EH pad cannot handle exceptions raised within it", FromPad, TI);
4902 if (FromPad == ToPadParent) {
4907 "A single unwind edge may only enter one EH pad", TI);
4908 Check(Seen.
insert(FromPad).second,
"EH pad jumps through a cycle of pads",
4914 "Parent pad must be catchpad/cleanuppad/catchswitch", TI);
4919void Verifier::visitLandingPadInst(LandingPadInst &LPI) {
4923 "LandingPadInst needs at least one clause or to be a cleanup.", &LPI);
4925 visitEHPadPredecessors(LPI);
4927 if (!LandingPadResultTy)
4928 LandingPadResultTy = LPI.
getType();
4931 "The landingpad instruction should have a consistent result type "
4932 "inside a function.",
4936 Check(
F->hasPersonalityFn(),
4937 "LandingPadInst needs to be in a function with a personality.", &LPI);
4942 "LandingPadInst not the first non-PHI instruction in the block.", &LPI);
4948 "Catch operand does not have pointer type!", &LPI);
4950 Check(LPI.
isFilter(i),
"Clause is neither catch nor filter!", &LPI);
4952 "Filter operand is not an array of constants!", &LPI);
4956 visitInstruction(LPI);
4959void Verifier::visitResumeInst(ResumeInst &RI) {
4961 "ResumeInst needs to be in a function with a personality.", &RI);
4963 if (!LandingPadResultTy)
4967 "The resume instruction should have a consistent result type "
4968 "inside a function.",
4971 visitTerminator(RI);
4974void Verifier::visitCatchPadInst(CatchPadInst &CPI) {
4978 Check(
F->hasPersonalityFn(),
4979 "CatchPadInst needs to be in a function with a personality.", &CPI);
4982 "CatchPadInst needs to be directly nested in a CatchSwitchInst.",
4988 "CatchPadInst not the first non-PHI instruction in the block.", &CPI);
4993 return isa<Constant>(V) || isa<AllocaInst>(V);
4995 "Argument operand must be alloca or constant.", &CPI);
4997 visitEHPadPredecessors(CPI);
4998 visitFuncletPadInst(CPI);
5001void Verifier::visitCatchReturnInst(CatchReturnInst &CatchReturn) {
5003 "CatchReturnInst needs to be provided a CatchPad", &CatchReturn,
5006 visitTerminator(CatchReturn);
5009void Verifier::visitCleanupPadInst(CleanupPadInst &CPI) {
5013 Check(
F->hasPersonalityFn(),
5014 "CleanupPadInst needs to be in a function with a personality.", &CPI);
5019 "CleanupPadInst not the first non-PHI instruction in the block.", &CPI);
5023 "CleanupPadInst has an invalid parent.", &CPI);
5025 visitEHPadPredecessors(CPI);
5026 visitFuncletPadInst(CPI);
5029void Verifier::visitFuncletPadInst(FuncletPadInst &FPI) {
5030 User *FirstUser =
nullptr;
5031 Value *FirstUnwindPad =
nullptr;
5033 SmallPtrSet<FuncletPadInst *, 8> Seen;
5035 while (!Worklist.empty()) {
5036 FuncletPadInst *CurrentPad = Worklist.pop_back_val();
5038 "FuncletPadInst must not be nested within itself", CurrentPad);
5039 Value *UnresolvedAncestorPad =
nullptr;
5040 for (User *U : CurrentPad->
users()) {
5043 UnwindDest = CRI->getUnwindDest();
5049 if (CSI->unwindsToCaller())
5051 UnwindDest = CSI->getUnwindDest();
5053 UnwindDest =
II->getUnwindDest();
5063 Worklist.push_back(CPI);
5078 if (UnwindParent == CurrentPad)
5084 Value *ExitedPad = CurrentPad;
5087 if (ExitedPad == &FPI) {
5092 UnresolvedAncestorPad = &FPI;
5096 if (ExitedParent == UnwindParent) {
5100 UnresolvedAncestorPad = ExitedParent;
5103 ExitedPad = ExitedParent;
5109 UnresolvedAncestorPad = &FPI;
5116 Check(UnwindPad == FirstUnwindPad,
5117 "Unwind edges out of a funclet "
5118 "pad must have the same unwind "
5120 &FPI, U, FirstUser);
5123 FirstUnwindPad = UnwindPad;
5132 if (CurrentPad != &FPI)
5135 if (UnresolvedAncestorPad) {
5136 if (CurrentPad == UnresolvedAncestorPad) {
5140 assert(CurrentPad == &FPI);
5148 Value *ResolvedPad = CurrentPad;
5149 while (!Worklist.empty()) {
5150 Value *UnclePad = Worklist.back();
5154 while (ResolvedPad != AncestorPad) {
5156 if (ResolvedParent == UnresolvedAncestorPad) {
5159 ResolvedPad = ResolvedParent;
5163 if (ResolvedPad != AncestorPad)
5166 Worklist.pop_back();
5171 if (FirstUnwindPad) {
5173 BasicBlock *SwitchUnwindDest = CatchSwitch->getUnwindDest();
5174 Value *SwitchUnwindPad;
5175 if (SwitchUnwindDest)
5179 Check(SwitchUnwindPad == FirstUnwindPad,
5180 "Unwind edges out of a catch must have the same unwind dest as "
5181 "the parent catchswitch",
5182 &FPI, FirstUser, CatchSwitch);
5186 visitInstruction(FPI);
5189void Verifier::visitCatchSwitchInst(CatchSwitchInst &CatchSwitch) {
5193 Check(
F->hasPersonalityFn(),
5194 "CatchSwitchInst needs to be in a function with a personality.",
5200 "CatchSwitchInst not the first non-PHI instruction in the block.",
5205 "CatchSwitchInst has an invalid parent.", ParentPad);
5210 "CatchSwitchInst must unwind to an EH block which is not a "
5216 SiblingFuncletInfo[&CatchSwitch] = &CatchSwitch;
5220 "CatchSwitchInst cannot have empty handler list", &CatchSwitch);
5222 for (BasicBlock *Handler : CatchSwitch.
handlers()) {
5224 "CatchSwitchInst handlers must be catchpads", &CatchSwitch, Handler);
5227 visitEHPadPredecessors(CatchSwitch);
5228 visitTerminator(CatchSwitch);
5231void Verifier::visitCleanupReturnInst(CleanupReturnInst &CRI) {
5233 "CleanupReturnInst needs to be provided a CleanupPad", &CRI,
5239 "CleanupReturnInst must unwind to an EH block which is not a "
5244 visitTerminator(CRI);
5247void Verifier::verifyDominatesUse(Instruction &
I,
unsigned i) {
5253 if (
II->getNormalDest() ==
II->getUnwindDest())
5267 const Use &
U =
I.getOperandUse(i);
5268 Check(DT.dominates(
Op, U),
"Instruction does not dominate all uses!",
Op, &
I);
5271void Verifier::visitDereferenceableMetadata(Instruction&
I, MDNode* MD) {
5272 Check(
I.getType()->isPointerTy(),
5273 "dereferenceable, dereferenceable_or_null "
5274 "apply only to pointer types",
5277 "dereferenceable, dereferenceable_or_null apply only to load"
5278 " and inttoptr instructions, use attributes for calls or invokes",
5281 "dereferenceable, dereferenceable_or_null "
5282 "take one operand!",
5287 "dereferenceable_or_null metadata value must be an i64!",
5291void Verifier::visitNofreeMetadata(Instruction &
I, MDNode *MD) {
5292 Check(
I.getType()->isPointerTy(),
"nofree applies only to pointer types", &
I);
5298void Verifier::visitProfMetadata(Instruction &
I, MDNode *MD) {
5299 auto GetBranchingTerminatorNumOperands = [&]() {
5300 unsigned ExpectedNumOperands = 0;
5304 ExpectedNumOperands =
SI->getNumSuccessors();
5306 ExpectedNumOperands = 1;
5308 ExpectedNumOperands = IBI->getNumDestinations();
5310 ExpectedNumOperands = 2;
5313 return ExpectedNumOperands;
5316 "!prof annotations should have at least 1 operand", MD);
5318 Check(MD->
getOperand(0) !=
nullptr,
"first operand should not be null", MD);
5320 "expected string with name of the !prof annotation", MD);
5326 "'unknown' !prof should only appear on instructions on which "
5327 "'branch_weights' would",
5329 verifyUnknownProfileMetadata(MD);
5334 "!prof annotations should have no less than 2 operands", MD);
5340 Check(NumBranchWeights == 1 || NumBranchWeights == 2,
5341 "Wrong number of InvokeInst branch_weights operands", MD);
5343 const unsigned ExpectedNumOperands = GetBranchingTerminatorNumOperands();
5344 if (ExpectedNumOperands == 0)
5345 CheckFailed(
"!prof branch_weights are not allowed for this instruction",
5348 Check(NumBranchWeights == ExpectedNumOperands,
"Wrong number of operands",
5354 Check(MDO,
"second operand should not be null", MD);
5356 "!prof brunch_weights operand is not a const int");
5361 Check(KindInt,
"VP !prof missing kind argument", MD);
5364 Check(Kind >= InstrProfValueKind::IPVK_First &&
5365 Kind <= InstrProfValueKind::IPVK_Last,
5366 "Invalid VP !prof kind", MD);
5368 "VP !prof should have an even number "
5369 "of arguments after 'VP'",
5371 if (Kind == InstrProfValueKind::IPVK_IndirectCallTarget ||
5372 Kind == InstrProfValueKind::IPVK_MemOPSize)
5374 "VP !prof indirect call or memop size expected to be applied to "
5375 "CallBase instructions only",
5378 CheckFailed(
"expected either branch_weights or VP profile name", MD);
5382void Verifier::visitDIAssignIDMetadata(Instruction &
I, MDNode *MD) {
5383 assert(
I.hasMetadata(LLVMContext::MD_DIAssignID));
5388 bool ExpectedInstTy =
5390 CheckDI(ExpectedInstTy,
"!DIAssignID attached to unexpected instruction kind",
5395 for (
auto *User : AsValue->users()) {
5397 "!DIAssignID should only be used by llvm.dbg.assign intrinsics",
5401 CheckDI(DAI->getFunction() ==
I.getFunction(),
5402 "dbg.assign not in same function as inst", DAI, &
I);
5405 for (DbgVariableRecord *DVR :
5408 "!DIAssignID should only be used by Assign DVRs.", MD, DVR);
5409 CheckDI(DVR->getFunction() ==
I.getFunction(),
5410 "DVRAssign not in same function as inst", DVR, &
I);
5414void Verifier::visitMMRAMetadata(Instruction &
I, MDNode *MD) {
5416 "!mmra metadata attached to unexpected instruction kind",
I, MD);
5427 for (
const MDOperand &MDOp : MD->
operands())
5429 "!mmra metadata tuple operand is not an MMRA tag",
I, MDOp.get());
5432void Verifier::visitCallStackMetadata(MDNode *MD) {
5436 "call stack metadata should have at least 1 operand", MD);
5440 "call stack metadata operand should be constant integer",
Op);
5443void Verifier::visitMemProfMetadata(Instruction &
I, MDNode *MD) {
5446 "!memprof annotations should have at least 1 metadata operand "
5451 for (
auto &MIBOp : MD->
operands()) {
5457 "Each !memprof MemInfoBlock should have at least 2 operands", MIB);
5461 "!memprof MemInfoBlock first operand should not be null", MIB);
5463 "!memprof MemInfoBlock first operand should be an MDNode", MIB);
5465 visitCallStackMetadata(StackMD);
5469 "!memprof MemInfoBlock second operand should be an MDString", MIB);
5474 Check(OpNode,
"Not all !memprof MemInfoBlock operands 2 to N are MDNode",
5477 "Not all !memprof MemInfoBlock operands 2 to N are MDNode with 2 "
5482 [](
const MDOperand &
Op) {
5483 return mdconst::hasa<ConstantInt>(Op);
5485 "Not all !memprof MemInfoBlock operands 2 to N are MDNode with "
5486 "ConstantInt operands",
5492void Verifier::visitCallsiteMetadata(Instruction &
I, MDNode *MD) {
5496 visitCallStackMetadata(MD);
5505void Verifier::visitCalleeTypeMetadata(Instruction &
I, MDNode *MD) {
5510 "The callee_type metadata must be a list of type metadata nodes",
Op);
5512 Check(TypeMD->getNumOperands() == 2,
5513 "Well-formed generalized type metadata must contain exactly two "
5518 "The first operand of type metadata for functions must be zero",
Op);
5519 Check(TypeMD->hasGeneralizedMDString(),
5520 "Only generalized type metadata can be part of the callee_type "
5526void Verifier::visitAnnotationMetadata(MDNode *Annotation) {
5529 "annotation must have at least one operand");
5531 bool TupleOfStrings =
5537 "operands must be a string or a tuple of strings");
5541void Verifier::visitAliasScopeMetadata(
const MDNode *MD) {
5546 "first scope operand must be self-referential or string", MD);
5549 "third scope operand must be string (if used)", MD);
5552 Check(
Domain !=
nullptr,
"second scope operand must be MDNode", MD);
5554 unsigned NumDomainOps =
Domain->getNumOperands();
5555 Check(NumDomainOps >= 1 && NumDomainOps <= 2,
5556 "domain must have one or two operands",
Domain);
5559 "first domain operand must be self-referential or string",
Domain);
5560 if (NumDomainOps == 2)
5562 "second domain operand must be string (if used)",
Domain);
5565void Verifier::visitAliasScopeListMetadata(
const MDNode *MD) {
5568 Check(OpMD !=
nullptr,
"scope list must consist of MDNodes", MD);
5569 visitAliasScopeMetadata(OpMD);
5573void Verifier::visitAccessGroupMetadata(
const MDNode *MD) {
5574 auto IsValidAccessScope = [](
const MDNode *MD) {
5579 if (IsValidAccessScope(MD))
5585 Check(OpMD !=
nullptr,
"Access scope list must consist of MDNodes", MD);
5586 Check(IsValidAccessScope(OpMD),
5587 "Access scope list contains invalid access scope", MD);
5591void Verifier::visitCapturesMetadata(Instruction &
I,
const MDNode *Captures) {
5592 static const char *ValidArgs[] = {
"address_is_null",
"address",
5593 "read_provenance",
"provenance"};
5596 Check(SI,
"!captures metadata can only be applied to store instructions", &
I);
5597 Check(
SI->getValueOperand()->getType()->isPointerTy(),
5598 "!captures metadata can only be applied to store with value operand of "
5606 Check(Str,
"!captures metadata must be a list of strings", &
I);
5608 "invalid entry in !captures metadata", &
I, Str);
5612void Verifier::visitAllocTokenMetadata(Instruction &
I, MDNode *MD) {
5617 "expected integer constant", MD);
5620void Verifier::visitInlineHistoryMetadata(Instruction &
I, MDNode *MD) {
5629 ->stripPointerCastsAndAliases()),
5630 "!inline_history operands must be functions or null", MD);
5636void Verifier::visitInstruction(Instruction &
I) {
5638 Check(BB,
"Instruction not embedded in basic block!", &
I);
5641 for (User *U :
I.users()) {
5642 Check(U != (User *)&
I || !DT.isReachableFromEntry(BB),
5643 "Only PHI nodes may reference their own value!", &
I);
5648 Check(!
I.getType()->isVoidTy() || !
I.hasName(),
5649 "Instruction has a name, but provides a void value!", &
I);
5653 Check(
I.getType()->isVoidTy() ||
I.getType()->isFirstClassType(),
5654 "Instruction returns a non-scalar type!", &
I);
5659 "Invalid use of metadata!", &
I);
5664 for (Use &U :
I.uses()) {
5667 "Instruction referencing"
5668 " instruction not embedded in a basic block!",
5671 CheckFailed(
"Use of instruction is not an instruction!", U);
5680 for (
unsigned i = 0, e =
I.getNumOperands(); i != e; ++i) {
5681 Check(
I.getOperand(i) !=
nullptr,
"Instruction has null operand!", &
I);
5685 if (!
I.getOperand(i)->getType()->isFirstClassType()) {
5686 Check(
false,
"Instruction operands must be first-class values!", &
I);
5692 auto IsAttachedCallOperand = [](
Function *
F,
const CallBase *CBI,
5694 return CBI && CBI->isOperandBundleOfType(
5702 Check((!
F->isIntrinsic() ||
5703 (CBI && &CBI->getCalledOperandUse() == &
I.getOperandUse(i)) ||
5704 IsAttachedCallOperand(
F, CBI, i)),
5705 "Cannot take the address of an intrinsic!", &
I);
5707 F->getIntrinsicID() == Intrinsic::donothing ||
5708 F->getIntrinsicID() == Intrinsic::seh_try_begin ||
5709 F->getIntrinsicID() == Intrinsic::seh_try_end ||
5710 F->getIntrinsicID() == Intrinsic::seh_scope_begin ||
5711 F->getIntrinsicID() == Intrinsic::seh_scope_end ||
5712 F->getIntrinsicID() == Intrinsic::coro_resume ||
5713 F->getIntrinsicID() == Intrinsic::coro_destroy ||
5714 F->getIntrinsicID() == Intrinsic::coro_await_suspend_void ||
5715 F->getIntrinsicID() == Intrinsic::coro_await_suspend_bool ||
5716 F->getIntrinsicID() == Intrinsic::coro_await_suspend_handle ||
5717 F->getIntrinsicID() ==
5718 Intrinsic::experimental_patchpoint_void ||
5719 F->getIntrinsicID() == Intrinsic::experimental_patchpoint ||
5720 F->getIntrinsicID() == Intrinsic::fake_use ||
5721 F->getIntrinsicID() == Intrinsic::experimental_gc_statepoint ||
5722 F->getIntrinsicID() == Intrinsic::wasm_throw ||
5723 F->getIntrinsicID() == Intrinsic::wasm_rethrow ||
5724 IsAttachedCallOperand(
F, CBI, i),
5725 "Cannot invoke an intrinsic other than donothing, patchpoint, "
5726 "statepoint, coro_resume, coro_destroy, clang.arc.attachedcall or "
5729 Check(
F->getParent() == &M,
"Referencing function in another module!", &
I,
5730 &M,
F,
F->getParent());
5733 "Referring to a basic block in another function!", &
I);
5736 "Referring to an argument in another function!", &
I);
5738 Check(GV->
getParent() == &M,
"Referencing global in another module!", &
I,
5742 "Referring to an instruction in another function!", &
I);
5743 verifyDominatesUse(
I, i);
5745 Check(CBI && &CBI->getCalledOperandUse() == &
I.getOperandUse(i),
5746 "Cannot take the address of an inline asm!", &
I);
5748 visitConstantExprsRecursively(
C);
5752 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_fpmath)) {
5753 Check(
I.getType()->isFPOrFPVectorTy(),
5754 "fpmath requires a floating point result!", &
I);
5756 if (ConstantFP *CFP0 =
5758 const APFloat &Accuracy = CFP0->getValueAPF();
5760 "fpmath accuracy must have float type", &
I);
5762 "fpmath accuracy not a positive number!", &
I);
5764 Check(
false,
"invalid fpmath accuracy!", &
I);
5768 if (MDNode *
Range =
I.getMetadata(LLVMContext::MD_range)) {
5770 "Ranges are only for loads, calls and invokes!", &
I);
5771 visitRangeMetadata(
I,
Range,
I.getType());
5774 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_nofpclass)) {
5776 visitNoFPClassMetadata(
I, MD,
I.getType());
5779 if (MDNode *
Range =
I.getMetadata(LLVMContext::MD_noalias_addrspace)) {
5782 "noalias.addrspace are only for memory operations!", &
I);
5783 visitNoaliasAddrspaceMetadata(
I,
Range,
I.getType());
5786 if (
I.hasMetadata(LLVMContext::MD_invariant_group)) {
5788 "invariant.group metadata is only for loads and stores", &
I);
5791 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_nonnull)) {
5792 Check(
I.getType()->isPointerTy(),
"nonnull applies only to pointer types",
5795 "nonnull applies only to load instructions, use attributes"
5796 " for calls or invokes",
5801 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_dereferenceable))
5802 visitDereferenceableMetadata(
I, MD);
5804 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_dereferenceable_or_null))
5805 visitDereferenceableMetadata(
I, MD);
5807 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_nofree))
5808 visitNofreeMetadata(
I, MD);
5810 if (MDNode *TBAA =
I.getMetadata(LLVMContext::MD_tbaa))
5813 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_noalias))
5814 visitAliasScopeListMetadata(MD);
5815 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_alias_scope))
5816 visitAliasScopeListMetadata(MD);
5818 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_access_group))
5819 visitAccessGroupMetadata(MD);
5821 if (MDNode *AlignMD =
I.getMetadata(LLVMContext::MD_align)) {
5822 Check(
I.getType()->isPointerTy(),
"align applies only to pointer types",
5825 "align applies only to load instructions, "
5826 "use attributes for calls or invokes",
5828 Check(AlignMD->getNumOperands() == 1,
"align takes one operand!", &
I);
5831 "align metadata value must be an i64!", &
I);
5835 Check(Align <= Value::MaximumAlignment,
5836 "alignment is larger that implementation defined limit", &
I);
5839 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_prof))
5840 visitProfMetadata(
I, MD);
5842 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_memprof))
5843 visitMemProfMetadata(
I, MD);
5845 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_callsite))
5846 visitCallsiteMetadata(
I, MD);
5848 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_callee_type))
5849 visitCalleeTypeMetadata(
I, MD);
5851 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_DIAssignID))
5852 visitDIAssignIDMetadata(
I, MD);
5854 if (MDNode *MMRA =
I.getMetadata(LLVMContext::MD_mmra))
5855 visitMMRAMetadata(
I, MMRA);
5857 if (MDNode *Annotation =
I.getMetadata(LLVMContext::MD_annotation))
5858 visitAnnotationMetadata(Annotation);
5860 if (MDNode *Captures =
I.getMetadata(LLVMContext::MD_captures))
5861 visitCapturesMetadata(
I, Captures);
5863 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_alloc_token))
5864 visitAllocTokenMetadata(
I, MD);
5866 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_inline_history))
5867 visitInlineHistoryMetadata(
I, MD);
5869 if (MDNode *
N =
I.getDebugLoc().getAsMDNode()) {
5871 visitMDNode(*
N, AreDebugLocsAllowed::Yes);
5874 if (
DL->getAtomGroup()) {
5875 CheckDI(
DL->getScope()->getSubprogram()->getKeyInstructionsEnabled(),
5876 "DbgLoc uses atomGroup but DISubprogram doesn't have Key "
5877 "Instructions enabled",
5878 DL,
DL->getScope()->getSubprogram());
5884 I.getAllMetadata(MDs);
5885 for (
auto Attachment : MDs) {
5886 unsigned Kind = Attachment.first;
5888 (
Kind == LLVMContext::MD_dbg ||
Kind == LLVMContext::MD_loop)
5889 ? AreDebugLocsAllowed::Yes
5890 : AreDebugLocsAllowed::
No;
5891 visitMDNode(*Attachment.second, AllowLocs);
5906 bool IsVarArg = IFTy->isVarArg();
5917 "Intrinsic has incorrect return type!", IF);
5919 "Intrinsic has incorrect argument type!", IF);
5924 "Intrinsic was not defined with variable arguments!", IF);
5927 "Callsite was not defined with variable arguments!", IF);
5936 const std::string ExpectedName =
5939 "Intrinsic name not mangled correctly for type arguments! "
5951 "const x86_amx is not allowed in argument!");
5957 case Intrinsic::assume: {
5961 "assume with operand bundles must have i1 true condition",
Call);
5964 unsigned ArgCount = Elem.End - Elem.Begin;
5967 if (Elem.Tag->getKey() ==
"separate_storage") {
5968 Check(ArgCount == 2,
5969 "separate_storage assumptions should have 2 arguments",
Call);
5972 "arguments to separate_storage assumptions should be pointers",
5976 Check(Elem.Tag->getKey() ==
"ignore" ||
5977 Attribute::isExistingAttribute(Elem.Tag->getKey()),
5978 "tags must be valid attribute names",
Call);
5979 Attribute::AttrKind
Kind =
5980 Attribute::getAttrKindFromName(Elem.Tag->getKey());
5981 if (Kind == Attribute::Alignment) {
5982 Check(ArgCount <= 3 && ArgCount >= 2,
5983 "alignment assumptions should have 2 or 3 arguments",
Call);
5985 "first argument should be a pointer",
Call);
5987 "second argument should be an integer",
Call);
5990 "third argument should be an integer if present",
Call);
5993 if (Kind == Attribute::Dereferenceable) {
5994 Check(ArgCount == 2,
5995 "dereferenceable assumptions should have 2 arguments",
Call);
5997 "first argument should be a pointer",
Call);
5999 "second argument should be an integer",
Call);
6002 Check(ArgCount <= 2,
"too many arguments",
Call);
6003 if (Kind == Attribute::None)
6005 if (Attribute::isIntAttrKind(Kind)) {
6006 Check(ArgCount == 2,
"this attribute should have 2 arguments",
Call);
6008 "the second argument should be a constant integral value",
Call);
6009 }
else if (Attribute::canUseAsParamAttr(Kind)) {
6010 Check((ArgCount) == 1,
"this attribute should have one argument",
Call);
6011 }
else if (Attribute::canUseAsFnAttr(Kind)) {
6012 Check((ArgCount) == 0,
"this attribute has no argument",
Call);
6017 case Intrinsic::ucmp:
6018 case Intrinsic::scmp: {
6023 "result type must be at least 2 bits wide",
Call);
6025 bool IsDestTypeVector = DestTy->
isVectorTy();
6027 "ucmp/scmp argument and result types must both be either vector or "
6030 if (IsDestTypeVector) {
6033 Check(SrcVecLen == DestVecLen,
6034 "return type and arguments must have the same number of "
6040 case Intrinsic::coro_id: {
6046 "info argument of llvm.coro.id must refer to an initialized "
6050 "info argument of llvm.coro.id must refer to either a struct or "
6054 case Intrinsic::is_fpclass: {
6057 "unsupported bits for llvm.is.fpclass test mask");
6060 case Intrinsic::fptrunc_round: {
6065 MD = MAV->getMetadata();
6067 Check(MD !=
nullptr,
"missing rounding mode argument",
Call);
6070 (
"invalid value for llvm.fptrunc.round metadata operand"
6071 " (the operand should be a string)"),
6074 std::optional<RoundingMode> RoundMode =
6076 Check(RoundMode && *RoundMode != RoundingMode::Dynamic,
6077 "unsupported rounding mode argument",
Call);
6080 case Intrinsic::convert_to_arbitrary_fp: {
6088 "if floating-point operand is a vector, integer operand must also "
6091 Check(ValueVecTy->getElementCount() == IntVecTy->getElementCount(),
6092 "floating-point and integer vector operands must have the same "
6099 Check(InterpMAV,
"missing interpretation metadata operand",
Call);
6101 Check(InterpStr,
"interpretation metadata operand must be a string",
Call);
6102 StringRef Interp = InterpStr->getString();
6104 Check(!Interp.
empty(),
"interpretation metadata string must not be empty",
6109 "unsupported interpretation metadata string",
Call);
6113 Check(RoundingMAV,
"missing rounding mode metadata operand",
Call);
6115 Check(RoundingStr,
"rounding mode metadata operand must be a string",
Call);
6117 std::optional<RoundingMode>
RM =
6119 Check(RM && *RM != RoundingMode::Dynamic,
6120 "unsupported rounding mode argument",
Call);
6123 case Intrinsic::convert_from_arbitrary_fp: {
6131 "if floating-point operand is a vector, integer operand must also "
6134 Check(ValueVecTy->getElementCount() == IntVecTy->getElementCount(),
6135 "floating-point and integer vector operands must have the same "
6142 Check(InterpMAV,
"missing interpretation metadata operand",
Call);
6144 Check(InterpStr,
"interpretation metadata operand must be a string",
Call);
6145 StringRef Interp = InterpStr->getString();
6147 Check(!Interp.
empty(),
"interpretation metadata string must not be empty",
6152 "unsupported interpretation metadata string",
Call);
6155#define BEGIN_REGISTER_VP_INTRINSIC(VPID, ...) case Intrinsic::VPID:
6156#include "llvm/IR/VPIntrinsics.def"
6157#undef BEGIN_REGISTER_VP_INTRINSIC
6160#define INSTRUCTION(NAME, NARGS, ROUND_MODE, INTRINSIC) \
6161 case Intrinsic::INTRINSIC:
6162#include "llvm/IR/ConstrainedOps.def"
6166 case Intrinsic::dbg_declare:
6167 case Intrinsic::dbg_value:
6168 case Intrinsic::dbg_assign:
6169 case Intrinsic::dbg_label:
6176 case Intrinsic::memcpy:
6177 case Intrinsic::memcpy_inline:
6178 case Intrinsic::memmove:
6179 case Intrinsic::memset:
6180 case Intrinsic::memset_inline:
6182 case Intrinsic::experimental_memset_pattern: {
6184 Check(Memset->getValue()->getType()->isSized(),
6185 "unsized types cannot be used as memset patterns",
Call);
6188 case Intrinsic::memcpy_element_unordered_atomic:
6189 case Intrinsic::memmove_element_unordered_atomic:
6190 case Intrinsic::memset_element_unordered_atomic: {
6193 ConstantInt *ElementSizeCI =
6195 const APInt &ElementSizeVal = ElementSizeCI->
getValue();
6197 "element size of the element-wise atomic memory intrinsic "
6198 "must be a power of 2",
6201 auto IsValidAlignment = [&](MaybeAlign Alignment) {
6202 return Alignment && ElementSizeVal.
ule(Alignment->value());
6204 Check(IsValidAlignment(AMI->getDestAlign()),
6205 "incorrect alignment of the destination argument",
Call);
6207 Check(IsValidAlignment(AMT->getSourceAlign()),
6208 "incorrect alignment of the source argument",
Call);
6212 case Intrinsic::call_preallocated_setup: {
6214 bool FoundCall =
false;
6217 Check(UseCall !=
nullptr,
6218 "Uses of llvm.call.preallocated.setup must be calls");
6220 if (IID == Intrinsic::call_preallocated_arg) {
6222 Check(AllocArgIndex !=
nullptr,
6223 "llvm.call.preallocated.alloc arg index must be a constant");
6224 auto AllocArgIndexInt = AllocArgIndex->getValue();
6225 Check(AllocArgIndexInt.sge(0) &&
6226 AllocArgIndexInt.slt(NumArgs->getValue()),
6227 "llvm.call.preallocated.alloc arg index must be between 0 and "
6229 "llvm.call.preallocated.setup's argument count");
6230 }
else if (IID == Intrinsic::call_preallocated_teardown) {
6233 Check(!FoundCall,
"Can have at most one call corresponding to a "
6234 "llvm.call.preallocated.setup");
6236 size_t NumPreallocatedArgs = 0;
6237 for (
unsigned i = 0; i < UseCall->arg_size(); i++) {
6238 if (UseCall->paramHasAttr(i, Attribute::Preallocated)) {
6239 ++NumPreallocatedArgs;
6242 Check(NumPreallocatedArgs != 0,
6243 "cannot use preallocated intrinsics on a call without "
6244 "preallocated arguments");
6245 Check(NumArgs->equalsInt(NumPreallocatedArgs),
6246 "llvm.call.preallocated.setup arg size must be equal to number "
6247 "of preallocated arguments "
6257 auto PreallocatedBundle =
6259 Check(PreallocatedBundle,
6260 "Use of llvm.call.preallocated.setup outside intrinsics "
6261 "must be in \"preallocated\" operand bundle");
6262 Check(PreallocatedBundle->Inputs.front().get() == &
Call,
6263 "preallocated bundle must have token from corresponding "
6264 "llvm.call.preallocated.setup");
6269 case Intrinsic::call_preallocated_arg: {
6272 Token->getIntrinsicID() == Intrinsic::call_preallocated_setup,
6273 "llvm.call.preallocated.arg token argument must be a "
6274 "llvm.call.preallocated.setup");
6276 "llvm.call.preallocated.arg must be called with a \"preallocated\" "
6277 "call site attribute");
6280 case Intrinsic::call_preallocated_teardown: {
6283 Token->getIntrinsicID() == Intrinsic::call_preallocated_setup,
6284 "llvm.call.preallocated.teardown token argument must be a "
6285 "llvm.call.preallocated.setup");
6288 case Intrinsic::gcroot:
6289 case Intrinsic::gcwrite:
6290 case Intrinsic::gcread:
6291 if (
ID == Intrinsic::gcroot) {
6294 Check(AI,
"llvm.gcroot parameter #1 must be an alloca.",
Call);
6296 "llvm.gcroot parameter #2 must be a constant.",
Call);
6299 "llvm.gcroot parameter #1 must either be a pointer alloca, "
6300 "or argument #2 must be a non-null constant.",
6306 "Enclosing function does not use GC.",
Call);
6308 case Intrinsic::init_trampoline:
6310 "llvm.init_trampoline parameter #2 must resolve to a function.",
6313 case Intrinsic::prefetch:
6315 "rw argument to llvm.prefetch must be 0-1",
Call);
6317 "locality argument to llvm.prefetch must be 0-3",
Call);
6319 "cache type argument to llvm.prefetch must be 0-1",
Call);
6321 case Intrinsic::reloc_none: {
6324 "llvm.reloc.none argument must be a metadata string", &
Call);
6327 case Intrinsic::stackprotector:
6329 "llvm.stackprotector parameter #2 must resolve to an alloca.",
Call);
6331 case Intrinsic::localescape: {
6335 Check(!SawFrameEscape,
"multiple calls to llvm.localescape in one function",
6342 "llvm.localescape only accepts static allocas",
Call);
6345 SawFrameEscape =
true;
6348 case Intrinsic::localrecover: {
6352 "llvm.localrecover first "
6353 "argument must be function defined in this module",
6356 auto &
Entry = FrameEscapeInfo[Fn];
6357 Entry.second = unsigned(
6358 std::max(uint64_t(
Entry.second), IdxArg->getLimitedValue(~0U) + 1));
6362 case Intrinsic::experimental_gc_statepoint:
6364 Check(!CI->isInlineAsm(),
6365 "gc.statepoint support for inline assembly unimplemented", CI);
6367 "Enclosing function does not use GC.",
Call);
6369 verifyStatepoint(
Call);
6371 case Intrinsic::experimental_gc_result: {
6373 "Enclosing function does not use GC.",
Call);
6381 Check(StatepointCall && StatepointCall->getIntrinsicID() ==
6382 Intrinsic::experimental_gc_statepoint,
6383 "gc.result operand #1 must be from a statepoint",
Call,
6387 auto *TargetFuncType =
6390 "gc.result result type does not match wrapped callee",
Call);
6393 case Intrinsic::experimental_gc_relocate: {
6397 "gc.relocate must return a pointer or a vector of pointers",
Call);
6402 if (LandingPadInst *LandingPad =
6406 LandingPad->getParent()->getUniquePredecessor();
6410 Check(InvokeBB,
"safepoints should have unique landingpads",
6411 LandingPad->getParent());
6415 "gc relocate should be linked to a statepoint", InvokeBB);
6422 "gc relocate is incorrectly tied to the statepoint",
Call, Token);
6431 "gc.relocate operand #2 must be integer offset",
Call);
6435 "gc.relocate operand #3 must be integer offset",
Call);
6445 Check(BaseIndex < Opt->Inputs.size(),
6446 "gc.relocate: statepoint base index out of bounds",
Call);
6447 Check(DerivedIndex < Opt->Inputs.size(),
6448 "gc.relocate: statepoint derived index out of bounds",
Call);
6461 "gc.relocate: relocated value must be a pointer",
Call);
6462 Check(DerivedType->isPtrOrPtrVectorTy(),
6463 "gc.relocate: relocated value must be a pointer",
Call);
6465 Check(ResultType->isVectorTy() == DerivedType->isVectorTy(),
6466 "gc.relocate: vector relocates to vector and pointer to pointer",
6469 ResultType->getPointerAddressSpace() ==
6470 DerivedType->getPointerAddressSpace(),
6471 "gc.relocate: relocating a pointer shouldn't change its address space",
6475 Check(GC,
"gc.relocate: calling function must have GCStrategy",
6478 auto isGCPtr = [&
GC](
Type *PTy) {
6479 return GC->isGCManagedPointer(PTy->getScalarType()).value_or(
true);
6481 Check(isGCPtr(ResultType),
"gc.relocate: must return gc pointer",
Call);
6483 "gc.relocate: relocated value must be a gc pointer",
Call);
6484 Check(isGCPtr(DerivedType),
6485 "gc.relocate: relocated value must be a gc pointer",
Call);
6489 case Intrinsic::experimental_patchpoint: {
6492 "patchpoint: invalid return type used with anyregcc",
Call);
6496 case Intrinsic::eh_exceptioncode:
6497 case Intrinsic::eh_exceptionpointer: {
6499 "eh.exceptionpointer argument must be a catchpad",
Call);
6502 case Intrinsic::get_active_lane_mask: {
6504 "get_active_lane_mask: must return a "
6508 Check(ElemTy->isIntegerTy(1),
6509 "get_active_lane_mask: element type is not "
6514 case Intrinsic::experimental_get_vector_length: {
6517 "get_vector_length: VF must be positive",
Call);
6520 case Intrinsic::masked_load: {
6526 Check(
Mask->getType()->isVectorTy(),
"masked_load: mask must be vector",
6529 "masked_load: pass through and return type must match",
Call);
6532 "masked_load: vector mask must be same length as return",
Call);
6535 case Intrinsic::masked_store: {
6538 Check(
Mask->getType()->isVectorTy(),
"masked_store: mask must be vector",
6542 "masked_store: vector mask must be same length as value",
Call);
6545 case Intrinsic::experimental_guard: {
6548 "experimental_guard must have exactly one "
6549 "\"deopt\" operand bundle");
6553 case Intrinsic::experimental_deoptimize: {
6557 "experimental_deoptimize must have exactly one "
6558 "\"deopt\" operand bundle");
6560 "experimental_deoptimize return type must match caller return type");
6565 "calls to experimental_deoptimize must be followed by a return");
6569 "calls to experimental_deoptimize must be followed by a return "
6570 "of the value computed by experimental_deoptimize");
6575 case Intrinsic::vastart: {
6577 "va_start called in a non-varargs function");
6580 case Intrinsic::get_dynamic_area_offset: {
6582 Check(IntTy &&
DL.getPointerSizeInBits(
DL.getAllocaAddrSpace()) ==
6583 IntTy->getBitWidth(),
6584 "get_dynamic_area_offset result type must be scalar integer matching "
6585 "alloca address space width",
6589 case Intrinsic::masked_udiv:
6590 case Intrinsic::masked_sdiv:
6591 case Intrinsic::masked_urem:
6592 case Intrinsic::masked_srem:
6593 case Intrinsic::vector_reduce_and:
6594 case Intrinsic::vector_reduce_or:
6595 case Intrinsic::vector_reduce_xor:
6596 case Intrinsic::vector_reduce_add:
6597 case Intrinsic::vector_reduce_mul:
6598 case Intrinsic::vector_reduce_smax:
6599 case Intrinsic::vector_reduce_smin:
6600 case Intrinsic::vector_reduce_umax:
6601 case Intrinsic::vector_reduce_umin: {
6604 "Intrinsic has incorrect argument type!");
6607 case Intrinsic::vector_reduce_fmax:
6608 case Intrinsic::vector_reduce_fmin: {
6611 "Intrinsic has incorrect argument type!");
6614 case Intrinsic::vector_reduce_fadd:
6615 case Intrinsic::vector_reduce_fmul: {
6620 "Intrinsic has incorrect argument type!");
6623 case Intrinsic::smul_fix:
6624 case Intrinsic::smul_fix_sat:
6625 case Intrinsic::umul_fix:
6626 case Intrinsic::umul_fix_sat:
6627 case Intrinsic::sdiv_fix:
6628 case Intrinsic::sdiv_fix_sat:
6629 case Intrinsic::udiv_fix:
6630 case Intrinsic::udiv_fix_sat: {
6634 "first operand of [us][mul|div]_fix[_sat] must be an int type or "
6637 "second operand of [us][mul|div]_fix[_sat] must be an int type or "
6641 Check(Op3->getType()->isIntegerTy(),
6642 "third operand of [us][mul|div]_fix[_sat] must be an int type");
6643 Check(Op3->getBitWidth() <= 32,
6644 "third operand of [us][mul|div]_fix[_sat] must fit within 32 bits");
6646 if (
ID == Intrinsic::smul_fix ||
ID == Intrinsic::smul_fix_sat ||
6647 ID == Intrinsic::sdiv_fix ||
ID == Intrinsic::sdiv_fix_sat) {
6649 "the scale of s[mul|div]_fix[_sat] must be less than the width of "
6653 "the scale of u[mul|div]_fix[_sat] must be less than or equal "
6654 "to the width of the operands");
6658 case Intrinsic::lrint:
6659 case Intrinsic::llrint:
6660 case Intrinsic::lround:
6661 case Intrinsic::llround: {
6667 ExpectedName +
": argument must be floating-point or vector "
6668 "of floating-points, and result must be integer or "
6669 "vector of integers",
6672 ExpectedName +
": argument and result disagree on vector use", &
Call);
6674 Check(VTy->getElementCount() == RTy->getElementCount(),
6675 ExpectedName +
": argument must be same length as result", &
Call);
6679 case Intrinsic::bswap: {
6682 Check(
Size % 16 == 0,
"bswap must be an even number of bytes", &
Call);
6685 case Intrinsic::invariant_start: {
6687 Check(InvariantSize &&
6689 "invariant_start parameter must be -1, 0 or a positive number",
6693 case Intrinsic::matrix_multiply:
6694 case Intrinsic::matrix_transpose:
6695 case Intrinsic::matrix_column_major_load:
6696 case Intrinsic::matrix_column_major_store: {
6698 ConstantInt *Stride =
nullptr;
6699 ConstantInt *NumRows;
6700 ConstantInt *NumColumns;
6702 Type *Op0ElemTy =
nullptr;
6703 Type *Op1ElemTy =
nullptr;
6705 case Intrinsic::matrix_multiply: {
6710 ->getNumElements() ==
6712 "First argument of a matrix operation does not match specified "
6715 ->getNumElements() ==
6717 "Second argument of a matrix operation does not match specified "
6727 case Intrinsic::matrix_transpose:
6734 case Intrinsic::matrix_column_major_load: {
6741 case Intrinsic::matrix_column_major_store: {
6754 Check(ResultTy->getElementType()->isIntegerTy() ||
6755 ResultTy->getElementType()->isFloatingPointTy(),
6756 "Result type must be an integer or floating-point type!", IF);
6759 Check(ResultTy->getElementType() == Op0ElemTy,
6760 "Vector element type mismatch of the result and first operand "
6765 Check(ResultTy->getElementType() == Op1ElemTy,
6766 "Vector element type mismatch of the result and second operand "
6772 "Result of a matrix operation does not fit in the returned vector!");
6778 "Stride must be greater or equal than the number of rows!", IF);
6783 case Intrinsic::stepvector: {
6785 Check(VecTy && VecTy->getScalarType()->isIntegerTy() &&
6786 VecTy->getScalarSizeInBits() >= 8,
6787 "stepvector only supported for vectors of integers "
6788 "with a bitwidth of at least 8.",
6792 case Intrinsic::experimental_vector_match: {
6801 Check(Op1Ty && Op2Ty && MaskTy,
"Operands must be vectors.", &
Call);
6803 "Second operand must be a fixed length vector.", &
Call);
6804 Check(Op1Ty->getElementType()->isIntegerTy(),
6805 "First operand must be a vector of integers.", &
Call);
6806 Check(Op1Ty->getElementType() == Op2Ty->getElementType(),
6807 "First two operands must have the same element type.", &
Call);
6808 Check(Op1Ty->getElementCount() == MaskTy->getElementCount(),
6809 "First operand and mask must have the same number of elements.",
6811 Check(MaskTy->getElementType()->isIntegerTy(1),
6812 "Mask must be a vector of i1's.", &
Call);
6817 case Intrinsic::vector_insert: {
6826 ElementCount VecEC = VecTy->getElementCount();
6827 ElementCount SubVecEC = SubVecTy->getElementCount();
6828 Check(VecTy->getElementType() == SubVecTy->getElementType(),
6829 "vector_insert parameters must have the same element "
6833 "vector_insert index must be a constant multiple of "
6834 "the subvector's known minimum vector length.");
6842 "subvector operand of vector_insert would overrun the "
6843 "vector being inserted into.");
6847 case Intrinsic::vector_extract: {
6855 ElementCount VecEC = VecTy->getElementCount();
6856 ElementCount ResultEC = ResultTy->getElementCount();
6858 Check(ResultTy->getElementType() == VecTy->getElementType(),
6859 "vector_extract result must have the same element "
6860 "type as the input vector.",
6863 "vector_extract index must be a constant multiple of "
6864 "the result type's known minimum vector length.");
6872 "vector_extract would overrun.");
6876 case Intrinsic::vector_partial_reduce_fadd:
6877 case Intrinsic::vector_partial_reduce_add: {
6881 unsigned VecWidth = VecTy->getElementCount().getKnownMinValue();
6882 unsigned AccWidth = AccTy->getElementCount().getKnownMinValue();
6884 Check((VecWidth % AccWidth) == 0,
6885 "Invalid vector widths for partial "
6886 "reduction. The width of the input vector "
6887 "must be a positive integer multiple of "
6888 "the width of the accumulator vector.");
6891 case Intrinsic::experimental_noalias_scope_decl: {
6895 case Intrinsic::preserve_array_access_index:
6896 case Intrinsic::preserve_struct_access_index:
6897 case Intrinsic::aarch64_ldaxr:
6898 case Intrinsic::aarch64_ldxr:
6899 case Intrinsic::arm_ldaex:
6900 case Intrinsic::arm_ldrex: {
6902 Check(ElemTy,
"Intrinsic requires elementtype attribute on first argument.",
6906 case Intrinsic::aarch64_stlxr:
6907 case Intrinsic::aarch64_stxr:
6908 case Intrinsic::arm_stlex:
6909 case Intrinsic::arm_strex: {
6912 "Intrinsic requires elementtype attribute on second argument.",
6916 case Intrinsic::aarch64_prefetch: {
6918 "write argument to llvm.aarch64.prefetch must be 0 or 1",
Call);
6920 "target argument to llvm.aarch64.prefetch must be 0-3",
Call);
6922 "stream argument to llvm.aarch64.prefetch must be 0 or 1",
Call);
6924 "isdata argument to llvm.aarch64.prefetch must be 0 or 1",
Call);
6927 case Intrinsic::aarch64_range_prefetch: {
6929 "write argument to llvm.aarch64.range.prefetch must be 0 or 1",
Call);
6931 "stream argument to llvm.aarch64.range.prefetch must be 0 or 1",
6935 case Intrinsic::aarch64_stshh_atomic_store: {
6937 Check(Order ==
static_cast<uint64_t
>(AtomicOrderingCABI::relaxed) ||
6938 Order ==
static_cast<uint64_t
>(AtomicOrderingCABI::release) ||
6939 Order ==
static_cast<uint64_t
>(AtomicOrderingCABI::seq_cst),
6940 "order argument to llvm.aarch64.stshh.atomic.store must be 0, 3 or 5",
6944 "policy argument to llvm.aarch64.stshh.atomic.store must be 0 or 1",
6949 "size argument to llvm.aarch64.stshh.atomic.store must be 8, 16, "
6954 case Intrinsic::callbr_landingpad: {
6956 Check(CBR,
"intrinstic requires callbr operand", &
Call);
6963 CheckFailed(
"Intrinsic in block must have 1 unique predecessor", &
Call);
6967 CheckFailed(
"Intrinsic must have corresponding callbr in predecessor",
6972 "Intrinsic's corresponding callbr must have intrinsic's parent basic "
6973 "block in indirect destination list",
6976 Check(&
First == &
Call,
"No other instructions may proceed intrinsic",
6980 case Intrinsic::structured_gep: {
6986 "Intrinsic first parameter is missing an ElementType attribute",
6994 "Index operand type must be an integer", &
Call);
6997 T = AT->getElementType();
6999 Check(CI,
"Indexing into a struct requires a constant int", &
Call);
7001 "Indexing in a struct should be inbounds", &
Call);
7004 T = VT->getElementType();
7006 CheckFailed(
"Reached a non-composite type with more indices to process",
7012 case Intrinsic::structured_alloca:
7014 "@llvm.structured.alloca calls require elementtype attribute.",
7017 case Intrinsic::amdgcn_cs_chain: {
7020 case CallingConv::AMDGPU_CS:
7021 case CallingConv::AMDGPU_CS_Chain:
7022 case CallingConv::AMDGPU_CS_ChainPreserve:
7023 case CallingConv::AMDGPU_ES:
7024 case CallingConv::AMDGPU_GS:
7025 case CallingConv::AMDGPU_HS:
7026 case CallingConv::AMDGPU_LS:
7027 case CallingConv::AMDGPU_VS:
7030 CheckFailed(
"Intrinsic cannot be called from functions with this "
7031 "calling convention",
7037 "SGPR arguments must have the `inreg` attribute", &
Call);
7039 "VGPR arguments must not have the `inreg` attribute", &
Call);
7044 Intrinsic::amdgcn_unreachable;
7046 "llvm.amdgcn.cs.chain must be followed by unreachable", &
Call);
7049 case Intrinsic::amdgcn_init_exec_from_input: {
7052 "only inreg arguments to the parent function are valid as inputs to "
7057 case Intrinsic::amdgcn_set_inactive_chain_arg: {
7060 case CallingConv::AMDGPU_CS_Chain:
7061 case CallingConv::AMDGPU_CS_ChainPreserve:
7064 CheckFailed(
"Intrinsic can only be used from functions with the "
7065 "amdgpu_cs_chain or amdgpu_cs_chain_preserve "
7066 "calling conventions",
7071 unsigned InactiveIdx = 1;
7073 "Value for inactive lanes must not have the `inreg` attribute",
7076 "Value for inactive lanes must be a function argument", &
Call);
7078 "Value for inactive lanes must be a VGPR function argument", &
Call);
7081 case Intrinsic::amdgcn_call_whole_wave: {
7083 Check(
F,
"Indirect whole wave calls are not allowed", &
Call);
7085 CallingConv::ID CC =
F->getCallingConv();
7086 Check(CC == CallingConv::AMDGPU_Gfx_WholeWave,
7087 "Callee must have the amdgpu_gfx_whole_wave calling convention",
7090 Check(!
F->isVarArg(),
"Variadic whole wave calls are not allowed", &
Call);
7093 "Call argument count must match callee argument count", &
Call);
7097 Check(
F->arg_begin()->getType()->isIntegerTy(1),
7098 "Callee must have i1 as its first argument", &
Call);
7099 for (
auto [CallArg, FuncArg] :
7101 Check(CallArg->getType() == FuncArg.getType(),
7102 "Argument types must match", &
Call);
7106 FuncArg.hasInRegAttr(),
7107 "Argument inreg attributes must match", &
Call);
7111 case Intrinsic::amdgcn_s_prefetch_data: {
7115 "llvm.amdgcn.s.prefetch.data only supports global or constant memory");
7118 case Intrinsic::amdgcn_mfma_scale_f32_16x16x128_f8f6f4:
7119 case Intrinsic::amdgcn_mfma_scale_f32_32x32x64_f8f6f4: {
7125 Check(CBSZ <= 4,
"invalid value for cbsz format",
Call,
7127 Check(BLGP <= 4,
"invalid value for blgp format",
Call,
7131 auto getFormatNumRegs = [](
unsigned FormatVal) {
7132 switch (FormatVal) {
7146 auto isValidSrcASrcBVector = [](FixedVectorType *Ty) {
7147 if (!Ty || !Ty->getElementType()->
isIntegerTy(32))
7149 unsigned NumElts = Ty->getNumElements();
7150 return NumElts == 4 || NumElts == 6 || NumElts == 8;
7155 Check(isValidSrcASrcBVector(Src0Ty),
7156 "operand 0 must be 4, 6 or 8 element i32 vector", &
Call, Src0);
7157 Check(isValidSrcASrcBVector(Src1Ty),
7158 "operand 1 must be 4, 6 or 8 element i32 vector", &
Call, Src1);
7161 Check(Src0Ty->getNumElements() >= getFormatNumRegs(CBSZ),
7163 Check(Src1Ty->getNumElements() >= getFormatNumRegs(BLGP),
7167 case Intrinsic::amdgcn_wmma_f32_16x16x128_f8f6f4:
7168 case Intrinsic::amdgcn_wmma_scale_f32_16x16x128_f8f6f4:
7169 case Intrinsic::amdgcn_wmma_scale16_f32_16x16x128_f8f6f4: {
7175 Check(FmtA <= 4,
"invalid value for matrix format",
Call,
7177 Check(FmtB <= 4,
"invalid value for matrix format",
Call,
7181 auto getFormatNumRegs = [](
unsigned FormatVal) {
7182 switch (FormatVal) {
7196 auto isValidSrcASrcBVector = [](FixedVectorType *Ty) {
7197 if (!Ty || !Ty->getElementType()->
isIntegerTy(32))
7199 unsigned NumElts = Ty->getNumElements();
7200 return NumElts == 16 || NumElts == 12 || NumElts == 8;
7205 Check(isValidSrcASrcBVector(Src0Ty),
7206 "operand 1 must be 8, 12 or 16 element i32 vector", &
Call, Src0);
7207 Check(isValidSrcASrcBVector(Src1Ty),
7208 "operand 3 must be 8, 12 or 16 element i32 vector", &
Call, Src1);
7211 Check(Src0Ty->getNumElements() >= getFormatNumRegs(FmtA),
7213 Check(Src1Ty->getNumElements() >= getFormatNumRegs(FmtB),
7217 case Intrinsic::amdgcn_cooperative_atomic_load_32x4B:
7218 case Intrinsic::amdgcn_cooperative_atomic_load_16x8B:
7219 case Intrinsic::amdgcn_cooperative_atomic_load_8x16B:
7220 case Intrinsic::amdgcn_cooperative_atomic_store_32x4B:
7221 case Intrinsic::amdgcn_cooperative_atomic_store_16x8B:
7222 case Intrinsic::amdgcn_cooperative_atomic_store_8x16B: {
7227 "cooperative atomic intrinsics require a generic or global pointer",
7234 "cooperative atomic intrinsics require that the last argument is a "
7239 case Intrinsic::nvvm_setmaxnreg_inc_sync_aligned_u32:
7240 case Intrinsic::nvvm_setmaxnreg_dec_sync_aligned_u32: {
7243 Check(RegCount % 8 == 0,
7244 "reg_count argument to nvvm.setmaxnreg must be in multiples of 8");
7247 case Intrinsic::experimental_convergence_entry:
7248 case Intrinsic::experimental_convergence_anchor:
7250 case Intrinsic::experimental_convergence_loop:
7252 case Intrinsic::ptrmask: {
7256 "llvm.ptrmask intrinsic first argument must be pointer or vector "
7261 "llvm.ptrmask intrinsic arguments must be both scalars or both vectors",
7266 "llvm.ptrmask intrinsic arguments must have the same number of "
7270 "llvm.ptrmask intrinsic second argument bitwidth must match "
7271 "pointer index type size of first argument",
7275 case Intrinsic::thread_pointer: {
7277 DL.getDefaultGlobalsAddressSpace(),
7278 "llvm.thread.pointer intrinsic return type must be for the globals "
7283 case Intrinsic::threadlocal_address: {
7286 "llvm.threadlocal.address first argument must be a GlobalValue");
7288 "llvm.threadlocal.address operand isThreadLocal() must be true");
7291 case Intrinsic::lifetime_start:
7292 case Intrinsic::lifetime_end: {
7296 (
II &&
II->getIntrinsicID() == Intrinsic::structured_alloca),
7297 "llvm.lifetime.start/end can only be used on alloca or poison",
7301 case Intrinsic::sponentry: {
7302 const unsigned StackAS =
DL.getAllocaAddrSpace();
7305 "llvm.sponentry must return a pointer to the stack", &
Call);
7313 if (
F->hasPersonalityFn() &&
7317 if (BlockEHFuncletColors.
empty())
7321 bool InEHFunclet =
false;
7325 for (BasicBlock *ColorFirstBB : CV)
7326 if (
auto It = ColorFirstBB->getFirstNonPHIIt();
7327 It != ColorFirstBB->end())
7332 bool HasToken =
false;
7339 Check(HasToken,
"Missing funclet token on intrinsic call", &
Call);
7363void Verifier::visit(DbgLabelRecord &DLR) {
7365 "invalid #dbg_label intrinsic variable", &DLR, DLR.
getRawLabel());
7378 CheckDI(Loc,
"#dbg_label record requires a !dbg attachment", &DLR, BB,
F);
7382 if (!LabelSP || !LocSP)
7386 "mismatched subprogram between #dbg_label label and !dbg attachment",
7387 &DLR, BB,
F, Label,
Label->getScope()->getSubprogram(), Loc,
7388 Loc->getScope()->getSubprogram());
7391void Verifier::visit(DbgVariableRecord &DVR) {
7395 CheckDI(DVR.
getType() == DbgVariableRecord::LocationType::Value ||
7396 DVR.
getType() == DbgVariableRecord::LocationType::Declare ||
7397 DVR.
getType() == DbgVariableRecord::LocationType::DeclareValue ||
7398 DVR.
getType() == DbgVariableRecord::LocationType::Assign,
7399 "invalid #dbg record type", &DVR, DVR.
getType(), BB,
F);
7407 "invalid #dbg record address/value", &DVR, MD, BB,
F);
7409 visitValueAsMetadata(*VAM,
F);
7412 Type *Ty = VAM->getValue()->getType();
7414 "location of #dbg_declare must be a pointer or int", &DVR, MD, BB,
7418 visitDIArgList(*AL,
F);
7432 "invalid #dbg_assign DIAssignID", &DVR, DVR.
getRawAssignID(), BB,
7435 AreDebugLocsAllowed::No);
7444 "invalid #dbg_assign address", &DVR, DVR.
getRawAddress(), BB,
F);
7446 visitValueAsMetadata(*VAM,
F);
7449 "invalid #dbg_assign address expression", &DVR,
7456 "inst not in same function as #dbg_assign",
I, &DVR, BB,
F);
7466 &DVR, DLNode, BB,
F);
7472 if (!VarSP || !LocSP)
7476 "mismatched subprogram between #dbg record variable and DILocation",
7478 Loc->getScope()->getSubprogram(), BB,
F);
7483void Verifier::visitVPIntrinsic(VPIntrinsic &VPI) {
7487 Check(RetTy->getElementCount() == ValTy->getElementCount(),
7488 "VP cast intrinsic first argument and result vector lengths must be "
7492 switch (VPCast->getIntrinsicID()) {
7495 case Intrinsic::vp_trunc:
7497 "llvm.vp.trunc intrinsic first argument and result element type "
7501 "llvm.vp.trunc intrinsic the bit size of first argument must be "
7502 "larger than the bit size of the return type",
7505 case Intrinsic::vp_zext:
7506 case Intrinsic::vp_sext:
7508 "llvm.vp.zext or llvm.vp.sext intrinsic first argument and result "
7509 "element type must be integer",
7512 "llvm.vp.zext or llvm.vp.sext intrinsic the bit size of first "
7513 "argument must be smaller than the bit size of the return type",
7516 case Intrinsic::vp_fptoui:
7517 case Intrinsic::vp_fptosi:
7518 case Intrinsic::vp_lrint:
7519 case Intrinsic::vp_llrint:
7522 "llvm.vp.fptoui, llvm.vp.fptosi, llvm.vp.lrint or llvm.vp.llrint" "intrinsic first argument element "
7523 "type must be floating-point and result element type must be integer",
7526 case Intrinsic::vp_uitofp:
7527 case Intrinsic::vp_sitofp:
7530 "llvm.vp.uitofp or llvm.vp.sitofp intrinsic first argument element "
7531 "type must be integer and result element type must be floating-point",
7534 case Intrinsic::vp_fptrunc:
7536 "llvm.vp.fptrunc intrinsic first argument and result element type "
7537 "must be floating-point",
7540 "llvm.vp.fptrunc intrinsic the bit size of first argument must be "
7541 "larger than the bit size of the return type",
7544 case Intrinsic::vp_fpext:
7546 "llvm.vp.fpext intrinsic first argument and result element type "
7547 "must be floating-point",
7550 "llvm.vp.fpext intrinsic the bit size of first argument must be "
7551 "smaller than the bit size of the return type",
7554 case Intrinsic::vp_ptrtoint:
7556 "llvm.vp.ptrtoint intrinsic first argument element type must be "
7557 "pointer and result element type must be integer",
7560 case Intrinsic::vp_inttoptr:
7562 "llvm.vp.inttoptr intrinsic first argument element type must be "
7563 "integer and result element type must be pointer",
7570 case Intrinsic::vp_fcmp: {
7573 "invalid predicate for VP FP comparison intrinsic", &VPI);
7576 case Intrinsic::vp_icmp: {
7579 "invalid predicate for VP integer comparison intrinsic", &VPI);
7582 case Intrinsic::vp_is_fpclass: {
7585 "unsupported bits for llvm.vp.is.fpclass test mask");
7588 case Intrinsic::experimental_vp_splice: {
7591 int64_t KnownMinNumElements = VecTy->getElementCount().getKnownMinValue();
7593 AttributeList
Attrs = VPI.
getParent()->getParent()->getAttributes();
7594 if (
Attrs.hasFnAttr(Attribute::VScaleRange))
7595 KnownMinNumElements *=
Attrs.getFnAttrs().getVScaleRangeMin();
7597 Check((Idx < 0 && std::abs(Idx) <= KnownMinNumElements) ||
7598 (Idx >= 0 && Idx < KnownMinNumElements),
7599 "The splice index exceeds the range [-VL, VL-1] where VL is the "
7600 "known minimum number of elements in the vector. For scalable "
7601 "vectors the minimum number of elements is determined from "
7609void Verifier::visitConstrainedFPIntrinsic(ConstrainedFPIntrinsic &FPI) {
7611 bool HasRoundingMD =
7615 NumOperands += (1 + HasRoundingMD);
7621 "invalid arguments for constrained FP intrinsic", &FPI);
7624 case Intrinsic::experimental_constrained_lrint:
7625 case Intrinsic::experimental_constrained_llrint: {
7629 "Intrinsic does not support vectors", &FPI);
7633 case Intrinsic::experimental_constrained_lround:
7634 case Intrinsic::experimental_constrained_llround: {
7638 "Intrinsic does not support vectors", &FPI);
7642 case Intrinsic::experimental_constrained_fcmp:
7643 case Intrinsic::experimental_constrained_fcmps: {
7646 "invalid predicate for constrained FP comparison intrinsic", &FPI);
7650 case Intrinsic::experimental_constrained_fptosi:
7651 case Intrinsic::experimental_constrained_fptoui: {
7655 "Intrinsic first argument must be floating point", &FPI);
7662 "Intrinsic first argument and result disagree on vector use", &FPI);
7664 "Intrinsic result must be an integer", &FPI);
7667 "Intrinsic first argument and result vector lengths must be equal",
7673 case Intrinsic::experimental_constrained_sitofp:
7674 case Intrinsic::experimental_constrained_uitofp: {
7678 "Intrinsic first argument must be integer", &FPI);
7685 "Intrinsic first argument and result disagree on vector use", &FPI);
7687 "Intrinsic result must be a floating point", &FPI);
7690 "Intrinsic first argument and result vector lengths must be equal",
7696 case Intrinsic::experimental_constrained_fptrunc:
7697 case Intrinsic::experimental_constrained_fpext: {
7703 "Intrinsic first argument must be FP or FP vector", &FPI);
7705 "Intrinsic result must be FP or FP vector", &FPI);
7707 "Intrinsic first argument and result disagree on vector use", &FPI);
7711 "Intrinsic first argument and result vector lengths must be equal",
7714 if (FPI.
getIntrinsicID() == Intrinsic::experimental_constrained_fptrunc) {
7716 "Intrinsic first argument's type must be larger than result type",
7720 "Intrinsic first argument's type must be smaller than result type",
7736 "invalid exception behavior argument", &FPI);
7737 if (HasRoundingMD) {
7743void Verifier::verifyFragmentExpression(
const DbgVariableRecord &DVR) {
7748 if (!V || !
E || !
E->isValid())
7752 auto Fragment =
E->getFragmentInfo();
7762 if (
V->isArtificial())
7765 verifyFragmentExpression(*V, *Fragment, &DVR);
7768template <
typename ValueOrMetadata>
7769void Verifier::verifyFragmentExpression(
const DIVariable &V,
7771 ValueOrMetadata *
Desc) {
7774 auto VarSize =
V.getSizeInBits();
7780 CheckDI(FragSize + FragOffset <= *VarSize,
7781 "fragment is larger than or outside of variable",
Desc, &V);
7782 CheckDI(FragSize != *VarSize,
"fragment covers entire variable",
Desc, &V);
7785void Verifier::verifyFnArgs(
const DbgVariableRecord &DVR) {
7797 CheckDI(Var,
"#dbg record without variable");
7799 unsigned ArgNo = Var->
getArg();
7805 if (DebugFnArgs.
size() < ArgNo)
7806 DebugFnArgs.
resize(ArgNo,
nullptr);
7808 auto *Prev = DebugFnArgs[ArgNo - 1];
7809 DebugFnArgs[ArgNo - 1] = Var;
7810 CheckDI(!Prev || (Prev == Var),
"conflicting debug info for argument", &DVR,
7814void Verifier::verifyNotEntryValue(
const DbgVariableRecord &DVR) {
7818 if (!
E || !
E->isValid())
7828 ArgLoc && ArgLoc->hasAttribute(Attribute::SwiftAsync))
7833 "Entry values are only allowed in MIR unless they target a "
7834 "swiftasync Argument",
7838void Verifier::verifyCompileUnits() {
7842 if (
M.getContext().isODRUniquingDebugTypes())
7844 auto *CUs =
M.getNamedMetadata(
"llvm.dbg.cu");
7845 SmallPtrSet<const Metadata *, 2> Listed;
7848 for (
const auto *CU : CUVisited)
7849 CheckDI(Listed.
count(CU),
"DICompileUnit not listed in llvm.dbg.cu", CU);
7853void Verifier::verifyDeoptimizeCallingConvs() {
7854 if (DeoptimizeDeclarations.
empty())
7858 for (
const auto *
F :
ArrayRef(DeoptimizeDeclarations).slice(1)) {
7859 Check(
First->getCallingConv() ==
F->getCallingConv(),
7860 "All llvm.experimental.deoptimize declarations must have the same "
7861 "calling convention",
7866void Verifier::verifyAttachedCallBundle(
const CallBase &
Call,
7867 const OperandBundleUse &BU) {
7870 Check((FTy->getReturnType()->isPointerTy() ||
7872 "a call with operand bundle \"clang.arc.attachedcall\" must call a "
7873 "function returning a pointer or a non-returning function that has a "
7878 "operand bundle \"clang.arc.attachedcall\" requires one function as "
7886 Check((IID == Intrinsic::objc_retainAutoreleasedReturnValue ||
7887 IID == Intrinsic::objc_claimAutoreleasedReturnValue ||
7888 IID == Intrinsic::objc_unsafeClaimAutoreleasedReturnValue),
7889 "invalid function argument",
Call);
7891 StringRef FnName = Fn->
getName();
7892 Check((FnName ==
"objc_retainAutoreleasedReturnValue" ||
7893 FnName ==
"objc_claimAutoreleasedReturnValue" ||
7894 FnName ==
"objc_unsafeClaimAutoreleasedReturnValue"),
7895 "invalid function argument",
Call);
7899void Verifier::verifyNoAliasScopeDecl() {
7900 if (NoAliasScopeDecls.
empty())
7904 for (
auto *
II : NoAliasScopeDecls) {
7905 assert(
II->getIntrinsicID() == Intrinsic::experimental_noalias_scope_decl &&
7906 "Not a llvm.experimental.noalias.scope.decl ?");
7909 Check(ScopeListMV !=
nullptr,
7910 "llvm.experimental.noalias.scope.decl must have a MetadataAsValue "
7915 Check(ScopeListMD !=
nullptr,
"!id.scope.list must point to an MDNode",
II);
7916 Check(ScopeListMD->getNumOperands() == 1,
7917 "!id.scope.list must point to a list with a single scope",
II);
7918 visitAliasScopeListMetadata(ScopeListMD);
7928 auto GetScope = [](IntrinsicInst *
II) {
7931 return &
cast<MDNode>(ScopeListMV->getMetadata())->getOperand(0);
7936 auto Compare = [GetScope](IntrinsicInst *Lhs, IntrinsicInst *Rhs) {
7937 return GetScope(Lhs) < GetScope(Rhs);
7944 auto ItCurrent = NoAliasScopeDecls.begin();
7945 while (ItCurrent != NoAliasScopeDecls.end()) {
7946 auto CurScope = GetScope(*ItCurrent);
7947 auto ItNext = ItCurrent;
7950 }
while (ItNext != NoAliasScopeDecls.end() &&
7951 GetScope(*ItNext) == CurScope);
7956 if (ItNext - ItCurrent < 32)
7960 Check(!DT.dominates(
I, J),
7961 "llvm.experimental.noalias.scope.decl dominates another one "
7962 "with the same scope",
7976 Verifier V(OS,
true, *f.getParent());
7980 return !V.verify(
F);
7984 bool *BrokenDebugInfo) {
7986 Verifier V(OS, !BrokenDebugInfo, M);
7988 bool Broken =
false;
7990 Broken |= !V.verify(
F);
7992 Broken |= !V.verify();
7993 if (BrokenDebugInfo)
7994 *BrokenDebugInfo = V.hasBrokenDebugInfo();
8005 std::unique_ptr<Verifier> V;
8006 bool FatalErrors =
true;
8009 explicit VerifierLegacyPass(
bool FatalErrors)
8010 : FunctionPass(
ID), FatalErrors(FatalErrors) {}
8012 bool doInitialization(
Module &M)
override {
8013 V = std::make_unique<Verifier>(
8019 if (!
V->verify(
F) && FatalErrors) {
8020 errs() <<
"in function " <<
F.getName() <<
'\n';
8026 bool doFinalization(
Module &M)
override {
8027 bool HasErrors =
false;
8028 for (Function &
F : M)
8029 if (
F.isDeclaration())
8030 HasErrors |= !
V->verify(
F);
8032 HasErrors |= !
V->verify();
8033 if (FatalErrors && (HasErrors ||
V->hasBrokenDebugInfo()))
8038 void getAnalysisUsage(AnalysisUsage &AU)
const override {
8046template <
typename... Tys>
void TBAAVerifier::CheckFailed(Tys &&... Args) {
8048 return Diagnostic->CheckFailed(
Args...);
8051#define CheckTBAA(C, ...) \
8054 CheckFailed(__VA_ARGS__); \
8062TBAAVerifier::TBAABaseNodeSummary
8066 CheckFailed(
"Base nodes must have at least two operands",
I, BaseNode);
8070 auto Itr = TBAABaseNodes.find(BaseNode);
8071 if (Itr != TBAABaseNodes.end())
8074 auto Result = verifyTBAABaseNodeImpl(
I, BaseNode, IsNewFormat);
8075 auto InsertResult = TBAABaseNodes.insert({BaseNode, Result});
8077 assert(InsertResult.second &&
"We just checked!");
8081TBAAVerifier::TBAABaseNodeSummary
8082TBAAVerifier::verifyTBAABaseNodeImpl(
const Instruction *
I,
8083 const MDNode *BaseNode,
bool IsNewFormat) {
8084 const TBAAVerifier::TBAABaseNodeSummary InvalidNode = {
true, ~0
u};
8088 return isValidScalarTBAANode(BaseNode)
8089 ? TBAAVerifier::TBAABaseNodeSummary({
false, 0})
8095 CheckFailed(
"Access tag nodes must have the number of operands that is a "
8096 "multiple of 3!", BaseNode);
8101 CheckFailed(
"Struct tag nodes must have an odd number of operands!",
8111 if (!TypeSizeNode) {
8112 CheckFailed(
"Type size nodes must be constants!",
I, BaseNode);
8119 CheckFailed(
"Struct tag nodes have a string as their first operand",
8126 std::optional<APInt> PrevOffset;
8131 unsigned FirstFieldOpNo = IsNewFormat ? 3 : 1;
8132 unsigned NumOpsPerField = IsNewFormat ? 3 : 2;
8133 for (
unsigned Idx = FirstFieldOpNo; Idx < BaseNode->
getNumOperands();
8134 Idx += NumOpsPerField) {
8135 const MDOperand &FieldTy = BaseNode->
getOperand(Idx);
8136 const MDOperand &FieldOffset = BaseNode->
getOperand(Idx + 1);
8138 CheckFailed(
"Incorrect field entry in struct type node!",
I, BaseNode);
8143 auto *OffsetEntryCI =
8145 if (!OffsetEntryCI) {
8146 CheckFailed(
"Offset entries must be constants!",
I, BaseNode);
8152 BitWidth = OffsetEntryCI->getBitWidth();
8154 if (OffsetEntryCI->getBitWidth() !=
BitWidth) {
8156 "Bitwidth between the offsets and struct type entries must match",
I,
8168 !PrevOffset || PrevOffset->ule(OffsetEntryCI->getValue());
8171 CheckFailed(
"Offsets must be increasing!",
I, BaseNode);
8175 PrevOffset = OffsetEntryCI->getValue();
8180 if (!MemberSizeNode) {
8181 CheckFailed(
"Member size entries must be constants!",
I, BaseNode);
8188 return Failed ? InvalidNode
8189 : TBAAVerifier::TBAABaseNodeSummary(
false,
BitWidth);
8211 return Parent && Visited.
insert(Parent).second &&
8215bool TBAAVerifier::isValidScalarTBAANode(
const MDNode *MD) {
8216 auto ResultIt = TBAAScalarNodes.find(MD);
8217 if (ResultIt != TBAAScalarNodes.end())
8218 return ResultIt->second;
8220 SmallPtrSet<const MDNode *, 4> Visited;
8222 auto InsertResult = TBAAScalarNodes.insert({MD,
Result});
8224 assert(InsertResult.second &&
"Just checked!");
8233MDNode *TBAAVerifier::getFieldNodeFromTBAABaseNode(
const Instruction *
I,
8234 const MDNode *BaseNode,
8245 unsigned FirstFieldOpNo = IsNewFormat ? 3 : 1;
8246 unsigned NumOpsPerField = IsNewFormat ? 3 : 2;
8247 for (
unsigned Idx = FirstFieldOpNo; Idx < BaseNode->
getNumOperands();
8248 Idx += NumOpsPerField) {
8249 auto *OffsetEntryCI =
8251 if (OffsetEntryCI->getValue().ugt(
Offset)) {
8252 if (Idx == FirstFieldOpNo) {
8253 CheckFailed(
"Could not find TBAA parent in struct type node",
I,
8258 unsigned PrevIdx = Idx - NumOpsPerField;
8259 auto *PrevOffsetEntryCI =
8261 Offset -= PrevOffsetEntryCI->getValue();
8269 Offset -= LastOffsetEntryCI->getValue();
8274 if (!
Type ||
Type->getNumOperands() < 3)
8290 "This instruction shall not have a TBAA access tag!",
I);
8292 bool IsStructPathTBAA =
8296 "Old-style TBAA is no longer allowed, use struct-path TBAA instead",
8306 "Access tag metadata must have either 4 or 5 operands",
I, MD);
8309 "Struct tag metadata must have either 3 or 4 operands",
I, MD);
8316 CheckTBAA(AccessSizeNode,
"Access size field must be a constant",
I, MD);
8320 unsigned ImmutabilityFlagOpNo = IsNewFormat ? 4 : 3;
8325 "Immutability tag on struct tag metadata must be a constant",
I,
8328 IsImmutableCI->isZero() || IsImmutableCI->isOne(),
8329 "Immutability part of the struct tag metadata must be either 0 or 1",
I,
8334 "Malformed struct tag metadata: base and access-type "
8335 "should be non-null and point to Metadata nodes",
8336 I, MD, BaseNode, AccessType);
8339 CheckTBAA(isValidScalarTBAANode(AccessType),
8340 "Access type node must be a valid scalar type",
I, MD,
8345 CheckTBAA(OffsetCI,
"Offset must be constant integer",
I, MD);
8348 bool SeenAccessTypeInPath =
false;
8354 getFieldNodeFromTBAABaseNode(
I, BaseNode,
Offset, IsNewFormat)) {
8355 if (!StructPath.
insert(BaseNode).second) {
8356 CheckFailed(
"Cycle detected in struct path",
I, MD);
8361 unsigned BaseNodeBitWidth;
8362 std::tie(
Invalid, BaseNodeBitWidth) =
8363 verifyTBAABaseNode(
I, BaseNode, IsNewFormat);
8370 SeenAccessTypeInPath |= BaseNode == AccessType;
8372 if (isValidScalarTBAANode(BaseNode) || BaseNode == AccessType)
8377 (BaseNodeBitWidth == 0 &&
Offset == 0) ||
8378 (IsNewFormat && BaseNodeBitWidth == ~0u),
8379 "Access bit-width not the same as description bit-width",
I, MD,
8380 BaseNodeBitWidth,
Offset.getBitWidth());
8382 if (IsNewFormat && SeenAccessTypeInPath)
8386 CheckTBAA(SeenAccessTypeInPath,
"Did not see access type in access path!",
I,
8391char VerifierLegacyPass::ID = 0;
8392INITIALIZE_PASS(VerifierLegacyPass,
"verify",
"Module Verifier",
false,
false)
8395 return new VerifierLegacyPass(FatalErrors);
8413 if (FatalErrors && (Res.IRBroken || Res.DebugInfoBroken))
8421 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")
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 unsigned getNumElements(Type *Ty)
static void visit(BasicBlock &Start, std::function< bool(BasicBlock *)> 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_ABI Type * getValueAsType() const
Return the attribute's value as a Type.
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; assumes that the block is well-formed.
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.
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.
bool hasRetAttr(Attribute::AttrKind Kind) const
Determine whether the return value 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)
Value * getCondition() const
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.
op_range arg_operands()
arg_operands - iteration adapter for range-for loops.
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 metadata of given kind attached to this GlobalObject.
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.
LLVM_ABI uint64_t getGlobalSize(const DataLayout &DL) const
Get the size of this global variable in bytes.
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()
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 isByteTy() const
True if this is an instance of ByteType.
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.
LLVMContext & getContext() const
All values hold a context through their type.
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 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 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 MatchIntrinsicTypesResult matchIntrinsicSignature(FunctionType *FTy, ArrayRef< IITDescriptor > &Infos, SmallVectorImpl< Type * > &OverloadTys)
Match the specified function type with the type constraints specified by the .td file.
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 isUIntN(unsigned N, uint64_t x)
Checks if an unsigned integer fits into the given (dynamic) bit width.
constexpr bool isPowerOf2_64(uint64_t Value)
Return true if the argument is a power of two > 0 (64 bit edition.)
gep_type_iterator gep_type_end(const User *GEP)
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
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)
generic_gep_type_iterator<> gep_type_iterator
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...
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...
gep_type_iterator gep_type_begin(const User *GEP)
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).