99#include "llvm/IR/IntrinsicsAArch64.h"
100#include "llvm/IR/IntrinsicsARM.h"
101#include "llvm/IR/IntrinsicsNVPTX.h"
102#include "llvm/IR/IntrinsicsRISCV.h"
103#include "llvm/IR/IntrinsicsWebAssembly.h"
147 cl::desc(
"Ensure that llvm.experimental.noalias.scope.decl for identical "
148 "scopes are not dominating"));
177 Type *LandingPadResultTy;
184 bool HasDebugInfo =
false;
227 SawFrameEscape(
false), TBAAVerifyHelper(this) {
228 TreatBrokenDebugInfoAsError = ShouldTreatBrokenDebugInfoAsError;
231 bool hasBrokenDebugInfo()
const {
return BrokenDebugInfo; }
234 llvm::TimeTraceScope timeScope(
"Verifier");
236 "An instance of this class only works with a specific module!");
246 for (
const BasicBlock &BB :
F) {
247 if (!BB.empty() && BB.back().isTerminator())
251 *OS <<
"Basic Block in function '" <<
F.getName()
252 <<
"' does not have terminator!\n";
253 BB.printAsOperand(*OS,
true, MST);
261 DT.recalculate(
const_cast<Function &
>(
F));
263 auto FailureCB = [
this](
const Twine &Message) {
264 this->CheckFailed(Message);
266 ConvergenceVerifyHelper.initialize(OS, FailureCB,
F);
271 verifySiblingFuncletUnwinds();
273 if (ConvergenceVerifyHelper.sawTokens())
274 ConvergenceVerifyHelper.verify(DT);
276 InstsInThisBlock.clear();
278 DIScopeChainReachesCycle.clear();
279 LandingPadResultTy =
nullptr;
280 SawFrameEscape =
false;
281 SiblingFuncletInfo.clear();
282 verifyNoAliasScopeDecl();
283 NoAliasScopeDecls.clear();
294 if (
F.getIntrinsicID() == Intrinsic::experimental_deoptimize)
295 DeoptimizeDeclarations.push_back(&
F);
299 verifyFrameRecoverIndices();
300 for (
const GlobalVariable &GV :
M.globals())
301 visitGlobalVariable(GV);
303 for (
const GlobalAlias &GA :
M.aliases())
304 visitGlobalAlias(GA);
306 for (
const GlobalIFunc &GI :
M.ifuncs())
307 visitGlobalIFunc(GI);
309 for (
const NamedMDNode &NMD :
M.named_metadata())
310 visitNamedMDNode(NMD);
312 for (
const StringMapEntry<Comdat> &SMEC :
M.getComdatSymbolTable())
313 visitComdat(SMEC.getValue());
317 visitModuleCommandLines();
318 visitModuleErrnoTBAA();
320 verifyCompileUnits();
322 verifyDeoptimizeCallingConvs();
323 DISubprogramAttachments.clear();
324 DIScopeChainReachesCycle.clear();
330 enum class AreDebugLocsAllowed {
No,
Yes };
334 enum class RangeLikeMetadataKind {
341 void visitGlobalValue(
const GlobalValue &GV);
342 void visitGlobalVariable(
const GlobalVariable &GV);
343 void visitGlobalAlias(
const GlobalAlias &GA);
344 void visitGlobalIFunc(
const GlobalIFunc &GI);
345 void visitAliaseeSubExpr(
const GlobalAlias &
A,
const Constant &
C);
346 void visitAliaseeSubExpr(SmallPtrSetImpl<const GlobalAlias *> &Visited,
347 const GlobalAlias &
A,
const Constant &
C);
348 void visitNamedMDNode(
const NamedMDNode &NMD);
349 void visitMDNode(
const MDNode &MD, AreDebugLocsAllowed AllowLocs);
350 void visitMetadataAsValue(
const MetadataAsValue &MD,
Function *
F);
351 void visitValueAsMetadata(
const ValueAsMetadata &MD,
Function *
F);
352 void visitDIArgList(
const DIArgList &AL,
Function *
F);
353 void visitComdat(
const Comdat &
C);
354 void visitModuleIdents();
355 void visitModuleCommandLines();
356 void visitModuleErrnoTBAA();
357 void visitModuleFlags();
358 void visitModuleFlag(
const MDNode *
Op,
359 DenseMap<const MDString *, const MDNode *> &SeenIDs,
360 SmallVectorImpl<const MDNode *> &Requirements);
361 void visitModuleFlagCGProfileEntry(
const MDOperand &MDO);
363 void visitBasicBlock(BasicBlock &BB);
364 void verifyRangeLikeMetadata(
const Value &V,
const MDNode *
Range,
Type *Ty,
365 RangeLikeMetadataKind Kind);
366 void visitRangeMetadata(Instruction &
I, MDNode *
Range,
Type *Ty);
367 void visitNoFPClassMetadata(Instruction &
I, MDNode *
Range,
Type *Ty);
368 void visitNoaliasAddrspaceMetadata(Instruction &
I, MDNode *
Range,
Type *Ty);
369 void visitDereferenceableMetadata(Instruction &
I, MDNode *MD);
370 void visitNoFreeObjMetadata(Instruction &
I, MDNode *MD);
371 void visitProfMetadata(Instruction &
I, MDNode *MD);
372 void visitCallStackMetadata(MDNode *MD);
373 void visitMemProfMetadata(Instruction &
I, MDNode *MD);
374 void visitCallsiteMetadata(Instruction &
I, MDNode *MD);
375 void visitCalleeTypeMetadata(Instruction &
I, MDNode *MD);
376 void visitDIAssignIDMetadata(Instruction &
I, MDNode *MD);
377 void visitMMRAMetadata(Instruction &
I, MDNode *MD);
378 void visitAnnotationMetadata(MDNode *Annotation);
379 void visitAliasScopeMetadata(
const MDNode *MD);
380 void visitAliasScopeListMetadata(
const MDNode *MD);
381 void visitAccessGroupMetadata(
const MDNode *MD);
382 void visitCapturesMetadata(Instruction &
I,
const MDNode *Captures);
383 void visitAllocTokenMetadata(Instruction &
I, MDNode *MD);
384 void visitInlineHistoryMetadata(Instruction &
I, MDNode *MD);
385 void visitMemCacheHintMetadata(Instruction &
I, MDNode *MD);
387#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) void visit##CLASS(const CLASS &N);
388#include "llvm/IR/Metadata.def"
389 void visitDIType(
const DIType &
N);
390 void visitDIScope(
const DIScope &
N);
391 void visitDIScopeChain(
const DIScope &
N);
392 bool hasDIScopeCycle(
const Metadata *S);
417 void checkPtrToAddr(
Type *SrcTy,
Type *DestTy,
const Value &V);
422 void visitPHINode(
PHINode &PN);
431 void visitVAArgInst(
VAArgInst &VAA) { visitInstruction(VAA); }
432 void visitCallInst(CallInst &CI);
433 void visitInvokeInst(InvokeInst &
II);
434 void visitGetElementPtrInst(GetElementPtrInst &
GEP);
435 void visitLoadInst(LoadInst &LI);
436 void visitStoreInst(StoreInst &SI);
437 void verifyDominatesUse(Instruction &
I,
unsigned i);
438 void visitInstruction(Instruction &
I);
439 void visitTerminator(Instruction &
I);
440 void visitCondBrInst(CondBrInst &BI);
441 void visitReturnInst(ReturnInst &RI);
442 void visitSwitchInst(SwitchInst &SI);
443 void visitIndirectBrInst(IndirectBrInst &BI);
444 void visitCallBrInst(CallBrInst &CBI);
445 void visitSelectInst(SelectInst &SI);
446 void visitUserOp1(Instruction &
I);
447 void visitUserOp2(Instruction &
I) { visitUserOp1(
I); }
449 void visitConstrainedFPIntrinsic(ConstrainedFPIntrinsic &FPI);
450 void visitVPIntrinsic(VPIntrinsic &VPI);
451 void visitDbgLabelIntrinsic(StringRef Kind, DbgLabelInst &DLI);
452 void visitAtomicCmpXchgInst(AtomicCmpXchgInst &CXI);
453 void visitAtomicRMWInst(AtomicRMWInst &RMWI);
454 void visitFenceInst(FenceInst &FI);
455 void visitAllocaInst(AllocaInst &AI);
456 void visitExtractValueInst(ExtractValueInst &EVI);
457 void visitInsertValueInst(InsertValueInst &IVI);
458 void visitEHPadPredecessors(Instruction &
I);
459 void visitLandingPadInst(LandingPadInst &LPI);
460 void visitResumeInst(ResumeInst &RI);
461 void visitCatchPadInst(CatchPadInst &CPI);
462 void visitCatchReturnInst(CatchReturnInst &CatchReturn);
463 void visitCleanupPadInst(CleanupPadInst &CPI);
464 void visitFuncletPadInst(FuncletPadInst &FPI);
465 void visitCatchSwitchInst(CatchSwitchInst &CatchSwitch);
466 void visitCleanupReturnInst(CleanupReturnInst &CRI);
468 void verifySwiftErrorCall(CallBase &
Call,
const Value *SwiftErrorVal);
469 void verifySwiftErrorValue(
const Value *SwiftErrorVal);
470 void verifyTailCCMustTailAttrs(
const AttrBuilder &Attrs, StringRef
Context);
471 void verifyMustTailCall(CallInst &CI);
472 bool verifyAttributeCount(AttributeList Attrs,
unsigned Params);
473 void verifyAttributeTypes(AttributeSet Attrs,
const Value *V);
474 void verifyParameterAttrs(AttributeSet Attrs,
Type *Ty,
const Value *V);
475 void checkUnsignedBaseTenFuncAttr(AttributeList Attrs, StringRef Attr,
477 void verifyFunctionAttrs(FunctionType *FT, AttributeList Attrs,
478 const Value *V,
bool IsIntrinsic,
bool IsInlineAsm);
479 void verifyFunctionMetadata(
ArrayRef<std::pair<unsigned, MDNode *>> MDs);
480 void verifyUnknownProfileMetadata(MDNode *MD);
481 void visitConstantExprsRecursively(
const Constant *EntryC);
482 void visitConstantExpr(
const ConstantExpr *CE);
483 void visitConstantPtrAuth(
const ConstantPtrAuth *CPA);
484 void verifyInlineAsmCall(
const CallBase &
Call);
485 void verifyStatepoint(
const CallBase &
Call);
486 void verifyFrameRecoverIndices();
487 void verifySiblingFuncletUnwinds();
489 void verifyFragmentExpression(
const DbgVariableRecord &
I);
490 template <
typename ValueOrMetadata>
491 void verifyFragmentExpression(
const DIVariable &V,
493 ValueOrMetadata *
Desc);
494 void verifyFnArgs(
const DbgVariableRecord &DVR);
495 void verifyNotEntryValue(
const DbgVariableRecord &
I);
498 void verifyCompileUnits();
502 void verifyDeoptimizeCallingConvs();
504 void verifyAttachedCallBundle(
const CallBase &
Call,
505 const OperandBundleUse &BU);
508 void verifyNoAliasScopeDecl();
514#define Check(C, ...) \
517 CheckFailed(__VA_ARGS__); \
524#define CheckDI(C, ...) \
527 DebugInfoCheckFailed(__VA_ARGS__); \
533 if (!
I.getDbgMarker())
535 CheckDI(
I.getDbgMarker()->MarkedInstr == &
I,
536 "Instruction has invalid DebugMarker", &
I);
538 "PHI Node must not have any attached DbgRecords", &
I);
540 CheckDI(DR.getMarker() ==
I.getDbgMarker(),
541 "DbgRecord had invalid DebugMarker", &
I, &DR);
544 visitMDNode(*
Loc, AreDebugLocsAllowed::Yes);
549 verifyFragmentExpression(*DVR);
550 verifyNotEntryValue(*DVR);
557void Verifier::visit(Instruction &
I) {
559 for (
unsigned i = 0, e =
I.getNumOperands(); i != e; ++i)
560 Check(
I.getOperand(i) !=
nullptr,
"Operand is null", &
I);
572 while (!WorkList.
empty()) {
574 if (!Visited.
insert(Cur).second)
581void Verifier::visitGlobalValue(
const GlobalValue &GV) {
583 "Global is external, but doesn't have external or weak linkage!", &GV);
586 if (
const MDNode *Associated =
587 GO->getMetadata(LLVMContext::MD_associated)) {
588 Check(Associated->getNumOperands() == 1,
589 "associated metadata must have one operand", &GV, Associated);
590 const Metadata *
Op = Associated->getOperand(0).get();
591 Check(
Op,
"associated metadata must have a global value", GO, Associated);
594 Check(VM,
"associated metadata must be ValueAsMetadata", GO, Associated);
597 "associated value must be pointer typed", GV, Associated);
599 const Value *Stripped = VM->getValue()->stripPointerCastsAndAliases();
601 "associated metadata must point to a GlobalObject", GO, Stripped);
602 Check(Stripped != GO,
603 "global values should not associate to themselves", GO,
609 if (
const MDNode *AbsoluteSymbol =
610 GO->getMetadata(LLVMContext::MD_absolute_symbol)) {
611 verifyRangeLikeMetadata(*GO, AbsoluteSymbol,
612 DL.getIntPtrType(GO->getType()),
613 RangeLikeMetadataKind::AbsoluteSymbol);
616 if (GO->hasMetadata(LLVMContext::MD_implicit_ref)) {
617 Check(!GO->isDeclaration(),
618 "ref metadata must not be placed on a declaration", GO);
621 GO->getMetadata(LLVMContext::MD_implicit_ref, MDs);
622 for (
const MDNode *MD : MDs) {
623 Check(MD->getNumOperands() == 1,
"ref metadata must have one operand",
627 Check(VM,
"ref metadata must be ValueAsMetadata", GO, MD);
630 "ref value must be pointer typed", GV, MD);
634 "ref metadata must point to a GlobalObject", GO, Stripped);
635 Check(Stripped != GO,
"values should not reference themselves", GO,
641 if (
auto *Props = GO->getMetadata(LLVMContext::MD_elf_section_properties)) {
642 Check(Props->getNumOperands() == 2,
643 "elf_section_properties metadata must have two operands", GO,
645 if (Props->getNumOperands() == 2) {
647 Check(
Type,
"type field must be ConstantAsMetadata", GO, Props);
649 Check(TypeInt,
"type field must be ConstantInt", GO, Props);
652 Check(Entsize,
"entsize field must be ConstantAsMetadata", GO, Props);
654 Check(EntsizeInt,
"entsize field must be ConstantInt", GO, Props);
660 "Only global variables can have appending linkage!", &GV);
664 Check(GVar && GVar->getValueType()->isArrayTy(),
665 "Only global arrays can have appending linkage!", GVar);
669 Check(!GV.
hasComdat(),
"Declaration may not be in a Comdat!", &GV);
673 "dllexport GlobalValue must have default or protected visibility",
678 "dllimport GlobalValue must have default visibility", &GV);
679 Check(!GV.
isDSOLocal(),
"GlobalValue with DLLImport Storage is dso_local!",
685 "Global is marked as dllimport, but not external", &GV);
690 "GlobalValue with local linkage or non-default "
691 "visibility must be dso_local!",
696 if (!
I->getParent() || !
I->getParent()->getParent())
697 CheckFailed(
"Global is referenced by parentless instruction!", &GV, &M,
699 else if (
I->getParent()->getParent()->getParent() != &M)
700 CheckFailed(
"Global is referenced in a different module!", &GV, &M,
I,
701 I->getParent()->getParent(),
702 I->getParent()->getParent()->getParent());
705 if (
F->getParent() != &M)
706 CheckFailed(
"Global is used by function in a different module", &GV, &M,
714void Verifier::visitGlobalVariable(
const GlobalVariable &GV) {
722 Check(
A->value() <= Value::MaximumAlignment,
723 "huge alignment values are unsupported", &GV);
728 "Global variable initializer type does not match global "
732 "Global variable initializer must be sized", &GV);
738 "'common' global must have a zero initializer!", &GV);
741 Check(!GV.
hasComdat(),
"'common' global may not be in a Comdat!", &GV);
746 GV.
getName() ==
"llvm.global_dtors")) {
748 "invalid linkage for intrinsic global variable", &GV);
750 "invalid uses of intrinsic global variable", &GV);
757 PointerType::get(
Context,
DL.getProgramAddressSpace());
758 Check(STy && (STy->getNumElements() == 2 || STy->getNumElements() == 3) &&
759 STy->getTypeAtIndex(0u)->isIntegerTy(32) &&
760 STy->getTypeAtIndex(1) == FuncPtrTy,
761 "wrong type for intrinsic global variable", &GV);
762 Check(STy->getNumElements() == 3,
763 "the third field of the element type is mandatory, "
764 "specify ptr null to migrate from the obsoleted 2-field form");
765 Type *ETy = STy->getTypeAtIndex(2);
774 for (
const Use &U : Init->operands()) {
776 if (!Structor || Structor->getNumOperands() != 3)
779 "signing of ctors/dtors should be requested via module flags");
785 GV.
getName() ==
"llvm.compiler.used")) {
787 "invalid linkage for intrinsic global variable", &GV);
789 "invalid uses of intrinsic global variable", &GV);
793 Check(PTy,
"wrong type for intrinsic global variable", &GV);
797 Check(InitArray,
"wrong initializer for intrinsic global variable",
799 for (
Value *
Op : InitArray->operands()) {
803 Twine(
"invalid ") + GV.
getName() +
" member", V);
805 Twine(
"members of ") + GV.
getName() +
" must be named", V);
814 for (MDNode *MD : MDs) {
816 visitDIGlobalVariableExpression(*GVE);
818 CheckDI(
false,
"!dbg attachment of global variable must be a "
819 "DIGlobalVariableExpression");
829 "Global @" + GV.
getName() +
" has illegal target extension type",
838 "Global variable is too large to fit into the address space", &GV,
842 visitGlobalValue(GV);
849 visitGlobalValue(GV);
852void Verifier::visitAliaseeSubExpr(
const GlobalAlias &GA,
const Constant &
C) {
853 SmallPtrSet<const GlobalAlias*, 4> Visited;
855 visitAliaseeSubExpr(Visited, GA,
C);
858void Verifier::visitAliaseeSubExpr(SmallPtrSetImpl<const GlobalAlias*> &Visited,
859 const GlobalAlias &GA,
const Constant &
C) {
863 "available_externally alias must point to available_externally "
874 Check(Visited.
insert(GA2).second,
"Aliases cannot form a cycle", &GA);
876 Check(!GA2->isInterposable(),
877 "Alias cannot point to an interposable alias", &GA);
886 visitConstantExprsRecursively(CE);
888 for (
const Use &U :
C.operands()) {
891 visitAliaseeSubExpr(Visited, GA, *GA2->getAliasee());
893 visitAliaseeSubExpr(Visited, GA, *C2);
897void Verifier::visitGlobalAlias(
const GlobalAlias &GA) {
899 "Alias should have private, internal, linkonce, weak, linkonce_odr, "
900 "weak_odr, external, or available_externally linkage!",
903 Check(Aliasee,
"Aliasee cannot be NULL!", &GA);
905 "Alias and aliasee types should match!", &GA);
908 "Aliasee should be either GlobalValue or ConstantExpr", &GA);
910 visitAliaseeSubExpr(GA, *Aliasee);
912 visitGlobalValue(GA);
915void Verifier::visitGlobalIFunc(
const GlobalIFunc &GI) {
916 visitGlobalValue(GI);
920 for (
const auto &
I : MDs) {
921 CheckDI(
I.first != LLVMContext::MD_dbg,
922 "an ifunc may not have a !dbg attachment", &GI);
923 Check(
I.first != LLVMContext::MD_prof,
924 "an ifunc may not have a !prof attachment", &GI);
925 visitMDNode(*
I.second, AreDebugLocsAllowed::No);
929 "IFunc should have private, internal, linkonce, weak, linkonce_odr, "
930 "weak_odr, or external linkage!",
935 Check(Resolver,
"IFunc must have a Function resolver", &GI);
937 "IFunc resolver must be a definition", &GI);
944 "IFunc resolver must return a pointer", &GI);
947 "IFunc resolver has incorrect type", &GI);
950void Verifier::visitNamedMDNode(
const NamedMDNode &NMD) {
955 "unrecognized named metadata node in the llvm.dbg namespace", &NMD);
956 for (
const MDNode *MD : NMD.
operands()) {
957 if (NMD.
getName() ==
"llvm.dbg.cu")
963 visitMDNode(*MD, AreDebugLocsAllowed::Yes);
974 return T->getRawScope();
976 return SP->getRawScope();
978 return LB->getRawScope();
980 return NS->getRawScope();
982 return CB->getRawScope();
984 return M->getRawScope();
989bool Verifier::hasDIScopeCycle(
const Metadata *S) {
990 SmallPtrSet<const Metadata *, 8> Seen;
991 auto CacheSeen = [&](
bool HasCycle) {
993 DIScopeChainReachesCycle[
M] = HasCycle;
998 auto It = DIScopeChainReachesCycle.
find(Scope);
999 bool IsInCache = It != DIScopeChainReachesCycle.
end();
1001 return CacheSeen(It->second);
1002 bool AlreadySeen = !Seen.
insert(Scope).second;
1004 return CacheSeen(
true);
1010 return CacheSeen(
false);
1013void Verifier::visitDIScopeChain(
const DIScope &
N) {
1014 CheckDI(!hasDIScopeCycle(&
N),
"DIScope scope chain must not contain a cycle",
1018void Verifier::visitMDNode(
const MDNode &BaseMD,
1019 AreDebugLocsAllowed AllowLocs) {
1022 if (!MDNodes.
insert(&BaseMD).second)
1025 std::queue<const MDNode *> Worklist;
1026 Worklist.push(&BaseMD);
1028 while (!Worklist.empty()) {
1029 const MDNode *CurrentMD = Worklist.front();
1032 "MDNode context does not match Module context!", CurrentMD);
1037 case Metadata::MDTupleKind:
1039#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) \
1040 case Metadata::CLASS##Kind: \
1041 visit##CLASS(cast<CLASS>(*CurrentMD)); \
1043#include "llvm/IR/Metadata.def"
1048 visitDIScopeChain(*S);
1056 "DILocation not allowed within this metadata node", CurrentMD,
1064 visitValueAsMetadata(*V,
nullptr);
1085 "Expected second operand to be an integer constant of type i32 or "
1097 Check(AlignMD && AlignMD->getType()->isIntegerTy(32),
1098 "Expected the alignment to be an integer constant of type i32",
1103 "Expected the alignment to be a power of two", CurrentMD);
1104 Check(Align <= Value::MaximumAlignment,
1105 "Alignment is larger than the implementation defined limit",
1117 "Expecting only the metadata name", CurrentMD);
1122 Check(CurrentMD->
isResolved(),
"All nodes should be resolved!", CurrentMD);
1126void Verifier::visitValueAsMetadata(
const ValueAsMetadata &MD,
Function *
F) {
1129 "Unexpected metadata round-trip through values", &MD, MD.
getValue());
1135 Check(
F,
"function-local metadata used outside a function", L);
1141 Check(
I->getParent(),
"function-local metadata not in basic block", L,
I);
1148 assert(ActualF &&
"Unimplemented function local metadata case!");
1150 Check(ActualF ==
F,
"function-local metadata used in wrong function", L);
1153void Verifier::visitDIArgList(
const DIArgList &AL,
Function *
F) {
1154 for (
const ValueAsMetadata *VAM :
AL.getArgs())
1155 visitValueAsMetadata(*VAM,
F);
1158void Verifier::visitMetadataAsValue(
const MetadataAsValue &MDV,
Function *
F) {
1161 visitMDNode(*
N, AreDebugLocsAllowed::No);
1167 if (!MDNodes.
insert(MD).second)
1171 visitValueAsMetadata(*V,
F);
1174 visitDIArgList(*AL,
F);
1182void Verifier::visitDILocation(
const DILocation &
N) {
1184 "location requires a valid scope", &
N,
N.getRawScope());
1185 if (
auto *IA =
N.getRawInlinedAt())
1188 CheckDI(
SP->isDefinition(),
"scope points into the type hierarchy", &
N);
1191void Verifier::visitGenericDINode(
const GenericDINode &
N) {
1195void Verifier::visitDIScope(
const DIScope &
N) {
1196 if (
auto *
F =
N.getRawFile())
1200void Verifier::visitDIType(
const DIType &
N) {
1203 CheckDI(
N.getRawFile() ||
N.getLine() == 0,
"line specified with no file", &
N,
1207void Verifier::visitDISubrangeType(
const DISubrangeType &
N) {
1210 CheckDI(
N.getTag() == dwarf::DW_TAG_subrange_type,
"invalid tag", &
N);
1213 auto *LBound =
N.getRawLowerBound();
1217 "LowerBound must be signed constant or DIVariable or DIExpression or "
1220 auto *UBound =
N.getRawUpperBound();
1224 "UpperBound must be signed constant or DIVariable or DIExpression or "
1227 auto *Stride =
N.getRawStride();
1230 "Stride must be signed constant or DIVariable or DIExpression", &
N);
1231 auto *Bias =
N.getRawBias();
1234 "Bias must be signed constant or DIVariable or DIExpression", &
N);
1236 auto *
Size =
N.getRawSizeInBits();
1238 "SizeInBits must be a constant");
1241void Verifier::visitDISubrange(
const DISubrange &
N) {
1242 CheckDI(
N.getTag() == dwarf::DW_TAG_subrange_type,
"invalid tag", &
N);
1243 CheckDI(!
N.getRawCountNode() || !
N.getRawUpperBound(),
1244 "Subrange can have any one of count or upperBound", &
N);
1245 auto *CBound =
N.getRawCountNode();
1248 "Count must be signed constant or DIVariable or DIExpression", &
N);
1249 auto Count =
N.getCount();
1252 "invalid subrange count", &
N);
1253 auto *LBound =
N.getRawLowerBound();
1256 "LowerBound must be signed constant or DIVariable or DIExpression",
1258 auto *UBound =
N.getRawUpperBound();
1261 "UpperBound must be signed constant or DIVariable or DIExpression",
1263 auto *Stride =
N.getRawStride();
1266 "Stride must be signed constant or DIVariable or DIExpression", &
N);
1269void Verifier::visitDIGenericSubrange(
const DIGenericSubrange &
N) {
1270 CheckDI(
N.getTag() == dwarf::DW_TAG_generic_subrange,
"invalid tag", &
N);
1271 CheckDI(!
N.getRawCountNode() || !
N.getRawUpperBound(),
1272 "GenericSubrange can have any one of count or upperBound", &
N);
1273 auto *CBound =
N.getRawCountNode();
1275 "Count must be signed constant or DIVariable or DIExpression", &
N);
1276 auto *LBound =
N.getRawLowerBound();
1277 CheckDI(LBound,
"GenericSubrange must contain lowerBound", &
N);
1279 "LowerBound must be signed constant or DIVariable or DIExpression",
1281 auto *UBound =
N.getRawUpperBound();
1283 "UpperBound must be signed constant or DIVariable or DIExpression",
1285 auto *Stride =
N.getRawStride();
1286 CheckDI(Stride,
"GenericSubrange must contain stride", &
N);
1288 "Stride must be signed constant or DIVariable or DIExpression", &
N);
1291void Verifier::visitDIEnumerator(
const DIEnumerator &
N) {
1292 CheckDI(
N.getTag() == dwarf::DW_TAG_enumerator,
"invalid tag", &
N);
1295void Verifier::visitDIBasicType(
const DIBasicType &
N) {
1298 CheckDI(
N.getTag() == dwarf::DW_TAG_base_type ||
1299 N.getTag() == dwarf::DW_TAG_unspecified_type ||
1300 N.getTag() == dwarf::DW_TAG_string_type,
1303 auto *
Size =
N.getRawSizeInBits();
1305 "SizeInBits must be a constant");
1308void Verifier::visitDIFixedPointType(
const DIFixedPointType &
N) {
1309 visitDIBasicType(
N);
1311 CheckDI(
N.getTag() == dwarf::DW_TAG_base_type,
"invalid tag", &
N);
1312 CheckDI(
N.getEncoding() == dwarf::DW_ATE_signed_fixed ||
1313 N.getEncoding() == dwarf::DW_ATE_unsigned_fixed,
1314 "invalid encoding", &
N);
1318 "invalid kind", &
N);
1320 N.getFactorRaw() == 0,
1321 "factor should be 0 for rationals", &
N);
1323 (
N.getNumeratorRaw() == 0 &&
N.getDenominatorRaw() == 0),
1324 "numerator and denominator should be 0 for non-rationals", &
N);
1327void Verifier::visitDIStringType(
const DIStringType &
N) {
1330 CheckDI(
N.getTag() == dwarf::DW_TAG_string_type,
"invalid tag", &
N);
1331 CheckDI(!(
N.isBigEndian() &&
N.isLittleEndian()),
"has conflicting flags",
1335void Verifier::visitDIDerivedType(
const DIDerivedType &
N) {
1339 CheckDI(
N.getTag() == dwarf::DW_TAG_typedef ||
1340 N.getTag() == dwarf::DW_TAG_pointer_type ||
1341 N.getTag() == dwarf::DW_TAG_ptr_to_member_type ||
1342 N.getTag() == dwarf::DW_TAG_reference_type ||
1343 N.getTag() == dwarf::DW_TAG_rvalue_reference_type ||
1344 N.getTag() == dwarf::DW_TAG_const_type ||
1345 N.getTag() == dwarf::DW_TAG_immutable_type ||
1346 N.getTag() == dwarf::DW_TAG_volatile_type ||
1347 N.getTag() == dwarf::DW_TAG_restrict_type ||
1348 N.getTag() == dwarf::DW_TAG_atomic_type ||
1349 N.getTag() == dwarf::DW_TAG_LLVM_ptrauth_type ||
1350 N.getTag() == dwarf::DW_TAG_member ||
1351 (
N.getTag() == dwarf::DW_TAG_variable &&
N.isStaticMember()) ||
1352 N.getTag() == dwarf::DW_TAG_inheritance ||
1353 N.getTag() == dwarf::DW_TAG_friend ||
1354 N.getTag() == dwarf::DW_TAG_set_type ||
1355 N.getTag() == dwarf::DW_TAG_template_alias,
1357 if (
N.getTag() == dwarf::DW_TAG_ptr_to_member_type) {
1358 CheckDI(
isType(
N.getRawExtraData()),
"invalid pointer to member type", &
N,
1359 N.getRawExtraData());
1360 }
else if (
N.getTag() == dwarf::DW_TAG_template_alias) {
1362 N.getRawExtraData());
1363 }
else if (
N.getTag() == dwarf::DW_TAG_inheritance ||
1364 N.getTag() == dwarf::DW_TAG_member ||
1365 N.getTag() == dwarf::DW_TAG_variable) {
1366 auto *ExtraData =
N.getRawExtraData();
1367 auto IsValidExtraData = [&]() {
1368 if (ExtraData ==
nullptr)
1374 if (
Tuple->getNumOperands() != 1)
1381 "extraData must be ConstantAsMetadata, MDString, DIObjCProperty, "
1382 "or MDTuple with single ConstantAsMetadata operand",
1386 if (
N.getTag() == dwarf::DW_TAG_set_type) {
1387 if (
auto *
T =
N.getRawBaseType()) {
1392 (Enum &&
Enum->getTag() == dwarf::DW_TAG_enumeration_type) ||
1393 (Subrange &&
Subrange->getTag() == dwarf::DW_TAG_subrange_type) ||
1394 (
Basic && (
Basic->getEncoding() == dwarf::DW_ATE_unsigned ||
1395 Basic->getEncoding() == dwarf::DW_ATE_signed ||
1396 Basic->getEncoding() == dwarf::DW_ATE_unsigned_char ||
1397 Basic->getEncoding() == dwarf::DW_ATE_signed_char ||
1398 Basic->getEncoding() == dwarf::DW_ATE_boolean)),
1399 "invalid set base type", &
N,
T);
1404 N.getRawBaseType());
1406 if (
N.getDWARFAddressSpace()) {
1407 CheckDI(
N.getTag() == dwarf::DW_TAG_pointer_type ||
1408 N.getTag() == dwarf::DW_TAG_reference_type ||
1409 N.getTag() == dwarf::DW_TAG_rvalue_reference_type,
1410 "DWARF address space only applies to pointer or reference types",
1414 auto *
Size =
N.getRawSizeInBits();
1417 "SizeInBits must be a constant or DIVariable or DIExpression");
1422 return ((Flags & DINode::FlagLValueReference) &&
1423 (Flags & DINode::FlagRValueReference)) ||
1424 ((Flags & DINode::FlagTypePassByValue) &&
1425 (Flags & DINode::FlagTypePassByReference));
1428void Verifier::visitTemplateParams(
const MDNode &
N,
const Metadata &RawParams) {
1430 CheckDI(Params,
"invalid template params", &
N, &RawParams);
1437void Verifier::visitDICompositeType(
const DICompositeType &
N) {
1441 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type ||
1442 N.getTag() == dwarf::DW_TAG_structure_type ||
1443 N.getTag() == dwarf::DW_TAG_union_type ||
1444 N.getTag() == dwarf::DW_TAG_enumeration_type ||
1445 N.getTag() == dwarf::DW_TAG_class_type ||
1446 N.getTag() == dwarf::DW_TAG_variant_part ||
1447 N.getTag() == dwarf::DW_TAG_variant ||
1448 N.getTag() == dwarf::DW_TAG_namelist,
1452 N.getRawBaseType());
1455 "invalid composite elements", &
N,
N.getRawElements());
1457 N.getRawVTableHolder());
1459 "invalid reference flags", &
N);
1460 unsigned DIBlockByRefStruct = 1 << 4;
1461 CheckDI((
N.getFlags() & DIBlockByRefStruct) == 0,
1462 "DIBlockByRefStruct on DICompositeType is no longer supported", &
N);
1464 "DISubprogram contains null entry in `elements` field", &
N);
1467 const DINodeArray
Elements =
N.getElements();
1469 Elements[0]->getTag() == dwarf::DW_TAG_subrange_type,
1470 "invalid vector, expected one element of type subrange", &
N);
1473 if (
auto *Params =
N.getRawTemplateParams())
1474 visitTemplateParams(
N, *Params);
1476 if (
auto *
D =
N.getRawDiscriminator()) {
1478 "discriminator can only appear on variant part");
1481 if (
N.getRawDataLocation()) {
1482 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1483 "dataLocation can only appear in array type");
1486 if (
N.getRawAssociated()) {
1487 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1488 "associated can only appear in array type");
1491 if (
N.getRawAllocated()) {
1492 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1493 "allocated can only appear in array type");
1496 if (
N.getRawRank()) {
1497 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1498 "rank can only appear in array type");
1501 if (
N.getTag() == dwarf::DW_TAG_array_type) {
1502 CheckDI(
N.getRawBaseType(),
"array types must have a base type", &
N);
1505 auto *
Size =
N.getRawSizeInBits();
1508 "SizeInBits must be a constant or DIVariable or DIExpression");
1511void Verifier::visitDISubroutineType(
const DISubroutineType &
N) {
1513 CheckDI(
N.getTag() == dwarf::DW_TAG_subroutine_type,
"invalid tag", &
N);
1514 if (
auto *Types =
N.getRawTypeArray()) {
1516 for (
Metadata *Ty :
N.getTypeArray()->operands()) {
1517 CheckDI(
isType(Ty),
"invalid subroutine type ref", &
N, Types, Ty);
1521 "invalid reference flags", &
N);
1524void Verifier::visitDIFile(
const DIFile &
N) {
1525 CheckDI(
N.getTag() == dwarf::DW_TAG_file_type,
"invalid tag", &
N);
1526 std::optional<DIFile::ChecksumInfo<StringRef>> Checksum =
N.getChecksum();
1528 CheckDI(Checksum->Kind <= DIFile::ChecksumKind::CSK_Last,
1529 "invalid checksum kind", &
N);
1531 switch (Checksum->Kind) {
1542 CheckDI(Checksum->Value.size() ==
Size,
"invalid checksum length", &
N);
1544 "invalid checksum", &
N);
1548void Verifier::visitDICompileUnit(
const DICompileUnit &
N) {
1549 CheckDI(
N.isDistinct(),
"compile units must be distinct", &
N);
1550 CheckDI(
N.getTag() == dwarf::DW_TAG_compile_unit,
"invalid tag", &
N);
1556 CheckDI(!
N.getFile()->getFilename().empty(),
"invalid filename", &
N,
1560 "invalid emission kind", &
N);
1563 "invalid language dialect", &
N);
1565 if (
auto *Array =
N.getRawEnumTypes()) {
1567 for (
Metadata *
Op :
N.getEnumTypes()->operands()) {
1569 CheckDI(Enum &&
Enum->getTag() == dwarf::DW_TAG_enumeration_type,
1570 "invalid enum type", &
N,
N.getEnumTypes(),
Op);
1572 "function-local enum in a DICompileUnit's enum list", &
N,
1573 N.getEnumTypes(),
Op);
1576 if (
auto *Array =
N.getRawRetainedTypes()) {
1578 for (
Metadata *
Op :
N.getRetainedTypes()->operands()) {
1582 "invalid retained type", &
N,
Op);
1585 if (
auto *Array =
N.getRawGlobalVariables()) {
1587 for (
Metadata *
Op :
N.getGlobalVariables()->operands()) {
1589 CheckDI(GVE,
"invalid global variable ref", &
N,
Op);
1591 "function-local variables are not allowed in a DICompileUnit's "
1592 "global variables list",
1596 if (
auto *Array =
N.getRawImportedEntities()) {
1598 for (
Metadata *
Op :
N.getImportedEntities()->operands()) {
1600 CheckDI(IE,
"invalid imported entity ref", &
N,
Op);
1602 "function-local imports are not allowed in a DICompileUnit's "
1603 "imported entities list",
1607 if (
auto *Array =
N.getRawMacros()) {
1616void Verifier::visitDISubprogram(
const DISubprogram &
N) {
1617 CheckDI(
N.getTag() == dwarf::DW_TAG_subprogram,
"invalid tag", &
N);
1619 if (
auto *
F =
N.getRawFile())
1622 CheckDI(
N.getLine() == 0,
"line specified with no file", &
N,
N.getLine());
1623 auto *
T =
N.getRawType();
1624 CheckDI(
T,
"DISubprogram requires a non-null type", &
N);
1626 CheckDI(
isType(
N.getRawContainingType()),
"invalid containing type", &
N,
1627 N.getRawContainingType());
1628 if (
auto *Params =
N.getRawTemplateParams())
1629 visitTemplateParams(
N, *Params);
1630 if (
auto *S =
N.getRawDeclaration())
1632 "invalid subprogram declaration", &
N, S);
1633 if (
auto *RawNode =
N.getRawRetainedNodes()) {
1635 CheckDI(Node,
"invalid retained nodes list", &
N, RawNode);
1637 DenseMap<unsigned, DILocalVariable *>
Args;
1639 CheckDI(
Op,
"nullptr in retained nodes", &
N, Node);
1641 auto True = [](
const Metadata *) {
return true; };
1642 auto False = [](
const Metadata *) {
return false; };
1643 bool IsTypeCorrect = DISubprogram::visitRetainedNode<bool>(
1644 Op, True, True, True, True, True, False);
1646 "invalid retained nodes, expected DILocalVariable, DILabel, "
1647 "DIImportedEntity, DIType or DIGlobalVariableExpression",
1654 "invalid retained nodes, retained node is not local", &
N, Node,
1657 DISubprogram *RetainedNodeSP =
getSubprogram(RetainedNodeScope);
1658 DICompileUnit *RetainedNodeUnit =
1659 RetainedNodeSP ? RetainedNodeSP->getUnit() :
nullptr;
1661 RetainedNodeSP == &
N,
1662 "invalid retained nodes, retained node does not belong to subprogram",
1663 &
N, Node, RetainedNode, RetainedNodeScope, RetainedNodeSP,
1669 if (
unsigned ArgNum = DV->getArg()) {
1671 CheckDI(Inserted || DV == ArgI->second,
1672 "invalid retained nodes, more than one local variable with the "
1673 "same argument index",
1674 &
N,
N.getUnit(), Node, RetainedNode, Args[ArgNum]);
1679 "invalid reference flags", &
N);
1681 auto *
Unit =
N.getRawUnit();
1682 if (
N.isDefinition()) {
1684 CheckDI(
N.isDistinct(),
"subprogram definitions must be distinct", &
N);
1685 CheckDI(Unit,
"subprogram definitions must have a compile unit", &
N);
1690 if (CT && CT->getRawIdentifier() &&
1691 M.getContext().isODRUniquingDebugTypes())
1693 "definition subprograms cannot be nested within DICompositeType "
1694 "when enabling ODR",
1698 CheckDI(!Unit,
"subprogram declarations must not have a compile unit", &
N);
1700 "subprogram declaration must not have a declaration field");
1703 if (
auto *RawThrownTypes =
N.getRawThrownTypes()) {
1705 CheckDI(ThrownTypes,
"invalid thrown types list", &
N, RawThrownTypes);
1711 if (
N.areAllCallsDescribed())
1713 "DIFlagAllCallsDescribed must be attached to a definition");
1716void Verifier::visitDILexicalBlockBase(
const DILexicalBlockBase &
N) {
1717 CheckDI(
N.getTag() == dwarf::DW_TAG_lexical_block,
"invalid tag", &
N);
1719 "invalid local scope", &
N,
N.getRawScope());
1721 CheckDI(
SP->isDefinition(),
"scope points into the type hierarchy", &
N);
1724void Verifier::visitDILexicalBlock(
const DILexicalBlock &
N) {
1725 visitDILexicalBlockBase(
N);
1728 "cannot have column info without line info", &
N);
1731void Verifier::visitDILexicalBlockFile(
const DILexicalBlockFile &
N) {
1732 visitDILexicalBlockBase(
N);
1735void Verifier::visitDICommonBlock(
const DICommonBlock &
N) {
1736 CheckDI(
N.getTag() == dwarf::DW_TAG_common_block,
"invalid tag", &
N);
1737 if (
auto *S =
N.getRawScope())
1739 if (
auto *S =
N.getRawDecl())
1743void Verifier::visitDINamespace(
const DINamespace &
N) {
1744 CheckDI(
N.getTag() == dwarf::DW_TAG_namespace,
"invalid tag", &
N);
1745 if (
auto *S =
N.getRawScope())
1749void Verifier::visitDIMacro(
const DIMacro &
N) {
1752 "invalid macinfo type", &
N);
1753 CheckDI(!
N.getName().empty(),
"anonymous macro", &
N);
1754 if (!
N.getValue().empty()) {
1755 assert(
N.getValue().data()[0] !=
' ' &&
"Macro value has a space prefix");
1759void Verifier::visitDIMacroFile(
const DIMacroFile &
N) {
1761 "invalid macinfo type", &
N);
1762 if (
auto *
F =
N.getRawFile())
1765 if (
auto *Array =
N.getRawElements()) {
1767 for (
Metadata *
Op :
N.getElements()->operands()) {
1773void Verifier::visitDIModule(
const DIModule &
N) {
1774 CheckDI(
N.getTag() == dwarf::DW_TAG_module,
"invalid tag", &
N);
1775 CheckDI(!
N.getName().empty(),
"anonymous module", &
N);
1778void Verifier::visitDITemplateParameter(
const DITemplateParameter &
N) {
1782void Verifier::visitDITemplateTypeParameter(
const DITemplateTypeParameter &
N) {
1783 visitDITemplateParameter(
N);
1785 CheckDI(
N.getTag() == dwarf::DW_TAG_template_type_parameter,
"invalid tag",
1789void Verifier::visitDITemplateValueParameter(
1790 const DITemplateValueParameter &
N) {
1791 visitDITemplateParameter(
N);
1793 CheckDI(
N.getTag() == dwarf::DW_TAG_template_value_parameter ||
1794 N.getTag() == dwarf::DW_TAG_GNU_template_template_param ||
1795 N.getTag() == dwarf::DW_TAG_GNU_template_parameter_pack,
1799void Verifier::visitDIVariable(
const DIVariable &
N) {
1800 if (
auto *S =
N.getRawScope())
1802 if (
auto *
F =
N.getRawFile())
1806void Verifier::visitDIGlobalVariable(
const DIGlobalVariable &
N) {
1810 CheckDI(
N.getTag() == dwarf::DW_TAG_variable,
"invalid tag", &
N);
1813 if (
N.isDefinition())
1814 CheckDI(
N.getType(),
"missing global variable type", &
N);
1815 if (
auto *Member =
N.getRawStaticDataMemberDeclaration()) {
1817 "invalid static data member declaration", &
N, Member);
1821void Verifier::visitDILocalVariable(
const DILocalVariable &
N) {
1826 CheckDI(
N.getTag() == dwarf::DW_TAG_variable,
"invalid tag", &
N);
1828 "local variable requires a valid scope", &
N,
N.getRawScope());
1829 if (
auto Ty =
N.getType())
1833void Verifier::visitDIAssignID(
const DIAssignID &
N) {
1834 CheckDI(!
N.getNumOperands(),
"DIAssignID has no arguments", &
N);
1835 CheckDI(
N.isDistinct(),
"DIAssignID must be distinct", &
N);
1838void Verifier::visitDILabel(
const DILabel &
N) {
1839 if (
auto *S =
N.getRawScope())
1841 if (
auto *
F =
N.getRawFile())
1844 CheckDI(
N.getTag() == dwarf::DW_TAG_label,
"invalid tag", &
N);
1846 "label requires a valid scope", &
N,
N.getRawScope());
1849void Verifier::visitDIExpression(
const DIExpression &
N) {
1850 CheckDI(
N.isValid(),
"invalid expression", &
N);
1853void Verifier::visitDIGlobalVariableExpression(
1854 const DIGlobalVariableExpression &GVE) {
1857 visitDIGlobalVariable(*Var);
1859 visitDIExpression(*Expr);
1860 if (
auto Fragment = Expr->getFragmentInfo())
1865void Verifier::visitDIObjCProperty(
const DIObjCProperty &
N) {
1866 CheckDI(
N.getTag() == dwarf::DW_TAG_APPLE_property,
"invalid tag", &
N);
1867 if (
auto *
T =
N.getRawType())
1869 if (
auto *
F =
N.getRawFile())
1873void Verifier::visitDIProperty(
const DIProperty &
N) {
1874 CheckDI(
N.getTag() == dwarf::DW_TAG_property,
"invalid tag", &
N);
1875 if (
auto *
T =
N.getRawType())
1877 if (
auto *
F =
N.getRawFile())
1881 if (DINode *BackingStorage =
N.getBackingStorage()) {
1883 CheckDI(DT && DT->getTag() == dwarf::DW_TAG_member,
1884 "property backing storage must be a member", &
N, BackingStorage);
1888void Verifier::visitDIImportedEntity(
const DIImportedEntity &
N) {
1889 CheckDI(
N.getTag() == dwarf::DW_TAG_imported_module ||
1890 N.getTag() == dwarf::DW_TAG_imported_declaration,
1892 if (
auto *S =
N.getRawScope())
1898void Verifier::visitComdat(
const Comdat &
C) {
1901 if (
TT.isOSBinFormatCOFF())
1902 if (
const GlobalValue *GV =
M.getNamedValue(
C.getName()))
1907void Verifier::visitModuleIdents() {
1908 const NamedMDNode *Idents =
M.getNamedMetadata(
"llvm.ident");
1914 for (
const MDNode *
N : Idents->
operands()) {
1915 Check(
N->getNumOperands() == 1,
1916 "incorrect number of operands in llvm.ident metadata",
N);
1918 (
"invalid value for llvm.ident metadata entry operand"
1919 "(the operand should be a string)"),
1924void Verifier::visitModuleCommandLines() {
1925 const NamedMDNode *CommandLines =
M.getNamedMetadata(
"llvm.commandline");
1932 for (
const MDNode *
N : CommandLines->
operands()) {
1933 Check(
N->getNumOperands() == 1,
1934 "incorrect number of operands in llvm.commandline metadata",
N);
1936 (
"invalid value for llvm.commandline metadata entry operand"
1937 "(the operand should be a string)"),
1942void Verifier::visitModuleErrnoTBAA() {
1943 const NamedMDNode *ErrnoTBAA =
M.getNamedMetadata(
"llvm.errno.tbaa");
1948 "llvm.errno.tbaa must have at least one operand", ErrnoTBAA);
1950 for (
const MDNode *
N : ErrnoTBAA->
operands())
1954void Verifier::visitModuleFlags() {
1955 const NamedMDNode *
Flags =
M.getModuleFlagsMetadata();
1959 DenseMap<const MDString*, const MDNode*> SeenIDs;
1963 std::optional<uint64_t> PAuthABIPlatform;
1964 std::optional<uint64_t> PAuthABIVersion;
1967 uint64_t HasPtrauthInitFiniAddr = 0;
1969 for (
const MDNode *MDN :
Flags->operands()) {
1970 visitModuleFlag(MDN, SeenIDs, Requirements);
1971 if (MDN->getNumOperands() != 3)
1975 auto GetFlagNamed = [&](StringRef
Name) -> std::optional<uint64_t> {
1976 if (FlagName->getString() != Name)
1977 return std::nullopt;
1978 if (
const auto *FlagValue =
1980 return FlagValue->getZExtValue();
1982 CheckFailed(Name +
": module flag expects integer value");
1983 return std::nullopt;
1986 if (
auto Value = GetFlagNamed(
"aarch64-elf-pauthabi-platform"))
1987 PAuthABIPlatform = *
Value;
1988 else if (
auto Value = GetFlagNamed(
"aarch64-elf-pauthabi-version"))
1989 PAuthABIVersion = *
Value;
1990 else if (
auto Value = GetFlagNamed(
"ptrauth-init-fini"))
1991 HasPtrauthInitFini = *
Value;
1992 else if (
auto Value =
1993 GetFlagNamed(
"ptrauth-init-fini-address-discrimination"))
1994 HasPtrauthInitFiniAddr = *
Value;
1999 "ptrauth-init-fini must be 0 or 1");
2001 "ptrauth-init-fini-address-discrimination must be 0 or 1, if set");
2002 if (HasPtrauthInitFiniAddr)
2003 Check(HasPtrauthInitFini,
"ptrauth-init-fini-address-discrimination module "
2004 "flag requires ptrauth-init-fini");
2006 if (PAuthABIPlatform.has_value() != PAuthABIVersion.has_value())
2007 CheckFailed(
"either both or no 'aarch64-elf-pauthabi-platform' and "
2008 "'aarch64-elf-pauthabi-version' module flags must be present");
2011 for (
const MDNode *Requirement : Requirements) {
2013 const Metadata *ReqValue = Requirement->getOperand(1);
2015 const MDNode *
Op = SeenIDs.
lookup(Flag);
2017 CheckFailed(
"invalid requirement on flag, flag is not present in module",
2022 if (
Op->getOperand(2) != ReqValue) {
2023 CheckFailed((
"invalid requirement on flag, "
2024 "flag does not have the required value"),
2032Verifier::visitModuleFlag(
const MDNode *
Op,
2033 DenseMap<const MDString *, const MDNode *> &SeenIDs,
2034 SmallVectorImpl<const MDNode *> &Requirements) {
2038 "incorrect number of operands in module flag",
Op);
2039 Module::ModFlagBehavior MFB;
2040 if (!Module::isValidModFlagBehavior(
Op->getOperand(0), MFB)) {
2042 "invalid behavior operand in module flag (expected constant integer)",
2045 "invalid behavior operand in module flag (unexpected constant)",
2049 Check(ID,
"invalid ID operand in module flag (expected metadata string)",
2055 case Module::Warning:
2056 case Module::Override:
2062 Check(V &&
V->getValue().isNonNegative(),
2063 "invalid value for 'min' module flag (expected constant non-negative "
2071 "invalid value for 'max' module flag (expected constant integer)",
2076 case Module::Require: {
2081 "invalid value for 'require' module flag (expected metadata pair)",
2084 (
"invalid value for 'require' module flag "
2085 "(first value operand should be a string)"),
2086 Value->getOperand(0));
2094 case Module::Append:
2095 case Module::AppendUnique: {
2098 "invalid value for 'append'-type module flag "
2099 "(expected a metadata node)",
2106 if (MFB != Module::Require) {
2109 "module flag identifiers must be unique (or of 'require' type)", ID);
2112 StringRef
Name =
ID->getString();
2113 if (Name ==
"wchar_size") {
2116 Check(
Value,
"wchar_size metadata requires constant integer argument");
2120 if (Name ==
"long-double-type") {
2121 Check(MFB == Module::Error,
2122 "long-double-type module flag must use 'error' merge behavior",
Op);
2124 Check(
Value,
"long-double-type metadata requires a string argument");
2127 "invalid long-double-type metadata value",
Op);
2131 if (Name ==
"float-abi") {
2132 Check(MFB == Module::Error,
2133 "float-abi module flag must use 'error' merge behavior",
Op);
2135 Check(
Value,
"float-abi metadata requires a string argument");
2138 "invalid float-abi metadata value",
Op);
2142 if (Name ==
"thread-model") {
2143 Check(MFB == Module::Error,
2144 "thread-model module flag must use 'error' merge behavior",
Op);
2146 Check(
Value,
"thread-model metadata requires a string argument");
2149 "invalid thread-model metadata value",
Op);
2153 if (Name ==
"target-abi") {
2156 "target-abi metadata requires a non-empty string argument",
Op);
2160 if (
ID->getString() ==
"exception-model") {
2161 Check(MFB == Module::Error,
2162 "exception-model module flag must use 'error' merge behavior",
Op);
2164 Check(
Value,
"exception-model metadata requires a string argument");
2167 "invalid exception-model metadata value",
Op);
2171 if (Name ==
"Linker Options") {
2175 Check(
M.getNamedMetadata(
"llvm.linker.options"),
2176 "'Linker Options' named metadata no longer supported");
2180 if (Name ==
"SemanticInterposition") {
2181 ConstantInt *
Value =
2184 "SemanticInterposition metadata requires constant integer argument");
2188 if (Name ==
"CG Profile") {
2189 for (
const MDOperand &MDO :
cast<MDNode>(
Op->getOperand(2))->operands())
2190 visitModuleFlagCGProfileEntry(MDO);
2198void Verifier::visitModuleFlagCGProfileEntry(
const MDOperand &MDO) {
2199 auto CheckFunction = [&](
const MDOperand &FuncMDO) {
2204 "expected a Function or null", FuncMDO);
2207 Check(Node &&
Node->getNumOperands() == 3,
"expected a MDNode triple", MDO);
2208 CheckFunction(
Node->getOperand(0));
2209 CheckFunction(
Node->getOperand(1));
2212 "expected an integer constant",
Node->getOperand(2));
2215void Verifier::verifyAttributeTypes(AttributeSet Attrs,
const Value *V) {
2218 if (
A.isStringAttribute()) {
2219#define GET_ATTR_NAMES
2220#define ATTRIBUTE_ENUM(ENUM_NAME, DISPLAY_NAME)
2221#define ATTRIBUTE_STRBOOL(ENUM_NAME, DISPLAY_NAME) \
2222 if (A.getKindAsString() == #DISPLAY_NAME) { \
2223 auto V = A.getValueAsString(); \
2224 if (!(V.empty() || V == "true" || V == "false")) \
2225 CheckFailed("invalid value for '" #DISPLAY_NAME "' attribute: " + V + \
2229#include "llvm/IR/Attributes.inc"
2233 if (
A.isIntAttribute() != Attribute::isIntAttrKind(
A.getKindAsEnum())) {
2234 CheckFailed(
"Attribute '" +
A.getAsString() +
"' should have an Argument",
2243void Verifier::verifyParameterAttrs(AttributeSet Attrs,
Type *Ty,
2245 if (!
Attrs.hasAttributes())
2248 verifyAttributeTypes(Attrs, V);
2251 Check(Attr.isStringAttribute() ||
2252 Attribute::canUseAsParamAttr(Attr.getKindAsEnum()),
2253 "Attribute '" + Attr.getAsString() +
"' does not apply to parameters",
2256 if (
Attrs.hasAttribute(Attribute::ImmArg)) {
2257 unsigned AttrCount =
2258 Attrs.getNumAttributes() -
Attrs.hasAttribute(Attribute::Range);
2259 Check(AttrCount == 1,
2260 "Attribute 'immarg' is incompatible with other attributes except the "
2261 "'range' attribute",
2267 unsigned AttrCount = 0;
2268 AttrCount +=
Attrs.hasAttribute(Attribute::ByVal);
2269 AttrCount +=
Attrs.hasAttribute(Attribute::InAlloca);
2270 AttrCount +=
Attrs.hasAttribute(Attribute::Preallocated);
2271 AttrCount +=
Attrs.hasAttribute(Attribute::StructRet) ||
2272 Attrs.hasAttribute(Attribute::InReg);
2273 AttrCount +=
Attrs.hasAttribute(Attribute::Nest);
2274 AttrCount +=
Attrs.hasAttribute(Attribute::ByRef);
2275 Check(AttrCount <= 1,
2276 "Attributes 'byval', 'inalloca', 'preallocated', 'inreg', 'nest', "
2277 "'byref', and 'sret' are incompatible!",
2280 Check(!(
Attrs.hasAttribute(Attribute::InAlloca) &&
2281 Attrs.hasAttribute(Attribute::ReadOnly)),
2283 "'inalloca and readonly' are incompatible!",
2286 Check(!(
Attrs.hasAttribute(Attribute::StructRet) &&
2287 Attrs.hasAttribute(Attribute::Returned)),
2289 "'sret and returned' are incompatible!",
2292 Check(!(
Attrs.hasAttribute(Attribute::ZExt) &&
2293 Attrs.hasAttribute(Attribute::SExt)),
2295 "'zeroext and signext' are incompatible!",
2298 Check(!(
Attrs.hasAttribute(Attribute::ReadNone) &&
2299 Attrs.hasAttribute(Attribute::ReadOnly)),
2301 "'readnone and readonly' are incompatible!",
2304 Check(!(
Attrs.hasAttribute(Attribute::ReadNone) &&
2305 Attrs.hasAttribute(Attribute::WriteOnly)),
2307 "'readnone and writeonly' are incompatible!",
2310 Check(!(
Attrs.hasAttribute(Attribute::ReadOnly) &&
2311 Attrs.hasAttribute(Attribute::WriteOnly)),
2313 "'readonly and writeonly' are incompatible!",
2316 Check(!(
Attrs.hasAttribute(Attribute::NoInline) &&
2317 Attrs.hasAttribute(Attribute::AlwaysInline)),
2319 "'noinline and alwaysinline' are incompatible!",
2322 Check(!(
Attrs.hasAttribute(Attribute::Writable) &&
2323 Attrs.hasAttribute(Attribute::ReadNone)),
2324 "Attributes writable and readnone are incompatible!", V);
2326 Check(!(
Attrs.hasAttribute(Attribute::Writable) &&
2327 Attrs.hasAttribute(Attribute::ReadOnly)),
2328 "Attributes writable and readonly are incompatible!", V);
2330 AttributeMask IncompatibleAttrs = AttributeFuncs::typeIncompatible(Ty, Attrs);
2332 if (!Attr.isStringAttribute() &&
2333 IncompatibleAttrs.
contains(Attr.getKindAsEnum())) {
2334 CheckFailed(
"Attribute '" + Attr.getAsString() +
2335 "' applied to incompatible type!", V);
2341 if (
Attrs.hasAttribute(Attribute::Alignment)) {
2342 Align AttrAlign =
Attrs.getAlignment().valueOrOne();
2343 Check(AttrAlign.
value() <= Value::MaximumAlignment,
2344 "huge alignment values are unsupported", V);
2346 if (
Attrs.hasAttribute(Attribute::ByVal)) {
2349 "Attribute 'byval' does not support unsized types!", V);
2353 "'byval' argument has illegal target extension type", V);
2354 Check(
DL.getTypeAllocSize(ByValTy).getKnownMinValue() < (1ULL << 32),
2355 "huge 'byval' arguments are unsupported", V);
2357 if (
Attrs.hasAttribute(Attribute::ByRef)) {
2359 "Attribute 'byref' does not support unsized types!", V);
2360 Check(
DL.getTypeAllocSize(
Attrs.getByRefType()).getKnownMinValue() <
2362 "huge 'byref' arguments are unsupported", V);
2364 if (
Attrs.hasAttribute(Attribute::InAlloca)) {
2366 "Attribute 'inalloca' does not support unsized types!", V);
2367 Check(
DL.getTypeAllocSize(
Attrs.getInAllocaType()).getKnownMinValue() <
2369 "huge 'inalloca' arguments are unsupported", V);
2371 if (
Attrs.hasAttribute(Attribute::Preallocated)) {
2372 Check(
Attrs.getPreallocatedType()->isSized(),
2373 "Attribute 'preallocated' does not support unsized types!", V);
2375 DL.getTypeAllocSize(
Attrs.getPreallocatedType()).getKnownMinValue() <
2377 "huge 'preallocated' arguments are unsupported", V);
2381 if (
Attrs.hasAttribute(Attribute::Initializes)) {
2382 auto Inits =
Attrs.getAttribute(Attribute::Initializes).getInitializes();
2383 Check(!Inits.empty(),
"Attribute 'initializes' does not support empty list",
2386 "Attribute 'initializes' does not support unordered ranges", V);
2389 if (
Attrs.hasAttribute(Attribute::NoFPClass)) {
2390 uint64_t Val =
Attrs.getAttribute(Attribute::NoFPClass).getValueAsInt();
2391 Check(Val != 0,
"Attribute 'nofpclass' must have at least one test bit set",
2394 "Invalid value for 'nofpclass' test mask", V);
2396 if (
Attrs.hasAttribute(Attribute::Range)) {
2397 const ConstantRange &CR =
2398 Attrs.getAttribute(Attribute::Range).getValueAsConstantRange();
2400 "Range bit width must match type bit width!", V);
2404void Verifier::checkUnsignedBaseTenFuncAttr(AttributeList Attrs, StringRef Attr,
2406 if (
Attrs.hasFnAttr(Attr)) {
2407 StringRef S =
Attrs.getFnAttr(Attr).getValueAsString();
2410 CheckFailed(
"\"" + Attr +
"\" takes an unsigned integer: " + S, V);
2416void Verifier::verifyFunctionAttrs(FunctionType *FT, AttributeList Attrs,
2417 const Value *V,
bool IsIntrinsic,
2419 if (
Attrs.isEmpty())
2422 if (AttributeListsVisited.
insert(
Attrs.getRawPointer()).second) {
2424 "Attribute list does not match Module context!", &Attrs, V);
2425 for (
const auto &AttrSet : Attrs) {
2426 Check(!AttrSet.hasAttributes() || AttrSet.hasParentContext(
Context),
2427 "Attribute set does not match Module context!", &AttrSet, V);
2428 for (
const auto &
A : AttrSet) {
2430 "Attribute does not match Module context!", &
A, V);
2435 bool SawNest =
false;
2436 bool SawReturned =
false;
2437 bool SawSRet =
false;
2438 bool SawSwiftSelf =
false;
2439 bool SawSwiftAsync =
false;
2440 bool SawSwiftError =
false;
2443 AttributeSet RetAttrs =
Attrs.getRetAttrs();
2446 Attribute::canUseAsRetAttr(
RetAttr.getKindAsEnum()),
2447 "Attribute '" +
RetAttr.getAsString() +
2448 "' does not apply to function return values",
2451 unsigned MaxParameterWidth = 0;
2452 auto GetMaxParameterWidth = [&MaxParameterWidth](
Type *Ty) {
2455 unsigned Size = VT->getPrimitiveSizeInBits().getFixedValue();
2456 if (
Size > MaxParameterWidth)
2457 MaxParameterWidth =
Size;
2461 GetMaxParameterWidth(FT->getReturnType());
2462 verifyParameterAttrs(RetAttrs, FT->getReturnType(), V);
2465 for (
unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
2466 Type *Ty = FT->getParamType(i);
2467 AttributeSet ArgAttrs =
Attrs.getParamAttrs(i);
2471 "immarg attribute only applies to intrinsics", V);
2474 "Attribute 'elementtype' can only be applied to intrinsics"
2479 verifyParameterAttrs(ArgAttrs, Ty, V);
2480 GetMaxParameterWidth(Ty);
2483 Check(!SawNest,
"More than one parameter has attribute nest!", V);
2488 Check(!SawReturned,
"More than one parameter has attribute returned!", V);
2490 "Incompatible argument and return types for 'returned' attribute",
2496 Check(!SawSRet,
"Cannot have multiple 'sret' parameters!", V);
2497 Check(i == 0 || i == 1,
2498 "Attribute 'sret' is not on first or second parameter!", V);
2503 Check(!SawSwiftSelf,
"Cannot have multiple 'swiftself' parameters!", V);
2504 SawSwiftSelf =
true;
2508 Check(!SawSwiftAsync,
"Cannot have multiple 'swiftasync' parameters!", V);
2509 SawSwiftAsync =
true;
2513 Check(!SawSwiftError,
"Cannot have multiple 'swifterror' parameters!", V);
2514 SawSwiftError =
true;
2518 Check(i == FT->getNumParams() - 1,
2519 "inalloca isn't on the last parameter!", V);
2523 if (!
Attrs.hasFnAttrs())
2526 verifyAttributeTypes(
Attrs.getFnAttrs(), V);
2529 Attribute::canUseAsFnAttr(
FnAttr.getKindAsEnum()),
2530 "Attribute '" +
FnAttr.getAsString() +
2531 "' does not apply to functions!",
2534 Check(!(
Attrs.hasFnAttr(Attribute::NoInline) &&
2535 Attrs.hasFnAttr(Attribute::AlwaysInline)),
2536 "Attributes 'noinline and alwaysinline' are incompatible!", V);
2538 if (
Attrs.hasFnAttr(Attribute::OptimizeNone)) {
2540 "Attribute 'optnone' requires 'noinline'!", V);
2542 Check(!
Attrs.hasFnAttr(Attribute::OptimizeForSize),
2543 "Attributes 'optsize and optnone' are incompatible!", V);
2546 "Attributes 'minsize and optnone' are incompatible!", V);
2548 Check(!
Attrs.hasFnAttr(Attribute::OptimizeForDebugging),
2549 "Attributes 'optdebug and optnone' are incompatible!", V);
2552 Check(!(
Attrs.hasFnAttr(Attribute::SanitizeRealtime) &&
2553 Attrs.hasFnAttr(Attribute::SanitizeRealtimeBlocking)),
2555 "'sanitize_realtime and sanitize_realtime_blocking' are incompatible!",
2558 if (
Attrs.hasFnAttr(Attribute::OptimizeForDebugging)) {
2559 Check(!
Attrs.hasFnAttr(Attribute::OptimizeForSize),
2560 "Attributes 'optsize and optdebug' are incompatible!", V);
2563 "Attributes 'minsize and optdebug' are incompatible!", V);
2566 Check(!
Attrs.hasAttrSomewhere(Attribute::Writable) ||
2567 isModSet(
Attrs.getMemoryEffects().getModRef(IRMemLocation::ArgMem)),
2568 "Attribute writable and memory without argmem: write are incompatible!",
2571 if (
Attrs.hasFnAttr(
"aarch64_pstate_sm_enabled")) {
2572 Check(!
Attrs.hasFnAttr(
"aarch64_pstate_sm_compatible"),
2573 "Attributes 'aarch64_pstate_sm_enabled and "
2574 "aarch64_pstate_sm_compatible' are incompatible!",
2578 Check((
Attrs.hasFnAttr(
"aarch64_new_za") +
Attrs.hasFnAttr(
"aarch64_in_za") +
2579 Attrs.hasFnAttr(
"aarch64_inout_za") +
2580 Attrs.hasFnAttr(
"aarch64_out_za") +
2581 Attrs.hasFnAttr(
"aarch64_preserves_za") +
2582 Attrs.hasFnAttr(
"aarch64_za_state_agnostic")) <= 1,
2583 "Attributes 'aarch64_new_za', 'aarch64_in_za', 'aarch64_out_za', "
2584 "'aarch64_inout_za', 'aarch64_preserves_za' and "
2585 "'aarch64_za_state_agnostic' are mutually exclusive",
2589 Attrs.hasFnAttr(
"aarch64_in_zt0") +
2590 Attrs.hasFnAttr(
"aarch64_inout_zt0") +
2591 Attrs.hasFnAttr(
"aarch64_out_zt0") +
2592 Attrs.hasFnAttr(
"aarch64_preserves_zt0") +
2593 Attrs.hasFnAttr(
"aarch64_za_state_agnostic")) <= 1,
2594 "Attributes 'aarch64_new_zt0', 'aarch64_in_zt0', 'aarch64_out_zt0', "
2595 "'aarch64_inout_zt0', 'aarch64_preserves_zt0' and "
2596 "'aarch64_za_state_agnostic' are mutually exclusive",
2599 if (
Attrs.hasFnAttr(Attribute::JumpTable)) {
2602 "Attribute 'jumptable' requires 'unnamed_addr'", V);
2605 if (
auto Args =
Attrs.getFnAttrs().getAllocSizeArgs()) {
2606 auto CheckParam = [&](StringRef
Name,
unsigned ParamNo) {
2607 if (ParamNo >= FT->getNumParams()) {
2608 CheckFailed(
"'allocsize' " + Name +
" argument is out of bounds", V);
2612 if (!FT->getParamType(ParamNo)->isIntegerTy()) {
2613 CheckFailed(
"'allocsize' " + Name +
2614 " argument must refer to an integer parameter",
2622 if (!CheckParam(
"element size",
Args->first))
2625 if (
Args->second && !CheckParam(
"number of elements", *
Args->second))
2629 if (
Attrs.hasFnAttr(Attribute::AllocKind)) {
2632 K & (AllocFnKind::Alloc | AllocFnKind::Realloc | AllocFnKind::Free);
2634 {AllocFnKind::Alloc, AllocFnKind::Realloc, AllocFnKind::Free},
2637 "'allockind()' requires exactly one of alloc, realloc, and free");
2638 if ((
Type == AllocFnKind::Free) &&
2639 ((K & (AllocFnKind::Uninitialized | AllocFnKind::Zeroed |
2640 AllocFnKind::Aligned)) != AllocFnKind::Unknown))
2641 CheckFailed(
"'allockind(\"free\")' doesn't allow uninitialized, zeroed, "
2642 "or aligned modifiers.");
2643 AllocFnKind ZeroedUninit = AllocFnKind::Uninitialized | AllocFnKind::Zeroed;
2644 if ((K & ZeroedUninit) == ZeroedUninit)
2645 CheckFailed(
"'allockind()' can't be both zeroed and uninitialized");
2649 StringRef S =
A.getValueAsString();
2650 Check(!S.
empty(),
"'alloc-variant-zeroed' must not be empty");
2658 "'alloc-variant-zeroed' must name a function belonging to the "
2659 "same 'alloc-family'");
2662 (
Variant->getFnAttribute(Attribute::AllocKind).getAllocKind() &
2663 AllocFnKind::Zeroed) != AllocFnKind::Unknown,
2664 "'alloc-variant-zeroed' must name a function with "
2665 "'allockind(\"zeroed\")'");
2668 "'alloc-variant-zeroed' must name a function with the same "
2673 "'alloc-variant-zeroed' must name a function with the same "
2674 "calling convention");
2678 if (
Attrs.hasFnAttr(Attribute::VScaleRange)) {
2679 unsigned VScaleMin =
Attrs.getFnAttrs().getVScaleRangeMin();
2681 CheckFailed(
"'vscale_range' minimum must be greater than 0", V);
2683 CheckFailed(
"'vscale_range' minimum must be power-of-two value", V);
2684 std::optional<unsigned> VScaleMax =
Attrs.getFnAttrs().getVScaleRangeMax();
2685 if (VScaleMax && VScaleMin > VScaleMax)
2686 CheckFailed(
"'vscale_range' minimum cannot be greater than maximum", V);
2688 CheckFailed(
"'vscale_range' maximum must be power-of-two value", V);
2691 if (
Attribute FPAttr =
Attrs.getFnAttr(
"frame-pointer"); FPAttr.isValid()) {
2692 StringRef
FP = FPAttr.getValueAsString();
2693 if (
FP !=
"all" &&
FP !=
"non-leaf" &&
FP !=
"none" &&
FP !=
"reserved" &&
2694 FP !=
"non-leaf-no-reserve")
2695 CheckFailed(
"invalid value for 'frame-pointer' attribute: " +
FP, V);
2698 checkUnsignedBaseTenFuncAttr(Attrs,
"tail-pad-to-size", V);
2699 checkUnsignedBaseTenFuncAttr(Attrs,
"tail-pad-value", V);
2700 checkUnsignedBaseTenFuncAttr(Attrs,
"patchable-function-prefix", V);
2701 checkUnsignedBaseTenFuncAttr(Attrs,
"patchable-function-entry", V);
2702 if (
Attrs.hasFnAttr(
"patchable-function-entry-section"))
2703 Check(!
Attrs.getFnAttr(
"patchable-function-entry-section")
2706 "\"patchable-function-entry-section\" must not be empty");
2707 checkUnsignedBaseTenFuncAttr(Attrs,
"warn-stack-size", V);
2709 if (
auto A =
Attrs.getFnAttr(
"sign-return-address");
A.isValid()) {
2710 StringRef S =
A.getValueAsString();
2711 if (S !=
"none" && S !=
"all" && S !=
"non-leaf")
2712 CheckFailed(
"invalid value for 'sign-return-address' attribute: " + S, V);
2715 if (
auto A =
Attrs.getFnAttr(
"sign-return-address-key");
A.isValid()) {
2716 StringRef S =
A.getValueAsString();
2717 if (S !=
"a_key" && S !=
"b_key")
2718 CheckFailed(
"invalid value for 'sign-return-address-key' attribute: " + S,
2720 if (
auto AA =
Attrs.getFnAttr(
"sign-return-address"); !AA.isValid()) {
2722 "'sign-return-address-key' present without `sign-return-address`");
2726 if (
auto A =
Attrs.getFnAttr(
"branch-target-enforcement");
A.isValid()) {
2727 StringRef S =
A.getValueAsString();
2728 if (S !=
"" && S !=
"true" && S !=
"false")
2730 "invalid value for 'branch-target-enforcement' attribute: " + S, V);
2733 if (
auto A =
Attrs.getFnAttr(
"branch-protection-pauth-lr");
A.isValid()) {
2734 StringRef S =
A.getValueAsString();
2735 if (S !=
"" && S !=
"true" && S !=
"false")
2737 "invalid value for 'branch-protection-pauth-lr' attribute: " + S, V);
2740 if (
auto A =
Attrs.getFnAttr(
"guarded-control-stack");
A.isValid()) {
2741 StringRef S =
A.getValueAsString();
2742 if (S !=
"" && S !=
"true" && S !=
"false")
2743 CheckFailed(
"invalid value for 'guarded-control-stack' attribute: " + S,
2747 if (
auto A =
Attrs.getFnAttr(
"vector-function-abi-variant");
A.isValid()) {
2748 StringRef S =
A.getValueAsString();
2751 CheckFailed(
"invalid name for a VFABI variant: " + S, V);
2754 if (
auto A =
Attrs.getFnAttr(
"modular-format");
A.isValid()) {
2755 StringRef S =
A.getValueAsString();
2759 "modular-format attribute requires at least 5 arguments", V);
2760 unsigned UpperBound = FT->getNumParams() + (FT->isVarArg() ? 1 : 0);
2762 Check(!Args[1].getAsInteger(10, FormatIdx),
2763 "modular-format attribute format string index is not an integer", V);
2764 Check(FormatIdx > 0,
2765 "modular-format attribute format string index must be greater than 0",
2767 Check(FormatIdx <= UpperBound,
2768 "modular-format attribute format string index is out of bounds", V);
2769 unsigned FirstArgIdx;
2770 Check(!Args[2].getAsInteger(10, FirstArgIdx),
2771 "modular-format attribute first arg index is not an integer", V);
2772 Check(FirstArgIdx <= UpperBound,
2773 "modular-format attribute first arg index is out of bounds", V);
2775 "modular-format attribute modular implementation function name "
2779 "modular-format attribute implementation name cannot be empty", V);
2782 if (
auto A =
Attrs.getFnAttr(
"target-features");
A.isValid()) {
2783 StringRef S =
A.getValueAsString();
2785 for (
auto FeatureFlag :
split(S,
',')) {
2786 if (FeatureFlag.empty())
2788 "target-features attribute should not contain an empty string");
2790 Check(FeatureFlag[0] ==
'+' || FeatureFlag[0] ==
'-',
2791 "target feature '" + FeatureFlag +
2792 "' must start with a '+' or '-'",
2798void Verifier::verifyUnknownProfileMetadata(MDNode *MD) {
2800 "'unknown' !prof should have a single additional operand", MD);
2803 "'unknown' !prof should have an additional operand of type "
2806 "the 'unknown' !prof operand should not be an empty string");
2809void Verifier::verifyFunctionMetadata(
2810 ArrayRef<std::pair<unsigned, MDNode *>> MDs) {
2811 for (
const auto &Pair : MDs) {
2812 if (Pair.first == LLVMContext::MD_prof) {
2813 MDNode *MD = Pair.second;
2815 "!prof annotations should have no less than 2 operands", MD);
2820 verifyUnknownProfileMetadata(MD);
2825 Check(MD->
getOperand(0) !=
nullptr,
"first operand should not be null",
2828 "expected string with name of the !prof annotation", MD);
2833 "first operand should be 'function_entry_count'"
2834 " or 'synthetic_function_entry_count'",
2838 Check(MD->
getOperand(1) !=
nullptr,
"second operand should not be null",
2841 "expected integer argument to function_entry_count", MD);
2842 }
else if (Pair.first == LLVMContext::MD_kcfi_type) {
2843 MDNode *MD = Pair.second;
2845 "!kcfi_type must have exactly one operand", MD);
2846 Check(MD->
getOperand(0) !=
nullptr,
"!kcfi_type operand must not be null",
2849 "expected a constant operand for !kcfi_type", MD);
2852 "expected a constant integer operand for !kcfi_type", MD);
2854 "expected a 32-bit integer constant operand for !kcfi_type", MD);
2855 }
else if (Pair.first ==
Context.getMDKindID(
"reqd_work_group_size")) {
2856 MDNode *MD = Pair.second;
2858 "reqd_work_group_size must have exactly three operands", MD);
2863 for (
unsigned I = 0;
I != 3; ++
I) {
2865 Check(
C,
"reqd_work_group_size operands must be integer constants", MD);
2869 const APInt &
Value =
C->getValue();
2871 "reqd_work_group_size operands must fit in 64 bits", MD);
2872 if (
Value.getActiveBits() > 64)
2876 Check(Dim == 0 || Product <= std::numeric_limits<uint64_t>::max() / Dim,
2877 "reqd_work_group_size product must fit in 64 bits", MD);
2878 if (Dim != 0 && Product > std::numeric_limits<uint64_t>::max() / Dim)
2886void Verifier::visitConstantExprsRecursively(
const Constant *EntryC) {
2890 if (!ConstantExprVisited.
insert(EntryC).second)
2894 Stack.push_back(EntryC);
2896 while (!
Stack.empty()) {
2901 visitConstantExpr(CE);
2904 visitConstantPtrAuth(CPA);
2909 Check(GV->
getParent() == &M,
"Referencing global in another module!",
2915 for (
const Use &U :
C->operands()) {
2919 if (!ConstantExprVisited.
insert(OpC).second)
2921 Stack.push_back(OpC);
2926void Verifier::visitConstantExpr(
const ConstantExpr *CE) {
2927 if (
CE->getOpcode() == Instruction::BitCast)
2930 "Invalid bitcast", CE);
2931 else if (
CE->getOpcode() == Instruction::PtrToAddr)
2932 checkPtrToAddr(
CE->getOperand(0)->getType(),
CE->getType(), *CE);
2935void Verifier::visitConstantPtrAuth(
const ConstantPtrAuth *CPA) {
2937 "signed ptrauth constant base pointer must have pointer type");
2940 "signed ptrauth constant must have same type as its base pointer");
2943 "signed ptrauth constant key must be i32 constant integer");
2946 "signed ptrauth constant address discriminator must be a pointer");
2949 "signed ptrauth constant discriminator must be i64 constant integer");
2952 "signed ptrauth constant deactivation symbol must be a pointer");
2956 "signed ptrauth constant deactivation symbol must be a global value "
2960bool Verifier::verifyAttributeCount(AttributeList Attrs,
unsigned Params) {
2963 return Attrs.getNumAttrSets() <= Params + 2;
2966void Verifier::verifyInlineAsmCall(
const CallBase &
Call) {
2969 unsigned LabelNo = 0;
2970 for (
const InlineAsm::ConstraintInfo &CI :
IA->ParseConstraints()) {
2980 if (CI.isIndirect) {
2983 "Operand for indirect constraint must have pointer type", &
Call);
2986 "Operand for indirect constraint must have elementtype attribute",
2990 "Elementtype attribute can only be applied for indirect "
2999 Check(LabelNo == CallBr->getNumIndirectDests(),
3000 "Number of label constraints does not match number of callbr dests",
3003 Check(LabelNo == 0,
"Label constraints can only be used with callbr",
3009void Verifier::verifyStatepoint(
const CallBase &
Call) {
3014 "gc.statepoint must read and write all memory to preserve "
3015 "reordering restrictions required by safepoint semantics",
3018 const int64_t NumPatchBytes =
3021 Check(NumPatchBytes >= 0,
3022 "gc.statepoint number of patchable bytes must be "
3027 Check(TargetElemType,
3028 "gc.statepoint callee argument must have elementtype attribute",
Call);
3030 Check(TargetFuncType,
3031 "gc.statepoint callee elementtype must be function type",
Call);
3034 Check(NumCallArgs >= 0,
3035 "gc.statepoint number of arguments to underlying call "
3038 const int NumParams = (int)TargetFuncType->getNumParams();
3039 if (TargetFuncType->isVarArg()) {
3040 Check(NumCallArgs >= NumParams,
3041 "gc.statepoint mismatch in number of vararg call args",
Call);
3044 Check(TargetFuncType->getReturnType()->isVoidTy(),
3045 "gc.statepoint doesn't support wrapping non-void "
3046 "vararg functions yet",
3049 Check(NumCallArgs == NumParams,
3050 "gc.statepoint mismatch in number of call args",
Call);
3055 "unknown flag used in gc.statepoint flags argument",
Call);
3060 for (
int i = 0; i < NumParams; i++) {
3061 Type *ParamType = TargetFuncType->getParamType(i);
3063 Check(ArgType == ParamType,
3064 "gc.statepoint call argument does not match wrapped "
3068 if (TargetFuncType->isVarArg()) {
3069 AttributeSet ArgAttrs =
Attrs.getParamAttrs(5 + i);
3071 "Attribute 'sret' cannot be used for vararg call arguments!",
Call);
3075 const int EndCallArgsInx = 4 + NumCallArgs;
3079 "gc.statepoint number of transition arguments "
3080 "must be constant integer",
3082 const int NumTransitionArgs =
3084 Check(NumTransitionArgs == 0,
3085 "gc.statepoint w/inline transition bundle is deprecated",
Call);
3086 const int EndTransitionArgsInx = EndCallArgsInx + 1 + NumTransitionArgs;
3090 "gc.statepoint number of deoptimization arguments "
3091 "must be constant integer",
3094 Check(NumDeoptArgs == 0,
3095 "gc.statepoint w/inline deopt operands is deprecated",
Call);
3097 const int ExpectedNumArgs = 7 + NumCallArgs;
3099 "gc.statepoint too many arguments",
Call);
3106 Check(UserCall,
"illegal use of statepoint token",
Call, U);
3110 "gc.result or gc.relocate are the only value uses "
3111 "of a gc.statepoint",
3114 Check(UserCall->getArgOperand(0) == &
Call,
3115 "gc.result connected to wrong gc.statepoint",
Call, UserCall);
3117 Check(UserCall->getArgOperand(0) == &
Call,
3118 "gc.relocate connected to wrong gc.statepoint",
Call, UserCall);
3132void Verifier::verifyFrameRecoverIndices() {
3133 for (
auto &Counts : FrameEscapeInfo) {
3135 unsigned EscapedObjectCount = Counts.second.first;
3136 unsigned MaxRecoveredIndex = Counts.second.second;
3137 Check(MaxRecoveredIndex <= EscapedObjectCount,
3138 "all indices passed to llvm.localrecover must be less than the "
3139 "number of arguments passed to llvm.localescape in the parent "
3148 UnwindDest =
II->getUnwindDest();
3150 UnwindDest = CSI->getUnwindDest();
3156void Verifier::verifySiblingFuncletUnwinds() {
3157 llvm::TimeTraceScope timeScope(
"Verifier verify sibling funclet unwinds");
3158 SmallPtrSet<Instruction *, 8> Visited;
3159 SmallPtrSet<Instruction *, 8>
Active;
3160 for (
const auto &Pair : SiblingFuncletInfo) {
3162 if (Visited.
count(PredPad))
3168 if (
Active.count(SuccPad)) {
3171 SmallVector<Instruction *, 8> CycleNodes;
3174 Instruction *CycleTerminator = SiblingFuncletInfo[CyclePad];
3175 if (CycleTerminator != CyclePad)
3178 }
while (CyclePad != SuccPad);
3179 Check(
false,
"EH pads can't handle each other's exceptions",
3180 ArrayRef<Instruction *>(CycleNodes));
3183 if (!Visited.
insert(SuccPad).second)
3187 auto TermI = SiblingFuncletInfo.find(PredPad);
3188 if (TermI == SiblingFuncletInfo.end())
3201void Verifier::visitFunction(
const Function &
F) {
3202 visitGlobalValue(
F);
3205 FunctionType *FT =
F.getFunctionType();
3206 unsigned NumArgs =
F.arg_size();
3209 "Function context does not match Module context!", &
F);
3211 Check(!
F.hasCommonLinkage(),
"Functions may not have common linkage", &
F);
3212 Check(FT->getNumParams() == NumArgs,
3213 "# formal arguments must match # of arguments for function type!", &
F,
3215 Check(
F.getReturnType()->isFirstClassType() ||
3216 F.getReturnType()->isVoidTy() ||
F.getReturnType()->isStructTy(),
3217 "Functions cannot return aggregate values!", &
F);
3219 Check(!
F.hasStructRetAttr() ||
F.getReturnType()->isVoidTy(),
3220 "Invalid struct return type!", &
F);
3222 if (MaybeAlign
A =
F.getAlign()) {
3223 Check(
A->value() <= Value::MaximumAlignment,
3224 "huge alignment values are unsupported", &
F);
3227 AttributeList
Attrs =
F.getAttributes();
3229 Check(verifyAttributeCount(Attrs, FT->getNumParams()),
3230 "Attribute after last parameter!", &
F);
3232 bool IsIntrinsic =
F.isIntrinsic();
3235 verifyFunctionAttrs(FT, Attrs, &
F, IsIntrinsic,
false);
3241 "Attribute 'builtin' can only be applied to a callsite.", &
F);
3243 Check(!
Attrs.hasAttrSomewhere(Attribute::ElementType),
3244 "Attribute 'elementtype' can only be applied to a callsite.", &
F);
3246 if (
Attrs.hasFnAttr(Attribute::Naked))
3247 for (
const Argument &Arg :
F.args())
3248 Check(Arg.use_empty(),
"cannot use argument of naked function", &Arg);
3253 switch (
F.getCallingConv()) {
3255 case CallingConv::C:
3257 case CallingConv::X86_INTR: {
3258 Check(
F.arg_empty() ||
Attrs.hasParamAttr(0, Attribute::ByVal),
3259 "Calling convention parameter requires byval", &
F);
3262 case CallingConv::AMDGPU_KERNEL:
3263 case CallingConv::SPIR_KERNEL:
3264 case CallingConv::AMDGPU_CS_Chain:
3265 case CallingConv::AMDGPU_CS_ChainPreserve:
3266 Check(
F.getReturnType()->isVoidTy(),
3267 "Calling convention requires void return type", &
F);
3269 case CallingConv::AMDGPU_VS:
3270 case CallingConv::AMDGPU_HS:
3271 case CallingConv::AMDGPU_GS:
3272 case CallingConv::AMDGPU_PS:
3273 case CallingConv::AMDGPU_CS:
3274 Check(!
F.hasStructRetAttr(),
"Calling convention does not allow sret", &
F);
3275 if (
F.getCallingConv() != CallingConv::SPIR_KERNEL) {
3276 const unsigned StackAS =
DL.getAllocaAddrSpace();
3278 for (
const Argument &Arg :
F.args()) {
3279 Check(!
Attrs.hasParamAttr(i, Attribute::ByVal),
3280 "Calling convention disallows byval", &
F);
3281 Check(!
Attrs.hasParamAttr(i, Attribute::Preallocated),
3282 "Calling convention disallows preallocated", &
F);
3283 Check(!
Attrs.hasParamAttr(i, Attribute::InAlloca),
3284 "Calling convention disallows inalloca", &
F);
3286 if (
Attrs.hasParamAttr(i, Attribute::ByRef)) {
3289 Check(Arg.getType()->getPointerAddressSpace() != StackAS,
3290 "Calling convention disallows stack byref", &
F);
3298 case CallingConv::Fast:
3299 case CallingConv::Cold:
3300 case CallingConv::Intel_OCL_BI:
3301 case CallingConv::PTX_Kernel:
3302 case CallingConv::PTX_Device:
3304 "Calling convention does not support varargs or "
3305 "perfect forwarding!",
3308 case CallingConv::AMDGPU_Gfx_WholeWave:
3309 Check(!
F.arg_empty() &&
F.arg_begin()->getType()->isIntegerTy(1),
3310 "Calling convention requires first argument to be i1", &
F);
3311 Check(!
F.arg_begin()->hasInRegAttr(),
3312 "Calling convention requires first argument to not be inreg", &
F);
3314 "Calling convention does not support varargs or "
3315 "perfect forwarding!",
3322 for (
const Argument &Arg :
F.args()) {
3323 Check(Arg.getType() == FT->getParamType(i),
3324 "Argument value does not match function argument type!", &Arg,
3325 FT->getParamType(i));
3326 Check(Arg.getType()->isFirstClassType(),
3327 "Function arguments must have first-class types!", &Arg);
3329 Check(!Arg.getType()->isMetadataTy(),
3330 "Function takes metadata but isn't an intrinsic", &Arg, &
F);
3331 Check(!Arg.getType()->isTokenLikeTy(),
3332 "Function takes token but isn't an intrinsic", &Arg, &
F);
3333 Check(!Arg.getType()->isX86_AMXTy(),
3334 "Function takes x86_amx but isn't an intrinsic", &Arg, &
F);
3338 if (
Attrs.hasParamAttr(i, Attribute::SwiftError)) {
3339 verifySwiftErrorValue(&Arg);
3345 Check(!
F.getReturnType()->isTokenLikeTy(),
3346 "Function returns a token but isn't an intrinsic", &
F);
3347 Check(!
F.getReturnType()->isX86_AMXTy(),
3348 "Function returns a x86_amx but isn't an intrinsic", &
F);
3353 F.getAllMetadata(MDs);
3354 assert(
F.hasMetadata() != MDs.
empty() &&
"Bit out-of-sync");
3355 verifyFunctionMetadata(MDs);
3361 if (
F.hasPersonalityFn()) {
3364 Check(Per->getParent() ==
F.getParent(),
3365 "Referencing personality function in another module!", &
F,
3366 F.getParent(), Per, Per->getParent());
3370 BlockEHFuncletColors.
clear();
3372 if (
F.isMaterializable()) {
3374 Check(MDs.
empty(),
"unmaterialized function cannot have metadata", &
F,
3376 }
else if (
F.isDeclaration()) {
3377 for (
const auto &
I : MDs) {
3379 CheckDI(
I.first != LLVMContext::MD_dbg ||
3381 "function declaration may only have a unique !dbg attachment",
3383 Check(
I.first != LLVMContext::MD_prof,
3384 "function declaration may not have a !prof attachment", &
F);
3387 visitMDNode(*
I.second, AreDebugLocsAllowed::Yes);
3389 Check(!
F.hasPersonalityFn(),
3390 "Function declaration shouldn't have a personality routine", &
F);
3394 Check(!IsIntrinsic,
"llvm intrinsics cannot be defined!", &
F);
3399 "Entry block to function must not have predecessors!", Entry);
3402 if (
Entry->hasAddressTaken()) {
3404 "blockaddress may not be used with the entry block!", Entry);
3407 unsigned NumDebugAttachments = 0, NumProfAttachments = 0,
3408 NumKCFIAttachments = 0;
3410 for (
const auto &
I : MDs) {
3412 auto AllowLocs = AreDebugLocsAllowed::No;
3416 case LLVMContext::MD_dbg: {
3417 ++NumDebugAttachments;
3418 CheckDI(NumDebugAttachments == 1,
3419 "function must have a single !dbg attachment", &
F,
I.second);
3421 "function !dbg attachment must be a subprogram", &
F,
I.second);
3423 "function definition may only have a distinct !dbg attachment",
3427 const Function *&AttachedTo = DISubprogramAttachments[
SP];
3428 CheckDI(!AttachedTo || AttachedTo == &
F,
3429 "DISubprogram attached to more than one function", SP, &
F);
3431 AllowLocs = AreDebugLocsAllowed::Yes;
3434 case LLVMContext::MD_prof:
3435 ++NumProfAttachments;
3436 Check(NumProfAttachments == 1,
3437 "function must have a single !prof attachment", &
F,
I.second);
3439 case LLVMContext::MD_kcfi_type:
3440 ++NumKCFIAttachments;
3441 Check(NumKCFIAttachments == 1,
3442 "function must have a single !kcfi_type attachment", &
F,
3448 visitMDNode(*
I.second, AllowLocs);
3456 bool isMaterialized =
F.getParent()->isMaterialized();
3457 if (
F.isIntrinsic() && isMaterialized) {
3459 if (
F.hasAddressTaken(&U,
false,
true,
false,
3461 Check(
false,
"Invalid user of intrinsic instruction!", U);
3468 if (IID && (isMaterialized || !
F.materialized_use_empty())) {
3472 raw_string_ostream ErrOS(ErrMsg);
3475 Printable PrintDecl([&
F](raw_ostream &OS) {
F.print(OS); });
3476 Check(IsValid, ErrMsg, PrintDecl);
3483 IID, OverloadTys,
const_cast<Module *
>(
F.getParent()), FT);
3484 Check(ExpectedName ==
F.getName(),
3485 "Intrinsic name not mangled correctly for type arguments! "
3491 auto *
N =
F.getSubprogram();
3492 HasDebugInfo = (
N !=
nullptr);
3500 SmallPtrSet<const MDNode *, 32> Seen;
3512 "DILocation's scope must be a DILocalScope",
N, &
F, &
I,
DL, Parent);
3514 DILocalScope *
Scope =
DL->getInlinedAtScope();
3515 Check(Scope,
"Failed to find DILocalScope",
DL);
3517 if (!Seen.
insert(Scope).second)
3521 if (hasDIScopeCycle(Scope))
3524 DISubprogram *
SP =
Scope->getSubprogram();
3528 if ((Scope != SP) && !Seen.
insert(SP).second)
3532 "!dbg attachment points at wrong subprogram for function",
N, &
F,
3536 for (
auto &
I : BB) {
3537 VisitDebugLoc(
I,
I.getDebugLoc().getAsMDNode());
3539 if (
auto MD =
I.getMetadata(LLVMContext::MD_loop))
3542 if (BrokenDebugInfo)
3549void Verifier::visitBasicBlock(BasicBlock &BB) {
3550 InstsInThisBlock.
clear();
3551 ConvergenceVerifyHelper.
visit(BB);
3562 for (
const PHINode &PN : BB.
phis()) {
3563 Check(PN.getNumIncomingValues() == Preds.size(),
3564 "PHINode should have one entry for each predecessor of its "
3565 "parent basic block!",
3570 Values.reserve(PN.getNumIncomingValues());
3571 for (
unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i)
3573 std::make_pair(PN.getIncomingBlock(i), PN.getIncomingValue(i)));
3576 for (
unsigned i = 0, e =
Values.size(); i != e; ++i) {
3583 "PHI node has multiple entries for the same basic block with "
3584 "different incoming values!",
3590 "PHI node entries do not match predecessors!", &PN,
3591 Values[i].first, Preds[i]);
3599 Check(
I.getParent() == &BB,
"Instruction has bogus parent pointer!");
3603 CheckDI(!BB.getTrailingDbgRecords(),
"Basic Block has trailing DbgRecords!",
3607void Verifier::visitTerminator(Instruction &
I) {
3609 Check(&
I ==
I.getParent()->getTerminator(),
3610 "Terminator found in the middle of a basic block!",
I.getParent());
3611 visitInstruction(
I);
3614void Verifier::visitCondBrInst(CondBrInst &BI) {
3616 "Branch condition is not 'i1' type!", &BI, BI.
getCondition());
3617 visitTerminator(BI);
3620void Verifier::visitReturnInst(ReturnInst &RI) {
3623 if (
F->getReturnType()->isVoidTy())
3625 "Found return instr that returns non-void in Function of void "
3627 &RI,
F->getReturnType());
3630 "Function return type does not match operand "
3631 "type of return inst!",
3632 &RI,
F->getReturnType());
3636 visitTerminator(RI);
3639void Verifier::visitSwitchInst(SwitchInst &SI) {
3640 Check(
SI.getType()->isVoidTy(),
"Switch must have void result type!", &SI);
3643 Type *SwitchTy =
SI.getCondition()->getType();
3644 SmallPtrSet<ConstantInt*, 32>
Constants;
3645 for (
auto &Case :
SI.cases()) {
3647 "Case value is not a constant integer.", &SI);
3648 Check(Case.getCaseValue()->getType() == SwitchTy,
3649 "Switch constants must all be same type as switch value!", &SI);
3651 "Duplicate integer as switch case", &SI, Case.getCaseValue());
3654 visitTerminator(SI);
3657void Verifier::visitIndirectBrInst(IndirectBrInst &BI) {
3659 "Indirectbr operand must have pointer type!", &BI);
3662 "Indirectbr destinations must all have pointer type!", &BI);
3664 visitTerminator(BI);
3673void Verifier::visitCallBrInst(CallBrInst &CBI) {
3676 "callbr: indirect function / invalid signature");
3678 "callbr for intrinsics currently doesn't support operand bundles");
3682 "callbr currently only supports asm-goto and selected intrinsics");
3687 Check(!
IA->canThrow(),
"Unwinding from Callbr is not allowed");
3689 verifyInlineAsmCall(CBI);
3691 visitTerminator(CBI);
3694void Verifier::visitSelectInst(SelectInst &SI) {
3697 "Invalid operands for select instruction!", &SI);
3699 Check(
SI.getTrueValue()->getType() ==
SI.getType(),
3700 "Select values must have same type as select instruction!", &SI);
3701 visitInstruction(SI);
3707void Verifier::visitUserOp1(Instruction &
I) {
3708 Check(
false,
"User-defined operators should not live outside of a pass!", &
I);
3711void Verifier::visitTruncInst(TruncInst &
I) {
3713 Type *SrcTy =
I.getOperand(0)->getType();
3714 Type *DestTy =
I.getType();
3723 "trunc source and destination must both be a vector or neither", &
I);
3724 Check(SrcBitSize > DestBitSize,
"DestTy too big for Trunc", &
I);
3726 visitInstruction(
I);
3729void Verifier::visitZExtInst(ZExtInst &
I) {
3731 Type *SrcTy =
I.getOperand(0)->getType();
3732 Type *DestTy =
I.getType();
3738 "zext source and destination must both be a vector or neither", &
I);
3742 Check(SrcBitSize < DestBitSize,
"Type too small for ZExt", &
I);
3744 visitInstruction(
I);
3747void Verifier::visitSExtInst(SExtInst &
I) {
3749 Type *SrcTy =
I.getOperand(0)->getType();
3750 Type *DestTy =
I.getType();
3759 "sext source and destination must both be a vector or neither", &
I);
3760 Check(SrcBitSize < DestBitSize,
"Type too small for SExt", &
I);
3762 visitInstruction(
I);
3765void Verifier::visitFPTruncInst(FPTruncInst &
I) {
3767 Type *SrcTy =
I.getOperand(0)->getType();
3768 Type *DestTy =
I.getType();
3776 "fptrunc source and destination must both be a vector or neither", &
I);
3777 Check(SrcBitSize > DestBitSize,
"DestTy too big for FPTrunc", &
I);
3779 visitInstruction(
I);
3782void Verifier::visitFPExtInst(FPExtInst &
I) {
3784 Type *SrcTy =
I.getOperand(0)->getType();
3785 Type *DestTy =
I.getType();
3794 "fpext source and destination must both be a vector or neither", &
I);
3795 Check(SrcBitSize < DestBitSize,
"DestTy too small for FPExt", &
I);
3797 visitInstruction(
I);
3800void Verifier::visitUIToFPInst(UIToFPInst &
I) {
3802 Type *SrcTy =
I.getOperand(0)->getType();
3803 Type *DestTy =
I.getType();
3808 Check(SrcVec == DstVec,
3809 "UIToFP source and dest must both be vector or scalar", &
I);
3811 "UIToFP source must be integer or integer vector", &
I);
3815 if (SrcVec && DstVec)
3818 "UIToFP source and dest vector length mismatch", &
I);
3820 visitInstruction(
I);
3823void Verifier::visitSIToFPInst(SIToFPInst &
I) {
3825 Type *SrcTy =
I.getOperand(0)->getType();
3826 Type *DestTy =
I.getType();
3831 Check(SrcVec == DstVec,
3832 "SIToFP source and dest must both be vector or scalar", &
I);
3834 "SIToFP source must be integer or integer vector", &
I);
3838 if (SrcVec && DstVec)
3841 "SIToFP source and dest vector length mismatch", &
I);
3843 visitInstruction(
I);
3846void Verifier::visitFPToUIInst(FPToUIInst &
I) {
3848 Type *SrcTy =
I.getOperand(0)->getType();
3849 Type *DestTy =
I.getType();
3854 Check(SrcVec == DstVec,
3855 "FPToUI source and dest must both be vector or scalar", &
I);
3858 "FPToUI result must be integer or integer vector", &
I);
3860 if (SrcVec && DstVec)
3863 "FPToUI source and dest vector length mismatch", &
I);
3865 visitInstruction(
I);
3868void Verifier::visitFPToSIInst(FPToSIInst &
I) {
3870 Type *SrcTy =
I.getOperand(0)->getType();
3871 Type *DestTy =
I.getType();
3876 Check(SrcVec == DstVec,
3877 "FPToSI source and dest must both be vector or scalar", &
I);
3880 "FPToSI result must be integer or integer vector", &
I);
3882 if (SrcVec && DstVec)
3885 "FPToSI source and dest vector length mismatch", &
I);
3887 visitInstruction(
I);
3890void Verifier::checkPtrToAddr(
Type *SrcTy,
Type *DestTy,
const Value &V) {
3899 Check(VSrc->getElementCount() == VDest->getElementCount(),
3900 "PtrToAddr vector length mismatch", V);
3903 Type *AddrTy =
DL.getAddressType(SrcTy);
3904 Check(AddrTy == DestTy,
"PtrToAddr result must be address width", V);
3907void Verifier::visitPtrToAddrInst(PtrToAddrInst &
I) {
3908 checkPtrToAddr(
I.getOperand(0)->getType(),
I.getType(),
I);
3909 visitInstruction(
I);
3912void Verifier::visitPtrToIntInst(PtrToIntInst &
I) {
3914 Type *SrcTy =
I.getOperand(0)->getType();
3915 Type *DestTy =
I.getType();
3926 Check(VSrc->getElementCount() == VDest->getElementCount(),
3927 "PtrToInt Vector length mismatch", &
I);
3930 visitInstruction(
I);
3933void Verifier::visitIntToPtrInst(IntToPtrInst &
I) {
3935 Type *SrcTy =
I.getOperand(0)->getType();
3936 Type *DestTy =
I.getType();
3946 Check(VSrc->getElementCount() == VDest->getElementCount(),
3947 "IntToPtr Vector length mismatch", &
I);
3949 visitInstruction(
I);
3952void Verifier::visitBitCastInst(BitCastInst &
I) {
3955 "Invalid bitcast", &
I);
3956 visitInstruction(
I);
3959void Verifier::visitAddrSpaceCastInst(AddrSpaceCastInst &
I) {
3960 Type *SrcTy =
I.getOperand(0)->getType();
3961 Type *DestTy =
I.getType();
3968 "AddrSpaceCast must be between different address spaces", &
I);
3970 Check(SrcVTy->getElementCount() ==
3972 "AddrSpaceCast vector pointer number of elements mismatch", &
I);
3973 visitInstruction(
I);
3978void Verifier::visitPHINode(PHINode &PN) {
3985 "PHI nodes not grouped at top of basic block!", &PN, PN.
getParent());
3994 "PHI node operands are not the same type as the result!", &PN);
3999 visitInstruction(PN);
4002void Verifier::visitCallBase(CallBase &
Call) {
4004 "Called function must be a pointer!",
Call);
4008 if (FTy->isVarArg())
4010 "Called function requires more parameters than were provided!",
Call);
4013 "Incorrect number of arguments passed to called function!",
Call);
4016 for (
unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
4018 "Call parameter type does not match function signature!",
4024 "Attribute after last parameter!",
Call);
4031 "Intrinsic called with incompatible signature",
Call);
4035 "calling convention does not permit calls",
Call);
4041 auto VerifyTypeAlign = [&](
Type *Ty,
const Twine &Message) {
4044 Align ABIAlign =
DL.getABITypeAlign(Ty);
4045 Check(ABIAlign.
value() <= Value::MaximumAlignment,
4046 "Incorrect alignment of " + Message +
" to called function!",
Call);
4050 VerifyTypeAlign(FTy->getReturnType(),
"return type");
4051 for (
unsigned i = 0, e = FTy->getNumParams(); i != e; ++i) {
4052 Type *Ty = FTy->getParamType(i);
4053 VerifyTypeAlign(Ty,
"argument passed");
4057 if (
Attrs.hasFnAttr(Attribute::Speculatable)) {
4061 "speculatable attribute may not apply to call sites",
Call);
4064 if (
Attrs.hasFnAttr(Attribute::Preallocated)) {
4066 "preallocated as a call site attribute can only be on "
4067 "llvm.call.preallocated.arg");
4070 Check(!
Attrs.hasFnAttr(Attribute::DenormalFPEnv),
4071 "denormal_fpenv attribute may not apply to call sites",
Call);
4082 Check(AI->isUsedWithInAlloca(),
4083 "inalloca argument for call has mismatched alloca", AI,
Call);
4089 for (
unsigned i = 0, e = FTy->getNumParams(); i != e; ++i) {
4093 Check(AI->isSwiftError(),
4094 "swifterror argument for call has mismatched alloca", AI,
Call);
4098 Check(ArgI,
"swifterror argument should come from an alloca or parameter",
4099 SwiftErrorArg,
Call);
4100 Check(ArgI->hasSwiftErrorAttr(),
4101 "swifterror argument for call has mismatched parameter", ArgI,
4105 if (
Attrs.hasParamAttr(i, Attribute::ImmArg)) {
4108 Check(Callee &&
Callee->hasParamAttribute(i, Attribute::ImmArg),
4117 "immarg operand has non-immediate parameter", ArgVal,
Call);
4123 const ConstantRange &CR =
4126 formatv(
"immarg value {} for arg {} out of range {}",
4127 CI->getValue(), i, CR),
4134 formatv(
"immarg value {} for arg {} out of range set",
4144 Check(hasOB != isMustTail,
4145 "preallocated operand either requires a preallocated bundle or "
4146 "the call to be musttail (but not both)",
4151 if (FTy->isVarArg()) {
4153 bool SawNest =
false;
4154 bool SawReturned =
false;
4156 for (
unsigned Idx = 0; Idx < FTy->getNumParams(); ++Idx) {
4157 if (
Attrs.hasParamAttr(Idx, Attribute::Nest))
4159 if (
Attrs.hasParamAttr(Idx, Attribute::Returned))
4164 for (
unsigned Idx = FTy->getNumParams(); Idx <
Call.
arg_size(); ++Idx) {
4166 AttributeSet ArgAttrs =
Attrs.getParamAttrs(Idx);
4167 verifyParameterAttrs(ArgAttrs, Ty, &
Call);
4170 Check(!SawNest,
"More than one parameter has attribute nest!",
Call);
4175 Check(!SawReturned,
"More than one parameter has attribute returned!",
4178 "Incompatible argument and return types for 'returned' "
4188 "Attribute 'sret' cannot be used for vararg call arguments!",
4193 "inalloca isn't on the last argument!",
Call);
4199 for (
Type *ParamTy : FTy->params()) {
4200 Check(!ParamTy->isMetadataTy(),
4201 "Function has metadata parameter but isn't an intrinsic",
Call);
4202 Check(!ParamTy->isTokenLikeTy(),
4203 "Function has token parameter but isn't an intrinsic",
Call);
4209 Check(!FTy->getReturnType()->isTokenLikeTy(),
4210 "Return type cannot be token for indirect call!");
4211 Check(!FTy->getReturnType()->isX86_AMXTy(),
4212 "Return type cannot be x86_amx for indirect call!");
4216 visitIntrinsicCall(ID,
Call);
4221 bool FoundDeoptBundle =
false, FoundFuncletBundle =
false,
4222 FoundGCTransitionBundle =
false, FoundCFGuardTargetBundle =
false,
4223 FoundPreallocatedBundle =
false, FoundGCLiveBundle =
false,
4224 FoundPtrauthBundle =
false, FoundKCFIBundle =
false,
4225 FoundAttachedCallBundle =
false;
4230 "Operand bundle operands cannot be labels",
Call);
4233 Check(!FoundDeoptBundle,
"Multiple deopt operand bundles",
Call);
4234 FoundDeoptBundle =
true;
4236 Check(!FoundGCTransitionBundle,
"Multiple gc-transition operand bundles",
4238 FoundGCTransitionBundle =
true;
4240 Check(!FoundFuncletBundle,
"Multiple funclet operand bundles",
Call);
4241 FoundFuncletBundle =
true;
4243 "Expected exactly one funclet bundle operand",
Call);
4245 "Funclet bundle operands should correspond to a FuncletPadInst",
4248 Check(!FoundCFGuardTargetBundle,
"Multiple CFGuardTarget operand bundles",
4250 FoundCFGuardTargetBundle =
true;
4252 "Expected exactly one cfguardtarget bundle operand",
Call);
4254 Check(!FoundPtrauthBundle,
"Multiple ptrauth operand bundles",
Call);
4255 FoundPtrauthBundle =
true;
4257 "Expected exactly two ptrauth bundle operands",
Call);
4259 BU.
Inputs[0]->getType()->isIntegerTy(32),
4260 "Ptrauth bundle key operand must be an i32 constant",
Call);
4262 "Ptrauth bundle discriminator operand must be an i64",
Call);
4264 Check(!FoundKCFIBundle,
"Multiple kcfi operand bundles",
Call);
4265 FoundKCFIBundle =
true;
4266 Check(BU.
Inputs.size() == 1,
"Expected exactly one kcfi bundle operand",
4269 BU.
Inputs[0]->getType()->isIntegerTy(32),
4270 "Kcfi bundle operand must be an i32 constant",
Call);
4272 Check(!FoundPreallocatedBundle,
"Multiple preallocated operand bundles",
4274 FoundPreallocatedBundle =
true;
4276 "Expected exactly one preallocated bundle operand",
Call);
4279 Input->getIntrinsicID() == Intrinsic::call_preallocated_setup,
4280 "\"preallocated\" argument must be a token from "
4281 "llvm.call.preallocated.setup",
4284 Check(!FoundGCLiveBundle,
"Multiple gc-live operand bundles",
Call);
4285 FoundGCLiveBundle =
true;
4287 Check(!FoundAttachedCallBundle,
4288 "Multiple \"clang.arc.attachedcall\" operand bundles",
Call);
4289 FoundAttachedCallBundle =
true;
4290 verifyAttachedCallBundle(
Call, BU);
4296 "Direct call cannot have a ptrauth bundle",
Call);
4308 "inlinable function call in a function with "
4309 "debug info must have a !dbg location",
4313 verifyInlineAsmCall(
Call);
4317 visitInstruction(
Call);
4320void Verifier::verifyTailCCMustTailAttrs(
const AttrBuilder &Attrs,
4323 Twine(
"inalloca attribute not allowed in ") +
Context);
4325 Twine(
"inreg attribute not allowed in ") +
Context);
4326 Check(!
Attrs.contains(Attribute::SwiftError),
4327 Twine(
"swifterror attribute not allowed in ") +
Context);
4328 Check(!
Attrs.contains(Attribute::Preallocated),
4329 Twine(
"preallocated attribute not allowed in ") +
Context);
4331 Twine(
"byref attribute not allowed in ") +
Context);
4336 Attribute::StructRet, Attribute::ByVal, Attribute::InAlloca,
4337 Attribute::InReg, Attribute::StackAlignment, Attribute::SwiftSelf,
4338 Attribute::SwiftAsync, Attribute::SwiftError, Attribute::Preallocated,
4340 AttrBuilder Copy(
C);
4341 for (
auto AK : ABIAttrs) {
4342 Attribute Attr = Attrs.getParamAttrs(
I).getAttribute(AK);
4344 Copy.addAttribute(Attr);
4348 if (Attrs.hasParamAttr(
I, Attribute::Alignment) &&
4349 (Attrs.hasParamAttr(
I, Attribute::ByVal) ||
4350 Attrs.hasParamAttr(
I, Attribute::ByRef)))
4351 Copy.addAlignmentAttr(Attrs.getParamAlignment(
I));
4355void Verifier::verifyMustTailCall(CallInst &CI) {
4359 FunctionType *CallerTy =
F->getFunctionType();
4361 Check(CallerTy->isVarArg() == CalleeTy->isVarArg(),
4362 "cannot guarantee tail call due to mismatched varargs", &CI);
4363 Check(CallerTy->getReturnType() == CalleeTy->getReturnType(),
4364 "cannot guarantee tail call due to mismatched return types", &CI);
4368 "cannot guarantee tail call due to mismatched calling conv", &CI);
4376 Check(Ret,
"musttail call must precede a ret", &CI);
4379 "musttail call result must be returned", Ret);
4381 AttributeList CallerAttrs =
F->getAttributes();
4386 CI.
getCallingConv() == CallingConv::Tail ?
"tailcc" :
"swifttailcc";
4390 for (
unsigned I = 0,
E = CallerTy->getNumParams();
I !=
E; ++
I) {
4392 SmallString<32>
Context{CCName, StringRef(
" musttail caller")};
4393 verifyTailCCMustTailAttrs(ABIAttrs,
Context);
4395 for (
unsigned I = 0,
E = CalleeTy->getNumParams();
I !=
E; ++
I) {
4397 SmallString<32>
Context{CCName, StringRef(
" musttail callee")};
4398 verifyTailCCMustTailAttrs(ABIAttrs,
Context);
4401 Check(!CallerTy->isVarArg(), Twine(
"cannot guarantee ") + CCName +
4402 " tail call for varargs function");
4408 Check(CallerTy->getNumParams() == CalleeTy->getNumParams(),
4409 "cannot guarantee tail call due to mismatched parameter counts", &CI);
4410 for (
unsigned I = 0,
E = CallerTy->getNumParams();
I !=
E; ++
I) {
4411 Check(CallerTy->getParamType(
I) == CalleeTy->getParamType(
I),
4412 "cannot guarantee tail call due to mismatched parameter types",
4419 for (
unsigned I = 0,
E = CallerTy->getNumParams();
I !=
E; ++
I) {
4422 Check(CallerABIAttrs == CalleeABIAttrs,
4423 "cannot guarantee tail call due to mismatched ABI impacting "
4424 "function attributes",
4429void Verifier::visitCallInst(CallInst &CI) {
4433 verifyMustTailCall(CI);
4436void Verifier::visitInvokeInst(InvokeInst &
II) {
4442 II.getUnwindDest()->isEHPad(),
4443 "The unwind destination does not have an exception handling instruction!",
4446 visitTerminator(
II);
4451void Verifier::visitUnaryOperator(UnaryOperator &U) {
4452 Check(
U.getType() ==
U.getOperand(0)->getType(),
4453 "Unary operators must have same type for"
4454 "operands and result!",
4457 switch (
U.getOpcode()) {
4460 case Instruction::FNeg:
4461 Check(
U.getType()->isFPOrFPVectorTy(),
4462 "FNeg operator only works with float types!", &U);
4468 visitInstruction(U);
4474void Verifier::visitBinaryOperator(BinaryOperator &
B) {
4475 Check(
B.getOperand(0)->getType() ==
B.getOperand(1)->getType(),
4476 "Both operands to a binary operator are not of the same type!", &
B);
4478 switch (
B.getOpcode()) {
4481 case Instruction::Add:
4482 case Instruction::Sub:
4483 case Instruction::Mul:
4484 case Instruction::SDiv:
4485 case Instruction::UDiv:
4486 case Instruction::SRem:
4487 case Instruction::URem:
4488 Check(
B.getType()->isIntOrIntVectorTy(),
4489 "Integer arithmetic operators only work with integral types!", &
B);
4490 Check(
B.getType() ==
B.getOperand(0)->getType(),
4491 "Integer arithmetic operators must have same type "
4492 "for operands and result!",
4497 case Instruction::FAdd:
4498 case Instruction::FSub:
4499 case Instruction::FMul:
4500 case Instruction::FDiv:
4501 case Instruction::FRem:
4502 Check(
B.getType()->isFPOrFPVectorTy(),
4503 "Floating-point arithmetic operators only work with "
4504 "floating-point types!",
4506 Check(
B.getType() ==
B.getOperand(0)->getType(),
4507 "Floating-point arithmetic operators must have same type "
4508 "for operands and result!",
4512 case Instruction::And:
4513 case Instruction::Or:
4514 case Instruction::Xor:
4515 Check(
B.getType()->isIntOrIntVectorTy(),
4516 "Logical operators only work with integral types!", &
B);
4517 Check(
B.getType() ==
B.getOperand(0)->getType(),
4518 "Logical operators must have same type for operands and result!", &
B);
4520 case Instruction::Shl:
4521 case Instruction::LShr:
4522 case Instruction::AShr:
4523 Check(
B.getType()->isIntOrIntVectorTy(),
4524 "Shifts only work with integral types!", &
B);
4525 Check(
B.getType() ==
B.getOperand(0)->getType(),
4526 "Shift return type must be same as operands!", &
B);
4532 visitInstruction(
B);
4535void Verifier::visitICmpInst(ICmpInst &IC) {
4539 Check(Op0Ty == Op1Ty,
4540 "Both operands to ICmp instruction are not of the same type!", &IC);
4543 "Invalid operand types for ICmp instruction", &IC);
4547 visitInstruction(IC);
4550void Verifier::visitFCmpInst(FCmpInst &FC) {
4552 Type *Op0Ty =
FC.getOperand(0)->getType();
4553 Type *Op1Ty =
FC.getOperand(1)->getType();
4554 Check(Op0Ty == Op1Ty,
4555 "Both operands to FCmp instruction are not of the same type!", &FC);
4560 Check(
FC.isFPPredicate(),
"Invalid predicate in FCmp instruction!", &FC);
4562 visitInstruction(FC);
4565void Verifier::visitExtractElementInst(ExtractElementInst &EI) {
4567 "Invalid extractelement operands!", &EI);
4568 visitInstruction(EI);
4571void Verifier::visitInsertElementInst(InsertElementInst &IE) {
4574 "Invalid insertelement operands!", &IE);
4575 visitInstruction(IE);
4578void Verifier::visitShuffleVectorInst(ShuffleVectorInst &SV) {
4580 SV.getShuffleMask()),
4581 "Invalid shufflevector operands!", &SV);
4582 visitInstruction(SV);
4585void Verifier::visitGetElementPtrInst(GetElementPtrInst &
GEP) {
4587 GEP.getModule()->getModuleFlag(
"require-logical-pointer")))
4588 Check(!MD->getZExtValue(),
4589 "Non-logical getelementptr disallowed for this module.");
4591 Type *TargetTy =
GEP.getPointerOperandType()->getScalarType();
4594 "GEP base pointer is not a vector or a vector of pointers", &
GEP);
4595 Check(
GEP.getSourceElementType()->isSized(),
"GEP into unsized type!", &
GEP);
4598 Check(!STy->isScalableTy(),
4599 "getelementptr cannot target structure that contains scalable vector"
4604 SmallVector<Value *, 16> Idxs(
GEP.indices());
4606 all_of(Idxs, [](
Value *V) {
return V->getType()->isIntOrIntVectorTy(); }),
4607 "GEP indexes must be integers", &
GEP);
4610 Check(ElTy,
"Invalid indices for GEP pointer type!", &
GEP);
4614 Check(PtrTy &&
GEP.getResultElementType() == ElTy,
4615 "GEP is not of right type for indices!", &
GEP, ElTy);
4619 ElementCount GEPWidth = GEPVTy->getElementCount();
4620 if (
GEP.getPointerOperandType()->isVectorTy())
4624 "Vector GEP result width doesn't match operand's", &
GEP);
4625 for (
Value *Idx : Idxs) {
4626 Type *IndexTy = Idx->getType();
4628 ElementCount IndexWidth = IndexVTy->getElementCount();
4629 Check(IndexWidth == GEPWidth,
"Invalid GEP index vector width", &
GEP);
4632 "All GEP indices should be of integer type");
4639 GTI != GTE; ++GTI) {
4640 if (GTI.isVector()) {
4641 Type *ElemTy = GTI.getIndexedType();
4642 Check(
DL.typeSizeEqualsStoreSize(ElemTy),
4643 "GEP into vector with non-byte-addressable element type", &
GEP);
4647 Check(
GEP.getAddressSpace() == PtrTy->getAddressSpace(),
4648 "GEP address space doesn't match type", &
GEP);
4650 visitInstruction(
GEP);
4654 return A.getUpper() ==
B.getLower() ||
A.getLower() ==
B.getUpper();
4659void Verifier::verifyRangeLikeMetadata(
const Value &
I,
const MDNode *
Range,
4660 Type *Ty, RangeLikeMetadataKind Kind) {
4661 unsigned NumOperands =
Range->getNumOperands();
4662 Check(NumOperands % 2 == 0,
"Unfinished range!",
Range);
4663 unsigned NumRanges = NumOperands / 2;
4664 Check(NumRanges >= 1,
"It should have at least one range!",
Range);
4666 ConstantRange LastRange(1,
true);
4667 for (
unsigned i = 0; i < NumRanges; ++i) {
4670 Check(
Low,
"The lower limit must be an integer!",
Low);
4675 Check(
High->getType() ==
Low->getType(),
"Range pair types must match!",
4678 if (Kind == RangeLikeMetadataKind::NoaliasAddrspace) {
4680 "noalias.addrspace type must be i32!", &
I);
4683 "Range types must match instruction type!", &
I);
4686 APInt HighV =
High->getValue();
4687 APInt LowV =
Low->getValue();
4692 "The upper and lower limits cannot be the same value", &
I);
4694 ConstantRange CurRange(LowV, HighV);
4695 Check(!CurRange.isEmptySet() &&
4696 (Kind == RangeLikeMetadataKind::AbsoluteSymbol ||
4697 !CurRange.isFullSet()),
4698 "Range must not be empty!",
Range);
4700 Check(CurRange.intersectWith(LastRange).isEmptySet(),
4701 "Intervals are overlapping",
Range);
4702 Check(LowV.
sgt(LastRange.getLower()),
"Intervals are not in order",
4707 LastRange = ConstantRange(LowV, HighV);
4709 if (NumRanges > 2) {
4714 ConstantRange FirstRange(FirstLow, FirstHigh);
4715 Check(FirstRange.intersectWith(LastRange).isEmptySet(),
4716 "Intervals are overlapping",
Range);
4722void Verifier::visitRangeMetadata(Instruction &
I, MDNode *
Range,
Type *Ty) {
4724 "precondition violation");
4725 verifyRangeLikeMetadata(
I,
Range, Ty, RangeLikeMetadataKind::Range);
4728void Verifier::visitNoFPClassMetadata(Instruction &
I, MDNode *NoFPClass,
4730 Check(AttributeFuncs::isNoFPClassCompatibleType(Ty),
4731 "nofpclass only applies to floating-point typed loads",
I);
4734 "nofpclass must have exactly one entry", NoFPClass);
4735 ConstantInt *MaskVal =
4738 "nofpclass entry must be a constant i32", NoFPClass);
4740 Check(Val != 0,
"'nofpclass' must have at least one test bit set", NoFPClass,
4744 "Invalid value for 'nofpclass' test mask", NoFPClass,
I);
4747void Verifier::visitNoaliasAddrspaceMetadata(Instruction &
I, MDNode *
Range,
4750 "precondition violation");
4751 verifyRangeLikeMetadata(
I,
Range, Ty,
4752 RangeLikeMetadataKind::NoaliasAddrspace);
4755void Verifier::checkAtomicMemAccessSize(
Type *Ty,
const Instruction *
I) {
4756 unsigned Size =
DL.getTypeSizeInBits(Ty).getFixedValue();
4757 Check(
Size >= 8,
"atomic memory access' size must be byte-sized", Ty,
I);
4759 "atomic memory access' operand must have a power-of-two size", Ty,
I);
4762void Verifier::visitLoadInst(LoadInst &LI) {
4764 Check(PTy,
"Load operand must be a pointer.", &LI);
4767 Check(
A->value() <= Value::MaximumAlignment,
4768 "huge alignment values are unsupported", &LI);
4770 Check(ElTy->
isSized(),
"loading unsized types is not allowed", &LI);
4773 LI.
getOrdering() != AtomicOrdering::AcquireRelease,
4774 "Load cannot have Release ordering", &LI);
4778 "atomic elementwise load cannot be sequentially consistent.", &LI);
4781 "atomic elementwise load operand must have fixed vector type!", &LI,
4784 checkAtomicMemAccessSize(VecTy->getElementType(), &LI);
4790 "atomic load operand must have integer, byte, pointer, floating "
4791 "point, or vector type!",
4794 checkAtomicMemAccessSize(ElTy, &LI);
4798 "Non-atomic load cannot have SynchronizationScope specified", &LI);
4801 visitInstruction(LI);
4804void Verifier::visitStoreInst(StoreInst &SI) {
4806 Check(PTy,
"Store operand must be a pointer.", &SI);
4807 Type *ElTy =
SI.getOperand(0)->getType();
4808 if (MaybeAlign
A =
SI.getAlign()) {
4809 Check(
A->value() <= Value::MaximumAlignment,
4810 "huge alignment values are unsupported", &SI);
4812 Check(ElTy->
isSized(),
"storing unsized types is not allowed", &SI);
4813 if (
SI.isAtomic()) {
4814 Check(
SI.getOrdering() != AtomicOrdering::Acquire &&
4815 SI.getOrdering() != AtomicOrdering::AcquireRelease,
4816 "Store cannot have Acquire ordering", &SI);
4818 if (
SI.isElementwise()) {
4819 Check(
SI.getOrdering() != AtomicOrdering::SequentiallyConsistent,
4820 "atomic elementwise store cannot be sequentially consistent.", &SI);
4824 "atomic elementwise store operand must have fixed vector type!",
4827 checkAtomicMemAccessSize(VecTy->getElementType(), &SI);
4833 "atomic store operand must have integer, byte, pointer, floating "
4834 "point, or vector type!",
4836 checkAtomicMemAccessSize(ElTy, &SI);
4838 Check(!
SI.isElementwise(),
"non-atomic store cannot be elementwise", &SI);
4840 "Non-atomic store cannot have SynchronizationScope specified", &SI);
4842 visitInstruction(SI);
4846void Verifier::verifySwiftErrorCall(CallBase &
Call,
4847 const Value *SwiftErrorVal) {
4849 if (
I.value() == SwiftErrorVal) {
4851 "swifterror value when used in a callsite should be marked "
4852 "with swifterror attribute",
4853 SwiftErrorVal,
Call);
4858void Verifier::verifySwiftErrorValue(
const Value *SwiftErrorVal) {
4861 for (
const User *U : SwiftErrorVal->
users()) {
4864 "swifterror value can only be loaded and stored from, or "
4865 "as a swifterror argument!",
4869 Check(StoreI->getOperand(1) == SwiftErrorVal,
4870 "swifterror value should be the second operand when used "
4874 verifySwiftErrorCall(*
const_cast<CallBase *
>(
Call), SwiftErrorVal);
4878void Verifier::visitAllocaInst(AllocaInst &AI) {
4881 Check(!MD->getZExtValue(),
4882 "Non-logical alloca disallowed for this module.");
4885 Check(Ty->
isSized(),
"Cannot allocate unsized type", &AI);
4889 "Alloca has illegal target extension type", &AI);
4891 "Alloca array size must have integer type", &AI);
4893 Check(
A->value() <= Value::MaximumAlignment,
4894 "huge alignment values are unsupported", &AI);
4900 "swifterror alloca must not be array allocation", &AI);
4901 verifySwiftErrorValue(&AI);
4904 visitInstruction(AI);
4910void Verifier::visitAtomicCmpXchgInst(AtomicCmpXchgInst &CXI) {
4913 "cmpxchg operand must have integer or pointer type", ElTy, &CXI);
4914 checkAtomicMemAccessSize(ElTy, &CXI);
4915 visitInstruction(CXI);
4918void Verifier::visitAtomicRMWInst(AtomicRMWInst &RMWI) {
4920 "atomicrmw instructions cannot be unordered.", &RMWI);
4926 "atomicrmw elementwise cannot be sequentially consistent.", &RMWI);
4928 Check(VecTy,
"atomicrmw elementwise operand must have fixed vector type!",
4931 checkAtomicMemAccessSize(VecTy->getElementType(), &RMWI);
4938 " operand must be an integer type, a floating-point type, a "
4939 "pointer type, or a fixed vector of any of these types!",
4944 " operand must have floating-point or fixed vector of "
4951 " operand must have integer or fixed vector of integer type!",
4954 checkAtomicMemAccessSize(ElTy, &RMWI);
4956 "Invalid binary operation!", &RMWI);
4957 visitInstruction(RMWI);
4960void Verifier::visitFenceInst(FenceInst &FI) {
4962 Check(Ordering == AtomicOrdering::Acquire ||
4963 Ordering == AtomicOrdering::Release ||
4964 Ordering == AtomicOrdering::AcquireRelease ||
4965 Ordering == AtomicOrdering::SequentiallyConsistent,
4966 "fence instructions may only have acquire, release, acq_rel, or "
4967 "seq_cst ordering.",
4969 visitInstruction(FI);
4972void Verifier::visitExtractValueInst(ExtractValueInst &EVI) {
4975 "Invalid ExtractValueInst operands!", &EVI);
4977 visitInstruction(EVI);
4980void Verifier::visitInsertValueInst(InsertValueInst &IVI) {
4984 "Invalid InsertValueInst operands!", &IVI);
4986 visitInstruction(IVI);
4991 return FPI->getParentPad();
4996void Verifier::visitEHPadPredecessors(Instruction &
I) {
5002 Check(BB != &
F->getEntryBlock(),
"EH pad cannot be in entry block.", &
I);
5010 Check(
II &&
II->getUnwindDest() == BB &&
II->getNormalDest() != BB,
5011 "Block containing LandingPadInst must be jumped to "
5012 "only by the unwind edge of an invoke.",
5020 "Block containg CatchPadInst must be jumped to "
5021 "only by its catchswitch.",
5023 Check(BB != CPI->getCatchSwitch()->getUnwindDest(),
5024 "Catchswitch cannot unwind to one of its catchpads",
5025 CPI->getCatchSwitch(), CPI);
5037 Check(
II->getUnwindDest() == BB &&
II->getNormalDest() != BB,
5038 "EH pad must be jumped to via an unwind edge", ToPad,
II);
5041 if (CalledFn && CalledFn->isIntrinsic() &&
II->doesNotThrow() &&
5045 FromPad = Bundle->Inputs[0];
5049 FromPad = CRI->getOperand(0);
5050 Check(FromPad != ToPadParent,
"A cleanupret must exit its cleanup", CRI);
5054 Check(
false,
"EH pad must be jumped to via an unwind edge", ToPad, TI);
5058 SmallPtrSet<Value *, 8> Seen;
5060 Check(FromPad != ToPad,
5061 "EH pad cannot handle exceptions raised within it", FromPad, TI);
5062 if (FromPad == ToPadParent) {
5067 "A single unwind edge may only enter one EH pad", TI);
5068 Check(Seen.
insert(FromPad).second,
"EH pad jumps through a cycle of pads",
5074 "Parent pad must be catchpad/cleanuppad/catchswitch", TI);
5079void Verifier::visitLandingPadInst(LandingPadInst &LPI) {
5083 "LandingPadInst needs at least one clause or to be a cleanup.", &LPI);
5085 visitEHPadPredecessors(LPI);
5087 if (!LandingPadResultTy)
5088 LandingPadResultTy = LPI.
getType();
5091 "The landingpad instruction should have a consistent result type "
5092 "inside a function.",
5096 Check(
F->hasPersonalityFn(),
5097 "LandingPadInst needs to be in a function with a personality.", &LPI);
5102 "LandingPadInst not the first non-PHI instruction in the block.", &LPI);
5108 "Catch operand does not have pointer type!", &LPI);
5110 Check(LPI.
isFilter(i),
"Clause is neither catch nor filter!", &LPI);
5112 "Filter operand is not an array of constants!", &LPI);
5116 visitInstruction(LPI);
5119void Verifier::visitResumeInst(ResumeInst &RI) {
5121 "ResumeInst needs to be in a function with a personality.", &RI);
5123 if (!LandingPadResultTy)
5127 "The resume instruction should have a consistent result type "
5128 "inside a function.",
5131 visitTerminator(RI);
5134void Verifier::visitCatchPadInst(CatchPadInst &CPI) {
5138 Check(
F->hasPersonalityFn(),
5139 "CatchPadInst needs to be in a function with a personality.", &CPI);
5142 "CatchPadInst needs to be directly nested in a CatchSwitchInst.",
5148 "CatchPadInst not the first non-PHI instruction in the block.", &CPI);
5153 return isa<Constant>(V) || isa<AllocaInst>(V);
5155 "Argument operand must be alloca or constant.", &CPI);
5157 visitEHPadPredecessors(CPI);
5158 visitFuncletPadInst(CPI);
5161void Verifier::visitCatchReturnInst(CatchReturnInst &CatchReturn) {
5163 "CatchReturnInst needs to be provided a CatchPad", &CatchReturn,
5166 visitTerminator(CatchReturn);
5169void Verifier::visitCleanupPadInst(CleanupPadInst &CPI) {
5173 Check(
F->hasPersonalityFn(),
5174 "CleanupPadInst needs to be in a function with a personality.", &CPI);
5179 "CleanupPadInst not the first non-PHI instruction in the block.", &CPI);
5183 "CleanupPadInst has an invalid parent.", &CPI);
5185 visitEHPadPredecessors(CPI);
5186 visitFuncletPadInst(CPI);
5189void Verifier::visitFuncletPadInst(FuncletPadInst &FPI) {
5190 User *FirstUser =
nullptr;
5191 Value *FirstUnwindPad =
nullptr;
5193 SmallPtrSet<FuncletPadInst *, 8> Seen;
5195 while (!Worklist.empty()) {
5196 FuncletPadInst *CurrentPad = Worklist.pop_back_val();
5198 "FuncletPadInst must not be nested within itself", CurrentPad);
5199 Value *UnresolvedAncestorPad =
nullptr;
5200 for (User *U : CurrentPad->
users()) {
5203 UnwindDest = CRI->getUnwindDest();
5209 if (CSI->unwindsToCaller())
5211 UnwindDest = CSI->getUnwindDest();
5213 UnwindDest =
II->getUnwindDest();
5223 Worklist.push_back(CPI);
5238 if (UnwindParent == CurrentPad)
5244 Value *ExitedPad = CurrentPad;
5247 if (ExitedPad == &FPI) {
5252 UnresolvedAncestorPad = &FPI;
5256 if (ExitedParent == UnwindParent) {
5260 UnresolvedAncestorPad = ExitedParent;
5263 ExitedPad = ExitedParent;
5269 UnresolvedAncestorPad = &FPI;
5276 Check(UnwindPad == FirstUnwindPad,
5277 "Unwind edges out of a funclet "
5278 "pad must have the same unwind "
5280 &FPI, U, FirstUser);
5283 FirstUnwindPad = UnwindPad;
5292 if (CurrentPad != &FPI)
5295 if (UnresolvedAncestorPad) {
5296 if (CurrentPad == UnresolvedAncestorPad) {
5300 assert(CurrentPad == &FPI);
5308 Value *ResolvedPad = CurrentPad;
5309 while (!Worklist.empty()) {
5310 Value *UnclePad = Worklist.back();
5314 while (ResolvedPad != AncestorPad) {
5316 if (ResolvedParent == UnresolvedAncestorPad) {
5319 ResolvedPad = ResolvedParent;
5323 if (ResolvedPad != AncestorPad)
5326 Worklist.pop_back();
5331 if (FirstUnwindPad) {
5333 BasicBlock *SwitchUnwindDest = CatchSwitch->getUnwindDest();
5334 Value *SwitchUnwindPad;
5335 if (SwitchUnwindDest)
5339 Check(SwitchUnwindPad == FirstUnwindPad,
5340 "Unwind edges out of a catch must have the same unwind dest as "
5341 "the parent catchswitch",
5342 &FPI, FirstUser, CatchSwitch);
5346 visitInstruction(FPI);
5349void Verifier::visitCatchSwitchInst(CatchSwitchInst &CatchSwitch) {
5353 Check(
F->hasPersonalityFn(),
5354 "CatchSwitchInst needs to be in a function with a personality.",
5360 "CatchSwitchInst not the first non-PHI instruction in the block.",
5365 "CatchSwitchInst has an invalid parent.", ParentPad);
5370 "CatchSwitchInst must unwind to an EH block which is not a "
5376 SiblingFuncletInfo[&CatchSwitch] = &CatchSwitch;
5380 "CatchSwitchInst cannot have empty handler list", &CatchSwitch);
5382 for (BasicBlock *Handler : CatchSwitch.
handlers()) {
5384 "CatchSwitchInst handlers must be catchpads", &CatchSwitch, Handler);
5387 visitEHPadPredecessors(CatchSwitch);
5388 visitTerminator(CatchSwitch);
5391void Verifier::visitCleanupReturnInst(CleanupReturnInst &CRI) {
5393 "CleanupReturnInst needs to be provided a CleanupPad", &CRI,
5399 "CleanupReturnInst must unwind to an EH block which is not a "
5404 visitTerminator(CRI);
5407void Verifier::verifyDominatesUse(Instruction &
I,
unsigned i) {
5413 if (
II->getNormalDest() ==
II->getUnwindDest())
5427 const Use &
U =
I.getOperandUse(i);
5428 Check(DT.dominates(
Op, U),
"Instruction does not dominate all uses!",
Op, &
I);
5431void Verifier::visitDereferenceableMetadata(Instruction&
I, MDNode* MD) {
5432 Check(
I.getType()->isPointerTy(),
5433 "dereferenceable, dereferenceable_or_null "
5434 "apply only to pointer types",
5437 "dereferenceable, dereferenceable_or_null apply only to load"
5438 " and inttoptr instructions, use attributes for calls or invokes",
5441 "dereferenceable, dereferenceable_or_null "
5442 "take one operand!",
5447 "dereferenceable_or_null metadata value must be an i64!",
5451void Verifier::visitNoFreeObjMetadata(Instruction &
I, MDNode *MD) {
5452 Check(
I.getType()->isPointerTy(),
"nofreeobj applies only to pointer types",
5455 "nofreeobj applies only to inttoptr instruction", &
I);
5459void Verifier::visitProfMetadata(Instruction &
I, MDNode *MD) {
5460 auto GetBranchingTerminatorNumOperands = [&]() {
5461 unsigned ExpectedNumOperands = 0;
5465 ExpectedNumOperands =
SI->getNumSuccessors();
5467 ExpectedNumOperands = 1;
5469 ExpectedNumOperands = IBI->getNumDestinations();
5471 ExpectedNumOperands = 2;
5474 return ExpectedNumOperands;
5477 "!prof annotations should have at least 1 operand", MD);
5479 Check(MD->
getOperand(0) !=
nullptr,
"first operand should not be null", MD);
5481 "expected string with name of the !prof annotation", MD);
5487 "'unknown' !prof should only appear on instructions on which "
5488 "'branch_weights' would",
5490 verifyUnknownProfileMetadata(MD);
5495 "!prof annotations should have no less than 2 operands", MD);
5501 Check(NumBranchWeights == 1 || NumBranchWeights == 2,
5502 "Wrong number of InvokeInst branch_weights operands", MD);
5504 const unsigned ExpectedNumOperands = GetBranchingTerminatorNumOperands();
5505 if (ExpectedNumOperands == 0)
5506 CheckFailed(
"!prof branch_weights are not allowed for this instruction",
5509 Check(NumBranchWeights == ExpectedNumOperands,
"Wrong number of operands",
5515 Check(MDO,
"second operand should not be null", MD);
5517 "!prof brunch_weights operand is not a const int");
5522 Check(KindInt,
"VP !prof missing kind argument", MD);
5525 Check(Kind >= InstrProfValueKind::IPVK_First &&
5526 Kind <= InstrProfValueKind::IPVK_Last,
5527 "Invalid VP !prof kind", MD);
5529 "VP !prof should have an even number "
5530 "of arguments after 'VP'",
5532 if (Kind == InstrProfValueKind::IPVK_IndirectCallTarget ||
5533 Kind == InstrProfValueKind::IPVK_MemOPSize)
5535 "VP !prof indirect call or memop size expected to be applied to "
5536 "CallBase instructions only",
5539 DenseSet<uint64_t> ProfileValues;
5541 ConstantInt *ProfileValue =
5543 Check(ProfileValue,
"VP !prof value operand is not a const int", MD);
5545 auto [ValueIt,
Inserted] = ProfileValues.
insert(ProfileValueInt);
5546 Check(Inserted,
"VP !prof should not have duplicate profile values", MD);
5549 CheckFailed(
"expected either branch_weights or VP profile name", MD);
5553void Verifier::visitDIAssignIDMetadata(Instruction &
I, MDNode *MD) {
5554 assert(
I.hasMetadata(LLVMContext::MD_DIAssignID));
5559 bool ExpectedInstTy =
5561 CheckDI(ExpectedInstTy,
"!DIAssignID attached to unexpected instruction kind",
5566 for (
auto *User : AsValue->users()) {
5568 "!DIAssignID should only be used by llvm.dbg.assign intrinsics",
5572 CheckDI(DAI->getFunction() ==
I.getFunction(),
5573 "dbg.assign not in same function as inst", DAI, &
I);
5577 CheckDI(DVR->getFunction() ==
I.getFunction(),
5578 "DVRAssign not in same function as inst", DVR, &
I);
5581void Verifier::visitMMRAMetadata(Instruction &
I, MDNode *MD) {
5583 "!mmra metadata attached to unexpected instruction kind",
I, MD);
5594 for (
const MDOperand &MDOp : MD->
operands())
5596 "!mmra metadata tuple operand is not an MMRA tag",
I, MDOp.get());
5599void Verifier::visitCallStackMetadata(MDNode *MD) {
5603 "call stack metadata should have at least 1 operand", MD);
5607 "call stack metadata operand should be constant integer",
Op);
5610void Verifier::visitMemProfMetadata(Instruction &
I, MDNode *MD) {
5613 Check(
I.hasMetadata(LLVMContext::MD_callsite),
5614 "!memprof metadata requires !callsite metadata", &
I, MD);
5616 "!memprof annotations should have at least 1 metadata operand "
5621 for (
auto &MIBOp : MD->
operands()) {
5626 Check(MIB->getNumOperands() >= 2,
5627 "Each !memprof MemInfoBlock should have at least 2 operands", MIB);
5630 Check(MIB->getOperand(0) !=
nullptr,
5631 "!memprof MemInfoBlock first operand should not be null", MIB);
5633 "!memprof MemInfoBlock first operand should be an MDNode", MIB);
5635 visitCallStackMetadata(StackMD);
5639 "!memprof MemInfoBlock second operand should be an MDString", MIB);
5642 for (
unsigned I = 2;
I < MIB->getNumOperands(); ++
I) {
5644 Check(OpNode,
"Not all !memprof MemInfoBlock operands 2 to N are MDNode",
5646 Check(OpNode->getNumOperands() == 2,
5647 "Not all !memprof MemInfoBlock operands 2 to N are MDNode with 2 "
5652 [](
const MDOperand &
Op) {
5653 return mdconst::hasa<ConstantInt>(Op);
5655 "Not all !memprof MemInfoBlock operands 2 to N are MDNode with "
5656 "ConstantInt operands",
5662void Verifier::visitCallsiteMetadata(Instruction &
I, MDNode *MD) {
5666 visitCallStackMetadata(MD);
5669void Verifier::visitCalleeTypeMetadata(Instruction &
I, MDNode *MD) {
5674 "The callee_type metadata must be a list of callgraph metadata nodes",
5677 Check(CallgraphMD->getNumOperands() == 1,
5678 "Well-formed callgraph metadata must contain exactly one "
5682 "The operand of callgraph metadata for functions must be an MDString",
5687void Verifier::visitAnnotationMetadata(MDNode *Annotation) {
5690 "annotation must have at least one operand");
5692 bool TupleOfStrings =
5698 "operands must be a string or a tuple of strings");
5702void Verifier::visitAliasScopeMetadata(
const MDNode *MD) {
5707 "first scope operand must be self-referential or string", MD);
5710 "third scope operand must be string (if used)", MD);
5713 Check(
Domain !=
nullptr,
"second scope operand must be MDNode", MD);
5715 unsigned NumDomainOps =
Domain->getNumOperands();
5716 Check(NumDomainOps >= 1 && NumDomainOps <= 2,
5717 "domain must have one or two operands",
Domain);
5720 "first domain operand must be self-referential or string",
Domain);
5721 if (NumDomainOps == 2)
5723 "second domain operand must be string (if used)",
Domain);
5726void Verifier::visitAliasScopeListMetadata(
const MDNode *MD) {
5729 Check(OpMD !=
nullptr,
"scope list must consist of MDNodes", MD);
5730 visitAliasScopeMetadata(OpMD);
5734void Verifier::visitAccessGroupMetadata(
const MDNode *MD) {
5735 auto IsValidAccessScope = [](
const MDNode *MD) {
5750 Check(OpMD !=
nullptr,
"Access scope list must consist of MDNodes", MD);
5751 Check(IsValidAccessScope(OpMD),
5752 "Access scope list contains invalid access scope", MD);
5756void Verifier::visitCapturesMetadata(Instruction &
I,
const MDNode *Captures) {
5757 static const char *ValidArgs[] = {
"address_is_null",
"address",
5758 "read_provenance",
"provenance"};
5761 Check(SI,
"!captures metadata can only be applied to store instructions", &
I);
5762 Check(
SI->getValueOperand()->getType()->isPointerTy(),
5763 "!captures metadata can only be applied to store with value operand of "
5771 Check(Str,
"!captures metadata must be a list of strings", &
I);
5773 "invalid entry in !captures metadata", &
I, Str);
5777void Verifier::visitAllocTokenMetadata(Instruction &
I, MDNode *MD) {
5782 "expected integer constant", MD);
5785void Verifier::visitInlineHistoryMetadata(Instruction &
I, MDNode *MD) {
5794 ->stripPointerCastsAndAliases()),
5795 "!inline_history operands must be functions or null", MD);
5799void Verifier::visitMemCacheHintMetadata(Instruction &
I, MDNode *MD) {
5800 Check(
I.mayReadOrWriteMemory(),
5801 "!mem.cache_hint is only valid on memory operations", &
I);
5804 "!mem.cache_hint must have even number of operands "
5805 "(operand_no, hint_node pairs)",
5811 "!mem.cache_hint is not supported on non-intrinsic calls", &
I);
5813 unsigned NumOperands = CB ? CB->arg_size() :
I.getNumOperands();
5815 SmallDenseSet<unsigned, 4> SeenOperandNos;
5816 std::optional<uint64_t> LastOperandNo;
5822 "!mem.cache_hint must alternate between i32 operand numbers and "
5823 "metadata hint nodes",
5826 Check(OpNoCI->getValue().isNonNegative(),
5827 "!mem.cache_hint operand number must be non-negative", MD);
5829 uint64_t OperandNo = OpNoCI->getZExtValue();
5830 Check(OperandNo < NumOperands,
5831 "!mem.cache_hint operand number is out of range", &
I);
5834 CB ? CB->getArgOperand(OperandNo) :
I.getOperand(OperandNo);
5836 "!mem.cache_hint operand number must refer to a pointer operand", &
I);
5839 Check(Inserted,
"!mem.cache_hint contains duplicate operand number", MD);
5841 Check(!Inserted || !LastOperandNo || OperandNo > *LastOperandNo,
5842 "!mem.cache_hint operand numbers must be in increasing order", MD);
5843 LastOperandNo = OperandNo;
5847 "!mem.cache_hint must alternate between i32 operand numbers and "
5848 "metadata hint nodes",
5852 "!mem.cache_hint hint node must have even number of operands "
5853 "(key-value pairs)",
5856 StringSet<> SeenKeys;
5857 for (
unsigned K = 0;
K + 1 <
Node->getNumOperands();
K += 2) {
5859 Check(
Key,
"!mem.cache_hint key must be a string", Node);
5861 StringRef KeyStr =
Key->getString();
5863 "!mem.cache_hint hint node contains duplicate key", Node);
5868 "!mem.cache_hint value must be a string or integer", Node);
5875void Verifier::visitInstruction(Instruction &
I) {
5877 Check(BB,
"Instruction not embedded in basic block!", &
I);
5880 for (User *U :
I.users()) {
5881 Check(U != (User *)&
I || !DT.isReachableFromEntry(BB),
5882 "Only PHI nodes may reference their own value!", &
I);
5887 Check(!
I.getType()->isVoidTy() || !
I.hasName(),
5888 "Instruction has a name, but provides a void value!", &
I);
5892 Check(
I.getType()->isVoidTy() ||
I.getType()->isFirstClassType(),
5893 "Instruction returns a non-scalar type!", &
I);
5898 "Invalid use of metadata!", &
I);
5903 for (Use &U :
I.uses()) {
5906 "Instruction referencing"
5907 " instruction not embedded in a basic block!",
5910 CheckFailed(
"Use of instruction is not an instruction!", U);
5919 for (
unsigned i = 0, e =
I.getNumOperands(); i != e; ++i) {
5920 Check(
I.getOperand(i) !=
nullptr,
"Instruction has null operand!", &
I);
5924 if (!
I.getOperand(i)->getType()->isFirstClassType()) {
5925 Check(
false,
"Instruction operands must be first-class values!", &
I);
5931 auto IsAttachedCallOperand = [](
Function *
F,
const CallBase *CBI,
5933 return CBI && CBI->isOperandBundleOfType(
5941 Check((!
F->isIntrinsic() ||
5942 (CBI && &CBI->getCalledOperandUse() == &
I.getOperandUse(i)) ||
5943 IsAttachedCallOperand(
F, CBI, i)),
5944 "Cannot take the address of an intrinsic!", &
I);
5946 F->getIntrinsicID() == Intrinsic::donothing ||
5947 F->getIntrinsicID() == Intrinsic::seh_try_begin ||
5948 F->getIntrinsicID() == Intrinsic::seh_try_end ||
5949 F->getIntrinsicID() == Intrinsic::seh_scope_begin ||
5950 F->getIntrinsicID() == Intrinsic::seh_scope_end ||
5951 F->getIntrinsicID() == Intrinsic::coro_resume ||
5952 F->getIntrinsicID() == Intrinsic::coro_destroy ||
5953 F->getIntrinsicID() == Intrinsic::coro_await_suspend_void ||
5954 F->getIntrinsicID() == Intrinsic::coro_await_suspend_bool ||
5955 F->getIntrinsicID() == Intrinsic::coro_await_suspend_handle ||
5956 F->getIntrinsicID() ==
5957 Intrinsic::experimental_patchpoint_void ||
5958 F->getIntrinsicID() == Intrinsic::experimental_patchpoint ||
5959 F->getIntrinsicID() == Intrinsic::fake_use ||
5960 F->getIntrinsicID() == Intrinsic::experimental_gc_statepoint ||
5961 F->getIntrinsicID() == Intrinsic::wasm_throw ||
5962 F->getIntrinsicID() == Intrinsic::wasm_rethrow ||
5963 IsAttachedCallOperand(
F, CBI, i),
5964 "Cannot invoke an intrinsic other than donothing, patchpoint, "
5965 "statepoint, coro_resume, coro_destroy, clang.arc.attachedcall or "
5968 Check(
F->getParent() == &M,
"Referencing function in another module!", &
I,
5969 &M,
F,
F->getParent());
5972 "Referring to a basic block in another function!", &
I);
5975 "Referring to an argument in another function!", &
I);
5977 Check(GV->
getParent() == &M,
"Referencing global in another module!", &
I,
5981 "Referring to an instruction in another function!", &
I);
5982 verifyDominatesUse(
I, i);
5984 Check(CBI && &CBI->getCalledOperandUse() == &
I.getOperandUse(i),
5985 "Cannot take the address of an inline asm!", &
I);
5987 visitConstantExprsRecursively(
C);
5991 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_fpmath)) {
5993 "fpmath requires a floating point result!", &
I);
5995 if (ConstantFP *CFP0 =
5997 const APFloat &Accuracy = CFP0->getValueAPF();
5999 "fpmath accuracy must have float type", &
I);
6001 "fpmath accuracy not a positive number!", &
I);
6003 Check(
false,
"invalid fpmath accuracy!", &
I);
6007 if (MDNode *
Range =
I.getMetadata(LLVMContext::MD_range)) {
6009 "Ranges are only for loads, calls and invokes!", &
I);
6010 visitRangeMetadata(
I,
Range,
I.getType());
6013 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_nofpclass)) {
6015 visitNoFPClassMetadata(
I, MD,
I.getType());
6018 if (MDNode *
Range =
I.getMetadata(LLVMContext::MD_noalias_addrspace)) {
6021 "noalias.addrspace are only for memory operations!", &
I);
6022 visitNoaliasAddrspaceMetadata(
I,
Range,
I.getType());
6025 if (
I.hasMetadata(LLVMContext::MD_invariant_group)) {
6027 "invariant.group metadata is only for loads and stores", &
I);
6030 if (
I.hasMetadata(LLVMContext::MD_invariant_load)) {
6033 "invariant.load metadata is only for loads and readonly "
6038 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_nonnull)) {
6039 Check(
I.getType()->isPointerTy(),
"nonnull applies only to pointer types",
6042 "nonnull applies only to load instructions, use attributes"
6043 " for calls or invokes",
6048 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_noundef)) {
6053 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_dereferenceable))
6054 visitDereferenceableMetadata(
I, MD);
6056 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_dereferenceable_or_null))
6057 visitDereferenceableMetadata(
I, MD);
6059 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_nofreeobj))
6060 visitNoFreeObjMetadata(
I, MD);
6062 if (MDNode *TBAA =
I.getMetadata(LLVMContext::MD_tbaa))
6065 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_noalias))
6066 visitAliasScopeListMetadata(MD);
6067 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_alias_scope))
6068 visitAliasScopeListMetadata(MD);
6070 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_access_group))
6071 visitAccessGroupMetadata(MD);
6073 if (MDNode *AlignMD =
I.getMetadata(LLVMContext::MD_align)) {
6074 Check(
I.getType()->isPointerTy(),
"align applies only to pointer types",
6077 "align applies only to load instructions, "
6078 "use attributes for calls or invokes",
6080 Check(AlignMD->getNumOperands() == 1,
"align takes one operand!", &
I);
6083 "align metadata value must be an i64!", &
I);
6087 Check(Align <= Value::MaximumAlignment,
6088 "alignment is larger that implementation defined limit", &
I);
6091 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_prof))
6092 visitProfMetadata(
I, MD);
6094 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_memprof))
6095 visitMemProfMetadata(
I, MD);
6097 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_callsite))
6098 visitCallsiteMetadata(
I, MD);
6100 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_callee_type))
6101 visitCalleeTypeMetadata(
I, MD);
6103 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_DIAssignID))
6104 visitDIAssignIDMetadata(
I, MD);
6106 if (MDNode *MMRA =
I.getMetadata(LLVMContext::MD_mmra))
6107 visitMMRAMetadata(
I, MMRA);
6109 if (MDNode *Annotation =
I.getMetadata(LLVMContext::MD_annotation))
6110 visitAnnotationMetadata(Annotation);
6112 if (MDNode *Captures =
I.getMetadata(LLVMContext::MD_captures))
6113 visitCapturesMetadata(
I, Captures);
6115 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_alloc_token))
6116 visitAllocTokenMetadata(
I, MD);
6118 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_inline_history))
6119 visitInlineHistoryMetadata(
I, MD);
6121 if (MDNode *MD =
I.getMetadata(LLVMContext::MD_mem_cache_hint))
6122 visitMemCacheHintMetadata(
I, MD);
6124 if (MDNode *MD =
I.getMetadata(
"amdgpu.expected.active.lanes")) {
6126 "!amdgpu.expected.active.lanes must have exactly one operand", &
I,
6131 "!amdgpu.expected.active.lanes operand must be an i32 constant", &
I,
6135 if (MDNode *
N =
I.getDebugLoc().getAsMDNode()) {
6137 visitMDNode(*
N, AreDebugLocsAllowed::Yes);
6140 if (
DL->getAtomGroup()) {
6142 CheckDI(SP &&
SP->getKeyInstructionsEnabled(),
6143 "DbgLoc uses atomGroup but DISubprogram doesn't have Key "
6144 "Instructions enabled",
6151 I.getAllMetadata(MDs);
6152 for (
auto Attachment : MDs) {
6153 unsigned Kind = Attachment.first;
6155 (
Kind == LLVMContext::MD_dbg ||
Kind == LLVMContext::MD_loop)
6156 ? AreDebugLocsAllowed::Yes
6157 : AreDebugLocsAllowed::
No;
6158 visitMDNode(*Attachment.second, AllowLocs);
6175 "const x86_amx is not allowed in argument!");
6181 case Intrinsic::assume: {
6185 "assume with operand bundles must have i1 true condition",
Call);
6191 auto GetTypeAt = [&](
unsigned Index) {
6192 return OBU.Inputs[
Index]->getType();
6197 CheckFailed(
"tags must be valid attribute names",
Call);
6199 case BundleAttr::Align:
6200 Check(OBU.Inputs.size() >= 2 && OBU.Inputs.size() <= 3,
6201 "alignment assumptions should have 2 or 3 arguments",
Call);
6204 Check(GetTypeAt(1)->isIntegerTy() &&
6205 GetTypeAt(1)->getIntegerBitWidth() <= 64,
6206 "second argument should be an integer with a maximum width of 64 "
6209 Check(OBU.Inputs.size() < 3 ||
6210 (GetTypeAt(2)->isIntegerTy() &&
6211 GetTypeAt(2)->getIntegerBitWidth() <= 64),
6212 "third argument should be an integer with a maximum width of 64 "
6216 case BundleAttr::Cold:
6217 Check(OBU.Inputs.size() == 0,
6218 "cold assumptions should have no arguments",
Call);
6220 case BundleAttr::Dereferenceable:
6221 case BundleAttr::DereferenceableOrNull:
6222 Check(OBU.Inputs.size() == 2,
6223 "dereferenceable assumptions should have 2 arguments",
Call);
6226 Check(GetTypeAt(1)->isIntegerTy() &&
6227 GetTypeAt(1)->getIntegerBitWidth() <= 64,
6228 "second argument should be an integer with a maximum width of 64 "
6232 case BundleAttr::Ignore:
6234 case BundleAttr::NonNull:
6235 Check(OBU.Inputs.size() == 1,
6236 "nonnull assumptions should have 1 argument",
Call);
6240 case BundleAttr::NoUndef:
6241 Check(OBU.Inputs.size() == 1,
6242 "noundef assumptions should have 1 argument",
Call);
6244 case BundleAttr::SeparateStorage:
6245 Check(OBU.Inputs.size() == 2,
6246 "separate_storage assumptions should have 2 arguments",
Call);
6248 "arguments to separate_storage assumptions should be pointers",
6255 case Intrinsic::ucmp:
6256 case Intrinsic::scmp: {
6261 "result type must be at least 2 bits wide",
Call);
6263 bool IsDestTypeVector = DestTy->
isVectorTy();
6265 "ucmp/scmp argument and result types must both be either vector or "
6268 if (IsDestTypeVector) {
6271 Check(SrcVecLen == DestVecLen,
6272 "return type and arguments must have the same number of "
6278 case Intrinsic::coro_begin:
6279 case Intrinsic::coro_begin_custom_abi:
6281 "id argument of llvm.coro.begin must refer to coro.id");
6283 case Intrinsic::coro_id: {
6285 "align argument only accepts constants");
6288 "promise argument must refer to an alloca");
6293 "coro argument must refer to a function");
6297 if (BeforeCoroSplit)
6300 Check(!BeforeCoroEarly,
"cannot run CoroSplit before CoroEarly");
6303 "info argument of llvm.coro.id must refer to an initialized "
6307 "info argument of llvm.coro.id must refer to either a struct or "
6311 case Intrinsic::is_fpclass: {
6314 "unsupported bits for llvm.is.fpclass test mask");
6317 case Intrinsic::fptrunc_round: {
6322 MD = MAV->getMetadata();
6324 Check(MD !=
nullptr,
"missing rounding mode argument",
Call);
6327 (
"invalid value for llvm.fptrunc.round metadata operand"
6328 " (the operand should be a string)"),
6331 std::optional<RoundingMode> RoundMode =
6333 Check(RoundMode && *RoundMode != RoundingMode::Dynamic,
6334 "unsupported rounding mode argument",
Call);
6337 case Intrinsic::convert_to_arbitrary_fp: {
6345 "if floating-point operand is a vector, integer operand must also "
6348 Check(ValueVecTy->getElementCount() == IntVecTy->getElementCount(),
6349 "floating-point and integer vector operands must have the same "
6356 Check(InterpMAV,
"missing interpretation metadata operand",
Call);
6358 Check(InterpStr,
"interpretation metadata operand must be a string",
Call);
6359 StringRef Interp = InterpStr->getString();
6361 Check(!Interp.
empty(),
"interpretation metadata string must not be empty",
6366 "unsupported interpretation metadata string",
Call);
6369 if (
unsigned FormatBits =
6372 "integer type bit width must equal the arbitrary FP format width",
6377 Check(RoundingMAV,
"missing rounding mode metadata operand",
Call);
6379 Check(RoundingStr,
"rounding mode metadata operand must be a string",
Call);
6381 std::optional<RoundingMode>
RM =
6383 Check(RM && *RM != RoundingMode::Dynamic,
6384 "unsupported rounding mode argument",
Call);
6387 case Intrinsic::convert_from_arbitrary_fp: {
6395 "if floating-point operand is a vector, integer operand must also "
6398 Check(ValueVecTy->getElementCount() == IntVecTy->getElementCount(),
6399 "floating-point and integer vector operands must have the same "
6406 Check(InterpMAV,
"missing interpretation metadata operand",
Call);
6408 Check(InterpStr,
"interpretation metadata operand must be a string",
Call);
6409 StringRef Interp = InterpStr->getString();
6411 Check(!Interp.
empty(),
"interpretation metadata string must not be empty",
6416 "unsupported interpretation metadata string",
Call);
6419 if (
unsigned FormatBits =
6422 "integer type bit width must equal the arbitrary FP format width",
6426#define BEGIN_REGISTER_VP_INTRINSIC(VPID, ...) case Intrinsic::VPID:
6427#include "llvm/IR/VPIntrinsics.def"
6428#undef BEGIN_REGISTER_VP_INTRINSIC
6431#define INSTRUCTION(NAME, NARGS, ROUND_MODE, INTRINSIC) \
6432 case Intrinsic::INTRINSIC:
6433#include "llvm/IR/ConstrainedOps.def"
6437 case Intrinsic::dbg_declare:
6438 case Intrinsic::dbg_value:
6439 case Intrinsic::dbg_assign:
6440 case Intrinsic::dbg_label:
6447 case Intrinsic::memcpy:
6448 case Intrinsic::memcpy_inline:
6449 case Intrinsic::memmove:
6450 case Intrinsic::memset:
6451 case Intrinsic::memset_inline:
6453 case Intrinsic::experimental_memset_pattern: {
6455 Check(Memset->getValue()->getType()->isSized(),
6456 "unsized types cannot be used as memset patterns",
Call);
6459 case Intrinsic::memcpy_element_unordered_atomic:
6460 case Intrinsic::memmove_element_unordered_atomic:
6461 case Intrinsic::memset_element_unordered_atomic: {
6464 ConstantInt *ElementSizeCI =
6466 const APInt &ElementSizeVal = ElementSizeCI->
getValue();
6468 "element size of the element-wise atomic memory intrinsic "
6469 "must be a power of 2",
6472 auto IsValidAlignment = [&](MaybeAlign
Alignment) {
6475 Check(IsValidAlignment(AMI->getDestAlign()),
6476 "incorrect alignment of the destination argument",
Call);
6478 Check(IsValidAlignment(AMT->getSourceAlign()),
6479 "incorrect alignment of the source argument",
Call);
6483 case Intrinsic::call_preallocated_setup: {
6485 bool FoundCall =
false;
6488 Check(UseCall !=
nullptr,
6489 "Uses of llvm.call.preallocated.setup must be calls");
6491 if (IID == Intrinsic::call_preallocated_arg) {
6493 Check(AllocArgIndex !=
nullptr,
6494 "llvm.call.preallocated.alloc arg index must be a constant");
6495 auto AllocArgIndexInt = AllocArgIndex->getValue();
6496 Check(AllocArgIndexInt.sge(0) &&
6497 AllocArgIndexInt.slt(NumArgs->getValue()),
6498 "llvm.call.preallocated.alloc arg index must be between 0 and "
6500 "llvm.call.preallocated.setup's argument count");
6501 }
else if (IID == Intrinsic::call_preallocated_teardown) {
6504 Check(!FoundCall,
"Can have at most one call corresponding to a "
6505 "llvm.call.preallocated.setup");
6507 size_t NumPreallocatedArgs = 0;
6508 for (
unsigned i = 0; i < UseCall->arg_size(); i++) {
6509 if (UseCall->paramHasAttr(i, Attribute::Preallocated)) {
6510 ++NumPreallocatedArgs;
6513 Check(NumPreallocatedArgs != 0,
6514 "cannot use preallocated intrinsics on a call without "
6515 "preallocated arguments");
6516 Check(NumArgs->equalsInt(NumPreallocatedArgs),
6517 "llvm.call.preallocated.setup arg size must be equal to number "
6518 "of preallocated arguments "
6528 auto PreallocatedBundle =
6530 Check(PreallocatedBundle,
6531 "Use of llvm.call.preallocated.setup outside intrinsics "
6532 "must be in \"preallocated\" operand bundle");
6533 Check(PreallocatedBundle->Inputs.front().get() == &
Call,
6534 "preallocated bundle must have token from corresponding "
6535 "llvm.call.preallocated.setup");
6540 case Intrinsic::call_preallocated_arg: {
6543 Token->getIntrinsicID() == Intrinsic::call_preallocated_setup,
6544 "llvm.call.preallocated.arg token argument must be a "
6545 "llvm.call.preallocated.setup");
6547 "llvm.call.preallocated.arg must be called with a \"preallocated\" "
6548 "call site attribute");
6551 case Intrinsic::call_preallocated_teardown: {
6554 Token->getIntrinsicID() == Intrinsic::call_preallocated_setup,
6555 "llvm.call.preallocated.teardown token argument must be a "
6556 "llvm.call.preallocated.setup");
6559 case Intrinsic::gcroot:
6560 case Intrinsic::gcwrite:
6561 case Intrinsic::gcread:
6562 if (ID == Intrinsic::gcroot) {
6565 Check(AI,
"llvm.gcroot parameter #1 must be an alloca.",
Call);
6567 "llvm.gcroot parameter #2 must be a constant.",
Call);
6570 "llvm.gcroot parameter #1 must either be a pointer alloca, "
6571 "or argument #2 must be a non-null constant.",
6577 "Enclosing function does not use GC.",
Call);
6579 case Intrinsic::init_trampoline:
6581 "llvm.init_trampoline parameter #2 must resolve to a function.",
6584 case Intrinsic::reloc_none: {
6587 "llvm.reloc.none argument must be a metadata string", &
Call);
6590 case Intrinsic::stackprotector:
6592 "llvm.stackprotector parameter #2 must resolve to an alloca.",
Call);
6594 case Intrinsic::localescape: {
6598 Check(!SawFrameEscape,
"multiple calls to llvm.localescape in one function",
6605 "llvm.localescape only accepts static allocas",
Call);
6608 SawFrameEscape =
true;
6611 case Intrinsic::localrecover: {
6614 Check(Fn && !Fn->isDeclaration(),
6615 "llvm.localrecover first "
6616 "argument must be function defined in this module",
6619 auto &
Entry = FrameEscapeInfo[Fn];
6620 Entry.second = unsigned(
6621 std::max(
uint64_t(
Entry.second), IdxArg->getLimitedValue(~0U) + 1));
6625 case Intrinsic::experimental_gc_statepoint:
6627 Check(!CI->isInlineAsm(),
6628 "gc.statepoint support for inline assembly unimplemented", CI);
6630 "Enclosing function does not use GC.",
Call);
6632 verifyStatepoint(
Call);
6634 case Intrinsic::experimental_gc_result: {
6636 "Enclosing function does not use GC.",
Call);
6644 Check(StatepointCall && StatepointCall->getIntrinsicID() ==
6645 Intrinsic::experimental_gc_statepoint,
6646 "gc.result operand #1 must be from a statepoint",
Call,
6650 auto *TargetFuncType =
6653 "gc.result result type does not match wrapped callee",
Call);
6656 case Intrinsic::experimental_gc_relocate: {
6660 "gc.relocate must return a pointer or a vector of pointers",
Call);
6668 LandingPad->getParent()->getUniquePredecessor();
6672 Check(InvokeBB,
"safepoints should have unique landingpads",
6673 LandingPad->getParent());
6677 "gc relocate should be linked to a statepoint", InvokeBB);
6684 "gc relocate is incorrectly tied to the statepoint",
Call, Token);
6693 "gc.relocate operand #2 must be integer offset",
Call);
6697 "gc.relocate operand #3 must be integer offset",
Call);
6707 Check(BaseIndex < Opt->Inputs.size(),
6708 "gc.relocate: statepoint base index out of bounds",
Call);
6709 Check(DerivedIndex < Opt->Inputs.size(),
6710 "gc.relocate: statepoint derived index out of bounds",
Call);
6723 "gc.relocate: relocated value must be a pointer",
Call);
6724 Check(DerivedType->isPtrOrPtrVectorTy(),
6725 "gc.relocate: relocated value must be a pointer",
Call);
6727 Check(ResultType->isVectorTy() == DerivedType->isVectorTy(),
6728 "gc.relocate: vector relocates to vector and pointer to pointer",
6731 ResultType->getPointerAddressSpace() ==
6732 DerivedType->getPointerAddressSpace(),
6733 "gc.relocate: relocating a pointer shouldn't change its address space",
6737 Check(GC,
"gc.relocate: calling function must have GCStrategy",
6740 auto isGCPtr = [&
GC](
Type *PTy) {
6741 return GC->isGCManagedPointer(PTy->getScalarType()).value_or(
true);
6743 Check(isGCPtr(ResultType),
"gc.relocate: must return gc pointer",
Call);
6745 "gc.relocate: relocated value must be a gc pointer",
Call);
6746 Check(isGCPtr(DerivedType),
6747 "gc.relocate: relocated value must be a gc pointer",
Call);
6751 case Intrinsic::experimental_patchpoint: {
6754 "patchpoint: invalid return type used with anyregcc",
Call);
6758 case Intrinsic::eh_exceptioncode:
6759 case Intrinsic::eh_exceptionpointer: {
6761 "eh.exceptionpointer argument must be a catchpad",
Call);
6764 case Intrinsic::get_active_lane_mask: {
6767 "get_active_lane_mask: element type is not i1",
Call);
6770 case Intrinsic::experimental_get_vector_length: {
6772 Check(!VF->isNegative() && !VF->isZero(),
6773 "get_vector_length: VF must be positive",
Call);
6776 case Intrinsic::experimental_guard: {
6779 "experimental_guard must have exactly one "
6780 "\"deopt\" operand bundle");
6784 case Intrinsic::experimental_deoptimize: {
6788 "experimental_deoptimize must have exactly one "
6789 "\"deopt\" operand bundle");
6791 "experimental_deoptimize return type must match caller return type");
6796 "calls to experimental_deoptimize must be followed by a return");
6800 "calls to experimental_deoptimize must be followed by a return "
6801 "of the value computed by experimental_deoptimize");
6806 case Intrinsic::vastart: {
6808 "va_start called in a non-varargs function");
6811 case Intrinsic::get_dynamic_area_offset: {
6813 Check(IntTy &&
DL.getPointerSizeInBits(
DL.getAllocaAddrSpace()) ==
6814 IntTy->getBitWidth(),
6815 "get_dynamic_area_offset result type must be scalar integer matching "
6816 "alloca address space width",
6820 case Intrinsic::smul_fix:
6821 case Intrinsic::smul_fix_sat:
6822 case Intrinsic::umul_fix:
6823 case Intrinsic::umul_fix_sat:
6824 case Intrinsic::sdiv_fix:
6825 case Intrinsic::sdiv_fix_sat:
6826 case Intrinsic::udiv_fix:
6827 case Intrinsic::udiv_fix_sat: {
6831 if (ID == Intrinsic::smul_fix || ID == Intrinsic::smul_fix_sat ||
6832 ID == Intrinsic::sdiv_fix || ID == Intrinsic::sdiv_fix_sat) {
6834 "the scale of s[mul|div]_fix[_sat] must be less than the width of "
6838 "the scale of u[mul|div]_fix[_sat] must be less than or equal "
6839 "to the width of the operands");
6843 case Intrinsic::lrint:
6844 case Intrinsic::llrint:
6845 case Intrinsic::lround:
6846 case Intrinsic::llround: {
6850 IF->
getName() +
": argument and result disagree on vector use",
6854 Check(VTy->getElementCount() == RTy->getElementCount(),
6855 IF->
getName() +
": argument must be same length as result", &
Call);
6859 case Intrinsic::bswap: {
6862 Check(
Size % 16 == 0,
"bswap must be an even number of bytes", &
Call);
6865 case Intrinsic::invariant_start: {
6867 Check(InvariantSize &&
6868 (!InvariantSize->isNegative() || InvariantSize->isMinusOne()),
6869 "invariant_start parameter must be -1, 0 or a positive number",
6873 case Intrinsic::matrix_multiply:
6874 case Intrinsic::matrix_transpose:
6875 case Intrinsic::matrix_column_major_load:
6876 case Intrinsic::matrix_column_major_store: {
6878 Value *Stride =
nullptr;
6879 ConstantInt *NumRows;
6880 ConstantInt *NumColumns;
6882 Type *Op0ElemTy =
nullptr;
6883 Type *Op1ElemTy =
nullptr;
6885 case Intrinsic::matrix_multiply: {
6890 ->getNumElements() ==
6892 "First argument of a matrix operation does not match specified "
6895 ->getNumElements() ==
6897 "Second argument of a matrix operation does not match specified "
6907 case Intrinsic::matrix_transpose:
6914 case Intrinsic::matrix_column_major_load: {
6921 case Intrinsic::matrix_column_major_store: {
6934 Check(ResultTy->getElementType()->isIntegerTy() ||
6935 ResultTy->getElementType()->isFloatingPointTy(),
6936 "Result type must be an integer or floating-point type!", IF);
6939 Check(ResultTy->getElementType() == Op0ElemTy,
6940 "Vector element type mismatch of the result and first operand "
6945 Check(ResultTy->getElementType() == Op1ElemTy,
6946 "Vector element type mismatch of the result and second operand "
6952 "Result of a matrix operation does not fit in the returned vector!");
6956 "Stride bitwidth cannot exceed 64!", IF);
6960 case Intrinsic::stepvector: {
6962 Check(VecTy && VecTy->getScalarType()->isIntegerTy() &&
6963 VecTy->getScalarSizeInBits() >= 8,
6964 "stepvector only supported for vectors of integers "
6965 "with a bitwidth of at least 8.",
6969 case Intrinsic::experimental_vector_match: {
6978 Check(Op1Ty && Op2Ty && MaskTy,
"Operands must be vectors.", &
Call);
6980 "Second operand must be a fixed length vector.", &
Call);
6982 "First operand must be a vector of integers.", &
Call);
6983 Check(Op1Ty->getElementType() == Op2Ty->getElementType(),
6984 "First two operands must have the same element type.", &
Call);
6985 Check(Op1Ty->getElementCount() == MaskTy->getElementCount(),
6986 "First operand and mask must have the same number of elements.",
6988 Check(MaskTy->getElementType()->isIntegerTy(1),
6989 "Mask must be a vector of i1's.", &
Call);
6994 case Intrinsic::speculative_load: {
6997 "llvm.speculative.load return type must be a byte type or a "
7003 "llvm.speculative.load byte type must have a bit width that is "
7008 uint64_t MinSizeInBits =
DL.getTypeSizeInBits(LoadTy).getKnownMinValue();
7010 "llvm.speculative.load return type size in bytes must be a "
7011 "positive power of 2",
7014 constexpr unsigned NumFixedArgs = 3;
7016 Check(NumArgs >= NumFixedArgs,
7017 "llvm.speculative.load requires at least 3 arguments", &
Call);
7022 Check(NumArgs == NumFixedArgs,
7023 "llvm.speculative.load direct form has too many arguments", &
Call);
7028 "llvm.speculative.load third argument must be i64 or a direct "
7029 "reference to an oracle function",
7033 Check(OracleFn->onlyReadsMemory() && OracleFn->onlyAccessesArgMemory() &&
7034 OracleFn->doesNotThrow() && OracleFn->hasNoSync() &&
7035 OracleFn->willReturn(),
7036 "llvm.speculative.load oracle function must be nounwind, nosync "
7037 "and willreturn, must not have side effects and may only read "
7038 "memory through its arguments",
7041 FunctionType *FTy = OracleFn->getFunctionType();
7042 Check(FTy->getReturnType()->isIntegerTy(64),
7043 "llvm.speculative.load oracle function must return i64", &
Call);
7045 Check(!FTy->isVarArg(),
7046 "llvm.speculative.load oracle function must have a fixed argument "
7049 Check(NumArgs - NumFixedArgs == FTy->getNumParams(),
7050 "llvm.speculative.load oracle function argument count mismatch",
7052 for (
auto [ParamTy, Arg] :
7054 Check(ParamTy == Arg->getType(),
7055 "llvm.speculative.load oracle function argument type mismatch",
7060 case Intrinsic::vector_insert: {
7069 ElementCount VecEC = VecTy->getElementCount();
7070 ElementCount SubVecEC = SubVecTy->getElementCount();
7071 Check(VecTy->getElementType() == SubVecTy->getElementType(),
7072 "vector_insert parameters must have the same element "
7076 "vector_insert index must be a constant multiple of "
7077 "the subvector's known minimum vector length.");
7082 Check(VecEC.
isScalable(),
"cannot vector_insert a scalable vector into "
7092 "subvector operand of vector_insert would overrun the "
7093 "vector being inserted into.");
7097 case Intrinsic::vector_extract: {
7105 ElementCount VecEC = VecTy->getElementCount();
7106 ElementCount ResultEC = ResultTy->getElementCount();
7108 Check(ResultTy->getElementType() == VecTy->getElementType(),
7109 "vector_extract result must have the same element "
7110 "type as the input vector.",
7113 "vector_extract index must be a constant multiple of "
7114 "the result type's known minimum vector length.");
7119 Check(VecEC.
isScalable(),
"cannot vector_extract a scalable vector from "
7129 "vector_extract would overrun.");
7133 case Intrinsic::vector_partial_reduce_fadd:
7134 case Intrinsic::vector_partial_reduce_add: {
7138 unsigned VecWidth = VecTy->getElementCount().getKnownMinValue();
7139 unsigned AccWidth = AccTy->getElementCount().getKnownMinValue();
7141 Check((VecWidth % AccWidth) == 0,
7142 "Invalid vector widths for partial "
7143 "reduction. The width of the input vector "
7144 "must be a positive integer multiple of "
7145 "the width of the accumulator vector.");
7148 case Intrinsic::experimental_noalias_scope_decl: {
7152 case Intrinsic::preserve_array_access_index:
7153 case Intrinsic::preserve_struct_access_index:
7154 case Intrinsic::aarch64_ldaxr:
7155 case Intrinsic::aarch64_ldxr:
7156 case Intrinsic::arm_ldaex:
7157 case Intrinsic::arm_ldrex: {
7159 Check(ElemTy,
"Intrinsic requires elementtype attribute on first argument.",
7163 case Intrinsic::aarch64_stlxr:
7164 case Intrinsic::aarch64_stxr:
7165 case Intrinsic::arm_stlex:
7166 case Intrinsic::arm_strex: {
7169 "Intrinsic requires elementtype attribute on second argument.",
7173 case Intrinsic::aarch64_prefetch: {
7175 "write argument to llvm.aarch64.prefetch must be 0 or 1",
Call);
7177 "target argument to llvm.aarch64.prefetch must be 0-3",
Call);
7179 "stream argument to llvm.aarch64.prefetch must be 0 or 1",
Call);
7181 "isdata argument to llvm.aarch64.prefetch must be 0 or 1",
Call);
7184 case Intrinsic::aarch64_range_prefetch: {
7186 "write argument to llvm.aarch64.range.prefetch must be 0 or 1",
Call);
7188 "stream argument to llvm.aarch64.range.prefetch must be 0 or 1",
7192 case Intrinsic::riscv_vsetvli:
7193 case Intrinsic::riscv_vsetvlimax: {
7198 "llvm.riscv.vsetvli/vsetvlimax result must be i32 or i64", &
Call);
7201 bool HasAVL =
ID == Intrinsic::riscv_vsetvli;
7202 unsigned Offset = HasAVL ? 1 : 0;
7207 Check(VSEW <= 3,
"llvm.riscv.vsetvli/vsetvlimax VSEW must be 0-3", &
Call);
7209 "llvm.riscv.vsetvli/vsetvlimax VLMUL is reserved", &
Call);
7212 case Intrinsic::callbr_landingpad: {
7214 Check(CBR,
"intrinstic requires callbr operand", &
Call);
7221 CheckFailed(
"Intrinsic in block must have 1 unique predecessor", &
Call);
7225 CheckFailed(
"Intrinsic must have corresponding callbr in predecessor",
7230 "Intrinsic's corresponding callbr must have intrinsic's parent basic "
7231 "block in indirect destination list",
7234 Check(&
First == &
Call,
"No other instructions may proceed intrinsic",
7238 case Intrinsic::structured_gep: {
7244 "Intrinsic first parameter is missing an ElementType attribute",
7252 "Index operand type must be an integer", &
Call);
7255 T = AT->getElementType();
7257 Check(CI,
"Indexing into a struct requires a constant int", &
Call);
7259 "Indexing in a struct should be inbounds", &
Call);
7262 T = VT->getElementType();
7264 CheckFailed(
"Reached a non-composite type with more indices to process",
7270 case Intrinsic::structured_alloca:
7272 "@llvm.structured.alloca calls require elementtype attribute.",
7275 case Intrinsic::nvvm_setmaxnreg_inc_sync_aligned_u32:
7276 case Intrinsic::nvvm_setmaxnreg_dec_sync_aligned_u32: {
7279 Check(RegCount % 8 == 0,
7280 "reg_count argument to nvvm.setmaxnreg must be in multiples of 8");
7283 case Intrinsic::nvvm_cp_async_bulk_global_to_shared_cta:
7284 case Intrinsic::nvvm_cp_async_bulk_global_to_shared_cta_relaxed: {
7286 const unsigned FlagValidPatternIndex = ArgSize - 1;
7287 const unsigned IgnoreOOBFlagIndex = 8;
7290 const auto *FlagValidPattern =
7292 Check(!IgnoreOOB || FlagValidPattern->isZero(),
7293 "flag_valid_pattern must be 0 (disabled) when ignore_oob is enabled",
7297 case Intrinsic::experimental_convergence_entry:
7298 case Intrinsic::experimental_convergence_anchor:
7300 case Intrinsic::experimental_convergence_loop:
7302 case Intrinsic::ptrmask: {
7306 "llvm.ptrmask intrinsic first argument must be pointer or vector "
7311 "llvm.ptrmask intrinsic arguments must be both scalars or both vectors",
7316 "llvm.ptrmask intrinsic arguments must have the same number of "
7320 "llvm.ptrmask intrinsic second argument bitwidth must match "
7321 "pointer index type size of first argument",
7325 case Intrinsic::thread_pointer: {
7327 DL.getDefaultGlobalsAddressSpace(),
7328 "llvm.thread.pointer intrinsic return type must be for the globals "
7333 case Intrinsic::threadlocal_address: {
7336 "llvm.threadlocal.address first argument must be a GlobalValue");
7338 "llvm.threadlocal.address operand isThreadLocal() must be true");
7341 case Intrinsic::lifetime_start:
7342 case Intrinsic::lifetime_end: {
7346 (
II &&
II->getIntrinsicID() == Intrinsic::structured_alloca),
7347 "llvm.lifetime.start/end can only be used on alloca or poison",
7351 case Intrinsic::sponentry: {
7352 const unsigned StackAS =
DL.getAllocaAddrSpace();
7355 "llvm.sponentry must return a pointer to the stack", &
Call);
7358 case Intrinsic::write_volatile_register: {
7362 "llvm.write_volatile_register metadata must be a single MDString",
7366 case Intrinsic::ptrauth_auth_with_pc_and_resign: {
7371 "ptrauth.auth.with.pc.and.resign key must be IA (0) or IB (1)",
7380 if (
F->hasPersonalityFn() &&
7384 if (BlockEHFuncletColors.
empty())
7391 auto ColorsIt = BlockEHFuncletColors.
find(CallBB);
7392 if (ColorsIt != BlockEHFuncletColors.
end()) {
7394 bool InEHFunclet =
false;
7397 for (BasicBlock *ColorFirstBB : CV)
7398 if (
auto It = ColorFirstBB->getFirstNonPHIIt();
7399 It != ColorFirstBB->end())
7404 bool HasToken =
false;
7411 Check(HasToken,
"Missing funclet token on intrinsic call", &
Call);
7424DISubprogram *Verifier::getSubprogram(
Metadata *LocalScope) {
7425 if (hasDIScopeCycle(LocalScope))
7442void Verifier::visit(DbgLabelRecord &DLR) {
7444 "invalid #dbg_label intrinsic variable", &DLR, DLR.
getRawLabel());
7457 CheckDI(Loc,
"#dbg_label record requires a !dbg attachment", &DLR, BB,
F);
7461 if (!LabelSP || !LocSP)
7465 "mismatched subprogram between #dbg_label label and !dbg attachment",
7466 &DLR, BB,
F, Label,
Label->getScope()->getSubprogram(), Loc,
7467 Loc->getScope()->getSubprogram());
7470void Verifier::visit(DbgVariableRecord &DVR) {
7474 CheckDI(DVR.
getType() == DbgVariableRecord::LocationType::Value ||
7475 DVR.
getType() == DbgVariableRecord::LocationType::Declare ||
7476 DVR.
getType() == DbgVariableRecord::LocationType::DeclareValue ||
7477 DVR.
getType() == DbgVariableRecord::LocationType::Assign,
7478 "invalid #dbg record type", &DVR, DVR.
getType(), BB,
F);
7486 "invalid #dbg record address/value", &DVR, MD, BB,
F);
7488 "!DIAssignID should only be used by Assign DVRs.", MD, &DVR);
7490 visitValueAsMetadata(*VAM,
F);
7493 Type *Ty = VAM->getValue()->getType();
7495 "location of #dbg_declare must be a pointer or int", &DVR, MD, BB,
7499 visitDIArgList(*AL,
F);
7513 "invalid #dbg_assign DIAssignID", &DVR, DVR.
getRawAssignID(), BB,
7516 AreDebugLocsAllowed::No);
7525 "invalid #dbg_assign address", &DVR, DVR.
getRawAddress(), BB,
F);
7527 visitValueAsMetadata(*VAM,
F);
7530 "invalid #dbg_assign address expression", &DVR,
7537 "inst not in same function as #dbg_assign",
I, &DVR, BB,
F);
7547 &DVR, DLNode, BB,
F);
7553 if (!VarSP || !LocSP)
7557 "mismatched subprogram between #dbg record variable and DILocation",
7559 Loc->getScope()->getSubprogram(), BB,
F);
7564void Verifier::visitVPIntrinsic(VPIntrinsic &VPI) {
7566 case Intrinsic::experimental_vp_splice: {
7569 int64_t KnownMinNumElements = VecTy->getElementCount().getKnownMinValue();
7571 AttributeList
Attrs = VPI.
getParent()->getParent()->getAttributes();
7572 if (
Attrs.hasFnAttr(Attribute::VScaleRange))
7573 KnownMinNumElements *=
Attrs.getFnAttrs().getVScaleRangeMin();
7575 Check((Idx < 0 && std::abs(Idx) <= KnownMinNumElements) ||
7576 (Idx >= 0 && Idx < KnownMinNumElements),
7577 "The splice index exceeds the range [-VL, VL-1] where VL is the "
7578 "known minimum number of elements in the vector. For scalable "
7579 "vectors the minimum number of elements is determined from "
7587void Verifier::visitConstrainedFPIntrinsic(ConstrainedFPIntrinsic &FPI) {
7589 bool HasRoundingMD =
7593 NumOperands += (1 + HasRoundingMD);
7599 "invalid arguments for constrained FP intrinsic", &FPI);
7602 case Intrinsic::experimental_constrained_fcmp:
7603 case Intrinsic::experimental_constrained_fcmps: {
7606 "invalid predicate for constrained FP comparison intrinsic", &FPI);
7610 case Intrinsic::experimental_constrained_fptosi:
7611 case Intrinsic::experimental_constrained_fptoui: {
7615 "Intrinsic first argument must be floating point", &FPI);
7622 "Intrinsic first argument and result disagree on vector use", &FPI);
7624 "Intrinsic result must be an integer", &FPI);
7627 "Intrinsic first argument and result vector lengths must be equal",
7633 case Intrinsic::experimental_constrained_sitofp:
7634 case Intrinsic::experimental_constrained_uitofp: {
7638 "Intrinsic first argument must be integer", &FPI);
7645 "Intrinsic first argument and result disagree on vector use", &FPI);
7647 "Intrinsic result must be a floating point", &FPI);
7650 "Intrinsic first argument and result vector lengths must be equal",
7656 case Intrinsic::experimental_constrained_fptrunc:
7657 case Intrinsic::experimental_constrained_fpext: {
7663 "Intrinsic first argument must be FP or FP vector", &FPI);
7665 "Intrinsic result must be FP or FP vector", &FPI);
7667 "Intrinsic first argument and result disagree on vector use", &FPI);
7671 "Intrinsic first argument and result vector lengths must be equal",
7674 if (FPI.
getIntrinsicID() == Intrinsic::experimental_constrained_fptrunc) {
7676 "Intrinsic first argument's type must be larger than result type",
7680 "Intrinsic first argument's type must be smaller than result type",
7696 "invalid exception behavior argument", &FPI);
7697 if (HasRoundingMD) {
7703void Verifier::verifyFragmentExpression(
const DbgVariableRecord &DVR) {
7708 if (!V || !
E || !
E->isValid())
7722 if (
V->isArtificial())
7725 verifyFragmentExpression(*V, *
Fragment, &DVR);
7728template <
typename ValueOrMetadata>
7729void Verifier::verifyFragmentExpression(
const DIVariable &V,
7731 ValueOrMetadata *
Desc) {
7734 auto VarSize =
V.getSizeInBits();
7738 unsigned FragSize =
Fragment.SizeInBits;
7739 unsigned FragOffset =
Fragment.OffsetInBits;
7740 CheckDI(FragSize + FragOffset <= *VarSize,
7741 "fragment is larger than or outside of variable",
Desc, &V);
7742 CheckDI(FragSize != *VarSize,
"fragment covers entire variable",
Desc, &V);
7745void Verifier::verifyFnArgs(
const DbgVariableRecord &DVR) {
7757 CheckDI(Var,
"#dbg record without variable");
7759 unsigned ArgNo = Var->
getArg();
7765 if (DebugFnArgs.
size() < ArgNo)
7766 DebugFnArgs.
resize(ArgNo,
nullptr);
7768 auto *Prev = DebugFnArgs[ArgNo - 1];
7769 DebugFnArgs[ArgNo - 1] = Var;
7770 CheckDI(!Prev || (Prev == Var),
"conflicting debug info for argument", &DVR,
7774void Verifier::verifyNotEntryValue(
const DbgVariableRecord &DVR) {
7778 if (!
E || !
E->isValid())
7788 ArgLoc && ArgLoc->hasAttribute(Attribute::SwiftAsync))
7793 "Entry values are only allowed in MIR unless they target a "
7794 "swiftasync Argument",
7798void Verifier::verifyCompileUnits() {
7802 if (
M.getContext().isODRUniquingDebugTypes())
7804 auto *CUs =
M.getNamedMetadata(
"llvm.dbg.cu");
7805 SmallPtrSet<const Metadata *, 2> Listed;
7808 for (
const auto *CU : CUVisited)
7809 CheckDI(Listed.
count(CU),
"DICompileUnit not listed in llvm.dbg.cu", CU);
7813void Verifier::verifyDeoptimizeCallingConvs() {
7814 if (DeoptimizeDeclarations.
empty())
7818 for (
const auto *
F :
ArrayRef(DeoptimizeDeclarations).slice(1)) {
7819 Check(
First->getCallingConv() ==
F->getCallingConv(),
7820 "All llvm.experimental.deoptimize declarations must have the same "
7821 "calling convention",
7826void Verifier::verifyAttachedCallBundle(
const CallBase &
Call,
7827 const OperandBundleUse &BU) {
7830 Check((FTy->getReturnType()->isPointerTy() ||
7832 "a call with operand bundle \"clang.arc.attachedcall\" must call a "
7833 "function returning a pointer or a non-returning function that has a "
7838 "operand bundle \"clang.arc.attachedcall\" requires one function as "
7846 Check((IID == Intrinsic::objc_retainAutoreleasedReturnValue ||
7847 IID == Intrinsic::objc_claimAutoreleasedReturnValue ||
7848 IID == Intrinsic::objc_unsafeClaimAutoreleasedReturnValue),
7849 "invalid function argument",
Call);
7851 StringRef FnName = Fn->getName();
7852 Check((FnName ==
"objc_retainAutoreleasedReturnValue" ||
7853 FnName ==
"objc_claimAutoreleasedReturnValue" ||
7854 FnName ==
"objc_unsafeClaimAutoreleasedReturnValue"),
7855 "invalid function argument",
Call);
7859void Verifier::verifyNoAliasScopeDecl() {
7860 if (NoAliasScopeDecls.
empty())
7864 for (
auto *
II : NoAliasScopeDecls) {
7865 assert(
II->getIntrinsicID() == Intrinsic::experimental_noalias_scope_decl &&
7866 "Not a llvm.experimental.noalias.scope.decl ?");
7869 Check(ScopeListMV !=
nullptr,
7870 "llvm.experimental.noalias.scope.decl must have a MetadataAsValue "
7875 Check(ScopeListMD !=
nullptr,
"!id.scope.list must point to an MDNode",
II);
7876 Check(ScopeListMD->getNumOperands() == 1,
7877 "!id.scope.list must point to a list with a single scope",
II);
7878 visitAliasScopeListMetadata(ScopeListMD);
7888 auto GetScope = [](IntrinsicInst *
II) {
7891 return &
cast<MDNode>(ScopeListMV->getMetadata())->getOperand(0);
7896 auto Compare = [GetScope](IntrinsicInst *Lhs, IntrinsicInst *Rhs) {
7897 return GetScope(Lhs) < GetScope(Rhs);
7904 auto ItCurrent = NoAliasScopeDecls.begin();
7905 while (ItCurrent != NoAliasScopeDecls.end()) {
7906 auto CurScope = GetScope(*ItCurrent);
7907 auto ItNext = ItCurrent;
7910 }
while (ItNext != NoAliasScopeDecls.end() &&
7911 GetScope(*ItNext) == CurScope);
7916 if (ItNext - ItCurrent < 32)
7920 Check(!DT.dominates(
I, J),
7921 "llvm.experimental.noalias.scope.decl dominates another one "
7922 "with the same scope",
7936 Verifier V(OS,
true, *f.getParent());
7940 return !V.verify(
F);
7944 bool *BrokenDebugInfo) {
7946 Verifier V(OS, !BrokenDebugInfo, M);
7948 bool Broken =
false;
7950 Broken |= !V.verify(
F);
7952 Broken |= !V.verify();
7953 if (BrokenDebugInfo)
7954 *BrokenDebugInfo = V.hasBrokenDebugInfo();
7965 std::unique_ptr<Verifier> V;
7966 bool FatalErrors =
true;
7969 explicit VerifierLegacyPass(
bool FatalErrors)
7970 : FunctionPass(
ID), FatalErrors(FatalErrors) {}
7972 bool doInitialization(
Module &M)
override {
7973 V = std::make_unique<Verifier>(
7979 if (!
V->verify(
F) && FatalErrors) {
7980 errs() <<
"in function " <<
F.getName() <<
'\n';
7986 bool doFinalization(
Module &M)
override {
7987 bool HasErrors =
false;
7989 if (
F.isDeclaration())
7990 HasErrors |= !
V->verify(
F);
7992 HasErrors |= !
V->verify();
7993 if (FatalErrors && (HasErrors ||
V->hasBrokenDebugInfo()))
7998 void getAnalysisUsage(AnalysisUsage &AU)
const override {
8006template <
typename... Tys>
void TBAAVerifier::CheckFailed(Tys &&... Args) {
8008 return Diagnostic->CheckFailed(
Args...);
8011#define CheckTBAA(C, ...) \
8014 CheckFailed(__VA_ARGS__); \
8022TBAAVerifier::TBAABaseNodeSummary
8026 CheckFailed(
"Base nodes must have at least two operands",
I, BaseNode);
8030 auto Itr = TBAABaseNodes.find(BaseNode);
8031 if (Itr != TBAABaseNodes.end())
8034 auto Result = verifyTBAABaseNodeImpl(
I, BaseNode, IsNewFormat);
8035 auto InsertResult = TBAABaseNodes.insert({BaseNode, Result});
8037 assert(InsertResult.second &&
"We just checked!");
8041TBAAVerifier::TBAABaseNodeSummary
8042TBAAVerifier::verifyTBAABaseNodeImpl(
const Instruction *
I,
8043 const MDNode *BaseNode,
bool IsNewFormat) {
8044 const TBAAVerifier::TBAABaseNodeSummary InvalidNode = {
true, ~0
u};
8048 return isValidScalarTBAANode(BaseNode)
8049 ? TBAAVerifier::TBAABaseNodeSummary({
false, 0})
8055 CheckFailed(
"Access tag nodes must have the number of operands that is a "
8056 "multiple of 3!", BaseNode);
8061 CheckFailed(
"Struct tag nodes must have an odd number of operands!",
8071 if (!TypeSizeNode) {
8072 CheckFailed(
"Type size nodes must be constants!",
I, BaseNode);
8079 CheckFailed(
"Struct tag nodes have a string as their first operand",
8086 std::optional<APInt> PrevOffset;
8091 unsigned FirstFieldOpNo = IsNewFormat ? 3 : 1;
8092 unsigned NumOpsPerField = IsNewFormat ? 3 : 2;
8093 for (
unsigned Idx = FirstFieldOpNo; Idx < BaseNode->
getNumOperands();
8094 Idx += NumOpsPerField) {
8095 const MDOperand &FieldTy = BaseNode->
getOperand(Idx);
8096 const MDOperand &FieldOffset = BaseNode->
getOperand(Idx + 1);
8098 CheckFailed(
"Incorrect field entry in struct type node!",
I, BaseNode);
8103 auto *OffsetEntryCI =
8105 if (!OffsetEntryCI) {
8106 CheckFailed(
"Offset entries must be constants!",
I, BaseNode);
8112 BitWidth = OffsetEntryCI->getBitWidth();
8114 if (OffsetEntryCI->getBitWidth() !=
BitWidth) {
8116 "Bitwidth between the offsets and struct type entries must match",
I,
8128 !PrevOffset || PrevOffset->ule(OffsetEntryCI->getValue());
8131 CheckFailed(
"Offsets must be increasing!",
I, BaseNode);
8135 PrevOffset = OffsetEntryCI->getValue();
8140 if (!MemberSizeNode) {
8141 CheckFailed(
"Member size entries must be constants!",
I, BaseNode);
8148 return Failed ? InvalidNode
8149 : TBAAVerifier::TBAABaseNodeSummary(
false,
BitWidth);
8171 return Parent && Visited.
insert(Parent).second &&
8175bool TBAAVerifier::isValidScalarTBAANode(
const MDNode *MD) {
8176 auto ResultIt = TBAAScalarNodes.find(MD);
8177 if (ResultIt != TBAAScalarNodes.end())
8178 return ResultIt->second;
8180 SmallPtrSet<const MDNode *, 4> Visited;
8182 auto InsertResult = TBAAScalarNodes.insert({MD,
Result});
8184 assert(InsertResult.second &&
"Just checked!");
8193MDNode *TBAAVerifier::getFieldNodeFromTBAABaseNode(
const Instruction *
I,
8194 const MDNode *BaseNode,
8205 unsigned FirstFieldOpNo = IsNewFormat ? 3 : 1;
8206 unsigned NumOpsPerField = IsNewFormat ? 3 : 2;
8207 for (
unsigned Idx = FirstFieldOpNo; Idx < BaseNode->
getNumOperands();
8208 Idx += NumOpsPerField) {
8209 auto *OffsetEntryCI =
8211 if (OffsetEntryCI->getValue().ugt(
Offset)) {
8212 if (Idx == FirstFieldOpNo) {
8213 CheckFailed(
"Could not find TBAA parent in struct type node",
I,
8218 unsigned PrevIdx = Idx - NumOpsPerField;
8219 auto *PrevOffsetEntryCI =
8221 Offset -= PrevOffsetEntryCI->getValue();
8229 Offset -= LastOffsetEntryCI->getValue();
8234 if (!
Type ||
Type->getNumOperands() < 3)
8250 "This instruction shall not have a TBAA access tag!",
I);
8252 bool IsStructPathTBAA =
8256 "Old-style TBAA is no longer allowed, use struct-path TBAA instead",
8266 "Access tag metadata must have either 4 or 5 operands",
I, MD);
8269 "Struct tag metadata must have either 3 or 4 operands",
I, MD);
8276 CheckTBAA(AccessSizeNode,
"Access size field must be a constant",
I, MD);
8280 unsigned ImmutabilityFlagOpNo = IsNewFormat ? 4 : 3;
8285 "Immutability tag on struct tag metadata must be a constant",
I,
8288 IsImmutableCI->isZero() || IsImmutableCI->isOne(),
8289 "Immutability part of the struct tag metadata must be either 0 or 1",
I,
8294 "Malformed struct tag metadata: base and access-type "
8295 "should be non-null and point to Metadata nodes",
8296 I, MD, BaseNode, AccessType);
8299 CheckTBAA(isValidScalarTBAANode(AccessType),
8300 "Access type node must be a valid scalar type",
I, MD,
8305 CheckTBAA(OffsetCI,
"Offset must be constant integer",
I, MD);
8308 bool SeenAccessTypeInPath =
false;
8314 getFieldNodeFromTBAABaseNode(
I, BaseNode,
Offset, IsNewFormat)) {
8315 if (!StructPath.
insert(BaseNode).second) {
8316 CheckFailed(
"Cycle detected in struct path",
I, MD);
8321 unsigned BaseNodeBitWidth;
8322 std::tie(
Invalid, BaseNodeBitWidth) =
8323 verifyTBAABaseNode(
I, BaseNode, IsNewFormat);
8330 SeenAccessTypeInPath |= BaseNode == AccessType;
8332 if (isValidScalarTBAANode(BaseNode) || BaseNode == AccessType)
8337 (BaseNodeBitWidth == 0 &&
Offset == 0) ||
8338 (IsNewFormat && BaseNodeBitWidth == ~0u),
8339 "Access bit-width not the same as description bit-width",
I, MD,
8340 BaseNodeBitWidth,
Offset.getBitWidth());
8342 if (IsNewFormat && SeenAccessTypeInPath)
8346 CheckTBAA(SeenAccessTypeInPath,
"Did not see access type in access path!",
I,
8351char VerifierLegacyPass::ID = 0;
8352INITIALIZE_PASS(VerifierLegacyPass,
"verify",
"Module Verifier",
false,
false)
8355 return new VerifierLegacyPass(FatalErrors);
8373 if (FatalErrors && (Res.IRBroken || Res.DebugInfoBroken))
8381 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 const Metadata * getRawDIScopeParent(const Metadata *S)
Parent scope operand of S, or null if S has no parent (a DIFile, DICompileUnit, or non-scope).
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
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.
iterator_range< user_iterator > users()
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.
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.
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'.
bool isSized() const
Return true if it makes sense to take the size of this type.
Type * getScalarType() const
If this is a vector type, return the element type, otherwise return 'this'.
bool isByteOrByteVectorTy() const
Return true if this is a byte type or a vector of byte types.
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.
LLVM_ABI unsigned getByteBitWidth() const
LLVM_ABI bool isScalableTy() const
Return true if this is a type whose size is a known multiple of vscale.
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.
LLVM_ABI bool containsNonLocalTargetExtType() const
Return true if this type is or contains a target extension type that disallows being used as a local.
LLVM_ABI bool containsNonGlobalTargetExtType() const
Return true if this type is or contains a target extension type that disallows being used as a global...
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.
LLVM_ABI bool isImmArgValueInRangeSet(ID IID, unsigned ArgIdx, const APInt &Value)
Returns true if Value satisfies the range constraints specified for argument ArgIdx of intrinsic IID.
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)
AssignmentInstRange getAssignmentInsts(DIAssignID *ID)
Return a range of instructions (typically just one) that have ID as an attachment.
SmallVector< DbgVariableRecord * > getAssignmentMarkers(DIAssignID *ID)
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 ...
auto drop_begin(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the first N elements excluded.
@ Low
Lower the current thread's priority such that it does not affect foreground tasks significantly.
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI bool canInstructionHaveMMRAs(const Instruction &I)
detail::zippy< detail::zip_first, T, U, Args... > zip_equal(T &&t, U &&u, Args &&...args)
zip iterator that assumes that all iteratees have the same length.
LLVM_ABI unsigned getBranchWeightOffset(const MDNode *ProfileData)
Return the offset to the first branch weight data.
constexpr bool isInt(int64_t x)
Checks if an integer fits into the given bit width.
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)
std::optional< ExceptionHandling > parseExceptionModel(StringRef Name)
Parses the string spelling used by the "exception-model" IR module flag into an ExceptionHandling val...
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
std::optional< ThreadModel > parseThreadModel(StringRef S)
Parse the string spelling used by the "thread-model" IR module flag into a ThreadModel.
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)
void verifyAMDGPUGlobalVariable(VerifierSupport &VS, const GlobalVariable &GV)
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.