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);
775 "Only global variables can have appending linkage!", &GV);
780 "Only global arrays can have appending linkage!", GVar);
784 Check(!GV.
hasComdat(),
"Declaration may not be in a Comdat!", &GV);
788 "dllexport GlobalValue must have default or protected visibility",
793 "dllimport GlobalValue must have default visibility", &GV);
794 Check(!GV.
isDSOLocal(),
"GlobalValue with DLLImport Storage is dso_local!",
800 "Global is marked as dllimport, but not external", &GV);
805 "GlobalValue with local linkage or non-default "
806 "visibility must be dso_local!",
811 if (!
I->getParent() || !
I->getParent()->getParent())
812 CheckFailed(
"Global is referenced by parentless instruction!", &GV, &M,
814 else if (
I->getParent()->getParent()->getParent() != &M)
815 CheckFailed(
"Global is referenced in a different module!", &GV, &M,
I,
816 I->getParent()->getParent(),
817 I->getParent()->getParent()->getParent());
820 if (
F->getParent() != &M)
821 CheckFailed(
"Global is used by function in a different module", &GV, &M,
829void Verifier::visitGlobalVariable(
const GlobalVariable &GV) {
833 Check(
A->value() <= Value::MaximumAlignment,
834 "huge alignment values are unsupported", &GV);
839 "Global variable initializer type does not match global "
843 "Global variable initializer must be sized", &GV);
849 "'common' global must have a zero initializer!", &GV);
852 Check(!GV.
hasComdat(),
"'common' global may not be in a Comdat!", &GV);
857 GV.
getName() ==
"llvm.global_dtors")) {
859 "invalid linkage for intrinsic global variable", &GV);
861 "invalid uses of intrinsic global variable", &GV);
868 PointerType::get(
Context,
DL.getProgramAddressSpace());
872 "wrong type for intrinsic global variable", &GV);
874 "the third field of the element type is mandatory, "
875 "specify ptr null to migrate from the obsoleted 2-field form");
883 GV.
getName() ==
"llvm.compiler.used")) {
885 "invalid linkage for intrinsic global variable", &GV);
887 "invalid uses of intrinsic global variable", &GV);
891 Check(PTy,
"wrong type for intrinsic global variable", &GV);
895 Check(InitArray,
"wrong initializer for intrinsic global variable",
901 Twine(
"invalid ") + GV.
getName() +
" member", V);
903 Twine(
"members of ") + GV.
getName() +
" must be named", V);
912 for (
auto *MD : MDs) {
914 visitDIGlobalVariableExpression(*GVE);
916 CheckDI(
false,
"!dbg attachment of global variable must be a "
917 "DIGlobalVariableExpression");
927 "Global @" + GV.
getName() +
" has illegal target extension type",
931 visitGlobalValue(GV);
938 visitGlobalValue(GV);
941void Verifier::visitAliaseeSubExpr(
const GlobalAlias &GA,
const Constant &
C) {
942 SmallPtrSet<const GlobalAlias*, 4> Visited;
944 visitAliaseeSubExpr(Visited, GA,
C);
947void Verifier::visitAliaseeSubExpr(SmallPtrSetImpl<const GlobalAlias*> &Visited,
948 const GlobalAlias &GA,
const Constant &
C) {
952 "available_externally alias must point to available_externally "
963 Check(Visited.
insert(GA2).second,
"Aliases cannot form a cycle", &GA);
965 Check(!GA2->isInterposable(),
966 "Alias cannot point to an interposable alias", &GA);
975 visitConstantExprsRecursively(CE);
977 for (
const Use &U :
C.operands()) {
980 visitAliaseeSubExpr(Visited, GA, *GA2->getAliasee());
982 visitAliaseeSubExpr(Visited, GA, *C2);
986void Verifier::visitGlobalAlias(
const GlobalAlias &GA) {
988 "Alias should have private, internal, linkonce, weak, linkonce_odr, "
989 "weak_odr, external, or available_externally linkage!",
992 Check(Aliasee,
"Aliasee cannot be NULL!", &GA);
994 "Alias and aliasee types should match!", &GA);
997 "Aliasee should be either GlobalValue or ConstantExpr", &GA);
999 visitAliaseeSubExpr(GA, *Aliasee);
1001 visitGlobalValue(GA);
1004void Verifier::visitGlobalIFunc(
const GlobalIFunc &GI) {
1005 visitGlobalValue(GI);
1009 for (
const auto &
I : MDs) {
1010 CheckDI(
I.first != LLVMContext::MD_dbg,
1011 "an ifunc may not have a !dbg attachment", &GI);
1012 Check(
I.first != LLVMContext::MD_prof,
1013 "an ifunc may not have a !prof attachment", &GI);
1014 visitMDNode(*
I.second, AreDebugLocsAllowed::No);
1018 "IFunc should have private, internal, linkonce, weak, linkonce_odr, "
1019 "weak_odr, or external linkage!",
1024 Check(Resolver,
"IFunc must have a Function resolver", &GI);
1026 "IFunc resolver must be a definition", &GI);
1033 "IFunc resolver must return a pointer", &GI);
1036 "IFunc resolver has incorrect type", &GI);
1039void Verifier::visitNamedMDNode(
const NamedMDNode &NMD) {
1044 "unrecognized named metadata node in the llvm.dbg namespace", &NMD);
1045 for (
const MDNode *MD : NMD.
operands()) {
1046 if (NMD.
getName() ==
"llvm.dbg.cu")
1052 visitMDNode(*MD, AreDebugLocsAllowed::Yes);
1056void Verifier::visitMDNode(
const MDNode &MD, AreDebugLocsAllowed AllowLocs) {
1059 if (!MDNodes.
insert(&MD).second)
1063 "MDNode context does not match Module context!", &MD);
1068 case Metadata::MDTupleKind:
1070#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) \
1071 case Metadata::CLASS##Kind: \
1072 visit##CLASS(cast<CLASS>(MD)); \
1074#include "llvm/IR/Metadata.def"
1083 "DILocation not allowed within this metadata node", &MD,
Op);
1085 visitMDNode(*
N, AllowLocs);
1089 visitValueAsMetadata(*V,
nullptr);
1101 "Expected second operand to be an integer constant of type i32 or "
1111void Verifier::visitValueAsMetadata(
const ValueAsMetadata &MD, Function *
F) {
1114 "Unexpected metadata round-trip through values", &MD, MD.
getValue());
1120 Check(
F,
"function-local metadata used outside a function", L);
1126 Check(
I->getParent(),
"function-local metadata not in basic block", L,
I);
1132 assert(ActualF &&
"Unimplemented function local metadata case!");
1134 Check(ActualF ==
F,
"function-local metadata used in wrong function", L);
1137void Verifier::visitDIArgList(
const DIArgList &AL, Function *
F) {
1138 for (
const ValueAsMetadata *VAM :
AL.getArgs())
1139 visitValueAsMetadata(*VAM,
F);
1142void Verifier::visitMetadataAsValue(
const MetadataAsValue &MDV, Function *
F) {
1145 visitMDNode(*
N, AreDebugLocsAllowed::No);
1151 if (!MDNodes.
insert(MD).second)
1155 visitValueAsMetadata(*V,
F);
1158 visitDIArgList(*AL,
F);
1166void Verifier::visitDILocation(
const DILocation &
N) {
1168 "location requires a valid scope", &
N,
N.getRawScope());
1169 if (
auto *IA =
N.getRawInlinedAt())
1172 CheckDI(
SP->isDefinition(),
"scope points into the type hierarchy", &
N);
1175void Verifier::visitGenericDINode(
const GenericDINode &
N) {
1179void Verifier::visitDIScope(
const DIScope &
N) {
1180 if (
auto *
F =
N.getRawFile())
1184void Verifier::visitDISubrangeType(
const DISubrangeType &
N) {
1185 CheckDI(
N.getTag() == dwarf::DW_TAG_subrange_type,
"invalid tag", &
N);
1188 auto *LBound =
N.getRawLowerBound();
1191 "LowerBound must be signed constant or DIVariable or DIExpression",
1193 auto *UBound =
N.getRawUpperBound();
1196 "UpperBound must be signed constant or DIVariable or DIExpression",
1198 auto *Stride =
N.getRawStride();
1201 "Stride must be signed constant or DIVariable or DIExpression", &
N);
1202 auto *Bias =
N.getRawBias();
1205 "Bias must be signed constant or DIVariable or DIExpression", &
N);
1207 auto *
Size =
N.getRawSizeInBits();
1209 "SizeInBits must be a constant");
1212void Verifier::visitDISubrange(
const DISubrange &
N) {
1213 CheckDI(
N.getTag() == dwarf::DW_TAG_subrange_type,
"invalid tag", &
N);
1214 CheckDI(!
N.getRawCountNode() || !
N.getRawUpperBound(),
1215 "Subrange can have any one of count or upperBound", &
N);
1216 auto *CBound =
N.getRawCountNode();
1219 "Count must be signed constant or DIVariable or DIExpression", &
N);
1220 auto Count =
N.getCount();
1223 "invalid subrange count", &
N);
1224 auto *LBound =
N.getRawLowerBound();
1227 "LowerBound must be signed constant or DIVariable or DIExpression",
1229 auto *UBound =
N.getRawUpperBound();
1232 "UpperBound must be signed constant or DIVariable or DIExpression",
1234 auto *Stride =
N.getRawStride();
1237 "Stride must be signed constant or DIVariable or DIExpression", &
N);
1240void Verifier::visitDIGenericSubrange(
const DIGenericSubrange &
N) {
1241 CheckDI(
N.getTag() == dwarf::DW_TAG_generic_subrange,
"invalid tag", &
N);
1242 CheckDI(!
N.getRawCountNode() || !
N.getRawUpperBound(),
1243 "GenericSubrange can have any one of count or upperBound", &
N);
1244 auto *CBound =
N.getRawCountNode();
1246 "Count must be signed constant or DIVariable or DIExpression", &
N);
1247 auto *LBound =
N.getRawLowerBound();
1248 CheckDI(LBound,
"GenericSubrange must contain lowerBound", &
N);
1250 "LowerBound must be signed constant or DIVariable or DIExpression",
1252 auto *UBound =
N.getRawUpperBound();
1254 "UpperBound must be signed constant or DIVariable or DIExpression",
1256 auto *Stride =
N.getRawStride();
1257 CheckDI(Stride,
"GenericSubrange must contain stride", &
N);
1259 "Stride must be signed constant or DIVariable or DIExpression", &
N);
1262void Verifier::visitDIEnumerator(
const DIEnumerator &
N) {
1263 CheckDI(
N.getTag() == dwarf::DW_TAG_enumerator,
"invalid tag", &
N);
1266void Verifier::visitDIBasicType(
const DIBasicType &
N) {
1267 CheckDI(
N.getTag() == dwarf::DW_TAG_base_type ||
1268 N.getTag() == dwarf::DW_TAG_unspecified_type ||
1269 N.getTag() == dwarf::DW_TAG_string_type,
1272 auto *
Size =
N.getRawSizeInBits();
1274 "SizeInBits must be a constant");
1277void Verifier::visitDIFixedPointType(
const DIFixedPointType &
N) {
1278 visitDIBasicType(
N);
1280 CheckDI(
N.getTag() == dwarf::DW_TAG_base_type,
"invalid tag", &
N);
1281 CheckDI(
N.getEncoding() == dwarf::DW_ATE_signed_fixed ||
1282 N.getEncoding() == dwarf::DW_ATE_unsigned_fixed,
1283 "invalid encoding", &
N);
1287 "invalid kind", &
N);
1289 N.getFactorRaw() == 0,
1290 "factor should be 0 for rationals", &
N);
1292 (
N.getNumeratorRaw() == 0 &&
N.getDenominatorRaw() == 0),
1293 "numerator and denominator should be 0 for non-rationals", &
N);
1296void Verifier::visitDIStringType(
const DIStringType &
N) {
1297 CheckDI(
N.getTag() == dwarf::DW_TAG_string_type,
"invalid tag", &
N);
1298 CheckDI(!(
N.isBigEndian() &&
N.isLittleEndian()),
"has conflicting flags",
1302void Verifier::visitDIDerivedType(
const DIDerivedType &
N) {
1306 CheckDI(
N.getTag() == dwarf::DW_TAG_typedef ||
1307 N.getTag() == dwarf::DW_TAG_pointer_type ||
1308 N.getTag() == dwarf::DW_TAG_ptr_to_member_type ||
1309 N.getTag() == dwarf::DW_TAG_reference_type ||
1310 N.getTag() == dwarf::DW_TAG_rvalue_reference_type ||
1311 N.getTag() == dwarf::DW_TAG_const_type ||
1312 N.getTag() == dwarf::DW_TAG_immutable_type ||
1313 N.getTag() == dwarf::DW_TAG_volatile_type ||
1314 N.getTag() == dwarf::DW_TAG_restrict_type ||
1315 N.getTag() == dwarf::DW_TAG_atomic_type ||
1316 N.getTag() == dwarf::DW_TAG_LLVM_ptrauth_type ||
1317 N.getTag() == dwarf::DW_TAG_member ||
1318 (
N.getTag() == dwarf::DW_TAG_variable &&
N.isStaticMember()) ||
1319 N.getTag() == dwarf::DW_TAG_inheritance ||
1320 N.getTag() == dwarf::DW_TAG_friend ||
1321 N.getTag() == dwarf::DW_TAG_set_type ||
1322 N.getTag() == dwarf::DW_TAG_template_alias,
1324 if (
N.getTag() == dwarf::DW_TAG_ptr_to_member_type) {
1325 CheckDI(
isType(
N.getRawExtraData()),
"invalid pointer to member type", &
N,
1326 N.getRawExtraData());
1327 }
else if (
N.getTag() == dwarf::DW_TAG_template_alias) {
1329 N.getRawExtraData());
1330 }
else if (
N.getTag() == dwarf::DW_TAG_inheritance ||
1331 N.getTag() == dwarf::DW_TAG_member ||
1332 N.getTag() == dwarf::DW_TAG_variable) {
1333 auto *ExtraData =
N.getRawExtraData();
1334 auto IsValidExtraData = [&]() {
1335 if (ExtraData ==
nullptr)
1341 if (Tuple->getNumOperands() != 1)
1348 "extraData must be ConstantAsMetadata, MDString, DIObjCProperty, "
1349 "or MDTuple with single ConstantAsMetadata operand",
1353 if (
N.getTag() == dwarf::DW_TAG_set_type) {
1354 if (
auto *
T =
N.getRawBaseType()) {
1359 (Enum &&
Enum->getTag() == dwarf::DW_TAG_enumeration_type) ||
1360 (Subrange &&
Subrange->getTag() == dwarf::DW_TAG_subrange_type) ||
1361 (
Basic && (
Basic->getEncoding() == dwarf::DW_ATE_unsigned ||
1362 Basic->getEncoding() == dwarf::DW_ATE_signed ||
1363 Basic->getEncoding() == dwarf::DW_ATE_unsigned_char ||
1364 Basic->getEncoding() == dwarf::DW_ATE_signed_char ||
1365 Basic->getEncoding() == dwarf::DW_ATE_boolean)),
1366 "invalid set base type", &
N,
T);
1372 N.getRawBaseType());
1374 if (
N.getDWARFAddressSpace()) {
1375 CheckDI(
N.getTag() == dwarf::DW_TAG_pointer_type ||
1376 N.getTag() == dwarf::DW_TAG_reference_type ||
1377 N.getTag() == dwarf::DW_TAG_rvalue_reference_type,
1378 "DWARF address space only applies to pointer or reference types",
1382 auto *
Size =
N.getRawSizeInBits();
1385 "SizeInBits must be a constant or DIVariable or DIExpression");
1390 return ((Flags & DINode::FlagLValueReference) &&
1391 (Flags & DINode::FlagRValueReference)) ||
1392 ((Flags & DINode::FlagTypePassByValue) &&
1393 (Flags & DINode::FlagTypePassByReference));
1396void Verifier::visitTemplateParams(
const MDNode &
N,
const Metadata &RawParams) {
1398 CheckDI(Params,
"invalid template params", &
N, &RawParams);
1405void Verifier::visitDICompositeType(
const DICompositeType &
N) {
1409 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type ||
1410 N.getTag() == dwarf::DW_TAG_structure_type ||
1411 N.getTag() == dwarf::DW_TAG_union_type ||
1412 N.getTag() == dwarf::DW_TAG_enumeration_type ||
1413 N.getTag() == dwarf::DW_TAG_class_type ||
1414 N.getTag() == dwarf::DW_TAG_variant_part ||
1415 N.getTag() == dwarf::DW_TAG_variant ||
1416 N.getTag() == dwarf::DW_TAG_namelist,
1421 N.getRawBaseType());
1424 "invalid composite elements", &
N,
N.getRawElements());
1426 N.getRawVTableHolder());
1428 "invalid reference flags", &
N);
1429 unsigned DIBlockByRefStruct = 1 << 4;
1430 CheckDI((
N.getFlags() & DIBlockByRefStruct) == 0,
1431 "DIBlockByRefStruct on DICompositeType is no longer supported", &
N);
1433 "DISubprogram contains null entry in `elements` field", &
N);
1436 const DINodeArray
Elements =
N.getElements();
1438 Elements[0]->getTag() == dwarf::DW_TAG_subrange_type,
1439 "invalid vector, expected one element of type subrange", &
N);
1442 if (
auto *Params =
N.getRawTemplateParams())
1443 visitTemplateParams(
N, *Params);
1445 if (
auto *
D =
N.getRawDiscriminator()) {
1447 "discriminator can only appear on variant part");
1450 if (
N.getRawDataLocation()) {
1451 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1452 "dataLocation can only appear in array type");
1455 if (
N.getRawAssociated()) {
1456 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1457 "associated can only appear in array type");
1460 if (
N.getRawAllocated()) {
1461 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1462 "allocated can only appear in array type");
1465 if (
N.getRawRank()) {
1466 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1467 "rank can only appear in array type");
1470 if (
N.getTag() == dwarf::DW_TAG_array_type) {
1471 CheckDI(
N.getRawBaseType(),
"array types must have a base type", &
N);
1474 auto *
Size =
N.getRawSizeInBits();
1477 "SizeInBits must be a constant or DIVariable or DIExpression");
1480void Verifier::visitDISubroutineType(
const DISubroutineType &
N) {
1481 CheckDI(
N.getTag() == dwarf::DW_TAG_subroutine_type,
"invalid tag", &
N);
1482 if (
auto *Types =
N.getRawTypeArray()) {
1484 for (
Metadata *Ty :
N.getTypeArray()->operands()) {
1485 CheckDI(
isType(Ty),
"invalid subroutine type ref", &
N, Types, Ty);
1489 "invalid reference flags", &
N);
1492void Verifier::visitDIFile(
const DIFile &
N) {
1493 CheckDI(
N.getTag() == dwarf::DW_TAG_file_type,
"invalid tag", &
N);
1494 std::optional<DIFile::ChecksumInfo<StringRef>> Checksum =
N.getChecksum();
1496 CheckDI(Checksum->Kind <= DIFile::ChecksumKind::CSK_Last,
1497 "invalid checksum kind", &
N);
1499 switch (Checksum->Kind) {
1510 CheckDI(Checksum->Value.size() ==
Size,
"invalid checksum length", &
N);
1512 "invalid checksum", &
N);
1516void Verifier::visitDICompileUnit(
const DICompileUnit &
N) {
1517 CheckDI(
N.isDistinct(),
"compile units must be distinct", &
N);
1518 CheckDI(
N.getTag() == dwarf::DW_TAG_compile_unit,
"invalid tag", &
N);
1524 CheckDI(!
N.getFile()->getFilename().empty(),
"invalid filename", &
N,
1528 "invalid emission kind", &
N);
1530 if (
auto *Array =
N.getRawEnumTypes()) {
1532 for (
Metadata *
Op :
N.getEnumTypes()->operands()) {
1534 CheckDI(Enum &&
Enum->getTag() == dwarf::DW_TAG_enumeration_type,
1535 "invalid enum type", &
N,
N.getEnumTypes(),
Op);
1538 if (
auto *Array =
N.getRawRetainedTypes()) {
1540 for (
Metadata *
Op :
N.getRetainedTypes()->operands()) {
1544 "invalid retained type", &
N,
Op);
1547 if (
auto *Array =
N.getRawGlobalVariables()) {
1549 for (
Metadata *
Op :
N.getGlobalVariables()->operands()) {
1551 "invalid global variable ref", &
N,
Op);
1554 if (
auto *Array =
N.getRawImportedEntities()) {
1556 for (
Metadata *
Op :
N.getImportedEntities()->operands()) {
1561 if (
auto *Array =
N.getRawMacros()) {
1570void Verifier::visitDISubprogram(
const DISubprogram &
N) {
1571 CheckDI(
N.getTag() == dwarf::DW_TAG_subprogram,
"invalid tag", &
N);
1573 if (
auto *
F =
N.getRawFile())
1576 CheckDI(
N.getLine() == 0,
"line specified with no file", &
N,
N.getLine());
1577 if (
auto *
T =
N.getRawType())
1579 CheckDI(
isType(
N.getRawContainingType()),
"invalid containing type", &
N,
1580 N.getRawContainingType());
1581 if (
auto *Params =
N.getRawTemplateParams())
1582 visitTemplateParams(
N, *Params);
1583 if (
auto *S =
N.getRawDeclaration())
1585 "invalid subprogram declaration", &
N, S);
1586 if (
auto *RawNode =
N.getRawRetainedNodes()) {
1588 CheckDI(Node,
"invalid retained nodes list", &
N, RawNode);
1590 CheckDI(
Op,
"nullptr in retained nodes", &
N, Node);
1592 auto True = [](
const Metadata *) {
return true; };
1593 auto False = [](
const Metadata *) {
return false; };
1594 bool IsTypeCorrect =
1595 DISubprogram::visitRetainedNode<bool>(
Op, True, True, True, False);
1597 "invalid retained nodes, expected DILocalVariable, DILabel or "
1605 "invalid retained nodes, retained node is not local", &
N, Node,
1608 RetainedNodeScope->getSubprogram() == &
N,
1609 "invalid retained nodes, retained node does not belong to subprogram",
1610 &
N, Node, RetainedNode, RetainedNodeScope);
1614 "invalid reference flags", &
N);
1616 auto *
Unit =
N.getRawUnit();
1617 if (
N.isDefinition()) {
1619 CheckDI(
N.isDistinct(),
"subprogram definitions must be distinct", &
N);
1620 CheckDI(Unit,
"subprogram definitions must have a compile unit", &
N);
1625 if (CT && CT->getRawIdentifier() &&
1626 M.getContext().isODRUniquingDebugTypes())
1628 "definition subprograms cannot be nested within DICompositeType "
1629 "when enabling ODR",
1633 CheckDI(!Unit,
"subprogram declarations must not have a compile unit", &
N);
1635 "subprogram declaration must not have a declaration field");
1638 if (
auto *RawThrownTypes =
N.getRawThrownTypes()) {
1640 CheckDI(ThrownTypes,
"invalid thrown types list", &
N, RawThrownTypes);
1646 if (
N.areAllCallsDescribed())
1648 "DIFlagAllCallsDescribed must be attached to a definition");
1651void Verifier::visitDILexicalBlockBase(
const DILexicalBlockBase &
N) {
1652 CheckDI(
N.getTag() == dwarf::DW_TAG_lexical_block,
"invalid tag", &
N);
1654 "invalid local scope", &
N,
N.getRawScope());
1656 CheckDI(
SP->isDefinition(),
"scope points into the type hierarchy", &
N);
1659void Verifier::visitDILexicalBlock(
const DILexicalBlock &
N) {
1660 visitDILexicalBlockBase(
N);
1663 "cannot have column info without line info", &
N);
1666void Verifier::visitDILexicalBlockFile(
const DILexicalBlockFile &
N) {
1667 visitDILexicalBlockBase(
N);
1670void Verifier::visitDICommonBlock(
const DICommonBlock &
N) {
1671 CheckDI(
N.getTag() == dwarf::DW_TAG_common_block,
"invalid tag", &
N);
1672 if (
auto *S =
N.getRawScope())
1674 if (
auto *S =
N.getRawDecl())
1678void Verifier::visitDINamespace(
const DINamespace &
N) {
1679 CheckDI(
N.getTag() == dwarf::DW_TAG_namespace,
"invalid tag", &
N);
1680 if (
auto *S =
N.getRawScope())
1684void Verifier::visitDIMacro(
const DIMacro &
N) {
1687 "invalid macinfo type", &
N);
1688 CheckDI(!
N.getName().empty(),
"anonymous macro", &
N);
1689 if (!
N.getValue().empty()) {
1690 assert(
N.getValue().data()[0] !=
' ' &&
"Macro value has a space prefix");
1694void Verifier::visitDIMacroFile(
const DIMacroFile &
N) {
1696 "invalid macinfo type", &
N);
1697 if (
auto *
F =
N.getRawFile())
1700 if (
auto *Array =
N.getRawElements()) {
1702 for (
Metadata *
Op :
N.getElements()->operands()) {
1708void Verifier::visitDIModule(
const DIModule &
N) {
1709 CheckDI(
N.getTag() == dwarf::DW_TAG_module,
"invalid tag", &
N);
1710 CheckDI(!
N.getName().empty(),
"anonymous module", &
N);
1713void Verifier::visitDITemplateParameter(
const DITemplateParameter &
N) {
1717void Verifier::visitDITemplateTypeParameter(
const DITemplateTypeParameter &
N) {
1718 visitDITemplateParameter(
N);
1720 CheckDI(
N.getTag() == dwarf::DW_TAG_template_type_parameter,
"invalid tag",
1724void Verifier::visitDITemplateValueParameter(
1725 const DITemplateValueParameter &
N) {
1726 visitDITemplateParameter(
N);
1728 CheckDI(
N.getTag() == dwarf::DW_TAG_template_value_parameter ||
1729 N.getTag() == dwarf::DW_TAG_GNU_template_template_param ||
1730 N.getTag() == dwarf::DW_TAG_GNU_template_parameter_pack,
1734void Verifier::visitDIVariable(
const DIVariable &
N) {
1735 if (
auto *S =
N.getRawScope())
1737 if (
auto *
F =
N.getRawFile())
1741void Verifier::visitDIGlobalVariable(
const DIGlobalVariable &
N) {
1745 CheckDI(
N.getTag() == dwarf::DW_TAG_variable,
"invalid tag", &
N);
1748 if (
N.isDefinition())
1749 CheckDI(
N.getType(),
"missing global variable type", &
N);
1750 if (
auto *Member =
N.getRawStaticDataMemberDeclaration()) {
1752 "invalid static data member declaration", &
N, Member);
1756void Verifier::visitDILocalVariable(
const DILocalVariable &
N) {
1761 CheckDI(
N.getTag() == dwarf::DW_TAG_variable,
"invalid tag", &
N);
1763 "local variable requires a valid scope", &
N,
N.getRawScope());
1764 if (
auto Ty =
N.getType())
1768void Verifier::visitDIAssignID(
const DIAssignID &
N) {
1769 CheckDI(!
N.getNumOperands(),
"DIAssignID has no arguments", &
N);
1770 CheckDI(
N.isDistinct(),
"DIAssignID must be distinct", &
N);
1773void Verifier::visitDILabel(
const DILabel &
N) {
1774 if (
auto *S =
N.getRawScope())
1776 if (
auto *
F =
N.getRawFile())
1779 CheckDI(
N.getTag() == dwarf::DW_TAG_label,
"invalid tag", &
N);
1781 "label requires a valid scope", &
N,
N.getRawScope());
1784void Verifier::visitDIExpression(
const DIExpression &
N) {
1785 CheckDI(
N.isValid(),
"invalid expression", &
N);
1788void Verifier::visitDIGlobalVariableExpression(
1789 const DIGlobalVariableExpression &GVE) {
1792 visitDIGlobalVariable(*Var);
1794 visitDIExpression(*Expr);
1795 if (
auto Fragment = Expr->getFragmentInfo())
1796 verifyFragmentExpression(*GVE.
getVariable(), *Fragment, &GVE);
1800void Verifier::visitDIObjCProperty(
const DIObjCProperty &
N) {
1801 CheckDI(
N.getTag() == dwarf::DW_TAG_APPLE_property,
"invalid tag", &
N);
1802 if (
auto *
T =
N.getRawType())
1804 if (
auto *
F =
N.getRawFile())
1808void Verifier::visitDIImportedEntity(
const DIImportedEntity &
N) {
1809 CheckDI(
N.getTag() == dwarf::DW_TAG_imported_module ||
1810 N.getTag() == dwarf::DW_TAG_imported_declaration,
1812 if (
auto *S =
N.getRawScope())
1818void Verifier::visitComdat(
const Comdat &
C) {
1821 if (
TT.isOSBinFormatCOFF())
1822 if (
const GlobalValue *GV =
M.getNamedValue(
C.getName()))
1827void Verifier::visitModuleIdents() {
1828 const NamedMDNode *Idents =
M.getNamedMetadata(
"llvm.ident");
1834 for (
const MDNode *
N : Idents->
operands()) {
1835 Check(
N->getNumOperands() == 1,
1836 "incorrect number of operands in llvm.ident metadata",
N);
1838 (
"invalid value for llvm.ident metadata entry operand"
1839 "(the operand should be a string)"),
1844void Verifier::visitModuleCommandLines() {
1845 const NamedMDNode *CommandLines =
M.getNamedMetadata(
"llvm.commandline");
1852 for (
const MDNode *
N : CommandLines->
operands()) {
1853 Check(
N->getNumOperands() == 1,
1854 "incorrect number of operands in llvm.commandline metadata",
N);
1856 (
"invalid value for llvm.commandline metadata entry operand"
1857 "(the operand should be a string)"),
1862void Verifier::visitModuleErrnoTBAA() {
1863 const NamedMDNode *ErrnoTBAA =
M.getNamedMetadata(
"llvm.errno.tbaa");
1868 "llvm.errno.tbaa must have at least one operand", ErrnoTBAA);
1870 for (
const MDNode *
N : ErrnoTBAA->
operands())
1874void Verifier::visitModuleFlags() {
1875 const NamedMDNode *
Flags =
M.getModuleFlagsMetadata();
1879 DenseMap<const MDString*, const MDNode*> SeenIDs;
1881 uint64_t PAuthABIPlatform = -1;
1882 uint64_t PAuthABIVersion = -1;
1883 for (
const MDNode *MDN :
Flags->operands()) {
1884 visitModuleFlag(MDN, SeenIDs, Requirements);
1885 if (MDN->getNumOperands() != 3)
1888 if (FlagName->getString() ==
"aarch64-elf-pauthabi-platform") {
1889 if (
const auto *PAP =
1891 PAuthABIPlatform = PAP->getZExtValue();
1892 }
else if (FlagName->getString() ==
"aarch64-elf-pauthabi-version") {
1893 if (
const auto *PAV =
1895 PAuthABIVersion = PAV->getZExtValue();
1900 if ((PAuthABIPlatform == uint64_t(-1)) != (PAuthABIVersion == uint64_t(-1)))
1901 CheckFailed(
"either both or no 'aarch64-elf-pauthabi-platform' and "
1902 "'aarch64-elf-pauthabi-version' module flags must be present");
1905 for (
const MDNode *Requirement : Requirements) {
1907 const Metadata *ReqValue = Requirement->getOperand(1);
1909 const MDNode *
Op = SeenIDs.
lookup(Flag);
1911 CheckFailed(
"invalid requirement on flag, flag is not present in module",
1916 if (
Op->getOperand(2) != ReqValue) {
1917 CheckFailed((
"invalid requirement on flag, "
1918 "flag does not have the required value"),
1926Verifier::visitModuleFlag(
const MDNode *
Op,
1927 DenseMap<const MDString *, const MDNode *> &SeenIDs,
1928 SmallVectorImpl<const MDNode *> &Requirements) {
1932 "incorrect number of operands in module flag",
Op);
1933 Module::ModFlagBehavior MFB;
1934 if (!Module::isValidModFlagBehavior(
Op->getOperand(0), MFB)) {
1936 "invalid behavior operand in module flag (expected constant integer)",
1939 "invalid behavior operand in module flag (unexpected constant)",
1943 Check(
ID,
"invalid ID operand in module flag (expected metadata string)",
1949 case Module::Warning:
1950 case Module::Override:
1956 Check(V &&
V->getValue().isNonNegative(),
1957 "invalid value for 'min' module flag (expected constant non-negative "
1965 "invalid value for 'max' module flag (expected constant integer)",
1970 case Module::Require: {
1975 "invalid value for 'require' module flag (expected metadata pair)",
1978 (
"invalid value for 'require' module flag "
1979 "(first value operand should be a string)"),
1980 Value->getOperand(0));
1988 case Module::Append:
1989 case Module::AppendUnique: {
1992 "invalid value for 'append'-type module flag "
1993 "(expected a metadata node)",
2000 if (MFB != Module::Require) {
2003 "module flag identifiers must be unique (or of 'require' type)",
ID);
2006 if (
ID->getString() ==
"wchar_size") {
2009 Check(
Value,
"wchar_size metadata requires constant integer argument");
2012 if (
ID->getString() ==
"Linker Options") {
2016 Check(
M.getNamedMetadata(
"llvm.linker.options"),
2017 "'Linker Options' named metadata no longer supported");
2020 if (
ID->getString() ==
"SemanticInterposition") {
2021 ConstantInt *
Value =
2024 "SemanticInterposition metadata requires constant integer argument");
2027 if (
ID->getString() ==
"CG Profile") {
2028 for (
const MDOperand &MDO :
cast<MDNode>(
Op->getOperand(2))->operands())
2029 visitModuleFlagCGProfileEntry(MDO);
2033void Verifier::visitModuleFlagCGProfileEntry(
const MDOperand &MDO) {
2034 auto CheckFunction = [&](
const MDOperand &FuncMDO) {
2039 "expected a Function or null", FuncMDO);
2042 Check(Node &&
Node->getNumOperands() == 3,
"expected a MDNode triple", MDO);
2043 CheckFunction(
Node->getOperand(0));
2044 CheckFunction(
Node->getOperand(1));
2047 "expected an integer constant",
Node->getOperand(2));
2050void Verifier::verifyAttributeTypes(AttributeSet Attrs,
const Value *V) {
2053 if (
A.isStringAttribute()) {
2054#define GET_ATTR_NAMES
2055#define ATTRIBUTE_ENUM(ENUM_NAME, DISPLAY_NAME)
2056#define ATTRIBUTE_STRBOOL(ENUM_NAME, DISPLAY_NAME) \
2057 if (A.getKindAsString() == #DISPLAY_NAME) { \
2058 auto V = A.getValueAsString(); \
2059 if (!(V.empty() || V == "true" || V == "false")) \
2060 CheckFailed("invalid value for '" #DISPLAY_NAME "' attribute: " + V + \
2064#include "llvm/IR/Attributes.inc"
2068 if (
A.isIntAttribute() != Attribute::isIntAttrKind(
A.getKindAsEnum())) {
2069 CheckFailed(
"Attribute '" +
A.getAsString() +
"' should have an Argument",
2078void Verifier::verifyParameterAttrs(AttributeSet Attrs,
Type *Ty,
2080 if (!
Attrs.hasAttributes())
2083 verifyAttributeTypes(Attrs, V);
2086 Check(Attr.isStringAttribute() ||
2087 Attribute::canUseAsParamAttr(Attr.getKindAsEnum()),
2088 "Attribute '" + Attr.getAsString() +
"' does not apply to parameters",
2091 if (
Attrs.hasAttribute(Attribute::ImmArg)) {
2092 unsigned AttrCount =
2093 Attrs.getNumAttributes() -
Attrs.hasAttribute(Attribute::Range);
2094 Check(AttrCount == 1,
2095 "Attribute 'immarg' is incompatible with other attributes except the "
2096 "'range' attribute",
2102 unsigned AttrCount = 0;
2103 AttrCount +=
Attrs.hasAttribute(Attribute::ByVal);
2104 AttrCount +=
Attrs.hasAttribute(Attribute::InAlloca);
2105 AttrCount +=
Attrs.hasAttribute(Attribute::Preallocated);
2106 AttrCount +=
Attrs.hasAttribute(Attribute::StructRet) ||
2107 Attrs.hasAttribute(Attribute::InReg);
2108 AttrCount +=
Attrs.hasAttribute(Attribute::Nest);
2109 AttrCount +=
Attrs.hasAttribute(Attribute::ByRef);
2110 Check(AttrCount <= 1,
2111 "Attributes 'byval', 'inalloca', 'preallocated', 'inreg', 'nest', "
2112 "'byref', and 'sret' are incompatible!",
2115 Check(!(
Attrs.hasAttribute(Attribute::InAlloca) &&
2116 Attrs.hasAttribute(Attribute::ReadOnly)),
2118 "'inalloca and readonly' are incompatible!",
2121 Check(!(
Attrs.hasAttribute(Attribute::StructRet) &&
2122 Attrs.hasAttribute(Attribute::Returned)),
2124 "'sret and returned' are incompatible!",
2127 Check(!(
Attrs.hasAttribute(Attribute::ZExt) &&
2128 Attrs.hasAttribute(Attribute::SExt)),
2130 "'zeroext and signext' are incompatible!",
2133 Check(!(
Attrs.hasAttribute(Attribute::ReadNone) &&
2134 Attrs.hasAttribute(Attribute::ReadOnly)),
2136 "'readnone and readonly' are incompatible!",
2139 Check(!(
Attrs.hasAttribute(Attribute::ReadNone) &&
2140 Attrs.hasAttribute(Attribute::WriteOnly)),
2142 "'readnone and writeonly' are incompatible!",
2145 Check(!(
Attrs.hasAttribute(Attribute::ReadOnly) &&
2146 Attrs.hasAttribute(Attribute::WriteOnly)),
2148 "'readonly and writeonly' are incompatible!",
2151 Check(!(
Attrs.hasAttribute(Attribute::NoInline) &&
2152 Attrs.hasAttribute(Attribute::AlwaysInline)),
2154 "'noinline and alwaysinline' are incompatible!",
2157 Check(!(
Attrs.hasAttribute(Attribute::Writable) &&
2158 Attrs.hasAttribute(Attribute::ReadNone)),
2159 "Attributes writable and readnone are incompatible!", V);
2161 Check(!(
Attrs.hasAttribute(Attribute::Writable) &&
2162 Attrs.hasAttribute(Attribute::ReadOnly)),
2163 "Attributes writable and readonly are incompatible!", V);
2165 AttributeMask IncompatibleAttrs = AttributeFuncs::typeIncompatible(Ty, Attrs);
2167 if (!Attr.isStringAttribute() &&
2168 IncompatibleAttrs.
contains(Attr.getKindAsEnum())) {
2169 CheckFailed(
"Attribute '" + Attr.getAsString() +
2170 "' applied to incompatible type!", V);
2176 if (
Attrs.hasAttribute(Attribute::Alignment)) {
2177 Align AttrAlign =
Attrs.getAlignment().valueOrOne();
2178 Check(AttrAlign.
value() <= Value::MaximumAlignment,
2179 "huge alignment values are unsupported", V);
2181 if (
Attrs.hasAttribute(Attribute::ByVal)) {
2183 SmallPtrSet<Type *, 4> Visited;
2185 "Attribute 'byval' does not support unsized types!", V);
2189 "'byval' argument has illegal target extension type", V);
2190 Check(
DL.getTypeAllocSize(ByValTy).getKnownMinValue() < (1ULL << 32),
2191 "huge 'byval' arguments are unsupported", V);
2193 if (
Attrs.hasAttribute(Attribute::ByRef)) {
2194 SmallPtrSet<Type *, 4> Visited;
2195 Check(
Attrs.getByRefType()->isSized(&Visited),
2196 "Attribute 'byref' does not support unsized types!", V);
2197 Check(
DL.getTypeAllocSize(
Attrs.getByRefType()).getKnownMinValue() <
2199 "huge 'byref' arguments are unsupported", V);
2201 if (
Attrs.hasAttribute(Attribute::InAlloca)) {
2202 SmallPtrSet<Type *, 4> Visited;
2203 Check(
Attrs.getInAllocaType()->isSized(&Visited),
2204 "Attribute 'inalloca' does not support unsized types!", V);
2205 Check(
DL.getTypeAllocSize(
Attrs.getInAllocaType()).getKnownMinValue() <
2207 "huge 'inalloca' arguments are unsupported", V);
2209 if (
Attrs.hasAttribute(Attribute::Preallocated)) {
2210 SmallPtrSet<Type *, 4> Visited;
2211 Check(
Attrs.getPreallocatedType()->isSized(&Visited),
2212 "Attribute 'preallocated' does not support unsized types!", V);
2214 DL.getTypeAllocSize(
Attrs.getPreallocatedType()).getKnownMinValue() <
2216 "huge 'preallocated' arguments are unsupported", V);
2220 if (
Attrs.hasAttribute(Attribute::Initializes)) {
2221 auto Inits =
Attrs.getAttribute(Attribute::Initializes).getInitializes();
2222 Check(!Inits.empty(),
"Attribute 'initializes' does not support empty list",
2225 "Attribute 'initializes' does not support unordered ranges", V);
2228 if (
Attrs.hasAttribute(Attribute::NoFPClass)) {
2229 uint64_t Val =
Attrs.getAttribute(Attribute::NoFPClass).getValueAsInt();
2230 Check(Val != 0,
"Attribute 'nofpclass' must have at least one test bit set",
2233 "Invalid value for 'nofpclass' test mask", V);
2235 if (
Attrs.hasAttribute(Attribute::Range)) {
2236 const ConstantRange &CR =
2237 Attrs.getAttribute(Attribute::Range).getValueAsConstantRange();
2239 "Range bit width must match type bit width!", V);
2243void Verifier::checkUnsignedBaseTenFuncAttr(AttributeList Attrs, StringRef Attr,
2245 if (
Attrs.hasFnAttr(Attr)) {
2246 StringRef S =
Attrs.getFnAttr(Attr).getValueAsString();
2249 CheckFailed(
"\"" + Attr +
"\" takes an unsigned integer: " + S, V);
2255void Verifier::verifyFunctionAttrs(FunctionType *FT, AttributeList Attrs,
2256 const Value *V,
bool IsIntrinsic,
2258 if (
Attrs.isEmpty())
2261 if (AttributeListsVisited.
insert(
Attrs.getRawPointer()).second) {
2263 "Attribute list does not match Module context!", &Attrs, V);
2264 for (
const auto &AttrSet : Attrs) {
2265 Check(!AttrSet.hasAttributes() || AttrSet.hasParentContext(
Context),
2266 "Attribute set does not match Module context!", &AttrSet, V);
2267 for (
const auto &
A : AttrSet) {
2269 "Attribute does not match Module context!", &
A, V);
2274 bool SawNest =
false;
2275 bool SawReturned =
false;
2276 bool SawSRet =
false;
2277 bool SawSwiftSelf =
false;
2278 bool SawSwiftAsync =
false;
2279 bool SawSwiftError =
false;
2282 AttributeSet RetAttrs =
Attrs.getRetAttrs();
2285 Attribute::canUseAsRetAttr(
RetAttr.getKindAsEnum()),
2286 "Attribute '" +
RetAttr.getAsString() +
2287 "' does not apply to function return values",
2290 unsigned MaxParameterWidth = 0;
2291 auto GetMaxParameterWidth = [&MaxParameterWidth](
Type *Ty) {
2294 unsigned Size = VT->getPrimitiveSizeInBits().getFixedValue();
2295 if (
Size > MaxParameterWidth)
2296 MaxParameterWidth =
Size;
2300 GetMaxParameterWidth(FT->getReturnType());
2301 verifyParameterAttrs(RetAttrs, FT->getReturnType(), V);
2304 for (
unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
2305 Type *Ty = FT->getParamType(i);
2306 AttributeSet ArgAttrs =
Attrs.getParamAttrs(i);
2310 "immarg attribute only applies to intrinsics", V);
2313 "Attribute 'elementtype' can only be applied to intrinsics"
2318 verifyParameterAttrs(ArgAttrs, Ty, V);
2319 GetMaxParameterWidth(Ty);
2322 Check(!SawNest,
"More than one parameter has attribute nest!", V);
2327 Check(!SawReturned,
"More than one parameter has attribute returned!", V);
2329 "Incompatible argument and return types for 'returned' attribute",
2335 Check(!SawSRet,
"Cannot have multiple 'sret' parameters!", V);
2336 Check(i == 0 || i == 1,
2337 "Attribute 'sret' is not on first or second parameter!", V);
2342 Check(!SawSwiftSelf,
"Cannot have multiple 'swiftself' parameters!", V);
2343 SawSwiftSelf =
true;
2347 Check(!SawSwiftAsync,
"Cannot have multiple 'swiftasync' parameters!", V);
2348 SawSwiftAsync =
true;
2352 Check(!SawSwiftError,
"Cannot have multiple 'swifterror' parameters!", V);
2353 SawSwiftError =
true;
2357 Check(i == FT->getNumParams() - 1,
2358 "inalloca isn't on the last parameter!", V);
2362 if (!
Attrs.hasFnAttrs())
2365 verifyAttributeTypes(
Attrs.getFnAttrs(), V);
2368 Attribute::canUseAsFnAttr(
FnAttr.getKindAsEnum()),
2369 "Attribute '" +
FnAttr.getAsString() +
2370 "' does not apply to functions!",
2373 Check(!(
Attrs.hasFnAttr(Attribute::NoInline) &&
2374 Attrs.hasFnAttr(Attribute::AlwaysInline)),
2375 "Attributes 'noinline and alwaysinline' are incompatible!", V);
2377 if (
Attrs.hasFnAttr(Attribute::OptimizeNone)) {
2379 "Attribute 'optnone' requires 'noinline'!", V);
2381 Check(!
Attrs.hasFnAttr(Attribute::OptimizeForSize),
2382 "Attributes 'optsize and optnone' are incompatible!", V);
2385 "Attributes 'minsize and optnone' are incompatible!", V);
2387 Check(!
Attrs.hasFnAttr(Attribute::OptimizeForDebugging),
2388 "Attributes 'optdebug and optnone' are incompatible!", V);
2391 Check(!(
Attrs.hasFnAttr(Attribute::SanitizeRealtime) &&
2392 Attrs.hasFnAttr(Attribute::SanitizeRealtimeBlocking)),
2394 "'sanitize_realtime and sanitize_realtime_blocking' are incompatible!",
2397 if (
Attrs.hasFnAttr(Attribute::OptimizeForDebugging)) {
2398 Check(!
Attrs.hasFnAttr(Attribute::OptimizeForSize),
2399 "Attributes 'optsize and optdebug' are incompatible!", V);
2402 "Attributes 'minsize and optdebug' are incompatible!", V);
2405 Check(!
Attrs.hasAttrSomewhere(Attribute::Writable) ||
2406 isModSet(
Attrs.getMemoryEffects().getModRef(IRMemLocation::ArgMem)),
2407 "Attribute writable and memory without argmem: write are incompatible!",
2410 if (
Attrs.hasFnAttr(
"aarch64_pstate_sm_enabled")) {
2411 Check(!
Attrs.hasFnAttr(
"aarch64_pstate_sm_compatible"),
2412 "Attributes 'aarch64_pstate_sm_enabled and "
2413 "aarch64_pstate_sm_compatible' are incompatible!",
2417 Check((
Attrs.hasFnAttr(
"aarch64_new_za") +
Attrs.hasFnAttr(
"aarch64_in_za") +
2418 Attrs.hasFnAttr(
"aarch64_inout_za") +
2419 Attrs.hasFnAttr(
"aarch64_out_za") +
2420 Attrs.hasFnAttr(
"aarch64_preserves_za") +
2421 Attrs.hasFnAttr(
"aarch64_za_state_agnostic")) <= 1,
2422 "Attributes 'aarch64_new_za', 'aarch64_in_za', 'aarch64_out_za', "
2423 "'aarch64_inout_za', 'aarch64_preserves_za' and "
2424 "'aarch64_za_state_agnostic' are mutually exclusive",
2428 Attrs.hasFnAttr(
"aarch64_in_zt0") +
2429 Attrs.hasFnAttr(
"aarch64_inout_zt0") +
2430 Attrs.hasFnAttr(
"aarch64_out_zt0") +
2431 Attrs.hasFnAttr(
"aarch64_preserves_zt0") +
2432 Attrs.hasFnAttr(
"aarch64_za_state_agnostic")) <= 1,
2433 "Attributes 'aarch64_new_zt0', 'aarch64_in_zt0', 'aarch64_out_zt0', "
2434 "'aarch64_inout_zt0', 'aarch64_preserves_zt0' and "
2435 "'aarch64_za_state_agnostic' are mutually exclusive",
2438 if (
Attrs.hasFnAttr(Attribute::JumpTable)) {
2441 "Attribute 'jumptable' requires 'unnamed_addr'", V);
2444 if (
auto Args =
Attrs.getFnAttrs().getAllocSizeArgs()) {
2445 auto CheckParam = [&](StringRef
Name,
unsigned ParamNo) {
2446 if (ParamNo >= FT->getNumParams()) {
2447 CheckFailed(
"'allocsize' " + Name +
" argument is out of bounds", V);
2451 if (!FT->getParamType(ParamNo)->isIntegerTy()) {
2452 CheckFailed(
"'allocsize' " + Name +
2453 " argument must refer to an integer parameter",
2461 if (!CheckParam(
"element size",
Args->first))
2464 if (
Args->second && !CheckParam(
"number of elements", *
Args->second))
2468 if (
Attrs.hasFnAttr(Attribute::AllocKind)) {
2471 K & (AllocFnKind::Alloc | AllocFnKind::Realloc | AllocFnKind::Free);
2473 {AllocFnKind::Alloc, AllocFnKind::Realloc, AllocFnKind::Free},
2476 "'allockind()' requires exactly one of alloc, realloc, and free");
2477 if ((
Type == AllocFnKind::Free) &&
2478 ((K & (AllocFnKind::Uninitialized | AllocFnKind::Zeroed |
2479 AllocFnKind::Aligned)) != AllocFnKind::Unknown))
2480 CheckFailed(
"'allockind(\"free\")' doesn't allow uninitialized, zeroed, "
2481 "or aligned modifiers.");
2482 AllocFnKind ZeroedUninit = AllocFnKind::Uninitialized | AllocFnKind::Zeroed;
2483 if ((K & ZeroedUninit) == ZeroedUninit)
2484 CheckFailed(
"'allockind()' can't be both zeroed and uninitialized");
2488 StringRef S =
A.getValueAsString();
2489 Check(!S.
empty(),
"'alloc-variant-zeroed' must not be empty");
2497 "'alloc-variant-zeroed' must name a function belonging to the "
2498 "same 'alloc-family'");
2501 (
Variant->getFnAttribute(Attribute::AllocKind).getAllocKind() &
2502 AllocFnKind::Zeroed) != AllocFnKind::Unknown,
2503 "'alloc-variant-zeroed' must name a function with "
2504 "'allockind(\"zeroed\")'");
2507 "'alloc-variant-zeroed' must name a function with the same "
2512 if (
Attrs.hasFnAttr(Attribute::VScaleRange)) {
2513 unsigned VScaleMin =
Attrs.getFnAttrs().getVScaleRangeMin();
2515 CheckFailed(
"'vscale_range' minimum must be greater than 0", V);
2517 CheckFailed(
"'vscale_range' minimum must be power-of-two value", V);
2518 std::optional<unsigned> VScaleMax =
Attrs.getFnAttrs().getVScaleRangeMax();
2519 if (VScaleMax && VScaleMin > VScaleMax)
2520 CheckFailed(
"'vscale_range' minimum cannot be greater than maximum", V);
2522 CheckFailed(
"'vscale_range' maximum must be power-of-two value", V);
2525 if (
Attribute FPAttr =
Attrs.getFnAttr(
"frame-pointer"); FPAttr.isValid()) {
2526 StringRef
FP = FPAttr.getValueAsString();
2527 if (
FP !=
"all" &&
FP !=
"non-leaf" &&
FP !=
"none" &&
FP !=
"reserved" &&
2528 FP !=
"non-leaf-no-reserve")
2529 CheckFailed(
"invalid value for 'frame-pointer' attribute: " +
FP, V);
2532 checkUnsignedBaseTenFuncAttr(Attrs,
"patchable-function-prefix", V);
2533 checkUnsignedBaseTenFuncAttr(Attrs,
"patchable-function-entry", V);
2534 if (
Attrs.hasFnAttr(
"patchable-function-entry-section"))
2535 Check(!
Attrs.getFnAttr(
"patchable-function-entry-section")
2538 "\"patchable-function-entry-section\" must not be empty");
2539 checkUnsignedBaseTenFuncAttr(Attrs,
"warn-stack-size", V);
2541 if (
auto A =
Attrs.getFnAttr(
"sign-return-address");
A.isValid()) {
2542 StringRef S =
A.getValueAsString();
2543 if (S !=
"none" && S !=
"all" && S !=
"non-leaf")
2544 CheckFailed(
"invalid value for 'sign-return-address' attribute: " + S, V);
2547 if (
auto A =
Attrs.getFnAttr(
"sign-return-address-key");
A.isValid()) {
2548 StringRef S =
A.getValueAsString();
2549 if (S !=
"a_key" && S !=
"b_key")
2550 CheckFailed(
"invalid value for 'sign-return-address-key' attribute: " + S,
2552 if (
auto AA =
Attrs.getFnAttr(
"sign-return-address"); !AA.isValid()) {
2554 "'sign-return-address-key' present without `sign-return-address`");
2558 if (
auto A =
Attrs.getFnAttr(
"branch-target-enforcement");
A.isValid()) {
2559 StringRef S =
A.getValueAsString();
2560 if (S !=
"" && S !=
"true" && S !=
"false")
2562 "invalid value for 'branch-target-enforcement' attribute: " + S, V);
2565 if (
auto A =
Attrs.getFnAttr(
"branch-protection-pauth-lr");
A.isValid()) {
2566 StringRef S =
A.getValueAsString();
2567 if (S !=
"" && S !=
"true" && S !=
"false")
2569 "invalid value for 'branch-protection-pauth-lr' attribute: " + S, V);
2572 if (
auto A =
Attrs.getFnAttr(
"guarded-control-stack");
A.isValid()) {
2573 StringRef S =
A.getValueAsString();
2574 if (S !=
"" && S !=
"true" && S !=
"false")
2575 CheckFailed(
"invalid value for 'guarded-control-stack' attribute: " + S,
2579 if (
auto A =
Attrs.getFnAttr(
"vector-function-abi-variant");
A.isValid()) {
2580 StringRef S =
A.getValueAsString();
2583 CheckFailed(
"invalid name for a VFABI variant: " + S, V);
2586 if (
auto A =
Attrs.getFnAttr(
"denormal-fp-math");
A.isValid()) {
2587 StringRef S =
A.getValueAsString();
2589 CheckFailed(
"invalid value for 'denormal-fp-math' attribute: " + S, V);
2592 if (
auto A =
Attrs.getFnAttr(
"denormal-fp-math-f32");
A.isValid()) {
2593 StringRef S =
A.getValueAsString();
2595 CheckFailed(
"invalid value for 'denormal-fp-math-f32' attribute: " + S,
2599 if (
auto A =
Attrs.getFnAttr(
"modular-format");
A.isValid()) {
2600 StringRef S =
A.getValueAsString();
2604 "modular-format attribute requires at least 5 arguments", V);
2605 unsigned FirstArgIdx;
2606 Check(!Args[2].getAsInteger(10, FirstArgIdx),
2607 "modular-format attribute first arg index is not an integer", V);
2608 unsigned UpperBound = FT->getNumParams() + (FT->isVarArg() ? 1 : 0);
2609 Check(FirstArgIdx > 0 && FirstArgIdx <= UpperBound,
2610 "modular-format attribute first arg index is out of bounds", V);
2613void Verifier::verifyUnknownProfileMetadata(MDNode *MD) {
2615 "'unknown' !prof should have a single additional operand", MD);
2618 "'unknown' !prof should have an additional operand of type "
2621 "the 'unknown' !prof operand should not be an empty string");
2624void Verifier::verifyFunctionMetadata(
2625 ArrayRef<std::pair<unsigned, MDNode *>> MDs) {
2626 for (
const auto &Pair : MDs) {
2627 if (Pair.first == LLVMContext::MD_prof) {
2628 MDNode *MD = Pair.second;
2630 "!prof annotations should have no less than 2 operands", MD);
2635 verifyUnknownProfileMetadata(MD);
2640 Check(MD->
getOperand(0) !=
nullptr,
"first operand should not be null",
2643 "expected string with name of the !prof annotation", MD);
2648 "first operand should be 'function_entry_count'"
2649 " or 'synthetic_function_entry_count'",
2653 Check(MD->
getOperand(1) !=
nullptr,
"second operand should not be null",
2656 "expected integer argument to function_entry_count", MD);
2657 }
else if (Pair.first == LLVMContext::MD_kcfi_type) {
2658 MDNode *MD = Pair.second;
2660 "!kcfi_type must have exactly one operand", MD);
2661 Check(MD->
getOperand(0) !=
nullptr,
"!kcfi_type operand must not be null",
2664 "expected a constant operand for !kcfi_type", MD);
2667 "expected a constant integer operand for !kcfi_type", MD);
2669 "expected a 32-bit integer constant operand for !kcfi_type", MD);
2674void Verifier::visitConstantExprsRecursively(
const Constant *EntryC) {
2675 if (!ConstantExprVisited.
insert(EntryC).second)
2679 Stack.push_back(EntryC);
2681 while (!
Stack.empty()) {
2686 visitConstantExpr(CE);
2689 visitConstantPtrAuth(CPA);
2694 Check(GV->
getParent() == &M,
"Referencing global in another module!",
2700 for (
const Use &U :
C->operands()) {
2704 if (!ConstantExprVisited.
insert(OpC).second)
2706 Stack.push_back(OpC);
2711void Verifier::visitConstantExpr(
const ConstantExpr *CE) {
2712 if (
CE->getOpcode() == Instruction::BitCast)
2715 "Invalid bitcast", CE);
2716 else if (
CE->getOpcode() == Instruction::PtrToAddr)
2717 checkPtrToAddr(
CE->getOperand(0)->getType(),
CE->getType(), *CE);
2720void Verifier::visitConstantPtrAuth(
const ConstantPtrAuth *CPA) {
2722 "signed ptrauth constant base pointer must have pointer type");
2725 "signed ptrauth constant must have same type as its base pointer");
2728 "signed ptrauth constant key must be i32 constant integer");
2731 "signed ptrauth constant address discriminator must be a pointer");
2734 "signed ptrauth constant discriminator must be i64 constant integer");
2737bool Verifier::verifyAttributeCount(AttributeList Attrs,
unsigned Params) {
2740 return Attrs.getNumAttrSets() <= Params + 2;
2743void Verifier::verifyInlineAsmCall(
const CallBase &
Call) {
2746 unsigned LabelNo = 0;
2747 for (
const InlineAsm::ConstraintInfo &CI :
IA->ParseConstraints()) {
2757 if (CI.isIndirect) {
2760 "Operand for indirect constraint must have pointer type", &
Call);
2763 "Operand for indirect constraint must have elementtype attribute",
2767 "Elementtype attribute can only be applied for indirect "
2776 Check(LabelNo == CallBr->getNumIndirectDests(),
2777 "Number of label constraints does not match number of callbr dests",
2780 Check(LabelNo == 0,
"Label constraints can only be used with callbr",
2786void Verifier::verifyStatepoint(
const CallBase &
Call) {
2791 "gc.statepoint must read and write all memory to preserve "
2792 "reordering restrictions required by safepoint semantics",
2795 const int64_t NumPatchBytes =
2798 Check(NumPatchBytes >= 0,
2799 "gc.statepoint number of patchable bytes must be "
2804 Check(TargetElemType,
2805 "gc.statepoint callee argument must have elementtype attribute",
Call);
2807 Check(TargetFuncType,
2808 "gc.statepoint callee elementtype must be function type",
Call);
2811 Check(NumCallArgs >= 0,
2812 "gc.statepoint number of arguments to underlying call "
2815 const int NumParams = (int)TargetFuncType->getNumParams();
2816 if (TargetFuncType->isVarArg()) {
2817 Check(NumCallArgs >= NumParams,
2818 "gc.statepoint mismatch in number of vararg call args",
Call);
2821 Check(TargetFuncType->getReturnType()->isVoidTy(),
2822 "gc.statepoint doesn't support wrapping non-void "
2823 "vararg functions yet",
2826 Check(NumCallArgs == NumParams,
2827 "gc.statepoint mismatch in number of call args",
Call);
2829 const uint64_t
Flags
2831 Check((Flags & ~(uint64_t)StatepointFlags::MaskAll) == 0,
2832 "unknown flag used in gc.statepoint flags argument",
Call);
2837 for (
int i = 0; i < NumParams; i++) {
2838 Type *ParamType = TargetFuncType->getParamType(i);
2840 Check(ArgType == ParamType,
2841 "gc.statepoint call argument does not match wrapped "
2845 if (TargetFuncType->isVarArg()) {
2846 AttributeSet ArgAttrs =
Attrs.getParamAttrs(5 + i);
2848 "Attribute 'sret' cannot be used for vararg call arguments!",
Call);
2852 const int EndCallArgsInx = 4 + NumCallArgs;
2856 "gc.statepoint number of transition arguments "
2857 "must be constant integer",
2859 const int NumTransitionArgs =
2861 Check(NumTransitionArgs == 0,
2862 "gc.statepoint w/inline transition bundle is deprecated",
Call);
2863 const int EndTransitionArgsInx = EndCallArgsInx + 1 + NumTransitionArgs;
2867 "gc.statepoint number of deoptimization arguments "
2868 "must be constant integer",
2871 Check(NumDeoptArgs == 0,
2872 "gc.statepoint w/inline deopt operands is deprecated",
Call);
2874 const int ExpectedNumArgs = 7 + NumCallArgs;
2876 "gc.statepoint too many arguments",
Call);
2883 Check(UserCall,
"illegal use of statepoint token",
Call, U);
2887 "gc.result or gc.relocate are the only value uses "
2888 "of a gc.statepoint",
2892 "gc.result connected to wrong gc.statepoint",
Call, UserCall);
2895 "gc.relocate connected to wrong gc.statepoint",
Call, UserCall);
2909void Verifier::verifyFrameRecoverIndices() {
2910 for (
auto &Counts : FrameEscapeInfo) {
2912 unsigned EscapedObjectCount = Counts.second.first;
2913 unsigned MaxRecoveredIndex = Counts.second.second;
2914 Check(MaxRecoveredIndex <= EscapedObjectCount,
2915 "all indices passed to llvm.localrecover must be less than the "
2916 "number of arguments passed to llvm.localescape in the parent "
2925 UnwindDest =
II->getUnwindDest();
2927 UnwindDest = CSI->getUnwindDest();
2933void Verifier::verifySiblingFuncletUnwinds() {
2934 llvm::TimeTraceScope timeScope(
"Verifier verify sibling funclet unwinds");
2935 SmallPtrSet<Instruction *, 8> Visited;
2936 SmallPtrSet<Instruction *, 8>
Active;
2937 for (
const auto &Pair : SiblingFuncletInfo) {
2939 if (Visited.
count(PredPad))
2945 if (
Active.count(SuccPad)) {
2948 SmallVector<Instruction *, 8> CycleNodes;
2951 Instruction *CycleTerminator = SiblingFuncletInfo[CyclePad];
2952 if (CycleTerminator != CyclePad)
2955 }
while (CyclePad != SuccPad);
2956 Check(
false,
"EH pads can't handle each other's exceptions",
2960 if (!Visited.
insert(SuccPad).second)
2964 auto TermI = SiblingFuncletInfo.find(PredPad);
2965 if (TermI == SiblingFuncletInfo.end())
2978void Verifier::visitFunction(
const Function &
F) {
2979 visitGlobalValue(
F);
2982 FunctionType *FT =
F.getFunctionType();
2983 unsigned NumArgs =
F.arg_size();
2986 "Function context does not match Module context!", &
F);
2988 Check(!
F.hasCommonLinkage(),
"Functions may not have common linkage", &
F);
2989 Check(FT->getNumParams() == NumArgs,
2990 "# formal arguments must match # of arguments for function type!", &
F,
2992 Check(
F.getReturnType()->isFirstClassType() ||
2993 F.getReturnType()->isVoidTy() ||
F.getReturnType()->isStructTy(),
2994 "Functions cannot return aggregate values!", &
F);
2996 Check(!
F.hasStructRetAttr() ||
F.getReturnType()->isVoidTy(),
2997 "Invalid struct return type!", &
F);
2999 if (MaybeAlign
A =
F.getAlign()) {
3000 Check(
A->value() <= Value::MaximumAlignment,
3001 "huge alignment values are unsupported", &
F);
3004 AttributeList
Attrs =
F.getAttributes();
3006 Check(verifyAttributeCount(Attrs, FT->getNumParams()),
3007 "Attribute after last parameter!", &
F);
3009 bool IsIntrinsic =
F.isIntrinsic();
3012 verifyFunctionAttrs(FT, Attrs, &
F, IsIntrinsic,
false);
3018 "Attribute 'builtin' can only be applied to a callsite.", &
F);
3020 Check(!
Attrs.hasAttrSomewhere(Attribute::ElementType),
3021 "Attribute 'elementtype' can only be applied to a callsite.", &
F);
3024 "Attribute 'aarch64_zt0_undef' can only be applied to a callsite.");
3026 if (
Attrs.hasFnAttr(Attribute::Naked))
3027 for (
const Argument &Arg :
F.args())
3028 Check(Arg.use_empty(),
"cannot use argument of naked function", &Arg);
3033 switch (
F.getCallingConv()) {
3035 case CallingConv::C:
3037 case CallingConv::X86_INTR: {
3038 Check(
F.arg_empty() ||
Attrs.hasParamAttr(0, Attribute::ByVal),
3039 "Calling convention parameter requires byval", &
F);
3042 case CallingConv::AMDGPU_KERNEL:
3043 case CallingConv::SPIR_KERNEL:
3044 case CallingConv::AMDGPU_CS_Chain:
3045 case CallingConv::AMDGPU_CS_ChainPreserve:
3046 Check(
F.getReturnType()->isVoidTy(),
3047 "Calling convention requires void return type", &
F);
3049 case CallingConv::AMDGPU_VS:
3050 case CallingConv::AMDGPU_HS:
3051 case CallingConv::AMDGPU_GS:
3052 case CallingConv::AMDGPU_PS:
3053 case CallingConv::AMDGPU_CS:
3054 Check(!
F.hasStructRetAttr(),
"Calling convention does not allow sret", &
F);
3055 if (
F.getCallingConv() != CallingConv::SPIR_KERNEL) {
3056 const unsigned StackAS =
DL.getAllocaAddrSpace();
3058 for (
const Argument &Arg :
F.args()) {
3059 Check(!
Attrs.hasParamAttr(i, Attribute::ByVal),
3060 "Calling convention disallows byval", &
F);
3061 Check(!
Attrs.hasParamAttr(i, Attribute::Preallocated),
3062 "Calling convention disallows preallocated", &
F);
3063 Check(!
Attrs.hasParamAttr(i, Attribute::InAlloca),
3064 "Calling convention disallows inalloca", &
F);
3066 if (
Attrs.hasParamAttr(i, Attribute::ByRef)) {
3069 Check(Arg.getType()->getPointerAddressSpace() != StackAS,
3070 "Calling convention disallows stack byref", &
F);
3078 case CallingConv::Fast:
3079 case CallingConv::Cold:
3080 case CallingConv::Intel_OCL_BI:
3081 case CallingConv::PTX_Kernel:
3082 case CallingConv::PTX_Device:
3084 "Calling convention does not support varargs or "
3085 "perfect forwarding!",
3088 case CallingConv::AMDGPU_Gfx_WholeWave:
3089 Check(!
F.arg_empty() &&
F.arg_begin()->getType()->isIntegerTy(1),
3090 "Calling convention requires first argument to be i1", &
F);
3091 Check(!
F.arg_begin()->hasInRegAttr(),
3092 "Calling convention requires first argument to not be inreg", &
F);
3094 "Calling convention does not support varargs or "
3095 "perfect forwarding!",
3102 for (
const Argument &Arg :
F.args()) {
3103 Check(Arg.getType() == FT->getParamType(i),
3104 "Argument value does not match function argument type!", &Arg,
3105 FT->getParamType(i));
3106 Check(Arg.getType()->isFirstClassType(),
3107 "Function arguments must have first-class types!", &Arg);
3109 Check(!Arg.getType()->isMetadataTy(),
3110 "Function takes metadata but isn't an intrinsic", &Arg, &
F);
3111 Check(!Arg.getType()->isTokenLikeTy(),
3112 "Function takes token but isn't an intrinsic", &Arg, &
F);
3113 Check(!Arg.getType()->isX86_AMXTy(),
3114 "Function takes x86_amx but isn't an intrinsic", &Arg, &
F);
3118 if (
Attrs.hasParamAttr(i, Attribute::SwiftError)) {
3119 verifySwiftErrorValue(&Arg);
3125 Check(!
F.getReturnType()->isTokenLikeTy(),
3126 "Function returns a token but isn't an intrinsic", &
F);
3127 Check(!
F.getReturnType()->isX86_AMXTy(),
3128 "Function returns a x86_amx but isn't an intrinsic", &
F);
3133 F.getAllMetadata(MDs);
3134 assert(
F.hasMetadata() != MDs.
empty() &&
"Bit out-of-sync");
3135 verifyFunctionMetadata(MDs);
3138 if (
F.hasPersonalityFn()) {
3141 Check(Per->getParent() ==
F.getParent(),
3142 "Referencing personality function in another module!", &
F,
3143 F.getParent(), Per, Per->getParent());
3147 BlockEHFuncletColors.
clear();
3149 if (
F.isMaterializable()) {
3151 Check(MDs.
empty(),
"unmaterialized function cannot have metadata", &
F,
3153 }
else if (
F.isDeclaration()) {
3154 for (
const auto &
I : MDs) {
3156 CheckDI(
I.first != LLVMContext::MD_dbg ||
3158 "function declaration may only have a unique !dbg attachment",
3160 Check(
I.first != LLVMContext::MD_prof,
3161 "function declaration may not have a !prof attachment", &
F);
3164 visitMDNode(*
I.second, AreDebugLocsAllowed::Yes);
3166 Check(!
F.hasPersonalityFn(),
3167 "Function declaration shouldn't have a personality routine", &
F);
3171 Check(!IsIntrinsic,
"llvm intrinsics cannot be defined!", &
F);
3176 "Entry block to function must not have predecessors!", Entry);
3179 if (
Entry->hasAddressTaken()) {
3181 "blockaddress may not be used with the entry block!", Entry);
3184 unsigned NumDebugAttachments = 0, NumProfAttachments = 0,
3185 NumKCFIAttachments = 0;
3187 for (
const auto &
I : MDs) {
3189 auto AllowLocs = AreDebugLocsAllowed::No;
3193 case LLVMContext::MD_dbg: {
3194 ++NumDebugAttachments;
3195 CheckDI(NumDebugAttachments == 1,
3196 "function must have a single !dbg attachment", &
F,
I.second);
3198 "function !dbg attachment must be a subprogram", &
F,
I.second);
3200 "function definition may only have a distinct !dbg attachment",
3204 const Function *&AttachedTo = DISubprogramAttachments[
SP];
3205 CheckDI(!AttachedTo || AttachedTo == &
F,
3206 "DISubprogram attached to more than one function", SP, &
F);
3208 AllowLocs = AreDebugLocsAllowed::Yes;
3211 case LLVMContext::MD_prof:
3212 ++NumProfAttachments;
3213 Check(NumProfAttachments == 1,
3214 "function must have a single !prof attachment", &
F,
I.second);
3216 case LLVMContext::MD_kcfi_type:
3217 ++NumKCFIAttachments;
3218 Check(NumKCFIAttachments == 1,
3219 "function must have a single !kcfi_type attachment", &
F,
3225 visitMDNode(*
I.second, AllowLocs);
3233 if (
F.isIntrinsic() &&
F.getParent()->isMaterialized()) {
3235 if (
F.hasAddressTaken(&U,
false,
true,
false,
3237 Check(
false,
"Invalid user of intrinsic instruction!", U);
3241 switch (
F.getIntrinsicID()) {
3242 case Intrinsic::experimental_gc_get_pointer_base: {
3243 FunctionType *FT =
F.getFunctionType();
3244 Check(FT->getNumParams() == 1,
"wrong number of parameters",
F);
3246 "gc.get.pointer.base must return a pointer",
F);
3247 Check(FT->getParamType(0) ==
F.getReturnType(),
3248 "gc.get.pointer.base operand and result must be of the same type",
F);
3251 case Intrinsic::experimental_gc_get_pointer_offset: {
3252 FunctionType *FT =
F.getFunctionType();
3253 Check(FT->getNumParams() == 1,
"wrong number of parameters",
F);
3255 "gc.get.pointer.offset operand must be a pointer",
F);
3256 Check(
F.getReturnType()->isIntegerTy(),
3257 "gc.get.pointer.offset must return integer",
F);
3262 auto *
N =
F.getSubprogram();
3263 HasDebugInfo = (
N !=
nullptr);
3271 SmallPtrSet<const MDNode *, 32> Seen;
3283 "DILocation's scope must be a DILocalScope",
N, &
F, &
I,
DL, Parent);
3285 DILocalScope *
Scope =
DL->getInlinedAtScope();
3286 Check(Scope,
"Failed to find DILocalScope",
DL);
3288 if (!Seen.
insert(Scope).second)
3291 DISubprogram *
SP =
Scope->getSubprogram();
3295 if ((Scope != SP) && !Seen.
insert(SP).second)
3299 "!dbg attachment points at wrong subprogram for function",
N, &
F,
3303 for (
auto &
I : BB) {
3304 VisitDebugLoc(
I,
I.getDebugLoc().getAsMDNode());
3306 if (
auto MD =
I.getMetadata(LLVMContext::MD_loop))
3309 if (BrokenDebugInfo)
3316void Verifier::visitBasicBlock(BasicBlock &BB) {
3317 InstsInThisBlock.
clear();
3318 ConvergenceVerifyHelper.
visit(BB);
3329 for (
const PHINode &PN : BB.
phis()) {
3330 Check(PN.getNumIncomingValues() == Preds.size(),
3331 "PHINode should have one entry for each predecessor of its "
3332 "parent basic block!",
3337 Values.
reserve(PN.getNumIncomingValues());
3338 for (
unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i)
3340 std::make_pair(PN.getIncomingBlock(i), PN.getIncomingValue(i)));
3343 for (
unsigned i = 0, e = Values.
size(); i != e; ++i) {
3348 Check(i == 0 || Values[i].first != Values[i - 1].first ||
3349 Values[i].second == Values[i - 1].second,
3350 "PHI node has multiple entries for the same basic block with "
3351 "different incoming values!",
3352 &PN, Values[i].first, Values[i].second, Values[i - 1].second);
3356 Check(Values[i].first == Preds[i],
3357 "PHI node entries do not match predecessors!", &PN,
3358 Values[i].first, Preds[i]);
3366 Check(
I.getParent() == &BB,
"Instruction has bogus parent pointer!");
3370 CheckDI(!BB.getTrailingDbgRecords(),
"Basic Block has trailing DbgRecords!",
3374void Verifier::visitTerminator(Instruction &
I) {
3376 Check(&
I ==
I.getParent()->getTerminator(),
3377 "Terminator found in the middle of a basic block!",
I.getParent());
3378 visitInstruction(
I);
3381void Verifier::visitBranchInst(BranchInst &BI) {
3384 "Branch condition is not 'i1' type!", &BI, BI.
getCondition());
3386 visitTerminator(BI);
3389void Verifier::visitReturnInst(ReturnInst &RI) {
3392 if (
F->getReturnType()->isVoidTy())
3394 "Found return instr that returns non-void in Function of void "
3396 &RI,
F->getReturnType());
3399 "Function return type does not match operand "
3400 "type of return inst!",
3401 &RI,
F->getReturnType());
3405 visitTerminator(RI);
3408void Verifier::visitSwitchInst(SwitchInst &SI) {
3409 Check(
SI.getType()->isVoidTy(),
"Switch must have void result type!", &SI);
3412 Type *SwitchTy =
SI.getCondition()->getType();
3413 SmallPtrSet<ConstantInt*, 32>
Constants;
3414 for (
auto &Case :
SI.cases()) {
3416 "Case value is not a constant integer.", &SI);
3417 Check(Case.getCaseValue()->getType() == SwitchTy,
3418 "Switch constants must all be same type as switch value!", &SI);
3420 "Duplicate integer as switch case", &SI, Case.getCaseValue());
3423 visitTerminator(SI);
3426void Verifier::visitIndirectBrInst(IndirectBrInst &BI) {
3428 "Indirectbr operand must have pointer type!", &BI);
3431 "Indirectbr destinations must all have pointer type!", &BI);
3433 visitTerminator(BI);
3436void Verifier::visitCallBrInst(CallBrInst &CBI) {
3437 Check(CBI.
isInlineAsm(),
"Callbr is currently only used for asm-goto!", &CBI);
3439 Check(!
IA->canThrow(),
"Unwinding from Callbr is not allowed");
3441 verifyInlineAsmCall(CBI);
3442 visitTerminator(CBI);
3445void Verifier::visitSelectInst(SelectInst &SI) {
3448 "Invalid operands for select instruction!", &SI);
3450 Check(
SI.getTrueValue()->getType() ==
SI.getType(),
3451 "Select values must have same type as select instruction!", &SI);
3452 visitInstruction(SI);
3458void Verifier::visitUserOp1(Instruction &
I) {
3459 Check(
false,
"User-defined operators should not live outside of a pass!", &
I);
3462void Verifier::visitTruncInst(TruncInst &
I) {
3464 Type *SrcTy =
I.getOperand(0)->getType();
3465 Type *DestTy =
I.getType();
3474 "trunc source and destination must both be a vector or neither", &
I);
3475 Check(SrcBitSize > DestBitSize,
"DestTy too big for Trunc", &
I);
3477 visitInstruction(
I);
3480void Verifier::visitZExtInst(ZExtInst &
I) {
3482 Type *SrcTy =
I.getOperand(0)->getType();
3483 Type *DestTy =
I.getType();
3489 "zext source and destination must both be a vector or neither", &
I);
3493 Check(SrcBitSize < DestBitSize,
"Type too small for ZExt", &
I);
3495 visitInstruction(
I);
3498void Verifier::visitSExtInst(SExtInst &
I) {
3500 Type *SrcTy =
I.getOperand(0)->getType();
3501 Type *DestTy =
I.getType();
3510 "sext source and destination must both be a vector or neither", &
I);
3511 Check(SrcBitSize < DestBitSize,
"Type too small for SExt", &
I);
3513 visitInstruction(
I);
3516void Verifier::visitFPTruncInst(FPTruncInst &
I) {
3518 Type *SrcTy =
I.getOperand(0)->getType();
3519 Type *DestTy =
I.getType();
3527 "fptrunc source and destination must both be a vector or neither", &
I);
3528 Check(SrcBitSize > DestBitSize,
"DestTy too big for FPTrunc", &
I);
3530 visitInstruction(
I);
3533void Verifier::visitFPExtInst(FPExtInst &
I) {
3535 Type *SrcTy =
I.getOperand(0)->getType();
3536 Type *DestTy =
I.getType();
3545 "fpext source and destination must both be a vector or neither", &
I);
3546 Check(SrcBitSize < DestBitSize,
"DestTy too small for FPExt", &
I);
3548 visitInstruction(
I);
3551void Verifier::visitUIToFPInst(UIToFPInst &
I) {
3553 Type *SrcTy =
I.getOperand(0)->getType();
3554 Type *DestTy =
I.getType();
3559 Check(SrcVec == DstVec,
3560 "UIToFP source and dest must both be vector or scalar", &
I);
3562 "UIToFP source must be integer or integer vector", &
I);
3566 if (SrcVec && DstVec)
3569 "UIToFP source and dest vector length mismatch", &
I);
3571 visitInstruction(
I);
3574void Verifier::visitSIToFPInst(SIToFPInst &
I) {
3576 Type *SrcTy =
I.getOperand(0)->getType();
3577 Type *DestTy =
I.getType();
3582 Check(SrcVec == DstVec,
3583 "SIToFP source and dest must both be vector or scalar", &
I);
3585 "SIToFP source must be integer or integer vector", &
I);
3589 if (SrcVec && DstVec)
3592 "SIToFP source and dest vector length mismatch", &
I);
3594 visitInstruction(
I);
3597void Verifier::visitFPToUIInst(FPToUIInst &
I) {
3599 Type *SrcTy =
I.getOperand(0)->getType();
3600 Type *DestTy =
I.getType();
3605 Check(SrcVec == DstVec,
3606 "FPToUI source and dest must both be vector or scalar", &
I);
3609 "FPToUI result must be integer or integer vector", &
I);
3611 if (SrcVec && DstVec)
3614 "FPToUI source and dest vector length mismatch", &
I);
3616 visitInstruction(
I);
3619void Verifier::visitFPToSIInst(FPToSIInst &
I) {
3621 Type *SrcTy =
I.getOperand(0)->getType();
3622 Type *DestTy =
I.getType();
3627 Check(SrcVec == DstVec,
3628 "FPToSI source and dest must both be vector or scalar", &
I);
3631 "FPToSI result must be integer or integer vector", &
I);
3633 if (SrcVec && DstVec)
3636 "FPToSI source and dest vector length mismatch", &
I);
3638 visitInstruction(
I);
3641void Verifier::checkPtrToAddr(
Type *SrcTy,
Type *DestTy,
const Value &V) {
3650 Check(VSrc->getElementCount() == VDest->getElementCount(),
3651 "PtrToAddr vector length mismatch", V);
3654 Type *AddrTy =
DL.getAddressType(SrcTy);
3655 Check(AddrTy == DestTy,
"PtrToAddr result must be address width", V);
3658void Verifier::visitPtrToAddrInst(PtrToAddrInst &
I) {
3659 checkPtrToAddr(
I.getOperand(0)->getType(),
I.getType(),
I);
3660 visitInstruction(
I);
3663void Verifier::visitPtrToIntInst(PtrToIntInst &
I) {
3665 Type *SrcTy =
I.getOperand(0)->getType();
3666 Type *DestTy =
I.getType();
3677 Check(VSrc->getElementCount() == VDest->getElementCount(),
3678 "PtrToInt Vector length mismatch", &
I);
3681 visitInstruction(
I);
3684void Verifier::visitIntToPtrInst(IntToPtrInst &
I) {
3686 Type *SrcTy =
I.getOperand(0)->getType();
3687 Type *DestTy =
I.getType();
3697 Check(VSrc->getElementCount() == VDest->getElementCount(),
3698 "IntToPtr Vector length mismatch", &
I);
3700 visitInstruction(
I);
3703void Verifier::visitBitCastInst(BitCastInst &
I) {
3706 "Invalid bitcast", &
I);
3707 visitInstruction(
I);
3710void Verifier::visitAddrSpaceCastInst(AddrSpaceCastInst &
I) {
3711 Type *SrcTy =
I.getOperand(0)->getType();
3712 Type *DestTy =
I.getType();
3719 "AddrSpaceCast must be between different address spaces", &
I);
3721 Check(SrcVTy->getElementCount() ==
3723 "AddrSpaceCast vector pointer number of elements mismatch", &
I);
3724 visitInstruction(
I);
3729void Verifier::visitPHINode(PHINode &PN) {
3736 "PHI nodes not grouped at top of basic block!", &PN, PN.
getParent());
3745 "PHI node operands are not the same type as the result!", &PN);
3750 visitInstruction(PN);
3753void Verifier::visitCallBase(CallBase &
Call) {
3755 "Called function must be a pointer!",
Call);
3759 if (FTy->isVarArg())
3761 "Called function requires more parameters than were provided!",
Call);
3764 "Incorrect number of arguments passed to called function!",
Call);
3767 for (
unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
3769 "Call parameter type does not match function signature!",
3775 "Attribute after last parameter!",
Call);
3782 "Intrinsic called with incompatible signature",
Call);
3786 "calling convention does not permit calls",
Call);
3792 auto VerifyTypeAlign = [&](
Type *Ty,
const Twine &Message) {
3795 Align ABIAlign =
DL.getABITypeAlign(Ty);
3796 Check(ABIAlign.
value() <= Value::MaximumAlignment,
3797 "Incorrect alignment of " + Message +
" to called function!",
Call);
3801 VerifyTypeAlign(FTy->getReturnType(),
"return type");
3802 for (
unsigned i = 0, e = FTy->getNumParams(); i != e; ++i) {
3803 Type *Ty = FTy->getParamType(i);
3804 VerifyTypeAlign(Ty,
"argument passed");
3808 if (
Attrs.hasFnAttr(Attribute::Speculatable)) {
3812 "speculatable attribute may not apply to call sites",
Call);
3815 if (
Attrs.hasFnAttr(Attribute::Preallocated)) {
3817 "preallocated as a call site attribute can only be on "
3818 "llvm.call.preallocated.arg");
3830 Check(AI->isUsedWithInAlloca(),
3831 "inalloca argument for call has mismatched alloca", AI,
Call);
3837 for (
unsigned i = 0, e = FTy->getNumParams(); i != e; ++i) {
3841 Check(AI->isSwiftError(),
3842 "swifterror argument for call has mismatched alloca", AI,
Call);
3846 Check(ArgI,
"swifterror argument should come from an alloca or parameter",
3847 SwiftErrorArg,
Call);
3848 Check(ArgI->hasSwiftErrorAttr(),
3849 "swifterror argument for call has mismatched parameter", ArgI,
3853 if (
Attrs.hasParamAttr(i, Attribute::ImmArg)) {
3856 Check(Callee &&
Callee->hasParamAttribute(i, Attribute::ImmArg),
3864 "immarg operand has non-immediate parameter", ArgVal,
Call);
3870 const ConstantRange &CR =
3873 "immarg value " + Twine(CI->getValue().getSExtValue()) +
3886 Check(hasOB != isMustTail,
3887 "preallocated operand either requires a preallocated bundle or "
3888 "the call to be musttail (but not both)",
3893 if (FTy->isVarArg()) {
3895 bool SawNest =
false;
3896 bool SawReturned =
false;
3898 for (
unsigned Idx = 0; Idx < FTy->getNumParams(); ++Idx) {
3899 if (
Attrs.hasParamAttr(Idx, Attribute::Nest))
3901 if (
Attrs.hasParamAttr(Idx, Attribute::Returned))
3906 for (
unsigned Idx = FTy->getNumParams(); Idx <
Call.
arg_size(); ++Idx) {
3908 AttributeSet ArgAttrs =
Attrs.getParamAttrs(Idx);
3909 verifyParameterAttrs(ArgAttrs, Ty, &
Call);
3912 Check(!SawNest,
"More than one parameter has attribute nest!",
Call);
3917 Check(!SawReturned,
"More than one parameter has attribute returned!",
3920 "Incompatible argument and return types for 'returned' "
3930 "Attribute 'sret' cannot be used for vararg call arguments!",
3935 "inalloca isn't on the last argument!",
Call);
3941 for (
Type *ParamTy : FTy->params()) {
3942 Check(!ParamTy->isMetadataTy(),
3943 "Function has metadata parameter but isn't an intrinsic",
Call);
3944 Check(!ParamTy->isTokenLikeTy(),
3945 "Function has token parameter but isn't an intrinsic",
Call);
3951 Check(!FTy->getReturnType()->isTokenLikeTy(),
3952 "Return type cannot be token for indirect call!");
3953 Check(!FTy->getReturnType()->isX86_AMXTy(),
3954 "Return type cannot be x86_amx for indirect call!");
3958 visitIntrinsicCall(
ID,
Call);
3963 bool FoundDeoptBundle =
false, FoundFuncletBundle =
false,
3964 FoundGCTransitionBundle =
false, FoundCFGuardTargetBundle =
false,
3965 FoundPreallocatedBundle =
false, FoundGCLiveBundle =
false,
3966 FoundPtrauthBundle =
false, FoundKCFIBundle =
false,
3967 FoundAttachedCallBundle =
false;
3972 Check(!FoundDeoptBundle,
"Multiple deopt operand bundles",
Call);
3973 FoundDeoptBundle =
true;
3975 Check(!FoundGCTransitionBundle,
"Multiple gc-transition operand bundles",
3977 FoundGCTransitionBundle =
true;
3979 Check(!FoundFuncletBundle,
"Multiple funclet operand bundles",
Call);
3980 FoundFuncletBundle =
true;
3982 "Expected exactly one funclet bundle operand",
Call);
3984 "Funclet bundle operands should correspond to a FuncletPadInst",
3987 Check(!FoundCFGuardTargetBundle,
"Multiple CFGuardTarget operand bundles",
3989 FoundCFGuardTargetBundle =
true;
3991 "Expected exactly one cfguardtarget bundle operand",
Call);
3993 Check(!FoundPtrauthBundle,
"Multiple ptrauth operand bundles",
Call);
3994 FoundPtrauthBundle =
true;
3996 "Expected exactly two ptrauth bundle operands",
Call);
3998 BU.
Inputs[0]->getType()->isIntegerTy(32),
3999 "Ptrauth bundle key operand must be an i32 constant",
Call);
4001 "Ptrauth bundle discriminator operand must be an i64",
Call);
4003 Check(!FoundKCFIBundle,
"Multiple kcfi operand bundles",
Call);
4004 FoundKCFIBundle =
true;
4005 Check(BU.
Inputs.size() == 1,
"Expected exactly one kcfi bundle operand",
4008 BU.
Inputs[0]->getType()->isIntegerTy(32),
4009 "Kcfi bundle operand must be an i32 constant",
Call);
4011 Check(!FoundPreallocatedBundle,
"Multiple preallocated operand bundles",
4013 FoundPreallocatedBundle =
true;
4015 "Expected exactly one preallocated bundle operand",
Call);
4018 Input->getIntrinsicID() == Intrinsic::call_preallocated_setup,
4019 "\"preallocated\" argument must be a token from "
4020 "llvm.call.preallocated.setup",
4023 Check(!FoundGCLiveBundle,
"Multiple gc-live operand bundles",
Call);
4024 FoundGCLiveBundle =
true;
4026 Check(!FoundAttachedCallBundle,
4027 "Multiple \"clang.arc.attachedcall\" operand bundles",
Call);
4028 FoundAttachedCallBundle =
true;
4029 verifyAttachedCallBundle(
Call, BU);
4035 "Direct call cannot have a ptrauth bundle",
Call);
4047 "inlinable function call in a function with "
4048 "debug info must have a !dbg location",
4052 verifyInlineAsmCall(
Call);
4056 visitInstruction(
Call);
4059void Verifier::verifyTailCCMustTailAttrs(
const AttrBuilder &Attrs,
4062 Twine(
"inalloca attribute not allowed in ") +
Context);
4064 Twine(
"inreg attribute not allowed in ") +
Context);
4065 Check(!
Attrs.contains(Attribute::SwiftError),
4066 Twine(
"swifterror attribute not allowed in ") +
Context);
4067 Check(!
Attrs.contains(Attribute::Preallocated),
4068 Twine(
"preallocated attribute not allowed in ") +
Context);
4070 Twine(
"byref attribute not allowed in ") +
Context);
4082 return PL->getAddressSpace() == PR->getAddressSpace();
4087 Attribute::StructRet, Attribute::ByVal, Attribute::InAlloca,
4088 Attribute::InReg, Attribute::StackAlignment, Attribute::SwiftSelf,
4089 Attribute::SwiftAsync, Attribute::SwiftError, Attribute::Preallocated,
4091 AttrBuilder Copy(
C);
4092 for (
auto AK : ABIAttrs) {
4093 Attribute Attr = Attrs.getParamAttrs(
I).getAttribute(AK);
4095 Copy.addAttribute(Attr);
4099 if (Attrs.hasParamAttr(
I, Attribute::Alignment) &&
4100 (Attrs.hasParamAttr(
I, Attribute::ByVal) ||
4101 Attrs.hasParamAttr(
I, Attribute::ByRef)))
4102 Copy.addAlignmentAttr(Attrs.getParamAlignment(
I));
4106void Verifier::verifyMustTailCall(CallInst &CI) {
4110 FunctionType *CallerTy =
F->getFunctionType();
4112 Check(CallerTy->isVarArg() == CalleeTy->isVarArg(),
4113 "cannot guarantee tail call due to mismatched varargs", &CI);
4115 "cannot guarantee tail call due to mismatched return types", &CI);
4119 "cannot guarantee tail call due to mismatched calling conv", &CI);
4125 Value *RetVal = &CI;
4131 "bitcast following musttail call must use the call", BI);
4138 Check(Ret,
"musttail call must precede a ret with an optional bitcast", &CI);
4139 Check(!
Ret->getReturnValue() ||
Ret->getReturnValue() == RetVal ||
4141 "musttail call result must be returned", Ret);
4143 AttributeList CallerAttrs =
F->getAttributes();
4148 CI.
getCallingConv() == CallingConv::Tail ?
"tailcc" :
"swifttailcc";
4152 for (
unsigned I = 0,
E = CallerTy->getNumParams();
I !=
E; ++
I) {
4154 SmallString<32>
Context{CCName, StringRef(
" musttail caller")};
4155 verifyTailCCMustTailAttrs(ABIAttrs,
Context);
4157 for (
unsigned I = 0,
E = CalleeTy->getNumParams();
I !=
E; ++
I) {
4159 SmallString<32>
Context{CCName, StringRef(
" musttail callee")};
4160 verifyTailCCMustTailAttrs(ABIAttrs,
Context);
4163 Check(!CallerTy->isVarArg(), Twine(
"cannot guarantee ") + CCName +
4164 " tail call for varargs function");
4172 Check(CallerTy->getNumParams() == CalleeTy->getNumParams(),
4173 "cannot guarantee tail call due to mismatched parameter counts", &CI);
4174 for (
unsigned I = 0,
E = CallerTy->getNumParams();
I !=
E; ++
I) {
4177 "cannot guarantee tail call due to mismatched parameter types", &CI);
4183 for (
unsigned I = 0,
E = CallerTy->getNumParams();
I !=
E; ++
I) {
4186 Check(CallerABIAttrs == CalleeABIAttrs,
4187 "cannot guarantee tail call due to mismatched ABI impacting "
4188 "function attributes",
4193void Verifier::visitCallInst(CallInst &CI) {
4197 verifyMustTailCall(CI);
4200void Verifier::visitInvokeInst(InvokeInst &
II) {
4206 II.getUnwindDest()->isEHPad(),
4207 "The unwind destination does not have an exception handling instruction!",
4210 visitTerminator(
II);
4215void Verifier::visitUnaryOperator(UnaryOperator &U) {
4216 Check(
U.getType() ==
U.getOperand(0)->getType(),
4217 "Unary operators must have same type for"
4218 "operands and result!",
4221 switch (
U.getOpcode()) {
4224 case Instruction::FNeg:
4225 Check(
U.getType()->isFPOrFPVectorTy(),
4226 "FNeg operator only works with float types!", &U);
4232 visitInstruction(U);
4238void Verifier::visitBinaryOperator(BinaryOperator &
B) {
4239 Check(
B.getOperand(0)->getType() ==
B.getOperand(1)->getType(),
4240 "Both operands to a binary operator are not of the same type!", &
B);
4242 switch (
B.getOpcode()) {
4245 case Instruction::Add:
4246 case Instruction::Sub:
4247 case Instruction::Mul:
4248 case Instruction::SDiv:
4249 case Instruction::UDiv:
4250 case Instruction::SRem:
4251 case Instruction::URem:
4252 Check(
B.getType()->isIntOrIntVectorTy(),
4253 "Integer arithmetic operators only work with integral types!", &
B);
4254 Check(
B.getType() ==
B.getOperand(0)->getType(),
4255 "Integer arithmetic operators must have same type "
4256 "for operands and result!",
4261 case Instruction::FAdd:
4262 case Instruction::FSub:
4263 case Instruction::FMul:
4264 case Instruction::FDiv:
4265 case Instruction::FRem:
4266 Check(
B.getType()->isFPOrFPVectorTy(),
4267 "Floating-point arithmetic operators only work with "
4268 "floating-point types!",
4270 Check(
B.getType() ==
B.getOperand(0)->getType(),
4271 "Floating-point arithmetic operators must have same type "
4272 "for operands and result!",
4276 case Instruction::And:
4277 case Instruction::Or:
4278 case Instruction::Xor:
4279 Check(
B.getType()->isIntOrIntVectorTy(),
4280 "Logical operators only work with integral types!", &
B);
4281 Check(
B.getType() ==
B.getOperand(0)->getType(),
4282 "Logical operators must have same type for operands and result!", &
B);
4284 case Instruction::Shl:
4285 case Instruction::LShr:
4286 case Instruction::AShr:
4287 Check(
B.getType()->isIntOrIntVectorTy(),
4288 "Shifts only work with integral types!", &
B);
4289 Check(
B.getType() ==
B.getOperand(0)->getType(),
4290 "Shift return type must be same as operands!", &
B);
4296 visitInstruction(
B);
4299void Verifier::visitICmpInst(ICmpInst &IC) {
4303 Check(Op0Ty == Op1Ty,
4304 "Both operands to ICmp instruction are not of the same type!", &IC);
4307 "Invalid operand types for ICmp instruction", &IC);
4311 visitInstruction(IC);
4314void Verifier::visitFCmpInst(FCmpInst &FC) {
4316 Type *Op0Ty =
FC.getOperand(0)->getType();
4317 Type *Op1Ty =
FC.getOperand(1)->getType();
4318 Check(Op0Ty == Op1Ty,
4319 "Both operands to FCmp instruction are not of the same type!", &FC);
4324 Check(
FC.isFPPredicate(),
"Invalid predicate in FCmp instruction!", &FC);
4326 visitInstruction(FC);
4329void Verifier::visitExtractElementInst(ExtractElementInst &EI) {
4331 "Invalid extractelement operands!", &EI);
4332 visitInstruction(EI);
4335void Verifier::visitInsertElementInst(InsertElementInst &IE) {
4338 "Invalid insertelement operands!", &IE);
4339 visitInstruction(IE);
4342void Verifier::visitShuffleVectorInst(ShuffleVectorInst &SV) {
4345 "Invalid shufflevector operands!", &SV);
4346 visitInstruction(SV);
4349void Verifier::visitGetElementPtrInst(GetElementPtrInst &
GEP) {
4350 Type *TargetTy =
GEP.getPointerOperandType()->getScalarType();
4353 "GEP base pointer is not a vector or a vector of pointers", &
GEP);
4354 Check(
GEP.getSourceElementType()->isSized(),
"GEP into unsized type!", &
GEP);
4358 "getelementptr cannot target structure that contains scalable vector"
4363 SmallVector<Value *, 16> Idxs(
GEP.indices());
4365 all_of(Idxs, [](
Value *V) {
return V->getType()->isIntOrIntVectorTy(); }),
4366 "GEP indexes must be integers", &
GEP);
4369 Check(ElTy,
"Invalid indices for GEP pointer type!", &
GEP);
4373 Check(PtrTy &&
GEP.getResultElementType() == ElTy,
4374 "GEP is not of right type for indices!", &
GEP, ElTy);
4378 ElementCount GEPWidth = GEPVTy->getElementCount();
4379 if (
GEP.getPointerOperandType()->isVectorTy())
4383 "Vector GEP result width doesn't match operand's", &
GEP);
4384 for (
Value *Idx : Idxs) {
4385 Type *IndexTy = Idx->getType();
4387 ElementCount IndexWidth = IndexVTy->getElementCount();
4388 Check(IndexWidth == GEPWidth,
"Invalid GEP index vector width", &
GEP);
4391 "All GEP indices should be of integer type");
4395 Check(
GEP.getAddressSpace() == PtrTy->getAddressSpace(),
4396 "GEP address space doesn't match type", &
GEP);
4398 visitInstruction(
GEP);
4402 return A.getUpper() ==
B.getLower() ||
A.getLower() ==
B.getUpper();
4407void Verifier::verifyRangeLikeMetadata(
const Value &
I,
const MDNode *
Range,
4408 Type *Ty, RangeLikeMetadataKind Kind) {
4409 unsigned NumOperands =
Range->getNumOperands();
4410 Check(NumOperands % 2 == 0,
"Unfinished range!",
Range);
4411 unsigned NumRanges = NumOperands / 2;
4412 Check(NumRanges >= 1,
"It should have at least one range!",
Range);
4414 ConstantRange LastRange(1,
true);
4415 for (
unsigned i = 0; i < NumRanges; ++i) {
4418 Check(
Low,
"The lower limit must be an integer!",
Low);
4423 Check(
High->getType() ==
Low->getType(),
"Range pair types must match!",
4426 if (Kind == RangeLikeMetadataKind::NoaliasAddrspace) {
4428 "noalias.addrspace type must be i32!", &
I);
4431 "Range types must match instruction type!", &
I);
4434 APInt HighV =
High->getValue();
4435 APInt LowV =
Low->getValue();
4440 "The upper and lower limits cannot be the same value", &
I);
4442 ConstantRange CurRange(LowV, HighV);
4443 Check(!CurRange.isEmptySet() &&
4444 (Kind == RangeLikeMetadataKind::AbsoluteSymbol ||
4445 !CurRange.isFullSet()),
4446 "Range must not be empty!",
Range);
4448 Check(CurRange.intersectWith(LastRange).isEmptySet(),
4449 "Intervals are overlapping",
Range);
4450 Check(LowV.
sgt(LastRange.getLower()),
"Intervals are not in order",
4455 LastRange = ConstantRange(LowV, HighV);
4457 if (NumRanges > 2) {
4462 ConstantRange FirstRange(FirstLow, FirstHigh);
4463 Check(FirstRange.intersectWith(LastRange).isEmptySet(),
4464 "Intervals are overlapping",
Range);
4470void Verifier::visitRangeMetadata(Instruction &
I, MDNode *
Range,
Type *Ty) {
4472 "precondition violation");
4473 verifyRangeLikeMetadata(
I,
Range, Ty, RangeLikeMetadataKind::Range);
4476void Verifier::visitNoaliasAddrspaceMetadata(Instruction &
I, MDNode *
Range,
4479 "precondition violation");
4480 verifyRangeLikeMetadata(
I,
Range, Ty,
4481 RangeLikeMetadataKind::NoaliasAddrspace);
4484void Verifier::checkAtomicMemAccessSize(
Type *Ty,
const Instruction *
I) {
4485 unsigned Size =
DL.getTypeSizeInBits(Ty).getFixedValue();
4486 Check(
Size >= 8,
"atomic memory access' size must be byte-sized", Ty,
I);
4488 "atomic memory access' operand must have a power-of-two size", Ty,
I);
4491void Verifier::visitLoadInst(LoadInst &LI) {
4493 Check(PTy,
"Load operand must be a pointer.", &LI);
4496 Check(
A->value() <= Value::MaximumAlignment,
4497 "huge alignment values are unsupported", &LI);
4499 Check(ElTy->
isSized(),
"loading unsized types is not allowed", &LI);
4502 LI.
getOrdering() != AtomicOrdering::AcquireRelease,
4503 "Load cannot have Release ordering", &LI);
4506 "atomic load operand must have integer, pointer, floating point, "
4510 checkAtomicMemAccessSize(ElTy, &LI);
4513 "Non-atomic load cannot have SynchronizationScope specified", &LI);
4516 visitInstruction(LI);
4519void Verifier::visitStoreInst(StoreInst &SI) {
4521 Check(PTy,
"Store operand must be a pointer.", &SI);
4522 Type *ElTy =
SI.getOperand(0)->getType();
4523 if (MaybeAlign
A =
SI.getAlign()) {
4524 Check(
A->value() <= Value::MaximumAlignment,
4525 "huge alignment values are unsupported", &SI);
4527 Check(ElTy->
isSized(),
"storing unsized types is not allowed", &SI);
4528 if (
SI.isAtomic()) {
4529 Check(
SI.getOrdering() != AtomicOrdering::Acquire &&
4530 SI.getOrdering() != AtomicOrdering::AcquireRelease,
4531 "Store cannot have Acquire ordering", &SI);
4534 "atomic store operand must have integer, pointer, floating point, "
4537 checkAtomicMemAccessSize(ElTy, &SI);
4540 "Non-atomic store cannot have SynchronizationScope specified", &SI);
4542 visitInstruction(SI);
4546void Verifier::verifySwiftErrorCall(CallBase &
Call,
4547 const Value *SwiftErrorVal) {
4549 if (
I.value() == SwiftErrorVal) {
4551 "swifterror value when used in a callsite should be marked "
4552 "with swifterror attribute",
4553 SwiftErrorVal,
Call);
4558void Verifier::verifySwiftErrorValue(
const Value *SwiftErrorVal) {
4561 for (
const User *U : SwiftErrorVal->
users()) {
4564 "swifterror value can only be loaded and stored from, or "
4565 "as a swifterror argument!",
4569 Check(StoreI->getOperand(1) == SwiftErrorVal,
4570 "swifterror value should be the second operand when used "
4574 verifySwiftErrorCall(*
const_cast<CallBase *
>(
Call), SwiftErrorVal);
4578void Verifier::visitAllocaInst(AllocaInst &AI) {
4580 SmallPtrSet<Type*, 4> Visited;
4581 Check(Ty->
isSized(&Visited),
"Cannot allocate unsized type", &AI);
4585 "Alloca has illegal target extension type", &AI);
4587 "Alloca array size must have integer type", &AI);
4589 Check(
A->value() <= Value::MaximumAlignment,
4590 "huge alignment values are unsupported", &AI);
4596 "swifterror alloca must not be array allocation", &AI);
4597 verifySwiftErrorValue(&AI);
4600 if (
TT.isAMDGPU()) {
4602 "alloca on amdgpu must be in addrspace(5)", &AI);
4605 visitInstruction(AI);
4608void Verifier::visitAtomicCmpXchgInst(AtomicCmpXchgInst &CXI) {
4611 "cmpxchg operand must have integer or pointer type", ElTy, &CXI);
4612 checkAtomicMemAccessSize(ElTy, &CXI);
4613 visitInstruction(CXI);
4616void Verifier::visitAtomicRMWInst(AtomicRMWInst &RMWI) {
4618 "atomicrmw instructions cannot be unordered.", &RMWI);
4625 " operand must have integer or floating point type!",
4630 " operand must have floating-point or fixed vector of floating-point "
4636 " operand must have integer type!",
4639 checkAtomicMemAccessSize(ElTy, &RMWI);
4641 "Invalid binary operation!", &RMWI);
4642 visitInstruction(RMWI);
4645void Verifier::visitFenceInst(FenceInst &FI) {
4647 Check(Ordering == AtomicOrdering::Acquire ||
4648 Ordering == AtomicOrdering::Release ||
4649 Ordering == AtomicOrdering::AcquireRelease ||
4650 Ordering == AtomicOrdering::SequentiallyConsistent,
4651 "fence instructions may only have acquire, release, acq_rel, or "
4652 "seq_cst ordering.",
4654 visitInstruction(FI);
4657void Verifier::visitExtractValueInst(ExtractValueInst &EVI) {
4660 "Invalid ExtractValueInst operands!", &EVI);
4662 visitInstruction(EVI);
4665void Verifier::visitInsertValueInst(InsertValueInst &IVI) {
4669 "Invalid InsertValueInst operands!", &IVI);
4671 visitInstruction(IVI);
4676 return FPI->getParentPad();
4681void Verifier::visitEHPadPredecessors(Instruction &
I) {
4687 Check(BB != &
F->getEntryBlock(),
"EH pad cannot be in entry block.", &
I);
4695 Check(
II &&
II->getUnwindDest() == BB &&
II->getNormalDest() != BB,
4696 "Block containing LandingPadInst must be jumped to "
4697 "only by the unwind edge of an invoke.",
4705 "Block containg CatchPadInst must be jumped to "
4706 "only by its catchswitch.",
4708 Check(BB != CPI->getCatchSwitch()->getUnwindDest(),
4709 "Catchswitch cannot unwind to one of its catchpads",
4710 CPI->getCatchSwitch(), CPI);
4722 Check(
II->getUnwindDest() == BB &&
II->getNormalDest() != BB,
4723 "EH pad must be jumped to via an unwind edge", ToPad,
II);
4726 if (CalledFn && CalledFn->isIntrinsic() &&
II->doesNotThrow() &&
4730 FromPad = Bundle->Inputs[0];
4734 FromPad = CRI->getOperand(0);
4735 Check(FromPad != ToPadParent,
"A cleanupret must exit its cleanup", CRI);
4739 Check(
false,
"EH pad must be jumped to via an unwind edge", ToPad, TI);
4743 SmallPtrSet<Value *, 8> Seen;
4745 Check(FromPad != ToPad,
4746 "EH pad cannot handle exceptions raised within it", FromPad, TI);
4747 if (FromPad == ToPadParent) {
4752 "A single unwind edge may only enter one EH pad", TI);
4753 Check(Seen.
insert(FromPad).second,
"EH pad jumps through a cycle of pads",
4759 "Parent pad must be catchpad/cleanuppad/catchswitch", TI);
4764void Verifier::visitLandingPadInst(LandingPadInst &LPI) {
4768 "LandingPadInst needs at least one clause or to be a cleanup.", &LPI);
4770 visitEHPadPredecessors(LPI);
4772 if (!LandingPadResultTy)
4773 LandingPadResultTy = LPI.
getType();
4776 "The landingpad instruction should have a consistent result type "
4777 "inside a function.",
4781 Check(
F->hasPersonalityFn(),
4782 "LandingPadInst needs to be in a function with a personality.", &LPI);
4787 "LandingPadInst not the first non-PHI instruction in the block.", &LPI);
4793 "Catch operand does not have pointer type!", &LPI);
4795 Check(LPI.
isFilter(i),
"Clause is neither catch nor filter!", &LPI);
4797 "Filter operand is not an array of constants!", &LPI);
4801 visitInstruction(LPI);
4804void Verifier::visitResumeInst(ResumeInst &RI) {
4806 "ResumeInst needs to be in a function with a personality.", &RI);
4808 if (!LandingPadResultTy)
4812 "The resume instruction should have a consistent result type "
4813 "inside a function.",
4816 visitTerminator(RI);
4819void Verifier::visitCatchPadInst(CatchPadInst &CPI) {
4823 Check(
F->hasPersonalityFn(),
4824 "CatchPadInst needs to be in a function with a personality.", &CPI);
4827 "CatchPadInst needs to be directly nested in a CatchSwitchInst.",
4833 "CatchPadInst not the first non-PHI instruction in the block.", &CPI);
4835 visitEHPadPredecessors(CPI);
4836 visitFuncletPadInst(CPI);
4839void Verifier::visitCatchReturnInst(CatchReturnInst &CatchReturn) {
4841 "CatchReturnInst needs to be provided a CatchPad", &CatchReturn,
4844 visitTerminator(CatchReturn);
4847void Verifier::visitCleanupPadInst(CleanupPadInst &CPI) {
4851 Check(
F->hasPersonalityFn(),
4852 "CleanupPadInst needs to be in a function with a personality.", &CPI);
4857 "CleanupPadInst not the first non-PHI instruction in the block.", &CPI);
4861 "CleanupPadInst has an invalid parent.", &CPI);
4863 visitEHPadPredecessors(CPI);
4864 visitFuncletPadInst(CPI);
4867void Verifier::visitFuncletPadInst(FuncletPadInst &FPI) {
4868 User *FirstUser =
nullptr;
4869 Value *FirstUnwindPad =
nullptr;
4871 SmallPtrSet<FuncletPadInst *, 8> Seen;
4873 while (!Worklist.empty()) {
4874 FuncletPadInst *CurrentPad = Worklist.pop_back_val();
4876 "FuncletPadInst must not be nested within itself", CurrentPad);
4877 Value *UnresolvedAncestorPad =
nullptr;
4878 for (User *U : CurrentPad->
users()) {
4881 UnwindDest = CRI->getUnwindDest();
4887 if (CSI->unwindsToCaller())
4889 UnwindDest = CSI->getUnwindDest();
4891 UnwindDest =
II->getUnwindDest();
4901 Worklist.push_back(CPI);
4916 if (UnwindParent == CurrentPad)
4922 Value *ExitedPad = CurrentPad;
4925 if (ExitedPad == &FPI) {
4930 UnresolvedAncestorPad = &FPI;
4934 if (ExitedParent == UnwindParent) {
4938 UnresolvedAncestorPad = ExitedParent;
4941 ExitedPad = ExitedParent;
4947 UnresolvedAncestorPad = &FPI;
4954 Check(UnwindPad == FirstUnwindPad,
4955 "Unwind edges out of a funclet "
4956 "pad must have the same unwind "
4958 &FPI, U, FirstUser);
4961 FirstUnwindPad = UnwindPad;
4970 if (CurrentPad != &FPI)
4973 if (UnresolvedAncestorPad) {
4974 if (CurrentPad == UnresolvedAncestorPad) {
4978 assert(CurrentPad == &FPI);
4986 Value *ResolvedPad = CurrentPad;
4987 while (!Worklist.empty()) {
4988 Value *UnclePad = Worklist.back();
4992 while (ResolvedPad != AncestorPad) {
4994 if (ResolvedParent == UnresolvedAncestorPad) {
4997 ResolvedPad = ResolvedParent;
5001 if (ResolvedPad != AncestorPad)
5004 Worklist.pop_back();
5009 if (FirstUnwindPad) {
5011 BasicBlock *SwitchUnwindDest = CatchSwitch->getUnwindDest();
5012 Value *SwitchUnwindPad;
5013 if (SwitchUnwindDest)
5017 Check(SwitchUnwindPad == FirstUnwindPad,
5018 "Unwind edges out of a catch must have the same unwind dest as "
5019 "the parent catchswitch",
5020 &FPI, FirstUser, CatchSwitch);
5024 visitInstruction(FPI);
5027void Verifier::visitCatchSwitchInst(CatchSwitchInst &CatchSwitch) {
5031 Check(
F->hasPersonalityFn(),
5032 "CatchSwitchInst needs to be in a function with a personality.",
5038 "CatchSwitchInst not the first non-PHI instruction in the block.",
5043 "CatchSwitchInst has an invalid parent.", ParentPad);
5048 "CatchSwitchInst must unwind to an EH block which is not a "
5054 SiblingFuncletInfo[&CatchSwitch] = &CatchSwitch;
5058 "CatchSwitchInst cannot have empty handler list", &CatchSwitch);
5060 for (BasicBlock *Handler : CatchSwitch.
handlers()) {
5062 "CatchSwitchInst handlers must be catchpads", &CatchSwitch, Handler);
5065 visitEHPadPredecessors(CatchSwitch);
5066 visitTerminator(CatchSwitch);
5069void Verifier::visitCleanupReturnInst(CleanupReturnInst &CRI) {
5071 "CleanupReturnInst needs to be provided a CleanupPad", &CRI,
5077 "CleanupReturnInst must unwind to an EH block which is not a "
5082 visitTerminator(CRI);
5085void Verifier::verifyDominatesUse(Instruction &
I,
unsigned i) {
5091 if (
II->getNormalDest() ==
II->getUnwindDest())
5105 const Use &
U =
I.getOperandUse(i);
5106 Check(DT.dominates(
Op, U),
"Instruction does not dominate all uses!",
Op, &
I);
5109void Verifier::visitDereferenceableMetadata(Instruction&
I, MDNode* MD) {
5110 Check(
I.getType()->isPointerTy(),
5111 "dereferenceable, dereferenceable_or_null "
5112 "apply only to pointer types",
5115 "dereferenceable, dereferenceable_or_null apply only to load"
5116 " and inttoptr instructions, use attributes for calls or invokes",
5119 "dereferenceable, dereferenceable_or_null "
5120 "take one operand!",
5125 "dereferenceable_or_null metadata value must be an i64!",
5129void Verifier::visitNofreeMetadata(Instruction &
I, MDNode *MD) {
5130 Check(
I.getType()->isPointerTy(),
"nofree applies only to pointer types", &
I);
5136void Verifier::visitProfMetadata(Instruction &
I, MDNode *MD) {
5137 auto GetBranchingTerminatorNumOperands = [&]() {
5138 unsigned ExpectedNumOperands = 0;
5142 ExpectedNumOperands =
SI->getNumSuccessors();
5144 ExpectedNumOperands = 1;
5146 ExpectedNumOperands = IBI->getNumDestinations();
5148 ExpectedNumOperands = 2;
5151 return ExpectedNumOperands;
5154 "!prof annotations should have at least 1 operand", MD);
5156 Check(MD->
getOperand(0) !=
nullptr,
"first operand should not be null", MD);
5158 "expected string with name of the !prof annotation", MD);
5164 "'unknown' !prof should only appear on instructions on which "
5165 "'branch_weights' would",
5167 verifyUnknownProfileMetadata(MD);
5172 "!prof annotations should have no less than 2 operands", MD);
5178 Check(NumBranchWeights == 1 || NumBranchWeights == 2,
5179 "Wrong number of InvokeInst branch_weights operands", MD);
5181 const unsigned ExpectedNumOperands = GetBranchingTerminatorNumOperands();
5182 if (ExpectedNumOperands == 0)
5183 CheckFailed(
"!prof branch_weights are not allowed for this instruction",
5186 Check(NumBranchWeights == ExpectedNumOperands,
"Wrong number of operands",
5192 Check(MDO,
"second operand should not be null", MD);
5194 "!prof brunch_weights operand is not a const int");
5199 Check(KindInt,
"VP !prof missing kind argument", MD);
5202 Check(Kind >= InstrProfValueKind::IPVK_First &&
5203 Kind <= InstrProfValueKind::IPVK_Last,
5204 "Invalid VP !prof kind", MD);
5206 "VP !prof should have an even number "
5207 "of arguments after 'VP'",
5209 if (Kind == InstrProfValueKind::IPVK_IndirectCallTarget ||
5210 Kind == InstrProfValueKind::IPVK_MemOPSize)
5212 "VP !prof indirect call or memop size expected to be applied to "
5213 "CallBase instructions only",
5216 CheckFailed(
"expected either branch_weights or VP profile name", MD);
5220void Verifier::visitDIAssignIDMetadata(Instruction &
I, MDNode *MD) {
5221 assert(
I.hasMetadata(LLVMContext::MD_DIAssignID));
5226 bool ExpectedInstTy =
5228 CheckDI(ExpectedInstTy,
"!DIAssignID attached to unexpected instruction kind",
5233 for (
auto *User : AsValue->users()) {
5235 "!DIAssignID should only be used by llvm.dbg.assign intrinsics",
5239 CheckDI(DAI->getFunction() ==
I.getFunction(),
5240 "dbg.assign not in same function as inst", DAI, &
I);
5243 for (DbgVariableRecord *DVR :
5246 "!DIAssignID should only be used by Assign DVRs.", MD, DVR);
5247 CheckDI(DVR->getFunction() ==
I.getFunction(),
5248 "DVRAssign not in same function as inst", DVR, &
I);
5252void Verifier::visitMMRAMetadata(Instruction &
I, MDNode *MD) {
5254 "!mmra metadata attached to unexpected instruction kind",
I, MD);
5265 for (
const MDOperand &MDOp : MD->
operands())
5267 "!mmra metadata tuple operand is not an MMRA tag",
I, MDOp.get());
5270void Verifier::visitCallStackMetadata(MDNode *MD) {
5274 "call stack metadata should have at least 1 operand", MD);
5278 "call stack metadata operand should be constant integer",
Op);
5281void Verifier::visitMemProfMetadata(Instruction &
I, MDNode *MD) {
5284 "!memprof annotations should have at least 1 metadata operand "
5289 for (
auto &MIBOp : MD->
operands()) {
5295 "Each !memprof MemInfoBlock should have at least 2 operands", MIB);
5299 "!memprof MemInfoBlock first operand should not be null", MIB);
5301 "!memprof MemInfoBlock first operand should be an MDNode", MIB);
5303 visitCallStackMetadata(StackMD);
5310 "!memprof MemInfoBlock second operand should be an MDString",
5319 Check(OpNode,
"Not all !memprof MemInfoBlock operands 2 to N are MDNode",
5322 "Not all !memprof MemInfoBlock operands 2 to N are MDNode with 2 "
5327 [](
const MDOperand &
Op) {
5328 return mdconst::hasa<ConstantInt>(Op);
5330 "Not all !memprof MemInfoBlock operands 2 to N are MDNode with "
5331 "ConstantInt operands",
5337void Verifier::visitCallsiteMetadata(Instruction &
I, MDNode *MD) {
5341 visitCallStackMetadata(MD);
5350void Verifier::visitCalleeTypeMetadata(Instruction &
I, MDNode *MD) {
5355 "The callee_type metadata must be a list of type metadata nodes",
Op);
5357 Check(TypeMD->getNumOperands() == 2,
5358 "Well-formed generalized type metadata must contain exactly two "
5363 "The first operand of type metadata for functions must be zero",
Op);
5364 Check(TypeMD->hasGeneralizedMDString(),
5365 "Only generalized type metadata can be part of the callee_type "
5371void Verifier::visitAnnotationMetadata(MDNode *Annotation) {
5374 "annotation must have at least one operand");
5376 bool TupleOfStrings =
5382 "operands must be a string or a tuple of strings");
5386void Verifier::visitAliasScopeMetadata(
const MDNode *MD) {
5391 "first scope operand must be self-referential or string", MD);
5394 "third scope operand must be string (if used)", MD);
5397 Check(
Domain !=
nullptr,
"second scope operand must be MDNode", MD);
5399 unsigned NumDomainOps =
Domain->getNumOperands();
5400 Check(NumDomainOps >= 1 && NumDomainOps <= 2,
5401 "domain must have one or two operands",
Domain);
5404 "first domain operand must be self-referential or string",
Domain);
5405 if (NumDomainOps == 2)
5407 "second domain operand must be string (if used)",
Domain);
5410void Verifier::visitAliasScopeListMetadata(
const MDNode *MD) {
5413 Check(OpMD !=
nullptr,
"scope list must consist of MDNodes", MD);
5414 visitAliasScopeMetadata(OpMD);
5418void Verifier::visitAccessGroupMetadata(
const MDNode *MD) {
5419 auto IsValidAccessScope = [](
const MDNode *MD) {
5424 if (IsValidAccessScope(MD))
5430 Check(OpMD !=
nullptr,
"Access scope list must consist of MDNodes", MD);
5431 Check(IsValidAccessScope(OpMD),
5432 "Access scope list contains invalid access scope", MD);
5436void Verifier::visitCapturesMetadata(Instruction &
I,
const MDNode *Captures) {
5437 static const char *ValidArgs[] = {
"address_is_null",
"address",
5438 "read_provenance",
"provenance"};
5441 Check(SI,
"!captures metadata can only be applied to store instructions", &
I);
5442 Check(
SI->getValueOperand()->getType()->isPointerTy(),
5443 "!captures metadata can only be applied to store with value operand of "
5451 Check(Str,
"!captures metadata must be a list of strings", &
I);
5453 "invalid entry in !captures metadata", &
I, Str);
5457void Verifier::visitAllocTokenMetadata(Instruction &
I, MDNode *MD) {
5462 "expected integer constant", MD);
5467void Verifier::visitInstruction(Instruction &
I) {
5469 Check(BB,
"Instruction not embedded in basic block!", &
I);
5472 for (User *U :
I.users()) {
5473 Check(U != (User *)&
I || !DT.isReachableFromEntry(BB),
5474 "Only PHI nodes may reference their own value!", &
I);
5479 Check(!
I.getType()->isVoidTy() || !
I.hasName(),
5480 "Instruction has a name, but provides a void value!", &
I);
5484 Check(
I.getType()->isVoidTy() ||
I.getType()->isFirstClassType(),
5485 "Instruction returns a non-scalar type!", &
I);
5490 "Invalid use of metadata!", &
I);
5495 for (Use &U :
I.uses()) {
5498 "Instruction referencing"
5499 " instruction not embedded in a basic block!",
5502 CheckFailed(
"Use of instruction is not an instruction!", U);
5511 for (
unsigned i = 0, e =
I.getNumOperands(); i != e; ++i) {
5512 Check(
I.getOperand(i) !=
nullptr,
"Instruction has null operand!", &
I);
5516 if (!
I.getOperand(i)->getType()->isFirstClassType()) {
5517 Check(
false,
"Instruction operands must be first-class values!", &
I);
5523 auto IsAttachedCallOperand = [](
Function *
F,
const CallBase *CBI,
5525 return CBI && CBI->isOperandBundleOfType(
5533 Check((!
F->isIntrinsic() ||
5534 (CBI && &CBI->getCalledOperandUse() == &
I.getOperandUse(i)) ||
5535 IsAttachedCallOperand(
F, CBI, i)),
5536 "Cannot take the address of an intrinsic!", &
I);
5538 F->getIntrinsicID() == Intrinsic::donothing ||
5539 F->getIntrinsicID() == Intrinsic::seh_try_begin ||
5540 F->getIntrinsicID() == Intrinsic::seh_try_end ||
5541 F->getIntrinsicID() == Intrinsic::seh_scope_begin ||
5542 F->getIntrinsicID() == Intrinsic::seh_scope_end ||
5543 F->getIntrinsicID() == Intrinsic::coro_resume ||
5544 F->getIntrinsicID() == Intrinsic::coro_destroy ||
5545 F->getIntrinsicID() == Intrinsic::coro_await_suspend_void ||
5546 F->getIntrinsicID() == Intrinsic::coro_await_suspend_bool ||
5547 F->getIntrinsicID() == Intrinsic::coro_await_suspend_handle ||
5548 F->getIntrinsicID() ==
5549 Intrinsic::experimental_patchpoint_void ||
5550 F->getIntrinsicID() == Intrinsic::experimental_patchpoint ||
5551 F->getIntrinsicID() == Intrinsic::fake_use ||
5552 F->getIntrinsicID() == Intrinsic::experimental_gc_statepoint ||
5553 F->getIntrinsicID() == Intrinsic::wasm_throw ||
5554 F->getIntrinsicID() == Intrinsic::wasm_rethrow ||
5555 IsAttachedCallOperand(
F, CBI, i),
5556 "Cannot invoke an intrinsic other than donothing, patchpoint, "
5557 "statepoint, coro_resume, coro_destroy, clang.arc.attachedcall or "
5560 Check(
F->getParent() == &M,
"Referencing function in another module!", &
I,
5561 &M,
F,
F->getParent());
5564 "Referring to a basic block in another function!", &
I);
5567 "Referring to an argument in another function!", &
I);
5569 Check(GV->
getParent() == &M,
"Referencing global in another module!", &
I,
5573 "Referring to an instruction in another function!", &
I);
5574 verifyDominatesUse(
I, i);
5576 Check(CBI && &CBI->getCalledOperandUse() == &
I.getOperandUse(i),
5577 "Cannot take the address of an inline asm!", &
I);
5579 visitConstantExprsRecursively(CPA);
5581 if (
CE->getType()->isPtrOrPtrVectorTy()) {
5584 visitConstantExprsRecursively(CE);
5589 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_fpmath)) {
5590 Check(
I.getType()->isFPOrFPVectorTy(),
5591 "fpmath requires a floating point result!", &
I);
5593 if (ConstantFP *CFP0 =
5595 const APFloat &Accuracy = CFP0->getValueAPF();
5597 "fpmath accuracy must have float type", &
I);
5599 "fpmath accuracy not a positive number!", &
I);
5601 Check(
false,
"invalid fpmath accuracy!", &
I);
5605 if (MDNode *
Range =
I.getMetadata(LLVMContext::MD_range)) {
5607 "Ranges are only for loads, calls and invokes!", &
I);
5608 visitRangeMetadata(
I,
Range,
I.getType());
5611 if (MDNode *
Range =
I.getMetadata(LLVMContext::MD_noalias_addrspace)) {
5614 "noalias.addrspace are only for memory operations!", &
I);
5615 visitNoaliasAddrspaceMetadata(
I,
Range,
I.getType());
5618 if (
I.hasMetadata(LLVMContext::MD_invariant_group)) {
5620 "invariant.group metadata is only for loads and stores", &
I);
5623 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_nonnull)) {
5624 Check(
I.getType()->isPointerTy(),
"nonnull applies only to pointer types",
5627 "nonnull applies only to load instructions, use attributes"
5628 " for calls or invokes",
5633 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_dereferenceable))
5634 visitDereferenceableMetadata(
I, MD);
5636 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_dereferenceable_or_null))
5637 visitDereferenceableMetadata(
I, MD);
5639 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_nofree))
5640 visitNofreeMetadata(
I, MD);
5642 if (MDNode *TBAA =
I.getMetadata(LLVMContext::MD_tbaa))
5645 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_noalias))
5646 visitAliasScopeListMetadata(MD);
5647 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_alias_scope))
5648 visitAliasScopeListMetadata(MD);
5650 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_access_group))
5651 visitAccessGroupMetadata(MD);
5653 if (MDNode *AlignMD =
I.getMetadata(LLVMContext::MD_align)) {
5654 Check(
I.getType()->isPointerTy(),
"align applies only to pointer types",
5657 "align applies only to load instructions, "
5658 "use attributes for calls or invokes",
5660 Check(AlignMD->getNumOperands() == 1,
"align takes one operand!", &
I);
5663 "align metadata value must be an i64!", &
I);
5667 Check(Align <= Value::MaximumAlignment,
5668 "alignment is larger that implementation defined limit", &
I);
5671 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_prof))
5672 visitProfMetadata(
I, MD);
5674 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_memprof))
5675 visitMemProfMetadata(
I, MD);
5677 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_callsite))
5678 visitCallsiteMetadata(
I, MD);
5680 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_callee_type))
5681 visitCalleeTypeMetadata(
I, MD);
5683 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_DIAssignID))
5684 visitDIAssignIDMetadata(
I, MD);
5686 if (MDNode *MMRA =
I.getMetadata(LLVMContext::MD_mmra))
5687 visitMMRAMetadata(
I, MMRA);
5689 if (MDNode *Annotation =
I.getMetadata(LLVMContext::MD_annotation))
5690 visitAnnotationMetadata(Annotation);
5692 if (MDNode *Captures =
I.getMetadata(LLVMContext::MD_captures))
5693 visitCapturesMetadata(
I, Captures);
5695 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_alloc_token))
5696 visitAllocTokenMetadata(
I, MD);
5698 if (MDNode *
N =
I.getDebugLoc().getAsMDNode()) {
5700 visitMDNode(*
N, AreDebugLocsAllowed::Yes);
5703 if (
DL->getAtomGroup()) {
5704 CheckDI(
DL->getScope()->getSubprogram()->getKeyInstructionsEnabled(),
5705 "DbgLoc uses atomGroup but DISubprogram doesn't have Key "
5706 "Instructions enabled",
5707 DL,
DL->getScope()->getSubprogram());
5713 I.getAllMetadata(MDs);
5714 for (
auto Attachment : MDs) {
5715 unsigned Kind = Attachment.first;
5717 (
Kind == LLVMContext::MD_dbg ||
Kind == LLVMContext::MD_loop)
5718 ? AreDebugLocsAllowed::Yes
5719 : AreDebugLocsAllowed::
No;
5720 visitMDNode(*Attachment.second, AllowLocs);
5735 bool IsVarArg = IFTy->isVarArg();
5746 "Intrinsic has incorrect return type!", IF);
5748 "Intrinsic has incorrect argument type!", IF);
5753 "Intrinsic was not defined with variable arguments!", IF);
5756 "Callsite was not defined with variable arguments!", IF);
5765 const std::string ExpectedName =
5768 "Intrinsic name not mangled correctly for type arguments! "
5780 "const x86_amx is not allowed in argument!");
5786 case Intrinsic::assume: {
5790 "assume with operand bundles must have i1 true condition",
Call);
5793 unsigned ArgCount = Elem.End - Elem.Begin;
5796 if (Elem.Tag->getKey() ==
"separate_storage") {
5797 Check(ArgCount == 2,
5798 "separate_storage assumptions should have 2 arguments",
Call);
5801 "arguments to separate_storage assumptions should be pointers",
5805 Check(Elem.Tag->getKey() ==
"ignore" ||
5806 Attribute::isExistingAttribute(Elem.Tag->getKey()),
5807 "tags must be valid attribute names",
Call);
5808 Attribute::AttrKind
Kind =
5809 Attribute::getAttrKindFromName(Elem.Tag->getKey());
5810 if (Kind == Attribute::Alignment) {
5811 Check(ArgCount <= 3 && ArgCount >= 2,
5812 "alignment assumptions should have 2 or 3 arguments",
Call);
5814 "first argument should be a pointer",
Call);
5816 "second argument should be an integer",
Call);
5819 "third argument should be an integer if present",
Call);
5822 if (Kind == Attribute::Dereferenceable) {
5823 Check(ArgCount == 2,
5824 "dereferenceable assumptions should have 2 arguments",
Call);
5826 "first argument should be a pointer",
Call);
5828 "second argument should be an integer",
Call);
5831 Check(ArgCount <= 2,
"too many arguments",
Call);
5832 if (Kind == Attribute::None)
5834 if (Attribute::isIntAttrKind(Kind)) {
5835 Check(ArgCount == 2,
"this attribute should have 2 arguments",
Call);
5837 "the second argument should be a constant integral value",
Call);
5838 }
else if (Attribute::canUseAsParamAttr(Kind)) {
5839 Check((ArgCount) == 1,
"this attribute should have one argument",
Call);
5840 }
else if (Attribute::canUseAsFnAttr(Kind)) {
5841 Check((ArgCount) == 0,
"this attribute has no argument",
Call);
5846 case Intrinsic::ucmp:
5847 case Intrinsic::scmp: {
5852 "result type must be at least 2 bits wide",
Call);
5854 bool IsDestTypeVector = DestTy->
isVectorTy();
5856 "ucmp/scmp argument and result types must both be either vector or "
5859 if (IsDestTypeVector) {
5862 Check(SrcVecLen == DestVecLen,
5863 "return type and arguments must have the same number of "
5869 case Intrinsic::coro_id: {
5875 "info argument of llvm.coro.id must refer to an initialized "
5879 "info argument of llvm.coro.id must refer to either a struct or "
5883 case Intrinsic::is_fpclass: {
5886 "unsupported bits for llvm.is.fpclass test mask");
5889 case Intrinsic::fptrunc_round: {
5894 MD = MAV->getMetadata();
5896 Check(MD !=
nullptr,
"missing rounding mode argument",
Call);
5899 (
"invalid value for llvm.fptrunc.round metadata operand"
5900 " (the operand should be a string)"),
5903 std::optional<RoundingMode> RoundMode =
5905 Check(RoundMode && *RoundMode != RoundingMode::Dynamic,
5906 "unsupported rounding mode argument",
Call);
5909#define BEGIN_REGISTER_VP_INTRINSIC(VPID, ...) case Intrinsic::VPID:
5910#include "llvm/IR/VPIntrinsics.def"
5911#undef BEGIN_REGISTER_VP_INTRINSIC
5914#define INSTRUCTION(NAME, NARGS, ROUND_MODE, INTRINSIC) \
5915 case Intrinsic::INTRINSIC:
5916#include "llvm/IR/ConstrainedOps.def"
5920 case Intrinsic::dbg_declare:
5921 case Intrinsic::dbg_value:
5922 case Intrinsic::dbg_assign:
5923 case Intrinsic::dbg_label:
5930 case Intrinsic::memcpy:
5931 case Intrinsic::memcpy_inline:
5932 case Intrinsic::memmove:
5933 case Intrinsic::memset:
5934 case Intrinsic::memset_inline:
5936 case Intrinsic::experimental_memset_pattern: {
5938 Check(Memset->getValue()->getType()->isSized(),
5939 "unsized types cannot be used as memset patterns",
Call);
5942 case Intrinsic::memcpy_element_unordered_atomic:
5943 case Intrinsic::memmove_element_unordered_atomic:
5944 case Intrinsic::memset_element_unordered_atomic: {
5947 ConstantInt *ElementSizeCI =
5949 const APInt &ElementSizeVal = ElementSizeCI->
getValue();
5951 "element size of the element-wise atomic memory intrinsic "
5952 "must be a power of 2",
5955 auto IsValidAlignment = [&](MaybeAlign Alignment) {
5956 return Alignment && ElementSizeVal.
ule(Alignment->value());
5958 Check(IsValidAlignment(AMI->getDestAlign()),
5959 "incorrect alignment of the destination argument",
Call);
5961 Check(IsValidAlignment(AMT->getSourceAlign()),
5962 "incorrect alignment of the source argument",
Call);
5966 case Intrinsic::call_preallocated_setup: {
5968 bool FoundCall =
false;
5971 Check(UseCall !=
nullptr,
5972 "Uses of llvm.call.preallocated.setup must be calls");
5974 if (IID == Intrinsic::call_preallocated_arg) {
5976 Check(AllocArgIndex !=
nullptr,
5977 "llvm.call.preallocated.alloc arg index must be a constant");
5978 auto AllocArgIndexInt = AllocArgIndex->getValue();
5979 Check(AllocArgIndexInt.sge(0) &&
5980 AllocArgIndexInt.slt(NumArgs->getValue()),
5981 "llvm.call.preallocated.alloc arg index must be between 0 and "
5983 "llvm.call.preallocated.setup's argument count");
5984 }
else if (IID == Intrinsic::call_preallocated_teardown) {
5987 Check(!FoundCall,
"Can have at most one call corresponding to a "
5988 "llvm.call.preallocated.setup");
5990 size_t NumPreallocatedArgs = 0;
5991 for (
unsigned i = 0; i < UseCall->arg_size(); i++) {
5992 if (UseCall->paramHasAttr(i, Attribute::Preallocated)) {
5993 ++NumPreallocatedArgs;
5996 Check(NumPreallocatedArgs != 0,
5997 "cannot use preallocated intrinsics on a call without "
5998 "preallocated arguments");
5999 Check(NumArgs->equalsInt(NumPreallocatedArgs),
6000 "llvm.call.preallocated.setup arg size must be equal to number "
6001 "of preallocated arguments "
6011 auto PreallocatedBundle =
6013 Check(PreallocatedBundle,
6014 "Use of llvm.call.preallocated.setup outside intrinsics "
6015 "must be in \"preallocated\" operand bundle");
6016 Check(PreallocatedBundle->Inputs.front().get() == &
Call,
6017 "preallocated bundle must have token from corresponding "
6018 "llvm.call.preallocated.setup");
6023 case Intrinsic::call_preallocated_arg: {
6026 Token->getIntrinsicID() == Intrinsic::call_preallocated_setup,
6027 "llvm.call.preallocated.arg token argument must be a "
6028 "llvm.call.preallocated.setup");
6030 "llvm.call.preallocated.arg must be called with a \"preallocated\" "
6031 "call site attribute");
6034 case Intrinsic::call_preallocated_teardown: {
6037 Token->getIntrinsicID() == Intrinsic::call_preallocated_setup,
6038 "llvm.call.preallocated.teardown token argument must be a "
6039 "llvm.call.preallocated.setup");
6042 case Intrinsic::gcroot:
6043 case Intrinsic::gcwrite:
6044 case Intrinsic::gcread:
6045 if (
ID == Intrinsic::gcroot) {
6048 Check(AI,
"llvm.gcroot parameter #1 must be an alloca.",
Call);
6050 "llvm.gcroot parameter #2 must be a constant.",
Call);
6053 "llvm.gcroot parameter #1 must either be a pointer alloca, "
6054 "or argument #2 must be a non-null constant.",
6060 "Enclosing function does not use GC.",
Call);
6062 case Intrinsic::init_trampoline:
6064 "llvm.init_trampoline parameter #2 must resolve to a function.",
6067 case Intrinsic::prefetch:
6069 "rw argument to llvm.prefetch must be 0-1",
Call);
6071 "locality argument to llvm.prefetch must be 0-3",
Call);
6073 "cache type argument to llvm.prefetch must be 0-1",
Call);
6075 case Intrinsic::reloc_none: {
6078 "llvm.reloc.none argument must be a metadata string", &
Call);
6081 case Intrinsic::stackprotector:
6083 "llvm.stackprotector parameter #2 must resolve to an alloca.",
Call);
6085 case Intrinsic::localescape: {
6089 Check(!SawFrameEscape,
"multiple calls to llvm.localescape in one function",
6096 "llvm.localescape only accepts static allocas",
Call);
6099 SawFrameEscape =
true;
6102 case Intrinsic::localrecover: {
6106 "llvm.localrecover first "
6107 "argument must be function defined in this module",
6110 auto &
Entry = FrameEscapeInfo[Fn];
6111 Entry.second = unsigned(
6112 std::max(uint64_t(
Entry.second), IdxArg->getLimitedValue(~0U) + 1));
6116 case Intrinsic::experimental_gc_statepoint:
6118 Check(!CI->isInlineAsm(),
6119 "gc.statepoint support for inline assembly unimplemented", CI);
6121 "Enclosing function does not use GC.",
Call);
6123 verifyStatepoint(
Call);
6125 case Intrinsic::experimental_gc_result: {
6127 "Enclosing function does not use GC.",
Call);
6135 Check(StatepointCall && StatepointCall->getIntrinsicID() ==
6136 Intrinsic::experimental_gc_statepoint,
6137 "gc.result operand #1 must be from a statepoint",
Call,
6141 auto *TargetFuncType =
6144 "gc.result result type does not match wrapped callee",
Call);
6147 case Intrinsic::experimental_gc_relocate: {
6151 "gc.relocate must return a pointer or a vector of pointers",
Call);
6156 if (LandingPadInst *LandingPad =
6160 LandingPad->getParent()->getUniquePredecessor();
6164 Check(InvokeBB,
"safepoints should have unique landingpads",
6165 LandingPad->getParent());
6169 "gc relocate should be linked to a statepoint", InvokeBB);
6176 "gc relocate is incorrectly tied to the statepoint",
Call, Token);
6185 "gc.relocate operand #2 must be integer offset",
Call);
6189 "gc.relocate operand #3 must be integer offset",
Call);
6199 Check(BaseIndex < Opt->Inputs.size(),
6200 "gc.relocate: statepoint base index out of bounds",
Call);
6201 Check(DerivedIndex < Opt->Inputs.size(),
6202 "gc.relocate: statepoint derived index out of bounds",
Call);
6215 "gc.relocate: relocated value must be a pointer",
Call);
6216 Check(DerivedType->isPtrOrPtrVectorTy(),
6217 "gc.relocate: relocated value must be a pointer",
Call);
6219 Check(ResultType->isVectorTy() == DerivedType->isVectorTy(),
6220 "gc.relocate: vector relocates to vector and pointer to pointer",
6223 ResultType->getPointerAddressSpace() ==
6224 DerivedType->getPointerAddressSpace(),
6225 "gc.relocate: relocating a pointer shouldn't change its address space",
6229 Check(GC,
"gc.relocate: calling function must have GCStrategy",
6232 auto isGCPtr = [&
GC](
Type *PTy) {
6233 return GC->isGCManagedPointer(PTy->getScalarType()).value_or(
true);
6235 Check(isGCPtr(ResultType),
"gc.relocate: must return gc pointer",
Call);
6237 "gc.relocate: relocated value must be a gc pointer",
Call);
6238 Check(isGCPtr(DerivedType),
6239 "gc.relocate: relocated value must be a gc pointer",
Call);
6243 case Intrinsic::experimental_patchpoint: {
6246 "patchpoint: invalid return type used with anyregcc",
Call);
6250 case Intrinsic::eh_exceptioncode:
6251 case Intrinsic::eh_exceptionpointer: {
6253 "eh.exceptionpointer argument must be a catchpad",
Call);
6256 case Intrinsic::get_active_lane_mask: {
6258 "get_active_lane_mask: must return a "
6262 Check(ElemTy->isIntegerTy(1),
6263 "get_active_lane_mask: element type is not "
6268 case Intrinsic::experimental_get_vector_length: {
6271 "get_vector_length: VF must be positive",
Call);
6274 case Intrinsic::masked_load: {
6280 Check(
Mask->getType()->isVectorTy(),
"masked_load: mask must be vector",
6283 "masked_load: pass through and return type must match",
Call);
6286 "masked_load: vector mask must be same length as return",
Call);
6289 case Intrinsic::masked_store: {
6292 Check(
Mask->getType()->isVectorTy(),
"masked_store: mask must be vector",
6296 "masked_store: vector mask must be same length as value",
Call);
6300 case Intrinsic::experimental_guard: {
6303 "experimental_guard must have exactly one "
6304 "\"deopt\" operand bundle");
6308 case Intrinsic::experimental_deoptimize: {
6312 "experimental_deoptimize must have exactly one "
6313 "\"deopt\" operand bundle");
6315 "experimental_deoptimize return type must match caller return type");
6320 "calls to experimental_deoptimize must be followed by a return");
6324 "calls to experimental_deoptimize must be followed by a return "
6325 "of the value computed by experimental_deoptimize");
6330 case Intrinsic::vastart: {
6332 "va_start called in a non-varargs function");
6335 case Intrinsic::get_dynamic_area_offset: {
6337 Check(IntTy &&
DL.getPointerSizeInBits(
DL.getAllocaAddrSpace()) ==
6338 IntTy->getBitWidth(),
6339 "get_dynamic_area_offset result type must be scalar integer matching "
6340 "alloca address space width",
6344 case Intrinsic::vector_reduce_and:
6345 case Intrinsic::vector_reduce_or:
6346 case Intrinsic::vector_reduce_xor:
6347 case Intrinsic::vector_reduce_add:
6348 case Intrinsic::vector_reduce_mul:
6349 case Intrinsic::vector_reduce_smax:
6350 case Intrinsic::vector_reduce_smin:
6351 case Intrinsic::vector_reduce_umax:
6352 case Intrinsic::vector_reduce_umin: {
6355 "Intrinsic has incorrect argument type!");
6358 case Intrinsic::vector_reduce_fmax:
6359 case Intrinsic::vector_reduce_fmin: {
6362 "Intrinsic has incorrect argument type!");
6365 case Intrinsic::vector_reduce_fadd:
6366 case Intrinsic::vector_reduce_fmul: {
6371 "Intrinsic has incorrect argument type!");
6374 case Intrinsic::smul_fix:
6375 case Intrinsic::smul_fix_sat:
6376 case Intrinsic::umul_fix:
6377 case Intrinsic::umul_fix_sat:
6378 case Intrinsic::sdiv_fix:
6379 case Intrinsic::sdiv_fix_sat:
6380 case Intrinsic::udiv_fix:
6381 case Intrinsic::udiv_fix_sat: {
6385 "first operand of [us][mul|div]_fix[_sat] must be an int type or "
6388 "second operand of [us][mul|div]_fix[_sat] must be an int type or "
6392 Check(Op3->getType()->isIntegerTy(),
6393 "third operand of [us][mul|div]_fix[_sat] must be an int type");
6394 Check(Op3->getBitWidth() <= 32,
6395 "third operand of [us][mul|div]_fix[_sat] must fit within 32 bits");
6397 if (
ID == Intrinsic::smul_fix ||
ID == Intrinsic::smul_fix_sat ||
6398 ID == Intrinsic::sdiv_fix ||
ID == Intrinsic::sdiv_fix_sat) {
6400 "the scale of s[mul|div]_fix[_sat] must be less than the width of "
6404 "the scale of u[mul|div]_fix[_sat] must be less than or equal "
6405 "to the width of the operands");
6409 case Intrinsic::lrint:
6410 case Intrinsic::llrint:
6411 case Intrinsic::lround:
6412 case Intrinsic::llround: {
6418 ExpectedName +
": argument must be floating-point or vector "
6419 "of floating-points, and result must be integer or "
6420 "vector of integers",
6423 ExpectedName +
": argument and result disagree on vector use", &
Call);
6425 Check(VTy->getElementCount() == RTy->getElementCount(),
6426 ExpectedName +
": argument must be same length as result", &
Call);
6430 case Intrinsic::bswap: {
6433 Check(
Size % 16 == 0,
"bswap must be an even number of bytes", &
Call);
6436 case Intrinsic::invariant_start: {
6438 Check(InvariantSize &&
6440 "invariant_start parameter must be -1, 0 or a positive number",
6444 case Intrinsic::matrix_multiply:
6445 case Intrinsic::matrix_transpose:
6446 case Intrinsic::matrix_column_major_load:
6447 case Intrinsic::matrix_column_major_store: {
6449 ConstantInt *Stride =
nullptr;
6450 ConstantInt *NumRows;
6451 ConstantInt *NumColumns;
6453 Type *Op0ElemTy =
nullptr;
6454 Type *Op1ElemTy =
nullptr;
6456 case Intrinsic::matrix_multiply: {
6461 ->getNumElements() ==
6463 "First argument of a matrix operation does not match specified "
6466 ->getNumElements() ==
6468 "Second argument of a matrix operation does not match specified "
6478 case Intrinsic::matrix_transpose:
6485 case Intrinsic::matrix_column_major_load: {
6492 case Intrinsic::matrix_column_major_store: {
6505 Check(ResultTy->getElementType()->isIntegerTy() ||
6506 ResultTy->getElementType()->isFloatingPointTy(),
6507 "Result type must be an integer or floating-point type!", IF);
6510 Check(ResultTy->getElementType() == Op0ElemTy,
6511 "Vector element type mismatch of the result and first operand "
6516 Check(ResultTy->getElementType() == Op1ElemTy,
6517 "Vector element type mismatch of the result and second operand "
6523 "Result of a matrix operation does not fit in the returned vector!");
6529 "Stride must be greater or equal than the number of rows!", IF);
6534 case Intrinsic::vector_splice: {
6537 int64_t KnownMinNumElements = VecTy->getElementCount().getKnownMinValue();
6540 if (
Attrs.hasFnAttr(Attribute::VScaleRange))
6541 KnownMinNumElements *=
Attrs.getFnAttrs().getVScaleRangeMin();
6543 Check((Idx < 0 && std::abs(Idx) <= KnownMinNumElements) ||
6544 (Idx >= 0 && Idx < KnownMinNumElements),
6545 "The splice index exceeds the range [-VL, VL-1] where VL is the "
6546 "known minimum number of elements in the vector. For scalable "
6547 "vectors the minimum number of elements is determined from "
6552 case Intrinsic::stepvector: {
6554 Check(VecTy && VecTy->getScalarType()->isIntegerTy() &&
6555 VecTy->getScalarSizeInBits() >= 8,
6556 "stepvector only supported for vectors of integers "
6557 "with a bitwidth of at least 8.",
6561 case Intrinsic::experimental_vector_match: {
6570 Check(Op1Ty && Op2Ty && MaskTy,
"Operands must be vectors.", &
Call);
6572 "Second operand must be a fixed length vector.", &
Call);
6573 Check(Op1Ty->getElementType()->isIntegerTy(),
6574 "First operand must be a vector of integers.", &
Call);
6575 Check(Op1Ty->getElementType() == Op2Ty->getElementType(),
6576 "First two operands must have the same element type.", &
Call);
6577 Check(Op1Ty->getElementCount() == MaskTy->getElementCount(),
6578 "First operand and mask must have the same number of elements.",
6580 Check(MaskTy->getElementType()->isIntegerTy(1),
6581 "Mask must be a vector of i1's.", &
Call);
6586 case Intrinsic::vector_insert: {
6595 ElementCount VecEC = VecTy->getElementCount();
6596 ElementCount SubVecEC = SubVecTy->getElementCount();
6597 Check(VecTy->getElementType() == SubVecTy->getElementType(),
6598 "vector_insert parameters must have the same element "
6602 "vector_insert index must be a constant multiple of "
6603 "the subvector's known minimum vector length.");
6611 "subvector operand of vector_insert would overrun the "
6612 "vector being inserted into.");
6616 case Intrinsic::vector_extract: {
6624 ElementCount VecEC = VecTy->getElementCount();
6625 ElementCount ResultEC = ResultTy->getElementCount();
6627 Check(ResultTy->getElementType() == VecTy->getElementType(),
6628 "vector_extract result must have the same element "
6629 "type as the input vector.",
6632 "vector_extract index must be a constant multiple of "
6633 "the result type's known minimum vector length.");
6641 "vector_extract would overrun.");
6645 case Intrinsic::vector_partial_reduce_fadd:
6646 case Intrinsic::vector_partial_reduce_add: {
6650 unsigned VecWidth = VecTy->getElementCount().getKnownMinValue();
6651 unsigned AccWidth = AccTy->getElementCount().getKnownMinValue();
6653 Check((VecWidth % AccWidth) == 0,
6654 "Invalid vector widths for partial "
6655 "reduction. The width of the input vector "
6656 "must be a positive integer multiple of "
6657 "the width of the accumulator vector.");
6660 case Intrinsic::experimental_noalias_scope_decl: {
6664 case Intrinsic::preserve_array_access_index:
6665 case Intrinsic::preserve_struct_access_index:
6666 case Intrinsic::aarch64_ldaxr:
6667 case Intrinsic::aarch64_ldxr:
6668 case Intrinsic::arm_ldaex:
6669 case Intrinsic::arm_ldrex: {
6671 Check(ElemTy,
"Intrinsic requires elementtype attribute on first argument.",
6675 case Intrinsic::aarch64_stlxr:
6676 case Intrinsic::aarch64_stxr:
6677 case Intrinsic::arm_stlex:
6678 case Intrinsic::arm_strex: {
6681 "Intrinsic requires elementtype attribute on second argument.",
6685 case Intrinsic::aarch64_prefetch: {
6687 "write argument to llvm.aarch64.prefetch must be 0 or 1",
Call);
6689 "target argument to llvm.aarch64.prefetch must be 0-3",
Call);
6691 "stream argument to llvm.aarch64.prefetch must be 0 or 1",
Call);
6693 "isdata argument to llvm.aarch64.prefetch must be 0 or 1",
Call);
6696 case Intrinsic::callbr_landingpad: {
6698 Check(CBR,
"intrinstic requires callbr operand", &
Call);
6705 CheckFailed(
"Intrinsic in block must have 1 unique predecessor", &
Call);
6709 CheckFailed(
"Intrinsic must have corresponding callbr in predecessor",
6714 "Intrinsic's corresponding callbr must have intrinsic's parent basic "
6715 "block in indirect destination list",
6718 Check(&
First == &
Call,
"No other instructions may proceed intrinsic",
6722 case Intrinsic::amdgcn_cs_chain: {
6725 case CallingConv::AMDGPU_CS:
6726 case CallingConv::AMDGPU_CS_Chain:
6727 case CallingConv::AMDGPU_CS_ChainPreserve:
6730 CheckFailed(
"Intrinsic can only be used from functions with the "
6731 "amdgpu_cs, amdgpu_cs_chain or amdgpu_cs_chain_preserve "
6732 "calling conventions",
6738 "SGPR arguments must have the `inreg` attribute", &
Call);
6740 "VGPR arguments must not have the `inreg` attribute", &
Call);
6745 Intrinsic::amdgcn_unreachable;
6747 "llvm.amdgcn.cs.chain must be followed by unreachable", &
Call);
6750 case Intrinsic::amdgcn_init_exec_from_input: {
6753 "only inreg arguments to the parent function are valid as inputs to "
6758 case Intrinsic::amdgcn_set_inactive_chain_arg: {
6761 case CallingConv::AMDGPU_CS_Chain:
6762 case CallingConv::AMDGPU_CS_ChainPreserve:
6765 CheckFailed(
"Intrinsic can only be used from functions with the "
6766 "amdgpu_cs_chain or amdgpu_cs_chain_preserve "
6767 "calling conventions",
6772 unsigned InactiveIdx = 1;
6774 "Value for inactive lanes must not have the `inreg` attribute",
6777 "Value for inactive lanes must be a function argument", &
Call);
6779 "Value for inactive lanes must be a VGPR function argument", &
Call);
6782 case Intrinsic::amdgcn_call_whole_wave: {
6784 Check(
F,
"Indirect whole wave calls are not allowed", &
Call);
6786 CallingConv::ID CC =
F->getCallingConv();
6787 Check(CC == CallingConv::AMDGPU_Gfx_WholeWave,
6788 "Callee must have the amdgpu_gfx_whole_wave calling convention",
6791 Check(!
F->isVarArg(),
"Variadic whole wave calls are not allowed", &
Call);
6794 "Call argument count must match callee argument count", &
Call);
6798 Check(
F->arg_begin()->getType()->isIntegerTy(1),
6799 "Callee must have i1 as its first argument", &
Call);
6800 for (
auto [CallArg, FuncArg] :
6802 Check(CallArg->getType() == FuncArg.getType(),
6803 "Argument types must match", &
Call);
6807 FuncArg.hasInRegAttr(),
6808 "Argument inreg attributes must match", &
Call);
6812 case Intrinsic::amdgcn_s_prefetch_data: {
6816 "llvm.amdgcn.s.prefetch.data only supports global or constant memory");
6819 case Intrinsic::amdgcn_mfma_scale_f32_16x16x128_f8f6f4:
6820 case Intrinsic::amdgcn_mfma_scale_f32_32x32x64_f8f6f4: {
6826 Check(CBSZ <= 4,
"invalid value for cbsz format",
Call,
6828 Check(BLGP <= 4,
"invalid value for blgp format",
Call,
6832 auto getFormatNumRegs = [](
unsigned FormatVal) {
6833 switch (FormatVal) {
6847 auto isValidSrcASrcBVector = [](FixedVectorType *Ty) {
6848 if (!Ty || !Ty->getElementType()->
isIntegerTy(32))
6850 unsigned NumElts = Ty->getNumElements();
6851 return NumElts == 4 || NumElts == 6 || NumElts == 8;
6856 Check(isValidSrcASrcBVector(Src0Ty),
6857 "operand 0 must be 4, 6 or 8 element i32 vector", &
Call, Src0);
6858 Check(isValidSrcASrcBVector(Src1Ty),
6859 "operand 1 must be 4, 6 or 8 element i32 vector", &
Call, Src1);
6862 Check(Src0Ty->getNumElements() >= getFormatNumRegs(CBSZ),
6864 Check(Src1Ty->getNumElements() >= getFormatNumRegs(BLGP),
6868 case Intrinsic::amdgcn_wmma_f32_16x16x128_f8f6f4:
6869 case Intrinsic::amdgcn_wmma_scale_f32_16x16x128_f8f6f4:
6870 case Intrinsic::amdgcn_wmma_scale16_f32_16x16x128_f8f6f4: {
6876 Check(FmtA <= 4,
"invalid value for matrix format",
Call,
6878 Check(FmtB <= 4,
"invalid value for matrix format",
Call,
6882 auto getFormatNumRegs = [](
unsigned FormatVal) {
6883 switch (FormatVal) {
6897 auto isValidSrcASrcBVector = [](FixedVectorType *Ty) {
6898 if (!Ty || !Ty->getElementType()->
isIntegerTy(32))
6900 unsigned NumElts = Ty->getNumElements();
6901 return NumElts == 16 || NumElts == 12 || NumElts == 8;
6906 Check(isValidSrcASrcBVector(Src0Ty),
6907 "operand 1 must be 8, 12 or 16 element i32 vector", &
Call, Src0);
6908 Check(isValidSrcASrcBVector(Src1Ty),
6909 "operand 3 must be 8, 12 or 16 element i32 vector", &
Call, Src1);
6912 Check(Src0Ty->getNumElements() >= getFormatNumRegs(FmtA),
6914 Check(Src1Ty->getNumElements() >= getFormatNumRegs(FmtB),
6918 case Intrinsic::amdgcn_cooperative_atomic_load_32x4B:
6919 case Intrinsic::amdgcn_cooperative_atomic_load_16x8B:
6920 case Intrinsic::amdgcn_cooperative_atomic_load_8x16B:
6921 case Intrinsic::amdgcn_cooperative_atomic_store_32x4B:
6922 case Intrinsic::amdgcn_cooperative_atomic_store_16x8B:
6923 case Intrinsic::amdgcn_cooperative_atomic_store_8x16B: {
6928 "cooperative atomic intrinsics require a generic or global pointer",
6935 "cooperative atomic intrinsics require that the last argument is a "
6940 case Intrinsic::nvvm_setmaxnreg_inc_sync_aligned_u32:
6941 case Intrinsic::nvvm_setmaxnreg_dec_sync_aligned_u32: {
6944 Check(RegCount % 8 == 0,
6945 "reg_count argument to nvvm.setmaxnreg must be in multiples of 8");
6948 case Intrinsic::experimental_convergence_entry:
6949 case Intrinsic::experimental_convergence_anchor:
6951 case Intrinsic::experimental_convergence_loop:
6953 case Intrinsic::ptrmask: {
6957 "llvm.ptrmask intrinsic first argument must be pointer or vector "
6962 "llvm.ptrmask intrinsic arguments must be both scalars or both vectors",
6967 "llvm.ptrmask intrinsic arguments must have the same number of "
6971 "llvm.ptrmask intrinsic second argument bitwidth must match "
6972 "pointer index type size of first argument",
6976 case Intrinsic::thread_pointer: {
6978 DL.getDefaultGlobalsAddressSpace(),
6979 "llvm.thread.pointer intrinsic return type must be for the globals "
6984 case Intrinsic::threadlocal_address: {
6987 "llvm.threadlocal.address first argument must be a GlobalValue");
6989 "llvm.threadlocal.address operand isThreadLocal() must be true");
6992 case Intrinsic::lifetime_start:
6993 case Intrinsic::lifetime_end: {
6996 "llvm.lifetime.start/end can only be used on alloca or poison",
7005 if (
F->hasPersonalityFn() &&
7009 if (BlockEHFuncletColors.
empty())
7013 bool InEHFunclet =
false;
7017 for (BasicBlock *ColorFirstBB : CV)
7018 if (
auto It = ColorFirstBB->getFirstNonPHIIt();
7019 It != ColorFirstBB->end())
7024 bool HasToken =
false;
7031 Check(HasToken,
"Missing funclet token on intrinsic call", &
Call);
7055void Verifier::visit(DbgLabelRecord &DLR) {
7057 "invalid #dbg_label intrinsic variable", &DLR, DLR.
getRawLabel());
7070 CheckDI(Loc,
"#dbg_label record requires a !dbg attachment", &DLR, BB,
F);
7074 if (!LabelSP || !LocSP)
7078 "mismatched subprogram between #dbg_label label and !dbg attachment",
7079 &DLR, BB,
F, Label,
Label->getScope()->getSubprogram(), Loc,
7080 Loc->getScope()->getSubprogram());
7083void Verifier::visit(DbgVariableRecord &DVR) {
7087 CheckDI(DVR.
getType() == DbgVariableRecord::LocationType::Value ||
7088 DVR.
getType() == DbgVariableRecord::LocationType::Declare ||
7089 DVR.
getType() == DbgVariableRecord::LocationType::DeclareValue ||
7090 DVR.
getType() == DbgVariableRecord::LocationType::Assign,
7091 "invalid #dbg record type", &DVR, DVR.
getType(), BB,
F);
7099 "invalid #dbg record address/value", &DVR, MD, BB,
F);
7101 visitValueAsMetadata(*VAM,
F);
7104 Type *Ty = VAM->getValue()->getType();
7106 "location of #dbg_declare must be a pointer or int", &DVR, MD, BB,
7110 visitDIArgList(*AL,
F);
7124 "invalid #dbg_assign DIAssignID", &DVR, DVR.
getRawAssignID(), BB,
7127 AreDebugLocsAllowed::No);
7136 "invalid #dbg_assign address", &DVR, DVR.
getRawAddress(), BB,
F);
7138 visitValueAsMetadata(*VAM,
F);
7141 "invalid #dbg_assign address expression", &DVR,
7148 "inst not in same function as #dbg_assign",
I, &DVR, BB,
F);
7158 &DVR, DLNode, BB,
F);
7164 if (!VarSP || !LocSP)
7168 "mismatched subprogram between #dbg record variable and DILocation",
7170 Loc->getScope()->getSubprogram(), BB,
F);
7175void Verifier::visitVPIntrinsic(VPIntrinsic &VPI) {
7179 Check(RetTy->getElementCount() == ValTy->getElementCount(),
7180 "VP cast intrinsic first argument and result vector lengths must be "
7184 switch (VPCast->getIntrinsicID()) {
7187 case Intrinsic::vp_trunc:
7189 "llvm.vp.trunc intrinsic first argument and result element type "
7193 "llvm.vp.trunc intrinsic the bit size of first argument must be "
7194 "larger than the bit size of the return type",
7197 case Intrinsic::vp_zext:
7198 case Intrinsic::vp_sext:
7200 "llvm.vp.zext or llvm.vp.sext intrinsic first argument and result "
7201 "element type must be integer",
7204 "llvm.vp.zext or llvm.vp.sext intrinsic the bit size of first "
7205 "argument must be smaller than the bit size of the return type",
7208 case Intrinsic::vp_fptoui:
7209 case Intrinsic::vp_fptosi:
7210 case Intrinsic::vp_lrint:
7211 case Intrinsic::vp_llrint:
7214 "llvm.vp.fptoui, llvm.vp.fptosi, llvm.vp.lrint or llvm.vp.llrint" "intrinsic first argument element "
7215 "type must be floating-point and result element type must be integer",
7218 case Intrinsic::vp_uitofp:
7219 case Intrinsic::vp_sitofp:
7222 "llvm.vp.uitofp or llvm.vp.sitofp intrinsic first argument element "
7223 "type must be integer and result element type must be floating-point",
7226 case Intrinsic::vp_fptrunc:
7228 "llvm.vp.fptrunc intrinsic first argument and result element type "
7229 "must be floating-point",
7232 "llvm.vp.fptrunc intrinsic the bit size of first argument must be "
7233 "larger than the bit size of the return type",
7236 case Intrinsic::vp_fpext:
7238 "llvm.vp.fpext intrinsic first argument and result element type "
7239 "must be floating-point",
7242 "llvm.vp.fpext intrinsic the bit size of first argument must be "
7243 "smaller than the bit size of the return type",
7246 case Intrinsic::vp_ptrtoint:
7248 "llvm.vp.ptrtoint intrinsic first argument element type must be "
7249 "pointer and result element type must be integer",
7252 case Intrinsic::vp_inttoptr:
7254 "llvm.vp.inttoptr intrinsic first argument element type must be "
7255 "integer and result element type must be pointer",
7262 case Intrinsic::vp_fcmp: {
7265 "invalid predicate for VP FP comparison intrinsic", &VPI);
7268 case Intrinsic::vp_icmp: {
7271 "invalid predicate for VP integer comparison intrinsic", &VPI);
7274 case Intrinsic::vp_is_fpclass: {
7277 "unsupported bits for llvm.vp.is.fpclass test mask");
7280 case Intrinsic::experimental_vp_splice: {
7283 int64_t KnownMinNumElements = VecTy->getElementCount().getKnownMinValue();
7285 AttributeList
Attrs = VPI.
getParent()->getParent()->getAttributes();
7286 if (
Attrs.hasFnAttr(Attribute::VScaleRange))
7287 KnownMinNumElements *=
Attrs.getFnAttrs().getVScaleRangeMin();
7289 Check((Idx < 0 && std::abs(Idx) <= KnownMinNumElements) ||
7290 (Idx >= 0 && Idx < KnownMinNumElements),
7291 "The splice index exceeds the range [-VL, VL-1] where VL is the "
7292 "known minimum number of elements in the vector. For scalable "
7293 "vectors the minimum number of elements is determined from "
7301void Verifier::visitConstrainedFPIntrinsic(ConstrainedFPIntrinsic &FPI) {
7303 bool HasRoundingMD =
7307 NumOperands += (1 + HasRoundingMD);
7313 "invalid arguments for constrained FP intrinsic", &FPI);
7316 case Intrinsic::experimental_constrained_lrint:
7317 case Intrinsic::experimental_constrained_llrint: {
7321 "Intrinsic does not support vectors", &FPI);
7325 case Intrinsic::experimental_constrained_lround:
7326 case Intrinsic::experimental_constrained_llround: {
7330 "Intrinsic does not support vectors", &FPI);
7334 case Intrinsic::experimental_constrained_fcmp:
7335 case Intrinsic::experimental_constrained_fcmps: {
7338 "invalid predicate for constrained FP comparison intrinsic", &FPI);
7342 case Intrinsic::experimental_constrained_fptosi:
7343 case Intrinsic::experimental_constrained_fptoui: {
7347 "Intrinsic first argument must be floating point", &FPI);
7354 "Intrinsic first argument and result disagree on vector use", &FPI);
7356 "Intrinsic result must be an integer", &FPI);
7359 "Intrinsic first argument and result vector lengths must be equal",
7365 case Intrinsic::experimental_constrained_sitofp:
7366 case Intrinsic::experimental_constrained_uitofp: {
7370 "Intrinsic first argument must be integer", &FPI);
7377 "Intrinsic first argument and result disagree on vector use", &FPI);
7379 "Intrinsic result must be a floating point", &FPI);
7382 "Intrinsic first argument and result vector lengths must be equal",
7388 case Intrinsic::experimental_constrained_fptrunc:
7389 case Intrinsic::experimental_constrained_fpext: {
7395 "Intrinsic first argument must be FP or FP vector", &FPI);
7397 "Intrinsic result must be FP or FP vector", &FPI);
7399 "Intrinsic first argument and result disagree on vector use", &FPI);
7403 "Intrinsic first argument and result vector lengths must be equal",
7406 if (FPI.
getIntrinsicID() == Intrinsic::experimental_constrained_fptrunc) {
7408 "Intrinsic first argument's type must be larger than result type",
7412 "Intrinsic first argument's type must be smaller than result type",
7428 "invalid exception behavior argument", &FPI);
7429 if (HasRoundingMD) {
7435void Verifier::verifyFragmentExpression(
const DbgVariableRecord &DVR) {
7440 if (!V || !
E || !
E->isValid())
7444 auto Fragment =
E->getFragmentInfo();
7454 if (
V->isArtificial())
7457 verifyFragmentExpression(*V, *Fragment, &DVR);
7460template <
typename ValueOrMetadata>
7461void Verifier::verifyFragmentExpression(
const DIVariable &V,
7463 ValueOrMetadata *
Desc) {
7466 auto VarSize =
V.getSizeInBits();
7472 CheckDI(FragSize + FragOffset <= *VarSize,
7473 "fragment is larger than or outside of variable",
Desc, &V);
7474 CheckDI(FragSize != *VarSize,
"fragment covers entire variable",
Desc, &V);
7477void Verifier::verifyFnArgs(
const DbgVariableRecord &DVR) {
7489 CheckDI(Var,
"#dbg record without variable");
7491 unsigned ArgNo = Var->
getArg();
7497 if (DebugFnArgs.
size() < ArgNo)
7498 DebugFnArgs.
resize(ArgNo,
nullptr);
7500 auto *Prev = DebugFnArgs[ArgNo - 1];
7501 DebugFnArgs[ArgNo - 1] = Var;
7502 CheckDI(!Prev || (Prev == Var),
"conflicting debug info for argument", &DVR,
7506void Verifier::verifyNotEntryValue(
const DbgVariableRecord &DVR) {
7510 if (!
E || !
E->isValid())
7520 ArgLoc && ArgLoc->hasAttribute(Attribute::SwiftAsync))
7525 "Entry values are only allowed in MIR unless they target a "
7526 "swiftasync Argument",
7530void Verifier::verifyCompileUnits() {
7534 if (
M.getContext().isODRUniquingDebugTypes())
7536 auto *CUs =
M.getNamedMetadata(
"llvm.dbg.cu");
7537 SmallPtrSet<const Metadata *, 2> Listed;
7540 for (
const auto *CU : CUVisited)
7541 CheckDI(Listed.
count(CU),
"DICompileUnit not listed in llvm.dbg.cu", CU);
7545void Verifier::verifyDeoptimizeCallingConvs() {
7546 if (DeoptimizeDeclarations.
empty())
7550 for (
const auto *
F :
ArrayRef(DeoptimizeDeclarations).slice(1)) {
7551 Check(
First->getCallingConv() ==
F->getCallingConv(),
7552 "All llvm.experimental.deoptimize declarations must have the same "
7553 "calling convention",
7558void Verifier::verifyAttachedCallBundle(
const CallBase &
Call,
7559 const OperandBundleUse &BU) {
7562 Check((FTy->getReturnType()->isPointerTy() ||
7564 "a call with operand bundle \"clang.arc.attachedcall\" must call a "
7565 "function returning a pointer or a non-returning function that has a "
7570 "operand bundle \"clang.arc.attachedcall\" requires one function as "
7578 Check((IID == Intrinsic::objc_retainAutoreleasedReturnValue ||
7579 IID == Intrinsic::objc_claimAutoreleasedReturnValue ||
7580 IID == Intrinsic::objc_unsafeClaimAutoreleasedReturnValue),
7581 "invalid function argument",
Call);
7583 StringRef FnName = Fn->
getName();
7584 Check((FnName ==
"objc_retainAutoreleasedReturnValue" ||
7585 FnName ==
"objc_claimAutoreleasedReturnValue" ||
7586 FnName ==
"objc_unsafeClaimAutoreleasedReturnValue"),
7587 "invalid function argument",
Call);
7591void Verifier::verifyNoAliasScopeDecl() {
7592 if (NoAliasScopeDecls.
empty())
7596 for (
auto *
II : NoAliasScopeDecls) {
7597 assert(
II->getIntrinsicID() == Intrinsic::experimental_noalias_scope_decl &&
7598 "Not a llvm.experimental.noalias.scope.decl ?");
7601 Check(ScopeListMV !=
nullptr,
7602 "llvm.experimental.noalias.scope.decl must have a MetadataAsValue "
7607 Check(ScopeListMD !=
nullptr,
"!id.scope.list must point to an MDNode",
II);
7608 Check(ScopeListMD->getNumOperands() == 1,
7609 "!id.scope.list must point to a list with a single scope",
II);
7610 visitAliasScopeListMetadata(ScopeListMD);
7620 auto GetScope = [](IntrinsicInst *
II) {
7623 return &
cast<MDNode>(ScopeListMV->getMetadata())->getOperand(0);
7628 auto Compare = [GetScope](IntrinsicInst *Lhs, IntrinsicInst *Rhs) {
7629 return GetScope(Lhs) < GetScope(Rhs);
7636 auto ItCurrent = NoAliasScopeDecls.begin();
7637 while (ItCurrent != NoAliasScopeDecls.end()) {
7638 auto CurScope = GetScope(*ItCurrent);
7639 auto ItNext = ItCurrent;
7642 }
while (ItNext != NoAliasScopeDecls.end() &&
7643 GetScope(*ItNext) == CurScope);
7648 if (ItNext - ItCurrent < 32)
7652 Check(!DT.dominates(
I, J),
7653 "llvm.experimental.noalias.scope.decl dominates another one "
7654 "with the same scope",
7668 Verifier V(OS,
true, *f.getParent());
7672 return !V.verify(
F);
7676 bool *BrokenDebugInfo) {
7678 Verifier V(OS, !BrokenDebugInfo, M);
7680 bool Broken =
false;
7682 Broken |= !V.verify(
F);
7684 Broken |= !V.verify();
7685 if (BrokenDebugInfo)
7686 *BrokenDebugInfo = V.hasBrokenDebugInfo();
7697 std::unique_ptr<Verifier> V;
7698 bool FatalErrors =
true;
7703 explicit VerifierLegacyPass(
bool FatalErrors)
7705 FatalErrors(FatalErrors) {
7709 bool doInitialization(
Module &M)
override {
7710 V = std::make_unique<Verifier>(
7716 if (!
V->verify(
F) && FatalErrors) {
7717 errs() <<
"in function " <<
F.getName() <<
'\n';
7723 bool doFinalization(
Module &M)
override {
7724 bool HasErrors =
false;
7725 for (Function &
F : M)
7726 if (
F.isDeclaration())
7727 HasErrors |= !
V->verify(
F);
7729 HasErrors |= !
V->verify();
7730 if (FatalErrors && (HasErrors ||
V->hasBrokenDebugInfo()))
7735 void getAnalysisUsage(AnalysisUsage &AU)
const override {
7743template <
typename... Tys>
void TBAAVerifier::CheckFailed(Tys &&... Args) {
7745 return Diagnostic->CheckFailed(
Args...);
7748#define CheckTBAA(C, ...) \
7751 CheckFailed(__VA_ARGS__); \
7759TBAAVerifier::TBAABaseNodeSummary
7763 CheckFailed(
"Base nodes must have at least two operands",
I, BaseNode);
7767 auto Itr = TBAABaseNodes.find(BaseNode);
7768 if (Itr != TBAABaseNodes.end())
7771 auto Result = verifyTBAABaseNodeImpl(
I, BaseNode, IsNewFormat);
7772 auto InsertResult = TBAABaseNodes.insert({BaseNode, Result});
7774 assert(InsertResult.second &&
"We just checked!");
7778TBAAVerifier::TBAABaseNodeSummary
7779TBAAVerifier::verifyTBAABaseNodeImpl(
const Instruction *
I,
7780 const MDNode *BaseNode,
bool IsNewFormat) {
7781 const TBAAVerifier::TBAABaseNodeSummary InvalidNode = {
true, ~0
u};
7785 return isValidScalarTBAANode(BaseNode)
7786 ? TBAAVerifier::TBAABaseNodeSummary({
false, 0})
7792 CheckFailed(
"Access tag nodes must have the number of operands that is a "
7793 "multiple of 3!", BaseNode);
7798 CheckFailed(
"Struct tag nodes must have an odd number of operands!",
7808 if (!TypeSizeNode) {
7809 CheckFailed(
"Type size nodes must be constants!",
I, BaseNode);
7816 CheckFailed(
"Struct tag nodes have a string as their first operand",
7823 std::optional<APInt> PrevOffset;
7828 unsigned FirstFieldOpNo = IsNewFormat ? 3 : 1;
7829 unsigned NumOpsPerField = IsNewFormat ? 3 : 2;
7830 for (
unsigned Idx = FirstFieldOpNo; Idx < BaseNode->
getNumOperands();
7831 Idx += NumOpsPerField) {
7832 const MDOperand &FieldTy = BaseNode->
getOperand(Idx);
7833 const MDOperand &FieldOffset = BaseNode->
getOperand(Idx + 1);
7835 CheckFailed(
"Incorrect field entry in struct type node!",
I, BaseNode);
7840 auto *OffsetEntryCI =
7842 if (!OffsetEntryCI) {
7843 CheckFailed(
"Offset entries must be constants!",
I, BaseNode);
7849 BitWidth = OffsetEntryCI->getBitWidth();
7851 if (OffsetEntryCI->getBitWidth() !=
BitWidth) {
7853 "Bitwidth between the offsets and struct type entries must match",
I,
7865 !PrevOffset || PrevOffset->ule(OffsetEntryCI->getValue());
7868 CheckFailed(
"Offsets must be increasing!",
I, BaseNode);
7872 PrevOffset = OffsetEntryCI->getValue();
7877 if (!MemberSizeNode) {
7878 CheckFailed(
"Member size entries must be constants!",
I, BaseNode);
7885 return Failed ? InvalidNode
7886 : TBAAVerifier::TBAABaseNodeSummary(
false,
BitWidth);
7908 return Parent && Visited.
insert(Parent).second &&
7912bool TBAAVerifier::isValidScalarTBAANode(
const MDNode *MD) {
7913 auto ResultIt = TBAAScalarNodes.find(MD);
7914 if (ResultIt != TBAAScalarNodes.end())
7915 return ResultIt->second;
7917 SmallPtrSet<const MDNode *, 4> Visited;
7919 auto InsertResult = TBAAScalarNodes.insert({MD,
Result});
7921 assert(InsertResult.second &&
"Just checked!");
7930MDNode *TBAAVerifier::getFieldNodeFromTBAABaseNode(
const Instruction *
I,
7931 const MDNode *BaseNode,
7942 unsigned FirstFieldOpNo = IsNewFormat ? 3 : 1;
7943 unsigned NumOpsPerField = IsNewFormat ? 3 : 2;
7944 for (
unsigned Idx = FirstFieldOpNo; Idx < BaseNode->
getNumOperands();
7945 Idx += NumOpsPerField) {
7946 auto *OffsetEntryCI =
7948 if (OffsetEntryCI->getValue().ugt(
Offset)) {
7949 if (Idx == FirstFieldOpNo) {
7950 CheckFailed(
"Could not find TBAA parent in struct type node",
I,
7955 unsigned PrevIdx = Idx - NumOpsPerField;
7956 auto *PrevOffsetEntryCI =
7958 Offset -= PrevOffsetEntryCI->getValue();
7966 Offset -= LastOffsetEntryCI->getValue();
7971 if (!
Type ||
Type->getNumOperands() < 3)
7987 "This instruction shall not have a TBAA access tag!",
I);
7989 bool IsStructPathTBAA =
7993 "Old-style TBAA is no longer allowed, use struct-path TBAA instead",
8003 "Access tag metadata must have either 4 or 5 operands",
I, MD);
8006 "Struct tag metadata must have either 3 or 4 operands",
I, MD);
8013 CheckTBAA(AccessSizeNode,
"Access size field must be a constant",
I, MD);
8017 unsigned ImmutabilityFlagOpNo = IsNewFormat ? 4 : 3;
8022 "Immutability tag on struct tag metadata must be a constant",
I,
8025 IsImmutableCI->isZero() || IsImmutableCI->isOne(),
8026 "Immutability part of the struct tag metadata must be either 0 or 1",
I,
8031 "Malformed struct tag metadata: base and access-type "
8032 "should be non-null and point to Metadata nodes",
8033 I, MD, BaseNode, AccessType);
8036 CheckTBAA(isValidScalarTBAANode(AccessType),
8037 "Access type node must be a valid scalar type",
I, MD,
8042 CheckTBAA(OffsetCI,
"Offset must be constant integer",
I, MD);
8045 bool SeenAccessTypeInPath =
false;
8051 getFieldNodeFromTBAABaseNode(
I, BaseNode,
Offset, IsNewFormat)) {
8052 if (!StructPath.
insert(BaseNode).second) {
8053 CheckFailed(
"Cycle detected in struct path",
I, MD);
8058 unsigned BaseNodeBitWidth;
8059 std::tie(
Invalid, BaseNodeBitWidth) =
8060 verifyTBAABaseNode(
I, BaseNode, IsNewFormat);
8067 SeenAccessTypeInPath |= BaseNode == AccessType;
8069 if (isValidScalarTBAANode(BaseNode) || BaseNode == AccessType)
8074 (BaseNodeBitWidth == 0 &&
Offset == 0) ||
8075 (IsNewFormat && BaseNodeBitWidth == ~0u),
8076 "Access bit-width not the same as description bit-width",
I, MD,
8077 BaseNodeBitWidth,
Offset.getBitWidth());
8079 if (IsNewFormat && SeenAccessTypeInPath)
8083 CheckTBAA(SeenAccessTypeInPath,
"Did not see access type in access path!",
I,
8088char VerifierLegacyPass::ID = 0;
8089INITIALIZE_PASS(VerifierLegacyPass,
"verify",
"Module Verifier",
false,
false)
8092 return new VerifierLegacyPass(FatalErrors);
8110 if (FatalErrors && (Res.IRBroken || Res.DebugInfoBroken))
8118 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).
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.
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.
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 * 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.
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).