99#include "llvm/IR/IntrinsicsAArch64.h"
100#include "llvm/IR/IntrinsicsARM.h"
101#include "llvm/IR/IntrinsicsNVPTX.h"
102#include "llvm/IR/IntrinsicsWebAssembly.h"
145 cl::desc(
"Ensure that llvm.experimental.noalias.scope.decl for identical "
146 "scopes are not dominating"));
171 Type *LandingPadResultTy;
178 bool HasDebugInfo =
false;
221 SawFrameEscape(
false), TBAAVerifyHelper(this) {
222 TreatBrokenDebugInfoAsError = ShouldTreatBrokenDebugInfoAsError;
225 bool hasBrokenDebugInfo()
const {
return BrokenDebugInfo; }
227 bool verify(
const Function &
F) {
228 llvm::TimeTraceScope timeScope(
"Verifier");
230 "An instance of this class only works with a specific module!");
240 for (
const BasicBlock &BB :
F) {
241 if (!BB.empty() && BB.back().isTerminator())
245 *OS <<
"Basic Block in function '" <<
F.getName()
246 <<
"' does not have terminator!\n";
247 BB.printAsOperand(*OS,
true, MST);
255 DT.recalculate(
const_cast<Function &
>(
F));
257 auto FailureCB = [
this](
const Twine &Message) {
258 this->CheckFailed(Message);
260 ConvergenceVerifyHelper.initialize(OS, FailureCB,
F);
265 verifySiblingFuncletUnwinds();
267 if (ConvergenceVerifyHelper.sawTokens())
268 ConvergenceVerifyHelper.verify(DT);
270 InstsInThisBlock.clear();
272 LandingPadResultTy =
nullptr;
273 SawFrameEscape =
false;
274 SiblingFuncletInfo.clear();
275 verifyNoAliasScopeDecl();
276 NoAliasScopeDecls.clear();
286 for (
const Function &
F : M)
287 if (
F.getIntrinsicID() == Intrinsic::experimental_deoptimize)
288 DeoptimizeDeclarations.push_back(&
F);
292 verifyFrameRecoverIndices();
293 for (
const GlobalVariable &GV :
M.globals())
294 visitGlobalVariable(GV);
296 for (
const GlobalAlias &GA :
M.aliases())
297 visitGlobalAlias(GA);
299 for (
const GlobalIFunc &GI :
M.ifuncs())
300 visitGlobalIFunc(GI);
302 for (
const NamedMDNode &NMD :
M.named_metadata())
303 visitNamedMDNode(NMD);
305 for (
const StringMapEntry<Comdat> &SMEC :
M.getComdatSymbolTable())
306 visitComdat(SMEC.getValue());
310 visitModuleCommandLines();
311 visitModuleErrnoTBAA();
313 verifyCompileUnits();
315 verifyDeoptimizeCallingConvs();
316 DISubprogramAttachments.clear();
322 enum class AreDebugLocsAllowed {
No,
Yes };
326 enum class RangeLikeMetadataKind {
333 void visitGlobalValue(
const GlobalValue &GV);
334 void visitGlobalVariable(
const GlobalVariable &GV);
335 void visitGlobalAlias(
const GlobalAlias &GA);
336 void visitGlobalIFunc(
const GlobalIFunc &GI);
337 void visitAliaseeSubExpr(
const GlobalAlias &
A,
const Constant &
C);
338 void visitAliaseeSubExpr(SmallPtrSetImpl<const GlobalAlias *> &Visited,
339 const GlobalAlias &
A,
const Constant &
C);
340 void visitNamedMDNode(
const NamedMDNode &NMD);
341 void visitMDNode(
const MDNode &MD, AreDebugLocsAllowed AllowLocs);
342 void visitMetadataAsValue(
const MetadataAsValue &MD, Function *
F);
343 void visitValueAsMetadata(
const ValueAsMetadata &MD, Function *
F);
344 void visitDIArgList(
const DIArgList &AL, Function *
F);
345 void visitComdat(
const Comdat &
C);
346 void visitModuleIdents();
347 void visitModuleCommandLines();
348 void visitModuleErrnoTBAA();
349 void visitModuleFlags();
350 void visitModuleFlag(
const MDNode *
Op,
351 DenseMap<const MDString *, const MDNode *> &SeenIDs,
352 SmallVectorImpl<const MDNode *> &Requirements);
353 void visitModuleFlagCGProfileEntry(
const MDOperand &MDO);
354 void visitFunction(
const Function &
F);
355 void visitBasicBlock(BasicBlock &BB);
356 void verifyRangeLikeMetadata(
const Value &V,
const MDNode *
Range,
Type *Ty,
357 RangeLikeMetadataKind Kind);
358 void visitRangeMetadata(Instruction &
I, MDNode *
Range,
Type *Ty);
359 void visitNoFPClassMetadata(Instruction &
I, MDNode *
Range,
Type *Ty);
360 void visitNoaliasAddrspaceMetadata(Instruction &
I, MDNode *
Range,
Type *Ty);
361 void visitDereferenceableMetadata(Instruction &
I, MDNode *MD);
362 void visitNofreeMetadata(Instruction &
I, MDNode *MD);
363 void visitProfMetadata(Instruction &
I, MDNode *MD);
364 void visitCallStackMetadata(MDNode *MD);
365 void visitMemProfMetadata(Instruction &
I, MDNode *MD);
366 void visitCallsiteMetadata(Instruction &
I, MDNode *MD);
367 void visitCalleeTypeMetadata(Instruction &
I, MDNode *MD);
368 void visitDIAssignIDMetadata(Instruction &
I, MDNode *MD);
369 void visitMMRAMetadata(Instruction &
I, MDNode *MD);
370 void visitAnnotationMetadata(MDNode *Annotation);
371 void visitAliasScopeMetadata(
const MDNode *MD);
372 void visitAliasScopeListMetadata(
const MDNode *MD);
373 void visitAccessGroupMetadata(
const MDNode *MD);
374 void visitCapturesMetadata(Instruction &
I,
const MDNode *Captures);
375 void visitAllocTokenMetadata(Instruction &
I, MDNode *MD);
376 void visitInlineHistoryMetadata(Instruction &
I, MDNode *MD);
377 void visitMemCacheHintMetadata(Instruction &
I, MDNode *MD);
379#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) void visit##CLASS(const CLASS &N);
380#include "llvm/IR/Metadata.def"
381 void visitDIType(
const DIType &
N);
382 void visitDIScope(
const DIScope &
N);
406 void checkPtrToAddr(
Type *SrcTy,
Type *DestTy,
const Value &V);
411 void visitPHINode(
PHINode &PN);
420 void visitVAArgInst(
VAArgInst &VAA) { visitInstruction(VAA); }
421 void visitCallInst(CallInst &CI);
422 void visitInvokeInst(InvokeInst &
II);
423 void visitGetElementPtrInst(GetElementPtrInst &
GEP);
424 void visitLoadInst(LoadInst &LI);
425 void visitStoreInst(StoreInst &SI);
426 void verifyDominatesUse(Instruction &
I,
unsigned i);
427 void visitInstruction(Instruction &
I);
428 void visitTerminator(Instruction &
I);
429 void visitCondBrInst(CondBrInst &BI);
430 void visitReturnInst(ReturnInst &RI);
431 void visitSwitchInst(SwitchInst &SI);
432 void visitIndirectBrInst(IndirectBrInst &BI);
433 void visitCallBrInst(CallBrInst &CBI);
434 void visitSelectInst(SelectInst &SI);
435 void visitUserOp1(Instruction &
I);
436 void visitUserOp2(Instruction &
I) { visitUserOp1(
I); }
438 void visitConstrainedFPIntrinsic(ConstrainedFPIntrinsic &FPI);
439 void visitVPIntrinsic(VPIntrinsic &VPI);
440 void visitDbgLabelIntrinsic(StringRef Kind, DbgLabelInst &DLI);
441 void visitAtomicCmpXchgInst(AtomicCmpXchgInst &CXI);
442 void visitAtomicRMWInst(AtomicRMWInst &RMWI);
443 void visitFenceInst(FenceInst &FI);
444 void visitAllocaInst(AllocaInst &AI);
445 void visitExtractValueInst(ExtractValueInst &EVI);
446 void visitInsertValueInst(InsertValueInst &IVI);
447 void visitEHPadPredecessors(Instruction &
I);
448 void visitLandingPadInst(LandingPadInst &LPI);
449 void visitResumeInst(ResumeInst &RI);
450 void visitCatchPadInst(CatchPadInst &CPI);
451 void visitCatchReturnInst(CatchReturnInst &CatchReturn);
452 void visitCleanupPadInst(CleanupPadInst &CPI);
453 void visitFuncletPadInst(FuncletPadInst &FPI);
454 void visitCatchSwitchInst(CatchSwitchInst &CatchSwitch);
455 void visitCleanupReturnInst(CleanupReturnInst &CRI);
457 void verifySwiftErrorCall(CallBase &
Call,
const Value *SwiftErrorVal);
458 void verifySwiftErrorValue(
const Value *SwiftErrorVal);
459 void verifyTailCCMustTailAttrs(
const AttrBuilder &Attrs, StringRef
Context);
460 void verifyMustTailCall(CallInst &CI);
461 bool verifyAttributeCount(AttributeList Attrs,
unsigned Params);
462 void verifyAttributeTypes(AttributeSet Attrs,
const Value *V);
463 void verifyParameterAttrs(AttributeSet Attrs,
Type *Ty,
const Value *V);
464 void checkUnsignedBaseTenFuncAttr(AttributeList Attrs, StringRef Attr,
466 void verifyFunctionAttrs(FunctionType *FT, AttributeList Attrs,
467 const Value *V,
bool IsIntrinsic,
bool IsInlineAsm);
468 void verifyFunctionMetadata(
ArrayRef<std::pair<unsigned, MDNode *>> MDs);
469 void verifyUnknownProfileMetadata(MDNode *MD);
470 void visitConstantExprsRecursively(
const Constant *EntryC);
471 void visitConstantExpr(
const ConstantExpr *CE);
472 void visitConstantPtrAuth(
const ConstantPtrAuth *CPA);
473 void verifyInlineAsmCall(
const CallBase &
Call);
474 void verifyStatepoint(
const CallBase &
Call);
475 void verifyFrameRecoverIndices();
476 void verifySiblingFuncletUnwinds();
478 void verifyFragmentExpression(
const DbgVariableRecord &
I);
479 template <
typename ValueOrMetadata>
480 void verifyFragmentExpression(
const DIVariable &V,
482 ValueOrMetadata *
Desc);
483 void verifyFnArgs(
const DbgVariableRecord &DVR);
484 void verifyNotEntryValue(
const DbgVariableRecord &
I);
487 void verifyCompileUnits();
491 void verifyDeoptimizeCallingConvs();
493 void verifyAttachedCallBundle(
const CallBase &
Call,
494 const OperandBundleUse &BU);
497 void verifyNoAliasScopeDecl();
503#define Check(C, ...) \
506 CheckFailed(__VA_ARGS__); \
513#define CheckDI(C, ...) \
516 DebugInfoCheckFailed(__VA_ARGS__); \
524 CheckDI(
I.DebugMarker->MarkedInstr == &
I,
525 "Instruction has invalid DebugMarker", &
I);
527 "PHI Node must not have any attached DbgRecords", &
I);
529 CheckDI(DR.getMarker() ==
I.DebugMarker,
530 "DbgRecord had invalid DebugMarker", &
I, &DR);
533 visitMDNode(*
Loc, AreDebugLocsAllowed::Yes);
538 verifyFragmentExpression(*DVR);
539 verifyNotEntryValue(*DVR);
546void Verifier::visit(Instruction &
I) {
548 for (
unsigned i = 0, e =
I.getNumOperands(); i != e; ++i)
549 Check(
I.getOperand(i) !=
nullptr,
"Operand is null", &
I);
561 while (!WorkList.
empty()) {
563 if (!Visited.
insert(Cur).second)
570void Verifier::visitGlobalValue(
const GlobalValue &GV) {
572 "Global is external, but doesn't have external or weak linkage!", &GV);
575 if (
const MDNode *Associated =
576 GO->getMetadata(LLVMContext::MD_associated)) {
577 Check(Associated->getNumOperands() == 1,
578 "associated metadata must have one operand", &GV, Associated);
579 const Metadata *
Op = Associated->getOperand(0).get();
580 Check(
Op,
"associated metadata must have a global value", GO, Associated);
583 Check(VM,
"associated metadata must be ValueAsMetadata", GO, Associated);
586 "associated value must be pointer typed", GV, Associated);
588 const Value *Stripped = VM->getValue()->stripPointerCastsAndAliases();
590 "associated metadata must point to a GlobalObject", GO, Stripped);
591 Check(Stripped != GO,
592 "global values should not associate to themselves", GO,
598 if (
const MDNode *AbsoluteSymbol =
599 GO->getMetadata(LLVMContext::MD_absolute_symbol)) {
600 verifyRangeLikeMetadata(*GO, AbsoluteSymbol,
601 DL.getIntPtrType(GO->getType()),
602 RangeLikeMetadataKind::AbsoluteSymbol);
605 if (GO->hasMetadata(LLVMContext::MD_implicit_ref)) {
606 Check(!GO->isDeclaration(),
607 "ref metadata must not be placed on a declaration", GO);
610 GO->getMetadata(LLVMContext::MD_implicit_ref, MDs);
611 for (
const MDNode *MD : MDs) {
612 Check(MD->getNumOperands() == 1,
"ref metadata must have one operand",
616 Check(VM,
"ref metadata must be ValueAsMetadata", GO, MD);
619 "ref value must be pointer typed", GV, MD);
623 "ref metadata must point to a GlobalObject", GO, Stripped);
624 Check(Stripped != GO,
"values should not reference themselves", GO,
630 if (
auto *Props = GO->getMetadata(LLVMContext::MD_elf_section_properties)) {
631 Check(Props->getNumOperands() == 2,
632 "elf_section_properties metadata must have two operands", GO,
634 if (Props->getNumOperands() == 2) {
636 Check(
Type,
"type field must be ConstantAsMetadata", GO, Props);
638 Check(TypeInt,
"type field must be ConstantInt", GO, Props);
641 Check(Entsize,
"entsize field must be ConstantAsMetadata", GO, Props);
643 Check(EntsizeInt,
"entsize field must be ConstantInt", GO, Props);
649 "Only global variables can have appending linkage!", &GV);
653 Check(GVar && GVar->getValueType()->isArrayTy(),
654 "Only global arrays can have appending linkage!", GVar);
658 Check(!GV.
hasComdat(),
"Declaration may not be in a Comdat!", &GV);
662 "dllexport GlobalValue must have default or protected visibility",
667 "dllimport GlobalValue must have default visibility", &GV);
668 Check(!GV.
isDSOLocal(),
"GlobalValue with DLLImport Storage is dso_local!",
674 "Global is marked as dllimport, but not external", &GV);
679 "GlobalValue with local linkage or non-default "
680 "visibility must be dso_local!",
685 if (!
I->getParent() || !
I->getParent()->getParent())
686 CheckFailed(
"Global is referenced by parentless instruction!", &GV, &M,
688 else if (
I->getParent()->getParent()->getParent() != &M)
689 CheckFailed(
"Global is referenced in a different module!", &GV, &M,
I,
690 I->getParent()->getParent(),
691 I->getParent()->getParent()->getParent());
694 if (
F->getParent() != &M)
695 CheckFailed(
"Global is used by function in a different module", &GV, &M,
703void Verifier::visitGlobalVariable(
const GlobalVariable &GV) {
707 Check(
A->value() <= Value::MaximumAlignment,
708 "huge alignment values are unsupported", &GV);
713 "Global variable initializer type does not match global "
717 "Global variable initializer must be sized", &GV);
723 "'common' global must have a zero initializer!", &GV);
726 Check(!GV.
hasComdat(),
"'common' global may not be in a Comdat!", &GV);
731 GV.
getName() ==
"llvm.global_dtors")) {
733 "invalid linkage for intrinsic global variable", &GV);
735 "invalid uses of intrinsic global variable", &GV);
742 PointerType::get(
Context,
DL.getProgramAddressSpace());
743 Check(STy && (STy->getNumElements() == 2 || STy->getNumElements() == 3) &&
744 STy->getTypeAtIndex(0u)->isIntegerTy(32) &&
745 STy->getTypeAtIndex(1) == FuncPtrTy,
746 "wrong type for intrinsic global variable", &GV);
747 Check(STy->getNumElements() == 3,
748 "the third field of the element type is mandatory, "
749 "specify ptr null to migrate from the obsoleted 2-field form");
750 Type *ETy = STy->getTypeAtIndex(2);
759 for (
const Use &U : Init->operands()) {
761 if (!Structor || Structor->getNumOperands() != 3)
764 "signing of ctors/dtors should be requested via module flags");
770 GV.
getName() ==
"llvm.compiler.used")) {
772 "invalid linkage for intrinsic global variable", &GV);
774 "invalid uses of intrinsic global variable", &GV);
778 Check(PTy,
"wrong type for intrinsic global variable", &GV);
782 Check(InitArray,
"wrong initializer for intrinsic global variable",
784 for (
Value *
Op : InitArray->operands()) {
788 Twine(
"invalid ") + GV.
getName() +
" member", V);
790 Twine(
"members of ") + GV.
getName() +
" must be named", V);
799 for (MDNode *MD : MDs) {
801 visitDIGlobalVariableExpression(*GVE);
803 CheckDI(
false,
"!dbg attachment of global variable must be a "
804 "DIGlobalVariableExpression");
814 "Global @" + GV.
getName() +
" has illegal target extension type",
823 "Global variable is too large to fit into the address space", &GV,
827 visitGlobalValue(GV);
834 visitGlobalValue(GV);
837void Verifier::visitAliaseeSubExpr(
const GlobalAlias &GA,
const Constant &
C) {
838 SmallPtrSet<const GlobalAlias*, 4> Visited;
840 visitAliaseeSubExpr(Visited, GA,
C);
843void Verifier::visitAliaseeSubExpr(SmallPtrSetImpl<const GlobalAlias*> &Visited,
844 const GlobalAlias &GA,
const Constant &
C) {
848 "available_externally alias must point to available_externally "
859 Check(Visited.
insert(GA2).second,
"Aliases cannot form a cycle", &GA);
861 Check(!GA2->isInterposable(),
862 "Alias cannot point to an interposable alias", &GA);
871 visitConstantExprsRecursively(CE);
873 for (
const Use &U :
C.operands()) {
876 visitAliaseeSubExpr(Visited, GA, *GA2->getAliasee());
878 visitAliaseeSubExpr(Visited, GA, *C2);
882void Verifier::visitGlobalAlias(
const GlobalAlias &GA) {
884 "Alias should have private, internal, linkonce, weak, linkonce_odr, "
885 "weak_odr, external, or available_externally linkage!",
888 Check(Aliasee,
"Aliasee cannot be NULL!", &GA);
890 "Alias and aliasee types should match!", &GA);
893 "Aliasee should be either GlobalValue or ConstantExpr", &GA);
895 visitAliaseeSubExpr(GA, *Aliasee);
897 visitGlobalValue(GA);
900void Verifier::visitGlobalIFunc(
const GlobalIFunc &GI) {
901 visitGlobalValue(GI);
905 for (
const auto &
I : MDs) {
906 CheckDI(
I.first != LLVMContext::MD_dbg,
907 "an ifunc may not have a !dbg attachment", &GI);
908 Check(
I.first != LLVMContext::MD_prof,
909 "an ifunc may not have a !prof attachment", &GI);
910 visitMDNode(*
I.second, AreDebugLocsAllowed::No);
914 "IFunc should have private, internal, linkonce, weak, linkonce_odr, "
915 "weak_odr, or external linkage!",
920 Check(Resolver,
"IFunc must have a Function resolver", &GI);
922 "IFunc resolver must be a definition", &GI);
929 "IFunc resolver must return a pointer", &GI);
932 "IFunc resolver has incorrect type", &GI);
935void Verifier::visitNamedMDNode(
const NamedMDNode &NMD) {
940 "unrecognized named metadata node in the llvm.dbg namespace", &NMD);
941 for (
const MDNode *MD : NMD.
operands()) {
942 if (NMD.
getName() ==
"llvm.dbg.cu")
948 visitMDNode(*MD, AreDebugLocsAllowed::Yes);
952void Verifier::visitMDNode(
const MDNode &BaseMD,
953 AreDebugLocsAllowed AllowLocs) {
956 if (!MDNodes.
insert(&BaseMD).second)
959 std::queue<const MDNode *> Worklist;
960 Worklist.push(&BaseMD);
962 while (!Worklist.empty()) {
963 const MDNode *CurrentMD = Worklist.front();
966 "MDNode context does not match Module context!", CurrentMD);
971 case Metadata::MDTupleKind:
973#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) \
974 case Metadata::CLASS##Kind: \
975 visit##CLASS(cast<CLASS>(*CurrentMD)); \
977#include "llvm/IR/Metadata.def"
986 "DILocation not allowed within this metadata node", CurrentMD,
994 visitValueAsMetadata(*V,
nullptr);
1008 "Expected second operand to be an integer constant of type i32 or "
1020 "Expecting only the metadata name", CurrentMD);
1025 Check(CurrentMD->
isResolved(),
"All nodes should be resolved!", CurrentMD);
1029void Verifier::visitValueAsMetadata(
const ValueAsMetadata &MD, Function *
F) {
1032 "Unexpected metadata round-trip through values", &MD, MD.
getValue());
1038 Check(
F,
"function-local metadata used outside a function", L);
1044 Check(
I->getParent(),
"function-local metadata not in basic block", L,
I);
1051 assert(ActualF &&
"Unimplemented function local metadata case!");
1053 Check(ActualF ==
F,
"function-local metadata used in wrong function", L);
1056void Verifier::visitDIArgList(
const DIArgList &AL, Function *
F) {
1057 for (
const ValueAsMetadata *VAM :
AL.getArgs())
1058 visitValueAsMetadata(*VAM,
F);
1061void Verifier::visitMetadataAsValue(
const MetadataAsValue &MDV, Function *
F) {
1064 visitMDNode(*
N, AreDebugLocsAllowed::No);
1070 if (!MDNodes.
insert(MD).second)
1074 visitValueAsMetadata(*V,
F);
1077 visitDIArgList(*AL,
F);
1085void Verifier::visitDILocation(
const DILocation &
N) {
1087 "location requires a valid scope", &
N,
N.getRawScope());
1088 if (
auto *IA =
N.getRawInlinedAt())
1091 CheckDI(
SP->isDefinition(),
"scope points into the type hierarchy", &
N);
1094void Verifier::visitGenericDINode(
const GenericDINode &
N) {
1098void Verifier::visitDIScope(
const DIScope &
N) {
1099 if (
auto *
F =
N.getRawFile())
1103void Verifier::visitDIType(
const DIType &
N) {
1106 CheckDI(
N.getRawFile() ||
N.getLine() == 0,
"line specified with no file", &
N,
1110void Verifier::visitDISubrangeType(
const DISubrangeType &
N) {
1113 CheckDI(
N.getTag() == dwarf::DW_TAG_subrange_type,
"invalid tag", &
N);
1116 auto *LBound =
N.getRawLowerBound();
1120 "LowerBound must be signed constant or DIVariable or DIExpression or "
1123 auto *UBound =
N.getRawUpperBound();
1127 "UpperBound must be signed constant or DIVariable or DIExpression or "
1130 auto *Stride =
N.getRawStride();
1133 "Stride must be signed constant or DIVariable or DIExpression", &
N);
1134 auto *Bias =
N.getRawBias();
1137 "Bias must be signed constant or DIVariable or DIExpression", &
N);
1139 auto *
Size =
N.getRawSizeInBits();
1141 "SizeInBits must be a constant");
1144void Verifier::visitDISubrange(
const DISubrange &
N) {
1145 CheckDI(
N.getTag() == dwarf::DW_TAG_subrange_type,
"invalid tag", &
N);
1146 CheckDI(!
N.getRawCountNode() || !
N.getRawUpperBound(),
1147 "Subrange can have any one of count or upperBound", &
N);
1148 auto *CBound =
N.getRawCountNode();
1151 "Count must be signed constant or DIVariable or DIExpression", &
N);
1152 auto Count =
N.getCount();
1155 "invalid subrange count", &
N);
1156 auto *LBound =
N.getRawLowerBound();
1159 "LowerBound must be signed constant or DIVariable or DIExpression",
1161 auto *UBound =
N.getRawUpperBound();
1164 "UpperBound must be signed constant or DIVariable or DIExpression",
1166 auto *Stride =
N.getRawStride();
1169 "Stride must be signed constant or DIVariable or DIExpression", &
N);
1172void Verifier::visitDIGenericSubrange(
const DIGenericSubrange &
N) {
1173 CheckDI(
N.getTag() == dwarf::DW_TAG_generic_subrange,
"invalid tag", &
N);
1174 CheckDI(!
N.getRawCountNode() || !
N.getRawUpperBound(),
1175 "GenericSubrange can have any one of count or upperBound", &
N);
1176 auto *CBound =
N.getRawCountNode();
1178 "Count must be signed constant or DIVariable or DIExpression", &
N);
1179 auto *LBound =
N.getRawLowerBound();
1180 CheckDI(LBound,
"GenericSubrange must contain lowerBound", &
N);
1182 "LowerBound must be signed constant or DIVariable or DIExpression",
1184 auto *UBound =
N.getRawUpperBound();
1186 "UpperBound must be signed constant or DIVariable or DIExpression",
1188 auto *Stride =
N.getRawStride();
1189 CheckDI(Stride,
"GenericSubrange must contain stride", &
N);
1191 "Stride must be signed constant or DIVariable or DIExpression", &
N);
1194void Verifier::visitDIEnumerator(
const DIEnumerator &
N) {
1195 CheckDI(
N.getTag() == dwarf::DW_TAG_enumerator,
"invalid tag", &
N);
1198void Verifier::visitDIBasicType(
const DIBasicType &
N) {
1201 CheckDI(
N.getTag() == dwarf::DW_TAG_base_type ||
1202 N.getTag() == dwarf::DW_TAG_unspecified_type ||
1203 N.getTag() == dwarf::DW_TAG_string_type,
1206 auto *
Size =
N.getRawSizeInBits();
1208 "SizeInBits must be a constant");
1211void Verifier::visitDIFixedPointType(
const DIFixedPointType &
N) {
1212 visitDIBasicType(
N);
1214 CheckDI(
N.getTag() == dwarf::DW_TAG_base_type,
"invalid tag", &
N);
1215 CheckDI(
N.getEncoding() == dwarf::DW_ATE_signed_fixed ||
1216 N.getEncoding() == dwarf::DW_ATE_unsigned_fixed,
1217 "invalid encoding", &
N);
1221 "invalid kind", &
N);
1223 N.getFactorRaw() == 0,
1224 "factor should be 0 for rationals", &
N);
1226 (
N.getNumeratorRaw() == 0 &&
N.getDenominatorRaw() == 0),
1227 "numerator and denominator should be 0 for non-rationals", &
N);
1230void Verifier::visitDIStringType(
const DIStringType &
N) {
1233 CheckDI(
N.getTag() == dwarf::DW_TAG_string_type,
"invalid tag", &
N);
1234 CheckDI(!(
N.isBigEndian() &&
N.isLittleEndian()),
"has conflicting flags",
1238void Verifier::visitDIDerivedType(
const DIDerivedType &
N) {
1242 CheckDI(
N.getTag() == dwarf::DW_TAG_typedef ||
1243 N.getTag() == dwarf::DW_TAG_pointer_type ||
1244 N.getTag() == dwarf::DW_TAG_ptr_to_member_type ||
1245 N.getTag() == dwarf::DW_TAG_reference_type ||
1246 N.getTag() == dwarf::DW_TAG_rvalue_reference_type ||
1247 N.getTag() == dwarf::DW_TAG_const_type ||
1248 N.getTag() == dwarf::DW_TAG_immutable_type ||
1249 N.getTag() == dwarf::DW_TAG_volatile_type ||
1250 N.getTag() == dwarf::DW_TAG_restrict_type ||
1251 N.getTag() == dwarf::DW_TAG_atomic_type ||
1252 N.getTag() == dwarf::DW_TAG_LLVM_ptrauth_type ||
1253 N.getTag() == dwarf::DW_TAG_member ||
1254 (
N.getTag() == dwarf::DW_TAG_variable &&
N.isStaticMember()) ||
1255 N.getTag() == dwarf::DW_TAG_inheritance ||
1256 N.getTag() == dwarf::DW_TAG_friend ||
1257 N.getTag() == dwarf::DW_TAG_set_type ||
1258 N.getTag() == dwarf::DW_TAG_template_alias,
1260 if (
N.getTag() == dwarf::DW_TAG_ptr_to_member_type) {
1261 CheckDI(
isType(
N.getRawExtraData()),
"invalid pointer to member type", &
N,
1262 N.getRawExtraData());
1263 }
else if (
N.getTag() == dwarf::DW_TAG_template_alias) {
1265 N.getRawExtraData());
1266 }
else if (
N.getTag() == dwarf::DW_TAG_inheritance ||
1267 N.getTag() == dwarf::DW_TAG_member ||
1268 N.getTag() == dwarf::DW_TAG_variable) {
1269 auto *ExtraData =
N.getRawExtraData();
1270 auto IsValidExtraData = [&]() {
1271 if (ExtraData ==
nullptr)
1277 if (Tuple->getNumOperands() != 1)
1284 "extraData must be ConstantAsMetadata, MDString, DIObjCProperty, "
1285 "or MDTuple with single ConstantAsMetadata operand",
1289 if (
N.getTag() == dwarf::DW_TAG_set_type) {
1290 if (
auto *
T =
N.getRawBaseType()) {
1295 (Enum &&
Enum->getTag() == dwarf::DW_TAG_enumeration_type) ||
1296 (Subrange &&
Subrange->getTag() == dwarf::DW_TAG_subrange_type) ||
1297 (
Basic && (
Basic->getEncoding() == dwarf::DW_ATE_unsigned ||
1298 Basic->getEncoding() == dwarf::DW_ATE_signed ||
1299 Basic->getEncoding() == dwarf::DW_ATE_unsigned_char ||
1300 Basic->getEncoding() == dwarf::DW_ATE_signed_char ||
1301 Basic->getEncoding() == dwarf::DW_ATE_boolean)),
1302 "invalid set base type", &
N,
T);
1307 N.getRawBaseType());
1309 if (
N.getDWARFAddressSpace()) {
1310 CheckDI(
N.getTag() == dwarf::DW_TAG_pointer_type ||
1311 N.getTag() == dwarf::DW_TAG_reference_type ||
1312 N.getTag() == dwarf::DW_TAG_rvalue_reference_type,
1313 "DWARF address space only applies to pointer or reference types",
1317 auto *
Size =
N.getRawSizeInBits();
1320 "SizeInBits must be a constant or DIVariable or DIExpression");
1325 return ((Flags & DINode::FlagLValueReference) &&
1326 (Flags & DINode::FlagRValueReference)) ||
1327 ((Flags & DINode::FlagTypePassByValue) &&
1328 (Flags & DINode::FlagTypePassByReference));
1331void Verifier::visitTemplateParams(
const MDNode &
N,
const Metadata &RawParams) {
1333 CheckDI(Params,
"invalid template params", &
N, &RawParams);
1340void Verifier::visitDICompositeType(
const DICompositeType &
N) {
1344 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type ||
1345 N.getTag() == dwarf::DW_TAG_structure_type ||
1346 N.getTag() == dwarf::DW_TAG_union_type ||
1347 N.getTag() == dwarf::DW_TAG_enumeration_type ||
1348 N.getTag() == dwarf::DW_TAG_class_type ||
1349 N.getTag() == dwarf::DW_TAG_variant_part ||
1350 N.getTag() == dwarf::DW_TAG_variant ||
1351 N.getTag() == dwarf::DW_TAG_namelist,
1355 N.getRawBaseType());
1358 "invalid composite elements", &
N,
N.getRawElements());
1360 N.getRawVTableHolder());
1362 "invalid reference flags", &
N);
1363 unsigned DIBlockByRefStruct = 1 << 4;
1364 CheckDI((
N.getFlags() & DIBlockByRefStruct) == 0,
1365 "DIBlockByRefStruct on DICompositeType is no longer supported", &
N);
1367 "DISubprogram contains null entry in `elements` field", &
N);
1370 const DINodeArray
Elements =
N.getElements();
1372 Elements[0]->getTag() == dwarf::DW_TAG_subrange_type,
1373 "invalid vector, expected one element of type subrange", &
N);
1376 if (
auto *Params =
N.getRawTemplateParams())
1377 visitTemplateParams(
N, *Params);
1379 if (
auto *
D =
N.getRawDiscriminator()) {
1381 "discriminator can only appear on variant part");
1384 if (
N.getRawDataLocation()) {
1385 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1386 "dataLocation can only appear in array type");
1389 if (
N.getRawAssociated()) {
1390 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1391 "associated can only appear in array type");
1394 if (
N.getRawAllocated()) {
1395 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1396 "allocated can only appear in array type");
1399 if (
N.getRawRank()) {
1400 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1401 "rank can only appear in array type");
1404 if (
N.getTag() == dwarf::DW_TAG_array_type) {
1405 CheckDI(
N.getRawBaseType(),
"array types must have a base type", &
N);
1408 auto *
Size =
N.getRawSizeInBits();
1411 "SizeInBits must be a constant or DIVariable or DIExpression");
1414void Verifier::visitDISubroutineType(
const DISubroutineType &
N) {
1416 CheckDI(
N.getTag() == dwarf::DW_TAG_subroutine_type,
"invalid tag", &
N);
1417 if (
auto *Types =
N.getRawTypeArray()) {
1419 for (
Metadata *Ty :
N.getTypeArray()->operands()) {
1420 CheckDI(
isType(Ty),
"invalid subroutine type ref", &
N, Types, Ty);
1424 "invalid reference flags", &
N);
1427void Verifier::visitDIFile(
const DIFile &
N) {
1428 CheckDI(
N.getTag() == dwarf::DW_TAG_file_type,
"invalid tag", &
N);
1429 std::optional<DIFile::ChecksumInfo<StringRef>> Checksum =
N.getChecksum();
1431 CheckDI(Checksum->Kind <= DIFile::ChecksumKind::CSK_Last,
1432 "invalid checksum kind", &
N);
1434 switch (Checksum->Kind) {
1445 CheckDI(Checksum->Value.size() ==
Size,
"invalid checksum length", &
N);
1447 "invalid checksum", &
N);
1451void Verifier::visitDICompileUnit(
const DICompileUnit &
N) {
1452 CheckDI(
N.isDistinct(),
"compile units must be distinct", &
N);
1453 CheckDI(
N.getTag() == dwarf::DW_TAG_compile_unit,
"invalid tag", &
N);
1459 CheckDI(!
N.getFile()->getFilename().empty(),
"invalid filename", &
N,
1463 "invalid emission kind", &
N);
1466 "invalid language dialect", &
N);
1468 if (
auto *Array =
N.getRawEnumTypes()) {
1470 for (
Metadata *
Op :
N.getEnumTypes()->operands()) {
1472 CheckDI(Enum &&
Enum->getTag() == dwarf::DW_TAG_enumeration_type,
1473 "invalid enum type", &
N,
N.getEnumTypes(),
Op);
1475 "function-local enum in a DICompileUnit's enum list", &
N,
1476 N.getEnumTypes(),
Op);
1479 if (
auto *Array =
N.getRawRetainedTypes()) {
1481 for (
Metadata *
Op :
N.getRetainedTypes()->operands()) {
1485 "invalid retained type", &
N,
Op);
1488 if (
auto *Array =
N.getRawGlobalVariables()) {
1490 for (
Metadata *
Op :
N.getGlobalVariables()->operands()) {
1492 CheckDI(GVE,
"invalid global variable ref", &
N,
Op);
1494 "function-local variables are not allowed in a DICompileUnit's "
1495 "global variables list",
1499 if (
auto *Array =
N.getRawImportedEntities()) {
1501 for (
Metadata *
Op :
N.getImportedEntities()->operands()) {
1503 CheckDI(IE,
"invalid imported entity ref", &
N,
Op);
1505 "function-local imports are not allowed in a DICompileUnit's "
1506 "imported entities list",
1510 if (
auto *Array =
N.getRawMacros()) {
1519void Verifier::visitDISubprogram(
const DISubprogram &
N) {
1520 CheckDI(
N.getTag() == dwarf::DW_TAG_subprogram,
"invalid tag", &
N);
1522 if (
auto *
F =
N.getRawFile())
1525 CheckDI(
N.getLine() == 0,
"line specified with no file", &
N,
N.getLine());
1526 auto *
T =
N.getRawType();
1527 CheckDI(
T,
"DISubprogram requires a non-null type", &
N);
1529 CheckDI(
isType(
N.getRawContainingType()),
"invalid containing type", &
N,
1530 N.getRawContainingType());
1531 if (
auto *Params =
N.getRawTemplateParams())
1532 visitTemplateParams(
N, *Params);
1533 if (
auto *S =
N.getRawDeclaration())
1535 "invalid subprogram declaration", &
N, S);
1536 if (
auto *RawNode =
N.getRawRetainedNodes()) {
1538 CheckDI(Node,
"invalid retained nodes list", &
N, RawNode);
1540 DenseMap<unsigned, DILocalVariable *>
Args;
1542 CheckDI(
Op,
"nullptr in retained nodes", &
N, Node);
1544 auto True = [](
const Metadata *) {
return true; };
1545 auto False = [](
const Metadata *) {
return false; };
1546 bool IsTypeCorrect = DISubprogram::visitRetainedNode<bool>(
1547 Op, True, True, True, True, True, False);
1549 "invalid retained nodes, expected DILocalVariable, DILabel, "
1550 "DIImportedEntity, DIType or DIGlobalVariableExpression",
1557 "invalid retained nodes, retained node is not local", &
N, Node,
1560 DISubprogram *RetainedNodeSP = RetainedNodeScope->getSubprogram();
1561 DICompileUnit *RetainedNodeUnit =
1562 RetainedNodeSP ? RetainedNodeSP->getUnit() :
nullptr;
1564 RetainedNodeSP == &
N,
1565 "invalid retained nodes, retained node does not belong to subprogram",
1566 &
N, Node, RetainedNode, RetainedNodeScope, RetainedNodeSP,
1572 if (
unsigned ArgNum = DV->getArg()) {
1574 CheckDI(Inserted || DV == ArgI->second,
1575 "invalid retained nodes, more than one local variable with the "
1576 "same argument index",
1577 &
N,
N.getUnit(), Node, RetainedNode, Args[ArgNum]);
1582 "invalid reference flags", &
N);
1584 auto *
Unit =
N.getRawUnit();
1585 if (
N.isDefinition()) {
1587 CheckDI(
N.isDistinct(),
"subprogram definitions must be distinct", &
N);
1588 CheckDI(Unit,
"subprogram definitions must have a compile unit", &
N);
1593 if (CT && CT->getRawIdentifier() &&
1594 M.getContext().isODRUniquingDebugTypes())
1596 "definition subprograms cannot be nested within DICompositeType "
1597 "when enabling ODR",
1601 CheckDI(!Unit,
"subprogram declarations must not have a compile unit", &
N);
1603 "subprogram declaration must not have a declaration field");
1606 if (
auto *RawThrownTypes =
N.getRawThrownTypes()) {
1608 CheckDI(ThrownTypes,
"invalid thrown types list", &
N, RawThrownTypes);
1614 if (
N.areAllCallsDescribed())
1616 "DIFlagAllCallsDescribed must be attached to a definition");
1619void Verifier::visitDILexicalBlockBase(
const DILexicalBlockBase &
N) {
1620 CheckDI(
N.getTag() == dwarf::DW_TAG_lexical_block,
"invalid tag", &
N);
1622 "invalid local scope", &
N,
N.getRawScope());
1624 CheckDI(
SP->isDefinition(),
"scope points into the type hierarchy", &
N);
1627void Verifier::visitDILexicalBlock(
const DILexicalBlock &
N) {
1628 visitDILexicalBlockBase(
N);
1631 "cannot have column info without line info", &
N);
1634void Verifier::visitDILexicalBlockFile(
const DILexicalBlockFile &
N) {
1635 visitDILexicalBlockBase(
N);
1638void Verifier::visitDICommonBlock(
const DICommonBlock &
N) {
1639 CheckDI(
N.getTag() == dwarf::DW_TAG_common_block,
"invalid tag", &
N);
1640 if (
auto *S =
N.getRawScope())
1642 if (
auto *S =
N.getRawDecl())
1646void Verifier::visitDINamespace(
const DINamespace &
N) {
1647 CheckDI(
N.getTag() == dwarf::DW_TAG_namespace,
"invalid tag", &
N);
1648 if (
auto *S =
N.getRawScope())
1652void Verifier::visitDIMacro(
const DIMacro &
N) {
1655 "invalid macinfo type", &
N);
1656 CheckDI(!
N.getName().empty(),
"anonymous macro", &
N);
1657 if (!
N.getValue().empty()) {
1658 assert(
N.getValue().data()[0] !=
' ' &&
"Macro value has a space prefix");
1662void Verifier::visitDIMacroFile(
const DIMacroFile &
N) {
1664 "invalid macinfo type", &
N);
1665 if (
auto *
F =
N.getRawFile())
1668 if (
auto *Array =
N.getRawElements()) {
1670 for (
Metadata *
Op :
N.getElements()->operands()) {
1676void Verifier::visitDIModule(
const DIModule &
N) {
1677 CheckDI(
N.getTag() == dwarf::DW_TAG_module,
"invalid tag", &
N);
1678 CheckDI(!
N.getName().empty(),
"anonymous module", &
N);
1681void Verifier::visitDITemplateParameter(
const DITemplateParameter &
N) {
1685void Verifier::visitDITemplateTypeParameter(
const DITemplateTypeParameter &
N) {
1686 visitDITemplateParameter(
N);
1688 CheckDI(
N.getTag() == dwarf::DW_TAG_template_type_parameter,
"invalid tag",
1692void Verifier::visitDITemplateValueParameter(
1693 const DITemplateValueParameter &
N) {
1694 visitDITemplateParameter(
N);
1696 CheckDI(
N.getTag() == dwarf::DW_TAG_template_value_parameter ||
1697 N.getTag() == dwarf::DW_TAG_GNU_template_template_param ||
1698 N.getTag() == dwarf::DW_TAG_GNU_template_parameter_pack,
1702void Verifier::visitDIVariable(
const DIVariable &
N) {
1703 if (
auto *S =
N.getRawScope())
1705 if (
auto *
F =
N.getRawFile())
1709void Verifier::visitDIGlobalVariable(
const DIGlobalVariable &
N) {
1713 CheckDI(
N.getTag() == dwarf::DW_TAG_variable,
"invalid tag", &
N);
1716 if (
N.isDefinition())
1717 CheckDI(
N.getType(),
"missing global variable type", &
N);
1718 if (
auto *Member =
N.getRawStaticDataMemberDeclaration()) {
1720 "invalid static data member declaration", &
N, Member);
1724void Verifier::visitDILocalVariable(
const DILocalVariable &
N) {
1729 CheckDI(
N.getTag() == dwarf::DW_TAG_variable,
"invalid tag", &
N);
1731 "local variable requires a valid scope", &
N,
N.getRawScope());
1732 if (
auto Ty =
N.getType())
1736void Verifier::visitDIAssignID(
const DIAssignID &
N) {
1737 CheckDI(!
N.getNumOperands(),
"DIAssignID has no arguments", &
N);
1738 CheckDI(
N.isDistinct(),
"DIAssignID must be distinct", &
N);
1741void Verifier::visitDILabel(
const DILabel &
N) {
1742 if (
auto *S =
N.getRawScope())
1744 if (
auto *
F =
N.getRawFile())
1747 CheckDI(
N.getTag() == dwarf::DW_TAG_label,
"invalid tag", &
N);
1749 "label requires a valid scope", &
N,
N.getRawScope());
1752void Verifier::visitDIExpression(
const DIExpression &
N) {
1753 CheckDI(
N.isValid(),
"invalid expression", &
N);
1756void Verifier::visitDIGlobalVariableExpression(
1757 const DIGlobalVariableExpression &GVE) {
1760 visitDIGlobalVariable(*Var);
1762 visitDIExpression(*Expr);
1763 if (
auto Fragment = Expr->getFragmentInfo())
1764 verifyFragmentExpression(*GVE.
getVariable(), *Fragment, &GVE);
1768void Verifier::visitDIObjCProperty(
const DIObjCProperty &
N) {
1769 CheckDI(
N.getTag() == dwarf::DW_TAG_APPLE_property,
"invalid tag", &
N);
1770 if (
auto *
T =
N.getRawType())
1772 if (
auto *
F =
N.getRawFile())
1776void Verifier::visitDIImportedEntity(
const DIImportedEntity &
N) {
1777 CheckDI(
N.getTag() == dwarf::DW_TAG_imported_module ||
1778 N.getTag() == dwarf::DW_TAG_imported_declaration,
1780 if (
auto *S =
N.getRawScope())
1786void Verifier::visitComdat(
const Comdat &
C) {
1789 if (
TT.isOSBinFormatCOFF())
1790 if (
const GlobalValue *GV =
M.getNamedValue(
C.getName()))
1795void Verifier::visitModuleIdents() {
1796 const NamedMDNode *Idents =
M.getNamedMetadata(
"llvm.ident");
1802 for (
const MDNode *
N : Idents->
operands()) {
1803 Check(
N->getNumOperands() == 1,
1804 "incorrect number of operands in llvm.ident metadata",
N);
1806 (
"invalid value for llvm.ident metadata entry operand"
1807 "(the operand should be a string)"),
1812void Verifier::visitModuleCommandLines() {
1813 const NamedMDNode *CommandLines =
M.getNamedMetadata(
"llvm.commandline");
1820 for (
const MDNode *
N : CommandLines->
operands()) {
1821 Check(
N->getNumOperands() == 1,
1822 "incorrect number of operands in llvm.commandline metadata",
N);
1824 (
"invalid value for llvm.commandline metadata entry operand"
1825 "(the operand should be a string)"),
1830void Verifier::visitModuleErrnoTBAA() {
1831 const NamedMDNode *ErrnoTBAA =
M.getNamedMetadata(
"llvm.errno.tbaa");
1836 "llvm.errno.tbaa must have at least one operand", ErrnoTBAA);
1838 for (
const MDNode *
N : ErrnoTBAA->
operands())
1842void Verifier::visitModuleFlags() {
1843 const NamedMDNode *
Flags =
M.getModuleFlagsMetadata();
1847 DenseMap<const MDString*, const MDNode*> SeenIDs;
1851 std::optional<uint64_t> PAuthABIPlatform;
1852 std::optional<uint64_t> PAuthABIVersion;
1854 uint64_t HasPtrauthInitFini = 0;
1855 uint64_t HasPtrauthInitFiniAddr = 0;
1857 for (
const MDNode *MDN :
Flags->operands()) {
1858 visitModuleFlag(MDN, SeenIDs, Requirements);
1859 if (MDN->getNumOperands() != 3)
1863 auto GetFlagNamed = [&](StringRef
Name) -> std::optional<uint64_t> {
1864 if (FlagName->getString() != Name)
1865 return std::nullopt;
1866 if (
const auto *FlagValue =
1868 return FlagValue->getZExtValue();
1870 CheckFailed(Name +
": module flag expects integer value");
1871 return std::nullopt;
1874 if (
auto Value = GetFlagNamed(
"aarch64-elf-pauthabi-platform"))
1875 PAuthABIPlatform = *
Value;
1876 else if (
auto Value = GetFlagNamed(
"aarch64-elf-pauthabi-version"))
1877 PAuthABIVersion = *
Value;
1878 else if (
auto Value = GetFlagNamed(
"ptrauth-init-fini"))
1879 HasPtrauthInitFini = *
Value;
1880 else if (
auto Value =
1881 GetFlagNamed(
"ptrauth-init-fini-address-discrimination"))
1882 HasPtrauthInitFiniAddr = *
Value;
1887 "ptrauth-init-fini must be 0 or 1");
1889 "ptrauth-init-fini-address-discrimination must be 0 or 1, if set");
1890 if (HasPtrauthInitFiniAddr)
1891 Check(HasPtrauthInitFini,
"ptrauth-init-fini-address-discrimination module "
1892 "flag requires ptrauth-init-fini");
1894 if (PAuthABIPlatform.has_value() != PAuthABIVersion.has_value())
1895 CheckFailed(
"either both or no 'aarch64-elf-pauthabi-platform' and "
1896 "'aarch64-elf-pauthabi-version' module flags must be present");
1899 for (
const MDNode *Requirement : Requirements) {
1901 const Metadata *ReqValue = Requirement->getOperand(1);
1903 const MDNode *
Op = SeenIDs.
lookup(Flag);
1905 CheckFailed(
"invalid requirement on flag, flag is not present in module",
1910 if (
Op->getOperand(2) != ReqValue) {
1911 CheckFailed((
"invalid requirement on flag, "
1912 "flag does not have the required value"),
1920Verifier::visitModuleFlag(
const MDNode *
Op,
1921 DenseMap<const MDString *, const MDNode *> &SeenIDs,
1922 SmallVectorImpl<const MDNode *> &Requirements) {
1926 "incorrect number of operands in module flag",
Op);
1927 Module::ModFlagBehavior MFB;
1928 if (!Module::isValidModFlagBehavior(
Op->getOperand(0), MFB)) {
1930 "invalid behavior operand in module flag (expected constant integer)",
1933 "invalid behavior operand in module flag (unexpected constant)",
1937 Check(ID,
"invalid ID operand in module flag (expected metadata string)",
1943 case Module::Warning:
1944 case Module::Override:
1950 Check(V &&
V->getValue().isNonNegative(),
1951 "invalid value for 'min' module flag (expected constant non-negative "
1959 "invalid value for 'max' module flag (expected constant integer)",
1964 case Module::Require: {
1969 "invalid value for 'require' module flag (expected metadata pair)",
1972 (
"invalid value for 'require' module flag "
1973 "(first value operand should be a string)"),
1974 Value->getOperand(0));
1982 case Module::Append:
1983 case Module::AppendUnique: {
1986 "invalid value for 'append'-type module flag "
1987 "(expected a metadata node)",
1994 if (MFB != Module::Require) {
1997 "module flag identifiers must be unique (or of 'require' type)", ID);
2000 if (
ID->getString() ==
"wchar_size") {
2003 Check(
Value,
"wchar_size metadata requires constant integer argument");
2006 if (
ID->getString() ==
"long-double-type") {
2007 Check(MFB == Module::Error,
2008 "long-double-type module flag must use 'error' merge behavior",
Op);
2010 Check(
Value,
"long-double-type metadata requires a string argument");
2013 "invalid long-double-type metadata value",
Op);
2016 if (
ID->getString() ==
"float-abi") {
2017 Check(MFB == Module::Error,
2018 "float-abi module flag must use 'error' merge behavior",
Op);
2020 Check(
Value,
"float-abi metadata requires a string argument");
2023 "invalid float-abi metadata value",
Op);
2026 if (
ID->getString() ==
"Linker Options") {
2030 Check(
M.getNamedMetadata(
"llvm.linker.options"),
2031 "'Linker Options' named metadata no longer supported");
2034 if (
ID->getString() ==
"SemanticInterposition") {
2035 ConstantInt *
Value =
2038 "SemanticInterposition metadata requires constant integer argument");
2041 if (
ID->getString() ==
"CG Profile") {
2042 for (
const MDOperand &MDO :
cast<MDNode>(
Op->getOperand(2))->operands())
2043 visitModuleFlagCGProfileEntry(MDO);
2050void Verifier::visitModuleFlagCGProfileEntry(
const MDOperand &MDO) {
2051 auto CheckFunction = [&](
const MDOperand &FuncMDO) {
2056 "expected a Function or null", FuncMDO);
2059 Check(Node &&
Node->getNumOperands() == 3,
"expected a MDNode triple", MDO);
2060 CheckFunction(
Node->getOperand(0));
2061 CheckFunction(
Node->getOperand(1));
2064 "expected an integer constant",
Node->getOperand(2));
2067void Verifier::verifyAttributeTypes(AttributeSet Attrs,
const Value *V) {
2070 if (
A.isStringAttribute()) {
2071#define GET_ATTR_NAMES
2072#define ATTRIBUTE_ENUM(ENUM_NAME, DISPLAY_NAME)
2073#define ATTRIBUTE_STRBOOL(ENUM_NAME, DISPLAY_NAME) \
2074 if (A.getKindAsString() == #DISPLAY_NAME) { \
2075 auto V = A.getValueAsString(); \
2076 if (!(V.empty() || V == "true" || V == "false")) \
2077 CheckFailed("invalid value for '" #DISPLAY_NAME "' attribute: " + V + \
2081#include "llvm/IR/Attributes.inc"
2085 if (
A.isIntAttribute() != Attribute::isIntAttrKind(
A.getKindAsEnum())) {
2086 CheckFailed(
"Attribute '" +
A.getAsString() +
"' should have an Argument",
2095void Verifier::verifyParameterAttrs(AttributeSet Attrs,
Type *Ty,
2097 if (!
Attrs.hasAttributes())
2100 verifyAttributeTypes(Attrs, V);
2103 Check(Attr.isStringAttribute() ||
2104 Attribute::canUseAsParamAttr(Attr.getKindAsEnum()),
2105 "Attribute '" + Attr.getAsString() +
"' does not apply to parameters",
2108 if (
Attrs.hasAttribute(Attribute::ImmArg)) {
2109 unsigned AttrCount =
2110 Attrs.getNumAttributes() -
Attrs.hasAttribute(Attribute::Range);
2111 Check(AttrCount == 1,
2112 "Attribute 'immarg' is incompatible with other attributes except the "
2113 "'range' attribute",
2119 unsigned AttrCount = 0;
2120 AttrCount +=
Attrs.hasAttribute(Attribute::ByVal);
2121 AttrCount +=
Attrs.hasAttribute(Attribute::InAlloca);
2122 AttrCount +=
Attrs.hasAttribute(Attribute::Preallocated);
2123 AttrCount +=
Attrs.hasAttribute(Attribute::StructRet) ||
2124 Attrs.hasAttribute(Attribute::InReg);
2125 AttrCount +=
Attrs.hasAttribute(Attribute::Nest);
2126 AttrCount +=
Attrs.hasAttribute(Attribute::ByRef);
2127 Check(AttrCount <= 1,
2128 "Attributes 'byval', 'inalloca', 'preallocated', 'inreg', 'nest', "
2129 "'byref', and 'sret' are incompatible!",
2132 Check(!(
Attrs.hasAttribute(Attribute::InAlloca) &&
2133 Attrs.hasAttribute(Attribute::ReadOnly)),
2135 "'inalloca and readonly' are incompatible!",
2138 Check(!(
Attrs.hasAttribute(Attribute::StructRet) &&
2139 Attrs.hasAttribute(Attribute::Returned)),
2141 "'sret and returned' are incompatible!",
2144 Check(!(
Attrs.hasAttribute(Attribute::ZExt) &&
2145 Attrs.hasAttribute(Attribute::SExt)),
2147 "'zeroext and signext' are incompatible!",
2150 Check(!(
Attrs.hasAttribute(Attribute::ReadNone) &&
2151 Attrs.hasAttribute(Attribute::ReadOnly)),
2153 "'readnone and readonly' are incompatible!",
2156 Check(!(
Attrs.hasAttribute(Attribute::ReadNone) &&
2157 Attrs.hasAttribute(Attribute::WriteOnly)),
2159 "'readnone and writeonly' are incompatible!",
2162 Check(!(
Attrs.hasAttribute(Attribute::ReadOnly) &&
2163 Attrs.hasAttribute(Attribute::WriteOnly)),
2165 "'readonly and writeonly' are incompatible!",
2168 Check(!(
Attrs.hasAttribute(Attribute::NoInline) &&
2169 Attrs.hasAttribute(Attribute::AlwaysInline)),
2171 "'noinline and alwaysinline' are incompatible!",
2174 Check(!(
Attrs.hasAttribute(Attribute::Writable) &&
2175 Attrs.hasAttribute(Attribute::ReadNone)),
2176 "Attributes writable and readnone are incompatible!", V);
2178 Check(!(
Attrs.hasAttribute(Attribute::Writable) &&
2179 Attrs.hasAttribute(Attribute::ReadOnly)),
2180 "Attributes writable and readonly are incompatible!", V);
2182 AttributeMask IncompatibleAttrs = AttributeFuncs::typeIncompatible(Ty, Attrs);
2184 if (!Attr.isStringAttribute() &&
2185 IncompatibleAttrs.
contains(Attr.getKindAsEnum())) {
2186 CheckFailed(
"Attribute '" + Attr.getAsString() +
2187 "' applied to incompatible type!", V);
2193 if (
Attrs.hasAttribute(Attribute::Alignment)) {
2194 Align AttrAlign =
Attrs.getAlignment().valueOrOne();
2195 Check(AttrAlign.
value() <= Value::MaximumAlignment,
2196 "huge alignment values are unsupported", V);
2198 if (
Attrs.hasAttribute(Attribute::ByVal)) {
2200 SmallPtrSet<Type *, 4> Visited;
2202 "Attribute 'byval' does not support unsized types!", V);
2206 "'byval' argument has illegal target extension type", V);
2207 Check(
DL.getTypeAllocSize(ByValTy).getKnownMinValue() < (1ULL << 32),
2208 "huge 'byval' arguments are unsupported", V);
2210 if (
Attrs.hasAttribute(Attribute::ByRef)) {
2211 SmallPtrSet<Type *, 4> Visited;
2212 Check(
Attrs.getByRefType()->isSized(&Visited),
2213 "Attribute 'byref' does not support unsized types!", V);
2214 Check(
DL.getTypeAllocSize(
Attrs.getByRefType()).getKnownMinValue() <
2216 "huge 'byref' arguments are unsupported", V);
2218 if (
Attrs.hasAttribute(Attribute::InAlloca)) {
2219 SmallPtrSet<Type *, 4> Visited;
2220 Check(
Attrs.getInAllocaType()->isSized(&Visited),
2221 "Attribute 'inalloca' does not support unsized types!", V);
2222 Check(
DL.getTypeAllocSize(
Attrs.getInAllocaType()).getKnownMinValue() <
2224 "huge 'inalloca' arguments are unsupported", V);
2226 if (
Attrs.hasAttribute(Attribute::Preallocated)) {
2227 SmallPtrSet<Type *, 4> Visited;
2228 Check(
Attrs.getPreallocatedType()->isSized(&Visited),
2229 "Attribute 'preallocated' does not support unsized types!", V);
2231 DL.getTypeAllocSize(
Attrs.getPreallocatedType()).getKnownMinValue() <
2233 "huge 'preallocated' arguments are unsupported", V);
2237 if (
Attrs.hasAttribute(Attribute::Initializes)) {
2238 auto Inits =
Attrs.getAttribute(Attribute::Initializes).getInitializes();
2239 Check(!Inits.empty(),
"Attribute 'initializes' does not support empty list",
2242 "Attribute 'initializes' does not support unordered ranges", V);
2245 if (
Attrs.hasAttribute(Attribute::NoFPClass)) {
2246 uint64_t Val =
Attrs.getAttribute(Attribute::NoFPClass).getValueAsInt();
2247 Check(Val != 0,
"Attribute 'nofpclass' must have at least one test bit set",
2250 "Invalid value for 'nofpclass' test mask", V);
2252 if (
Attrs.hasAttribute(Attribute::Range)) {
2253 const ConstantRange &CR =
2254 Attrs.getAttribute(Attribute::Range).getValueAsConstantRange();
2256 "Range bit width must match type bit width!", V);
2260void Verifier::checkUnsignedBaseTenFuncAttr(AttributeList Attrs, StringRef Attr,
2262 if (
Attrs.hasFnAttr(Attr)) {
2263 StringRef S =
Attrs.getFnAttr(Attr).getValueAsString();
2266 CheckFailed(
"\"" + Attr +
"\" takes an unsigned integer: " + S, V);
2272void Verifier::verifyFunctionAttrs(FunctionType *FT, AttributeList Attrs,
2273 const Value *V,
bool IsIntrinsic,
2275 if (
Attrs.isEmpty())
2278 if (AttributeListsVisited.
insert(
Attrs.getRawPointer()).second) {
2280 "Attribute list does not match Module context!", &Attrs, V);
2281 for (
const auto &AttrSet : Attrs) {
2282 Check(!AttrSet.hasAttributes() || AttrSet.hasParentContext(
Context),
2283 "Attribute set does not match Module context!", &AttrSet, V);
2284 for (
const auto &
A : AttrSet) {
2286 "Attribute does not match Module context!", &
A, V);
2291 bool SawNest =
false;
2292 bool SawReturned =
false;
2293 bool SawSRet =
false;
2294 bool SawSwiftSelf =
false;
2295 bool SawSwiftAsync =
false;
2296 bool SawSwiftError =
false;
2299 AttributeSet RetAttrs =
Attrs.getRetAttrs();
2302 Attribute::canUseAsRetAttr(
RetAttr.getKindAsEnum()),
2303 "Attribute '" +
RetAttr.getAsString() +
2304 "' does not apply to function return values",
2307 unsigned MaxParameterWidth = 0;
2308 auto GetMaxParameterWidth = [&MaxParameterWidth](
Type *Ty) {
2311 unsigned Size = VT->getPrimitiveSizeInBits().getFixedValue();
2312 if (
Size > MaxParameterWidth)
2313 MaxParameterWidth =
Size;
2317 GetMaxParameterWidth(FT->getReturnType());
2318 verifyParameterAttrs(RetAttrs, FT->getReturnType(), V);
2321 for (
unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
2322 Type *Ty = FT->getParamType(i);
2323 AttributeSet ArgAttrs =
Attrs.getParamAttrs(i);
2327 "immarg attribute only applies to intrinsics", V);
2330 "Attribute 'elementtype' can only be applied to intrinsics"
2335 verifyParameterAttrs(ArgAttrs, Ty, V);
2336 GetMaxParameterWidth(Ty);
2339 Check(!SawNest,
"More than one parameter has attribute nest!", V);
2344 Check(!SawReturned,
"More than one parameter has attribute returned!", V);
2346 "Incompatible argument and return types for 'returned' attribute",
2352 Check(!SawSRet,
"Cannot have multiple 'sret' parameters!", V);
2353 Check(i == 0 || i == 1,
2354 "Attribute 'sret' is not on first or second parameter!", V);
2359 Check(!SawSwiftSelf,
"Cannot have multiple 'swiftself' parameters!", V);
2360 SawSwiftSelf =
true;
2364 Check(!SawSwiftAsync,
"Cannot have multiple 'swiftasync' parameters!", V);
2365 SawSwiftAsync =
true;
2369 Check(!SawSwiftError,
"Cannot have multiple 'swifterror' parameters!", V);
2370 SawSwiftError =
true;
2374 Check(i == FT->getNumParams() - 1,
2375 "inalloca isn't on the last parameter!", V);
2379 if (!
Attrs.hasFnAttrs())
2382 verifyAttributeTypes(
Attrs.getFnAttrs(), V);
2385 Attribute::canUseAsFnAttr(
FnAttr.getKindAsEnum()),
2386 "Attribute '" +
FnAttr.getAsString() +
2387 "' does not apply to functions!",
2390 Check(!(
Attrs.hasFnAttr(Attribute::NoInline) &&
2391 Attrs.hasFnAttr(Attribute::AlwaysInline)),
2392 "Attributes 'noinline and alwaysinline' are incompatible!", V);
2394 if (
Attrs.hasFnAttr(Attribute::OptimizeNone)) {
2396 "Attribute 'optnone' requires 'noinline'!", V);
2398 Check(!
Attrs.hasFnAttr(Attribute::OptimizeForSize),
2399 "Attributes 'optsize and optnone' are incompatible!", V);
2402 "Attributes 'minsize and optnone' are incompatible!", V);
2404 Check(!
Attrs.hasFnAttr(Attribute::OptimizeForDebugging),
2405 "Attributes 'optdebug and optnone' are incompatible!", V);
2408 Check(!(
Attrs.hasFnAttr(Attribute::SanitizeRealtime) &&
2409 Attrs.hasFnAttr(Attribute::SanitizeRealtimeBlocking)),
2411 "'sanitize_realtime and sanitize_realtime_blocking' are incompatible!",
2414 if (
Attrs.hasFnAttr(Attribute::OptimizeForDebugging)) {
2415 Check(!
Attrs.hasFnAttr(Attribute::OptimizeForSize),
2416 "Attributes 'optsize and optdebug' are incompatible!", V);
2419 "Attributes 'minsize and optdebug' are incompatible!", V);
2422 Check(!
Attrs.hasAttrSomewhere(Attribute::Writable) ||
2423 isModSet(
Attrs.getMemoryEffects().getModRef(IRMemLocation::ArgMem)),
2424 "Attribute writable and memory without argmem: write are incompatible!",
2427 if (
Attrs.hasFnAttr(
"aarch64_pstate_sm_enabled")) {
2428 Check(!
Attrs.hasFnAttr(
"aarch64_pstate_sm_compatible"),
2429 "Attributes 'aarch64_pstate_sm_enabled and "
2430 "aarch64_pstate_sm_compatible' are incompatible!",
2434 Check((
Attrs.hasFnAttr(
"aarch64_new_za") +
Attrs.hasFnAttr(
"aarch64_in_za") +
2435 Attrs.hasFnAttr(
"aarch64_inout_za") +
2436 Attrs.hasFnAttr(
"aarch64_out_za") +
2437 Attrs.hasFnAttr(
"aarch64_preserves_za") +
2438 Attrs.hasFnAttr(
"aarch64_za_state_agnostic")) <= 1,
2439 "Attributes 'aarch64_new_za', 'aarch64_in_za', 'aarch64_out_za', "
2440 "'aarch64_inout_za', 'aarch64_preserves_za' and "
2441 "'aarch64_za_state_agnostic' are mutually exclusive",
2445 Attrs.hasFnAttr(
"aarch64_in_zt0") +
2446 Attrs.hasFnAttr(
"aarch64_inout_zt0") +
2447 Attrs.hasFnAttr(
"aarch64_out_zt0") +
2448 Attrs.hasFnAttr(
"aarch64_preserves_zt0") +
2449 Attrs.hasFnAttr(
"aarch64_za_state_agnostic")) <= 1,
2450 "Attributes 'aarch64_new_zt0', 'aarch64_in_zt0', 'aarch64_out_zt0', "
2451 "'aarch64_inout_zt0', 'aarch64_preserves_zt0' and "
2452 "'aarch64_za_state_agnostic' are mutually exclusive",
2455 if (
Attrs.hasFnAttr(Attribute::JumpTable)) {
2458 "Attribute 'jumptable' requires 'unnamed_addr'", V);
2461 if (
auto Args =
Attrs.getFnAttrs().getAllocSizeArgs()) {
2462 auto CheckParam = [&](StringRef
Name,
unsigned ParamNo) {
2463 if (ParamNo >= FT->getNumParams()) {
2464 CheckFailed(
"'allocsize' " + Name +
" argument is out of bounds", V);
2468 if (!FT->getParamType(ParamNo)->isIntegerTy()) {
2469 CheckFailed(
"'allocsize' " + Name +
2470 " argument must refer to an integer parameter",
2478 if (!CheckParam(
"element size",
Args->first))
2481 if (
Args->second && !CheckParam(
"number of elements", *
Args->second))
2485 if (
Attrs.hasFnAttr(Attribute::AllocKind)) {
2488 K & (AllocFnKind::Alloc | AllocFnKind::Realloc | AllocFnKind::Free);
2490 {AllocFnKind::Alloc, AllocFnKind::Realloc, AllocFnKind::Free},
2493 "'allockind()' requires exactly one of alloc, realloc, and free");
2494 if ((
Type == AllocFnKind::Free) &&
2495 ((K & (AllocFnKind::Uninitialized | AllocFnKind::Zeroed |
2496 AllocFnKind::Aligned)) != AllocFnKind::Unknown))
2497 CheckFailed(
"'allockind(\"free\")' doesn't allow uninitialized, zeroed, "
2498 "or aligned modifiers.");
2499 AllocFnKind ZeroedUninit = AllocFnKind::Uninitialized | AllocFnKind::Zeroed;
2500 if ((K & ZeroedUninit) == ZeroedUninit)
2501 CheckFailed(
"'allockind()' can't be both zeroed and uninitialized");
2505 StringRef S =
A.getValueAsString();
2506 Check(!S.
empty(),
"'alloc-variant-zeroed' must not be empty");
2514 "'alloc-variant-zeroed' must name a function belonging to the "
2515 "same 'alloc-family'");
2518 (
Variant->getFnAttribute(Attribute::AllocKind).getAllocKind() &
2519 AllocFnKind::Zeroed) != AllocFnKind::Unknown,
2520 "'alloc-variant-zeroed' must name a function with "
2521 "'allockind(\"zeroed\")'");
2524 "'alloc-variant-zeroed' must name a function with the same "
2529 "'alloc-variant-zeroed' must name a function with the same "
2530 "calling convention");
2534 if (
Attrs.hasFnAttr(Attribute::VScaleRange)) {
2535 unsigned VScaleMin =
Attrs.getFnAttrs().getVScaleRangeMin();
2537 CheckFailed(
"'vscale_range' minimum must be greater than 0", V);
2539 CheckFailed(
"'vscale_range' minimum must be power-of-two value", V);
2540 std::optional<unsigned> VScaleMax =
Attrs.getFnAttrs().getVScaleRangeMax();
2541 if (VScaleMax && VScaleMin > VScaleMax)
2542 CheckFailed(
"'vscale_range' minimum cannot be greater than maximum", V);
2544 CheckFailed(
"'vscale_range' maximum must be power-of-two value", V);
2547 if (
Attribute FPAttr =
Attrs.getFnAttr(
"frame-pointer"); FPAttr.isValid()) {
2548 StringRef
FP = FPAttr.getValueAsString();
2549 if (
FP !=
"all" &&
FP !=
"non-leaf" &&
FP !=
"none" &&
FP !=
"reserved" &&
2550 FP !=
"non-leaf-no-reserve")
2551 CheckFailed(
"invalid value for 'frame-pointer' attribute: " +
FP, V);
2554 checkUnsignedBaseTenFuncAttr(Attrs,
"tail-pad-to-size", V);
2555 checkUnsignedBaseTenFuncAttr(Attrs,
"tail-pad-value", V);
2556 checkUnsignedBaseTenFuncAttr(Attrs,
"patchable-function-prefix", V);
2557 checkUnsignedBaseTenFuncAttr(Attrs,
"patchable-function-entry", V);
2558 if (
Attrs.hasFnAttr(
"patchable-function-entry-section"))
2559 Check(!
Attrs.getFnAttr(
"patchable-function-entry-section")
2562 "\"patchable-function-entry-section\" must not be empty");
2563 checkUnsignedBaseTenFuncAttr(Attrs,
"warn-stack-size", V);
2565 if (
auto A =
Attrs.getFnAttr(
"sign-return-address");
A.isValid()) {
2566 StringRef S =
A.getValueAsString();
2567 if (S !=
"none" && S !=
"all" && S !=
"non-leaf")
2568 CheckFailed(
"invalid value for 'sign-return-address' attribute: " + S, V);
2571 if (
auto A =
Attrs.getFnAttr(
"sign-return-address-key");
A.isValid()) {
2572 StringRef S =
A.getValueAsString();
2573 if (S !=
"a_key" && S !=
"b_key")
2574 CheckFailed(
"invalid value for 'sign-return-address-key' attribute: " + S,
2576 if (
auto AA =
Attrs.getFnAttr(
"sign-return-address"); !AA.isValid()) {
2578 "'sign-return-address-key' present without `sign-return-address`");
2582 if (
auto A =
Attrs.getFnAttr(
"branch-target-enforcement");
A.isValid()) {
2583 StringRef S =
A.getValueAsString();
2584 if (S !=
"" && S !=
"true" && S !=
"false")
2586 "invalid value for 'branch-target-enforcement' attribute: " + S, V);
2589 if (
auto A =
Attrs.getFnAttr(
"branch-protection-pauth-lr");
A.isValid()) {
2590 StringRef S =
A.getValueAsString();
2591 if (S !=
"" && S !=
"true" && S !=
"false")
2593 "invalid value for 'branch-protection-pauth-lr' attribute: " + S, V);
2596 if (
auto A =
Attrs.getFnAttr(
"guarded-control-stack");
A.isValid()) {
2597 StringRef S =
A.getValueAsString();
2598 if (S !=
"" && S !=
"true" && S !=
"false")
2599 CheckFailed(
"invalid value for 'guarded-control-stack' attribute: " + S,
2603 if (
auto A =
Attrs.getFnAttr(
"vector-function-abi-variant");
A.isValid()) {
2604 StringRef S =
A.getValueAsString();
2607 CheckFailed(
"invalid name for a VFABI variant: " + S, V);
2610 if (
auto A =
Attrs.getFnAttr(
"modular-format");
A.isValid()) {
2611 StringRef S =
A.getValueAsString();
2615 "modular-format attribute requires at least 5 arguments", V);
2616 unsigned UpperBound = FT->getNumParams() + (FT->isVarArg() ? 1 : 0);
2618 Check(!Args[1].getAsInteger(10, FormatIdx),
2619 "modular-format attribute format string index is not an integer", V);
2620 Check(FormatIdx > 0,
2621 "modular-format attribute format string index must be greater than 0",
2623 Check(FormatIdx <= UpperBound,
2624 "modular-format attribute format string index is out of bounds", V);
2625 unsigned FirstArgIdx;
2626 Check(!Args[2].getAsInteger(10, FirstArgIdx),
2627 "modular-format attribute first arg index is not an integer", V);
2628 Check(FirstArgIdx <= UpperBound,
2629 "modular-format attribute first arg index is out of bounds", V);
2631 "modular-format attribute modular implementation function name "
2635 "modular-format attribute implementation name cannot be empty", V);
2638 if (
auto A =
Attrs.getFnAttr(
"target-features");
A.isValid()) {
2639 StringRef S =
A.getValueAsString();
2641 for (
auto FeatureFlag :
split(S,
',')) {
2642 if (FeatureFlag.empty())
2644 "target-features attribute should not contain an empty string");
2646 Check(FeatureFlag[0] ==
'+' || FeatureFlag[0] ==
'-',
2647 "target feature '" + FeatureFlag +
2648 "' must start with a '+' or '-'",
2654void Verifier::verifyUnknownProfileMetadata(MDNode *MD) {
2656 "'unknown' !prof should have a single additional operand", MD);
2659 "'unknown' !prof should have an additional operand of type "
2662 "the 'unknown' !prof operand should not be an empty string");
2665void Verifier::verifyFunctionMetadata(
2666 ArrayRef<std::pair<unsigned, MDNode *>> MDs) {
2667 for (
const auto &Pair : MDs) {
2668 if (Pair.first == LLVMContext::MD_prof) {
2669 MDNode *MD = Pair.second;
2671 "!prof annotations should have no less than 2 operands", MD);
2676 verifyUnknownProfileMetadata(MD);
2681 Check(MD->
getOperand(0) !=
nullptr,
"first operand should not be null",
2684 "expected string with name of the !prof annotation", MD);
2689 "first operand should be 'function_entry_count'"
2690 " or 'synthetic_function_entry_count'",
2694 Check(MD->
getOperand(1) !=
nullptr,
"second operand should not be null",
2697 "expected integer argument to function_entry_count", MD);
2698 }
else if (Pair.first == LLVMContext::MD_kcfi_type) {
2699 MDNode *MD = Pair.second;
2701 "!kcfi_type must have exactly one operand", MD);
2702 Check(MD->
getOperand(0) !=
nullptr,
"!kcfi_type operand must not be null",
2705 "expected a constant operand for !kcfi_type", MD);
2708 "expected a constant integer operand for !kcfi_type", MD);
2710 "expected a 32-bit integer constant operand for !kcfi_type", MD);
2711 }
else if (Pair.first ==
Context.getMDKindID(
"reqd_work_group_size")) {
2712 MDNode *MD = Pair.second;
2714 "reqd_work_group_size must have exactly three operands", MD);
2718 uint64_t Product = 1;
2719 for (
unsigned I = 0;
I != 3; ++
I) {
2721 Check(
C,
"reqd_work_group_size operands must be integer constants", MD);
2725 const APInt &
Value =
C->getValue();
2727 "reqd_work_group_size operands must fit in 64 bits", MD);
2728 if (
Value.getActiveBits() > 64)
2731 uint64_t Dim =
Value.getZExtValue();
2732 Check(Dim == 0 || Product <= std::numeric_limits<uint64_t>::max() / Dim,
2733 "reqd_work_group_size product must fit in 64 bits", MD);
2734 if (Dim != 0 && Product > std::numeric_limits<uint64_t>::max() / Dim)
2742void Verifier::visitConstantExprsRecursively(
const Constant *EntryC) {
2746 if (!ConstantExprVisited.
insert(EntryC).second)
2750 Stack.push_back(EntryC);
2752 while (!
Stack.empty()) {
2757 visitConstantExpr(CE);
2760 visitConstantPtrAuth(CPA);
2765 Check(GV->
getParent() == &M,
"Referencing global in another module!",
2771 for (
const Use &U :
C->operands()) {
2775 if (!ConstantExprVisited.
insert(OpC).second)
2777 Stack.push_back(OpC);
2782void Verifier::visitConstantExpr(
const ConstantExpr *CE) {
2783 if (
CE->getOpcode() == Instruction::BitCast)
2786 "Invalid bitcast", CE);
2787 else if (
CE->getOpcode() == Instruction::PtrToAddr)
2788 checkPtrToAddr(
CE->getOperand(0)->getType(),
CE->getType(), *CE);
2791void Verifier::visitConstantPtrAuth(
const ConstantPtrAuth *CPA) {
2793 "signed ptrauth constant base pointer must have pointer type");
2796 "signed ptrauth constant must have same type as its base pointer");
2799 "signed ptrauth constant key must be i32 constant integer");
2802 "signed ptrauth constant address discriminator must be a pointer");
2805 "signed ptrauth constant discriminator must be i64 constant integer");
2808 "signed ptrauth constant deactivation symbol must be a pointer");
2812 "signed ptrauth constant deactivation symbol must be a global value "
2816bool Verifier::verifyAttributeCount(AttributeList Attrs,
unsigned Params) {
2819 return Attrs.getNumAttrSets() <= Params + 2;
2822void Verifier::verifyInlineAsmCall(
const CallBase &
Call) {
2825 unsigned LabelNo = 0;
2826 for (
const InlineAsm::ConstraintInfo &CI :
IA->ParseConstraints()) {
2836 if (CI.isIndirect) {
2839 "Operand for indirect constraint must have pointer type", &
Call);
2842 "Operand for indirect constraint must have elementtype attribute",
2846 "Elementtype attribute can only be applied for indirect "
2855 Check(LabelNo == CallBr->getNumIndirectDests(),
2856 "Number of label constraints does not match number of callbr dests",
2859 Check(LabelNo == 0,
"Label constraints can only be used with callbr",
2865void Verifier::verifyStatepoint(
const CallBase &
Call) {
2870 "gc.statepoint must read and write all memory to preserve "
2871 "reordering restrictions required by safepoint semantics",
2874 const int64_t NumPatchBytes =
2877 Check(NumPatchBytes >= 0,
2878 "gc.statepoint number of patchable bytes must be "
2883 Check(TargetElemType,
2884 "gc.statepoint callee argument must have elementtype attribute",
Call);
2886 Check(TargetFuncType,
2887 "gc.statepoint callee elementtype must be function type",
Call);
2890 Check(NumCallArgs >= 0,
2891 "gc.statepoint number of arguments to underlying call "
2894 const int NumParams = (int)TargetFuncType->getNumParams();
2895 if (TargetFuncType->isVarArg()) {
2896 Check(NumCallArgs >= NumParams,
2897 "gc.statepoint mismatch in number of vararg call args",
Call);
2900 Check(TargetFuncType->getReturnType()->isVoidTy(),
2901 "gc.statepoint doesn't support wrapping non-void "
2902 "vararg functions yet",
2905 Check(NumCallArgs == NumParams,
2906 "gc.statepoint mismatch in number of call args",
Call);
2908 const uint64_t
Flags
2910 Check((Flags & ~(uint64_t)StatepointFlags::MaskAll) == 0,
2911 "unknown flag used in gc.statepoint flags argument",
Call);
2916 for (
int i = 0; i < NumParams; i++) {
2917 Type *ParamType = TargetFuncType->getParamType(i);
2919 Check(ArgType == ParamType,
2920 "gc.statepoint call argument does not match wrapped "
2924 if (TargetFuncType->isVarArg()) {
2925 AttributeSet ArgAttrs =
Attrs.getParamAttrs(5 + i);
2927 "Attribute 'sret' cannot be used for vararg call arguments!",
Call);
2931 const int EndCallArgsInx = 4 + NumCallArgs;
2935 "gc.statepoint number of transition arguments "
2936 "must be constant integer",
2938 const int NumTransitionArgs =
2940 Check(NumTransitionArgs == 0,
2941 "gc.statepoint w/inline transition bundle is deprecated",
Call);
2942 const int EndTransitionArgsInx = EndCallArgsInx + 1 + NumTransitionArgs;
2946 "gc.statepoint number of deoptimization arguments "
2947 "must be constant integer",
2950 Check(NumDeoptArgs == 0,
2951 "gc.statepoint w/inline deopt operands is deprecated",
Call);
2953 const int ExpectedNumArgs = 7 + NumCallArgs;
2955 "gc.statepoint too many arguments",
Call);
2962 Check(UserCall,
"illegal use of statepoint token",
Call, U);
2966 "gc.result or gc.relocate are the only value uses "
2967 "of a gc.statepoint",
2970 Check(UserCall->getArgOperand(0) == &
Call,
2971 "gc.result connected to wrong gc.statepoint",
Call, UserCall);
2973 Check(UserCall->getArgOperand(0) == &
Call,
2974 "gc.relocate connected to wrong gc.statepoint",
Call, UserCall);
2988void Verifier::verifyFrameRecoverIndices() {
2989 for (
auto &Counts : FrameEscapeInfo) {
2991 unsigned EscapedObjectCount = Counts.second.first;
2992 unsigned MaxRecoveredIndex = Counts.second.second;
2993 Check(MaxRecoveredIndex <= EscapedObjectCount,
2994 "all indices passed to llvm.localrecover must be less than the "
2995 "number of arguments passed to llvm.localescape in the parent "
3004 UnwindDest =
II->getUnwindDest();
3006 UnwindDest = CSI->getUnwindDest();
3012void Verifier::verifySiblingFuncletUnwinds() {
3013 llvm::TimeTraceScope timeScope(
"Verifier verify sibling funclet unwinds");
3014 SmallPtrSet<Instruction *, 8> Visited;
3015 SmallPtrSet<Instruction *, 8>
Active;
3016 for (
const auto &Pair : SiblingFuncletInfo) {
3018 if (Visited.
count(PredPad))
3024 if (
Active.count(SuccPad)) {
3027 SmallVector<Instruction *, 8> CycleNodes;
3030 Instruction *CycleTerminator = SiblingFuncletInfo[CyclePad];
3031 if (CycleTerminator != CyclePad)
3034 }
while (CyclePad != SuccPad);
3035 Check(
false,
"EH pads can't handle each other's exceptions",
3039 if (!Visited.
insert(SuccPad).second)
3043 auto TermI = SiblingFuncletInfo.find(PredPad);
3044 if (TermI == SiblingFuncletInfo.end())
3057void Verifier::visitFunction(
const Function &
F) {
3058 visitGlobalValue(
F);
3061 FunctionType *FT =
F.getFunctionType();
3062 unsigned NumArgs =
F.arg_size();
3065 "Function context does not match Module context!", &
F);
3067 Check(!
F.hasCommonLinkage(),
"Functions may not have common linkage", &
F);
3068 Check(FT->getNumParams() == NumArgs,
3069 "# formal arguments must match # of arguments for function type!", &
F,
3071 Check(
F.getReturnType()->isFirstClassType() ||
3072 F.getReturnType()->isVoidTy() ||
F.getReturnType()->isStructTy(),
3073 "Functions cannot return aggregate values!", &
F);
3075 Check(!
F.hasStructRetAttr() ||
F.getReturnType()->isVoidTy(),
3076 "Invalid struct return type!", &
F);
3078 if (MaybeAlign
A =
F.getAlign()) {
3079 Check(
A->value() <= Value::MaximumAlignment,
3080 "huge alignment values are unsupported", &
F);
3083 AttributeList
Attrs =
F.getAttributes();
3085 Check(verifyAttributeCount(Attrs, FT->getNumParams()),
3086 "Attribute after last parameter!", &
F);
3088 bool IsIntrinsic =
F.isIntrinsic();
3091 verifyFunctionAttrs(FT, Attrs, &
F, IsIntrinsic,
false);
3097 "Attribute 'builtin' can only be applied to a callsite.", &
F);
3099 Check(!
Attrs.hasAttrSomewhere(Attribute::ElementType),
3100 "Attribute 'elementtype' can only be applied to a callsite.", &
F);
3102 if (
Attrs.hasFnAttr(Attribute::Naked))
3103 for (
const Argument &Arg :
F.args())
3104 Check(Arg.use_empty(),
"cannot use argument of naked function", &Arg);
3109 switch (
F.getCallingConv()) {
3111 case CallingConv::C:
3113 case CallingConv::X86_INTR: {
3114 Check(
F.arg_empty() ||
Attrs.hasParamAttr(0, Attribute::ByVal),
3115 "Calling convention parameter requires byval", &
F);
3118 case CallingConv::AMDGPU_KERNEL:
3119 case CallingConv::SPIR_KERNEL:
3120 case CallingConv::AMDGPU_CS_Chain:
3121 case CallingConv::AMDGPU_CS_ChainPreserve:
3122 Check(
F.getReturnType()->isVoidTy(),
3123 "Calling convention requires void return type", &
F);
3125 case CallingConv::AMDGPU_VS:
3126 case CallingConv::AMDGPU_HS:
3127 case CallingConv::AMDGPU_GS:
3128 case CallingConv::AMDGPU_PS:
3129 case CallingConv::AMDGPU_CS:
3130 Check(!
F.hasStructRetAttr(),
"Calling convention does not allow sret", &
F);
3131 if (
F.getCallingConv() != CallingConv::SPIR_KERNEL) {
3132 const unsigned StackAS =
DL.getAllocaAddrSpace();
3134 for (
const Argument &Arg :
F.args()) {
3135 Check(!
Attrs.hasParamAttr(i, Attribute::ByVal),
3136 "Calling convention disallows byval", &
F);
3137 Check(!
Attrs.hasParamAttr(i, Attribute::Preallocated),
3138 "Calling convention disallows preallocated", &
F);
3139 Check(!
Attrs.hasParamAttr(i, Attribute::InAlloca),
3140 "Calling convention disallows inalloca", &
F);
3142 if (
Attrs.hasParamAttr(i, Attribute::ByRef)) {
3145 Check(Arg.getType()->getPointerAddressSpace() != StackAS,
3146 "Calling convention disallows stack byref", &
F);
3154 case CallingConv::Fast:
3155 case CallingConv::Cold:
3156 case CallingConv::Intel_OCL_BI:
3157 case CallingConv::PTX_Kernel:
3158 case CallingConv::PTX_Device:
3160 "Calling convention does not support varargs or "
3161 "perfect forwarding!",
3164 case CallingConv::AMDGPU_Gfx_WholeWave:
3165 Check(!
F.arg_empty() &&
F.arg_begin()->getType()->isIntegerTy(1),
3166 "Calling convention requires first argument to be i1", &
F);
3167 Check(!
F.arg_begin()->hasInRegAttr(),
3168 "Calling convention requires first argument to not be inreg", &
F);
3170 "Calling convention does not support varargs or "
3171 "perfect forwarding!",
3178 for (
const Argument &Arg :
F.args()) {
3179 Check(Arg.getType() == FT->getParamType(i),
3180 "Argument value does not match function argument type!", &Arg,
3181 FT->getParamType(i));
3182 Check(Arg.getType()->isFirstClassType(),
3183 "Function arguments must have first-class types!", &Arg);
3185 Check(!Arg.getType()->isMetadataTy(),
3186 "Function takes metadata but isn't an intrinsic", &Arg, &
F);
3187 Check(!Arg.getType()->isTokenLikeTy(),
3188 "Function takes token but isn't an intrinsic", &Arg, &
F);
3189 Check(!Arg.getType()->isX86_AMXTy(),
3190 "Function takes x86_amx but isn't an intrinsic", &Arg, &
F);
3194 if (
Attrs.hasParamAttr(i, Attribute::SwiftError)) {
3195 verifySwiftErrorValue(&Arg);
3201 Check(!
F.getReturnType()->isTokenLikeTy(),
3202 "Function returns a token but isn't an intrinsic", &
F);
3203 Check(!
F.getReturnType()->isX86_AMXTy(),
3204 "Function returns a x86_amx but isn't an intrinsic", &
F);
3209 F.getAllMetadata(MDs);
3210 assert(
F.hasMetadata() != MDs.
empty() &&
"Bit out-of-sync");
3211 verifyFunctionMetadata(MDs);
3217 if (
F.hasPersonalityFn()) {
3220 Check(Per->getParent() ==
F.getParent(),
3221 "Referencing personality function in another module!", &
F,
3222 F.getParent(), Per, Per->getParent());
3226 BlockEHFuncletColors.
clear();
3228 if (
F.isMaterializable()) {
3230 Check(MDs.
empty(),
"unmaterialized function cannot have metadata", &
F,
3232 }
else if (
F.isDeclaration()) {
3233 for (
const auto &
I : MDs) {
3235 CheckDI(
I.first != LLVMContext::MD_dbg ||
3237 "function declaration may only have a unique !dbg attachment",
3239 Check(
I.first != LLVMContext::MD_prof,
3240 "function declaration may not have a !prof attachment", &
F);
3243 visitMDNode(*
I.second, AreDebugLocsAllowed::Yes);
3245 Check(!
F.hasPersonalityFn(),
3246 "Function declaration shouldn't have a personality routine", &
F);
3250 Check(!IsIntrinsic,
"llvm intrinsics cannot be defined!", &
F);
3255 "Entry block to function must not have predecessors!", Entry);
3258 if (
Entry->hasAddressTaken()) {
3260 "blockaddress may not be used with the entry block!", Entry);
3263 unsigned NumDebugAttachments = 0, NumProfAttachments = 0,
3264 NumKCFIAttachments = 0;
3266 for (
const auto &
I : MDs) {
3268 auto AllowLocs = AreDebugLocsAllowed::No;
3272 case LLVMContext::MD_dbg: {
3273 ++NumDebugAttachments;
3274 CheckDI(NumDebugAttachments == 1,
3275 "function must have a single !dbg attachment", &
F,
I.second);
3277 "function !dbg attachment must be a subprogram", &
F,
I.second);
3279 "function definition may only have a distinct !dbg attachment",
3283 const Function *&AttachedTo = DISubprogramAttachments[
SP];
3284 CheckDI(!AttachedTo || AttachedTo == &
F,
3285 "DISubprogram attached to more than one function", SP, &
F);
3287 AllowLocs = AreDebugLocsAllowed::Yes;
3290 case LLVMContext::MD_prof:
3291 ++NumProfAttachments;
3292 Check(NumProfAttachments == 1,
3293 "function must have a single !prof attachment", &
F,
I.second);
3295 case LLVMContext::MD_kcfi_type:
3296 ++NumKCFIAttachments;
3297 Check(NumKCFIAttachments == 1,
3298 "function must have a single !kcfi_type attachment", &
F,
3304 visitMDNode(*
I.second, AllowLocs);
3312 bool isMaterialized =
F.getParent()->isMaterialized();
3313 if (
F.isIntrinsic() && isMaterialized) {
3315 if (
F.hasAddressTaken(&U,
false,
true,
false,
3317 Check(
false,
"Invalid user of intrinsic instruction!", U);
3324 if (IID && (isMaterialized || !
F.materialized_use_empty())) {
3328 raw_string_ostream ErrOS(ErrMsg);
3331 Printable PrintDecl([&
F](raw_ostream &OS) {
F.print(OS); });
3332 Check(IsValid, ErrMsg, PrintDecl);
3339 IID, OverloadTys,
const_cast<Module *
>(
F.getParent()), FT);
3340 Check(ExpectedName ==
F.getName(),
3341 "Intrinsic name not mangled correctly for type arguments! "
3347 auto *
N =
F.getSubprogram();
3348 HasDebugInfo = (
N !=
nullptr);
3356 SmallPtrSet<const MDNode *, 32> Seen;
3368 "DILocation's scope must be a DILocalScope",
N, &
F, &
I,
DL, Parent);
3370 DILocalScope *
Scope =
DL->getInlinedAtScope();
3371 Check(Scope,
"Failed to find DILocalScope",
DL);
3373 if (!Seen.
insert(Scope).second)
3376 DISubprogram *
SP =
Scope->getSubprogram();
3380 if ((Scope != SP) && !Seen.
insert(SP).second)
3384 "!dbg attachment points at wrong subprogram for function",
N, &
F,
3388 for (
auto &
I : BB) {
3389 VisitDebugLoc(
I,
I.getDebugLoc().getAsMDNode());
3391 if (
auto MD =
I.getMetadata(LLVMContext::MD_loop))
3394 if (BrokenDebugInfo)
3401void Verifier::visitBasicBlock(BasicBlock &BB) {
3402 InstsInThisBlock.
clear();
3403 ConvergenceVerifyHelper.
visit(BB);
3414 for (
const PHINode &PN : BB.
phis()) {
3415 Check(PN.getNumIncomingValues() == Preds.size(),
3416 "PHINode should have one entry for each predecessor of its "
3417 "parent basic block!",
3422 Values.reserve(PN.getNumIncomingValues());
3423 for (
unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i)
3425 std::make_pair(PN.getIncomingBlock(i), PN.getIncomingValue(i)));
3428 for (
unsigned i = 0, e =
Values.size(); i != e; ++i) {
3435 "PHI node has multiple entries for the same basic block with "
3436 "different incoming values!",
3442 "PHI node entries do not match predecessors!", &PN,
3443 Values[i].first, Preds[i]);
3451 Check(
I.getParent() == &BB,
"Instruction has bogus parent pointer!");
3455 CheckDI(!BB.getTrailingDbgRecords(),
"Basic Block has trailing DbgRecords!",
3459void Verifier::visitTerminator(Instruction &
I) {
3461 Check(&
I ==
I.getParent()->getTerminator(),
3462 "Terminator found in the middle of a basic block!",
I.getParent());
3463 visitInstruction(
I);
3466void Verifier::visitCondBrInst(CondBrInst &BI) {
3468 "Branch condition is not 'i1' type!", &BI, BI.
getCondition());
3469 visitTerminator(BI);
3472void Verifier::visitReturnInst(ReturnInst &RI) {
3475 if (
F->getReturnType()->isVoidTy())
3477 "Found return instr that returns non-void in Function of void "
3479 &RI,
F->getReturnType());
3482 "Function return type does not match operand "
3483 "type of return inst!",
3484 &RI,
F->getReturnType());
3488 visitTerminator(RI);
3491void Verifier::visitSwitchInst(SwitchInst &SI) {
3492 Check(
SI.getType()->isVoidTy(),
"Switch must have void result type!", &SI);
3495 Type *SwitchTy =
SI.getCondition()->getType();
3496 SmallPtrSet<ConstantInt*, 32>
Constants;
3497 for (
auto &Case :
SI.cases()) {
3499 "Case value is not a constant integer.", &SI);
3500 Check(Case.getCaseValue()->getType() == SwitchTy,
3501 "Switch constants must all be same type as switch value!", &SI);
3503 "Duplicate integer as switch case", &SI, Case.getCaseValue());
3506 visitTerminator(SI);
3509void Verifier::visitIndirectBrInst(IndirectBrInst &BI) {
3511 "Indirectbr operand must have pointer type!", &BI);
3514 "Indirectbr destinations must all have pointer type!", &BI);
3516 visitTerminator(BI);
3525void Verifier::visitCallBrInst(CallBrInst &CBI) {
3528 "callbr: indirect function / invalid signature");
3530 "callbr for intrinsics currently doesn't support operand bundles");
3534 "callbr currently only supports asm-goto and selected intrinsics");
3539 Check(!
IA->canThrow(),
"Unwinding from Callbr is not allowed");
3541 verifyInlineAsmCall(CBI);
3543 visitTerminator(CBI);
3546void Verifier::visitSelectInst(SelectInst &SI) {
3549 "Invalid operands for select instruction!", &SI);
3551 Check(
SI.getTrueValue()->getType() ==
SI.getType(),
3552 "Select values must have same type as select instruction!", &SI);
3553 visitInstruction(SI);
3559void Verifier::visitUserOp1(Instruction &
I) {
3560 Check(
false,
"User-defined operators should not live outside of a pass!", &
I);
3563void Verifier::visitTruncInst(TruncInst &
I) {
3565 Type *SrcTy =
I.getOperand(0)->getType();
3566 Type *DestTy =
I.getType();
3575 "trunc source and destination must both be a vector or neither", &
I);
3576 Check(SrcBitSize > DestBitSize,
"DestTy too big for Trunc", &
I);
3578 visitInstruction(
I);
3581void Verifier::visitZExtInst(ZExtInst &
I) {
3583 Type *SrcTy =
I.getOperand(0)->getType();
3584 Type *DestTy =
I.getType();
3590 "zext source and destination must both be a vector or neither", &
I);
3594 Check(SrcBitSize < DestBitSize,
"Type too small for ZExt", &
I);
3596 visitInstruction(
I);
3599void Verifier::visitSExtInst(SExtInst &
I) {
3601 Type *SrcTy =
I.getOperand(0)->getType();
3602 Type *DestTy =
I.getType();
3611 "sext source and destination must both be a vector or neither", &
I);
3612 Check(SrcBitSize < DestBitSize,
"Type too small for SExt", &
I);
3614 visitInstruction(
I);
3617void Verifier::visitFPTruncInst(FPTruncInst &
I) {
3619 Type *SrcTy =
I.getOperand(0)->getType();
3620 Type *DestTy =
I.getType();
3628 "fptrunc source and destination must both be a vector or neither", &
I);
3629 Check(SrcBitSize > DestBitSize,
"DestTy too big for FPTrunc", &
I);
3631 visitInstruction(
I);
3634void Verifier::visitFPExtInst(FPExtInst &
I) {
3636 Type *SrcTy =
I.getOperand(0)->getType();
3637 Type *DestTy =
I.getType();
3646 "fpext source and destination must both be a vector or neither", &
I);
3647 Check(SrcBitSize < DestBitSize,
"DestTy too small for FPExt", &
I);
3649 visitInstruction(
I);
3652void Verifier::visitUIToFPInst(UIToFPInst &
I) {
3654 Type *SrcTy =
I.getOperand(0)->getType();
3655 Type *DestTy =
I.getType();
3660 Check(SrcVec == DstVec,
3661 "UIToFP source and dest must both be vector or scalar", &
I);
3663 "UIToFP source must be integer or integer vector", &
I);
3667 if (SrcVec && DstVec)
3670 "UIToFP source and dest vector length mismatch", &
I);
3672 visitInstruction(
I);
3675void Verifier::visitSIToFPInst(SIToFPInst &
I) {
3677 Type *SrcTy =
I.getOperand(0)->getType();
3678 Type *DestTy =
I.getType();
3683 Check(SrcVec == DstVec,
3684 "SIToFP source and dest must both be vector or scalar", &
I);
3686 "SIToFP source must be integer or integer vector", &
I);
3690 if (SrcVec && DstVec)
3693 "SIToFP source and dest vector length mismatch", &
I);
3695 visitInstruction(
I);
3698void Verifier::visitFPToUIInst(FPToUIInst &
I) {
3700 Type *SrcTy =
I.getOperand(0)->getType();
3701 Type *DestTy =
I.getType();
3706 Check(SrcVec == DstVec,
3707 "FPToUI source and dest must both be vector or scalar", &
I);
3710 "FPToUI result must be integer or integer vector", &
I);
3712 if (SrcVec && DstVec)
3715 "FPToUI source and dest vector length mismatch", &
I);
3717 visitInstruction(
I);
3720void Verifier::visitFPToSIInst(FPToSIInst &
I) {
3722 Type *SrcTy =
I.getOperand(0)->getType();
3723 Type *DestTy =
I.getType();
3728 Check(SrcVec == DstVec,
3729 "FPToSI source and dest must both be vector or scalar", &
I);
3732 "FPToSI result must be integer or integer vector", &
I);
3734 if (SrcVec && DstVec)
3737 "FPToSI source and dest vector length mismatch", &
I);
3739 visitInstruction(
I);
3742void Verifier::checkPtrToAddr(
Type *SrcTy,
Type *DestTy,
const Value &V) {
3751 Check(VSrc->getElementCount() == VDest->getElementCount(),
3752 "PtrToAddr vector length mismatch", V);
3755 Type *AddrTy =
DL.getAddressType(SrcTy);
3756 Check(AddrTy == DestTy,
"PtrToAddr result must be address width", V);
3759void Verifier::visitPtrToAddrInst(PtrToAddrInst &
I) {
3760 checkPtrToAddr(
I.getOperand(0)->getType(),
I.getType(),
I);
3761 visitInstruction(
I);
3764void Verifier::visitPtrToIntInst(PtrToIntInst &
I) {
3766 Type *SrcTy =
I.getOperand(0)->getType();
3767 Type *DestTy =
I.getType();
3778 Check(VSrc->getElementCount() == VDest->getElementCount(),
3779 "PtrToInt Vector length mismatch", &
I);
3782 visitInstruction(
I);
3785void Verifier::visitIntToPtrInst(IntToPtrInst &
I) {
3787 Type *SrcTy =
I.getOperand(0)->getType();
3788 Type *DestTy =
I.getType();
3798 Check(VSrc->getElementCount() == VDest->getElementCount(),
3799 "IntToPtr Vector length mismatch", &
I);
3801 visitInstruction(
I);
3804void Verifier::visitBitCastInst(BitCastInst &
I) {
3807 "Invalid bitcast", &
I);
3808 visitInstruction(
I);
3811void Verifier::visitAddrSpaceCastInst(AddrSpaceCastInst &
I) {
3812 Type *SrcTy =
I.getOperand(0)->getType();
3813 Type *DestTy =
I.getType();
3820 "AddrSpaceCast must be between different address spaces", &
I);
3822 Check(SrcVTy->getElementCount() ==
3824 "AddrSpaceCast vector pointer number of elements mismatch", &
I);
3825 visitInstruction(
I);
3830void Verifier::visitPHINode(PHINode &PN) {
3837 "PHI nodes not grouped at top of basic block!", &PN, PN.
getParent());
3846 "PHI node operands are not the same type as the result!", &PN);
3851 visitInstruction(PN);
3854void Verifier::visitCallBase(CallBase &
Call) {
3856 "Called function must be a pointer!",
Call);
3860 if (FTy->isVarArg())
3862 "Called function requires more parameters than were provided!",
Call);
3865 "Incorrect number of arguments passed to called function!",
Call);
3868 for (
unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
3870 "Call parameter type does not match function signature!",
3876 "Attribute after last parameter!",
Call);
3883 "Intrinsic called with incompatible signature",
Call);
3887 "calling convention does not permit calls",
Call);
3893 auto VerifyTypeAlign = [&](
Type *Ty,
const Twine &Message) {
3896 Align ABIAlign =
DL.getABITypeAlign(Ty);
3897 Check(ABIAlign.
value() <= Value::MaximumAlignment,
3898 "Incorrect alignment of " + Message +
" to called function!",
Call);
3902 VerifyTypeAlign(FTy->getReturnType(),
"return type");
3903 for (
unsigned i = 0, e = FTy->getNumParams(); i != e; ++i) {
3904 Type *Ty = FTy->getParamType(i);
3905 VerifyTypeAlign(Ty,
"argument passed");
3909 if (
Attrs.hasFnAttr(Attribute::Speculatable)) {
3913 "speculatable attribute may not apply to call sites",
Call);
3916 if (
Attrs.hasFnAttr(Attribute::Preallocated)) {
3918 "preallocated as a call site attribute can only be on "
3919 "llvm.call.preallocated.arg");
3922 Check(!
Attrs.hasFnAttr(Attribute::DenormalFPEnv),
3923 "denormal_fpenv attribute may not apply to call sites",
Call);
3934 Check(AI->isUsedWithInAlloca(),
3935 "inalloca argument for call has mismatched alloca", AI,
Call);
3941 for (
unsigned i = 0, e = FTy->getNumParams(); i != e; ++i) {
3945 Check(AI->isSwiftError(),
3946 "swifterror argument for call has mismatched alloca", AI,
Call);
3950 Check(ArgI,
"swifterror argument should come from an alloca or parameter",
3951 SwiftErrorArg,
Call);
3952 Check(ArgI->hasSwiftErrorAttr(),
3953 "swifterror argument for call has mismatched parameter", ArgI,
3957 if (
Attrs.hasParamAttr(i, Attribute::ImmArg)) {
3960 Check(Callee &&
Callee->hasParamAttribute(i, Attribute::ImmArg),
3969 "immarg operand has non-immediate parameter", ArgVal,
Call);
3975 const ConstantRange &CR =
3978 formatv(
"immarg value {} for arg {} out of range {}",
3979 CI->getValue(), i, CR),
3990 Check(hasOB != isMustTail,
3991 "preallocated operand either requires a preallocated bundle or "
3992 "the call to be musttail (but not both)",
3997 if (FTy->isVarArg()) {
3999 bool SawNest =
false;
4000 bool SawReturned =
false;
4002 for (
unsigned Idx = 0; Idx < FTy->getNumParams(); ++Idx) {
4003 if (
Attrs.hasParamAttr(Idx, Attribute::Nest))
4005 if (
Attrs.hasParamAttr(Idx, Attribute::Returned))
4010 for (
unsigned Idx = FTy->getNumParams(); Idx <
Call.
arg_size(); ++Idx) {
4012 AttributeSet ArgAttrs =
Attrs.getParamAttrs(Idx);
4013 verifyParameterAttrs(ArgAttrs, Ty, &
Call);
4016 Check(!SawNest,
"More than one parameter has attribute nest!",
Call);
4021 Check(!SawReturned,
"More than one parameter has attribute returned!",
4024 "Incompatible argument and return types for 'returned' "
4034 "Attribute 'sret' cannot be used for vararg call arguments!",
4039 "inalloca isn't on the last argument!",
Call);
4045 for (
Type *ParamTy : FTy->params()) {
4046 Check(!ParamTy->isMetadataTy(),
4047 "Function has metadata parameter but isn't an intrinsic",
Call);
4048 Check(!ParamTy->isTokenLikeTy(),
4049 "Function has token parameter but isn't an intrinsic",
Call);
4055 Check(!FTy->getReturnType()->isTokenLikeTy(),
4056 "Return type cannot be token for indirect call!");
4057 Check(!FTy->getReturnType()->isX86_AMXTy(),
4058 "Return type cannot be x86_amx for indirect call!");
4062 visitIntrinsicCall(ID,
Call);
4067 bool FoundDeoptBundle =
false, FoundFuncletBundle =
false,
4068 FoundGCTransitionBundle =
false, FoundCFGuardTargetBundle =
false,
4069 FoundPreallocatedBundle =
false, FoundGCLiveBundle =
false,
4070 FoundPtrauthBundle =
false, FoundKCFIBundle =
false,
4071 FoundAttachedCallBundle =
false;
4076 Check(!FoundDeoptBundle,
"Multiple deopt operand bundles",
Call);
4077 FoundDeoptBundle =
true;
4079 Check(!FoundGCTransitionBundle,
"Multiple gc-transition operand bundles",
4081 FoundGCTransitionBundle =
true;
4083 Check(!FoundFuncletBundle,
"Multiple funclet operand bundles",
Call);
4084 FoundFuncletBundle =
true;
4086 "Expected exactly one funclet bundle operand",
Call);
4088 "Funclet bundle operands should correspond to a FuncletPadInst",
4091 Check(!FoundCFGuardTargetBundle,
"Multiple CFGuardTarget operand bundles",
4093 FoundCFGuardTargetBundle =
true;
4095 "Expected exactly one cfguardtarget bundle operand",
Call);
4097 Check(!FoundPtrauthBundle,
"Multiple ptrauth operand bundles",
Call);
4098 FoundPtrauthBundle =
true;
4100 "Expected exactly two ptrauth bundle operands",
Call);
4102 BU.
Inputs[0]->getType()->isIntegerTy(32),
4103 "Ptrauth bundle key operand must be an i32 constant",
Call);
4105 "Ptrauth bundle discriminator operand must be an i64",
Call);
4107 Check(!FoundKCFIBundle,
"Multiple kcfi operand bundles",
Call);
4108 FoundKCFIBundle =
true;
4109 Check(BU.
Inputs.size() == 1,
"Expected exactly one kcfi bundle operand",
4112 BU.
Inputs[0]->getType()->isIntegerTy(32),
4113 "Kcfi bundle operand must be an i32 constant",
Call);
4115 Check(!FoundPreallocatedBundle,
"Multiple preallocated operand bundles",
4117 FoundPreallocatedBundle =
true;
4119 "Expected exactly one preallocated bundle operand",
Call);
4122 Input->getIntrinsicID() == Intrinsic::call_preallocated_setup,
4123 "\"preallocated\" argument must be a token from "
4124 "llvm.call.preallocated.setup",
4127 Check(!FoundGCLiveBundle,
"Multiple gc-live operand bundles",
Call);
4128 FoundGCLiveBundle =
true;
4130 Check(!FoundAttachedCallBundle,
4131 "Multiple \"clang.arc.attachedcall\" operand bundles",
Call);
4132 FoundAttachedCallBundle =
true;
4133 verifyAttachedCallBundle(
Call, BU);
4139 "Direct call cannot have a ptrauth bundle",
Call);
4151 "inlinable function call in a function with "
4152 "debug info must have a !dbg location",
4156 verifyInlineAsmCall(
Call);
4160 visitInstruction(
Call);
4163void Verifier::verifyTailCCMustTailAttrs(
const AttrBuilder &Attrs,
4166 Twine(
"inalloca attribute not allowed in ") +
Context);
4168 Twine(
"inreg attribute not allowed in ") +
Context);
4169 Check(!
Attrs.contains(Attribute::SwiftError),
4170 Twine(
"swifterror attribute not allowed in ") +
Context);
4171 Check(!
Attrs.contains(Attribute::Preallocated),
4172 Twine(
"preallocated attribute not allowed in ") +
Context);
4174 Twine(
"byref attribute not allowed in ") +
Context);
4179 Attribute::StructRet, Attribute::ByVal, Attribute::InAlloca,
4180 Attribute::InReg, Attribute::StackAlignment, Attribute::SwiftSelf,
4181 Attribute::SwiftAsync, Attribute::SwiftError, Attribute::Preallocated,
4183 AttrBuilder Copy(
C);
4184 for (
auto AK : ABIAttrs) {
4185 Attribute Attr = Attrs.getParamAttrs(
I).getAttribute(AK);
4187 Copy.addAttribute(Attr);
4191 if (Attrs.hasParamAttr(
I, Attribute::Alignment) &&
4192 (Attrs.hasParamAttr(
I, Attribute::ByVal) ||
4193 Attrs.hasParamAttr(
I, Attribute::ByRef)))
4194 Copy.addAlignmentAttr(Attrs.getParamAlignment(
I));
4198void Verifier::verifyMustTailCall(CallInst &CI) {
4202 FunctionType *CallerTy =
F->getFunctionType();
4204 Check(CallerTy->isVarArg() == CalleeTy->isVarArg(),
4205 "cannot guarantee tail call due to mismatched varargs", &CI);
4206 Check(CallerTy->getReturnType() == CalleeTy->getReturnType(),
4207 "cannot guarantee tail call due to mismatched return types", &CI);
4211 "cannot guarantee tail call due to mismatched calling conv", &CI);
4219 Check(Ret,
"musttail call must precede a ret", &CI);
4222 "musttail call result must be returned", Ret);
4224 AttributeList CallerAttrs =
F->getAttributes();
4229 CI.
getCallingConv() == CallingConv::Tail ?
"tailcc" :
"swifttailcc";
4233 for (
unsigned I = 0,
E = CallerTy->getNumParams();
I !=
E; ++
I) {
4235 SmallString<32>
Context{CCName, StringRef(
" musttail caller")};
4236 verifyTailCCMustTailAttrs(ABIAttrs,
Context);
4238 for (
unsigned I = 0,
E = CalleeTy->getNumParams();
I !=
E; ++
I) {
4240 SmallString<32>
Context{CCName, StringRef(
" musttail callee")};
4241 verifyTailCCMustTailAttrs(ABIAttrs,
Context);
4244 Check(!CallerTy->isVarArg(), Twine(
"cannot guarantee ") + CCName +
4245 " tail call for varargs function");
4251 Check(CallerTy->getNumParams() == CalleeTy->getNumParams(),
4252 "cannot guarantee tail call due to mismatched parameter counts", &CI);
4253 for (
unsigned I = 0,
E = CallerTy->getNumParams();
I !=
E; ++
I) {
4254 Check(CallerTy->getParamType(
I) == CalleeTy->getParamType(
I),
4255 "cannot guarantee tail call due to mismatched parameter types",
4262 for (
unsigned I = 0,
E = CallerTy->getNumParams();
I !=
E; ++
I) {
4265 Check(CallerABIAttrs == CalleeABIAttrs,
4266 "cannot guarantee tail call due to mismatched ABI impacting "
4267 "function attributes",
4272void Verifier::visitCallInst(CallInst &CI) {
4276 verifyMustTailCall(CI);
4279void Verifier::visitInvokeInst(InvokeInst &
II) {
4285 II.getUnwindDest()->isEHPad(),
4286 "The unwind destination does not have an exception handling instruction!",
4289 visitTerminator(
II);
4294void Verifier::visitUnaryOperator(UnaryOperator &U) {
4295 Check(
U.getType() ==
U.getOperand(0)->getType(),
4296 "Unary operators must have same type for"
4297 "operands and result!",
4300 switch (
U.getOpcode()) {
4303 case Instruction::FNeg:
4304 Check(
U.getType()->isFPOrFPVectorTy(),
4305 "FNeg operator only works with float types!", &U);
4311 visitInstruction(U);
4317void Verifier::visitBinaryOperator(BinaryOperator &
B) {
4318 Check(
B.getOperand(0)->getType() ==
B.getOperand(1)->getType(),
4319 "Both operands to a binary operator are not of the same type!", &
B);
4321 switch (
B.getOpcode()) {
4324 case Instruction::Add:
4325 case Instruction::Sub:
4326 case Instruction::Mul:
4327 case Instruction::SDiv:
4328 case Instruction::UDiv:
4329 case Instruction::SRem:
4330 case Instruction::URem:
4331 Check(
B.getType()->isIntOrIntVectorTy(),
4332 "Integer arithmetic operators only work with integral types!", &
B);
4333 Check(
B.getType() ==
B.getOperand(0)->getType(),
4334 "Integer arithmetic operators must have same type "
4335 "for operands and result!",
4340 case Instruction::FAdd:
4341 case Instruction::FSub:
4342 case Instruction::FMul:
4343 case Instruction::FDiv:
4344 case Instruction::FRem:
4345 Check(
B.getType()->isFPOrFPVectorTy(),
4346 "Floating-point arithmetic operators only work with "
4347 "floating-point types!",
4349 Check(
B.getType() ==
B.getOperand(0)->getType(),
4350 "Floating-point arithmetic operators must have same type "
4351 "for operands and result!",
4355 case Instruction::And:
4356 case Instruction::Or:
4357 case Instruction::Xor:
4358 Check(
B.getType()->isIntOrIntVectorTy(),
4359 "Logical operators only work with integral types!", &
B);
4360 Check(
B.getType() ==
B.getOperand(0)->getType(),
4361 "Logical operators must have same type for operands and result!", &
B);
4363 case Instruction::Shl:
4364 case Instruction::LShr:
4365 case Instruction::AShr:
4366 Check(
B.getType()->isIntOrIntVectorTy(),
4367 "Shifts only work with integral types!", &
B);
4368 Check(
B.getType() ==
B.getOperand(0)->getType(),
4369 "Shift return type must be same as operands!", &
B);
4375 visitInstruction(
B);
4378void Verifier::visitICmpInst(ICmpInst &IC) {
4382 Check(Op0Ty == Op1Ty,
4383 "Both operands to ICmp instruction are not of the same type!", &IC);
4386 "Invalid operand types for ICmp instruction", &IC);
4390 visitInstruction(IC);
4393void Verifier::visitFCmpInst(FCmpInst &FC) {
4395 Type *Op0Ty =
FC.getOperand(0)->getType();
4396 Type *Op1Ty =
FC.getOperand(1)->getType();
4397 Check(Op0Ty == Op1Ty,
4398 "Both operands to FCmp instruction are not of the same type!", &FC);
4403 Check(
FC.isFPPredicate(),
"Invalid predicate in FCmp instruction!", &FC);
4405 visitInstruction(FC);
4408void Verifier::visitExtractElementInst(ExtractElementInst &EI) {
4410 "Invalid extractelement operands!", &EI);
4411 visitInstruction(EI);
4414void Verifier::visitInsertElementInst(InsertElementInst &IE) {
4417 "Invalid insertelement operands!", &IE);
4418 visitInstruction(IE);
4421void Verifier::visitShuffleVectorInst(ShuffleVectorInst &SV) {
4424 "Invalid shufflevector operands!", &SV);
4425 visitInstruction(SV);
4428void Verifier::visitGetElementPtrInst(GetElementPtrInst &
GEP) {
4430 GEP.getModule()->getModuleFlag(
"require-logical-pointer")))
4431 Check(!MD->getZExtValue(),
4432 "Non-logical getelementptr disallowed for this module.");
4434 Type *TargetTy =
GEP.getPointerOperandType()->getScalarType();
4437 "GEP base pointer is not a vector or a vector of pointers", &
GEP);
4438 Check(
GEP.getSourceElementType()->isSized(),
"GEP into unsized type!", &
GEP);
4441 Check(!STy->isScalableTy(),
4442 "getelementptr cannot target structure that contains scalable vector"
4447 SmallVector<Value *, 16> Idxs(
GEP.indices());
4449 all_of(Idxs, [](
Value *V) {
return V->getType()->isIntOrIntVectorTy(); }),
4450 "GEP indexes must be integers", &
GEP);
4453 Check(ElTy,
"Invalid indices for GEP pointer type!", &
GEP);
4457 Check(PtrTy &&
GEP.getResultElementType() == ElTy,
4458 "GEP is not of right type for indices!", &
GEP, ElTy);
4462 ElementCount GEPWidth = GEPVTy->getElementCount();
4463 if (
GEP.getPointerOperandType()->isVectorTy())
4467 "Vector GEP result width doesn't match operand's", &
GEP);
4468 for (
Value *Idx : Idxs) {
4469 Type *IndexTy = Idx->getType();
4471 ElementCount IndexWidth = IndexVTy->getElementCount();
4472 Check(IndexWidth == GEPWidth,
"Invalid GEP index vector width", &
GEP);
4475 "All GEP indices should be of integer type");
4482 GTI != GTE; ++GTI) {
4483 if (GTI.isVector()) {
4484 Type *ElemTy = GTI.getIndexedType();
4485 Check(
DL.typeSizeEqualsStoreSize(ElemTy),
4486 "GEP into vector with non-byte-addressable element type", &
GEP);
4490 Check(
GEP.getAddressSpace() == PtrTy->getAddressSpace(),
4491 "GEP address space doesn't match type", &
GEP);
4493 visitInstruction(
GEP);
4497 return A.getUpper() ==
B.getLower() ||
A.getLower() ==
B.getUpper();
4502void Verifier::verifyRangeLikeMetadata(
const Value &
I,
const MDNode *
Range,
4503 Type *Ty, RangeLikeMetadataKind Kind) {
4504 unsigned NumOperands =
Range->getNumOperands();
4505 Check(NumOperands % 2 == 0,
"Unfinished range!",
Range);
4506 unsigned NumRanges = NumOperands / 2;
4507 Check(NumRanges >= 1,
"It should have at least one range!",
Range);
4509 ConstantRange LastRange(1,
true);
4510 for (
unsigned i = 0; i < NumRanges; ++i) {
4513 Check(
Low,
"The lower limit must be an integer!",
Low);
4518 Check(
High->getType() ==
Low->getType(),
"Range pair types must match!",
4521 if (Kind == RangeLikeMetadataKind::NoaliasAddrspace) {
4523 "noalias.addrspace type must be i32!", &
I);
4526 "Range types must match instruction type!", &
I);
4529 APInt HighV =
High->getValue();
4530 APInt LowV =
Low->getValue();
4535 "The upper and lower limits cannot be the same value", &
I);
4537 ConstantRange CurRange(LowV, HighV);
4538 Check(!CurRange.isEmptySet() &&
4539 (Kind == RangeLikeMetadataKind::AbsoluteSymbol ||
4540 !CurRange.isFullSet()),
4541 "Range must not be empty!",
Range);
4543 Check(CurRange.intersectWith(LastRange).isEmptySet(),
4544 "Intervals are overlapping",
Range);
4545 Check(LowV.
sgt(LastRange.getLower()),
"Intervals are not in order",
4550 LastRange = ConstantRange(LowV, HighV);
4552 if (NumRanges > 2) {
4557 ConstantRange FirstRange(FirstLow, FirstHigh);
4558 Check(FirstRange.intersectWith(LastRange).isEmptySet(),
4559 "Intervals are overlapping",
Range);
4565void Verifier::visitRangeMetadata(Instruction &
I, MDNode *
Range,
Type *Ty) {
4567 "precondition violation");
4568 verifyRangeLikeMetadata(
I,
Range, Ty, RangeLikeMetadataKind::Range);
4571void Verifier::visitNoFPClassMetadata(Instruction &
I, MDNode *NoFPClass,
4573 Check(AttributeFuncs::isNoFPClassCompatibleType(Ty),
4574 "nofpclass only applies to floating-point typed loads",
I);
4577 "nofpclass must have exactly one entry", NoFPClass);
4578 ConstantInt *MaskVal =
4581 "nofpclass entry must be a constant i32", NoFPClass);
4583 Check(Val != 0,
"'nofpclass' must have at least one test bit set", NoFPClass,
4587 "Invalid value for 'nofpclass' test mask", NoFPClass,
I);
4590void Verifier::visitNoaliasAddrspaceMetadata(Instruction &
I, MDNode *
Range,
4593 "precondition violation");
4594 verifyRangeLikeMetadata(
I,
Range, Ty,
4595 RangeLikeMetadataKind::NoaliasAddrspace);
4598void Verifier::checkAtomicMemAccessSize(
Type *Ty,
const Instruction *
I) {
4599 unsigned Size =
DL.getTypeSizeInBits(Ty).getFixedValue();
4600 Check(
Size >= 8,
"atomic memory access' size must be byte-sized", Ty,
I);
4602 "atomic memory access' operand must have a power-of-two size", Ty,
I);
4605void Verifier::visitLoadInst(LoadInst &LI) {
4607 Check(PTy,
"Load operand must be a pointer.", &LI);
4610 Check(
A->value() <= Value::MaximumAlignment,
4611 "huge alignment values are unsupported", &LI);
4613 Check(ElTy->
isSized(),
"loading unsized types is not allowed", &LI);
4616 LI.
getOrdering() != AtomicOrdering::AcquireRelease,
4617 "Load cannot have Release ordering", &LI);
4621 "atomic elementwise load cannot be sequentially consistent.", &LI);
4624 "atomic elementwise load operand must have fixed vector type!", &LI,
4627 checkAtomicMemAccessSize(VecTy->getElementType(), &LI);
4633 "atomic load operand must have integer, byte, pointer, floating "
4634 "point, or vector type!",
4637 checkAtomicMemAccessSize(ElTy, &LI);
4641 "Non-atomic load cannot have SynchronizationScope specified", &LI);
4644 visitInstruction(LI);
4647void Verifier::visitStoreInst(StoreInst &SI) {
4649 Check(PTy,
"Store operand must be a pointer.", &SI);
4650 Type *ElTy =
SI.getOperand(0)->getType();
4651 if (MaybeAlign
A =
SI.getAlign()) {
4652 Check(
A->value() <= Value::MaximumAlignment,
4653 "huge alignment values are unsupported", &SI);
4655 Check(ElTy->
isSized(),
"storing unsized types is not allowed", &SI);
4656 if (
SI.isAtomic()) {
4657 Check(
SI.getOrdering() != AtomicOrdering::Acquire &&
4658 SI.getOrdering() != AtomicOrdering::AcquireRelease,
4659 "Store cannot have Acquire ordering", &SI);
4663 "atomic store operand must have integer, byte, pointer, floating "
4664 "point, or vector type!",
4666 checkAtomicMemAccessSize(ElTy, &SI);
4669 "Non-atomic store cannot have SynchronizationScope specified", &SI);
4671 visitInstruction(SI);
4675void Verifier::verifySwiftErrorCall(CallBase &
Call,
4676 const Value *SwiftErrorVal) {
4678 if (
I.value() == SwiftErrorVal) {
4680 "swifterror value when used in a callsite should be marked "
4681 "with swifterror attribute",
4682 SwiftErrorVal,
Call);
4687void Verifier::verifySwiftErrorValue(
const Value *SwiftErrorVal) {
4690 for (
const User *U : SwiftErrorVal->
users()) {
4693 "swifterror value can only be loaded and stored from, or "
4694 "as a swifterror argument!",
4698 Check(StoreI->getOperand(1) == SwiftErrorVal,
4699 "swifterror value should be the second operand when used "
4703 verifySwiftErrorCall(*
const_cast<CallBase *
>(
Call), SwiftErrorVal);
4707void Verifier::visitAllocaInst(AllocaInst &AI) {
4710 Check(!MD->getZExtValue(),
4711 "Non-logical alloca disallowed for this module.");
4714 SmallPtrSet<Type*, 4> Visited;
4715 Check(Ty->
isSized(&Visited),
"Cannot allocate unsized type", &AI);
4719 "Alloca has illegal target extension type", &AI);
4721 "Alloca array size must have integer type", &AI);
4723 Check(
A->value() <= Value::MaximumAlignment,
4724 "huge alignment values are unsupported", &AI);
4730 "swifterror alloca must not be array allocation", &AI);
4731 verifySwiftErrorValue(&AI);
4734 visitInstruction(AI);
4740void Verifier::visitAtomicCmpXchgInst(AtomicCmpXchgInst &CXI) {
4743 "cmpxchg operand must have integer or pointer type", ElTy, &CXI);
4744 checkAtomicMemAccessSize(ElTy, &CXI);
4745 visitInstruction(CXI);
4748void Verifier::visitAtomicRMWInst(AtomicRMWInst &RMWI) {
4750 "atomicrmw instructions cannot be unordered.", &RMWI);
4756 "atomicrmw elementwise cannot be sequentially consistent.", &RMWI);
4758 Check(VecTy,
"atomicrmw elementwise operand must have fixed vector type!",
4761 checkAtomicMemAccessSize(VecTy->getElementType(), &RMWI);
4768 " operand must be an integer type, a floating-point type, a "
4769 "pointer type, or a fixed vector of any of these types!",
4774 " operand must have floating-point or fixed vector of "
4781 " operand must have integer or fixed vector of integer type!",
4784 checkAtomicMemAccessSize(ElTy, &RMWI);
4786 "Invalid binary operation!", &RMWI);
4787 visitInstruction(RMWI);
4790void Verifier::visitFenceInst(FenceInst &FI) {
4792 Check(Ordering == AtomicOrdering::Acquire ||
4793 Ordering == AtomicOrdering::Release ||
4794 Ordering == AtomicOrdering::AcquireRelease ||
4795 Ordering == AtomicOrdering::SequentiallyConsistent,
4796 "fence instructions may only have acquire, release, acq_rel, or "
4797 "seq_cst ordering.",
4799 visitInstruction(FI);
4802void Verifier::visitExtractValueInst(ExtractValueInst &EVI) {
4805 "Invalid ExtractValueInst operands!", &EVI);
4807 visitInstruction(EVI);
4810void Verifier::visitInsertValueInst(InsertValueInst &IVI) {
4814 "Invalid InsertValueInst operands!", &IVI);
4816 visitInstruction(IVI);
4821 return FPI->getParentPad();
4826void Verifier::visitEHPadPredecessors(Instruction &
I) {
4832 Check(BB != &
F->getEntryBlock(),
"EH pad cannot be in entry block.", &
I);
4840 Check(
II &&
II->getUnwindDest() == BB &&
II->getNormalDest() != BB,
4841 "Block containing LandingPadInst must be jumped to "
4842 "only by the unwind edge of an invoke.",
4850 "Block containg CatchPadInst must be jumped to "
4851 "only by its catchswitch.",
4853 Check(BB != CPI->getCatchSwitch()->getUnwindDest(),
4854 "Catchswitch cannot unwind to one of its catchpads",
4855 CPI->getCatchSwitch(), CPI);
4867 Check(
II->getUnwindDest() == BB &&
II->getNormalDest() != BB,
4868 "EH pad must be jumped to via an unwind edge", ToPad,
II);
4871 if (CalledFn && CalledFn->isIntrinsic() &&
II->doesNotThrow() &&
4875 FromPad = Bundle->Inputs[0];
4879 FromPad = CRI->getOperand(0);
4880 Check(FromPad != ToPadParent,
"A cleanupret must exit its cleanup", CRI);
4884 Check(
false,
"EH pad must be jumped to via an unwind edge", ToPad, TI);
4888 SmallPtrSet<Value *, 8> Seen;
4890 Check(FromPad != ToPad,
4891 "EH pad cannot handle exceptions raised within it", FromPad, TI);
4892 if (FromPad == ToPadParent) {
4897 "A single unwind edge may only enter one EH pad", TI);
4898 Check(Seen.
insert(FromPad).second,
"EH pad jumps through a cycle of pads",
4904 "Parent pad must be catchpad/cleanuppad/catchswitch", TI);
4909void Verifier::visitLandingPadInst(LandingPadInst &LPI) {
4913 "LandingPadInst needs at least one clause or to be a cleanup.", &LPI);
4915 visitEHPadPredecessors(LPI);
4917 if (!LandingPadResultTy)
4918 LandingPadResultTy = LPI.
getType();
4921 "The landingpad instruction should have a consistent result type "
4922 "inside a function.",
4926 Check(
F->hasPersonalityFn(),
4927 "LandingPadInst needs to be in a function with a personality.", &LPI);
4932 "LandingPadInst not the first non-PHI instruction in the block.", &LPI);
4938 "Catch operand does not have pointer type!", &LPI);
4940 Check(LPI.
isFilter(i),
"Clause is neither catch nor filter!", &LPI);
4942 "Filter operand is not an array of constants!", &LPI);
4946 visitInstruction(LPI);
4949void Verifier::visitResumeInst(ResumeInst &RI) {
4951 "ResumeInst needs to be in a function with a personality.", &RI);
4953 if (!LandingPadResultTy)
4957 "The resume instruction should have a consistent result type "
4958 "inside a function.",
4961 visitTerminator(RI);
4964void Verifier::visitCatchPadInst(CatchPadInst &CPI) {
4968 Check(
F->hasPersonalityFn(),
4969 "CatchPadInst needs to be in a function with a personality.", &CPI);
4972 "CatchPadInst needs to be directly nested in a CatchSwitchInst.",
4978 "CatchPadInst not the first non-PHI instruction in the block.", &CPI);
4983 return isa<Constant>(V) || isa<AllocaInst>(V);
4985 "Argument operand must be alloca or constant.", &CPI);
4987 visitEHPadPredecessors(CPI);
4988 visitFuncletPadInst(CPI);
4991void Verifier::visitCatchReturnInst(CatchReturnInst &CatchReturn) {
4993 "CatchReturnInst needs to be provided a CatchPad", &CatchReturn,
4996 visitTerminator(CatchReturn);
4999void Verifier::visitCleanupPadInst(CleanupPadInst &CPI) {
5003 Check(
F->hasPersonalityFn(),
5004 "CleanupPadInst needs to be in a function with a personality.", &CPI);
5009 "CleanupPadInst not the first non-PHI instruction in the block.", &CPI);
5013 "CleanupPadInst has an invalid parent.", &CPI);
5015 visitEHPadPredecessors(CPI);
5016 visitFuncletPadInst(CPI);
5019void Verifier::visitFuncletPadInst(FuncletPadInst &FPI) {
5020 User *FirstUser =
nullptr;
5021 Value *FirstUnwindPad =
nullptr;
5023 SmallPtrSet<FuncletPadInst *, 8> Seen;
5025 while (!Worklist.empty()) {
5026 FuncletPadInst *CurrentPad = Worklist.pop_back_val();
5028 "FuncletPadInst must not be nested within itself", CurrentPad);
5029 Value *UnresolvedAncestorPad =
nullptr;
5030 for (User *U : CurrentPad->
users()) {
5033 UnwindDest = CRI->getUnwindDest();
5039 if (CSI->unwindsToCaller())
5041 UnwindDest = CSI->getUnwindDest();
5043 UnwindDest =
II->getUnwindDest();
5053 Worklist.push_back(CPI);
5068 if (UnwindParent == CurrentPad)
5074 Value *ExitedPad = CurrentPad;
5077 if (ExitedPad == &FPI) {
5082 UnresolvedAncestorPad = &FPI;
5086 if (ExitedParent == UnwindParent) {
5090 UnresolvedAncestorPad = ExitedParent;
5093 ExitedPad = ExitedParent;
5099 UnresolvedAncestorPad = &FPI;
5106 Check(UnwindPad == FirstUnwindPad,
5107 "Unwind edges out of a funclet "
5108 "pad must have the same unwind "
5110 &FPI, U, FirstUser);
5113 FirstUnwindPad = UnwindPad;
5122 if (CurrentPad != &FPI)
5125 if (UnresolvedAncestorPad) {
5126 if (CurrentPad == UnresolvedAncestorPad) {
5130 assert(CurrentPad == &FPI);
5138 Value *ResolvedPad = CurrentPad;
5139 while (!Worklist.empty()) {
5140 Value *UnclePad = Worklist.back();
5144 while (ResolvedPad != AncestorPad) {
5146 if (ResolvedParent == UnresolvedAncestorPad) {
5149 ResolvedPad = ResolvedParent;
5153 if (ResolvedPad != AncestorPad)
5156 Worklist.pop_back();
5161 if (FirstUnwindPad) {
5163 BasicBlock *SwitchUnwindDest = CatchSwitch->getUnwindDest();
5164 Value *SwitchUnwindPad;
5165 if (SwitchUnwindDest)
5169 Check(SwitchUnwindPad == FirstUnwindPad,
5170 "Unwind edges out of a catch must have the same unwind dest as "
5171 "the parent catchswitch",
5172 &FPI, FirstUser, CatchSwitch);
5176 visitInstruction(FPI);
5179void Verifier::visitCatchSwitchInst(CatchSwitchInst &CatchSwitch) {
5183 Check(
F->hasPersonalityFn(),
5184 "CatchSwitchInst needs to be in a function with a personality.",
5190 "CatchSwitchInst not the first non-PHI instruction in the block.",
5195 "CatchSwitchInst has an invalid parent.", ParentPad);
5200 "CatchSwitchInst must unwind to an EH block which is not a "
5206 SiblingFuncletInfo[&CatchSwitch] = &CatchSwitch;
5210 "CatchSwitchInst cannot have empty handler list", &CatchSwitch);
5212 for (BasicBlock *Handler : CatchSwitch.
handlers()) {
5214 "CatchSwitchInst handlers must be catchpads", &CatchSwitch, Handler);
5217 visitEHPadPredecessors(CatchSwitch);
5218 visitTerminator(CatchSwitch);
5221void Verifier::visitCleanupReturnInst(CleanupReturnInst &CRI) {
5223 "CleanupReturnInst needs to be provided a CleanupPad", &CRI,
5229 "CleanupReturnInst must unwind to an EH block which is not a "
5234 visitTerminator(CRI);
5237void Verifier::verifyDominatesUse(Instruction &
I,
unsigned i) {
5243 if (
II->getNormalDest() ==
II->getUnwindDest())
5257 const Use &
U =
I.getOperandUse(i);
5258 Check(DT.dominates(
Op, U),
"Instruction does not dominate all uses!",
Op, &
I);
5261void Verifier::visitDereferenceableMetadata(Instruction&
I, MDNode* MD) {
5262 Check(
I.getType()->isPointerTy(),
5263 "dereferenceable, dereferenceable_or_null "
5264 "apply only to pointer types",
5267 "dereferenceable, dereferenceable_or_null apply only to load"
5268 " and inttoptr instructions, use attributes for calls or invokes",
5271 "dereferenceable, dereferenceable_or_null "
5272 "take one operand!",
5277 "dereferenceable_or_null metadata value must be an i64!",
5281void Verifier::visitNofreeMetadata(Instruction &
I, MDNode *MD) {
5282 Check(
I.getType()->isPointerTy(),
"nofree applies only to pointer types", &
I);
5288void Verifier::visitProfMetadata(Instruction &
I, MDNode *MD) {
5289 auto GetBranchingTerminatorNumOperands = [&]() {
5290 unsigned ExpectedNumOperands = 0;
5294 ExpectedNumOperands =
SI->getNumSuccessors();
5296 ExpectedNumOperands = 1;
5298 ExpectedNumOperands = IBI->getNumDestinations();
5300 ExpectedNumOperands = 2;
5303 return ExpectedNumOperands;
5306 "!prof annotations should have at least 1 operand", MD);
5308 Check(MD->
getOperand(0) !=
nullptr,
"first operand should not be null", MD);
5310 "expected string with name of the !prof annotation", MD);
5316 "'unknown' !prof should only appear on instructions on which "
5317 "'branch_weights' would",
5319 verifyUnknownProfileMetadata(MD);
5324 "!prof annotations should have no less than 2 operands", MD);
5330 Check(NumBranchWeights == 1 || NumBranchWeights == 2,
5331 "Wrong number of InvokeInst branch_weights operands", MD);
5333 const unsigned ExpectedNumOperands = GetBranchingTerminatorNumOperands();
5334 if (ExpectedNumOperands == 0)
5335 CheckFailed(
"!prof branch_weights are not allowed for this instruction",
5338 Check(NumBranchWeights == ExpectedNumOperands,
"Wrong number of operands",
5344 Check(MDO,
"second operand should not be null", MD);
5346 "!prof brunch_weights operand is not a const int");
5351 Check(KindInt,
"VP !prof missing kind argument", MD);
5354 Check(Kind >= InstrProfValueKind::IPVK_First &&
5355 Kind <= InstrProfValueKind::IPVK_Last,
5356 "Invalid VP !prof kind", MD);
5358 "VP !prof should have an even number "
5359 "of arguments after 'VP'",
5361 if (Kind == InstrProfValueKind::IPVK_IndirectCallTarget ||
5362 Kind == InstrProfValueKind::IPVK_MemOPSize)
5364 "VP !prof indirect call or memop size expected to be applied to "
5365 "CallBase instructions only",
5368 DenseSet<uint64_t> ProfileValues;
5370 ConstantInt *ProfileValue =
5372 Check(ProfileValue,
"VP !prof value operand is not a const int", MD);
5373 uint64_t ProfileValueInt = ProfileValue->
getZExtValue();
5374 auto [ValueIt,
Inserted] = ProfileValues.
insert(ProfileValueInt);
5375 Check(Inserted,
"VP !prof should not have duplicate profile values", MD);
5378 CheckFailed(
"expected either branch_weights or VP profile name", MD);
5382void Verifier::visitDIAssignIDMetadata(Instruction &
I, MDNode *MD) {
5383 assert(
I.hasMetadata(LLVMContext::MD_DIAssignID));
5388 bool ExpectedInstTy =
5390 CheckDI(ExpectedInstTy,
"!DIAssignID attached to unexpected instruction kind",
5395 for (
auto *User : AsValue->users()) {
5397 "!DIAssignID should only be used by llvm.dbg.assign intrinsics",
5401 CheckDI(DAI->getFunction() ==
I.getFunction(),
5402 "dbg.assign not in same function as inst", DAI, &
I);
5405 for (DbgVariableRecord *DVR :
5408 "!DIAssignID should only be used by Assign DVRs.", MD, DVR);
5409 CheckDI(DVR->getFunction() ==
I.getFunction(),
5410 "DVRAssign not in same function as inst", DVR, &
I);
5414void Verifier::visitMMRAMetadata(Instruction &
I, MDNode *MD) {
5416 "!mmra metadata attached to unexpected instruction kind",
I, MD);
5427 for (
const MDOperand &MDOp : MD->
operands())
5429 "!mmra metadata tuple operand is not an MMRA tag",
I, MDOp.get());
5432void Verifier::visitCallStackMetadata(MDNode *MD) {
5436 "call stack metadata should have at least 1 operand", MD);
5440 "call stack metadata operand should be constant integer",
Op);
5443void Verifier::visitMemProfMetadata(Instruction &
I, MDNode *MD) {
5446 Check(
I.hasMetadata(LLVMContext::MD_callsite),
5447 "!memprof metadata requires !callsite metadata", &
I, MD);
5449 "!memprof annotations should have at least 1 metadata operand "
5454 for (
auto &MIBOp : MD->
operands()) {
5459 Check(MIB->getNumOperands() >= 2,
5460 "Each !memprof MemInfoBlock should have at least 2 operands", MIB);
5463 Check(MIB->getOperand(0) !=
nullptr,
5464 "!memprof MemInfoBlock first operand should not be null", MIB);
5466 "!memprof MemInfoBlock first operand should be an MDNode", MIB);
5468 visitCallStackMetadata(StackMD);
5472 "!memprof MemInfoBlock second operand should be an MDString", MIB);
5475 for (
unsigned I = 2;
I < MIB->getNumOperands(); ++
I) {
5477 Check(OpNode,
"Not all !memprof MemInfoBlock operands 2 to N are MDNode",
5479 Check(OpNode->getNumOperands() == 2,
5480 "Not all !memprof MemInfoBlock operands 2 to N are MDNode with 2 "
5485 [](
const MDOperand &
Op) {
5486 return mdconst::hasa<ConstantInt>(Op);
5488 "Not all !memprof MemInfoBlock operands 2 to N are MDNode with "
5489 "ConstantInt operands",
5495void Verifier::visitCallsiteMetadata(Instruction &
I, MDNode *MD) {
5499 visitCallStackMetadata(MD);
5502void Verifier::visitCalleeTypeMetadata(Instruction &
I, MDNode *MD) {
5507 "The callee_type metadata must be a list of callgraph metadata nodes",
5510 Check(CallgraphMD->getNumOperands() == 1,
5511 "Well-formed callgraph metadata must contain exactly one "
5515 "The operand of callgraph metadata for functions must be an MDString",
5520void Verifier::visitAnnotationMetadata(MDNode *Annotation) {
5523 "annotation must have at least one operand");
5525 bool TupleOfStrings =
5531 "operands must be a string or a tuple of strings");
5535void Verifier::visitAliasScopeMetadata(
const MDNode *MD) {
5540 "first scope operand must be self-referential or string", MD);
5543 "third scope operand must be string (if used)", MD);
5546 Check(
Domain !=
nullptr,
"second scope operand must be MDNode", MD);
5548 unsigned NumDomainOps =
Domain->getNumOperands();
5549 Check(NumDomainOps >= 1 && NumDomainOps <= 2,
5550 "domain must have one or two operands",
Domain);
5553 "first domain operand must be self-referential or string",
Domain);
5554 if (NumDomainOps == 2)
5556 "second domain operand must be string (if used)",
Domain);
5559void Verifier::visitAliasScopeListMetadata(
const MDNode *MD) {
5562 Check(OpMD !=
nullptr,
"scope list must consist of MDNodes", MD);
5563 visitAliasScopeMetadata(OpMD);
5567void Verifier::visitAccessGroupMetadata(
const MDNode *MD) {
5568 auto IsValidAccessScope = [](
const MDNode *MD) {
5583 Check(OpMD !=
nullptr,
"Access scope list must consist of MDNodes", MD);
5584 Check(IsValidAccessScope(OpMD),
5585 "Access scope list contains invalid access scope", MD);
5589void Verifier::visitCapturesMetadata(Instruction &
I,
const MDNode *Captures) {
5590 static const char *ValidArgs[] = {
"address_is_null",
"address",
5591 "read_provenance",
"provenance"};
5594 Check(SI,
"!captures metadata can only be applied to store instructions", &
I);
5595 Check(
SI->getValueOperand()->getType()->isPointerTy(),
5596 "!captures metadata can only be applied to store with value operand of "
5604 Check(Str,
"!captures metadata must be a list of strings", &
I);
5606 "invalid entry in !captures metadata", &
I, Str);
5610void Verifier::visitAllocTokenMetadata(Instruction &
I, MDNode *MD) {
5615 "expected integer constant", MD);
5618void Verifier::visitInlineHistoryMetadata(Instruction &
I, MDNode *MD) {
5627 ->stripPointerCastsAndAliases()),
5628 "!inline_history operands must be functions or null", MD);
5632void Verifier::visitMemCacheHintMetadata(Instruction &
I, MDNode *MD) {
5633 Check(
I.mayReadOrWriteMemory(),
5634 "!mem.cache_hint is only valid on memory operations", &
I);
5637 "!mem.cache_hint must have even number of operands "
5638 "(operand_no, hint_node pairs)",
5644 "!mem.cache_hint is not supported on non-intrinsic calls", &
I);
5646 unsigned NumOperands = CB ? CB->arg_size() :
I.getNumOperands();
5648 SmallDenseSet<unsigned, 4> SeenOperandNos;
5649 std::optional<uint64_t> LastOperandNo;
5655 "!mem.cache_hint must alternate between i32 operand numbers and "
5656 "metadata hint nodes",
5659 Check(OpNoCI->getValue().isNonNegative(),
5660 "!mem.cache_hint operand number must be non-negative", MD);
5662 uint64_t OperandNo = OpNoCI->getZExtValue();
5663 Check(OperandNo < NumOperands,
5664 "!mem.cache_hint operand number is out of range", &
I);
5667 CB ? CB->getArgOperand(OperandNo) :
I.getOperand(OperandNo);
5669 "!mem.cache_hint operand number must refer to a pointer operand", &
I);
5672 Check(Inserted,
"!mem.cache_hint contains duplicate operand number", MD);
5674 Check(!Inserted || !LastOperandNo || OperandNo > *LastOperandNo,
5675 "!mem.cache_hint operand numbers must be in increasing order", MD);
5676 LastOperandNo = OperandNo;
5680 "!mem.cache_hint must alternate between i32 operand numbers and "
5681 "metadata hint nodes",
5685 "!mem.cache_hint hint node must have even number of operands "
5686 "(key-value pairs)",
5689 StringSet<> SeenKeys;
5690 for (
unsigned K = 0;
K + 1 <
Node->getNumOperands();
K += 2) {
5692 Check(
Key,
"!mem.cache_hint key must be a string", Node);
5694 StringRef KeyStr =
Key->getString();
5696 "!mem.cache_hint hint node contains duplicate key", Node);
5701 "!mem.cache_hint value must be a string or integer", Node);
5708void Verifier::visitInstruction(Instruction &
I) {
5710 Check(BB,
"Instruction not embedded in basic block!", &
I);
5713 for (User *U :
I.users()) {
5714 Check(U != (User *)&
I || !DT.isReachableFromEntry(BB),
5715 "Only PHI nodes may reference their own value!", &
I);
5720 Check(!
I.getType()->isVoidTy() || !
I.hasName(),
5721 "Instruction has a name, but provides a void value!", &
I);
5725 Check(
I.getType()->isVoidTy() ||
I.getType()->isFirstClassType(),
5726 "Instruction returns a non-scalar type!", &
I);
5731 "Invalid use of metadata!", &
I);
5736 for (Use &U :
I.uses()) {
5739 "Instruction referencing"
5740 " instruction not embedded in a basic block!",
5743 CheckFailed(
"Use of instruction is not an instruction!", U);
5752 for (
unsigned i = 0, e =
I.getNumOperands(); i != e; ++i) {
5753 Check(
I.getOperand(i) !=
nullptr,
"Instruction has null operand!", &
I);
5757 if (!
I.getOperand(i)->getType()->isFirstClassType()) {
5758 Check(
false,
"Instruction operands must be first-class values!", &
I);
5764 auto IsAttachedCallOperand = [](
Function *
F,
const CallBase *CBI,
5766 return CBI && CBI->isOperandBundleOfType(
5774 Check((!
F->isIntrinsic() ||
5775 (CBI && &CBI->getCalledOperandUse() == &
I.getOperandUse(i)) ||
5776 IsAttachedCallOperand(
F, CBI, i)),
5777 "Cannot take the address of an intrinsic!", &
I);
5779 F->getIntrinsicID() == Intrinsic::donothing ||
5780 F->getIntrinsicID() == Intrinsic::seh_try_begin ||
5781 F->getIntrinsicID() == Intrinsic::seh_try_end ||
5782 F->getIntrinsicID() == Intrinsic::seh_scope_begin ||
5783 F->getIntrinsicID() == Intrinsic::seh_scope_end ||
5784 F->getIntrinsicID() == Intrinsic::coro_resume ||
5785 F->getIntrinsicID() == Intrinsic::coro_destroy ||
5786 F->getIntrinsicID() == Intrinsic::coro_await_suspend_void ||
5787 F->getIntrinsicID() == Intrinsic::coro_await_suspend_bool ||
5788 F->getIntrinsicID() == Intrinsic::coro_await_suspend_handle ||
5789 F->getIntrinsicID() ==
5790 Intrinsic::experimental_patchpoint_void ||
5791 F->getIntrinsicID() == Intrinsic::experimental_patchpoint ||
5792 F->getIntrinsicID() == Intrinsic::fake_use ||
5793 F->getIntrinsicID() == Intrinsic::experimental_gc_statepoint ||
5794 F->getIntrinsicID() == Intrinsic::wasm_throw ||
5795 F->getIntrinsicID() == Intrinsic::wasm_rethrow ||
5796 IsAttachedCallOperand(
F, CBI, i),
5797 "Cannot invoke an intrinsic other than donothing, patchpoint, "
5798 "statepoint, coro_resume, coro_destroy, clang.arc.attachedcall or "
5801 Check(
F->getParent() == &M,
"Referencing function in another module!", &
I,
5802 &M,
F,
F->getParent());
5805 "Referring to a basic block in another function!", &
I);
5808 "Referring to an argument in another function!", &
I);
5810 Check(GV->
getParent() == &M,
"Referencing global in another module!", &
I,
5814 "Referring to an instruction in another function!", &
I);
5815 verifyDominatesUse(
I, i);
5817 Check(CBI && &CBI->getCalledOperandUse() == &
I.getOperandUse(i),
5818 "Cannot take the address of an inline asm!", &
I);
5820 visitConstantExprsRecursively(
C);
5824 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_fpmath)) {
5826 "fpmath requires a floating point result!", &
I);
5828 if (ConstantFP *CFP0 =
5830 const APFloat &Accuracy = CFP0->getValueAPF();
5832 "fpmath accuracy must have float type", &
I);
5834 "fpmath accuracy not a positive number!", &
I);
5836 Check(
false,
"invalid fpmath accuracy!", &
I);
5840 if (MDNode *
Range =
I.getMetadata(LLVMContext::MD_range)) {
5842 "Ranges are only for loads, calls and invokes!", &
I);
5843 visitRangeMetadata(
I,
Range,
I.getType());
5846 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_nofpclass)) {
5848 visitNoFPClassMetadata(
I, MD,
I.getType());
5851 if (MDNode *
Range =
I.getMetadata(LLVMContext::MD_noalias_addrspace)) {
5854 "noalias.addrspace are only for memory operations!", &
I);
5855 visitNoaliasAddrspaceMetadata(
I,
Range,
I.getType());
5858 if (
I.hasMetadata(LLVMContext::MD_invariant_group)) {
5860 "invariant.group metadata is only for loads and stores", &
I);
5863 if (
I.hasMetadata(LLVMContext::MD_invariant_load)) {
5866 "invariant.load metadata is only for loads and readonly "
5871 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_nonnull)) {
5872 Check(
I.getType()->isPointerTy(),
"nonnull applies only to pointer types",
5875 "nonnull applies only to load instructions, use attributes"
5876 " for calls or invokes",
5881 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_noundef)) {
5886 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_dereferenceable))
5887 visitDereferenceableMetadata(
I, MD);
5889 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_dereferenceable_or_null))
5890 visitDereferenceableMetadata(
I, MD);
5892 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_nofree))
5893 visitNofreeMetadata(
I, MD);
5895 if (MDNode *TBAA =
I.getMetadata(LLVMContext::MD_tbaa))
5898 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_noalias))
5899 visitAliasScopeListMetadata(MD);
5900 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_alias_scope))
5901 visitAliasScopeListMetadata(MD);
5903 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_access_group))
5904 visitAccessGroupMetadata(MD);
5906 if (MDNode *AlignMD =
I.getMetadata(LLVMContext::MD_align)) {
5907 Check(
I.getType()->isPointerTy(),
"align applies only to pointer types",
5910 "align applies only to load instructions, "
5911 "use attributes for calls or invokes",
5913 Check(AlignMD->getNumOperands() == 1,
"align takes one operand!", &
I);
5916 "align metadata value must be an i64!", &
I);
5920 Check(Align <= Value::MaximumAlignment,
5921 "alignment is larger that implementation defined limit", &
I);
5924 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_prof))
5925 visitProfMetadata(
I, MD);
5927 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_memprof))
5928 visitMemProfMetadata(
I, MD);
5930 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_callsite))
5931 visitCallsiteMetadata(
I, MD);
5933 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_callee_type))
5934 visitCalleeTypeMetadata(
I, MD);
5936 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_DIAssignID))
5937 visitDIAssignIDMetadata(
I, MD);
5939 if (MDNode *MMRA =
I.getMetadata(LLVMContext::MD_mmra))
5940 visitMMRAMetadata(
I, MMRA);
5942 if (MDNode *Annotation =
I.getMetadata(LLVMContext::MD_annotation))
5943 visitAnnotationMetadata(Annotation);
5945 if (MDNode *Captures =
I.getMetadata(LLVMContext::MD_captures))
5946 visitCapturesMetadata(
I, Captures);
5948 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_alloc_token))
5949 visitAllocTokenMetadata(
I, MD);
5951 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_inline_history))
5952 visitInlineHistoryMetadata(
I, MD);
5954 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_mem_cache_hint))
5955 visitMemCacheHintMetadata(
I, MD);
5957 if (MDNode *MD =
I.getMetadata(
"amdgpu.expected.active.lanes")) {
5959 "!amdgpu.expected.active.lanes must have exactly one operand", &
I,
5964 "!amdgpu.expected.active.lanes operand must be an i32 constant", &
I,
5968 if (MDNode *
N =
I.getDebugLoc().getAsMDNode()) {
5970 visitMDNode(*
N, AreDebugLocsAllowed::Yes);
5973 if (
DL->getAtomGroup()) {
5974 CheckDI(
DL->getScope()->getSubprogram()->getKeyInstructionsEnabled(),
5975 "DbgLoc uses atomGroup but DISubprogram doesn't have Key "
5976 "Instructions enabled",
5977 DL,
DL->getScope()->getSubprogram());
5983 I.getAllMetadata(MDs);
5984 for (
auto Attachment : MDs) {
5985 unsigned Kind = Attachment.first;
5987 (
Kind == LLVMContext::MD_dbg ||
Kind == LLVMContext::MD_loop)
5988 ? AreDebugLocsAllowed::Yes
5989 : AreDebugLocsAllowed::
No;
5990 visitMDNode(*Attachment.second, AllowLocs);
6007 "const x86_amx is not allowed in argument!");
6013 case Intrinsic::assume: {
6017 "assume with operand bundles must have i1 true condition",
Call);
6023 auto GetTypeAt = [&](
unsigned Index) {
6024 return OBU.Inputs[
Index]->getType();
6029 CheckFailed(
"tags must be valid attribute names",
Call);
6031 case BundleAttr::Align:
6032 Check(OBU.Inputs.size() >= 2 && OBU.Inputs.size() <= 3,
6033 "alignment assumptions should have 2 or 3 arguments",
Call);
6036 Check(GetTypeAt(1)->isIntegerTy() &&
6037 GetTypeAt(1)->getIntegerBitWidth() <= 64,
6038 "second argument should be an integer with a maximum width of 64 "
6041 Check(OBU.Inputs.size() < 3 ||
6042 (GetTypeAt(2)->isIntegerTy() &&
6043 GetTypeAt(2)->getIntegerBitWidth() <= 64),
6044 "third argument should be an integer with a maximum width of 64 "
6048 case BundleAttr::Cold:
6049 Check(OBU.Inputs.size() == 0,
6050 "cold assumptions should have no arguments",
Call);
6052 case BundleAttr::Dereferenceable:
6053 case BundleAttr::DereferenceableOrNull:
6054 Check(OBU.Inputs.size() == 2,
6055 "dereferenceable assumptions should have 2 arguments",
Call);
6058 Check(GetTypeAt(1)->isIntegerTy() &&
6059 GetTypeAt(1)->getIntegerBitWidth() <= 64,
6060 "second argument should be an integer with a maximum width of 64 "
6064 case BundleAttr::Ignore:
6066 case BundleAttr::NonNull:
6067 Check(OBU.Inputs.size() == 1,
6068 "nonnull assumptions should have 1 argument",
Call);
6072 case BundleAttr::NoUndef:
6073 Check(OBU.Inputs.size() == 1,
6074 "noundef assumptions should have 1 argument",
Call);
6076 case BundleAttr::SeparateStorage:
6077 Check(OBU.Inputs.size() == 2,
6078 "separate_storage assumptions should have 2 arguments",
Call);
6080 "arguments to separate_storage assumptions should be pointers",
6087 case Intrinsic::ucmp:
6088 case Intrinsic::scmp: {
6093 "result type must be at least 2 bits wide",
Call);
6095 bool IsDestTypeVector = DestTy->
isVectorTy();
6097 "ucmp/scmp argument and result types must both be either vector or "
6100 if (IsDestTypeVector) {
6103 Check(SrcVecLen == DestVecLen,
6104 "return type and arguments must have the same number of "
6110 case Intrinsic::coro_begin:
6111 case Intrinsic::coro_begin_custom_abi:
6113 "id argument of llvm.coro.begin must refer to coro.id");
6115 case Intrinsic::coro_id: {
6117 "align argument only accepts constants");
6120 "promise argument must refer to an alloca");
6125 "coro argument must refer to a function");
6129 if (BeforeCoroSplit)
6132 Check(!BeforeCoroEarly,
"cannot run CoroSplit before CoroEarly");
6135 "info argument of llvm.coro.id must refer to an initialized "
6139 "info argument of llvm.coro.id must refer to either a struct or "
6143 case Intrinsic::is_fpclass: {
6146 "unsupported bits for llvm.is.fpclass test mask");
6149 case Intrinsic::fptrunc_round: {
6154 MD = MAV->getMetadata();
6156 Check(MD !=
nullptr,
"missing rounding mode argument",
Call);
6159 (
"invalid value for llvm.fptrunc.round metadata operand"
6160 " (the operand should be a string)"),
6163 std::optional<RoundingMode> RoundMode =
6165 Check(RoundMode && *RoundMode != RoundingMode::Dynamic,
6166 "unsupported rounding mode argument",
Call);
6169 case Intrinsic::convert_to_arbitrary_fp: {
6177 "if floating-point operand is a vector, integer operand must also "
6180 Check(ValueVecTy->getElementCount() == IntVecTy->getElementCount(),
6181 "floating-point and integer vector operands must have the same "
6188 Check(InterpMAV,
"missing interpretation metadata operand",
Call);
6190 Check(InterpStr,
"interpretation metadata operand must be a string",
Call);
6191 StringRef Interp = InterpStr->getString();
6193 Check(!Interp.
empty(),
"interpretation metadata string must not be empty",
6198 "unsupported interpretation metadata string",
Call);
6201 if (
unsigned FormatBits =
6204 "integer type bit width must equal the arbitrary FP format width",
6209 Check(RoundingMAV,
"missing rounding mode metadata operand",
Call);
6211 Check(RoundingStr,
"rounding mode metadata operand must be a string",
Call);
6213 std::optional<RoundingMode>
RM =
6215 Check(RM && *RM != RoundingMode::Dynamic,
6216 "unsupported rounding mode argument",
Call);
6219 case Intrinsic::convert_from_arbitrary_fp: {
6227 "if floating-point operand is a vector, integer operand must also "
6230 Check(ValueVecTy->getElementCount() == IntVecTy->getElementCount(),
6231 "floating-point and integer vector operands must have the same "
6238 Check(InterpMAV,
"missing interpretation metadata operand",
Call);
6240 Check(InterpStr,
"interpretation metadata operand must be a string",
Call);
6241 StringRef Interp = InterpStr->getString();
6243 Check(!Interp.
empty(),
"interpretation metadata string must not be empty",
6248 "unsupported interpretation metadata string",
Call);
6251 if (
unsigned FormatBits =
6254 "integer type bit width must equal the arbitrary FP format width",
6258#define BEGIN_REGISTER_VP_INTRINSIC(VPID, ...) case Intrinsic::VPID:
6259#include "llvm/IR/VPIntrinsics.def"
6260#undef BEGIN_REGISTER_VP_INTRINSIC
6263#define INSTRUCTION(NAME, NARGS, ROUND_MODE, INTRINSIC) \
6264 case Intrinsic::INTRINSIC:
6265#include "llvm/IR/ConstrainedOps.def"
6269 case Intrinsic::dbg_declare:
6270 case Intrinsic::dbg_value:
6271 case Intrinsic::dbg_assign:
6272 case Intrinsic::dbg_label:
6279 case Intrinsic::memcpy:
6280 case Intrinsic::memcpy_inline:
6281 case Intrinsic::memmove:
6282 case Intrinsic::memset:
6283 case Intrinsic::memset_inline:
6285 case Intrinsic::experimental_memset_pattern: {
6287 Check(Memset->getValue()->getType()->isSized(),
6288 "unsized types cannot be used as memset patterns",
Call);
6291 case Intrinsic::memcpy_element_unordered_atomic:
6292 case Intrinsic::memmove_element_unordered_atomic:
6293 case Intrinsic::memset_element_unordered_atomic: {
6296 ConstantInt *ElementSizeCI =
6298 const APInt &ElementSizeVal = ElementSizeCI->
getValue();
6300 "element size of the element-wise atomic memory intrinsic "
6301 "must be a power of 2",
6304 auto IsValidAlignment = [&](MaybeAlign Alignment) {
6305 return Alignment && ElementSizeVal.
ule(Alignment->value());
6307 Check(IsValidAlignment(AMI->getDestAlign()),
6308 "incorrect alignment of the destination argument",
Call);
6310 Check(IsValidAlignment(AMT->getSourceAlign()),
6311 "incorrect alignment of the source argument",
Call);
6315 case Intrinsic::call_preallocated_setup: {
6317 bool FoundCall =
false;
6320 Check(UseCall !=
nullptr,
6321 "Uses of llvm.call.preallocated.setup must be calls");
6323 if (IID == Intrinsic::call_preallocated_arg) {
6325 Check(AllocArgIndex !=
nullptr,
6326 "llvm.call.preallocated.alloc arg index must be a constant");
6327 auto AllocArgIndexInt = AllocArgIndex->getValue();
6328 Check(AllocArgIndexInt.sge(0) &&
6329 AllocArgIndexInt.slt(NumArgs->getValue()),
6330 "llvm.call.preallocated.alloc arg index must be between 0 and "
6332 "llvm.call.preallocated.setup's argument count");
6333 }
else if (IID == Intrinsic::call_preallocated_teardown) {
6336 Check(!FoundCall,
"Can have at most one call corresponding to a "
6337 "llvm.call.preallocated.setup");
6339 size_t NumPreallocatedArgs = 0;
6340 for (
unsigned i = 0; i < UseCall->arg_size(); i++) {
6341 if (UseCall->paramHasAttr(i, Attribute::Preallocated)) {
6342 ++NumPreallocatedArgs;
6345 Check(NumPreallocatedArgs != 0,
6346 "cannot use preallocated intrinsics on a call without "
6347 "preallocated arguments");
6348 Check(NumArgs->equalsInt(NumPreallocatedArgs),
6349 "llvm.call.preallocated.setup arg size must be equal to number "
6350 "of preallocated arguments "
6360 auto PreallocatedBundle =
6362 Check(PreallocatedBundle,
6363 "Use of llvm.call.preallocated.setup outside intrinsics "
6364 "must be in \"preallocated\" operand bundle");
6365 Check(PreallocatedBundle->Inputs.front().get() == &
Call,
6366 "preallocated bundle must have token from corresponding "
6367 "llvm.call.preallocated.setup");
6372 case Intrinsic::call_preallocated_arg: {
6375 Token->getIntrinsicID() == Intrinsic::call_preallocated_setup,
6376 "llvm.call.preallocated.arg token argument must be a "
6377 "llvm.call.preallocated.setup");
6379 "llvm.call.preallocated.arg must be called with a \"preallocated\" "
6380 "call site attribute");
6383 case Intrinsic::call_preallocated_teardown: {
6386 Token->getIntrinsicID() == Intrinsic::call_preallocated_setup,
6387 "llvm.call.preallocated.teardown token argument must be a "
6388 "llvm.call.preallocated.setup");
6391 case Intrinsic::gcroot:
6392 case Intrinsic::gcwrite:
6393 case Intrinsic::gcread:
6394 if (ID == Intrinsic::gcroot) {
6397 Check(AI,
"llvm.gcroot parameter #1 must be an alloca.",
Call);
6399 "llvm.gcroot parameter #2 must be a constant.",
Call);
6402 "llvm.gcroot parameter #1 must either be a pointer alloca, "
6403 "or argument #2 must be a non-null constant.",
6409 "Enclosing function does not use GC.",
Call);
6411 case Intrinsic::init_trampoline:
6413 "llvm.init_trampoline parameter #2 must resolve to a function.",
6416 case Intrinsic::reloc_none: {
6419 "llvm.reloc.none argument must be a metadata string", &
Call);
6422 case Intrinsic::stackprotector:
6424 "llvm.stackprotector parameter #2 must resolve to an alloca.",
Call);
6426 case Intrinsic::localescape: {
6430 Check(!SawFrameEscape,
"multiple calls to llvm.localescape in one function",
6437 "llvm.localescape only accepts static allocas",
Call);
6440 SawFrameEscape =
true;
6443 case Intrinsic::localrecover: {
6446 Check(Fn && !Fn->isDeclaration(),
6447 "llvm.localrecover first "
6448 "argument must be function defined in this module",
6451 auto &
Entry = FrameEscapeInfo[Fn];
6452 Entry.second = unsigned(
6453 std::max(uint64_t(
Entry.second), IdxArg->getLimitedValue(~0U) + 1));
6457 case Intrinsic::experimental_gc_statepoint:
6459 Check(!CI->isInlineAsm(),
6460 "gc.statepoint support for inline assembly unimplemented", CI);
6462 "Enclosing function does not use GC.",
Call);
6464 verifyStatepoint(
Call);
6466 case Intrinsic::experimental_gc_result: {
6468 "Enclosing function does not use GC.",
Call);
6476 Check(StatepointCall && StatepointCall->getIntrinsicID() ==
6477 Intrinsic::experimental_gc_statepoint,
6478 "gc.result operand #1 must be from a statepoint",
Call,
6482 auto *TargetFuncType =
6485 "gc.result result type does not match wrapped callee",
Call);
6488 case Intrinsic::experimental_gc_relocate: {
6492 "gc.relocate must return a pointer or a vector of pointers",
Call);
6500 LandingPad->getParent()->getUniquePredecessor();
6504 Check(InvokeBB,
"safepoints should have unique landingpads",
6505 LandingPad->getParent());
6509 "gc relocate should be linked to a statepoint", InvokeBB);
6516 "gc relocate is incorrectly tied to the statepoint",
Call, Token);
6525 "gc.relocate operand #2 must be integer offset",
Call);
6529 "gc.relocate operand #3 must be integer offset",
Call);
6539 Check(BaseIndex < Opt->Inputs.size(),
6540 "gc.relocate: statepoint base index out of bounds",
Call);
6541 Check(DerivedIndex < Opt->Inputs.size(),
6542 "gc.relocate: statepoint derived index out of bounds",
Call);
6555 "gc.relocate: relocated value must be a pointer",
Call);
6556 Check(DerivedType->isPtrOrPtrVectorTy(),
6557 "gc.relocate: relocated value must be a pointer",
Call);
6559 Check(ResultType->isVectorTy() == DerivedType->isVectorTy(),
6560 "gc.relocate: vector relocates to vector and pointer to pointer",
6563 ResultType->getPointerAddressSpace() ==
6564 DerivedType->getPointerAddressSpace(),
6565 "gc.relocate: relocating a pointer shouldn't change its address space",
6569 Check(GC,
"gc.relocate: calling function must have GCStrategy",
6572 auto isGCPtr = [&
GC](
Type *PTy) {
6573 return GC->isGCManagedPointer(PTy->getScalarType()).value_or(
true);
6575 Check(isGCPtr(ResultType),
"gc.relocate: must return gc pointer",
Call);
6577 "gc.relocate: relocated value must be a gc pointer",
Call);
6578 Check(isGCPtr(DerivedType),
6579 "gc.relocate: relocated value must be a gc pointer",
Call);
6583 case Intrinsic::experimental_patchpoint: {
6586 "patchpoint: invalid return type used with anyregcc",
Call);
6590 case Intrinsic::eh_exceptioncode:
6591 case Intrinsic::eh_exceptionpointer: {
6593 "eh.exceptionpointer argument must be a catchpad",
Call);
6596 case Intrinsic::get_active_lane_mask: {
6599 "get_active_lane_mask: element type is not i1",
Call);
6602 case Intrinsic::experimental_get_vector_length: {
6604 Check(!VF->isNegative() && !VF->isZero(),
6605 "get_vector_length: VF must be positive",
Call);
6608 case Intrinsic::experimental_guard: {
6611 "experimental_guard must have exactly one "
6612 "\"deopt\" operand bundle");
6616 case Intrinsic::experimental_deoptimize: {
6620 "experimental_deoptimize must have exactly one "
6621 "\"deopt\" operand bundle");
6623 "experimental_deoptimize return type must match caller return type");
6628 "calls to experimental_deoptimize must be followed by a return");
6632 "calls to experimental_deoptimize must be followed by a return "
6633 "of the value computed by experimental_deoptimize");
6638 case Intrinsic::vastart: {
6640 "va_start called in a non-varargs function");
6643 case Intrinsic::get_dynamic_area_offset: {
6645 Check(IntTy &&
DL.getPointerSizeInBits(
DL.getAllocaAddrSpace()) ==
6646 IntTy->getBitWidth(),
6647 "get_dynamic_area_offset result type must be scalar integer matching "
6648 "alloca address space width",
6652 case Intrinsic::smul_fix:
6653 case Intrinsic::smul_fix_sat:
6654 case Intrinsic::umul_fix:
6655 case Intrinsic::umul_fix_sat:
6656 case Intrinsic::sdiv_fix:
6657 case Intrinsic::sdiv_fix_sat:
6658 case Intrinsic::udiv_fix:
6659 case Intrinsic::udiv_fix_sat: {
6663 if (ID == Intrinsic::smul_fix || ID == Intrinsic::smul_fix_sat ||
6664 ID == Intrinsic::sdiv_fix || ID == Intrinsic::sdiv_fix_sat) {
6666 "the scale of s[mul|div]_fix[_sat] must be less than the width of "
6670 "the scale of u[mul|div]_fix[_sat] must be less than or equal "
6671 "to the width of the operands");
6675 case Intrinsic::lrint:
6676 case Intrinsic::llrint:
6677 case Intrinsic::lround:
6678 case Intrinsic::llround: {
6682 IF->
getName() +
": argument and result disagree on vector use",
6686 Check(VTy->getElementCount() == RTy->getElementCount(),
6687 IF->
getName() +
": argument must be same length as result", &
Call);
6691 case Intrinsic::bswap: {
6694 Check(
Size % 16 == 0,
"bswap must be an even number of bytes", &
Call);
6697 case Intrinsic::invariant_start: {
6699 Check(InvariantSize &&
6700 (!InvariantSize->isNegative() || InvariantSize->isMinusOne()),
6701 "invariant_start parameter must be -1, 0 or a positive number",
6705 case Intrinsic::matrix_multiply:
6706 case Intrinsic::matrix_transpose:
6707 case Intrinsic::matrix_column_major_load:
6708 case Intrinsic::matrix_column_major_store: {
6710 Value *Stride =
nullptr;
6711 ConstantInt *NumRows;
6712 ConstantInt *NumColumns;
6714 Type *Op0ElemTy =
nullptr;
6715 Type *Op1ElemTy =
nullptr;
6717 case Intrinsic::matrix_multiply: {
6722 ->getNumElements() ==
6724 "First argument of a matrix operation does not match specified "
6727 ->getNumElements() ==
6729 "Second argument of a matrix operation does not match specified "
6739 case Intrinsic::matrix_transpose:
6746 case Intrinsic::matrix_column_major_load: {
6753 case Intrinsic::matrix_column_major_store: {
6766 Check(ResultTy->getElementType()->isIntegerTy() ||
6767 ResultTy->getElementType()->isFloatingPointTy(),
6768 "Result type must be an integer or floating-point type!", IF);
6771 Check(ResultTy->getElementType() == Op0ElemTy,
6772 "Vector element type mismatch of the result and first operand "
6777 Check(ResultTy->getElementType() == Op1ElemTy,
6778 "Vector element type mismatch of the result and second operand "
6784 "Result of a matrix operation does not fit in the returned vector!");
6788 "Stride bitwidth cannot exceed 64!", IF);
6792 case Intrinsic::stepvector: {
6794 Check(VecTy && VecTy->getScalarType()->isIntegerTy() &&
6795 VecTy->getScalarSizeInBits() >= 8,
6796 "stepvector only supported for vectors of integers "
6797 "with a bitwidth of at least 8.",
6801 case Intrinsic::experimental_vector_match: {
6810 Check(Op1Ty && Op2Ty && MaskTy,
"Operands must be vectors.", &
Call);
6812 "Second operand must be a fixed length vector.", &
Call);
6814 "First operand must be a vector of integers.", &
Call);
6815 Check(Op1Ty->getElementType() == Op2Ty->getElementType(),
6816 "First two operands must have the same element type.", &
Call);
6817 Check(Op1Ty->getElementCount() == MaskTy->getElementCount(),
6818 "First operand and mask must have the same number of elements.",
6820 Check(MaskTy->getElementType()->isIntegerTy(1),
6821 "Mask must be a vector of i1's.", &
Call);
6826 case Intrinsic::vector_insert: {
6835 ElementCount VecEC = VecTy->getElementCount();
6836 ElementCount SubVecEC = SubVecTy->getElementCount();
6837 Check(VecTy->getElementType() == SubVecTy->getElementType(),
6838 "vector_insert parameters must have the same element "
6842 "vector_insert index must be a constant multiple of "
6843 "the subvector's known minimum vector length.");
6851 "subvector operand of vector_insert would overrun the "
6852 "vector being inserted into.");
6856 case Intrinsic::vector_extract: {
6864 ElementCount VecEC = VecTy->getElementCount();
6865 ElementCount ResultEC = ResultTy->getElementCount();
6867 Check(ResultTy->getElementType() == VecTy->getElementType(),
6868 "vector_extract result must have the same element "
6869 "type as the input vector.",
6872 "vector_extract index must be a constant multiple of "
6873 "the result type's known minimum vector length.");
6881 "vector_extract would overrun.");
6885 case Intrinsic::vector_partial_reduce_fadd:
6886 case Intrinsic::vector_partial_reduce_add: {
6890 unsigned VecWidth = VecTy->getElementCount().getKnownMinValue();
6891 unsigned AccWidth = AccTy->getElementCount().getKnownMinValue();
6893 Check((VecWidth % AccWidth) == 0,
6894 "Invalid vector widths for partial "
6895 "reduction. The width of the input vector "
6896 "must be a positive integer multiple of "
6897 "the width of the accumulator vector.");
6900 case Intrinsic::experimental_noalias_scope_decl: {
6904 case Intrinsic::preserve_array_access_index:
6905 case Intrinsic::preserve_struct_access_index:
6906 case Intrinsic::aarch64_ldaxr:
6907 case Intrinsic::aarch64_ldxr:
6908 case Intrinsic::arm_ldaex:
6909 case Intrinsic::arm_ldrex: {
6911 Check(ElemTy,
"Intrinsic requires elementtype attribute on first argument.",
6915 case Intrinsic::aarch64_stlxr:
6916 case Intrinsic::aarch64_stxr:
6917 case Intrinsic::arm_stlex:
6918 case Intrinsic::arm_strex: {
6921 "Intrinsic requires elementtype attribute on second argument.",
6925 case Intrinsic::aarch64_prefetch: {
6927 "write argument to llvm.aarch64.prefetch must be 0 or 1",
Call);
6929 "target argument to llvm.aarch64.prefetch must be 0-3",
Call);
6931 "stream argument to llvm.aarch64.prefetch must be 0 or 1",
Call);
6933 "isdata argument to llvm.aarch64.prefetch must be 0 or 1",
Call);
6936 case Intrinsic::aarch64_range_prefetch: {
6938 "write argument to llvm.aarch64.range.prefetch must be 0 or 1",
Call);
6940 "stream argument to llvm.aarch64.range.prefetch must be 0 or 1",
6944 case Intrinsic::callbr_landingpad: {
6946 Check(CBR,
"intrinstic requires callbr operand", &
Call);
6953 CheckFailed(
"Intrinsic in block must have 1 unique predecessor", &
Call);
6957 CheckFailed(
"Intrinsic must have corresponding callbr in predecessor",
6962 "Intrinsic's corresponding callbr must have intrinsic's parent basic "
6963 "block in indirect destination list",
6966 Check(&
First == &
Call,
"No other instructions may proceed intrinsic",
6970 case Intrinsic::structured_gep: {
6976 "Intrinsic first parameter is missing an ElementType attribute",
6984 "Index operand type must be an integer", &
Call);
6987 T = AT->getElementType();
6989 Check(CI,
"Indexing into a struct requires a constant int", &
Call);
6991 "Indexing in a struct should be inbounds", &
Call);
6994 T = VT->getElementType();
6996 CheckFailed(
"Reached a non-composite type with more indices to process",
7002 case Intrinsic::structured_alloca:
7004 "@llvm.structured.alloca calls require elementtype attribute.",
7007 case Intrinsic::nvvm_setmaxnreg_inc_sync_aligned_u32:
7008 case Intrinsic::nvvm_setmaxnreg_dec_sync_aligned_u32: {
7011 Check(RegCount % 8 == 0,
7012 "reg_count argument to nvvm.setmaxnreg must be in multiples of 8");
7015 case Intrinsic::experimental_convergence_entry:
7016 case Intrinsic::experimental_convergence_anchor:
7018 case Intrinsic::experimental_convergence_loop:
7020 case Intrinsic::ptrmask: {
7024 "llvm.ptrmask intrinsic first argument must be pointer or vector "
7029 "llvm.ptrmask intrinsic arguments must be both scalars or both vectors",
7034 "llvm.ptrmask intrinsic arguments must have the same number of "
7038 "llvm.ptrmask intrinsic second argument bitwidth must match "
7039 "pointer index type size of first argument",
7043 case Intrinsic::thread_pointer: {
7045 DL.getDefaultGlobalsAddressSpace(),
7046 "llvm.thread.pointer intrinsic return type must be for the globals "
7051 case Intrinsic::threadlocal_address: {
7054 "llvm.threadlocal.address first argument must be a GlobalValue");
7056 "llvm.threadlocal.address operand isThreadLocal() must be true");
7059 case Intrinsic::lifetime_start:
7060 case Intrinsic::lifetime_end: {
7064 (
II &&
II->getIntrinsicID() == Intrinsic::structured_alloca),
7065 "llvm.lifetime.start/end can only be used on alloca or poison",
7069 case Intrinsic::sponentry: {
7070 const unsigned StackAS =
DL.getAllocaAddrSpace();
7073 "llvm.sponentry must return a pointer to the stack", &
Call);
7076 case Intrinsic::write_volatile_register: {
7080 "llvm.write_volatile_register metadata must be a single MDString",
7084 case Intrinsic::ptrauth_auth_with_pc_and_resign: {
7087 uint64_t
Key = AuthKey->getZExtValue();
7089 "ptrauth.auth.with.pc.and.resign key must be IA (0) or IB (1)",
7098 if (
F->hasPersonalityFn() &&
7102 if (BlockEHFuncletColors.
empty())
7106 bool InEHFunclet =
false;
7110 for (BasicBlock *ColorFirstBB : CV)
7111 if (
auto It = ColorFirstBB->getFirstNonPHIIt();
7112 It != ColorFirstBB->end())
7117 bool HasToken =
false;
7124 Check(HasToken,
"Missing funclet token on intrinsic call", &
Call);
7151void Verifier::visit(DbgLabelRecord &DLR) {
7153 "invalid #dbg_label intrinsic variable", &DLR, DLR.
getRawLabel());
7166 CheckDI(Loc,
"#dbg_label record requires a !dbg attachment", &DLR, BB,
F);
7170 if (!LabelSP || !LocSP)
7174 "mismatched subprogram between #dbg_label label and !dbg attachment",
7175 &DLR, BB,
F, Label,
Label->getScope()->getSubprogram(), Loc,
7176 Loc->getScope()->getSubprogram());
7179void Verifier::visit(DbgVariableRecord &DVR) {
7183 CheckDI(DVR.
getType() == DbgVariableRecord::LocationType::Value ||
7184 DVR.
getType() == DbgVariableRecord::LocationType::Declare ||
7185 DVR.
getType() == DbgVariableRecord::LocationType::DeclareValue ||
7186 DVR.
getType() == DbgVariableRecord::LocationType::Assign,
7187 "invalid #dbg record type", &DVR, DVR.
getType(), BB,
F);
7195 "invalid #dbg record address/value", &DVR, MD, BB,
F);
7197 visitValueAsMetadata(*VAM,
F);
7200 Type *Ty = VAM->getValue()->getType();
7202 "location of #dbg_declare must be a pointer or int", &DVR, MD, BB,
7206 visitDIArgList(*AL,
F);
7220 "invalid #dbg_assign DIAssignID", &DVR, DVR.
getRawAssignID(), BB,
7223 AreDebugLocsAllowed::No);
7232 "invalid #dbg_assign address", &DVR, DVR.
getRawAddress(), BB,
F);
7234 visitValueAsMetadata(*VAM,
F);
7237 "invalid #dbg_assign address expression", &DVR,
7244 "inst not in same function as #dbg_assign",
I, &DVR, BB,
F);
7254 &DVR, DLNode, BB,
F);
7260 if (!VarSP || !LocSP)
7264 "mismatched subprogram between #dbg record variable and DILocation",
7266 Loc->getScope()->getSubprogram(), BB,
F);
7271void Verifier::visitVPIntrinsic(VPIntrinsic &VPI) {
7275 Check(RetTy->getElementCount() == ValTy->getElementCount(),
7276 "VP cast intrinsic first argument and result vector lengths must be "
7280 switch (VPCast->getIntrinsicID()) {
7281 case Intrinsic::vp_trunc:
7283 "llvm.vp.trunc intrinsic the bit size of first argument must be "
7284 "larger than the bit size of the return type",
7287 case Intrinsic::vp_zext:
7288 case Intrinsic::vp_sext:
7290 "llvm.vp.zext or llvm.vp.sext intrinsic the bit size of first "
7291 "argument must be smaller than the bit size of the return type",
7294 case Intrinsic::vp_fptrunc:
7296 "llvm.vp.fptrunc intrinsic the bit size of first argument must be "
7297 "larger than the bit size of the return type",
7300 case Intrinsic::vp_fpext:
7302 "llvm.vp.fpext intrinsic the bit size of first argument must be "
7303 "smaller than the bit size of the return type",
7312 case Intrinsic::vp_fcmp: {
7315 "invalid predicate for VP FP comparison intrinsic", &VPI);
7318 case Intrinsic::vp_icmp: {
7321 "invalid predicate for VP integer comparison intrinsic", &VPI);
7324 case Intrinsic::vp_is_fpclass: {
7327 "unsupported bits for llvm.vp.is.fpclass test mask");
7330 case Intrinsic::experimental_vp_splice: {
7333 int64_t KnownMinNumElements = VecTy->getElementCount().getKnownMinValue();
7335 AttributeList
Attrs = VPI.
getParent()->getParent()->getAttributes();
7336 if (
Attrs.hasFnAttr(Attribute::VScaleRange))
7337 KnownMinNumElements *=
Attrs.getFnAttrs().getVScaleRangeMin();
7339 Check((Idx < 0 && std::abs(Idx) <= KnownMinNumElements) ||
7340 (Idx >= 0 && Idx < KnownMinNumElements),
7341 "The splice index exceeds the range [-VL, VL-1] where VL is the "
7342 "known minimum number of elements in the vector. For scalable "
7343 "vectors the minimum number of elements is determined from "
7351void Verifier::visitConstrainedFPIntrinsic(ConstrainedFPIntrinsic &FPI) {
7353 bool HasRoundingMD =
7357 NumOperands += (1 + HasRoundingMD);
7363 "invalid arguments for constrained FP intrinsic", &FPI);
7366 case Intrinsic::experimental_constrained_fcmp:
7367 case Intrinsic::experimental_constrained_fcmps: {
7370 "invalid predicate for constrained FP comparison intrinsic", &FPI);
7374 case Intrinsic::experimental_constrained_fptosi:
7375 case Intrinsic::experimental_constrained_fptoui: {
7379 "Intrinsic first argument must be floating point", &FPI);
7386 "Intrinsic first argument and result disagree on vector use", &FPI);
7388 "Intrinsic result must be an integer", &FPI);
7391 "Intrinsic first argument and result vector lengths must be equal",
7397 case Intrinsic::experimental_constrained_sitofp:
7398 case Intrinsic::experimental_constrained_uitofp: {
7402 "Intrinsic first argument must be integer", &FPI);
7409 "Intrinsic first argument and result disagree on vector use", &FPI);
7411 "Intrinsic result must be a floating point", &FPI);
7414 "Intrinsic first argument and result vector lengths must be equal",
7420 case Intrinsic::experimental_constrained_fptrunc:
7421 case Intrinsic::experimental_constrained_fpext: {
7427 "Intrinsic first argument must be FP or FP vector", &FPI);
7429 "Intrinsic result must be FP or FP vector", &FPI);
7431 "Intrinsic first argument and result disagree on vector use", &FPI);
7435 "Intrinsic first argument and result vector lengths must be equal",
7438 if (FPI.
getIntrinsicID() == Intrinsic::experimental_constrained_fptrunc) {
7440 "Intrinsic first argument's type must be larger than result type",
7444 "Intrinsic first argument's type must be smaller than result type",
7460 "invalid exception behavior argument", &FPI);
7461 if (HasRoundingMD) {
7467void Verifier::verifyFragmentExpression(
const DbgVariableRecord &DVR) {
7472 if (!V || !
E || !
E->isValid())
7476 auto Fragment =
E->getFragmentInfo();
7486 if (
V->isArtificial())
7489 verifyFragmentExpression(*V, *Fragment, &DVR);
7492template <
typename ValueOrMetadata>
7493void Verifier::verifyFragmentExpression(
const DIVariable &V,
7495 ValueOrMetadata *
Desc) {
7498 auto VarSize =
V.getSizeInBits();
7504 CheckDI(FragSize + FragOffset <= *VarSize,
7505 "fragment is larger than or outside of variable",
Desc, &V);
7506 CheckDI(FragSize != *VarSize,
"fragment covers entire variable",
Desc, &V);
7509void Verifier::verifyFnArgs(
const DbgVariableRecord &DVR) {
7521 CheckDI(Var,
"#dbg record without variable");
7523 unsigned ArgNo = Var->
getArg();
7529 if (DebugFnArgs.
size() < ArgNo)
7530 DebugFnArgs.
resize(ArgNo,
nullptr);
7532 auto *Prev = DebugFnArgs[ArgNo - 1];
7533 DebugFnArgs[ArgNo - 1] = Var;
7534 CheckDI(!Prev || (Prev == Var),
"conflicting debug info for argument", &DVR,
7538void Verifier::verifyNotEntryValue(
const DbgVariableRecord &DVR) {
7542 if (!
E || !
E->isValid())
7552 ArgLoc && ArgLoc->hasAttribute(Attribute::SwiftAsync))
7557 "Entry values are only allowed in MIR unless they target a "
7558 "swiftasync Argument",
7562void Verifier::verifyCompileUnits() {
7566 if (
M.getContext().isODRUniquingDebugTypes())
7568 auto *CUs =
M.getNamedMetadata(
"llvm.dbg.cu");
7569 SmallPtrSet<const Metadata *, 2> Listed;
7572 for (
const auto *CU : CUVisited)
7573 CheckDI(Listed.
count(CU),
"DICompileUnit not listed in llvm.dbg.cu", CU);
7577void Verifier::verifyDeoptimizeCallingConvs() {
7578 if (DeoptimizeDeclarations.
empty())
7582 for (
const auto *
F :
ArrayRef(DeoptimizeDeclarations).slice(1)) {
7583 Check(
First->getCallingConv() ==
F->getCallingConv(),
7584 "All llvm.experimental.deoptimize declarations must have the same "
7585 "calling convention",
7590void Verifier::verifyAttachedCallBundle(
const CallBase &
Call,
7591 const OperandBundleUse &BU) {
7594 Check((FTy->getReturnType()->isPointerTy() ||
7596 "a call with operand bundle \"clang.arc.attachedcall\" must call a "
7597 "function returning a pointer or a non-returning function that has a "
7602 "operand bundle \"clang.arc.attachedcall\" requires one function as "
7610 Check((IID == Intrinsic::objc_retainAutoreleasedReturnValue ||
7611 IID == Intrinsic::objc_claimAutoreleasedReturnValue ||
7612 IID == Intrinsic::objc_unsafeClaimAutoreleasedReturnValue),
7613 "invalid function argument",
Call);
7615 StringRef FnName = Fn->getName();
7616 Check((FnName ==
"objc_retainAutoreleasedReturnValue" ||
7617 FnName ==
"objc_claimAutoreleasedReturnValue" ||
7618 FnName ==
"objc_unsafeClaimAutoreleasedReturnValue"),
7619 "invalid function argument",
Call);
7623void Verifier::verifyNoAliasScopeDecl() {
7624 if (NoAliasScopeDecls.
empty())
7628 for (
auto *
II : NoAliasScopeDecls) {
7629 assert(
II->getIntrinsicID() == Intrinsic::experimental_noalias_scope_decl &&
7630 "Not a llvm.experimental.noalias.scope.decl ?");
7633 Check(ScopeListMV !=
nullptr,
7634 "llvm.experimental.noalias.scope.decl must have a MetadataAsValue "
7639 Check(ScopeListMD !=
nullptr,
"!id.scope.list must point to an MDNode",
II);
7640 Check(ScopeListMD->getNumOperands() == 1,
7641 "!id.scope.list must point to a list with a single scope",
II);
7642 visitAliasScopeListMetadata(ScopeListMD);
7652 auto GetScope = [](IntrinsicInst *
II) {
7655 return &
cast<MDNode>(ScopeListMV->getMetadata())->getOperand(0);
7660 auto Compare = [GetScope](IntrinsicInst *Lhs, IntrinsicInst *Rhs) {
7661 return GetScope(Lhs) < GetScope(Rhs);
7668 auto ItCurrent = NoAliasScopeDecls.begin();
7669 while (ItCurrent != NoAliasScopeDecls.end()) {
7670 auto CurScope = GetScope(*ItCurrent);
7671 auto ItNext = ItCurrent;
7674 }
while (ItNext != NoAliasScopeDecls.end() &&
7675 GetScope(*ItNext) == CurScope);
7680 if (ItNext - ItCurrent < 32)
7684 Check(!DT.dominates(
I, J),
7685 "llvm.experimental.noalias.scope.decl dominates another one "
7686 "with the same scope",
7700 Verifier V(OS,
true, *f.getParent());
7704 return !V.verify(
F);
7708 bool *BrokenDebugInfo) {
7710 Verifier V(OS, !BrokenDebugInfo, M);
7712 bool Broken =
false;
7714 Broken |= !V.verify(
F);
7716 Broken |= !V.verify();
7717 if (BrokenDebugInfo)
7718 *BrokenDebugInfo = V.hasBrokenDebugInfo();
7729 std::unique_ptr<Verifier> V;
7730 bool FatalErrors =
true;
7733 explicit VerifierLegacyPass(
bool FatalErrors)
7734 : FunctionPass(
ID), FatalErrors(FatalErrors) {}
7736 bool doInitialization(
Module &M)
override {
7737 V = std::make_unique<Verifier>(
7743 if (!
V->verify(
F) && FatalErrors) {
7744 errs() <<
"in function " <<
F.getName() <<
'\n';
7750 bool doFinalization(
Module &M)
override {
7751 bool HasErrors =
false;
7752 for (Function &
F : M)
7753 if (
F.isDeclaration())
7754 HasErrors |= !
V->verify(
F);
7756 HasErrors |= !
V->verify();
7757 if (FatalErrors && (HasErrors ||
V->hasBrokenDebugInfo()))
7762 void getAnalysisUsage(AnalysisUsage &AU)
const override {
7770template <
typename... Tys>
void TBAAVerifier::CheckFailed(Tys &&... Args) {
7772 return Diagnostic->CheckFailed(
Args...);
7775#define CheckTBAA(C, ...) \
7778 CheckFailed(__VA_ARGS__); \
7786TBAAVerifier::TBAABaseNodeSummary
7790 CheckFailed(
"Base nodes must have at least two operands",
I, BaseNode);
7794 auto Itr = TBAABaseNodes.find(BaseNode);
7795 if (Itr != TBAABaseNodes.end())
7798 auto Result = verifyTBAABaseNodeImpl(
I, BaseNode, IsNewFormat);
7799 auto InsertResult = TBAABaseNodes.insert({BaseNode, Result});
7801 assert(InsertResult.second &&
"We just checked!");
7805TBAAVerifier::TBAABaseNodeSummary
7806TBAAVerifier::verifyTBAABaseNodeImpl(
const Instruction *
I,
7807 const MDNode *BaseNode,
bool IsNewFormat) {
7808 const TBAAVerifier::TBAABaseNodeSummary InvalidNode = {
true, ~0
u};
7812 return isValidScalarTBAANode(BaseNode)
7813 ? TBAAVerifier::TBAABaseNodeSummary({
false, 0})
7819 CheckFailed(
"Access tag nodes must have the number of operands that is a "
7820 "multiple of 3!", BaseNode);
7825 CheckFailed(
"Struct tag nodes must have an odd number of operands!",
7835 if (!TypeSizeNode) {
7836 CheckFailed(
"Type size nodes must be constants!",
I, BaseNode);
7843 CheckFailed(
"Struct tag nodes have a string as their first operand",
7850 std::optional<APInt> PrevOffset;
7855 unsigned FirstFieldOpNo = IsNewFormat ? 3 : 1;
7856 unsigned NumOpsPerField = IsNewFormat ? 3 : 2;
7857 for (
unsigned Idx = FirstFieldOpNo; Idx < BaseNode->
getNumOperands();
7858 Idx += NumOpsPerField) {
7859 const MDOperand &FieldTy = BaseNode->
getOperand(Idx);
7860 const MDOperand &FieldOffset = BaseNode->
getOperand(Idx + 1);
7862 CheckFailed(
"Incorrect field entry in struct type node!",
I, BaseNode);
7867 auto *OffsetEntryCI =
7869 if (!OffsetEntryCI) {
7870 CheckFailed(
"Offset entries must be constants!",
I, BaseNode);
7876 BitWidth = OffsetEntryCI->getBitWidth();
7878 if (OffsetEntryCI->getBitWidth() !=
BitWidth) {
7880 "Bitwidth between the offsets and struct type entries must match",
I,
7892 !PrevOffset || PrevOffset->ule(OffsetEntryCI->getValue());
7895 CheckFailed(
"Offsets must be increasing!",
I, BaseNode);
7899 PrevOffset = OffsetEntryCI->getValue();
7904 if (!MemberSizeNode) {
7905 CheckFailed(
"Member size entries must be constants!",
I, BaseNode);
7912 return Failed ? InvalidNode
7913 : TBAAVerifier::TBAABaseNodeSummary(
false,
BitWidth);
7935 return Parent && Visited.
insert(Parent).second &&
7939bool TBAAVerifier::isValidScalarTBAANode(
const MDNode *MD) {
7940 auto ResultIt = TBAAScalarNodes.find(MD);
7941 if (ResultIt != TBAAScalarNodes.end())
7942 return ResultIt->second;
7944 SmallPtrSet<const MDNode *, 4> Visited;
7946 auto InsertResult = TBAAScalarNodes.insert({MD,
Result});
7948 assert(InsertResult.second &&
"Just checked!");
7957MDNode *TBAAVerifier::getFieldNodeFromTBAABaseNode(
const Instruction *
I,
7958 const MDNode *BaseNode,
7969 unsigned FirstFieldOpNo = IsNewFormat ? 3 : 1;
7970 unsigned NumOpsPerField = IsNewFormat ? 3 : 2;
7971 for (
unsigned Idx = FirstFieldOpNo; Idx < BaseNode->
getNumOperands();
7972 Idx += NumOpsPerField) {
7973 auto *OffsetEntryCI =
7975 if (OffsetEntryCI->getValue().ugt(
Offset)) {
7976 if (Idx == FirstFieldOpNo) {
7977 CheckFailed(
"Could not find TBAA parent in struct type node",
I,
7982 unsigned PrevIdx = Idx - NumOpsPerField;
7983 auto *PrevOffsetEntryCI =
7985 Offset -= PrevOffsetEntryCI->getValue();
7993 Offset -= LastOffsetEntryCI->getValue();
7998 if (!
Type ||
Type->getNumOperands() < 3)
8014 "This instruction shall not have a TBAA access tag!",
I);
8016 bool IsStructPathTBAA =
8020 "Old-style TBAA is no longer allowed, use struct-path TBAA instead",
8030 "Access tag metadata must have either 4 or 5 operands",
I, MD);
8033 "Struct tag metadata must have either 3 or 4 operands",
I, MD);
8040 CheckTBAA(AccessSizeNode,
"Access size field must be a constant",
I, MD);
8044 unsigned ImmutabilityFlagOpNo = IsNewFormat ? 4 : 3;
8049 "Immutability tag on struct tag metadata must be a constant",
I,
8052 IsImmutableCI->isZero() || IsImmutableCI->isOne(),
8053 "Immutability part of the struct tag metadata must be either 0 or 1",
I,
8058 "Malformed struct tag metadata: base and access-type "
8059 "should be non-null and point to Metadata nodes",
8060 I, MD, BaseNode, AccessType);
8063 CheckTBAA(isValidScalarTBAANode(AccessType),
8064 "Access type node must be a valid scalar type",
I, MD,
8069 CheckTBAA(OffsetCI,
"Offset must be constant integer",
I, MD);
8072 bool SeenAccessTypeInPath =
false;
8078 getFieldNodeFromTBAABaseNode(
I, BaseNode,
Offset, IsNewFormat)) {
8079 if (!StructPath.
insert(BaseNode).second) {
8080 CheckFailed(
"Cycle detected in struct path",
I, MD);
8085 unsigned BaseNodeBitWidth;
8086 std::tie(
Invalid, BaseNodeBitWidth) =
8087 verifyTBAABaseNode(
I, BaseNode, IsNewFormat);
8094 SeenAccessTypeInPath |= BaseNode == AccessType;
8096 if (isValidScalarTBAANode(BaseNode) || BaseNode == AccessType)
8101 (BaseNodeBitWidth == 0 &&
Offset == 0) ||
8102 (IsNewFormat && BaseNodeBitWidth == ~0u),
8103 "Access bit-width not the same as description bit-width",
I, MD,
8104 BaseNodeBitWidth,
Offset.getBitWidth());
8106 if (IsNewFormat && SeenAccessTypeInPath)
8110 CheckTBAA(SeenAccessTypeInPath,
"Did not see access type in access path!",
I,
8115char VerifierLegacyPass::ID = 0;
8116INITIALIZE_PASS(VerifierLegacyPass,
"verify",
"Module Verifier",
false,
false)
8119 return new VerifierLegacyPass(FatalErrors);
8137 if (FatalErrors && (Res.IRBroken || Res.DebugInfoBroken))
8145 if (res.IRBroken && FatalErrors)
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
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< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
This file contains the declarations for the subclasses of Constant, which represent the different fla...
This file declares the LLVM IR specialization of the GenericConvergenceVerifier template.
static DISubprogram * getSubprogram(bool IsDistinct, Ts &&...Args)
This file defines the DenseMap class.
This file contains constants used for implementing Dwarf debug support.
static bool runOnFunction(Function &F, bool PostInlining)
This file contains the declarations of entities that describe floating point environment and related ...
This file provides various utilities for inspecting and working with the control flow graph in LLVM I...
Module.h This file contains the declarations for the Module class.
This header defines various interfaces for pass management in LLVM.
This defines the Use class.
static constexpr Value * getValue(Ty &ValueOrUse)
const size_t AbstractManglingParser< Derived, Alloc >::NumOps
Machine Check Debug Module
This file implements a map that provides insertion order iteration.
This file provides utility for Memory Model Relaxation Annotations (MMRAs).
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
uint64_t IntrinsicInst * II
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
This file contains the declarations for profiling metadata utility functions.
const SmallVectorImpl< MachineOperand > & Cond
static void visit(BasicBlock &Start, std::function< bool(BasicBlock *)> op)
verify safepoint Safepoint IR Verifier
BaseType
A given derived pointer can have multiple base pointers through phi/selects.
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
static unsigned getBitWidth(Type *Ty, const DataLayout &DL)
Returns the bitwidth of the given scalar or pointer type.
static bool IsScalarTBAANodeImpl(const MDNode *MD, SmallPtrSetImpl< const MDNode * > &Visited)
static bool isType(const Metadata *MD)
static Instruction * getSuccPad(Instruction *Terminator)
static bool isMDTuple(const Metadata *MD)
static bool isNewFormatTBAATypeNode(llvm::MDNode *Type)
#define CheckDI(C,...)
We know that a debug info condition should be true, if not print an error message.
static void forEachUser(const Value *User, SmallPtrSet< const Value *, 32 > &Visited, llvm::function_ref< bool(const Value *)> Callback)
static bool isDINode(const Metadata *MD)
static bool isSupportedCallBrIntrinsic(Intrinsic::ID ID)
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 IsRootTBAANode(const MDNode *MD)
static Value * getParentPad(Value *EHPad)
static bool hasConflictingReferenceFlags(unsigned Flags)
Detect mutually exclusive flags.
static AttrBuilder getParameterABIAttributes(LLVMContext &C, unsigned I, AttributeList Attrs)
static const char PassName[]
static LLVM_ABI bool isValidArbitraryFPFormat(StringRef Format)
Returns true if the given string is a valid arbitrary floating-point format interpretation for llvm....
static LLVM_ABI unsigned getArbitraryFPFormatSizeInBits(StringRef Format)
Returns the size in bits of a valid arbitrary floating-point format string, or 0 if the string is not...
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.
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.
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.
bool isElementwise() const
Return true if this RMW has elementwise vector semantics.
static bool isFPOperation(BinOp Op)
BinOp getOperation() const
static LLVM_ABI StringRef getOperationName(BinOp Op)
AtomicOrdering getOrdering() const
Returns the ordering constraint of this rmw instruction.
bool contains(Attribute::AttrKind A) const
Return true if the builder has the specified attribute.
LLVM_ABI bool hasAttribute(Attribute::AttrKind Kind) const
Return true if the attribute exists in this set.
Functions, function parameters, and return types can have attributes to indicate how they should be t...
LLVM_ABI const ConstantRange & getValueAsConstantRange() const
Return the attribute's value as a ConstantRange.
LLVM_ABI StringRef getValueAsString() const
Return the attribute's value as a string.
AttrKind
This enumeration lists the attributes that can be associated with parameters, function results,...
bool isValid() const
Return true if the attribute is any kind of attribute.
LLVM_ABI Type * getValueAsType() const
Return the attribute's value as a Type.
LLVM Basic Block Representation.
iterator begin()
Instruction iterator methods.
iterator_range< const_phi_iterator > phis() const
Returns a range that iterates over the phis in the basic block.
const Function * getParent() const
Return the enclosing method, or null if none.
LLVM_ABI InstListType::const_iterator getFirstNonPHIIt() const
Returns an iterator to the first instruction in this block that is not a PHINode instruction.
LLVM_ABI bool isEntryBlock() const
Return true if this is the entry block of the containing function.
const Instruction & front() const
LLVM_ABI const BasicBlock * getUniquePredecessor() const
Return the predecessor of this block if it has a unique predecessor block.
InstListType::iterator iterator
Instruction iterators...
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction; assumes that the block is well-formed.
This class represents a no-op cast from one type to another.
static LLVM_ABI BlockAddress * lookup(const BasicBlock *BB)
Lookup an existing BlockAddress constant for the given BasicBlock.
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
bool isInlineAsm() const
Check if this call is an inline asm statement.
auto operand_bundles() const
bool hasInAllocaArgument() const
Determine if there are is an inalloca argument.
OperandBundleUse getOperandBundleAt(unsigned Index) const
Return the operand bundle at a specific index.
Function * getCalledFunction() const
Returns the function called, or null if this is an indirect function invocation or the function signa...
bool doesNotAccessMemory(unsigned OpNo) const
bool hasFnAttr(Attribute::AttrKind Kind) const
Determine whether this call has the given attribute.
bool hasRetAttr(Attribute::AttrKind Kind) const
Determine whether the return value has the given attribute.
unsigned getNumOperandBundles() const
Return the number of operand bundles associated with this User.
CallingConv::ID getCallingConv() const
LLVM_ABI bool paramHasAttr(unsigned ArgNo, Attribute::AttrKind Kind) const
Determine whether the argument or parameter has the given attribute.
Attribute getParamAttr(unsigned ArgNo, Attribute::AttrKind Kind) const
Get the attribute of a given kind from a given arg.
unsigned countOperandBundlesOfType(StringRef Name) const
Return the number of operand bundles with the tag Name attached to this instruction.
bool onlyReadsMemory(unsigned OpNo) const
Value * getCalledOperand() const
Type * getParamElementType(unsigned ArgNo) const
Extract the elementtype type for a parameter.
Value * getArgOperand(unsigned i) const
FunctionType * getFunctionType() const
LLVM_ABI Intrinsic::ID getIntrinsicID() const
Returns the intrinsic ID of the intrinsic called or Intrinsic::not_intrinsic if the called function i...
iterator_range< User::op_iterator > args()
Iteration adapter for range-for loops.
bool doesNotReturn() const
Determine if the call cannot return.
LLVM_ABI bool onlyAccessesArgMemory() const
Determine if the call can access memmory only using pointers based on its arguments.
unsigned arg_size() const
AttributeList getAttributes() const
Return the attributes for this call.
bool hasOperandBundles() const
Return true if this User has any operand bundles.
LLVM_ABI Function * getCaller()
Helper to get the caller (the parent function).
bool isMustTailCall() const
static LLVM_ABI bool castIsValid(Instruction::CastOps op, Type *SrcTy, Type *DstTy)
This method can be used to determine if a cast from SrcTy to DstTy using Opcode op is valid or not.
unsigned getNumHandlers() const
return the number of 'handlers' in this catchswitch instruction, except the default handler
Value * getParentPad() const
BasicBlock * getUnwindDest() const
handler_range handlers()
iteration adapter for range-for loops.
BasicBlock * getUnwindDest() const
bool isFPPredicate() const
bool isIntPredicate() const
static bool isIntPredicate(Predicate P)
Value * getCondition() const
unsigned getBitWidth() const
getBitWidth - Return the scalar bitwidth of this constant.
uint64_t getZExtValue() const
Return the constant as a 64-bit unsigned integer value after it has been zero extended as appropriate...
const APInt & getValue() const
Return the constant as an APInt value reference.
Constant * getAddrDiscriminator() const
The address discriminator if any, or the null constant.
Constant * getPointer() const
The pointer that is signed in this ptrauth signed pointer.
ConstantInt * getKey() const
The Key ID, an i32 constant.
Constant * getDeactivationSymbol() const
ConstantInt * getDiscriminator() const
The integer discriminator, an i64 constant, or 0.
static LLVM_ABI bool isOrderedRanges(ArrayRef< ConstantRange > RangesRef)
This class represents a range of values.
LLVM_ABI bool contains(const APInt &Val) const
Return true if the specified value is in the set.
uint32_t getBitWidth() const
Get the bit width of this ConstantRange.
static LLVM_ABI ConstantTokenNone * get(LLVMContext &Context)
Return the ConstantTokenNone.
bool isNullValue() const
Return true if this is the value that would be returned by getNullValue.
LLVM_ABI std::optional< fp::ExceptionBehavior > getExceptionBehavior() const
LLVM_ABI std::optional< RoundingMode > getRoundingMode() const
LLVM_ABI unsigned getNonMetadataArgCount() const
DbgVariableFragmentInfo FragmentInfo
@ FixedPointBinary
Scale factor 2^Factor.
@ FixedPointDecimal
Scale factor 10^Factor.
@ FixedPointRational
Arbitrary rational scale factor.
DIGlobalVariable * getVariable() const
DIExpression * getExpression() const
LLVM_ABI DISubprogram * getSubprogram() const
Get the subprogram for this scope.
DILocalScope * getScope() const
Get the local scope for this variable.
Metadata * getRawScope() const
Base class for scope-like contexts.
Subprogram description. Uses SubclassData1.
static LLVM_ABI const DIScope * getRawRetainedNodeScope(const MDNode *N)
Base class for template parameters.
Base class for variables.
Metadata * getRawType() const
Metadata * getRawScope() const
uint64_t getNumOperands() const
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.
DebugLoc getDebugLoc() const
LLVM_ABI BasicBlock * getParent()
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
DIExpression * getAddressExpression() const
LLVM_ABI MDNode * getAsMDNode() const
Return this as a bar MDNode.
ValueT lookup(const_arg_type_t< KeyT > Val) const
Return the entry for the specified key, or a default constructed value if no such entry exists.
iterator find(const_arg_type_t< KeyT > Val)
std::pair< iterator, bool > insert(const std::pair< KeyT, ValueT > &KV)
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
This instruction compares its operands according to the predicate given to the constructor.
This class represents an extension of floating point types.
static bool isSupportedFloatingPointType(Type *Ty)
Returns true if Ty is a supported floating-point type for phi, select, or call FPMathOperators.
This class represents a cast from floating point to signed integer.
This class represents a cast from floating point to unsigned integer.
This class represents a truncation of floating point types.
AtomicOrdering getOrdering() const
Returns the ordering constraint of this fence instruction.
op_range arg_operands()
arg_operands - iteration adapter for range-for loops.
Value * getParentPad() const
Convenience accessors.
FunctionPass class - This class is used to implement most global optimizations.
Type * getReturnType() const
FunctionType * getFunctionType() const
Returns the FunctionType for me.
DISubprogram * getSubprogram() const
Get the attached subprogram.
bool hasPersonalityFn() const
Check whether this function has a personality function.
const Function & getFunction() const
const std::string & getGC() const
Type * getReturnType() const
Returns the type of the ret val.
bool isVarArg() const
isVarArg - Return true if this function takes a variable number of arguments.
LLVM_ABI Value * getBasePtr() const
LLVM_ABI Value * getDerivedPtr() const
void visit(const BlockT &BB)
static LLVM_ABI Type * getIndexedType(Type *Ty, ArrayRef< Value * > IdxList)
Returns the result type of a getelementptr with the given source element type and indexes.
static bool isValidLinkage(LinkageTypes L)
const Constant * getAliasee() const
LLVM_ABI const Function * getResolverFunction() const
static bool isValidLinkage(LinkageTypes L)
const Constant * getResolver() const
LLVM_ABI void getAllMetadata(SmallVectorImpl< std::pair< unsigned, MDNode * > > &MDs) const
Appends all metadata attached to this value to MDs, sorting by KindID.
MDNode * getMetadata(unsigned KindID) const
Get the metadata of given kind attached to this GlobalObject.
bool hasExternalLinkage() const
bool isImplicitDSOLocal() const
LLVM_ABI bool isDeclaration() const
Return true if the primary definition of this global value is outside of the current translation unit...
bool hasValidDeclarationLinkage() const
LinkageTypes getLinkage() const
bool hasDefaultVisibility() const
bool hasPrivateLinkage() const
bool hasHiddenVisibility() const
bool hasExternalWeakLinkage() const
bool hasDLLImportStorageClass() const
bool hasDLLExportStorageClass() const
bool isDeclarationForLinker() const
unsigned getAddressSpace() const
Module * getParent()
Get the module that this global value is contained inside of...
PointerType * getType() const
Global values are always pointers.
bool hasCommonLinkage() const
bool hasGlobalUnnamedAddr() const
bool hasAppendingLinkage() const
bool hasAvailableExternallyLinkage() const
Type * getValueType() const
LLVM_ABI bool isInterposable(bool CheckNoIPA=true) const
Return true if this global's definition can be substituted with an arbitrary definition at link time ...
const Constant * getInitializer() const
getInitializer - Return the initializer for this global variable.
bool hasInitializer() const
Definitions have initializers, declarations don't.
MaybeAlign getAlign() const
Returns the alignment of the given variable.
LLVM_ABI uint64_t getGlobalSize(const DataLayout &DL) const
Get the size of this global variable in bytes.
bool isConstant() const
If the value is a global constant, its value is immutable throughout the runtime execution of the pro...
bool hasDefinitiveInitializer() const
hasDefinitiveInitializer - Whether the global variable has an initializer, and any other instances of...
This instruction compares its operands according to the predicate given to the constructor.
BasicBlock * getDestination(unsigned i)
Return the specified destination.
unsigned getNumDestinations() const
return the number of possible destinations in this indirectbr instruction.
unsigned getNumSuccessors() const
This instruction inserts a single (scalar) element into a VectorType value.
static LLVM_ABI bool isValidOperands(const Value *Vec, const Value *NewElt, const Value *Idx)
Return true if an insertelement instruction can be formed with the specified operands.
Value * getAggregateOperand()
ArrayRef< unsigned > getIndices() const
Base class for instruction visitors.
void visit(Iterator Start, Iterator End)
LLVM_ABI unsigned getNumSuccessors() const LLVM_READONLY
Return the number of successors that this instruction has.
const DebugLoc & getDebugLoc() const
Return the debug location for this node as a DebugLoc.
LLVM_ABI const Module * getModule() const
Return the module owning the function this instruction belongs to or nullptr it the function does not...
LLVM_ABI bool isAtomic() const LLVM_READONLY
Return true if this instruction has an AtomicOrdering of unordered or higher.
LLVM_ABI const Function * getFunction() const
Return the function this instruction belongs to.
This class represents a cast from an integer to a pointer.
static LLVM_ABI bool mayLowerToFunctionCall(Intrinsic::ID IID)
Check if the intrinsic might lower into a regular function call in the course of IR transformations.
Intrinsic::ID getIntrinsicID() const
Return the intrinsic ID of this intrinsic.
This is an important class for using LLVM in a threaded context.
@ OB_clang_arc_attachedcall
bool isCleanup() const
Return 'true' if this landingpad instruction is a cleanup.
unsigned getNumClauses() const
Get the number of clauses for this landing pad.
bool isCatch(unsigned Idx) const
Return 'true' if the clause and index Idx is a catch clause.
bool isFilter(unsigned Idx) const
Return 'true' if the clause and index Idx is a filter clause.
Constant * getClause(unsigned Idx) const
Get the value of the clause at index Idx.
AtomicOrdering getOrdering() const
Returns the ordering constraint of this load instruction.
SyncScope::ID getSyncScopeID() const
Returns the synchronization scope ID of this load instruction.
bool isElementwise() const
Return true if this is an elementwise atomic load.
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.
A Module instance is used to store all the information related to an LLVM module.
Metadata * getModuleFlag(StringRef Key) const
Return the corresponding value if Key appears in module flags, otherwise return null.
LLVM_ABI StringRef getName() const
LLVM_ABI unsigned getNumOperands() const
iterator_range< op_iterator > operands()
op_range incoming_values()
A set of analyses that are preserved following a run of a transformation pass.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
This class represents a cast from a pointer to an address (non-capturing ptrtoint).
This class represents a cast from a pointer to an integer.
Value * getValue() const
Convenience accessor.
Value * getReturnValue() const
Convenience accessor. Returns null if there is no return value.
This class represents a sign extension of integer types.
This class represents a cast from signed integer to floating point.
static LLVM_ABI const char * areInvalidOperands(Value *Cond, Value *True, Value *False)
Return a string if the specified operands are invalid for a select operation, otherwise return null.
This instruction constructs a fixed permutation of two input vectors.
static LLVM_ABI bool isValidOperands(const Value *V1, const Value *V2, const Value *Mask)
Return true if a shufflevector instruction can be formed with the specified operands.
static LLVM_ABI void getShuffleMask(const Constant *Mask, SmallVectorImpl< int > &Result)
Convert the input shuffle mask operand to a vector of integers.
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
size_type count(ConstPtrType Ptr) const
count - Return 1 if the specified pointer is in the set, 0 otherwise.
void insert_range(Range &&R)
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
iterator insert(iterator I, T &&Elt)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
std::pair< StringRef, StringRef > split(char Separator) const
Split into two substrings around the first occurrence of a separator character.
static constexpr size_t npos
bool getAsInteger(unsigned Radix, T &Result) const
Parse the current string as an integer of the specified radix.
bool starts_with(StringRef Prefix) const
Check if this string starts with the given Prefix.
constexpr bool empty() const
Check if the string is empty.
std::pair< typename Base::iterator, bool > insert(StringRef key)
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,...
This class represents a truncation of integer types.
The instances of the Type class are immutable: once they are created, they are never changed.
LLVM_ABI unsigned getIntegerBitWidth() const
bool isByteTy() const
True if this is an instance of ByteType.
bool isVectorTy() const
True if this is an instance of VectorType.
LLVM_ABI bool containsNonGlobalTargetExtType(SmallPtrSetImpl< const Type * > &Visited) const
Return true if this type is or contains a target extension type that disallows being used as a global...
LLVM_ABI bool containsNonLocalTargetExtType(SmallPtrSetImpl< const Type * > &Visited) const
Return true if this type is or contains a target extension type that disallows being used as a local.
LLVM_ABI bool isScalableTy(SmallPtrSetImpl< const Type * > &Visited) const
Return true if this is a type whose size is a known multiple of vscale.
bool isLabelTy() const
Return true if this is 'label'.
bool isIntOrIntVectorTy() const
Return true if this is an integer type or a vector of integer types.
bool isPointerTy() const
True if this is an instance of PointerType.
LLVM_ABI bool isTokenLikeTy() const
Returns true if this is 'token' or a token-like target type.s.
LLVM_ABI unsigned getPointerAddressSpace() const
Get the address space of this pointer or pointer vector type.
bool isSingleValueType() const
Return true if the type is a valid type for a register in codegen.
LLVM_ABI bool canLosslesslyBitCastTo(Type *Ty) const
Return true if this type could be converted with a lossless BitCast to type 'Ty'.
Type * getScalarType() const
If this is a vector type, return the element type, otherwise return 'this'.
bool isSized(SmallPtrSetImpl< Type * > *Visited=nullptr) const
Return true if it makes sense to take the size of this type.
LLVM_ABI unsigned getScalarSizeInBits() const LLVM_READONLY
If this is a vector type, return the getPrimitiveSizeInBits value for the element type.
bool isFloatingPointTy() const
Return true if this is one of the floating-point types.
bool isPtrOrPtrVectorTy() const
Return true if this is a pointer type or a vector of pointer types.
bool isIntOrPtrTy() const
Return true if this is an integer type or a pointer type.
bool isIntegerTy() const
True if this is an instance of IntegerType.
bool isFPOrFPVectorTy() const
Return true if this is a FP type or a vector of FP.
bool isVoidTy() const
Return true if this is 'void'.
bool isMetadataTy() const
Return true if this is 'metadata'.
This class represents a cast unsigned integer to floating point.
Value * getOperand(unsigned i) const
unsigned getNumOperands() const
This class represents the va_arg llvm instruction, which returns an argument of the specified type gi...
LLVM Value Representation.
iterator_range< user_iterator > materialized_users()
Type * getType() const
All values are typed, get the type of this value.
LLVM_ABI const Value * stripPointerCastsAndAliases() const
Strip off pointer casts, all-zero GEPs, address space casts, and aliases.
LLVMContext & getContext() const
All values hold a context through their type.
LLVM_ABI const Value * stripInBoundsOffsets(function_ref< void(const Value *)> Func=[](const Value *) {}) const
Strip off pointer casts and inbounds GEPs.
iterator_range< user_iterator > users()
bool materialized_use_empty() const
LLVM_ABI const Value * stripPointerCasts() const
Strip off pointer casts, all-zero GEPs and address space casts.
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
Check a module for errors, and report separate error states for IR and debug info errors.
LLVM_ABI Result run(Module &M, ModuleAnalysisManager &)
LLVM_ABI PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM)
This class represents zero extension of integer types.
std::pair< iterator, bool > insert(const ValueT &V)
constexpr bool isNonZero() const
constexpr bool isScalable() const
Returns whether the quantity is scaled by a runtime quantity (vscale).
constexpr ScalarTy getKnownMinValue() const
Returns the minimum value this quantity can represent.
An efficient, type-erasing, non-owning reference to a callable.
const ParentTy * getParent() const
NodeTy * getNextNode()
Get the next node, or nullptr for the list tail.
This class implements an extremely fast bulk output stream that can only output to a stream.
This file contains the declaration of the Comdat class, which represents a single COMDAT in LLVM.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
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.
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.
std::optional< ABIType > parseABIType(StringRef S)
Parse the string spelling used by the "float-abi" IR module flag into an ABIType.
@ BasicBlock
Various leaf nodes.
LLVM_ABI bool hasConstrainedFPRoundingModeOperand(ID QID)
Returns true if the intrinsic ID is for one of the "ConstrainedFloating-Point Intrinsics" that take r...
LLVM_ABI StringRef getName(ID id)
Return the LLVM name for an intrinsic, such as "llvm.ppc.altivec.lvx".
static const int NoAliasScopeDeclScopeArg
LLVM_ABI bool isSignatureValid(Intrinsic::ID ID, FunctionType *FT, SmallVectorImpl< Type * > &OverloadTys, raw_ostream &OS=nulls())
Returns true if FT is a valid function type for intrinsic ID.
std::variant< std::monostate, Loc::Single, Loc::Multi, Loc::MMI, Loc::EntryValue > Variant
Alias for the std::variant specialization base class of DbgVariable.
Flag
These should be considered private to the implementation of the MCInstrDesc class.
@ System
Synchronized with respect to all concurrently executing threads.
LLVM_ABI std::optional< VFInfo > tryDemangleForVFABI(StringRef MangledName, const FunctionType *FTy)
Function to construct a VFInfo out of a mangled names in the following format:
@ CE
Windows NT (Windows on ARM)
LLVM_ABI AssignmentInstRange getAssignmentInsts(DIAssignID *ID)
Return a range of instructions (typically just one) that have ID as an attachment.
initializer< Ty > init(const Ty &Val)
@ DW_LLVM_LANG_DIALECT_max
Scope
Defines the scope in which this symbol should be visible: Default – Visible in the public interface o...
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > dyn_extract_or_null(Y &&MD)
Extract a Value from Metadata, if any, allowing null.
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > extract_or_null(Y &&MD)
Extract a Value from Metadata, allowing null.
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > dyn_extract(Y &&MD)
Extract a Value from Metadata, if any.
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > extract(Y &&MD)
Extract a Value from Metadata.
@ User
could "use" a pointer
NodeAddr< UseNode * > Use
NodeAddr< NodeBase * > Node
friend class Instruction
Iterator for Instructions in a `BasicBlock.
unsigned getNumElements(Type *Ty)
This is an optimization pass for GlobalISel generic memory operations.
std::optional< LongDoubleFormat > parseLongDoubleFormat(StringRef Name)
Parses an IR floating-point type name into a LongDoubleFormat, returning std::nullopt if it does not ...
@ Low
Lower the current thread's priority such that it does not affect foreground tasks significantly.
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)
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.
RelativeUniformCounterPtr Values
BundleAttr getBundleAttrFromOBU(OperandBundleUse OBU)
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
LLVM_ABI bool verifyFunction(const Function &F, raw_ostream *OS=nullptr)
Check a function for errors, useful for use when debugging a pass.
testing::Matcher< const detail::ErrorHolder & > Failed()
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
LLVM_ABI DenseMap< BasicBlock *, ColorVector > colorEHFunclets(Function &F)
If an EH funclet personality is in use (see isFuncletEHPersonality), this will recompute which blocks...
constexpr bool isUIntN(unsigned N, uint64_t x)
Checks if an unsigned integer fits into the given (dynamic) bit width.
void verifyAMDGPUAlloca(VerifierSupport &VS, const AllocaInst &AI)
constexpr bool isPowerOf2_64(uint64_t Value)
Return true if the argument is a power of two > 0 (64 bit edition.)
gep_type_iterator gep_type_end(const User *GEP)
bool isa_and_nonnull(const Y &Val)
bool isScopedEHPersonality(EHPersonality Pers)
Returns true if this personality uses scope-style EH IR instructions: catchswitch,...
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Value
void verifyAMDGPUFunctionMetadata(VerifierSupport &VS, const Function &F)
auto dyn_cast_or_null(const Y &Val)
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
auto formatv(bool Validate, const char *Fmt, Ts &&...Vals)
GenericConvergenceVerifier< SSAContext > ConvergenceVerifier
constexpr bool isPowerOf2_32(uint32_t Value)
Return true if the argument is a power of two > 0.
bool isModSet(const ModRefInfo MRI)
void sort(IteratorTy Start, IteratorTy End)
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
void verifyAMDGPUIntrinsicCall(VerifierSupport &VS, Intrinsic::ID ID, CallBase &Call)
bool isPointerTy(const Type *T)
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
generic_gep_type_iterator<> gep_type_iterator
LLVM_ABI EHPersonality classifyEHPersonality(const Value *Pers)
See if the given exception handling personality function is one that we understand.
iterator_range< SplittingIterator > split(StringRef Str, StringRef Separator)
Split the specified string over a separator and return a range-compatible iterable over its partition...
constexpr BooleanLoopTags OldBooleanLoopTags[]
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
LLVM_ABI bool isValueProfileMD(const MDNode *ProfileData)
Checks if an MDNode contains value profiling Metadata.
LLVM_ATTRIBUTE_VISIBILITY_DEFAULT AnalysisKey InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key
LLVM_ABI raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
LLVM_ABI unsigned getNumBranchWeights(const MDNode &ProfileData)
AtomicOrdering
Atomic ordering for LLVM's memory model.
@ First
Helpers to iterate all locations in the MemoryEffectsBase class.
LLVM_ABI FunctionPass * createVerifierPass(bool FatalErrors=true)
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Count
DWARFExpression::Operation Op
ArrayRef(const T &OneElt) -> ArrayRef< T >
constexpr unsigned BitWidth
TinyPtrVector< BasicBlock * > ColorVector
LLVM_ABI const char * LLVMLoopEstimatedTripCount
Profile-based loop metadata that should be accessed only by using llvm::getLoopEstimatedTripCount and...
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
LLVM_ABI std::optional< RoundingMode > convertStrToRoundingMode(StringRef)
Returns a valid RoundingMode enumerator when given a string that is valid as input in constrained int...
gep_type_iterator gep_type_begin(const User *GEP)
LLVM_ABI std::unique_ptr< GCStrategy > getGCStrategy(const StringRef Name)
Lookup the GCStrategy object associated with the given gc name.
auto predecessors(const MachineBasicBlock *BB)
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Next
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.
void verifyAMDGPUModuleFlag(VerifierSupport &VS, const MDString *ID, Module::ModFlagBehavior MFB, const MDNode *Op)
bool isAMDGPUCallBrIntrinsic(Intrinsic::ID ID)
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.