96#include "llvm/IR/IntrinsicsAArch64.h"
97#include "llvm/IR/IntrinsicsAMDGPU.h"
98#include "llvm/IR/IntrinsicsARM.h"
99#include "llvm/IR/IntrinsicsNVPTX.h"
100#include "llvm/IR/IntrinsicsWebAssembly.h"
140 cl::desc(
"Ensure that llvm.experimental.noalias.scope.decl for identical "
141 "scopes are not dominating"));
164 *
OS <<
"; ModuleID = '" << M->getModuleIdentifier() <<
"'\n";
177 V.printAsOperand(*
OS,
true,
MST);
182 void Write(
const DbgRecord *DR) {
198 *
OS <<
"declare_value";
219 template <
class T>
void Write(
const MDTupleTypedArrayWrapper<T> &MD) {
223 void Write(
const NamedMDNode *NMD) {
236 void Write(
const Comdat *
C) {
242 void Write(
const APInt *AI) {
248 void Write(
const unsigned i) { *
OS << i <<
'\n'; }
254 *
OS <<
A->getAsString() <<
'\n';
258 void Write(
const AttributeSet *AS) {
265 void Write(
const AttributeList *AL) {
271 void Write(Printable
P) { *
OS <<
P <<
'\n'; }
273 template <
typename T>
void Write(ArrayRef<T> Vs) {
274 for (
const T &V : Vs)
278 template <
typename T1,
typename... Ts>
279 void WriteTs(
const T1 &V1,
const Ts &... Vs) {
284 template <
typename... Ts>
void WriteTs() {}
293 *
OS << Message <<
'\n';
301 template <
typename T1,
typename... Ts>
311 *
OS << Message <<
'\n';
317 template <
typename T1,
typename... Ts>
349 Type *LandingPadResultTy;
356 bool HasDebugInfo =
false;
399 SawFrameEscape(
false), TBAAVerifyHelper(this) {
400 TreatBrokenDebugInfoAsError = ShouldTreatBrokenDebugInfoAsError;
403 bool hasBrokenDebugInfo()
const {
return BrokenDebugInfo; }
405 bool verify(
const Function &
F) {
406 llvm::TimeTraceScope timeScope(
"Verifier");
408 "An instance of this class only works with a specific module!");
418 for (
const BasicBlock &BB :
F) {
419 if (!BB.empty() && BB.back().isTerminator())
423 *OS <<
"Basic Block in function '" <<
F.getName()
424 <<
"' does not have terminator!\n";
425 BB.printAsOperand(*OS,
true, MST);
433 DT.recalculate(
const_cast<Function &
>(
F));
435 auto FailureCB = [
this](
const Twine &Message) {
436 this->CheckFailed(Message);
438 ConvergenceVerifyHelper.initialize(OS, FailureCB,
F);
443 verifySiblingFuncletUnwinds();
445 if (ConvergenceVerifyHelper.sawTokens())
446 ConvergenceVerifyHelper.verify(DT);
448 InstsInThisBlock.clear();
450 LandingPadResultTy =
nullptr;
451 SawFrameEscape =
false;
452 SiblingFuncletInfo.clear();
453 verifyNoAliasScopeDecl();
454 NoAliasScopeDecls.clear();
464 for (
const Function &
F : M)
465 if (
F.getIntrinsicID() == Intrinsic::experimental_deoptimize)
466 DeoptimizeDeclarations.push_back(&
F);
470 verifyFrameRecoverIndices();
471 for (
const GlobalVariable &GV :
M.globals())
472 visitGlobalVariable(GV);
474 for (
const GlobalAlias &GA :
M.aliases())
475 visitGlobalAlias(GA);
477 for (
const GlobalIFunc &GI :
M.ifuncs())
478 visitGlobalIFunc(GI);
480 for (
const NamedMDNode &NMD :
M.named_metadata())
481 visitNamedMDNode(NMD);
483 for (
const StringMapEntry<Comdat> &SMEC :
M.getComdatSymbolTable())
484 visitComdat(SMEC.getValue());
488 visitModuleCommandLines();
489 visitModuleErrnoTBAA();
491 verifyCompileUnits();
493 verifyDeoptimizeCallingConvs();
494 DISubprogramAttachments.clear();
500 enum class AreDebugLocsAllowed {
No,
Yes };
504 enum class RangeLikeMetadataKind {
511 void visitGlobalValue(
const GlobalValue &GV);
512 void visitGlobalVariable(
const GlobalVariable &GV);
513 void visitGlobalAlias(
const GlobalAlias &GA);
514 void visitGlobalIFunc(
const GlobalIFunc &GI);
515 void visitAliaseeSubExpr(
const GlobalAlias &
A,
const Constant &
C);
516 void visitAliaseeSubExpr(SmallPtrSetImpl<const GlobalAlias *> &Visited,
517 const GlobalAlias &
A,
const Constant &
C);
518 void visitNamedMDNode(
const NamedMDNode &NMD);
519 void visitMDNode(
const MDNode &MD, AreDebugLocsAllowed AllowLocs);
520 void visitMetadataAsValue(
const MetadataAsValue &MD, Function *
F);
521 void visitValueAsMetadata(
const ValueAsMetadata &MD, Function *
F);
522 void visitDIArgList(
const DIArgList &AL, Function *
F);
523 void visitComdat(
const Comdat &
C);
524 void visitModuleIdents();
525 void visitModuleCommandLines();
526 void visitModuleErrnoTBAA();
527 void visitModuleFlags();
528 void visitModuleFlag(
const MDNode *
Op,
529 DenseMap<const MDString *, const MDNode *> &SeenIDs,
530 SmallVectorImpl<const MDNode *> &Requirements);
531 void visitModuleFlagCGProfileEntry(
const MDOperand &MDO);
532 void visitFunction(
const Function &
F);
533 void visitBasicBlock(BasicBlock &BB);
534 void verifyRangeLikeMetadata(
const Value &V,
const MDNode *
Range,
Type *Ty,
535 RangeLikeMetadataKind Kind);
536 void visitRangeMetadata(Instruction &
I, MDNode *
Range,
Type *Ty);
537 void visitNoFPClassMetadata(Instruction &
I, MDNode *
Range,
Type *Ty);
538 void visitNoaliasAddrspaceMetadata(Instruction &
I, MDNode *
Range,
Type *Ty);
539 void visitDereferenceableMetadata(Instruction &
I, MDNode *MD);
540 void visitNofreeMetadata(Instruction &
I, MDNode *MD);
541 void visitProfMetadata(Instruction &
I, MDNode *MD);
542 void visitCallStackMetadata(MDNode *MD);
543 void visitMemProfMetadata(Instruction &
I, MDNode *MD);
544 void visitCallsiteMetadata(Instruction &
I, MDNode *MD);
545 void visitCalleeTypeMetadata(Instruction &
I, MDNode *MD);
546 void visitDIAssignIDMetadata(Instruction &
I, MDNode *MD);
547 void visitMMRAMetadata(Instruction &
I, MDNode *MD);
548 void visitAnnotationMetadata(MDNode *Annotation);
549 void visitAliasScopeMetadata(
const MDNode *MD);
550 void visitAliasScopeListMetadata(
const MDNode *MD);
551 void visitAccessGroupMetadata(
const MDNode *MD);
552 void visitCapturesMetadata(Instruction &
I,
const MDNode *Captures);
553 void visitAllocTokenMetadata(Instruction &
I, MDNode *MD);
554 void visitInlineHistoryMetadata(Instruction &
I, MDNode *MD);
556 template <
class Ty>
bool isValidMetadataArray(
const MDTuple &
N);
557#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) void visit##CLASS(const CLASS &N);
558#include "llvm/IR/Metadata.def"
559 void visitDIType(
const DIType &
N);
560 void visitDIScope(
const DIScope &
N);
584 void checkPtrToAddr(
Type *SrcTy,
Type *DestTy,
const Value &V);
589 void visitPHINode(
PHINode &PN);
598 void visitVAArgInst(
VAArgInst &VAA) { visitInstruction(VAA); }
599 void visitCallInst(CallInst &CI);
600 void visitInvokeInst(InvokeInst &
II);
601 void visitGetElementPtrInst(GetElementPtrInst &
GEP);
602 void visitLoadInst(LoadInst &LI);
603 void visitStoreInst(StoreInst &SI);
604 void verifyDominatesUse(Instruction &
I,
unsigned i);
605 void visitInstruction(Instruction &
I);
606 void visitTerminator(Instruction &
I);
607 void visitCondBrInst(CondBrInst &BI);
608 void visitReturnInst(ReturnInst &RI);
609 void visitSwitchInst(SwitchInst &SI);
610 void visitIndirectBrInst(IndirectBrInst &BI);
611 void visitCallBrInst(CallBrInst &CBI);
612 void visitSelectInst(SelectInst &SI);
613 void visitUserOp1(Instruction &
I);
614 void visitUserOp2(Instruction &
I) { visitUserOp1(
I); }
616 void visitConstrainedFPIntrinsic(ConstrainedFPIntrinsic &FPI);
617 void visitVPIntrinsic(VPIntrinsic &VPI);
618 void visitDbgLabelIntrinsic(StringRef Kind, DbgLabelInst &DLI);
619 void visitAtomicCmpXchgInst(AtomicCmpXchgInst &CXI);
620 void visitAtomicRMWInst(AtomicRMWInst &RMWI);
621 void visitFenceInst(FenceInst &FI);
622 void visitAllocaInst(AllocaInst &AI);
623 void visitExtractValueInst(ExtractValueInst &EVI);
624 void visitInsertValueInst(InsertValueInst &IVI);
625 void visitEHPadPredecessors(Instruction &
I);
626 void visitLandingPadInst(LandingPadInst &LPI);
627 void visitResumeInst(ResumeInst &RI);
628 void visitCatchPadInst(CatchPadInst &CPI);
629 void visitCatchReturnInst(CatchReturnInst &CatchReturn);
630 void visitCleanupPadInst(CleanupPadInst &CPI);
631 void visitFuncletPadInst(FuncletPadInst &FPI);
632 void visitCatchSwitchInst(CatchSwitchInst &CatchSwitch);
633 void visitCleanupReturnInst(CleanupReturnInst &CRI);
635 void verifySwiftErrorCall(CallBase &
Call,
const Value *SwiftErrorVal);
636 void verifySwiftErrorValue(
const Value *SwiftErrorVal);
637 void verifyTailCCMustTailAttrs(
const AttrBuilder &Attrs, StringRef
Context);
638 void verifyMustTailCall(CallInst &CI);
639 bool verifyAttributeCount(AttributeList Attrs,
unsigned Params);
640 void verifyAttributeTypes(AttributeSet Attrs,
const Value *V);
641 void verifyParameterAttrs(AttributeSet Attrs,
Type *Ty,
const Value *V);
642 void checkUnsignedBaseTenFuncAttr(AttributeList Attrs, StringRef Attr,
644 void verifyFunctionAttrs(FunctionType *FT, AttributeList Attrs,
645 const Value *V,
bool IsIntrinsic,
bool IsInlineAsm);
646 void verifyFunctionMetadata(
ArrayRef<std::pair<unsigned, MDNode *>> MDs);
647 void verifyUnknownProfileMetadata(MDNode *MD);
648 void visitConstantExprsRecursively(
const Constant *EntryC);
649 void visitConstantExpr(
const ConstantExpr *CE);
650 void visitConstantPtrAuth(
const ConstantPtrAuth *CPA);
651 void verifyInlineAsmCall(
const CallBase &
Call);
652 void verifyStatepoint(
const CallBase &
Call);
653 void verifyFrameRecoverIndices();
654 void verifySiblingFuncletUnwinds();
656 void verifyFragmentExpression(
const DbgVariableRecord &
I);
657 template <
typename ValueOrMetadata>
658 void verifyFragmentExpression(
const DIVariable &V,
660 ValueOrMetadata *
Desc);
661 void verifyFnArgs(
const DbgVariableRecord &DVR);
662 void verifyNotEntryValue(
const DbgVariableRecord &
I);
665 void verifyCompileUnits();
669 void verifyDeoptimizeCallingConvs();
671 void verifyAttachedCallBundle(
const CallBase &
Call,
672 const OperandBundleUse &BU);
675 void verifyNoAliasScopeDecl();
681#define Check(C, ...) \
684 CheckFailed(__VA_ARGS__); \
691#define CheckDI(C, ...) \
694 DebugInfoCheckFailed(__VA_ARGS__); \
702 CheckDI(
I.DebugMarker->MarkedInstr == &
I,
703 "Instruction has invalid DebugMarker", &
I);
705 "PHI Node must not have any attached DbgRecords", &
I);
708 "DbgRecord had invalid DebugMarker", &
I, &DR);
711 visitMDNode(*
Loc, AreDebugLocsAllowed::Yes);
716 verifyFragmentExpression(*DVR);
717 verifyNotEntryValue(*DVR);
724void Verifier::visit(Instruction &
I) {
726 for (
unsigned i = 0, e =
I.getNumOperands(); i != e; ++i)
727 Check(
I.getOperand(i) !=
nullptr,
"Operand is null", &
I);
739 while (!WorkList.
empty()) {
741 if (!Visited.
insert(Cur).second)
748void Verifier::visitGlobalValue(
const GlobalValue &GV) {
750 "Global is external, but doesn't have external or weak linkage!", &GV);
753 if (
const MDNode *Associated =
754 GO->getMetadata(LLVMContext::MD_associated)) {
755 Check(Associated->getNumOperands() == 1,
756 "associated metadata must have one operand", &GV, Associated);
757 const Metadata *
Op = Associated->getOperand(0).get();
758 Check(
Op,
"associated metadata must have a global value", GO, Associated);
761 Check(VM,
"associated metadata must be ValueAsMetadata", GO, Associated);
764 "associated value must be pointer typed", GV, Associated);
766 const Value *Stripped = VM->getValue()->stripPointerCastsAndAliases();
768 "associated metadata must point to a GlobalObject", GO, Stripped);
769 Check(Stripped != GO,
770 "global values should not associate to themselves", GO,
776 if (
const MDNode *AbsoluteSymbol =
777 GO->getMetadata(LLVMContext::MD_absolute_symbol)) {
778 verifyRangeLikeMetadata(*GO, AbsoluteSymbol,
779 DL.getIntPtrType(GO->getType()),
780 RangeLikeMetadataKind::AbsoluteSymbol);
783 if (GO->hasMetadata(LLVMContext::MD_implicit_ref)) {
784 Check(!GO->isDeclaration(),
785 "ref metadata must not be placed on a declaration", GO);
788 GO->getMetadata(LLVMContext::MD_implicit_ref, MDs);
789 for (
const MDNode *MD : MDs) {
790 Check(MD->getNumOperands() == 1,
"ref metadata must have one operand",
794 Check(VM,
"ref metadata must be ValueAsMetadata", GO, MD);
797 "ref value must be pointer typed", GV, MD);
801 "ref metadata must point to a GlobalObject", GO, Stripped);
802 Check(Stripped != GO,
"values should not reference themselves", GO,
808 if (
auto *Props = GO->getMetadata(LLVMContext::MD_elf_section_properties)) {
809 Check(Props->getNumOperands() == 2,
810 "elf_section_properties metadata must have two operands", GO,
812 if (Props->getNumOperands() == 2) {
814 Check(
Type,
"type field must be ConstantAsMetadata", GO, Props);
816 Check(TypeInt,
"type field must be ConstantInt", GO, Props);
819 Check(Entsize,
"entsize field must be ConstantAsMetadata", GO, Props);
821 Check(EntsizeInt,
"entsize field must be ConstantInt", GO, Props);
827 "Only global variables can have appending linkage!", &GV);
832 "Only global arrays can have appending linkage!", GVar);
836 Check(!GV.
hasComdat(),
"Declaration may not be in a Comdat!", &GV);
840 "dllexport GlobalValue must have default or protected visibility",
845 "dllimport GlobalValue must have default visibility", &GV);
846 Check(!GV.
isDSOLocal(),
"GlobalValue with DLLImport Storage is dso_local!",
852 "Global is marked as dllimport, but not external", &GV);
857 "GlobalValue with local linkage or non-default "
858 "visibility must be dso_local!",
863 if (!
I->getParent() || !
I->getParent()->getParent())
864 CheckFailed(
"Global is referenced by parentless instruction!", &GV, &M,
866 else if (
I->getParent()->getParent()->getParent() != &M)
867 CheckFailed(
"Global is referenced in a different module!", &GV, &M,
I,
868 I->getParent()->getParent(),
869 I->getParent()->getParent()->getParent());
872 if (
F->getParent() != &M)
873 CheckFailed(
"Global is used by function in a different module", &GV, &M,
881void Verifier::visitGlobalVariable(
const GlobalVariable &GV) {
885 Check(
A->value() <= Value::MaximumAlignment,
886 "huge alignment values are unsupported", &GV);
891 "Global variable initializer type does not match global "
895 "Global variable initializer must be sized", &GV);
901 "'common' global must have a zero initializer!", &GV);
904 Check(!GV.
hasComdat(),
"'common' global may not be in a Comdat!", &GV);
909 GV.
getName() ==
"llvm.global_dtors")) {
911 "invalid linkage for intrinsic global variable", &GV);
913 "invalid uses of intrinsic global variable", &GV);
920 PointerType::get(
Context,
DL.getProgramAddressSpace());
924 "wrong type for intrinsic global variable", &GV);
926 "the third field of the element type is mandatory, "
927 "specify ptr null to migrate from the obsoleted 2-field form");
935 GV.
getName() ==
"llvm.compiler.used")) {
937 "invalid linkage for intrinsic global variable", &GV);
939 "invalid uses of intrinsic global variable", &GV);
943 Check(PTy,
"wrong type for intrinsic global variable", &GV);
947 Check(InitArray,
"wrong initializer for intrinsic global variable",
953 Twine(
"invalid ") + GV.
getName() +
" member", V);
955 Twine(
"members of ") + GV.
getName() +
" must be named", V);
964 for (
auto *MD : MDs) {
966 visitDIGlobalVariableExpression(*GVE);
968 CheckDI(
false,
"!dbg attachment of global variable must be a "
969 "DIGlobalVariableExpression");
979 "Global @" + GV.
getName() +
" has illegal target extension type",
988 "Global variable is too large to fit into the address space", &GV,
992 visitGlobalValue(GV);
999 visitGlobalValue(GV);
1002void Verifier::visitAliaseeSubExpr(
const GlobalAlias &GA,
const Constant &
C) {
1003 SmallPtrSet<const GlobalAlias*, 4> Visited;
1005 visitAliaseeSubExpr(Visited, GA,
C);
1008void Verifier::visitAliaseeSubExpr(SmallPtrSetImpl<const GlobalAlias*> &Visited,
1009 const GlobalAlias &GA,
const Constant &
C) {
1013 "available_externally alias must point to available_externally "
1024 Check(Visited.
insert(GA2).second,
"Aliases cannot form a cycle", &GA);
1026 Check(!GA2->isInterposable(),
1027 "Alias cannot point to an interposable alias", &GA);
1036 visitConstantExprsRecursively(CE);
1038 for (
const Use &U :
C.operands()) {
1041 visitAliaseeSubExpr(Visited, GA, *GA2->getAliasee());
1043 visitAliaseeSubExpr(Visited, GA, *C2);
1047void Verifier::visitGlobalAlias(
const GlobalAlias &GA) {
1049 "Alias should have private, internal, linkonce, weak, linkonce_odr, "
1050 "weak_odr, external, or available_externally linkage!",
1053 Check(Aliasee,
"Aliasee cannot be NULL!", &GA);
1055 "Alias and aliasee types should match!", &GA);
1058 "Aliasee should be either GlobalValue or ConstantExpr", &GA);
1060 visitAliaseeSubExpr(GA, *Aliasee);
1062 visitGlobalValue(GA);
1065void Verifier::visitGlobalIFunc(
const GlobalIFunc &GI) {
1066 visitGlobalValue(GI);
1070 for (
const auto &
I : MDs) {
1071 CheckDI(
I.first != LLVMContext::MD_dbg,
1072 "an ifunc may not have a !dbg attachment", &GI);
1073 Check(
I.first != LLVMContext::MD_prof,
1074 "an ifunc may not have a !prof attachment", &GI);
1075 visitMDNode(*
I.second, AreDebugLocsAllowed::No);
1079 "IFunc should have private, internal, linkonce, weak, linkonce_odr, "
1080 "weak_odr, or external linkage!",
1085 Check(Resolver,
"IFunc must have a Function resolver", &GI);
1087 "IFunc resolver must be a definition", &GI);
1094 "IFunc resolver must return a pointer", &GI);
1097 "IFunc resolver has incorrect type", &GI);
1100void Verifier::visitNamedMDNode(
const NamedMDNode &NMD) {
1105 "unrecognized named metadata node in the llvm.dbg namespace", &NMD);
1106 for (
const MDNode *MD : NMD.
operands()) {
1107 if (NMD.
getName() ==
"llvm.dbg.cu")
1113 visitMDNode(*MD, AreDebugLocsAllowed::Yes);
1117void Verifier::visitMDNode(
const MDNode &BaseMD,
1118 AreDebugLocsAllowed AllowLocs) {
1121 if (!MDNodes.
insert(&BaseMD).second)
1124 std::queue<const MDNode *> Worklist;
1125 Worklist.push(&BaseMD);
1127 while (!Worklist.empty()) {
1128 const MDNode *CurrentMD = Worklist.front();
1131 "MDNode context does not match Module context!", CurrentMD);
1136 case Metadata::MDTupleKind:
1138#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) \
1139 case Metadata::CLASS##Kind: \
1140 visit##CLASS(cast<CLASS>(*CurrentMD)); \
1142#include "llvm/IR/Metadata.def"
1151 "DILocation not allowed within this metadata node", CurrentMD,
1159 visitValueAsMetadata(*V,
nullptr);
1173 "Expected second operand to be an integer constant of type i32 or "
1181 Check(CurrentMD->
isResolved(),
"All nodes should be resolved!", CurrentMD);
1185void Verifier::visitValueAsMetadata(
const ValueAsMetadata &MD, Function *
F) {
1188 "Unexpected metadata round-trip through values", &MD, MD.
getValue());
1194 Check(
F,
"function-local metadata used outside a function", L);
1200 Check(
I->getParent(),
"function-local metadata not in basic block", L,
I);
1206 assert(ActualF &&
"Unimplemented function local metadata case!");
1208 Check(ActualF ==
F,
"function-local metadata used in wrong function", L);
1211void Verifier::visitDIArgList(
const DIArgList &AL, Function *
F) {
1212 for (
const ValueAsMetadata *VAM :
AL.getArgs())
1213 visitValueAsMetadata(*VAM,
F);
1216void Verifier::visitMetadataAsValue(
const MetadataAsValue &MDV, Function *
F) {
1219 visitMDNode(*
N, AreDebugLocsAllowed::No);
1225 if (!MDNodes.
insert(MD).second)
1229 visitValueAsMetadata(*V,
F);
1232 visitDIArgList(*AL,
F);
1240void Verifier::visitDILocation(
const DILocation &
N) {
1242 "location requires a valid scope", &
N,
N.getRawScope());
1243 if (
auto *IA =
N.getRawInlinedAt())
1246 CheckDI(
SP->isDefinition(),
"scope points into the type hierarchy", &
N);
1249void Verifier::visitGenericDINode(
const GenericDINode &
N) {
1253void Verifier::visitDIScope(
const DIScope &
N) {
1254 if (
auto *
F =
N.getRawFile())
1258void Verifier::visitDIType(
const DIType &
N) {
1261 CheckDI(
N.getRawFile() ||
N.getLine() == 0,
"line specified with no file", &
N,
1265void Verifier::visitDISubrangeType(
const DISubrangeType &
N) {
1268 CheckDI(
N.getTag() == dwarf::DW_TAG_subrange_type,
"invalid tag", &
N);
1271 auto *LBound =
N.getRawLowerBound();
1275 "LowerBound must be signed constant or DIVariable or DIExpression or "
1278 auto *UBound =
N.getRawUpperBound();
1282 "UpperBound must be signed constant or DIVariable or DIExpression or "
1285 auto *Stride =
N.getRawStride();
1288 "Stride must be signed constant or DIVariable or DIExpression", &
N);
1289 auto *Bias =
N.getRawBias();
1292 "Bias must be signed constant or DIVariable or DIExpression", &
N);
1294 auto *
Size =
N.getRawSizeInBits();
1296 "SizeInBits must be a constant");
1299void Verifier::visitDISubrange(
const DISubrange &
N) {
1300 CheckDI(
N.getTag() == dwarf::DW_TAG_subrange_type,
"invalid tag", &
N);
1301 CheckDI(!
N.getRawCountNode() || !
N.getRawUpperBound(),
1302 "Subrange can have any one of count or upperBound", &
N);
1303 auto *CBound =
N.getRawCountNode();
1306 "Count must be signed constant or DIVariable or DIExpression", &
N);
1307 auto Count =
N.getCount();
1310 "invalid subrange count", &
N);
1311 auto *LBound =
N.getRawLowerBound();
1314 "LowerBound must be signed constant or DIVariable or DIExpression",
1316 auto *UBound =
N.getRawUpperBound();
1319 "UpperBound must be signed constant or DIVariable or DIExpression",
1321 auto *Stride =
N.getRawStride();
1324 "Stride must be signed constant or DIVariable or DIExpression", &
N);
1327void Verifier::visitDIGenericSubrange(
const DIGenericSubrange &
N) {
1328 CheckDI(
N.getTag() == dwarf::DW_TAG_generic_subrange,
"invalid tag", &
N);
1329 CheckDI(!
N.getRawCountNode() || !
N.getRawUpperBound(),
1330 "GenericSubrange can have any one of count or upperBound", &
N);
1331 auto *CBound =
N.getRawCountNode();
1333 "Count must be signed constant or DIVariable or DIExpression", &
N);
1334 auto *LBound =
N.getRawLowerBound();
1335 CheckDI(LBound,
"GenericSubrange must contain lowerBound", &
N);
1337 "LowerBound must be signed constant or DIVariable or DIExpression",
1339 auto *UBound =
N.getRawUpperBound();
1341 "UpperBound must be signed constant or DIVariable or DIExpression",
1343 auto *Stride =
N.getRawStride();
1344 CheckDI(Stride,
"GenericSubrange must contain stride", &
N);
1346 "Stride must be signed constant or DIVariable or DIExpression", &
N);
1349void Verifier::visitDIEnumerator(
const DIEnumerator &
N) {
1350 CheckDI(
N.getTag() == dwarf::DW_TAG_enumerator,
"invalid tag", &
N);
1353void Verifier::visitDIBasicType(
const DIBasicType &
N) {
1356 CheckDI(
N.getTag() == dwarf::DW_TAG_base_type ||
1357 N.getTag() == dwarf::DW_TAG_unspecified_type ||
1358 N.getTag() == dwarf::DW_TAG_string_type,
1361 auto *
Size =
N.getRawSizeInBits();
1363 "SizeInBits must be a constant");
1366void Verifier::visitDIFixedPointType(
const DIFixedPointType &
N) {
1367 visitDIBasicType(
N);
1369 CheckDI(
N.getTag() == dwarf::DW_TAG_base_type,
"invalid tag", &
N);
1370 CheckDI(
N.getEncoding() == dwarf::DW_ATE_signed_fixed ||
1371 N.getEncoding() == dwarf::DW_ATE_unsigned_fixed,
1372 "invalid encoding", &
N);
1376 "invalid kind", &
N);
1378 N.getFactorRaw() == 0,
1379 "factor should be 0 for rationals", &
N);
1381 (
N.getNumeratorRaw() == 0 &&
N.getDenominatorRaw() == 0),
1382 "numerator and denominator should be 0 for non-rationals", &
N);
1385void Verifier::visitDIStringType(
const DIStringType &
N) {
1388 CheckDI(
N.getTag() == dwarf::DW_TAG_string_type,
"invalid tag", &
N);
1389 CheckDI(!(
N.isBigEndian() &&
N.isLittleEndian()),
"has conflicting flags",
1393void Verifier::visitDIDerivedType(
const DIDerivedType &
N) {
1397 CheckDI(
N.getTag() == dwarf::DW_TAG_typedef ||
1398 N.getTag() == dwarf::DW_TAG_pointer_type ||
1399 N.getTag() == dwarf::DW_TAG_ptr_to_member_type ||
1400 N.getTag() == dwarf::DW_TAG_reference_type ||
1401 N.getTag() == dwarf::DW_TAG_rvalue_reference_type ||
1402 N.getTag() == dwarf::DW_TAG_const_type ||
1403 N.getTag() == dwarf::DW_TAG_immutable_type ||
1404 N.getTag() == dwarf::DW_TAG_volatile_type ||
1405 N.getTag() == dwarf::DW_TAG_restrict_type ||
1406 N.getTag() == dwarf::DW_TAG_atomic_type ||
1407 N.getTag() == dwarf::DW_TAG_LLVM_ptrauth_type ||
1408 N.getTag() == dwarf::DW_TAG_member ||
1409 (
N.getTag() == dwarf::DW_TAG_variable &&
N.isStaticMember()) ||
1410 N.getTag() == dwarf::DW_TAG_inheritance ||
1411 N.getTag() == dwarf::DW_TAG_friend ||
1412 N.getTag() == dwarf::DW_TAG_set_type ||
1413 N.getTag() == dwarf::DW_TAG_template_alias,
1415 if (
N.getTag() == dwarf::DW_TAG_ptr_to_member_type) {
1416 CheckDI(
isType(
N.getRawExtraData()),
"invalid pointer to member type", &
N,
1417 N.getRawExtraData());
1418 }
else if (
N.getTag() == dwarf::DW_TAG_template_alias) {
1420 N.getRawExtraData());
1421 }
else if (
N.getTag() == dwarf::DW_TAG_inheritance ||
1422 N.getTag() == dwarf::DW_TAG_member ||
1423 N.getTag() == dwarf::DW_TAG_variable) {
1424 auto *ExtraData =
N.getRawExtraData();
1425 auto IsValidExtraData = [&]() {
1426 if (ExtraData ==
nullptr)
1432 if (Tuple->getNumOperands() != 1)
1439 "extraData must be ConstantAsMetadata, MDString, DIObjCProperty, "
1440 "or MDTuple with single ConstantAsMetadata operand",
1444 if (
N.getTag() == dwarf::DW_TAG_set_type) {
1445 if (
auto *
T =
N.getRawBaseType()) {
1450 (Enum &&
Enum->getTag() == dwarf::DW_TAG_enumeration_type) ||
1451 (Subrange &&
Subrange->getTag() == dwarf::DW_TAG_subrange_type) ||
1452 (
Basic && (
Basic->getEncoding() == dwarf::DW_ATE_unsigned ||
1453 Basic->getEncoding() == dwarf::DW_ATE_signed ||
1454 Basic->getEncoding() == dwarf::DW_ATE_unsigned_char ||
1455 Basic->getEncoding() == dwarf::DW_ATE_signed_char ||
1456 Basic->getEncoding() == dwarf::DW_ATE_boolean)),
1457 "invalid set base type", &
N,
T);
1462 N.getRawBaseType());
1464 if (
N.getDWARFAddressSpace()) {
1465 CheckDI(
N.getTag() == dwarf::DW_TAG_pointer_type ||
1466 N.getTag() == dwarf::DW_TAG_reference_type ||
1467 N.getTag() == dwarf::DW_TAG_rvalue_reference_type,
1468 "DWARF address space only applies to pointer or reference types",
1472 auto *
Size =
N.getRawSizeInBits();
1475 "SizeInBits must be a constant or DIVariable or DIExpression");
1480 return ((Flags & DINode::FlagLValueReference) &&
1481 (Flags & DINode::FlagRValueReference)) ||
1482 ((Flags & DINode::FlagTypePassByValue) &&
1483 (Flags & DINode::FlagTypePassByReference));
1486void Verifier::visitTemplateParams(
const MDNode &
N,
const Metadata &RawParams) {
1488 CheckDI(Params,
"invalid template params", &
N, &RawParams);
1495void Verifier::visitDICompositeType(
const DICompositeType &
N) {
1499 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type ||
1500 N.getTag() == dwarf::DW_TAG_structure_type ||
1501 N.getTag() == dwarf::DW_TAG_union_type ||
1502 N.getTag() == dwarf::DW_TAG_enumeration_type ||
1503 N.getTag() == dwarf::DW_TAG_class_type ||
1504 N.getTag() == dwarf::DW_TAG_variant_part ||
1505 N.getTag() == dwarf::DW_TAG_variant ||
1506 N.getTag() == dwarf::DW_TAG_namelist,
1510 N.getRawBaseType());
1513 "invalid composite elements", &
N,
N.getRawElements());
1515 N.getRawVTableHolder());
1517 "invalid reference flags", &
N);
1518 unsigned DIBlockByRefStruct = 1 << 4;
1519 CheckDI((
N.getFlags() & DIBlockByRefStruct) == 0,
1520 "DIBlockByRefStruct on DICompositeType is no longer supported", &
N);
1522 "DISubprogram contains null entry in `elements` field", &
N);
1525 const DINodeArray
Elements =
N.getElements();
1527 Elements[0]->getTag() == dwarf::DW_TAG_subrange_type,
1528 "invalid vector, expected one element of type subrange", &
N);
1531 if (
auto *Params =
N.getRawTemplateParams())
1532 visitTemplateParams(
N, *Params);
1534 if (
auto *
D =
N.getRawDiscriminator()) {
1536 "discriminator can only appear on variant part");
1539 if (
N.getRawDataLocation()) {
1540 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1541 "dataLocation can only appear in array type");
1544 if (
N.getRawAssociated()) {
1545 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1546 "associated can only appear in array type");
1549 if (
N.getRawAllocated()) {
1550 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1551 "allocated can only appear in array type");
1554 if (
N.getRawRank()) {
1555 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1556 "rank can only appear in array type");
1559 if (
N.getTag() == dwarf::DW_TAG_array_type) {
1560 CheckDI(
N.getRawBaseType(),
"array types must have a base type", &
N);
1563 auto *
Size =
N.getRawSizeInBits();
1566 "SizeInBits must be a constant or DIVariable or DIExpression");
1569void Verifier::visitDISubroutineType(
const DISubroutineType &
N) {
1571 CheckDI(
N.getTag() == dwarf::DW_TAG_subroutine_type,
"invalid tag", &
N);
1572 if (
auto *Types =
N.getRawTypeArray()) {
1574 for (
Metadata *Ty :
N.getTypeArray()->operands()) {
1575 CheckDI(
isType(Ty),
"invalid subroutine type ref", &
N, Types, Ty);
1579 "invalid reference flags", &
N);
1582void Verifier::visitDIFile(
const DIFile &
N) {
1583 CheckDI(
N.getTag() == dwarf::DW_TAG_file_type,
"invalid tag", &
N);
1584 std::optional<DIFile::ChecksumInfo<StringRef>> Checksum =
N.getChecksum();
1586 CheckDI(Checksum->Kind <= DIFile::ChecksumKind::CSK_Last,
1587 "invalid checksum kind", &
N);
1589 switch (Checksum->Kind) {
1600 CheckDI(Checksum->Value.size() ==
Size,
"invalid checksum length", &
N);
1602 "invalid checksum", &
N);
1606void Verifier::visitDICompileUnit(
const DICompileUnit &
N) {
1607 CheckDI(
N.isDistinct(),
"compile units must be distinct", &
N);
1608 CheckDI(
N.getTag() == dwarf::DW_TAG_compile_unit,
"invalid tag", &
N);
1614 CheckDI(!
N.getFile()->getFilename().empty(),
"invalid filename", &
N,
1618 "invalid emission kind", &
N);
1620 if (
auto *Array =
N.getRawEnumTypes()) {
1622 for (
Metadata *
Op :
N.getEnumTypes()->operands()) {
1624 CheckDI(Enum &&
Enum->getTag() == dwarf::DW_TAG_enumeration_type,
1625 "invalid enum type", &
N,
N.getEnumTypes(),
Op);
1627 "function-local enum in a DICompileUnit's enum list", &
N,
1628 N.getEnumTypes(),
Op);
1631 if (
auto *Array =
N.getRawRetainedTypes()) {
1633 for (
Metadata *
Op :
N.getRetainedTypes()->operands()) {
1637 "invalid retained type", &
N,
Op);
1640 if (
auto *Array =
N.getRawGlobalVariables()) {
1642 for (
Metadata *
Op :
N.getGlobalVariables()->operands()) {
1644 "invalid global variable ref", &
N,
Op);
1647 if (
auto *Array =
N.getRawImportedEntities()) {
1649 for (
Metadata *
Op :
N.getImportedEntities()->operands()) {
1651 CheckDI(IE,
"invalid imported entity ref", &
N,
Op);
1653 "function-local imports are not allowed in a DICompileUnit's "
1654 "imported entities list",
1658 if (
auto *Array =
N.getRawMacros()) {
1667void Verifier::visitDISubprogram(
const DISubprogram &
N) {
1668 CheckDI(
N.getTag() == dwarf::DW_TAG_subprogram,
"invalid tag", &
N);
1670 if (
auto *
F =
N.getRawFile())
1673 CheckDI(
N.getLine() == 0,
"line specified with no file", &
N,
N.getLine());
1674 auto *
T =
N.getRawType();
1675 CheckDI(
T,
"DISubprogram requires a non-null type", &
N);
1677 CheckDI(
isType(
N.getRawContainingType()),
"invalid containing type", &
N,
1678 N.getRawContainingType());
1679 if (
auto *Params =
N.getRawTemplateParams())
1680 visitTemplateParams(
N, *Params);
1681 if (
auto *S =
N.getRawDeclaration())
1683 "invalid subprogram declaration", &
N, S);
1684 if (
auto *RawNode =
N.getRawRetainedNodes()) {
1686 CheckDI(Node,
"invalid retained nodes list", &
N, RawNode);
1688 DenseMap<unsigned, DILocalVariable *>
Args;
1690 CheckDI(
Op,
"nullptr in retained nodes", &
N, Node);
1692 auto True = [](
const Metadata *) {
return true; };
1693 auto False = [](
const Metadata *) {
return false; };
1694 bool IsTypeCorrect = DISubprogram::visitRetainedNode<bool>(
1695 Op, True, True, True, True, False);
1697 "invalid retained nodes, expected DILocalVariable, DILabel, "
1698 "DIImportedEntity or DIType",
1705 "invalid retained nodes, retained node is not local", &
N, Node,
1708 DISubprogram *RetainedNodeSP = RetainedNodeScope->getSubprogram();
1709 DICompileUnit *RetainedNodeUnit =
1710 RetainedNodeSP ? RetainedNodeSP->getUnit() :
nullptr;
1712 RetainedNodeSP == &
N,
1713 "invalid retained nodes, retained node does not belong to subprogram",
1714 &
N, Node, RetainedNode, RetainedNodeScope, RetainedNodeSP,
1720 if (
unsigned ArgNum = DV->getArg()) {
1722 CheckDI(Inserted || DV == ArgI->second,
1723 "invalid retained nodes, more than one local variable with the "
1724 "same argument index",
1725 &
N,
N.getUnit(), Node, RetainedNode, Args[ArgNum]);
1730 "invalid reference flags", &
N);
1732 auto *
Unit =
N.getRawUnit();
1733 if (
N.isDefinition()) {
1735 CheckDI(
N.isDistinct(),
"subprogram definitions must be distinct", &
N);
1736 CheckDI(Unit,
"subprogram definitions must have a compile unit", &
N);
1741 if (CT && CT->getRawIdentifier() &&
1742 M.getContext().isODRUniquingDebugTypes())
1744 "definition subprograms cannot be nested within DICompositeType "
1745 "when enabling ODR",
1749 CheckDI(!Unit,
"subprogram declarations must not have a compile unit", &
N);
1751 "subprogram declaration must not have a declaration field");
1754 if (
auto *RawThrownTypes =
N.getRawThrownTypes()) {
1756 CheckDI(ThrownTypes,
"invalid thrown types list", &
N, RawThrownTypes);
1762 if (
N.areAllCallsDescribed())
1764 "DIFlagAllCallsDescribed must be attached to a definition");
1767void Verifier::visitDILexicalBlockBase(
const DILexicalBlockBase &
N) {
1768 CheckDI(
N.getTag() == dwarf::DW_TAG_lexical_block,
"invalid tag", &
N);
1770 "invalid local scope", &
N,
N.getRawScope());
1772 CheckDI(
SP->isDefinition(),
"scope points into the type hierarchy", &
N);
1775void Verifier::visitDILexicalBlock(
const DILexicalBlock &
N) {
1776 visitDILexicalBlockBase(
N);
1779 "cannot have column info without line info", &
N);
1782void Verifier::visitDILexicalBlockFile(
const DILexicalBlockFile &
N) {
1783 visitDILexicalBlockBase(
N);
1786void Verifier::visitDICommonBlock(
const DICommonBlock &
N) {
1787 CheckDI(
N.getTag() == dwarf::DW_TAG_common_block,
"invalid tag", &
N);
1788 if (
auto *S =
N.getRawScope())
1790 if (
auto *S =
N.getRawDecl())
1794void Verifier::visitDINamespace(
const DINamespace &
N) {
1795 CheckDI(
N.getTag() == dwarf::DW_TAG_namespace,
"invalid tag", &
N);
1796 if (
auto *S =
N.getRawScope())
1800void Verifier::visitDIMacro(
const DIMacro &
N) {
1803 "invalid macinfo type", &
N);
1804 CheckDI(!
N.getName().empty(),
"anonymous macro", &
N);
1805 if (!
N.getValue().empty()) {
1806 assert(
N.getValue().data()[0] !=
' ' &&
"Macro value has a space prefix");
1810void Verifier::visitDIMacroFile(
const DIMacroFile &
N) {
1812 "invalid macinfo type", &
N);
1813 if (
auto *
F =
N.getRawFile())
1816 if (
auto *Array =
N.getRawElements()) {
1818 for (
Metadata *
Op :
N.getElements()->operands()) {
1824void Verifier::visitDIModule(
const DIModule &
N) {
1825 CheckDI(
N.getTag() == dwarf::DW_TAG_module,
"invalid tag", &
N);
1826 CheckDI(!
N.getName().empty(),
"anonymous module", &
N);
1829void Verifier::visitDITemplateParameter(
const DITemplateParameter &
N) {
1833void Verifier::visitDITemplateTypeParameter(
const DITemplateTypeParameter &
N) {
1834 visitDITemplateParameter(
N);
1836 CheckDI(
N.getTag() == dwarf::DW_TAG_template_type_parameter,
"invalid tag",
1840void Verifier::visitDITemplateValueParameter(
1841 const DITemplateValueParameter &
N) {
1842 visitDITemplateParameter(
N);
1844 CheckDI(
N.getTag() == dwarf::DW_TAG_template_value_parameter ||
1845 N.getTag() == dwarf::DW_TAG_GNU_template_template_param ||
1846 N.getTag() == dwarf::DW_TAG_GNU_template_parameter_pack,
1850void Verifier::visitDIVariable(
const DIVariable &
N) {
1851 if (
auto *S =
N.getRawScope())
1853 if (
auto *
F =
N.getRawFile())
1857void Verifier::visitDIGlobalVariable(
const DIGlobalVariable &
N) {
1861 CheckDI(
N.getTag() == dwarf::DW_TAG_variable,
"invalid tag", &
N);
1864 if (
N.isDefinition())
1865 CheckDI(
N.getType(),
"missing global variable type", &
N);
1866 if (
auto *Member =
N.getRawStaticDataMemberDeclaration()) {
1868 "invalid static data member declaration", &
N, Member);
1872void Verifier::visitDILocalVariable(
const DILocalVariable &
N) {
1877 CheckDI(
N.getTag() == dwarf::DW_TAG_variable,
"invalid tag", &
N);
1879 "local variable requires a valid scope", &
N,
N.getRawScope());
1880 if (
auto Ty =
N.getType())
1884void Verifier::visitDIAssignID(
const DIAssignID &
N) {
1885 CheckDI(!
N.getNumOperands(),
"DIAssignID has no arguments", &
N);
1886 CheckDI(
N.isDistinct(),
"DIAssignID must be distinct", &
N);
1889void Verifier::visitDILabel(
const DILabel &
N) {
1890 if (
auto *S =
N.getRawScope())
1892 if (
auto *
F =
N.getRawFile())
1895 CheckDI(
N.getTag() == dwarf::DW_TAG_label,
"invalid tag", &
N);
1897 "label requires a valid scope", &
N,
N.getRawScope());
1900void Verifier::visitDIExpression(
const DIExpression &
N) {
1901 CheckDI(
N.isValid(),
"invalid expression", &
N);
1904void Verifier::visitDIGlobalVariableExpression(
1905 const DIGlobalVariableExpression &GVE) {
1908 visitDIGlobalVariable(*Var);
1910 visitDIExpression(*Expr);
1911 if (
auto Fragment = Expr->getFragmentInfo())
1912 verifyFragmentExpression(*GVE.
getVariable(), *Fragment, &GVE);
1916void Verifier::visitDIObjCProperty(
const DIObjCProperty &
N) {
1917 CheckDI(
N.getTag() == dwarf::DW_TAG_APPLE_property,
"invalid tag", &
N);
1918 if (
auto *
T =
N.getRawType())
1920 if (
auto *
F =
N.getRawFile())
1924void Verifier::visitDIImportedEntity(
const DIImportedEntity &
N) {
1925 CheckDI(
N.getTag() == dwarf::DW_TAG_imported_module ||
1926 N.getTag() == dwarf::DW_TAG_imported_declaration,
1928 if (
auto *S =
N.getRawScope())
1934void Verifier::visitComdat(
const Comdat &
C) {
1937 if (
TT.isOSBinFormatCOFF())
1938 if (
const GlobalValue *GV =
M.getNamedValue(
C.getName()))
1943void Verifier::visitModuleIdents() {
1944 const NamedMDNode *Idents =
M.getNamedMetadata(
"llvm.ident");
1950 for (
const MDNode *
N : Idents->
operands()) {
1951 Check(
N->getNumOperands() == 1,
1952 "incorrect number of operands in llvm.ident metadata",
N);
1954 (
"invalid value for llvm.ident metadata entry operand"
1955 "(the operand should be a string)"),
1960void Verifier::visitModuleCommandLines() {
1961 const NamedMDNode *CommandLines =
M.getNamedMetadata(
"llvm.commandline");
1968 for (
const MDNode *
N : CommandLines->
operands()) {
1969 Check(
N->getNumOperands() == 1,
1970 "incorrect number of operands in llvm.commandline metadata",
N);
1972 (
"invalid value for llvm.commandline metadata entry operand"
1973 "(the operand should be a string)"),
1978void Verifier::visitModuleErrnoTBAA() {
1979 const NamedMDNode *ErrnoTBAA =
M.getNamedMetadata(
"llvm.errno.tbaa");
1984 "llvm.errno.tbaa must have at least one operand", ErrnoTBAA);
1986 for (
const MDNode *
N : ErrnoTBAA->
operands())
1990void Verifier::visitModuleFlags() {
1991 const NamedMDNode *
Flags =
M.getModuleFlagsMetadata();
1995 DenseMap<const MDString*, const MDNode*> SeenIDs;
1997 uint64_t PAuthABIPlatform = -1;
1998 uint64_t PAuthABIVersion = -1;
1999 for (
const MDNode *MDN :
Flags->operands()) {
2000 visitModuleFlag(MDN, SeenIDs, Requirements);
2001 if (MDN->getNumOperands() != 3)
2004 if (FlagName->getString() ==
"aarch64-elf-pauthabi-platform") {
2005 if (
const auto *PAP =
2007 PAuthABIPlatform = PAP->getZExtValue();
2008 }
else if (FlagName->getString() ==
"aarch64-elf-pauthabi-version") {
2009 if (
const auto *PAV =
2011 PAuthABIVersion = PAV->getZExtValue();
2016 if ((PAuthABIPlatform == uint64_t(-1)) != (PAuthABIVersion == uint64_t(-1)))
2017 CheckFailed(
"either both or no 'aarch64-elf-pauthabi-platform' and "
2018 "'aarch64-elf-pauthabi-version' module flags must be present");
2021 for (
const MDNode *Requirement : Requirements) {
2023 const Metadata *ReqValue = Requirement->getOperand(1);
2025 const MDNode *
Op = SeenIDs.
lookup(Flag);
2027 CheckFailed(
"invalid requirement on flag, flag is not present in module",
2032 if (
Op->getOperand(2) != ReqValue) {
2033 CheckFailed((
"invalid requirement on flag, "
2034 "flag does not have the required value"),
2042Verifier::visitModuleFlag(
const MDNode *
Op,
2043 DenseMap<const MDString *, const MDNode *> &SeenIDs,
2044 SmallVectorImpl<const MDNode *> &Requirements) {
2048 "incorrect number of operands in module flag",
Op);
2049 Module::ModFlagBehavior MFB;
2050 if (!Module::isValidModFlagBehavior(
Op->getOperand(0), MFB)) {
2052 "invalid behavior operand in module flag (expected constant integer)",
2055 "invalid behavior operand in module flag (unexpected constant)",
2059 Check(
ID,
"invalid ID operand in module flag (expected metadata string)",
2065 case Module::Warning:
2066 case Module::Override:
2072 Check(V &&
V->getValue().isNonNegative(),
2073 "invalid value for 'min' module flag (expected constant non-negative "
2081 "invalid value for 'max' module flag (expected constant integer)",
2086 case Module::Require: {
2091 "invalid value for 'require' module flag (expected metadata pair)",
2094 (
"invalid value for 'require' module flag "
2095 "(first value operand should be a string)"),
2096 Value->getOperand(0));
2104 case Module::Append:
2105 case Module::AppendUnique: {
2108 "invalid value for 'append'-type module flag "
2109 "(expected a metadata node)",
2116 if (MFB != Module::Require) {
2119 "module flag identifiers must be unique (or of 'require' type)",
ID);
2122 if (
ID->getString() ==
"wchar_size") {
2125 Check(
Value,
"wchar_size metadata requires constant integer argument");
2128 if (
ID->getString() ==
"Linker Options") {
2132 Check(
M.getNamedMetadata(
"llvm.linker.options"),
2133 "'Linker Options' named metadata no longer supported");
2136 if (
ID->getString() ==
"SemanticInterposition") {
2137 ConstantInt *
Value =
2140 "SemanticInterposition metadata requires constant integer argument");
2143 if (
ID->getString() ==
"CG Profile") {
2144 for (
const MDOperand &MDO :
cast<MDNode>(
Op->getOperand(2))->operands())
2145 visitModuleFlagCGProfileEntry(MDO);
2149void Verifier::visitModuleFlagCGProfileEntry(
const MDOperand &MDO) {
2150 auto CheckFunction = [&](
const MDOperand &FuncMDO) {
2155 "expected a Function or null", FuncMDO);
2158 Check(Node &&
Node->getNumOperands() == 3,
"expected a MDNode triple", MDO);
2159 CheckFunction(
Node->getOperand(0));
2160 CheckFunction(
Node->getOperand(1));
2163 "expected an integer constant",
Node->getOperand(2));
2166void Verifier::verifyAttributeTypes(AttributeSet Attrs,
const Value *V) {
2169 if (
A.isStringAttribute()) {
2170#define GET_ATTR_NAMES
2171#define ATTRIBUTE_ENUM(ENUM_NAME, DISPLAY_NAME)
2172#define ATTRIBUTE_STRBOOL(ENUM_NAME, DISPLAY_NAME) \
2173 if (A.getKindAsString() == #DISPLAY_NAME) { \
2174 auto V = A.getValueAsString(); \
2175 if (!(V.empty() || V == "true" || V == "false")) \
2176 CheckFailed("invalid value for '" #DISPLAY_NAME "' attribute: " + V + \
2180#include "llvm/IR/Attributes.inc"
2184 if (
A.isIntAttribute() != Attribute::isIntAttrKind(
A.getKindAsEnum())) {
2185 CheckFailed(
"Attribute '" +
A.getAsString() +
"' should have an Argument",
2194void Verifier::verifyParameterAttrs(AttributeSet Attrs,
Type *Ty,
2196 if (!
Attrs.hasAttributes())
2199 verifyAttributeTypes(Attrs, V);
2202 Check(Attr.isStringAttribute() ||
2203 Attribute::canUseAsParamAttr(Attr.getKindAsEnum()),
2204 "Attribute '" + Attr.getAsString() +
"' does not apply to parameters",
2207 if (
Attrs.hasAttribute(Attribute::ImmArg)) {
2208 unsigned AttrCount =
2209 Attrs.getNumAttributes() -
Attrs.hasAttribute(Attribute::Range);
2210 Check(AttrCount == 1,
2211 "Attribute 'immarg' is incompatible with other attributes except the "
2212 "'range' attribute",
2218 unsigned AttrCount = 0;
2219 AttrCount +=
Attrs.hasAttribute(Attribute::ByVal);
2220 AttrCount +=
Attrs.hasAttribute(Attribute::InAlloca);
2221 AttrCount +=
Attrs.hasAttribute(Attribute::Preallocated);
2222 AttrCount +=
Attrs.hasAttribute(Attribute::StructRet) ||
2223 Attrs.hasAttribute(Attribute::InReg);
2224 AttrCount +=
Attrs.hasAttribute(Attribute::Nest);
2225 AttrCount +=
Attrs.hasAttribute(Attribute::ByRef);
2226 Check(AttrCount <= 1,
2227 "Attributes 'byval', 'inalloca', 'preallocated', 'inreg', 'nest', "
2228 "'byref', and 'sret' are incompatible!",
2231 Check(!(
Attrs.hasAttribute(Attribute::InAlloca) &&
2232 Attrs.hasAttribute(Attribute::ReadOnly)),
2234 "'inalloca and readonly' are incompatible!",
2237 Check(!(
Attrs.hasAttribute(Attribute::StructRet) &&
2238 Attrs.hasAttribute(Attribute::Returned)),
2240 "'sret and returned' are incompatible!",
2243 Check(!(
Attrs.hasAttribute(Attribute::ZExt) &&
2244 Attrs.hasAttribute(Attribute::SExt)),
2246 "'zeroext and signext' are incompatible!",
2249 Check(!(
Attrs.hasAttribute(Attribute::ReadNone) &&
2250 Attrs.hasAttribute(Attribute::ReadOnly)),
2252 "'readnone and readonly' are incompatible!",
2255 Check(!(
Attrs.hasAttribute(Attribute::ReadNone) &&
2256 Attrs.hasAttribute(Attribute::WriteOnly)),
2258 "'readnone and writeonly' are incompatible!",
2261 Check(!(
Attrs.hasAttribute(Attribute::ReadOnly) &&
2262 Attrs.hasAttribute(Attribute::WriteOnly)),
2264 "'readonly and writeonly' are incompatible!",
2267 Check(!(
Attrs.hasAttribute(Attribute::NoInline) &&
2268 Attrs.hasAttribute(Attribute::AlwaysInline)),
2270 "'noinline and alwaysinline' are incompatible!",
2273 Check(!(
Attrs.hasAttribute(Attribute::Writable) &&
2274 Attrs.hasAttribute(Attribute::ReadNone)),
2275 "Attributes writable and readnone are incompatible!", V);
2277 Check(!(
Attrs.hasAttribute(Attribute::Writable) &&
2278 Attrs.hasAttribute(Attribute::ReadOnly)),
2279 "Attributes writable and readonly are incompatible!", V);
2281 AttributeMask IncompatibleAttrs = AttributeFuncs::typeIncompatible(Ty, Attrs);
2283 if (!Attr.isStringAttribute() &&
2284 IncompatibleAttrs.
contains(Attr.getKindAsEnum())) {
2285 CheckFailed(
"Attribute '" + Attr.getAsString() +
2286 "' applied to incompatible type!", V);
2292 if (
Attrs.hasAttribute(Attribute::Alignment)) {
2293 Align AttrAlign =
Attrs.getAlignment().valueOrOne();
2294 Check(AttrAlign.
value() <= Value::MaximumAlignment,
2295 "huge alignment values are unsupported", V);
2297 if (
Attrs.hasAttribute(Attribute::ByVal)) {
2299 SmallPtrSet<Type *, 4> Visited;
2301 "Attribute 'byval' does not support unsized types!", V);
2305 "'byval' argument has illegal target extension type", V);
2306 Check(
DL.getTypeAllocSize(ByValTy).getKnownMinValue() < (1ULL << 32),
2307 "huge 'byval' arguments are unsupported", V);
2309 if (
Attrs.hasAttribute(Attribute::ByRef)) {
2310 SmallPtrSet<Type *, 4> Visited;
2311 Check(
Attrs.getByRefType()->isSized(&Visited),
2312 "Attribute 'byref' does not support unsized types!", V);
2313 Check(
DL.getTypeAllocSize(
Attrs.getByRefType()).getKnownMinValue() <
2315 "huge 'byref' arguments are unsupported", V);
2317 if (
Attrs.hasAttribute(Attribute::InAlloca)) {
2318 SmallPtrSet<Type *, 4> Visited;
2319 Check(
Attrs.getInAllocaType()->isSized(&Visited),
2320 "Attribute 'inalloca' does not support unsized types!", V);
2321 Check(
DL.getTypeAllocSize(
Attrs.getInAllocaType()).getKnownMinValue() <
2323 "huge 'inalloca' arguments are unsupported", V);
2325 if (
Attrs.hasAttribute(Attribute::Preallocated)) {
2326 SmallPtrSet<Type *, 4> Visited;
2327 Check(
Attrs.getPreallocatedType()->isSized(&Visited),
2328 "Attribute 'preallocated' does not support unsized types!", V);
2330 DL.getTypeAllocSize(
Attrs.getPreallocatedType()).getKnownMinValue() <
2332 "huge 'preallocated' arguments are unsupported", V);
2336 if (
Attrs.hasAttribute(Attribute::Initializes)) {
2337 auto Inits =
Attrs.getAttribute(Attribute::Initializes).getInitializes();
2338 Check(!Inits.empty(),
"Attribute 'initializes' does not support empty list",
2341 "Attribute 'initializes' does not support unordered ranges", V);
2344 if (
Attrs.hasAttribute(Attribute::NoFPClass)) {
2345 uint64_t Val =
Attrs.getAttribute(Attribute::NoFPClass).getValueAsInt();
2346 Check(Val != 0,
"Attribute 'nofpclass' must have at least one test bit set",
2349 "Invalid value for 'nofpclass' test mask", V);
2351 if (
Attrs.hasAttribute(Attribute::Range)) {
2352 const ConstantRange &CR =
2353 Attrs.getAttribute(Attribute::Range).getValueAsConstantRange();
2355 "Range bit width must match type bit width!", V);
2359void Verifier::checkUnsignedBaseTenFuncAttr(AttributeList Attrs, StringRef Attr,
2361 if (
Attrs.hasFnAttr(Attr)) {
2362 StringRef S =
Attrs.getFnAttr(Attr).getValueAsString();
2365 CheckFailed(
"\"" + Attr +
"\" takes an unsigned integer: " + S, V);
2371void Verifier::verifyFunctionAttrs(FunctionType *FT, AttributeList Attrs,
2372 const Value *V,
bool IsIntrinsic,
2374 if (
Attrs.isEmpty())
2377 if (AttributeListsVisited.
insert(
Attrs.getRawPointer()).second) {
2379 "Attribute list does not match Module context!", &Attrs, V);
2380 for (
const auto &AttrSet : Attrs) {
2381 Check(!AttrSet.hasAttributes() || AttrSet.hasParentContext(
Context),
2382 "Attribute set does not match Module context!", &AttrSet, V);
2383 for (
const auto &
A : AttrSet) {
2385 "Attribute does not match Module context!", &
A, V);
2390 bool SawNest =
false;
2391 bool SawReturned =
false;
2392 bool SawSRet =
false;
2393 bool SawSwiftSelf =
false;
2394 bool SawSwiftAsync =
false;
2395 bool SawSwiftError =
false;
2398 AttributeSet RetAttrs =
Attrs.getRetAttrs();
2401 Attribute::canUseAsRetAttr(
RetAttr.getKindAsEnum()),
2402 "Attribute '" +
RetAttr.getAsString() +
2403 "' does not apply to function return values",
2406 unsigned MaxParameterWidth = 0;
2407 auto GetMaxParameterWidth = [&MaxParameterWidth](
Type *Ty) {
2410 unsigned Size = VT->getPrimitiveSizeInBits().getFixedValue();
2411 if (
Size > MaxParameterWidth)
2412 MaxParameterWidth =
Size;
2416 GetMaxParameterWidth(FT->getReturnType());
2417 verifyParameterAttrs(RetAttrs, FT->getReturnType(), V);
2420 for (
unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
2421 Type *Ty = FT->getParamType(i);
2422 AttributeSet ArgAttrs =
Attrs.getParamAttrs(i);
2426 "immarg attribute only applies to intrinsics", V);
2429 "Attribute 'elementtype' can only be applied to intrinsics"
2434 verifyParameterAttrs(ArgAttrs, Ty, V);
2435 GetMaxParameterWidth(Ty);
2438 Check(!SawNest,
"More than one parameter has attribute nest!", V);
2443 Check(!SawReturned,
"More than one parameter has attribute returned!", V);
2445 "Incompatible argument and return types for 'returned' attribute",
2451 Check(!SawSRet,
"Cannot have multiple 'sret' parameters!", V);
2452 Check(i == 0 || i == 1,
2453 "Attribute 'sret' is not on first or second parameter!", V);
2458 Check(!SawSwiftSelf,
"Cannot have multiple 'swiftself' parameters!", V);
2459 SawSwiftSelf =
true;
2463 Check(!SawSwiftAsync,
"Cannot have multiple 'swiftasync' parameters!", V);
2464 SawSwiftAsync =
true;
2468 Check(!SawSwiftError,
"Cannot have multiple 'swifterror' parameters!", V);
2469 SawSwiftError =
true;
2473 Check(i == FT->getNumParams() - 1,
2474 "inalloca isn't on the last parameter!", V);
2478 if (!
Attrs.hasFnAttrs())
2481 verifyAttributeTypes(
Attrs.getFnAttrs(), V);
2484 Attribute::canUseAsFnAttr(
FnAttr.getKindAsEnum()),
2485 "Attribute '" +
FnAttr.getAsString() +
2486 "' does not apply to functions!",
2489 Check(!(
Attrs.hasFnAttr(Attribute::NoInline) &&
2490 Attrs.hasFnAttr(Attribute::AlwaysInline)),
2491 "Attributes 'noinline and alwaysinline' are incompatible!", V);
2493 if (
Attrs.hasFnAttr(Attribute::OptimizeNone)) {
2495 "Attribute 'optnone' requires 'noinline'!", V);
2497 Check(!
Attrs.hasFnAttr(Attribute::OptimizeForSize),
2498 "Attributes 'optsize and optnone' are incompatible!", V);
2501 "Attributes 'minsize and optnone' are incompatible!", V);
2503 Check(!
Attrs.hasFnAttr(Attribute::OptimizeForDebugging),
2504 "Attributes 'optdebug and optnone' are incompatible!", V);
2507 Check(!(
Attrs.hasFnAttr(Attribute::SanitizeRealtime) &&
2508 Attrs.hasFnAttr(Attribute::SanitizeRealtimeBlocking)),
2510 "'sanitize_realtime and sanitize_realtime_blocking' are incompatible!",
2513 if (
Attrs.hasFnAttr(Attribute::OptimizeForDebugging)) {
2514 Check(!
Attrs.hasFnAttr(Attribute::OptimizeForSize),
2515 "Attributes 'optsize and optdebug' are incompatible!", V);
2518 "Attributes 'minsize and optdebug' are incompatible!", V);
2521 Check(!
Attrs.hasAttrSomewhere(Attribute::Writable) ||
2522 isModSet(
Attrs.getMemoryEffects().getModRef(IRMemLocation::ArgMem)),
2523 "Attribute writable and memory without argmem: write are incompatible!",
2526 if (
Attrs.hasFnAttr(
"aarch64_pstate_sm_enabled")) {
2527 Check(!
Attrs.hasFnAttr(
"aarch64_pstate_sm_compatible"),
2528 "Attributes 'aarch64_pstate_sm_enabled and "
2529 "aarch64_pstate_sm_compatible' are incompatible!",
2533 Check((
Attrs.hasFnAttr(
"aarch64_new_za") +
Attrs.hasFnAttr(
"aarch64_in_za") +
2534 Attrs.hasFnAttr(
"aarch64_inout_za") +
2535 Attrs.hasFnAttr(
"aarch64_out_za") +
2536 Attrs.hasFnAttr(
"aarch64_preserves_za") +
2537 Attrs.hasFnAttr(
"aarch64_za_state_agnostic")) <= 1,
2538 "Attributes 'aarch64_new_za', 'aarch64_in_za', 'aarch64_out_za', "
2539 "'aarch64_inout_za', 'aarch64_preserves_za' and "
2540 "'aarch64_za_state_agnostic' are mutually exclusive",
2544 Attrs.hasFnAttr(
"aarch64_in_zt0") +
2545 Attrs.hasFnAttr(
"aarch64_inout_zt0") +
2546 Attrs.hasFnAttr(
"aarch64_out_zt0") +
2547 Attrs.hasFnAttr(
"aarch64_preserves_zt0") +
2548 Attrs.hasFnAttr(
"aarch64_za_state_agnostic")) <= 1,
2549 "Attributes 'aarch64_new_zt0', 'aarch64_in_zt0', 'aarch64_out_zt0', "
2550 "'aarch64_inout_zt0', 'aarch64_preserves_zt0' and "
2551 "'aarch64_za_state_agnostic' are mutually exclusive",
2554 if (
Attrs.hasFnAttr(Attribute::JumpTable)) {
2557 "Attribute 'jumptable' requires 'unnamed_addr'", V);
2560 if (
auto Args =
Attrs.getFnAttrs().getAllocSizeArgs()) {
2561 auto CheckParam = [&](StringRef
Name,
unsigned ParamNo) {
2562 if (ParamNo >= FT->getNumParams()) {
2563 CheckFailed(
"'allocsize' " + Name +
" argument is out of bounds", V);
2567 if (!FT->getParamType(ParamNo)->isIntegerTy()) {
2568 CheckFailed(
"'allocsize' " + Name +
2569 " argument must refer to an integer parameter",
2577 if (!CheckParam(
"element size",
Args->first))
2580 if (
Args->second && !CheckParam(
"number of elements", *
Args->second))
2584 if (
Attrs.hasFnAttr(Attribute::AllocKind)) {
2587 K & (AllocFnKind::Alloc | AllocFnKind::Realloc | AllocFnKind::Free);
2589 {AllocFnKind::Alloc, AllocFnKind::Realloc, AllocFnKind::Free},
2592 "'allockind()' requires exactly one of alloc, realloc, and free");
2593 if ((
Type == AllocFnKind::Free) &&
2594 ((K & (AllocFnKind::Uninitialized | AllocFnKind::Zeroed |
2595 AllocFnKind::Aligned)) != AllocFnKind::Unknown))
2596 CheckFailed(
"'allockind(\"free\")' doesn't allow uninitialized, zeroed, "
2597 "or aligned modifiers.");
2598 AllocFnKind ZeroedUninit = AllocFnKind::Uninitialized | AllocFnKind::Zeroed;
2599 if ((K & ZeroedUninit) == ZeroedUninit)
2600 CheckFailed(
"'allockind()' can't be both zeroed and uninitialized");
2604 StringRef S =
A.getValueAsString();
2605 Check(!S.
empty(),
"'alloc-variant-zeroed' must not be empty");
2613 "'alloc-variant-zeroed' must name a function belonging to the "
2614 "same 'alloc-family'");
2617 (
Variant->getFnAttribute(Attribute::AllocKind).getAllocKind() &
2618 AllocFnKind::Zeroed) != AllocFnKind::Unknown,
2619 "'alloc-variant-zeroed' must name a function with "
2620 "'allockind(\"zeroed\")'");
2623 "'alloc-variant-zeroed' must name a function with the same "
2628 "'alloc-variant-zeroed' must name a function with the same "
2629 "calling convention");
2633 if (
Attrs.hasFnAttr(Attribute::VScaleRange)) {
2634 unsigned VScaleMin =
Attrs.getFnAttrs().getVScaleRangeMin();
2636 CheckFailed(
"'vscale_range' minimum must be greater than 0", V);
2638 CheckFailed(
"'vscale_range' minimum must be power-of-two value", V);
2639 std::optional<unsigned> VScaleMax =
Attrs.getFnAttrs().getVScaleRangeMax();
2640 if (VScaleMax && VScaleMin > VScaleMax)
2641 CheckFailed(
"'vscale_range' minimum cannot be greater than maximum", V);
2643 CheckFailed(
"'vscale_range' maximum must be power-of-two value", V);
2646 if (
Attribute FPAttr =
Attrs.getFnAttr(
"frame-pointer"); FPAttr.isValid()) {
2647 StringRef
FP = FPAttr.getValueAsString();
2648 if (
FP !=
"all" &&
FP !=
"non-leaf" &&
FP !=
"none" &&
FP !=
"reserved" &&
2649 FP !=
"non-leaf-no-reserve")
2650 CheckFailed(
"invalid value for 'frame-pointer' attribute: " +
FP, V);
2653 checkUnsignedBaseTenFuncAttr(Attrs,
"patchable-function-prefix", V);
2654 checkUnsignedBaseTenFuncAttr(Attrs,
"patchable-function-entry", V);
2655 if (
Attrs.hasFnAttr(
"patchable-function-entry-section"))
2656 Check(!
Attrs.getFnAttr(
"patchable-function-entry-section")
2659 "\"patchable-function-entry-section\" must not be empty");
2660 checkUnsignedBaseTenFuncAttr(Attrs,
"warn-stack-size", V);
2662 if (
auto A =
Attrs.getFnAttr(
"sign-return-address");
A.isValid()) {
2663 StringRef S =
A.getValueAsString();
2664 if (S !=
"none" && S !=
"all" && S !=
"non-leaf")
2665 CheckFailed(
"invalid value for 'sign-return-address' attribute: " + S, V);
2668 if (
auto A =
Attrs.getFnAttr(
"sign-return-address-key");
A.isValid()) {
2669 StringRef S =
A.getValueAsString();
2670 if (S !=
"a_key" && S !=
"b_key")
2671 CheckFailed(
"invalid value for 'sign-return-address-key' attribute: " + S,
2673 if (
auto AA =
Attrs.getFnAttr(
"sign-return-address"); !AA.isValid()) {
2675 "'sign-return-address-key' present without `sign-return-address`");
2679 if (
auto A =
Attrs.getFnAttr(
"branch-target-enforcement");
A.isValid()) {
2680 StringRef S =
A.getValueAsString();
2681 if (S !=
"" && S !=
"true" && S !=
"false")
2683 "invalid value for 'branch-target-enforcement' attribute: " + S, V);
2686 if (
auto A =
Attrs.getFnAttr(
"branch-protection-pauth-lr");
A.isValid()) {
2687 StringRef S =
A.getValueAsString();
2688 if (S !=
"" && S !=
"true" && S !=
"false")
2690 "invalid value for 'branch-protection-pauth-lr' attribute: " + S, V);
2693 if (
auto A =
Attrs.getFnAttr(
"guarded-control-stack");
A.isValid()) {
2694 StringRef S =
A.getValueAsString();
2695 if (S !=
"" && S !=
"true" && S !=
"false")
2696 CheckFailed(
"invalid value for 'guarded-control-stack' attribute: " + S,
2700 if (
auto A =
Attrs.getFnAttr(
"vector-function-abi-variant");
A.isValid()) {
2701 StringRef S =
A.getValueAsString();
2704 CheckFailed(
"invalid name for a VFABI variant: " + S, V);
2707 if (
auto A =
Attrs.getFnAttr(
"modular-format");
A.isValid()) {
2708 StringRef S =
A.getValueAsString();
2712 "modular-format attribute requires at least 5 arguments", V);
2713 unsigned FirstArgIdx;
2714 Check(!Args[2].getAsInteger(10, FirstArgIdx),
2715 "modular-format attribute first arg index is not an integer", V);
2716 unsigned UpperBound = FT->getNumParams() + (FT->isVarArg() ? 1 : 0);
2717 Check(FirstArgIdx > 0 && FirstArgIdx <= UpperBound,
2718 "modular-format attribute first arg index is out of bounds", V);
2721 if (
auto A =
Attrs.getFnAttr(
"target-features");
A.isValid()) {
2722 StringRef S =
A.getValueAsString();
2724 for (
auto FeatureFlag :
split(S,
',')) {
2725 if (FeatureFlag.empty())
2727 "target-features attribute should not contain an empty string");
2729 Check(FeatureFlag[0] ==
'+' || FeatureFlag[0] ==
'-',
2730 "target feature '" + FeatureFlag +
2731 "' must start with a '+' or '-'",
2737void Verifier::verifyUnknownProfileMetadata(MDNode *MD) {
2739 "'unknown' !prof should have a single additional operand", MD);
2742 "'unknown' !prof should have an additional operand of type "
2745 "the 'unknown' !prof operand should not be an empty string");
2748void Verifier::verifyFunctionMetadata(
2749 ArrayRef<std::pair<unsigned, MDNode *>> MDs) {
2750 for (
const auto &Pair : MDs) {
2751 if (Pair.first == LLVMContext::MD_prof) {
2752 MDNode *MD = Pair.second;
2754 "!prof annotations should have no less than 2 operands", MD);
2759 verifyUnknownProfileMetadata(MD);
2764 Check(MD->
getOperand(0) !=
nullptr,
"first operand should not be null",
2767 "expected string with name of the !prof annotation", MD);
2772 "first operand should be 'function_entry_count'"
2773 " or 'synthetic_function_entry_count'",
2777 Check(MD->
getOperand(1) !=
nullptr,
"second operand should not be null",
2780 "expected integer argument to function_entry_count", MD);
2781 }
else if (Pair.first == LLVMContext::MD_kcfi_type) {
2782 MDNode *MD = Pair.second;
2784 "!kcfi_type must have exactly one operand", MD);
2785 Check(MD->
getOperand(0) !=
nullptr,
"!kcfi_type operand must not be null",
2788 "expected a constant operand for !kcfi_type", MD);
2791 "expected a constant integer operand for !kcfi_type", MD);
2793 "expected a 32-bit integer constant operand for !kcfi_type", MD);
2798void Verifier::visitConstantExprsRecursively(
const Constant *EntryC) {
2802 if (!ConstantExprVisited.
insert(EntryC).second)
2806 Stack.push_back(EntryC);
2808 while (!
Stack.empty()) {
2813 visitConstantExpr(CE);
2816 visitConstantPtrAuth(CPA);
2821 Check(GV->
getParent() == &M,
"Referencing global in another module!",
2827 for (
const Use &U :
C->operands()) {
2831 if (!ConstantExprVisited.
insert(OpC).second)
2833 Stack.push_back(OpC);
2838void Verifier::visitConstantExpr(
const ConstantExpr *CE) {
2839 if (
CE->getOpcode() == Instruction::BitCast)
2842 "Invalid bitcast", CE);
2843 else if (
CE->getOpcode() == Instruction::PtrToAddr)
2844 checkPtrToAddr(
CE->getOperand(0)->getType(),
CE->getType(), *CE);
2847void Verifier::visitConstantPtrAuth(
const ConstantPtrAuth *CPA) {
2849 "signed ptrauth constant base pointer must have pointer type");
2852 "signed ptrauth constant must have same type as its base pointer");
2855 "signed ptrauth constant key must be i32 constant integer");
2858 "signed ptrauth constant address discriminator must be a pointer");
2861 "signed ptrauth constant discriminator must be i64 constant integer");
2864 "signed ptrauth constant deactivation symbol must be a pointer");
2868 "signed ptrauth constant deactivation symbol must be a global value "
2872bool Verifier::verifyAttributeCount(AttributeList Attrs,
unsigned Params) {
2875 return Attrs.getNumAttrSets() <= Params + 2;
2878void Verifier::verifyInlineAsmCall(
const CallBase &
Call) {
2881 unsigned LabelNo = 0;
2882 for (
const InlineAsm::ConstraintInfo &CI :
IA->ParseConstraints()) {
2892 if (CI.isIndirect) {
2895 "Operand for indirect constraint must have pointer type", &
Call);
2898 "Operand for indirect constraint must have elementtype attribute",
2902 "Elementtype attribute can only be applied for indirect "
2911 Check(LabelNo == CallBr->getNumIndirectDests(),
2912 "Number of label constraints does not match number of callbr dests",
2915 Check(LabelNo == 0,
"Label constraints can only be used with callbr",
2921void Verifier::verifyStatepoint(
const CallBase &
Call) {
2926 "gc.statepoint must read and write all memory to preserve "
2927 "reordering restrictions required by safepoint semantics",
2930 const int64_t NumPatchBytes =
2933 Check(NumPatchBytes >= 0,
2934 "gc.statepoint number of patchable bytes must be "
2939 Check(TargetElemType,
2940 "gc.statepoint callee argument must have elementtype attribute",
Call);
2942 Check(TargetFuncType,
2943 "gc.statepoint callee elementtype must be function type",
Call);
2946 Check(NumCallArgs >= 0,
2947 "gc.statepoint number of arguments to underlying call "
2950 const int NumParams = (int)TargetFuncType->getNumParams();
2951 if (TargetFuncType->isVarArg()) {
2952 Check(NumCallArgs >= NumParams,
2953 "gc.statepoint mismatch in number of vararg call args",
Call);
2956 Check(TargetFuncType->getReturnType()->isVoidTy(),
2957 "gc.statepoint doesn't support wrapping non-void "
2958 "vararg functions yet",
2961 Check(NumCallArgs == NumParams,
2962 "gc.statepoint mismatch in number of call args",
Call);
2964 const uint64_t
Flags
2966 Check((Flags & ~(uint64_t)StatepointFlags::MaskAll) == 0,
2967 "unknown flag used in gc.statepoint flags argument",
Call);
2972 for (
int i = 0; i < NumParams; i++) {
2973 Type *ParamType = TargetFuncType->getParamType(i);
2975 Check(ArgType == ParamType,
2976 "gc.statepoint call argument does not match wrapped "
2980 if (TargetFuncType->isVarArg()) {
2981 AttributeSet ArgAttrs =
Attrs.getParamAttrs(5 + i);
2983 "Attribute 'sret' cannot be used for vararg call arguments!",
Call);
2987 const int EndCallArgsInx = 4 + NumCallArgs;
2991 "gc.statepoint number of transition arguments "
2992 "must be constant integer",
2994 const int NumTransitionArgs =
2996 Check(NumTransitionArgs == 0,
2997 "gc.statepoint w/inline transition bundle is deprecated",
Call);
2998 const int EndTransitionArgsInx = EndCallArgsInx + 1 + NumTransitionArgs;
3002 "gc.statepoint number of deoptimization arguments "
3003 "must be constant integer",
3006 Check(NumDeoptArgs == 0,
3007 "gc.statepoint w/inline deopt operands is deprecated",
Call);
3009 const int ExpectedNumArgs = 7 + NumCallArgs;
3011 "gc.statepoint too many arguments",
Call);
3018 Check(UserCall,
"illegal use of statepoint token",
Call, U);
3022 "gc.result or gc.relocate are the only value uses "
3023 "of a gc.statepoint",
3027 "gc.result connected to wrong gc.statepoint",
Call, UserCall);
3030 "gc.relocate connected to wrong gc.statepoint",
Call, UserCall);
3044void Verifier::verifyFrameRecoverIndices() {
3045 for (
auto &Counts : FrameEscapeInfo) {
3047 unsigned EscapedObjectCount = Counts.second.first;
3048 unsigned MaxRecoveredIndex = Counts.second.second;
3049 Check(MaxRecoveredIndex <= EscapedObjectCount,
3050 "all indices passed to llvm.localrecover must be less than the "
3051 "number of arguments passed to llvm.localescape in the parent "
3060 UnwindDest =
II->getUnwindDest();
3062 UnwindDest = CSI->getUnwindDest();
3068void Verifier::verifySiblingFuncletUnwinds() {
3069 llvm::TimeTraceScope timeScope(
"Verifier verify sibling funclet unwinds");
3070 SmallPtrSet<Instruction *, 8> Visited;
3071 SmallPtrSet<Instruction *, 8>
Active;
3072 for (
const auto &Pair : SiblingFuncletInfo) {
3074 if (Visited.
count(PredPad))
3080 if (
Active.count(SuccPad)) {
3083 SmallVector<Instruction *, 8> CycleNodes;
3086 Instruction *CycleTerminator = SiblingFuncletInfo[CyclePad];
3087 if (CycleTerminator != CyclePad)
3090 }
while (CyclePad != SuccPad);
3091 Check(
false,
"EH pads can't handle each other's exceptions",
3095 if (!Visited.
insert(SuccPad).second)
3099 auto TermI = SiblingFuncletInfo.find(PredPad);
3100 if (TermI == SiblingFuncletInfo.end())
3113void Verifier::visitFunction(
const Function &
F) {
3114 visitGlobalValue(
F);
3117 FunctionType *FT =
F.getFunctionType();
3118 unsigned NumArgs =
F.arg_size();
3121 "Function context does not match Module context!", &
F);
3123 Check(!
F.hasCommonLinkage(),
"Functions may not have common linkage", &
F);
3124 Check(FT->getNumParams() == NumArgs,
3125 "# formal arguments must match # of arguments for function type!", &
F,
3127 Check(
F.getReturnType()->isFirstClassType() ||
3128 F.getReturnType()->isVoidTy() ||
F.getReturnType()->isStructTy(),
3129 "Functions cannot return aggregate values!", &
F);
3131 Check(!
F.hasStructRetAttr() ||
F.getReturnType()->isVoidTy(),
3132 "Invalid struct return type!", &
F);
3134 if (MaybeAlign
A =
F.getAlign()) {
3135 Check(
A->value() <= Value::MaximumAlignment,
3136 "huge alignment values are unsupported", &
F);
3139 AttributeList
Attrs =
F.getAttributes();
3141 Check(verifyAttributeCount(Attrs, FT->getNumParams()),
3142 "Attribute after last parameter!", &
F);
3144 bool IsIntrinsic =
F.isIntrinsic();
3147 verifyFunctionAttrs(FT, Attrs, &
F, IsIntrinsic,
false);
3153 "Attribute 'builtin' can only be applied to a callsite.", &
F);
3155 Check(!
Attrs.hasAttrSomewhere(Attribute::ElementType),
3156 "Attribute 'elementtype' can only be applied to a callsite.", &
F);
3158 if (
Attrs.hasFnAttr(Attribute::Naked))
3159 for (
const Argument &Arg :
F.args())
3160 Check(Arg.use_empty(),
"cannot use argument of naked function", &Arg);
3165 switch (
F.getCallingConv()) {
3167 case CallingConv::C:
3169 case CallingConv::X86_INTR: {
3170 Check(
F.arg_empty() ||
Attrs.hasParamAttr(0, Attribute::ByVal),
3171 "Calling convention parameter requires byval", &
F);
3174 case CallingConv::AMDGPU_KERNEL:
3175 case CallingConv::SPIR_KERNEL:
3176 case CallingConv::AMDGPU_CS_Chain:
3177 case CallingConv::AMDGPU_CS_ChainPreserve:
3178 Check(
F.getReturnType()->isVoidTy(),
3179 "Calling convention requires void return type", &
F);
3181 case CallingConv::AMDGPU_VS:
3182 case CallingConv::AMDGPU_HS:
3183 case CallingConv::AMDGPU_GS:
3184 case CallingConv::AMDGPU_PS:
3185 case CallingConv::AMDGPU_CS:
3186 Check(!
F.hasStructRetAttr(),
"Calling convention does not allow sret", &
F);
3187 if (
F.getCallingConv() != CallingConv::SPIR_KERNEL) {
3188 const unsigned StackAS =
DL.getAllocaAddrSpace();
3190 for (
const Argument &Arg :
F.args()) {
3191 Check(!
Attrs.hasParamAttr(i, Attribute::ByVal),
3192 "Calling convention disallows byval", &
F);
3193 Check(!
Attrs.hasParamAttr(i, Attribute::Preallocated),
3194 "Calling convention disallows preallocated", &
F);
3195 Check(!
Attrs.hasParamAttr(i, Attribute::InAlloca),
3196 "Calling convention disallows inalloca", &
F);
3198 if (
Attrs.hasParamAttr(i, Attribute::ByRef)) {
3201 Check(Arg.getType()->getPointerAddressSpace() != StackAS,
3202 "Calling convention disallows stack byref", &
F);
3210 case CallingConv::Fast:
3211 case CallingConv::Cold:
3212 case CallingConv::Intel_OCL_BI:
3213 case CallingConv::PTX_Kernel:
3214 case CallingConv::PTX_Device:
3216 "Calling convention does not support varargs or "
3217 "perfect forwarding!",
3220 case CallingConv::AMDGPU_Gfx_WholeWave:
3221 Check(!
F.arg_empty() &&
F.arg_begin()->getType()->isIntegerTy(1),
3222 "Calling convention requires first argument to be i1", &
F);
3223 Check(!
F.arg_begin()->hasInRegAttr(),
3224 "Calling convention requires first argument to not be inreg", &
F);
3226 "Calling convention does not support varargs or "
3227 "perfect forwarding!",
3234 for (
const Argument &Arg :
F.args()) {
3235 Check(Arg.getType() == FT->getParamType(i),
3236 "Argument value does not match function argument type!", &Arg,
3237 FT->getParamType(i));
3238 Check(Arg.getType()->isFirstClassType(),
3239 "Function arguments must have first-class types!", &Arg);
3241 Check(!Arg.getType()->isMetadataTy(),
3242 "Function takes metadata but isn't an intrinsic", &Arg, &
F);
3243 Check(!Arg.getType()->isTokenLikeTy(),
3244 "Function takes token but isn't an intrinsic", &Arg, &
F);
3245 Check(!Arg.getType()->isX86_AMXTy(),
3246 "Function takes x86_amx but isn't an intrinsic", &Arg, &
F);
3250 if (
Attrs.hasParamAttr(i, Attribute::SwiftError)) {
3251 verifySwiftErrorValue(&Arg);
3257 Check(!
F.getReturnType()->isTokenLikeTy(),
3258 "Function returns a token but isn't an intrinsic", &
F);
3259 Check(!
F.getReturnType()->isX86_AMXTy(),
3260 "Function returns a x86_amx but isn't an intrinsic", &
F);
3265 F.getAllMetadata(MDs);
3266 assert(
F.hasMetadata() != MDs.
empty() &&
"Bit out-of-sync");
3267 verifyFunctionMetadata(MDs);
3270 if (
F.hasPersonalityFn()) {
3273 Check(Per->getParent() ==
F.getParent(),
3274 "Referencing personality function in another module!", &
F,
3275 F.getParent(), Per, Per->getParent());
3279 BlockEHFuncletColors.
clear();
3281 if (
F.isMaterializable()) {
3283 Check(MDs.
empty(),
"unmaterialized function cannot have metadata", &
F,
3285 }
else if (
F.isDeclaration()) {
3286 for (
const auto &
I : MDs) {
3288 CheckDI(
I.first != LLVMContext::MD_dbg ||
3290 "function declaration may only have a unique !dbg attachment",
3292 Check(
I.first != LLVMContext::MD_prof,
3293 "function declaration may not have a !prof attachment", &
F);
3296 visitMDNode(*
I.second, AreDebugLocsAllowed::Yes);
3298 Check(!
F.hasPersonalityFn(),
3299 "Function declaration shouldn't have a personality routine", &
F);
3303 Check(!IsIntrinsic,
"llvm intrinsics cannot be defined!", &
F);
3308 "Entry block to function must not have predecessors!", Entry);
3311 if (
Entry->hasAddressTaken()) {
3313 "blockaddress may not be used with the entry block!", Entry);
3316 unsigned NumDebugAttachments = 0, NumProfAttachments = 0,
3317 NumKCFIAttachments = 0;
3319 for (
const auto &
I : MDs) {
3321 auto AllowLocs = AreDebugLocsAllowed::No;
3325 case LLVMContext::MD_dbg: {
3326 ++NumDebugAttachments;
3327 CheckDI(NumDebugAttachments == 1,
3328 "function must have a single !dbg attachment", &
F,
I.second);
3330 "function !dbg attachment must be a subprogram", &
F,
I.second);
3332 "function definition may only have a distinct !dbg attachment",
3336 const Function *&AttachedTo = DISubprogramAttachments[
SP];
3337 CheckDI(!AttachedTo || AttachedTo == &
F,
3338 "DISubprogram attached to more than one function", SP, &
F);
3340 AllowLocs = AreDebugLocsAllowed::Yes;
3343 case LLVMContext::MD_prof:
3344 ++NumProfAttachments;
3345 Check(NumProfAttachments == 1,
3346 "function must have a single !prof attachment", &
F,
I.second);
3348 case LLVMContext::MD_kcfi_type:
3349 ++NumKCFIAttachments;
3350 Check(NumKCFIAttachments == 1,
3351 "function must have a single !kcfi_type attachment", &
F,
3357 visitMDNode(*
I.second, AllowLocs);
3365 if (
F.isIntrinsic() &&
F.getParent()->isMaterialized()) {
3367 if (
F.hasAddressTaken(&U,
false,
true,
false,
3369 Check(
false,
"Invalid user of intrinsic instruction!", U);
3373 switch (
F.getIntrinsicID()) {
3374 case Intrinsic::experimental_gc_get_pointer_base: {
3375 FunctionType *FT =
F.getFunctionType();
3376 Check(FT->getNumParams() == 1,
"wrong number of parameters",
F);
3378 "gc.get.pointer.base must return a pointer",
F);
3379 Check(FT->getParamType(0) ==
F.getReturnType(),
3380 "gc.get.pointer.base operand and result must be of the same type",
F);
3383 case Intrinsic::experimental_gc_get_pointer_offset: {
3384 FunctionType *FT =
F.getFunctionType();
3385 Check(FT->getNumParams() == 1,
"wrong number of parameters",
F);
3387 "gc.get.pointer.offset operand must be a pointer",
F);
3388 Check(
F.getReturnType()->isIntegerTy(),
3389 "gc.get.pointer.offset must return integer",
F);
3394 auto *
N =
F.getSubprogram();
3395 HasDebugInfo = (
N !=
nullptr);
3403 SmallPtrSet<const MDNode *, 32> Seen;
3415 "DILocation's scope must be a DILocalScope",
N, &
F, &
I,
DL, Parent);
3417 DILocalScope *
Scope =
DL->getInlinedAtScope();
3418 Check(Scope,
"Failed to find DILocalScope",
DL);
3420 if (!Seen.
insert(Scope).second)
3423 DISubprogram *
SP =
Scope->getSubprogram();
3427 if ((Scope != SP) && !Seen.
insert(SP).second)
3431 "!dbg attachment points at wrong subprogram for function",
N, &
F,
3435 for (
auto &
I : BB) {
3436 VisitDebugLoc(
I,
I.getDebugLoc().getAsMDNode());
3438 if (
auto MD =
I.getMetadata(LLVMContext::MD_loop))
3441 if (BrokenDebugInfo)
3448void Verifier::visitBasicBlock(BasicBlock &BB) {
3449 InstsInThisBlock.
clear();
3450 ConvergenceVerifyHelper.
visit(BB);
3461 for (
const PHINode &PN : BB.
phis()) {
3462 Check(PN.getNumIncomingValues() == Preds.size(),
3463 "PHINode should have one entry for each predecessor of its "
3464 "parent basic block!",
3469 Values.
reserve(PN.getNumIncomingValues());
3470 for (
unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i)
3472 std::make_pair(PN.getIncomingBlock(i), PN.getIncomingValue(i)));
3475 for (
unsigned i = 0, e = Values.
size(); i != e; ++i) {
3480 Check(i == 0 || Values[i].first != Values[i - 1].first ||
3481 Values[i].second == Values[i - 1].second,
3482 "PHI node has multiple entries for the same basic block with "
3483 "different incoming values!",
3484 &PN, Values[i].first, Values[i].second, Values[i - 1].second);
3488 Check(Values[i].first == Preds[i],
3489 "PHI node entries do not match predecessors!", &PN,
3490 Values[i].first, Preds[i]);
3498 Check(
I.getParent() == &BB,
"Instruction has bogus parent pointer!");
3502 CheckDI(!BB.getTrailingDbgRecords(),
"Basic Block has trailing DbgRecords!",
3506void Verifier::visitTerminator(Instruction &
I) {
3508 Check(&
I ==
I.getParent()->getTerminator(),
3509 "Terminator found in the middle of a basic block!",
I.getParent());
3510 visitInstruction(
I);
3513void Verifier::visitCondBrInst(CondBrInst &BI) {
3515 "Branch condition is not 'i1' type!", &BI, BI.
getCondition());
3516 visitTerminator(BI);
3519void Verifier::visitReturnInst(ReturnInst &RI) {
3522 if (
F->getReturnType()->isVoidTy())
3524 "Found return instr that returns non-void in Function of void "
3526 &RI,
F->getReturnType());
3529 "Function return type does not match operand "
3530 "type of return inst!",
3531 &RI,
F->getReturnType());
3535 visitTerminator(RI);
3538void Verifier::visitSwitchInst(SwitchInst &SI) {
3539 Check(
SI.getType()->isVoidTy(),
"Switch must have void result type!", &SI);
3542 Type *SwitchTy =
SI.getCondition()->getType();
3543 SmallPtrSet<ConstantInt*, 32>
Constants;
3544 for (
auto &Case :
SI.cases()) {
3546 "Case value is not a constant integer.", &SI);
3547 Check(Case.getCaseValue()->getType() == SwitchTy,
3548 "Switch constants must all be same type as switch value!", &SI);
3550 "Duplicate integer as switch case", &SI, Case.getCaseValue());
3553 visitTerminator(SI);
3556void Verifier::visitIndirectBrInst(IndirectBrInst &BI) {
3558 "Indirectbr operand must have pointer type!", &BI);
3561 "Indirectbr destinations must all have pointer type!", &BI);
3563 visitTerminator(BI);
3566void Verifier::visitCallBrInst(CallBrInst &CBI) {
3569 "Callbr: indirect function / invalid signature");
3571 "Callbr for intrinsics currently doesn't support operand bundles");
3574 case Intrinsic::amdgcn_kill: {
3576 "Callbr amdgcn_kill only supports one indirect dest");
3580 Intrinsic::amdgcn_unreachable),
3581 "Callbr amdgcn_kill indirect dest needs to be unreachable");
3586 "Callbr currently only supports asm-goto and selected intrinsics");
3591 Check(!
IA->canThrow(),
"Unwinding from Callbr is not allowed");
3593 verifyInlineAsmCall(CBI);
3595 visitTerminator(CBI);
3598void Verifier::visitSelectInst(SelectInst &SI) {
3601 "Invalid operands for select instruction!", &SI);
3603 Check(
SI.getTrueValue()->getType() ==
SI.getType(),
3604 "Select values must have same type as select instruction!", &SI);
3605 visitInstruction(SI);
3611void Verifier::visitUserOp1(Instruction &
I) {
3612 Check(
false,
"User-defined operators should not live outside of a pass!", &
I);
3615void Verifier::visitTruncInst(TruncInst &
I) {
3617 Type *SrcTy =
I.getOperand(0)->getType();
3618 Type *DestTy =
I.getType();
3627 "trunc source and destination must both be a vector or neither", &
I);
3628 Check(SrcBitSize > DestBitSize,
"DestTy too big for Trunc", &
I);
3630 visitInstruction(
I);
3633void Verifier::visitZExtInst(ZExtInst &
I) {
3635 Type *SrcTy =
I.getOperand(0)->getType();
3636 Type *DestTy =
I.getType();
3642 "zext source and destination must both be a vector or neither", &
I);
3646 Check(SrcBitSize < DestBitSize,
"Type too small for ZExt", &
I);
3648 visitInstruction(
I);
3651void Verifier::visitSExtInst(SExtInst &
I) {
3653 Type *SrcTy =
I.getOperand(0)->getType();
3654 Type *DestTy =
I.getType();
3663 "sext source and destination must both be a vector or neither", &
I);
3664 Check(SrcBitSize < DestBitSize,
"Type too small for SExt", &
I);
3666 visitInstruction(
I);
3669void Verifier::visitFPTruncInst(FPTruncInst &
I) {
3671 Type *SrcTy =
I.getOperand(0)->getType();
3672 Type *DestTy =
I.getType();
3680 "fptrunc source and destination must both be a vector or neither", &
I);
3681 Check(SrcBitSize > DestBitSize,
"DestTy too big for FPTrunc", &
I);
3683 visitInstruction(
I);
3686void Verifier::visitFPExtInst(FPExtInst &
I) {
3688 Type *SrcTy =
I.getOperand(0)->getType();
3689 Type *DestTy =
I.getType();
3698 "fpext source and destination must both be a vector or neither", &
I);
3699 Check(SrcBitSize < DestBitSize,
"DestTy too small for FPExt", &
I);
3701 visitInstruction(
I);
3704void Verifier::visitUIToFPInst(UIToFPInst &
I) {
3706 Type *SrcTy =
I.getOperand(0)->getType();
3707 Type *DestTy =
I.getType();
3712 Check(SrcVec == DstVec,
3713 "UIToFP source and dest must both be vector or scalar", &
I);
3715 "UIToFP source must be integer or integer vector", &
I);
3719 if (SrcVec && DstVec)
3722 "UIToFP source and dest vector length mismatch", &
I);
3724 visitInstruction(
I);
3727void Verifier::visitSIToFPInst(SIToFPInst &
I) {
3729 Type *SrcTy =
I.getOperand(0)->getType();
3730 Type *DestTy =
I.getType();
3735 Check(SrcVec == DstVec,
3736 "SIToFP source and dest must both be vector or scalar", &
I);
3738 "SIToFP source must be integer or integer vector", &
I);
3742 if (SrcVec && DstVec)
3745 "SIToFP source and dest vector length mismatch", &
I);
3747 visitInstruction(
I);
3750void Verifier::visitFPToUIInst(FPToUIInst &
I) {
3752 Type *SrcTy =
I.getOperand(0)->getType();
3753 Type *DestTy =
I.getType();
3758 Check(SrcVec == DstVec,
3759 "FPToUI source and dest must both be vector or scalar", &
I);
3762 "FPToUI result must be integer or integer vector", &
I);
3764 if (SrcVec && DstVec)
3767 "FPToUI source and dest vector length mismatch", &
I);
3769 visitInstruction(
I);
3772void Verifier::visitFPToSIInst(FPToSIInst &
I) {
3774 Type *SrcTy =
I.getOperand(0)->getType();
3775 Type *DestTy =
I.getType();
3780 Check(SrcVec == DstVec,
3781 "FPToSI source and dest must both be vector or scalar", &
I);
3784 "FPToSI result must be integer or integer vector", &
I);
3786 if (SrcVec && DstVec)
3789 "FPToSI source and dest vector length mismatch", &
I);
3791 visitInstruction(
I);
3794void Verifier::checkPtrToAddr(
Type *SrcTy,
Type *DestTy,
const Value &V) {
3803 Check(VSrc->getElementCount() == VDest->getElementCount(),
3804 "PtrToAddr vector length mismatch", V);
3807 Type *AddrTy =
DL.getAddressType(SrcTy);
3808 Check(AddrTy == DestTy,
"PtrToAddr result must be address width", V);
3811void Verifier::visitPtrToAddrInst(PtrToAddrInst &
I) {
3812 checkPtrToAddr(
I.getOperand(0)->getType(),
I.getType(),
I);
3813 visitInstruction(
I);
3816void Verifier::visitPtrToIntInst(PtrToIntInst &
I) {
3818 Type *SrcTy =
I.getOperand(0)->getType();
3819 Type *DestTy =
I.getType();
3830 Check(VSrc->getElementCount() == VDest->getElementCount(),
3831 "PtrToInt Vector length mismatch", &
I);
3834 visitInstruction(
I);
3837void Verifier::visitIntToPtrInst(IntToPtrInst &
I) {
3839 Type *SrcTy =
I.getOperand(0)->getType();
3840 Type *DestTy =
I.getType();
3850 Check(VSrc->getElementCount() == VDest->getElementCount(),
3851 "IntToPtr Vector length mismatch", &
I);
3853 visitInstruction(
I);
3856void Verifier::visitBitCastInst(BitCastInst &
I) {
3859 "Invalid bitcast", &
I);
3860 visitInstruction(
I);
3863void Verifier::visitAddrSpaceCastInst(AddrSpaceCastInst &
I) {
3864 Type *SrcTy =
I.getOperand(0)->getType();
3865 Type *DestTy =
I.getType();
3872 "AddrSpaceCast must be between different address spaces", &
I);
3874 Check(SrcVTy->getElementCount() ==
3876 "AddrSpaceCast vector pointer number of elements mismatch", &
I);
3877 visitInstruction(
I);
3882void Verifier::visitPHINode(PHINode &PN) {
3889 "PHI nodes not grouped at top of basic block!", &PN, PN.
getParent());
3898 "PHI node operands are not the same type as the result!", &PN);
3903 visitInstruction(PN);
3906void Verifier::visitCallBase(CallBase &
Call) {
3908 "Called function must be a pointer!",
Call);
3912 if (FTy->isVarArg())
3914 "Called function requires more parameters than were provided!",
Call);
3917 "Incorrect number of arguments passed to called function!",
Call);
3920 for (
unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
3922 "Call parameter type does not match function signature!",
3928 "Attribute after last parameter!",
Call);
3935 "Intrinsic called with incompatible signature",
Call);
3939 "calling convention does not permit calls",
Call);
3945 auto VerifyTypeAlign = [&](
Type *Ty,
const Twine &Message) {
3948 Align ABIAlign =
DL.getABITypeAlign(Ty);
3949 Check(ABIAlign.
value() <= Value::MaximumAlignment,
3950 "Incorrect alignment of " + Message +
" to called function!",
Call);
3954 VerifyTypeAlign(FTy->getReturnType(),
"return type");
3955 for (
unsigned i = 0, e = FTy->getNumParams(); i != e; ++i) {
3956 Type *Ty = FTy->getParamType(i);
3957 VerifyTypeAlign(Ty,
"argument passed");
3961 if (
Attrs.hasFnAttr(Attribute::Speculatable)) {
3965 "speculatable attribute may not apply to call sites",
Call);
3968 if (
Attrs.hasFnAttr(Attribute::Preallocated)) {
3970 "preallocated as a call site attribute can only be on "
3971 "llvm.call.preallocated.arg");
3974 Check(!
Attrs.hasFnAttr(Attribute::DenormalFPEnv),
3975 "denormal_fpenv attribute may not apply to call sites",
Call);
3986 Check(AI->isUsedWithInAlloca(),
3987 "inalloca argument for call has mismatched alloca", AI,
Call);
3993 for (
unsigned i = 0, e = FTy->getNumParams(); i != e; ++i) {
3997 Check(AI->isSwiftError(),
3998 "swifterror argument for call has mismatched alloca", AI,
Call);
4002 Check(ArgI,
"swifterror argument should come from an alloca or parameter",
4003 SwiftErrorArg,
Call);
4004 Check(ArgI->hasSwiftErrorAttr(),
4005 "swifterror argument for call has mismatched parameter", ArgI,
4009 if (
Attrs.hasParamAttr(i, Attribute::ImmArg)) {
4012 Check(Callee &&
Callee->hasParamAttribute(i, Attribute::ImmArg),
4020 "immarg operand has non-immediate parameter", ArgVal,
Call);
4026 const ConstantRange &CR =
4029 "immarg value " + Twine(CI->getValue().getSExtValue()) +
4042 Check(hasOB != isMustTail,
4043 "preallocated operand either requires a preallocated bundle or "
4044 "the call to be musttail (but not both)",
4049 if (FTy->isVarArg()) {
4051 bool SawNest =
false;
4052 bool SawReturned =
false;
4054 for (
unsigned Idx = 0; Idx < FTy->getNumParams(); ++Idx) {
4055 if (
Attrs.hasParamAttr(Idx, Attribute::Nest))
4057 if (
Attrs.hasParamAttr(Idx, Attribute::Returned))
4062 for (
unsigned Idx = FTy->getNumParams(); Idx <
Call.
arg_size(); ++Idx) {
4064 AttributeSet ArgAttrs =
Attrs.getParamAttrs(Idx);
4065 verifyParameterAttrs(ArgAttrs, Ty, &
Call);
4068 Check(!SawNest,
"More than one parameter has attribute nest!",
Call);
4073 Check(!SawReturned,
"More than one parameter has attribute returned!",
4076 "Incompatible argument and return types for 'returned' "
4086 "Attribute 'sret' cannot be used for vararg call arguments!",
4091 "inalloca isn't on the last argument!",
Call);
4097 for (
Type *ParamTy : FTy->params()) {
4098 Check(!ParamTy->isMetadataTy(),
4099 "Function has metadata parameter but isn't an intrinsic",
Call);
4100 Check(!ParamTy->isTokenLikeTy(),
4101 "Function has token parameter but isn't an intrinsic",
Call);
4107 Check(!FTy->getReturnType()->isTokenLikeTy(),
4108 "Return type cannot be token for indirect call!");
4109 Check(!FTy->getReturnType()->isX86_AMXTy(),
4110 "Return type cannot be x86_amx for indirect call!");
4114 visitIntrinsicCall(
ID,
Call);
4119 bool FoundDeoptBundle =
false, FoundFuncletBundle =
false,
4120 FoundGCTransitionBundle =
false, FoundCFGuardTargetBundle =
false,
4121 FoundPreallocatedBundle =
false, FoundGCLiveBundle =
false,
4122 FoundPtrauthBundle =
false, FoundKCFIBundle =
false,
4123 FoundAttachedCallBundle =
false;
4128 Check(!FoundDeoptBundle,
"Multiple deopt operand bundles",
Call);
4129 FoundDeoptBundle =
true;
4131 Check(!FoundGCTransitionBundle,
"Multiple gc-transition operand bundles",
4133 FoundGCTransitionBundle =
true;
4135 Check(!FoundFuncletBundle,
"Multiple funclet operand bundles",
Call);
4136 FoundFuncletBundle =
true;
4138 "Expected exactly one funclet bundle operand",
Call);
4140 "Funclet bundle operands should correspond to a FuncletPadInst",
4143 Check(!FoundCFGuardTargetBundle,
"Multiple CFGuardTarget operand bundles",
4145 FoundCFGuardTargetBundle =
true;
4147 "Expected exactly one cfguardtarget bundle operand",
Call);
4149 Check(!FoundPtrauthBundle,
"Multiple ptrauth operand bundles",
Call);
4150 FoundPtrauthBundle =
true;
4152 "Expected exactly two ptrauth bundle operands",
Call);
4154 BU.
Inputs[0]->getType()->isIntegerTy(32),
4155 "Ptrauth bundle key operand must be an i32 constant",
Call);
4157 "Ptrauth bundle discriminator operand must be an i64",
Call);
4159 Check(!FoundKCFIBundle,
"Multiple kcfi operand bundles",
Call);
4160 FoundKCFIBundle =
true;
4161 Check(BU.
Inputs.size() == 1,
"Expected exactly one kcfi bundle operand",
4164 BU.
Inputs[0]->getType()->isIntegerTy(32),
4165 "Kcfi bundle operand must be an i32 constant",
Call);
4167 Check(!FoundPreallocatedBundle,
"Multiple preallocated operand bundles",
4169 FoundPreallocatedBundle =
true;
4171 "Expected exactly one preallocated bundle operand",
Call);
4174 Input->getIntrinsicID() == Intrinsic::call_preallocated_setup,
4175 "\"preallocated\" argument must be a token from "
4176 "llvm.call.preallocated.setup",
4179 Check(!FoundGCLiveBundle,
"Multiple gc-live operand bundles",
Call);
4180 FoundGCLiveBundle =
true;
4182 Check(!FoundAttachedCallBundle,
4183 "Multiple \"clang.arc.attachedcall\" operand bundles",
Call);
4184 FoundAttachedCallBundle =
true;
4185 verifyAttachedCallBundle(
Call, BU);
4191 "Direct call cannot have a ptrauth bundle",
Call);
4203 "inlinable function call in a function with "
4204 "debug info must have a !dbg location",
4208 verifyInlineAsmCall(
Call);
4212 visitInstruction(
Call);
4215void Verifier::verifyTailCCMustTailAttrs(
const AttrBuilder &Attrs,
4218 Twine(
"inalloca attribute not allowed in ") +
Context);
4220 Twine(
"inreg attribute not allowed in ") +
Context);
4221 Check(!
Attrs.contains(Attribute::SwiftError),
4222 Twine(
"swifterror attribute not allowed in ") +
Context);
4223 Check(!
Attrs.contains(Attribute::Preallocated),
4224 Twine(
"preallocated attribute not allowed in ") +
Context);
4226 Twine(
"byref attribute not allowed in ") +
Context);
4238 return PL->getAddressSpace() == PR->getAddressSpace();
4243 Attribute::StructRet, Attribute::ByVal, Attribute::InAlloca,
4244 Attribute::InReg, Attribute::StackAlignment, Attribute::SwiftSelf,
4245 Attribute::SwiftAsync, Attribute::SwiftError, Attribute::Preallocated,
4247 AttrBuilder Copy(
C);
4248 for (
auto AK : ABIAttrs) {
4249 Attribute Attr = Attrs.getParamAttrs(
I).getAttribute(AK);
4251 Copy.addAttribute(Attr);
4255 if (Attrs.hasParamAttr(
I, Attribute::Alignment) &&
4256 (Attrs.hasParamAttr(
I, Attribute::ByVal) ||
4257 Attrs.hasParamAttr(
I, Attribute::ByRef)))
4258 Copy.addAlignmentAttr(Attrs.getParamAlignment(
I));
4262void Verifier::verifyMustTailCall(CallInst &CI) {
4266 FunctionType *CallerTy =
F->getFunctionType();
4268 Check(CallerTy->isVarArg() == CalleeTy->isVarArg(),
4269 "cannot guarantee tail call due to mismatched varargs", &CI);
4271 "cannot guarantee tail call due to mismatched return types", &CI);
4275 "cannot guarantee tail call due to mismatched calling conv", &CI);
4281 Value *RetVal = &CI;
4287 "bitcast following musttail call must use the call", BI);
4294 Check(Ret,
"musttail call must precede a ret with an optional bitcast", &CI);
4297 "musttail call result must be returned", Ret);
4299 AttributeList CallerAttrs =
F->getAttributes();
4304 CI.
getCallingConv() == CallingConv::Tail ?
"tailcc" :
"swifttailcc";
4308 for (
unsigned I = 0,
E = CallerTy->getNumParams();
I !=
E; ++
I) {
4310 SmallString<32>
Context{CCName, StringRef(
" musttail caller")};
4311 verifyTailCCMustTailAttrs(ABIAttrs,
Context);
4313 for (
unsigned I = 0,
E = CalleeTy->getNumParams();
I !=
E; ++
I) {
4315 SmallString<32>
Context{CCName, StringRef(
" musttail callee")};
4316 verifyTailCCMustTailAttrs(ABIAttrs,
Context);
4319 Check(!CallerTy->isVarArg(), Twine(
"cannot guarantee ") + CCName +
4320 " tail call for varargs function");
4328 Check(CallerTy->getNumParams() == CalleeTy->getNumParams(),
4329 "cannot guarantee tail call due to mismatched parameter counts", &CI);
4330 for (
unsigned I = 0,
E = CallerTy->getNumParams();
I !=
E; ++
I) {
4333 "cannot guarantee tail call due to mismatched parameter types", &CI);
4339 for (
unsigned I = 0,
E = CallerTy->getNumParams();
I !=
E; ++
I) {
4342 Check(CallerABIAttrs == CalleeABIAttrs,
4343 "cannot guarantee tail call due to mismatched ABI impacting "
4344 "function attributes",
4349void Verifier::visitCallInst(CallInst &CI) {
4353 verifyMustTailCall(CI);
4356void Verifier::visitInvokeInst(InvokeInst &
II) {
4362 II.getUnwindDest()->isEHPad(),
4363 "The unwind destination does not have an exception handling instruction!",
4366 visitTerminator(
II);
4371void Verifier::visitUnaryOperator(UnaryOperator &U) {
4372 Check(
U.getType() ==
U.getOperand(0)->getType(),
4373 "Unary operators must have same type for"
4374 "operands and result!",
4377 switch (
U.getOpcode()) {
4380 case Instruction::FNeg:
4381 Check(
U.getType()->isFPOrFPVectorTy(),
4382 "FNeg operator only works with float types!", &U);
4388 visitInstruction(U);
4394void Verifier::visitBinaryOperator(BinaryOperator &
B) {
4395 Check(
B.getOperand(0)->getType() ==
B.getOperand(1)->getType(),
4396 "Both operands to a binary operator are not of the same type!", &
B);
4398 switch (
B.getOpcode()) {
4401 case Instruction::Add:
4402 case Instruction::Sub:
4403 case Instruction::Mul:
4404 case Instruction::SDiv:
4405 case Instruction::UDiv:
4406 case Instruction::SRem:
4407 case Instruction::URem:
4408 Check(
B.getType()->isIntOrIntVectorTy(),
4409 "Integer arithmetic operators only work with integral types!", &
B);
4410 Check(
B.getType() ==
B.getOperand(0)->getType(),
4411 "Integer arithmetic operators must have same type "
4412 "for operands and result!",
4417 case Instruction::FAdd:
4418 case Instruction::FSub:
4419 case Instruction::FMul:
4420 case Instruction::FDiv:
4421 case Instruction::FRem:
4422 Check(
B.getType()->isFPOrFPVectorTy(),
4423 "Floating-point arithmetic operators only work with "
4424 "floating-point types!",
4426 Check(
B.getType() ==
B.getOperand(0)->getType(),
4427 "Floating-point arithmetic operators must have same type "
4428 "for operands and result!",
4432 case Instruction::And:
4433 case Instruction::Or:
4434 case Instruction::Xor:
4435 Check(
B.getType()->isIntOrIntVectorTy(),
4436 "Logical operators only work with integral types!", &
B);
4437 Check(
B.getType() ==
B.getOperand(0)->getType(),
4438 "Logical operators must have same type for operands and result!", &
B);
4440 case Instruction::Shl:
4441 case Instruction::LShr:
4442 case Instruction::AShr:
4443 Check(
B.getType()->isIntOrIntVectorTy(),
4444 "Shifts only work with integral types!", &
B);
4445 Check(
B.getType() ==
B.getOperand(0)->getType(),
4446 "Shift return type must be same as operands!", &
B);
4452 visitInstruction(
B);
4455void Verifier::visitICmpInst(ICmpInst &IC) {
4459 Check(Op0Ty == Op1Ty,
4460 "Both operands to ICmp instruction are not of the same type!", &IC);
4463 "Invalid operand types for ICmp instruction", &IC);
4467 visitInstruction(IC);
4470void Verifier::visitFCmpInst(FCmpInst &FC) {
4472 Type *Op0Ty =
FC.getOperand(0)->getType();
4473 Type *Op1Ty =
FC.getOperand(1)->getType();
4474 Check(Op0Ty == Op1Ty,
4475 "Both operands to FCmp instruction are not of the same type!", &FC);
4480 Check(
FC.isFPPredicate(),
"Invalid predicate in FCmp instruction!", &FC);
4482 visitInstruction(FC);
4485void Verifier::visitExtractElementInst(ExtractElementInst &EI) {
4487 "Invalid extractelement operands!", &EI);
4488 visitInstruction(EI);
4491void Verifier::visitInsertElementInst(InsertElementInst &IE) {
4494 "Invalid insertelement operands!", &IE);
4495 visitInstruction(IE);
4498void Verifier::visitShuffleVectorInst(ShuffleVectorInst &SV) {
4501 "Invalid shufflevector operands!", &SV);
4502 visitInstruction(SV);
4505void Verifier::visitGetElementPtrInst(GetElementPtrInst &
GEP) {
4507 GEP.getModule()->getModuleFlag(
"require-logical-pointer")))
4508 Check(!MD->getZExtValue(),
4509 "Non-logical getelementptr disallowed for this module.");
4511 Type *TargetTy =
GEP.getPointerOperandType()->getScalarType();
4514 "GEP base pointer is not a vector or a vector of pointers", &
GEP);
4515 Check(
GEP.getSourceElementType()->isSized(),
"GEP into unsized type!", &
GEP);
4519 "getelementptr cannot target structure that contains scalable vector"
4524 SmallVector<Value *, 16> Idxs(
GEP.indices());
4526 all_of(Idxs, [](
Value *V) {
return V->getType()->isIntOrIntVectorTy(); }),
4527 "GEP indexes must be integers", &
GEP);
4530 Check(ElTy,
"Invalid indices for GEP pointer type!", &
GEP);
4534 Check(PtrTy &&
GEP.getResultElementType() == ElTy,
4535 "GEP is not of right type for indices!", &
GEP, ElTy);
4539 ElementCount GEPWidth = GEPVTy->getElementCount();
4540 if (
GEP.getPointerOperandType()->isVectorTy())
4544 "Vector GEP result width doesn't match operand's", &
GEP);
4545 for (
Value *Idx : Idxs) {
4546 Type *IndexTy = Idx->getType();
4548 ElementCount IndexWidth = IndexVTy->getElementCount();
4549 Check(IndexWidth == GEPWidth,
"Invalid GEP index vector width", &
GEP);
4552 "All GEP indices should be of integer type");
4559 GTI != GTE; ++GTI) {
4560 if (GTI.isVector()) {
4561 Type *ElemTy = GTI.getIndexedType();
4562 Check(
DL.typeSizeEqualsStoreSize(ElemTy),
4563 "GEP into vector with non-byte-addressable element type", &
GEP);
4567 Check(
GEP.getAddressSpace() == PtrTy->getAddressSpace(),
4568 "GEP address space doesn't match type", &
GEP);
4570 visitInstruction(
GEP);
4574 return A.getUpper() ==
B.getLower() ||
A.getLower() ==
B.getUpper();
4579void Verifier::verifyRangeLikeMetadata(
const Value &
I,
const MDNode *
Range,
4580 Type *Ty, RangeLikeMetadataKind Kind) {
4581 unsigned NumOperands =
Range->getNumOperands();
4582 Check(NumOperands % 2 == 0,
"Unfinished range!",
Range);
4583 unsigned NumRanges = NumOperands / 2;
4584 Check(NumRanges >= 1,
"It should have at least one range!",
Range);
4586 ConstantRange LastRange(1,
true);
4587 for (
unsigned i = 0; i < NumRanges; ++i) {
4590 Check(
Low,
"The lower limit must be an integer!",
Low);
4595 Check(
High->getType() ==
Low->getType(),
"Range pair types must match!",
4598 if (Kind == RangeLikeMetadataKind::NoaliasAddrspace) {
4600 "noalias.addrspace type must be i32!", &
I);
4603 "Range types must match instruction type!", &
I);
4606 APInt HighV =
High->getValue();
4607 APInt LowV =
Low->getValue();
4612 "The upper and lower limits cannot be the same value", &
I);
4614 ConstantRange CurRange(LowV, HighV);
4615 Check(!CurRange.isEmptySet() &&
4616 (Kind == RangeLikeMetadataKind::AbsoluteSymbol ||
4617 !CurRange.isFullSet()),
4618 "Range must not be empty!",
Range);
4620 Check(CurRange.intersectWith(LastRange).isEmptySet(),
4621 "Intervals are overlapping",
Range);
4622 Check(LowV.
sgt(LastRange.getLower()),
"Intervals are not in order",
4627 LastRange = ConstantRange(LowV, HighV);
4629 if (NumRanges > 2) {
4634 ConstantRange FirstRange(FirstLow, FirstHigh);
4635 Check(FirstRange.intersectWith(LastRange).isEmptySet(),
4636 "Intervals are overlapping",
Range);
4642void Verifier::visitRangeMetadata(Instruction &
I, MDNode *
Range,
Type *Ty) {
4644 "precondition violation");
4645 verifyRangeLikeMetadata(
I,
Range, Ty, RangeLikeMetadataKind::Range);
4648void Verifier::visitNoFPClassMetadata(Instruction &
I, MDNode *NoFPClass,
4650 Check(AttributeFuncs::isNoFPClassCompatibleType(Ty),
4651 "nofpclass only applies to floating-point typed loads",
I);
4654 "nofpclass must have exactly one entry", NoFPClass);
4655 ConstantInt *MaskVal =
4658 "nofpclass entry must be a constant i32", NoFPClass);
4660 Check(Val != 0,
"'nofpclass' must have at least one test bit set", NoFPClass,
4664 "Invalid value for 'nofpclass' test mask", NoFPClass,
I);
4667void Verifier::visitNoaliasAddrspaceMetadata(Instruction &
I, MDNode *
Range,
4670 "precondition violation");
4671 verifyRangeLikeMetadata(
I,
Range, Ty,
4672 RangeLikeMetadataKind::NoaliasAddrspace);
4675void Verifier::checkAtomicMemAccessSize(
Type *Ty,
const Instruction *
I) {
4676 unsigned Size =
DL.getTypeSizeInBits(Ty).getFixedValue();
4677 Check(
Size >= 8,
"atomic memory access' size must be byte-sized", Ty,
I);
4679 "atomic memory access' operand must have a power-of-two size", Ty,
I);
4682void Verifier::visitLoadInst(LoadInst &LI) {
4684 Check(PTy,
"Load operand must be a pointer.", &LI);
4687 Check(
A->value() <= Value::MaximumAlignment,
4688 "huge alignment values are unsupported", &LI);
4690 Check(ElTy->
isSized(),
"loading unsized types is not allowed", &LI);
4693 LI.
getOrdering() != AtomicOrdering::AcquireRelease,
4694 "Load cannot have Release ordering", &LI);
4698 "atomic load operand must have integer, byte, pointer, floating "
4699 "point, or vector type!",
4702 checkAtomicMemAccessSize(ElTy, &LI);
4705 "Non-atomic load cannot have SynchronizationScope specified", &LI);
4708 visitInstruction(LI);
4711void Verifier::visitStoreInst(StoreInst &SI) {
4713 Check(PTy,
"Store operand must be a pointer.", &SI);
4714 Type *ElTy =
SI.getOperand(0)->getType();
4715 if (MaybeAlign
A =
SI.getAlign()) {
4716 Check(
A->value() <= Value::MaximumAlignment,
4717 "huge alignment values are unsupported", &SI);
4719 Check(ElTy->
isSized(),
"storing unsized types is not allowed", &SI);
4720 if (
SI.isAtomic()) {
4721 Check(
SI.getOrdering() != AtomicOrdering::Acquire &&
4722 SI.getOrdering() != AtomicOrdering::AcquireRelease,
4723 "Store cannot have Acquire ordering", &SI);
4727 "atomic store operand must have integer, byte, pointer, floating "
4728 "point, or vector type!",
4730 checkAtomicMemAccessSize(ElTy, &SI);
4733 "Non-atomic store cannot have SynchronizationScope specified", &SI);
4735 visitInstruction(SI);
4739void Verifier::verifySwiftErrorCall(CallBase &
Call,
4740 const Value *SwiftErrorVal) {
4742 if (
I.value() == SwiftErrorVal) {
4744 "swifterror value when used in a callsite should be marked "
4745 "with swifterror attribute",
4746 SwiftErrorVal,
Call);
4751void Verifier::verifySwiftErrorValue(
const Value *SwiftErrorVal) {
4754 for (
const User *U : SwiftErrorVal->
users()) {
4757 "swifterror value can only be loaded and stored from, or "
4758 "as a swifterror argument!",
4762 Check(StoreI->getOperand(1) == SwiftErrorVal,
4763 "swifterror value should be the second operand when used "
4767 verifySwiftErrorCall(*
const_cast<CallBase *
>(
Call), SwiftErrorVal);
4771void Verifier::visitAllocaInst(AllocaInst &AI) {
4774 Check(!MD->getZExtValue(),
4775 "Non-logical alloca disallowed for this module.");
4778 SmallPtrSet<Type*, 4> Visited;
4779 Check(Ty->
isSized(&Visited),
"Cannot allocate unsized type", &AI);
4783 "Alloca has illegal target extension type", &AI);
4785 "Alloca array size must have integer type", &AI);
4787 Check(
A->value() <= Value::MaximumAlignment,
4788 "huge alignment values are unsupported", &AI);
4794 "swifterror alloca must not be array allocation", &AI);
4795 verifySwiftErrorValue(&AI);
4798 if (
TT.isAMDGPU()) {
4800 "alloca on amdgpu must be in addrspace(5)", &AI);
4803 visitInstruction(AI);
4806void Verifier::visitAtomicCmpXchgInst(AtomicCmpXchgInst &CXI) {
4809 "cmpxchg operand must have integer or pointer type", ElTy, &CXI);
4810 checkAtomicMemAccessSize(ElTy, &CXI);
4811 visitInstruction(CXI);
4814void Verifier::visitAtomicRMWInst(AtomicRMWInst &RMWI) {
4816 "atomicrmw instructions cannot be unordered.", &RMWI);
4819 Type *ScalarTy = ElTy;
4822 Check(VecTy,
"atomicrmw elementwise operand must have fixed vector type!",
4825 ScalarTy = VecTy->getElementType();
4832 " operand must have integer or floating point type!",
4837 " operand must have floating-point or fixed vector of "
4844 " operand must have integer type!",
4847 checkAtomicMemAccessSize(ElTy, &RMWI);
4849 "Invalid binary operation!", &RMWI);
4850 visitInstruction(RMWI);
4853void Verifier::visitFenceInst(FenceInst &FI) {
4855 Check(Ordering == AtomicOrdering::Acquire ||
4856 Ordering == AtomicOrdering::Release ||
4857 Ordering == AtomicOrdering::AcquireRelease ||
4858 Ordering == AtomicOrdering::SequentiallyConsistent,
4859 "fence instructions may only have acquire, release, acq_rel, or "
4860 "seq_cst ordering.",
4862 visitInstruction(FI);
4865void Verifier::visitExtractValueInst(ExtractValueInst &EVI) {
4868 "Invalid ExtractValueInst operands!", &EVI);
4870 visitInstruction(EVI);
4873void Verifier::visitInsertValueInst(InsertValueInst &IVI) {
4877 "Invalid InsertValueInst operands!", &IVI);
4879 visitInstruction(IVI);
4884 return FPI->getParentPad();
4889void Verifier::visitEHPadPredecessors(Instruction &
I) {
4895 Check(BB != &
F->getEntryBlock(),
"EH pad cannot be in entry block.", &
I);
4903 Check(
II &&
II->getUnwindDest() == BB &&
II->getNormalDest() != BB,
4904 "Block containing LandingPadInst must be jumped to "
4905 "only by the unwind edge of an invoke.",
4913 "Block containg CatchPadInst must be jumped to "
4914 "only by its catchswitch.",
4916 Check(BB != CPI->getCatchSwitch()->getUnwindDest(),
4917 "Catchswitch cannot unwind to one of its catchpads",
4918 CPI->getCatchSwitch(), CPI);
4930 Check(
II->getUnwindDest() == BB &&
II->getNormalDest() != BB,
4931 "EH pad must be jumped to via an unwind edge", ToPad,
II);
4934 if (CalledFn && CalledFn->isIntrinsic() &&
II->doesNotThrow() &&
4938 FromPad = Bundle->Inputs[0];
4942 FromPad = CRI->getOperand(0);
4943 Check(FromPad != ToPadParent,
"A cleanupret must exit its cleanup", CRI);
4947 Check(
false,
"EH pad must be jumped to via an unwind edge", ToPad, TI);
4951 SmallPtrSet<Value *, 8> Seen;
4953 Check(FromPad != ToPad,
4954 "EH pad cannot handle exceptions raised within it", FromPad, TI);
4955 if (FromPad == ToPadParent) {
4960 "A single unwind edge may only enter one EH pad", TI);
4961 Check(Seen.
insert(FromPad).second,
"EH pad jumps through a cycle of pads",
4967 "Parent pad must be catchpad/cleanuppad/catchswitch", TI);
4972void Verifier::visitLandingPadInst(LandingPadInst &LPI) {
4976 "LandingPadInst needs at least one clause or to be a cleanup.", &LPI);
4978 visitEHPadPredecessors(LPI);
4980 if (!LandingPadResultTy)
4981 LandingPadResultTy = LPI.
getType();
4984 "The landingpad instruction should have a consistent result type "
4985 "inside a function.",
4989 Check(
F->hasPersonalityFn(),
4990 "LandingPadInst needs to be in a function with a personality.", &LPI);
4995 "LandingPadInst not the first non-PHI instruction in the block.", &LPI);
5001 "Catch operand does not have pointer type!", &LPI);
5003 Check(LPI.
isFilter(i),
"Clause is neither catch nor filter!", &LPI);
5005 "Filter operand is not an array of constants!", &LPI);
5009 visitInstruction(LPI);
5012void Verifier::visitResumeInst(ResumeInst &RI) {
5014 "ResumeInst needs to be in a function with a personality.", &RI);
5016 if (!LandingPadResultTy)
5020 "The resume instruction should have a consistent result type "
5021 "inside a function.",
5024 visitTerminator(RI);
5027void Verifier::visitCatchPadInst(CatchPadInst &CPI) {
5031 Check(
F->hasPersonalityFn(),
5032 "CatchPadInst needs to be in a function with a personality.", &CPI);
5035 "CatchPadInst needs to be directly nested in a CatchSwitchInst.",
5041 "CatchPadInst not the first non-PHI instruction in the block.", &CPI);
5046 return isa<Constant>(V) || isa<AllocaInst>(V);
5048 "Argument operand must be alloca or constant.", &CPI);
5050 visitEHPadPredecessors(CPI);
5051 visitFuncletPadInst(CPI);
5054void Verifier::visitCatchReturnInst(CatchReturnInst &CatchReturn) {
5056 "CatchReturnInst needs to be provided a CatchPad", &CatchReturn,
5059 visitTerminator(CatchReturn);
5062void Verifier::visitCleanupPadInst(CleanupPadInst &CPI) {
5066 Check(
F->hasPersonalityFn(),
5067 "CleanupPadInst needs to be in a function with a personality.", &CPI);
5072 "CleanupPadInst not the first non-PHI instruction in the block.", &CPI);
5076 "CleanupPadInst has an invalid parent.", &CPI);
5078 visitEHPadPredecessors(CPI);
5079 visitFuncletPadInst(CPI);
5082void Verifier::visitFuncletPadInst(FuncletPadInst &FPI) {
5083 User *FirstUser =
nullptr;
5084 Value *FirstUnwindPad =
nullptr;
5086 SmallPtrSet<FuncletPadInst *, 8> Seen;
5088 while (!Worklist.empty()) {
5089 FuncletPadInst *CurrentPad = Worklist.pop_back_val();
5091 "FuncletPadInst must not be nested within itself", CurrentPad);
5092 Value *UnresolvedAncestorPad =
nullptr;
5093 for (User *U : CurrentPad->
users()) {
5096 UnwindDest = CRI->getUnwindDest();
5102 if (CSI->unwindsToCaller())
5104 UnwindDest = CSI->getUnwindDest();
5106 UnwindDest =
II->getUnwindDest();
5116 Worklist.push_back(CPI);
5131 if (UnwindParent == CurrentPad)
5137 Value *ExitedPad = CurrentPad;
5140 if (ExitedPad == &FPI) {
5145 UnresolvedAncestorPad = &FPI;
5149 if (ExitedParent == UnwindParent) {
5153 UnresolvedAncestorPad = ExitedParent;
5156 ExitedPad = ExitedParent;
5162 UnresolvedAncestorPad = &FPI;
5169 Check(UnwindPad == FirstUnwindPad,
5170 "Unwind edges out of a funclet "
5171 "pad must have the same unwind "
5173 &FPI, U, FirstUser);
5176 FirstUnwindPad = UnwindPad;
5185 if (CurrentPad != &FPI)
5188 if (UnresolvedAncestorPad) {
5189 if (CurrentPad == UnresolvedAncestorPad) {
5193 assert(CurrentPad == &FPI);
5201 Value *ResolvedPad = CurrentPad;
5202 while (!Worklist.empty()) {
5203 Value *UnclePad = Worklist.back();
5207 while (ResolvedPad != AncestorPad) {
5209 if (ResolvedParent == UnresolvedAncestorPad) {
5212 ResolvedPad = ResolvedParent;
5216 if (ResolvedPad != AncestorPad)
5219 Worklist.pop_back();
5224 if (FirstUnwindPad) {
5226 BasicBlock *SwitchUnwindDest = CatchSwitch->getUnwindDest();
5227 Value *SwitchUnwindPad;
5228 if (SwitchUnwindDest)
5232 Check(SwitchUnwindPad == FirstUnwindPad,
5233 "Unwind edges out of a catch must have the same unwind dest as "
5234 "the parent catchswitch",
5235 &FPI, FirstUser, CatchSwitch);
5239 visitInstruction(FPI);
5242void Verifier::visitCatchSwitchInst(CatchSwitchInst &CatchSwitch) {
5246 Check(
F->hasPersonalityFn(),
5247 "CatchSwitchInst needs to be in a function with a personality.",
5253 "CatchSwitchInst not the first non-PHI instruction in the block.",
5258 "CatchSwitchInst has an invalid parent.", ParentPad);
5263 "CatchSwitchInst must unwind to an EH block which is not a "
5269 SiblingFuncletInfo[&CatchSwitch] = &CatchSwitch;
5273 "CatchSwitchInst cannot have empty handler list", &CatchSwitch);
5275 for (BasicBlock *Handler : CatchSwitch.
handlers()) {
5277 "CatchSwitchInst handlers must be catchpads", &CatchSwitch, Handler);
5280 visitEHPadPredecessors(CatchSwitch);
5281 visitTerminator(CatchSwitch);
5284void Verifier::visitCleanupReturnInst(CleanupReturnInst &CRI) {
5286 "CleanupReturnInst needs to be provided a CleanupPad", &CRI,
5292 "CleanupReturnInst must unwind to an EH block which is not a "
5297 visitTerminator(CRI);
5300void Verifier::verifyDominatesUse(Instruction &
I,
unsigned i) {
5306 if (
II->getNormalDest() ==
II->getUnwindDest())
5320 const Use &
U =
I.getOperandUse(i);
5321 Check(DT.dominates(
Op, U),
"Instruction does not dominate all uses!",
Op, &
I);
5324void Verifier::visitDereferenceableMetadata(Instruction&
I, MDNode* MD) {
5325 Check(
I.getType()->isPointerTy(),
5326 "dereferenceable, dereferenceable_or_null "
5327 "apply only to pointer types",
5330 "dereferenceable, dereferenceable_or_null apply only to load"
5331 " and inttoptr instructions, use attributes for calls or invokes",
5334 "dereferenceable, dereferenceable_or_null "
5335 "take one operand!",
5340 "dereferenceable_or_null metadata value must be an i64!",
5344void Verifier::visitNofreeMetadata(Instruction &
I, MDNode *MD) {
5345 Check(
I.getType()->isPointerTy(),
"nofree applies only to pointer types", &
I);
5351void Verifier::visitProfMetadata(Instruction &
I, MDNode *MD) {
5352 auto GetBranchingTerminatorNumOperands = [&]() {
5353 unsigned ExpectedNumOperands = 0;
5357 ExpectedNumOperands =
SI->getNumSuccessors();
5359 ExpectedNumOperands = 1;
5361 ExpectedNumOperands = IBI->getNumDestinations();
5363 ExpectedNumOperands = 2;
5366 return ExpectedNumOperands;
5369 "!prof annotations should have at least 1 operand", MD);
5371 Check(MD->
getOperand(0) !=
nullptr,
"first operand should not be null", MD);
5373 "expected string with name of the !prof annotation", MD);
5379 "'unknown' !prof should only appear on instructions on which "
5380 "'branch_weights' would",
5382 verifyUnknownProfileMetadata(MD);
5387 "!prof annotations should have no less than 2 operands", MD);
5393 Check(NumBranchWeights == 1 || NumBranchWeights == 2,
5394 "Wrong number of InvokeInst branch_weights operands", MD);
5396 const unsigned ExpectedNumOperands = GetBranchingTerminatorNumOperands();
5397 if (ExpectedNumOperands == 0)
5398 CheckFailed(
"!prof branch_weights are not allowed for this instruction",
5401 Check(NumBranchWeights == ExpectedNumOperands,
"Wrong number of operands",
5407 Check(MDO,
"second operand should not be null", MD);
5409 "!prof brunch_weights operand is not a const int");
5414 Check(KindInt,
"VP !prof missing kind argument", MD);
5417 Check(Kind >= InstrProfValueKind::IPVK_First &&
5418 Kind <= InstrProfValueKind::IPVK_Last,
5419 "Invalid VP !prof kind", MD);
5421 "VP !prof should have an even number "
5422 "of arguments after 'VP'",
5424 if (Kind == InstrProfValueKind::IPVK_IndirectCallTarget ||
5425 Kind == InstrProfValueKind::IPVK_MemOPSize)
5427 "VP !prof indirect call or memop size expected to be applied to "
5428 "CallBase instructions only",
5431 CheckFailed(
"expected either branch_weights or VP profile name", MD);
5435void Verifier::visitDIAssignIDMetadata(Instruction &
I, MDNode *MD) {
5436 assert(
I.hasMetadata(LLVMContext::MD_DIAssignID));
5441 bool ExpectedInstTy =
5443 CheckDI(ExpectedInstTy,
"!DIAssignID attached to unexpected instruction kind",
5448 for (
auto *User : AsValue->users()) {
5450 "!DIAssignID should only be used by llvm.dbg.assign intrinsics",
5454 CheckDI(DAI->getFunction() ==
I.getFunction(),
5455 "dbg.assign not in same function as inst", DAI, &
I);
5458 for (DbgVariableRecord *DVR :
5461 "!DIAssignID should only be used by Assign DVRs.", MD, DVR);
5462 CheckDI(DVR->getFunction() ==
I.getFunction(),
5463 "DVRAssign not in same function as inst", DVR, &
I);
5467void Verifier::visitMMRAMetadata(Instruction &
I, MDNode *MD) {
5469 "!mmra metadata attached to unexpected instruction kind",
I, MD);
5480 for (
const MDOperand &MDOp : MD->
operands())
5482 "!mmra metadata tuple operand is not an MMRA tag",
I, MDOp.get());
5485void Verifier::visitCallStackMetadata(MDNode *MD) {
5489 "call stack metadata should have at least 1 operand", MD);
5493 "call stack metadata operand should be constant integer",
Op);
5496void Verifier::visitMemProfMetadata(Instruction &
I, MDNode *MD) {
5499 "!memprof annotations should have at least 1 metadata operand "
5504 for (
auto &MIBOp : MD->
operands()) {
5510 "Each !memprof MemInfoBlock should have at least 2 operands", MIB);
5514 "!memprof MemInfoBlock first operand should not be null", MIB);
5516 "!memprof MemInfoBlock first operand should be an MDNode", MIB);
5518 visitCallStackMetadata(StackMD);
5522 "!memprof MemInfoBlock second operand should be an MDString", MIB);
5527 Check(OpNode,
"Not all !memprof MemInfoBlock operands 2 to N are MDNode",
5530 "Not all !memprof MemInfoBlock operands 2 to N are MDNode with 2 "
5535 [](
const MDOperand &
Op) {
5536 return mdconst::hasa<ConstantInt>(Op);
5538 "Not all !memprof MemInfoBlock operands 2 to N are MDNode with "
5539 "ConstantInt operands",
5545void Verifier::visitCallsiteMetadata(Instruction &
I, MDNode *MD) {
5549 visitCallStackMetadata(MD);
5558void Verifier::visitCalleeTypeMetadata(Instruction &
I, MDNode *MD) {
5563 "The callee_type metadata must be a list of type metadata nodes",
Op);
5565 Check(TypeMD->getNumOperands() == 2,
5566 "Well-formed generalized type metadata must contain exactly two "
5571 "The first operand of type metadata for functions must be zero",
Op);
5572 Check(TypeMD->hasGeneralizedMDString(),
5573 "Only generalized type metadata can be part of the callee_type "
5579void Verifier::visitAnnotationMetadata(MDNode *Annotation) {
5582 "annotation must have at least one operand");
5584 bool TupleOfStrings =
5590 "operands must be a string or a tuple of strings");
5594void Verifier::visitAliasScopeMetadata(
const MDNode *MD) {
5599 "first scope operand must be self-referential or string", MD);
5602 "third scope operand must be string (if used)", MD);
5605 Check(
Domain !=
nullptr,
"second scope operand must be MDNode", MD);
5607 unsigned NumDomainOps =
Domain->getNumOperands();
5608 Check(NumDomainOps >= 1 && NumDomainOps <= 2,
5609 "domain must have one or two operands",
Domain);
5612 "first domain operand must be self-referential or string",
Domain);
5613 if (NumDomainOps == 2)
5615 "second domain operand must be string (if used)",
Domain);
5618void Verifier::visitAliasScopeListMetadata(
const MDNode *MD) {
5621 Check(OpMD !=
nullptr,
"scope list must consist of MDNodes", MD);
5622 visitAliasScopeMetadata(OpMD);
5626void Verifier::visitAccessGroupMetadata(
const MDNode *MD) {
5627 auto IsValidAccessScope = [](
const MDNode *MD) {
5632 if (IsValidAccessScope(MD))
5638 Check(OpMD !=
nullptr,
"Access scope list must consist of MDNodes", MD);
5639 Check(IsValidAccessScope(OpMD),
5640 "Access scope list contains invalid access scope", MD);
5644void Verifier::visitCapturesMetadata(Instruction &
I,
const MDNode *Captures) {
5645 static const char *ValidArgs[] = {
"address_is_null",
"address",
5646 "read_provenance",
"provenance"};
5649 Check(SI,
"!captures metadata can only be applied to store instructions", &
I);
5650 Check(
SI->getValueOperand()->getType()->isPointerTy(),
5651 "!captures metadata can only be applied to store with value operand of "
5659 Check(Str,
"!captures metadata must be a list of strings", &
I);
5661 "invalid entry in !captures metadata", &
I, Str);
5665void Verifier::visitAllocTokenMetadata(Instruction &
I, MDNode *MD) {
5670 "expected integer constant", MD);
5673void Verifier::visitInlineHistoryMetadata(Instruction &
I, MDNode *MD) {
5682 ->stripPointerCastsAndAliases()),
5683 "!inline_history operands must be functions or null", MD);
5689void Verifier::visitInstruction(Instruction &
I) {
5691 Check(BB,
"Instruction not embedded in basic block!", &
I);
5694 for (User *U :
I.users()) {
5695 Check(U != (User *)&
I || !DT.isReachableFromEntry(BB),
5696 "Only PHI nodes may reference their own value!", &
I);
5701 Check(!
I.getType()->isVoidTy() || !
I.hasName(),
5702 "Instruction has a name, but provides a void value!", &
I);
5706 Check(
I.getType()->isVoidTy() ||
I.getType()->isFirstClassType(),
5707 "Instruction returns a non-scalar type!", &
I);
5712 "Invalid use of metadata!", &
I);
5717 for (Use &U :
I.uses()) {
5720 "Instruction referencing"
5721 " instruction not embedded in a basic block!",
5724 CheckFailed(
"Use of instruction is not an instruction!", U);
5733 for (
unsigned i = 0, e =
I.getNumOperands(); i != e; ++i) {
5734 Check(
I.getOperand(i) !=
nullptr,
"Instruction has null operand!", &
I);
5738 if (!
I.getOperand(i)->getType()->isFirstClassType()) {
5739 Check(
false,
"Instruction operands must be first-class values!", &
I);
5745 auto IsAttachedCallOperand = [](
Function *
F,
const CallBase *CBI,
5747 return CBI && CBI->isOperandBundleOfType(
5755 Check((!
F->isIntrinsic() ||
5756 (CBI && &CBI->getCalledOperandUse() == &
I.getOperandUse(i)) ||
5757 IsAttachedCallOperand(
F, CBI, i)),
5758 "Cannot take the address of an intrinsic!", &
I);
5760 F->getIntrinsicID() == Intrinsic::donothing ||
5761 F->getIntrinsicID() == Intrinsic::seh_try_begin ||
5762 F->getIntrinsicID() == Intrinsic::seh_try_end ||
5763 F->getIntrinsicID() == Intrinsic::seh_scope_begin ||
5764 F->getIntrinsicID() == Intrinsic::seh_scope_end ||
5765 F->getIntrinsicID() == Intrinsic::coro_resume ||
5766 F->getIntrinsicID() == Intrinsic::coro_destroy ||
5767 F->getIntrinsicID() == Intrinsic::coro_await_suspend_void ||
5768 F->getIntrinsicID() == Intrinsic::coro_await_suspend_bool ||
5769 F->getIntrinsicID() == Intrinsic::coro_await_suspend_handle ||
5770 F->getIntrinsicID() ==
5771 Intrinsic::experimental_patchpoint_void ||
5772 F->getIntrinsicID() == Intrinsic::experimental_patchpoint ||
5773 F->getIntrinsicID() == Intrinsic::fake_use ||
5774 F->getIntrinsicID() == Intrinsic::experimental_gc_statepoint ||
5775 F->getIntrinsicID() == Intrinsic::wasm_throw ||
5776 F->getIntrinsicID() == Intrinsic::wasm_rethrow ||
5777 IsAttachedCallOperand(
F, CBI, i),
5778 "Cannot invoke an intrinsic other than donothing, patchpoint, "
5779 "statepoint, coro_resume, coro_destroy, clang.arc.attachedcall or "
5782 Check(
F->getParent() == &M,
"Referencing function in another module!", &
I,
5783 &M,
F,
F->getParent());
5786 "Referring to a basic block in another function!", &
I);
5789 "Referring to an argument in another function!", &
I);
5791 Check(GV->
getParent() == &M,
"Referencing global in another module!", &
I,
5795 "Referring to an instruction in another function!", &
I);
5796 verifyDominatesUse(
I, i);
5798 Check(CBI && &CBI->getCalledOperandUse() == &
I.getOperandUse(i),
5799 "Cannot take the address of an inline asm!", &
I);
5801 visitConstantExprsRecursively(
C);
5805 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_fpmath)) {
5807 "fpmath requires a floating point result!", &
I);
5809 if (ConstantFP *CFP0 =
5811 const APFloat &Accuracy = CFP0->getValueAPF();
5813 "fpmath accuracy must have float type", &
I);
5815 "fpmath accuracy not a positive number!", &
I);
5817 Check(
false,
"invalid fpmath accuracy!", &
I);
5821 if (MDNode *
Range =
I.getMetadata(LLVMContext::MD_range)) {
5823 "Ranges are only for loads, calls and invokes!", &
I);
5824 visitRangeMetadata(
I,
Range,
I.getType());
5827 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_nofpclass)) {
5829 visitNoFPClassMetadata(
I, MD,
I.getType());
5832 if (MDNode *
Range =
I.getMetadata(LLVMContext::MD_noalias_addrspace)) {
5835 "noalias.addrspace are only for memory operations!", &
I);
5836 visitNoaliasAddrspaceMetadata(
I,
Range,
I.getType());
5839 if (
I.hasMetadata(LLVMContext::MD_invariant_group)) {
5841 "invariant.group metadata is only for loads and stores", &
I);
5844 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_nonnull)) {
5845 Check(
I.getType()->isPointerTy(),
"nonnull applies only to pointer types",
5848 "nonnull applies only to load instructions, use attributes"
5849 " for calls or invokes",
5854 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_dereferenceable))
5855 visitDereferenceableMetadata(
I, MD);
5857 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_dereferenceable_or_null))
5858 visitDereferenceableMetadata(
I, MD);
5860 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_nofree))
5861 visitNofreeMetadata(
I, MD);
5863 if (MDNode *TBAA =
I.getMetadata(LLVMContext::MD_tbaa))
5866 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_noalias))
5867 visitAliasScopeListMetadata(MD);
5868 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_alias_scope))
5869 visitAliasScopeListMetadata(MD);
5871 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_access_group))
5872 visitAccessGroupMetadata(MD);
5874 if (MDNode *AlignMD =
I.getMetadata(LLVMContext::MD_align)) {
5875 Check(
I.getType()->isPointerTy(),
"align applies only to pointer types",
5878 "align applies only to load instructions, "
5879 "use attributes for calls or invokes",
5881 Check(AlignMD->getNumOperands() == 1,
"align takes one operand!", &
I);
5884 "align metadata value must be an i64!", &
I);
5888 Check(Align <= Value::MaximumAlignment,
5889 "alignment is larger that implementation defined limit", &
I);
5892 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_prof))
5893 visitProfMetadata(
I, MD);
5895 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_memprof))
5896 visitMemProfMetadata(
I, MD);
5898 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_callsite))
5899 visitCallsiteMetadata(
I, MD);
5901 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_callee_type))
5902 visitCalleeTypeMetadata(
I, MD);
5904 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_DIAssignID))
5905 visitDIAssignIDMetadata(
I, MD);
5907 if (MDNode *MMRA =
I.getMetadata(LLVMContext::MD_mmra))
5908 visitMMRAMetadata(
I, MMRA);
5910 if (MDNode *Annotation =
I.getMetadata(LLVMContext::MD_annotation))
5911 visitAnnotationMetadata(Annotation);
5913 if (MDNode *Captures =
I.getMetadata(LLVMContext::MD_captures))
5914 visitCapturesMetadata(
I, Captures);
5916 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_alloc_token))
5917 visitAllocTokenMetadata(
I, MD);
5919 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_inline_history))
5920 visitInlineHistoryMetadata(
I, MD);
5922 if (MDNode *
N =
I.getDebugLoc().getAsMDNode()) {
5924 visitMDNode(*
N, AreDebugLocsAllowed::Yes);
5927 if (
DL->getAtomGroup()) {
5928 CheckDI(
DL->getScope()->getSubprogram()->getKeyInstructionsEnabled(),
5929 "DbgLoc uses atomGroup but DISubprogram doesn't have Key "
5930 "Instructions enabled",
5931 DL,
DL->getScope()->getSubprogram());
5937 I.getAllMetadata(MDs);
5938 for (
auto Attachment : MDs) {
5939 unsigned Kind = Attachment.first;
5941 (
Kind == LLVMContext::MD_dbg ||
Kind == LLVMContext::MD_loop)
5942 ? AreDebugLocsAllowed::Yes
5943 : AreDebugLocsAllowed::
No;
5944 visitMDNode(*Attachment.second, AllowLocs);
5962 raw_string_ostream ErrOS(ErrMsg);
5965 Check(IsValid, ErrMsg, IF);
5971 const std::string ExpectedName =
5974 "Intrinsic name not mangled correctly for type arguments! "
5986 "const x86_amx is not allowed in argument!");
5992 case Intrinsic::assume: {
5996 "assume with operand bundles must have i1 true condition",
Call);
5999 unsigned ArgCount = Elem.End - Elem.Begin;
6002 if (Elem.Tag->getKey() ==
"separate_storage") {
6003 Check(ArgCount == 2,
6004 "separate_storage assumptions should have 2 arguments",
Call);
6007 "arguments to separate_storage assumptions should be pointers",
6011 Check(Elem.Tag->getKey() ==
"ignore" ||
6012 Attribute::isExistingAttribute(Elem.Tag->getKey()),
6013 "tags must be valid attribute names",
Call);
6014 Attribute::AttrKind
Kind =
6015 Attribute::getAttrKindFromName(Elem.Tag->getKey());
6016 if (Kind == Attribute::Alignment) {
6017 Check(ArgCount <= 3 && ArgCount >= 2,
6018 "alignment assumptions should have 2 or 3 arguments",
Call);
6020 "first argument should be a pointer",
Call);
6022 "second argument should be an integer",
Call);
6025 "third argument should be an integer if present",
Call);
6028 if (Kind == Attribute::Dereferenceable) {
6029 Check(ArgCount == 2,
6030 "dereferenceable assumptions should have 2 arguments",
Call);
6032 "first argument should be a pointer",
Call);
6034 "second argument should be an integer",
Call);
6037 Check(ArgCount <= 2,
"too many arguments",
Call);
6038 if (Kind == Attribute::None)
6040 if (Attribute::isIntAttrKind(Kind)) {
6041 Check(ArgCount == 2,
"this attribute should have 2 arguments",
Call);
6043 "the second argument should be a constant integral value",
Call);
6044 }
else if (Attribute::canUseAsParamAttr(Kind)) {
6045 Check((ArgCount) == 1,
"this attribute should have one argument",
Call);
6046 }
else if (Attribute::canUseAsFnAttr(Kind)) {
6047 Check((ArgCount) == 0,
"this attribute has no argument",
Call);
6052 case Intrinsic::ucmp:
6053 case Intrinsic::scmp: {
6058 "result type must be at least 2 bits wide",
Call);
6060 bool IsDestTypeVector = DestTy->
isVectorTy();
6062 "ucmp/scmp argument and result types must both be either vector or "
6065 if (IsDestTypeVector) {
6068 Check(SrcVecLen == DestVecLen,
6069 "return type and arguments must have the same number of "
6075 case Intrinsic::coro_begin:
6076 case Intrinsic::coro_begin_custom_abi:
6078 "id argument of llvm.coro.begin must refer to coro.id");
6080 case Intrinsic::coro_id: {
6082 "align argument only accepts constants");
6085 "promise argument must refer to an alloca");
6090 "coro argument must refer to a function");
6094 if (BeforeCoroSplit)
6097 Check(!BeforeCoroEarly,
"cannot run CoroSplit before CoroEarly");
6100 "info argument of llvm.coro.id must refer to an initialized "
6104 "info argument of llvm.coro.id must refer to either a struct or "
6108 case Intrinsic::is_fpclass: {
6111 "unsupported bits for llvm.is.fpclass test mask");
6114 case Intrinsic::fptrunc_round: {
6119 MD = MAV->getMetadata();
6121 Check(MD !=
nullptr,
"missing rounding mode argument",
Call);
6124 (
"invalid value for llvm.fptrunc.round metadata operand"
6125 " (the operand should be a string)"),
6128 std::optional<RoundingMode> RoundMode =
6130 Check(RoundMode && *RoundMode != RoundingMode::Dynamic,
6131 "unsupported rounding mode argument",
Call);
6134 case Intrinsic::convert_to_arbitrary_fp: {
6142 "if floating-point operand is a vector, integer operand must also "
6145 Check(ValueVecTy->getElementCount() == IntVecTy->getElementCount(),
6146 "floating-point and integer vector operands must have the same "
6153 Check(InterpMAV,
"missing interpretation metadata operand",
Call);
6155 Check(InterpStr,
"interpretation metadata operand must be a string",
Call);
6156 StringRef Interp = InterpStr->getString();
6158 Check(!Interp.
empty(),
"interpretation metadata string must not be empty",
6163 "unsupported interpretation metadata string",
Call);
6167 Check(RoundingMAV,
"missing rounding mode metadata operand",
Call);
6169 Check(RoundingStr,
"rounding mode metadata operand must be a string",
Call);
6171 std::optional<RoundingMode>
RM =
6173 Check(RM && *RM != RoundingMode::Dynamic,
6174 "unsupported rounding mode argument",
Call);
6177 case Intrinsic::convert_from_arbitrary_fp: {
6185 "if floating-point operand is a vector, integer operand must also "
6188 Check(ValueVecTy->getElementCount() == IntVecTy->getElementCount(),
6189 "floating-point and integer vector operands must have the same "
6196 Check(InterpMAV,
"missing interpretation metadata operand",
Call);
6198 Check(InterpStr,
"interpretation metadata operand must be a string",
Call);
6199 StringRef Interp = InterpStr->getString();
6201 Check(!Interp.
empty(),
"interpretation metadata string must not be empty",
6206 "unsupported interpretation metadata string",
Call);
6209#define BEGIN_REGISTER_VP_INTRINSIC(VPID, ...) case Intrinsic::VPID:
6210#include "llvm/IR/VPIntrinsics.def"
6211#undef BEGIN_REGISTER_VP_INTRINSIC
6214#define INSTRUCTION(NAME, NARGS, ROUND_MODE, INTRINSIC) \
6215 case Intrinsic::INTRINSIC:
6216#include "llvm/IR/ConstrainedOps.def"
6220 case Intrinsic::dbg_declare:
6221 case Intrinsic::dbg_value:
6222 case Intrinsic::dbg_assign:
6223 case Intrinsic::dbg_label:
6230 case Intrinsic::memcpy:
6231 case Intrinsic::memcpy_inline:
6232 case Intrinsic::memmove:
6233 case Intrinsic::memset:
6234 case Intrinsic::memset_inline:
6236 case Intrinsic::experimental_memset_pattern: {
6238 Check(Memset->getValue()->getType()->isSized(),
6239 "unsized types cannot be used as memset patterns",
Call);
6242 case Intrinsic::memcpy_element_unordered_atomic:
6243 case Intrinsic::memmove_element_unordered_atomic:
6244 case Intrinsic::memset_element_unordered_atomic: {
6247 ConstantInt *ElementSizeCI =
6249 const APInt &ElementSizeVal = ElementSizeCI->
getValue();
6251 "element size of the element-wise atomic memory intrinsic "
6252 "must be a power of 2",
6255 auto IsValidAlignment = [&](MaybeAlign Alignment) {
6256 return Alignment && ElementSizeVal.
ule(Alignment->value());
6258 Check(IsValidAlignment(AMI->getDestAlign()),
6259 "incorrect alignment of the destination argument",
Call);
6261 Check(IsValidAlignment(AMT->getSourceAlign()),
6262 "incorrect alignment of the source argument",
Call);
6266 case Intrinsic::call_preallocated_setup: {
6268 bool FoundCall =
false;
6271 Check(UseCall !=
nullptr,
6272 "Uses of llvm.call.preallocated.setup must be calls");
6274 if (IID == Intrinsic::call_preallocated_arg) {
6276 Check(AllocArgIndex !=
nullptr,
6277 "llvm.call.preallocated.alloc arg index must be a constant");
6278 auto AllocArgIndexInt = AllocArgIndex->getValue();
6279 Check(AllocArgIndexInt.sge(0) &&
6280 AllocArgIndexInt.slt(NumArgs->getValue()),
6281 "llvm.call.preallocated.alloc arg index must be between 0 and "
6283 "llvm.call.preallocated.setup's argument count");
6284 }
else if (IID == Intrinsic::call_preallocated_teardown) {
6287 Check(!FoundCall,
"Can have at most one call corresponding to a "
6288 "llvm.call.preallocated.setup");
6290 size_t NumPreallocatedArgs = 0;
6291 for (
unsigned i = 0; i < UseCall->arg_size(); i++) {
6292 if (UseCall->paramHasAttr(i, Attribute::Preallocated)) {
6293 ++NumPreallocatedArgs;
6296 Check(NumPreallocatedArgs != 0,
6297 "cannot use preallocated intrinsics on a call without "
6298 "preallocated arguments");
6299 Check(NumArgs->equalsInt(NumPreallocatedArgs),
6300 "llvm.call.preallocated.setup arg size must be equal to number "
6301 "of preallocated arguments "
6311 auto PreallocatedBundle =
6313 Check(PreallocatedBundle,
6314 "Use of llvm.call.preallocated.setup outside intrinsics "
6315 "must be in \"preallocated\" operand bundle");
6316 Check(PreallocatedBundle->Inputs.front().get() == &
Call,
6317 "preallocated bundle must have token from corresponding "
6318 "llvm.call.preallocated.setup");
6323 case Intrinsic::call_preallocated_arg: {
6326 Token->getIntrinsicID() == Intrinsic::call_preallocated_setup,
6327 "llvm.call.preallocated.arg token argument must be a "
6328 "llvm.call.preallocated.setup");
6330 "llvm.call.preallocated.arg must be called with a \"preallocated\" "
6331 "call site attribute");
6334 case Intrinsic::call_preallocated_teardown: {
6337 Token->getIntrinsicID() == Intrinsic::call_preallocated_setup,
6338 "llvm.call.preallocated.teardown token argument must be a "
6339 "llvm.call.preallocated.setup");
6342 case Intrinsic::gcroot:
6343 case Intrinsic::gcwrite:
6344 case Intrinsic::gcread:
6345 if (
ID == Intrinsic::gcroot) {
6348 Check(AI,
"llvm.gcroot parameter #1 must be an alloca.",
Call);
6350 "llvm.gcroot parameter #2 must be a constant.",
Call);
6353 "llvm.gcroot parameter #1 must either be a pointer alloca, "
6354 "or argument #2 must be a non-null constant.",
6360 "Enclosing function does not use GC.",
Call);
6362 case Intrinsic::init_trampoline:
6364 "llvm.init_trampoline parameter #2 must resolve to a function.",
6367 case Intrinsic::prefetch:
6369 "rw argument to llvm.prefetch must be 0-1",
Call);
6371 "locality argument to llvm.prefetch must be 0-3",
Call);
6373 "cache type argument to llvm.prefetch must be 0-1",
Call);
6375 case Intrinsic::reloc_none: {
6378 "llvm.reloc.none argument must be a metadata string", &
Call);
6381 case Intrinsic::stackprotector:
6383 "llvm.stackprotector parameter #2 must resolve to an alloca.",
Call);
6385 case Intrinsic::localescape: {
6389 Check(!SawFrameEscape,
"multiple calls to llvm.localescape in one function",
6396 "llvm.localescape only accepts static allocas",
Call);
6399 SawFrameEscape =
true;
6402 case Intrinsic::localrecover: {
6406 "llvm.localrecover first "
6407 "argument must be function defined in this module",
6410 auto &
Entry = FrameEscapeInfo[Fn];
6411 Entry.second = unsigned(
6412 std::max(uint64_t(
Entry.second), IdxArg->getLimitedValue(~0U) + 1));
6416 case Intrinsic::experimental_gc_statepoint:
6418 Check(!CI->isInlineAsm(),
6419 "gc.statepoint support for inline assembly unimplemented", CI);
6421 "Enclosing function does not use GC.",
Call);
6423 verifyStatepoint(
Call);
6425 case Intrinsic::experimental_gc_result: {
6427 "Enclosing function does not use GC.",
Call);
6435 Check(StatepointCall && StatepointCall->getIntrinsicID() ==
6436 Intrinsic::experimental_gc_statepoint,
6437 "gc.result operand #1 must be from a statepoint",
Call,
6441 auto *TargetFuncType =
6444 "gc.result result type does not match wrapped callee",
Call);
6447 case Intrinsic::experimental_gc_relocate: {
6451 "gc.relocate must return a pointer or a vector of pointers",
Call);
6456 if (LandingPadInst *LandingPad =
6460 LandingPad->getParent()->getUniquePredecessor();
6464 Check(InvokeBB,
"safepoints should have unique landingpads",
6465 LandingPad->getParent());
6469 "gc relocate should be linked to a statepoint", InvokeBB);
6476 "gc relocate is incorrectly tied to the statepoint",
Call, Token);
6485 "gc.relocate operand #2 must be integer offset",
Call);
6489 "gc.relocate operand #3 must be integer offset",
Call);
6499 Check(BaseIndex < Opt->Inputs.size(),
6500 "gc.relocate: statepoint base index out of bounds",
Call);
6501 Check(DerivedIndex < Opt->Inputs.size(),
6502 "gc.relocate: statepoint derived index out of bounds",
Call);
6515 "gc.relocate: relocated value must be a pointer",
Call);
6516 Check(DerivedType->isPtrOrPtrVectorTy(),
6517 "gc.relocate: relocated value must be a pointer",
Call);
6519 Check(ResultType->isVectorTy() == DerivedType->isVectorTy(),
6520 "gc.relocate: vector relocates to vector and pointer to pointer",
6523 ResultType->getPointerAddressSpace() ==
6524 DerivedType->getPointerAddressSpace(),
6525 "gc.relocate: relocating a pointer shouldn't change its address space",
6529 Check(GC,
"gc.relocate: calling function must have GCStrategy",
6532 auto isGCPtr = [&
GC](
Type *PTy) {
6533 return GC->isGCManagedPointer(PTy->getScalarType()).value_or(
true);
6535 Check(isGCPtr(ResultType),
"gc.relocate: must return gc pointer",
Call);
6537 "gc.relocate: relocated value must be a gc pointer",
Call);
6538 Check(isGCPtr(DerivedType),
6539 "gc.relocate: relocated value must be a gc pointer",
Call);
6543 case Intrinsic::experimental_patchpoint: {
6546 "patchpoint: invalid return type used with anyregcc",
Call);
6550 case Intrinsic::eh_exceptioncode:
6551 case Intrinsic::eh_exceptionpointer: {
6553 "eh.exceptionpointer argument must be a catchpad",
Call);
6556 case Intrinsic::get_active_lane_mask: {
6558 "get_active_lane_mask: must return a "
6562 Check(ElemTy->isIntegerTy(1),
6563 "get_active_lane_mask: element type is not "
6568 case Intrinsic::experimental_get_vector_length: {
6571 "get_vector_length: VF must be positive",
Call);
6574 case Intrinsic::masked_load: {
6580 Check(
Mask->getType()->isVectorTy(),
"masked_load: mask must be vector",
6583 "masked_load: pass through and return type must match",
Call);
6586 "masked_load: vector mask must be same length as return",
Call);
6589 case Intrinsic::masked_store: {
6592 Check(
Mask->getType()->isVectorTy(),
"masked_store: mask must be vector",
6596 "masked_store: vector mask must be same length as value",
Call);
6599 case Intrinsic::experimental_guard: {
6602 "experimental_guard must have exactly one "
6603 "\"deopt\" operand bundle");
6607 case Intrinsic::experimental_deoptimize: {
6611 "experimental_deoptimize must have exactly one "
6612 "\"deopt\" operand bundle");
6614 "experimental_deoptimize return type must match caller return type");
6619 "calls to experimental_deoptimize must be followed by a return");
6623 "calls to experimental_deoptimize must be followed by a return "
6624 "of the value computed by experimental_deoptimize");
6629 case Intrinsic::vastart: {
6631 "va_start called in a non-varargs function");
6634 case Intrinsic::get_dynamic_area_offset: {
6636 Check(IntTy &&
DL.getPointerSizeInBits(
DL.getAllocaAddrSpace()) ==
6637 IntTy->getBitWidth(),
6638 "get_dynamic_area_offset result type must be scalar integer matching "
6639 "alloca address space width",
6643 case Intrinsic::masked_udiv:
6644 case Intrinsic::masked_sdiv:
6645 case Intrinsic::masked_urem:
6646 case Intrinsic::masked_srem:
6647 case Intrinsic::vector_reduce_and:
6648 case Intrinsic::vector_reduce_or:
6649 case Intrinsic::vector_reduce_xor:
6650 case Intrinsic::vector_reduce_add:
6651 case Intrinsic::vector_reduce_mul:
6652 case Intrinsic::vector_reduce_smax:
6653 case Intrinsic::vector_reduce_smin:
6654 case Intrinsic::vector_reduce_umax:
6655 case Intrinsic::vector_reduce_umin: {
6658 "intrinsic has incorrect argument type!");
6661 case Intrinsic::vector_reduce_fmax:
6662 case Intrinsic::vector_reduce_fmin: {
6665 "intrinsic has incorrect argument type!");
6668 case Intrinsic::vector_reduce_fadd:
6669 case Intrinsic::vector_reduce_fmul: {
6674 "intrinsic has incorrect argument type!");
6677 case Intrinsic::smul_fix:
6678 case Intrinsic::smul_fix_sat:
6679 case Intrinsic::umul_fix:
6680 case Intrinsic::umul_fix_sat:
6681 case Intrinsic::sdiv_fix:
6682 case Intrinsic::sdiv_fix_sat:
6683 case Intrinsic::udiv_fix:
6684 case Intrinsic::udiv_fix_sat: {
6688 "first operand of [us][mul|div]_fix[_sat] must be an int type or "
6691 "second operand of [us][mul|div]_fix[_sat] must be an int type or "
6695 Check(Op3->getType()->isIntegerTy(),
6696 "third operand of [us][mul|div]_fix[_sat] must be an int type");
6697 Check(Op3->getBitWidth() <= 32,
6698 "third operand of [us][mul|div]_fix[_sat] must fit within 32 bits");
6700 if (
ID == Intrinsic::smul_fix ||
ID == Intrinsic::smul_fix_sat ||
6701 ID == Intrinsic::sdiv_fix ||
ID == Intrinsic::sdiv_fix_sat) {
6703 "the scale of s[mul|div]_fix[_sat] must be less than the width of "
6707 "the scale of u[mul|div]_fix[_sat] must be less than or equal "
6708 "to the width of the operands");
6712 case Intrinsic::lrint:
6713 case Intrinsic::llrint:
6714 case Intrinsic::lround:
6715 case Intrinsic::llround: {
6721 ExpectedName +
": argument must be floating-point or vector "
6722 "of floating-points, and result must be integer or "
6723 "vector of integers",
6726 ExpectedName +
": argument and result disagree on vector use", &
Call);
6728 Check(VTy->getElementCount() == RTy->getElementCount(),
6729 ExpectedName +
": argument must be same length as result", &
Call);
6733 case Intrinsic::bswap: {
6736 Check(
Size % 16 == 0,
"bswap must be an even number of bytes", &
Call);
6739 case Intrinsic::invariant_start: {
6741 Check(InvariantSize &&
6743 "invariant_start parameter must be -1, 0 or a positive number",
6747 case Intrinsic::matrix_multiply:
6748 case Intrinsic::matrix_transpose:
6749 case Intrinsic::matrix_column_major_load:
6750 case Intrinsic::matrix_column_major_store: {
6752 ConstantInt *Stride =
nullptr;
6753 ConstantInt *NumRows;
6754 ConstantInt *NumColumns;
6756 Type *Op0ElemTy =
nullptr;
6757 Type *Op1ElemTy =
nullptr;
6759 case Intrinsic::matrix_multiply: {
6764 ->getNumElements() ==
6766 "First argument of a matrix operation does not match specified "
6769 ->getNumElements() ==
6771 "Second argument of a matrix operation does not match specified "
6781 case Intrinsic::matrix_transpose:
6788 case Intrinsic::matrix_column_major_load: {
6795 case Intrinsic::matrix_column_major_store: {
6808 Check(ResultTy->getElementType()->isIntegerTy() ||
6809 ResultTy->getElementType()->isFloatingPointTy(),
6810 "Result type must be an integer or floating-point type!", IF);
6813 Check(ResultTy->getElementType() == Op0ElemTy,
6814 "Vector element type mismatch of the result and first operand "
6819 Check(ResultTy->getElementType() == Op1ElemTy,
6820 "Vector element type mismatch of the result and second operand "
6826 "Result of a matrix operation does not fit in the returned vector!");
6832 "Stride must be greater or equal than the number of rows!", IF);
6837 case Intrinsic::stepvector: {
6839 Check(VecTy && VecTy->getScalarType()->isIntegerTy() &&
6840 VecTy->getScalarSizeInBits() >= 8,
6841 "stepvector only supported for vectors of integers "
6842 "with a bitwidth of at least 8.",
6846 case Intrinsic::experimental_vector_match: {
6855 Check(Op1Ty && Op2Ty && MaskTy,
"Operands must be vectors.", &
Call);
6857 "Second operand must be a fixed length vector.", &
Call);
6858 Check(Op1Ty->getElementType()->isIntegerTy(),
6859 "First operand must be a vector of integers.", &
Call);
6860 Check(Op1Ty->getElementType() == Op2Ty->getElementType(),
6861 "First two operands must have the same element type.", &
Call);
6862 Check(Op1Ty->getElementCount() == MaskTy->getElementCount(),
6863 "First operand and mask must have the same number of elements.",
6865 Check(MaskTy->getElementType()->isIntegerTy(1),
6866 "Mask must be a vector of i1's.", &
Call);
6871 case Intrinsic::vector_insert: {
6880 ElementCount VecEC = VecTy->getElementCount();
6881 ElementCount SubVecEC = SubVecTy->getElementCount();
6882 Check(VecTy->getElementType() == SubVecTy->getElementType(),
6883 "vector_insert parameters must have the same element "
6887 "vector_insert index must be a constant multiple of "
6888 "the subvector's known minimum vector length.");
6896 "subvector operand of vector_insert would overrun the "
6897 "vector being inserted into.");
6901 case Intrinsic::vector_extract: {
6909 ElementCount VecEC = VecTy->getElementCount();
6910 ElementCount ResultEC = ResultTy->getElementCount();
6912 Check(ResultTy->getElementType() == VecTy->getElementType(),
6913 "vector_extract result must have the same element "
6914 "type as the input vector.",
6917 "vector_extract index must be a constant multiple of "
6918 "the result type's known minimum vector length.");
6926 "vector_extract would overrun.");
6930 case Intrinsic::vector_partial_reduce_fadd:
6931 case Intrinsic::vector_partial_reduce_add: {
6935 unsigned VecWidth = VecTy->getElementCount().getKnownMinValue();
6936 unsigned AccWidth = AccTy->getElementCount().getKnownMinValue();
6938 Check((VecWidth % AccWidth) == 0,
6939 "Invalid vector widths for partial "
6940 "reduction. The width of the input vector "
6941 "must be a positive integer multiple of "
6942 "the width of the accumulator vector.");
6945 case Intrinsic::experimental_noalias_scope_decl: {
6949 case Intrinsic::preserve_array_access_index:
6950 case Intrinsic::preserve_struct_access_index:
6951 case Intrinsic::aarch64_ldaxr:
6952 case Intrinsic::aarch64_ldxr:
6953 case Intrinsic::arm_ldaex:
6954 case Intrinsic::arm_ldrex: {
6956 Check(ElemTy,
"Intrinsic requires elementtype attribute on first argument.",
6960 case Intrinsic::aarch64_stlxr:
6961 case Intrinsic::aarch64_stxr:
6962 case Intrinsic::arm_stlex:
6963 case Intrinsic::arm_strex: {
6966 "Intrinsic requires elementtype attribute on second argument.",
6970 case Intrinsic::aarch64_prefetch: {
6972 "write argument to llvm.aarch64.prefetch must be 0 or 1",
Call);
6974 "target argument to llvm.aarch64.prefetch must be 0-3",
Call);
6976 "stream argument to llvm.aarch64.prefetch must be 0 or 1",
Call);
6978 "isdata argument to llvm.aarch64.prefetch must be 0 or 1",
Call);
6981 case Intrinsic::aarch64_range_prefetch: {
6983 "write argument to llvm.aarch64.range.prefetch must be 0 or 1",
Call);
6985 "stream argument to llvm.aarch64.range.prefetch must be 0 or 1",
6989 case Intrinsic::callbr_landingpad: {
6991 Check(CBR,
"intrinstic requires callbr operand", &
Call);
6998 CheckFailed(
"Intrinsic in block must have 1 unique predecessor", &
Call);
7002 CheckFailed(
"Intrinsic must have corresponding callbr in predecessor",
7007 "Intrinsic's corresponding callbr must have intrinsic's parent basic "
7008 "block in indirect destination list",
7011 Check(&
First == &
Call,
"No other instructions may proceed intrinsic",
7015 case Intrinsic::structured_gep: {
7021 "Intrinsic first parameter is missing an ElementType attribute",
7029 "Index operand type must be an integer", &
Call);
7032 T = AT->getElementType();
7034 Check(CI,
"Indexing into a struct requires a constant int", &
Call);
7036 "Indexing in a struct should be inbounds", &
Call);
7039 T = VT->getElementType();
7041 CheckFailed(
"Reached a non-composite type with more indices to process",
7047 case Intrinsic::structured_alloca:
7049 "@llvm.structured.alloca calls require elementtype attribute.",
7052 case Intrinsic::amdgcn_cs_chain: {
7055 case CallingConv::AMDGPU_CS:
7056 case CallingConv::AMDGPU_CS_Chain:
7057 case CallingConv::AMDGPU_CS_ChainPreserve:
7058 case CallingConv::AMDGPU_ES:
7059 case CallingConv::AMDGPU_GS:
7060 case CallingConv::AMDGPU_HS:
7061 case CallingConv::AMDGPU_LS:
7062 case CallingConv::AMDGPU_VS:
7065 CheckFailed(
"Intrinsic cannot be called from functions with this "
7066 "calling convention",
7072 "SGPR arguments must have the `inreg` attribute", &
Call);
7074 "VGPR arguments must not have the `inreg` attribute", &
Call);
7079 Intrinsic::amdgcn_unreachable;
7081 "llvm.amdgcn.cs.chain must be followed by unreachable", &
Call);
7084 case Intrinsic::amdgcn_init_exec_from_input: {
7087 "only inreg arguments to the parent function are valid as inputs to "
7092 case Intrinsic::amdgcn_set_inactive_chain_arg: {
7095 case CallingConv::AMDGPU_CS_Chain:
7096 case CallingConv::AMDGPU_CS_ChainPreserve:
7099 CheckFailed(
"Intrinsic can only be used from functions with the "
7100 "amdgpu_cs_chain or amdgpu_cs_chain_preserve "
7101 "calling conventions",
7106 unsigned InactiveIdx = 1;
7108 "Value for inactive lanes must not have the `inreg` attribute",
7111 "Value for inactive lanes must be a function argument", &
Call);
7113 "Value for inactive lanes must be a VGPR function argument", &
Call);
7116 case Intrinsic::amdgcn_call_whole_wave: {
7118 Check(
F,
"Indirect whole wave calls are not allowed", &
Call);
7120 CallingConv::ID CC =
F->getCallingConv();
7121 Check(CC == CallingConv::AMDGPU_Gfx_WholeWave,
7122 "Callee must have the amdgpu_gfx_whole_wave calling convention",
7125 Check(!
F->isVarArg(),
"Variadic whole wave calls are not allowed", &
Call);
7128 "Call argument count must match callee argument count", &
Call);
7132 Check(
F->arg_begin()->getType()->isIntegerTy(1),
7133 "Callee must have i1 as its first argument", &
Call);
7134 for (
auto [CallArg, FuncArg] :
7136 Check(CallArg->getType() == FuncArg.getType(),
7137 "Argument types must match", &
Call);
7141 FuncArg.hasInRegAttr(),
7142 "Argument inreg attributes must match", &
Call);
7146 case Intrinsic::amdgcn_s_prefetch_data: {
7150 "llvm.amdgcn.s.prefetch.data only supports global or constant memory");
7153 case Intrinsic::amdgcn_mfma_scale_f32_16x16x128_f8f6f4:
7154 case Intrinsic::amdgcn_mfma_scale_f32_32x32x64_f8f6f4: {
7160 Check(CBSZ <= 4,
"invalid value for cbsz format",
Call,
7162 Check(BLGP <= 4,
"invalid value for blgp format",
Call,
7166 auto getFormatNumRegs = [](
unsigned FormatVal) {
7167 switch (FormatVal) {
7181 auto isValidSrcASrcBVector = [](FixedVectorType *Ty) {
7182 if (!Ty || !Ty->getElementType()->
isIntegerTy(32))
7184 unsigned NumElts = Ty->getNumElements();
7185 return NumElts == 4 || NumElts == 6 || NumElts == 8;
7190 Check(isValidSrcASrcBVector(Src0Ty),
7191 "operand 0 must be 4, 6 or 8 element i32 vector", &
Call, Src0);
7192 Check(isValidSrcASrcBVector(Src1Ty),
7193 "operand 1 must be 4, 6 or 8 element i32 vector", &
Call, Src1);
7196 Check(Src0Ty->getNumElements() >= getFormatNumRegs(CBSZ),
7198 Check(Src1Ty->getNumElements() >= getFormatNumRegs(BLGP),
7202 case Intrinsic::amdgcn_wmma_f32_16x16x128_f8f6f4:
7203 case Intrinsic::amdgcn_wmma_scale_f32_16x16x128_f8f6f4:
7204 case Intrinsic::amdgcn_wmma_scale16_f32_16x16x128_f8f6f4: {
7210 Check(FmtA <= 4,
"invalid value for matrix format",
Call,
7212 Check(FmtB <= 4,
"invalid value for matrix format",
Call,
7216 auto getFormatNumRegs = [](
unsigned FormatVal) {
7217 switch (FormatVal) {
7231 auto isValidSrcASrcBVector = [](FixedVectorType *Ty) {
7232 if (!Ty || !Ty->getElementType()->
isIntegerTy(32))
7234 unsigned NumElts = Ty->getNumElements();
7235 return NumElts == 16 || NumElts == 12 || NumElts == 8;
7240 Check(isValidSrcASrcBVector(Src0Ty),
7241 "operand 1 must be 8, 12 or 16 element i32 vector", &
Call, Src0);
7242 Check(isValidSrcASrcBVector(Src1Ty),
7243 "operand 3 must be 8, 12 or 16 element i32 vector", &
Call, Src1);
7246 Check(Src0Ty->getNumElements() >= getFormatNumRegs(FmtA),
7248 Check(Src1Ty->getNumElements() >= getFormatNumRegs(FmtB),
7252 case Intrinsic::amdgcn_cooperative_atomic_load_32x4B:
7253 case Intrinsic::amdgcn_cooperative_atomic_load_16x8B:
7254 case Intrinsic::amdgcn_cooperative_atomic_load_8x16B:
7255 case Intrinsic::amdgcn_cooperative_atomic_store_32x4B:
7256 case Intrinsic::amdgcn_cooperative_atomic_store_16x8B:
7257 case Intrinsic::amdgcn_cooperative_atomic_store_8x16B: {
7262 "cooperative atomic intrinsics require a generic or global pointer",
7269 "cooperative atomic intrinsics require that the last argument is a "
7274 case Intrinsic::nvvm_setmaxnreg_inc_sync_aligned_u32:
7275 case Intrinsic::nvvm_setmaxnreg_dec_sync_aligned_u32: {
7278 Check(RegCount % 8 == 0,
7279 "reg_count argument to nvvm.setmaxnreg must be in multiples of 8");
7282 case Intrinsic::experimental_convergence_entry:
7283 case Intrinsic::experimental_convergence_anchor:
7285 case Intrinsic::experimental_convergence_loop:
7287 case Intrinsic::ptrmask: {
7291 "llvm.ptrmask intrinsic first argument must be pointer or vector "
7296 "llvm.ptrmask intrinsic arguments must be both scalars or both vectors",
7301 "llvm.ptrmask intrinsic arguments must have the same number of "
7305 "llvm.ptrmask intrinsic second argument bitwidth must match "
7306 "pointer index type size of first argument",
7310 case Intrinsic::thread_pointer: {
7312 DL.getDefaultGlobalsAddressSpace(),
7313 "llvm.thread.pointer intrinsic return type must be for the globals "
7318 case Intrinsic::threadlocal_address: {
7321 "llvm.threadlocal.address first argument must be a GlobalValue");
7323 "llvm.threadlocal.address operand isThreadLocal() must be true");
7326 case Intrinsic::lifetime_start:
7327 case Intrinsic::lifetime_end: {
7331 (
II &&
II->getIntrinsicID() == Intrinsic::structured_alloca),
7332 "llvm.lifetime.start/end can only be used on alloca or poison",
7336 case Intrinsic::sponentry: {
7337 const unsigned StackAS =
DL.getAllocaAddrSpace();
7340 "llvm.sponentry must return a pointer to the stack", &
Call);
7348 if (
F->hasPersonalityFn() &&
7352 if (BlockEHFuncletColors.
empty())
7356 bool InEHFunclet =
false;
7360 for (BasicBlock *ColorFirstBB : CV)
7361 if (
auto It = ColorFirstBB->getFirstNonPHIIt();
7362 It != ColorFirstBB->end())
7367 bool HasToken =
false;
7374 Check(HasToken,
"Missing funclet token on intrinsic call", &
Call);
7398void Verifier::visit(DbgLabelRecord &DLR) {
7400 "invalid #dbg_label intrinsic variable", &DLR, DLR.
getRawLabel());
7413 CheckDI(Loc,
"#dbg_label record requires a !dbg attachment", &DLR, BB,
F);
7417 if (!LabelSP || !LocSP)
7421 "mismatched subprogram between #dbg_label label and !dbg attachment",
7422 &DLR, BB,
F, Label,
Label->getScope()->getSubprogram(), Loc,
7423 Loc->getScope()->getSubprogram());
7426void Verifier::visit(DbgVariableRecord &DVR) {
7430 CheckDI(DVR.
getType() == DbgVariableRecord::LocationType::Value ||
7431 DVR.
getType() == DbgVariableRecord::LocationType::Declare ||
7432 DVR.
getType() == DbgVariableRecord::LocationType::DeclareValue ||
7433 DVR.
getType() == DbgVariableRecord::LocationType::Assign,
7434 "invalid #dbg record type", &DVR, DVR.
getType(), BB,
F);
7442 "invalid #dbg record address/value", &DVR, MD, BB,
F);
7444 visitValueAsMetadata(*VAM,
F);
7447 Type *Ty = VAM->getValue()->getType();
7449 "location of #dbg_declare must be a pointer or int", &DVR, MD, BB,
7453 visitDIArgList(*AL,
F);
7467 "invalid #dbg_assign DIAssignID", &DVR, DVR.
getRawAssignID(), BB,
7470 AreDebugLocsAllowed::No);
7479 "invalid #dbg_assign address", &DVR, DVR.
getRawAddress(), BB,
F);
7481 visitValueAsMetadata(*VAM,
F);
7484 "invalid #dbg_assign address expression", &DVR,
7491 "inst not in same function as #dbg_assign",
I, &DVR, BB,
F);
7501 &DVR, DLNode, BB,
F);
7507 if (!VarSP || !LocSP)
7511 "mismatched subprogram between #dbg record variable and DILocation",
7513 Loc->getScope()->getSubprogram(), BB,
F);
7518void Verifier::visitVPIntrinsic(VPIntrinsic &VPI) {
7522 Check(RetTy->getElementCount() == ValTy->getElementCount(),
7523 "VP cast intrinsic first argument and result vector lengths must be "
7527 switch (VPCast->getIntrinsicID()) {
7530 case Intrinsic::vp_trunc:
7532 "llvm.vp.trunc intrinsic first argument and result element type "
7536 "llvm.vp.trunc intrinsic the bit size of first argument must be "
7537 "larger than the bit size of the return type",
7540 case Intrinsic::vp_zext:
7541 case Intrinsic::vp_sext:
7543 "llvm.vp.zext or llvm.vp.sext intrinsic first argument and result "
7544 "element type must be integer",
7547 "llvm.vp.zext or llvm.vp.sext intrinsic the bit size of first "
7548 "argument must be smaller than the bit size of the return type",
7551 case Intrinsic::vp_fptoui:
7552 case Intrinsic::vp_fptosi:
7553 case Intrinsic::vp_lrint:
7554 case Intrinsic::vp_llrint:
7557 "llvm.vp.fptoui, llvm.vp.fptosi, llvm.vp.lrint or llvm.vp.llrint" "intrinsic first argument element "
7558 "type must be floating-point and result element type must be integer",
7561 case Intrinsic::vp_uitofp:
7562 case Intrinsic::vp_sitofp:
7565 "llvm.vp.uitofp or llvm.vp.sitofp intrinsic first argument element "
7566 "type must be integer and result element type must be floating-point",
7569 case Intrinsic::vp_fptrunc:
7571 "llvm.vp.fptrunc intrinsic first argument and result element type "
7572 "must be floating-point",
7575 "llvm.vp.fptrunc intrinsic the bit size of first argument must be "
7576 "larger than the bit size of the return type",
7579 case Intrinsic::vp_fpext:
7581 "llvm.vp.fpext intrinsic first argument and result element type "
7582 "must be floating-point",
7585 "llvm.vp.fpext intrinsic the bit size of first argument must be "
7586 "smaller than the bit size of the return type",
7589 case Intrinsic::vp_ptrtoint:
7591 "llvm.vp.ptrtoint intrinsic first argument element type must be "
7592 "pointer and result element type must be integer",
7595 case Intrinsic::vp_inttoptr:
7597 "llvm.vp.inttoptr intrinsic first argument element type must be "
7598 "integer and result element type must be pointer",
7605 case Intrinsic::vp_fcmp: {
7608 "invalid predicate for VP FP comparison intrinsic", &VPI);
7611 case Intrinsic::vp_icmp: {
7614 "invalid predicate for VP integer comparison intrinsic", &VPI);
7617 case Intrinsic::vp_is_fpclass: {
7620 "unsupported bits for llvm.vp.is.fpclass test mask");
7623 case Intrinsic::experimental_vp_splice: {
7626 int64_t KnownMinNumElements = VecTy->getElementCount().getKnownMinValue();
7628 AttributeList
Attrs = VPI.
getParent()->getParent()->getAttributes();
7629 if (
Attrs.hasFnAttr(Attribute::VScaleRange))
7630 KnownMinNumElements *=
Attrs.getFnAttrs().getVScaleRangeMin();
7632 Check((Idx < 0 && std::abs(Idx) <= KnownMinNumElements) ||
7633 (Idx >= 0 && Idx < KnownMinNumElements),
7634 "The splice index exceeds the range [-VL, VL-1] where VL is the "
7635 "known minimum number of elements in the vector. For scalable "
7636 "vectors the minimum number of elements is determined from "
7644void Verifier::visitConstrainedFPIntrinsic(ConstrainedFPIntrinsic &FPI) {
7646 bool HasRoundingMD =
7650 NumOperands += (1 + HasRoundingMD);
7656 "invalid arguments for constrained FP intrinsic", &FPI);
7659 case Intrinsic::experimental_constrained_lrint:
7660 case Intrinsic::experimental_constrained_llrint: {
7664 "Intrinsic does not support vectors", &FPI);
7668 case Intrinsic::experimental_constrained_lround:
7669 case Intrinsic::experimental_constrained_llround: {
7673 "Intrinsic does not support vectors", &FPI);
7677 case Intrinsic::experimental_constrained_fcmp:
7678 case Intrinsic::experimental_constrained_fcmps: {
7681 "invalid predicate for constrained FP comparison intrinsic", &FPI);
7685 case Intrinsic::experimental_constrained_fptosi:
7686 case Intrinsic::experimental_constrained_fptoui: {
7690 "Intrinsic first argument must be floating point", &FPI);
7697 "Intrinsic first argument and result disagree on vector use", &FPI);
7699 "Intrinsic result must be an integer", &FPI);
7702 "Intrinsic first argument and result vector lengths must be equal",
7708 case Intrinsic::experimental_constrained_sitofp:
7709 case Intrinsic::experimental_constrained_uitofp: {
7713 "Intrinsic first argument must be integer", &FPI);
7720 "Intrinsic first argument and result disagree on vector use", &FPI);
7722 "Intrinsic result must be a floating point", &FPI);
7725 "Intrinsic first argument and result vector lengths must be equal",
7731 case Intrinsic::experimental_constrained_fptrunc:
7732 case Intrinsic::experimental_constrained_fpext: {
7738 "Intrinsic first argument must be FP or FP vector", &FPI);
7740 "Intrinsic result must be FP or FP vector", &FPI);
7742 "Intrinsic first argument and result disagree on vector use", &FPI);
7746 "Intrinsic first argument and result vector lengths must be equal",
7749 if (FPI.
getIntrinsicID() == Intrinsic::experimental_constrained_fptrunc) {
7751 "Intrinsic first argument's type must be larger than result type",
7755 "Intrinsic first argument's type must be smaller than result type",
7771 "invalid exception behavior argument", &FPI);
7772 if (HasRoundingMD) {
7778void Verifier::verifyFragmentExpression(
const DbgVariableRecord &DVR) {
7783 if (!V || !
E || !
E->isValid())
7787 auto Fragment =
E->getFragmentInfo();
7797 if (
V->isArtificial())
7800 verifyFragmentExpression(*V, *Fragment, &DVR);
7803template <
typename ValueOrMetadata>
7804void Verifier::verifyFragmentExpression(
const DIVariable &V,
7806 ValueOrMetadata *
Desc) {
7809 auto VarSize =
V.getSizeInBits();
7815 CheckDI(FragSize + FragOffset <= *VarSize,
7816 "fragment is larger than or outside of variable",
Desc, &V);
7817 CheckDI(FragSize != *VarSize,
"fragment covers entire variable",
Desc, &V);
7820void Verifier::verifyFnArgs(
const DbgVariableRecord &DVR) {
7832 CheckDI(Var,
"#dbg record without variable");
7834 unsigned ArgNo = Var->
getArg();
7840 if (DebugFnArgs.
size() < ArgNo)
7841 DebugFnArgs.
resize(ArgNo,
nullptr);
7843 auto *Prev = DebugFnArgs[ArgNo - 1];
7844 DebugFnArgs[ArgNo - 1] = Var;
7845 CheckDI(!Prev || (Prev == Var),
"conflicting debug info for argument", &DVR,
7849void Verifier::verifyNotEntryValue(
const DbgVariableRecord &DVR) {
7853 if (!
E || !
E->isValid())
7863 ArgLoc && ArgLoc->hasAttribute(Attribute::SwiftAsync))
7868 "Entry values are only allowed in MIR unless they target a "
7869 "swiftasync Argument",
7873void Verifier::verifyCompileUnits() {
7877 if (
M.getContext().isODRUniquingDebugTypes())
7879 auto *CUs =
M.getNamedMetadata(
"llvm.dbg.cu");
7880 SmallPtrSet<const Metadata *, 2> Listed;
7883 for (
const auto *CU : CUVisited)
7884 CheckDI(Listed.
count(CU),
"DICompileUnit not listed in llvm.dbg.cu", CU);
7888void Verifier::verifyDeoptimizeCallingConvs() {
7889 if (DeoptimizeDeclarations.
empty())
7893 for (
const auto *
F :
ArrayRef(DeoptimizeDeclarations).slice(1)) {
7894 Check(
First->getCallingConv() ==
F->getCallingConv(),
7895 "All llvm.experimental.deoptimize declarations must have the same "
7896 "calling convention",
7901void Verifier::verifyAttachedCallBundle(
const CallBase &
Call,
7902 const OperandBundleUse &BU) {
7905 Check((FTy->getReturnType()->isPointerTy() ||
7907 "a call with operand bundle \"clang.arc.attachedcall\" must call a "
7908 "function returning a pointer or a non-returning function that has a "
7913 "operand bundle \"clang.arc.attachedcall\" requires one function as "
7921 Check((IID == Intrinsic::objc_retainAutoreleasedReturnValue ||
7922 IID == Intrinsic::objc_claimAutoreleasedReturnValue ||
7923 IID == Intrinsic::objc_unsafeClaimAutoreleasedReturnValue),
7924 "invalid function argument",
Call);
7926 StringRef FnName = Fn->
getName();
7927 Check((FnName ==
"objc_retainAutoreleasedReturnValue" ||
7928 FnName ==
"objc_claimAutoreleasedReturnValue" ||
7929 FnName ==
"objc_unsafeClaimAutoreleasedReturnValue"),
7930 "invalid function argument",
Call);
7934void Verifier::verifyNoAliasScopeDecl() {
7935 if (NoAliasScopeDecls.
empty())
7939 for (
auto *
II : NoAliasScopeDecls) {
7940 assert(
II->getIntrinsicID() == Intrinsic::experimental_noalias_scope_decl &&
7941 "Not a llvm.experimental.noalias.scope.decl ?");
7944 Check(ScopeListMV !=
nullptr,
7945 "llvm.experimental.noalias.scope.decl must have a MetadataAsValue "
7950 Check(ScopeListMD !=
nullptr,
"!id.scope.list must point to an MDNode",
II);
7951 Check(ScopeListMD->getNumOperands() == 1,
7952 "!id.scope.list must point to a list with a single scope",
II);
7953 visitAliasScopeListMetadata(ScopeListMD);
7963 auto GetScope = [](IntrinsicInst *
II) {
7966 return &
cast<MDNode>(ScopeListMV->getMetadata())->getOperand(0);
7971 auto Compare = [GetScope](IntrinsicInst *Lhs, IntrinsicInst *Rhs) {
7972 return GetScope(Lhs) < GetScope(Rhs);
7979 auto ItCurrent = NoAliasScopeDecls.begin();
7980 while (ItCurrent != NoAliasScopeDecls.end()) {
7981 auto CurScope = GetScope(*ItCurrent);
7982 auto ItNext = ItCurrent;
7985 }
while (ItNext != NoAliasScopeDecls.end() &&
7986 GetScope(*ItNext) == CurScope);
7991 if (ItNext - ItCurrent < 32)
7995 Check(!DT.dominates(
I, J),
7996 "llvm.experimental.noalias.scope.decl dominates another one "
7997 "with the same scope",
8011 Verifier V(OS,
true, *f.getParent());
8015 return !V.verify(
F);
8019 bool *BrokenDebugInfo) {
8021 Verifier V(OS, !BrokenDebugInfo, M);
8023 bool Broken =
false;
8025 Broken |= !V.verify(
F);
8027 Broken |= !V.verify();
8028 if (BrokenDebugInfo)
8029 *BrokenDebugInfo = V.hasBrokenDebugInfo();
8040 std::unique_ptr<Verifier> V;
8041 bool FatalErrors =
true;
8044 explicit VerifierLegacyPass(
bool FatalErrors)
8045 : FunctionPass(
ID), FatalErrors(FatalErrors) {}
8047 bool doInitialization(
Module &M)
override {
8048 V = std::make_unique<Verifier>(
8054 if (!
V->verify(
F) && FatalErrors) {
8055 errs() <<
"in function " <<
F.getName() <<
'\n';
8061 bool doFinalization(
Module &M)
override {
8062 bool HasErrors =
false;
8063 for (Function &
F : M)
8064 if (
F.isDeclaration())
8065 HasErrors |= !
V->verify(
F);
8067 HasErrors |= !
V->verify();
8068 if (FatalErrors && (HasErrors ||
V->hasBrokenDebugInfo()))
8073 void getAnalysisUsage(AnalysisUsage &AU)
const override {
8081template <
typename... Tys>
void TBAAVerifier::CheckFailed(Tys &&... Args) {
8083 return Diagnostic->CheckFailed(
Args...);
8086#define CheckTBAA(C, ...) \
8089 CheckFailed(__VA_ARGS__); \
8097TBAAVerifier::TBAABaseNodeSummary
8101 CheckFailed(
"Base nodes must have at least two operands",
I, BaseNode);
8105 auto Itr = TBAABaseNodes.find(BaseNode);
8106 if (Itr != TBAABaseNodes.end())
8109 auto Result = verifyTBAABaseNodeImpl(
I, BaseNode, IsNewFormat);
8110 auto InsertResult = TBAABaseNodes.insert({BaseNode, Result});
8112 assert(InsertResult.second &&
"We just checked!");
8116TBAAVerifier::TBAABaseNodeSummary
8117TBAAVerifier::verifyTBAABaseNodeImpl(
const Instruction *
I,
8118 const MDNode *BaseNode,
bool IsNewFormat) {
8119 const TBAAVerifier::TBAABaseNodeSummary InvalidNode = {
true, ~0
u};
8123 return isValidScalarTBAANode(BaseNode)
8124 ? TBAAVerifier::TBAABaseNodeSummary({
false, 0})
8130 CheckFailed(
"Access tag nodes must have the number of operands that is a "
8131 "multiple of 3!", BaseNode);
8136 CheckFailed(
"Struct tag nodes must have an odd number of operands!",
8146 if (!TypeSizeNode) {
8147 CheckFailed(
"Type size nodes must be constants!",
I, BaseNode);
8154 CheckFailed(
"Struct tag nodes have a string as their first operand",
8161 std::optional<APInt> PrevOffset;
8166 unsigned FirstFieldOpNo = IsNewFormat ? 3 : 1;
8167 unsigned NumOpsPerField = IsNewFormat ? 3 : 2;
8168 for (
unsigned Idx = FirstFieldOpNo; Idx < BaseNode->
getNumOperands();
8169 Idx += NumOpsPerField) {
8170 const MDOperand &FieldTy = BaseNode->
getOperand(Idx);
8171 const MDOperand &FieldOffset = BaseNode->
getOperand(Idx + 1);
8173 CheckFailed(
"Incorrect field entry in struct type node!",
I, BaseNode);
8178 auto *OffsetEntryCI =
8180 if (!OffsetEntryCI) {
8181 CheckFailed(
"Offset entries must be constants!",
I, BaseNode);
8187 BitWidth = OffsetEntryCI->getBitWidth();
8189 if (OffsetEntryCI->getBitWidth() !=
BitWidth) {
8191 "Bitwidth between the offsets and struct type entries must match",
I,
8203 !PrevOffset || PrevOffset->ule(OffsetEntryCI->getValue());
8206 CheckFailed(
"Offsets must be increasing!",
I, BaseNode);
8210 PrevOffset = OffsetEntryCI->getValue();
8215 if (!MemberSizeNode) {
8216 CheckFailed(
"Member size entries must be constants!",
I, BaseNode);
8223 return Failed ? InvalidNode
8224 : TBAAVerifier::TBAABaseNodeSummary(
false,
BitWidth);
8246 return Parent && Visited.
insert(Parent).second &&
8250bool TBAAVerifier::isValidScalarTBAANode(
const MDNode *MD) {
8251 auto ResultIt = TBAAScalarNodes.find(MD);
8252 if (ResultIt != TBAAScalarNodes.end())
8253 return ResultIt->second;
8255 SmallPtrSet<const MDNode *, 4> Visited;
8257 auto InsertResult = TBAAScalarNodes.insert({MD,
Result});
8259 assert(InsertResult.second &&
"Just checked!");
8268MDNode *TBAAVerifier::getFieldNodeFromTBAABaseNode(
const Instruction *
I,
8269 const MDNode *BaseNode,
8280 unsigned FirstFieldOpNo = IsNewFormat ? 3 : 1;
8281 unsigned NumOpsPerField = IsNewFormat ? 3 : 2;
8282 for (
unsigned Idx = FirstFieldOpNo; Idx < BaseNode->
getNumOperands();
8283 Idx += NumOpsPerField) {
8284 auto *OffsetEntryCI =
8286 if (OffsetEntryCI->getValue().ugt(
Offset)) {
8287 if (Idx == FirstFieldOpNo) {
8288 CheckFailed(
"Could not find TBAA parent in struct type node",
I,
8293 unsigned PrevIdx = Idx - NumOpsPerField;
8294 auto *PrevOffsetEntryCI =
8296 Offset -= PrevOffsetEntryCI->getValue();
8304 Offset -= LastOffsetEntryCI->getValue();
8309 if (!
Type ||
Type->getNumOperands() < 3)
8325 "This instruction shall not have a TBAA access tag!",
I);
8327 bool IsStructPathTBAA =
8331 "Old-style TBAA is no longer allowed, use struct-path TBAA instead",
8341 "Access tag metadata must have either 4 or 5 operands",
I, MD);
8344 "Struct tag metadata must have either 3 or 4 operands",
I, MD);
8351 CheckTBAA(AccessSizeNode,
"Access size field must be a constant",
I, MD);
8355 unsigned ImmutabilityFlagOpNo = IsNewFormat ? 4 : 3;
8360 "Immutability tag on struct tag metadata must be a constant",
I,
8363 IsImmutableCI->isZero() || IsImmutableCI->isOne(),
8364 "Immutability part of the struct tag metadata must be either 0 or 1",
I,
8369 "Malformed struct tag metadata: base and access-type "
8370 "should be non-null and point to Metadata nodes",
8371 I, MD, BaseNode, AccessType);
8374 CheckTBAA(isValidScalarTBAANode(AccessType),
8375 "Access type node must be a valid scalar type",
I, MD,
8380 CheckTBAA(OffsetCI,
"Offset must be constant integer",
I, MD);
8383 bool SeenAccessTypeInPath =
false;
8389 getFieldNodeFromTBAABaseNode(
I, BaseNode,
Offset, IsNewFormat)) {
8390 if (!StructPath.
insert(BaseNode).second) {
8391 CheckFailed(
"Cycle detected in struct path",
I, MD);
8396 unsigned BaseNodeBitWidth;
8397 std::tie(
Invalid, BaseNodeBitWidth) =
8398 verifyTBAABaseNode(
I, BaseNode, IsNewFormat);
8405 SeenAccessTypeInPath |= BaseNode == AccessType;
8407 if (isValidScalarTBAANode(BaseNode) || BaseNode == AccessType)
8412 (BaseNodeBitWidth == 0 &&
Offset == 0) ||
8413 (IsNewFormat && BaseNodeBitWidth == ~0u),
8414 "Access bit-width not the same as description bit-width",
I, MD,
8415 BaseNodeBitWidth,
Offset.getBitWidth());
8417 if (IsNewFormat && SeenAccessTypeInPath)
8421 CheckTBAA(SeenAccessTypeInPath,
"Did not see access type in access path!",
I,
8426char VerifierLegacyPass::ID = 0;
8427INITIALIZE_PASS(VerifierLegacyPass,
"verify",
"Module Verifier",
false,
false)
8430 return new VerifierLegacyPass(FatalErrors);
8448 if (FatalErrors && (Res.IRBroken || Res.DebugInfoBroken))
8456 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.
const size_t AbstractManglingParser< Derived, Alloc >::NumOps
Machine Check Debug Module
This file implements a map that provides insertion order iteration.
This file provides utility for Memory Model Relaxation Annotations (MMRAs).
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
uint64_t IntrinsicInst * II
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
This file contains the declarations for profiling metadata utility functions.
const SmallVectorImpl< MachineOperand > & Cond
static unsigned getNumElements(Type *Ty)
static void visit(BasicBlock &Start, std::function< bool(BasicBlock *)> op)
verify safepoint Safepoint IR Verifier
BaseType
A given derived pointer can have multiple base pointers through phi/selects.
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
static unsigned getBitWidth(Type *Ty, const DataLayout &DL)
Returns the bitwidth of the given scalar or pointer type.
static bool IsScalarTBAANodeImpl(const MDNode *MD, SmallPtrSetImpl< const MDNode * > &Visited)
static bool isType(const Metadata *MD)
static Instruction * getSuccPad(Instruction *Terminator)
static bool isMDTuple(const Metadata *MD)
static bool isNewFormatTBAATypeNode(llvm::MDNode *Type)
#define CheckDI(C,...)
We know that a debug info condition should be true, if not print an error message.
static void forEachUser(const Value *User, SmallPtrSet< const Value *, 32 > &Visited, llvm::function_ref< bool(const Value *)> Callback)
static bool isDINode(const Metadata *MD)
static bool isScope(const Metadata *MD)
static cl::opt< bool > VerifyNoAliasScopeDomination("verify-noalias-scope-decl-dom", cl::Hidden, cl::init(false), cl::desc("Ensure that llvm.experimental.noalias.scope.decl for identical " "scopes are not dominating"))
static bool isTypeCongruent(Type *L, Type *R)
Two types are "congruent" if they are identical, or if they are both pointer types with different poi...
static bool isConstantIntMetadataOperand(const Metadata *MD)
static bool IsRootTBAANode(const MDNode *MD)
static Value * getParentPad(Value *EHPad)
static bool hasConflictingReferenceFlags(unsigned Flags)
Detect mutually exclusive flags.
static AttrBuilder getParameterABIAttributes(LLVMContext &C, unsigned I, AttributeList Attrs)
static const char PassName[]
static LLVM_ABI bool isValidArbitraryFPFormat(StringRef Format)
Returns true if the given string is a valid arbitrary floating-point format interpretation for llvm....
bool isFiniteNonZero() const
const fltSemantics & getSemantics() const
Class for arbitrary precision integers.
bool sgt(const APInt &RHS) const
Signed greater than comparison.
bool isMinValue() const
Determine if this is the smallest unsigned value.
bool ule(const APInt &RHS) const
Unsigned less or equal comparison.
bool isPowerOf2() const
Check if this APInt's value is a power of two greater than zero.
int64_t getSExtValue() const
Get sign extended value.
bool isMaxValue() const
Determine if this is the largest unsigned value.
This class represents a conversion between pointers from one address space to another.
bool isSwiftError() const
Return true if this alloca is used as a swifterror argument to a call.
LLVM_ABI bool isStaticAlloca() const
Return true if this alloca is in the entry block of the function and is a constant size.
Align getAlign() const
Return the alignment of the memory that is being allocated by the instruction.
Type * getAllocatedType() const
Return the type that is being allocated by the instruction.
unsigned getAddressSpace() const
Return the address space for the allocation.
LLVM_ABI bool isArrayAllocation() const
Return true if there is an allocation size parameter to the allocation instruction that is not 1.
const Value * getArraySize() const
Get the number of elements allocated.
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
void setPreservesAll()
Set by analyses that do not transform their input at all.
LLVM_ABI bool hasInRegAttr() const
Return true if this argument has the inreg attribute.
bool 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.
bool hasInAllocaArgument() const
Determine if there are is an inalloca argument.
OperandBundleUse getOperandBundleAt(unsigned Index) const
Return the operand bundle at a specific index.
Function * getCalledFunction() const
Returns the function called, or null if this is an indirect function invocation or the function signa...
bool doesNotAccessMemory(unsigned OpNo) const
bool hasFnAttr(Attribute::AttrKind Kind) const
Determine whether this call has the given attribute.
bool hasRetAttr(Attribute::AttrKind Kind) const
Determine whether the return value has the given attribute.
unsigned getNumOperandBundles() const
Return the number of operand bundles associated with this User.
CallingConv::ID getCallingConv() const
LLVM_ABI bool paramHasAttr(unsigned ArgNo, Attribute::AttrKind Kind) const
Determine whether the argument or parameter has the given attribute.
Attribute getParamAttr(unsigned ArgNo, Attribute::AttrKind Kind) const
Get the attribute of a given kind from a given arg.
iterator_range< bundle_op_iterator > bundle_op_infos()
Return the range [bundle_op_info_begin, bundle_op_info_end).
unsigned countOperandBundlesOfType(StringRef Name) const
Return the number of operand bundles with the tag Name attached to this instruction.
bool onlyReadsMemory(unsigned OpNo) const
Value * getCalledOperand() const
Type * getParamElementType(unsigned ArgNo) const
Extract the elementtype type for a parameter.
Value * getArgOperand(unsigned i) const
FunctionType * getFunctionType() const
LLVM_ABI Intrinsic::ID getIntrinsicID() const
Returns the intrinsic ID of the intrinsic called or Intrinsic::not_intrinsic if the called function i...
iterator_range< User::op_iterator > args()
Iteration adapter for range-for loops.
bool doesNotReturn() const
Determine if the call cannot return.
LLVM_ABI bool onlyAccessesArgMemory() const
Determine if the call can access memmory only using pointers based on its arguments.
unsigned arg_size() const
AttributeList getAttributes() const
Return the attributes for this call.
bool hasOperandBundles() const
Return true if this User has any operand bundles.
LLVM_ABI Function * getCaller()
Helper to get the caller (the parent function).
BasicBlock * getIndirectDest(unsigned i) const
unsigned getNumIndirectDests() const
Return the number of callbr indirect dest labels.
bool isMustTailCall() const
static LLVM_ABI bool castIsValid(Instruction::CastOps op, Type *SrcTy, Type *DstTy)
This method can be used to determine if a cast from SrcTy to DstTy using Opcode op is valid or not.
unsigned getNumHandlers() const
return the number of 'handlers' in this catchswitch instruction, except the default handler
Value * getParentPad() const
BasicBlock * getUnwindDest() const
handler_range handlers()
iteration adapter for range-for loops.
BasicBlock * getUnwindDest() const
bool isFPPredicate() const
bool isIntPredicate() const
static bool isIntPredicate(Predicate P)
Value * getCondition() const
bool isMinusOne() const
This function will return true iff every bit in this constant is set to true.
bool isZero() const
This is just a convenience method to make client code smaller for a common code.
unsigned getBitWidth() const
getBitWidth - Return the scalar bitwidth of this constant.
uint64_t getZExtValue() const
Return the constant as a 64-bit unsigned integer value after it has been zero extended as appropriate...
const APInt & getValue() const
Return the constant as an APInt value reference.
Constant * getAddrDiscriminator() const
The address discriminator if any, or the null constant.
Constant * getPointer() const
The pointer that is signed in this ptrauth signed pointer.
ConstantInt * getKey() const
The Key ID, an i32 constant.
Constant * getDeactivationSymbol() const
ConstantInt * getDiscriminator() const
The integer discriminator, an i64 constant, or 0.
static LLVM_ABI bool isOrderedRanges(ArrayRef< ConstantRange > RangesRef)
This class represents a range of values.
const APInt & getLower() const
Return the lower value for this range.
const APInt & getUpper() const
Return the upper value for this range.
LLVM_ABI bool contains(const APInt &Val) const
Return true if the specified value is in the set.
uint32_t getBitWidth() const
Get the bit width of this ConstantRange.
static LLVM_ABI ConstantTokenNone * get(LLVMContext &Context)
Return the ConstantTokenNone.
LLVM_ABI bool isNullValue() const
Return true if this is the value that would be returned by getNullValue.
LLVM_ABI std::optional< fp::ExceptionBehavior > getExceptionBehavior() const
LLVM_ABI std::optional< RoundingMode > getRoundingMode() const
LLVM_ABI unsigned getNonMetadataArgCount() const
DbgVariableFragmentInfo FragmentInfo
@ FixedPointBinary
Scale factor 2^Factor.
@ FixedPointDecimal
Scale factor 10^Factor.
@ FixedPointRational
Arbitrary rational scale factor.
DIGlobalVariable * getVariable() const
DIExpression * getExpression() const
LLVM_ABI DISubprogram * getSubprogram() const
Get the subprogram for this scope.
DILocalScope * getScope() const
Get the local scope for this variable.
Metadata * getRawScope() const
Base class for scope-like contexts.
Subprogram description. Uses SubclassData1.
static const DIScope * getRawRetainedNodeScope(const MDNode *N)
Base class for template parameters.
Base class for variables.
Metadata * getRawType() const
Metadata * getRawScope() const
uint64_t getNumOperands() const
A parsed version of the target data layout string in and methods for querying it.
Records a position in IR for a source label (DILabel).
MDNode * getRawLabel() const
DILabel * getLabel() const
Base class for non-instruction debug metadata records that have positions within IR.
LLVM_ABI void print(raw_ostream &O, bool IsForDebug=false) const
DebugLoc getDebugLoc() const
LLVM_ABI const BasicBlock * getParent() const
LLVM_ABI Function * getFunction()
Record of a variable value-assignment, aka a non instruction representation of the dbg....
LocationType getType() const
MDNode * getRawExpression() const
MDNode * getRawAddressExpression() const
LLVM_ABI Value * getVariableLocationOp(unsigned OpIdx) const
DIExpression * getExpression() const
Metadata * getRawAssignID() const
MDNode * getRawVariable() const
DILocalVariable * getVariable() const
Metadata * getRawLocation() const
Returns the metadata operand for the first location description.
bool isDbgDeclare() const
Metadata * getRawAddress() const
@ End
Marks the end of the concrete types.
@ Any
To indicate all LocationTypes in searches.
DIExpression * getAddressExpression() const
MDNode * getAsMDNode() const
Return this as a bar MDNode.
ValueT lookup(const_arg_type_t< KeyT > Val) const
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.
unsigned getNumElements() const
Random access to the elements.
LLVM_ABI Type * getTypeAtIndex(const Value *V) const
Given an index value into the type, return the type of the element.
LLVM_ABI bool isScalableTy(SmallPtrSetImpl< const Type * > &Visited) const
Returns true if this struct contains a scalable vector.
Verify that the TBAA Metadatas are valid.
LLVM_ABI bool visitTBAAMetadata(const Instruction *I, const MDNode *MD)
Visit an instruction, or a TBAA node itself as part of a metadata, and return true if it is valid,...
Triple - Helper class for working with autoconf configuration names.
This class represents a truncation of integer types.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
The instances of the Type class are immutable: once they are created, they are never changed.
bool isByteTy() const
True if this is an instance of ByteType.
bool isVectorTy() const
True if this is an instance of VectorType.
LLVM_ABI bool containsNonGlobalTargetExtType(SmallPtrSetImpl< const Type * > &Visited) const
Return true if this type is or contains a target extension type that disallows being used as a global...
bool isArrayTy() const
True if this is an instance of ArrayType.
LLVM_ABI bool containsNonLocalTargetExtType(SmallPtrSetImpl< const Type * > &Visited) const
Return true if this type is or contains a target extension type that disallows being used as a local.
LLVM_ABI bool isScalableTy(SmallPtrSetImpl< const Type * > &Visited) const
Return true if this is a type whose size is a known multiple of vscale.
bool isLabelTy() const
Return true if this is 'label'.
bool isIntOrIntVectorTy() const
Return true if this is an integer type or a vector of integer types.
bool isPointerTy() const
True if this is an instance of PointerType.
LLVM_ABI bool isTokenLikeTy() const
Returns true if this is 'token' or a token-like target type.s.
LLVM_ABI unsigned getPointerAddressSpace() const
Get the address space of this pointer or pointer vector type.
bool isSingleValueType() const
Return true if the type is a valid type for a register in codegen.
LLVM_ABI bool canLosslesslyBitCastTo(Type *Ty) const
Return true if this type could be converted with a lossless BitCast to type 'Ty'.
Type * getScalarType() const
If this is a vector type, return the element type, otherwise return 'this'.
bool isSized(SmallPtrSetImpl< Type * > *Visited=nullptr) const
Return true if it makes sense to take the size of this type.
LLVM_ABI unsigned getScalarSizeInBits() const LLVM_READONLY
If this is a vector type, return the getPrimitiveSizeInBits value for the element type.
bool isFloatingPointTy() const
Return true if this is one of the floating-point types.
bool isPtrOrPtrVectorTy() const
Return true if this is a pointer type or a vector of pointer types.
bool isIntOrPtrTy() const
Return true if this is an integer type or a pointer type.
bool isIntegerTy() const
True if this is an instance of IntegerType.
bool isFPOrFPVectorTy() const
Return true if this is a FP type or a vector of FP.
bool isVoidTy() const
Return true if this is 'void'.
bool isMetadataTy() const
Return true if this is 'metadata'.
This class represents a cast unsigned integer to floating point.
Value * getOperand(unsigned i) const
unsigned getNumOperands() const
This class represents the va_arg llvm instruction, which returns an argument of the specified type gi...
LLVM Value Representation.
iterator_range< user_iterator > materialized_users()
Type * getType() const
All values are typed, get the type of this value.
LLVM_ABI const Value * stripPointerCastsAndAliases() const
Strip off pointer casts, all-zero GEPs, address space casts, and aliases.
LLVMContext & getContext() const
All values hold a context through their type.
LLVM_ABI const Value * stripInBoundsOffsets(function_ref< void(const Value *)> Func=[](const Value *) {}) const
Strip off pointer casts and inbounds GEPs.
iterator_range< user_iterator > users()
bool materialized_use_empty() const
LLVM_ABI const Value * stripPointerCasts() const
Strip off pointer casts, all-zero GEPs and address space casts.
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
Check a module for errors, and report separate error states for IR and debug info errors.
LLVM_ABI Result run(Module &M, ModuleAnalysisManager &)
LLVM_ABI PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM)
This class represents zero extension of integer types.
constexpr bool isNonZero() const
constexpr bool isScalable() const
Returns whether the quantity is scaled by a runtime quantity (vscale).
constexpr ScalarTy getKnownMinValue() const
Returns the minimum value this quantity can represent.
An efficient, type-erasing, non-owning reference to a callable.
const ParentTy * getParent() const
NodeTy * getNextNode()
Get the next node, or nullptr for the list tail.
This class implements an extremely fast bulk output stream that can only output to a stream.
This file contains the declaration of the Comdat class, which represents a single COMDAT in LLVM.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ FLAT_ADDRESS
Address space for flat memory.
@ GLOBAL_ADDRESS
Address space for global memory (RAT0, VTX0).
@ PRIVATE_ADDRESS
Address space for private memory.
constexpr char Align[]
Key for Kernel::Arg::Metadata::mAlign.
constexpr char Args[]
Key for Kernel::Metadata::mArgs.
constexpr char Attrs[]
Key for Kernel::Metadata::mAttrs.
bool isFlatGlobalAddrSpace(unsigned AS)
constexpr std::underlying_type_t< E > Mask()
Get a bitmask with 1s in all places up to the high-order bit of E's largest value.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
@ C
The default llvm calling convention, compatible with C.
@ BasicBlock
Various leaf nodes.
LLVM_ABI 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)
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.
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
LLVM_ABI bool verifyFunction(const Function &F, raw_ostream *OS=nullptr)
Check a function for errors, useful for use when debugging a pass.
testing::Matcher< const detail::ErrorHolder & > Failed()
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
LLVM_ABI DenseMap< BasicBlock *, ColorVector > colorEHFunclets(Function &F)
If an EH funclet personality is in use (see isFuncletEHPersonality), this will recompute which blocks...
constexpr bool isUIntN(unsigned N, uint64_t x)
Checks if an unsigned integer fits into the given (dynamic) bit width.
constexpr bool isPowerOf2_64(uint64_t Value)
Return true if the argument is a power of two > 0 (64 bit edition.)
gep_type_iterator gep_type_end(const User *GEP)
bool isa_and_nonnull(const Y &Val)
bool isScopedEHPersonality(EHPersonality Pers)
Returns true if this personality uses scope-style EH IR instructions: catchswitch,...
auto dyn_cast_or_null(const Y &Val)
GenericConvergenceVerifier< SSAContext > ConvergenceVerifier
constexpr bool isPowerOf2_32(uint32_t Value)
Return true if the argument is a power of two > 0.
bool isModSet(const ModRefInfo MRI)
void sort(IteratorTy Start, IteratorTy End)
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
generic_gep_type_iterator<> gep_type_iterator
FunctionAddr VTableAddr Count
LLVM_ABI EHPersonality classifyEHPersonality(const Value *Pers)
See if the given exception handling personality function is one that we understand.
iterator_range< SplittingIterator > split(StringRef Str, StringRef Separator)
Split the specified string over a separator and return a range-compatible iterable over its partition...
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
LLVM_ABI bool isValueProfileMD(const MDNode *ProfileData)
Checks if an MDNode contains value profiling Metadata.
LLVM_ABI raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
LLVM_ABI unsigned getNumBranchWeights(const MDNode &ProfileData)
AtomicOrdering
Atomic ordering for LLVM's memory model.
@ First
Helpers to iterate all locations in the MemoryEffectsBase class.
LLVM_ABI FunctionPass * createVerifierPass(bool FatalErrors=true)
FunctionAddr VTableAddr Next
DWARFExpression::Operation Op
ArrayRef(const T &OneElt) -> ArrayRef< T >
constexpr unsigned BitWidth
TinyPtrVector< BasicBlock * > ColorVector
LLVM_ABI const char * LLVMLoopEstimatedTripCount
Profile-based loop metadata that should be accessed only by using llvm::getLoopEstimatedTripCount and...
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
LLVM_ABI std::optional< RoundingMode > convertStrToRoundingMode(StringRef)
Returns a valid RoundingMode enumerator when given a string that is valid as input in constrained int...
gep_type_iterator gep_type_begin(const User *GEP)
LLVM_ABI std::unique_ptr< GCStrategy > getGCStrategy(const StringRef Name)
Lookup the GCStrategy object associated with the given gc name.
auto predecessors(const MachineBasicBlock *BB)
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
bool pred_empty(const BasicBlock *BB)
bool isHexDigit(char C)
Checks if character C is a hexadecimal numeric character.
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.
constexpr bool isCallableCC(CallingConv::ID CC)
LLVM_ABI bool verifyModule(const Module &M, raw_ostream *OS=nullptr, bool *BrokenDebugInfo=nullptr)
Check a module for errors.
AnalysisManager< Module > ModuleAnalysisManager
Convenience typedef for the Module analysis manager.
constexpr uint64_t value() const
This is a hole in the type system and should not be abused.
A special type used by analysis passes to provide an address that identifies that particular analysis...
static LLVM_ABI const char * SyntheticFunctionEntryCount
static LLVM_ABI const char * UnknownBranchWeightsMarker
static LLVM_ABI const char * ValueProfile
static LLVM_ABI const char * FunctionEntryCount
static LLVM_ABI const char * BranchWeights
uint32_t getTagID() const
Return the tag of this operand bundle as an integer.
void DebugInfoCheckFailed(const Twine &Message)
A debug info check failed.
VerifierSupport(raw_ostream *OS, const Module &M)
bool Broken
Track the brokenness of the module while recursively visiting.
void CheckFailed(const Twine &Message, const T1 &V1, const Ts &... Vs)
A check failed (with values to print).
bool BrokenDebugInfo
Broken debug info can be "recovered" from by stripping the debug info.
bool TreatBrokenDebugInfoAsError
Whether to treat broken debug info as an error.
void CheckFailed(const Twine &Message)
A check failed, so printout out the condition and the message.
void DebugInfoCheckFailed(const Twine &Message, const T1 &V1, const Ts &... Vs)
A debug info check failed (with values to print).