94#include "llvm/IR/IntrinsicsAArch64.h"
95#include "llvm/IR/IntrinsicsAMDGPU.h"
96#include "llvm/IR/IntrinsicsARM.h"
97#include "llvm/IR/IntrinsicsNVPTX.h"
98#include "llvm/IR/IntrinsicsWebAssembly.h"
136 cl::desc(
"Ensure that llvm.experimental.noalias.scope.decl for identical "
137 "scopes are not dominating"));
160 *
OS <<
"; ModuleID = '" << M->getModuleIdentifier() <<
"'\n";
173 V.printAsOperand(*
OS,
true,
MST);
178 void Write(
const DbgRecord *DR) {
194 *
OS <<
"declare_value";
215 template <
class T>
void Write(
const MDTupleTypedArrayWrapper<T> &MD) {
219 void Write(
const NamedMDNode *NMD) {
232 void Write(
const Comdat *
C) {
238 void Write(
const APInt *AI) {
244 void Write(
const unsigned i) { *
OS << i <<
'\n'; }
250 *
OS <<
A->getAsString() <<
'\n';
254 void Write(
const AttributeSet *AS) {
261 void Write(
const AttributeList *AL) {
267 void Write(Printable
P) { *
OS <<
P <<
'\n'; }
269 template <
typename T>
void Write(ArrayRef<T> Vs) {
270 for (
const T &V : Vs)
274 template <
typename T1,
typename... Ts>
275 void WriteTs(
const T1 &V1,
const Ts &... Vs) {
280 template <
typename... Ts>
void WriteTs() {}
289 *
OS << Message <<
'\n';
297 template <
typename T1,
typename... Ts>
307 *
OS << Message <<
'\n';
313 template <
typename T1,
typename... Ts>
345 Type *LandingPadResultTy;
352 bool HasDebugInfo =
false;
395 SawFrameEscape(
false), TBAAVerifyHelper(this) {
396 TreatBrokenDebugInfoAsError = ShouldTreatBrokenDebugInfoAsError;
399 bool hasBrokenDebugInfo()
const {
return BrokenDebugInfo; }
401 bool verify(
const Function &
F) {
402 llvm::TimeTraceScope timeScope(
"Verifier");
404 "An instance of this class only works with a specific module!");
413 DT.recalculate(
const_cast<Function &
>(
F));
415 for (
const BasicBlock &BB :
F) {
416 if (!BB.empty() && BB.back().isTerminator())
420 *OS <<
"Basic Block in function '" <<
F.getName()
421 <<
"' does not have terminator!\n";
422 BB.printAsOperand(*OS,
true, MST);
428 auto FailureCB = [
this](
const Twine &Message) {
429 this->CheckFailed(Message);
431 ConvergenceVerifyHelper.initialize(OS, FailureCB,
F);
436 verifySiblingFuncletUnwinds();
438 if (ConvergenceVerifyHelper.sawTokens())
439 ConvergenceVerifyHelper.verify(DT);
441 InstsInThisBlock.clear();
443 LandingPadResultTy =
nullptr;
444 SawFrameEscape =
false;
445 SiblingFuncletInfo.clear();
446 verifyNoAliasScopeDecl();
447 NoAliasScopeDecls.clear();
457 for (
const Function &
F : M)
458 if (
F.getIntrinsicID() == Intrinsic::experimental_deoptimize)
459 DeoptimizeDeclarations.push_back(&
F);
463 verifyFrameRecoverIndices();
464 for (
const GlobalVariable &GV :
M.globals())
465 visitGlobalVariable(GV);
467 for (
const GlobalAlias &GA :
M.aliases())
468 visitGlobalAlias(GA);
470 for (
const GlobalIFunc &GI :
M.ifuncs())
471 visitGlobalIFunc(GI);
473 for (
const NamedMDNode &NMD :
M.named_metadata())
474 visitNamedMDNode(NMD);
476 for (
const StringMapEntry<Comdat> &SMEC :
M.getComdatSymbolTable())
477 visitComdat(SMEC.getValue());
481 visitModuleCommandLines();
482 visitModuleErrnoTBAA();
484 verifyCompileUnits();
486 verifyDeoptimizeCallingConvs();
487 DISubprogramAttachments.clear();
493 enum class AreDebugLocsAllowed {
No,
Yes };
497 enum class RangeLikeMetadataKind {
504 void visitGlobalValue(
const GlobalValue &GV);
505 void visitGlobalVariable(
const GlobalVariable &GV);
506 void visitGlobalAlias(
const GlobalAlias &GA);
507 void visitGlobalIFunc(
const GlobalIFunc &GI);
508 void visitAliaseeSubExpr(
const GlobalAlias &
A,
const Constant &
C);
509 void visitAliaseeSubExpr(SmallPtrSetImpl<const GlobalAlias *> &Visited,
510 const GlobalAlias &
A,
const Constant &
C);
511 void visitNamedMDNode(
const NamedMDNode &NMD);
512 void visitMDNode(
const MDNode &MD, AreDebugLocsAllowed AllowLocs);
513 void visitMetadataAsValue(
const MetadataAsValue &MD, Function *
F);
514 void visitValueAsMetadata(
const ValueAsMetadata &MD, Function *
F);
515 void visitDIArgList(
const DIArgList &AL, Function *
F);
516 void visitComdat(
const Comdat &
C);
517 void visitModuleIdents();
518 void visitModuleCommandLines();
519 void visitModuleErrnoTBAA();
520 void visitModuleFlags();
521 void visitModuleFlag(
const MDNode *
Op,
522 DenseMap<const MDString *, const MDNode *> &SeenIDs,
523 SmallVectorImpl<const MDNode *> &Requirements);
524 void visitModuleFlagCGProfileEntry(
const MDOperand &MDO);
525 void visitFunction(
const Function &
F);
526 void visitBasicBlock(BasicBlock &BB);
527 void verifyRangeLikeMetadata(
const Value &V,
const MDNode *
Range,
Type *Ty,
528 RangeLikeMetadataKind Kind);
529 void visitRangeMetadata(Instruction &
I, MDNode *
Range,
Type *Ty);
530 void visitNoaliasAddrspaceMetadata(Instruction &
I, MDNode *
Range,
Type *Ty);
531 void visitDereferenceableMetadata(Instruction &
I, MDNode *MD);
532 void visitNofreeMetadata(Instruction &
I, MDNode *MD);
533 void visitProfMetadata(Instruction &
I, MDNode *MD);
534 void visitCallStackMetadata(MDNode *MD);
535 void visitMemProfMetadata(Instruction &
I, MDNode *MD);
536 void visitCallsiteMetadata(Instruction &
I, MDNode *MD);
537 void visitCalleeTypeMetadata(Instruction &
I, MDNode *MD);
538 void visitDIAssignIDMetadata(Instruction &
I, MDNode *MD);
539 void visitMMRAMetadata(Instruction &
I, MDNode *MD);
540 void visitAnnotationMetadata(MDNode *Annotation);
541 void visitAliasScopeMetadata(
const MDNode *MD);
542 void visitAliasScopeListMetadata(
const MDNode *MD);
543 void visitAccessGroupMetadata(
const MDNode *MD);
544 void visitCapturesMetadata(Instruction &
I,
const MDNode *Captures);
545 void visitAllocTokenMetadata(Instruction &
I, MDNode *MD);
547 template <
class Ty>
bool isValidMetadataArray(
const MDTuple &
N);
548#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) void visit##CLASS(const CLASS &N);
549#include "llvm/IR/Metadata.def"
550 void visitDIScope(
const DIScope &
N);
574 void checkPtrToAddr(
Type *SrcTy,
Type *DestTy,
const Value &V);
579 void visitPHINode(
PHINode &PN);
588 void visitVAArgInst(
VAArgInst &VAA) { visitInstruction(VAA); }
589 void visitCallInst(CallInst &CI);
590 void visitInvokeInst(InvokeInst &
II);
591 void visitGetElementPtrInst(GetElementPtrInst &
GEP);
592 void visitLoadInst(LoadInst &LI);
593 void visitStoreInst(StoreInst &SI);
594 void verifyDominatesUse(Instruction &
I,
unsigned i);
595 void visitInstruction(Instruction &
I);
596 void visitTerminator(Instruction &
I);
597 void visitBranchInst(BranchInst &BI);
598 void visitReturnInst(ReturnInst &RI);
599 void visitSwitchInst(SwitchInst &SI);
600 void visitIndirectBrInst(IndirectBrInst &BI);
601 void visitCallBrInst(CallBrInst &CBI);
602 void visitSelectInst(SelectInst &SI);
603 void visitUserOp1(Instruction &
I);
604 void visitUserOp2(Instruction &
I) { visitUserOp1(
I); }
606 void visitConstrainedFPIntrinsic(ConstrainedFPIntrinsic &FPI);
607 void visitVPIntrinsic(VPIntrinsic &VPI);
608 void visitDbgLabelIntrinsic(StringRef Kind, DbgLabelInst &DLI);
609 void visitAtomicCmpXchgInst(AtomicCmpXchgInst &CXI);
610 void visitAtomicRMWInst(AtomicRMWInst &RMWI);
611 void visitFenceInst(FenceInst &FI);
612 void visitAllocaInst(AllocaInst &AI);
613 void visitExtractValueInst(ExtractValueInst &EVI);
614 void visitInsertValueInst(InsertValueInst &IVI);
615 void visitEHPadPredecessors(Instruction &
I);
616 void visitLandingPadInst(LandingPadInst &LPI);
617 void visitResumeInst(ResumeInst &RI);
618 void visitCatchPadInst(CatchPadInst &CPI);
619 void visitCatchReturnInst(CatchReturnInst &CatchReturn);
620 void visitCleanupPadInst(CleanupPadInst &CPI);
621 void visitFuncletPadInst(FuncletPadInst &FPI);
622 void visitCatchSwitchInst(CatchSwitchInst &CatchSwitch);
623 void visitCleanupReturnInst(CleanupReturnInst &CRI);
625 void verifySwiftErrorCall(CallBase &
Call,
const Value *SwiftErrorVal);
626 void verifySwiftErrorValue(
const Value *SwiftErrorVal);
627 void verifyTailCCMustTailAttrs(
const AttrBuilder &Attrs, StringRef
Context);
628 void verifyMustTailCall(CallInst &CI);
629 bool verifyAttributeCount(AttributeList Attrs,
unsigned Params);
630 void verifyAttributeTypes(AttributeSet Attrs,
const Value *V);
631 void verifyParameterAttrs(AttributeSet Attrs,
Type *Ty,
const Value *V);
632 void checkUnsignedBaseTenFuncAttr(AttributeList Attrs, StringRef Attr,
634 void verifyFunctionAttrs(FunctionType *FT, AttributeList Attrs,
635 const Value *V,
bool IsIntrinsic,
bool IsInlineAsm);
636 void verifyFunctionMetadata(
ArrayRef<std::pair<unsigned, MDNode *>> MDs);
637 void verifyUnknownProfileMetadata(MDNode *MD);
638 void visitConstantExprsRecursively(
const Constant *EntryC);
639 void visitConstantExpr(
const ConstantExpr *CE);
640 void visitConstantPtrAuth(
const ConstantPtrAuth *CPA);
641 void verifyInlineAsmCall(
const CallBase &
Call);
642 void verifyStatepoint(
const CallBase &
Call);
643 void verifyFrameRecoverIndices();
644 void verifySiblingFuncletUnwinds();
646 void verifyFragmentExpression(
const DbgVariableRecord &
I);
647 template <
typename ValueOrMetadata>
648 void verifyFragmentExpression(
const DIVariable &V,
650 ValueOrMetadata *
Desc);
651 void verifyFnArgs(
const DbgVariableRecord &DVR);
652 void verifyNotEntryValue(
const DbgVariableRecord &
I);
655 void verifyCompileUnits();
659 void verifyDeoptimizeCallingConvs();
661 void verifyAttachedCallBundle(
const CallBase &
Call,
662 const OperandBundleUse &BU);
665 void verifyNoAliasScopeDecl();
671#define Check(C, ...) \
674 CheckFailed(__VA_ARGS__); \
681#define CheckDI(C, ...) \
684 DebugInfoCheckFailed(__VA_ARGS__); \
692 CheckDI(
I.DebugMarker->MarkedInstr == &
I,
693 "Instruction has invalid DebugMarker", &
I);
695 "PHI Node must not have any attached DbgRecords", &
I);
698 "DbgRecord had invalid DebugMarker", &
I, &DR);
701 visitMDNode(*
Loc, AreDebugLocsAllowed::Yes);
706 verifyFragmentExpression(*DVR);
707 verifyNotEntryValue(*DVR);
714void Verifier::visit(Instruction &
I) {
716 for (
unsigned i = 0, e =
I.getNumOperands(); i != e; ++i)
717 Check(
I.getOperand(i) !=
nullptr,
"Operand is null", &
I);
729 while (!WorkList.
empty()) {
731 if (!Visited.
insert(Cur).second)
738void Verifier::visitGlobalValue(
const GlobalValue &GV) {
740 "Global is external, but doesn't have external or weak linkage!", &GV);
743 if (
const MDNode *Associated =
744 GO->getMetadata(LLVMContext::MD_associated)) {
745 Check(Associated->getNumOperands() == 1,
746 "associated metadata must have one operand", &GV, Associated);
747 const Metadata *
Op = Associated->getOperand(0).get();
748 Check(
Op,
"associated metadata must have a global value", GO, Associated);
751 Check(VM,
"associated metadata must be ValueAsMetadata", GO, Associated);
754 "associated value must be pointer typed", GV, Associated);
756 const Value *Stripped = VM->getValue()->stripPointerCastsAndAliases();
758 "associated metadata must point to a GlobalObject", GO, Stripped);
759 Check(Stripped != GO,
760 "global values should not associate to themselves", GO,
766 if (
const MDNode *AbsoluteSymbol =
767 GO->getMetadata(LLVMContext::MD_absolute_symbol)) {
768 verifyRangeLikeMetadata(*GO, AbsoluteSymbol,
769 DL.getIntPtrType(GO->getType()),
770 RangeLikeMetadataKind::AbsoluteSymbol);
773 if (GO->hasMetadata(LLVMContext::MD_implicit_ref)) {
774 Check(!GO->isDeclaration(),
775 "ref metadata must not be placed on a declaration", GO);
778 GO->getMetadata(LLVMContext::MD_implicit_ref, MDs);
779 for (
const MDNode *MD : MDs) {
780 Check(MD->getNumOperands() == 1,
"ref metadata must have one operand",
784 Check(VM,
"ref metadata must be ValueAsMetadata", GO, MD);
787 "ref value must be pointer typed", GV, MD);
791 "ref metadata must point to a GlobalObject", GO, Stripped);
792 Check(Stripped != GO,
"values should not reference themselves", GO,
800 "Only global variables can have appending linkage!", &GV);
805 "Only global arrays can have appending linkage!", GVar);
809 Check(!GV.
hasComdat(),
"Declaration may not be in a Comdat!", &GV);
813 "dllexport GlobalValue must have default or protected visibility",
818 "dllimport GlobalValue must have default visibility", &GV);
819 Check(!GV.
isDSOLocal(),
"GlobalValue with DLLImport Storage is dso_local!",
825 "Global is marked as dllimport, but not external", &GV);
830 "GlobalValue with local linkage or non-default "
831 "visibility must be dso_local!",
836 if (!
I->getParent() || !
I->getParent()->getParent())
837 CheckFailed(
"Global is referenced by parentless instruction!", &GV, &M,
839 else if (
I->getParent()->getParent()->getParent() != &M)
840 CheckFailed(
"Global is referenced in a different module!", &GV, &M,
I,
841 I->getParent()->getParent(),
842 I->getParent()->getParent()->getParent());
845 if (
F->getParent() != &M)
846 CheckFailed(
"Global is used by function in a different module", &GV, &M,
854void Verifier::visitGlobalVariable(
const GlobalVariable &GV) {
858 Check(
A->value() <= Value::MaximumAlignment,
859 "huge alignment values are unsupported", &GV);
864 "Global variable initializer type does not match global "
868 "Global variable initializer must be sized", &GV);
874 "'common' global must have a zero initializer!", &GV);
877 Check(!GV.
hasComdat(),
"'common' global may not be in a Comdat!", &GV);
882 GV.
getName() ==
"llvm.global_dtors")) {
884 "invalid linkage for intrinsic global variable", &GV);
886 "invalid uses of intrinsic global variable", &GV);
893 PointerType::get(
Context,
DL.getProgramAddressSpace());
897 "wrong type for intrinsic global variable", &GV);
899 "the third field of the element type is mandatory, "
900 "specify ptr null to migrate from the obsoleted 2-field form");
908 GV.
getName() ==
"llvm.compiler.used")) {
910 "invalid linkage for intrinsic global variable", &GV);
912 "invalid uses of intrinsic global variable", &GV);
916 Check(PTy,
"wrong type for intrinsic global variable", &GV);
920 Check(InitArray,
"wrong initializer for intrinsic global variable",
926 Twine(
"invalid ") + GV.
getName() +
" member", V);
928 Twine(
"members of ") + GV.
getName() +
" must be named", V);
937 for (
auto *MD : MDs) {
939 visitDIGlobalVariableExpression(*GVE);
941 CheckDI(
false,
"!dbg attachment of global variable must be a "
942 "DIGlobalVariableExpression");
952 "Global @" + GV.
getName() +
" has illegal target extension type",
956 visitGlobalValue(GV);
963 visitGlobalValue(GV);
966void Verifier::visitAliaseeSubExpr(
const GlobalAlias &GA,
const Constant &
C) {
967 SmallPtrSet<const GlobalAlias*, 4> Visited;
969 visitAliaseeSubExpr(Visited, GA,
C);
972void Verifier::visitAliaseeSubExpr(SmallPtrSetImpl<const GlobalAlias*> &Visited,
973 const GlobalAlias &GA,
const Constant &
C) {
977 "available_externally alias must point to available_externally "
988 Check(Visited.
insert(GA2).second,
"Aliases cannot form a cycle", &GA);
990 Check(!GA2->isInterposable(),
991 "Alias cannot point to an interposable alias", &GA);
1000 visitConstantExprsRecursively(CE);
1002 for (
const Use &U :
C.operands()) {
1005 visitAliaseeSubExpr(Visited, GA, *GA2->getAliasee());
1007 visitAliaseeSubExpr(Visited, GA, *C2);
1011void Verifier::visitGlobalAlias(
const GlobalAlias &GA) {
1013 "Alias should have private, internal, linkonce, weak, linkonce_odr, "
1014 "weak_odr, external, or available_externally linkage!",
1017 Check(Aliasee,
"Aliasee cannot be NULL!", &GA);
1019 "Alias and aliasee types should match!", &GA);
1022 "Aliasee should be either GlobalValue or ConstantExpr", &GA);
1024 visitAliaseeSubExpr(GA, *Aliasee);
1026 visitGlobalValue(GA);
1029void Verifier::visitGlobalIFunc(
const GlobalIFunc &GI) {
1030 visitGlobalValue(GI);
1034 for (
const auto &
I : MDs) {
1035 CheckDI(
I.first != LLVMContext::MD_dbg,
1036 "an ifunc may not have a !dbg attachment", &GI);
1037 Check(
I.first != LLVMContext::MD_prof,
1038 "an ifunc may not have a !prof attachment", &GI);
1039 visitMDNode(*
I.second, AreDebugLocsAllowed::No);
1043 "IFunc should have private, internal, linkonce, weak, linkonce_odr, "
1044 "weak_odr, or external linkage!",
1049 Check(Resolver,
"IFunc must have a Function resolver", &GI);
1051 "IFunc resolver must be a definition", &GI);
1058 "IFunc resolver must return a pointer", &GI);
1061 "IFunc resolver has incorrect type", &GI);
1064void Verifier::visitNamedMDNode(
const NamedMDNode &NMD) {
1069 "unrecognized named metadata node in the llvm.dbg namespace", &NMD);
1070 for (
const MDNode *MD : NMD.
operands()) {
1071 if (NMD.
getName() ==
"llvm.dbg.cu")
1077 visitMDNode(*MD, AreDebugLocsAllowed::Yes);
1081void Verifier::visitMDNode(
const MDNode &MD, AreDebugLocsAllowed AllowLocs) {
1084 if (!MDNodes.
insert(&MD).second)
1088 "MDNode context does not match Module context!", &MD);
1093 case Metadata::MDTupleKind:
1095#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) \
1096 case Metadata::CLASS##Kind: \
1097 visit##CLASS(cast<CLASS>(MD)); \
1099#include "llvm/IR/Metadata.def"
1108 "DILocation not allowed within this metadata node", &MD,
Op);
1110 visitMDNode(*
N, AllowLocs);
1114 visitValueAsMetadata(*V,
nullptr);
1126 "Expected second operand to be an integer constant of type i32 or "
1136void Verifier::visitValueAsMetadata(
const ValueAsMetadata &MD, Function *
F) {
1139 "Unexpected metadata round-trip through values", &MD, MD.
getValue());
1145 Check(
F,
"function-local metadata used outside a function", L);
1151 Check(
I->getParent(),
"function-local metadata not in basic block", L,
I);
1157 assert(ActualF &&
"Unimplemented function local metadata case!");
1159 Check(ActualF ==
F,
"function-local metadata used in wrong function", L);
1162void Verifier::visitDIArgList(
const DIArgList &AL, Function *
F) {
1163 for (
const ValueAsMetadata *VAM :
AL.getArgs())
1164 visitValueAsMetadata(*VAM,
F);
1167void Verifier::visitMetadataAsValue(
const MetadataAsValue &MDV, Function *
F) {
1170 visitMDNode(*
N, AreDebugLocsAllowed::No);
1176 if (!MDNodes.
insert(MD).second)
1180 visitValueAsMetadata(*V,
F);
1183 visitDIArgList(*AL,
F);
1191void Verifier::visitDILocation(
const DILocation &
N) {
1193 "location requires a valid scope", &
N,
N.getRawScope());
1194 if (
auto *IA =
N.getRawInlinedAt())
1197 CheckDI(
SP->isDefinition(),
"scope points into the type hierarchy", &
N);
1200void Verifier::visitGenericDINode(
const GenericDINode &
N) {
1204void Verifier::visitDIScope(
const DIScope &
N) {
1205 if (
auto *
F =
N.getRawFile())
1209void Verifier::visitDISubrangeType(
const DISubrangeType &
N) {
1210 CheckDI(
N.getTag() == dwarf::DW_TAG_subrange_type,
"invalid tag", &
N);
1213 auto *LBound =
N.getRawLowerBound();
1217 "LowerBound must be signed constant or DIVariable or DIExpression or "
1220 auto *UBound =
N.getRawUpperBound();
1224 "UpperBound must be signed constant or DIVariable or DIExpression or "
1227 auto *Stride =
N.getRawStride();
1230 "Stride must be signed constant or DIVariable or DIExpression", &
N);
1231 auto *Bias =
N.getRawBias();
1234 "Bias must be signed constant or DIVariable or DIExpression", &
N);
1236 auto *
Size =
N.getRawSizeInBits();
1238 "SizeInBits must be a constant");
1241void Verifier::visitDISubrange(
const DISubrange &
N) {
1242 CheckDI(
N.getTag() == dwarf::DW_TAG_subrange_type,
"invalid tag", &
N);
1243 CheckDI(!
N.getRawCountNode() || !
N.getRawUpperBound(),
1244 "Subrange can have any one of count or upperBound", &
N);
1245 auto *CBound =
N.getRawCountNode();
1248 "Count must be signed constant or DIVariable or DIExpression", &
N);
1249 auto Count =
N.getCount();
1252 "invalid subrange count", &
N);
1253 auto *LBound =
N.getRawLowerBound();
1256 "LowerBound must be signed constant or DIVariable or DIExpression",
1258 auto *UBound =
N.getRawUpperBound();
1261 "UpperBound must be signed constant or DIVariable or DIExpression",
1263 auto *Stride =
N.getRawStride();
1266 "Stride must be signed constant or DIVariable or DIExpression", &
N);
1269void Verifier::visitDIGenericSubrange(
const DIGenericSubrange &
N) {
1270 CheckDI(
N.getTag() == dwarf::DW_TAG_generic_subrange,
"invalid tag", &
N);
1271 CheckDI(!
N.getRawCountNode() || !
N.getRawUpperBound(),
1272 "GenericSubrange can have any one of count or upperBound", &
N);
1273 auto *CBound =
N.getRawCountNode();
1275 "Count must be signed constant or DIVariable or DIExpression", &
N);
1276 auto *LBound =
N.getRawLowerBound();
1277 CheckDI(LBound,
"GenericSubrange must contain lowerBound", &
N);
1279 "LowerBound must be signed constant or DIVariable or DIExpression",
1281 auto *UBound =
N.getRawUpperBound();
1283 "UpperBound must be signed constant or DIVariable or DIExpression",
1285 auto *Stride =
N.getRawStride();
1286 CheckDI(Stride,
"GenericSubrange must contain stride", &
N);
1288 "Stride must be signed constant or DIVariable or DIExpression", &
N);
1291void Verifier::visitDIEnumerator(
const DIEnumerator &
N) {
1292 CheckDI(
N.getTag() == dwarf::DW_TAG_enumerator,
"invalid tag", &
N);
1295void Verifier::visitDIBasicType(
const DIBasicType &
N) {
1296 CheckDI(
N.getTag() == dwarf::DW_TAG_base_type ||
1297 N.getTag() == dwarf::DW_TAG_unspecified_type ||
1298 N.getTag() == dwarf::DW_TAG_string_type,
1301 auto *
Size =
N.getRawSizeInBits();
1303 "SizeInBits must be a constant");
1306void Verifier::visitDIFixedPointType(
const DIFixedPointType &
N) {
1307 visitDIBasicType(
N);
1309 CheckDI(
N.getTag() == dwarf::DW_TAG_base_type,
"invalid tag", &
N);
1310 CheckDI(
N.getEncoding() == dwarf::DW_ATE_signed_fixed ||
1311 N.getEncoding() == dwarf::DW_ATE_unsigned_fixed,
1312 "invalid encoding", &
N);
1316 "invalid kind", &
N);
1318 N.getFactorRaw() == 0,
1319 "factor should be 0 for rationals", &
N);
1321 (
N.getNumeratorRaw() == 0 &&
N.getDenominatorRaw() == 0),
1322 "numerator and denominator should be 0 for non-rationals", &
N);
1325void Verifier::visitDIStringType(
const DIStringType &
N) {
1326 CheckDI(
N.getTag() == dwarf::DW_TAG_string_type,
"invalid tag", &
N);
1327 CheckDI(!(
N.isBigEndian() &&
N.isLittleEndian()),
"has conflicting flags",
1331void Verifier::visitDIDerivedType(
const DIDerivedType &
N) {
1335 CheckDI(
N.getTag() == dwarf::DW_TAG_typedef ||
1336 N.getTag() == dwarf::DW_TAG_pointer_type ||
1337 N.getTag() == dwarf::DW_TAG_ptr_to_member_type ||
1338 N.getTag() == dwarf::DW_TAG_reference_type ||
1339 N.getTag() == dwarf::DW_TAG_rvalue_reference_type ||
1340 N.getTag() == dwarf::DW_TAG_const_type ||
1341 N.getTag() == dwarf::DW_TAG_immutable_type ||
1342 N.getTag() == dwarf::DW_TAG_volatile_type ||
1343 N.getTag() == dwarf::DW_TAG_restrict_type ||
1344 N.getTag() == dwarf::DW_TAG_atomic_type ||
1345 N.getTag() == dwarf::DW_TAG_LLVM_ptrauth_type ||
1346 N.getTag() == dwarf::DW_TAG_member ||
1347 (
N.getTag() == dwarf::DW_TAG_variable &&
N.isStaticMember()) ||
1348 N.getTag() == dwarf::DW_TAG_inheritance ||
1349 N.getTag() == dwarf::DW_TAG_friend ||
1350 N.getTag() == dwarf::DW_TAG_set_type ||
1351 N.getTag() == dwarf::DW_TAG_template_alias,
1353 if (
N.getTag() == dwarf::DW_TAG_ptr_to_member_type) {
1354 CheckDI(
isType(
N.getRawExtraData()),
"invalid pointer to member type", &
N,
1355 N.getRawExtraData());
1356 }
else if (
N.getTag() == dwarf::DW_TAG_template_alias) {
1358 N.getRawExtraData());
1359 }
else if (
N.getTag() == dwarf::DW_TAG_inheritance ||
1360 N.getTag() == dwarf::DW_TAG_member ||
1361 N.getTag() == dwarf::DW_TAG_variable) {
1362 auto *ExtraData =
N.getRawExtraData();
1363 auto IsValidExtraData = [&]() {
1364 if (ExtraData ==
nullptr)
1370 if (Tuple->getNumOperands() != 1)
1377 "extraData must be ConstantAsMetadata, MDString, DIObjCProperty, "
1378 "or MDTuple with single ConstantAsMetadata operand",
1382 if (
N.getTag() == dwarf::DW_TAG_set_type) {
1383 if (
auto *
T =
N.getRawBaseType()) {
1388 (Enum &&
Enum->getTag() == dwarf::DW_TAG_enumeration_type) ||
1389 (Subrange &&
Subrange->getTag() == dwarf::DW_TAG_subrange_type) ||
1390 (
Basic && (
Basic->getEncoding() == dwarf::DW_ATE_unsigned ||
1391 Basic->getEncoding() == dwarf::DW_ATE_signed ||
1392 Basic->getEncoding() == dwarf::DW_ATE_unsigned_char ||
1393 Basic->getEncoding() == dwarf::DW_ATE_signed_char ||
1394 Basic->getEncoding() == dwarf::DW_ATE_boolean)),
1395 "invalid set base type", &
N,
T);
1401 N.getRawBaseType());
1403 if (
N.getDWARFAddressSpace()) {
1404 CheckDI(
N.getTag() == dwarf::DW_TAG_pointer_type ||
1405 N.getTag() == dwarf::DW_TAG_reference_type ||
1406 N.getTag() == dwarf::DW_TAG_rvalue_reference_type,
1407 "DWARF address space only applies to pointer or reference types",
1411 auto *
Size =
N.getRawSizeInBits();
1414 "SizeInBits must be a constant or DIVariable or DIExpression");
1419 return ((Flags & DINode::FlagLValueReference) &&
1420 (Flags & DINode::FlagRValueReference)) ||
1421 ((Flags & DINode::FlagTypePassByValue) &&
1422 (Flags & DINode::FlagTypePassByReference));
1425void Verifier::visitTemplateParams(
const MDNode &
N,
const Metadata &RawParams) {
1427 CheckDI(Params,
"invalid template params", &
N, &RawParams);
1434void Verifier::visitDICompositeType(
const DICompositeType &
N) {
1438 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type ||
1439 N.getTag() == dwarf::DW_TAG_structure_type ||
1440 N.getTag() == dwarf::DW_TAG_union_type ||
1441 N.getTag() == dwarf::DW_TAG_enumeration_type ||
1442 N.getTag() == dwarf::DW_TAG_class_type ||
1443 N.getTag() == dwarf::DW_TAG_variant_part ||
1444 N.getTag() == dwarf::DW_TAG_variant ||
1445 N.getTag() == dwarf::DW_TAG_namelist,
1450 N.getRawBaseType());
1453 "invalid composite elements", &
N,
N.getRawElements());
1455 N.getRawVTableHolder());
1457 "invalid reference flags", &
N);
1458 unsigned DIBlockByRefStruct = 1 << 4;
1459 CheckDI((
N.getFlags() & DIBlockByRefStruct) == 0,
1460 "DIBlockByRefStruct on DICompositeType is no longer supported", &
N);
1462 "DISubprogram contains null entry in `elements` field", &
N);
1465 const DINodeArray
Elements =
N.getElements();
1467 Elements[0]->getTag() == dwarf::DW_TAG_subrange_type,
1468 "invalid vector, expected one element of type subrange", &
N);
1471 if (
auto *Params =
N.getRawTemplateParams())
1472 visitTemplateParams(
N, *Params);
1474 if (
auto *
D =
N.getRawDiscriminator()) {
1476 "discriminator can only appear on variant part");
1479 if (
N.getRawDataLocation()) {
1480 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1481 "dataLocation can only appear in array type");
1484 if (
N.getRawAssociated()) {
1485 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1486 "associated can only appear in array type");
1489 if (
N.getRawAllocated()) {
1490 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1491 "allocated can only appear in array type");
1494 if (
N.getRawRank()) {
1495 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1496 "rank can only appear in array type");
1499 if (
N.getTag() == dwarf::DW_TAG_array_type) {
1500 CheckDI(
N.getRawBaseType(),
"array types must have a base type", &
N);
1503 auto *
Size =
N.getRawSizeInBits();
1506 "SizeInBits must be a constant or DIVariable or DIExpression");
1509void Verifier::visitDISubroutineType(
const DISubroutineType &
N) {
1510 CheckDI(
N.getTag() == dwarf::DW_TAG_subroutine_type,
"invalid tag", &
N);
1511 if (
auto *Types =
N.getRawTypeArray()) {
1513 for (
Metadata *Ty :
N.getTypeArray()->operands()) {
1514 CheckDI(
isType(Ty),
"invalid subroutine type ref", &
N, Types, Ty);
1518 "invalid reference flags", &
N);
1521void Verifier::visitDIFile(
const DIFile &
N) {
1522 CheckDI(
N.getTag() == dwarf::DW_TAG_file_type,
"invalid tag", &
N);
1523 std::optional<DIFile::ChecksumInfo<StringRef>> Checksum =
N.getChecksum();
1525 CheckDI(Checksum->Kind <= DIFile::ChecksumKind::CSK_Last,
1526 "invalid checksum kind", &
N);
1528 switch (Checksum->Kind) {
1539 CheckDI(Checksum->Value.size() ==
Size,
"invalid checksum length", &
N);
1541 "invalid checksum", &
N);
1545void Verifier::visitDICompileUnit(
const DICompileUnit &
N) {
1546 CheckDI(
N.isDistinct(),
"compile units must be distinct", &
N);
1547 CheckDI(
N.getTag() == dwarf::DW_TAG_compile_unit,
"invalid tag", &
N);
1553 CheckDI(!
N.getFile()->getFilename().empty(),
"invalid filename", &
N,
1557 "invalid emission kind", &
N);
1559 if (
auto *Array =
N.getRawEnumTypes()) {
1561 for (
Metadata *
Op :
N.getEnumTypes()->operands()) {
1563 CheckDI(Enum &&
Enum->getTag() == dwarf::DW_TAG_enumeration_type,
1564 "invalid enum type", &
N,
N.getEnumTypes(),
Op);
1567 if (
auto *Array =
N.getRawRetainedTypes()) {
1569 for (
Metadata *
Op :
N.getRetainedTypes()->operands()) {
1573 "invalid retained type", &
N,
Op);
1576 if (
auto *Array =
N.getRawGlobalVariables()) {
1578 for (
Metadata *
Op :
N.getGlobalVariables()->operands()) {
1580 "invalid global variable ref", &
N,
Op);
1583 if (
auto *Array =
N.getRawImportedEntities()) {
1585 for (
Metadata *
Op :
N.getImportedEntities()->operands()) {
1590 if (
auto *Array =
N.getRawMacros()) {
1599void Verifier::visitDISubprogram(
const DISubprogram &
N) {
1600 CheckDI(
N.getTag() == dwarf::DW_TAG_subprogram,
"invalid tag", &
N);
1602 if (
auto *
F =
N.getRawFile())
1605 CheckDI(
N.getLine() == 0,
"line specified with no file", &
N,
N.getLine());
1606 if (
auto *
T =
N.getRawType())
1608 CheckDI(
isType(
N.getRawContainingType()),
"invalid containing type", &
N,
1609 N.getRawContainingType());
1610 if (
auto *Params =
N.getRawTemplateParams())
1611 visitTemplateParams(
N, *Params);
1612 if (
auto *S =
N.getRawDeclaration())
1614 "invalid subprogram declaration", &
N, S);
1615 if (
auto *RawNode =
N.getRawRetainedNodes()) {
1617 CheckDI(Node,
"invalid retained nodes list", &
N, RawNode);
1619 CheckDI(
Op,
"nullptr in retained nodes", &
N, Node);
1621 auto True = [](
const Metadata *) {
return true; };
1622 auto False = [](
const Metadata *) {
return false; };
1623 bool IsTypeCorrect =
1624 DISubprogram::visitRetainedNode<bool>(
Op, True, True, True, False);
1626 "invalid retained nodes, expected DILocalVariable, DILabel or "
1634 "invalid retained nodes, retained node is not local", &
N, Node,
1637 RetainedNodeScope->getSubprogram() == &
N,
1638 "invalid retained nodes, retained node does not belong to subprogram",
1639 &
N, Node, RetainedNode, RetainedNodeScope);
1643 "invalid reference flags", &
N);
1645 auto *
Unit =
N.getRawUnit();
1646 if (
N.isDefinition()) {
1648 CheckDI(
N.isDistinct(),
"subprogram definitions must be distinct", &
N);
1649 CheckDI(Unit,
"subprogram definitions must have a compile unit", &
N);
1654 if (CT && CT->getRawIdentifier() &&
1655 M.getContext().isODRUniquingDebugTypes())
1657 "definition subprograms cannot be nested within DICompositeType "
1658 "when enabling ODR",
1662 CheckDI(!Unit,
"subprogram declarations must not have a compile unit", &
N);
1664 "subprogram declaration must not have a declaration field");
1667 if (
auto *RawThrownTypes =
N.getRawThrownTypes()) {
1669 CheckDI(ThrownTypes,
"invalid thrown types list", &
N, RawThrownTypes);
1675 if (
N.areAllCallsDescribed())
1677 "DIFlagAllCallsDescribed must be attached to a definition");
1680void Verifier::visitDILexicalBlockBase(
const DILexicalBlockBase &
N) {
1681 CheckDI(
N.getTag() == dwarf::DW_TAG_lexical_block,
"invalid tag", &
N);
1683 "invalid local scope", &
N,
N.getRawScope());
1685 CheckDI(
SP->isDefinition(),
"scope points into the type hierarchy", &
N);
1688void Verifier::visitDILexicalBlock(
const DILexicalBlock &
N) {
1689 visitDILexicalBlockBase(
N);
1692 "cannot have column info without line info", &
N);
1695void Verifier::visitDILexicalBlockFile(
const DILexicalBlockFile &
N) {
1696 visitDILexicalBlockBase(
N);
1699void Verifier::visitDICommonBlock(
const DICommonBlock &
N) {
1700 CheckDI(
N.getTag() == dwarf::DW_TAG_common_block,
"invalid tag", &
N);
1701 if (
auto *S =
N.getRawScope())
1703 if (
auto *S =
N.getRawDecl())
1707void Verifier::visitDINamespace(
const DINamespace &
N) {
1708 CheckDI(
N.getTag() == dwarf::DW_TAG_namespace,
"invalid tag", &
N);
1709 if (
auto *S =
N.getRawScope())
1713void Verifier::visitDIMacro(
const DIMacro &
N) {
1716 "invalid macinfo type", &
N);
1717 CheckDI(!
N.getName().empty(),
"anonymous macro", &
N);
1718 if (!
N.getValue().empty()) {
1719 assert(
N.getValue().data()[0] !=
' ' &&
"Macro value has a space prefix");
1723void Verifier::visitDIMacroFile(
const DIMacroFile &
N) {
1725 "invalid macinfo type", &
N);
1726 if (
auto *
F =
N.getRawFile())
1729 if (
auto *Array =
N.getRawElements()) {
1731 for (
Metadata *
Op :
N.getElements()->operands()) {
1737void Verifier::visitDIModule(
const DIModule &
N) {
1738 CheckDI(
N.getTag() == dwarf::DW_TAG_module,
"invalid tag", &
N);
1739 CheckDI(!
N.getName().empty(),
"anonymous module", &
N);
1742void Verifier::visitDITemplateParameter(
const DITemplateParameter &
N) {
1746void Verifier::visitDITemplateTypeParameter(
const DITemplateTypeParameter &
N) {
1747 visitDITemplateParameter(
N);
1749 CheckDI(
N.getTag() == dwarf::DW_TAG_template_type_parameter,
"invalid tag",
1753void Verifier::visitDITemplateValueParameter(
1754 const DITemplateValueParameter &
N) {
1755 visitDITemplateParameter(
N);
1757 CheckDI(
N.getTag() == dwarf::DW_TAG_template_value_parameter ||
1758 N.getTag() == dwarf::DW_TAG_GNU_template_template_param ||
1759 N.getTag() == dwarf::DW_TAG_GNU_template_parameter_pack,
1763void Verifier::visitDIVariable(
const DIVariable &
N) {
1764 if (
auto *S =
N.getRawScope())
1766 if (
auto *
F =
N.getRawFile())
1770void Verifier::visitDIGlobalVariable(
const DIGlobalVariable &
N) {
1774 CheckDI(
N.getTag() == dwarf::DW_TAG_variable,
"invalid tag", &
N);
1777 if (
N.isDefinition())
1778 CheckDI(
N.getType(),
"missing global variable type", &
N);
1779 if (
auto *Member =
N.getRawStaticDataMemberDeclaration()) {
1781 "invalid static data member declaration", &
N, Member);
1785void Verifier::visitDILocalVariable(
const DILocalVariable &
N) {
1790 CheckDI(
N.getTag() == dwarf::DW_TAG_variable,
"invalid tag", &
N);
1792 "local variable requires a valid scope", &
N,
N.getRawScope());
1793 if (
auto Ty =
N.getType())
1797void Verifier::visitDIAssignID(
const DIAssignID &
N) {
1798 CheckDI(!
N.getNumOperands(),
"DIAssignID has no arguments", &
N);
1799 CheckDI(
N.isDistinct(),
"DIAssignID must be distinct", &
N);
1802void Verifier::visitDILabel(
const DILabel &
N) {
1803 if (
auto *S =
N.getRawScope())
1805 if (
auto *
F =
N.getRawFile())
1808 CheckDI(
N.getTag() == dwarf::DW_TAG_label,
"invalid tag", &
N);
1810 "label requires a valid scope", &
N,
N.getRawScope());
1813void Verifier::visitDIExpression(
const DIExpression &
N) {
1814 CheckDI(
N.isValid(),
"invalid expression", &
N);
1817void Verifier::visitDIGlobalVariableExpression(
1818 const DIGlobalVariableExpression &GVE) {
1821 visitDIGlobalVariable(*Var);
1823 visitDIExpression(*Expr);
1824 if (
auto Fragment = Expr->getFragmentInfo())
1825 verifyFragmentExpression(*GVE.
getVariable(), *Fragment, &GVE);
1829void Verifier::visitDIObjCProperty(
const DIObjCProperty &
N) {
1830 CheckDI(
N.getTag() == dwarf::DW_TAG_APPLE_property,
"invalid tag", &
N);
1831 if (
auto *
T =
N.getRawType())
1833 if (
auto *
F =
N.getRawFile())
1837void Verifier::visitDIImportedEntity(
const DIImportedEntity &
N) {
1838 CheckDI(
N.getTag() == dwarf::DW_TAG_imported_module ||
1839 N.getTag() == dwarf::DW_TAG_imported_declaration,
1841 if (
auto *S =
N.getRawScope())
1847void Verifier::visitComdat(
const Comdat &
C) {
1850 if (
TT.isOSBinFormatCOFF())
1851 if (
const GlobalValue *GV =
M.getNamedValue(
C.getName()))
1856void Verifier::visitModuleIdents() {
1857 const NamedMDNode *Idents =
M.getNamedMetadata(
"llvm.ident");
1863 for (
const MDNode *
N : Idents->
operands()) {
1864 Check(
N->getNumOperands() == 1,
1865 "incorrect number of operands in llvm.ident metadata",
N);
1867 (
"invalid value for llvm.ident metadata entry operand"
1868 "(the operand should be a string)"),
1873void Verifier::visitModuleCommandLines() {
1874 const NamedMDNode *CommandLines =
M.getNamedMetadata(
"llvm.commandline");
1881 for (
const MDNode *
N : CommandLines->
operands()) {
1882 Check(
N->getNumOperands() == 1,
1883 "incorrect number of operands in llvm.commandline metadata",
N);
1885 (
"invalid value for llvm.commandline metadata entry operand"
1886 "(the operand should be a string)"),
1891void Verifier::visitModuleErrnoTBAA() {
1892 const NamedMDNode *ErrnoTBAA =
M.getNamedMetadata(
"llvm.errno.tbaa");
1897 "llvm.errno.tbaa must have at least one operand", ErrnoTBAA);
1899 for (
const MDNode *
N : ErrnoTBAA->
operands())
1903void Verifier::visitModuleFlags() {
1904 const NamedMDNode *
Flags =
M.getModuleFlagsMetadata();
1908 DenseMap<const MDString*, const MDNode*> SeenIDs;
1910 uint64_t PAuthABIPlatform = -1;
1911 uint64_t PAuthABIVersion = -1;
1912 for (
const MDNode *MDN :
Flags->operands()) {
1913 visitModuleFlag(MDN, SeenIDs, Requirements);
1914 if (MDN->getNumOperands() != 3)
1917 if (FlagName->getString() ==
"aarch64-elf-pauthabi-platform") {
1918 if (
const auto *PAP =
1920 PAuthABIPlatform = PAP->getZExtValue();
1921 }
else if (FlagName->getString() ==
"aarch64-elf-pauthabi-version") {
1922 if (
const auto *PAV =
1924 PAuthABIVersion = PAV->getZExtValue();
1929 if ((PAuthABIPlatform == uint64_t(-1)) != (PAuthABIVersion == uint64_t(-1)))
1930 CheckFailed(
"either both or no 'aarch64-elf-pauthabi-platform' and "
1931 "'aarch64-elf-pauthabi-version' module flags must be present");
1934 for (
const MDNode *Requirement : Requirements) {
1936 const Metadata *ReqValue = Requirement->getOperand(1);
1938 const MDNode *
Op = SeenIDs.
lookup(Flag);
1940 CheckFailed(
"invalid requirement on flag, flag is not present in module",
1945 if (
Op->getOperand(2) != ReqValue) {
1946 CheckFailed((
"invalid requirement on flag, "
1947 "flag does not have the required value"),
1955Verifier::visitModuleFlag(
const MDNode *
Op,
1956 DenseMap<const MDString *, const MDNode *> &SeenIDs,
1957 SmallVectorImpl<const MDNode *> &Requirements) {
1961 "incorrect number of operands in module flag",
Op);
1962 Module::ModFlagBehavior MFB;
1963 if (!Module::isValidModFlagBehavior(
Op->getOperand(0), MFB)) {
1965 "invalid behavior operand in module flag (expected constant integer)",
1968 "invalid behavior operand in module flag (unexpected constant)",
1972 Check(
ID,
"invalid ID operand in module flag (expected metadata string)",
1978 case Module::Warning:
1979 case Module::Override:
1985 Check(V &&
V->getValue().isNonNegative(),
1986 "invalid value for 'min' module flag (expected constant non-negative "
1994 "invalid value for 'max' module flag (expected constant integer)",
1999 case Module::Require: {
2004 "invalid value for 'require' module flag (expected metadata pair)",
2007 (
"invalid value for 'require' module flag "
2008 "(first value operand should be a string)"),
2009 Value->getOperand(0));
2017 case Module::Append:
2018 case Module::AppendUnique: {
2021 "invalid value for 'append'-type module flag "
2022 "(expected a metadata node)",
2029 if (MFB != Module::Require) {
2032 "module flag identifiers must be unique (or of 'require' type)",
ID);
2035 if (
ID->getString() ==
"wchar_size") {
2038 Check(
Value,
"wchar_size metadata requires constant integer argument");
2041 if (
ID->getString() ==
"Linker Options") {
2045 Check(
M.getNamedMetadata(
"llvm.linker.options"),
2046 "'Linker Options' named metadata no longer supported");
2049 if (
ID->getString() ==
"SemanticInterposition") {
2050 ConstantInt *
Value =
2053 "SemanticInterposition metadata requires constant integer argument");
2056 if (
ID->getString() ==
"CG Profile") {
2057 for (
const MDOperand &MDO :
cast<MDNode>(
Op->getOperand(2))->operands())
2058 visitModuleFlagCGProfileEntry(MDO);
2062void Verifier::visitModuleFlagCGProfileEntry(
const MDOperand &MDO) {
2063 auto CheckFunction = [&](
const MDOperand &FuncMDO) {
2068 "expected a Function or null", FuncMDO);
2071 Check(Node &&
Node->getNumOperands() == 3,
"expected a MDNode triple", MDO);
2072 CheckFunction(
Node->getOperand(0));
2073 CheckFunction(
Node->getOperand(1));
2076 "expected an integer constant",
Node->getOperand(2));
2079void Verifier::verifyAttributeTypes(AttributeSet Attrs,
const Value *V) {
2082 if (
A.isStringAttribute()) {
2083#define GET_ATTR_NAMES
2084#define ATTRIBUTE_ENUM(ENUM_NAME, DISPLAY_NAME)
2085#define ATTRIBUTE_STRBOOL(ENUM_NAME, DISPLAY_NAME) \
2086 if (A.getKindAsString() == #DISPLAY_NAME) { \
2087 auto V = A.getValueAsString(); \
2088 if (!(V.empty() || V == "true" || V == "false")) \
2089 CheckFailed("invalid value for '" #DISPLAY_NAME "' attribute: " + V + \
2093#include "llvm/IR/Attributes.inc"
2097 if (
A.isIntAttribute() != Attribute::isIntAttrKind(
A.getKindAsEnum())) {
2098 CheckFailed(
"Attribute '" +
A.getAsString() +
"' should have an Argument",
2107void Verifier::verifyParameterAttrs(AttributeSet Attrs,
Type *Ty,
2109 if (!
Attrs.hasAttributes())
2112 verifyAttributeTypes(Attrs, V);
2115 Check(Attr.isStringAttribute() ||
2116 Attribute::canUseAsParamAttr(Attr.getKindAsEnum()),
2117 "Attribute '" + Attr.getAsString() +
"' does not apply to parameters",
2120 if (
Attrs.hasAttribute(Attribute::ImmArg)) {
2121 unsigned AttrCount =
2122 Attrs.getNumAttributes() -
Attrs.hasAttribute(Attribute::Range);
2123 Check(AttrCount == 1,
2124 "Attribute 'immarg' is incompatible with other attributes except the "
2125 "'range' attribute",
2131 unsigned AttrCount = 0;
2132 AttrCount +=
Attrs.hasAttribute(Attribute::ByVal);
2133 AttrCount +=
Attrs.hasAttribute(Attribute::InAlloca);
2134 AttrCount +=
Attrs.hasAttribute(Attribute::Preallocated);
2135 AttrCount +=
Attrs.hasAttribute(Attribute::StructRet) ||
2136 Attrs.hasAttribute(Attribute::InReg);
2137 AttrCount +=
Attrs.hasAttribute(Attribute::Nest);
2138 AttrCount +=
Attrs.hasAttribute(Attribute::ByRef);
2139 Check(AttrCount <= 1,
2140 "Attributes 'byval', 'inalloca', 'preallocated', 'inreg', 'nest', "
2141 "'byref', and 'sret' are incompatible!",
2144 Check(!(
Attrs.hasAttribute(Attribute::InAlloca) &&
2145 Attrs.hasAttribute(Attribute::ReadOnly)),
2147 "'inalloca and readonly' are incompatible!",
2150 Check(!(
Attrs.hasAttribute(Attribute::StructRet) &&
2151 Attrs.hasAttribute(Attribute::Returned)),
2153 "'sret and returned' are incompatible!",
2156 Check(!(
Attrs.hasAttribute(Attribute::ZExt) &&
2157 Attrs.hasAttribute(Attribute::SExt)),
2159 "'zeroext and signext' are incompatible!",
2162 Check(!(
Attrs.hasAttribute(Attribute::ReadNone) &&
2163 Attrs.hasAttribute(Attribute::ReadOnly)),
2165 "'readnone and readonly' are incompatible!",
2168 Check(!(
Attrs.hasAttribute(Attribute::ReadNone) &&
2169 Attrs.hasAttribute(Attribute::WriteOnly)),
2171 "'readnone and writeonly' are incompatible!",
2174 Check(!(
Attrs.hasAttribute(Attribute::ReadOnly) &&
2175 Attrs.hasAttribute(Attribute::WriteOnly)),
2177 "'readonly and writeonly' are incompatible!",
2180 Check(!(
Attrs.hasAttribute(Attribute::NoInline) &&
2181 Attrs.hasAttribute(Attribute::AlwaysInline)),
2183 "'noinline and alwaysinline' are incompatible!",
2186 Check(!(
Attrs.hasAttribute(Attribute::Writable) &&
2187 Attrs.hasAttribute(Attribute::ReadNone)),
2188 "Attributes writable and readnone are incompatible!", V);
2190 Check(!(
Attrs.hasAttribute(Attribute::Writable) &&
2191 Attrs.hasAttribute(Attribute::ReadOnly)),
2192 "Attributes writable and readonly are incompatible!", V);
2194 AttributeMask IncompatibleAttrs = AttributeFuncs::typeIncompatible(Ty, Attrs);
2196 if (!Attr.isStringAttribute() &&
2197 IncompatibleAttrs.
contains(Attr.getKindAsEnum())) {
2198 CheckFailed(
"Attribute '" + Attr.getAsString() +
2199 "' applied to incompatible type!", V);
2205 if (
Attrs.hasAttribute(Attribute::Alignment)) {
2206 Align AttrAlign =
Attrs.getAlignment().valueOrOne();
2207 Check(AttrAlign.
value() <= Value::MaximumAlignment,
2208 "huge alignment values are unsupported", V);
2210 if (
Attrs.hasAttribute(Attribute::ByVal)) {
2212 SmallPtrSet<Type *, 4> Visited;
2214 "Attribute 'byval' does not support unsized types!", V);
2218 "'byval' argument has illegal target extension type", V);
2219 Check(
DL.getTypeAllocSize(ByValTy).getKnownMinValue() < (1ULL << 32),
2220 "huge 'byval' arguments are unsupported", V);
2222 if (
Attrs.hasAttribute(Attribute::ByRef)) {
2223 SmallPtrSet<Type *, 4> Visited;
2224 Check(
Attrs.getByRefType()->isSized(&Visited),
2225 "Attribute 'byref' does not support unsized types!", V);
2226 Check(
DL.getTypeAllocSize(
Attrs.getByRefType()).getKnownMinValue() <
2228 "huge 'byref' arguments are unsupported", V);
2230 if (
Attrs.hasAttribute(Attribute::InAlloca)) {
2231 SmallPtrSet<Type *, 4> Visited;
2232 Check(
Attrs.getInAllocaType()->isSized(&Visited),
2233 "Attribute 'inalloca' does not support unsized types!", V);
2234 Check(
DL.getTypeAllocSize(
Attrs.getInAllocaType()).getKnownMinValue() <
2236 "huge 'inalloca' arguments are unsupported", V);
2238 if (
Attrs.hasAttribute(Attribute::Preallocated)) {
2239 SmallPtrSet<Type *, 4> Visited;
2240 Check(
Attrs.getPreallocatedType()->isSized(&Visited),
2241 "Attribute 'preallocated' does not support unsized types!", V);
2243 DL.getTypeAllocSize(
Attrs.getPreallocatedType()).getKnownMinValue() <
2245 "huge 'preallocated' arguments are unsupported", V);
2249 if (
Attrs.hasAttribute(Attribute::Initializes)) {
2250 auto Inits =
Attrs.getAttribute(Attribute::Initializes).getInitializes();
2251 Check(!Inits.empty(),
"Attribute 'initializes' does not support empty list",
2254 "Attribute 'initializes' does not support unordered ranges", V);
2257 if (
Attrs.hasAttribute(Attribute::NoFPClass)) {
2258 uint64_t Val =
Attrs.getAttribute(Attribute::NoFPClass).getValueAsInt();
2259 Check(Val != 0,
"Attribute 'nofpclass' must have at least one test bit set",
2262 "Invalid value for 'nofpclass' test mask", V);
2264 if (
Attrs.hasAttribute(Attribute::Range)) {
2265 const ConstantRange &CR =
2266 Attrs.getAttribute(Attribute::Range).getValueAsConstantRange();
2268 "Range bit width must match type bit width!", V);
2272void Verifier::checkUnsignedBaseTenFuncAttr(AttributeList Attrs, StringRef Attr,
2274 if (
Attrs.hasFnAttr(Attr)) {
2275 StringRef S =
Attrs.getFnAttr(Attr).getValueAsString();
2278 CheckFailed(
"\"" + Attr +
"\" takes an unsigned integer: " + S, V);
2284void Verifier::verifyFunctionAttrs(FunctionType *FT, AttributeList Attrs,
2285 const Value *V,
bool IsIntrinsic,
2287 if (
Attrs.isEmpty())
2290 if (AttributeListsVisited.
insert(
Attrs.getRawPointer()).second) {
2292 "Attribute list does not match Module context!", &Attrs, V);
2293 for (
const auto &AttrSet : Attrs) {
2294 Check(!AttrSet.hasAttributes() || AttrSet.hasParentContext(
Context),
2295 "Attribute set does not match Module context!", &AttrSet, V);
2296 for (
const auto &
A : AttrSet) {
2298 "Attribute does not match Module context!", &
A, V);
2303 bool SawNest =
false;
2304 bool SawReturned =
false;
2305 bool SawSRet =
false;
2306 bool SawSwiftSelf =
false;
2307 bool SawSwiftAsync =
false;
2308 bool SawSwiftError =
false;
2311 AttributeSet RetAttrs =
Attrs.getRetAttrs();
2314 Attribute::canUseAsRetAttr(
RetAttr.getKindAsEnum()),
2315 "Attribute '" +
RetAttr.getAsString() +
2316 "' does not apply to function return values",
2319 unsigned MaxParameterWidth = 0;
2320 auto GetMaxParameterWidth = [&MaxParameterWidth](
Type *Ty) {
2323 unsigned Size = VT->getPrimitiveSizeInBits().getFixedValue();
2324 if (
Size > MaxParameterWidth)
2325 MaxParameterWidth =
Size;
2329 GetMaxParameterWidth(FT->getReturnType());
2330 verifyParameterAttrs(RetAttrs, FT->getReturnType(), V);
2333 for (
unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
2334 Type *Ty = FT->getParamType(i);
2335 AttributeSet ArgAttrs =
Attrs.getParamAttrs(i);
2339 "immarg attribute only applies to intrinsics", V);
2342 "Attribute 'elementtype' can only be applied to intrinsics"
2347 verifyParameterAttrs(ArgAttrs, Ty, V);
2348 GetMaxParameterWidth(Ty);
2351 Check(!SawNest,
"More than one parameter has attribute nest!", V);
2356 Check(!SawReturned,
"More than one parameter has attribute returned!", V);
2358 "Incompatible argument and return types for 'returned' attribute",
2364 Check(!SawSRet,
"Cannot have multiple 'sret' parameters!", V);
2365 Check(i == 0 || i == 1,
2366 "Attribute 'sret' is not on first or second parameter!", V);
2371 Check(!SawSwiftSelf,
"Cannot have multiple 'swiftself' parameters!", V);
2372 SawSwiftSelf =
true;
2376 Check(!SawSwiftAsync,
"Cannot have multiple 'swiftasync' parameters!", V);
2377 SawSwiftAsync =
true;
2381 Check(!SawSwiftError,
"Cannot have multiple 'swifterror' parameters!", V);
2382 SawSwiftError =
true;
2386 Check(i == FT->getNumParams() - 1,
2387 "inalloca isn't on the last parameter!", V);
2391 if (!
Attrs.hasFnAttrs())
2394 verifyAttributeTypes(
Attrs.getFnAttrs(), V);
2397 Attribute::canUseAsFnAttr(
FnAttr.getKindAsEnum()),
2398 "Attribute '" +
FnAttr.getAsString() +
2399 "' does not apply to functions!",
2402 Check(!(
Attrs.hasFnAttr(Attribute::NoInline) &&
2403 Attrs.hasFnAttr(Attribute::AlwaysInline)),
2404 "Attributes 'noinline and alwaysinline' are incompatible!", V);
2406 if (
Attrs.hasFnAttr(Attribute::OptimizeNone)) {
2408 "Attribute 'optnone' requires 'noinline'!", V);
2410 Check(!
Attrs.hasFnAttr(Attribute::OptimizeForSize),
2411 "Attributes 'optsize and optnone' are incompatible!", V);
2414 "Attributes 'minsize and optnone' are incompatible!", V);
2416 Check(!
Attrs.hasFnAttr(Attribute::OptimizeForDebugging),
2417 "Attributes 'optdebug and optnone' are incompatible!", V);
2420 Check(!(
Attrs.hasFnAttr(Attribute::SanitizeRealtime) &&
2421 Attrs.hasFnAttr(Attribute::SanitizeRealtimeBlocking)),
2423 "'sanitize_realtime and sanitize_realtime_blocking' are incompatible!",
2426 if (
Attrs.hasFnAttr(Attribute::OptimizeForDebugging)) {
2427 Check(!
Attrs.hasFnAttr(Attribute::OptimizeForSize),
2428 "Attributes 'optsize and optdebug' are incompatible!", V);
2431 "Attributes 'minsize and optdebug' are incompatible!", V);
2434 Check(!
Attrs.hasAttrSomewhere(Attribute::Writable) ||
2435 isModSet(
Attrs.getMemoryEffects().getModRef(IRMemLocation::ArgMem)),
2436 "Attribute writable and memory without argmem: write are incompatible!",
2439 if (
Attrs.hasFnAttr(
"aarch64_pstate_sm_enabled")) {
2440 Check(!
Attrs.hasFnAttr(
"aarch64_pstate_sm_compatible"),
2441 "Attributes 'aarch64_pstate_sm_enabled and "
2442 "aarch64_pstate_sm_compatible' are incompatible!",
2446 Check((
Attrs.hasFnAttr(
"aarch64_new_za") +
Attrs.hasFnAttr(
"aarch64_in_za") +
2447 Attrs.hasFnAttr(
"aarch64_inout_za") +
2448 Attrs.hasFnAttr(
"aarch64_out_za") +
2449 Attrs.hasFnAttr(
"aarch64_preserves_za") +
2450 Attrs.hasFnAttr(
"aarch64_za_state_agnostic")) <= 1,
2451 "Attributes 'aarch64_new_za', 'aarch64_in_za', 'aarch64_out_za', "
2452 "'aarch64_inout_za', 'aarch64_preserves_za' and "
2453 "'aarch64_za_state_agnostic' are mutually exclusive",
2457 Attrs.hasFnAttr(
"aarch64_in_zt0") +
2458 Attrs.hasFnAttr(
"aarch64_inout_zt0") +
2459 Attrs.hasFnAttr(
"aarch64_out_zt0") +
2460 Attrs.hasFnAttr(
"aarch64_preserves_zt0") +
2461 Attrs.hasFnAttr(
"aarch64_za_state_agnostic")) <= 1,
2462 "Attributes 'aarch64_new_zt0', 'aarch64_in_zt0', 'aarch64_out_zt0', "
2463 "'aarch64_inout_zt0', 'aarch64_preserves_zt0' and "
2464 "'aarch64_za_state_agnostic' are mutually exclusive",
2467 if (
Attrs.hasFnAttr(Attribute::JumpTable)) {
2470 "Attribute 'jumptable' requires 'unnamed_addr'", V);
2473 if (
auto Args =
Attrs.getFnAttrs().getAllocSizeArgs()) {
2474 auto CheckParam = [&](StringRef
Name,
unsigned ParamNo) {
2475 if (ParamNo >= FT->getNumParams()) {
2476 CheckFailed(
"'allocsize' " + Name +
" argument is out of bounds", V);
2480 if (!FT->getParamType(ParamNo)->isIntegerTy()) {
2481 CheckFailed(
"'allocsize' " + Name +
2482 " argument must refer to an integer parameter",
2490 if (!CheckParam(
"element size",
Args->first))
2493 if (
Args->second && !CheckParam(
"number of elements", *
Args->second))
2497 if (
Attrs.hasFnAttr(Attribute::AllocKind)) {
2500 K & (AllocFnKind::Alloc | AllocFnKind::Realloc | AllocFnKind::Free);
2502 {AllocFnKind::Alloc, AllocFnKind::Realloc, AllocFnKind::Free},
2505 "'allockind()' requires exactly one of alloc, realloc, and free");
2506 if ((
Type == AllocFnKind::Free) &&
2507 ((K & (AllocFnKind::Uninitialized | AllocFnKind::Zeroed |
2508 AllocFnKind::Aligned)) != AllocFnKind::Unknown))
2509 CheckFailed(
"'allockind(\"free\")' doesn't allow uninitialized, zeroed, "
2510 "or aligned modifiers.");
2511 AllocFnKind ZeroedUninit = AllocFnKind::Uninitialized | AllocFnKind::Zeroed;
2512 if ((K & ZeroedUninit) == ZeroedUninit)
2513 CheckFailed(
"'allockind()' can't be both zeroed and uninitialized");
2517 StringRef S =
A.getValueAsString();
2518 Check(!S.
empty(),
"'alloc-variant-zeroed' must not be empty");
2526 "'alloc-variant-zeroed' must name a function belonging to the "
2527 "same 'alloc-family'");
2530 (
Variant->getFnAttribute(Attribute::AllocKind).getAllocKind() &
2531 AllocFnKind::Zeroed) != AllocFnKind::Unknown,
2532 "'alloc-variant-zeroed' must name a function with "
2533 "'allockind(\"zeroed\")'");
2536 "'alloc-variant-zeroed' must name a function with the same "
2541 if (
Attrs.hasFnAttr(Attribute::VScaleRange)) {
2542 unsigned VScaleMin =
Attrs.getFnAttrs().getVScaleRangeMin();
2544 CheckFailed(
"'vscale_range' minimum must be greater than 0", V);
2546 CheckFailed(
"'vscale_range' minimum must be power-of-two value", V);
2547 std::optional<unsigned> VScaleMax =
Attrs.getFnAttrs().getVScaleRangeMax();
2548 if (VScaleMax && VScaleMin > VScaleMax)
2549 CheckFailed(
"'vscale_range' minimum cannot be greater than maximum", V);
2551 CheckFailed(
"'vscale_range' maximum must be power-of-two value", V);
2554 if (
Attribute FPAttr =
Attrs.getFnAttr(
"frame-pointer"); FPAttr.isValid()) {
2555 StringRef
FP = FPAttr.getValueAsString();
2556 if (
FP !=
"all" &&
FP !=
"non-leaf" &&
FP !=
"none" &&
FP !=
"reserved" &&
2557 FP !=
"non-leaf-no-reserve")
2558 CheckFailed(
"invalid value for 'frame-pointer' attribute: " +
FP, V);
2561 checkUnsignedBaseTenFuncAttr(Attrs,
"patchable-function-prefix", V);
2562 checkUnsignedBaseTenFuncAttr(Attrs,
"patchable-function-entry", V);
2563 if (
Attrs.hasFnAttr(
"patchable-function-entry-section"))
2564 Check(!
Attrs.getFnAttr(
"patchable-function-entry-section")
2567 "\"patchable-function-entry-section\" must not be empty");
2568 checkUnsignedBaseTenFuncAttr(Attrs,
"warn-stack-size", V);
2570 if (
auto A =
Attrs.getFnAttr(
"sign-return-address");
A.isValid()) {
2571 StringRef S =
A.getValueAsString();
2572 if (S !=
"none" && S !=
"all" && S !=
"non-leaf")
2573 CheckFailed(
"invalid value for 'sign-return-address' attribute: " + S, V);
2576 if (
auto A =
Attrs.getFnAttr(
"sign-return-address-key");
A.isValid()) {
2577 StringRef S =
A.getValueAsString();
2578 if (S !=
"a_key" && S !=
"b_key")
2579 CheckFailed(
"invalid value for 'sign-return-address-key' attribute: " + S,
2581 if (
auto AA =
Attrs.getFnAttr(
"sign-return-address"); !AA.isValid()) {
2583 "'sign-return-address-key' present without `sign-return-address`");
2587 if (
auto A =
Attrs.getFnAttr(
"branch-target-enforcement");
A.isValid()) {
2588 StringRef S =
A.getValueAsString();
2589 if (S !=
"" && S !=
"true" && S !=
"false")
2591 "invalid value for 'branch-target-enforcement' attribute: " + S, V);
2594 if (
auto A =
Attrs.getFnAttr(
"branch-protection-pauth-lr");
A.isValid()) {
2595 StringRef S =
A.getValueAsString();
2596 if (S !=
"" && S !=
"true" && S !=
"false")
2598 "invalid value for 'branch-protection-pauth-lr' attribute: " + S, V);
2601 if (
auto A =
Attrs.getFnAttr(
"guarded-control-stack");
A.isValid()) {
2602 StringRef S =
A.getValueAsString();
2603 if (S !=
"" && S !=
"true" && S !=
"false")
2604 CheckFailed(
"invalid value for 'guarded-control-stack' attribute: " + S,
2608 if (
auto A =
Attrs.getFnAttr(
"vector-function-abi-variant");
A.isValid()) {
2609 StringRef S =
A.getValueAsString();
2612 CheckFailed(
"invalid name for a VFABI variant: " + S, V);
2615 if (
auto A =
Attrs.getFnAttr(
"denormal-fp-math");
A.isValid()) {
2616 StringRef S =
A.getValueAsString();
2618 CheckFailed(
"invalid value for 'denormal-fp-math' attribute: " + S, V);
2621 if (
auto A =
Attrs.getFnAttr(
"denormal-fp-math-f32");
A.isValid()) {
2622 StringRef S =
A.getValueAsString();
2624 CheckFailed(
"invalid value for 'denormal-fp-math-f32' attribute: " + S,
2628 if (
auto A =
Attrs.getFnAttr(
"modular-format");
A.isValid()) {
2629 StringRef S =
A.getValueAsString();
2633 "modular-format attribute requires at least 5 arguments", V);
2634 unsigned FirstArgIdx;
2635 Check(!Args[2].getAsInteger(10, FirstArgIdx),
2636 "modular-format attribute first arg index is not an integer", V);
2637 unsigned UpperBound = FT->getNumParams() + (FT->isVarArg() ? 1 : 0);
2638 Check(FirstArgIdx > 0 && FirstArgIdx <= UpperBound,
2639 "modular-format attribute first arg index is out of bounds", V);
2642 if (
auto A =
Attrs.getFnAttr(
"target-features");
A.isValid()) {
2643 StringRef S =
A.getValueAsString();
2645 for (
auto FeatureFlag :
split(S,
',')) {
2646 if (FeatureFlag.empty())
2648 "target-features attribute should not contain an empty string");
2650 Check(FeatureFlag[0] ==
'+' || FeatureFlag[0] ==
'-',
2651 "target feature '" + FeatureFlag +
2652 "' must start with a '+' or '-'",
2658void Verifier::verifyUnknownProfileMetadata(MDNode *MD) {
2660 "'unknown' !prof should have a single additional operand", MD);
2663 "'unknown' !prof should have an additional operand of type "
2666 "the 'unknown' !prof operand should not be an empty string");
2669void Verifier::verifyFunctionMetadata(
2670 ArrayRef<std::pair<unsigned, MDNode *>> MDs) {
2671 for (
const auto &Pair : MDs) {
2672 if (Pair.first == LLVMContext::MD_prof) {
2673 MDNode *MD = Pair.second;
2675 "!prof annotations should have no less than 2 operands", MD);
2680 verifyUnknownProfileMetadata(MD);
2685 Check(MD->
getOperand(0) !=
nullptr,
"first operand should not be null",
2688 "expected string with name of the !prof annotation", MD);
2693 "first operand should be 'function_entry_count'"
2694 " or 'synthetic_function_entry_count'",
2698 Check(MD->
getOperand(1) !=
nullptr,
"second operand should not be null",
2701 "expected integer argument to function_entry_count", MD);
2702 }
else if (Pair.first == LLVMContext::MD_kcfi_type) {
2703 MDNode *MD = Pair.second;
2705 "!kcfi_type must have exactly one operand", MD);
2706 Check(MD->
getOperand(0) !=
nullptr,
"!kcfi_type operand must not be null",
2709 "expected a constant operand for !kcfi_type", MD);
2712 "expected a constant integer operand for !kcfi_type", MD);
2714 "expected a 32-bit integer constant operand for !kcfi_type", MD);
2719void Verifier::visitConstantExprsRecursively(
const Constant *EntryC) {
2723 if (!ConstantExprVisited.
insert(EntryC).second)
2727 Stack.push_back(EntryC);
2729 while (!
Stack.empty()) {
2734 visitConstantExpr(CE);
2737 visitConstantPtrAuth(CPA);
2742 Check(GV->
getParent() == &M,
"Referencing global in another module!",
2748 for (
const Use &U :
C->operands()) {
2752 if (!ConstantExprVisited.
insert(OpC).second)
2754 Stack.push_back(OpC);
2759void Verifier::visitConstantExpr(
const ConstantExpr *CE) {
2760 if (
CE->getOpcode() == Instruction::BitCast)
2763 "Invalid bitcast", CE);
2764 else if (
CE->getOpcode() == Instruction::PtrToAddr)
2765 checkPtrToAddr(
CE->getOperand(0)->getType(),
CE->getType(), *CE);
2768void Verifier::visitConstantPtrAuth(
const ConstantPtrAuth *CPA) {
2770 "signed ptrauth constant base pointer must have pointer type");
2773 "signed ptrauth constant must have same type as its base pointer");
2776 "signed ptrauth constant key must be i32 constant integer");
2779 "signed ptrauth constant address discriminator must be a pointer");
2782 "signed ptrauth constant discriminator must be i64 constant integer");
2785 "signed ptrauth constant deactivation symbol must be a pointer");
2789 "signed ptrauth constant deactivation symbol must be a global value "
2793bool Verifier::verifyAttributeCount(AttributeList Attrs,
unsigned Params) {
2796 return Attrs.getNumAttrSets() <= Params + 2;
2799void Verifier::verifyInlineAsmCall(
const CallBase &
Call) {
2802 unsigned LabelNo = 0;
2803 for (
const InlineAsm::ConstraintInfo &CI :
IA->ParseConstraints()) {
2813 if (CI.isIndirect) {
2816 "Operand for indirect constraint must have pointer type", &
Call);
2819 "Operand for indirect constraint must have elementtype attribute",
2823 "Elementtype attribute can only be applied for indirect "
2832 Check(LabelNo == CallBr->getNumIndirectDests(),
2833 "Number of label constraints does not match number of callbr dests",
2836 Check(LabelNo == 0,
"Label constraints can only be used with callbr",
2842void Verifier::verifyStatepoint(
const CallBase &
Call) {
2847 "gc.statepoint must read and write all memory to preserve "
2848 "reordering restrictions required by safepoint semantics",
2851 const int64_t NumPatchBytes =
2854 Check(NumPatchBytes >= 0,
2855 "gc.statepoint number of patchable bytes must be "
2860 Check(TargetElemType,
2861 "gc.statepoint callee argument must have elementtype attribute",
Call);
2863 Check(TargetFuncType,
2864 "gc.statepoint callee elementtype must be function type",
Call);
2867 Check(NumCallArgs >= 0,
2868 "gc.statepoint number of arguments to underlying call "
2871 const int NumParams = (int)TargetFuncType->getNumParams();
2872 if (TargetFuncType->isVarArg()) {
2873 Check(NumCallArgs >= NumParams,
2874 "gc.statepoint mismatch in number of vararg call args",
Call);
2877 Check(TargetFuncType->getReturnType()->isVoidTy(),
2878 "gc.statepoint doesn't support wrapping non-void "
2879 "vararg functions yet",
2882 Check(NumCallArgs == NumParams,
2883 "gc.statepoint mismatch in number of call args",
Call);
2885 const uint64_t
Flags
2887 Check((Flags & ~(uint64_t)StatepointFlags::MaskAll) == 0,
2888 "unknown flag used in gc.statepoint flags argument",
Call);
2893 for (
int i = 0; i < NumParams; i++) {
2894 Type *ParamType = TargetFuncType->getParamType(i);
2896 Check(ArgType == ParamType,
2897 "gc.statepoint call argument does not match wrapped "
2901 if (TargetFuncType->isVarArg()) {
2902 AttributeSet ArgAttrs =
Attrs.getParamAttrs(5 + i);
2904 "Attribute 'sret' cannot be used for vararg call arguments!",
Call);
2908 const int EndCallArgsInx = 4 + NumCallArgs;
2912 "gc.statepoint number of transition arguments "
2913 "must be constant integer",
2915 const int NumTransitionArgs =
2917 Check(NumTransitionArgs == 0,
2918 "gc.statepoint w/inline transition bundle is deprecated",
Call);
2919 const int EndTransitionArgsInx = EndCallArgsInx + 1 + NumTransitionArgs;
2923 "gc.statepoint number of deoptimization arguments "
2924 "must be constant integer",
2927 Check(NumDeoptArgs == 0,
2928 "gc.statepoint w/inline deopt operands is deprecated",
Call);
2930 const int ExpectedNumArgs = 7 + NumCallArgs;
2932 "gc.statepoint too many arguments",
Call);
2939 Check(UserCall,
"illegal use of statepoint token",
Call, U);
2943 "gc.result or gc.relocate are the only value uses "
2944 "of a gc.statepoint",
2948 "gc.result connected to wrong gc.statepoint",
Call, UserCall);
2951 "gc.relocate connected to wrong gc.statepoint",
Call, UserCall);
2965void Verifier::verifyFrameRecoverIndices() {
2966 for (
auto &Counts : FrameEscapeInfo) {
2968 unsigned EscapedObjectCount = Counts.second.first;
2969 unsigned MaxRecoveredIndex = Counts.second.second;
2970 Check(MaxRecoveredIndex <= EscapedObjectCount,
2971 "all indices passed to llvm.localrecover must be less than the "
2972 "number of arguments passed to llvm.localescape in the parent "
2981 UnwindDest =
II->getUnwindDest();
2983 UnwindDest = CSI->getUnwindDest();
2989void Verifier::verifySiblingFuncletUnwinds() {
2990 llvm::TimeTraceScope timeScope(
"Verifier verify sibling funclet unwinds");
2991 SmallPtrSet<Instruction *, 8> Visited;
2992 SmallPtrSet<Instruction *, 8>
Active;
2993 for (
const auto &Pair : SiblingFuncletInfo) {
2995 if (Visited.
count(PredPad))
3001 if (
Active.count(SuccPad)) {
3004 SmallVector<Instruction *, 8> CycleNodes;
3007 Instruction *CycleTerminator = SiblingFuncletInfo[CyclePad];
3008 if (CycleTerminator != CyclePad)
3011 }
while (CyclePad != SuccPad);
3012 Check(
false,
"EH pads can't handle each other's exceptions",
3016 if (!Visited.
insert(SuccPad).second)
3020 auto TermI = SiblingFuncletInfo.find(PredPad);
3021 if (TermI == SiblingFuncletInfo.end())
3034void Verifier::visitFunction(
const Function &
F) {
3035 visitGlobalValue(
F);
3038 FunctionType *FT =
F.getFunctionType();
3039 unsigned NumArgs =
F.arg_size();
3042 "Function context does not match Module context!", &
F);
3044 Check(!
F.hasCommonLinkage(),
"Functions may not have common linkage", &
F);
3045 Check(FT->getNumParams() == NumArgs,
3046 "# formal arguments must match # of arguments for function type!", &
F,
3048 Check(
F.getReturnType()->isFirstClassType() ||
3049 F.getReturnType()->isVoidTy() ||
F.getReturnType()->isStructTy(),
3050 "Functions cannot return aggregate values!", &
F);
3052 Check(!
F.hasStructRetAttr() ||
F.getReturnType()->isVoidTy(),
3053 "Invalid struct return type!", &
F);
3055 if (MaybeAlign
A =
F.getAlign()) {
3056 Check(
A->value() <= Value::MaximumAlignment,
3057 "huge alignment values are unsupported", &
F);
3060 AttributeList
Attrs =
F.getAttributes();
3062 Check(verifyAttributeCount(Attrs, FT->getNumParams()),
3063 "Attribute after last parameter!", &
F);
3065 bool IsIntrinsic =
F.isIntrinsic();
3068 verifyFunctionAttrs(FT, Attrs, &
F, IsIntrinsic,
false);
3074 "Attribute 'builtin' can only be applied to a callsite.", &
F);
3076 Check(!
Attrs.hasAttrSomewhere(Attribute::ElementType),
3077 "Attribute 'elementtype' can only be applied to a callsite.", &
F);
3080 "Attribute 'aarch64_zt0_undef' can only be applied to a callsite.");
3082 if (
Attrs.hasFnAttr(Attribute::Naked))
3083 for (
const Argument &Arg :
F.args())
3084 Check(Arg.use_empty(),
"cannot use argument of naked function", &Arg);
3089 switch (
F.getCallingConv()) {
3091 case CallingConv::C:
3093 case CallingConv::X86_INTR: {
3094 Check(
F.arg_empty() ||
Attrs.hasParamAttr(0, Attribute::ByVal),
3095 "Calling convention parameter requires byval", &
F);
3098 case CallingConv::AMDGPU_KERNEL:
3099 case CallingConv::SPIR_KERNEL:
3100 case CallingConv::AMDGPU_CS_Chain:
3101 case CallingConv::AMDGPU_CS_ChainPreserve:
3102 Check(
F.getReturnType()->isVoidTy(),
3103 "Calling convention requires void return type", &
F);
3105 case CallingConv::AMDGPU_VS:
3106 case CallingConv::AMDGPU_HS:
3107 case CallingConv::AMDGPU_GS:
3108 case CallingConv::AMDGPU_PS:
3109 case CallingConv::AMDGPU_CS:
3110 Check(!
F.hasStructRetAttr(),
"Calling convention does not allow sret", &
F);
3111 if (
F.getCallingConv() != CallingConv::SPIR_KERNEL) {
3112 const unsigned StackAS =
DL.getAllocaAddrSpace();
3114 for (
const Argument &Arg :
F.args()) {
3115 Check(!
Attrs.hasParamAttr(i, Attribute::ByVal),
3116 "Calling convention disallows byval", &
F);
3117 Check(!
Attrs.hasParamAttr(i, Attribute::Preallocated),
3118 "Calling convention disallows preallocated", &
F);
3119 Check(!
Attrs.hasParamAttr(i, Attribute::InAlloca),
3120 "Calling convention disallows inalloca", &
F);
3122 if (
Attrs.hasParamAttr(i, Attribute::ByRef)) {
3125 Check(Arg.getType()->getPointerAddressSpace() != StackAS,
3126 "Calling convention disallows stack byref", &
F);
3134 case CallingConv::Fast:
3135 case CallingConv::Cold:
3136 case CallingConv::Intel_OCL_BI:
3137 case CallingConv::PTX_Kernel:
3138 case CallingConv::PTX_Device:
3140 "Calling convention does not support varargs or "
3141 "perfect forwarding!",
3144 case CallingConv::AMDGPU_Gfx_WholeWave:
3145 Check(!
F.arg_empty() &&
F.arg_begin()->getType()->isIntegerTy(1),
3146 "Calling convention requires first argument to be i1", &
F);
3147 Check(!
F.arg_begin()->hasInRegAttr(),
3148 "Calling convention requires first argument to not be inreg", &
F);
3150 "Calling convention does not support varargs or "
3151 "perfect forwarding!",
3158 for (
const Argument &Arg :
F.args()) {
3159 Check(Arg.getType() == FT->getParamType(i),
3160 "Argument value does not match function argument type!", &Arg,
3161 FT->getParamType(i));
3162 Check(Arg.getType()->isFirstClassType(),
3163 "Function arguments must have first-class types!", &Arg);
3165 Check(!Arg.getType()->isMetadataTy(),
3166 "Function takes metadata but isn't an intrinsic", &Arg, &
F);
3167 Check(!Arg.getType()->isTokenLikeTy(),
3168 "Function takes token but isn't an intrinsic", &Arg, &
F);
3169 Check(!Arg.getType()->isX86_AMXTy(),
3170 "Function takes x86_amx but isn't an intrinsic", &Arg, &
F);
3174 if (
Attrs.hasParamAttr(i, Attribute::SwiftError)) {
3175 verifySwiftErrorValue(&Arg);
3181 Check(!
F.getReturnType()->isTokenLikeTy(),
3182 "Function returns a token but isn't an intrinsic", &
F);
3183 Check(!
F.getReturnType()->isX86_AMXTy(),
3184 "Function returns a x86_amx but isn't an intrinsic", &
F);
3189 F.getAllMetadata(MDs);
3190 assert(
F.hasMetadata() != MDs.
empty() &&
"Bit out-of-sync");
3191 verifyFunctionMetadata(MDs);
3194 if (
F.hasPersonalityFn()) {
3197 Check(Per->getParent() ==
F.getParent(),
3198 "Referencing personality function in another module!", &
F,
3199 F.getParent(), Per, Per->getParent());
3203 BlockEHFuncletColors.
clear();
3205 if (
F.isMaterializable()) {
3207 Check(MDs.
empty(),
"unmaterialized function cannot have metadata", &
F,
3209 }
else if (
F.isDeclaration()) {
3210 for (
const auto &
I : MDs) {
3212 CheckDI(
I.first != LLVMContext::MD_dbg ||
3214 "function declaration may only have a unique !dbg attachment",
3216 Check(
I.first != LLVMContext::MD_prof,
3217 "function declaration may not have a !prof attachment", &
F);
3220 visitMDNode(*
I.second, AreDebugLocsAllowed::Yes);
3222 Check(!
F.hasPersonalityFn(),
3223 "Function declaration shouldn't have a personality routine", &
F);
3227 Check(!IsIntrinsic,
"llvm intrinsics cannot be defined!", &
F);
3232 "Entry block to function must not have predecessors!", Entry);
3235 if (
Entry->hasAddressTaken()) {
3237 "blockaddress may not be used with the entry block!", Entry);
3240 unsigned NumDebugAttachments = 0, NumProfAttachments = 0,
3241 NumKCFIAttachments = 0;
3243 for (
const auto &
I : MDs) {
3245 auto AllowLocs = AreDebugLocsAllowed::No;
3249 case LLVMContext::MD_dbg: {
3250 ++NumDebugAttachments;
3251 CheckDI(NumDebugAttachments == 1,
3252 "function must have a single !dbg attachment", &
F,
I.second);
3254 "function !dbg attachment must be a subprogram", &
F,
I.second);
3256 "function definition may only have a distinct !dbg attachment",
3260 const Function *&AttachedTo = DISubprogramAttachments[
SP];
3261 CheckDI(!AttachedTo || AttachedTo == &
F,
3262 "DISubprogram attached to more than one function", SP, &
F);
3264 AllowLocs = AreDebugLocsAllowed::Yes;
3267 case LLVMContext::MD_prof:
3268 ++NumProfAttachments;
3269 Check(NumProfAttachments == 1,
3270 "function must have a single !prof attachment", &
F,
I.second);
3272 case LLVMContext::MD_kcfi_type:
3273 ++NumKCFIAttachments;
3274 Check(NumKCFIAttachments == 1,
3275 "function must have a single !kcfi_type attachment", &
F,
3281 visitMDNode(*
I.second, AllowLocs);
3289 if (
F.isIntrinsic() &&
F.getParent()->isMaterialized()) {
3291 if (
F.hasAddressTaken(&U,
false,
true,
false,
3293 Check(
false,
"Invalid user of intrinsic instruction!", U);
3297 switch (
F.getIntrinsicID()) {
3298 case Intrinsic::experimental_gc_get_pointer_base: {
3299 FunctionType *FT =
F.getFunctionType();
3300 Check(FT->getNumParams() == 1,
"wrong number of parameters",
F);
3302 "gc.get.pointer.base must return a pointer",
F);
3303 Check(FT->getParamType(0) ==
F.getReturnType(),
3304 "gc.get.pointer.base operand and result must be of the same type",
F);
3307 case Intrinsic::experimental_gc_get_pointer_offset: {
3308 FunctionType *FT =
F.getFunctionType();
3309 Check(FT->getNumParams() == 1,
"wrong number of parameters",
F);
3311 "gc.get.pointer.offset operand must be a pointer",
F);
3312 Check(
F.getReturnType()->isIntegerTy(),
3313 "gc.get.pointer.offset must return integer",
F);
3318 auto *
N =
F.getSubprogram();
3319 HasDebugInfo = (
N !=
nullptr);
3327 SmallPtrSet<const MDNode *, 32> Seen;
3339 "DILocation's scope must be a DILocalScope",
N, &
F, &
I,
DL, Parent);
3341 DILocalScope *
Scope =
DL->getInlinedAtScope();
3342 Check(Scope,
"Failed to find DILocalScope",
DL);
3344 if (!Seen.
insert(Scope).second)
3347 DISubprogram *
SP =
Scope->getSubprogram();
3351 if ((Scope != SP) && !Seen.
insert(SP).second)
3355 "!dbg attachment points at wrong subprogram for function",
N, &
F,
3359 for (
auto &
I : BB) {
3360 VisitDebugLoc(
I,
I.getDebugLoc().getAsMDNode());
3362 if (
auto MD =
I.getMetadata(LLVMContext::MD_loop))
3365 if (BrokenDebugInfo)
3372void Verifier::visitBasicBlock(BasicBlock &BB) {
3373 InstsInThisBlock.
clear();
3374 ConvergenceVerifyHelper.
visit(BB);
3385 for (
const PHINode &PN : BB.
phis()) {
3386 Check(PN.getNumIncomingValues() == Preds.size(),
3387 "PHINode should have one entry for each predecessor of its "
3388 "parent basic block!",
3393 Values.
reserve(PN.getNumIncomingValues());
3394 for (
unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i)
3396 std::make_pair(PN.getIncomingBlock(i), PN.getIncomingValue(i)));
3399 for (
unsigned i = 0, e = Values.
size(); i != e; ++i) {
3404 Check(i == 0 || Values[i].first != Values[i - 1].first ||
3405 Values[i].second == Values[i - 1].second,
3406 "PHI node has multiple entries for the same basic block with "
3407 "different incoming values!",
3408 &PN, Values[i].first, Values[i].second, Values[i - 1].second);
3412 Check(Values[i].first == Preds[i],
3413 "PHI node entries do not match predecessors!", &PN,
3414 Values[i].first, Preds[i]);
3422 Check(
I.getParent() == &BB,
"Instruction has bogus parent pointer!");
3426 CheckDI(!BB.getTrailingDbgRecords(),
"Basic Block has trailing DbgRecords!",
3430void Verifier::visitTerminator(Instruction &
I) {
3432 Check(&
I ==
I.getParent()->getTerminator(),
3433 "Terminator found in the middle of a basic block!",
I.getParent());
3434 visitInstruction(
I);
3437void Verifier::visitBranchInst(BranchInst &BI) {
3440 "Branch condition is not 'i1' type!", &BI, BI.
getCondition());
3442 visitTerminator(BI);
3445void Verifier::visitReturnInst(ReturnInst &RI) {
3448 if (
F->getReturnType()->isVoidTy())
3450 "Found return instr that returns non-void in Function of void "
3452 &RI,
F->getReturnType());
3455 "Function return type does not match operand "
3456 "type of return inst!",
3457 &RI,
F->getReturnType());
3461 visitTerminator(RI);
3464void Verifier::visitSwitchInst(SwitchInst &SI) {
3465 Check(
SI.getType()->isVoidTy(),
"Switch must have void result type!", &SI);
3468 Type *SwitchTy =
SI.getCondition()->getType();
3469 SmallPtrSet<ConstantInt*, 32>
Constants;
3470 for (
auto &Case :
SI.cases()) {
3472 "Case value is not a constant integer.", &SI);
3473 Check(Case.getCaseValue()->getType() == SwitchTy,
3474 "Switch constants must all be same type as switch value!", &SI);
3476 "Duplicate integer as switch case", &SI, Case.getCaseValue());
3479 visitTerminator(SI);
3482void Verifier::visitIndirectBrInst(IndirectBrInst &BI) {
3484 "Indirectbr operand must have pointer type!", &BI);
3487 "Indirectbr destinations must all have pointer type!", &BI);
3489 visitTerminator(BI);
3492void Verifier::visitCallBrInst(CallBrInst &CBI) {
3495 "Callbr: indirect function / invalid signature");
3497 "Callbr for intrinsics currently doesn't support operand bundles");
3500 case Intrinsic::amdgcn_kill: {
3502 "Callbr amdgcn_kill only supports one indirect dest");
3506 Intrinsic::amdgcn_unreachable),
3507 "Callbr amdgcn_kill indirect dest needs to be unreachable");
3512 "Callbr currently only supports asm-goto and selected intrinsics");
3517 Check(!
IA->canThrow(),
"Unwinding from Callbr is not allowed");
3519 verifyInlineAsmCall(CBI);
3521 visitTerminator(CBI);
3524void Verifier::visitSelectInst(SelectInst &SI) {
3527 "Invalid operands for select instruction!", &SI);
3529 Check(
SI.getTrueValue()->getType() ==
SI.getType(),
3530 "Select values must have same type as select instruction!", &SI);
3531 visitInstruction(SI);
3537void Verifier::visitUserOp1(Instruction &
I) {
3538 Check(
false,
"User-defined operators should not live outside of a pass!", &
I);
3541void Verifier::visitTruncInst(TruncInst &
I) {
3543 Type *SrcTy =
I.getOperand(0)->getType();
3544 Type *DestTy =
I.getType();
3553 "trunc source and destination must both be a vector or neither", &
I);
3554 Check(SrcBitSize > DestBitSize,
"DestTy too big for Trunc", &
I);
3556 visitInstruction(
I);
3559void Verifier::visitZExtInst(ZExtInst &
I) {
3561 Type *SrcTy =
I.getOperand(0)->getType();
3562 Type *DestTy =
I.getType();
3568 "zext source and destination must both be a vector or neither", &
I);
3572 Check(SrcBitSize < DestBitSize,
"Type too small for ZExt", &
I);
3574 visitInstruction(
I);
3577void Verifier::visitSExtInst(SExtInst &
I) {
3579 Type *SrcTy =
I.getOperand(0)->getType();
3580 Type *DestTy =
I.getType();
3589 "sext source and destination must both be a vector or neither", &
I);
3590 Check(SrcBitSize < DestBitSize,
"Type too small for SExt", &
I);
3592 visitInstruction(
I);
3595void Verifier::visitFPTruncInst(FPTruncInst &
I) {
3597 Type *SrcTy =
I.getOperand(0)->getType();
3598 Type *DestTy =
I.getType();
3606 "fptrunc source and destination must both be a vector or neither", &
I);
3607 Check(SrcBitSize > DestBitSize,
"DestTy too big for FPTrunc", &
I);
3609 visitInstruction(
I);
3612void Verifier::visitFPExtInst(FPExtInst &
I) {
3614 Type *SrcTy =
I.getOperand(0)->getType();
3615 Type *DestTy =
I.getType();
3624 "fpext source and destination must both be a vector or neither", &
I);
3625 Check(SrcBitSize < DestBitSize,
"DestTy too small for FPExt", &
I);
3627 visitInstruction(
I);
3630void Verifier::visitUIToFPInst(UIToFPInst &
I) {
3632 Type *SrcTy =
I.getOperand(0)->getType();
3633 Type *DestTy =
I.getType();
3638 Check(SrcVec == DstVec,
3639 "UIToFP source and dest must both be vector or scalar", &
I);
3641 "UIToFP source must be integer or integer vector", &
I);
3645 if (SrcVec && DstVec)
3648 "UIToFP source and dest vector length mismatch", &
I);
3650 visitInstruction(
I);
3653void Verifier::visitSIToFPInst(SIToFPInst &
I) {
3655 Type *SrcTy =
I.getOperand(0)->getType();
3656 Type *DestTy =
I.getType();
3661 Check(SrcVec == DstVec,
3662 "SIToFP source and dest must both be vector or scalar", &
I);
3664 "SIToFP source must be integer or integer vector", &
I);
3668 if (SrcVec && DstVec)
3671 "SIToFP source and dest vector length mismatch", &
I);
3673 visitInstruction(
I);
3676void Verifier::visitFPToUIInst(FPToUIInst &
I) {
3678 Type *SrcTy =
I.getOperand(0)->getType();
3679 Type *DestTy =
I.getType();
3684 Check(SrcVec == DstVec,
3685 "FPToUI source and dest must both be vector or scalar", &
I);
3688 "FPToUI result must be integer or integer vector", &
I);
3690 if (SrcVec && DstVec)
3693 "FPToUI source and dest vector length mismatch", &
I);
3695 visitInstruction(
I);
3698void Verifier::visitFPToSIInst(FPToSIInst &
I) {
3700 Type *SrcTy =
I.getOperand(0)->getType();
3701 Type *DestTy =
I.getType();
3706 Check(SrcVec == DstVec,
3707 "FPToSI source and dest must both be vector or scalar", &
I);
3710 "FPToSI result must be integer or integer vector", &
I);
3712 if (SrcVec && DstVec)
3715 "FPToSI source and dest vector length mismatch", &
I);
3717 visitInstruction(
I);
3720void Verifier::checkPtrToAddr(
Type *SrcTy,
Type *DestTy,
const Value &V) {
3729 Check(VSrc->getElementCount() == VDest->getElementCount(),
3730 "PtrToAddr vector length mismatch", V);
3733 Type *AddrTy =
DL.getAddressType(SrcTy);
3734 Check(AddrTy == DestTy,
"PtrToAddr result must be address width", V);
3737void Verifier::visitPtrToAddrInst(PtrToAddrInst &
I) {
3738 checkPtrToAddr(
I.getOperand(0)->getType(),
I.getType(),
I);
3739 visitInstruction(
I);
3742void Verifier::visitPtrToIntInst(PtrToIntInst &
I) {
3744 Type *SrcTy =
I.getOperand(0)->getType();
3745 Type *DestTy =
I.getType();
3756 Check(VSrc->getElementCount() == VDest->getElementCount(),
3757 "PtrToInt Vector length mismatch", &
I);
3760 visitInstruction(
I);
3763void Verifier::visitIntToPtrInst(IntToPtrInst &
I) {
3765 Type *SrcTy =
I.getOperand(0)->getType();
3766 Type *DestTy =
I.getType();
3776 Check(VSrc->getElementCount() == VDest->getElementCount(),
3777 "IntToPtr Vector length mismatch", &
I);
3779 visitInstruction(
I);
3782void Verifier::visitBitCastInst(BitCastInst &
I) {
3785 "Invalid bitcast", &
I);
3786 visitInstruction(
I);
3789void Verifier::visitAddrSpaceCastInst(AddrSpaceCastInst &
I) {
3790 Type *SrcTy =
I.getOperand(0)->getType();
3791 Type *DestTy =
I.getType();
3798 "AddrSpaceCast must be between different address spaces", &
I);
3800 Check(SrcVTy->getElementCount() ==
3802 "AddrSpaceCast vector pointer number of elements mismatch", &
I);
3803 visitInstruction(
I);
3808void Verifier::visitPHINode(PHINode &PN) {
3815 "PHI nodes not grouped at top of basic block!", &PN, PN.
getParent());
3824 "PHI node operands are not the same type as the result!", &PN);
3829 visitInstruction(PN);
3832void Verifier::visitCallBase(CallBase &
Call) {
3834 "Called function must be a pointer!",
Call);
3838 if (FTy->isVarArg())
3840 "Called function requires more parameters than were provided!",
Call);
3843 "Incorrect number of arguments passed to called function!",
Call);
3846 for (
unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
3848 "Call parameter type does not match function signature!",
3854 "Attribute after last parameter!",
Call);
3861 "Intrinsic called with incompatible signature",
Call);
3865 "calling convention does not permit calls",
Call);
3871 auto VerifyTypeAlign = [&](
Type *Ty,
const Twine &Message) {
3874 Align ABIAlign =
DL.getABITypeAlign(Ty);
3875 Check(ABIAlign.
value() <= Value::MaximumAlignment,
3876 "Incorrect alignment of " + Message +
" to called function!",
Call);
3880 VerifyTypeAlign(FTy->getReturnType(),
"return type");
3881 for (
unsigned i = 0, e = FTy->getNumParams(); i != e; ++i) {
3882 Type *Ty = FTy->getParamType(i);
3883 VerifyTypeAlign(Ty,
"argument passed");
3887 if (
Attrs.hasFnAttr(Attribute::Speculatable)) {
3891 "speculatable attribute may not apply to call sites",
Call);
3894 if (
Attrs.hasFnAttr(Attribute::Preallocated)) {
3896 "preallocated as a call site attribute can only be on "
3897 "llvm.call.preallocated.arg");
3909 Check(AI->isUsedWithInAlloca(),
3910 "inalloca argument for call has mismatched alloca", AI,
Call);
3916 for (
unsigned i = 0, e = FTy->getNumParams(); i != e; ++i) {
3920 Check(AI->isSwiftError(),
3921 "swifterror argument for call has mismatched alloca", AI,
Call);
3925 Check(ArgI,
"swifterror argument should come from an alloca or parameter",
3926 SwiftErrorArg,
Call);
3927 Check(ArgI->hasSwiftErrorAttr(),
3928 "swifterror argument for call has mismatched parameter", ArgI,
3932 if (
Attrs.hasParamAttr(i, Attribute::ImmArg)) {
3935 Check(Callee &&
Callee->hasParamAttribute(i, Attribute::ImmArg),
3943 "immarg operand has non-immediate parameter", ArgVal,
Call);
3949 const ConstantRange &CR =
3952 "immarg value " + Twine(CI->getValue().getSExtValue()) +
3965 Check(hasOB != isMustTail,
3966 "preallocated operand either requires a preallocated bundle or "
3967 "the call to be musttail (but not both)",
3972 if (FTy->isVarArg()) {
3974 bool SawNest =
false;
3975 bool SawReturned =
false;
3977 for (
unsigned Idx = 0; Idx < FTy->getNumParams(); ++Idx) {
3978 if (
Attrs.hasParamAttr(Idx, Attribute::Nest))
3980 if (
Attrs.hasParamAttr(Idx, Attribute::Returned))
3985 for (
unsigned Idx = FTy->getNumParams(); Idx <
Call.
arg_size(); ++Idx) {
3987 AttributeSet ArgAttrs =
Attrs.getParamAttrs(Idx);
3988 verifyParameterAttrs(ArgAttrs, Ty, &
Call);
3991 Check(!SawNest,
"More than one parameter has attribute nest!",
Call);
3996 Check(!SawReturned,
"More than one parameter has attribute returned!",
3999 "Incompatible argument and return types for 'returned' "
4009 "Attribute 'sret' cannot be used for vararg call arguments!",
4014 "inalloca isn't on the last argument!",
Call);
4020 for (
Type *ParamTy : FTy->params()) {
4021 Check(!ParamTy->isMetadataTy(),
4022 "Function has metadata parameter but isn't an intrinsic",
Call);
4023 Check(!ParamTy->isTokenLikeTy(),
4024 "Function has token parameter but isn't an intrinsic",
Call);
4030 Check(!FTy->getReturnType()->isTokenLikeTy(),
4031 "Return type cannot be token for indirect call!");
4032 Check(!FTy->getReturnType()->isX86_AMXTy(),
4033 "Return type cannot be x86_amx for indirect call!");
4037 visitIntrinsicCall(
ID,
Call);
4042 bool FoundDeoptBundle =
false, FoundFuncletBundle =
false,
4043 FoundGCTransitionBundle =
false, FoundCFGuardTargetBundle =
false,
4044 FoundPreallocatedBundle =
false, FoundGCLiveBundle =
false,
4045 FoundPtrauthBundle =
false, FoundKCFIBundle =
false,
4046 FoundAttachedCallBundle =
false;
4051 Check(!FoundDeoptBundle,
"Multiple deopt operand bundles",
Call);
4052 FoundDeoptBundle =
true;
4054 Check(!FoundGCTransitionBundle,
"Multiple gc-transition operand bundles",
4056 FoundGCTransitionBundle =
true;
4058 Check(!FoundFuncletBundle,
"Multiple funclet operand bundles",
Call);
4059 FoundFuncletBundle =
true;
4061 "Expected exactly one funclet bundle operand",
Call);
4063 "Funclet bundle operands should correspond to a FuncletPadInst",
4066 Check(!FoundCFGuardTargetBundle,
"Multiple CFGuardTarget operand bundles",
4068 FoundCFGuardTargetBundle =
true;
4070 "Expected exactly one cfguardtarget bundle operand",
Call);
4072 Check(!FoundPtrauthBundle,
"Multiple ptrauth operand bundles",
Call);
4073 FoundPtrauthBundle =
true;
4075 "Expected exactly two ptrauth bundle operands",
Call);
4077 BU.
Inputs[0]->getType()->isIntegerTy(32),
4078 "Ptrauth bundle key operand must be an i32 constant",
Call);
4080 "Ptrauth bundle discriminator operand must be an i64",
Call);
4082 Check(!FoundKCFIBundle,
"Multiple kcfi operand bundles",
Call);
4083 FoundKCFIBundle =
true;
4084 Check(BU.
Inputs.size() == 1,
"Expected exactly one kcfi bundle operand",
4087 BU.
Inputs[0]->getType()->isIntegerTy(32),
4088 "Kcfi bundle operand must be an i32 constant",
Call);
4090 Check(!FoundPreallocatedBundle,
"Multiple preallocated operand bundles",
4092 FoundPreallocatedBundle =
true;
4094 "Expected exactly one preallocated bundle operand",
Call);
4097 Input->getIntrinsicID() == Intrinsic::call_preallocated_setup,
4098 "\"preallocated\" argument must be a token from "
4099 "llvm.call.preallocated.setup",
4102 Check(!FoundGCLiveBundle,
"Multiple gc-live operand bundles",
Call);
4103 FoundGCLiveBundle =
true;
4105 Check(!FoundAttachedCallBundle,
4106 "Multiple \"clang.arc.attachedcall\" operand bundles",
Call);
4107 FoundAttachedCallBundle =
true;
4108 verifyAttachedCallBundle(
Call, BU);
4114 "Direct call cannot have a ptrauth bundle",
Call);
4126 "inlinable function call in a function with "
4127 "debug info must have a !dbg location",
4131 verifyInlineAsmCall(
Call);
4135 visitInstruction(
Call);
4138void Verifier::verifyTailCCMustTailAttrs(
const AttrBuilder &Attrs,
4141 Twine(
"inalloca attribute not allowed in ") +
Context);
4143 Twine(
"inreg attribute not allowed in ") +
Context);
4144 Check(!
Attrs.contains(Attribute::SwiftError),
4145 Twine(
"swifterror attribute not allowed in ") +
Context);
4146 Check(!
Attrs.contains(Attribute::Preallocated),
4147 Twine(
"preallocated attribute not allowed in ") +
Context);
4149 Twine(
"byref attribute not allowed in ") +
Context);
4161 return PL->getAddressSpace() == PR->getAddressSpace();
4166 Attribute::StructRet, Attribute::ByVal, Attribute::InAlloca,
4167 Attribute::InReg, Attribute::StackAlignment, Attribute::SwiftSelf,
4168 Attribute::SwiftAsync, Attribute::SwiftError, Attribute::Preallocated,
4170 AttrBuilder Copy(
C);
4171 for (
auto AK : ABIAttrs) {
4172 Attribute Attr = Attrs.getParamAttrs(
I).getAttribute(AK);
4174 Copy.addAttribute(Attr);
4178 if (Attrs.hasParamAttr(
I, Attribute::Alignment) &&
4179 (Attrs.hasParamAttr(
I, Attribute::ByVal) ||
4180 Attrs.hasParamAttr(
I, Attribute::ByRef)))
4181 Copy.addAlignmentAttr(Attrs.getParamAlignment(
I));
4185void Verifier::verifyMustTailCall(CallInst &CI) {
4189 FunctionType *CallerTy =
F->getFunctionType();
4191 Check(CallerTy->isVarArg() == CalleeTy->isVarArg(),
4192 "cannot guarantee tail call due to mismatched varargs", &CI);
4194 "cannot guarantee tail call due to mismatched return types", &CI);
4198 "cannot guarantee tail call due to mismatched calling conv", &CI);
4204 Value *RetVal = &CI;
4210 "bitcast following musttail call must use the call", BI);
4217 Check(Ret,
"musttail call must precede a ret with an optional bitcast", &CI);
4220 "musttail call result must be returned", Ret);
4222 AttributeList CallerAttrs =
F->getAttributes();
4227 CI.
getCallingConv() == CallingConv::Tail ?
"tailcc" :
"swifttailcc";
4231 for (
unsigned I = 0,
E = CallerTy->getNumParams();
I !=
E; ++
I) {
4233 SmallString<32>
Context{CCName, StringRef(
" musttail caller")};
4234 verifyTailCCMustTailAttrs(ABIAttrs,
Context);
4236 for (
unsigned I = 0,
E = CalleeTy->getNumParams();
I !=
E; ++
I) {
4238 SmallString<32>
Context{CCName, StringRef(
" musttail callee")};
4239 verifyTailCCMustTailAttrs(ABIAttrs,
Context);
4242 Check(!CallerTy->isVarArg(), Twine(
"cannot guarantee ") + CCName +
4243 " tail call for varargs function");
4251 Check(CallerTy->getNumParams() == CalleeTy->getNumParams(),
4252 "cannot guarantee tail call due to mismatched parameter counts", &CI);
4253 for (
unsigned I = 0,
E = CallerTy->getNumParams();
I !=
E; ++
I) {
4256 "cannot guarantee tail call due to mismatched parameter types", &CI);
4262 for (
unsigned I = 0,
E = CallerTy->getNumParams();
I !=
E; ++
I) {
4265 Check(CallerABIAttrs == CalleeABIAttrs,
4266 "cannot guarantee tail call due to mismatched ABI impacting "
4267 "function attributes",
4272void Verifier::visitCallInst(CallInst &CI) {
4276 verifyMustTailCall(CI);
4279void Verifier::visitInvokeInst(InvokeInst &
II) {
4285 II.getUnwindDest()->isEHPad(),
4286 "The unwind destination does not have an exception handling instruction!",
4289 visitTerminator(
II);
4294void Verifier::visitUnaryOperator(UnaryOperator &U) {
4295 Check(
U.getType() ==
U.getOperand(0)->getType(),
4296 "Unary operators must have same type for"
4297 "operands and result!",
4300 switch (
U.getOpcode()) {
4303 case Instruction::FNeg:
4304 Check(
U.getType()->isFPOrFPVectorTy(),
4305 "FNeg operator only works with float types!", &U);
4311 visitInstruction(U);
4317void Verifier::visitBinaryOperator(BinaryOperator &
B) {
4318 Check(
B.getOperand(0)->getType() ==
B.getOperand(1)->getType(),
4319 "Both operands to a binary operator are not of the same type!", &
B);
4321 switch (
B.getOpcode()) {
4324 case Instruction::Add:
4325 case Instruction::Sub:
4326 case Instruction::Mul:
4327 case Instruction::SDiv:
4328 case Instruction::UDiv:
4329 case Instruction::SRem:
4330 case Instruction::URem:
4331 Check(
B.getType()->isIntOrIntVectorTy(),
4332 "Integer arithmetic operators only work with integral types!", &
B);
4333 Check(
B.getType() ==
B.getOperand(0)->getType(),
4334 "Integer arithmetic operators must have same type "
4335 "for operands and result!",
4340 case Instruction::FAdd:
4341 case Instruction::FSub:
4342 case Instruction::FMul:
4343 case Instruction::FDiv:
4344 case Instruction::FRem:
4345 Check(
B.getType()->isFPOrFPVectorTy(),
4346 "Floating-point arithmetic operators only work with "
4347 "floating-point types!",
4349 Check(
B.getType() ==
B.getOperand(0)->getType(),
4350 "Floating-point arithmetic operators must have same type "
4351 "for operands and result!",
4355 case Instruction::And:
4356 case Instruction::Or:
4357 case Instruction::Xor:
4358 Check(
B.getType()->isIntOrIntVectorTy(),
4359 "Logical operators only work with integral types!", &
B);
4360 Check(
B.getType() ==
B.getOperand(0)->getType(),
4361 "Logical operators must have same type for operands and result!", &
B);
4363 case Instruction::Shl:
4364 case Instruction::LShr:
4365 case Instruction::AShr:
4366 Check(
B.getType()->isIntOrIntVectorTy(),
4367 "Shifts only work with integral types!", &
B);
4368 Check(
B.getType() ==
B.getOperand(0)->getType(),
4369 "Shift return type must be same as operands!", &
B);
4375 visitInstruction(
B);
4378void Verifier::visitICmpInst(ICmpInst &IC) {
4382 Check(Op0Ty == Op1Ty,
4383 "Both operands to ICmp instruction are not of the same type!", &IC);
4386 "Invalid operand types for ICmp instruction", &IC);
4390 visitInstruction(IC);
4393void Verifier::visitFCmpInst(FCmpInst &FC) {
4395 Type *Op0Ty =
FC.getOperand(0)->getType();
4396 Type *Op1Ty =
FC.getOperand(1)->getType();
4397 Check(Op0Ty == Op1Ty,
4398 "Both operands to FCmp instruction are not of the same type!", &FC);
4403 Check(
FC.isFPPredicate(),
"Invalid predicate in FCmp instruction!", &FC);
4405 visitInstruction(FC);
4408void Verifier::visitExtractElementInst(ExtractElementInst &EI) {
4410 "Invalid extractelement operands!", &EI);
4411 visitInstruction(EI);
4414void Verifier::visitInsertElementInst(InsertElementInst &IE) {
4417 "Invalid insertelement operands!", &IE);
4418 visitInstruction(IE);
4421void Verifier::visitShuffleVectorInst(ShuffleVectorInst &SV) {
4424 "Invalid shufflevector operands!", &SV);
4425 visitInstruction(SV);
4428void Verifier::visitGetElementPtrInst(GetElementPtrInst &
GEP) {
4429 Type *TargetTy =
GEP.getPointerOperandType()->getScalarType();
4432 "GEP base pointer is not a vector or a vector of pointers", &
GEP);
4433 Check(
GEP.getSourceElementType()->isSized(),
"GEP into unsized type!", &
GEP);
4437 "getelementptr cannot target structure that contains scalable vector"
4442 SmallVector<Value *, 16> Idxs(
GEP.indices());
4444 all_of(Idxs, [](
Value *V) {
return V->getType()->isIntOrIntVectorTy(); }),
4445 "GEP indexes must be integers", &
GEP);
4448 Check(ElTy,
"Invalid indices for GEP pointer type!", &
GEP);
4452 Check(PtrTy &&
GEP.getResultElementType() == ElTy,
4453 "GEP is not of right type for indices!", &
GEP, ElTy);
4457 ElementCount GEPWidth = GEPVTy->getElementCount();
4458 if (
GEP.getPointerOperandType()->isVectorTy())
4462 "Vector GEP result width doesn't match operand's", &
GEP);
4463 for (
Value *Idx : Idxs) {
4464 Type *IndexTy = Idx->getType();
4466 ElementCount IndexWidth = IndexVTy->getElementCount();
4467 Check(IndexWidth == GEPWidth,
"Invalid GEP index vector width", &
GEP);
4470 "All GEP indices should be of integer type");
4474 Check(
GEP.getAddressSpace() == PtrTy->getAddressSpace(),
4475 "GEP address space doesn't match type", &
GEP);
4477 visitInstruction(
GEP);
4481 return A.getUpper() ==
B.getLower() ||
A.getLower() ==
B.getUpper();
4486void Verifier::verifyRangeLikeMetadata(
const Value &
I,
const MDNode *
Range,
4487 Type *Ty, RangeLikeMetadataKind Kind) {
4488 unsigned NumOperands =
Range->getNumOperands();
4489 Check(NumOperands % 2 == 0,
"Unfinished range!",
Range);
4490 unsigned NumRanges = NumOperands / 2;
4491 Check(NumRanges >= 1,
"It should have at least one range!",
Range);
4493 ConstantRange LastRange(1,
true);
4494 for (
unsigned i = 0; i < NumRanges; ++i) {
4497 Check(
Low,
"The lower limit must be an integer!",
Low);
4502 Check(
High->getType() ==
Low->getType(),
"Range pair types must match!",
4505 if (Kind == RangeLikeMetadataKind::NoaliasAddrspace) {
4507 "noalias.addrspace type must be i32!", &
I);
4510 "Range types must match instruction type!", &
I);
4513 APInt HighV =
High->getValue();
4514 APInt LowV =
Low->getValue();
4519 "The upper and lower limits cannot be the same value", &
I);
4521 ConstantRange CurRange(LowV, HighV);
4522 Check(!CurRange.isEmptySet() &&
4523 (Kind == RangeLikeMetadataKind::AbsoluteSymbol ||
4524 !CurRange.isFullSet()),
4525 "Range must not be empty!",
Range);
4527 Check(CurRange.intersectWith(LastRange).isEmptySet(),
4528 "Intervals are overlapping",
Range);
4529 Check(LowV.
sgt(LastRange.getLower()),
"Intervals are not in order",
4534 LastRange = ConstantRange(LowV, HighV);
4536 if (NumRanges > 2) {
4541 ConstantRange FirstRange(FirstLow, FirstHigh);
4542 Check(FirstRange.intersectWith(LastRange).isEmptySet(),
4543 "Intervals are overlapping",
Range);
4549void Verifier::visitRangeMetadata(Instruction &
I, MDNode *
Range,
Type *Ty) {
4551 "precondition violation");
4552 verifyRangeLikeMetadata(
I,
Range, Ty, RangeLikeMetadataKind::Range);
4555void Verifier::visitNoaliasAddrspaceMetadata(Instruction &
I, MDNode *
Range,
4558 "precondition violation");
4559 verifyRangeLikeMetadata(
I,
Range, Ty,
4560 RangeLikeMetadataKind::NoaliasAddrspace);
4563void Verifier::checkAtomicMemAccessSize(
Type *Ty,
const Instruction *
I) {
4564 unsigned Size =
DL.getTypeSizeInBits(Ty).getFixedValue();
4565 Check(
Size >= 8,
"atomic memory access' size must be byte-sized", Ty,
I);
4567 "atomic memory access' operand must have a power-of-two size", Ty,
I);
4570void Verifier::visitLoadInst(LoadInst &LI) {
4572 Check(PTy,
"Load operand must be a pointer.", &LI);
4575 Check(
A->value() <= Value::MaximumAlignment,
4576 "huge alignment values are unsupported", &LI);
4578 Check(ElTy->
isSized(),
"loading unsized types is not allowed", &LI);
4581 LI.
getOrdering() != AtomicOrdering::AcquireRelease,
4582 "Load cannot have Release ordering", &LI);
4585 "atomic load operand must have integer, pointer, floating point, "
4589 checkAtomicMemAccessSize(ElTy, &LI);
4592 "Non-atomic load cannot have SynchronizationScope specified", &LI);
4595 visitInstruction(LI);
4598void Verifier::visitStoreInst(StoreInst &SI) {
4600 Check(PTy,
"Store operand must be a pointer.", &SI);
4601 Type *ElTy =
SI.getOperand(0)->getType();
4602 if (MaybeAlign
A =
SI.getAlign()) {
4603 Check(
A->value() <= Value::MaximumAlignment,
4604 "huge alignment values are unsupported", &SI);
4606 Check(ElTy->
isSized(),
"storing unsized types is not allowed", &SI);
4607 if (
SI.isAtomic()) {
4608 Check(
SI.getOrdering() != AtomicOrdering::Acquire &&
4609 SI.getOrdering() != AtomicOrdering::AcquireRelease,
4610 "Store cannot have Acquire ordering", &SI);
4613 "atomic store operand must have integer, pointer, floating point, "
4616 checkAtomicMemAccessSize(ElTy, &SI);
4619 "Non-atomic store cannot have SynchronizationScope specified", &SI);
4621 visitInstruction(SI);
4625void Verifier::verifySwiftErrorCall(CallBase &
Call,
4626 const Value *SwiftErrorVal) {
4628 if (
I.value() == SwiftErrorVal) {
4630 "swifterror value when used in a callsite should be marked "
4631 "with swifterror attribute",
4632 SwiftErrorVal,
Call);
4637void Verifier::verifySwiftErrorValue(
const Value *SwiftErrorVal) {
4640 for (
const User *U : SwiftErrorVal->
users()) {
4643 "swifterror value can only be loaded and stored from, or "
4644 "as a swifterror argument!",
4648 Check(StoreI->getOperand(1) == SwiftErrorVal,
4649 "swifterror value should be the second operand when used "
4653 verifySwiftErrorCall(*
const_cast<CallBase *
>(
Call), SwiftErrorVal);
4657void Verifier::visitAllocaInst(AllocaInst &AI) {
4659 SmallPtrSet<Type*, 4> Visited;
4660 Check(Ty->
isSized(&Visited),
"Cannot allocate unsized type", &AI);
4664 "Alloca has illegal target extension type", &AI);
4666 "Alloca array size must have integer type", &AI);
4668 Check(
A->value() <= Value::MaximumAlignment,
4669 "huge alignment values are unsupported", &AI);
4675 "swifterror alloca must not be array allocation", &AI);
4676 verifySwiftErrorValue(&AI);
4679 if (
TT.isAMDGPU()) {
4681 "alloca on amdgpu must be in addrspace(5)", &AI);
4684 visitInstruction(AI);
4687void Verifier::visitAtomicCmpXchgInst(AtomicCmpXchgInst &CXI) {
4690 "cmpxchg operand must have integer or pointer type", ElTy, &CXI);
4691 checkAtomicMemAccessSize(ElTy, &CXI);
4692 visitInstruction(CXI);
4695void Verifier::visitAtomicRMWInst(AtomicRMWInst &RMWI) {
4697 "atomicrmw instructions cannot be unordered.", &RMWI);
4704 " operand must have integer or floating point type!",
4709 " operand must have floating-point or fixed vector of floating-point "
4715 " operand must have integer type!",
4718 checkAtomicMemAccessSize(ElTy, &RMWI);
4720 "Invalid binary operation!", &RMWI);
4721 visitInstruction(RMWI);
4724void Verifier::visitFenceInst(FenceInst &FI) {
4726 Check(Ordering == AtomicOrdering::Acquire ||
4727 Ordering == AtomicOrdering::Release ||
4728 Ordering == AtomicOrdering::AcquireRelease ||
4729 Ordering == AtomicOrdering::SequentiallyConsistent,
4730 "fence instructions may only have acquire, release, acq_rel, or "
4731 "seq_cst ordering.",
4733 visitInstruction(FI);
4736void Verifier::visitExtractValueInst(ExtractValueInst &EVI) {
4739 "Invalid ExtractValueInst operands!", &EVI);
4741 visitInstruction(EVI);
4744void Verifier::visitInsertValueInst(InsertValueInst &IVI) {
4748 "Invalid InsertValueInst operands!", &IVI);
4750 visitInstruction(IVI);
4755 return FPI->getParentPad();
4760void Verifier::visitEHPadPredecessors(Instruction &
I) {
4766 Check(BB != &
F->getEntryBlock(),
"EH pad cannot be in entry block.", &
I);
4774 Check(
II &&
II->getUnwindDest() == BB &&
II->getNormalDest() != BB,
4775 "Block containing LandingPadInst must be jumped to "
4776 "only by the unwind edge of an invoke.",
4784 "Block containg CatchPadInst must be jumped to "
4785 "only by its catchswitch.",
4787 Check(BB != CPI->getCatchSwitch()->getUnwindDest(),
4788 "Catchswitch cannot unwind to one of its catchpads",
4789 CPI->getCatchSwitch(), CPI);
4801 Check(
II->getUnwindDest() == BB &&
II->getNormalDest() != BB,
4802 "EH pad must be jumped to via an unwind edge", ToPad,
II);
4805 if (CalledFn && CalledFn->isIntrinsic() &&
II->doesNotThrow() &&
4809 FromPad = Bundle->Inputs[0];
4813 FromPad = CRI->getOperand(0);
4814 Check(FromPad != ToPadParent,
"A cleanupret must exit its cleanup", CRI);
4818 Check(
false,
"EH pad must be jumped to via an unwind edge", ToPad, TI);
4822 SmallPtrSet<Value *, 8> Seen;
4824 Check(FromPad != ToPad,
4825 "EH pad cannot handle exceptions raised within it", FromPad, TI);
4826 if (FromPad == ToPadParent) {
4831 "A single unwind edge may only enter one EH pad", TI);
4832 Check(Seen.
insert(FromPad).second,
"EH pad jumps through a cycle of pads",
4838 "Parent pad must be catchpad/cleanuppad/catchswitch", TI);
4843void Verifier::visitLandingPadInst(LandingPadInst &LPI) {
4847 "LandingPadInst needs at least one clause or to be a cleanup.", &LPI);
4849 visitEHPadPredecessors(LPI);
4851 if (!LandingPadResultTy)
4852 LandingPadResultTy = LPI.
getType();
4855 "The landingpad instruction should have a consistent result type "
4856 "inside a function.",
4860 Check(
F->hasPersonalityFn(),
4861 "LandingPadInst needs to be in a function with a personality.", &LPI);
4866 "LandingPadInst not the first non-PHI instruction in the block.", &LPI);
4872 "Catch operand does not have pointer type!", &LPI);
4874 Check(LPI.
isFilter(i),
"Clause is neither catch nor filter!", &LPI);
4876 "Filter operand is not an array of constants!", &LPI);
4880 visitInstruction(LPI);
4883void Verifier::visitResumeInst(ResumeInst &RI) {
4885 "ResumeInst needs to be in a function with a personality.", &RI);
4887 if (!LandingPadResultTy)
4891 "The resume instruction should have a consistent result type "
4892 "inside a function.",
4895 visitTerminator(RI);
4898void Verifier::visitCatchPadInst(CatchPadInst &CPI) {
4902 Check(
F->hasPersonalityFn(),
4903 "CatchPadInst needs to be in a function with a personality.", &CPI);
4906 "CatchPadInst needs to be directly nested in a CatchSwitchInst.",
4912 "CatchPadInst not the first non-PHI instruction in the block.", &CPI);
4914 visitEHPadPredecessors(CPI);
4915 visitFuncletPadInst(CPI);
4918void Verifier::visitCatchReturnInst(CatchReturnInst &CatchReturn) {
4920 "CatchReturnInst needs to be provided a CatchPad", &CatchReturn,
4923 visitTerminator(CatchReturn);
4926void Verifier::visitCleanupPadInst(CleanupPadInst &CPI) {
4930 Check(
F->hasPersonalityFn(),
4931 "CleanupPadInst needs to be in a function with a personality.", &CPI);
4936 "CleanupPadInst not the first non-PHI instruction in the block.", &CPI);
4940 "CleanupPadInst has an invalid parent.", &CPI);
4942 visitEHPadPredecessors(CPI);
4943 visitFuncletPadInst(CPI);
4946void Verifier::visitFuncletPadInst(FuncletPadInst &FPI) {
4947 User *FirstUser =
nullptr;
4948 Value *FirstUnwindPad =
nullptr;
4950 SmallPtrSet<FuncletPadInst *, 8> Seen;
4952 while (!Worklist.empty()) {
4953 FuncletPadInst *CurrentPad = Worklist.pop_back_val();
4955 "FuncletPadInst must not be nested within itself", CurrentPad);
4956 Value *UnresolvedAncestorPad =
nullptr;
4957 for (User *U : CurrentPad->
users()) {
4960 UnwindDest = CRI->getUnwindDest();
4966 if (CSI->unwindsToCaller())
4968 UnwindDest = CSI->getUnwindDest();
4970 UnwindDest =
II->getUnwindDest();
4980 Worklist.push_back(CPI);
4995 if (UnwindParent == CurrentPad)
5001 Value *ExitedPad = CurrentPad;
5004 if (ExitedPad == &FPI) {
5009 UnresolvedAncestorPad = &FPI;
5013 if (ExitedParent == UnwindParent) {
5017 UnresolvedAncestorPad = ExitedParent;
5020 ExitedPad = ExitedParent;
5026 UnresolvedAncestorPad = &FPI;
5033 Check(UnwindPad == FirstUnwindPad,
5034 "Unwind edges out of a funclet "
5035 "pad must have the same unwind "
5037 &FPI, U, FirstUser);
5040 FirstUnwindPad = UnwindPad;
5049 if (CurrentPad != &FPI)
5052 if (UnresolvedAncestorPad) {
5053 if (CurrentPad == UnresolvedAncestorPad) {
5057 assert(CurrentPad == &FPI);
5065 Value *ResolvedPad = CurrentPad;
5066 while (!Worklist.empty()) {
5067 Value *UnclePad = Worklist.back();
5071 while (ResolvedPad != AncestorPad) {
5073 if (ResolvedParent == UnresolvedAncestorPad) {
5076 ResolvedPad = ResolvedParent;
5080 if (ResolvedPad != AncestorPad)
5083 Worklist.pop_back();
5088 if (FirstUnwindPad) {
5090 BasicBlock *SwitchUnwindDest = CatchSwitch->getUnwindDest();
5091 Value *SwitchUnwindPad;
5092 if (SwitchUnwindDest)
5096 Check(SwitchUnwindPad == FirstUnwindPad,
5097 "Unwind edges out of a catch must have the same unwind dest as "
5098 "the parent catchswitch",
5099 &FPI, FirstUser, CatchSwitch);
5103 visitInstruction(FPI);
5106void Verifier::visitCatchSwitchInst(CatchSwitchInst &CatchSwitch) {
5110 Check(
F->hasPersonalityFn(),
5111 "CatchSwitchInst needs to be in a function with a personality.",
5117 "CatchSwitchInst not the first non-PHI instruction in the block.",
5122 "CatchSwitchInst has an invalid parent.", ParentPad);
5127 "CatchSwitchInst must unwind to an EH block which is not a "
5133 SiblingFuncletInfo[&CatchSwitch] = &CatchSwitch;
5137 "CatchSwitchInst cannot have empty handler list", &CatchSwitch);
5139 for (BasicBlock *Handler : CatchSwitch.
handlers()) {
5141 "CatchSwitchInst handlers must be catchpads", &CatchSwitch, Handler);
5144 visitEHPadPredecessors(CatchSwitch);
5145 visitTerminator(CatchSwitch);
5148void Verifier::visitCleanupReturnInst(CleanupReturnInst &CRI) {
5150 "CleanupReturnInst needs to be provided a CleanupPad", &CRI,
5156 "CleanupReturnInst must unwind to an EH block which is not a "
5161 visitTerminator(CRI);
5164void Verifier::verifyDominatesUse(Instruction &
I,
unsigned i) {
5170 if (
II->getNormalDest() ==
II->getUnwindDest())
5184 const Use &
U =
I.getOperandUse(i);
5185 Check(DT.dominates(
Op, U),
"Instruction does not dominate all uses!",
Op, &
I);
5188void Verifier::visitDereferenceableMetadata(Instruction&
I, MDNode* MD) {
5189 Check(
I.getType()->isPointerTy(),
5190 "dereferenceable, dereferenceable_or_null "
5191 "apply only to pointer types",
5194 "dereferenceable, dereferenceable_or_null apply only to load"
5195 " and inttoptr instructions, use attributes for calls or invokes",
5198 "dereferenceable, dereferenceable_or_null "
5199 "take one operand!",
5204 "dereferenceable_or_null metadata value must be an i64!",
5208void Verifier::visitNofreeMetadata(Instruction &
I, MDNode *MD) {
5209 Check(
I.getType()->isPointerTy(),
"nofree applies only to pointer types", &
I);
5215void Verifier::visitProfMetadata(Instruction &
I, MDNode *MD) {
5216 auto GetBranchingTerminatorNumOperands = [&]() {
5217 unsigned ExpectedNumOperands = 0;
5221 ExpectedNumOperands =
SI->getNumSuccessors();
5223 ExpectedNumOperands = 1;
5225 ExpectedNumOperands = IBI->getNumDestinations();
5227 ExpectedNumOperands = 2;
5230 return ExpectedNumOperands;
5233 "!prof annotations should have at least 1 operand", MD);
5235 Check(MD->
getOperand(0) !=
nullptr,
"first operand should not be null", MD);
5237 "expected string with name of the !prof annotation", MD);
5243 "'unknown' !prof should only appear on instructions on which "
5244 "'branch_weights' would",
5246 verifyUnknownProfileMetadata(MD);
5251 "!prof annotations should have no less than 2 operands", MD);
5257 Check(NumBranchWeights == 1 || NumBranchWeights == 2,
5258 "Wrong number of InvokeInst branch_weights operands", MD);
5260 const unsigned ExpectedNumOperands = GetBranchingTerminatorNumOperands();
5261 if (ExpectedNumOperands == 0)
5262 CheckFailed(
"!prof branch_weights are not allowed for this instruction",
5265 Check(NumBranchWeights == ExpectedNumOperands,
"Wrong number of operands",
5271 Check(MDO,
"second operand should not be null", MD);
5273 "!prof brunch_weights operand is not a const int");
5278 Check(KindInt,
"VP !prof missing kind argument", MD);
5281 Check(Kind >= InstrProfValueKind::IPVK_First &&
5282 Kind <= InstrProfValueKind::IPVK_Last,
5283 "Invalid VP !prof kind", MD);
5285 "VP !prof should have an even number "
5286 "of arguments after 'VP'",
5288 if (Kind == InstrProfValueKind::IPVK_IndirectCallTarget ||
5289 Kind == InstrProfValueKind::IPVK_MemOPSize)
5291 "VP !prof indirect call or memop size expected to be applied to "
5292 "CallBase instructions only",
5295 CheckFailed(
"expected either branch_weights or VP profile name", MD);
5299void Verifier::visitDIAssignIDMetadata(Instruction &
I, MDNode *MD) {
5300 assert(
I.hasMetadata(LLVMContext::MD_DIAssignID));
5305 bool ExpectedInstTy =
5307 CheckDI(ExpectedInstTy,
"!DIAssignID attached to unexpected instruction kind",
5312 for (
auto *User : AsValue->users()) {
5314 "!DIAssignID should only be used by llvm.dbg.assign intrinsics",
5318 CheckDI(DAI->getFunction() ==
I.getFunction(),
5319 "dbg.assign not in same function as inst", DAI, &
I);
5322 for (DbgVariableRecord *DVR :
5325 "!DIAssignID should only be used by Assign DVRs.", MD, DVR);
5326 CheckDI(DVR->getFunction() ==
I.getFunction(),
5327 "DVRAssign not in same function as inst", DVR, &
I);
5331void Verifier::visitMMRAMetadata(Instruction &
I, MDNode *MD) {
5333 "!mmra metadata attached to unexpected instruction kind",
I, MD);
5344 for (
const MDOperand &MDOp : MD->
operands())
5346 "!mmra metadata tuple operand is not an MMRA tag",
I, MDOp.get());
5349void Verifier::visitCallStackMetadata(MDNode *MD) {
5353 "call stack metadata should have at least 1 operand", MD);
5357 "call stack metadata operand should be constant integer",
Op);
5360void Verifier::visitMemProfMetadata(Instruction &
I, MDNode *MD) {
5363 "!memprof annotations should have at least 1 metadata operand "
5368 for (
auto &MIBOp : MD->
operands()) {
5374 "Each !memprof MemInfoBlock should have at least 2 operands", MIB);
5378 "!memprof MemInfoBlock first operand should not be null", MIB);
5380 "!memprof MemInfoBlock first operand should be an MDNode", MIB);
5382 visitCallStackMetadata(StackMD);
5386 "!memprof MemInfoBlock second operand should be an MDString", MIB);
5391 Check(OpNode,
"Not all !memprof MemInfoBlock operands 2 to N are MDNode",
5394 "Not all !memprof MemInfoBlock operands 2 to N are MDNode with 2 "
5399 [](
const MDOperand &
Op) {
5400 return mdconst::hasa<ConstantInt>(Op);
5402 "Not all !memprof MemInfoBlock operands 2 to N are MDNode with "
5403 "ConstantInt operands",
5409void Verifier::visitCallsiteMetadata(Instruction &
I, MDNode *MD) {
5413 visitCallStackMetadata(MD);
5422void Verifier::visitCalleeTypeMetadata(Instruction &
I, MDNode *MD) {
5427 "The callee_type metadata must be a list of type metadata nodes",
Op);
5429 Check(TypeMD->getNumOperands() == 2,
5430 "Well-formed generalized type metadata must contain exactly two "
5435 "The first operand of type metadata for functions must be zero",
Op);
5436 Check(TypeMD->hasGeneralizedMDString(),
5437 "Only generalized type metadata can be part of the callee_type "
5443void Verifier::visitAnnotationMetadata(MDNode *Annotation) {
5446 "annotation must have at least one operand");
5448 bool TupleOfStrings =
5454 "operands must be a string or a tuple of strings");
5458void Verifier::visitAliasScopeMetadata(
const MDNode *MD) {
5463 "first scope operand must be self-referential or string", MD);
5466 "third scope operand must be string (if used)", MD);
5469 Check(
Domain !=
nullptr,
"second scope operand must be MDNode", MD);
5471 unsigned NumDomainOps =
Domain->getNumOperands();
5472 Check(NumDomainOps >= 1 && NumDomainOps <= 2,
5473 "domain must have one or two operands",
Domain);
5476 "first domain operand must be self-referential or string",
Domain);
5477 if (NumDomainOps == 2)
5479 "second domain operand must be string (if used)",
Domain);
5482void Verifier::visitAliasScopeListMetadata(
const MDNode *MD) {
5485 Check(OpMD !=
nullptr,
"scope list must consist of MDNodes", MD);
5486 visitAliasScopeMetadata(OpMD);
5490void Verifier::visitAccessGroupMetadata(
const MDNode *MD) {
5491 auto IsValidAccessScope = [](
const MDNode *MD) {
5496 if (IsValidAccessScope(MD))
5502 Check(OpMD !=
nullptr,
"Access scope list must consist of MDNodes", MD);
5503 Check(IsValidAccessScope(OpMD),
5504 "Access scope list contains invalid access scope", MD);
5508void Verifier::visitCapturesMetadata(Instruction &
I,
const MDNode *Captures) {
5509 static const char *ValidArgs[] = {
"address_is_null",
"address",
5510 "read_provenance",
"provenance"};
5513 Check(SI,
"!captures metadata can only be applied to store instructions", &
I);
5514 Check(
SI->getValueOperand()->getType()->isPointerTy(),
5515 "!captures metadata can only be applied to store with value operand of "
5523 Check(Str,
"!captures metadata must be a list of strings", &
I);
5525 "invalid entry in !captures metadata", &
I, Str);
5529void Verifier::visitAllocTokenMetadata(Instruction &
I, MDNode *MD) {
5534 "expected integer constant", MD);
5539void Verifier::visitInstruction(Instruction &
I) {
5541 Check(BB,
"Instruction not embedded in basic block!", &
I);
5544 for (User *U :
I.users()) {
5545 Check(U != (User *)&
I || !DT.isReachableFromEntry(BB),
5546 "Only PHI nodes may reference their own value!", &
I);
5551 Check(!
I.getType()->isVoidTy() || !
I.hasName(),
5552 "Instruction has a name, but provides a void value!", &
I);
5556 Check(
I.getType()->isVoidTy() ||
I.getType()->isFirstClassType(),
5557 "Instruction returns a non-scalar type!", &
I);
5562 "Invalid use of metadata!", &
I);
5567 for (Use &U :
I.uses()) {
5570 "Instruction referencing"
5571 " instruction not embedded in a basic block!",
5574 CheckFailed(
"Use of instruction is not an instruction!", U);
5583 for (
unsigned i = 0, e =
I.getNumOperands(); i != e; ++i) {
5584 Check(
I.getOperand(i) !=
nullptr,
"Instruction has null operand!", &
I);
5588 if (!
I.getOperand(i)->getType()->isFirstClassType()) {
5589 Check(
false,
"Instruction operands must be first-class values!", &
I);
5595 auto IsAttachedCallOperand = [](
Function *
F,
const CallBase *CBI,
5597 return CBI && CBI->isOperandBundleOfType(
5605 Check((!
F->isIntrinsic() ||
5606 (CBI && &CBI->getCalledOperandUse() == &
I.getOperandUse(i)) ||
5607 IsAttachedCallOperand(
F, CBI, i)),
5608 "Cannot take the address of an intrinsic!", &
I);
5610 F->getIntrinsicID() == Intrinsic::donothing ||
5611 F->getIntrinsicID() == Intrinsic::seh_try_begin ||
5612 F->getIntrinsicID() == Intrinsic::seh_try_end ||
5613 F->getIntrinsicID() == Intrinsic::seh_scope_begin ||
5614 F->getIntrinsicID() == Intrinsic::seh_scope_end ||
5615 F->getIntrinsicID() == Intrinsic::coro_resume ||
5616 F->getIntrinsicID() == Intrinsic::coro_destroy ||
5617 F->getIntrinsicID() == Intrinsic::coro_await_suspend_void ||
5618 F->getIntrinsicID() == Intrinsic::coro_await_suspend_bool ||
5619 F->getIntrinsicID() == Intrinsic::coro_await_suspend_handle ||
5620 F->getIntrinsicID() ==
5621 Intrinsic::experimental_patchpoint_void ||
5622 F->getIntrinsicID() == Intrinsic::experimental_patchpoint ||
5623 F->getIntrinsicID() == Intrinsic::fake_use ||
5624 F->getIntrinsicID() == Intrinsic::experimental_gc_statepoint ||
5625 F->getIntrinsicID() == Intrinsic::wasm_throw ||
5626 F->getIntrinsicID() == Intrinsic::wasm_rethrow ||
5627 IsAttachedCallOperand(
F, CBI, i),
5628 "Cannot invoke an intrinsic other than donothing, patchpoint, "
5629 "statepoint, coro_resume, coro_destroy, clang.arc.attachedcall or "
5632 Check(
F->getParent() == &M,
"Referencing function in another module!", &
I,
5633 &M,
F,
F->getParent());
5636 "Referring to a basic block in another function!", &
I);
5639 "Referring to an argument in another function!", &
I);
5641 Check(GV->
getParent() == &M,
"Referencing global in another module!", &
I,
5645 "Referring to an instruction in another function!", &
I);
5646 verifyDominatesUse(
I, i);
5648 Check(CBI && &CBI->getCalledOperandUse() == &
I.getOperandUse(i),
5649 "Cannot take the address of an inline asm!", &
I);
5651 visitConstantExprsRecursively(
C);
5655 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_fpmath)) {
5656 Check(
I.getType()->isFPOrFPVectorTy(),
5657 "fpmath requires a floating point result!", &
I);
5659 if (ConstantFP *CFP0 =
5661 const APFloat &Accuracy = CFP0->getValueAPF();
5663 "fpmath accuracy must have float type", &
I);
5665 "fpmath accuracy not a positive number!", &
I);
5667 Check(
false,
"invalid fpmath accuracy!", &
I);
5671 if (MDNode *
Range =
I.getMetadata(LLVMContext::MD_range)) {
5673 "Ranges are only for loads, calls and invokes!", &
I);
5674 visitRangeMetadata(
I,
Range,
I.getType());
5677 if (MDNode *
Range =
I.getMetadata(LLVMContext::MD_noalias_addrspace)) {
5680 "noalias.addrspace are only for memory operations!", &
I);
5681 visitNoaliasAddrspaceMetadata(
I,
Range,
I.getType());
5684 if (
I.hasMetadata(LLVMContext::MD_invariant_group)) {
5686 "invariant.group metadata is only for loads and stores", &
I);
5689 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_nonnull)) {
5690 Check(
I.getType()->isPointerTy(),
"nonnull applies only to pointer types",
5693 "nonnull applies only to load instructions, use attributes"
5694 " for calls or invokes",
5699 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_dereferenceable))
5700 visitDereferenceableMetadata(
I, MD);
5702 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_dereferenceable_or_null))
5703 visitDereferenceableMetadata(
I, MD);
5705 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_nofree))
5706 visitNofreeMetadata(
I, MD);
5708 if (MDNode *TBAA =
I.getMetadata(LLVMContext::MD_tbaa))
5711 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_noalias))
5712 visitAliasScopeListMetadata(MD);
5713 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_alias_scope))
5714 visitAliasScopeListMetadata(MD);
5716 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_access_group))
5717 visitAccessGroupMetadata(MD);
5719 if (MDNode *AlignMD =
I.getMetadata(LLVMContext::MD_align)) {
5720 Check(
I.getType()->isPointerTy(),
"align applies only to pointer types",
5723 "align applies only to load instructions, "
5724 "use attributes for calls or invokes",
5726 Check(AlignMD->getNumOperands() == 1,
"align takes one operand!", &
I);
5729 "align metadata value must be an i64!", &
I);
5733 Check(Align <= Value::MaximumAlignment,
5734 "alignment is larger that implementation defined limit", &
I);
5737 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_prof))
5738 visitProfMetadata(
I, MD);
5740 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_memprof))
5741 visitMemProfMetadata(
I, MD);
5743 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_callsite))
5744 visitCallsiteMetadata(
I, MD);
5746 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_callee_type))
5747 visitCalleeTypeMetadata(
I, MD);
5749 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_DIAssignID))
5750 visitDIAssignIDMetadata(
I, MD);
5752 if (MDNode *MMRA =
I.getMetadata(LLVMContext::MD_mmra))
5753 visitMMRAMetadata(
I, MMRA);
5755 if (MDNode *Annotation =
I.getMetadata(LLVMContext::MD_annotation))
5756 visitAnnotationMetadata(Annotation);
5758 if (MDNode *Captures =
I.getMetadata(LLVMContext::MD_captures))
5759 visitCapturesMetadata(
I, Captures);
5761 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_alloc_token))
5762 visitAllocTokenMetadata(
I, MD);
5764 if (MDNode *
N =
I.getDebugLoc().getAsMDNode()) {
5766 visitMDNode(*
N, AreDebugLocsAllowed::Yes);
5769 if (
DL->getAtomGroup()) {
5770 CheckDI(
DL->getScope()->getSubprogram()->getKeyInstructionsEnabled(),
5771 "DbgLoc uses atomGroup but DISubprogram doesn't have Key "
5772 "Instructions enabled",
5773 DL,
DL->getScope()->getSubprogram());
5779 I.getAllMetadata(MDs);
5780 for (
auto Attachment : MDs) {
5781 unsigned Kind = Attachment.first;
5783 (
Kind == LLVMContext::MD_dbg ||
Kind == LLVMContext::MD_loop)
5784 ? AreDebugLocsAllowed::Yes
5785 : AreDebugLocsAllowed::
No;
5786 visitMDNode(*Attachment.second, AllowLocs);
5801 bool IsVarArg = IFTy->isVarArg();
5812 "Intrinsic has incorrect return type!", IF);
5814 "Intrinsic has incorrect argument type!", IF);
5819 "Intrinsic was not defined with variable arguments!", IF);
5822 "Callsite was not defined with variable arguments!", IF);
5831 const std::string ExpectedName =
5834 "Intrinsic name not mangled correctly for type arguments! "
5846 "const x86_amx is not allowed in argument!");
5852 case Intrinsic::assume: {
5856 "assume with operand bundles must have i1 true condition",
Call);
5859 unsigned ArgCount = Elem.End - Elem.Begin;
5862 if (Elem.Tag->getKey() ==
"separate_storage") {
5863 Check(ArgCount == 2,
5864 "separate_storage assumptions should have 2 arguments",
Call);
5867 "arguments to separate_storage assumptions should be pointers",
5871 Check(Elem.Tag->getKey() ==
"ignore" ||
5872 Attribute::isExistingAttribute(Elem.Tag->getKey()),
5873 "tags must be valid attribute names",
Call);
5874 Attribute::AttrKind
Kind =
5875 Attribute::getAttrKindFromName(Elem.Tag->getKey());
5876 if (Kind == Attribute::Alignment) {
5877 Check(ArgCount <= 3 && ArgCount >= 2,
5878 "alignment assumptions should have 2 or 3 arguments",
Call);
5880 "first argument should be a pointer",
Call);
5882 "second argument should be an integer",
Call);
5885 "third argument should be an integer if present",
Call);
5888 if (Kind == Attribute::Dereferenceable) {
5889 Check(ArgCount == 2,
5890 "dereferenceable assumptions should have 2 arguments",
Call);
5892 "first argument should be a pointer",
Call);
5894 "second argument should be an integer",
Call);
5897 Check(ArgCount <= 2,
"too many arguments",
Call);
5898 if (Kind == Attribute::None)
5900 if (Attribute::isIntAttrKind(Kind)) {
5901 Check(ArgCount == 2,
"this attribute should have 2 arguments",
Call);
5903 "the second argument should be a constant integral value",
Call);
5904 }
else if (Attribute::canUseAsParamAttr(Kind)) {
5905 Check((ArgCount) == 1,
"this attribute should have one argument",
Call);
5906 }
else if (Attribute::canUseAsFnAttr(Kind)) {
5907 Check((ArgCount) == 0,
"this attribute has no argument",
Call);
5912 case Intrinsic::ucmp:
5913 case Intrinsic::scmp: {
5918 "result type must be at least 2 bits wide",
Call);
5920 bool IsDestTypeVector = DestTy->
isVectorTy();
5922 "ucmp/scmp argument and result types must both be either vector or "
5925 if (IsDestTypeVector) {
5928 Check(SrcVecLen == DestVecLen,
5929 "return type and arguments must have the same number of "
5935 case Intrinsic::coro_id: {
5941 "info argument of llvm.coro.id must refer to an initialized "
5945 "info argument of llvm.coro.id must refer to either a struct or "
5949 case Intrinsic::is_fpclass: {
5952 "unsupported bits for llvm.is.fpclass test mask");
5955 case Intrinsic::fptrunc_round: {
5960 MD = MAV->getMetadata();
5962 Check(MD !=
nullptr,
"missing rounding mode argument",
Call);
5965 (
"invalid value for llvm.fptrunc.round metadata operand"
5966 " (the operand should be a string)"),
5969 std::optional<RoundingMode> RoundMode =
5971 Check(RoundMode && *RoundMode != RoundingMode::Dynamic,
5972 "unsupported rounding mode argument",
Call);
5975#define BEGIN_REGISTER_VP_INTRINSIC(VPID, ...) case Intrinsic::VPID:
5976#include "llvm/IR/VPIntrinsics.def"
5977#undef BEGIN_REGISTER_VP_INTRINSIC
5980#define INSTRUCTION(NAME, NARGS, ROUND_MODE, INTRINSIC) \
5981 case Intrinsic::INTRINSIC:
5982#include "llvm/IR/ConstrainedOps.def"
5986 case Intrinsic::dbg_declare:
5987 case Intrinsic::dbg_value:
5988 case Intrinsic::dbg_assign:
5989 case Intrinsic::dbg_label:
5996 case Intrinsic::memcpy:
5997 case Intrinsic::memcpy_inline:
5998 case Intrinsic::memmove:
5999 case Intrinsic::memset:
6000 case Intrinsic::memset_inline:
6002 case Intrinsic::experimental_memset_pattern: {
6004 Check(Memset->getValue()->getType()->isSized(),
6005 "unsized types cannot be used as memset patterns",
Call);
6008 case Intrinsic::memcpy_element_unordered_atomic:
6009 case Intrinsic::memmove_element_unordered_atomic:
6010 case Intrinsic::memset_element_unordered_atomic: {
6013 ConstantInt *ElementSizeCI =
6015 const APInt &ElementSizeVal = ElementSizeCI->
getValue();
6017 "element size of the element-wise atomic memory intrinsic "
6018 "must be a power of 2",
6021 auto IsValidAlignment = [&](MaybeAlign Alignment) {
6022 return Alignment && ElementSizeVal.
ule(Alignment->value());
6024 Check(IsValidAlignment(AMI->getDestAlign()),
6025 "incorrect alignment of the destination argument",
Call);
6027 Check(IsValidAlignment(AMT->getSourceAlign()),
6028 "incorrect alignment of the source argument",
Call);
6032 case Intrinsic::call_preallocated_setup: {
6034 bool FoundCall =
false;
6037 Check(UseCall !=
nullptr,
6038 "Uses of llvm.call.preallocated.setup must be calls");
6040 if (IID == Intrinsic::call_preallocated_arg) {
6042 Check(AllocArgIndex !=
nullptr,
6043 "llvm.call.preallocated.alloc arg index must be a constant");
6044 auto AllocArgIndexInt = AllocArgIndex->getValue();
6045 Check(AllocArgIndexInt.sge(0) &&
6046 AllocArgIndexInt.slt(NumArgs->getValue()),
6047 "llvm.call.preallocated.alloc arg index must be between 0 and "
6049 "llvm.call.preallocated.setup's argument count");
6050 }
else if (IID == Intrinsic::call_preallocated_teardown) {
6053 Check(!FoundCall,
"Can have at most one call corresponding to a "
6054 "llvm.call.preallocated.setup");
6056 size_t NumPreallocatedArgs = 0;
6057 for (
unsigned i = 0; i < UseCall->arg_size(); i++) {
6058 if (UseCall->paramHasAttr(i, Attribute::Preallocated)) {
6059 ++NumPreallocatedArgs;
6062 Check(NumPreallocatedArgs != 0,
6063 "cannot use preallocated intrinsics on a call without "
6064 "preallocated arguments");
6065 Check(NumArgs->equalsInt(NumPreallocatedArgs),
6066 "llvm.call.preallocated.setup arg size must be equal to number "
6067 "of preallocated arguments "
6077 auto PreallocatedBundle =
6079 Check(PreallocatedBundle,
6080 "Use of llvm.call.preallocated.setup outside intrinsics "
6081 "must be in \"preallocated\" operand bundle");
6082 Check(PreallocatedBundle->Inputs.front().get() == &
Call,
6083 "preallocated bundle must have token from corresponding "
6084 "llvm.call.preallocated.setup");
6089 case Intrinsic::call_preallocated_arg: {
6092 Token->getIntrinsicID() == Intrinsic::call_preallocated_setup,
6093 "llvm.call.preallocated.arg token argument must be a "
6094 "llvm.call.preallocated.setup");
6096 "llvm.call.preallocated.arg must be called with a \"preallocated\" "
6097 "call site attribute");
6100 case Intrinsic::call_preallocated_teardown: {
6103 Token->getIntrinsicID() == Intrinsic::call_preallocated_setup,
6104 "llvm.call.preallocated.teardown token argument must be a "
6105 "llvm.call.preallocated.setup");
6108 case Intrinsic::gcroot:
6109 case Intrinsic::gcwrite:
6110 case Intrinsic::gcread:
6111 if (
ID == Intrinsic::gcroot) {
6114 Check(AI,
"llvm.gcroot parameter #1 must be an alloca.",
Call);
6116 "llvm.gcroot parameter #2 must be a constant.",
Call);
6119 "llvm.gcroot parameter #1 must either be a pointer alloca, "
6120 "or argument #2 must be a non-null constant.",
6126 "Enclosing function does not use GC.",
Call);
6128 case Intrinsic::init_trampoline:
6130 "llvm.init_trampoline parameter #2 must resolve to a function.",
6133 case Intrinsic::prefetch:
6135 "rw argument to llvm.prefetch must be 0-1",
Call);
6137 "locality argument to llvm.prefetch must be 0-3",
Call);
6139 "cache type argument to llvm.prefetch must be 0-1",
Call);
6141 case Intrinsic::reloc_none: {
6144 "llvm.reloc.none argument must be a metadata string", &
Call);
6147 case Intrinsic::stackprotector:
6149 "llvm.stackprotector parameter #2 must resolve to an alloca.",
Call);
6151 case Intrinsic::localescape: {
6155 Check(!SawFrameEscape,
"multiple calls to llvm.localescape in one function",
6162 "llvm.localescape only accepts static allocas",
Call);
6165 SawFrameEscape =
true;
6168 case Intrinsic::localrecover: {
6172 "llvm.localrecover first "
6173 "argument must be function defined in this module",
6176 auto &
Entry = FrameEscapeInfo[Fn];
6177 Entry.second = unsigned(
6178 std::max(uint64_t(
Entry.second), IdxArg->getLimitedValue(~0U) + 1));
6182 case Intrinsic::experimental_gc_statepoint:
6184 Check(!CI->isInlineAsm(),
6185 "gc.statepoint support for inline assembly unimplemented", CI);
6187 "Enclosing function does not use GC.",
Call);
6189 verifyStatepoint(
Call);
6191 case Intrinsic::experimental_gc_result: {
6193 "Enclosing function does not use GC.",
Call);
6201 Check(StatepointCall && StatepointCall->getIntrinsicID() ==
6202 Intrinsic::experimental_gc_statepoint,
6203 "gc.result operand #1 must be from a statepoint",
Call,
6207 auto *TargetFuncType =
6210 "gc.result result type does not match wrapped callee",
Call);
6213 case Intrinsic::experimental_gc_relocate: {
6217 "gc.relocate must return a pointer or a vector of pointers",
Call);
6222 if (LandingPadInst *LandingPad =
6226 LandingPad->getParent()->getUniquePredecessor();
6230 Check(InvokeBB,
"safepoints should have unique landingpads",
6231 LandingPad->getParent());
6235 "gc relocate should be linked to a statepoint", InvokeBB);
6242 "gc relocate is incorrectly tied to the statepoint",
Call, Token);
6251 "gc.relocate operand #2 must be integer offset",
Call);
6255 "gc.relocate operand #3 must be integer offset",
Call);
6265 Check(BaseIndex < Opt->Inputs.size(),
6266 "gc.relocate: statepoint base index out of bounds",
Call);
6267 Check(DerivedIndex < Opt->Inputs.size(),
6268 "gc.relocate: statepoint derived index out of bounds",
Call);
6281 "gc.relocate: relocated value must be a pointer",
Call);
6282 Check(DerivedType->isPtrOrPtrVectorTy(),
6283 "gc.relocate: relocated value must be a pointer",
Call);
6285 Check(ResultType->isVectorTy() == DerivedType->isVectorTy(),
6286 "gc.relocate: vector relocates to vector and pointer to pointer",
6289 ResultType->getPointerAddressSpace() ==
6290 DerivedType->getPointerAddressSpace(),
6291 "gc.relocate: relocating a pointer shouldn't change its address space",
6295 Check(GC,
"gc.relocate: calling function must have GCStrategy",
6298 auto isGCPtr = [&
GC](
Type *PTy) {
6299 return GC->isGCManagedPointer(PTy->getScalarType()).value_or(
true);
6301 Check(isGCPtr(ResultType),
"gc.relocate: must return gc pointer",
Call);
6303 "gc.relocate: relocated value must be a gc pointer",
Call);
6304 Check(isGCPtr(DerivedType),
6305 "gc.relocate: relocated value must be a gc pointer",
Call);
6309 case Intrinsic::experimental_patchpoint: {
6312 "patchpoint: invalid return type used with anyregcc",
Call);
6316 case Intrinsic::eh_exceptioncode:
6317 case Intrinsic::eh_exceptionpointer: {
6319 "eh.exceptionpointer argument must be a catchpad",
Call);
6322 case Intrinsic::get_active_lane_mask: {
6324 "get_active_lane_mask: must return a "
6328 Check(ElemTy->isIntegerTy(1),
6329 "get_active_lane_mask: element type is not "
6334 case Intrinsic::experimental_get_vector_length: {
6337 "get_vector_length: VF must be positive",
Call);
6340 case Intrinsic::masked_load: {
6346 Check(
Mask->getType()->isVectorTy(),
"masked_load: mask must be vector",
6349 "masked_load: pass through and return type must match",
Call);
6352 "masked_load: vector mask must be same length as return",
Call);
6355 case Intrinsic::masked_store: {
6358 Check(
Mask->getType()->isVectorTy(),
"masked_store: mask must be vector",
6362 "masked_store: vector mask must be same length as value",
Call);
6366 case Intrinsic::experimental_guard: {
6369 "experimental_guard must have exactly one "
6370 "\"deopt\" operand bundle");
6374 case Intrinsic::experimental_deoptimize: {
6378 "experimental_deoptimize must have exactly one "
6379 "\"deopt\" operand bundle");
6381 "experimental_deoptimize return type must match caller return type");
6386 "calls to experimental_deoptimize must be followed by a return");
6390 "calls to experimental_deoptimize must be followed by a return "
6391 "of the value computed by experimental_deoptimize");
6396 case Intrinsic::vastart: {
6398 "va_start called in a non-varargs function");
6401 case Intrinsic::get_dynamic_area_offset: {
6403 Check(IntTy &&
DL.getPointerSizeInBits(
DL.getAllocaAddrSpace()) ==
6404 IntTy->getBitWidth(),
6405 "get_dynamic_area_offset result type must be scalar integer matching "
6406 "alloca address space width",
6410 case Intrinsic::vector_reduce_and:
6411 case Intrinsic::vector_reduce_or:
6412 case Intrinsic::vector_reduce_xor:
6413 case Intrinsic::vector_reduce_add:
6414 case Intrinsic::vector_reduce_mul:
6415 case Intrinsic::vector_reduce_smax:
6416 case Intrinsic::vector_reduce_smin:
6417 case Intrinsic::vector_reduce_umax:
6418 case Intrinsic::vector_reduce_umin: {
6421 "Intrinsic has incorrect argument type!");
6424 case Intrinsic::vector_reduce_fmax:
6425 case Intrinsic::vector_reduce_fmin: {
6428 "Intrinsic has incorrect argument type!");
6431 case Intrinsic::vector_reduce_fadd:
6432 case Intrinsic::vector_reduce_fmul: {
6437 "Intrinsic has incorrect argument type!");
6440 case Intrinsic::smul_fix:
6441 case Intrinsic::smul_fix_sat:
6442 case Intrinsic::umul_fix:
6443 case Intrinsic::umul_fix_sat:
6444 case Intrinsic::sdiv_fix:
6445 case Intrinsic::sdiv_fix_sat:
6446 case Intrinsic::udiv_fix:
6447 case Intrinsic::udiv_fix_sat: {
6451 "first operand of [us][mul|div]_fix[_sat] must be an int type or "
6454 "second operand of [us][mul|div]_fix[_sat] must be an int type or "
6458 Check(Op3->getType()->isIntegerTy(),
6459 "third operand of [us][mul|div]_fix[_sat] must be an int type");
6460 Check(Op3->getBitWidth() <= 32,
6461 "third operand of [us][mul|div]_fix[_sat] must fit within 32 bits");
6463 if (
ID == Intrinsic::smul_fix ||
ID == Intrinsic::smul_fix_sat ||
6464 ID == Intrinsic::sdiv_fix ||
ID == Intrinsic::sdiv_fix_sat) {
6466 "the scale of s[mul|div]_fix[_sat] must be less than the width of "
6470 "the scale of u[mul|div]_fix[_sat] must be less than or equal "
6471 "to the width of the operands");
6475 case Intrinsic::lrint:
6476 case Intrinsic::llrint:
6477 case Intrinsic::lround:
6478 case Intrinsic::llround: {
6484 ExpectedName +
": argument must be floating-point or vector "
6485 "of floating-points, and result must be integer or "
6486 "vector of integers",
6489 ExpectedName +
": argument and result disagree on vector use", &
Call);
6491 Check(VTy->getElementCount() == RTy->getElementCount(),
6492 ExpectedName +
": argument must be same length as result", &
Call);
6496 case Intrinsic::bswap: {
6499 Check(
Size % 16 == 0,
"bswap must be an even number of bytes", &
Call);
6502 case Intrinsic::invariant_start: {
6504 Check(InvariantSize &&
6506 "invariant_start parameter must be -1, 0 or a positive number",
6510 case Intrinsic::matrix_multiply:
6511 case Intrinsic::matrix_transpose:
6512 case Intrinsic::matrix_column_major_load:
6513 case Intrinsic::matrix_column_major_store: {
6515 ConstantInt *Stride =
nullptr;
6516 ConstantInt *NumRows;
6517 ConstantInt *NumColumns;
6519 Type *Op0ElemTy =
nullptr;
6520 Type *Op1ElemTy =
nullptr;
6522 case Intrinsic::matrix_multiply: {
6527 ->getNumElements() ==
6529 "First argument of a matrix operation does not match specified "
6532 ->getNumElements() ==
6534 "Second argument of a matrix operation does not match specified "
6544 case Intrinsic::matrix_transpose:
6551 case Intrinsic::matrix_column_major_load: {
6558 case Intrinsic::matrix_column_major_store: {
6571 Check(ResultTy->getElementType()->isIntegerTy() ||
6572 ResultTy->getElementType()->isFloatingPointTy(),
6573 "Result type must be an integer or floating-point type!", IF);
6576 Check(ResultTy->getElementType() == Op0ElemTy,
6577 "Vector element type mismatch of the result and first operand "
6582 Check(ResultTy->getElementType() == Op1ElemTy,
6583 "Vector element type mismatch of the result and second operand "
6589 "Result of a matrix operation does not fit in the returned vector!");
6595 "Stride must be greater or equal than the number of rows!", IF);
6600 case Intrinsic::vector_splice_left:
6601 case Intrinsic::vector_splice_right: {
6604 uint64_t KnownMinNumElements = VecTy->getElementCount().getKnownMinValue();
6608 if (
Attrs.hasFnAttr(Attribute::VScaleRange))
6609 KnownMinNumElements *=
Attrs.getFnAttrs().getVScaleRangeMin();
6611 if (
ID == Intrinsic::vector_splice_left)
6612 Check(Idx < KnownMinNumElements,
6613 "The splice index exceeds the range [0, VL-1] where VL is the "
6614 "known minimum number of elements in the vector. For scalable "
6615 "vectors the minimum number of elements is determined from "
6619 Check(Idx <= KnownMinNumElements,
6620 "The splice index exceeds the range [0, VL] where VL is the "
6621 "known minimum number of elements in the vector. For scalable "
6622 "vectors the minimum number of elements is determined from "
6627 case Intrinsic::stepvector: {
6629 Check(VecTy && VecTy->getScalarType()->isIntegerTy() &&
6630 VecTy->getScalarSizeInBits() >= 8,
6631 "stepvector only supported for vectors of integers "
6632 "with a bitwidth of at least 8.",
6636 case Intrinsic::experimental_vector_match: {
6645 Check(Op1Ty && Op2Ty && MaskTy,
"Operands must be vectors.", &
Call);
6647 "Second operand must be a fixed length vector.", &
Call);
6648 Check(Op1Ty->getElementType()->isIntegerTy(),
6649 "First operand must be a vector of integers.", &
Call);
6650 Check(Op1Ty->getElementType() == Op2Ty->getElementType(),
6651 "First two operands must have the same element type.", &
Call);
6652 Check(Op1Ty->getElementCount() == MaskTy->getElementCount(),
6653 "First operand and mask must have the same number of elements.",
6655 Check(MaskTy->getElementType()->isIntegerTy(1),
6656 "Mask must be a vector of i1's.", &
Call);
6661 case Intrinsic::vector_insert: {
6670 ElementCount VecEC = VecTy->getElementCount();
6671 ElementCount SubVecEC = SubVecTy->getElementCount();
6672 Check(VecTy->getElementType() == SubVecTy->getElementType(),
6673 "vector_insert parameters must have the same element "
6677 "vector_insert index must be a constant multiple of "
6678 "the subvector's known minimum vector length.");
6686 "subvector operand of vector_insert would overrun the "
6687 "vector being inserted into.");
6691 case Intrinsic::vector_extract: {
6699 ElementCount VecEC = VecTy->getElementCount();
6700 ElementCount ResultEC = ResultTy->getElementCount();
6702 Check(ResultTy->getElementType() == VecTy->getElementType(),
6703 "vector_extract result must have the same element "
6704 "type as the input vector.",
6707 "vector_extract index must be a constant multiple of "
6708 "the result type's known minimum vector length.");
6716 "vector_extract would overrun.");
6720 case Intrinsic::vector_partial_reduce_fadd:
6721 case Intrinsic::vector_partial_reduce_add: {
6725 unsigned VecWidth = VecTy->getElementCount().getKnownMinValue();
6726 unsigned AccWidth = AccTy->getElementCount().getKnownMinValue();
6728 Check((VecWidth % AccWidth) == 0,
6729 "Invalid vector widths for partial "
6730 "reduction. The width of the input vector "
6731 "must be a positive integer multiple of "
6732 "the width of the accumulator vector.");
6735 case Intrinsic::experimental_noalias_scope_decl: {
6739 case Intrinsic::preserve_array_access_index:
6740 case Intrinsic::preserve_struct_access_index:
6741 case Intrinsic::aarch64_ldaxr:
6742 case Intrinsic::aarch64_ldxr:
6743 case Intrinsic::arm_ldaex:
6744 case Intrinsic::arm_ldrex: {
6746 Check(ElemTy,
"Intrinsic requires elementtype attribute on first argument.",
6750 case Intrinsic::aarch64_stlxr:
6751 case Intrinsic::aarch64_stxr:
6752 case Intrinsic::arm_stlex:
6753 case Intrinsic::arm_strex: {
6756 "Intrinsic requires elementtype attribute on second argument.",
6760 case Intrinsic::aarch64_prefetch: {
6762 "write argument to llvm.aarch64.prefetch must be 0 or 1",
Call);
6764 "target argument to llvm.aarch64.prefetch must be 0-3",
Call);
6766 "stream argument to llvm.aarch64.prefetch must be 0 or 1",
Call);
6768 "isdata argument to llvm.aarch64.prefetch must be 0 or 1",
Call);
6771 case Intrinsic::callbr_landingpad: {
6773 Check(CBR,
"intrinstic requires callbr operand", &
Call);
6780 CheckFailed(
"Intrinsic in block must have 1 unique predecessor", &
Call);
6784 CheckFailed(
"Intrinsic must have corresponding callbr in predecessor",
6789 "Intrinsic's corresponding callbr must have intrinsic's parent basic "
6790 "block in indirect destination list",
6793 Check(&
First == &
Call,
"No other instructions may proceed intrinsic",
6797 case Intrinsic::amdgcn_cs_chain: {
6800 case CallingConv::AMDGPU_CS:
6801 case CallingConv::AMDGPU_CS_Chain:
6802 case CallingConv::AMDGPU_CS_ChainPreserve:
6803 case CallingConv::AMDGPU_ES:
6804 case CallingConv::AMDGPU_GS:
6805 case CallingConv::AMDGPU_HS:
6806 case CallingConv::AMDGPU_LS:
6807 case CallingConv::AMDGPU_VS:
6810 CheckFailed(
"Intrinsic cannot be called from functions with this "
6811 "calling convention",
6817 "SGPR arguments must have the `inreg` attribute", &
Call);
6819 "VGPR arguments must not have the `inreg` attribute", &
Call);
6824 Intrinsic::amdgcn_unreachable;
6826 "llvm.amdgcn.cs.chain must be followed by unreachable", &
Call);
6829 case Intrinsic::amdgcn_init_exec_from_input: {
6832 "only inreg arguments to the parent function are valid as inputs to "
6837 case Intrinsic::amdgcn_set_inactive_chain_arg: {
6840 case CallingConv::AMDGPU_CS_Chain:
6841 case CallingConv::AMDGPU_CS_ChainPreserve:
6844 CheckFailed(
"Intrinsic can only be used from functions with the "
6845 "amdgpu_cs_chain or amdgpu_cs_chain_preserve "
6846 "calling conventions",
6851 unsigned InactiveIdx = 1;
6853 "Value for inactive lanes must not have the `inreg` attribute",
6856 "Value for inactive lanes must be a function argument", &
Call);
6858 "Value for inactive lanes must be a VGPR function argument", &
Call);
6861 case Intrinsic::amdgcn_call_whole_wave: {
6863 Check(
F,
"Indirect whole wave calls are not allowed", &
Call);
6865 CallingConv::ID CC =
F->getCallingConv();
6866 Check(CC == CallingConv::AMDGPU_Gfx_WholeWave,
6867 "Callee must have the amdgpu_gfx_whole_wave calling convention",
6870 Check(!
F->isVarArg(),
"Variadic whole wave calls are not allowed", &
Call);
6873 "Call argument count must match callee argument count", &
Call);
6877 Check(
F->arg_begin()->getType()->isIntegerTy(1),
6878 "Callee must have i1 as its first argument", &
Call);
6879 for (
auto [CallArg, FuncArg] :
6881 Check(CallArg->getType() == FuncArg.getType(),
6882 "Argument types must match", &
Call);
6886 FuncArg.hasInRegAttr(),
6887 "Argument inreg attributes must match", &
Call);
6891 case Intrinsic::amdgcn_s_prefetch_data: {
6895 "llvm.amdgcn.s.prefetch.data only supports global or constant memory");
6898 case Intrinsic::amdgcn_mfma_scale_f32_16x16x128_f8f6f4:
6899 case Intrinsic::amdgcn_mfma_scale_f32_32x32x64_f8f6f4: {
6905 Check(CBSZ <= 4,
"invalid value for cbsz format",
Call,
6907 Check(BLGP <= 4,
"invalid value for blgp format",
Call,
6911 auto getFormatNumRegs = [](
unsigned FormatVal) {
6912 switch (FormatVal) {
6926 auto isValidSrcASrcBVector = [](FixedVectorType *Ty) {
6927 if (!Ty || !Ty->getElementType()->
isIntegerTy(32))
6929 unsigned NumElts = Ty->getNumElements();
6930 return NumElts == 4 || NumElts == 6 || NumElts == 8;
6935 Check(isValidSrcASrcBVector(Src0Ty),
6936 "operand 0 must be 4, 6 or 8 element i32 vector", &
Call, Src0);
6937 Check(isValidSrcASrcBVector(Src1Ty),
6938 "operand 1 must be 4, 6 or 8 element i32 vector", &
Call, Src1);
6941 Check(Src0Ty->getNumElements() >= getFormatNumRegs(CBSZ),
6943 Check(Src1Ty->getNumElements() >= getFormatNumRegs(BLGP),
6947 case Intrinsic::amdgcn_wmma_f32_16x16x128_f8f6f4:
6948 case Intrinsic::amdgcn_wmma_scale_f32_16x16x128_f8f6f4:
6949 case Intrinsic::amdgcn_wmma_scale16_f32_16x16x128_f8f6f4: {
6955 Check(FmtA <= 4,
"invalid value for matrix format",
Call,
6957 Check(FmtB <= 4,
"invalid value for matrix format",
Call,
6961 auto getFormatNumRegs = [](
unsigned FormatVal) {
6962 switch (FormatVal) {
6976 auto isValidSrcASrcBVector = [](FixedVectorType *Ty) {
6977 if (!Ty || !Ty->getElementType()->
isIntegerTy(32))
6979 unsigned NumElts = Ty->getNumElements();
6980 return NumElts == 16 || NumElts == 12 || NumElts == 8;
6985 Check(isValidSrcASrcBVector(Src0Ty),
6986 "operand 1 must be 8, 12 or 16 element i32 vector", &
Call, Src0);
6987 Check(isValidSrcASrcBVector(Src1Ty),
6988 "operand 3 must be 8, 12 or 16 element i32 vector", &
Call, Src1);
6991 Check(Src0Ty->getNumElements() >= getFormatNumRegs(FmtA),
6993 Check(Src1Ty->getNumElements() >= getFormatNumRegs(FmtB),
6997 case Intrinsic::amdgcn_cooperative_atomic_load_32x4B:
6998 case Intrinsic::amdgcn_cooperative_atomic_load_16x8B:
6999 case Intrinsic::amdgcn_cooperative_atomic_load_8x16B:
7000 case Intrinsic::amdgcn_cooperative_atomic_store_32x4B:
7001 case Intrinsic::amdgcn_cooperative_atomic_store_16x8B:
7002 case Intrinsic::amdgcn_cooperative_atomic_store_8x16B: {
7007 "cooperative atomic intrinsics require a generic or global pointer",
7014 "cooperative atomic intrinsics require that the last argument is a "
7019 case Intrinsic::nvvm_setmaxnreg_inc_sync_aligned_u32:
7020 case Intrinsic::nvvm_setmaxnreg_dec_sync_aligned_u32: {
7023 Check(RegCount % 8 == 0,
7024 "reg_count argument to nvvm.setmaxnreg must be in multiples of 8");
7027 case Intrinsic::experimental_convergence_entry:
7028 case Intrinsic::experimental_convergence_anchor:
7030 case Intrinsic::experimental_convergence_loop:
7032 case Intrinsic::ptrmask: {
7036 "llvm.ptrmask intrinsic first argument must be pointer or vector "
7041 "llvm.ptrmask intrinsic arguments must be both scalars or both vectors",
7046 "llvm.ptrmask intrinsic arguments must have the same number of "
7050 "llvm.ptrmask intrinsic second argument bitwidth must match "
7051 "pointer index type size of first argument",
7055 case Intrinsic::thread_pointer: {
7057 DL.getDefaultGlobalsAddressSpace(),
7058 "llvm.thread.pointer intrinsic return type must be for the globals "
7063 case Intrinsic::threadlocal_address: {
7066 "llvm.threadlocal.address first argument must be a GlobalValue");
7068 "llvm.threadlocal.address operand isThreadLocal() must be true");
7071 case Intrinsic::lifetime_start:
7072 case Intrinsic::lifetime_end: {
7075 "llvm.lifetime.start/end can only be used on alloca or poison",
7084 if (
F->hasPersonalityFn() &&
7088 if (BlockEHFuncletColors.
empty())
7092 bool InEHFunclet =
false;
7096 for (BasicBlock *ColorFirstBB : CV)
7097 if (
auto It = ColorFirstBB->getFirstNonPHIIt();
7098 It != ColorFirstBB->end())
7103 bool HasToken =
false;
7110 Check(HasToken,
"Missing funclet token on intrinsic call", &
Call);
7134void Verifier::visit(DbgLabelRecord &DLR) {
7136 "invalid #dbg_label intrinsic variable", &DLR, DLR.
getRawLabel());
7149 CheckDI(Loc,
"#dbg_label record requires a !dbg attachment", &DLR, BB,
F);
7153 if (!LabelSP || !LocSP)
7157 "mismatched subprogram between #dbg_label label and !dbg attachment",
7158 &DLR, BB,
F, Label,
Label->getScope()->getSubprogram(), Loc,
7159 Loc->getScope()->getSubprogram());
7162void Verifier::visit(DbgVariableRecord &DVR) {
7166 CheckDI(DVR.
getType() == DbgVariableRecord::LocationType::Value ||
7167 DVR.
getType() == DbgVariableRecord::LocationType::Declare ||
7168 DVR.
getType() == DbgVariableRecord::LocationType::DeclareValue ||
7169 DVR.
getType() == DbgVariableRecord::LocationType::Assign,
7170 "invalid #dbg record type", &DVR, DVR.
getType(), BB,
F);
7178 "invalid #dbg record address/value", &DVR, MD, BB,
F);
7180 visitValueAsMetadata(*VAM,
F);
7183 Type *Ty = VAM->getValue()->getType();
7185 "location of #dbg_declare must be a pointer or int", &DVR, MD, BB,
7189 visitDIArgList(*AL,
F);
7203 "invalid #dbg_assign DIAssignID", &DVR, DVR.
getRawAssignID(), BB,
7206 AreDebugLocsAllowed::No);
7215 "invalid #dbg_assign address", &DVR, DVR.
getRawAddress(), BB,
F);
7217 visitValueAsMetadata(*VAM,
F);
7220 "invalid #dbg_assign address expression", &DVR,
7227 "inst not in same function as #dbg_assign",
I, &DVR, BB,
F);
7237 &DVR, DLNode, BB,
F);
7243 if (!VarSP || !LocSP)
7247 "mismatched subprogram between #dbg record variable and DILocation",
7249 Loc->getScope()->getSubprogram(), BB,
F);
7254void Verifier::visitVPIntrinsic(VPIntrinsic &VPI) {
7258 Check(RetTy->getElementCount() == ValTy->getElementCount(),
7259 "VP cast intrinsic first argument and result vector lengths must be "
7263 switch (VPCast->getIntrinsicID()) {
7266 case Intrinsic::vp_trunc:
7268 "llvm.vp.trunc intrinsic first argument and result element type "
7272 "llvm.vp.trunc intrinsic the bit size of first argument must be "
7273 "larger than the bit size of the return type",
7276 case Intrinsic::vp_zext:
7277 case Intrinsic::vp_sext:
7279 "llvm.vp.zext or llvm.vp.sext intrinsic first argument and result "
7280 "element type must be integer",
7283 "llvm.vp.zext or llvm.vp.sext intrinsic the bit size of first "
7284 "argument must be smaller than the bit size of the return type",
7287 case Intrinsic::vp_fptoui:
7288 case Intrinsic::vp_fptosi:
7289 case Intrinsic::vp_lrint:
7290 case Intrinsic::vp_llrint:
7293 "llvm.vp.fptoui, llvm.vp.fptosi, llvm.vp.lrint or llvm.vp.llrint" "intrinsic first argument element "
7294 "type must be floating-point and result element type must be integer",
7297 case Intrinsic::vp_uitofp:
7298 case Intrinsic::vp_sitofp:
7301 "llvm.vp.uitofp or llvm.vp.sitofp intrinsic first argument element "
7302 "type must be integer and result element type must be floating-point",
7305 case Intrinsic::vp_fptrunc:
7307 "llvm.vp.fptrunc intrinsic first argument and result element type "
7308 "must be floating-point",
7311 "llvm.vp.fptrunc intrinsic the bit size of first argument must be "
7312 "larger than the bit size of the return type",
7315 case Intrinsic::vp_fpext:
7317 "llvm.vp.fpext intrinsic first argument and result element type "
7318 "must be floating-point",
7321 "llvm.vp.fpext intrinsic the bit size of first argument must be "
7322 "smaller than the bit size of the return type",
7325 case Intrinsic::vp_ptrtoint:
7327 "llvm.vp.ptrtoint intrinsic first argument element type must be "
7328 "pointer and result element type must be integer",
7331 case Intrinsic::vp_inttoptr:
7333 "llvm.vp.inttoptr intrinsic first argument element type must be "
7334 "integer and result element type must be pointer",
7341 case Intrinsic::vp_fcmp: {
7344 "invalid predicate for VP FP comparison intrinsic", &VPI);
7347 case Intrinsic::vp_icmp: {
7350 "invalid predicate for VP integer comparison intrinsic", &VPI);
7353 case Intrinsic::vp_is_fpclass: {
7356 "unsupported bits for llvm.vp.is.fpclass test mask");
7359 case Intrinsic::experimental_vp_splice: {
7362 int64_t KnownMinNumElements = VecTy->getElementCount().getKnownMinValue();
7364 AttributeList
Attrs = VPI.
getParent()->getParent()->getAttributes();
7365 if (
Attrs.hasFnAttr(Attribute::VScaleRange))
7366 KnownMinNumElements *=
Attrs.getFnAttrs().getVScaleRangeMin();
7368 Check((Idx < 0 && std::abs(Idx) <= KnownMinNumElements) ||
7369 (Idx >= 0 && Idx < KnownMinNumElements),
7370 "The splice index exceeds the range [-VL, VL-1] where VL is the "
7371 "known minimum number of elements in the vector. For scalable "
7372 "vectors the minimum number of elements is determined from "
7380void Verifier::visitConstrainedFPIntrinsic(ConstrainedFPIntrinsic &FPI) {
7382 bool HasRoundingMD =
7386 NumOperands += (1 + HasRoundingMD);
7392 "invalid arguments for constrained FP intrinsic", &FPI);
7395 case Intrinsic::experimental_constrained_lrint:
7396 case Intrinsic::experimental_constrained_llrint: {
7400 "Intrinsic does not support vectors", &FPI);
7404 case Intrinsic::experimental_constrained_lround:
7405 case Intrinsic::experimental_constrained_llround: {
7409 "Intrinsic does not support vectors", &FPI);
7413 case Intrinsic::experimental_constrained_fcmp:
7414 case Intrinsic::experimental_constrained_fcmps: {
7417 "invalid predicate for constrained FP comparison intrinsic", &FPI);
7421 case Intrinsic::experimental_constrained_fptosi:
7422 case Intrinsic::experimental_constrained_fptoui: {
7426 "Intrinsic first argument must be floating point", &FPI);
7433 "Intrinsic first argument and result disagree on vector use", &FPI);
7435 "Intrinsic result must be an integer", &FPI);
7438 "Intrinsic first argument and result vector lengths must be equal",
7444 case Intrinsic::experimental_constrained_sitofp:
7445 case Intrinsic::experimental_constrained_uitofp: {
7449 "Intrinsic first argument must be integer", &FPI);
7456 "Intrinsic first argument and result disagree on vector use", &FPI);
7458 "Intrinsic result must be a floating point", &FPI);
7461 "Intrinsic first argument and result vector lengths must be equal",
7467 case Intrinsic::experimental_constrained_fptrunc:
7468 case Intrinsic::experimental_constrained_fpext: {
7474 "Intrinsic first argument must be FP or FP vector", &FPI);
7476 "Intrinsic result must be FP or FP vector", &FPI);
7478 "Intrinsic first argument and result disagree on vector use", &FPI);
7482 "Intrinsic first argument and result vector lengths must be equal",
7485 if (FPI.
getIntrinsicID() == Intrinsic::experimental_constrained_fptrunc) {
7487 "Intrinsic first argument's type must be larger than result type",
7491 "Intrinsic first argument's type must be smaller than result type",
7507 "invalid exception behavior argument", &FPI);
7508 if (HasRoundingMD) {
7514void Verifier::verifyFragmentExpression(
const DbgVariableRecord &DVR) {
7519 if (!V || !
E || !
E->isValid())
7523 auto Fragment =
E->getFragmentInfo();
7533 if (
V->isArtificial())
7536 verifyFragmentExpression(*V, *Fragment, &DVR);
7539template <
typename ValueOrMetadata>
7540void Verifier::verifyFragmentExpression(
const DIVariable &V,
7542 ValueOrMetadata *
Desc) {
7545 auto VarSize =
V.getSizeInBits();
7551 CheckDI(FragSize + FragOffset <= *VarSize,
7552 "fragment is larger than or outside of variable",
Desc, &V);
7553 CheckDI(FragSize != *VarSize,
"fragment covers entire variable",
Desc, &V);
7556void Verifier::verifyFnArgs(
const DbgVariableRecord &DVR) {
7568 CheckDI(Var,
"#dbg record without variable");
7570 unsigned ArgNo = Var->
getArg();
7576 if (DebugFnArgs.
size() < ArgNo)
7577 DebugFnArgs.
resize(ArgNo,
nullptr);
7579 auto *Prev = DebugFnArgs[ArgNo - 1];
7580 DebugFnArgs[ArgNo - 1] = Var;
7581 CheckDI(!Prev || (Prev == Var),
"conflicting debug info for argument", &DVR,
7585void Verifier::verifyNotEntryValue(
const DbgVariableRecord &DVR) {
7589 if (!
E || !
E->isValid())
7599 ArgLoc && ArgLoc->hasAttribute(Attribute::SwiftAsync))
7604 "Entry values are only allowed in MIR unless they target a "
7605 "swiftasync Argument",
7609void Verifier::verifyCompileUnits() {
7613 if (
M.getContext().isODRUniquingDebugTypes())
7615 auto *CUs =
M.getNamedMetadata(
"llvm.dbg.cu");
7616 SmallPtrSet<const Metadata *, 2> Listed;
7619 for (
const auto *CU : CUVisited)
7620 CheckDI(Listed.
count(CU),
"DICompileUnit not listed in llvm.dbg.cu", CU);
7624void Verifier::verifyDeoptimizeCallingConvs() {
7625 if (DeoptimizeDeclarations.
empty())
7629 for (
const auto *
F :
ArrayRef(DeoptimizeDeclarations).slice(1)) {
7630 Check(
First->getCallingConv() ==
F->getCallingConv(),
7631 "All llvm.experimental.deoptimize declarations must have the same "
7632 "calling convention",
7637void Verifier::verifyAttachedCallBundle(
const CallBase &
Call,
7638 const OperandBundleUse &BU) {
7641 Check((FTy->getReturnType()->isPointerTy() ||
7643 "a call with operand bundle \"clang.arc.attachedcall\" must call a "
7644 "function returning a pointer or a non-returning function that has a "
7649 "operand bundle \"clang.arc.attachedcall\" requires one function as "
7657 Check((IID == Intrinsic::objc_retainAutoreleasedReturnValue ||
7658 IID == Intrinsic::objc_claimAutoreleasedReturnValue ||
7659 IID == Intrinsic::objc_unsafeClaimAutoreleasedReturnValue),
7660 "invalid function argument",
Call);
7662 StringRef FnName = Fn->
getName();
7663 Check((FnName ==
"objc_retainAutoreleasedReturnValue" ||
7664 FnName ==
"objc_claimAutoreleasedReturnValue" ||
7665 FnName ==
"objc_unsafeClaimAutoreleasedReturnValue"),
7666 "invalid function argument",
Call);
7670void Verifier::verifyNoAliasScopeDecl() {
7671 if (NoAliasScopeDecls.
empty())
7675 for (
auto *
II : NoAliasScopeDecls) {
7676 assert(
II->getIntrinsicID() == Intrinsic::experimental_noalias_scope_decl &&
7677 "Not a llvm.experimental.noalias.scope.decl ?");
7680 Check(ScopeListMV !=
nullptr,
7681 "llvm.experimental.noalias.scope.decl must have a MetadataAsValue "
7686 Check(ScopeListMD !=
nullptr,
"!id.scope.list must point to an MDNode",
II);
7687 Check(ScopeListMD->getNumOperands() == 1,
7688 "!id.scope.list must point to a list with a single scope",
II);
7689 visitAliasScopeListMetadata(ScopeListMD);
7699 auto GetScope = [](IntrinsicInst *
II) {
7702 return &
cast<MDNode>(ScopeListMV->getMetadata())->getOperand(0);
7707 auto Compare = [GetScope](IntrinsicInst *Lhs, IntrinsicInst *Rhs) {
7708 return GetScope(Lhs) < GetScope(Rhs);
7715 auto ItCurrent = NoAliasScopeDecls.begin();
7716 while (ItCurrent != NoAliasScopeDecls.end()) {
7717 auto CurScope = GetScope(*ItCurrent);
7718 auto ItNext = ItCurrent;
7721 }
while (ItNext != NoAliasScopeDecls.end() &&
7722 GetScope(*ItNext) == CurScope);
7727 if (ItNext - ItCurrent < 32)
7731 Check(!DT.dominates(
I, J),
7732 "llvm.experimental.noalias.scope.decl dominates another one "
7733 "with the same scope",
7747 Verifier V(OS,
true, *f.getParent());
7751 return !V.verify(
F);
7755 bool *BrokenDebugInfo) {
7757 Verifier V(OS, !BrokenDebugInfo, M);
7759 bool Broken =
false;
7761 Broken |= !V.verify(
F);
7763 Broken |= !V.verify();
7764 if (BrokenDebugInfo)
7765 *BrokenDebugInfo = V.hasBrokenDebugInfo();
7776 std::unique_ptr<Verifier> V;
7777 bool FatalErrors =
true;
7782 explicit VerifierLegacyPass(
bool FatalErrors)
7784 FatalErrors(FatalErrors) {
7788 bool doInitialization(
Module &M)
override {
7789 V = std::make_unique<Verifier>(
7795 if (!
V->verify(
F) && FatalErrors) {
7796 errs() <<
"in function " <<
F.getName() <<
'\n';
7802 bool doFinalization(
Module &M)
override {
7803 bool HasErrors =
false;
7804 for (Function &
F : M)
7805 if (
F.isDeclaration())
7806 HasErrors |= !
V->verify(
F);
7808 HasErrors |= !
V->verify();
7809 if (FatalErrors && (HasErrors ||
V->hasBrokenDebugInfo()))
7814 void getAnalysisUsage(AnalysisUsage &AU)
const override {
7822template <
typename... Tys>
void TBAAVerifier::CheckFailed(Tys &&... Args) {
7824 return Diagnostic->CheckFailed(
Args...);
7827#define CheckTBAA(C, ...) \
7830 CheckFailed(__VA_ARGS__); \
7838TBAAVerifier::TBAABaseNodeSummary
7842 CheckFailed(
"Base nodes must have at least two operands",
I, BaseNode);
7846 auto Itr = TBAABaseNodes.find(BaseNode);
7847 if (Itr != TBAABaseNodes.end())
7850 auto Result = verifyTBAABaseNodeImpl(
I, BaseNode, IsNewFormat);
7851 auto InsertResult = TBAABaseNodes.insert({BaseNode, Result});
7853 assert(InsertResult.second &&
"We just checked!");
7857TBAAVerifier::TBAABaseNodeSummary
7858TBAAVerifier::verifyTBAABaseNodeImpl(
const Instruction *
I,
7859 const MDNode *BaseNode,
bool IsNewFormat) {
7860 const TBAAVerifier::TBAABaseNodeSummary InvalidNode = {
true, ~0
u};
7864 return isValidScalarTBAANode(BaseNode)
7865 ? TBAAVerifier::TBAABaseNodeSummary({
false, 0})
7871 CheckFailed(
"Access tag nodes must have the number of operands that is a "
7872 "multiple of 3!", BaseNode);
7877 CheckFailed(
"Struct tag nodes must have an odd number of operands!",
7887 if (!TypeSizeNode) {
7888 CheckFailed(
"Type size nodes must be constants!",
I, BaseNode);
7895 CheckFailed(
"Struct tag nodes have a string as their first operand",
7902 std::optional<APInt> PrevOffset;
7907 unsigned FirstFieldOpNo = IsNewFormat ? 3 : 1;
7908 unsigned NumOpsPerField = IsNewFormat ? 3 : 2;
7909 for (
unsigned Idx = FirstFieldOpNo; Idx < BaseNode->
getNumOperands();
7910 Idx += NumOpsPerField) {
7911 const MDOperand &FieldTy = BaseNode->
getOperand(Idx);
7912 const MDOperand &FieldOffset = BaseNode->
getOperand(Idx + 1);
7914 CheckFailed(
"Incorrect field entry in struct type node!",
I, BaseNode);
7919 auto *OffsetEntryCI =
7921 if (!OffsetEntryCI) {
7922 CheckFailed(
"Offset entries must be constants!",
I, BaseNode);
7928 BitWidth = OffsetEntryCI->getBitWidth();
7930 if (OffsetEntryCI->getBitWidth() !=
BitWidth) {
7932 "Bitwidth between the offsets and struct type entries must match",
I,
7944 !PrevOffset || PrevOffset->ule(OffsetEntryCI->getValue());
7947 CheckFailed(
"Offsets must be increasing!",
I, BaseNode);
7951 PrevOffset = OffsetEntryCI->getValue();
7956 if (!MemberSizeNode) {
7957 CheckFailed(
"Member size entries must be constants!",
I, BaseNode);
7964 return Failed ? InvalidNode
7965 : TBAAVerifier::TBAABaseNodeSummary(
false,
BitWidth);
7987 return Parent && Visited.
insert(Parent).second &&
7991bool TBAAVerifier::isValidScalarTBAANode(
const MDNode *MD) {
7992 auto ResultIt = TBAAScalarNodes.find(MD);
7993 if (ResultIt != TBAAScalarNodes.end())
7994 return ResultIt->second;
7996 SmallPtrSet<const MDNode *, 4> Visited;
7998 auto InsertResult = TBAAScalarNodes.insert({MD,
Result});
8000 assert(InsertResult.second &&
"Just checked!");
8009MDNode *TBAAVerifier::getFieldNodeFromTBAABaseNode(
const Instruction *
I,
8010 const MDNode *BaseNode,
8021 unsigned FirstFieldOpNo = IsNewFormat ? 3 : 1;
8022 unsigned NumOpsPerField = IsNewFormat ? 3 : 2;
8023 for (
unsigned Idx = FirstFieldOpNo; Idx < BaseNode->
getNumOperands();
8024 Idx += NumOpsPerField) {
8025 auto *OffsetEntryCI =
8027 if (OffsetEntryCI->getValue().ugt(
Offset)) {
8028 if (Idx == FirstFieldOpNo) {
8029 CheckFailed(
"Could not find TBAA parent in struct type node",
I,
8034 unsigned PrevIdx = Idx - NumOpsPerField;
8035 auto *PrevOffsetEntryCI =
8037 Offset -= PrevOffsetEntryCI->getValue();
8045 Offset -= LastOffsetEntryCI->getValue();
8050 if (!
Type ||
Type->getNumOperands() < 3)
8066 "This instruction shall not have a TBAA access tag!",
I);
8068 bool IsStructPathTBAA =
8072 "Old-style TBAA is no longer allowed, use struct-path TBAA instead",
8082 "Access tag metadata must have either 4 or 5 operands",
I, MD);
8085 "Struct tag metadata must have either 3 or 4 operands",
I, MD);
8092 CheckTBAA(AccessSizeNode,
"Access size field must be a constant",
I, MD);
8096 unsigned ImmutabilityFlagOpNo = IsNewFormat ? 4 : 3;
8101 "Immutability tag on struct tag metadata must be a constant",
I,
8104 IsImmutableCI->isZero() || IsImmutableCI->isOne(),
8105 "Immutability part of the struct tag metadata must be either 0 or 1",
I,
8110 "Malformed struct tag metadata: base and access-type "
8111 "should be non-null and point to Metadata nodes",
8112 I, MD, BaseNode, AccessType);
8115 CheckTBAA(isValidScalarTBAANode(AccessType),
8116 "Access type node must be a valid scalar type",
I, MD,
8121 CheckTBAA(OffsetCI,
"Offset must be constant integer",
I, MD);
8124 bool SeenAccessTypeInPath =
false;
8130 getFieldNodeFromTBAABaseNode(
I, BaseNode,
Offset, IsNewFormat)) {
8131 if (!StructPath.
insert(BaseNode).second) {
8132 CheckFailed(
"Cycle detected in struct path",
I, MD);
8137 unsigned BaseNodeBitWidth;
8138 std::tie(
Invalid, BaseNodeBitWidth) =
8139 verifyTBAABaseNode(
I, BaseNode, IsNewFormat);
8146 SeenAccessTypeInPath |= BaseNode == AccessType;
8148 if (isValidScalarTBAANode(BaseNode) || BaseNode == AccessType)
8153 (BaseNodeBitWidth == 0 &&
Offset == 0) ||
8154 (IsNewFormat && BaseNodeBitWidth == ~0u),
8155 "Access bit-width not the same as description bit-width",
I, MD,
8156 BaseNodeBitWidth,
Offset.getBitWidth());
8158 if (IsNewFormat && SeenAccessTypeInPath)
8162 CheckTBAA(SeenAccessTypeInPath,
"Did not see access type in access path!",
I,
8167char VerifierLegacyPass::ID = 0;
8168INITIALIZE_PASS(VerifierLegacyPass,
"verify",
"Module Verifier",
false,
false)
8171 return new VerifierLegacyPass(FatalErrors);
8189 if (FatalErrors && (Res.IRBroken || Res.DebugInfoBroken))
8197 if (res.IRBroken && FatalErrors)
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
AMDGPU address space definition.
ArrayRef< TableEntry > TableRef
This file declares a class to represent arbitrary precision floating point values and provide a varie...
This file implements a class to represent arbitrary precision integral constant values and operations...
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
Atomic ordering constants.
This file contains the simple types necessary to represent the attributes associated with functions a...
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
Analysis containing CSE Info
This file contains the declarations for the subclasses of Constant, which represent the different fla...
This file declares the LLVM IR specialization of the GenericConvergenceVerifier template.
static DISubprogram * getSubprogram(bool IsDistinct, Ts &&...Args)
This file defines the DenseMap class.
This file contains constants used for implementing Dwarf debug support.
static bool runOnFunction(Function &F, bool PostInlining)
This file provides various utilities for inspecting and working with the control flow graph in LLVM I...
Module.h This file contains the declarations for the Module class.
This header defines various interfaces for pass management in LLVM.
This defines the Use class.
const size_t AbstractManglingParser< Derived, Alloc >::NumOps
Machine Check Debug Module
This file implements a map that provides insertion order iteration.
This file provides utility for Memory Model Relaxation Annotations (MMRAs).
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
uint64_t IntrinsicInst * II
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
This file contains the declarations for profiling metadata utility functions.
const SmallVectorImpl< MachineOperand > & Cond
static bool isValid(const char C)
Returns true if C is a valid mangled character: <0-9a-zA-Z_>.
static unsigned getNumElements(Type *Ty)
void visit(MachineFunction &MF, MachineBasicBlock &Start, std::function< void(MachineBasicBlock *)> op)
verify safepoint Safepoint IR Verifier
BaseType
A given derived pointer can have multiple base pointers through phi/selects.
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
static unsigned getBitWidth(Type *Ty, const DataLayout &DL)
Returns the bitwidth of the given scalar or pointer type.
static bool IsScalarTBAANodeImpl(const MDNode *MD, SmallPtrSetImpl< const MDNode * > &Visited)
static bool isType(const Metadata *MD)
static Instruction * getSuccPad(Instruction *Terminator)
static bool isMDTuple(const Metadata *MD)
static bool isNewFormatTBAATypeNode(llvm::MDNode *Type)
#define CheckDI(C,...)
We know that a debug info condition should be true, if not print an error message.
static void forEachUser(const Value *User, SmallPtrSet< const Value *, 32 > &Visited, llvm::function_ref< bool(const Value *)> Callback)
static bool isDINode(const Metadata *MD)
static bool isScope(const Metadata *MD)
static cl::opt< bool > VerifyNoAliasScopeDomination("verify-noalias-scope-decl-dom", cl::Hidden, cl::init(false), cl::desc("Ensure that llvm.experimental.noalias.scope.decl for identical " "scopes are not dominating"))
static bool isTypeCongruent(Type *L, Type *R)
Two types are "congruent" if they are identical, or if they are both pointer types with different poi...
static bool isConstantIntMetadataOperand(const Metadata *MD)
static bool IsRootTBAANode(const MDNode *MD)
static Value * getParentPad(Value *EHPad)
static bool hasConflictingReferenceFlags(unsigned Flags)
Detect mutually exclusive flags.
static AttrBuilder getParameterABIAttributes(LLVMContext &C, unsigned I, AttributeList Attrs)
static const char PassName[]
bool isFiniteNonZero() const
const fltSemantics & getSemantics() const
Class for arbitrary precision integers.
bool sgt(const APInt &RHS) const
Signed greater than comparison.
bool isMinValue() const
Determine if this is the smallest unsigned value.
bool ule(const APInt &RHS) const
Unsigned less or equal comparison.
bool isPowerOf2() const
Check if this APInt's value is a power of two greater than zero.
int64_t getSExtValue() const
Get sign extended value.
bool isMaxValue() const
Determine if this is the largest unsigned value.
This class represents a conversion between pointers from one address space to another.
bool isSwiftError() const
Return true if this alloca is used as a swifterror argument to a call.
LLVM_ABI bool isStaticAlloca() const
Return true if this alloca is in the entry block of the function and is a constant size.
Align getAlign() const
Return the alignment of the memory that is being allocated by the instruction.
Type * getAllocatedType() const
Return the type that is being allocated by the instruction.
unsigned getAddressSpace() const
Return the address space for the allocation.
LLVM_ABI bool isArrayAllocation() const
Return true if there is an allocation size parameter to the allocation instruction that is not 1.
const Value * getArraySize() const
Get the number of elements allocated.
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
void setPreservesAll()
Set by analyses that do not transform their input at all.
LLVM_ABI bool hasInRegAttr() const
Return true if this argument has the inreg attribute.
bool empty() const
empty - Check if the array is empty.
static bool isFPOperation(BinOp Op)
BinOp getOperation() const
static LLVM_ABI StringRef getOperationName(BinOp Op)
AtomicOrdering getOrdering() const
Returns the ordering constraint of this rmw instruction.
bool contains(Attribute::AttrKind A) const
Return true if the builder has the specified attribute.
LLVM_ABI bool hasAttribute(Attribute::AttrKind Kind) const
Return true if the attribute exists in this set.
LLVM_ABI std::string getAsString(bool InAttrGrp=false) const
Functions, function parameters, and return types can have attributes to indicate how they should be t...
LLVM_ABI const ConstantRange & getValueAsConstantRange() const
Return the attribute's value as a ConstantRange.
LLVM_ABI StringRef getValueAsString() const
Return the attribute's value as a string.
AttrKind
This enumeration lists the attributes that can be associated with parameters, function results,...
bool isValid() const
Return true if the attribute is any kind of attribute.
LLVM Basic Block Representation.
iterator begin()
Instruction iterator methods.
iterator_range< const_phi_iterator > phis() const
Returns a range that iterates over the phis in the basic block.
const Function * getParent() const
Return the enclosing method, or null if none.
LLVM_ABI InstListType::const_iterator getFirstNonPHIIt() const
Returns an iterator to the first instruction in this block that is not a PHINode instruction.
LLVM_ABI bool isEntryBlock() const
Return true if this is the entry block of the containing function.
const Instruction & front() const
LLVM_ABI const BasicBlock * getUniquePredecessor() const
Return the predecessor of this block if it has a unique predecessor block.
InstListType::iterator iterator
Instruction iterators...
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction if the block is well formed or null if the block is not well forme...
This class represents a no-op cast from one type to another.
static LLVM_ABI BlockAddress * lookup(const BasicBlock *BB)
Lookup an existing BlockAddress constant for the given BasicBlock.
bool isConditional() const
Value * getCondition() const
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
bool isInlineAsm() const
Check if this call is an inline asm statement.
bool hasInAllocaArgument() const
Determine if there are is an inalloca argument.
OperandBundleUse getOperandBundleAt(unsigned Index) const
Return the operand bundle at a specific index.
Function * getCalledFunction() const
Returns the function called, or null if this is an indirect function invocation or the function signa...
bool doesNotAccessMemory(unsigned OpNo) const
bool hasFnAttr(Attribute::AttrKind Kind) const
Determine whether this call has the given attribute.
unsigned getNumOperandBundles() const
Return the number of operand bundles associated with this User.
CallingConv::ID getCallingConv() const
LLVM_ABI bool paramHasAttr(unsigned ArgNo, Attribute::AttrKind Kind) const
Determine whether the argument or parameter has the given attribute.
Attribute getParamAttr(unsigned ArgNo, Attribute::AttrKind Kind) const
Get the attribute of a given kind from a given arg.
iterator_range< bundle_op_iterator > bundle_op_infos()
Return the range [bundle_op_info_begin, bundle_op_info_end).
unsigned countOperandBundlesOfType(StringRef Name) const
Return the number of operand bundles with the tag Name attached to this instruction.
bool onlyReadsMemory(unsigned OpNo) const
Value * getCalledOperand() const
Type * getParamElementType(unsigned ArgNo) const
Extract the elementtype type for a parameter.
Value * getArgOperand(unsigned i) const
FunctionType * getFunctionType() const
LLVM_ABI Intrinsic::ID getIntrinsicID() const
Returns the intrinsic ID of the intrinsic called or Intrinsic::not_intrinsic if the called function i...
iterator_range< User::op_iterator > args()
Iteration adapter for range-for loops.
bool doesNotReturn() const
Determine if the call cannot return.
LLVM_ABI bool onlyAccessesArgMemory() const
Determine if the call can access memmory only using pointers based on its arguments.
unsigned arg_size() const
AttributeList getAttributes() const
Return the attributes for this call.
bool hasOperandBundles() const
Return true if this User has any operand bundles.
LLVM_ABI Function * getCaller()
Helper to get the caller (the parent function).
BasicBlock * getIndirectDest(unsigned i) const
unsigned getNumIndirectDests() const
Return the number of callbr indirect dest labels.
bool isMustTailCall() const
static LLVM_ABI bool castIsValid(Instruction::CastOps op, Type *SrcTy, Type *DstTy)
This method can be used to determine if a cast from SrcTy to DstTy using Opcode op is valid or not.
unsigned getNumHandlers() const
return the number of 'handlers' in this catchswitch instruction, except the default handler
Value * getParentPad() const
BasicBlock * getUnwindDest() const
handler_range handlers()
iteration adapter for range-for loops.
BasicBlock * getUnwindDest() const
bool isFPPredicate() const
bool isIntPredicate() const
static bool isIntPredicate(Predicate P)
bool isMinusOne() const
This function will return true iff every bit in this constant is set to true.
bool isZero() const
This is just a convenience method to make client code smaller for a common code.
unsigned getBitWidth() const
getBitWidth - Return the scalar bitwidth of this constant.
uint64_t getZExtValue() const
Return the constant as a 64-bit unsigned integer value after it has been zero extended as appropriate...
const APInt & getValue() const
Return the constant as an APInt value reference.
Constant * getAddrDiscriminator() const
The address discriminator if any, or the null constant.
Constant * getPointer() const
The pointer that is signed in this ptrauth signed pointer.
ConstantInt * getKey() const
The Key ID, an i32 constant.
Constant * getDeactivationSymbol() const
ConstantInt * getDiscriminator() const
The integer discriminator, an i64 constant, or 0.
static LLVM_ABI bool isOrderedRanges(ArrayRef< ConstantRange > RangesRef)
This class represents a range of values.
const APInt & getLower() const
Return the lower value for this range.
const APInt & getUpper() const
Return the upper value for this range.
LLVM_ABI bool contains(const APInt &Val) const
Return true if the specified value is in the set.
uint32_t getBitWidth() const
Get the bit width of this ConstantRange.
static LLVM_ABI ConstantTokenNone * get(LLVMContext &Context)
Return the ConstantTokenNone.
LLVM_ABI bool isNullValue() const
Return true if this is the value that would be returned by getNullValue.
LLVM_ABI std::optional< fp::ExceptionBehavior > getExceptionBehavior() const
LLVM_ABI std::optional< RoundingMode > getRoundingMode() const
LLVM_ABI unsigned getNonMetadataArgCount() const
DbgVariableFragmentInfo FragmentInfo
@ FixedPointBinary
Scale factor 2^Factor.
@ FixedPointDecimal
Scale factor 10^Factor.
@ FixedPointRational
Arbitrary rational scale factor.
DIGlobalVariable * getVariable() const
DIExpression * getExpression() const
LLVM_ABI DISubprogram * getSubprogram() const
Get the subprogram for this scope.
DILocalScope * getScope() const
Get the local scope for this variable.
Metadata * getRawScope() const
Base class for scope-like contexts.
Subprogram description. Uses SubclassData1.
static const DIScope * getRawRetainedNodeScope(const MDNode *N)
Base class for template parameters.
Base class for variables.
Metadata * getRawType() const
Metadata * getRawScope() const
uint64_t getNumOperands() const
A parsed version of the target data layout string in and methods for querying it.
Records a position in IR for a source label (DILabel).
MDNode * getRawLabel() const
DILabel * getLabel() const
Base class for non-instruction debug metadata records that have positions within IR.
LLVM_ABI void print(raw_ostream &O, bool IsForDebug=false) const
DebugLoc getDebugLoc() const
LLVM_ABI const BasicBlock * getParent() const
LLVM_ABI Function * getFunction()
Record of a variable value-assignment, aka a non instruction representation of the dbg....
LocationType getType() const
MDNode * getRawExpression() const
MDNode * getRawAddressExpression() const
LLVM_ABI Value * getVariableLocationOp(unsigned OpIdx) const
DIExpression * getExpression() const
Metadata * getRawAssignID() const
MDNode * getRawVariable() const
DILocalVariable * getVariable() const
Metadata * getRawLocation() const
Returns the metadata operand for the first location description.
bool isDbgDeclare() const
Metadata * getRawAddress() const
@ End
Marks the end of the concrete types.
@ Any
To indicate all LocationTypes in searches.
DIExpression * getAddressExpression() const
MDNode * getAsMDNode() const
Return this as a bar MDNode.
ValueT lookup(const_arg_type_t< KeyT > Val) const
lookup - Return the entry for the specified key, or a default constructed value if no such entry exis...
iterator find(const_arg_type_t< KeyT > Val)
std::pair< iterator, bool > insert(const std::pair< KeyT, ValueT > &KV)
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
This instruction compares its operands according to the predicate given to the constructor.
This class represents an extension of floating point types.
This class represents a cast from floating point to signed integer.
This class represents a cast from floating point to unsigned integer.
This class represents a truncation of floating point types.
AtomicOrdering getOrdering() const
Returns the ordering constraint of this fence instruction.
Value * getParentPad() const
Convenience accessors.
FunctionPass class - This class is used to implement most global optimizations.
Type * getReturnType() const
FunctionType * getFunctionType() const
Returns the FunctionType for me.
Intrinsic::ID getIntrinsicID() const LLVM_READONLY
getIntrinsicID - This method returns the ID number of the specified function, or Intrinsic::not_intri...
DISubprogram * getSubprogram() const
Get the attached subprogram.
CallingConv::ID getCallingConv() const
getCallingConv()/setCallingConv(CC) - These method get and set the calling convention of this functio...
bool hasPersonalityFn() const
Check whether this function has a personality function.
const Function & getFunction() const
const std::string & getGC() const
Type * getReturnType() const
Returns the type of the ret val.
bool isVarArg() const
isVarArg - Return true if this function takes a variable number of arguments.
LLVM_ABI Value * getBasePtr() const
LLVM_ABI Value * getDerivedPtr() const
void visit(const BlockT &BB)
static LLVM_ABI Type * getIndexedType(Type *Ty, ArrayRef< Value * > IdxList)
Returns the result type of a getelementptr with the given source element type and indexes.
static bool isValidLinkage(LinkageTypes L)
const Constant * getAliasee() const
LLVM_ABI const Function * getResolverFunction() const
static bool isValidLinkage(LinkageTypes L)
const Constant * getResolver() const
LLVM_ABI void getAllMetadata(SmallVectorImpl< std::pair< unsigned, MDNode * > > &MDs) const
Appends all metadata attached to this value to MDs, sorting by KindID.
MDNode * getMetadata(unsigned KindID) const
Get the current metadata attachments for the given kind, if any.
bool hasExternalLinkage() const
bool isImplicitDSOLocal() const
LLVM_ABI bool isDeclaration() const
Return true if the primary definition of this global value is outside of the current translation unit...
bool hasValidDeclarationLinkage() const
LinkageTypes getLinkage() const
bool hasDefaultVisibility() const
bool hasPrivateLinkage() const
bool hasHiddenVisibility() const
bool hasExternalWeakLinkage() const
bool hasDLLImportStorageClass() const
bool hasDLLExportStorageClass() const
bool isDeclarationForLinker() const
unsigned getAddressSpace() const
Module * getParent()
Get the module that this global value is contained inside of...
PointerType * getType() const
Global values are always pointers.
LLVM_ABI bool isInterposable() const
Return true if this global's definition can be substituted with an arbitrary definition at link time ...
bool hasCommonLinkage() const
bool hasGlobalUnnamedAddr() const
bool hasAppendingLinkage() const
bool hasAvailableExternallyLinkage() const
Type * getValueType() const
const Constant * getInitializer() const
getInitializer - Return the initializer for this global variable.
bool hasInitializer() const
Definitions have initializers, declarations don't.
MaybeAlign getAlign() const
Returns the alignment of the given variable.
bool isConstant() const
If the value is a global constant, its value is immutable throughout the runtime execution of the pro...
bool hasDefinitiveInitializer() const
hasDefinitiveInitializer - Whether the global variable has an initializer, and any other instances of...
This instruction compares its operands according to the predicate given to the constructor.
BasicBlock * getDestination(unsigned i)
Return the specified destination.
unsigned getNumDestinations() const
return the number of possible destinations in this indirectbr instruction.
unsigned getNumSuccessors() const
This instruction inserts a single (scalar) element into a VectorType value.
static LLVM_ABI bool isValidOperands(const Value *Vec, const Value *NewElt, const Value *Idx)
Return true if an insertelement instruction can be formed with the specified operands.
Value * getAggregateOperand()
ArrayRef< unsigned > getIndices() const
Base class for instruction visitors.
void visit(Iterator Start, Iterator End)
LLVM_ABI unsigned getNumSuccessors() const LLVM_READONLY
Return the number of successors that this instruction has.
const DebugLoc & getDebugLoc() const
Return the debug location for this node as a DebugLoc.
LLVM_ABI bool isAtomic() const LLVM_READONLY
Return true if this instruction has an AtomicOrdering of unordered or higher.
LLVM_ABI const Function * getFunction() const
Return the function this instruction belongs to.
This class represents a cast from an integer to a pointer.
static LLVM_ABI bool mayLowerToFunctionCall(Intrinsic::ID IID)
Check if the intrinsic might lower into a regular function call in the course of IR transformations.
Intrinsic::ID getIntrinsicID() const
Return the intrinsic ID of this intrinsic.
This is an important class for using LLVM in a threaded context.
@ OB_clang_arc_attachedcall
bool isCleanup() const
Return 'true' if this landingpad instruction is a cleanup.
unsigned getNumClauses() const
Get the number of clauses for this landing pad.
bool isCatch(unsigned Idx) const
Return 'true' if the clause and index Idx is a catch clause.
bool isFilter(unsigned Idx) const
Return 'true' if the clause and index Idx is a filter clause.
Constant * getClause(unsigned Idx) const
Get the value of the clause at index Idx.
AtomicOrdering getOrdering() const
Returns the ordering constraint of this load instruction.
SyncScope::ID getSyncScopeID() const
Returns the synchronization scope ID of this load instruction.
Align getAlign() const
Return the alignment of the access that is being performed.
const MDOperand & getOperand(unsigned I) const
ArrayRef< MDOperand > operands() const
unsigned getNumOperands() const
Return number of MDNode operands.
bool isResolved() const
Check if node is fully resolved.
LLVMContext & getContext() const
bool equalsStr(StringRef Str) const
LLVM_ABI StringRef getString() const
This class implements a map that also provides access to all stored values in a deterministic order.
Manage lifetime of a slot tracker for printing IR.
A Module instance is used to store all the information related to an LLVM module.
LLVM_ABI StringRef getName() const
LLVM_ABI void print(raw_ostream &ROS, bool IsForDebug=false) const
LLVM_ABI unsigned getNumOperands() const
iterator_range< op_iterator > operands()
op_range incoming_values()
static LLVM_ABI PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
A set of analyses that are preserved following a run of a transformation pass.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
This class represents a cast from a pointer to an address (non-capturing ptrtoint).
This class represents a cast from a pointer to an integer.
Value * getValue() const
Convenience accessor.
Value * getReturnValue() const
Convenience accessor. Returns null if there is no return value.
This class represents a sign extension of integer types.
This class represents a cast from signed integer to floating point.
static LLVM_ABI const char * areInvalidOperands(Value *Cond, Value *True, Value *False)
Return a string if the specified operands are invalid for a select operation, otherwise return null.
This instruction constructs a fixed permutation of two input vectors.
static LLVM_ABI bool isValidOperands(const Value *V1, const Value *V2, const Value *Mask)
Return true if a shufflevector instruction can be formed with the specified operands.
static LLVM_ABI void getShuffleMask(const Constant *Mask, SmallVectorImpl< int > &Result)
Convert the input shuffle mask operand to a vector of integers.
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
size_type count(ConstPtrType Ptr) const
count - Return 1 if the specified pointer is in the set, 0 otherwise.
void insert_range(Range &&R)
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
void reserve(size_type N)
iterator insert(iterator I, T &&Elt)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
std::pair< StringRef, StringRef > split(char Separator) const
Split into two substrings around the first occurrence of a separator character.
static constexpr size_t npos
bool getAsInteger(unsigned Radix, T &Result) const
Parse the current string as an integer of the specified radix.
bool starts_with(StringRef Prefix) const
Check if this string starts with the given Prefix.
constexpr bool empty() const
empty - Check if the string is empty.
unsigned getNumElements() const
Random access to the elements.
LLVM_ABI Type * getTypeAtIndex(const Value *V) const
Given an index value into the type, return the type of the element.
LLVM_ABI bool isScalableTy(SmallPtrSetImpl< const Type * > &Visited) const
Returns true if this struct contains a scalable vector.
Verify that the TBAA Metadatas are valid.
LLVM_ABI bool visitTBAAMetadata(const Instruction *I, const MDNode *MD)
Visit an instruction, or a TBAA node itself as part of a metadata, and return true if it is valid,...
Triple - Helper class for working with autoconf configuration names.
This class represents a truncation of integer types.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
The instances of the Type class are immutable: once they are created, they are never changed.
bool isVectorTy() const
True if this is an instance of VectorType.
LLVM_ABI bool containsNonGlobalTargetExtType(SmallPtrSetImpl< const Type * > &Visited) const
Return true if this type is or contains a target extension type that disallows being used as a global...
bool isArrayTy() const
True if this is an instance of ArrayType.
LLVM_ABI bool containsNonLocalTargetExtType(SmallPtrSetImpl< const Type * > &Visited) const
Return true if this type is or contains a target extension type that disallows being used as a local.
LLVM_ABI bool isScalableTy(SmallPtrSetImpl< const Type * > &Visited) const
Return true if this is a type whose size is a known multiple of vscale.
bool isLabelTy() const
Return true if this is 'label'.
bool isIntOrIntVectorTy() const
Return true if this is an integer type or a vector of integer types.
bool isPointerTy() const
True if this is an instance of PointerType.
bool isTokenLikeTy() const
Returns true if this is 'token' or a token-like target type.s.
LLVM_ABI unsigned getPointerAddressSpace() const
Get the address space of this pointer or pointer vector type.
bool isSingleValueType() const
Return true if the type is a valid type for a register in codegen.
LLVM_ABI bool canLosslesslyBitCastTo(Type *Ty) const
Return true if this type could be converted with a lossless BitCast to type 'Ty'.
Type * getScalarType() const
If this is a vector type, return the element type, otherwise return 'this'.
bool isSized(SmallPtrSetImpl< Type * > *Visited=nullptr) const
Return true if it makes sense to take the size of this type.
LLVM_ABI unsigned getScalarSizeInBits() const LLVM_READONLY
If this is a vector type, return the getPrimitiveSizeInBits value for the element type.
bool isFloatingPointTy() const
Return true if this is one of the floating-point types.
bool isPtrOrPtrVectorTy() const
Return true if this is a pointer type or a vector of pointer types.
bool isIntOrPtrTy() const
Return true if this is an integer type or a pointer type.
bool isIntegerTy() const
True if this is an instance of IntegerType.
bool isFPOrFPVectorTy() const
Return true if this is a FP type or a vector of FP.
bool isVoidTy() const
Return true if this is 'void'.
bool isMetadataTy() const
Return true if this is 'metadata'.
This class represents a cast unsigned integer to floating point.
Value * getOperand(unsigned i) const
unsigned getNumOperands() const
This class represents the va_arg llvm instruction, which returns an argument of the specified type gi...
LLVM Value Representation.
iterator_range< user_iterator > materialized_users()
Type * getType() const
All values are typed, get the type of this value.
LLVM_ABI const Value * stripPointerCastsAndAliases() const
Strip off pointer casts, all-zero GEPs, address space casts, and aliases.
LLVM_ABI const Value * stripInBoundsOffsets(function_ref< void(const Value *)> Func=[](const Value *) {}) const
Strip off pointer casts and inbounds GEPs.
iterator_range< user_iterator > users()
bool materialized_use_empty() const
LLVM_ABI const Value * stripPointerCasts() const
Strip off pointer casts, all-zero GEPs and address space casts.
LLVM_ABI LLVMContext & getContext() const
All values hold a context through their type.
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
Check a module for errors, and report separate error states for IR and debug info errors.
LLVM_ABI Result run(Module &M, ModuleAnalysisManager &)
LLVM_ABI PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM)
This class represents zero extension of integer types.
constexpr bool isNonZero() const
constexpr bool isScalable() const
Returns whether the quantity is scaled by a runtime quantity (vscale).
constexpr ScalarTy getKnownMinValue() const
Returns the minimum value this quantity can represent.
An efficient, type-erasing, non-owning reference to a callable.
const ParentTy * getParent() const
NodeTy * getNextNode()
Get the next node, or nullptr for the list tail.
This class implements an extremely fast bulk output stream that can only output to a stream.
This file contains the declaration of the Comdat class, which represents a single COMDAT in LLVM.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ FLAT_ADDRESS
Address space for flat memory.
@ GLOBAL_ADDRESS
Address space for global memory (RAT0, VTX0).
@ PRIVATE_ADDRESS
Address space for private memory.
constexpr char Align[]
Key for Kernel::Arg::Metadata::mAlign.
constexpr char Args[]
Key for Kernel::Metadata::mArgs.
constexpr char Attrs[]
Key for Kernel::Metadata::mAttrs.
bool isFlatGlobalAddrSpace(unsigned AS)
constexpr std::underlying_type_t< E > Mask()
Get a bitmask with 1s in all places up to the high-order bit of E's largest value.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
@ C
The default llvm calling convention, compatible with C.
@ BasicBlock
Various leaf nodes.
LLVM_ABI MatchIntrinsicTypesResult matchIntrinsicSignature(FunctionType *FTy, ArrayRef< IITDescriptor > &Infos, SmallVectorImpl< Type * > &ArgTys)
Match the specified function type with the type constraints specified by the .td file.
LLVM_ABI void getIntrinsicInfoTableEntries(ID id, SmallVectorImpl< IITDescriptor > &T)
Return the IIT table descriptor for the specified intrinsic into an array of IITDescriptors.
MatchIntrinsicTypesResult
@ MatchIntrinsicTypes_NoMatchRet
@ MatchIntrinsicTypes_NoMatchArg
LLVM_ABI bool hasConstrainedFPRoundingModeOperand(ID QID)
Returns true if the intrinsic ID is for one of the "ConstrainedFloating-Point Intrinsics" that take r...
LLVM_ABI StringRef getName(ID id)
Return the LLVM name for an intrinsic, such as "llvm.ppc.altivec.lvx".
static const int NoAliasScopeDeclScopeArg
LLVM_ABI bool matchIntrinsicVarArg(bool isVarArg, ArrayRef< IITDescriptor > &Infos)
Verify if the intrinsic has variable arguments.
std::variant< std::monostate, Loc::Single, Loc::Multi, Loc::MMI, Loc::EntryValue > Variant
Alias for the std::variant specialization base class of DbgVariable.
Flag
These should be considered private to the implementation of the MCInstrDesc class.
@ System
Synchronized with respect to all concurrently executing threads.
LLVM_ABI std::optional< VFInfo > tryDemangleForVFABI(StringRef MangledName, const FunctionType *FTy)
Function to construct a VFInfo out of a mangled names in the following format:
@ CE
Windows NT (Windows on ARM)
LLVM_ABI AssignmentInstRange getAssignmentInsts(DIAssignID *ID)
Return a range of instructions (typically just one) that have ID as an attachment.
initializer< Ty > init(const Ty &Val)
Scope
Defines the scope in which this symbol should be visible: Default – Visible in the public interface o...
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > dyn_extract_or_null(Y &&MD)
Extract a Value from Metadata, if any, allowing null.
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > dyn_extract(Y &&MD)
Extract a Value from Metadata, if any.
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > extract(Y &&MD)
Extract a Value from Metadata.
@ User
could "use" a pointer
NodeAddr< UseNode * > Use
NodeAddr< NodeBase * > Node
friend class Instruction
Iterator for Instructions in a `BasicBlock.
This is an optimization pass for GlobalISel generic memory operations.
auto drop_begin(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the first N elements excluded.
@ Low
Lower the current thread's priority such that it does not affect foreground tasks significantly.
FunctionAddr VTableAddr Value
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI bool canInstructionHaveMMRAs(const Instruction &I)
detail::zippy< detail::zip_first, T, U, Args... > zip_equal(T &&t, U &&u, Args &&...args)
zip iterator that assumes that all iteratees have the same length.
LLVM_ABI unsigned getBranchWeightOffset(const MDNode *ProfileData)
Return the offset to the first branch weight data.
constexpr bool isInt(int64_t x)
Checks if an integer fits into the given bit width.
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
LLVM_ABI bool verifyFunction(const Function &F, raw_ostream *OS=nullptr)
Check a function for errors, useful for use when debugging a pass.
testing::Matcher< const detail::ErrorHolder & > Failed()
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
LLVM_ABI DenseMap< BasicBlock *, ColorVector > colorEHFunclets(Function &F)
If an EH funclet personality is in use (see isFuncletEHPersonality), this will recompute which blocks...
constexpr bool isPowerOf2_64(uint64_t Value)
Return true if the argument is a power of two > 0 (64 bit edition.)
bool isa_and_nonnull(const Y &Val)
bool isScopedEHPersonality(EHPersonality Pers)
Returns true if this personality uses scope-style EH IR instructions: catchswitch,...
auto dyn_cast_or_null(const Y &Val)
GenericConvergenceVerifier< SSAContext > ConvergenceVerifier
LLVM_ABI void initializeVerifierLegacyPassPass(PassRegistry &)
constexpr bool isPowerOf2_32(uint32_t Value)
Return true if the argument is a power of two > 0.
bool isModSet(const ModRefInfo MRI)
void sort(IteratorTy Start, IteratorTy End)
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
FunctionAddr VTableAddr Count
LLVM_ABI EHPersonality classifyEHPersonality(const Value *Pers)
See if the given exception handling personality function is one that we understand.
iterator_range< SplittingIterator > split(StringRef Str, StringRef Separator)
Split the specified string over a separator and return a range-compatible iterable over its partition...
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
LLVM_ABI bool isValueProfileMD(const MDNode *ProfileData)
Checks if an MDNode contains value profiling Metadata.
LLVM_ABI raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
LLVM_ABI unsigned getNumBranchWeights(const MDNode &ProfileData)
AtomicOrdering
Atomic ordering for LLVM's memory model.
@ First
Helpers to iterate all locations in the MemoryEffectsBase class.
LLVM_ABI FunctionPass * createVerifierPass(bool FatalErrors=true)
FunctionAddr VTableAddr Next
DWARFExpression::Operation Op
ArrayRef(const T &OneElt) -> ArrayRef< T >
constexpr unsigned BitWidth
TinyPtrVector< BasicBlock * > ColorVector
LLVM_ABI const char * LLVMLoopEstimatedTripCount
Profile-based loop metadata that should be accessed only by using llvm::getLoopEstimatedTripCount and...
DenormalMode parseDenormalFPAttribute(StringRef Str)
Returns the denormal mode to use for inputs and outputs.
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
LLVM_ABI std::optional< RoundingMode > convertStrToRoundingMode(StringRef)
Returns a valid RoundingMode enumerator when given a string that is valid as input in constrained int...
LLVM_ABI std::unique_ptr< GCStrategy > getGCStrategy(const StringRef Name)
Lookup the GCStrategy object associated with the given gc name.
auto predecessors(const MachineBasicBlock *BB)
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
bool pred_empty(const BasicBlock *BB)
bool isHexDigit(char C)
Checks if character C is a hexadecimal numeric character.
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.
constexpr bool isCallableCC(CallingConv::ID CC)
LLVM_ABI bool verifyModule(const Module &M, raw_ostream *OS=nullptr, bool *BrokenDebugInfo=nullptr)
Check a module for errors.
AnalysisManager< Module > ModuleAnalysisManager
Convenience typedef for the Module analysis manager.
constexpr uint64_t value() const
This is a hole in the type system and should not be abused.
A special type used by analysis passes to provide an address that identifies that particular analysis...
static LLVM_ABI const char * SyntheticFunctionEntryCount
static LLVM_ABI const char * UnknownBranchWeightsMarker
static LLVM_ABI const char * ValueProfile
static LLVM_ABI const char * FunctionEntryCount
static LLVM_ABI const char * BranchWeights
uint32_t getTagID() const
Return the tag of this operand bundle as an integer.
void DebugInfoCheckFailed(const Twine &Message)
A debug info check failed.
VerifierSupport(raw_ostream *OS, const Module &M)
bool Broken
Track the brokenness of the module while recursively visiting.
void CheckFailed(const Twine &Message, const T1 &V1, const Ts &... Vs)
A check failed (with values to print).
bool BrokenDebugInfo
Broken debug info can be "recovered" from by stripping the debug info.
bool TreatBrokenDebugInfoAsError
Whether to treat broken debug info as an error.
void CheckFailed(const Twine &Message)
A check failed, so printout out the condition and the message.
void DebugInfoCheckFailed(const Twine &Message, const T1 &V1, const Ts &... Vs)
A debug info check failed (with values to print).