97#include "llvm/IR/IntrinsicsAArch64.h"
98#include "llvm/IR/IntrinsicsAMDGPU.h"
99#include "llvm/IR/IntrinsicsARM.h"
100#include "llvm/IR/IntrinsicsNVPTX.h"
101#include "llvm/IR/IntrinsicsWebAssembly.h"
141 cl::desc(
"Ensure that llvm.experimental.noalias.scope.decl for identical "
142 "scopes are not dominating"));
165 *
OS <<
"; ModuleID = '" << M->getModuleIdentifier() <<
"'\n";
178 V.printAsOperand(*
OS,
true,
MST);
183 void Write(
const DbgRecord *DR) {
199 *
OS <<
"declare_value";
220 template <
class T>
void Write(
const MDTupleTypedArrayWrapper<T> &MD) {
224 void Write(
const NamedMDNode *NMD) {
237 void Write(
const Comdat *
C) {
243 void Write(
const APInt *AI) {
249 void Write(
const unsigned i) { *
OS << i <<
'\n'; }
255 *
OS <<
A->getAsString() <<
'\n';
259 void Write(
const AttributeSet *AS) {
266 void Write(
const AttributeList *AL) {
272 void Write(Printable
P) { *
OS <<
P <<
'\n'; }
274 template <
typename T>
void Write(ArrayRef<T> Vs) {
275 for (
const T &V : Vs)
279 template <
typename T1,
typename... Ts>
280 void WriteTs(
const T1 &
V1,
const Ts &... Vs) {
285 template <
typename... Ts>
void WriteTs() {}
294 *
OS << Message <<
'\n';
302 template <
typename T1,
typename... Ts>
312 *
OS << Message <<
'\n';
318 template <
typename T1,
typename... Ts>
350 Type *LandingPadResultTy;
357 bool HasDebugInfo =
false;
400 SawFrameEscape(
false), TBAAVerifyHelper(this) {
401 TreatBrokenDebugInfoAsError = ShouldTreatBrokenDebugInfoAsError;
404 bool hasBrokenDebugInfo()
const {
return BrokenDebugInfo; }
406 bool verify(
const Function &
F) {
407 llvm::TimeTraceScope timeScope(
"Verifier");
409 "An instance of this class only works with a specific module!");
419 for (
const BasicBlock &BB :
F) {
420 if (!BB.empty() && BB.back().isTerminator())
424 *OS <<
"Basic Block in function '" <<
F.getName()
425 <<
"' does not have terminator!\n";
426 BB.printAsOperand(*OS,
true, MST);
434 DT.recalculate(
const_cast<Function &
>(
F));
436 auto FailureCB = [
this](
const Twine &Message) {
437 this->CheckFailed(Message);
439 ConvergenceVerifyHelper.initialize(OS, FailureCB,
F);
444 verifySiblingFuncletUnwinds();
446 if (ConvergenceVerifyHelper.sawTokens())
447 ConvergenceVerifyHelper.verify(DT);
449 InstsInThisBlock.clear();
451 LandingPadResultTy =
nullptr;
452 SawFrameEscape =
false;
453 SiblingFuncletInfo.clear();
454 verifyNoAliasScopeDecl();
455 NoAliasScopeDecls.clear();
465 for (
const Function &
F : M)
466 if (
F.getIntrinsicID() == Intrinsic::experimental_deoptimize)
467 DeoptimizeDeclarations.push_back(&
F);
471 verifyFrameRecoverIndices();
472 for (
const GlobalVariable &GV :
M.globals())
473 visitGlobalVariable(GV);
475 for (
const GlobalAlias &GA :
M.aliases())
476 visitGlobalAlias(GA);
478 for (
const GlobalIFunc &GI :
M.ifuncs())
479 visitGlobalIFunc(GI);
481 for (
const NamedMDNode &NMD :
M.named_metadata())
482 visitNamedMDNode(NMD);
484 for (
const StringMapEntry<Comdat> &SMEC :
M.getComdatSymbolTable())
485 visitComdat(SMEC.getValue());
489 visitModuleCommandLines();
490 visitModuleErrnoTBAA();
492 verifyCompileUnits();
494 verifyDeoptimizeCallingConvs();
495 DISubprogramAttachments.clear();
501 enum class AreDebugLocsAllowed {
No,
Yes };
505 enum class RangeLikeMetadataKind {
512 void visitGlobalValue(
const GlobalValue &GV);
513 void visitGlobalVariable(
const GlobalVariable &GV);
514 void visitGlobalAlias(
const GlobalAlias &GA);
515 void visitGlobalIFunc(
const GlobalIFunc &GI);
516 void visitAliaseeSubExpr(
const GlobalAlias &
A,
const Constant &
C);
517 void visitAliaseeSubExpr(SmallPtrSetImpl<const GlobalAlias *> &Visited,
518 const GlobalAlias &
A,
const Constant &
C);
519 void visitNamedMDNode(
const NamedMDNode &NMD);
520 void visitMDNode(
const MDNode &MD, AreDebugLocsAllowed AllowLocs);
521 void visitMetadataAsValue(
const MetadataAsValue &MD, Function *
F);
522 void visitValueAsMetadata(
const ValueAsMetadata &MD, Function *
F);
523 void visitDIArgList(
const DIArgList &AL, Function *
F);
524 void visitComdat(
const Comdat &
C);
525 void visitModuleIdents();
526 void visitModuleCommandLines();
527 void visitModuleErrnoTBAA();
528 void visitModuleFlags();
529 void visitModuleFlag(
const MDNode *
Op,
530 DenseMap<const MDString *, const MDNode *> &SeenIDs,
531 SmallVectorImpl<const MDNode *> &Requirements);
532 void visitModuleFlagCGProfileEntry(
const MDOperand &MDO);
533 void visitFunction(
const Function &
F);
534 void visitBasicBlock(BasicBlock &BB);
535 void verifyRangeLikeMetadata(
const Value &V,
const MDNode *
Range,
Type *Ty,
536 RangeLikeMetadataKind Kind);
537 void visitRangeMetadata(Instruction &
I, MDNode *
Range,
Type *Ty);
538 void visitNoFPClassMetadata(Instruction &
I, MDNode *
Range,
Type *Ty);
539 void visitNoaliasAddrspaceMetadata(Instruction &
I, MDNode *
Range,
Type *Ty);
540 void visitDereferenceableMetadata(Instruction &
I, MDNode *MD);
541 void visitNofreeMetadata(Instruction &
I, MDNode *MD);
542 void visitProfMetadata(Instruction &
I, MDNode *MD);
543 void visitCallStackMetadata(MDNode *MD);
544 void visitMemProfMetadata(Instruction &
I, MDNode *MD);
545 void visitCallsiteMetadata(Instruction &
I, MDNode *MD);
546 void visitCalleeTypeMetadata(Instruction &
I, MDNode *MD);
547 void visitDIAssignIDMetadata(Instruction &
I, MDNode *MD);
548 void visitMMRAMetadata(Instruction &
I, MDNode *MD);
549 void visitAnnotationMetadata(MDNode *Annotation);
550 void visitAliasScopeMetadata(
const MDNode *MD);
551 void visitAliasScopeListMetadata(
const MDNode *MD);
552 void visitAccessGroupMetadata(
const MDNode *MD);
553 void visitCapturesMetadata(Instruction &
I,
const MDNode *Captures);
554 void visitAllocTokenMetadata(Instruction &
I, MDNode *MD);
555 void visitInlineHistoryMetadata(Instruction &
I, MDNode *MD);
556 void visitMemCacheHintMetadata(Instruction &
I, MDNode *MD);
558#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) void visit##CLASS(const CLASS &N);
559#include "llvm/IR/Metadata.def"
560 void visitDIType(
const DIType &
N);
561 void visitDIScope(
const DIScope &
N);
585 void checkPtrToAddr(
Type *SrcTy,
Type *DestTy,
const Value &V);
590 void visitPHINode(
PHINode &PN);
599 void visitVAArgInst(
VAArgInst &VAA) { visitInstruction(VAA); }
600 void visitCallInst(CallInst &CI);
601 void visitInvokeInst(InvokeInst &
II);
602 void visitGetElementPtrInst(GetElementPtrInst &
GEP);
603 void visitLoadInst(LoadInst &LI);
604 void visitStoreInst(StoreInst &SI);
605 void verifyDominatesUse(Instruction &
I,
unsigned i);
606 void visitInstruction(Instruction &
I);
607 void visitTerminator(Instruction &
I);
608 void visitCondBrInst(CondBrInst &BI);
609 void visitReturnInst(ReturnInst &RI);
610 void visitSwitchInst(SwitchInst &SI);
611 void visitIndirectBrInst(IndirectBrInst &BI);
612 void visitCallBrInst(CallBrInst &CBI);
613 void visitSelectInst(SelectInst &SI);
614 void visitUserOp1(Instruction &
I);
615 void visitUserOp2(Instruction &
I) { visitUserOp1(
I); }
617 void visitConstrainedFPIntrinsic(ConstrainedFPIntrinsic &FPI);
618 void visitVPIntrinsic(VPIntrinsic &VPI);
619 void visitDbgLabelIntrinsic(StringRef Kind, DbgLabelInst &DLI);
620 void visitAtomicCmpXchgInst(AtomicCmpXchgInst &CXI);
621 void visitAtomicRMWInst(AtomicRMWInst &RMWI);
622 void visitFenceInst(FenceInst &FI);
623 void visitAllocaInst(AllocaInst &AI);
624 void visitExtractValueInst(ExtractValueInst &EVI);
625 void visitInsertValueInst(InsertValueInst &IVI);
626 void visitEHPadPredecessors(Instruction &
I);
627 void visitLandingPadInst(LandingPadInst &LPI);
628 void visitResumeInst(ResumeInst &RI);
629 void visitCatchPadInst(CatchPadInst &CPI);
630 void visitCatchReturnInst(CatchReturnInst &CatchReturn);
631 void visitCleanupPadInst(CleanupPadInst &CPI);
632 void visitFuncletPadInst(FuncletPadInst &FPI);
633 void visitCatchSwitchInst(CatchSwitchInst &CatchSwitch);
634 void visitCleanupReturnInst(CleanupReturnInst &CRI);
636 void verifySwiftErrorCall(CallBase &
Call,
const Value *SwiftErrorVal);
637 void verifySwiftErrorValue(
const Value *SwiftErrorVal);
638 void verifyTailCCMustTailAttrs(
const AttrBuilder &Attrs, StringRef
Context);
639 void verifyMustTailCall(CallInst &CI);
640 bool verifyAttributeCount(AttributeList Attrs,
unsigned Params);
641 void verifyAttributeTypes(AttributeSet Attrs,
const Value *V);
642 void verifyParameterAttrs(AttributeSet Attrs,
Type *Ty,
const Value *V);
643 void checkUnsignedBaseTenFuncAttr(AttributeList Attrs, StringRef Attr,
645 void verifyFunctionAttrs(FunctionType *FT, AttributeList Attrs,
646 const Value *V,
bool IsIntrinsic,
bool IsInlineAsm);
647 void verifyFunctionMetadata(
ArrayRef<std::pair<unsigned, MDNode *>> MDs);
648 void verifyUnknownProfileMetadata(MDNode *MD);
649 void visitConstantExprsRecursively(
const Constant *EntryC);
650 void visitConstantExpr(
const ConstantExpr *CE);
651 void visitConstantPtrAuth(
const ConstantPtrAuth *CPA);
652 void verifyInlineAsmCall(
const CallBase &
Call);
653 void verifyStatepoint(
const CallBase &
Call);
654 void verifyFrameRecoverIndices();
655 void verifySiblingFuncletUnwinds();
657 void verifyFragmentExpression(
const DbgVariableRecord &
I);
658 template <
typename ValueOrMetadata>
659 void verifyFragmentExpression(
const DIVariable &V,
661 ValueOrMetadata *
Desc);
662 void verifyFnArgs(
const DbgVariableRecord &DVR);
663 void verifyNotEntryValue(
const DbgVariableRecord &
I);
666 void verifyCompileUnits();
670 void verifyDeoptimizeCallingConvs();
672 void verifyAttachedCallBundle(
const CallBase &
Call,
673 const OperandBundleUse &BU);
676 void verifyNoAliasScopeDecl();
682#define Check(C, ...) \
685 CheckFailed(__VA_ARGS__); \
692#define CheckDI(C, ...) \
695 DebugInfoCheckFailed(__VA_ARGS__); \
703 CheckDI(
I.DebugMarker->MarkedInstr == &
I,
704 "Instruction has invalid DebugMarker", &
I);
706 "PHI Node must not have any attached DbgRecords", &
I);
709 "DbgRecord had invalid DebugMarker", &
I, &DR);
712 visitMDNode(*
Loc, AreDebugLocsAllowed::Yes);
717 verifyFragmentExpression(*DVR);
718 verifyNotEntryValue(*DVR);
725void Verifier::visit(Instruction &
I) {
727 for (
unsigned i = 0, e =
I.getNumOperands(); i != e; ++i)
728 Check(
I.getOperand(i) !=
nullptr,
"Operand is null", &
I);
740 while (!WorkList.
empty()) {
742 if (!Visited.
insert(Cur).second)
749void Verifier::visitGlobalValue(
const GlobalValue &GV) {
751 "Global is external, but doesn't have external or weak linkage!", &GV);
754 if (
const MDNode *Associated =
755 GO->getMetadata(LLVMContext::MD_associated)) {
756 Check(Associated->getNumOperands() == 1,
757 "associated metadata must have one operand", &GV, Associated);
758 const Metadata *
Op = Associated->getOperand(0).get();
759 Check(
Op,
"associated metadata must have a global value", GO, Associated);
762 Check(VM,
"associated metadata must be ValueAsMetadata", GO, Associated);
765 "associated value must be pointer typed", GV, Associated);
767 const Value *Stripped = VM->getValue()->stripPointerCastsAndAliases();
769 "associated metadata must point to a GlobalObject", GO, Stripped);
770 Check(Stripped != GO,
771 "global values should not associate to themselves", GO,
777 if (
const MDNode *AbsoluteSymbol =
778 GO->getMetadata(LLVMContext::MD_absolute_symbol)) {
779 verifyRangeLikeMetadata(*GO, AbsoluteSymbol,
780 DL.getIntPtrType(GO->getType()),
781 RangeLikeMetadataKind::AbsoluteSymbol);
784 if (GO->hasMetadata(LLVMContext::MD_implicit_ref)) {
785 Check(!GO->isDeclaration(),
786 "ref metadata must not be placed on a declaration", GO);
789 GO->getMetadata(LLVMContext::MD_implicit_ref, MDs);
790 for (
const MDNode *MD : MDs) {
791 Check(MD->getNumOperands() == 1,
"ref metadata must have one operand",
795 Check(VM,
"ref metadata must be ValueAsMetadata", GO, MD);
798 "ref value must be pointer typed", GV, MD);
802 "ref metadata must point to a GlobalObject", GO, Stripped);
803 Check(Stripped != GO,
"values should not reference themselves", GO,
809 if (
auto *Props = GO->getMetadata(LLVMContext::MD_elf_section_properties)) {
810 Check(Props->getNumOperands() == 2,
811 "elf_section_properties metadata must have two operands", GO,
813 if (Props->getNumOperands() == 2) {
815 Check(
Type,
"type field must be ConstantAsMetadata", GO, Props);
817 Check(TypeInt,
"type field must be ConstantInt", GO, Props);
820 Check(Entsize,
"entsize field must be ConstantAsMetadata", GO, Props);
822 Check(EntsizeInt,
"entsize field must be ConstantInt", GO, Props);
828 "Only global variables can have appending linkage!", &GV);
833 "Only global arrays can have appending linkage!", GVar);
837 Check(!GV.
hasComdat(),
"Declaration may not be in a Comdat!", &GV);
841 "dllexport GlobalValue must have default or protected visibility",
846 "dllimport GlobalValue must have default visibility", &GV);
847 Check(!GV.
isDSOLocal(),
"GlobalValue with DLLImport Storage is dso_local!",
853 "Global is marked as dllimport, but not external", &GV);
858 "GlobalValue with local linkage or non-default "
859 "visibility must be dso_local!",
864 if (!
I->getParent() || !
I->getParent()->getParent())
865 CheckFailed(
"Global is referenced by parentless instruction!", &GV, &M,
867 else if (
I->getParent()->getParent()->getParent() != &M)
868 CheckFailed(
"Global is referenced in a different module!", &GV, &M,
I,
869 I->getParent()->getParent(),
870 I->getParent()->getParent()->getParent());
873 if (
F->getParent() != &M)
874 CheckFailed(
"Global is used by function in a different module", &GV, &M,
882void Verifier::visitGlobalVariable(
const GlobalVariable &GV) {
886 Check(
A->value() <= Value::MaximumAlignment,
887 "huge alignment values are unsupported", &GV);
892 "Global variable initializer type does not match global "
896 "Global variable initializer must be sized", &GV);
902 "'common' global must have a zero initializer!", &GV);
905 Check(!GV.
hasComdat(),
"'common' global may not be in a Comdat!", &GV);
910 GV.
getName() ==
"llvm.global_dtors")) {
912 "invalid linkage for intrinsic global variable", &GV);
914 "invalid uses of intrinsic global variable", &GV);
921 PointerType::get(
Context,
DL.getProgramAddressSpace());
925 "wrong type for intrinsic global variable", &GV);
927 "the third field of the element type is mandatory, "
928 "specify ptr null to migrate from the obsoleted 2-field form");
936 GV.
getName() ==
"llvm.compiler.used")) {
938 "invalid linkage for intrinsic global variable", &GV);
940 "invalid uses of intrinsic global variable", &GV);
944 Check(PTy,
"wrong type for intrinsic global variable", &GV);
948 Check(InitArray,
"wrong initializer for intrinsic global variable",
954 Twine(
"invalid ") + GV.
getName() +
" member", V);
956 Twine(
"members of ") + GV.
getName() +
" must be named", V);
965 for (
auto *MD : MDs) {
967 visitDIGlobalVariableExpression(*GVE);
969 CheckDI(
false,
"!dbg attachment of global variable must be a "
970 "DIGlobalVariableExpression");
980 "Global @" + GV.
getName() +
" has illegal target extension type",
989 "Global variable is too large to fit into the address space", &GV,
993 visitGlobalValue(GV);
1000 visitGlobalValue(GV);
1003void Verifier::visitAliaseeSubExpr(
const GlobalAlias &GA,
const Constant &
C) {
1004 SmallPtrSet<const GlobalAlias*, 4> Visited;
1006 visitAliaseeSubExpr(Visited, GA,
C);
1009void Verifier::visitAliaseeSubExpr(SmallPtrSetImpl<const GlobalAlias*> &Visited,
1010 const GlobalAlias &GA,
const Constant &
C) {
1014 "available_externally alias must point to available_externally "
1025 Check(Visited.
insert(GA2).second,
"Aliases cannot form a cycle", &GA);
1027 Check(!GA2->isInterposable(),
1028 "Alias cannot point to an interposable alias", &GA);
1037 visitConstantExprsRecursively(CE);
1039 for (
const Use &U :
C.operands()) {
1042 visitAliaseeSubExpr(Visited, GA, *GA2->getAliasee());
1044 visitAliaseeSubExpr(Visited, GA, *C2);
1048void Verifier::visitGlobalAlias(
const GlobalAlias &GA) {
1050 "Alias should have private, internal, linkonce, weak, linkonce_odr, "
1051 "weak_odr, external, or available_externally linkage!",
1054 Check(Aliasee,
"Aliasee cannot be NULL!", &GA);
1056 "Alias and aliasee types should match!", &GA);
1059 "Aliasee should be either GlobalValue or ConstantExpr", &GA);
1061 visitAliaseeSubExpr(GA, *Aliasee);
1063 visitGlobalValue(GA);
1066void Verifier::visitGlobalIFunc(
const GlobalIFunc &GI) {
1067 visitGlobalValue(GI);
1071 for (
const auto &
I : MDs) {
1072 CheckDI(
I.first != LLVMContext::MD_dbg,
1073 "an ifunc may not have a !dbg attachment", &GI);
1074 Check(
I.first != LLVMContext::MD_prof,
1075 "an ifunc may not have a !prof attachment", &GI);
1076 visitMDNode(*
I.second, AreDebugLocsAllowed::No);
1080 "IFunc should have private, internal, linkonce, weak, linkonce_odr, "
1081 "weak_odr, or external linkage!",
1086 Check(Resolver,
"IFunc must have a Function resolver", &GI);
1088 "IFunc resolver must be a definition", &GI);
1095 "IFunc resolver must return a pointer", &GI);
1098 "IFunc resolver has incorrect type", &GI);
1101void Verifier::visitNamedMDNode(
const NamedMDNode &NMD) {
1106 "unrecognized named metadata node in the llvm.dbg namespace", &NMD);
1107 for (
const MDNode *MD : NMD.
operands()) {
1108 if (NMD.
getName() ==
"llvm.dbg.cu")
1114 visitMDNode(*MD, AreDebugLocsAllowed::Yes);
1118void Verifier::visitMDNode(
const MDNode &BaseMD,
1119 AreDebugLocsAllowed AllowLocs) {
1122 if (!MDNodes.
insert(&BaseMD).second)
1125 std::queue<const MDNode *> Worklist;
1126 Worklist.push(&BaseMD);
1128 while (!Worklist.empty()) {
1129 const MDNode *CurrentMD = Worklist.front();
1132 "MDNode context does not match Module context!", CurrentMD);
1137 case Metadata::MDTupleKind:
1139#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) \
1140 case Metadata::CLASS##Kind: \
1141 visit##CLASS(cast<CLASS>(*CurrentMD)); \
1143#include "llvm/IR/Metadata.def"
1152 "DILocation not allowed within this metadata node", CurrentMD,
1160 visitValueAsMetadata(*V,
nullptr);
1174 "Expected second operand to be an integer constant of type i32 or "
1182 Check(CurrentMD->
isResolved(),
"All nodes should be resolved!", CurrentMD);
1186void Verifier::visitValueAsMetadata(
const ValueAsMetadata &MD, Function *
F) {
1189 "Unexpected metadata round-trip through values", &MD, MD.
getValue());
1195 Check(
F,
"function-local metadata used outside a function", L);
1201 Check(
I->getParent(),
"function-local metadata not in basic block", L,
I);
1207 assert(ActualF &&
"Unimplemented function local metadata case!");
1209 Check(ActualF ==
F,
"function-local metadata used in wrong function", L);
1212void Verifier::visitDIArgList(
const DIArgList &AL, Function *
F) {
1213 for (
const ValueAsMetadata *VAM :
AL.getArgs())
1214 visitValueAsMetadata(*VAM,
F);
1217void Verifier::visitMetadataAsValue(
const MetadataAsValue &MDV, Function *
F) {
1220 visitMDNode(*
N, AreDebugLocsAllowed::No);
1226 if (!MDNodes.
insert(MD).second)
1230 visitValueAsMetadata(*V,
F);
1233 visitDIArgList(*AL,
F);
1241void Verifier::visitDILocation(
const DILocation &
N) {
1243 "location requires a valid scope", &
N,
N.getRawScope());
1244 if (
auto *IA =
N.getRawInlinedAt())
1247 CheckDI(
SP->isDefinition(),
"scope points into the type hierarchy", &
N);
1250void Verifier::visitGenericDINode(
const GenericDINode &
N) {
1254void Verifier::visitDIScope(
const DIScope &
N) {
1255 if (
auto *
F =
N.getRawFile())
1259void Verifier::visitDIType(
const DIType &
N) {
1262 CheckDI(
N.getRawFile() ||
N.getLine() == 0,
"line specified with no file", &
N,
1266void Verifier::visitDISubrangeType(
const DISubrangeType &
N) {
1269 CheckDI(
N.getTag() == dwarf::DW_TAG_subrange_type,
"invalid tag", &
N);
1272 auto *LBound =
N.getRawLowerBound();
1276 "LowerBound must be signed constant or DIVariable or DIExpression or "
1279 auto *UBound =
N.getRawUpperBound();
1283 "UpperBound must be signed constant or DIVariable or DIExpression or "
1286 auto *Stride =
N.getRawStride();
1289 "Stride must be signed constant or DIVariable or DIExpression", &
N);
1290 auto *Bias =
N.getRawBias();
1293 "Bias must be signed constant or DIVariable or DIExpression", &
N);
1295 auto *
Size =
N.getRawSizeInBits();
1297 "SizeInBits must be a constant");
1300void Verifier::visitDISubrange(
const DISubrange &
N) {
1301 CheckDI(
N.getTag() == dwarf::DW_TAG_subrange_type,
"invalid tag", &
N);
1302 CheckDI(!
N.getRawCountNode() || !
N.getRawUpperBound(),
1303 "Subrange can have any one of count or upperBound", &
N);
1304 auto *CBound =
N.getRawCountNode();
1307 "Count must be signed constant or DIVariable or DIExpression", &
N);
1308 auto Count =
N.getCount();
1311 "invalid subrange count", &
N);
1312 auto *LBound =
N.getRawLowerBound();
1315 "LowerBound must be signed constant or DIVariable or DIExpression",
1317 auto *UBound =
N.getRawUpperBound();
1320 "UpperBound must be signed constant or DIVariable or DIExpression",
1322 auto *Stride =
N.getRawStride();
1325 "Stride must be signed constant or DIVariable or DIExpression", &
N);
1328void Verifier::visitDIGenericSubrange(
const DIGenericSubrange &
N) {
1329 CheckDI(
N.getTag() == dwarf::DW_TAG_generic_subrange,
"invalid tag", &
N);
1330 CheckDI(!
N.getRawCountNode() || !
N.getRawUpperBound(),
1331 "GenericSubrange can have any one of count or upperBound", &
N);
1332 auto *CBound =
N.getRawCountNode();
1334 "Count must be signed constant or DIVariable or DIExpression", &
N);
1335 auto *LBound =
N.getRawLowerBound();
1336 CheckDI(LBound,
"GenericSubrange must contain lowerBound", &
N);
1338 "LowerBound must be signed constant or DIVariable or DIExpression",
1340 auto *UBound =
N.getRawUpperBound();
1342 "UpperBound must be signed constant or DIVariable or DIExpression",
1344 auto *Stride =
N.getRawStride();
1345 CheckDI(Stride,
"GenericSubrange must contain stride", &
N);
1347 "Stride must be signed constant or DIVariable or DIExpression", &
N);
1350void Verifier::visitDIEnumerator(
const DIEnumerator &
N) {
1351 CheckDI(
N.getTag() == dwarf::DW_TAG_enumerator,
"invalid tag", &
N);
1354void Verifier::visitDIBasicType(
const DIBasicType &
N) {
1357 CheckDI(
N.getTag() == dwarf::DW_TAG_base_type ||
1358 N.getTag() == dwarf::DW_TAG_unspecified_type ||
1359 N.getTag() == dwarf::DW_TAG_string_type,
1362 auto *
Size =
N.getRawSizeInBits();
1364 "SizeInBits must be a constant");
1367void Verifier::visitDIFixedPointType(
const DIFixedPointType &
N) {
1368 visitDIBasicType(
N);
1370 CheckDI(
N.getTag() == dwarf::DW_TAG_base_type,
"invalid tag", &
N);
1371 CheckDI(
N.getEncoding() == dwarf::DW_ATE_signed_fixed ||
1372 N.getEncoding() == dwarf::DW_ATE_unsigned_fixed,
1373 "invalid encoding", &
N);
1377 "invalid kind", &
N);
1379 N.getFactorRaw() == 0,
1380 "factor should be 0 for rationals", &
N);
1382 (
N.getNumeratorRaw() == 0 &&
N.getDenominatorRaw() == 0),
1383 "numerator and denominator should be 0 for non-rationals", &
N);
1386void Verifier::visitDIStringType(
const DIStringType &
N) {
1389 CheckDI(
N.getTag() == dwarf::DW_TAG_string_type,
"invalid tag", &
N);
1390 CheckDI(!(
N.isBigEndian() &&
N.isLittleEndian()),
"has conflicting flags",
1394void Verifier::visitDIDerivedType(
const DIDerivedType &
N) {
1398 CheckDI(
N.getTag() == dwarf::DW_TAG_typedef ||
1399 N.getTag() == dwarf::DW_TAG_pointer_type ||
1400 N.getTag() == dwarf::DW_TAG_ptr_to_member_type ||
1401 N.getTag() == dwarf::DW_TAG_reference_type ||
1402 N.getTag() == dwarf::DW_TAG_rvalue_reference_type ||
1403 N.getTag() == dwarf::DW_TAG_const_type ||
1404 N.getTag() == dwarf::DW_TAG_immutable_type ||
1405 N.getTag() == dwarf::DW_TAG_volatile_type ||
1406 N.getTag() == dwarf::DW_TAG_restrict_type ||
1407 N.getTag() == dwarf::DW_TAG_atomic_type ||
1408 N.getTag() == dwarf::DW_TAG_LLVM_ptrauth_type ||
1409 N.getTag() == dwarf::DW_TAG_member ||
1410 (
N.getTag() == dwarf::DW_TAG_variable &&
N.isStaticMember()) ||
1411 N.getTag() == dwarf::DW_TAG_inheritance ||
1412 N.getTag() == dwarf::DW_TAG_friend ||
1413 N.getTag() == dwarf::DW_TAG_set_type ||
1414 N.getTag() == dwarf::DW_TAG_template_alias,
1416 if (
N.getTag() == dwarf::DW_TAG_ptr_to_member_type) {
1417 CheckDI(
isType(
N.getRawExtraData()),
"invalid pointer to member type", &
N,
1418 N.getRawExtraData());
1419 }
else if (
N.getTag() == dwarf::DW_TAG_template_alias) {
1421 N.getRawExtraData());
1422 }
else if (
N.getTag() == dwarf::DW_TAG_inheritance ||
1423 N.getTag() == dwarf::DW_TAG_member ||
1424 N.getTag() == dwarf::DW_TAG_variable) {
1425 auto *ExtraData =
N.getRawExtraData();
1426 auto IsValidExtraData = [&]() {
1427 if (ExtraData ==
nullptr)
1433 if (Tuple->getNumOperands() != 1)
1440 "extraData must be ConstantAsMetadata, MDString, DIObjCProperty, "
1441 "or MDTuple with single ConstantAsMetadata operand",
1445 if (
N.getTag() == dwarf::DW_TAG_set_type) {
1446 if (
auto *
T =
N.getRawBaseType()) {
1451 (Enum &&
Enum->getTag() == dwarf::DW_TAG_enumeration_type) ||
1452 (Subrange &&
Subrange->getTag() == dwarf::DW_TAG_subrange_type) ||
1453 (
Basic && (
Basic->getEncoding() == dwarf::DW_ATE_unsigned ||
1454 Basic->getEncoding() == dwarf::DW_ATE_signed ||
1455 Basic->getEncoding() == dwarf::DW_ATE_unsigned_char ||
1456 Basic->getEncoding() == dwarf::DW_ATE_signed_char ||
1457 Basic->getEncoding() == dwarf::DW_ATE_boolean)),
1458 "invalid set base type", &
N,
T);
1463 N.getRawBaseType());
1465 if (
N.getDWARFAddressSpace()) {
1466 CheckDI(
N.getTag() == dwarf::DW_TAG_pointer_type ||
1467 N.getTag() == dwarf::DW_TAG_reference_type ||
1468 N.getTag() == dwarf::DW_TAG_rvalue_reference_type,
1469 "DWARF address space only applies to pointer or reference types",
1473 auto *
Size =
N.getRawSizeInBits();
1476 "SizeInBits must be a constant or DIVariable or DIExpression");
1481 return ((Flags & DINode::FlagLValueReference) &&
1482 (Flags & DINode::FlagRValueReference)) ||
1483 ((Flags & DINode::FlagTypePassByValue) &&
1484 (Flags & DINode::FlagTypePassByReference));
1487void Verifier::visitTemplateParams(
const MDNode &
N,
const Metadata &RawParams) {
1489 CheckDI(Params,
"invalid template params", &
N, &RawParams);
1496void Verifier::visitDICompositeType(
const DICompositeType &
N) {
1500 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type ||
1501 N.getTag() == dwarf::DW_TAG_structure_type ||
1502 N.getTag() == dwarf::DW_TAG_union_type ||
1503 N.getTag() == dwarf::DW_TAG_enumeration_type ||
1504 N.getTag() == dwarf::DW_TAG_class_type ||
1505 N.getTag() == dwarf::DW_TAG_variant_part ||
1506 N.getTag() == dwarf::DW_TAG_variant ||
1507 N.getTag() == dwarf::DW_TAG_namelist,
1511 N.getRawBaseType());
1514 "invalid composite elements", &
N,
N.getRawElements());
1516 N.getRawVTableHolder());
1518 "invalid reference flags", &
N);
1519 unsigned DIBlockByRefStruct = 1 << 4;
1520 CheckDI((
N.getFlags() & DIBlockByRefStruct) == 0,
1521 "DIBlockByRefStruct on DICompositeType is no longer supported", &
N);
1523 "DISubprogram contains null entry in `elements` field", &
N);
1526 const DINodeArray
Elements =
N.getElements();
1528 Elements[0]->getTag() == dwarf::DW_TAG_subrange_type,
1529 "invalid vector, expected one element of type subrange", &
N);
1532 if (
auto *Params =
N.getRawTemplateParams())
1533 visitTemplateParams(
N, *Params);
1535 if (
auto *
D =
N.getRawDiscriminator()) {
1537 "discriminator can only appear on variant part");
1540 if (
N.getRawDataLocation()) {
1541 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1542 "dataLocation can only appear in array type");
1545 if (
N.getRawAssociated()) {
1546 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1547 "associated can only appear in array type");
1550 if (
N.getRawAllocated()) {
1551 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1552 "allocated can only appear in array type");
1555 if (
N.getRawRank()) {
1556 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1557 "rank can only appear in array type");
1560 if (
N.getTag() == dwarf::DW_TAG_array_type) {
1561 CheckDI(
N.getRawBaseType(),
"array types must have a base type", &
N);
1564 auto *
Size =
N.getRawSizeInBits();
1567 "SizeInBits must be a constant or DIVariable or DIExpression");
1570void Verifier::visitDISubroutineType(
const DISubroutineType &
N) {
1572 CheckDI(
N.getTag() == dwarf::DW_TAG_subroutine_type,
"invalid tag", &
N);
1573 if (
auto *Types =
N.getRawTypeArray()) {
1575 for (
Metadata *Ty :
N.getTypeArray()->operands()) {
1576 CheckDI(
isType(Ty),
"invalid subroutine type ref", &
N, Types, Ty);
1580 "invalid reference flags", &
N);
1583void Verifier::visitDIFile(
const DIFile &
N) {
1584 CheckDI(
N.getTag() == dwarf::DW_TAG_file_type,
"invalid tag", &
N);
1585 std::optional<DIFile::ChecksumInfo<StringRef>> Checksum =
N.getChecksum();
1587 CheckDI(Checksum->Kind <= DIFile::ChecksumKind::CSK_Last,
1588 "invalid checksum kind", &
N);
1590 switch (Checksum->Kind) {
1601 CheckDI(Checksum->Value.size() ==
Size,
"invalid checksum length", &
N);
1603 "invalid checksum", &
N);
1607void Verifier::visitDICompileUnit(
const DICompileUnit &
N) {
1608 CheckDI(
N.isDistinct(),
"compile units must be distinct", &
N);
1609 CheckDI(
N.getTag() == dwarf::DW_TAG_compile_unit,
"invalid tag", &
N);
1615 CheckDI(!
N.getFile()->getFilename().empty(),
"invalid filename", &
N,
1619 "invalid emission kind", &
N);
1622 "invalid language dialect", &
N);
1624 if (
auto *Array =
N.getRawEnumTypes()) {
1626 for (
Metadata *
Op :
N.getEnumTypes()->operands()) {
1628 CheckDI(Enum &&
Enum->getTag() == dwarf::DW_TAG_enumeration_type,
1629 "invalid enum type", &
N,
N.getEnumTypes(),
Op);
1631 "function-local enum in a DICompileUnit's enum list", &
N,
1632 N.getEnumTypes(),
Op);
1635 if (
auto *Array =
N.getRawRetainedTypes()) {
1637 for (
Metadata *
Op :
N.getRetainedTypes()->operands()) {
1641 "invalid retained type", &
N,
Op);
1644 if (
auto *Array =
N.getRawGlobalVariables()) {
1646 for (
Metadata *
Op :
N.getGlobalVariables()->operands()) {
1648 "invalid global variable ref", &
N,
Op);
1651 if (
auto *Array =
N.getRawImportedEntities()) {
1653 for (
Metadata *
Op :
N.getImportedEntities()->operands()) {
1655 CheckDI(IE,
"invalid imported entity ref", &
N,
Op);
1657 "function-local imports are not allowed in a DICompileUnit's "
1658 "imported entities list",
1662 if (
auto *Array =
N.getRawMacros()) {
1671void Verifier::visitDISubprogram(
const DISubprogram &
N) {
1672 CheckDI(
N.getTag() == dwarf::DW_TAG_subprogram,
"invalid tag", &
N);
1674 if (
auto *
F =
N.getRawFile())
1677 CheckDI(
N.getLine() == 0,
"line specified with no file", &
N,
N.getLine());
1678 auto *
T =
N.getRawType();
1679 CheckDI(
T,
"DISubprogram requires a non-null type", &
N);
1681 CheckDI(
isType(
N.getRawContainingType()),
"invalid containing type", &
N,
1682 N.getRawContainingType());
1683 if (
auto *Params =
N.getRawTemplateParams())
1684 visitTemplateParams(
N, *Params);
1685 if (
auto *S =
N.getRawDeclaration())
1687 "invalid subprogram declaration", &
N, S);
1688 if (
auto *RawNode =
N.getRawRetainedNodes()) {
1690 CheckDI(Node,
"invalid retained nodes list", &
N, RawNode);
1692 DenseMap<unsigned, DILocalVariable *>
Args;
1694 CheckDI(
Op,
"nullptr in retained nodes", &
N, Node);
1696 auto True = [](
const Metadata *) {
return true; };
1697 auto False = [](
const Metadata *) {
return false; };
1698 bool IsTypeCorrect = DISubprogram::visitRetainedNode<bool>(
1699 Op, True, True, True, True, False);
1701 "invalid retained nodes, expected DILocalVariable, DILabel, "
1702 "DIImportedEntity or DIType",
1709 "invalid retained nodes, retained node is not local", &
N, Node,
1712 DISubprogram *RetainedNodeSP = RetainedNodeScope->getSubprogram();
1713 DICompileUnit *RetainedNodeUnit =
1714 RetainedNodeSP ? RetainedNodeSP->getUnit() :
nullptr;
1716 RetainedNodeSP == &
N,
1717 "invalid retained nodes, retained node does not belong to subprogram",
1718 &
N, Node, RetainedNode, RetainedNodeScope, RetainedNodeSP,
1724 if (
unsigned ArgNum = DV->getArg()) {
1726 CheckDI(Inserted || DV == ArgI->second,
1727 "invalid retained nodes, more than one local variable with the "
1728 "same argument index",
1729 &
N,
N.getUnit(), Node, RetainedNode, Args[ArgNum]);
1734 "invalid reference flags", &
N);
1736 auto *
Unit =
N.getRawUnit();
1737 if (
N.isDefinition()) {
1739 CheckDI(
N.isDistinct(),
"subprogram definitions must be distinct", &
N);
1740 CheckDI(Unit,
"subprogram definitions must have a compile unit", &
N);
1745 if (CT && CT->getRawIdentifier() &&
1746 M.getContext().isODRUniquingDebugTypes())
1748 "definition subprograms cannot be nested within DICompositeType "
1749 "when enabling ODR",
1753 CheckDI(!Unit,
"subprogram declarations must not have a compile unit", &
N);
1755 "subprogram declaration must not have a declaration field");
1758 if (
auto *RawThrownTypes =
N.getRawThrownTypes()) {
1760 CheckDI(ThrownTypes,
"invalid thrown types list", &
N, RawThrownTypes);
1766 if (
N.areAllCallsDescribed())
1768 "DIFlagAllCallsDescribed must be attached to a definition");
1771void Verifier::visitDILexicalBlockBase(
const DILexicalBlockBase &
N) {
1772 CheckDI(
N.getTag() == dwarf::DW_TAG_lexical_block,
"invalid tag", &
N);
1774 "invalid local scope", &
N,
N.getRawScope());
1776 CheckDI(
SP->isDefinition(),
"scope points into the type hierarchy", &
N);
1779void Verifier::visitDILexicalBlock(
const DILexicalBlock &
N) {
1780 visitDILexicalBlockBase(
N);
1783 "cannot have column info without line info", &
N);
1786void Verifier::visitDILexicalBlockFile(
const DILexicalBlockFile &
N) {
1787 visitDILexicalBlockBase(
N);
1790void Verifier::visitDICommonBlock(
const DICommonBlock &
N) {
1791 CheckDI(
N.getTag() == dwarf::DW_TAG_common_block,
"invalid tag", &
N);
1792 if (
auto *S =
N.getRawScope())
1794 if (
auto *S =
N.getRawDecl())
1798void Verifier::visitDINamespace(
const DINamespace &
N) {
1799 CheckDI(
N.getTag() == dwarf::DW_TAG_namespace,
"invalid tag", &
N);
1800 if (
auto *S =
N.getRawScope())
1804void Verifier::visitDIMacro(
const DIMacro &
N) {
1807 "invalid macinfo type", &
N);
1808 CheckDI(!
N.getName().empty(),
"anonymous macro", &
N);
1809 if (!
N.getValue().empty()) {
1810 assert(
N.getValue().data()[0] !=
' ' &&
"Macro value has a space prefix");
1814void Verifier::visitDIMacroFile(
const DIMacroFile &
N) {
1816 "invalid macinfo type", &
N);
1817 if (
auto *
F =
N.getRawFile())
1820 if (
auto *Array =
N.getRawElements()) {
1822 for (
Metadata *
Op :
N.getElements()->operands()) {
1828void Verifier::visitDIModule(
const DIModule &
N) {
1829 CheckDI(
N.getTag() == dwarf::DW_TAG_module,
"invalid tag", &
N);
1830 CheckDI(!
N.getName().empty(),
"anonymous module", &
N);
1833void Verifier::visitDITemplateParameter(
const DITemplateParameter &
N) {
1837void Verifier::visitDITemplateTypeParameter(
const DITemplateTypeParameter &
N) {
1838 visitDITemplateParameter(
N);
1840 CheckDI(
N.getTag() == dwarf::DW_TAG_template_type_parameter,
"invalid tag",
1844void Verifier::visitDITemplateValueParameter(
1845 const DITemplateValueParameter &
N) {
1846 visitDITemplateParameter(
N);
1848 CheckDI(
N.getTag() == dwarf::DW_TAG_template_value_parameter ||
1849 N.getTag() == dwarf::DW_TAG_GNU_template_template_param ||
1850 N.getTag() == dwarf::DW_TAG_GNU_template_parameter_pack,
1854void Verifier::visitDIVariable(
const DIVariable &
N) {
1855 if (
auto *S =
N.getRawScope())
1857 if (
auto *
F =
N.getRawFile())
1861void Verifier::visitDIGlobalVariable(
const DIGlobalVariable &
N) {
1865 CheckDI(
N.getTag() == dwarf::DW_TAG_variable,
"invalid tag", &
N);
1868 if (
N.isDefinition())
1869 CheckDI(
N.getType(),
"missing global variable type", &
N);
1870 if (
auto *Member =
N.getRawStaticDataMemberDeclaration()) {
1872 "invalid static data member declaration", &
N, Member);
1876void Verifier::visitDILocalVariable(
const DILocalVariable &
N) {
1881 CheckDI(
N.getTag() == dwarf::DW_TAG_variable,
"invalid tag", &
N);
1883 "local variable requires a valid scope", &
N,
N.getRawScope());
1884 if (
auto Ty =
N.getType())
1888void Verifier::visitDIAssignID(
const DIAssignID &
N) {
1889 CheckDI(!
N.getNumOperands(),
"DIAssignID has no arguments", &
N);
1890 CheckDI(
N.isDistinct(),
"DIAssignID must be distinct", &
N);
1893void Verifier::visitDILabel(
const DILabel &
N) {
1894 if (
auto *S =
N.getRawScope())
1896 if (
auto *
F =
N.getRawFile())
1899 CheckDI(
N.getTag() == dwarf::DW_TAG_label,
"invalid tag", &
N);
1901 "label requires a valid scope", &
N,
N.getRawScope());
1904void Verifier::visitDIExpression(
const DIExpression &
N) {
1905 CheckDI(
N.isValid(),
"invalid expression", &
N);
1908void Verifier::visitDIGlobalVariableExpression(
1909 const DIGlobalVariableExpression &GVE) {
1912 visitDIGlobalVariable(*Var);
1914 visitDIExpression(*Expr);
1915 if (
auto Fragment = Expr->getFragmentInfo())
1916 verifyFragmentExpression(*GVE.
getVariable(), *Fragment, &GVE);
1920void Verifier::visitDIObjCProperty(
const DIObjCProperty &
N) {
1921 CheckDI(
N.getTag() == dwarf::DW_TAG_APPLE_property,
"invalid tag", &
N);
1922 if (
auto *
T =
N.getRawType())
1924 if (
auto *
F =
N.getRawFile())
1928void Verifier::visitDIImportedEntity(
const DIImportedEntity &
N) {
1929 CheckDI(
N.getTag() == dwarf::DW_TAG_imported_module ||
1930 N.getTag() == dwarf::DW_TAG_imported_declaration,
1932 if (
auto *S =
N.getRawScope())
1938void Verifier::visitComdat(
const Comdat &
C) {
1941 if (
TT.isOSBinFormatCOFF())
1942 if (
const GlobalValue *GV =
M.getNamedValue(
C.getName()))
1947void Verifier::visitModuleIdents() {
1948 const NamedMDNode *Idents =
M.getNamedMetadata(
"llvm.ident");
1954 for (
const MDNode *
N : Idents->
operands()) {
1955 Check(
N->getNumOperands() == 1,
1956 "incorrect number of operands in llvm.ident metadata",
N);
1958 (
"invalid value for llvm.ident metadata entry operand"
1959 "(the operand should be a string)"),
1964void Verifier::visitModuleCommandLines() {
1965 const NamedMDNode *CommandLines =
M.getNamedMetadata(
"llvm.commandline");
1972 for (
const MDNode *
N : CommandLines->
operands()) {
1973 Check(
N->getNumOperands() == 1,
1974 "incorrect number of operands in llvm.commandline metadata",
N);
1976 (
"invalid value for llvm.commandline metadata entry operand"
1977 "(the operand should be a string)"),
1982void Verifier::visitModuleErrnoTBAA() {
1983 const NamedMDNode *ErrnoTBAA =
M.getNamedMetadata(
"llvm.errno.tbaa");
1988 "llvm.errno.tbaa must have at least one operand", ErrnoTBAA);
1990 for (
const MDNode *
N : ErrnoTBAA->
operands())
1994void Verifier::visitModuleFlags() {
1995 const NamedMDNode *
Flags =
M.getModuleFlagsMetadata();
1999 DenseMap<const MDString*, const MDNode*> SeenIDs;
2001 uint64_t PAuthABIPlatform = -1;
2002 uint64_t PAuthABIVersion = -1;
2003 for (
const MDNode *MDN :
Flags->operands()) {
2004 visitModuleFlag(MDN, SeenIDs, Requirements);
2005 if (MDN->getNumOperands() != 3)
2008 if (FlagName->getString() ==
"aarch64-elf-pauthabi-platform") {
2009 if (
const auto *PAP =
2011 PAuthABIPlatform = PAP->getZExtValue();
2012 }
else if (FlagName->getString() ==
"aarch64-elf-pauthabi-version") {
2013 if (
const auto *PAV =
2015 PAuthABIVersion = PAV->getZExtValue();
2020 if ((PAuthABIPlatform == uint64_t(-1)) != (PAuthABIVersion == uint64_t(-1)))
2021 CheckFailed(
"either both or no 'aarch64-elf-pauthabi-platform' and "
2022 "'aarch64-elf-pauthabi-version' module flags must be present");
2025 for (
const MDNode *Requirement : Requirements) {
2027 const Metadata *ReqValue = Requirement->getOperand(1);
2029 const MDNode *
Op = SeenIDs.
lookup(Flag);
2031 CheckFailed(
"invalid requirement on flag, flag is not present in module",
2036 if (
Op->getOperand(2) != ReqValue) {
2037 CheckFailed((
"invalid requirement on flag, "
2038 "flag does not have the required value"),
2046Verifier::visitModuleFlag(
const MDNode *
Op,
2047 DenseMap<const MDString *, const MDNode *> &SeenIDs,
2048 SmallVectorImpl<const MDNode *> &Requirements) {
2052 "incorrect number of operands in module flag",
Op);
2053 Module::ModFlagBehavior MFB;
2054 if (!Module::isValidModFlagBehavior(
Op->getOperand(0), MFB)) {
2056 "invalid behavior operand in module flag (expected constant integer)",
2059 "invalid behavior operand in module flag (unexpected constant)",
2063 Check(
ID,
"invalid ID operand in module flag (expected metadata string)",
2069 case Module::Warning:
2070 case Module::Override:
2076 Check(V &&
V->getValue().isNonNegative(),
2077 "invalid value for 'min' module flag (expected constant non-negative "
2085 "invalid value for 'max' module flag (expected constant integer)",
2090 case Module::Require: {
2095 "invalid value for 'require' module flag (expected metadata pair)",
2098 (
"invalid value for 'require' module flag "
2099 "(first value operand should be a string)"),
2100 Value->getOperand(0));
2108 case Module::Append:
2109 case Module::AppendUnique: {
2112 "invalid value for 'append'-type module flag "
2113 "(expected a metadata node)",
2120 if (MFB != Module::Require) {
2123 "module flag identifiers must be unique (or of 'require' type)",
ID);
2126 if (
ID->getString() ==
"wchar_size") {
2129 Check(
Value,
"wchar_size metadata requires constant integer argument");
2132 if (
ID->getString() ==
"Linker Options") {
2136 Check(
M.getNamedMetadata(
"llvm.linker.options"),
2137 "'Linker Options' named metadata no longer supported");
2140 if (
ID->getString() ==
"SemanticInterposition") {
2141 ConstantInt *
Value =
2144 "SemanticInterposition metadata requires constant integer argument");
2147 if (
ID->getString() ==
"amdgpu.buffer.oob.mode" ||
2148 ID->getString() ==
"amdgpu.tbuffer.oob.mode") {
2149 Check(MFB == Module::Max,
2150 "'" +
ID->getString() +
2151 "' module flag must use 'max' merge behaviour");
2152 ConstantInt *
Value =
2155 "' module flag must have a constant integer value");
2158 "'" +
ID->getString() +
"' module flag must be 0, 1, or 2");
2162 if (
ID->getString() ==
"CG Profile") {
2163 for (
const MDOperand &MDO :
cast<MDNode>(
Op->getOperand(2))->operands())
2164 visitModuleFlagCGProfileEntry(MDO);
2168void Verifier::visitModuleFlagCGProfileEntry(
const MDOperand &MDO) {
2169 auto CheckFunction = [&](
const MDOperand &FuncMDO) {
2174 "expected a Function or null", FuncMDO);
2177 Check(Node &&
Node->getNumOperands() == 3,
"expected a MDNode triple", MDO);
2178 CheckFunction(
Node->getOperand(0));
2179 CheckFunction(
Node->getOperand(1));
2182 "expected an integer constant",
Node->getOperand(2));
2185void Verifier::verifyAttributeTypes(AttributeSet Attrs,
const Value *V) {
2188 if (
A.isStringAttribute()) {
2189#define GET_ATTR_NAMES
2190#define ATTRIBUTE_ENUM(ENUM_NAME, DISPLAY_NAME)
2191#define ATTRIBUTE_STRBOOL(ENUM_NAME, DISPLAY_NAME) \
2192 if (A.getKindAsString() == #DISPLAY_NAME) { \
2193 auto V = A.getValueAsString(); \
2194 if (!(V.empty() || V == "true" || V == "false")) \
2195 CheckFailed("invalid value for '" #DISPLAY_NAME "' attribute: " + V + \
2199#include "llvm/IR/Attributes.inc"
2203 if (
A.isIntAttribute() != Attribute::isIntAttrKind(
A.getKindAsEnum())) {
2204 CheckFailed(
"Attribute '" +
A.getAsString() +
"' should have an Argument",
2213void Verifier::verifyParameterAttrs(AttributeSet Attrs,
Type *Ty,
2215 if (!
Attrs.hasAttributes())
2218 verifyAttributeTypes(Attrs, V);
2221 Check(Attr.isStringAttribute() ||
2222 Attribute::canUseAsParamAttr(Attr.getKindAsEnum()),
2223 "Attribute '" + Attr.getAsString() +
"' does not apply to parameters",
2226 if (
Attrs.hasAttribute(Attribute::ImmArg)) {
2227 unsigned AttrCount =
2228 Attrs.getNumAttributes() -
Attrs.hasAttribute(Attribute::Range);
2229 Check(AttrCount == 1,
2230 "Attribute 'immarg' is incompatible with other attributes except the "
2231 "'range' attribute",
2237 unsigned AttrCount = 0;
2238 AttrCount +=
Attrs.hasAttribute(Attribute::ByVal);
2239 AttrCount +=
Attrs.hasAttribute(Attribute::InAlloca);
2240 AttrCount +=
Attrs.hasAttribute(Attribute::Preallocated);
2241 AttrCount +=
Attrs.hasAttribute(Attribute::StructRet) ||
2242 Attrs.hasAttribute(Attribute::InReg);
2243 AttrCount +=
Attrs.hasAttribute(Attribute::Nest);
2244 AttrCount +=
Attrs.hasAttribute(Attribute::ByRef);
2245 Check(AttrCount <= 1,
2246 "Attributes 'byval', 'inalloca', 'preallocated', 'inreg', 'nest', "
2247 "'byref', and 'sret' are incompatible!",
2250 Check(!(
Attrs.hasAttribute(Attribute::InAlloca) &&
2251 Attrs.hasAttribute(Attribute::ReadOnly)),
2253 "'inalloca and readonly' are incompatible!",
2256 Check(!(
Attrs.hasAttribute(Attribute::StructRet) &&
2257 Attrs.hasAttribute(Attribute::Returned)),
2259 "'sret and returned' are incompatible!",
2262 Check(!(
Attrs.hasAttribute(Attribute::ZExt) &&
2263 Attrs.hasAttribute(Attribute::SExt)),
2265 "'zeroext and signext' are incompatible!",
2268 Check(!(
Attrs.hasAttribute(Attribute::ReadNone) &&
2269 Attrs.hasAttribute(Attribute::ReadOnly)),
2271 "'readnone and readonly' are incompatible!",
2274 Check(!(
Attrs.hasAttribute(Attribute::ReadNone) &&
2275 Attrs.hasAttribute(Attribute::WriteOnly)),
2277 "'readnone and writeonly' are incompatible!",
2280 Check(!(
Attrs.hasAttribute(Attribute::ReadOnly) &&
2281 Attrs.hasAttribute(Attribute::WriteOnly)),
2283 "'readonly and writeonly' are incompatible!",
2286 Check(!(
Attrs.hasAttribute(Attribute::NoInline) &&
2287 Attrs.hasAttribute(Attribute::AlwaysInline)),
2289 "'noinline and alwaysinline' are incompatible!",
2292 Check(!(
Attrs.hasAttribute(Attribute::Writable) &&
2293 Attrs.hasAttribute(Attribute::ReadNone)),
2294 "Attributes writable and readnone are incompatible!", V);
2296 Check(!(
Attrs.hasAttribute(Attribute::Writable) &&
2297 Attrs.hasAttribute(Attribute::ReadOnly)),
2298 "Attributes writable and readonly are incompatible!", V);
2300 AttributeMask IncompatibleAttrs = AttributeFuncs::typeIncompatible(Ty, Attrs);
2302 if (!Attr.isStringAttribute() &&
2303 IncompatibleAttrs.
contains(Attr.getKindAsEnum())) {
2304 CheckFailed(
"Attribute '" + Attr.getAsString() +
2305 "' applied to incompatible type!", V);
2311 if (
Attrs.hasAttribute(Attribute::Alignment)) {
2312 Align AttrAlign =
Attrs.getAlignment().valueOrOne();
2313 Check(AttrAlign.
value() <= Value::MaximumAlignment,
2314 "huge alignment values are unsupported", V);
2316 if (
Attrs.hasAttribute(Attribute::ByVal)) {
2318 SmallPtrSet<Type *, 4> Visited;
2320 "Attribute 'byval' does not support unsized types!", V);
2324 "'byval' argument has illegal target extension type", V);
2325 Check(
DL.getTypeAllocSize(ByValTy).getKnownMinValue() < (1ULL << 32),
2326 "huge 'byval' arguments are unsupported", V);
2328 if (
Attrs.hasAttribute(Attribute::ByRef)) {
2329 SmallPtrSet<Type *, 4> Visited;
2330 Check(
Attrs.getByRefType()->isSized(&Visited),
2331 "Attribute 'byref' does not support unsized types!", V);
2332 Check(
DL.getTypeAllocSize(
Attrs.getByRefType()).getKnownMinValue() <
2334 "huge 'byref' arguments are unsupported", V);
2336 if (
Attrs.hasAttribute(Attribute::InAlloca)) {
2337 SmallPtrSet<Type *, 4> Visited;
2338 Check(
Attrs.getInAllocaType()->isSized(&Visited),
2339 "Attribute 'inalloca' does not support unsized types!", V);
2340 Check(
DL.getTypeAllocSize(
Attrs.getInAllocaType()).getKnownMinValue() <
2342 "huge 'inalloca' arguments are unsupported", V);
2344 if (
Attrs.hasAttribute(Attribute::Preallocated)) {
2345 SmallPtrSet<Type *, 4> Visited;
2346 Check(
Attrs.getPreallocatedType()->isSized(&Visited),
2347 "Attribute 'preallocated' does not support unsized types!", V);
2349 DL.getTypeAllocSize(
Attrs.getPreallocatedType()).getKnownMinValue() <
2351 "huge 'preallocated' arguments are unsupported", V);
2355 if (
Attrs.hasAttribute(Attribute::Initializes)) {
2356 auto Inits =
Attrs.getAttribute(Attribute::Initializes).getInitializes();
2357 Check(!Inits.empty(),
"Attribute 'initializes' does not support empty list",
2360 "Attribute 'initializes' does not support unordered ranges", V);
2363 if (
Attrs.hasAttribute(Attribute::NoFPClass)) {
2364 uint64_t Val =
Attrs.getAttribute(Attribute::NoFPClass).getValueAsInt();
2365 Check(Val != 0,
"Attribute 'nofpclass' must have at least one test bit set",
2368 "Invalid value for 'nofpclass' test mask", V);
2370 if (
Attrs.hasAttribute(Attribute::Range)) {
2371 const ConstantRange &CR =
2372 Attrs.getAttribute(Attribute::Range).getValueAsConstantRange();
2374 "Range bit width must match type bit width!", V);
2378void Verifier::checkUnsignedBaseTenFuncAttr(AttributeList Attrs, StringRef Attr,
2380 if (
Attrs.hasFnAttr(Attr)) {
2381 StringRef S =
Attrs.getFnAttr(Attr).getValueAsString();
2384 CheckFailed(
"\"" + Attr +
"\" takes an unsigned integer: " + S, V);
2390void Verifier::verifyFunctionAttrs(FunctionType *FT, AttributeList Attrs,
2391 const Value *V,
bool IsIntrinsic,
2393 if (
Attrs.isEmpty())
2396 if (AttributeListsVisited.
insert(
Attrs.getRawPointer()).second) {
2398 "Attribute list does not match Module context!", &Attrs, V);
2399 for (
const auto &AttrSet : Attrs) {
2400 Check(!AttrSet.hasAttributes() || AttrSet.hasParentContext(
Context),
2401 "Attribute set does not match Module context!", &AttrSet, V);
2402 for (
const auto &
A : AttrSet) {
2404 "Attribute does not match Module context!", &
A, V);
2409 bool SawNest =
false;
2410 bool SawReturned =
false;
2411 bool SawSRet =
false;
2412 bool SawSwiftSelf =
false;
2413 bool SawSwiftAsync =
false;
2414 bool SawSwiftError =
false;
2417 AttributeSet RetAttrs =
Attrs.getRetAttrs();
2420 Attribute::canUseAsRetAttr(
RetAttr.getKindAsEnum()),
2421 "Attribute '" +
RetAttr.getAsString() +
2422 "' does not apply to function return values",
2425 unsigned MaxParameterWidth = 0;
2426 auto GetMaxParameterWidth = [&MaxParameterWidth](
Type *Ty) {
2429 unsigned Size = VT->getPrimitiveSizeInBits().getFixedValue();
2430 if (
Size > MaxParameterWidth)
2431 MaxParameterWidth =
Size;
2435 GetMaxParameterWidth(FT->getReturnType());
2436 verifyParameterAttrs(RetAttrs, FT->getReturnType(), V);
2439 for (
unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
2440 Type *Ty = FT->getParamType(i);
2441 AttributeSet ArgAttrs =
Attrs.getParamAttrs(i);
2445 "immarg attribute only applies to intrinsics", V);
2448 "Attribute 'elementtype' can only be applied to intrinsics"
2453 verifyParameterAttrs(ArgAttrs, Ty, V);
2454 GetMaxParameterWidth(Ty);
2457 Check(!SawNest,
"More than one parameter has attribute nest!", V);
2462 Check(!SawReturned,
"More than one parameter has attribute returned!", V);
2464 "Incompatible argument and return types for 'returned' attribute",
2470 Check(!SawSRet,
"Cannot have multiple 'sret' parameters!", V);
2471 Check(i == 0 || i == 1,
2472 "Attribute 'sret' is not on first or second parameter!", V);
2477 Check(!SawSwiftSelf,
"Cannot have multiple 'swiftself' parameters!", V);
2478 SawSwiftSelf =
true;
2482 Check(!SawSwiftAsync,
"Cannot have multiple 'swiftasync' parameters!", V);
2483 SawSwiftAsync =
true;
2487 Check(!SawSwiftError,
"Cannot have multiple 'swifterror' parameters!", V);
2488 SawSwiftError =
true;
2492 Check(i == FT->getNumParams() - 1,
2493 "inalloca isn't on the last parameter!", V);
2497 if (!
Attrs.hasFnAttrs())
2500 verifyAttributeTypes(
Attrs.getFnAttrs(), V);
2503 Attribute::canUseAsFnAttr(
FnAttr.getKindAsEnum()),
2504 "Attribute '" +
FnAttr.getAsString() +
2505 "' does not apply to functions!",
2508 Check(!(
Attrs.hasFnAttr(Attribute::NoInline) &&
2509 Attrs.hasFnAttr(Attribute::AlwaysInline)),
2510 "Attributes 'noinline and alwaysinline' are incompatible!", V);
2512 if (
Attrs.hasFnAttr(Attribute::OptimizeNone)) {
2514 "Attribute 'optnone' requires 'noinline'!", V);
2516 Check(!
Attrs.hasFnAttr(Attribute::OptimizeForSize),
2517 "Attributes 'optsize and optnone' are incompatible!", V);
2520 "Attributes 'minsize and optnone' are incompatible!", V);
2522 Check(!
Attrs.hasFnAttr(Attribute::OptimizeForDebugging),
2523 "Attributes 'optdebug and optnone' are incompatible!", V);
2526 Check(!(
Attrs.hasFnAttr(Attribute::SanitizeRealtime) &&
2527 Attrs.hasFnAttr(Attribute::SanitizeRealtimeBlocking)),
2529 "'sanitize_realtime and sanitize_realtime_blocking' are incompatible!",
2532 if (
Attrs.hasFnAttr(Attribute::OptimizeForDebugging)) {
2533 Check(!
Attrs.hasFnAttr(Attribute::OptimizeForSize),
2534 "Attributes 'optsize and optdebug' are incompatible!", V);
2537 "Attributes 'minsize and optdebug' are incompatible!", V);
2540 Check(!
Attrs.hasAttrSomewhere(Attribute::Writable) ||
2541 isModSet(
Attrs.getMemoryEffects().getModRef(IRMemLocation::ArgMem)),
2542 "Attribute writable and memory without argmem: write are incompatible!",
2545 if (
Attrs.hasFnAttr(
"aarch64_pstate_sm_enabled")) {
2546 Check(!
Attrs.hasFnAttr(
"aarch64_pstate_sm_compatible"),
2547 "Attributes 'aarch64_pstate_sm_enabled and "
2548 "aarch64_pstate_sm_compatible' are incompatible!",
2552 Check((
Attrs.hasFnAttr(
"aarch64_new_za") +
Attrs.hasFnAttr(
"aarch64_in_za") +
2553 Attrs.hasFnAttr(
"aarch64_inout_za") +
2554 Attrs.hasFnAttr(
"aarch64_out_za") +
2555 Attrs.hasFnAttr(
"aarch64_preserves_za") +
2556 Attrs.hasFnAttr(
"aarch64_za_state_agnostic")) <= 1,
2557 "Attributes 'aarch64_new_za', 'aarch64_in_za', 'aarch64_out_za', "
2558 "'aarch64_inout_za', 'aarch64_preserves_za' and "
2559 "'aarch64_za_state_agnostic' are mutually exclusive",
2563 Attrs.hasFnAttr(
"aarch64_in_zt0") +
2564 Attrs.hasFnAttr(
"aarch64_inout_zt0") +
2565 Attrs.hasFnAttr(
"aarch64_out_zt0") +
2566 Attrs.hasFnAttr(
"aarch64_preserves_zt0") +
2567 Attrs.hasFnAttr(
"aarch64_za_state_agnostic")) <= 1,
2568 "Attributes 'aarch64_new_zt0', 'aarch64_in_zt0', 'aarch64_out_zt0', "
2569 "'aarch64_inout_zt0', 'aarch64_preserves_zt0' and "
2570 "'aarch64_za_state_agnostic' are mutually exclusive",
2573 if (
Attrs.hasFnAttr(Attribute::JumpTable)) {
2576 "Attribute 'jumptable' requires 'unnamed_addr'", V);
2579 if (
auto Args =
Attrs.getFnAttrs().getAllocSizeArgs()) {
2580 auto CheckParam = [&](StringRef
Name,
unsigned ParamNo) {
2581 if (ParamNo >= FT->getNumParams()) {
2582 CheckFailed(
"'allocsize' " + Name +
" argument is out of bounds", V);
2586 if (!FT->getParamType(ParamNo)->isIntegerTy()) {
2587 CheckFailed(
"'allocsize' " + Name +
2588 " argument must refer to an integer parameter",
2596 if (!CheckParam(
"element size",
Args->first))
2599 if (
Args->second && !CheckParam(
"number of elements", *
Args->second))
2603 if (
Attrs.hasFnAttr(Attribute::AllocKind)) {
2606 K & (AllocFnKind::Alloc | AllocFnKind::Realloc | AllocFnKind::Free);
2608 {AllocFnKind::Alloc, AllocFnKind::Realloc, AllocFnKind::Free},
2611 "'allockind()' requires exactly one of alloc, realloc, and free");
2612 if ((
Type == AllocFnKind::Free) &&
2613 ((K & (AllocFnKind::Uninitialized | AllocFnKind::Zeroed |
2614 AllocFnKind::Aligned)) != AllocFnKind::Unknown))
2615 CheckFailed(
"'allockind(\"free\")' doesn't allow uninitialized, zeroed, "
2616 "or aligned modifiers.");
2617 AllocFnKind ZeroedUninit = AllocFnKind::Uninitialized | AllocFnKind::Zeroed;
2618 if ((K & ZeroedUninit) == ZeroedUninit)
2619 CheckFailed(
"'allockind()' can't be both zeroed and uninitialized");
2623 StringRef S =
A.getValueAsString();
2624 Check(!S.
empty(),
"'alloc-variant-zeroed' must not be empty");
2632 "'alloc-variant-zeroed' must name a function belonging to the "
2633 "same 'alloc-family'");
2636 (
Variant->getFnAttribute(Attribute::AllocKind).getAllocKind() &
2637 AllocFnKind::Zeroed) != AllocFnKind::Unknown,
2638 "'alloc-variant-zeroed' must name a function with "
2639 "'allockind(\"zeroed\")'");
2642 "'alloc-variant-zeroed' must name a function with the same "
2647 "'alloc-variant-zeroed' must name a function with the same "
2648 "calling convention");
2652 if (
Attrs.hasFnAttr(Attribute::VScaleRange)) {
2653 unsigned VScaleMin =
Attrs.getFnAttrs().getVScaleRangeMin();
2655 CheckFailed(
"'vscale_range' minimum must be greater than 0", V);
2657 CheckFailed(
"'vscale_range' minimum must be power-of-two value", V);
2658 std::optional<unsigned> VScaleMax =
Attrs.getFnAttrs().getVScaleRangeMax();
2659 if (VScaleMax && VScaleMin > VScaleMax)
2660 CheckFailed(
"'vscale_range' minimum cannot be greater than maximum", V);
2662 CheckFailed(
"'vscale_range' maximum must be power-of-two value", V);
2665 if (
Attribute FPAttr =
Attrs.getFnAttr(
"frame-pointer"); FPAttr.isValid()) {
2666 StringRef
FP = FPAttr.getValueAsString();
2667 if (
FP !=
"all" &&
FP !=
"non-leaf" &&
FP !=
"none" &&
FP !=
"reserved" &&
2668 FP !=
"non-leaf-no-reserve")
2669 CheckFailed(
"invalid value for 'frame-pointer' attribute: " +
FP, V);
2672 checkUnsignedBaseTenFuncAttr(Attrs,
"patchable-function-prefix", V);
2673 checkUnsignedBaseTenFuncAttr(Attrs,
"patchable-function-entry", V);
2674 if (
Attrs.hasFnAttr(
"patchable-function-entry-section"))
2675 Check(!
Attrs.getFnAttr(
"patchable-function-entry-section")
2678 "\"patchable-function-entry-section\" must not be empty");
2679 checkUnsignedBaseTenFuncAttr(Attrs,
"warn-stack-size", V);
2681 if (
auto A =
Attrs.getFnAttr(
"sign-return-address");
A.isValid()) {
2682 StringRef S =
A.getValueAsString();
2683 if (S !=
"none" && S !=
"all" && S !=
"non-leaf")
2684 CheckFailed(
"invalid value for 'sign-return-address' attribute: " + S, V);
2687 if (
auto A =
Attrs.getFnAttr(
"sign-return-address-key");
A.isValid()) {
2688 StringRef S =
A.getValueAsString();
2689 if (S !=
"a_key" && S !=
"b_key")
2690 CheckFailed(
"invalid value for 'sign-return-address-key' attribute: " + S,
2692 if (
auto AA =
Attrs.getFnAttr(
"sign-return-address"); !AA.isValid()) {
2694 "'sign-return-address-key' present without `sign-return-address`");
2698 if (
auto A =
Attrs.getFnAttr(
"branch-target-enforcement");
A.isValid()) {
2699 StringRef S =
A.getValueAsString();
2700 if (S !=
"" && S !=
"true" && S !=
"false")
2702 "invalid value for 'branch-target-enforcement' attribute: " + S, V);
2705 if (
auto A =
Attrs.getFnAttr(
"branch-protection-pauth-lr");
A.isValid()) {
2706 StringRef S =
A.getValueAsString();
2707 if (S !=
"" && S !=
"true" && S !=
"false")
2709 "invalid value for 'branch-protection-pauth-lr' attribute: " + S, V);
2712 if (
auto A =
Attrs.getFnAttr(
"guarded-control-stack");
A.isValid()) {
2713 StringRef S =
A.getValueAsString();
2714 if (S !=
"" && S !=
"true" && S !=
"false")
2715 CheckFailed(
"invalid value for 'guarded-control-stack' attribute: " + S,
2719 if (
auto A =
Attrs.getFnAttr(
"vector-function-abi-variant");
A.isValid()) {
2720 StringRef S =
A.getValueAsString();
2723 CheckFailed(
"invalid name for a VFABI variant: " + S, V);
2726 if (
auto A =
Attrs.getFnAttr(
"modular-format");
A.isValid()) {
2727 StringRef S =
A.getValueAsString();
2731 "modular-format attribute requires at least 5 arguments", V);
2732 unsigned UpperBound = FT->getNumParams() + (FT->isVarArg() ? 1 : 0);
2734 Check(!Args[1].getAsInteger(10, FormatIdx),
2735 "modular-format attribute format string index is not an integer", V);
2736 Check(FormatIdx > 0,
2737 "modular-format attribute format string index must be greater than 0",
2739 Check(FormatIdx <= UpperBound,
2740 "modular-format attribute format string index is out of bounds", V);
2741 unsigned FirstArgIdx;
2742 Check(!Args[2].getAsInteger(10, FirstArgIdx),
2743 "modular-format attribute first arg index is not an integer", V);
2744 Check(FirstArgIdx <= UpperBound,
2745 "modular-format attribute first arg index is out of bounds", V);
2747 "modular-format attribute modular implementation function name "
2751 "modular-format attribute implementation name cannot be empty", V);
2754 if (
auto A =
Attrs.getFnAttr(
"target-features");
A.isValid()) {
2755 StringRef S =
A.getValueAsString();
2757 for (
auto FeatureFlag :
split(S,
',')) {
2758 if (FeatureFlag.empty())
2760 "target-features attribute should not contain an empty string");
2762 Check(FeatureFlag[0] ==
'+' || FeatureFlag[0] ==
'-',
2763 "target feature '" + FeatureFlag +
2764 "' must start with a '+' or '-'",
2770void Verifier::verifyUnknownProfileMetadata(MDNode *MD) {
2772 "'unknown' !prof should have a single additional operand", MD);
2775 "'unknown' !prof should have an additional operand of type "
2778 "the 'unknown' !prof operand should not be an empty string");
2781void Verifier::verifyFunctionMetadata(
2782 ArrayRef<std::pair<unsigned, MDNode *>> MDs) {
2783 for (
const auto &Pair : MDs) {
2784 if (Pair.first == LLVMContext::MD_prof) {
2785 MDNode *MD = Pair.second;
2787 "!prof annotations should have no less than 2 operands", MD);
2792 verifyUnknownProfileMetadata(MD);
2797 Check(MD->
getOperand(0) !=
nullptr,
"first operand should not be null",
2800 "expected string with name of the !prof annotation", MD);
2805 "first operand should be 'function_entry_count'"
2806 " or 'synthetic_function_entry_count'",
2810 Check(MD->
getOperand(1) !=
nullptr,
"second operand should not be null",
2813 "expected integer argument to function_entry_count", MD);
2814 }
else if (Pair.first == LLVMContext::MD_kcfi_type) {
2815 MDNode *MD = Pair.second;
2817 "!kcfi_type must have exactly one operand", MD);
2818 Check(MD->
getOperand(0) !=
nullptr,
"!kcfi_type operand must not be null",
2821 "expected a constant operand for !kcfi_type", MD);
2824 "expected a constant integer operand for !kcfi_type", MD);
2826 "expected a 32-bit integer constant operand for !kcfi_type", MD);
2831void Verifier::visitConstantExprsRecursively(
const Constant *EntryC) {
2835 if (!ConstantExprVisited.
insert(EntryC).second)
2839 Stack.push_back(EntryC);
2841 while (!
Stack.empty()) {
2846 visitConstantExpr(CE);
2849 visitConstantPtrAuth(CPA);
2854 Check(GV->
getParent() == &M,
"Referencing global in another module!",
2860 for (
const Use &U :
C->operands()) {
2864 if (!ConstantExprVisited.
insert(OpC).second)
2866 Stack.push_back(OpC);
2871void Verifier::visitConstantExpr(
const ConstantExpr *CE) {
2872 if (
CE->getOpcode() == Instruction::BitCast)
2875 "Invalid bitcast", CE);
2876 else if (
CE->getOpcode() == Instruction::PtrToAddr)
2877 checkPtrToAddr(
CE->getOperand(0)->getType(),
CE->getType(), *CE);
2880void Verifier::visitConstantPtrAuth(
const ConstantPtrAuth *CPA) {
2882 "signed ptrauth constant base pointer must have pointer type");
2885 "signed ptrauth constant must have same type as its base pointer");
2888 "signed ptrauth constant key must be i32 constant integer");
2891 "signed ptrauth constant address discriminator must be a pointer");
2894 "signed ptrauth constant discriminator must be i64 constant integer");
2897 "signed ptrauth constant deactivation symbol must be a pointer");
2901 "signed ptrauth constant deactivation symbol must be a global value "
2905bool Verifier::verifyAttributeCount(AttributeList Attrs,
unsigned Params) {
2908 return Attrs.getNumAttrSets() <= Params + 2;
2911void Verifier::verifyInlineAsmCall(
const CallBase &
Call) {
2914 unsigned LabelNo = 0;
2915 for (
const InlineAsm::ConstraintInfo &CI :
IA->ParseConstraints()) {
2925 if (CI.isIndirect) {
2928 "Operand for indirect constraint must have pointer type", &
Call);
2931 "Operand for indirect constraint must have elementtype attribute",
2935 "Elementtype attribute can only be applied for indirect "
2944 Check(LabelNo == CallBr->getNumIndirectDests(),
2945 "Number of label constraints does not match number of callbr dests",
2948 Check(LabelNo == 0,
"Label constraints can only be used with callbr",
2954void Verifier::verifyStatepoint(
const CallBase &
Call) {
2959 "gc.statepoint must read and write all memory to preserve "
2960 "reordering restrictions required by safepoint semantics",
2963 const int64_t NumPatchBytes =
2966 Check(NumPatchBytes >= 0,
2967 "gc.statepoint number of patchable bytes must be "
2972 Check(TargetElemType,
2973 "gc.statepoint callee argument must have elementtype attribute",
Call);
2975 Check(TargetFuncType,
2976 "gc.statepoint callee elementtype must be function type",
Call);
2979 Check(NumCallArgs >= 0,
2980 "gc.statepoint number of arguments to underlying call "
2983 const int NumParams = (int)TargetFuncType->getNumParams();
2984 if (TargetFuncType->isVarArg()) {
2985 Check(NumCallArgs >= NumParams,
2986 "gc.statepoint mismatch in number of vararg call args",
Call);
2989 Check(TargetFuncType->getReturnType()->isVoidTy(),
2990 "gc.statepoint doesn't support wrapping non-void "
2991 "vararg functions yet",
2994 Check(NumCallArgs == NumParams,
2995 "gc.statepoint mismatch in number of call args",
Call);
2997 const uint64_t
Flags
2999 Check((Flags & ~(uint64_t)StatepointFlags::MaskAll) == 0,
3000 "unknown flag used in gc.statepoint flags argument",
Call);
3005 for (
int i = 0; i < NumParams; i++) {
3006 Type *ParamType = TargetFuncType->getParamType(i);
3008 Check(ArgType == ParamType,
3009 "gc.statepoint call argument does not match wrapped "
3013 if (TargetFuncType->isVarArg()) {
3014 AttributeSet ArgAttrs =
Attrs.getParamAttrs(5 + i);
3016 "Attribute 'sret' cannot be used for vararg call arguments!",
Call);
3020 const int EndCallArgsInx = 4 + NumCallArgs;
3024 "gc.statepoint number of transition arguments "
3025 "must be constant integer",
3027 const int NumTransitionArgs =
3029 Check(NumTransitionArgs == 0,
3030 "gc.statepoint w/inline transition bundle is deprecated",
Call);
3031 const int EndTransitionArgsInx = EndCallArgsInx + 1 + NumTransitionArgs;
3035 "gc.statepoint number of deoptimization arguments "
3036 "must be constant integer",
3039 Check(NumDeoptArgs == 0,
3040 "gc.statepoint w/inline deopt operands is deprecated",
Call);
3042 const int ExpectedNumArgs = 7 + NumCallArgs;
3044 "gc.statepoint too many arguments",
Call);
3051 Check(UserCall,
"illegal use of statepoint token",
Call, U);
3055 "gc.result or gc.relocate are the only value uses "
3056 "of a gc.statepoint",
3060 "gc.result connected to wrong gc.statepoint",
Call, UserCall);
3063 "gc.relocate connected to wrong gc.statepoint",
Call, UserCall);
3077void Verifier::verifyFrameRecoverIndices() {
3078 for (
auto &Counts : FrameEscapeInfo) {
3080 unsigned EscapedObjectCount = Counts.second.first;
3081 unsigned MaxRecoveredIndex = Counts.second.second;
3082 Check(MaxRecoveredIndex <= EscapedObjectCount,
3083 "all indices passed to llvm.localrecover must be less than the "
3084 "number of arguments passed to llvm.localescape in the parent "
3093 UnwindDest =
II->getUnwindDest();
3095 UnwindDest = CSI->getUnwindDest();
3101void Verifier::verifySiblingFuncletUnwinds() {
3102 llvm::TimeTraceScope timeScope(
"Verifier verify sibling funclet unwinds");
3103 SmallPtrSet<Instruction *, 8> Visited;
3104 SmallPtrSet<Instruction *, 8>
Active;
3105 for (
const auto &Pair : SiblingFuncletInfo) {
3107 if (Visited.
count(PredPad))
3113 if (
Active.count(SuccPad)) {
3116 SmallVector<Instruction *, 8> CycleNodes;
3119 Instruction *CycleTerminator = SiblingFuncletInfo[CyclePad];
3120 if (CycleTerminator != CyclePad)
3123 }
while (CyclePad != SuccPad);
3124 Check(
false,
"EH pads can't handle each other's exceptions",
3128 if (!Visited.
insert(SuccPad).second)
3132 auto TermI = SiblingFuncletInfo.find(PredPad);
3133 if (TermI == SiblingFuncletInfo.end())
3146void Verifier::visitFunction(
const Function &
F) {
3147 visitGlobalValue(
F);
3150 FunctionType *FT =
F.getFunctionType();
3151 unsigned NumArgs =
F.arg_size();
3154 "Function context does not match Module context!", &
F);
3156 Check(!
F.hasCommonLinkage(),
"Functions may not have common linkage", &
F);
3157 Check(FT->getNumParams() == NumArgs,
3158 "# formal arguments must match # of arguments for function type!", &
F,
3160 Check(
F.getReturnType()->isFirstClassType() ||
3161 F.getReturnType()->isVoidTy() ||
F.getReturnType()->isStructTy(),
3162 "Functions cannot return aggregate values!", &
F);
3164 Check(!
F.hasStructRetAttr() ||
F.getReturnType()->isVoidTy(),
3165 "Invalid struct return type!", &
F);
3167 if (MaybeAlign
A =
F.getAlign()) {
3168 Check(
A->value() <= Value::MaximumAlignment,
3169 "huge alignment values are unsupported", &
F);
3172 AttributeList
Attrs =
F.getAttributes();
3174 Check(verifyAttributeCount(Attrs, FT->getNumParams()),
3175 "Attribute after last parameter!", &
F);
3177 bool IsIntrinsic =
F.isIntrinsic();
3180 verifyFunctionAttrs(FT, Attrs, &
F, IsIntrinsic,
false);
3186 "Attribute 'builtin' can only be applied to a callsite.", &
F);
3188 Check(!
Attrs.hasAttrSomewhere(Attribute::ElementType),
3189 "Attribute 'elementtype' can only be applied to a callsite.", &
F);
3191 if (
Attrs.hasFnAttr(Attribute::Naked))
3192 for (
const Argument &Arg :
F.args())
3193 Check(Arg.use_empty(),
"cannot use argument of naked function", &Arg);
3198 switch (
F.getCallingConv()) {
3200 case CallingConv::C:
3202 case CallingConv::X86_INTR: {
3203 Check(
F.arg_empty() ||
Attrs.hasParamAttr(0, Attribute::ByVal),
3204 "Calling convention parameter requires byval", &
F);
3207 case CallingConv::AMDGPU_KERNEL:
3208 case CallingConv::SPIR_KERNEL:
3209 case CallingConv::AMDGPU_CS_Chain:
3210 case CallingConv::AMDGPU_CS_ChainPreserve:
3211 Check(
F.getReturnType()->isVoidTy(),
3212 "Calling convention requires void return type", &
F);
3214 case CallingConv::AMDGPU_VS:
3215 case CallingConv::AMDGPU_HS:
3216 case CallingConv::AMDGPU_GS:
3217 case CallingConv::AMDGPU_PS:
3218 case CallingConv::AMDGPU_CS:
3219 Check(!
F.hasStructRetAttr(),
"Calling convention does not allow sret", &
F);
3220 if (
F.getCallingConv() != CallingConv::SPIR_KERNEL) {
3221 const unsigned StackAS =
DL.getAllocaAddrSpace();
3223 for (
const Argument &Arg :
F.args()) {
3224 Check(!
Attrs.hasParamAttr(i, Attribute::ByVal),
3225 "Calling convention disallows byval", &
F);
3226 Check(!
Attrs.hasParamAttr(i, Attribute::Preallocated),
3227 "Calling convention disallows preallocated", &
F);
3228 Check(!
Attrs.hasParamAttr(i, Attribute::InAlloca),
3229 "Calling convention disallows inalloca", &
F);
3231 if (
Attrs.hasParamAttr(i, Attribute::ByRef)) {
3234 Check(Arg.getType()->getPointerAddressSpace() != StackAS,
3235 "Calling convention disallows stack byref", &
F);
3243 case CallingConv::Fast:
3244 case CallingConv::Cold:
3245 case CallingConv::Intel_OCL_BI:
3246 case CallingConv::PTX_Kernel:
3247 case CallingConv::PTX_Device:
3249 "Calling convention does not support varargs or "
3250 "perfect forwarding!",
3253 case CallingConv::AMDGPU_Gfx_WholeWave:
3254 Check(!
F.arg_empty() &&
F.arg_begin()->getType()->isIntegerTy(1),
3255 "Calling convention requires first argument to be i1", &
F);
3256 Check(!
F.arg_begin()->hasInRegAttr(),
3257 "Calling convention requires first argument to not be inreg", &
F);
3259 "Calling convention does not support varargs or "
3260 "perfect forwarding!",
3267 for (
const Argument &Arg :
F.args()) {
3268 Check(Arg.getType() == FT->getParamType(i),
3269 "Argument value does not match function argument type!", &Arg,
3270 FT->getParamType(i));
3271 Check(Arg.getType()->isFirstClassType(),
3272 "Function arguments must have first-class types!", &Arg);
3274 Check(!Arg.getType()->isMetadataTy(),
3275 "Function takes metadata but isn't an intrinsic", &Arg, &
F);
3276 Check(!Arg.getType()->isTokenLikeTy(),
3277 "Function takes token but isn't an intrinsic", &Arg, &
F);
3278 Check(!Arg.getType()->isX86_AMXTy(),
3279 "Function takes x86_amx but isn't an intrinsic", &Arg, &
F);
3283 if (
Attrs.hasParamAttr(i, Attribute::SwiftError)) {
3284 verifySwiftErrorValue(&Arg);
3290 Check(!
F.getReturnType()->isTokenLikeTy(),
3291 "Function returns a token but isn't an intrinsic", &
F);
3292 Check(!
F.getReturnType()->isX86_AMXTy(),
3293 "Function returns a x86_amx but isn't an intrinsic", &
F);
3298 F.getAllMetadata(MDs);
3299 assert(
F.hasMetadata() != MDs.
empty() &&
"Bit out-of-sync");
3300 verifyFunctionMetadata(MDs);
3303 if (
F.hasPersonalityFn()) {
3306 Check(Per->getParent() ==
F.getParent(),
3307 "Referencing personality function in another module!", &
F,
3308 F.getParent(), Per, Per->getParent());
3312 BlockEHFuncletColors.
clear();
3314 if (
F.isMaterializable()) {
3316 Check(MDs.
empty(),
"unmaterialized function cannot have metadata", &
F,
3318 }
else if (
F.isDeclaration()) {
3319 for (
const auto &
I : MDs) {
3321 CheckDI(
I.first != LLVMContext::MD_dbg ||
3323 "function declaration may only have a unique !dbg attachment",
3325 Check(
I.first != LLVMContext::MD_prof,
3326 "function declaration may not have a !prof attachment", &
F);
3329 visitMDNode(*
I.second, AreDebugLocsAllowed::Yes);
3331 Check(!
F.hasPersonalityFn(),
3332 "Function declaration shouldn't have a personality routine", &
F);
3336 Check(!IsIntrinsic,
"llvm intrinsics cannot be defined!", &
F);
3341 "Entry block to function must not have predecessors!", Entry);
3344 if (
Entry->hasAddressTaken()) {
3346 "blockaddress may not be used with the entry block!", Entry);
3349 unsigned NumDebugAttachments = 0, NumProfAttachments = 0,
3350 NumKCFIAttachments = 0;
3352 for (
const auto &
I : MDs) {
3354 auto AllowLocs = AreDebugLocsAllowed::No;
3358 case LLVMContext::MD_dbg: {
3359 ++NumDebugAttachments;
3360 CheckDI(NumDebugAttachments == 1,
3361 "function must have a single !dbg attachment", &
F,
I.second);
3363 "function !dbg attachment must be a subprogram", &
F,
I.second);
3365 "function definition may only have a distinct !dbg attachment",
3369 const Function *&AttachedTo = DISubprogramAttachments[
SP];
3370 CheckDI(!AttachedTo || AttachedTo == &
F,
3371 "DISubprogram attached to more than one function", SP, &
F);
3373 AllowLocs = AreDebugLocsAllowed::Yes;
3376 case LLVMContext::MD_prof:
3377 ++NumProfAttachments;
3378 Check(NumProfAttachments == 1,
3379 "function must have a single !prof attachment", &
F,
I.second);
3381 case LLVMContext::MD_kcfi_type:
3382 ++NumKCFIAttachments;
3383 Check(NumKCFIAttachments == 1,
3384 "function must have a single !kcfi_type attachment", &
F,
3390 visitMDNode(*
I.second, AllowLocs);
3398 if (
F.isIntrinsic() &&
F.getParent()->isMaterialized()) {
3400 if (
F.hasAddressTaken(&U,
false,
true,
false,
3402 Check(
false,
"Invalid user of intrinsic instruction!", U);
3406 switch (
F.getIntrinsicID()) {
3407 case Intrinsic::experimental_gc_get_pointer_base: {
3408 FunctionType *FT =
F.getFunctionType();
3409 Check(FT->getNumParams() == 1,
"wrong number of parameters",
F);
3411 "gc.get.pointer.base must return a pointer",
F);
3412 Check(FT->getParamType(0) ==
F.getReturnType(),
3413 "gc.get.pointer.base operand and result must be of the same type",
F);
3416 case Intrinsic::experimental_gc_get_pointer_offset: {
3417 FunctionType *FT =
F.getFunctionType();
3418 Check(FT->getNumParams() == 1,
"wrong number of parameters",
F);
3420 "gc.get.pointer.offset operand must be a pointer",
F);
3421 Check(
F.getReturnType()->isIntegerTy(),
3422 "gc.get.pointer.offset must return integer",
F);
3427 auto *
N =
F.getSubprogram();
3428 HasDebugInfo = (
N !=
nullptr);
3436 SmallPtrSet<const MDNode *, 32> Seen;
3448 "DILocation's scope must be a DILocalScope",
N, &
F, &
I,
DL, Parent);
3450 DILocalScope *
Scope =
DL->getInlinedAtScope();
3451 Check(Scope,
"Failed to find DILocalScope",
DL);
3453 if (!Seen.
insert(Scope).second)
3456 DISubprogram *
SP =
Scope->getSubprogram();
3460 if ((Scope != SP) && !Seen.
insert(SP).second)
3464 "!dbg attachment points at wrong subprogram for function",
N, &
F,
3468 for (
auto &
I : BB) {
3469 VisitDebugLoc(
I,
I.getDebugLoc().getAsMDNode());
3471 if (
auto MD =
I.getMetadata(LLVMContext::MD_loop))
3474 if (BrokenDebugInfo)
3481void Verifier::visitBasicBlock(BasicBlock &BB) {
3482 InstsInThisBlock.
clear();
3483 ConvergenceVerifyHelper.
visit(BB);
3494 for (
const PHINode &PN : BB.
phis()) {
3495 Check(PN.getNumIncomingValues() == Preds.size(),
3496 "PHINode should have one entry for each predecessor of its "
3497 "parent basic block!",
3502 Values.
reserve(PN.getNumIncomingValues());
3503 for (
unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i)
3505 std::make_pair(PN.getIncomingBlock(i), PN.getIncomingValue(i)));
3508 for (
unsigned i = 0, e = Values.
size(); i != e; ++i) {
3513 Check(i == 0 || Values[i].first != Values[i - 1].first ||
3514 Values[i].second == Values[i - 1].second,
3515 "PHI node has multiple entries for the same basic block with "
3516 "different incoming values!",
3517 &PN, Values[i].first, Values[i].second, Values[i - 1].second);
3521 Check(Values[i].first == Preds[i],
3522 "PHI node entries do not match predecessors!", &PN,
3523 Values[i].first, Preds[i]);
3531 Check(
I.getParent() == &BB,
"Instruction has bogus parent pointer!");
3535 CheckDI(!BB.getTrailingDbgRecords(),
"Basic Block has trailing DbgRecords!",
3539void Verifier::visitTerminator(Instruction &
I) {
3541 Check(&
I ==
I.getParent()->getTerminator(),
3542 "Terminator found in the middle of a basic block!",
I.getParent());
3543 visitInstruction(
I);
3546void Verifier::visitCondBrInst(CondBrInst &BI) {
3548 "Branch condition is not 'i1' type!", &BI, BI.
getCondition());
3549 visitTerminator(BI);
3552void Verifier::visitReturnInst(ReturnInst &RI) {
3555 if (
F->getReturnType()->isVoidTy())
3557 "Found return instr that returns non-void in Function of void "
3559 &RI,
F->getReturnType());
3562 "Function return type does not match operand "
3563 "type of return inst!",
3564 &RI,
F->getReturnType());
3568 visitTerminator(RI);
3571void Verifier::visitSwitchInst(SwitchInst &SI) {
3572 Check(
SI.getType()->isVoidTy(),
"Switch must have void result type!", &SI);
3575 Type *SwitchTy =
SI.getCondition()->getType();
3576 SmallPtrSet<ConstantInt*, 32>
Constants;
3577 for (
auto &Case :
SI.cases()) {
3579 "Case value is not a constant integer.", &SI);
3580 Check(Case.getCaseValue()->getType() == SwitchTy,
3581 "Switch constants must all be same type as switch value!", &SI);
3583 "Duplicate integer as switch case", &SI, Case.getCaseValue());
3586 visitTerminator(SI);
3589void Verifier::visitIndirectBrInst(IndirectBrInst &BI) {
3591 "Indirectbr operand must have pointer type!", &BI);
3594 "Indirectbr destinations must all have pointer type!", &BI);
3596 visitTerminator(BI);
3599void Verifier::visitCallBrInst(CallBrInst &CBI) {
3602 "Callbr: indirect function / invalid signature");
3604 "Callbr for intrinsics currently doesn't support operand bundles");
3607 case Intrinsic::amdgcn_kill: {
3609 "Callbr amdgcn_kill only supports one indirect dest");
3613 Intrinsic::amdgcn_unreachable),
3614 "Callbr amdgcn_kill indirect dest needs to be unreachable");
3619 "Callbr currently only supports asm-goto and selected intrinsics");
3624 Check(!
IA->canThrow(),
"Unwinding from Callbr is not allowed");
3626 verifyInlineAsmCall(CBI);
3628 visitTerminator(CBI);
3631void Verifier::visitSelectInst(SelectInst &SI) {
3634 "Invalid operands for select instruction!", &SI);
3636 Check(
SI.getTrueValue()->getType() ==
SI.getType(),
3637 "Select values must have same type as select instruction!", &SI);
3638 visitInstruction(SI);
3644void Verifier::visitUserOp1(Instruction &
I) {
3645 Check(
false,
"User-defined operators should not live outside of a pass!", &
I);
3648void Verifier::visitTruncInst(TruncInst &
I) {
3650 Type *SrcTy =
I.getOperand(0)->getType();
3651 Type *DestTy =
I.getType();
3660 "trunc source and destination must both be a vector or neither", &
I);
3661 Check(SrcBitSize > DestBitSize,
"DestTy too big for Trunc", &
I);
3663 visitInstruction(
I);
3666void Verifier::visitZExtInst(ZExtInst &
I) {
3668 Type *SrcTy =
I.getOperand(0)->getType();
3669 Type *DestTy =
I.getType();
3675 "zext source and destination must both be a vector or neither", &
I);
3679 Check(SrcBitSize < DestBitSize,
"Type too small for ZExt", &
I);
3681 visitInstruction(
I);
3684void Verifier::visitSExtInst(SExtInst &
I) {
3686 Type *SrcTy =
I.getOperand(0)->getType();
3687 Type *DestTy =
I.getType();
3696 "sext source and destination must both be a vector or neither", &
I);
3697 Check(SrcBitSize < DestBitSize,
"Type too small for SExt", &
I);
3699 visitInstruction(
I);
3702void Verifier::visitFPTruncInst(FPTruncInst &
I) {
3704 Type *SrcTy =
I.getOperand(0)->getType();
3705 Type *DestTy =
I.getType();
3713 "fptrunc source and destination must both be a vector or neither", &
I);
3714 Check(SrcBitSize > DestBitSize,
"DestTy too big for FPTrunc", &
I);
3716 visitInstruction(
I);
3719void Verifier::visitFPExtInst(FPExtInst &
I) {
3721 Type *SrcTy =
I.getOperand(0)->getType();
3722 Type *DestTy =
I.getType();
3731 "fpext source and destination must both be a vector or neither", &
I);
3732 Check(SrcBitSize < DestBitSize,
"DestTy too small for FPExt", &
I);
3734 visitInstruction(
I);
3737void Verifier::visitUIToFPInst(UIToFPInst &
I) {
3739 Type *SrcTy =
I.getOperand(0)->getType();
3740 Type *DestTy =
I.getType();
3745 Check(SrcVec == DstVec,
3746 "UIToFP source and dest must both be vector or scalar", &
I);
3748 "UIToFP source must be integer or integer vector", &
I);
3752 if (SrcVec && DstVec)
3755 "UIToFP source and dest vector length mismatch", &
I);
3757 visitInstruction(
I);
3760void Verifier::visitSIToFPInst(SIToFPInst &
I) {
3762 Type *SrcTy =
I.getOperand(0)->getType();
3763 Type *DestTy =
I.getType();
3768 Check(SrcVec == DstVec,
3769 "SIToFP source and dest must both be vector or scalar", &
I);
3771 "SIToFP source must be integer or integer vector", &
I);
3775 if (SrcVec && DstVec)
3778 "SIToFP source and dest vector length mismatch", &
I);
3780 visitInstruction(
I);
3783void Verifier::visitFPToUIInst(FPToUIInst &
I) {
3785 Type *SrcTy =
I.getOperand(0)->getType();
3786 Type *DestTy =
I.getType();
3791 Check(SrcVec == DstVec,
3792 "FPToUI source and dest must both be vector or scalar", &
I);
3795 "FPToUI result must be integer or integer vector", &
I);
3797 if (SrcVec && DstVec)
3800 "FPToUI source and dest vector length mismatch", &
I);
3802 visitInstruction(
I);
3805void Verifier::visitFPToSIInst(FPToSIInst &
I) {
3807 Type *SrcTy =
I.getOperand(0)->getType();
3808 Type *DestTy =
I.getType();
3813 Check(SrcVec == DstVec,
3814 "FPToSI source and dest must both be vector or scalar", &
I);
3817 "FPToSI result must be integer or integer vector", &
I);
3819 if (SrcVec && DstVec)
3822 "FPToSI source and dest vector length mismatch", &
I);
3824 visitInstruction(
I);
3827void Verifier::checkPtrToAddr(
Type *SrcTy,
Type *DestTy,
const Value &V) {
3836 Check(VSrc->getElementCount() == VDest->getElementCount(),
3837 "PtrToAddr vector length mismatch", V);
3840 Type *AddrTy =
DL.getAddressType(SrcTy);
3841 Check(AddrTy == DestTy,
"PtrToAddr result must be address width", V);
3844void Verifier::visitPtrToAddrInst(PtrToAddrInst &
I) {
3845 checkPtrToAddr(
I.getOperand(0)->getType(),
I.getType(),
I);
3846 visitInstruction(
I);
3849void Verifier::visitPtrToIntInst(PtrToIntInst &
I) {
3851 Type *SrcTy =
I.getOperand(0)->getType();
3852 Type *DestTy =
I.getType();
3863 Check(VSrc->getElementCount() == VDest->getElementCount(),
3864 "PtrToInt Vector length mismatch", &
I);
3867 visitInstruction(
I);
3870void Verifier::visitIntToPtrInst(IntToPtrInst &
I) {
3872 Type *SrcTy =
I.getOperand(0)->getType();
3873 Type *DestTy =
I.getType();
3883 Check(VSrc->getElementCount() == VDest->getElementCount(),
3884 "IntToPtr Vector length mismatch", &
I);
3886 visitInstruction(
I);
3889void Verifier::visitBitCastInst(BitCastInst &
I) {
3892 "Invalid bitcast", &
I);
3893 visitInstruction(
I);
3896void Verifier::visitAddrSpaceCastInst(AddrSpaceCastInst &
I) {
3897 Type *SrcTy =
I.getOperand(0)->getType();
3898 Type *DestTy =
I.getType();
3905 "AddrSpaceCast must be between different address spaces", &
I);
3907 Check(SrcVTy->getElementCount() ==
3909 "AddrSpaceCast vector pointer number of elements mismatch", &
I);
3910 visitInstruction(
I);
3915void Verifier::visitPHINode(PHINode &PN) {
3922 "PHI nodes not grouped at top of basic block!", &PN, PN.
getParent());
3931 "PHI node operands are not the same type as the result!", &PN);
3936 visitInstruction(PN);
3939void Verifier::visitCallBase(CallBase &
Call) {
3941 "Called function must be a pointer!",
Call);
3945 if (FTy->isVarArg())
3947 "Called function requires more parameters than were provided!",
Call);
3950 "Incorrect number of arguments passed to called function!",
Call);
3953 for (
unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
3955 "Call parameter type does not match function signature!",
3961 "Attribute after last parameter!",
Call);
3968 "Intrinsic called with incompatible signature",
Call);
3972 "calling convention does not permit calls",
Call);
3978 auto VerifyTypeAlign = [&](
Type *Ty,
const Twine &Message) {
3981 Align ABIAlign =
DL.getABITypeAlign(Ty);
3982 Check(ABIAlign.
value() <= Value::MaximumAlignment,
3983 "Incorrect alignment of " + Message +
" to called function!",
Call);
3987 VerifyTypeAlign(FTy->getReturnType(),
"return type");
3988 for (
unsigned i = 0, e = FTy->getNumParams(); i != e; ++i) {
3989 Type *Ty = FTy->getParamType(i);
3990 VerifyTypeAlign(Ty,
"argument passed");
3994 if (
Attrs.hasFnAttr(Attribute::Speculatable)) {
3998 "speculatable attribute may not apply to call sites",
Call);
4001 if (
Attrs.hasFnAttr(Attribute::Preallocated)) {
4003 "preallocated as a call site attribute can only be on "
4004 "llvm.call.preallocated.arg");
4007 Check(!
Attrs.hasFnAttr(Attribute::DenormalFPEnv),
4008 "denormal_fpenv attribute may not apply to call sites",
Call);
4019 Check(AI->isUsedWithInAlloca(),
4020 "inalloca argument for call has mismatched alloca", AI,
Call);
4026 for (
unsigned i = 0, e = FTy->getNumParams(); i != e; ++i) {
4030 Check(AI->isSwiftError(),
4031 "swifterror argument for call has mismatched alloca", AI,
Call);
4035 Check(ArgI,
"swifterror argument should come from an alloca or parameter",
4036 SwiftErrorArg,
Call);
4037 Check(ArgI->hasSwiftErrorAttr(),
4038 "swifterror argument for call has mismatched parameter", ArgI,
4042 if (
Attrs.hasParamAttr(i, Attribute::ImmArg)) {
4045 Check(Callee &&
Callee->hasParamAttribute(i, Attribute::ImmArg),
4054 "immarg operand has non-immediate parameter", ArgVal,
Call);
4060 const ConstantRange &CR =
4063 "immarg value " + Twine(CI->getValue().getSExtValue()) +
4076 Check(hasOB != isMustTail,
4077 "preallocated operand either requires a preallocated bundle or "
4078 "the call to be musttail (but not both)",
4083 if (FTy->isVarArg()) {
4085 bool SawNest =
false;
4086 bool SawReturned =
false;
4088 for (
unsigned Idx = 0; Idx < FTy->getNumParams(); ++Idx) {
4089 if (
Attrs.hasParamAttr(Idx, Attribute::Nest))
4091 if (
Attrs.hasParamAttr(Idx, Attribute::Returned))
4096 for (
unsigned Idx = FTy->getNumParams(); Idx <
Call.
arg_size(); ++Idx) {
4098 AttributeSet ArgAttrs =
Attrs.getParamAttrs(Idx);
4099 verifyParameterAttrs(ArgAttrs, Ty, &
Call);
4102 Check(!SawNest,
"More than one parameter has attribute nest!",
Call);
4107 Check(!SawReturned,
"More than one parameter has attribute returned!",
4110 "Incompatible argument and return types for 'returned' "
4120 "Attribute 'sret' cannot be used for vararg call arguments!",
4125 "inalloca isn't on the last argument!",
Call);
4131 for (
Type *ParamTy : FTy->params()) {
4132 Check(!ParamTy->isMetadataTy(),
4133 "Function has metadata parameter but isn't an intrinsic",
Call);
4134 Check(!ParamTy->isTokenLikeTy(),
4135 "Function has token parameter but isn't an intrinsic",
Call);
4141 Check(!FTy->getReturnType()->isTokenLikeTy(),
4142 "Return type cannot be token for indirect call!");
4143 Check(!FTy->getReturnType()->isX86_AMXTy(),
4144 "Return type cannot be x86_amx for indirect call!");
4148 visitIntrinsicCall(
ID,
Call);
4153 bool FoundDeoptBundle =
false, FoundFuncletBundle =
false,
4154 FoundGCTransitionBundle =
false, FoundCFGuardTargetBundle =
false,
4155 FoundPreallocatedBundle =
false, FoundGCLiveBundle =
false,
4156 FoundPtrauthBundle =
false, FoundKCFIBundle =
false,
4157 FoundAttachedCallBundle =
false;
4162 Check(!FoundDeoptBundle,
"Multiple deopt operand bundles",
Call);
4163 FoundDeoptBundle =
true;
4165 Check(!FoundGCTransitionBundle,
"Multiple gc-transition operand bundles",
4167 FoundGCTransitionBundle =
true;
4169 Check(!FoundFuncletBundle,
"Multiple funclet operand bundles",
Call);
4170 FoundFuncletBundle =
true;
4172 "Expected exactly one funclet bundle operand",
Call);
4174 "Funclet bundle operands should correspond to a FuncletPadInst",
4177 Check(!FoundCFGuardTargetBundle,
"Multiple CFGuardTarget operand bundles",
4179 FoundCFGuardTargetBundle =
true;
4181 "Expected exactly one cfguardtarget bundle operand",
Call);
4183 Check(!FoundPtrauthBundle,
"Multiple ptrauth operand bundles",
Call);
4184 FoundPtrauthBundle =
true;
4186 "Expected exactly two ptrauth bundle operands",
Call);
4188 BU.
Inputs[0]->getType()->isIntegerTy(32),
4189 "Ptrauth bundle key operand must be an i32 constant",
Call);
4191 "Ptrauth bundle discriminator operand must be an i64",
Call);
4193 Check(!FoundKCFIBundle,
"Multiple kcfi operand bundles",
Call);
4194 FoundKCFIBundle =
true;
4195 Check(BU.
Inputs.size() == 1,
"Expected exactly one kcfi bundle operand",
4198 BU.
Inputs[0]->getType()->isIntegerTy(32),
4199 "Kcfi bundle operand must be an i32 constant",
Call);
4201 Check(!FoundPreallocatedBundle,
"Multiple preallocated operand bundles",
4203 FoundPreallocatedBundle =
true;
4205 "Expected exactly one preallocated bundle operand",
Call);
4208 Input->getIntrinsicID() == Intrinsic::call_preallocated_setup,
4209 "\"preallocated\" argument must be a token from "
4210 "llvm.call.preallocated.setup",
4213 Check(!FoundGCLiveBundle,
"Multiple gc-live operand bundles",
Call);
4214 FoundGCLiveBundle =
true;
4216 Check(!FoundAttachedCallBundle,
4217 "Multiple \"clang.arc.attachedcall\" operand bundles",
Call);
4218 FoundAttachedCallBundle =
true;
4219 verifyAttachedCallBundle(
Call, BU);
4225 "Direct call cannot have a ptrauth bundle",
Call);
4237 "inlinable function call in a function with "
4238 "debug info must have a !dbg location",
4242 verifyInlineAsmCall(
Call);
4246 visitInstruction(
Call);
4249void Verifier::verifyTailCCMustTailAttrs(
const AttrBuilder &Attrs,
4252 Twine(
"inalloca attribute not allowed in ") +
Context);
4254 Twine(
"inreg attribute not allowed in ") +
Context);
4255 Check(!
Attrs.contains(Attribute::SwiftError),
4256 Twine(
"swifterror attribute not allowed in ") +
Context);
4257 Check(!
Attrs.contains(Attribute::Preallocated),
4258 Twine(
"preallocated attribute not allowed in ") +
Context);
4260 Twine(
"byref attribute not allowed in ") +
Context);
4265 Attribute::StructRet, Attribute::ByVal, Attribute::InAlloca,
4266 Attribute::InReg, Attribute::StackAlignment, Attribute::SwiftSelf,
4267 Attribute::SwiftAsync, Attribute::SwiftError, Attribute::Preallocated,
4269 AttrBuilder Copy(
C);
4270 for (
auto AK : ABIAttrs) {
4271 Attribute Attr = Attrs.getParamAttrs(
I).getAttribute(AK);
4273 Copy.addAttribute(Attr);
4277 if (Attrs.hasParamAttr(
I, Attribute::Alignment) &&
4278 (Attrs.hasParamAttr(
I, Attribute::ByVal) ||
4279 Attrs.hasParamAttr(
I, Attribute::ByRef)))
4280 Copy.addAlignmentAttr(Attrs.getParamAlignment(
I));
4284void Verifier::verifyMustTailCall(CallInst &CI) {
4288 FunctionType *CallerTy =
F->getFunctionType();
4290 Check(CallerTy->isVarArg() == CalleeTy->isVarArg(),
4291 "cannot guarantee tail call due to mismatched varargs", &CI);
4292 Check(CallerTy->getReturnType() == CalleeTy->getReturnType(),
4293 "cannot guarantee tail call due to mismatched return types", &CI);
4297 "cannot guarantee tail call due to mismatched calling conv", &CI);
4305 Check(Ret,
"musttail call must precede a ret", &CI);
4308 "musttail call result must be returned", Ret);
4310 AttributeList CallerAttrs =
F->getAttributes();
4315 CI.
getCallingConv() == CallingConv::Tail ?
"tailcc" :
"swifttailcc";
4319 for (
unsigned I = 0,
E = CallerTy->getNumParams();
I !=
E; ++
I) {
4321 SmallString<32>
Context{CCName, StringRef(
" musttail caller")};
4322 verifyTailCCMustTailAttrs(ABIAttrs,
Context);
4324 for (
unsigned I = 0,
E = CalleeTy->getNumParams();
I !=
E; ++
I) {
4326 SmallString<32>
Context{CCName, StringRef(
" musttail callee")};
4327 verifyTailCCMustTailAttrs(ABIAttrs,
Context);
4330 Check(!CallerTy->isVarArg(), Twine(
"cannot guarantee ") + CCName +
4331 " tail call for varargs function");
4337 Check(CallerTy->getNumParams() == CalleeTy->getNumParams(),
4338 "cannot guarantee tail call due to mismatched parameter counts", &CI);
4339 for (
unsigned I = 0,
E = CallerTy->getNumParams();
I !=
E; ++
I) {
4340 Check(CallerTy->getParamType(
I) == CalleeTy->getParamType(
I),
4341 "cannot guarantee tail call due to mismatched parameter types",
4348 for (
unsigned I = 0,
E = CallerTy->getNumParams();
I !=
E; ++
I) {
4351 Check(CallerABIAttrs == CalleeABIAttrs,
4352 "cannot guarantee tail call due to mismatched ABI impacting "
4353 "function attributes",
4358void Verifier::visitCallInst(CallInst &CI) {
4362 verifyMustTailCall(CI);
4365void Verifier::visitInvokeInst(InvokeInst &
II) {
4371 II.getUnwindDest()->isEHPad(),
4372 "The unwind destination does not have an exception handling instruction!",
4375 visitTerminator(
II);
4380void Verifier::visitUnaryOperator(UnaryOperator &U) {
4381 Check(
U.getType() ==
U.getOperand(0)->getType(),
4382 "Unary operators must have same type for"
4383 "operands and result!",
4386 switch (
U.getOpcode()) {
4389 case Instruction::FNeg:
4390 Check(
U.getType()->isFPOrFPVectorTy(),
4391 "FNeg operator only works with float types!", &U);
4397 visitInstruction(U);
4403void Verifier::visitBinaryOperator(BinaryOperator &
B) {
4404 Check(
B.getOperand(0)->getType() ==
B.getOperand(1)->getType(),
4405 "Both operands to a binary operator are not of the same type!", &
B);
4407 switch (
B.getOpcode()) {
4410 case Instruction::Add:
4411 case Instruction::Sub:
4412 case Instruction::Mul:
4413 case Instruction::SDiv:
4414 case Instruction::UDiv:
4415 case Instruction::SRem:
4416 case Instruction::URem:
4417 Check(
B.getType()->isIntOrIntVectorTy(),
4418 "Integer arithmetic operators only work with integral types!", &
B);
4419 Check(
B.getType() ==
B.getOperand(0)->getType(),
4420 "Integer arithmetic operators must have same type "
4421 "for operands and result!",
4426 case Instruction::FAdd:
4427 case Instruction::FSub:
4428 case Instruction::FMul:
4429 case Instruction::FDiv:
4430 case Instruction::FRem:
4431 Check(
B.getType()->isFPOrFPVectorTy(),
4432 "Floating-point arithmetic operators only work with "
4433 "floating-point types!",
4435 Check(
B.getType() ==
B.getOperand(0)->getType(),
4436 "Floating-point arithmetic operators must have same type "
4437 "for operands and result!",
4441 case Instruction::And:
4442 case Instruction::Or:
4443 case Instruction::Xor:
4444 Check(
B.getType()->isIntOrIntVectorTy(),
4445 "Logical operators only work with integral types!", &
B);
4446 Check(
B.getType() ==
B.getOperand(0)->getType(),
4447 "Logical operators must have same type for operands and result!", &
B);
4449 case Instruction::Shl:
4450 case Instruction::LShr:
4451 case Instruction::AShr:
4452 Check(
B.getType()->isIntOrIntVectorTy(),
4453 "Shifts only work with integral types!", &
B);
4454 Check(
B.getType() ==
B.getOperand(0)->getType(),
4455 "Shift return type must be same as operands!", &
B);
4461 visitInstruction(
B);
4464void Verifier::visitICmpInst(ICmpInst &IC) {
4468 Check(Op0Ty == Op1Ty,
4469 "Both operands to ICmp instruction are not of the same type!", &IC);
4472 "Invalid operand types for ICmp instruction", &IC);
4476 visitInstruction(IC);
4479void Verifier::visitFCmpInst(FCmpInst &FC) {
4481 Type *Op0Ty =
FC.getOperand(0)->getType();
4482 Type *Op1Ty =
FC.getOperand(1)->getType();
4483 Check(Op0Ty == Op1Ty,
4484 "Both operands to FCmp instruction are not of the same type!", &FC);
4489 Check(
FC.isFPPredicate(),
"Invalid predicate in FCmp instruction!", &FC);
4491 visitInstruction(FC);
4494void Verifier::visitExtractElementInst(ExtractElementInst &EI) {
4496 "Invalid extractelement operands!", &EI);
4497 visitInstruction(EI);
4500void Verifier::visitInsertElementInst(InsertElementInst &IE) {
4503 "Invalid insertelement operands!", &IE);
4504 visitInstruction(IE);
4507void Verifier::visitShuffleVectorInst(ShuffleVectorInst &SV) {
4510 "Invalid shufflevector operands!", &SV);
4511 visitInstruction(SV);
4514void Verifier::visitGetElementPtrInst(GetElementPtrInst &
GEP) {
4516 GEP.getModule()->getModuleFlag(
"require-logical-pointer")))
4517 Check(!MD->getZExtValue(),
4518 "Non-logical getelementptr disallowed for this module.");
4520 Type *TargetTy =
GEP.getPointerOperandType()->getScalarType();
4523 "GEP base pointer is not a vector or a vector of pointers", &
GEP);
4524 Check(
GEP.getSourceElementType()->isSized(),
"GEP into unsized type!", &
GEP);
4528 "getelementptr cannot target structure that contains scalable vector"
4533 SmallVector<Value *, 16> Idxs(
GEP.indices());
4535 all_of(Idxs, [](
Value *V) {
return V->getType()->isIntOrIntVectorTy(); }),
4536 "GEP indexes must be integers", &
GEP);
4539 Check(ElTy,
"Invalid indices for GEP pointer type!", &
GEP);
4543 Check(PtrTy &&
GEP.getResultElementType() == ElTy,
4544 "GEP is not of right type for indices!", &
GEP, ElTy);
4548 ElementCount GEPWidth = GEPVTy->getElementCount();
4549 if (
GEP.getPointerOperandType()->isVectorTy())
4553 "Vector GEP result width doesn't match operand's", &
GEP);
4554 for (
Value *Idx : Idxs) {
4555 Type *IndexTy = Idx->getType();
4557 ElementCount IndexWidth = IndexVTy->getElementCount();
4558 Check(IndexWidth == GEPWidth,
"Invalid GEP index vector width", &
GEP);
4561 "All GEP indices should be of integer type");
4568 GTI != GTE; ++GTI) {
4569 if (GTI.isVector()) {
4570 Type *ElemTy = GTI.getIndexedType();
4571 Check(
DL.typeSizeEqualsStoreSize(ElemTy),
4572 "GEP into vector with non-byte-addressable element type", &
GEP);
4576 Check(
GEP.getAddressSpace() == PtrTy->getAddressSpace(),
4577 "GEP address space doesn't match type", &
GEP);
4579 visitInstruction(
GEP);
4583 return A.getUpper() ==
B.getLower() ||
A.getLower() ==
B.getUpper();
4588void Verifier::verifyRangeLikeMetadata(
const Value &
I,
const MDNode *
Range,
4589 Type *Ty, RangeLikeMetadataKind Kind) {
4590 unsigned NumOperands =
Range->getNumOperands();
4591 Check(NumOperands % 2 == 0,
"Unfinished range!",
Range);
4592 unsigned NumRanges = NumOperands / 2;
4593 Check(NumRanges >= 1,
"It should have at least one range!",
Range);
4595 ConstantRange LastRange(1,
true);
4596 for (
unsigned i = 0; i < NumRanges; ++i) {
4599 Check(
Low,
"The lower limit must be an integer!",
Low);
4604 Check(
High->getType() ==
Low->getType(),
"Range pair types must match!",
4607 if (Kind == RangeLikeMetadataKind::NoaliasAddrspace) {
4609 "noalias.addrspace type must be i32!", &
I);
4612 "Range types must match instruction type!", &
I);
4615 APInt HighV =
High->getValue();
4616 APInt LowV =
Low->getValue();
4621 "The upper and lower limits cannot be the same value", &
I);
4623 ConstantRange CurRange(LowV, HighV);
4624 Check(!CurRange.isEmptySet() &&
4625 (Kind == RangeLikeMetadataKind::AbsoluteSymbol ||
4626 !CurRange.isFullSet()),
4627 "Range must not be empty!",
Range);
4629 Check(CurRange.intersectWith(LastRange).isEmptySet(),
4630 "Intervals are overlapping",
Range);
4631 Check(LowV.
sgt(LastRange.getLower()),
"Intervals are not in order",
4636 LastRange = ConstantRange(LowV, HighV);
4638 if (NumRanges > 2) {
4643 ConstantRange FirstRange(FirstLow, FirstHigh);
4644 Check(FirstRange.intersectWith(LastRange).isEmptySet(),
4645 "Intervals are overlapping",
Range);
4651void Verifier::visitRangeMetadata(Instruction &
I, MDNode *
Range,
Type *Ty) {
4653 "precondition violation");
4654 verifyRangeLikeMetadata(
I,
Range, Ty, RangeLikeMetadataKind::Range);
4657void Verifier::visitNoFPClassMetadata(Instruction &
I, MDNode *NoFPClass,
4659 Check(AttributeFuncs::isNoFPClassCompatibleType(Ty),
4660 "nofpclass only applies to floating-point typed loads",
I);
4663 "nofpclass must have exactly one entry", NoFPClass);
4664 ConstantInt *MaskVal =
4667 "nofpclass entry must be a constant i32", NoFPClass);
4669 Check(Val != 0,
"'nofpclass' must have at least one test bit set", NoFPClass,
4673 "Invalid value for 'nofpclass' test mask", NoFPClass,
I);
4676void Verifier::visitNoaliasAddrspaceMetadata(Instruction &
I, MDNode *
Range,
4679 "precondition violation");
4680 verifyRangeLikeMetadata(
I,
Range, Ty,
4681 RangeLikeMetadataKind::NoaliasAddrspace);
4684void Verifier::checkAtomicMemAccessSize(
Type *Ty,
const Instruction *
I) {
4685 unsigned Size =
DL.getTypeSizeInBits(Ty).getFixedValue();
4686 Check(
Size >= 8,
"atomic memory access' size must be byte-sized", Ty,
I);
4688 "atomic memory access' operand must have a power-of-two size", Ty,
I);
4691void Verifier::visitLoadInst(LoadInst &LI) {
4693 Check(PTy,
"Load operand must be a pointer.", &LI);
4696 Check(
A->value() <= Value::MaximumAlignment,
4697 "huge alignment values are unsupported", &LI);
4699 Check(ElTy->
isSized(),
"loading unsized types is not allowed", &LI);
4702 LI.
getOrdering() != AtomicOrdering::AcquireRelease,
4703 "Load cannot have Release ordering", &LI);
4707 "atomic load operand must have integer, byte, pointer, floating "
4708 "point, or vector type!",
4711 checkAtomicMemAccessSize(ElTy, &LI);
4714 "Non-atomic load cannot have SynchronizationScope specified", &LI);
4717 visitInstruction(LI);
4720void Verifier::visitStoreInst(StoreInst &SI) {
4722 Check(PTy,
"Store operand must be a pointer.", &SI);
4723 Type *ElTy =
SI.getOperand(0)->getType();
4724 if (MaybeAlign
A =
SI.getAlign()) {
4725 Check(
A->value() <= Value::MaximumAlignment,
4726 "huge alignment values are unsupported", &SI);
4728 Check(ElTy->
isSized(),
"storing unsized types is not allowed", &SI);
4729 if (
SI.isAtomic()) {
4730 Check(
SI.getOrdering() != AtomicOrdering::Acquire &&
4731 SI.getOrdering() != AtomicOrdering::AcquireRelease,
4732 "Store cannot have Acquire ordering", &SI);
4736 "atomic store operand must have integer, byte, pointer, floating "
4737 "point, or vector type!",
4739 checkAtomicMemAccessSize(ElTy, &SI);
4742 "Non-atomic store cannot have SynchronizationScope specified", &SI);
4744 visitInstruction(SI);
4748void Verifier::verifySwiftErrorCall(CallBase &
Call,
4749 const Value *SwiftErrorVal) {
4751 if (
I.value() == SwiftErrorVal) {
4753 "swifterror value when used in a callsite should be marked "
4754 "with swifterror attribute",
4755 SwiftErrorVal,
Call);
4760void Verifier::verifySwiftErrorValue(
const Value *SwiftErrorVal) {
4763 for (
const User *U : SwiftErrorVal->
users()) {
4766 "swifterror value can only be loaded and stored from, or "
4767 "as a swifterror argument!",
4771 Check(StoreI->getOperand(1) == SwiftErrorVal,
4772 "swifterror value should be the second operand when used "
4776 verifySwiftErrorCall(*
const_cast<CallBase *
>(
Call), SwiftErrorVal);
4780void Verifier::visitAllocaInst(AllocaInst &AI) {
4783 Check(!MD->getZExtValue(),
4784 "Non-logical alloca disallowed for this module.");
4787 SmallPtrSet<Type*, 4> Visited;
4788 Check(Ty->
isSized(&Visited),
"Cannot allocate unsized type", &AI);
4792 "Alloca has illegal target extension type", &AI);
4794 "Alloca array size must have integer type", &AI);
4796 Check(
A->value() <= Value::MaximumAlignment,
4797 "huge alignment values are unsupported", &AI);
4803 "swifterror alloca must not be array allocation", &AI);
4804 verifySwiftErrorValue(&AI);
4807 if (
TT.isAMDGPU()) {
4809 "alloca on amdgpu must be in addrspace(5)", &AI);
4812 visitInstruction(AI);
4815void Verifier::visitAtomicCmpXchgInst(AtomicCmpXchgInst &CXI) {
4818 "cmpxchg operand must have integer or pointer type", ElTy, &CXI);
4819 checkAtomicMemAccessSize(ElTy, &CXI);
4820 visitInstruction(CXI);
4823void Verifier::visitAtomicRMWInst(AtomicRMWInst &RMWI) {
4825 "atomicrmw instructions cannot be unordered.", &RMWI);
4828 Type *ScalarTy = ElTy;
4831 Check(VecTy,
"atomicrmw elementwise operand must have fixed vector type!",
4834 ScalarTy = VecTy->getElementType();
4841 " operand must have integer or floating point type!",
4846 " operand must have floating-point or fixed vector of "
4853 " operand must have integer type!",
4856 checkAtomicMemAccessSize(ElTy, &RMWI);
4858 "Invalid binary operation!", &RMWI);
4859 visitInstruction(RMWI);
4862void Verifier::visitFenceInst(FenceInst &FI) {
4864 Check(Ordering == AtomicOrdering::Acquire ||
4865 Ordering == AtomicOrdering::Release ||
4866 Ordering == AtomicOrdering::AcquireRelease ||
4867 Ordering == AtomicOrdering::SequentiallyConsistent,
4868 "fence instructions may only have acquire, release, acq_rel, or "
4869 "seq_cst ordering.",
4871 visitInstruction(FI);
4874void Verifier::visitExtractValueInst(ExtractValueInst &EVI) {
4877 "Invalid ExtractValueInst operands!", &EVI);
4879 visitInstruction(EVI);
4882void Verifier::visitInsertValueInst(InsertValueInst &IVI) {
4886 "Invalid InsertValueInst operands!", &IVI);
4888 visitInstruction(IVI);
4893 return FPI->getParentPad();
4898void Verifier::visitEHPadPredecessors(Instruction &
I) {
4904 Check(BB != &
F->getEntryBlock(),
"EH pad cannot be in entry block.", &
I);
4912 Check(
II &&
II->getUnwindDest() == BB &&
II->getNormalDest() != BB,
4913 "Block containing LandingPadInst must be jumped to "
4914 "only by the unwind edge of an invoke.",
4922 "Block containg CatchPadInst must be jumped to "
4923 "only by its catchswitch.",
4925 Check(BB != CPI->getCatchSwitch()->getUnwindDest(),
4926 "Catchswitch cannot unwind to one of its catchpads",
4927 CPI->getCatchSwitch(), CPI);
4939 Check(
II->getUnwindDest() == BB &&
II->getNormalDest() != BB,
4940 "EH pad must be jumped to via an unwind edge", ToPad,
II);
4943 if (CalledFn && CalledFn->isIntrinsic() &&
II->doesNotThrow() &&
4947 FromPad = Bundle->Inputs[0];
4951 FromPad = CRI->getOperand(0);
4952 Check(FromPad != ToPadParent,
"A cleanupret must exit its cleanup", CRI);
4956 Check(
false,
"EH pad must be jumped to via an unwind edge", ToPad, TI);
4960 SmallPtrSet<Value *, 8> Seen;
4962 Check(FromPad != ToPad,
4963 "EH pad cannot handle exceptions raised within it", FromPad, TI);
4964 if (FromPad == ToPadParent) {
4969 "A single unwind edge may only enter one EH pad", TI);
4970 Check(Seen.
insert(FromPad).second,
"EH pad jumps through a cycle of pads",
4976 "Parent pad must be catchpad/cleanuppad/catchswitch", TI);
4981void Verifier::visitLandingPadInst(LandingPadInst &LPI) {
4985 "LandingPadInst needs at least one clause or to be a cleanup.", &LPI);
4987 visitEHPadPredecessors(LPI);
4989 if (!LandingPadResultTy)
4990 LandingPadResultTy = LPI.
getType();
4993 "The landingpad instruction should have a consistent result type "
4994 "inside a function.",
4998 Check(
F->hasPersonalityFn(),
4999 "LandingPadInst needs to be in a function with a personality.", &LPI);
5004 "LandingPadInst not the first non-PHI instruction in the block.", &LPI);
5010 "Catch operand does not have pointer type!", &LPI);
5012 Check(LPI.
isFilter(i),
"Clause is neither catch nor filter!", &LPI);
5014 "Filter operand is not an array of constants!", &LPI);
5018 visitInstruction(LPI);
5021void Verifier::visitResumeInst(ResumeInst &RI) {
5023 "ResumeInst needs to be in a function with a personality.", &RI);
5025 if (!LandingPadResultTy)
5029 "The resume instruction should have a consistent result type "
5030 "inside a function.",
5033 visitTerminator(RI);
5036void Verifier::visitCatchPadInst(CatchPadInst &CPI) {
5040 Check(
F->hasPersonalityFn(),
5041 "CatchPadInst needs to be in a function with a personality.", &CPI);
5044 "CatchPadInst needs to be directly nested in a CatchSwitchInst.",
5050 "CatchPadInst not the first non-PHI instruction in the block.", &CPI);
5055 return isa<Constant>(V) || isa<AllocaInst>(V);
5057 "Argument operand must be alloca or constant.", &CPI);
5059 visitEHPadPredecessors(CPI);
5060 visitFuncletPadInst(CPI);
5063void Verifier::visitCatchReturnInst(CatchReturnInst &CatchReturn) {
5065 "CatchReturnInst needs to be provided a CatchPad", &CatchReturn,
5068 visitTerminator(CatchReturn);
5071void Verifier::visitCleanupPadInst(CleanupPadInst &CPI) {
5075 Check(
F->hasPersonalityFn(),
5076 "CleanupPadInst needs to be in a function with a personality.", &CPI);
5081 "CleanupPadInst not the first non-PHI instruction in the block.", &CPI);
5085 "CleanupPadInst has an invalid parent.", &CPI);
5087 visitEHPadPredecessors(CPI);
5088 visitFuncletPadInst(CPI);
5091void Verifier::visitFuncletPadInst(FuncletPadInst &FPI) {
5092 User *FirstUser =
nullptr;
5093 Value *FirstUnwindPad =
nullptr;
5095 SmallPtrSet<FuncletPadInst *, 8> Seen;
5097 while (!Worklist.empty()) {
5098 FuncletPadInst *CurrentPad = Worklist.pop_back_val();
5100 "FuncletPadInst must not be nested within itself", CurrentPad);
5101 Value *UnresolvedAncestorPad =
nullptr;
5102 for (User *U : CurrentPad->
users()) {
5105 UnwindDest = CRI->getUnwindDest();
5111 if (CSI->unwindsToCaller())
5113 UnwindDest = CSI->getUnwindDest();
5115 UnwindDest =
II->getUnwindDest();
5125 Worklist.push_back(CPI);
5140 if (UnwindParent == CurrentPad)
5146 Value *ExitedPad = CurrentPad;
5149 if (ExitedPad == &FPI) {
5154 UnresolvedAncestorPad = &FPI;
5158 if (ExitedParent == UnwindParent) {
5162 UnresolvedAncestorPad = ExitedParent;
5165 ExitedPad = ExitedParent;
5171 UnresolvedAncestorPad = &FPI;
5178 Check(UnwindPad == FirstUnwindPad,
5179 "Unwind edges out of a funclet "
5180 "pad must have the same unwind "
5182 &FPI, U, FirstUser);
5185 FirstUnwindPad = UnwindPad;
5194 if (CurrentPad != &FPI)
5197 if (UnresolvedAncestorPad) {
5198 if (CurrentPad == UnresolvedAncestorPad) {
5202 assert(CurrentPad == &FPI);
5210 Value *ResolvedPad = CurrentPad;
5211 while (!Worklist.empty()) {
5212 Value *UnclePad = Worklist.back();
5216 while (ResolvedPad != AncestorPad) {
5218 if (ResolvedParent == UnresolvedAncestorPad) {
5221 ResolvedPad = ResolvedParent;
5225 if (ResolvedPad != AncestorPad)
5228 Worklist.pop_back();
5233 if (FirstUnwindPad) {
5235 BasicBlock *SwitchUnwindDest = CatchSwitch->getUnwindDest();
5236 Value *SwitchUnwindPad;
5237 if (SwitchUnwindDest)
5241 Check(SwitchUnwindPad == FirstUnwindPad,
5242 "Unwind edges out of a catch must have the same unwind dest as "
5243 "the parent catchswitch",
5244 &FPI, FirstUser, CatchSwitch);
5248 visitInstruction(FPI);
5251void Verifier::visitCatchSwitchInst(CatchSwitchInst &CatchSwitch) {
5255 Check(
F->hasPersonalityFn(),
5256 "CatchSwitchInst needs to be in a function with a personality.",
5262 "CatchSwitchInst not the first non-PHI instruction in the block.",
5267 "CatchSwitchInst has an invalid parent.", ParentPad);
5272 "CatchSwitchInst must unwind to an EH block which is not a "
5278 SiblingFuncletInfo[&CatchSwitch] = &CatchSwitch;
5282 "CatchSwitchInst cannot have empty handler list", &CatchSwitch);
5284 for (BasicBlock *Handler : CatchSwitch.
handlers()) {
5286 "CatchSwitchInst handlers must be catchpads", &CatchSwitch, Handler);
5289 visitEHPadPredecessors(CatchSwitch);
5290 visitTerminator(CatchSwitch);
5293void Verifier::visitCleanupReturnInst(CleanupReturnInst &CRI) {
5295 "CleanupReturnInst needs to be provided a CleanupPad", &CRI,
5301 "CleanupReturnInst must unwind to an EH block which is not a "
5306 visitTerminator(CRI);
5309void Verifier::verifyDominatesUse(Instruction &
I,
unsigned i) {
5315 if (
II->getNormalDest() ==
II->getUnwindDest())
5329 const Use &
U =
I.getOperandUse(i);
5330 Check(DT.dominates(
Op, U),
"Instruction does not dominate all uses!",
Op, &
I);
5333void Verifier::visitDereferenceableMetadata(Instruction&
I, MDNode* MD) {
5334 Check(
I.getType()->isPointerTy(),
5335 "dereferenceable, dereferenceable_or_null "
5336 "apply only to pointer types",
5339 "dereferenceable, dereferenceable_or_null apply only to load"
5340 " and inttoptr instructions, use attributes for calls or invokes",
5343 "dereferenceable, dereferenceable_or_null "
5344 "take one operand!",
5349 "dereferenceable_or_null metadata value must be an i64!",
5353void Verifier::visitNofreeMetadata(Instruction &
I, MDNode *MD) {
5354 Check(
I.getType()->isPointerTy(),
"nofree applies only to pointer types", &
I);
5360void Verifier::visitProfMetadata(Instruction &
I, MDNode *MD) {
5361 auto GetBranchingTerminatorNumOperands = [&]() {
5362 unsigned ExpectedNumOperands = 0;
5366 ExpectedNumOperands =
SI->getNumSuccessors();
5368 ExpectedNumOperands = 1;
5370 ExpectedNumOperands = IBI->getNumDestinations();
5372 ExpectedNumOperands = 2;
5375 return ExpectedNumOperands;
5378 "!prof annotations should have at least 1 operand", MD);
5380 Check(MD->
getOperand(0) !=
nullptr,
"first operand should not be null", MD);
5382 "expected string with name of the !prof annotation", MD);
5388 "'unknown' !prof should only appear on instructions on which "
5389 "'branch_weights' would",
5391 verifyUnknownProfileMetadata(MD);
5396 "!prof annotations should have no less than 2 operands", MD);
5402 Check(NumBranchWeights == 1 || NumBranchWeights == 2,
5403 "Wrong number of InvokeInst branch_weights operands", MD);
5405 const unsigned ExpectedNumOperands = GetBranchingTerminatorNumOperands();
5406 if (ExpectedNumOperands == 0)
5407 CheckFailed(
"!prof branch_weights are not allowed for this instruction",
5410 Check(NumBranchWeights == ExpectedNumOperands,
"Wrong number of operands",
5416 Check(MDO,
"second operand should not be null", MD);
5418 "!prof brunch_weights operand is not a const int");
5423 Check(KindInt,
"VP !prof missing kind argument", MD);
5426 Check(Kind >= InstrProfValueKind::IPVK_First &&
5427 Kind <= InstrProfValueKind::IPVK_Last,
5428 "Invalid VP !prof kind", MD);
5430 "VP !prof should have an even number "
5431 "of arguments after 'VP'",
5433 if (Kind == InstrProfValueKind::IPVK_IndirectCallTarget ||
5434 Kind == InstrProfValueKind::IPVK_MemOPSize)
5436 "VP !prof indirect call or memop size expected to be applied to "
5437 "CallBase instructions only",
5440 DenseSet<uint64_t> ProfileValues;
5442 ConstantInt *ProfileValue =
5444 Check(ProfileValue,
"VP !prof value operand is not a const int", MD);
5445 uint64_t ProfileValueInt = ProfileValue->
getZExtValue();
5446 auto [ValueIt,
Inserted] = ProfileValues.
insert(ProfileValueInt);
5447 Check(Inserted,
"VP !prof should not have duplicate profile values", MD);
5450 CheckFailed(
"expected either branch_weights or VP profile name", MD);
5454void Verifier::visitDIAssignIDMetadata(Instruction &
I, MDNode *MD) {
5455 assert(
I.hasMetadata(LLVMContext::MD_DIAssignID));
5460 bool ExpectedInstTy =
5462 CheckDI(ExpectedInstTy,
"!DIAssignID attached to unexpected instruction kind",
5467 for (
auto *User : AsValue->users()) {
5469 "!DIAssignID should only be used by llvm.dbg.assign intrinsics",
5473 CheckDI(DAI->getFunction() ==
I.getFunction(),
5474 "dbg.assign not in same function as inst", DAI, &
I);
5477 for (DbgVariableRecord *DVR :
5480 "!DIAssignID should only be used by Assign DVRs.", MD, DVR);
5481 CheckDI(DVR->getFunction() ==
I.getFunction(),
5482 "DVRAssign not in same function as inst", DVR, &
I);
5486void Verifier::visitMMRAMetadata(Instruction &
I, MDNode *MD) {
5488 "!mmra metadata attached to unexpected instruction kind",
I, MD);
5499 for (
const MDOperand &MDOp : MD->
operands())
5501 "!mmra metadata tuple operand is not an MMRA tag",
I, MDOp.get());
5504void Verifier::visitCallStackMetadata(MDNode *MD) {
5508 "call stack metadata should have at least 1 operand", MD);
5512 "call stack metadata operand should be constant integer",
Op);
5515void Verifier::visitMemProfMetadata(Instruction &
I, MDNode *MD) {
5518 "!memprof annotations should have at least 1 metadata operand "
5523 for (
auto &MIBOp : MD->
operands()) {
5529 "Each !memprof MemInfoBlock should have at least 2 operands", MIB);
5533 "!memprof MemInfoBlock first operand should not be null", MIB);
5535 "!memprof MemInfoBlock first operand should be an MDNode", MIB);
5537 visitCallStackMetadata(StackMD);
5541 "!memprof MemInfoBlock second operand should be an MDString", MIB);
5546 Check(OpNode,
"Not all !memprof MemInfoBlock operands 2 to N are MDNode",
5549 "Not all !memprof MemInfoBlock operands 2 to N are MDNode with 2 "
5554 [](
const MDOperand &
Op) {
5555 return mdconst::hasa<ConstantInt>(Op);
5557 "Not all !memprof MemInfoBlock operands 2 to N are MDNode with "
5558 "ConstantInt operands",
5564void Verifier::visitCallsiteMetadata(Instruction &
I, MDNode *MD) {
5568 visitCallStackMetadata(MD);
5577void Verifier::visitCalleeTypeMetadata(Instruction &
I, MDNode *MD) {
5582 "The callee_type metadata must be a list of type metadata nodes",
Op);
5584 Check(TypeMD->getNumOperands() == 2,
5585 "Well-formed generalized type metadata must contain exactly two "
5590 "The first operand of type metadata for functions must be zero",
Op);
5591 Check(TypeMD->hasGeneralizedMDString(),
5592 "Only generalized type metadata can be part of the callee_type "
5598void Verifier::visitAnnotationMetadata(MDNode *Annotation) {
5601 "annotation must have at least one operand");
5603 bool TupleOfStrings =
5609 "operands must be a string or a tuple of strings");
5613void Verifier::visitAliasScopeMetadata(
const MDNode *MD) {
5618 "first scope operand must be self-referential or string", MD);
5621 "third scope operand must be string (if used)", MD);
5624 Check(
Domain !=
nullptr,
"second scope operand must be MDNode", MD);
5626 unsigned NumDomainOps =
Domain->getNumOperands();
5627 Check(NumDomainOps >= 1 && NumDomainOps <= 2,
5628 "domain must have one or two operands",
Domain);
5631 "first domain operand must be self-referential or string",
Domain);
5632 if (NumDomainOps == 2)
5634 "second domain operand must be string (if used)",
Domain);
5637void Verifier::visitAliasScopeListMetadata(
const MDNode *MD) {
5640 Check(OpMD !=
nullptr,
"scope list must consist of MDNodes", MD);
5641 visitAliasScopeMetadata(OpMD);
5645void Verifier::visitAccessGroupMetadata(
const MDNode *MD) {
5646 auto IsValidAccessScope = [](
const MDNode *MD) {
5651 if (IsValidAccessScope(MD))
5657 Check(OpMD !=
nullptr,
"Access scope list must consist of MDNodes", MD);
5658 Check(IsValidAccessScope(OpMD),
5659 "Access scope list contains invalid access scope", MD);
5663void Verifier::visitCapturesMetadata(Instruction &
I,
const MDNode *Captures) {
5664 static const char *ValidArgs[] = {
"address_is_null",
"address",
5665 "read_provenance",
"provenance"};
5668 Check(SI,
"!captures metadata can only be applied to store instructions", &
I);
5669 Check(
SI->getValueOperand()->getType()->isPointerTy(),
5670 "!captures metadata can only be applied to store with value operand of "
5678 Check(Str,
"!captures metadata must be a list of strings", &
I);
5680 "invalid entry in !captures metadata", &
I, Str);
5684void Verifier::visitAllocTokenMetadata(Instruction &
I, MDNode *MD) {
5689 "expected integer constant", MD);
5692void Verifier::visitInlineHistoryMetadata(Instruction &
I, MDNode *MD) {
5701 ->stripPointerCastsAndAliases()),
5702 "!inline_history operands must be functions or null", MD);
5706void Verifier::visitMemCacheHintMetadata(Instruction &
I, MDNode *MD) {
5707 Check(
I.mayReadOrWriteMemory(),
5708 "!mem.cache_hint is only valid on memory operations", &
I);
5711 "!mem.cache_hint must have even number of operands "
5712 "(operand_no, hint_node pairs)",
5718 "!mem.cache_hint is not supported on non-intrinsic calls", &
I);
5720 unsigned NumOperands = CB ? CB->arg_size() :
I.getNumOperands();
5722 SmallDenseSet<unsigned, 4> SeenOperandNos;
5723 std::optional<uint64_t> LastOperandNo;
5729 "!mem.cache_hint must alternate between i32 operand numbers and "
5730 "metadata hint nodes",
5733 Check(OpNoCI->getValue().isNonNegative(),
5734 "!mem.cache_hint operand number must be non-negative", MD);
5736 uint64_t OperandNo = OpNoCI->getZExtValue();
5737 Check(OperandNo < NumOperands,
5738 "!mem.cache_hint operand number is out of range", &
I);
5741 CB ? CB->getArgOperand(OperandNo) :
I.getOperand(OperandNo);
5743 "!mem.cache_hint operand number must refer to a pointer operand", &
I);
5746 Check(Inserted,
"!mem.cache_hint contains duplicate operand number", MD);
5748 Check(!Inserted || !LastOperandNo || OperandNo > *LastOperandNo,
5749 "!mem.cache_hint operand numbers must be in increasing order", MD);
5750 LastOperandNo = OperandNo;
5754 "!mem.cache_hint must alternate between i32 operand numbers and "
5755 "metadata hint nodes",
5759 "!mem.cache_hint hint node must have even number of operands "
5760 "(key-value pairs)",
5763 StringSet<> SeenKeys;
5764 for (
unsigned K = 0;
K + 1 <
Node->getNumOperands();
K += 2) {
5766 Check(
Key,
"!mem.cache_hint key must be a string", Node);
5768 StringRef KeyStr =
Key->getString();
5770 "!mem.cache_hint hint node contains duplicate key", Node);
5775 "!mem.cache_hint value must be a string or integer", Node);
5782void Verifier::visitInstruction(Instruction &
I) {
5784 Check(BB,
"Instruction not embedded in basic block!", &
I);
5787 for (User *U :
I.users()) {
5788 Check(U != (User *)&
I || !DT.isReachableFromEntry(BB),
5789 "Only PHI nodes may reference their own value!", &
I);
5794 Check(!
I.getType()->isVoidTy() || !
I.hasName(),
5795 "Instruction has a name, but provides a void value!", &
I);
5799 Check(
I.getType()->isVoidTy() ||
I.getType()->isFirstClassType(),
5800 "Instruction returns a non-scalar type!", &
I);
5805 "Invalid use of metadata!", &
I);
5810 for (Use &U :
I.uses()) {
5813 "Instruction referencing"
5814 " instruction not embedded in a basic block!",
5817 CheckFailed(
"Use of instruction is not an instruction!", U);
5826 for (
unsigned i = 0, e =
I.getNumOperands(); i != e; ++i) {
5827 Check(
I.getOperand(i) !=
nullptr,
"Instruction has null operand!", &
I);
5831 if (!
I.getOperand(i)->getType()->isFirstClassType()) {
5832 Check(
false,
"Instruction operands must be first-class values!", &
I);
5838 auto IsAttachedCallOperand = [](
Function *
F,
const CallBase *CBI,
5840 return CBI && CBI->isOperandBundleOfType(
5848 Check((!
F->isIntrinsic() ||
5849 (CBI && &CBI->getCalledOperandUse() == &
I.getOperandUse(i)) ||
5850 IsAttachedCallOperand(
F, CBI, i)),
5851 "Cannot take the address of an intrinsic!", &
I);
5853 F->getIntrinsicID() == Intrinsic::donothing ||
5854 F->getIntrinsicID() == Intrinsic::seh_try_begin ||
5855 F->getIntrinsicID() == Intrinsic::seh_try_end ||
5856 F->getIntrinsicID() == Intrinsic::seh_scope_begin ||
5857 F->getIntrinsicID() == Intrinsic::seh_scope_end ||
5858 F->getIntrinsicID() == Intrinsic::coro_resume ||
5859 F->getIntrinsicID() == Intrinsic::coro_destroy ||
5860 F->getIntrinsicID() == Intrinsic::coro_await_suspend_void ||
5861 F->getIntrinsicID() == Intrinsic::coro_await_suspend_bool ||
5862 F->getIntrinsicID() == Intrinsic::coro_await_suspend_handle ||
5863 F->getIntrinsicID() ==
5864 Intrinsic::experimental_patchpoint_void ||
5865 F->getIntrinsicID() == Intrinsic::experimental_patchpoint ||
5866 F->getIntrinsicID() == Intrinsic::fake_use ||
5867 F->getIntrinsicID() == Intrinsic::experimental_gc_statepoint ||
5868 F->getIntrinsicID() == Intrinsic::wasm_throw ||
5869 F->getIntrinsicID() == Intrinsic::wasm_rethrow ||
5870 IsAttachedCallOperand(
F, CBI, i),
5871 "Cannot invoke an intrinsic other than donothing, patchpoint, "
5872 "statepoint, coro_resume, coro_destroy, clang.arc.attachedcall or "
5875 Check(
F->getParent() == &M,
"Referencing function in another module!", &
I,
5876 &M,
F,
F->getParent());
5879 "Referring to a basic block in another function!", &
I);
5882 "Referring to an argument in another function!", &
I);
5884 Check(GV->
getParent() == &M,
"Referencing global in another module!", &
I,
5888 "Referring to an instruction in another function!", &
I);
5889 verifyDominatesUse(
I, i);
5891 Check(CBI && &CBI->getCalledOperandUse() == &
I.getOperandUse(i),
5892 "Cannot take the address of an inline asm!", &
I);
5894 visitConstantExprsRecursively(
C);
5898 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_fpmath)) {
5900 "fpmath requires a floating point result!", &
I);
5902 if (ConstantFP *CFP0 =
5904 const APFloat &Accuracy = CFP0->getValueAPF();
5906 "fpmath accuracy must have float type", &
I);
5908 "fpmath accuracy not a positive number!", &
I);
5910 Check(
false,
"invalid fpmath accuracy!", &
I);
5914 if (MDNode *
Range =
I.getMetadata(LLVMContext::MD_range)) {
5916 "Ranges are only for loads, calls and invokes!", &
I);
5917 visitRangeMetadata(
I,
Range,
I.getType());
5920 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_nofpclass)) {
5922 visitNoFPClassMetadata(
I, MD,
I.getType());
5925 if (MDNode *
Range =
I.getMetadata(LLVMContext::MD_noalias_addrspace)) {
5928 "noalias.addrspace are only for memory operations!", &
I);
5929 visitNoaliasAddrspaceMetadata(
I,
Range,
I.getType());
5932 if (
I.hasMetadata(LLVMContext::MD_invariant_group)) {
5934 "invariant.group metadata is only for loads and stores", &
I);
5937 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_nonnull)) {
5938 Check(
I.getType()->isPointerTy(),
"nonnull applies only to pointer types",
5941 "nonnull applies only to load instructions, use attributes"
5942 " for calls or invokes",
5947 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_dereferenceable))
5948 visitDereferenceableMetadata(
I, MD);
5950 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_dereferenceable_or_null))
5951 visitDereferenceableMetadata(
I, MD);
5953 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_nofree))
5954 visitNofreeMetadata(
I, MD);
5956 if (MDNode *TBAA =
I.getMetadata(LLVMContext::MD_tbaa))
5959 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_noalias))
5960 visitAliasScopeListMetadata(MD);
5961 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_alias_scope))
5962 visitAliasScopeListMetadata(MD);
5964 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_access_group))
5965 visitAccessGroupMetadata(MD);
5967 if (MDNode *AlignMD =
I.getMetadata(LLVMContext::MD_align)) {
5968 Check(
I.getType()->isPointerTy(),
"align applies only to pointer types",
5971 "align applies only to load instructions, "
5972 "use attributes for calls or invokes",
5974 Check(AlignMD->getNumOperands() == 1,
"align takes one operand!", &
I);
5977 "align metadata value must be an i64!", &
I);
5981 Check(Align <= Value::MaximumAlignment,
5982 "alignment is larger that implementation defined limit", &
I);
5985 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_prof))
5986 visitProfMetadata(
I, MD);
5988 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_memprof))
5989 visitMemProfMetadata(
I, MD);
5991 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_callsite))
5992 visitCallsiteMetadata(
I, MD);
5994 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_callee_type))
5995 visitCalleeTypeMetadata(
I, MD);
5997 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_DIAssignID))
5998 visitDIAssignIDMetadata(
I, MD);
6000 if (MDNode *MMRA =
I.getMetadata(LLVMContext::MD_mmra))
6001 visitMMRAMetadata(
I, MMRA);
6003 if (MDNode *Annotation =
I.getMetadata(LLVMContext::MD_annotation))
6004 visitAnnotationMetadata(Annotation);
6006 if (MDNode *Captures =
I.getMetadata(LLVMContext::MD_captures))
6007 visitCapturesMetadata(
I, Captures);
6009 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_alloc_token))
6010 visitAllocTokenMetadata(
I, MD);
6012 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_inline_history))
6013 visitInlineHistoryMetadata(
I, MD);
6015 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_mem_cache_hint))
6016 visitMemCacheHintMetadata(
I, MD);
6018 if (MDNode *
N =
I.getDebugLoc().getAsMDNode()) {
6020 visitMDNode(*
N, AreDebugLocsAllowed::Yes);
6023 if (
DL->getAtomGroup()) {
6024 CheckDI(
DL->getScope()->getSubprogram()->getKeyInstructionsEnabled(),
6025 "DbgLoc uses atomGroup but DISubprogram doesn't have Key "
6026 "Instructions enabled",
6027 DL,
DL->getScope()->getSubprogram());
6033 I.getAllMetadata(MDs);
6034 for (
auto Attachment : MDs) {
6035 unsigned Kind = Attachment.first;
6037 (
Kind == LLVMContext::MD_dbg ||
Kind == LLVMContext::MD_loop)
6038 ? AreDebugLocsAllowed::Yes
6039 : AreDebugLocsAllowed::
No;
6040 visitMDNode(*Attachment.second, AllowLocs);
6058 raw_string_ostream ErrOS(ErrMsg);
6061 Check(IsValid, ErrMsg, IF);
6067 const std::string ExpectedName =
6070 "Intrinsic name not mangled correctly for type arguments! "
6082 "const x86_amx is not allowed in argument!");
6088 case Intrinsic::assume: {
6092 "assume with operand bundles must have i1 true condition",
Call);
6098 auto GetTypeAt = [&](
unsigned Index) {
6099 return OBU.Inputs[
Index]->getType();
6104 CheckFailed(
"tags must be valid attribute names",
Call);
6106 case BundleAttr::Align:
6107 Check(OBU.Inputs.size() >= 2 && OBU.Inputs.size() <= 3,
6108 "alignment assumptions should have 2 or 3 arguments",
Call);
6111 Check(GetTypeAt(1)->isIntegerTy() &&
6112 GetTypeAt(1)->getIntegerBitWidth() <= 64,
6113 "second argument should be an integer with a maximum width of 64 "
6116 Check(OBU.Inputs.size() < 3 ||
6117 GetTypeAt(2)->isIntegerTy() &&
6118 GetTypeAt(2)->getIntegerBitWidth() <= 64,
6119 "third argument should be an integer with a maximum width of 64 "
6123 case BundleAttr::Cold:
6124 Check(OBU.Inputs.size() == 0,
6125 "cold assumptions should have no arguments",
Call);
6127 case BundleAttr::Dereferenceable:
6128 case BundleAttr::DereferenceableOrNull:
6129 Check(OBU.Inputs.size() == 2,
6130 "dereferenceable assumptions should have 2 arguments",
Call);
6133 Check(GetTypeAt(1)->isIntegerTy() &&
6134 GetTypeAt(1)->getIntegerBitWidth() <= 64,
6135 "second argument should be an integer with a maximum width of 64 "
6139 case BundleAttr::Ignore:
6141 case BundleAttr::NonNull:
6142 Check(OBU.Inputs.size() == 1,
6143 "nonnull assumptions should have 1 argument",
Call);
6147 case BundleAttr::NoUndef:
6148 Check(OBU.Inputs.size() == 1,
6149 "noundef assumptions should have 1 argument",
Call);
6151 case BundleAttr::SeparateStorage:
6152 Check(OBU.Inputs.size() == 2,
6153 "separate_storage assumptions should have 2 arguments",
Call);
6155 "arguments to separate_storage assumptions should be pointers",
6162 case Intrinsic::ucmp:
6163 case Intrinsic::scmp: {
6168 "result type must be at least 2 bits wide",
Call);
6170 bool IsDestTypeVector = DestTy->
isVectorTy();
6172 "ucmp/scmp argument and result types must both be either vector or "
6175 if (IsDestTypeVector) {
6178 Check(SrcVecLen == DestVecLen,
6179 "return type and arguments must have the same number of "
6185 case Intrinsic::coro_begin:
6186 case Intrinsic::coro_begin_custom_abi:
6188 "id argument of llvm.coro.begin must refer to coro.id");
6190 case Intrinsic::coro_id: {
6192 "align argument only accepts constants");
6195 "promise argument must refer to an alloca");
6200 "coro argument must refer to a function");
6204 if (BeforeCoroSplit)
6207 Check(!BeforeCoroEarly,
"cannot run CoroSplit before CoroEarly");
6210 "info argument of llvm.coro.id must refer to an initialized "
6214 "info argument of llvm.coro.id must refer to either a struct or "
6218 case Intrinsic::is_fpclass: {
6221 "unsupported bits for llvm.is.fpclass test mask");
6224 case Intrinsic::fptrunc_round: {
6229 MD = MAV->getMetadata();
6231 Check(MD !=
nullptr,
"missing rounding mode argument",
Call);
6234 (
"invalid value for llvm.fptrunc.round metadata operand"
6235 " (the operand should be a string)"),
6238 std::optional<RoundingMode> RoundMode =
6240 Check(RoundMode && *RoundMode != RoundingMode::Dynamic,
6241 "unsupported rounding mode argument",
Call);
6244 case Intrinsic::convert_to_arbitrary_fp: {
6252 "if floating-point operand is a vector, integer operand must also "
6255 Check(ValueVecTy->getElementCount() == IntVecTy->getElementCount(),
6256 "floating-point and integer vector operands must have the same "
6263 Check(InterpMAV,
"missing interpretation metadata operand",
Call);
6265 Check(InterpStr,
"interpretation metadata operand must be a string",
Call);
6266 StringRef Interp = InterpStr->getString();
6268 Check(!Interp.
empty(),
"interpretation metadata string must not be empty",
6273 "unsupported interpretation metadata string",
Call);
6277 Check(RoundingMAV,
"missing rounding mode metadata operand",
Call);
6279 Check(RoundingStr,
"rounding mode metadata operand must be a string",
Call);
6281 std::optional<RoundingMode>
RM =
6283 Check(RM && *RM != RoundingMode::Dynamic,
6284 "unsupported rounding mode argument",
Call);
6287 case Intrinsic::convert_from_arbitrary_fp: {
6295 "if floating-point operand is a vector, integer operand must also "
6298 Check(ValueVecTy->getElementCount() == IntVecTy->getElementCount(),
6299 "floating-point and integer vector operands must have the same "
6306 Check(InterpMAV,
"missing interpretation metadata operand",
Call);
6308 Check(InterpStr,
"interpretation metadata operand must be a string",
Call);
6309 StringRef Interp = InterpStr->getString();
6311 Check(!Interp.
empty(),
"interpretation metadata string must not be empty",
6316 "unsupported interpretation metadata string",
Call);
6319#define BEGIN_REGISTER_VP_INTRINSIC(VPID, ...) case Intrinsic::VPID:
6320#include "llvm/IR/VPIntrinsics.def"
6321#undef BEGIN_REGISTER_VP_INTRINSIC
6324#define INSTRUCTION(NAME, NARGS, ROUND_MODE, INTRINSIC) \
6325 case Intrinsic::INTRINSIC:
6326#include "llvm/IR/ConstrainedOps.def"
6330 case Intrinsic::dbg_declare:
6331 case Intrinsic::dbg_value:
6332 case Intrinsic::dbg_assign:
6333 case Intrinsic::dbg_label:
6340 case Intrinsic::memcpy:
6341 case Intrinsic::memcpy_inline:
6342 case Intrinsic::memmove:
6343 case Intrinsic::memset:
6344 case Intrinsic::memset_inline:
6346 case Intrinsic::experimental_memset_pattern: {
6348 Check(Memset->getValue()->getType()->isSized(),
6349 "unsized types cannot be used as memset patterns",
Call);
6352 case Intrinsic::memcpy_element_unordered_atomic:
6353 case Intrinsic::memmove_element_unordered_atomic:
6354 case Intrinsic::memset_element_unordered_atomic: {
6357 ConstantInt *ElementSizeCI =
6359 const APInt &ElementSizeVal = ElementSizeCI->
getValue();
6361 "element size of the element-wise atomic memory intrinsic "
6362 "must be a power of 2",
6365 auto IsValidAlignment = [&](MaybeAlign Alignment) {
6366 return Alignment && ElementSizeVal.
ule(Alignment->value());
6368 Check(IsValidAlignment(AMI->getDestAlign()),
6369 "incorrect alignment of the destination argument",
Call);
6371 Check(IsValidAlignment(AMT->getSourceAlign()),
6372 "incorrect alignment of the source argument",
Call);
6376 case Intrinsic::call_preallocated_setup: {
6378 bool FoundCall =
false;
6381 Check(UseCall !=
nullptr,
6382 "Uses of llvm.call.preallocated.setup must be calls");
6384 if (IID == Intrinsic::call_preallocated_arg) {
6386 Check(AllocArgIndex !=
nullptr,
6387 "llvm.call.preallocated.alloc arg index must be a constant");
6388 auto AllocArgIndexInt = AllocArgIndex->getValue();
6389 Check(AllocArgIndexInt.sge(0) &&
6390 AllocArgIndexInt.slt(NumArgs->getValue()),
6391 "llvm.call.preallocated.alloc arg index must be between 0 and "
6393 "llvm.call.preallocated.setup's argument count");
6394 }
else if (IID == Intrinsic::call_preallocated_teardown) {
6397 Check(!FoundCall,
"Can have at most one call corresponding to a "
6398 "llvm.call.preallocated.setup");
6400 size_t NumPreallocatedArgs = 0;
6401 for (
unsigned i = 0; i < UseCall->arg_size(); i++) {
6402 if (UseCall->paramHasAttr(i, Attribute::Preallocated)) {
6403 ++NumPreallocatedArgs;
6406 Check(NumPreallocatedArgs != 0,
6407 "cannot use preallocated intrinsics on a call without "
6408 "preallocated arguments");
6409 Check(NumArgs->equalsInt(NumPreallocatedArgs),
6410 "llvm.call.preallocated.setup arg size must be equal to number "
6411 "of preallocated arguments "
6421 auto PreallocatedBundle =
6423 Check(PreallocatedBundle,
6424 "Use of llvm.call.preallocated.setup outside intrinsics "
6425 "must be in \"preallocated\" operand bundle");
6426 Check(PreallocatedBundle->Inputs.front().get() == &
Call,
6427 "preallocated bundle must have token from corresponding "
6428 "llvm.call.preallocated.setup");
6433 case Intrinsic::call_preallocated_arg: {
6436 Token->getIntrinsicID() == Intrinsic::call_preallocated_setup,
6437 "llvm.call.preallocated.arg token argument must be a "
6438 "llvm.call.preallocated.setup");
6440 "llvm.call.preallocated.arg must be called with a \"preallocated\" "
6441 "call site attribute");
6444 case Intrinsic::call_preallocated_teardown: {
6447 Token->getIntrinsicID() == Intrinsic::call_preallocated_setup,
6448 "llvm.call.preallocated.teardown token argument must be a "
6449 "llvm.call.preallocated.setup");
6452 case Intrinsic::gcroot:
6453 case Intrinsic::gcwrite:
6454 case Intrinsic::gcread:
6455 if (
ID == Intrinsic::gcroot) {
6458 Check(AI,
"llvm.gcroot parameter #1 must be an alloca.",
Call);
6460 "llvm.gcroot parameter #2 must be a constant.",
Call);
6463 "llvm.gcroot parameter #1 must either be a pointer alloca, "
6464 "or argument #2 must be a non-null constant.",
6470 "Enclosing function does not use GC.",
Call);
6472 case Intrinsic::init_trampoline:
6474 "llvm.init_trampoline parameter #2 must resolve to a function.",
6477 case Intrinsic::prefetch:
6479 "rw argument to llvm.prefetch must be 0-1",
Call);
6481 "locality argument to llvm.prefetch must be 0-3",
Call);
6483 "cache type argument to llvm.prefetch must be 0-1",
Call);
6485 case Intrinsic::reloc_none: {
6488 "llvm.reloc.none argument must be a metadata string", &
Call);
6491 case Intrinsic::stackprotector:
6493 "llvm.stackprotector parameter #2 must resolve to an alloca.",
Call);
6495 case Intrinsic::localescape: {
6499 Check(!SawFrameEscape,
"multiple calls to llvm.localescape in one function",
6506 "llvm.localescape only accepts static allocas",
Call);
6509 SawFrameEscape =
true;
6512 case Intrinsic::localrecover: {
6516 "llvm.localrecover first "
6517 "argument must be function defined in this module",
6520 auto &
Entry = FrameEscapeInfo[Fn];
6521 Entry.second = unsigned(
6522 std::max(uint64_t(
Entry.second), IdxArg->getLimitedValue(~0U) + 1));
6526 case Intrinsic::experimental_gc_statepoint:
6528 Check(!CI->isInlineAsm(),
6529 "gc.statepoint support for inline assembly unimplemented", CI);
6531 "Enclosing function does not use GC.",
Call);
6533 verifyStatepoint(
Call);
6535 case Intrinsic::experimental_gc_result: {
6537 "Enclosing function does not use GC.",
Call);
6545 Check(StatepointCall && StatepointCall->getIntrinsicID() ==
6546 Intrinsic::experimental_gc_statepoint,
6547 "gc.result operand #1 must be from a statepoint",
Call,
6551 auto *TargetFuncType =
6554 "gc.result result type does not match wrapped callee",
Call);
6557 case Intrinsic::experimental_gc_relocate: {
6561 "gc.relocate must return a pointer or a vector of pointers",
Call);
6566 if (LandingPadInst *LandingPad =
6570 LandingPad->getParent()->getUniquePredecessor();
6574 Check(InvokeBB,
"safepoints should have unique landingpads",
6575 LandingPad->getParent());
6579 "gc relocate should be linked to a statepoint", InvokeBB);
6586 "gc relocate is incorrectly tied to the statepoint",
Call, Token);
6595 "gc.relocate operand #2 must be integer offset",
Call);
6599 "gc.relocate operand #3 must be integer offset",
Call);
6609 Check(BaseIndex < Opt->Inputs.size(),
6610 "gc.relocate: statepoint base index out of bounds",
Call);
6611 Check(DerivedIndex < Opt->Inputs.size(),
6612 "gc.relocate: statepoint derived index out of bounds",
Call);
6625 "gc.relocate: relocated value must be a pointer",
Call);
6626 Check(DerivedType->isPtrOrPtrVectorTy(),
6627 "gc.relocate: relocated value must be a pointer",
Call);
6629 Check(ResultType->isVectorTy() == DerivedType->isVectorTy(),
6630 "gc.relocate: vector relocates to vector and pointer to pointer",
6633 ResultType->getPointerAddressSpace() ==
6634 DerivedType->getPointerAddressSpace(),
6635 "gc.relocate: relocating a pointer shouldn't change its address space",
6639 Check(GC,
"gc.relocate: calling function must have GCStrategy",
6642 auto isGCPtr = [&
GC](
Type *PTy) {
6643 return GC->isGCManagedPointer(PTy->getScalarType()).value_or(
true);
6645 Check(isGCPtr(ResultType),
"gc.relocate: must return gc pointer",
Call);
6647 "gc.relocate: relocated value must be a gc pointer",
Call);
6648 Check(isGCPtr(DerivedType),
6649 "gc.relocate: relocated value must be a gc pointer",
Call);
6653 case Intrinsic::experimental_patchpoint: {
6656 "patchpoint: invalid return type used with anyregcc",
Call);
6660 case Intrinsic::eh_exceptioncode:
6661 case Intrinsic::eh_exceptionpointer: {
6663 "eh.exceptionpointer argument must be a catchpad",
Call);
6666 case Intrinsic::get_active_lane_mask: {
6668 "get_active_lane_mask: must return a "
6672 Check(ElemTy->isIntegerTy(1),
6673 "get_active_lane_mask: element type is not "
6678 case Intrinsic::experimental_get_vector_length: {
6681 "get_vector_length: VF must be positive",
Call);
6684 case Intrinsic::masked_load: {
6690 Check(
Mask->getType()->isVectorTy(),
"masked_load: mask must be vector",
6693 "masked_load: pass through and return type must match",
Call);
6696 "masked_load: vector mask must be same length as return",
Call);
6699 case Intrinsic::masked_store: {
6702 Check(
Mask->getType()->isVectorTy(),
"masked_store: mask must be vector",
6706 "masked_store: vector mask must be same length as value",
Call);
6709 case Intrinsic::experimental_guard: {
6712 "experimental_guard must have exactly one "
6713 "\"deopt\" operand bundle");
6717 case Intrinsic::experimental_deoptimize: {
6721 "experimental_deoptimize must have exactly one "
6722 "\"deopt\" operand bundle");
6724 "experimental_deoptimize return type must match caller return type");
6729 "calls to experimental_deoptimize must be followed by a return");
6733 "calls to experimental_deoptimize must be followed by a return "
6734 "of the value computed by experimental_deoptimize");
6739 case Intrinsic::vastart: {
6741 "va_start called in a non-varargs function");
6744 case Intrinsic::get_dynamic_area_offset: {
6746 Check(IntTy &&
DL.getPointerSizeInBits(
DL.getAllocaAddrSpace()) ==
6747 IntTy->getBitWidth(),
6748 "get_dynamic_area_offset result type must be scalar integer matching "
6749 "alloca address space width",
6753 case Intrinsic::masked_udiv:
6754 case Intrinsic::masked_sdiv:
6755 case Intrinsic::masked_urem:
6756 case Intrinsic::masked_srem:
6757 case Intrinsic::vector_reduce_and:
6758 case Intrinsic::vector_reduce_or:
6759 case Intrinsic::vector_reduce_xor:
6760 case Intrinsic::vector_reduce_add:
6761 case Intrinsic::vector_reduce_mul:
6762 case Intrinsic::vector_reduce_smax:
6763 case Intrinsic::vector_reduce_smin:
6764 case Intrinsic::vector_reduce_umax:
6765 case Intrinsic::vector_reduce_umin: {
6768 "intrinsic has incorrect argument type!");
6771 case Intrinsic::vector_reduce_fmax:
6772 case Intrinsic::vector_reduce_fmin: {
6775 "intrinsic has incorrect argument type!");
6778 case Intrinsic::vector_reduce_fadd:
6779 case Intrinsic::vector_reduce_fmul: {
6784 "intrinsic has incorrect argument type!");
6787 case Intrinsic::smul_fix:
6788 case Intrinsic::smul_fix_sat:
6789 case Intrinsic::umul_fix:
6790 case Intrinsic::umul_fix_sat:
6791 case Intrinsic::sdiv_fix:
6792 case Intrinsic::sdiv_fix_sat:
6793 case Intrinsic::udiv_fix:
6794 case Intrinsic::udiv_fix_sat: {
6798 if (
ID == Intrinsic::smul_fix ||
ID == Intrinsic::smul_fix_sat ||
6799 ID == Intrinsic::sdiv_fix ||
ID == Intrinsic::sdiv_fix_sat) {
6801 "the scale of s[mul|div]_fix[_sat] must be less than the width of "
6805 "the scale of u[mul|div]_fix[_sat] must be less than or equal "
6806 "to the width of the operands");
6810 case Intrinsic::lrint:
6811 case Intrinsic::llrint:
6812 case Intrinsic::lround:
6813 case Intrinsic::llround: {
6817 ExpectedName +
": argument and result disagree on vector use", &
Call);
6820 Check(VTy->getElementCount() == RTy->getElementCount(),
6821 ExpectedName +
": argument must be same length as result", &
Call);
6825 case Intrinsic::bswap: {
6828 Check(
Size % 16 == 0,
"bswap must be an even number of bytes", &
Call);
6831 case Intrinsic::invariant_start: {
6833 Check(InvariantSize &&
6835 "invariant_start parameter must be -1, 0 or a positive number",
6839 case Intrinsic::matrix_multiply:
6840 case Intrinsic::matrix_transpose:
6841 case Intrinsic::matrix_column_major_load:
6842 case Intrinsic::matrix_column_major_store: {
6844 ConstantInt *Stride =
nullptr;
6845 ConstantInt *NumRows;
6846 ConstantInt *NumColumns;
6848 Type *Op0ElemTy =
nullptr;
6849 Type *Op1ElemTy =
nullptr;
6851 case Intrinsic::matrix_multiply: {
6856 ->getNumElements() ==
6858 "First argument of a matrix operation does not match specified "
6861 ->getNumElements() ==
6863 "Second argument of a matrix operation does not match specified "
6873 case Intrinsic::matrix_transpose:
6880 case Intrinsic::matrix_column_major_load: {
6887 case Intrinsic::matrix_column_major_store: {
6900 Check(ResultTy->getElementType()->isIntegerTy() ||
6901 ResultTy->getElementType()->isFloatingPointTy(),
6902 "Result type must be an integer or floating-point type!", IF);
6905 Check(ResultTy->getElementType() == Op0ElemTy,
6906 "Vector element type mismatch of the result and first operand "
6911 Check(ResultTy->getElementType() == Op1ElemTy,
6912 "Vector element type mismatch of the result and second operand "
6918 "Result of a matrix operation does not fit in the returned vector!");
6924 "Stride must be greater or equal than the number of rows!", IF);
6929 case Intrinsic::stepvector: {
6931 Check(VecTy && VecTy->getScalarType()->isIntegerTy() &&
6932 VecTy->getScalarSizeInBits() >= 8,
6933 "stepvector only supported for vectors of integers "
6934 "with a bitwidth of at least 8.",
6938 case Intrinsic::experimental_vector_match: {
6947 Check(Op1Ty && Op2Ty && MaskTy,
"Operands must be vectors.", &
Call);
6949 "Second operand must be a fixed length vector.", &
Call);
6950 Check(Op1Ty->getElementType()->isIntegerTy(),
6951 "First operand must be a vector of integers.", &
Call);
6952 Check(Op1Ty->getElementType() == Op2Ty->getElementType(),
6953 "First two operands must have the same element type.", &
Call);
6954 Check(Op1Ty->getElementCount() == MaskTy->getElementCount(),
6955 "First operand and mask must have the same number of elements.",
6957 Check(MaskTy->getElementType()->isIntegerTy(1),
6958 "Mask must be a vector of i1's.", &
Call);
6963 case Intrinsic::vector_insert: {
6972 ElementCount VecEC = VecTy->getElementCount();
6973 ElementCount SubVecEC = SubVecTy->getElementCount();
6974 Check(VecTy->getElementType() == SubVecTy->getElementType(),
6975 "vector_insert parameters must have the same element "
6979 "vector_insert index must be a constant multiple of "
6980 "the subvector's known minimum vector length.");
6988 "subvector operand of vector_insert would overrun the "
6989 "vector being inserted into.");
6993 case Intrinsic::vector_extract: {
7001 ElementCount VecEC = VecTy->getElementCount();
7002 ElementCount ResultEC = ResultTy->getElementCount();
7004 Check(ResultTy->getElementType() == VecTy->getElementType(),
7005 "vector_extract result must have the same element "
7006 "type as the input vector.",
7009 "vector_extract index must be a constant multiple of "
7010 "the result type's known minimum vector length.");
7018 "vector_extract would overrun.");
7022 case Intrinsic::vector_partial_reduce_fadd:
7023 case Intrinsic::vector_partial_reduce_add: {
7027 unsigned VecWidth = VecTy->getElementCount().getKnownMinValue();
7028 unsigned AccWidth = AccTy->getElementCount().getKnownMinValue();
7030 Check((VecWidth % AccWidth) == 0,
7031 "Invalid vector widths for partial "
7032 "reduction. The width of the input vector "
7033 "must be a positive integer multiple of "
7034 "the width of the accumulator vector.");
7037 case Intrinsic::experimental_noalias_scope_decl: {
7041 case Intrinsic::preserve_array_access_index:
7042 case Intrinsic::preserve_struct_access_index:
7043 case Intrinsic::aarch64_ldaxr:
7044 case Intrinsic::aarch64_ldxr:
7045 case Intrinsic::arm_ldaex:
7046 case Intrinsic::arm_ldrex: {
7048 Check(ElemTy,
"Intrinsic requires elementtype attribute on first argument.",
7052 case Intrinsic::aarch64_stlxr:
7053 case Intrinsic::aarch64_stxr:
7054 case Intrinsic::arm_stlex:
7055 case Intrinsic::arm_strex: {
7058 "Intrinsic requires elementtype attribute on second argument.",
7062 case Intrinsic::aarch64_prefetch: {
7064 "write argument to llvm.aarch64.prefetch must be 0 or 1",
Call);
7066 "target argument to llvm.aarch64.prefetch must be 0-3",
Call);
7068 "stream argument to llvm.aarch64.prefetch must be 0 or 1",
Call);
7070 "isdata argument to llvm.aarch64.prefetch must be 0 or 1",
Call);
7073 case Intrinsic::aarch64_range_prefetch: {
7075 "write argument to llvm.aarch64.range.prefetch must be 0 or 1",
Call);
7077 "stream argument to llvm.aarch64.range.prefetch must be 0 or 1",
7081 case Intrinsic::callbr_landingpad: {
7083 Check(CBR,
"intrinstic requires callbr operand", &
Call);
7090 CheckFailed(
"Intrinsic in block must have 1 unique predecessor", &
Call);
7094 CheckFailed(
"Intrinsic must have corresponding callbr in predecessor",
7099 "Intrinsic's corresponding callbr must have intrinsic's parent basic "
7100 "block in indirect destination list",
7103 Check(&
First == &
Call,
"No other instructions may proceed intrinsic",
7107 case Intrinsic::structured_gep: {
7113 "Intrinsic first parameter is missing an ElementType attribute",
7121 "Index operand type must be an integer", &
Call);
7124 T = AT->getElementType();
7126 Check(CI,
"Indexing into a struct requires a constant int", &
Call);
7128 "Indexing in a struct should be inbounds", &
Call);
7131 T = VT->getElementType();
7133 CheckFailed(
"Reached a non-composite type with more indices to process",
7139 case Intrinsic::structured_alloca:
7141 "@llvm.structured.alloca calls require elementtype attribute.",
7144 case Intrinsic::amdgcn_cs_chain: {
7147 case CallingConv::AMDGPU_CS:
7148 case CallingConv::AMDGPU_CS_Chain:
7149 case CallingConv::AMDGPU_CS_ChainPreserve:
7150 case CallingConv::AMDGPU_ES:
7151 case CallingConv::AMDGPU_GS:
7152 case CallingConv::AMDGPU_HS:
7153 case CallingConv::AMDGPU_LS:
7154 case CallingConv::AMDGPU_VS:
7157 CheckFailed(
"Intrinsic cannot be called from functions with this "
7158 "calling convention",
7164 "SGPR arguments must have the `inreg` attribute", &
Call);
7166 "VGPR arguments must not have the `inreg` attribute", &
Call);
7169 Check(FlagsArg->getValue().ult(2),
7170 "flags must be 0 or 1 for llvm.amdgcn.cs.chain", &
Call);
7175 Intrinsic::amdgcn_unreachable;
7177 "llvm.amdgcn.cs.chain must be followed by unreachable", &
Call);
7180 case Intrinsic::amdgcn_init_exec_from_input: {
7183 "only inreg arguments to the parent function are valid as inputs to "
7188 case Intrinsic::amdgcn_set_inactive_chain_arg: {
7191 case CallingConv::AMDGPU_CS_Chain:
7192 case CallingConv::AMDGPU_CS_ChainPreserve:
7195 CheckFailed(
"Intrinsic can only be used from functions with the "
7196 "amdgpu_cs_chain or amdgpu_cs_chain_preserve "
7197 "calling conventions",
7202 unsigned InactiveIdx = 1;
7204 "Value for inactive lanes must not have the `inreg` attribute",
7207 "Value for inactive lanes must be a function argument", &
Call);
7209 "Value for inactive lanes must be a VGPR function argument", &
Call);
7212 case Intrinsic::amdgcn_call_whole_wave: {
7214 Check(
F,
"Indirect whole wave calls are not allowed", &
Call);
7216 CallingConv::ID CC =
F->getCallingConv();
7217 Check(CC == CallingConv::AMDGPU_Gfx_WholeWave,
7218 "Callee must have the amdgpu_gfx_whole_wave calling convention",
7221 Check(!
F->isVarArg(),
"Variadic whole wave calls are not allowed", &
Call);
7224 "Call argument count must match callee argument count", &
Call);
7228 Check(
F->arg_begin()->getType()->isIntegerTy(1),
7229 "Callee must have i1 as its first argument", &
Call);
7230 for (
auto [CallArg, FuncArg] :
7232 Check(CallArg->getType() == FuncArg.getType(),
7233 "Argument types must match", &
Call);
7237 FuncArg.hasInRegAttr(),
7238 "Argument inreg attributes must match", &
Call);
7242 case Intrinsic::amdgcn_s_prefetch_data: {
7246 "llvm.amdgcn.s.prefetch.data only supports global or constant memory");
7249 case Intrinsic::amdgcn_load_to_lds:
7250 case Intrinsic::amdgcn_load_async_to_lds:
7251 case Intrinsic::amdgcn_global_load_lds:
7252 case Intrinsic::amdgcn_global_load_async_lds:
7253 case Intrinsic::amdgcn_raw_buffer_load_lds:
7254 case Intrinsic::amdgcn_raw_buffer_load_async_lds:
7255 case Intrinsic::amdgcn_raw_ptr_buffer_load_lds:
7256 case Intrinsic::amdgcn_raw_ptr_buffer_load_async_lds:
7257 case Intrinsic::amdgcn_struct_buffer_load_lds:
7258 case Intrinsic::amdgcn_struct_buffer_load_async_lds:
7259 case Intrinsic::amdgcn_struct_ptr_buffer_load_lds:
7260 case Intrinsic::amdgcn_struct_ptr_buffer_load_async_lds: {
7264 "invalid data size for load-to-LDS intrinsic; must be 1, 2, 4, 12, "
7269 case Intrinsic::amdgcn_mfma_scale_f32_16x16x128_f8f6f4:
7270 case Intrinsic::amdgcn_mfma_scale_f32_32x32x64_f8f6f4: {
7276 Check(CBSZ <= 4,
"invalid value for cbsz format",
Call,
7278 Check(BLGP <= 4,
"invalid value for blgp format",
Call,
7282 auto getFormatNumRegs = [](
unsigned FormatVal) {
7283 switch (FormatVal) {
7297 auto isValidSrcASrcBVector = [](FixedVectorType *Ty) {
7298 if (!Ty || !Ty->getElementType()->
isIntegerTy(32))
7300 unsigned NumElts = Ty->getNumElements();
7301 return NumElts == 4 || NumElts == 6 || NumElts == 8;
7306 Check(isValidSrcASrcBVector(Src0Ty),
7307 "operand 0 must be 4, 6 or 8 element i32 vector", &
Call, Src0);
7308 Check(isValidSrcASrcBVector(Src1Ty),
7309 "operand 1 must be 4, 6 or 8 element i32 vector", &
Call, Src1);
7312 Check(Src0Ty->getNumElements() >= getFormatNumRegs(CBSZ),
7314 Check(Src1Ty->getNumElements() >= getFormatNumRegs(BLGP),
7318 case Intrinsic::amdgcn_wmma_f32_16x16x128_f8f6f4:
7319 case Intrinsic::amdgcn_wmma_scale_f32_16x16x128_f8f6f4:
7320 case Intrinsic::amdgcn_wmma_scale16_f32_16x16x128_f8f6f4: {
7326 Check(FmtA <= 4,
"invalid value for matrix format",
Call,
7328 Check(FmtB <= 4,
"invalid value for matrix format",
Call,
7332 auto getFormatNumRegs = [](
unsigned FormatVal) {
7333 switch (FormatVal) {
7347 auto isValidSrcASrcBVector = [](FixedVectorType *Ty) {
7348 if (!Ty || !Ty->getElementType()->
isIntegerTy(32))
7350 unsigned NumElts = Ty->getNumElements();
7351 return NumElts == 16 || NumElts == 12 || NumElts == 8;
7356 Check(isValidSrcASrcBVector(Src0Ty),
7357 "operand 1 must be 8, 12 or 16 element i32 vector", &
Call, Src0);
7358 Check(isValidSrcASrcBVector(Src1Ty),
7359 "operand 3 must be 8, 12 or 16 element i32 vector", &
Call, Src1);
7362 Check(Src0Ty->getNumElements() >= getFormatNumRegs(FmtA),
7364 Check(Src1Ty->getNumElements() >= getFormatNumRegs(FmtB),
7368 case Intrinsic::amdgcn_cooperative_atomic_load_32x4B:
7369 case Intrinsic::amdgcn_cooperative_atomic_load_16x8B:
7370 case Intrinsic::amdgcn_cooperative_atomic_load_8x16B:
7371 case Intrinsic::amdgcn_cooperative_atomic_store_32x4B:
7372 case Intrinsic::amdgcn_cooperative_atomic_store_16x8B:
7373 case Intrinsic::amdgcn_cooperative_atomic_store_8x16B: {
7378 "cooperative atomic intrinsics require a generic or global pointer",
7385 "cooperative atomic intrinsics require that the last argument is a "
7390 case Intrinsic::amdgcn_av_load_b128:
7391 case Intrinsic::amdgcn_av_store_b128: {
7396 "the last argument to av load/store intrinsics must be a "
7401 case Intrinsic::nvvm_setmaxnreg_inc_sync_aligned_u32:
7402 case Intrinsic::nvvm_setmaxnreg_dec_sync_aligned_u32: {
7405 Check(RegCount % 8 == 0,
7406 "reg_count argument to nvvm.setmaxnreg must be in multiples of 8");
7409 case Intrinsic::experimental_convergence_entry:
7410 case Intrinsic::experimental_convergence_anchor:
7412 case Intrinsic::experimental_convergence_loop:
7414 case Intrinsic::ptrmask: {
7418 "llvm.ptrmask intrinsic first argument must be pointer or vector "
7423 "llvm.ptrmask intrinsic arguments must be both scalars or both vectors",
7428 "llvm.ptrmask intrinsic arguments must have the same number of "
7432 "llvm.ptrmask intrinsic second argument bitwidth must match "
7433 "pointer index type size of first argument",
7437 case Intrinsic::thread_pointer: {
7439 DL.getDefaultGlobalsAddressSpace(),
7440 "llvm.thread.pointer intrinsic return type must be for the globals "
7445 case Intrinsic::threadlocal_address: {
7448 "llvm.threadlocal.address first argument must be a GlobalValue");
7450 "llvm.threadlocal.address operand isThreadLocal() must be true");
7453 case Intrinsic::lifetime_start:
7454 case Intrinsic::lifetime_end: {
7458 (
II &&
II->getIntrinsicID() == Intrinsic::structured_alloca),
7459 "llvm.lifetime.start/end can only be used on alloca or poison",
7463 case Intrinsic::sponentry: {
7464 const unsigned StackAS =
DL.getAllocaAddrSpace();
7467 "llvm.sponentry must return a pointer to the stack", &
Call);
7470 case Intrinsic::write_volatile_register: {
7474 "llvm.write_volatile_register metadata must be a single MDString",
7483 if (
F->hasPersonalityFn() &&
7487 if (BlockEHFuncletColors.
empty())
7491 bool InEHFunclet =
false;
7495 for (BasicBlock *ColorFirstBB : CV)
7496 if (
auto It = ColorFirstBB->getFirstNonPHIIt();
7497 It != ColorFirstBB->end())
7502 bool HasToken =
false;
7509 Check(HasToken,
"Missing funclet token on intrinsic call", &
Call);
7533void Verifier::visit(DbgLabelRecord &DLR) {
7535 "invalid #dbg_label intrinsic variable", &DLR, DLR.
getRawLabel());
7548 CheckDI(Loc,
"#dbg_label record requires a !dbg attachment", &DLR, BB,
F);
7552 if (!LabelSP || !LocSP)
7556 "mismatched subprogram between #dbg_label label and !dbg attachment",
7557 &DLR, BB,
F, Label,
Label->getScope()->getSubprogram(), Loc,
7558 Loc->getScope()->getSubprogram());
7561void Verifier::visit(DbgVariableRecord &DVR) {
7565 CheckDI(DVR.
getType() == DbgVariableRecord::LocationType::Value ||
7566 DVR.
getType() == DbgVariableRecord::LocationType::Declare ||
7567 DVR.
getType() == DbgVariableRecord::LocationType::DeclareValue ||
7568 DVR.
getType() == DbgVariableRecord::LocationType::Assign,
7569 "invalid #dbg record type", &DVR, DVR.
getType(), BB,
F);
7577 "invalid #dbg record address/value", &DVR, MD, BB,
F);
7579 visitValueAsMetadata(*VAM,
F);
7582 Type *Ty = VAM->getValue()->getType();
7584 "location of #dbg_declare must be a pointer or int", &DVR, MD, BB,
7588 visitDIArgList(*AL,
F);
7602 "invalid #dbg_assign DIAssignID", &DVR, DVR.
getRawAssignID(), BB,
7605 AreDebugLocsAllowed::No);
7614 "invalid #dbg_assign address", &DVR, DVR.
getRawAddress(), BB,
F);
7616 visitValueAsMetadata(*VAM,
F);
7619 "invalid #dbg_assign address expression", &DVR,
7626 "inst not in same function as #dbg_assign",
I, &DVR, BB,
F);
7636 &DVR, DLNode, BB,
F);
7642 if (!VarSP || !LocSP)
7646 "mismatched subprogram between #dbg record variable and DILocation",
7648 Loc->getScope()->getSubprogram(), BB,
F);
7653void Verifier::visitVPIntrinsic(VPIntrinsic &VPI) {
7657 Check(RetTy->getElementCount() == ValTy->getElementCount(),
7658 "VP cast intrinsic first argument and result vector lengths must be "
7662 switch (VPCast->getIntrinsicID()) {
7665 case Intrinsic::vp_trunc:
7667 "llvm.vp.trunc intrinsic first argument and result element type "
7671 "llvm.vp.trunc intrinsic the bit size of first argument must be "
7672 "larger than the bit size of the return type",
7675 case Intrinsic::vp_zext:
7676 case Intrinsic::vp_sext:
7678 "llvm.vp.zext or llvm.vp.sext intrinsic first argument and result "
7679 "element type must be integer",
7682 "llvm.vp.zext or llvm.vp.sext intrinsic the bit size of first "
7683 "argument must be smaller than the bit size of the return type",
7686 case Intrinsic::vp_fptoui:
7687 case Intrinsic::vp_fptosi:
7688 case Intrinsic::vp_lrint:
7689 case Intrinsic::vp_llrint:
7692 "llvm.vp.fptoui, llvm.vp.fptosi, llvm.vp.lrint or llvm.vp.llrint" "intrinsic first argument element "
7693 "type must be floating-point and result element type must be integer",
7696 case Intrinsic::vp_uitofp:
7697 case Intrinsic::vp_sitofp:
7700 "llvm.vp.uitofp or llvm.vp.sitofp intrinsic first argument element "
7701 "type must be integer and result element type must be floating-point",
7704 case Intrinsic::vp_fptrunc:
7706 "llvm.vp.fptrunc intrinsic first argument and result element type "
7707 "must be floating-point",
7710 "llvm.vp.fptrunc intrinsic the bit size of first argument must be "
7711 "larger than the bit size of the return type",
7714 case Intrinsic::vp_fpext:
7716 "llvm.vp.fpext intrinsic first argument and result element type "
7717 "must be floating-point",
7720 "llvm.vp.fpext intrinsic the bit size of first argument must be "
7721 "smaller than the bit size of the return type",
7724 case Intrinsic::vp_ptrtoint:
7726 "llvm.vp.ptrtoint intrinsic first argument element type must be "
7727 "pointer and result element type must be integer",
7730 case Intrinsic::vp_inttoptr:
7732 "llvm.vp.inttoptr intrinsic first argument element type must be "
7733 "integer and result element type must be pointer",
7740 case Intrinsic::vp_fcmp: {
7743 "invalid predicate for VP FP comparison intrinsic", &VPI);
7746 case Intrinsic::vp_icmp: {
7749 "invalid predicate for VP integer comparison intrinsic", &VPI);
7752 case Intrinsic::vp_is_fpclass: {
7755 "unsupported bits for llvm.vp.is.fpclass test mask");
7758 case Intrinsic::experimental_vp_splice: {
7761 int64_t KnownMinNumElements = VecTy->getElementCount().getKnownMinValue();
7763 AttributeList
Attrs = VPI.
getParent()->getParent()->getAttributes();
7764 if (
Attrs.hasFnAttr(Attribute::VScaleRange))
7765 KnownMinNumElements *=
Attrs.getFnAttrs().getVScaleRangeMin();
7767 Check((Idx < 0 && std::abs(Idx) <= KnownMinNumElements) ||
7768 (Idx >= 0 && Idx < KnownMinNumElements),
7769 "The splice index exceeds the range [-VL, VL-1] where VL is the "
7770 "known minimum number of elements in the vector. For scalable "
7771 "vectors the minimum number of elements is determined from "
7779void Verifier::visitConstrainedFPIntrinsic(ConstrainedFPIntrinsic &FPI) {
7781 bool HasRoundingMD =
7785 NumOperands += (1 + HasRoundingMD);
7791 "invalid arguments for constrained FP intrinsic", &FPI);
7794 case Intrinsic::experimental_constrained_lrint:
7795 case Intrinsic::experimental_constrained_llrint: {
7799 "Intrinsic does not support vectors", &FPI);
7803 case Intrinsic::experimental_constrained_lround:
7804 case Intrinsic::experimental_constrained_llround: {
7808 "Intrinsic does not support vectors", &FPI);
7812 case Intrinsic::experimental_constrained_fcmp:
7813 case Intrinsic::experimental_constrained_fcmps: {
7816 "invalid predicate for constrained FP comparison intrinsic", &FPI);
7820 case Intrinsic::experimental_constrained_fptosi:
7821 case Intrinsic::experimental_constrained_fptoui: {
7825 "Intrinsic first argument must be floating point", &FPI);
7832 "Intrinsic first argument and result disagree on vector use", &FPI);
7834 "Intrinsic result must be an integer", &FPI);
7837 "Intrinsic first argument and result vector lengths must be equal",
7843 case Intrinsic::experimental_constrained_sitofp:
7844 case Intrinsic::experimental_constrained_uitofp: {
7848 "Intrinsic first argument must be integer", &FPI);
7855 "Intrinsic first argument and result disagree on vector use", &FPI);
7857 "Intrinsic result must be a floating point", &FPI);
7860 "Intrinsic first argument and result vector lengths must be equal",
7866 case Intrinsic::experimental_constrained_fptrunc:
7867 case Intrinsic::experimental_constrained_fpext: {
7873 "Intrinsic first argument must be FP or FP vector", &FPI);
7875 "Intrinsic result must be FP or FP vector", &FPI);
7877 "Intrinsic first argument and result disagree on vector use", &FPI);
7881 "Intrinsic first argument and result vector lengths must be equal",
7884 if (FPI.
getIntrinsicID() == Intrinsic::experimental_constrained_fptrunc) {
7886 "Intrinsic first argument's type must be larger than result type",
7890 "Intrinsic first argument's type must be smaller than result type",
7906 "invalid exception behavior argument", &FPI);
7907 if (HasRoundingMD) {
7913void Verifier::verifyFragmentExpression(
const DbgVariableRecord &DVR) {
7918 if (!V || !
E || !
E->isValid())
7922 auto Fragment =
E->getFragmentInfo();
7932 if (
V->isArtificial())
7935 verifyFragmentExpression(*V, *Fragment, &DVR);
7938template <
typename ValueOrMetadata>
7939void Verifier::verifyFragmentExpression(
const DIVariable &V,
7941 ValueOrMetadata *
Desc) {
7944 auto VarSize =
V.getSizeInBits();
7950 CheckDI(FragSize + FragOffset <= *VarSize,
7951 "fragment is larger than or outside of variable",
Desc, &V);
7952 CheckDI(FragSize != *VarSize,
"fragment covers entire variable",
Desc, &V);
7955void Verifier::verifyFnArgs(
const DbgVariableRecord &DVR) {
7967 CheckDI(Var,
"#dbg record without variable");
7969 unsigned ArgNo = Var->
getArg();
7975 if (DebugFnArgs.
size() < ArgNo)
7976 DebugFnArgs.
resize(ArgNo,
nullptr);
7978 auto *Prev = DebugFnArgs[ArgNo - 1];
7979 DebugFnArgs[ArgNo - 1] = Var;
7980 CheckDI(!Prev || (Prev == Var),
"conflicting debug info for argument", &DVR,
7984void Verifier::verifyNotEntryValue(
const DbgVariableRecord &DVR) {
7988 if (!
E || !
E->isValid())
7998 ArgLoc && ArgLoc->hasAttribute(Attribute::SwiftAsync))
8003 "Entry values are only allowed in MIR unless they target a "
8004 "swiftasync Argument",
8008void Verifier::verifyCompileUnits() {
8012 if (
M.getContext().isODRUniquingDebugTypes())
8014 auto *CUs =
M.getNamedMetadata(
"llvm.dbg.cu");
8015 SmallPtrSet<const Metadata *, 2> Listed;
8018 for (
const auto *CU : CUVisited)
8019 CheckDI(Listed.
count(CU),
"DICompileUnit not listed in llvm.dbg.cu", CU);
8023void Verifier::verifyDeoptimizeCallingConvs() {
8024 if (DeoptimizeDeclarations.
empty())
8028 for (
const auto *
F :
ArrayRef(DeoptimizeDeclarations).slice(1)) {
8029 Check(
First->getCallingConv() ==
F->getCallingConv(),
8030 "All llvm.experimental.deoptimize declarations must have the same "
8031 "calling convention",
8036void Verifier::verifyAttachedCallBundle(
const CallBase &
Call,
8037 const OperandBundleUse &BU) {
8040 Check((FTy->getReturnType()->isPointerTy() ||
8042 "a call with operand bundle \"clang.arc.attachedcall\" must call a "
8043 "function returning a pointer or a non-returning function that has a "
8048 "operand bundle \"clang.arc.attachedcall\" requires one function as "
8056 Check((IID == Intrinsic::objc_retainAutoreleasedReturnValue ||
8057 IID == Intrinsic::objc_claimAutoreleasedReturnValue ||
8058 IID == Intrinsic::objc_unsafeClaimAutoreleasedReturnValue),
8059 "invalid function argument",
Call);
8061 StringRef FnName = Fn->
getName();
8062 Check((FnName ==
"objc_retainAutoreleasedReturnValue" ||
8063 FnName ==
"objc_claimAutoreleasedReturnValue" ||
8064 FnName ==
"objc_unsafeClaimAutoreleasedReturnValue"),
8065 "invalid function argument",
Call);
8069void Verifier::verifyNoAliasScopeDecl() {
8070 if (NoAliasScopeDecls.
empty())
8074 for (
auto *
II : NoAliasScopeDecls) {
8075 assert(
II->getIntrinsicID() == Intrinsic::experimental_noalias_scope_decl &&
8076 "Not a llvm.experimental.noalias.scope.decl ?");
8079 Check(ScopeListMV !=
nullptr,
8080 "llvm.experimental.noalias.scope.decl must have a MetadataAsValue "
8085 Check(ScopeListMD !=
nullptr,
"!id.scope.list must point to an MDNode",
II);
8086 Check(ScopeListMD->getNumOperands() == 1,
8087 "!id.scope.list must point to a list with a single scope",
II);
8088 visitAliasScopeListMetadata(ScopeListMD);
8098 auto GetScope = [](IntrinsicInst *
II) {
8101 return &
cast<MDNode>(ScopeListMV->getMetadata())->getOperand(0);
8106 auto Compare = [GetScope](IntrinsicInst *Lhs, IntrinsicInst *Rhs) {
8107 return GetScope(Lhs) < GetScope(Rhs);
8114 auto ItCurrent = NoAliasScopeDecls.begin();
8115 while (ItCurrent != NoAliasScopeDecls.end()) {
8116 auto CurScope = GetScope(*ItCurrent);
8117 auto ItNext = ItCurrent;
8120 }
while (ItNext != NoAliasScopeDecls.end() &&
8121 GetScope(*ItNext) == CurScope);
8126 if (ItNext - ItCurrent < 32)
8130 Check(!DT.dominates(
I, J),
8131 "llvm.experimental.noalias.scope.decl dominates another one "
8132 "with the same scope",
8146 Verifier V(OS,
true, *f.getParent());
8150 return !V.verify(
F);
8154 bool *BrokenDebugInfo) {
8156 Verifier V(OS, !BrokenDebugInfo, M);
8158 bool Broken =
false;
8160 Broken |= !V.verify(
F);
8162 Broken |= !V.verify();
8163 if (BrokenDebugInfo)
8164 *BrokenDebugInfo = V.hasBrokenDebugInfo();
8175 std::unique_ptr<Verifier> V;
8176 bool FatalErrors =
true;
8179 explicit VerifierLegacyPass(
bool FatalErrors)
8180 : FunctionPass(
ID), FatalErrors(FatalErrors) {}
8182 bool doInitialization(
Module &M)
override {
8183 V = std::make_unique<Verifier>(
8189 if (!
V->verify(
F) && FatalErrors) {
8190 errs() <<
"in function " <<
F.getName() <<
'\n';
8196 bool doFinalization(
Module &M)
override {
8197 bool HasErrors =
false;
8198 for (Function &
F : M)
8199 if (
F.isDeclaration())
8200 HasErrors |= !
V->verify(
F);
8202 HasErrors |= !
V->verify();
8203 if (FatalErrors && (HasErrors ||
V->hasBrokenDebugInfo()))
8208 void getAnalysisUsage(AnalysisUsage &AU)
const override {
8216template <
typename... Tys>
void TBAAVerifier::CheckFailed(Tys &&... Args) {
8218 return Diagnostic->CheckFailed(
Args...);
8221#define CheckTBAA(C, ...) \
8224 CheckFailed(__VA_ARGS__); \
8232TBAAVerifier::TBAABaseNodeSummary
8236 CheckFailed(
"Base nodes must have at least two operands",
I, BaseNode);
8240 auto Itr = TBAABaseNodes.find(BaseNode);
8241 if (Itr != TBAABaseNodes.end())
8244 auto Result = verifyTBAABaseNodeImpl(
I, BaseNode, IsNewFormat);
8245 auto InsertResult = TBAABaseNodes.insert({BaseNode, Result});
8247 assert(InsertResult.second &&
"We just checked!");
8251TBAAVerifier::TBAABaseNodeSummary
8252TBAAVerifier::verifyTBAABaseNodeImpl(
const Instruction *
I,
8253 const MDNode *BaseNode,
bool IsNewFormat) {
8254 const TBAAVerifier::TBAABaseNodeSummary InvalidNode = {
true, ~0
u};
8258 return isValidScalarTBAANode(BaseNode)
8259 ? TBAAVerifier::TBAABaseNodeSummary({
false, 0})
8265 CheckFailed(
"Access tag nodes must have the number of operands that is a "
8266 "multiple of 3!", BaseNode);
8271 CheckFailed(
"Struct tag nodes must have an odd number of operands!",
8281 if (!TypeSizeNode) {
8282 CheckFailed(
"Type size nodes must be constants!",
I, BaseNode);
8289 CheckFailed(
"Struct tag nodes have a string as their first operand",
8296 std::optional<APInt> PrevOffset;
8301 unsigned FirstFieldOpNo = IsNewFormat ? 3 : 1;
8302 unsigned NumOpsPerField = IsNewFormat ? 3 : 2;
8303 for (
unsigned Idx = FirstFieldOpNo; Idx < BaseNode->
getNumOperands();
8304 Idx += NumOpsPerField) {
8305 const MDOperand &FieldTy = BaseNode->
getOperand(Idx);
8306 const MDOperand &FieldOffset = BaseNode->
getOperand(Idx + 1);
8308 CheckFailed(
"Incorrect field entry in struct type node!",
I, BaseNode);
8313 auto *OffsetEntryCI =
8315 if (!OffsetEntryCI) {
8316 CheckFailed(
"Offset entries must be constants!",
I, BaseNode);
8322 BitWidth = OffsetEntryCI->getBitWidth();
8324 if (OffsetEntryCI->getBitWidth() !=
BitWidth) {
8326 "Bitwidth between the offsets and struct type entries must match",
I,
8338 !PrevOffset || PrevOffset->ule(OffsetEntryCI->getValue());
8341 CheckFailed(
"Offsets must be increasing!",
I, BaseNode);
8345 PrevOffset = OffsetEntryCI->getValue();
8350 if (!MemberSizeNode) {
8351 CheckFailed(
"Member size entries must be constants!",
I, BaseNode);
8358 return Failed ? InvalidNode
8359 : TBAAVerifier::TBAABaseNodeSummary(
false,
BitWidth);
8381 return Parent && Visited.
insert(Parent).second &&
8385bool TBAAVerifier::isValidScalarTBAANode(
const MDNode *MD) {
8386 auto ResultIt = TBAAScalarNodes.find(MD);
8387 if (ResultIt != TBAAScalarNodes.end())
8388 return ResultIt->second;
8390 SmallPtrSet<const MDNode *, 4> Visited;
8392 auto InsertResult = TBAAScalarNodes.insert({MD,
Result});
8394 assert(InsertResult.second &&
"Just checked!");
8403MDNode *TBAAVerifier::getFieldNodeFromTBAABaseNode(
const Instruction *
I,
8404 const MDNode *BaseNode,
8415 unsigned FirstFieldOpNo = IsNewFormat ? 3 : 1;
8416 unsigned NumOpsPerField = IsNewFormat ? 3 : 2;
8417 for (
unsigned Idx = FirstFieldOpNo; Idx < BaseNode->
getNumOperands();
8418 Idx += NumOpsPerField) {
8419 auto *OffsetEntryCI =
8421 if (OffsetEntryCI->getValue().ugt(
Offset)) {
8422 if (Idx == FirstFieldOpNo) {
8423 CheckFailed(
"Could not find TBAA parent in struct type node",
I,
8428 unsigned PrevIdx = Idx - NumOpsPerField;
8429 auto *PrevOffsetEntryCI =
8431 Offset -= PrevOffsetEntryCI->getValue();
8439 Offset -= LastOffsetEntryCI->getValue();
8444 if (!
Type ||
Type->getNumOperands() < 3)
8460 "This instruction shall not have a TBAA access tag!",
I);
8462 bool IsStructPathTBAA =
8466 "Old-style TBAA is no longer allowed, use struct-path TBAA instead",
8476 "Access tag metadata must have either 4 or 5 operands",
I, MD);
8479 "Struct tag metadata must have either 3 or 4 operands",
I, MD);
8486 CheckTBAA(AccessSizeNode,
"Access size field must be a constant",
I, MD);
8490 unsigned ImmutabilityFlagOpNo = IsNewFormat ? 4 : 3;
8495 "Immutability tag on struct tag metadata must be a constant",
I,
8498 IsImmutableCI->isZero() || IsImmutableCI->isOne(),
8499 "Immutability part of the struct tag metadata must be either 0 or 1",
I,
8504 "Malformed struct tag metadata: base and access-type "
8505 "should be non-null and point to Metadata nodes",
8506 I, MD, BaseNode, AccessType);
8509 CheckTBAA(isValidScalarTBAANode(AccessType),
8510 "Access type node must be a valid scalar type",
I, MD,
8515 CheckTBAA(OffsetCI,
"Offset must be constant integer",
I, MD);
8518 bool SeenAccessTypeInPath =
false;
8524 getFieldNodeFromTBAABaseNode(
I, BaseNode,
Offset, IsNewFormat)) {
8525 if (!StructPath.
insert(BaseNode).second) {
8526 CheckFailed(
"Cycle detected in struct path",
I, MD);
8531 unsigned BaseNodeBitWidth;
8532 std::tie(
Invalid, BaseNodeBitWidth) =
8533 verifyTBAABaseNode(
I, BaseNode, IsNewFormat);
8540 SeenAccessTypeInPath |= BaseNode == AccessType;
8542 if (isValidScalarTBAANode(BaseNode) || BaseNode == AccessType)
8547 (BaseNodeBitWidth == 0 &&
Offset == 0) ||
8548 (IsNewFormat && BaseNodeBitWidth == ~0u),
8549 "Access bit-width not the same as description bit-width",
I, MD,
8550 BaseNodeBitWidth,
Offset.getBitWidth());
8552 if (IsNewFormat && SeenAccessTypeInPath)
8556 CheckTBAA(SeenAccessTypeInPath,
"Did not see access type in access path!",
I,
8561char VerifierLegacyPass::ID = 0;
8562INITIALIZE_PASS(VerifierLegacyPass,
"verify",
"Module Verifier",
false,
false)
8565 return new VerifierLegacyPass(FatalErrors);
8583 if (FatalErrors && (Res.IRBroken || Res.DebugInfoBroken))
8591 if (res.IRBroken && FatalErrors)
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
AMDGPU address space definition.
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.
static constexpr Value * getValue(Ty &ValueOrUse)
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 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 isElementwise() const
Return true if this RMW has elementwise vector semantics.
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.
auto operand_bundles() const
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.
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.
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 LLVM_ABI 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
LLVM_ABI MDNode * getAsMDNode() const
Return this as a bar MDNode.
ValueT lookup(const_arg_type_t< KeyT > Val) const
Return the entry for the specified key, or a default constructed value if no such entry exists.
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.
static bool isSupportedFloatingPointType(Type *Ty)
Returns true if Ty is a supported floating-point type for phi, select, or call FPMathOperators.
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 const Module * getModule() const
Return the module owning the function this instruction belongs to or nullptr it the function does not...
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.
Metadata * getModuleFlag(StringRef Key) const
Return the corresponding value if Key appears in module flags, otherwise return null.
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
Check if the string is empty.
std::pair< typename Base::iterator, bool > insert(StringRef key)
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.
std::pair< iterator, bool > insert(const ValueT &V)
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 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 isSignatureValid(Intrinsic::ID ID, FunctionType *FT, SmallVectorImpl< Type * > &OverloadTys, raw_ostream &OS=nulls())
Returns true if FT is a valid function type for intrinsic ID.
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)
@ DW_LLVM_LANG_DIALECT_max
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 * > extract_or_null(Y &&MD)
Extract a Value from Metadata, 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.
BundleAttr getBundleAttrFromOBU(OperandBundleUse OBU)
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.
bool isPointerTy(const Type *T)
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_ATTRIBUTE_VISIBILITY_DEFAULT AnalysisKey InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key
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).