97#include "llvm/IR/IntrinsicsAArch64.h"
98#include "llvm/IR/IntrinsicsAMDGPU.h"
99#include "llvm/IR/IntrinsicsARM.h"
100#include "llvm/IR/IntrinsicsNVPTX.h"
101#include "llvm/IR/IntrinsicsWebAssembly.h"
136 cl::desc(
"Ensure that llvm.experimental.noalias.scope.decl for identical "
137 "scopes are not dominating"));
171 if (isa<Instruction>(V)) {
175 V.printAsOperand(*
OS,
true,
MST);
243 void Write(
const unsigned i) { *
OS << i <<
'\n'; }
249 *
OS <<
A->getAsString() <<
'\n';
269 for (
const T &V : Vs)
273 template <
typename T1,
typename... Ts>
274 void WriteTs(
const T1 &V1,
const Ts &... Vs) {
279 template <
typename... Ts>
void WriteTs() {}
288 *
OS << Message <<
'\n';
296 template <
typename T1,
typename... Ts>
306 *
OS << Message <<
'\n';
312 template <
typename T1,
typename... Ts>
346 Type *LandingPadResultTy;
353 bool HasDebugInfo =
false;
396 SawFrameEscape(
false), TBAAVerifyHelper(this) {
397 TreatBrokenDebugInfoAsError = ShouldTreatBrokenDebugInfoAsError;
404 "An instance of this class only works with a specific module!");
413 DT.recalculate(
const_cast<Function &
>(
F));
416 if (!BB.empty() && BB.back().isTerminator())
420 *
OS <<
"Basic Block in function '" <<
F.getName()
421 <<
"' does not have terminator!\n";
422 BB.printAsOperand(*
OS,
true, MST);
428 auto FailureCB = [
this](
const Twine &Message) {
436 verifySiblingFuncletUnwinds();
439 ConvergenceVerifyHelper.
verify(DT);
441 InstsInThisBlock.
clear();
443 LandingPadResultTy =
nullptr;
444 SawFrameEscape =
false;
445 SiblingFuncletInfo.
clear();
446 verifyNoAliasScopeDecl();
447 NoAliasScopeDecls.
clear();
458 if (
F.getIntrinsicID() == Intrinsic::experimental_deoptimize)
463 verifyFrameRecoverIndices();
465 visitGlobalVariable(GV);
468 visitGlobalAlias(GA);
471 visitGlobalIFunc(GI);
474 visitNamedMDNode(NMD);
477 visitComdat(SMEC.getValue());
481 visitModuleCommandLines();
483 verifyCompileUnits();
485 verifyDeoptimizeCallingConvs();
486 DISubprogramAttachments.
clear();
492 enum class AreDebugLocsAllowed {
No,
Yes };
503 void visitMDNode(
const MDNode &MD, AreDebugLocsAllowed AllowLocs);
507 void visitComdat(
const Comdat &
C);
508 void visitModuleIdents();
509 void visitModuleCommandLines();
510 void visitModuleFlags();
511 void visitModuleFlag(
const MDNode *
Op,
514 void visitModuleFlagCGProfileEntry(
const MDOperand &MDO);
518 bool IsAbsoluteSymbol);
522 void visitCallStackMetadata(
MDNode *MD);
527 void visitAnnotationMetadata(
MDNode *Annotation);
528 void visitAliasScopeMetadata(
const MDNode *MD);
529 void visitAliasScopeListMetadata(
const MDNode *MD);
530 void visitAccessGroupMetadata(
const MDNode *MD);
532 template <
class Ty>
bool isValidMetadataArray(
const MDTuple &
N);
533#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) void visit##CLASS(const CLASS &N);
534#include "llvm/IR/Metadata.def"
535 void visitDIScope(
const DIScope &
N);
562 void visitPHINode(
PHINode &PN);
571 void visitVAArgInst(
VAArgInst &VAA) { visitInstruction(VAA); }
609 void verifySwiftErrorCall(
CallBase &Call,
const Value *SwiftErrorVal);
610 void verifySwiftErrorValue(
const Value *SwiftErrorVal);
612 void verifyMustTailCall(
CallInst &CI);
613 bool verifyAttributeCount(
AttributeList Attrs,
unsigned Params);
619 const Value *V,
bool IsIntrinsic,
bool IsInlineAsm);
620 void verifyFunctionMetadata(
ArrayRef<std::pair<unsigned, MDNode *>> MDs);
622 void visitConstantExprsRecursively(
const Constant *EntryC);
625 void verifyInlineAsmCall(
const CallBase &Call);
626 void verifyStatepoint(
const CallBase &Call);
627 void verifyFrameRecoverIndices();
628 void verifySiblingFuncletUnwinds();
632 template <
typename ValueOrMetadata>
633 void verifyFragmentExpression(
const DIVariable &V,
635 ValueOrMetadata *
Desc);
642 void verifyCompileUnits();
646 void verifyDeoptimizeCallingConvs();
648 void verifyAttachedCallBundle(
const CallBase &Call,
652 void verifyNoAliasScopeDecl();
658#define Check(C, ...) \
661 CheckFailed(__VA_ARGS__); \
668#define CheckDI(C, ...) \
671 DebugInfoCheckFailed(__VA_ARGS__); \
679 CheckDI(
I.DebugMarker->MarkedInstr == &
I,
680 "Instruction has invalid DebugMarker", &
I);
681 CheckDI(!isa<PHINode>(&
I) || !
I.hasDbgRecords(),
682 "PHI Node must not have any attached DbgRecords", &
I);
685 "DbgRecord had invalid DebugMarker", &
I, &DR);
688 visitMDNode(*Loc, AreDebugLocsAllowed::Yes);
689 if (
auto *DVR = dyn_cast<DbgVariableRecord>(&DR)) {
693 verifyFragmentExpression(*DVR);
694 verifyNotEntryValue(*DVR);
695 }
else if (
auto *DLR = dyn_cast<DbgLabelRecord>(&DR)) {
703 for (
unsigned i = 0, e =
I.getNumOperands(); i != e; ++i)
704 Check(
I.getOperand(i) !=
nullptr,
"Operand is null", &
I);
717 while (!WorkList.
empty()) {
719 if (!Visited.
insert(Cur).second)
726void Verifier::visitGlobalValue(
const GlobalValue &GV) {
728 "Global is external, but doesn't have external or weak linkage!", &GV);
730 if (
const GlobalObject *GO = dyn_cast<GlobalObject>(&GV)) {
734 "huge alignment values are unsupported", GO);
737 if (
const MDNode *Associated =
738 GO->getMetadata(LLVMContext::MD_associated)) {
739 Check(Associated->getNumOperands() == 1,
740 "associated metadata must have one operand", &GV, Associated);
741 const Metadata *
Op = Associated->getOperand(0).get();
742 Check(
Op,
"associated metadata must have a global value", GO, Associated);
744 const auto *VM = dyn_cast_or_null<ValueAsMetadata>(
Op);
745 Check(VM,
"associated metadata must be ValueAsMetadata", GO, Associated);
747 Check(isa<PointerType>(VM->getValue()->getType()),
748 "associated value must be pointer typed", GV, Associated);
751 Check(isa<GlobalObject>(Stripped) || isa<Constant>(Stripped),
752 "associated metadata must point to a GlobalObject", GO, Stripped);
753 Check(Stripped != GO,
754 "global values should not associate to themselves", GO,
760 if (
const MDNode *AbsoluteSymbol =
761 GO->getMetadata(LLVMContext::MD_absolute_symbol)) {
762 verifyRangeMetadata(*GO, AbsoluteSymbol,
DL.getIntPtrType(GO->getType()),
768 "Only global variables can have appending linkage!", &GV);
773 "Only global arrays can have appending linkage!", GVar);
777 Check(!GV.
hasComdat(),
"Declaration may not be in a Comdat!", &GV);
781 "dllexport GlobalValue must have default or protected visibility",
786 "dllimport GlobalValue must have default visibility", &GV);
787 Check(!GV.
isDSOLocal(),
"GlobalValue with DLLImport Storage is dso_local!",
793 "Global is marked as dllimport, but not external", &GV);
798 "GlobalValue with local linkage or non-default "
799 "visibility must be dso_local!",
804 if (!
I->getParent() || !
I->getParent()->getParent())
805 CheckFailed(
"Global is referenced by parentless instruction!", &GV, &M,
807 else if (
I->getParent()->getParent()->getParent() != &M)
808 CheckFailed(
"Global is referenced in a different module!", &GV, &M,
I,
809 I->getParent()->getParent(),
810 I->getParent()->getParent()->getParent());
812 }
else if (
const Function *
F = dyn_cast<Function>(V)) {
813 if (
F->getParent() != &M)
814 CheckFailed(
"Global is used by function in a different module", &GV, &M,
825 "Global variable initializer type does not match global "
832 "'common' global must have a zero initializer!", &GV);
835 Check(!GV.
hasComdat(),
"'common' global may not be in a Comdat!", &GV);
840 GV.
getName() ==
"llvm.global_dtors")) {
842 "invalid linkage for intrinsic global variable", &GV);
844 "invalid uses of intrinsic global variable", &GV);
849 StructType *STy = dyn_cast<StructType>(ATy->getElementType());
855 "wrong type for intrinsic global variable", &GV);
857 "the third field of the element type is mandatory, "
858 "specify ptr null to migrate from the obsoleted 2-field form");
866 GV.
getName() ==
"llvm.compiler.used")) {
868 "invalid linkage for intrinsic global variable", &GV);
870 "invalid uses of intrinsic global variable", &GV);
873 if (
ArrayType *ATy = dyn_cast<ArrayType>(GVType)) {
874 PointerType *PTy = dyn_cast<PointerType>(ATy->getElementType());
875 Check(PTy,
"wrong type for intrinsic global variable", &GV);
879 Check(InitArray,
"wrong initalizer for intrinsic global variable",
883 Check(isa<GlobalVariable>(V) || isa<Function>(V) ||
887 Twine(
"members of ") + GV.
getName() +
" must be named", V);
896 for (
auto *MD : MDs) {
897 if (
auto *GVE = dyn_cast<DIGlobalVariableExpression>(MD))
898 visitDIGlobalVariableExpression(*GVE);
900 CheckDI(
false,
"!dbg attachment of global variable must be a "
901 "DIGlobalVariableExpression");
907 "Globals cannot contain scalable types", &GV);
911 if (
auto *TTy = dyn_cast<TargetExtType>(GV.
getValueType()))
913 "Global @" + GV.
getName() +
" has illegal target extension type",
917 visitGlobalValue(GV);
924 visitGlobalValue(GV);
930 visitAliaseeSubExpr(Visited, GA,
C);
936 Check(isa<GlobalValue>(
C) &&
937 cast<GlobalValue>(
C).hasAvailableExternallyLinkage(),
938 "available_externally alias must point to available_externally "
942 if (
const auto *GV = dyn_cast<GlobalValue>(&
C)) {
948 if (
const auto *GA2 = dyn_cast<GlobalAlias>(GV)) {
949 Check(Visited.
insert(GA2).second,
"Aliases cannot form a cycle", &GA);
951 Check(!GA2->isInterposable(),
952 "Alias cannot point to an interposable alias", &GA);
960 if (
const auto *CE = dyn_cast<ConstantExpr>(&
C))
961 visitConstantExprsRecursively(CE);
963 for (
const Use &U :
C.operands()) {
965 if (
const auto *GA2 = dyn_cast<GlobalAlias>(V))
966 visitAliaseeSubExpr(Visited, GA, *GA2->getAliasee());
967 else if (
const auto *C2 = dyn_cast<Constant>(V))
968 visitAliaseeSubExpr(Visited, GA, *C2);
972void Verifier::visitGlobalAlias(
const GlobalAlias &GA) {
974 "Alias should have private, internal, linkonce, weak, linkonce_odr, "
975 "weak_odr, external, or available_externally linkage!",
978 Check(Aliasee,
"Aliasee cannot be NULL!", &GA);
980 "Alias and aliasee types should match!", &GA);
982 Check(isa<GlobalValue>(Aliasee) || isa<ConstantExpr>(Aliasee),
983 "Aliasee should be either GlobalValue or ConstantExpr", &GA);
985 visitAliaseeSubExpr(GA, *Aliasee);
987 visitGlobalValue(GA);
990void Verifier::visitGlobalIFunc(
const GlobalIFunc &GI) {
992 "IFunc should have private, internal, linkonce, weak, linkonce_odr, "
993 "weak_odr, or external linkage!",
1000 "IFunc resolver must be a definition", &GI);
1006 Check(isa<PointerType>(
Resolver->getFunctionType()->getReturnType()),
1007 "IFunc resolver must return a pointer", &GI);
1010 "IFunc resolver has incorrect type", &GI);
1013void Verifier::visitNamedMDNode(
const NamedMDNode &NMD) {
1018 "unrecognized named metadata node in the llvm.dbg namespace", &NMD);
1020 if (NMD.
getName() ==
"llvm.dbg.cu")
1021 CheckDI(MD && isa<DICompileUnit>(MD),
"invalid compile unit", &NMD, MD);
1026 visitMDNode(*MD, AreDebugLocsAllowed::Yes);
1030void Verifier::visitMDNode(
const MDNode &MD, AreDebugLocsAllowed AllowLocs) {
1033 if (!MDNodes.
insert(&MD).second)
1037 "MDNode context does not match Module context!", &MD);
1042 case Metadata::MDTupleKind:
1044#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) \
1045 case Metadata::CLASS##Kind: \
1046 visit##CLASS(cast<CLASS>(MD)); \
1048#include "llvm/IR/Metadata.def"
1054 Check(!isa<LocalAsMetadata>(
Op),
"Invalid operand for global metadata!",
1056 CheckDI(!isa<DILocation>(
Op) || AllowLocs == AreDebugLocsAllowed::Yes,
1057 "DILocation not allowed within this metadata node", &MD,
Op);
1058 if (
auto *
N = dyn_cast<MDNode>(
Op)) {
1059 visitMDNode(*
N, AllowLocs);
1062 if (
auto *V = dyn_cast<ValueAsMetadata>(
Op)) {
1063 visitValueAsMetadata(*V,
nullptr);
1076 "Unexpected metadata round-trip through values", &MD, MD.
getValue());
1078 auto *
L = dyn_cast<LocalAsMetadata>(&MD);
1082 Check(
F,
"function-local metadata used outside a function", L);
1087 if (
Instruction *
I = dyn_cast<Instruction>(
L->getValue())) {
1088 Check(
I->getParent(),
"function-local metadata not in basic block", L,
I);
1089 ActualF =
I->getParent()->getParent();
1090 }
else if (
BasicBlock *BB = dyn_cast<BasicBlock>(
L->getValue()))
1092 else if (
Argument *
A = dyn_cast<Argument>(
L->getValue()))
1093 ActualF =
A->getParent();
1094 assert(ActualF &&
"Unimplemented function local metadata case!");
1096 Check(ActualF ==
F,
"function-local metadata used in wrong function", L);
1101 visitValueAsMetadata(*VAM,
F);
1106 if (
auto *
N = dyn_cast<MDNode>(MD)) {
1107 visitMDNode(*
N, AreDebugLocsAllowed::No);
1113 if (!MDNodes.
insert(MD).second)
1116 if (
auto *V = dyn_cast<ValueAsMetadata>(MD))
1117 visitValueAsMetadata(*V,
F);
1119 if (
auto *AL = dyn_cast<DIArgList>(MD))
1120 visitDIArgList(*AL,
F);
1127void Verifier::visitDILocation(
const DILocation &
N) {
1128 CheckDI(
N.getRawScope() && isa<DILocalScope>(
N.getRawScope()),
1129 "location requires a valid scope", &
N,
N.getRawScope());
1130 if (
auto *IA =
N.getRawInlinedAt())
1131 CheckDI(isa<DILocation>(IA),
"inlined-at should be a location", &
N, IA);
1132 if (
auto *SP = dyn_cast<DISubprogram>(
N.getRawScope()))
1133 CheckDI(SP->isDefinition(),
"scope points into the type hierarchy", &
N);
1140void Verifier::visitDIScope(
const DIScope &
N) {
1141 if (
auto *
F =
N.getRawFile())
1142 CheckDI(isa<DIFile>(
F),
"invalid file", &
N,
F);
1145void Verifier::visitDISubrange(
const DISubrange &
N) {
1146 CheckDI(
N.getTag() == dwarf::DW_TAG_subrange_type,
"invalid tag", &
N);
1147 CheckDI(!
N.getRawCountNode() || !
N.getRawUpperBound(),
1148 "Subrange can have any one of count or upperBound", &
N);
1149 auto *CBound =
N.getRawCountNode();
1150 CheckDI(!CBound || isa<ConstantAsMetadata>(CBound) ||
1151 isa<DIVariable>(CBound) || isa<DIExpression>(CBound),
1152 "Count must be signed constant or DIVariable or DIExpression", &
N);
1153 auto Count =
N.getCount();
1154 CheckDI(!Count || !isa<ConstantInt *>(Count) ||
1155 cast<ConstantInt *>(Count)->getSExtValue() >= -1,
1156 "invalid subrange count", &
N);
1157 auto *LBound =
N.getRawLowerBound();
1158 CheckDI(!LBound || isa<ConstantAsMetadata>(LBound) ||
1159 isa<DIVariable>(LBound) || isa<DIExpression>(LBound),
1160 "LowerBound must be signed constant or DIVariable or DIExpression",
1162 auto *UBound =
N.getRawUpperBound();
1163 CheckDI(!UBound || isa<ConstantAsMetadata>(UBound) ||
1164 isa<DIVariable>(UBound) || isa<DIExpression>(UBound),
1165 "UpperBound must be signed constant or DIVariable or DIExpression",
1167 auto *Stride =
N.getRawStride();
1168 CheckDI(!Stride || isa<ConstantAsMetadata>(Stride) ||
1169 isa<DIVariable>(Stride) || isa<DIExpression>(Stride),
1170 "Stride must be signed constant or DIVariable or DIExpression", &
N);
1174 CheckDI(
N.getTag() == dwarf::DW_TAG_generic_subrange,
"invalid tag", &
N);
1175 CheckDI(!
N.getRawCountNode() || !
N.getRawUpperBound(),
1176 "GenericSubrange can have any one of count or upperBound", &
N);
1177 auto *CBound =
N.getRawCountNode();
1178 CheckDI(!CBound || isa<DIVariable>(CBound) || isa<DIExpression>(CBound),
1179 "Count must be signed constant or DIVariable or DIExpression", &
N);
1180 auto *LBound =
N.getRawLowerBound();
1181 CheckDI(LBound,
"GenericSubrange must contain lowerBound", &
N);
1182 CheckDI(isa<DIVariable>(LBound) || isa<DIExpression>(LBound),
1183 "LowerBound must be signed constant or DIVariable or DIExpression",
1185 auto *UBound =
N.getRawUpperBound();
1186 CheckDI(!UBound || isa<DIVariable>(UBound) || isa<DIExpression>(UBound),
1187 "UpperBound must be signed constant or DIVariable or DIExpression",
1189 auto *Stride =
N.getRawStride();
1190 CheckDI(Stride,
"GenericSubrange must contain stride", &
N);
1191 CheckDI(isa<DIVariable>(Stride) || isa<DIExpression>(Stride),
1192 "Stride must be signed constant or DIVariable or DIExpression", &
N);
1196 CheckDI(
N.getTag() == dwarf::DW_TAG_enumerator,
"invalid tag", &
N);
1200 CheckDI(
N.getTag() == dwarf::DW_TAG_base_type ||
1201 N.getTag() == dwarf::DW_TAG_unspecified_type ||
1202 N.getTag() == dwarf::DW_TAG_string_type,
1207 CheckDI(
N.getTag() == dwarf::DW_TAG_string_type,
"invalid tag", &
N);
1208 CheckDI(!(
N.isBigEndian() &&
N.isLittleEndian()),
"has conflicting flags",
1216 CheckDI(
N.getTag() == dwarf::DW_TAG_typedef ||
1217 N.getTag() == dwarf::DW_TAG_pointer_type ||
1218 N.getTag() == dwarf::DW_TAG_ptr_to_member_type ||
1219 N.getTag() == dwarf::DW_TAG_reference_type ||
1220 N.getTag() == dwarf::DW_TAG_rvalue_reference_type ||
1221 N.getTag() == dwarf::DW_TAG_const_type ||
1222 N.getTag() == dwarf::DW_TAG_immutable_type ||
1223 N.getTag() == dwarf::DW_TAG_volatile_type ||
1224 N.getTag() == dwarf::DW_TAG_restrict_type ||
1225 N.getTag() == dwarf::DW_TAG_atomic_type ||
1226 N.getTag() == dwarf::DW_TAG_LLVM_ptrauth_type ||
1227 N.getTag() == dwarf::DW_TAG_member ||
1228 (
N.getTag() == dwarf::DW_TAG_variable &&
N.isStaticMember()) ||
1229 N.getTag() == dwarf::DW_TAG_inheritance ||
1230 N.getTag() == dwarf::DW_TAG_friend ||
1231 N.getTag() == dwarf::DW_TAG_set_type ||
1232 N.getTag() == dwarf::DW_TAG_template_alias,
1234 if (
N.getTag() == dwarf::DW_TAG_ptr_to_member_type) {
1235 CheckDI(
isType(
N.getRawExtraData()),
"invalid pointer to member type", &
N,
1236 N.getRawExtraData());
1239 if (
N.getTag() == dwarf::DW_TAG_set_type) {
1240 if (
auto *
T =
N.getRawBaseType()) {
1241 auto *
Enum = dyn_cast_or_null<DICompositeType>(
T);
1242 auto *
Basic = dyn_cast_or_null<DIBasicType>(
T);
1244 (Enum &&
Enum->getTag() == dwarf::DW_TAG_enumeration_type) ||
1245 (
Basic && (
Basic->getEncoding() == dwarf::DW_ATE_unsigned ||
1246 Basic->getEncoding() == dwarf::DW_ATE_signed ||
1247 Basic->getEncoding() == dwarf::DW_ATE_unsigned_char ||
1248 Basic->getEncoding() == dwarf::DW_ATE_signed_char ||
1249 Basic->getEncoding() == dwarf::DW_ATE_boolean)),
1250 "invalid set base type", &
N,
T);
1256 N.getRawBaseType());
1258 if (
N.getDWARFAddressSpace()) {
1259 CheckDI(
N.getTag() == dwarf::DW_TAG_pointer_type ||
1260 N.getTag() == dwarf::DW_TAG_reference_type ||
1261 N.getTag() == dwarf::DW_TAG_rvalue_reference_type,
1262 "DWARF address space only applies to pointer or reference types",
1269 return ((Flags & DINode::FlagLValueReference) &&
1270 (Flags & DINode::FlagRValueReference)) ||
1271 ((Flags & DINode::FlagTypePassByValue) &&
1272 (Flags & DINode::FlagTypePassByReference));
1275void Verifier::visitTemplateParams(
const MDNode &
N,
const Metadata &RawParams) {
1276 auto *Params = dyn_cast<MDTuple>(&RawParams);
1277 CheckDI(Params,
"invalid template params", &
N, &RawParams);
1279 CheckDI(
Op && isa<DITemplateParameter>(
Op),
"invalid template parameter",
1288 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type ||
1289 N.getTag() == dwarf::DW_TAG_structure_type ||
1290 N.getTag() == dwarf::DW_TAG_union_type ||
1291 N.getTag() == dwarf::DW_TAG_enumeration_type ||
1292 N.getTag() == dwarf::DW_TAG_class_type ||
1293 N.getTag() == dwarf::DW_TAG_variant_part ||
1294 N.getTag() == dwarf::DW_TAG_namelist,
1299 N.getRawBaseType());
1301 CheckDI(!
N.getRawElements() || isa<MDTuple>(
N.getRawElements()),
1302 "invalid composite elements", &
N,
N.getRawElements());
1304 N.getRawVTableHolder());
1306 "invalid reference flags", &
N);
1307 unsigned DIBlockByRefStruct = 1 << 4;
1308 CheckDI((
N.getFlags() & DIBlockByRefStruct) == 0,
1309 "DIBlockByRefStruct on DICompositeType is no longer supported", &
N);
1312 const DINodeArray
Elements =
N.getElements();
1314 Elements[0]->getTag() == dwarf::DW_TAG_subrange_type,
1315 "invalid vector, expected one element of type subrange", &
N);
1318 if (
auto *Params =
N.getRawTemplateParams())
1319 visitTemplateParams(
N, *Params);
1321 if (
auto *
D =
N.getRawDiscriminator()) {
1322 CheckDI(isa<DIDerivedType>(
D) &&
N.getTag() == dwarf::DW_TAG_variant_part,
1323 "discriminator can only appear on variant part");
1326 if (
N.getRawDataLocation()) {
1327 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1328 "dataLocation can only appear in array type");
1331 if (
N.getRawAssociated()) {
1332 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1333 "associated can only appear in array type");
1336 if (
N.getRawAllocated()) {
1337 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1338 "allocated can only appear in array type");
1341 if (
N.getRawRank()) {
1342 CheckDI(
N.getTag() == dwarf::DW_TAG_array_type,
1343 "rank can only appear in array type");
1346 if (
N.getTag() == dwarf::DW_TAG_array_type) {
1347 CheckDI(
N.getRawBaseType(),
"array types must have a base type", &
N);
1352 CheckDI(
N.getTag() == dwarf::DW_TAG_subroutine_type,
"invalid tag", &
N);
1353 if (
auto *Types =
N.getRawTypeArray()) {
1354 CheckDI(isa<MDTuple>(Types),
"invalid composite elements", &
N, Types);
1355 for (
Metadata *Ty :
N.getTypeArray()->operands()) {
1356 CheckDI(
isType(Ty),
"invalid subroutine type ref", &
N, Types, Ty);
1360 "invalid reference flags", &
N);
1363void Verifier::visitDIFile(
const DIFile &
N) {
1364 CheckDI(
N.getTag() == dwarf::DW_TAG_file_type,
"invalid tag", &
N);
1365 std::optional<DIFile::ChecksumInfo<StringRef>> Checksum =
N.getChecksum();
1368 "invalid checksum kind", &
N);
1370 switch (Checksum->Kind) {
1381 CheckDI(Checksum->Value.size() ==
Size,
"invalid checksum length", &
N);
1383 "invalid checksum", &
N);
1388 CheckDI(
N.isDistinct(),
"compile units must be distinct", &
N);
1389 CheckDI(
N.getTag() == dwarf::DW_TAG_compile_unit,
"invalid tag", &
N);
1393 CheckDI(
N.getRawFile() && isa<DIFile>(
N.getRawFile()),
"invalid file", &
N,
1395 CheckDI(!
N.getFile()->getFilename().empty(),
"invalid filename", &
N,
1399 "invalid emission kind", &
N);
1401 if (
auto *Array =
N.getRawEnumTypes()) {
1402 CheckDI(isa<MDTuple>(Array),
"invalid enum list", &
N, Array);
1403 for (
Metadata *
Op :
N.getEnumTypes()->operands()) {
1404 auto *
Enum = dyn_cast_or_null<DICompositeType>(
Op);
1405 CheckDI(Enum &&
Enum->getTag() == dwarf::DW_TAG_enumeration_type,
1406 "invalid enum type", &
N,
N.getEnumTypes(),
Op);
1409 if (
auto *Array =
N.getRawRetainedTypes()) {
1410 CheckDI(isa<MDTuple>(Array),
"invalid retained type list", &
N, Array);
1411 for (
Metadata *
Op :
N.getRetainedTypes()->operands()) {
1413 Op && (isa<DIType>(
Op) || (isa<DISubprogram>(
Op) &&
1414 !cast<DISubprogram>(
Op)->isDefinition())),
1415 "invalid retained type", &
N,
Op);
1418 if (
auto *Array =
N.getRawGlobalVariables()) {
1419 CheckDI(isa<MDTuple>(Array),
"invalid global variable list", &
N, Array);
1420 for (
Metadata *
Op :
N.getGlobalVariables()->operands()) {
1421 CheckDI(
Op && (isa<DIGlobalVariableExpression>(
Op)),
1422 "invalid global variable ref", &
N,
Op);
1425 if (
auto *Array =
N.getRawImportedEntities()) {
1426 CheckDI(isa<MDTuple>(Array),
"invalid imported entity list", &
N, Array);
1427 for (
Metadata *
Op :
N.getImportedEntities()->operands()) {
1428 CheckDI(
Op && isa<DIImportedEntity>(
Op),
"invalid imported entity ref",
1432 if (
auto *Array =
N.getRawMacros()) {
1433 CheckDI(isa<MDTuple>(Array),
"invalid macro list", &
N, Array);
1435 CheckDI(
Op && isa<DIMacroNode>(
Op),
"invalid macro ref", &
N,
Op);
1442 CheckDI(
N.getTag() == dwarf::DW_TAG_subprogram,
"invalid tag", &
N);
1444 if (
auto *
F =
N.getRawFile())
1445 CheckDI(isa<DIFile>(
F),
"invalid file", &
N,
F);
1447 CheckDI(
N.getLine() == 0,
"line specified with no file", &
N,
N.getLine());
1448 if (
auto *
T =
N.getRawType())
1449 CheckDI(isa<DISubroutineType>(
T),
"invalid subroutine type", &
N,
T);
1450 CheckDI(
isType(
N.getRawContainingType()),
"invalid containing type", &
N,
1451 N.getRawContainingType());
1452 if (
auto *Params =
N.getRawTemplateParams())
1453 visitTemplateParams(
N, *Params);
1454 if (
auto *S =
N.getRawDeclaration())
1455 CheckDI(isa<DISubprogram>(S) && !cast<DISubprogram>(S)->isDefinition(),
1456 "invalid subprogram declaration", &
N, S);
1457 if (
auto *RawNode =
N.getRawRetainedNodes()) {
1458 auto *
Node = dyn_cast<MDTuple>(RawNode);
1459 CheckDI(
Node,
"invalid retained nodes list", &
N, RawNode);
1461 CheckDI(
Op && (isa<DILocalVariable>(
Op) || isa<DILabel>(
Op) ||
1462 isa<DIImportedEntity>(
Op)),
1463 "invalid retained nodes, expected DILocalVariable, DILabel or "
1469 "invalid reference flags", &
N);
1471 auto *Unit =
N.getRawUnit();
1472 if (
N.isDefinition()) {
1474 CheckDI(
N.isDistinct(),
"subprogram definitions must be distinct", &
N);
1475 CheckDI(Unit,
"subprogram definitions must have a compile unit", &
N);
1476 CheckDI(isa<DICompileUnit>(Unit),
"invalid unit type", &
N, Unit);
1479 auto *CT = dyn_cast_or_null<DICompositeType>(
N.getRawScope());
1480 if (CT && CT->getRawIdentifier() &&
1481 M.getContext().isODRUniquingDebugTypes())
1483 "definition subprograms cannot be nested within DICompositeType "
1484 "when enabling ODR",
1488 CheckDI(!Unit,
"subprogram declarations must not have a compile unit", &
N);
1490 "subprogram declaration must not have a declaration field");
1493 if (
auto *RawThrownTypes =
N.getRawThrownTypes()) {
1494 auto *ThrownTypes = dyn_cast<MDTuple>(RawThrownTypes);
1495 CheckDI(ThrownTypes,
"invalid thrown types list", &
N, RawThrownTypes);
1497 CheckDI(
Op && isa<DIType>(
Op),
"invalid thrown type", &
N, ThrownTypes,
1501 if (
N.areAllCallsDescribed())
1503 "DIFlagAllCallsDescribed must be attached to a definition");
1507 CheckDI(
N.getTag() == dwarf::DW_TAG_lexical_block,
"invalid tag", &
N);
1508 CheckDI(
N.getRawScope() && isa<DILocalScope>(
N.getRawScope()),
1509 "invalid local scope", &
N,
N.getRawScope());
1510 if (
auto *SP = dyn_cast<DISubprogram>(
N.getRawScope()))
1511 CheckDI(SP->isDefinition(),
"scope points into the type hierarchy", &
N);
1515 visitDILexicalBlockBase(
N);
1518 "cannot have column info without line info", &
N);
1522 visitDILexicalBlockBase(
N);
1526 CheckDI(
N.getTag() == dwarf::DW_TAG_common_block,
"invalid tag", &
N);
1527 if (
auto *S =
N.getRawScope())
1528 CheckDI(isa<DIScope>(S),
"invalid scope ref", &
N, S);
1529 if (
auto *S =
N.getRawDecl())
1530 CheckDI(isa<DIGlobalVariable>(S),
"invalid declaration", &
N, S);
1534 CheckDI(
N.getTag() == dwarf::DW_TAG_namespace,
"invalid tag", &
N);
1535 if (
auto *S =
N.getRawScope())
1536 CheckDI(isa<DIScope>(S),
"invalid scope ref", &
N, S);
1539void Verifier::visitDIMacro(
const DIMacro &
N) {
1542 "invalid macinfo type", &
N);
1543 CheckDI(!
N.getName().empty(),
"anonymous macro", &
N);
1544 if (!
N.getValue().empty()) {
1545 assert(
N.getValue().data()[0] !=
' ' &&
"Macro value has a space prefix");
1551 "invalid macinfo type", &
N);
1552 if (
auto *
F =
N.getRawFile())
1553 CheckDI(isa<DIFile>(
F),
"invalid file", &
N,
F);
1555 if (
auto *Array =
N.getRawElements()) {
1556 CheckDI(isa<MDTuple>(Array),
"invalid macro list", &
N, Array);
1557 for (
Metadata *
Op :
N.getElements()->operands()) {
1558 CheckDI(
Op && isa<DIMacroNode>(
Op),
"invalid macro ref", &
N,
Op);
1563void Verifier::visitDIModule(
const DIModule &
N) {
1564 CheckDI(
N.getTag() == dwarf::DW_TAG_module,
"invalid tag", &
N);
1565 CheckDI(!
N.getName().empty(),
"anonymous module", &
N);
1573 visitDITemplateParameter(
N);
1575 CheckDI(
N.getTag() == dwarf::DW_TAG_template_type_parameter,
"invalid tag",
1579void Verifier::visitDITemplateValueParameter(
1581 visitDITemplateParameter(
N);
1583 CheckDI(
N.getTag() == dwarf::DW_TAG_template_value_parameter ||
1584 N.getTag() == dwarf::DW_TAG_GNU_template_template_param ||
1585 N.getTag() == dwarf::DW_TAG_GNU_template_parameter_pack,
1589void Verifier::visitDIVariable(
const DIVariable &
N) {
1590 if (
auto *S =
N.getRawScope())
1591 CheckDI(isa<DIScope>(S),
"invalid scope", &
N, S);
1592 if (
auto *
F =
N.getRawFile())
1593 CheckDI(isa<DIFile>(
F),
"invalid file", &
N,
F);
1600 CheckDI(
N.getTag() == dwarf::DW_TAG_variable,
"invalid tag", &
N);
1603 if (
N.isDefinition())
1604 CheckDI(
N.getType(),
"missing global variable type", &
N);
1605 if (
auto *Member =
N.getRawStaticDataMemberDeclaration()) {
1606 CheckDI(isa<DIDerivedType>(Member),
1607 "invalid static data member declaration", &
N, Member);
1616 CheckDI(
N.getTag() == dwarf::DW_TAG_variable,
"invalid tag", &
N);
1617 CheckDI(
N.getRawScope() && isa<DILocalScope>(
N.getRawScope()),
1618 "local variable requires a valid scope", &
N,
N.getRawScope());
1619 if (
auto Ty =
N.getType())
1620 CheckDI(!isa<DISubroutineType>(Ty),
"invalid type", &
N,
N.getType());
1623void Verifier::visitDIAssignID(
const DIAssignID &
N) {
1624 CheckDI(!
N.getNumOperands(),
"DIAssignID has no arguments", &
N);
1625 CheckDI(
N.isDistinct(),
"DIAssignID must be distinct", &
N);
1628void Verifier::visitDILabel(
const DILabel &
N) {
1629 if (
auto *S =
N.getRawScope())
1630 CheckDI(isa<DIScope>(S),
"invalid scope", &
N, S);
1631 if (
auto *
F =
N.getRawFile())
1632 CheckDI(isa<DIFile>(
F),
"invalid file", &
N,
F);
1634 CheckDI(
N.getTag() == dwarf::DW_TAG_label,
"invalid tag", &
N);
1635 CheckDI(
N.getRawScope() && isa<DILocalScope>(
N.getRawScope()),
1636 "label requires a valid scope", &
N,
N.getRawScope());
1640 CheckDI(
N.isValid(),
"invalid expression", &
N);
1643void Verifier::visitDIGlobalVariableExpression(
1647 visitDIGlobalVariable(*Var);
1649 visitDIExpression(*Expr);
1650 if (
auto Fragment = Expr->getFragmentInfo())
1651 verifyFragmentExpression(*GVE.
getVariable(), *Fragment, &GVE);
1656 CheckDI(
N.getTag() == dwarf::DW_TAG_APPLE_property,
"invalid tag", &
N);
1657 if (
auto *
T =
N.getRawType())
1659 if (
auto *
F =
N.getRawFile())
1660 CheckDI(isa<DIFile>(
F),
"invalid file", &
N,
F);
1664 CheckDI(
N.getTag() == dwarf::DW_TAG_imported_module ||
1665 N.getTag() == dwarf::DW_TAG_imported_declaration,
1667 if (
auto *S =
N.getRawScope())
1668 CheckDI(isa<DIScope>(S),
"invalid scope for imported entity", &
N, S);
1673void Verifier::visitComdat(
const Comdat &
C) {
1676 if (
TT.isOSBinFormatCOFF())
1682void Verifier::visitModuleIdents() {
1683 const NamedMDNode *Idents =
M.getNamedMetadata(
"llvm.ident");
1690 Check(
N->getNumOperands() == 1,
1691 "incorrect number of operands in llvm.ident metadata",
N);
1692 Check(dyn_cast_or_null<MDString>(
N->getOperand(0)),
1693 (
"invalid value for llvm.ident metadata entry operand"
1694 "(the operand should be a string)"),
1699void Verifier::visitModuleCommandLines() {
1700 const NamedMDNode *CommandLines =
M.getNamedMetadata(
"llvm.commandline");
1708 Check(
N->getNumOperands() == 1,
1709 "incorrect number of operands in llvm.commandline metadata",
N);
1710 Check(dyn_cast_or_null<MDString>(
N->getOperand(0)),
1711 (
"invalid value for llvm.commandline metadata entry operand"
1712 "(the operand should be a string)"),
1717void Verifier::visitModuleFlags() {
1727 visitModuleFlag(MDN, SeenIDs, Requirements);
1728 if (MDN->getNumOperands() != 3)
1730 if (
const auto *FlagName = dyn_cast_or_null<MDString>(MDN->getOperand(1))) {
1731 if (FlagName->getString() ==
"aarch64-elf-pauthabi-platform") {
1732 if (
const auto *PAP =
1733 mdconst::dyn_extract_or_null<ConstantInt>(MDN->getOperand(2)))
1734 PAuthABIPlatform = PAP->getZExtValue();
1735 }
else if (FlagName->getString() ==
"aarch64-elf-pauthabi-version") {
1736 if (
const auto *PAV =
1737 mdconst::dyn_extract_or_null<ConstantInt>(MDN->getOperand(2)))
1738 PAuthABIVersion = PAV->getZExtValue();
1743 if ((PAuthABIPlatform ==
uint64_t(-1)) != (PAuthABIVersion ==
uint64_t(-1)))
1744 CheckFailed(
"either both or no 'aarch64-elf-pauthabi-platform' and "
1745 "'aarch64-elf-pauthabi-version' module flags must be present");
1748 for (
const MDNode *Requirement : Requirements) {
1749 const MDString *
Flag = cast<MDString>(Requirement->getOperand(0));
1750 const Metadata *ReqValue = Requirement->getOperand(1);
1754 CheckFailed(
"invalid requirement on flag, flag is not present in module",
1759 if (
Op->getOperand(2) != ReqValue) {
1760 CheckFailed((
"invalid requirement on flag, "
1761 "flag does not have the required value"),
1769Verifier::visitModuleFlag(
const MDNode *
Op,
1775 "incorrect number of operands in module flag",
Op);
1778 Check(mdconst::dyn_extract_or_null<ConstantInt>(
Op->getOperand(0)),
1779 "invalid behavior operand in module flag (expected constant integer)",
1782 "invalid behavior operand in module flag (unexpected constant)",
1785 MDString *
ID = dyn_cast_or_null<MDString>(
Op->getOperand(1));
1786 Check(
ID,
"invalid ID operand in module flag (expected metadata string)",
1798 auto *
V = mdconst::dyn_extract_or_null<ConstantInt>(
Op->getOperand(2));
1799 Check(V &&
V->getValue().isNonNegative(),
1800 "invalid value for 'min' module flag (expected constant non-negative "
1807 Check(mdconst::dyn_extract_or_null<ConstantInt>(
Op->getOperand(2)),
1808 "invalid value for 'max' module flag (expected constant integer)",
1818 "invalid value for 'require' module flag (expected metadata pair)",
1821 (
"invalid value for 'require' module flag "
1822 "(first value operand should be a string)"),
1823 Value->getOperand(0));
1834 Check(isa<MDNode>(
Op->getOperand(2)),
1835 "invalid value for 'append'-type module flag "
1836 "(expected a metadata node)",
1846 "module flag identifiers must be unique (or of 'require' type)",
ID);
1849 if (
ID->getString() ==
"wchar_size") {
1851 = mdconst::dyn_extract_or_null<ConstantInt>(
Op->getOperand(2));
1852 Check(
Value,
"wchar_size metadata requires constant integer argument");
1855 if (
ID->getString() ==
"Linker Options") {
1859 Check(
M.getNamedMetadata(
"llvm.linker.options"),
1860 "'Linker Options' named metadata no longer supported");
1863 if (
ID->getString() ==
"SemanticInterposition") {
1865 mdconst::dyn_extract_or_null<ConstantInt>(
Op->getOperand(2));
1867 "SemanticInterposition metadata requires constant integer argument");
1870 if (
ID->getString() ==
"CG Profile") {
1871 for (
const MDOperand &MDO : cast<MDNode>(
Op->getOperand(2))->operands())
1872 visitModuleFlagCGProfileEntry(MDO);
1876void Verifier::visitModuleFlagCGProfileEntry(
const MDOperand &MDO) {
1877 auto CheckFunction = [&](
const MDOperand &FuncMDO) {
1880 auto F = dyn_cast<ValueAsMetadata>(FuncMDO);
1881 Check(
F && isa<Function>(
F->getValue()->stripPointerCasts()),
1882 "expected a Function or null", FuncMDO);
1884 auto Node = dyn_cast_or_null<MDNode>(MDO);
1885 Check(
Node &&
Node->getNumOperands() == 3,
"expected a MDNode triple", MDO);
1886 CheckFunction(
Node->getOperand(0));
1887 CheckFunction(
Node->getOperand(1));
1888 auto Count = dyn_cast_or_null<ConstantAsMetadata>(
Node->getOperand(2));
1889 Check(Count && Count->getType()->isIntegerTy(),
1890 "expected an integer constant",
Node->getOperand(2));
1896 if (
A.isStringAttribute()) {
1897#define GET_ATTR_NAMES
1898#define ATTRIBUTE_ENUM(ENUM_NAME, DISPLAY_NAME)
1899#define ATTRIBUTE_STRBOOL(ENUM_NAME, DISPLAY_NAME) \
1900 if (A.getKindAsString() == #DISPLAY_NAME) { \
1901 auto V = A.getValueAsString(); \
1902 if (!(V.empty() || V == "true" || V == "false")) \
1903 CheckFailed("invalid value for '" #DISPLAY_NAME "' attribute: " + V + \
1907#include "llvm/IR/Attributes.inc"
1912 CheckFailed(
"Attribute '" +
A.getAsString() +
"' should have an Argument",
1923 if (!
Attrs.hasAttributes())
1926 verifyAttributeTypes(Attrs, V);
1929 Check(Attr.isStringAttribute() ||
1931 "Attribute '" + Attr.getAsString() +
"' does not apply to parameters",
1934 if (
Attrs.hasAttribute(Attribute::ImmArg)) {
1936 "Attribute 'immarg' is incompatible with other attributes", V);
1941 unsigned AttrCount = 0;
1942 AttrCount +=
Attrs.hasAttribute(Attribute::ByVal);
1943 AttrCount +=
Attrs.hasAttribute(Attribute::InAlloca);
1944 AttrCount +=
Attrs.hasAttribute(Attribute::Preallocated);
1945 AttrCount +=
Attrs.hasAttribute(Attribute::StructRet) ||
1946 Attrs.hasAttribute(Attribute::InReg);
1947 AttrCount +=
Attrs.hasAttribute(Attribute::Nest);
1948 AttrCount +=
Attrs.hasAttribute(Attribute::ByRef);
1949 Check(AttrCount <= 1,
1950 "Attributes 'byval', 'inalloca', 'preallocated', 'inreg', 'nest', "
1951 "'byref', and 'sret' are incompatible!",
1954 Check(!(
Attrs.hasAttribute(Attribute::InAlloca) &&
1955 Attrs.hasAttribute(Attribute::ReadOnly)),
1957 "'inalloca and readonly' are incompatible!",
1960 Check(!(
Attrs.hasAttribute(Attribute::StructRet) &&
1961 Attrs.hasAttribute(Attribute::Returned)),
1963 "'sret and returned' are incompatible!",
1966 Check(!(
Attrs.hasAttribute(Attribute::ZExt) &&
1967 Attrs.hasAttribute(Attribute::SExt)),
1969 "'zeroext and signext' are incompatible!",
1972 Check(!(
Attrs.hasAttribute(Attribute::ReadNone) &&
1973 Attrs.hasAttribute(Attribute::ReadOnly)),
1975 "'readnone and readonly' are incompatible!",
1978 Check(!(
Attrs.hasAttribute(Attribute::ReadNone) &&
1979 Attrs.hasAttribute(Attribute::WriteOnly)),
1981 "'readnone and writeonly' are incompatible!",
1984 Check(!(
Attrs.hasAttribute(Attribute::ReadOnly) &&
1985 Attrs.hasAttribute(Attribute::WriteOnly)),
1987 "'readonly and writeonly' are incompatible!",
1990 Check(!(
Attrs.hasAttribute(Attribute::NoInline) &&
1991 Attrs.hasAttribute(Attribute::AlwaysInline)),
1993 "'noinline and alwaysinline' are incompatible!",
1996 Check(!(
Attrs.hasAttribute(Attribute::Writable) &&
1997 Attrs.hasAttribute(Attribute::ReadNone)),
1998 "Attributes writable and readnone are incompatible!", V);
2000 Check(!(
Attrs.hasAttribute(Attribute::Writable) &&
2001 Attrs.hasAttribute(Attribute::ReadOnly)),
2002 "Attributes writable and readonly are incompatible!", V);
2006 if (!Attr.isStringAttribute() &&
2007 IncompatibleAttrs.
contains(Attr.getKindAsEnum())) {
2008 CheckFailed(
"Attribute '" + Attr.getAsString() +
2009 "' applied to incompatible type!", V);
2014 if (isa<PointerType>(Ty)) {
2015 if (
Attrs.hasAttribute(Attribute::Alignment)) {
2016 Align AttrAlign =
Attrs.getAlignment().valueOrOne();
2018 "huge alignment values are unsupported", V);
2020 if (
Attrs.hasAttribute(Attribute::ByVal)) {
2022 Check(
Attrs.getByValType()->isSized(&Visited),
2023 "Attribute 'byval' does not support unsized types!", V);
2024 Check(
DL.getTypeAllocSize(
Attrs.getByValType()).getKnownMinValue() <
2026 "huge 'byval' arguments are unsupported", V);
2028 if (
Attrs.hasAttribute(Attribute::ByRef)) {
2030 Check(
Attrs.getByRefType()->isSized(&Visited),
2031 "Attribute 'byref' does not support unsized types!", V);
2032 Check(
DL.getTypeAllocSize(
Attrs.getByRefType()).getKnownMinValue() <
2034 "huge 'byref' arguments are unsupported", V);
2036 if (
Attrs.hasAttribute(Attribute::InAlloca)) {
2038 Check(
Attrs.getInAllocaType()->isSized(&Visited),
2039 "Attribute 'inalloca' does not support unsized types!", V);
2040 Check(
DL.getTypeAllocSize(
Attrs.getInAllocaType()).getKnownMinValue() <
2042 "huge 'inalloca' arguments are unsupported", V);
2044 if (
Attrs.hasAttribute(Attribute::Preallocated)) {
2046 Check(
Attrs.getPreallocatedType()->isSized(&Visited),
2047 "Attribute 'preallocated' does not support unsized types!", V);
2049 DL.getTypeAllocSize(
Attrs.getPreallocatedType()).getKnownMinValue() <
2051 "huge 'preallocated' arguments are unsupported", V);
2055 if (
Attrs.hasAttribute(Attribute::Initializes)) {
2056 auto Inits =
Attrs.getAttribute(Attribute::Initializes).getInitializes();
2057 Check(!Inits.empty(),
"Attribute 'initializes' does not support empty list",
2060 "Attribute 'initializes' does not support unordered ranges", V);
2063 if (
Attrs.hasAttribute(Attribute::NoFPClass)) {
2064 uint64_t Val =
Attrs.getAttribute(Attribute::NoFPClass).getValueAsInt();
2065 Check(Val != 0,
"Attribute 'nofpclass' must have at least one test bit set",
2068 "Invalid value for 'nofpclass' test mask", V);
2070 if (
Attrs.hasAttribute(Attribute::Range)) {
2072 Attrs.getAttribute(Attribute::Range).getValueAsConstantRange();
2074 "Range bit width must match type bit width!", V);
2080 if (
Attrs.hasFnAttr(Attr)) {
2084 CheckFailed(
"\"" + Attr +
"\" takes an unsigned integer: " + S, V);
2091 const Value *V,
bool IsIntrinsic,
2093 if (
Attrs.isEmpty())
2096 if (AttributeListsVisited.
insert(
Attrs.getRawPointer()).second) {
2098 "Attribute list does not match Module context!", &Attrs, V);
2099 for (
const auto &AttrSet : Attrs) {
2100 Check(!AttrSet.hasAttributes() || AttrSet.hasParentContext(Context),
2101 "Attribute set does not match Module context!", &AttrSet, V);
2102 for (
const auto &
A : AttrSet) {
2103 Check(
A.hasParentContext(Context),
2104 "Attribute does not match Module context!", &
A, V);
2109 bool SawNest =
false;
2110 bool SawReturned =
false;
2111 bool SawSRet =
false;
2112 bool SawSwiftSelf =
false;
2113 bool SawSwiftAsync =
false;
2114 bool SawSwiftError =
false;
2121 "Attribute '" +
RetAttr.getAsString() +
2122 "' does not apply to function return values",
2125 unsigned MaxParameterWidth = 0;
2126 auto GetMaxParameterWidth = [&MaxParameterWidth](
Type *Ty) {
2128 if (
auto *VT = dyn_cast<FixedVectorType>(Ty)) {
2129 unsigned Size = VT->getPrimitiveSizeInBits().getFixedValue();
2130 if (
Size > MaxParameterWidth)
2131 MaxParameterWidth =
Size;
2135 GetMaxParameterWidth(FT->getReturnType());
2136 verifyParameterAttrs(RetAttrs, FT->getReturnType(), V);
2139 for (
unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
2140 Type *Ty = FT->getParamType(i);
2145 "immarg attribute only applies to intrinsics", V);
2148 "Attribute 'elementtype' can only be applied to intrinsics"
2153 verifyParameterAttrs(ArgAttrs, Ty, V);
2154 GetMaxParameterWidth(Ty);
2157 Check(!SawNest,
"More than one parameter has attribute nest!", V);
2162 Check(!SawReturned,
"More than one parameter has attribute returned!", V);
2164 "Incompatible argument and return types for 'returned' attribute",
2170 Check(!SawSRet,
"Cannot have multiple 'sret' parameters!", V);
2171 Check(i == 0 || i == 1,
2172 "Attribute 'sret' is not on first or second parameter!", V);
2177 Check(!SawSwiftSelf,
"Cannot have multiple 'swiftself' parameters!", V);
2178 SawSwiftSelf =
true;
2182 Check(!SawSwiftAsync,
"Cannot have multiple 'swiftasync' parameters!", V);
2183 SawSwiftAsync =
true;
2187 Check(!SawSwiftError,
"Cannot have multiple 'swifterror' parameters!", V);
2188 SawSwiftError =
true;
2192 Check(i == FT->getNumParams() - 1,
2193 "inalloca isn't on the last parameter!", V);
2197 if (!
Attrs.hasFnAttrs())
2200 verifyAttributeTypes(
Attrs.getFnAttrs(), V);
2204 "Attribute '" +
FnAttr.getAsString() +
2205 "' does not apply to functions!",
2208 Check(!(
Attrs.hasFnAttr(Attribute::NoInline) &&
2209 Attrs.hasFnAttr(Attribute::AlwaysInline)),
2210 "Attributes 'noinline and alwaysinline' are incompatible!", V);
2212 if (
Attrs.hasFnAttr(Attribute::OptimizeNone)) {
2214 "Attribute 'optnone' requires 'noinline'!", V);
2216 Check(!
Attrs.hasFnAttr(Attribute::OptimizeForSize),
2217 "Attributes 'optsize and optnone' are incompatible!", V);
2220 "Attributes 'minsize and optnone' are incompatible!", V);
2222 Check(!
Attrs.hasFnAttr(Attribute::OptimizeForDebugging),
2223 "Attributes 'optdebug and optnone' are incompatible!", V);
2226 if (
Attrs.hasFnAttr(Attribute::OptimizeForDebugging)) {
2227 Check(!
Attrs.hasFnAttr(Attribute::OptimizeForSize),
2228 "Attributes 'optsize and optdebug' are incompatible!", V);
2231 "Attributes 'minsize and optdebug' are incompatible!", V);
2234 Check(!
Attrs.hasAttrSomewhere(Attribute::Writable) ||
2236 "Attribute writable and memory without argmem: write are incompatible!",
2239 if (
Attrs.hasFnAttr(
"aarch64_pstate_sm_enabled")) {
2240 Check(!
Attrs.hasFnAttr(
"aarch64_pstate_sm_compatible"),
2241 "Attributes 'aarch64_pstate_sm_enabled and "
2242 "aarch64_pstate_sm_compatible' are incompatible!",
2246 Check((
Attrs.hasFnAttr(
"aarch64_new_za") +
Attrs.hasFnAttr(
"aarch64_in_za") +
2247 Attrs.hasFnAttr(
"aarch64_inout_za") +
2248 Attrs.hasFnAttr(
"aarch64_out_za") +
2249 Attrs.hasFnAttr(
"aarch64_preserves_za")) <= 1,
2250 "Attributes 'aarch64_new_za', 'aarch64_in_za', 'aarch64_out_za', "
2251 "'aarch64_inout_za' and 'aarch64_preserves_za' are mutually exclusive",
2255 (
Attrs.hasFnAttr(
"aarch64_new_zt0") +
Attrs.hasFnAttr(
"aarch64_in_zt0") +
2256 Attrs.hasFnAttr(
"aarch64_inout_zt0") +
2257 Attrs.hasFnAttr(
"aarch64_out_zt0") +
2258 Attrs.hasFnAttr(
"aarch64_preserves_zt0")) <= 1,
2259 "Attributes 'aarch64_new_zt0', 'aarch64_in_zt0', 'aarch64_out_zt0', "
2260 "'aarch64_inout_zt0' and 'aarch64_preserves_zt0' are mutually exclusive",
2263 if (
Attrs.hasFnAttr(Attribute::JumpTable)) {
2266 "Attribute 'jumptable' requires 'unnamed_addr'", V);
2269 if (
auto Args =
Attrs.getFnAttrs().getAllocSizeArgs()) {
2271 if (ParamNo >= FT->getNumParams()) {
2272 CheckFailed(
"'allocsize' " +
Name +
" argument is out of bounds", V);
2276 if (!FT->getParamType(ParamNo)->isIntegerTy()) {
2277 CheckFailed(
"'allocsize' " +
Name +
2278 " argument must refer to an integer parameter",
2286 if (!CheckParam(
"element size",
Args->first))
2289 if (
Args->second && !CheckParam(
"number of elements", *
Args->second))
2293 if (
Attrs.hasFnAttr(Attribute::AllocKind)) {
2301 "'allockind()' requires exactly one of alloc, realloc, and free");
2305 CheckFailed(
"'allockind(\"free\")' doesn't allow uninitialized, zeroed, "
2306 "or aligned modifiers.");
2308 if ((K & ZeroedUninit) == ZeroedUninit)
2309 CheckFailed(
"'allockind()' can't be both zeroed and uninitialized");
2312 if (
Attrs.hasFnAttr(Attribute::VScaleRange)) {
2313 unsigned VScaleMin =
Attrs.getFnAttrs().getVScaleRangeMin();
2315 CheckFailed(
"'vscale_range' minimum must be greater than 0", V);
2317 CheckFailed(
"'vscale_range' minimum must be power-of-two value", V);
2318 std::optional<unsigned> VScaleMax =
Attrs.getFnAttrs().getVScaleRangeMax();
2319 if (VScaleMax && VScaleMin > VScaleMax)
2320 CheckFailed(
"'vscale_range' minimum cannot be greater than maximum", V);
2322 CheckFailed(
"'vscale_range' maximum must be power-of-two value", V);
2325 if (
Attrs.hasFnAttr(
"frame-pointer")) {
2327 if (
FP !=
"all" &&
FP !=
"non-leaf" &&
FP !=
"none" &&
FP !=
"reserved")
2328 CheckFailed(
"invalid value for 'frame-pointer' attribute: " +
FP, V);
2332 if (MaxParameterWidth >= 512 &&
Attrs.hasFnAttr(
"target-features") &&
2334 StringRef TF =
Attrs.getFnAttr(
"target-features").getValueAsString();
2336 "512-bit vector arguments require 'evex512' for AVX512", V);
2339 checkUnsignedBaseTenFuncAttr(Attrs,
"patchable-function-prefix", V);
2340 checkUnsignedBaseTenFuncAttr(Attrs,
"patchable-function-entry", V);
2341 checkUnsignedBaseTenFuncAttr(Attrs,
"warn-stack-size", V);
2343 if (
auto A =
Attrs.getFnAttr(
"sign-return-address");
A.isValid()) {
2345 if (S !=
"none" && S !=
"all" && S !=
"non-leaf")
2346 CheckFailed(
"invalid value for 'sign-return-address' attribute: " + S, V);
2349 if (
auto A =
Attrs.getFnAttr(
"sign-return-address-key");
A.isValid()) {
2351 if (S !=
"a_key" && S !=
"b_key")
2352 CheckFailed(
"invalid value for 'sign-return-address-key' attribute: " + S,
2354 if (
auto AA =
Attrs.getFnAttr(
"sign-return-address"); !AA.isValid()) {
2356 "'sign-return-address-key' present without `sign-return-address`");
2360 if (
auto A =
Attrs.getFnAttr(
"branch-target-enforcement");
A.isValid()) {
2362 if (S !=
"" && S !=
"true" && S !=
"false")
2364 "invalid value for 'branch-target-enforcement' attribute: " + S, V);
2367 if (
auto A =
Attrs.getFnAttr(
"branch-protection-pauth-lr");
A.isValid()) {
2369 if (S !=
"" && S !=
"true" && S !=
"false")
2371 "invalid value for 'branch-protection-pauth-lr' attribute: " + S, V);
2374 if (
auto A =
Attrs.getFnAttr(
"guarded-control-stack");
A.isValid()) {
2376 if (S !=
"" && S !=
"true" && S !=
"false")
2377 CheckFailed(
"invalid value for 'guarded-control-stack' attribute: " + S,
2381 if (
auto A =
Attrs.getFnAttr(
"vector-function-abi-variant");
A.isValid()) {
2385 CheckFailed(
"invalid name for a VFABI variant: " + S, V);
2389void Verifier::verifyFunctionMetadata(
2390 ArrayRef<std::pair<unsigned, MDNode *>> MDs) {
2391 for (
const auto &Pair : MDs) {
2392 if (Pair.first == LLVMContext::MD_prof) {
2393 MDNode *MD = Pair.second;
2395 "!prof annotations should have no less than 2 operands", MD);
2398 Check(MD->
getOperand(0) !=
nullptr,
"first operand should not be null",
2401 "expected string with name of the !prof annotation", MD);
2404 Check(ProfName ==
"function_entry_count" ||
2405 ProfName ==
"synthetic_function_entry_count",
2406 "first operand should be 'function_entry_count'"
2407 " or 'synthetic_function_entry_count'",
2411 Check(MD->
getOperand(1) !=
nullptr,
"second operand should not be null",
2414 "expected integer argument to function_entry_count", MD);
2415 }
else if (Pair.first == LLVMContext::MD_kcfi_type) {
2416 MDNode *MD = Pair.second;
2418 "!kcfi_type must have exactly one operand", MD);
2419 Check(MD->
getOperand(0) !=
nullptr,
"!kcfi_type operand must not be null",
2422 "expected a constant operand for !kcfi_type", MD);
2424 Check(isa<ConstantInt>(
C) && isa<IntegerType>(
C->getType()),
2425 "expected a constant integer operand for !kcfi_type", MD);
2427 "expected a 32-bit integer constant operand for !kcfi_type", MD);
2432void Verifier::visitConstantExprsRecursively(
const Constant *EntryC) {
2433 if (!ConstantExprVisited.
insert(EntryC).second)
2437 Stack.push_back(EntryC);
2439 while (!
Stack.empty()) {
2443 if (
const auto *CE = dyn_cast<ConstantExpr>(
C))
2444 visitConstantExpr(CE);
2446 if (
const auto *CPA = dyn_cast<ConstantPtrAuth>(
C))
2447 visitConstantPtrAuth(CPA);
2449 if (
const auto *GV = dyn_cast<GlobalValue>(
C)) {
2452 Check(GV->
getParent() == &M,
"Referencing global in another module!",
2458 for (
const Use &U :
C->operands()) {
2459 const auto *OpC = dyn_cast<Constant>(U);
2462 if (!ConstantExprVisited.
insert(OpC).second)
2464 Stack.push_back(OpC);
2469void Verifier::visitConstantExpr(
const ConstantExpr *CE) {
2470 if (
CE->getOpcode() == Instruction::BitCast)
2473 "Invalid bitcast", CE);
2478 "signed ptrauth constant base pointer must have pointer type");
2481 "signed ptrauth constant must have same type as its base pointer");
2484 "signed ptrauth constant key must be i32 constant integer");
2487 "signed ptrauth constant address discriminator must be a pointer");
2490 "signed ptrauth constant discriminator must be i64 constant integer");
2493bool Verifier::verifyAttributeCount(
AttributeList Attrs,
unsigned Params) {
2496 return Attrs.getNumAttrSets() <= Params + 2;
2499void Verifier::verifyInlineAsmCall(
const CallBase &Call) {
2502 unsigned LabelNo = 0;
2513 if (CI.isIndirect) {
2514 const Value *Arg =
Call.getArgOperand(ArgNo);
2516 "Operand for indirect constraint must have pointer type", &Call);
2519 "Operand for indirect constraint must have elementtype attribute",
2522 Check(!
Call.paramHasAttr(ArgNo, Attribute::ElementType),
2523 "Elementtype attribute can only be applied for indirect "
2531 if (
auto *CallBr = dyn_cast<CallBrInst>(&Call)) {
2532 Check(LabelNo == CallBr->getNumIndirectDests(),
2533 "Number of label constraints does not match number of callbr dests",
2536 Check(LabelNo == 0,
"Label constraints can only be used with callbr",
2542void Verifier::verifyStatepoint(
const CallBase &Call) {
2544 Call.getCalledFunction()->getIntrinsicID() ==
2545 Intrinsic::experimental_gc_statepoint);
2547 Check(!
Call.doesNotAccessMemory() && !
Call.onlyReadsMemory() &&
2548 !
Call.onlyAccessesArgMemory(),
2549 "gc.statepoint must read and write all memory to preserve "
2550 "reordering restrictions required by safepoint semantics",
2553 const int64_t NumPatchBytes =
2554 cast<ConstantInt>(
Call.getArgOperand(1))->getSExtValue();
2555 assert(isInt<32>(NumPatchBytes) &&
"NumPatchBytesV is an i32!");
2556 Check(NumPatchBytes >= 0,
2557 "gc.statepoint number of patchable bytes must be "
2561 Type *TargetElemType =
Call.getParamElementType(2);
2562 Check(TargetElemType,
2563 "gc.statepoint callee argument must have elementtype attribute", Call);
2564 FunctionType *TargetFuncType = dyn_cast<FunctionType>(TargetElemType);
2565 Check(TargetFuncType,
2566 "gc.statepoint callee elementtype must be function type", Call);
2568 const int NumCallArgs = cast<ConstantInt>(
Call.getArgOperand(3))->getZExtValue();
2569 Check(NumCallArgs >= 0,
2570 "gc.statepoint number of arguments to underlying call "
2573 const int NumParams = (int)TargetFuncType->getNumParams();
2574 if (TargetFuncType->isVarArg()) {
2575 Check(NumCallArgs >= NumParams,
2576 "gc.statepoint mismatch in number of vararg call args", Call);
2579 Check(TargetFuncType->getReturnType()->isVoidTy(),
2580 "gc.statepoint doesn't support wrapping non-void "
2581 "vararg functions yet",
2584 Check(NumCallArgs == NumParams,
2585 "gc.statepoint mismatch in number of call args", Call);
2588 = cast<ConstantInt>(
Call.getArgOperand(4))->getZExtValue();
2590 "unknown flag used in gc.statepoint flags argument", Call);
2595 for (
int i = 0; i < NumParams; i++) {
2596 Type *ParamType = TargetFuncType->getParamType(i);
2597 Type *ArgType =
Call.getArgOperand(5 + i)->getType();
2598 Check(ArgType == ParamType,
2599 "gc.statepoint call argument does not match wrapped "
2603 if (TargetFuncType->isVarArg()) {
2606 "Attribute 'sret' cannot be used for vararg call arguments!", Call);
2610 const int EndCallArgsInx = 4 + NumCallArgs;
2612 const Value *NumTransitionArgsV =
Call.getArgOperand(EndCallArgsInx + 1);
2613 Check(isa<ConstantInt>(NumTransitionArgsV),
2614 "gc.statepoint number of transition arguments "
2615 "must be constant integer",
2617 const int NumTransitionArgs =
2618 cast<ConstantInt>(NumTransitionArgsV)->getZExtValue();
2619 Check(NumTransitionArgs == 0,
2620 "gc.statepoint w/inline transition bundle is deprecated", Call);
2621 const int EndTransitionArgsInx = EndCallArgsInx + 1 + NumTransitionArgs;
2623 const Value *NumDeoptArgsV =
Call.getArgOperand(EndTransitionArgsInx + 1);
2624 Check(isa<ConstantInt>(NumDeoptArgsV),
2625 "gc.statepoint number of deoptimization arguments "
2626 "must be constant integer",
2628 const int NumDeoptArgs = cast<ConstantInt>(NumDeoptArgsV)->getZExtValue();
2629 Check(NumDeoptArgs == 0,
2630 "gc.statepoint w/inline deopt operands is deprecated", Call);
2632 const int ExpectedNumArgs = 7 + NumCallArgs;
2633 Check(ExpectedNumArgs == (
int)
Call.arg_size(),
2634 "gc.statepoint too many arguments", Call);
2639 for (
const User *U :
Call.users()) {
2640 const CallInst *UserCall = dyn_cast<const CallInst>(U);
2641 Check(UserCall,
"illegal use of statepoint token", Call, U);
2644 Check(isa<GCRelocateInst>(UserCall) || isa<GCResultInst>(UserCall),
2645 "gc.result or gc.relocate are the only value uses "
2646 "of a gc.statepoint",
2648 if (isa<GCResultInst>(UserCall)) {
2650 "gc.result connected to wrong gc.statepoint", Call, UserCall);
2651 }
else if (isa<GCRelocateInst>(Call)) {
2653 "gc.relocate connected to wrong gc.statepoint", Call, UserCall);
2667void Verifier::verifyFrameRecoverIndices() {
2668 for (
auto &Counts : FrameEscapeInfo) {
2670 unsigned EscapedObjectCount = Counts.second.first;
2671 unsigned MaxRecoveredIndex = Counts.second.second;
2672 Check(MaxRecoveredIndex <= EscapedObjectCount,
2673 "all indices passed to llvm.localrecover must be less than the "
2674 "number of arguments passed to llvm.localescape in the parent "
2682 if (
auto *
II = dyn_cast<InvokeInst>(Terminator))
2683 UnwindDest =
II->getUnwindDest();
2684 else if (
auto *CSI = dyn_cast<CatchSwitchInst>(Terminator))
2685 UnwindDest = CSI->getUnwindDest();
2687 UnwindDest = cast<CleanupReturnInst>(Terminator)->getUnwindDest();
2691void Verifier::verifySiblingFuncletUnwinds() {
2694 for (
const auto &Pair : SiblingFuncletInfo) {
2696 if (Visited.
count(PredPad))
2702 if (Active.
count(SuccPad)) {
2708 Instruction *CycleTerminator = SiblingFuncletInfo[CyclePad];
2709 if (CycleTerminator != CyclePad)
2712 }
while (CyclePad != SuccPad);
2713 Check(
false,
"EH pads can't handle each other's exceptions",
2717 if (!Visited.
insert(SuccPad).second)
2721 auto TermI = SiblingFuncletInfo.find(PredPad);
2722 if (TermI == SiblingFuncletInfo.end())
2735void Verifier::visitFunction(
const Function &
F) {
2736 visitGlobalValue(
F);
2740 unsigned NumArgs =
F.arg_size();
2742 Check(&Context == &
F.getContext(),
2743 "Function context does not match Module context!", &
F);
2745 Check(!
F.hasCommonLinkage(),
"Functions may not have common linkage", &
F);
2746 Check(FT->getNumParams() == NumArgs,
2747 "# formal arguments must match # of arguments for function type!", &
F,
2749 Check(
F.getReturnType()->isFirstClassType() ||
2750 F.getReturnType()->isVoidTy() ||
F.getReturnType()->isStructTy(),
2751 "Functions cannot return aggregate values!", &
F);
2753 Check(!
F.hasStructRetAttr() ||
F.getReturnType()->isVoidTy(),
2754 "Invalid struct return type!", &
F);
2758 Check(verifyAttributeCount(Attrs, FT->getNumParams()),
2759 "Attribute after last parameter!", &
F);
2761 CheckDI(
F.IsNewDbgInfoFormat ==
F.getParent()->IsNewDbgInfoFormat,
2762 "Function debug format should match parent module", &
F,
2763 F.IsNewDbgInfoFormat,
F.getParent(),
2764 F.getParent()->IsNewDbgInfoFormat);
2766 bool IsIntrinsic =
F.isIntrinsic();
2769 verifyFunctionAttrs(FT, Attrs, &
F, IsIntrinsic,
false);
2775 "Attribute 'builtin' can only be applied to a callsite.", &
F);
2777 Check(!
Attrs.hasAttrSomewhere(Attribute::ElementType),
2778 "Attribute 'elementtype' can only be applied to a callsite.", &
F);
2780 if (
Attrs.hasFnAttr(Attribute::Naked))
2782 Check(Arg.use_empty(),
"cannot use argument of naked function", &Arg);
2787 switch (
F.getCallingConv()) {
2792 Check(
F.arg_empty() ||
Attrs.hasParamAttr(0, Attribute::ByVal),
2793 "Calling convention parameter requires byval", &
F);
2800 Check(
F.getReturnType()->isVoidTy(),
2801 "Calling convention requires void return type", &
F);
2808 Check(!
F.hasStructRetAttr(),
"Calling convention does not allow sret", &
F);
2810 const unsigned StackAS =
DL.getAllocaAddrSpace();
2813 Check(!
Attrs.hasParamAttr(i, Attribute::ByVal),
2814 "Calling convention disallows byval", &
F);
2815 Check(!
Attrs.hasParamAttr(i, Attribute::Preallocated),
2816 "Calling convention disallows preallocated", &
F);
2817 Check(!
Attrs.hasParamAttr(i, Attribute::InAlloca),
2818 "Calling convention disallows inalloca", &
F);
2820 if (
Attrs.hasParamAttr(i, Attribute::ByRef)) {
2823 Check(Arg.getType()->getPointerAddressSpace() != StackAS,
2824 "Calling convention disallows stack byref", &
F);
2838 "Calling convention does not support varargs or "
2839 "perfect forwarding!",
2847 Check(Arg.getType() == FT->getParamType(i),
2848 "Argument value does not match function argument type!", &Arg,
2849 FT->getParamType(i));
2850 Check(Arg.getType()->isFirstClassType(),
2851 "Function arguments must have first-class types!", &Arg);
2853 Check(!Arg.getType()->isMetadataTy(),
2854 "Function takes metadata but isn't an intrinsic", &Arg, &
F);
2855 Check(!Arg.getType()->isTokenTy(),
2856 "Function takes token but isn't an intrinsic", &Arg, &
F);
2857 Check(!Arg.getType()->isX86_AMXTy(),
2858 "Function takes x86_amx but isn't an intrinsic", &Arg, &
F);
2862 if (
Attrs.hasParamAttr(i, Attribute::SwiftError)) {
2863 verifySwiftErrorValue(&Arg);
2869 Check(!
F.getReturnType()->isTokenTy(),
2870 "Function returns a token but isn't an intrinsic", &
F);
2871 Check(!
F.getReturnType()->isX86_AMXTy(),
2872 "Function returns a x86_amx but isn't an intrinsic", &
F);
2877 F.getAllMetadata(MDs);
2878 assert(
F.hasMetadata() != MDs.
empty() &&
"Bit out-of-sync");
2879 verifyFunctionMetadata(MDs);
2882 if (
F.hasPersonalityFn()) {
2883 auto *Per = dyn_cast<Function>(
F.getPersonalityFn()->stripPointerCasts());
2885 Check(Per->getParent() ==
F.getParent(),
2886 "Referencing personality function in another module!", &
F,
2887 F.getParent(), Per, Per->getParent());
2891 BlockEHFuncletColors.
clear();
2893 if (
F.isMaterializable()) {
2895 Check(MDs.
empty(),
"unmaterialized function cannot have metadata", &
F,
2897 }
else if (
F.isDeclaration()) {
2898 for (
const auto &
I : MDs) {
2900 CheckDI(
I.first != LLVMContext::MD_dbg ||
2901 !cast<DISubprogram>(
I.second)->isDistinct(),
2902 "function declaration may only have a unique !dbg attachment",
2904 Check(
I.first != LLVMContext::MD_prof,
2905 "function declaration may not have a !prof attachment", &
F);
2908 visitMDNode(*
I.second, AreDebugLocsAllowed::Yes);
2910 Check(!
F.hasPersonalityFn(),
2911 "Function declaration shouldn't have a personality routine", &
F);
2915 Check(!IsIntrinsic,
"llvm intrinsics cannot be defined!", &
F);
2920 "Entry block to function must not have predecessors!", Entry);
2923 if (
Entry->hasAddressTaken()) {
2925 "blockaddress may not be used with the entry block!", Entry);
2928 unsigned NumDebugAttachments = 0, NumProfAttachments = 0,
2929 NumKCFIAttachments = 0;
2931 for (
const auto &
I : MDs) {
2933 auto AllowLocs = AreDebugLocsAllowed::No;
2937 case LLVMContext::MD_dbg: {
2938 ++NumDebugAttachments;
2939 CheckDI(NumDebugAttachments == 1,
2940 "function must have a single !dbg attachment", &
F,
I.second);
2941 CheckDI(isa<DISubprogram>(
I.second),
2942 "function !dbg attachment must be a subprogram", &
F,
I.second);
2943 CheckDI(cast<DISubprogram>(
I.second)->isDistinct(),
2944 "function definition may only have a distinct !dbg attachment",
2947 auto *SP = cast<DISubprogram>(
I.second);
2948 const Function *&AttachedTo = DISubprogramAttachments[SP];
2949 CheckDI(!AttachedTo || AttachedTo == &
F,
2950 "DISubprogram attached to more than one function", SP, &
F);
2952 AllowLocs = AreDebugLocsAllowed::Yes;
2955 case LLVMContext::MD_prof:
2956 ++NumProfAttachments;
2957 Check(NumProfAttachments == 1,
2958 "function must have a single !prof attachment", &
F,
I.second);
2960 case LLVMContext::MD_kcfi_type:
2961 ++NumKCFIAttachments;
2962 Check(NumKCFIAttachments == 1,
2963 "function must have a single !kcfi_type attachment", &
F,
2969 visitMDNode(*
I.second, AllowLocs);
2977 if (
F.isIntrinsic() &&
F.getParent()->isMaterialized()) {
2979 if (
F.hasAddressTaken(&U,
false,
true,
false,
2981 Check(
false,
"Invalid user of intrinsic instruction!", U);
2985 switch (
F.getIntrinsicID()) {
2986 case Intrinsic::experimental_gc_get_pointer_base: {
2988 Check(FT->getNumParams() == 1,
"wrong number of parameters",
F);
2989 Check(isa<PointerType>(
F.getReturnType()),
2990 "gc.get.pointer.base must return a pointer",
F);
2991 Check(FT->getParamType(0) ==
F.getReturnType(),
2992 "gc.get.pointer.base operand and result must be of the same type",
F);
2995 case Intrinsic::experimental_gc_get_pointer_offset: {
2997 Check(FT->getNumParams() == 1,
"wrong number of parameters",
F);
2998 Check(isa<PointerType>(FT->getParamType(0)),
2999 "gc.get.pointer.offset operand must be a pointer",
F);
3000 Check(
F.getReturnType()->isIntegerTy(),
3001 "gc.get.pointer.offset must return integer",
F);
3006 auto *
N =
F.getSubprogram();
3007 HasDebugInfo = (
N !=
nullptr);
3026 CheckDI(Parent && isa<DILocalScope>(Parent),
3027 "DILocation's scope must be a DILocalScope",
N, &
F, &
I,
DL, Parent);
3030 Check(Scope,
"Failed to find DILocalScope",
DL);
3032 if (!Seen.
insert(Scope).second)
3039 if (SP && ((Scope != SP) && !Seen.
insert(SP).second))
3043 "!dbg attachment points at wrong subprogram for function",
N, &
F,
3047 for (
auto &
I : BB) {
3048 VisitDebugLoc(
I,
I.getDebugLoc().getAsMDNode());
3050 if (
auto MD =
I.getMetadata(LLVMContext::MD_loop))
3052 VisitDebugLoc(
I, dyn_cast_or_null<MDNode>(MD->
getOperand(i)));
3053 if (BrokenDebugInfo)
3060void Verifier::visitBasicBlock(
BasicBlock &BB) {
3061 InstsInThisBlock.
clear();
3062 ConvergenceVerifyHelper.
visit(BB);
3069 if (isa<PHINode>(BB.
front())) {
3074 Check(PN.getNumIncomingValues() == Preds.size(),
3075 "PHINode should have one entry for each predecessor of its "
3076 "parent basic block!",
3081 Values.
reserve(PN.getNumIncomingValues());
3082 for (
unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i)
3084 std::make_pair(PN.getIncomingBlock(i), PN.getIncomingValue(i)));
3087 for (
unsigned i = 0, e = Values.
size(); i != e; ++i) {
3092 Check(i == 0 || Values[i].first != Values[i - 1].first ||
3093 Values[i].second == Values[i - 1].second,
3094 "PHI node has multiple entries for the same basic block with "
3095 "different incoming values!",
3096 &PN, Values[i].first, Values[i].second, Values[i - 1].second);
3100 Check(Values[i].first == Preds[i],
3101 "PHI node entries do not match predecessors!", &PN,
3102 Values[i].first, Preds[i]);
3110 Check(
I.getParent() == &BB,
"Instruction has bogus parent pointer!");
3113 CheckDI(BB.IsNewDbgInfoFormat == BB.getParent()->IsNewDbgInfoFormat,
3114 "BB debug format should match parent function", &BB,
3115 BB.IsNewDbgInfoFormat, BB.getParent(),
3116 BB.getParent()->IsNewDbgInfoFormat);
3119 if (BB.IsNewDbgInfoFormat)
3120 CheckDI(!BB.getTrailingDbgRecords(),
"Basic Block has trailing DbgRecords!",
3126 Check(&
I ==
I.getParent()->getTerminator(),
3127 "Terminator found in the middle of a basic block!",
I.getParent());
3131void Verifier::visitBranchInst(
BranchInst &BI) {
3134 "Branch condition is not 'i1' type!", &BI, BI.
getCondition());
3139void Verifier::visitReturnInst(
ReturnInst &RI) {
3142 if (
F->getReturnType()->isVoidTy())
3144 "Found return instr that returns non-void in Function of void "
3146 &RI,
F->getReturnType());
3149 "Function return type does not match operand "
3150 "type of return inst!",
3151 &RI,
F->getReturnType());
3158void Verifier::visitSwitchInst(
SwitchInst &SI) {
3159 Check(
SI.getType()->isVoidTy(),
"Switch must have void result type!", &SI);
3162 Type *SwitchTy =
SI.getCondition()->getType();
3164 for (
auto &Case :
SI.cases()) {
3165 Check(isa<ConstantInt>(
SI.getOperand(Case.getCaseIndex() * 2 + 2)),
3166 "Case value is not a constant integer.", &SI);
3167 Check(Case.getCaseValue()->getType() == SwitchTy,
3168 "Switch constants must all be same type as switch value!", &SI);
3170 "Duplicate integer as switch case", &SI, Case.getCaseValue());
3178 "Indirectbr operand must have pointer type!", &BI);
3181 "Indirectbr destinations must all have pointer type!", &BI);
3186void Verifier::visitCallBrInst(
CallBrInst &CBI) {
3187 Check(CBI.
isInlineAsm(),
"Callbr is currently only used for asm-goto!", &CBI);
3189 Check(!
IA->canThrow(),
"Unwinding from Callbr is not allowed");
3191 verifyInlineAsmCall(CBI);
3195void Verifier::visitSelectInst(
SelectInst &SI) {
3198 "Invalid operands for select instruction!", &SI);
3200 Check(
SI.getTrueValue()->getType() ==
SI.getType(),
3201 "Select values must have same type as select instruction!", &SI);
3209 Check(
false,
"User-defined operators should not live outside of a pass!", &
I);
3214 Type *SrcTy =
I.getOperand(0)->getType();
3215 Type *DestTy =
I.getType();
3224 "trunc source and destination must both be a vector or neither", &
I);
3225 Check(SrcBitSize > DestBitSize,
"DestTy too big for Trunc", &
I);
3230void Verifier::visitZExtInst(
ZExtInst &
I) {
3232 Type *SrcTy =
I.getOperand(0)->getType();
3233 Type *DestTy =
I.getType();
3239 "zext source and destination must both be a vector or neither", &
I);
3243 Check(SrcBitSize < DestBitSize,
"Type too small for ZExt", &
I);
3248void Verifier::visitSExtInst(
SExtInst &
I) {
3250 Type *SrcTy =
I.getOperand(0)->getType();
3251 Type *DestTy =
I.getType();
3260 "sext source and destination must both be a vector or neither", &
I);
3261 Check(SrcBitSize < DestBitSize,
"Type too small for SExt", &
I);
3268 Type *SrcTy =
I.getOperand(0)->getType();
3269 Type *DestTy =
I.getType();
3277 "fptrunc source and destination must both be a vector or neither", &
I);
3278 Check(SrcBitSize > DestBitSize,
"DestTy too big for FPTrunc", &
I);
3285 Type *SrcTy =
I.getOperand(0)->getType();
3286 Type *DestTy =
I.getType();
3295 "fpext source and destination must both be a vector or neither", &
I);
3296 Check(SrcBitSize < DestBitSize,
"DestTy too small for FPExt", &
I);
3303 Type *SrcTy =
I.getOperand(0)->getType();
3304 Type *DestTy =
I.getType();
3309 Check(SrcVec == DstVec,
3310 "UIToFP source and dest must both be vector or scalar", &
I);
3312 "UIToFP source must be integer or integer vector", &
I);
3316 if (SrcVec && DstVec)
3317 Check(cast<VectorType>(SrcTy)->getElementCount() ==
3318 cast<VectorType>(DestTy)->getElementCount(),
3319 "UIToFP source and dest vector length mismatch", &
I);
3326 Type *SrcTy =
I.getOperand(0)->getType();
3327 Type *DestTy =
I.getType();
3332 Check(SrcVec == DstVec,
3333 "SIToFP source and dest must both be vector or scalar", &
I);
3335 "SIToFP source must be integer or integer vector", &
I);
3339 if (SrcVec && DstVec)
3340 Check(cast<VectorType>(SrcTy)->getElementCount() ==
3341 cast<VectorType>(DestTy)->getElementCount(),
3342 "SIToFP source and dest vector length mismatch", &
I);
3349 Type *SrcTy =
I.getOperand(0)->getType();
3350 Type *DestTy =
I.getType();
3355 Check(SrcVec == DstVec,
3356 "FPToUI source and dest must both be vector or scalar", &
I);
3359 "FPToUI result must be integer or integer vector", &
I);
3361 if (SrcVec && DstVec)
3362 Check(cast<VectorType>(SrcTy)->getElementCount() ==
3363 cast<VectorType>(DestTy)->getElementCount(),
3364 "FPToUI source and dest vector length mismatch", &
I);
3371 Type *SrcTy =
I.getOperand(0)->getType();
3372 Type *DestTy =
I.getType();
3377 Check(SrcVec == DstVec,
3378 "FPToSI source and dest must both be vector or scalar", &
I);
3381 "FPToSI result must be integer or integer vector", &
I);
3383 if (SrcVec && DstVec)
3384 Check(cast<VectorType>(SrcTy)->getElementCount() ==
3385 cast<VectorType>(DestTy)->getElementCount(),
3386 "FPToSI source and dest vector length mismatch", &
I);
3393 Type *SrcTy =
I.getOperand(0)->getType();
3394 Type *DestTy =
I.getType();
3403 auto *VSrc = cast<VectorType>(SrcTy);
3404 auto *VDest = cast<VectorType>(DestTy);
3405 Check(VSrc->getElementCount() == VDest->getElementCount(),
3406 "PtrToInt Vector width mismatch", &
I);
3414 Type *SrcTy =
I.getOperand(0)->getType();
3415 Type *DestTy =
I.getType();
3423 auto *VSrc = cast<VectorType>(SrcTy);
3424 auto *VDest = cast<VectorType>(DestTy);
3425 Check(VSrc->getElementCount() == VDest->getElementCount(),
3426 "IntToPtr Vector width mismatch", &
I);
3434 "Invalid bitcast", &
I);
3439 Type *SrcTy =
I.getOperand(0)->getType();
3440 Type *DestTy =
I.getType();
3447 "AddrSpaceCast must be between different address spaces", &
I);
3448 if (
auto *SrcVTy = dyn_cast<VectorType>(SrcTy))
3449 Check(SrcVTy->getElementCount() ==
3450 cast<VectorType>(DestTy)->getElementCount(),
3451 "AddrSpaceCast vector pointer number of elements mismatch", &
I);
3457void Verifier::visitPHINode(
PHINode &PN) {
3464 "PHI nodes not grouped at top of basic block!", &PN, PN.
getParent());
3473 "PHI node operands are not the same type as the result!", &PN);
3481void Verifier::visitCallBase(
CallBase &Call) {
3482 Check(
Call.getCalledOperand()->getType()->isPointerTy(),
3483 "Called function must be a pointer!", Call);
3487 if (FTy->isVarArg())
3488 Check(
Call.arg_size() >= FTy->getNumParams(),
3489 "Called function requires more parameters than were provided!", Call);
3491 Check(
Call.arg_size() == FTy->getNumParams(),
3492 "Incorrect number of arguments passed to called function!", Call);
3495 for (
unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
3496 Check(
Call.getArgOperand(i)->getType() == FTy->getParamType(i),
3497 "Call parameter type does not match function signature!",
3498 Call.getArgOperand(i), FTy->getParamType(i), Call);
3502 Check(verifyAttributeCount(Attrs,
Call.arg_size()),
3503 "Attribute after last parameter!", Call);
3506 dyn_cast<Function>(
Call.getCalledOperand()->stripPointerCasts());
3510 "Intrinsic called with incompatible signature", Call);
3514 auto CC =
Call.getCallingConv();
3517 "Direct calls to amdgpu_cs_chain/amdgpu_cs_chain_preserve functions "
3518 "not allowed. Please use the @llvm.amdgpu.cs.chain intrinsic instead.",
3525 auto VerifyTypeAlign = [&](
Type *Ty,
const Twine &Message) {
3528 Align ABIAlign =
DL.getABITypeAlign(Ty);
3530 "Incorrect alignment of " + Message +
" to called function!", Call);
3534 VerifyTypeAlign(FTy->getReturnType(),
"return type");
3535 for (
unsigned i = 0, e = FTy->getNumParams(); i != e; ++i) {
3536 Type *Ty = FTy->getParamType(i);
3537 VerifyTypeAlign(Ty,
"argument passed");
3541 if (
Attrs.hasFnAttr(Attribute::Speculatable)) {
3545 "speculatable attribute may not apply to call sites", Call);
3548 if (
Attrs.hasFnAttr(Attribute::Preallocated)) {
3549 Check(
Call.getCalledFunction()->getIntrinsicID() ==
3550 Intrinsic::call_preallocated_arg,
3551 "preallocated as a call site attribute can only be on "
3552 "llvm.call.preallocated.arg");
3556 verifyFunctionAttrs(FTy, Attrs, &Call, IsIntrinsic,
Call.isInlineAsm());
3561 if (
Call.hasInAllocaArgument()) {
3562 Value *InAllocaArg =
Call.getArgOperand(FTy->getNumParams() - 1);
3564 Check(AI->isUsedWithInAlloca(),
3565 "inalloca argument for call has mismatched alloca", AI, Call);
3571 for (
unsigned i = 0, e = FTy->getNumParams(); i != e; ++i) {
3572 if (
Call.paramHasAttr(i, Attribute::SwiftError)) {
3573 Value *SwiftErrorArg =
Call.getArgOperand(i);
3575 Check(AI->isSwiftError(),
3576 "swifterror argument for call has mismatched alloca", AI, Call);
3579 auto ArgI = dyn_cast<Argument>(SwiftErrorArg);
3580 Check(ArgI,
"swifterror argument should come from an alloca or parameter",
3581 SwiftErrorArg, Call);
3582 Check(ArgI->hasSwiftErrorAttr(),
3583 "swifterror argument for call has mismatched parameter", ArgI,
3587 if (
Attrs.hasParamAttr(i, Attribute::ImmArg)) {
3590 Check(Callee &&
Callee->hasParamAttribute(i, Attribute::ImmArg),
3591 "immarg may not apply only to call sites",
Call.getArgOperand(i),
3595 if (
Call.paramHasAttr(i, Attribute::ImmArg)) {
3597 Check(isa<ConstantInt>(ArgVal) || isa<ConstantFP>(ArgVal),
3598 "immarg operand has non-immediate parameter", ArgVal, Call);
3601 if (
Call.paramHasAttr(i, Attribute::Preallocated)) {
3605 bool isMustTail =
Call.isMustTailCall();
3606 Check(hasOB != isMustTail,
3607 "preallocated operand either requires a preallocated bundle or "
3608 "the call to be musttail (but not both)",
3613 if (FTy->isVarArg()) {
3615 bool SawNest =
false;
3616 bool SawReturned =
false;
3618 for (
unsigned Idx = 0;
Idx < FTy->getNumParams(); ++
Idx) {
3619 if (
Attrs.hasParamAttr(
Idx, Attribute::Nest))
3621 if (
Attrs.hasParamAttr(
Idx, Attribute::Returned))
3626 for (
unsigned Idx = FTy->getNumParams();
Idx <
Call.arg_size(); ++
Idx) {
3629 verifyParameterAttrs(ArgAttrs, Ty, &Call);
3632 Check(!SawNest,
"More than one parameter has attribute nest!", Call);
3637 Check(!SawReturned,
"More than one parameter has attribute returned!",
3640 "Incompatible argument and return types for 'returned' "
3648 if (!
Call.getCalledFunction() ||
3649 Call.getCalledFunction()->getIntrinsicID() !=
3650 Intrinsic::experimental_gc_statepoint)
3652 "Attribute 'sret' cannot be used for vararg call arguments!",
3657 "inalloca isn't on the last argument!", Call);
3663 for (
Type *ParamTy : FTy->params()) {
3664 Check(!ParamTy->isMetadataTy(),
3665 "Function has metadata parameter but isn't an intrinsic", Call);
3666 Check(!ParamTy->isTokenTy(),
3667 "Function has token parameter but isn't an intrinsic", Call);
3672 if (!
Call.getCalledFunction()) {
3673 Check(!FTy->getReturnType()->isTokenTy(),
3674 "Return type cannot be token for indirect call!");
3675 Check(!FTy->getReturnType()->isX86_AMXTy(),
3676 "Return type cannot be x86_amx for indirect call!");
3681 visitIntrinsicCall(
ID, Call);
3686 bool FoundDeoptBundle =
false, FoundFuncletBundle =
false,
3687 FoundGCTransitionBundle =
false, FoundCFGuardTargetBundle =
false,
3688 FoundPreallocatedBundle =
false, FoundGCLiveBundle =
false,
3689 FoundPtrauthBundle =
false, FoundKCFIBundle =
false,
3690 FoundAttachedCallBundle =
false;
3691 for (
unsigned i = 0, e =
Call.getNumOperandBundles(); i < e; ++i) {
3695 Check(!FoundDeoptBundle,
"Multiple deopt operand bundles", Call);
3696 FoundDeoptBundle =
true;
3698 Check(!FoundGCTransitionBundle,
"Multiple gc-transition operand bundles",
3700 FoundGCTransitionBundle =
true;
3702 Check(!FoundFuncletBundle,
"Multiple funclet operand bundles", Call);
3703 FoundFuncletBundle =
true;
3705 "Expected exactly one funclet bundle operand", Call);
3707 "Funclet bundle operands should correspond to a FuncletPadInst",
3710 Check(!FoundCFGuardTargetBundle,
"Multiple CFGuardTarget operand bundles",
3712 FoundCFGuardTargetBundle =
true;
3714 "Expected exactly one cfguardtarget bundle operand", Call);
3716 Check(!FoundPtrauthBundle,
"Multiple ptrauth operand bundles", Call);
3717 FoundPtrauthBundle =
true;
3719 "Expected exactly two ptrauth bundle operands", Call);
3721 BU.
Inputs[0]->getType()->isIntegerTy(32),
3722 "Ptrauth bundle key operand must be an i32 constant", Call);
3724 "Ptrauth bundle discriminator operand must be an i64", Call);
3726 Check(!FoundKCFIBundle,
"Multiple kcfi operand bundles", Call);
3727 FoundKCFIBundle =
true;
3728 Check(BU.
Inputs.size() == 1,
"Expected exactly one kcfi bundle operand",
3731 BU.
Inputs[0]->getType()->isIntegerTy(32),
3732 "Kcfi bundle operand must be an i32 constant", Call);
3734 Check(!FoundPreallocatedBundle,
"Multiple preallocated operand bundles",
3736 FoundPreallocatedBundle =
true;
3738 "Expected exactly one preallocated bundle operand", Call);
3739 auto Input = dyn_cast<IntrinsicInst>(BU.
Inputs.front());
3741 Input->getIntrinsicID() == Intrinsic::call_preallocated_setup,
3742 "\"preallocated\" argument must be a token from "
3743 "llvm.call.preallocated.setup",
3746 Check(!FoundGCLiveBundle,
"Multiple gc-live operand bundles", Call);
3747 FoundGCLiveBundle =
true;
3749 Check(!FoundAttachedCallBundle,
3750 "Multiple \"clang.arc.attachedcall\" operand bundles", Call);
3751 FoundAttachedCallBundle =
true;
3752 verifyAttachedCallBundle(Call, BU);
3757 Check(!(
Call.getCalledFunction() && FoundPtrauthBundle),
3758 "Direct call cannot have a ptrauth bundle", Call);
3765 if (
Call.getFunction()->getSubprogram() &&
Call.getCalledFunction() &&
3766 !
Call.getCalledFunction()->isInterposable() &&
3767 !
Call.getCalledFunction()->isDeclaration() &&
3768 Call.getCalledFunction()->getSubprogram())
3770 "inlinable function call in a function with "
3771 "debug info must have a !dbg location",
3774 if (
Call.isInlineAsm())
3775 verifyInlineAsmCall(Call);
3777 ConvergenceVerifyHelper.
visit(Call);
3782void Verifier::verifyTailCCMustTailAttrs(
const AttrBuilder &Attrs,
3785 Twine(
"inalloca attribute not allowed in ") + Context);
3787 Twine(
"inreg attribute not allowed in ") + Context);
3788 Check(!
Attrs.contains(Attribute::SwiftError),
3789 Twine(
"swifterror attribute not allowed in ") + Context);
3790 Check(!
Attrs.contains(Attribute::Preallocated),
3791 Twine(
"preallocated attribute not allowed in ") + Context);
3793 Twine(
"byref attribute not allowed in ") + Context);
3805 return PL->getAddressSpace() == PR->getAddressSpace();
3810 Attribute::StructRet, Attribute::ByVal, Attribute::InAlloca,
3811 Attribute::InReg, Attribute::StackAlignment, Attribute::SwiftSelf,
3812 Attribute::SwiftAsync, Attribute::SwiftError, Attribute::Preallocated,
3815 for (
auto AK : ABIAttrs) {
3816 Attribute Attr = Attrs.getParamAttrs(
I).getAttribute(AK);
3818 Copy.addAttribute(Attr);
3822 if (Attrs.hasParamAttr(
I, Attribute::Alignment) &&
3823 (Attrs.hasParamAttr(
I, Attribute::ByVal) ||
3824 Attrs.hasParamAttr(
I, Attribute::ByRef)))
3825 Copy.addAlignmentAttr(Attrs.getParamAlignment(
I));
3829void Verifier::verifyMustTailCall(
CallInst &CI) {
3835 Check(CallerTy->isVarArg() == CalleeTy->isVarArg(),
3836 "cannot guarantee tail call due to mismatched varargs", &CI);
3838 "cannot guarantee tail call due to mismatched return types", &CI);
3842 "cannot guarantee tail call due to mismatched calling conv", &CI);
3848 Value *RetVal = &CI;
3852 if (
BitCastInst *BI = dyn_cast_or_null<BitCastInst>(Next)) {
3854 "bitcast following musttail call must use the call", BI);
3861 Check(Ret,
"musttail call must precede a ret with an optional bitcast", &CI);
3862 Check(!
Ret->getReturnValue() ||
Ret->getReturnValue() == RetVal ||
3863 isa<UndefValue>(
Ret->getReturnValue()),
3864 "musttail call result must be returned", Ret);
3875 for (
unsigned I = 0, E = CallerTy->getNumParams();
I != E; ++
I) {
3878 verifyTailCCMustTailAttrs(ABIAttrs, Context);
3880 for (
unsigned I = 0, E = CalleeTy->getNumParams();
I != E; ++
I) {
3883 verifyTailCCMustTailAttrs(ABIAttrs, Context);
3886 Check(!CallerTy->isVarArg(),
Twine(
"cannot guarantee ") + CCName +
3887 " tail call for varargs function");
3895 Check(CallerTy->getNumParams() == CalleeTy->getNumParams(),
3896 "cannot guarantee tail call due to mismatched parameter counts", &CI);
3897 for (
unsigned I = 0, E = CallerTy->getNumParams();
I != E; ++
I) {
3900 "cannot guarantee tail call due to mismatched parameter types", &CI);
3906 for (
unsigned I = 0, E = CallerTy->getNumParams();
I != E; ++
I) {
3909 Check(CallerABIAttrs == CalleeABIAttrs,
3910 "cannot guarantee tail call due to mismatched ABI impacting "
3911 "function attributes",
3916void Verifier::visitCallInst(
CallInst &CI) {
3920 verifyMustTailCall(CI);
3929 II.getUnwindDest()->isEHPad(),
3930 "The unwind destination does not have an exception handling instruction!",
3939 Check(
U.getType() ==
U.getOperand(0)->getType(),
3940 "Unary operators must have same type for"
3941 "operands and result!",
3944 switch (
U.getOpcode()) {
3947 case Instruction::FNeg:
3948 Check(
U.getType()->isFPOrFPVectorTy(),
3949 "FNeg operator only works with float types!", &U);
3962 Check(
B.getOperand(0)->getType() ==
B.getOperand(1)->getType(),
3963 "Both operands to a binary operator are not of the same type!", &
B);
3965 switch (
B.getOpcode()) {
3968 case Instruction::Add:
3969 case Instruction::Sub:
3970 case Instruction::Mul:
3971 case Instruction::SDiv:
3972 case Instruction::UDiv:
3973 case Instruction::SRem:
3974 case Instruction::URem:
3975 Check(
B.getType()->isIntOrIntVectorTy(),
3976 "Integer arithmetic operators only work with integral types!", &
B);
3977 Check(
B.getType() ==
B.getOperand(0)->getType(),
3978 "Integer arithmetic operators must have same type "
3979 "for operands and result!",
3984 case Instruction::FAdd:
3985 case Instruction::FSub:
3986 case Instruction::FMul:
3987 case Instruction::FDiv:
3988 case Instruction::FRem:
3989 Check(
B.getType()->isFPOrFPVectorTy(),
3990 "Floating-point arithmetic operators only work with "
3991 "floating-point types!",
3993 Check(
B.getType() ==
B.getOperand(0)->getType(),
3994 "Floating-point arithmetic operators must have same type "
3995 "for operands and result!",
3999 case Instruction::And:
4000 case Instruction::Or:
4001 case Instruction::Xor:
4002 Check(
B.getType()->isIntOrIntVectorTy(),
4003 "Logical operators only work with integral types!", &
B);
4004 Check(
B.getType() ==
B.getOperand(0)->getType(),
4005 "Logical operators must have same type for operands and result!", &
B);
4007 case Instruction::Shl:
4008 case Instruction::LShr:
4009 case Instruction::AShr:
4010 Check(
B.getType()->isIntOrIntVectorTy(),
4011 "Shifts only work with integral types!", &
B);
4012 Check(
B.getType() ==
B.getOperand(0)->getType(),
4013 "Shift return type must be same as operands!", &
B);
4022void Verifier::visitICmpInst(
ICmpInst &IC) {
4026 Check(Op0Ty == Op1Ty,
4027 "Both operands to ICmp instruction are not of the same type!", &IC);
4030 "Invalid operand types for ICmp instruction", &IC);
4037void Verifier::visitFCmpInst(
FCmpInst &FC) {
4039 Type *Op0Ty =
FC.getOperand(0)->getType();
4040 Type *Op1Ty =
FC.getOperand(1)->getType();
4041 Check(Op0Ty == Op1Ty,
4042 "Both operands to FCmp instruction are not of the same type!", &FC);
4047 Check(
FC.isFPPredicate(),
"Invalid predicate in FCmp instruction!", &FC);
4054 "Invalid extractelement operands!", &EI);
4061 "Invalid insertelement operands!", &IE);
4068 "Invalid shufflevector operands!", &SV);
4073 Type *TargetTy =
GEP.getPointerOperandType()->getScalarType();
4075 Check(isa<PointerType>(TargetTy),
4076 "GEP base pointer is not a vector or a vector of pointers", &
GEP);
4077 Check(
GEP.getSourceElementType()->isSized(),
"GEP into unsized type!", &
GEP);
4079 if (
auto *STy = dyn_cast<StructType>(
GEP.getSourceElementType())) {
4082 "getelementptr cannot target structure that contains scalable vector"
4089 all_of(Idxs, [](
Value *V) {
return V->getType()->isIntOrIntVectorTy(); }),
4090 "GEP indexes must be integers", &
GEP);
4093 Check(ElTy,
"Invalid indices for GEP pointer type!", &
GEP);
4095 Check(
GEP.getType()->isPtrOrPtrVectorTy() &&
4096 GEP.getResultElementType() == ElTy,
4097 "GEP is not of right type for indices!", &
GEP, ElTy);
4099 if (
auto *GEPVTy = dyn_cast<VectorType>(
GEP.getType())) {
4102 if (
GEP.getPointerOperandType()->isVectorTy())
4105 cast<VectorType>(
GEP.getPointerOperandType())->getElementCount(),
4106 "Vector GEP result width doesn't match operand's", &
GEP);
4108 Type *IndexTy =
Idx->getType();
4109 if (
auto *IndexVTy = dyn_cast<VectorType>(IndexTy)) {
4111 Check(IndexWidth == GEPWidth,
"Invalid GEP index vector width", &
GEP);
4114 "All GEP indices should be of integer type");
4118 if (
auto *PTy = dyn_cast<PointerType>(
GEP.getType())) {
4119 Check(
GEP.getAddressSpace() == PTy->getAddressSpace(),
4120 "GEP address space doesn't match type", &
GEP);
4127 return A.getUpper() ==
B.getLower() ||
A.getLower() ==
B.getUpper();
4133 Type *Ty,
bool IsAbsoluteSymbol) {
4134 unsigned NumOperands =
Range->getNumOperands();
4135 Check(NumOperands % 2 == 0,
"Unfinished range!",
Range);
4136 unsigned NumRanges = NumOperands / 2;
4137 Check(NumRanges >= 1,
"It should have at least one range!",
Range);
4140 for (
unsigned i = 0; i < NumRanges; ++i) {
4142 mdconst::dyn_extract<ConstantInt>(
Range->getOperand(2 * i));
4143 Check(
Low,
"The lower limit must be an integer!",
Low);
4145 mdconst::dyn_extract<ConstantInt>(
Range->getOperand(2 * i + 1));
4148 Check(
High->getType() ==
Low->getType(),
"Range pair types must match!",
4151 "Range types must match instruction type!", &
I);
4159 "The upper and lower limits cannot be the same value", &
I);
4162 Check(!CurRange.isEmptySet() && (IsAbsoluteSymbol || !CurRange.isFullSet()),
4163 "Range must not be empty!",
Range);
4165 Check(CurRange.intersectWith(LastRange).isEmptySet(),
4166 "Intervals are overlapping",
Range);
4167 Check(LowV.
sgt(LastRange.getLower()),
"Intervals are not in order",
4174 if (NumRanges > 2) {
4176 mdconst::dyn_extract<ConstantInt>(
Range->getOperand(0))->getValue();
4178 mdconst::dyn_extract<ConstantInt>(
Range->getOperand(1))->getValue();
4180 Check(FirstRange.intersectWith(LastRange).isEmptySet(),
4181 "Intervals are overlapping",
Range);
4189 "precondition violation");
4190 verifyRangeMetadata(
I,
Range, Ty,
false);
4194 unsigned Size =
DL.getTypeSizeInBits(Ty);
4195 Check(
Size >= 8,
"atomic memory access' size must be byte-sized", Ty,
I);
4197 "atomic memory access' operand must have a power-of-two size", Ty,
I);
4200void Verifier::visitLoadInst(
LoadInst &LI) {
4202 Check(PTy,
"Load operand must be a pointer.", &LI);
4206 "huge alignment values are unsupported", &LI);
4208 Check(ElTy->
isSized(),
"loading unsized types is not allowed", &LI);
4212 "Load cannot have Release ordering", &LI);
4214 "atomic load operand must have integer, pointer, or floating point "
4217 checkAtomicMemAccessSize(ElTy, &LI);
4220 "Non-atomic load cannot have SynchronizationScope specified", &LI);
4226void Verifier::visitStoreInst(
StoreInst &SI) {
4227 PointerType *PTy = dyn_cast<PointerType>(
SI.getOperand(1)->getType());
4228 Check(PTy,
"Store operand must be a pointer.", &SI);
4229 Type *ElTy =
SI.getOperand(0)->getType();
4232 "huge alignment values are unsupported", &SI);
4234 Check(ElTy->
isSized(),
"storing unsized types is not allowed", &SI);
4235 if (
SI.isAtomic()) {
4238 "Store cannot have Acquire ordering", &SI);
4240 "atomic store operand must have integer, pointer, or floating point "
4243 checkAtomicMemAccessSize(ElTy, &SI);
4246 "Non-atomic store cannot have SynchronizationScope specified", &SI);
4252void Verifier::verifySwiftErrorCall(
CallBase &Call,
4253 const Value *SwiftErrorVal) {
4255 if (
I.value() == SwiftErrorVal) {
4256 Check(
Call.paramHasAttr(
I.index(), Attribute::SwiftError),
4257 "swifterror value when used in a callsite should be marked "
4258 "with swifterror attribute",
4259 SwiftErrorVal, Call);
4264void Verifier::verifySwiftErrorValue(
const Value *SwiftErrorVal) {
4267 for (
const User *U : SwiftErrorVal->
users()) {
4268 Check(isa<LoadInst>(U) || isa<StoreInst>(U) || isa<CallInst>(U) ||
4270 "swifterror value can only be loaded and stored from, or "
4271 "as a swifterror argument!",
4274 if (
auto StoreI = dyn_cast<StoreInst>(U))
4275 Check(StoreI->getOperand(1) == SwiftErrorVal,
4276 "swifterror value should be the second operand when used "
4279 if (
auto *Call = dyn_cast<CallBase>(U))
4280 verifySwiftErrorCall(*
const_cast<CallBase *
>(Call), SwiftErrorVal);
4284void Verifier::visitAllocaInst(
AllocaInst &AI) {
4287 "Cannot allocate unsized type", &AI);
4289 "Alloca array size must have integer type", &AI);
4292 "huge alignment values are unsupported", &AI);
4297 "swifterror alloca must have pointer type", &AI);
4299 "swifterror alloca must not be array allocation", &AI);
4300 verifySwiftErrorValue(&AI);
4309 "cmpxchg operand must have integer or pointer type", ElTy, &CXI);
4310 checkAtomicMemAccessSize(ElTy, &CXI);
4316 "atomicrmw instructions cannot be unordered.", &RMWI);
4323 " operand must have integer or floating point type!",
4328 " operand must have floating-point or fixed vector of floating-point "
4334 " operand must have integer type!",
4337 checkAtomicMemAccessSize(ElTy, &RMWI);
4339 "Invalid binary operation!", &RMWI);
4343void Verifier::visitFenceInst(
FenceInst &FI) {
4349 "fence instructions may only have acquire, release, acq_rel, or "
4350 "seq_cst ordering.",
4358 "Invalid ExtractValueInst operands!", &EVI);
4367 "Invalid InsertValueInst operands!", &IVI);
4373 if (
auto *FPI = dyn_cast<FuncletPadInst>(EHPad))
4374 return FPI->getParentPad();
4376 return cast<CatchSwitchInst>(EHPad)->getParentPad();
4385 Check(BB != &
F->getEntryBlock(),
"EH pad cannot be in entry block.", &
I);
4387 if (
auto *LPI = dyn_cast<LandingPadInst>(&
I)) {
4392 const auto *
II = dyn_cast<InvokeInst>(PredBB->getTerminator());
4393 Check(
II &&
II->getUnwindDest() == BB &&
II->getNormalDest() != BB,
4394 "Block containing LandingPadInst must be jumped to "
4395 "only by the unwind edge of an invoke.",
4400 if (
auto *CPI = dyn_cast<CatchPadInst>(&
I)) {
4403 "Block containg CatchPadInst must be jumped to "
4404 "only by its catchswitch.",
4406 Check(BB != CPI->getCatchSwitch()->getUnwindDest(),
4407 "Catchswitch cannot unwind to one of its catchpads",
4408 CPI->getCatchSwitch(), CPI);
4419 if (
auto *
II = dyn_cast<InvokeInst>(TI)) {
4420 Check(
II->getUnwindDest() == BB &&
II->getNormalDest() != BB,
4421 "EH pad must be jumped to via an unwind edge", ToPad,
II);
4423 dyn_cast<Function>(
II->getCalledOperand()->stripPointerCasts());
4424 if (CalledFn && CalledFn->isIntrinsic() &&
II->doesNotThrow() &&
4428 FromPad = Bundle->Inputs[0];
4431 }
else if (
auto *CRI = dyn_cast<CleanupReturnInst>(TI)) {
4432 FromPad = CRI->getOperand(0);
4433 Check(FromPad != ToPadParent,
"A cleanupret must exit its cleanup", CRI);
4434 }
else if (
auto *CSI = dyn_cast<CatchSwitchInst>(TI)) {
4437 Check(
false,
"EH pad must be jumped to via an unwind edge", ToPad, TI);
4443 Check(FromPad != ToPad,
4444 "EH pad cannot handle exceptions raised within it", FromPad, TI);
4445 if (FromPad == ToPadParent) {
4449 Check(!isa<ConstantTokenNone>(FromPad),
4450 "A single unwind edge may only enter one EH pad", TI);
4451 Check(Seen.
insert(FromPad).second,
"EH pad jumps through a cycle of pads",
4456 Check(isa<FuncletPadInst>(FromPad) || isa<CatchSwitchInst>(FromPad),
4457 "Parent pad must be catchpad/cleanuppad/catchswitch", TI);
4466 "LandingPadInst needs at least one clause or to be a cleanup.", &LPI);
4468 visitEHPadPredecessors(LPI);
4470 if (!LandingPadResultTy)
4471 LandingPadResultTy = LPI.
getType();
4474 "The landingpad instruction should have a consistent result type "
4475 "inside a function.",
4479 Check(
F->hasPersonalityFn(),
4480 "LandingPadInst needs to be in a function with a personality.", &LPI);
4485 "LandingPadInst not the first non-PHI instruction in the block.", &LPI);
4491 "Catch operand does not have pointer type!", &LPI);
4493 Check(LPI.
isFilter(i),
"Clause is neither catch nor filter!", &LPI);
4495 "Filter operand is not an array of constants!", &LPI);
4502void Verifier::visitResumeInst(
ResumeInst &RI) {
4504 "ResumeInst needs to be in a function with a personality.", &RI);
4506 if (!LandingPadResultTy)
4510 "The resume instruction should have a consistent result type "
4511 "inside a function.",
4521 Check(
F->hasPersonalityFn(),
4522 "CatchPadInst needs to be in a function with a personality.", &CPI);
4525 "CatchPadInst needs to be directly nested in a CatchSwitchInst.",
4531 "CatchPadInst not the first non-PHI instruction in the block.", &CPI);
4533 visitEHPadPredecessors(CPI);
4539 "CatchReturnInst needs to be provided a CatchPad", &CatchReturn,
4549 Check(
F->hasPersonalityFn(),
4550 "CleanupPadInst needs to be in a function with a personality.", &CPI);
4555 "CleanupPadInst not the first non-PHI instruction in the block.", &CPI);
4558 Check(isa<ConstantTokenNone>(ParentPad) || isa<FuncletPadInst>(ParentPad),
4559 "CleanupPadInst has an invalid parent.", &CPI);
4561 visitEHPadPredecessors(CPI);
4566 User *FirstUser =
nullptr;
4567 Value *FirstUnwindPad =
nullptr;
4571 while (!Worklist.empty()) {
4574 "FuncletPadInst must not be nested within itself", CurrentPad);
4575 Value *UnresolvedAncestorPad =
nullptr;
4578 if (
auto *CRI = dyn_cast<CleanupReturnInst>(U)) {
4579 UnwindDest = CRI->getUnwindDest();
4580 }
else if (
auto *CSI = dyn_cast<CatchSwitchInst>(U)) {
4585 if (CSI->unwindsToCaller())
4587 UnwindDest = CSI->getUnwindDest();
4588 }
else if (
auto *
II = dyn_cast<InvokeInst>(U)) {
4589 UnwindDest =
II->getUnwindDest();
4590 }
else if (isa<CallInst>(U)) {
4595 }
else if (
auto *CPI = dyn_cast<CleanupPadInst>(U)) {
4599 Worklist.push_back(CPI);
4602 Check(isa<CatchReturnInst>(U),
"Bogus funclet pad use", U);
4610 if (!cast<Instruction>(UnwindPad)->isEHPad())
4614 if (UnwindParent == CurrentPad)
4620 Value *ExitedPad = CurrentPad;
4623 if (ExitedPad == &FPI) {
4628 UnresolvedAncestorPad = &FPI;
4632 if (ExitedParent == UnwindParent) {
4636 UnresolvedAncestorPad = ExitedParent;
4639 ExitedPad = ExitedParent;
4640 }
while (!isa<ConstantTokenNone>(ExitedPad));
4645 UnresolvedAncestorPad = &FPI;
4652 Check(UnwindPad == FirstUnwindPad,
4653 "Unwind edges out of a funclet "
4654 "pad must have the same unwind "
4656 &FPI, U, FirstUser);
4659 FirstUnwindPad = UnwindPad;
4661 if (isa<CleanupPadInst>(&FPI) && !isa<ConstantTokenNone>(UnwindPad) &&
4663 SiblingFuncletInfo[&FPI] = cast<Instruction>(U);
4668 if (CurrentPad != &FPI)
4671 if (UnresolvedAncestorPad) {
4672 if (CurrentPad == UnresolvedAncestorPad) {
4676 assert(CurrentPad == &FPI);
4684 Value *ResolvedPad = CurrentPad;
4685 while (!Worklist.empty()) {
4686 Value *UnclePad = Worklist.back();
4690 while (ResolvedPad != AncestorPad) {
4692 if (ResolvedParent == UnresolvedAncestorPad) {
4695 ResolvedPad = ResolvedParent;
4699 if (ResolvedPad != AncestorPad)
4702 Worklist.pop_back();
4707 if (FirstUnwindPad) {
4708 if (
auto *CatchSwitch = dyn_cast<CatchSwitchInst>(FPI.
getParentPad())) {
4709 BasicBlock *SwitchUnwindDest = CatchSwitch->getUnwindDest();
4710 Value *SwitchUnwindPad;
4711 if (SwitchUnwindDest)
4715 Check(SwitchUnwindPad == FirstUnwindPad,
4716 "Unwind edges out of a catch must have the same unwind dest as "
4717 "the parent catchswitch",
4718 &FPI, FirstUser, CatchSwitch);
4729 Check(
F->hasPersonalityFn(),
4730 "CatchSwitchInst needs to be in a function with a personality.",
4736 "CatchSwitchInst not the first non-PHI instruction in the block.",
4740 Check(isa<ConstantTokenNone>(ParentPad) || isa<FuncletPadInst>(ParentPad),
4741 "CatchSwitchInst has an invalid parent.", ParentPad);
4745 Check(
I->isEHPad() && !isa<LandingPadInst>(
I),
4746 "CatchSwitchInst must unwind to an EH block which is not a "
4752 SiblingFuncletInfo[&CatchSwitch] = &CatchSwitch;
4756 "CatchSwitchInst cannot have empty handler list", &CatchSwitch);
4759 Check(isa<CatchPadInst>(Handler->getFirstNonPHI()),
4760 "CatchSwitchInst handlers must be catchpads", &CatchSwitch, Handler);
4763 visitEHPadPredecessors(CatchSwitch);
4769 "CleanupReturnInst needs to be provided a CleanupPad", &CRI,
4774 Check(
I->isEHPad() && !isa<LandingPadInst>(
I),
4775 "CleanupReturnInst must unwind to an EH block which is not a "
4783void Verifier::verifyDominatesUse(
Instruction &
I,
unsigned i) {
4789 if (
II->getNormalDest() ==
II->getUnwindDest())
4800 if (!isa<PHINode>(
I) && InstsInThisBlock.
count(
Op))
4803 const Use &
U =
I.getOperandUse(i);
4804 Check(DT.dominates(
Op, U),
"Instruction does not dominate all uses!",
Op, &
I);
4808 Check(
I.getType()->isPointerTy(),
4809 "dereferenceable, dereferenceable_or_null "
4810 "apply only to pointer types",
4812 Check((isa<LoadInst>(
I) || isa<IntToPtrInst>(
I)),
4813 "dereferenceable, dereferenceable_or_null apply only to load"
4814 " and inttoptr instructions, use attributes for calls or invokes",
4817 "dereferenceable, dereferenceable_or_null "
4818 "take one operand!",
4823 "dereferenceable_or_null metadata value must be an i64!",
4829 "!prof annotations should have no less than 2 operands", MD);
4832 Check(MD->
getOperand(0) !=
nullptr,
"first operand should not be null", MD);
4834 "expected string with name of the !prof annotation", MD);
4839 if (ProfName ==
"branch_weights") {
4841 if (isa<InvokeInst>(&
I)) {
4842 Check(NumBranchWeights == 1 || NumBranchWeights == 2,
4843 "Wrong number of InvokeInst branch_weights operands", MD);
4845 unsigned ExpectedNumOperands = 0;
4848 else if (
SwitchInst *SI = dyn_cast<SwitchInst>(&
I))
4849 ExpectedNumOperands =
SI->getNumSuccessors();
4850 else if (isa<CallInst>(&
I))
4851 ExpectedNumOperands = 1;
4853 ExpectedNumOperands = IBI->getNumDestinations();
4854 else if (isa<SelectInst>(&
I))
4855 ExpectedNumOperands = 2;
4856 else if (
CallBrInst *CI = dyn_cast<CallBrInst>(&
I))
4859 CheckFailed(
"!prof branch_weights are not allowed for this instruction",
4862 Check(NumBranchWeights == ExpectedNumOperands,
"Wrong number of operands",
4868 Check(MDO,
"second operand should not be null", MD);
4869 Check(mdconst::dyn_extract<ConstantInt>(MDO),
4870 "!prof brunch_weights operand is not a const int");
4876 assert(
I.hasMetadata(LLVMContext::MD_DIAssignID));
4877 bool ExpectedInstTy =
4878 isa<AllocaInst>(
I) || isa<StoreInst>(
I) || isa<MemIntrinsic>(
I);
4879 CheckDI(ExpectedInstTy,
"!DIAssignID attached to unexpected instruction kind",
4886 "!DIAssignID should only be used by llvm.dbg.assign intrinsics",
4889 if (
auto *DAI = dyn_cast<DbgAssignIntrinsic>(
User))
4890 CheckDI(DAI->getFunction() ==
I.getFunction(),
4891 "dbg.assign not in same function as inst", DAI, &
I);
4895 cast<DIAssignID>(MD)->getAllDbgVariableRecordUsers()) {
4897 "!DIAssignID should only be used by Assign DVRs.", MD, DVR);
4898 CheckDI(DVR->getFunction() ==
I.getFunction(),
4899 "DVRAssign not in same function as inst", DVR, &
I);
4905 "!mmra metadata attached to unexpected instruction kind",
I, MD);
4915 Check(isa<MDTuple>(MD),
"!mmra expected to be a metadata tuple",
I, MD);
4918 "!mmra metadata tuple operand is not an MMRA tag",
I, MDOp.get());
4921void Verifier::visitCallStackMetadata(
MDNode *MD) {
4925 "call stack metadata should have at least 1 operand", MD);
4928 Check(mdconst::dyn_extract_or_null<ConstantInt>(
Op),
4929 "call stack metadata operand should be constant integer",
Op);
4933 Check(isa<CallBase>(
I),
"!memprof metadata should only exist on calls", &
I);
4935 "!memprof annotations should have at least 1 metadata operand "
4940 for (
auto &MIBOp : MD->
operands()) {
4941 MDNode *MIB = dyn_cast<MDNode>(MIBOp);
4946 "Each !memprof MemInfoBlock should have at least 2 operands", MIB);
4950 "!memprof MemInfoBlock first operand should not be null", MIB);
4952 "!memprof MemInfoBlock first operand should be an MDNode", MIB);
4954 visitCallStackMetadata(StackMD);
4958 [](
const MDOperand &
Op) { return isa<MDString>(Op); }),
4959 "Not all !memprof MemInfoBlock operands 1 to N-1 are MDString", MIB);
4961 auto &LastOperand = MIB->
operands().back();
4962 Check(isa<MDString>(LastOperand) || mdconst::hasa<ConstantInt>(LastOperand),
4963 "Last !memprof MemInfoBlock operand not MDString or int", MIB);
4968 Check(isa<CallBase>(
I),
"!callsite metadata should only exist on calls", &
I);
4971 visitCallStackMetadata(MD);
4974void Verifier::visitAnnotationMetadata(
MDNode *Annotation) {
4975 Check(isa<MDTuple>(Annotation),
"annotation must be a tuple");
4977 "annotation must have at least one operand");
4979 bool TupleOfStrings =
4980 isa<MDTuple>(
Op.get()) &&
4981 all_of(cast<MDTuple>(
Op)->operands(), [](
auto &Annotation) {
4984 Check(isa<MDString>(
Op.get()) || TupleOfStrings,
4985 "operands must be a string or a tuple of strings");
4989void Verifier::visitAliasScopeMetadata(
const MDNode *MD) {
4991 Check(NumOps >= 2 && NumOps <= 3,
"scope must have two or three operands",
4994 "first scope operand must be self-referential or string", MD);
4997 "third scope operand must be string (if used)", MD);
5000 Check(
Domain !=
nullptr,
"second scope operand must be MDNode", MD);
5002 unsigned NumDomainOps =
Domain->getNumOperands();
5003 Check(NumDomainOps >= 1 && NumDomainOps <= 2,
5004 "domain must have one or two operands",
Domain);
5006 isa<MDString>(
Domain->getOperand(0)),
5007 "first domain operand must be self-referential or string",
Domain);
5008 if (NumDomainOps == 2)
5010 "second domain operand must be string (if used)",
Domain);
5013void Verifier::visitAliasScopeListMetadata(
const MDNode *MD) {
5015 const MDNode *OpMD = dyn_cast<MDNode>(
Op);
5016 Check(OpMD !=
nullptr,
"scope list must consist of MDNodes", MD);
5017 visitAliasScopeMetadata(OpMD);
5021void Verifier::visitAccessGroupMetadata(
const MDNode *MD) {
5022 auto IsValidAccessScope = [](
const MDNode *MD) {
5027 if (IsValidAccessScope(MD))
5032 const MDNode *OpMD = dyn_cast<MDNode>(
Op);
5033 Check(OpMD !=
nullptr,
"Access scope list must consist of MDNodes", MD);
5034 Check(IsValidAccessScope(OpMD),
5035 "Access scope list contains invalid access scope", MD);
5043 Check(BB,
"Instruction not embedded in basic block!", &
I);
5045 if (!isa<PHINode>(
I)) {
5046 for (
User *U :
I.users()) {
5047 Check(U != (
User *)&
I || !DT.isReachableFromEntry(BB),
5048 "Only PHI nodes may reference their own value!", &
I);
5053 Check(!
I.getType()->isVoidTy() || !
I.hasName(),
5054 "Instruction has a name, but provides a void value!", &
I);
5058 Check(
I.getType()->isVoidTy() ||
I.getType()->isFirstClassType(),
5059 "Instruction returns a non-scalar type!", &
I);
5063 Check(!
I.getType()->isMetadataTy() || isa<CallInst>(
I) || isa<InvokeInst>(
I),
5064 "Invalid use of metadata!", &
I);
5069 for (
Use &U :
I.uses()) {
5070 if (
Instruction *Used = dyn_cast<Instruction>(
U.getUser()))
5072 "Instruction referencing"
5073 " instruction not embedded in a basic block!",
5076 CheckFailed(
"Use of instruction is not an instruction!", U);
5083 const CallBase *CBI = dyn_cast<CallBase>(&
I);
5085 for (
unsigned i = 0, e =
I.getNumOperands(); i != e; ++i) {
5086 Check(
I.getOperand(i) !=
nullptr,
"Instruction has null operand!", &
I);
5090 if (!
I.getOperand(i)->getType()->isFirstClassType()) {
5091 Check(
false,
"Instruction operands must be first-class values!", &
I);
5094 if (
Function *
F = dyn_cast<Function>(
I.getOperand(i))) {
5099 return CBI && CBI->isOperandBundleOfType(
5107 Check((!
F->isIntrinsic() ||
5108 (CBI && &CBI->getCalledOperandUse() == &
I.getOperandUse(i)) ||
5109 IsAttachedCallOperand(
F, CBI, i)),
5110 "Cannot take the address of an intrinsic!", &
I);
5111 Check(!
F->isIntrinsic() || isa<CallInst>(
I) ||
5112 F->getIntrinsicID() == Intrinsic::donothing ||
5113 F->getIntrinsicID() == Intrinsic::seh_try_begin ||
5114 F->getIntrinsicID() == Intrinsic::seh_try_end ||
5115 F->getIntrinsicID() == Intrinsic::seh_scope_begin ||
5116 F->getIntrinsicID() == Intrinsic::seh_scope_end ||
5117 F->getIntrinsicID() == Intrinsic::coro_resume ||
5118 F->getIntrinsicID() == Intrinsic::coro_destroy ||
5119 F->getIntrinsicID() == Intrinsic::coro_await_suspend_void ||
5120 F->getIntrinsicID() == Intrinsic::coro_await_suspend_bool ||
5121 F->getIntrinsicID() == Intrinsic::coro_await_suspend_handle ||
5122 F->getIntrinsicID() ==
5123 Intrinsic::experimental_patchpoint_void ||
5124 F->getIntrinsicID() == Intrinsic::experimental_patchpoint ||
5125 F->getIntrinsicID() == Intrinsic::experimental_gc_statepoint ||
5126 F->getIntrinsicID() == Intrinsic::wasm_rethrow ||
5127 IsAttachedCallOperand(
F, CBI, i),
5128 "Cannot invoke an intrinsic other than donothing, patchpoint, "
5129 "statepoint, coro_resume, coro_destroy or clang.arc.attachedcall",
5131 Check(
F->getParent() == &M,
"Referencing function in another module!", &
I,
5132 &M,
F,
F->getParent());
5133 }
else if (
BasicBlock *OpBB = dyn_cast<BasicBlock>(
I.getOperand(i))) {
5135 "Referring to a basic block in another function!", &
I);
5136 }
else if (
Argument *OpArg = dyn_cast<Argument>(
I.getOperand(i))) {
5138 "Referring to an argument in another function!", &
I);
5139 }
else if (
GlobalValue *GV = dyn_cast<GlobalValue>(
I.getOperand(i))) {
5140 Check(GV->
getParent() == &M,
"Referencing global in another module!", &
I,
5142 }
else if (
Instruction *OpInst = dyn_cast<Instruction>(
I.getOperand(i))) {
5144 "Referring to an instruction in another function!", &
I);
5145 verifyDominatesUse(
I, i);
5146 }
else if (isa<InlineAsm>(
I.getOperand(i))) {
5147 Check(CBI && &CBI->getCalledOperandUse() == &
I.getOperandUse(i),
5148 "Cannot take the address of an inline asm!", &
I);
5149 }
else if (
auto *CPA = dyn_cast<ConstantPtrAuth>(
I.getOperand(i))) {
5150 visitConstantExprsRecursively(CPA);
5151 }
else if (
ConstantExpr *CE = dyn_cast<ConstantExpr>(
I.getOperand(i))) {
5152 if (
CE->getType()->isPtrOrPtrVectorTy()) {
5155 visitConstantExprsRecursively(CE);
5160 if (
MDNode *MD =
I.getMetadata(LLVMContext::MD_fpmath)) {
5161 Check(
I.getType()->isFPOrFPVectorTy(),
5162 "fpmath requires a floating point result!", &
I);
5165 mdconst::dyn_extract_or_null<ConstantFP>(MD->
getOperand(0))) {
5166 const APFloat &Accuracy = CFP0->getValueAPF();
5168 "fpmath accuracy must have float type", &
I);
5170 "fpmath accuracy not a positive number!", &
I);
5172 Check(
false,
"invalid fpmath accuracy!", &
I);
5176 if (
MDNode *
Range =
I.getMetadata(LLVMContext::MD_range)) {
5177 Check(isa<LoadInst>(
I) || isa<CallInst>(
I) || isa<InvokeInst>(
I),
5178 "Ranges are only for loads, calls and invokes!", &
I);
5179 visitRangeMetadata(
I,
Range,
I.getType());
5182 if (
I.hasMetadata(LLVMContext::MD_invariant_group)) {
5183 Check(isa<LoadInst>(
I) || isa<StoreInst>(
I),
5184 "invariant.group metadata is only for loads and stores", &
I);
5187 if (
MDNode *MD =
I.getMetadata(LLVMContext::MD_nonnull)) {
5188 Check(
I.getType()->isPointerTy(),
"nonnull applies only to pointer types",
5191 "nonnull applies only to load instructions, use attributes"
5192 " for calls or invokes",
5197 if (
MDNode *MD =
I.getMetadata(LLVMContext::MD_dereferenceable))
5198 visitDereferenceableMetadata(
I, MD);
5200 if (
MDNode *MD =
I.getMetadata(LLVMContext::MD_dereferenceable_or_null))
5201 visitDereferenceableMetadata(
I, MD);
5203 if (
MDNode *TBAA =
I.getMetadata(LLVMContext::MD_tbaa))
5206 if (
MDNode *MD =
I.getMetadata(LLVMContext::MD_noalias))
5207 visitAliasScopeListMetadata(MD);
5208 if (
MDNode *MD =
I.getMetadata(LLVMContext::MD_alias_scope))
5209 visitAliasScopeListMetadata(MD);
5211 if (
MDNode *MD =
I.getMetadata(LLVMContext::MD_access_group))
5212 visitAccessGroupMetadata(MD);
5214 if (
MDNode *AlignMD =
I.getMetadata(LLVMContext::MD_align)) {
5215 Check(
I.getType()->isPointerTy(),
"align applies only to pointer types",
5218 "align applies only to load instructions, "
5219 "use attributes for calls or invokes",
5221 Check(AlignMD->getNumOperands() == 1,
"align takes one operand!", &
I);
5222 ConstantInt *CI = mdconst::dyn_extract<ConstantInt>(AlignMD->getOperand(0));
5224 "align metadata value must be an i64!", &
I);
5229 "alignment is larger that implementation defined limit", &
I);
5232 if (
MDNode *MD =
I.getMetadata(LLVMContext::MD_prof))
5233 visitProfMetadata(
I, MD);
5235 if (
MDNode *MD =
I.getMetadata(LLVMContext::MD_memprof))
5236 visitMemProfMetadata(
I, MD);
5238 if (
MDNode *MD =
I.getMetadata(LLVMContext::MD_callsite))
5239 visitCallsiteMetadata(
I, MD);
5241 if (
MDNode *MD =
I.getMetadata(LLVMContext::MD_DIAssignID))
5242 visitDIAssignIDMetadata(
I, MD);
5244 if (
MDNode *MMRA =
I.getMetadata(LLVMContext::MD_mmra))
5245 visitMMRAMetadata(
I, MMRA);
5247 if (
MDNode *Annotation =
I.getMetadata(LLVMContext::MD_annotation))
5248 visitAnnotationMetadata(Annotation);
5250 if (
MDNode *
N =
I.getDebugLoc().getAsMDNode()) {
5251 CheckDI(isa<DILocation>(
N),
"invalid !dbg metadata attachment", &
I,
N);
5252 visitMDNode(*
N, AreDebugLocsAllowed::Yes);
5255 if (
auto *DII = dyn_cast<DbgVariableIntrinsic>(&
I)) {
5256 verifyFragmentExpression(*DII);
5257 verifyNotEntryValue(*DII);
5261 I.getAllMetadata(MDs);
5262 for (
auto Attachment : MDs) {
5263 unsigned Kind = Attachment.first;
5265 (
Kind == LLVMContext::MD_dbg ||
Kind == LLVMContext::MD_loop)
5266 ? AreDebugLocsAllowed::Yes
5267 : AreDebugLocsAllowed::No;
5268 visitMDNode(*Attachment.second, AllowLocs);
5277 Check(
IF->isDeclaration(),
"Intrinsic functions should never be defined!",
5283 bool IsVarArg = IFTy->isVarArg();
5294 "Intrinsic has incorrect return type!", IF);
5296 "Intrinsic has incorrect argument type!", IF);
5301 "Intrinsic was not defined with variable arguments!", IF);
5304 "Callsite was not defined with variable arguments!", IF);
5313 const std::string ExpectedName =
5315 Check(ExpectedName ==
IF->getName(),
5316 "Intrinsic name not mangled correctly for type arguments! "
5324 if (
auto *MD = dyn_cast<MetadataAsValue>(V))
5325 visitMetadataAsValue(*MD,
Call.getCaller());
5326 if (
auto *Const = dyn_cast<Constant>(V))
5328 "const x86_amx is not allowed in argument!");
5334 case Intrinsic::assume: {
5335 for (
auto &Elem :
Call.bundle_op_infos()) {
5336 unsigned ArgCount = Elem.End - Elem.Begin;
5339 if (Elem.Tag->getKey() ==
"separate_storage") {
5340 Check(ArgCount == 2,
5341 "separate_storage assumptions should have 2 arguments", Call);
5342 Check(
Call.getOperand(Elem.Begin)->getType()->isPointerTy() &&
5343 Call.getOperand(Elem.Begin + 1)->getType()->isPointerTy(),
5344 "arguments to separate_storage assumptions should be pointers",
5348 Check(Elem.Tag->getKey() ==
"ignore" ||
5350 "tags must be valid attribute names", Call);
5353 if (Kind == Attribute::Alignment) {
5354 Check(ArgCount <= 3 && ArgCount >= 2,
5355 "alignment assumptions should have 2 or 3 arguments", Call);
5356 Check(
Call.getOperand(Elem.Begin)->getType()->isPointerTy(),
5357 "first argument should be a pointer", Call);
5358 Check(
Call.getOperand(Elem.Begin + 1)->getType()->isIntegerTy(),
5359 "second argument should be an integer", Call);
5361 Check(
Call.getOperand(Elem.Begin + 2)->getType()->isIntegerTy(),
5362 "third argument should be an integer if present", Call);
5365 Check(ArgCount <= 2,
"too many arguments", Call);
5369 Check(ArgCount == 2,
"this attribute should have 2 arguments", Call);
5370 Check(isa<ConstantInt>(
Call.getOperand(Elem.Begin + 1)),
5371 "the second argument should be a constant integral value", Call);
5373 Check((ArgCount) == 1,
"this attribute should have one argument", Call);
5375 Check((ArgCount) == 0,
"this attribute has no argument", Call);
5380 case Intrinsic::ucmp:
5381 case Intrinsic::scmp: {
5382 Type *SrcTy =
Call.getOperand(0)->getType();
5386 "result type must be at least 2 bits wide", Call);
5388 bool IsDestTypeVector = DestTy->
isVectorTy();
5390 "ucmp/scmp argument and result types must both be either vector or "
5393 if (IsDestTypeVector) {
5394 auto SrcVecLen = cast<VectorType>(SrcTy)->getElementCount();
5395 auto DestVecLen = cast<VectorType>(DestTy)->getElementCount();
5396 Check(SrcVecLen == DestVecLen,
5397 "return type and arguments must have the same number of "
5403 case Intrinsic::coro_id: {
5404 auto *InfoArg =
Call.getArgOperand(3)->stripPointerCasts();
5405 if (isa<ConstantPointerNull>(InfoArg))
5407 auto *GV = dyn_cast<GlobalVariable>(InfoArg);
5409 "info argument of llvm.coro.id must refer to an initialized "
5412 Check(isa<ConstantStruct>(
Init) || isa<ConstantArray>(
Init),
5413 "info argument of llvm.coro.id must refer to either a struct or "
5417 case Intrinsic::is_fpclass: {
5420 "unsupported bits for llvm.is.fpclass test mask");
5423 case Intrinsic::fptrunc_round: {
5426 auto *MAV = dyn_cast<MetadataAsValue>(
Call.getOperand(1));
5428 MD = MAV->getMetadata();
5430 Check(MD !=
nullptr,
"missing rounding mode argument", Call);
5432 Check(isa<MDString>(MD),
5433 (
"invalid value for llvm.fptrunc.round metadata operand"
5434 " (the operand should be a string)"),
5437 std::optional<RoundingMode> RoundMode =
5440 "unsupported rounding mode argument", Call);
5443#define BEGIN_REGISTER_VP_INTRINSIC(VPID, ...) case Intrinsic::VPID:
5444#include "llvm/IR/VPIntrinsics.def"
5445#undef BEGIN_REGISTER_VP_INTRINSIC
5446 visitVPIntrinsic(cast<VPIntrinsic>(Call));
5448#define INSTRUCTION(NAME, NARGS, ROUND_MODE, INTRINSIC) \
5449 case Intrinsic::INTRINSIC:
5450#include "llvm/IR/ConstrainedOps.def"
5452 visitConstrainedFPIntrinsic(cast<ConstrainedFPIntrinsic>(Call));
5454 case Intrinsic::dbg_declare:
5455 Check(isa<MetadataAsValue>(
Call.getArgOperand(0)),
5456 "invalid llvm.dbg.declare intrinsic call 1", Call);
5457 visitDbgIntrinsic(
"declare", cast<DbgVariableIntrinsic>(Call));
5459 case Intrinsic::dbg_value:
5460 visitDbgIntrinsic(
"value", cast<DbgVariableIntrinsic>(Call));
5462 case Intrinsic::dbg_assign:
5463 visitDbgIntrinsic(
"assign", cast<DbgVariableIntrinsic>(Call));
5465 case Intrinsic::dbg_label:
5466 visitDbgLabelIntrinsic(
"label", cast<DbgLabelInst>(Call));
5468 case Intrinsic::memcpy:
5469 case Intrinsic::memcpy_inline:
5470 case Intrinsic::memmove:
5471 case Intrinsic::memset:
5472 case Intrinsic::memset_inline: {
5475 case Intrinsic::memcpy_element_unordered_atomic:
5476 case Intrinsic::memmove_element_unordered_atomic:
5477 case Intrinsic::memset_element_unordered_atomic: {
5478 const auto *AMI = cast<AtomicMemIntrinsic>(&Call);
5481 cast<ConstantInt>(AMI->getRawElementSizeInBytes());
5484 "element size of the element-wise atomic memory intrinsic "
5485 "must be a power of 2",
5488 auto IsValidAlignment = [&](
MaybeAlign Alignment) {
5489 return Alignment && ElementSizeVal.
ule(Alignment->value());
5491 Check(IsValidAlignment(AMI->getDestAlign()),
5492 "incorrect alignment of the destination argument", Call);
5493 if (
const auto *AMT = dyn_cast<AtomicMemTransferInst>(AMI)) {
5494 Check(IsValidAlignment(AMT->getSourceAlign()),
5495 "incorrect alignment of the source argument", Call);
5499 case Intrinsic::call_preallocated_setup: {
5500 auto *NumArgs = dyn_cast<ConstantInt>(
Call.getArgOperand(0));
5501 Check(NumArgs !=
nullptr,
5502 "llvm.call.preallocated.setup argument must be a constant");
5503 bool FoundCall =
false;
5505 auto *UseCall = dyn_cast<CallBase>(U);
5506 Check(UseCall !=
nullptr,
5507 "Uses of llvm.call.preallocated.setup must be calls");
5508 const Function *Fn = UseCall->getCalledFunction();
5509 if (Fn && Fn->
getIntrinsicID() == Intrinsic::call_preallocated_arg) {
5510 auto *AllocArgIndex = dyn_cast<ConstantInt>(UseCall->getArgOperand(1));
5511 Check(AllocArgIndex !=
nullptr,
5512 "llvm.call.preallocated.alloc arg index must be a constant");
5513 auto AllocArgIndexInt = AllocArgIndex->getValue();
5514 Check(AllocArgIndexInt.sge(0) &&
5515 AllocArgIndexInt.slt(NumArgs->getValue()),
5516 "llvm.call.preallocated.alloc arg index must be between 0 and "
5518 "llvm.call.preallocated.setup's argument count");
5520 Intrinsic::call_preallocated_teardown) {
5523 Check(!FoundCall,
"Can have at most one call corresponding to a "
5524 "llvm.call.preallocated.setup");
5526 size_t NumPreallocatedArgs = 0;
5527 for (
unsigned i = 0; i < UseCall->arg_size(); i++) {
5528 if (UseCall->paramHasAttr(i, Attribute::Preallocated)) {
5529 ++NumPreallocatedArgs;
5532 Check(NumPreallocatedArgs != 0,
5533 "cannot use preallocated intrinsics on a call without "
5534 "preallocated arguments");
5535 Check(NumArgs->equalsInt(NumPreallocatedArgs),
5536 "llvm.call.preallocated.setup arg size must be equal to number "
5537 "of preallocated arguments "
5547 auto PreallocatedBundle =
5549 Check(PreallocatedBundle,
5550 "Use of llvm.call.preallocated.setup outside intrinsics "
5551 "must be in \"preallocated\" operand bundle");
5552 Check(PreallocatedBundle->Inputs.front().get() == &Call,
5553 "preallocated bundle must have token from corresponding "
5554 "llvm.call.preallocated.setup");
5559 case Intrinsic::call_preallocated_arg: {
5560 auto *Token = dyn_cast<CallBase>(
Call.getArgOperand(0));
5561 Check(Token && Token->getCalledFunction()->getIntrinsicID() ==
5562 Intrinsic::call_preallocated_setup,
5563 "llvm.call.preallocated.arg token argument must be a "
5564 "llvm.call.preallocated.setup");
5565 Check(
Call.hasFnAttr(Attribute::Preallocated),
5566 "llvm.call.preallocated.arg must be called with a \"preallocated\" "
5567 "call site attribute");
5570 case Intrinsic::call_preallocated_teardown: {
5571 auto *Token = dyn_cast<CallBase>(
Call.getArgOperand(0));
5572 Check(Token && Token->getCalledFunction()->getIntrinsicID() ==
5573 Intrinsic::call_preallocated_setup,
5574 "llvm.call.preallocated.teardown token argument must be a "
5575 "llvm.call.preallocated.setup");
5578 case Intrinsic::gcroot:
5579 case Intrinsic::gcwrite:
5580 case Intrinsic::gcread:
5581 if (
ID == Intrinsic::gcroot) {
5583 dyn_cast<AllocaInst>(
Call.getArgOperand(0)->stripPointerCasts());
5584 Check(AI,
"llvm.gcroot parameter #1 must be an alloca.", Call);
5585 Check(isa<Constant>(
Call.getArgOperand(1)),
5586 "llvm.gcroot parameter #2 must be a constant.", Call);
5588 Check(!isa<ConstantPointerNull>(
Call.getArgOperand(1)),
5589 "llvm.gcroot parameter #1 must either be a pointer alloca, "
5590 "or argument #2 must be a non-null constant.",
5595 Check(
Call.getParent()->getParent()->hasGC(),
5596 "Enclosing function does not use GC.", Call);
5598 case Intrinsic::init_trampoline:
5599 Check(isa<Function>(
Call.getArgOperand(1)->stripPointerCasts()),
5600 "llvm.init_trampoline parameter #2 must resolve to a function.",
5603 case Intrinsic::prefetch:
5604 Check(cast<ConstantInt>(
Call.getArgOperand(1))->getZExtValue() < 2,
5605 "rw argument to llvm.prefetch must be 0-1", Call);
5606 Check(cast<ConstantInt>(
Call.getArgOperand(2))->getZExtValue() < 4,
5607 "locality argument to llvm.prefetch must be 0-3", Call);
5608 Check(cast<ConstantInt>(
Call.getArgOperand(3))->getZExtValue() < 2,
5609 "cache type argument to llvm.prefetch must be 0-1", Call);
5611 case Intrinsic::stackprotector:
5612 Check(isa<AllocaInst>(
Call.getArgOperand(1)->stripPointerCasts()),
5613 "llvm.stackprotector parameter #2 must resolve to an alloca.", Call);
5615 case Intrinsic::localescape: {
5619 Check(!SawFrameEscape,
"multiple calls to llvm.localescape in one function",
5622 if (isa<ConstantPointerNull>(Arg))
5624 auto *AI = dyn_cast<AllocaInst>(Arg->stripPointerCasts());
5626 "llvm.localescape only accepts static allocas", Call);
5629 SawFrameEscape =
true;
5632 case Intrinsic::localrecover: {
5633 Value *FnArg =
Call.getArgOperand(0)->stripPointerCasts();
5634 Function *Fn = dyn_cast<Function>(FnArg);
5636 "llvm.localrecover first "
5637 "argument must be function defined in this module",
5639 auto *IdxArg = cast<ConstantInt>(
Call.getArgOperand(2));
5640 auto &
Entry = FrameEscapeInfo[Fn];
5642 std::max(
uint64_t(
Entry.second), IdxArg->getLimitedValue(~0U) + 1));
5646 case Intrinsic::experimental_gc_statepoint:
5647 if (
auto *CI = dyn_cast<CallInst>(&Call))
5648 Check(!CI->isInlineAsm(),
5649 "gc.statepoint support for inline assembly unimplemented", CI);
5650 Check(
Call.getParent()->getParent()->hasGC(),
5651 "Enclosing function does not use GC.", Call);
5653 verifyStatepoint(Call);
5655 case Intrinsic::experimental_gc_result: {
5656 Check(
Call.getParent()->getParent()->hasGC(),
5657 "Enclosing function does not use GC.", Call);
5659 auto *Statepoint =
Call.getArgOperand(0);
5660 if (isa<UndefValue>(Statepoint))
5664 const auto *StatepointCall = dyn_cast<CallBase>(Statepoint);
5666 StatepointCall ? StatepointCall->getCalledFunction() :
nullptr;
5669 Intrinsic::experimental_gc_statepoint,
5670 "gc.result operand #1 must be from a statepoint", Call,
5671 Call.getArgOperand(0));
5674 auto *TargetFuncType =
5675 cast<FunctionType>(StatepointCall->getParamElementType(2));
5676 Check(
Call.getType() == TargetFuncType->getReturnType(),
5677 "gc.result result type does not match wrapped callee", Call);
5680 case Intrinsic::experimental_gc_relocate: {
5681 Check(
Call.arg_size() == 3,
"wrong number of arguments", Call);
5683 Check(isa<PointerType>(
Call.getType()->getScalarType()),
5684 "gc.relocate must return a pointer or a vector of pointers", Call);
5690 dyn_cast<LandingPadInst>(
Call.getArgOperand(0))) {
5693 LandingPad->
getParent()->getUniquePredecessor();
5697 Check(InvokeBB,
"safepoints should have unique landingpads",
5698 LandingPad->getParent());
5702 "gc relocate should be linked to a statepoint", InvokeBB);
5707 auto *Token =
Call.getArgOperand(0);
5708 Check(isa<GCStatepointInst>(Token) || isa<UndefValue>(Token),
5709 "gc relocate is incorrectly tied to the statepoint", Call, Token);
5713 const Value &StatepointCall = *cast<GCRelocateInst>(Call).getStatepoint();
5718 "gc.relocate operand #2 must be integer offset", Call);
5721 Check(isa<ConstantInt>(Derived),
5722 "gc.relocate operand #3 must be integer offset", Call);
5724 const uint64_t BaseIndex = cast<ConstantInt>(
Base)->getZExtValue();
5725 const uint64_t DerivedIndex = cast<ConstantInt>(Derived)->getZExtValue();
5728 if (isa<UndefValue>(StatepointCall))
5730 if (
auto Opt = cast<GCStatepointInst>(StatepointCall)
5732 Check(BaseIndex < Opt->Inputs.size(),
5733 "gc.relocate: statepoint base index out of bounds", Call);
5734 Check(DerivedIndex < Opt->Inputs.size(),
5735 "gc.relocate: statepoint derived index out of bounds", Call);
5743 auto *ResultType =
Call.getType();
5748 "gc.relocate: relocated value must be a pointer", Call);
5749 Check(DerivedType->isPtrOrPtrVectorTy(),
5750 "gc.relocate: relocated value must be a pointer", Call);
5752 Check(ResultType->isVectorTy() == DerivedType->isVectorTy(),
5753 "gc.relocate: vector relocates to vector and pointer to pointer",
5756 ResultType->getPointerAddressSpace() ==
5757 DerivedType->getPointerAddressSpace(),
5758 "gc.relocate: relocating a pointer shouldn't change its address space",
5762 Check(GC,
"gc.relocate: calling function must have GCStrategy",
5763 Call.getFunction());
5765 auto isGCPtr = [&
GC](
Type *PTy) {
5766 return GC->isGCManagedPointer(PTy->getScalarType()).value_or(
true);
5768 Check(isGCPtr(ResultType),
"gc.relocate: must return gc pointer", Call);
5770 "gc.relocate: relocated value must be a gc pointer", Call);
5771 Check(isGCPtr(DerivedType),
5772 "gc.relocate: relocated value must be a gc pointer", Call);
5776 case Intrinsic::experimental_patchpoint: {
5778 Check(
Call.getType()->isSingleValueType(),
5779 "patchpoint: invalid return type used with anyregcc", Call);
5783 case Intrinsic::eh_exceptioncode:
5784 case Intrinsic::eh_exceptionpointer: {
5785 Check(isa<CatchPadInst>(
Call.getArgOperand(0)),
5786 "eh.exceptionpointer argument must be a catchpad", Call);
5789 case Intrinsic::get_active_lane_mask: {
5791 "get_active_lane_mask: must return a "
5794 auto *ElemTy =
Call.getType()->getScalarType();
5795 Check(ElemTy->isIntegerTy(1),
5796 "get_active_lane_mask: element type is not "
5801 case Intrinsic::experimental_get_vector_length: {
5804 "get_vector_length: VF must be positive", Call);
5807 case Intrinsic::masked_load: {
5808 Check(
Call.getType()->isVectorTy(),
"masked_load: must return a vector",
5813 Value *PassThru =
Call.getArgOperand(3);
5814 Check(
Mask->getType()->isVectorTy(),
"masked_load: mask must be vector",
5817 "masked_load: alignment must be a power of 2", Call);
5819 "masked_load: pass through and return type must match", Call);
5820 Check(cast<VectorType>(
Mask->getType())->getElementCount() ==
5821 cast<VectorType>(
Call.getType())->getElementCount(),
5822 "masked_load: vector mask must be same length as return", Call);
5825 case Intrinsic::masked_store: {
5829 Check(
Mask->getType()->isVectorTy(),
"masked_store: mask must be vector",
5832 "masked_store: alignment must be a power of 2", Call);
5833 Check(cast<VectorType>(
Mask->getType())->getElementCount() ==
5834 cast<VectorType>(Val->
getType())->getElementCount(),
5835 "masked_store: vector mask must be same length as value", Call);
5839 case Intrinsic::masked_gather: {
5840 const APInt &Alignment =
5843 "masked_gather: alignment must be 0 or a power of 2", Call);
5846 case Intrinsic::masked_scatter: {
5847 const APInt &Alignment =
5848 cast<ConstantInt>(
Call.getArgOperand(2))->getValue();
5850 "masked_scatter: alignment must be 0 or a power of 2", Call);
5854 case Intrinsic::experimental_guard: {
5855 Check(isa<CallInst>(Call),
"experimental_guard cannot be invoked", Call);
5857 "experimental_guard must have exactly one "
5858 "\"deopt\" operand bundle");
5862 case Intrinsic::experimental_deoptimize: {
5863 Check(isa<CallInst>(Call),
"experimental_deoptimize cannot be invoked",
5866 "experimental_deoptimize must have exactly one "
5867 "\"deopt\" operand bundle");
5868 Check(
Call.getType() ==
Call.getFunction()->getReturnType(),
5869 "experimental_deoptimize return type must match caller return type");
5871 if (isa<CallInst>(Call)) {
5872 auto *RI = dyn_cast<ReturnInst>(
Call.getNextNode());
5874 "calls to experimental_deoptimize must be followed by a return");
5876 if (!
Call.getType()->isVoidTy() && RI)
5877 Check(RI->getReturnValue() == &Call,
5878 "calls to experimental_deoptimize must be followed by a return "
5879 "of the value computed by experimental_deoptimize");
5884 case Intrinsic::vastart: {
5886 "va_start called in a non-varargs function");
5889 case Intrinsic::vector_reduce_and:
5890 case Intrinsic::vector_reduce_or:
5891 case Intrinsic::vector_reduce_xor:
5892 case Intrinsic::vector_reduce_add:
5893 case Intrinsic::vector_reduce_mul:
5894 case Intrinsic::vector_reduce_smax:
5895 case Intrinsic::vector_reduce_smin:
5896 case Intrinsic::vector_reduce_umax:
5897 case Intrinsic::vector_reduce_umin: {
5898 Type *ArgTy =
Call.getArgOperand(0)->getType();
5900 "Intrinsic has incorrect argument type!");
5903 case Intrinsic::vector_reduce_fmax:
5904 case Intrinsic::vector_reduce_fmin: {
5905 Type *ArgTy =
Call.getArgOperand(0)->getType();
5907 "Intrinsic has incorrect argument type!");
5910 case Intrinsic::vector_reduce_fadd:
5911 case Intrinsic::vector_reduce_fmul: {
5914 Type *ArgTy =
Call.getArgOperand(1)->getType();
5916 "Intrinsic has incorrect argument type!");
5919 case Intrinsic::smul_fix:
5920 case Intrinsic::smul_fix_sat:
5921 case Intrinsic::umul_fix:
5922 case Intrinsic::umul_fix_sat:
5923 case Intrinsic::sdiv_fix:
5924 case Intrinsic::sdiv_fix_sat:
5925 case Intrinsic::udiv_fix:
5926 case Intrinsic::udiv_fix_sat: {
5930 "first operand of [us][mul|div]_fix[_sat] must be an int type or "
5933 "second operand of [us][mul|div]_fix[_sat] must be an int type or "
5936 auto *Op3 = cast<ConstantInt>(
Call.getArgOperand(2));
5937 Check(Op3->getType()->isIntegerTy(),
5938 "third operand of [us][mul|div]_fix[_sat] must be an int type");
5939 Check(Op3->getBitWidth() <= 32,
5940 "third operand of [us][mul|div]_fix[_sat] must fit within 32 bits");
5942 if (
ID == Intrinsic::smul_fix ||
ID == Intrinsic::smul_fix_sat ||
5943 ID == Intrinsic::sdiv_fix ||
ID == Intrinsic::sdiv_fix_sat) {
5945 "the scale of s[mul|div]_fix[_sat] must be less than the width of "
5949 "the scale of u[mul|div]_fix[_sat] must be less than or equal "
5950 "to the width of the operands");
5954 case Intrinsic::lrint:
5955 case Intrinsic::llrint: {
5956 Type *ValTy =
Call.getArgOperand(0)->getType();
5960 "llvm.lrint, llvm.llrint: argument must be floating-point or vector "
5961 "of floating-points, and result must be integer or vector of integers",
5964 "llvm.lrint, llvm.llrint: argument and result disagree on vector use",
5967 Check(cast<VectorType>(ValTy)->getElementCount() ==
5968 cast<VectorType>(ResultTy)->getElementCount(),
5969 "llvm.lrint, llvm.llrint: argument must be same length as result",
5974 case Intrinsic::lround:
5975 case Intrinsic::llround: {
5976 Type *ValTy =
Call.getArgOperand(0)->getType();
5978 auto *VTy = dyn_cast<VectorType>(ValTy);
5979 auto *RTy = dyn_cast<VectorType>(ResultTy);
5982 "llvm.lround, llvm.llround: argument must be floating-point or vector "
5983 "of floating-points, and result must be integer or vector of integers",
5987 "llvm.lround, llvm.llround: argument and result disagree on vector use",
5990 Check(VTy->getElementCount() == RTy->getElementCount(),
5991 "llvm.lround, llvm.llround: argument must be same length as result",
5996 case Intrinsic::bswap: {
5999 Check(
Size % 16 == 0,
"bswap must be an even number of bytes", &Call);
6002 case Intrinsic::invariant_start: {
6003 ConstantInt *InvariantSize = dyn_cast<ConstantInt>(
Call.getArgOperand(0));
6004 Check(InvariantSize &&
6006 "invariant_start parameter must be -1, 0 or a positive number",
6010 case Intrinsic::matrix_multiply:
6011 case Intrinsic::matrix_transpose:
6012 case Intrinsic::matrix_column_major_load:
6013 case Intrinsic::matrix_column_major_store: {
6019 Type *Op0ElemTy =
nullptr;
6020 Type *Op1ElemTy =
nullptr;
6022 case Intrinsic::matrix_multiply: {
6023 NumRows = cast<ConstantInt>(
Call.getArgOperand(2));
6025 NumColumns = cast<ConstantInt>(
Call.getArgOperand(4));
6026 Check(cast<FixedVectorType>(
Call.getArgOperand(0)->getType())
6027 ->getNumElements() ==
6029 "First argument of a matrix operation does not match specified "
6031 Check(cast<FixedVectorType>(
Call.getArgOperand(1)->getType())
6032 ->getNumElements() ==
6034 "Second argument of a matrix operation does not match specified "
6037 ResultTy = cast<VectorType>(
Call.getType());
6039 cast<VectorType>(
Call.getArgOperand(0)->getType())->getElementType();
6041 cast<VectorType>(
Call.getArgOperand(1)->getType())->getElementType();
6044 case Intrinsic::matrix_transpose:
6045 NumRows = cast<ConstantInt>(
Call.getArgOperand(1));
6046 NumColumns = cast<ConstantInt>(
Call.getArgOperand(2));
6047 ResultTy = cast<VectorType>(
Call.getType());
6049 cast<VectorType>(
Call.getArgOperand(0)->getType())->getElementType();
6051 case Intrinsic::matrix_column_major_load: {
6052 Stride = dyn_cast<ConstantInt>(
Call.getArgOperand(1));
6053 NumRows = cast<ConstantInt>(
Call.getArgOperand(3));
6054 NumColumns = cast<ConstantInt>(
Call.getArgOperand(4));
6055 ResultTy = cast<VectorType>(
Call.getType());
6058 case Intrinsic::matrix_column_major_store: {
6059 Stride = dyn_cast<ConstantInt>(
Call.getArgOperand(2));
6060 NumRows = cast<ConstantInt>(
Call.getArgOperand(4));
6061 NumColumns = cast<ConstantInt>(
Call.getArgOperand(5));
6062 ResultTy = cast<VectorType>(
Call.getArgOperand(0)->getType());
6064 cast<VectorType>(
Call.getArgOperand(0)->getType())->getElementType();
6071 Check(ResultTy->getElementType()->isIntegerTy() ||
6072 ResultTy->getElementType()->isFloatingPointTy(),
6073 "Result type must be an integer or floating-point type!", IF);
6076 Check(ResultTy->getElementType() == Op0ElemTy,
6077 "Vector element type mismatch of the result and first operand "
6082 Check(ResultTy->getElementType() == Op1ElemTy,
6083 "Vector element type mismatch of the result and second operand "
6089 "Result of a matrix operation does not fit in the returned vector!");
6093 "Stride must be greater or equal than the number of rows!", IF);
6097 case Intrinsic::vector_splice: {
6099 int64_t
Idx = cast<ConstantInt>(
Call.getArgOperand(2))->getSExtValue();
6100 int64_t KnownMinNumElements = VecTy->getElementCount().getKnownMinValue();
6101 if (
Call.getParent() &&
Call.getParent()->getParent()) {
6103 if (
Attrs.hasFnAttr(Attribute::VScaleRange))
6104 KnownMinNumElements *=
Attrs.getFnAttrs().getVScaleRangeMin();
6106 Check((
Idx < 0 && std::abs(
Idx) <= KnownMinNumElements) ||
6107 (
Idx >= 0 &&
Idx < KnownMinNumElements),
6108 "The splice index exceeds the range [-VL, VL-1] where VL is the "
6109 "known minimum number of elements in the vector. For scalable "
6110 "vectors the minimum number of elements is determined from "
6115 case Intrinsic::experimental_stepvector: {
6117 Check(VecTy && VecTy->getScalarType()->isIntegerTy() &&
6118 VecTy->getScalarSizeInBits() >= 8,
6119 "experimental_stepvector only supported for vectors of integers "
6120 "with a bitwidth of at least 8.",
6124 case Intrinsic::vector_insert: {
6128 unsigned IdxN = cast<ConstantInt>(
Idx)->getZExtValue();
6135 Check(VecTy->getElementType() == SubVecTy->getElementType(),
6136 "vector_insert parameters must have the same element "
6140 "vector_insert index must be a constant multiple of "
6141 "the subvector's known minimum vector length.");
6149 "subvector operand of vector_insert would overrun the "
6150 "vector being inserted into.");
6154 case Intrinsic::vector_extract: {
6157 unsigned IdxN = cast<ConstantInt>(
Idx)->getZExtValue();
6165 Check(ResultTy->getElementType() == VecTy->getElementType(),
6166 "vector_extract result must have the same element "
6167 "type as the input vector.",
6170 "vector_extract index must be a constant multiple of "
6171 "the result type's known minimum vector length.");
6179 "vector_extract would overrun.");
6183 case Intrinsic::experimental_vector_partial_reduce_add: {
6184 VectorType *AccTy = cast<VectorType>(
Call.getArgOperand(0)->getType());
6185 VectorType *VecTy = cast<VectorType>(
Call.getArgOperand(1)->getType());
6187 unsigned VecWidth = VecTy->getElementCount().getKnownMinValue();
6188 unsigned AccWidth = AccTy->getElementCount().getKnownMinValue();
6190 Check((VecWidth % AccWidth) == 0,
6191 "Invalid vector widths for partial "
6192 "reduction. The width of the input vector "
6193 "must be a positive integer multiple of "
6194 "the width of the accumulator vector.");
6197 case Intrinsic::experimental_noalias_scope_decl: {
6198 NoAliasScopeDecls.
push_back(cast<IntrinsicInst>(&Call));
6201 case Intrinsic::preserve_array_access_index:
6202 case Intrinsic::preserve_struct_access_index:
6203 case Intrinsic::aarch64_ldaxr:
6204 case Intrinsic::aarch64_ldxr:
6205 case Intrinsic::arm_ldaex:
6206 case Intrinsic::arm_ldrex: {
6207 Type *ElemTy =
Call.getParamElementType(0);
6208 Check(ElemTy,
"Intrinsic requires elementtype attribute on first argument.",
6212 case Intrinsic::aarch64_stlxr:
6213 case Intrinsic::aarch64_stxr:
6214 case Intrinsic::arm_stlex:
6215 case Intrinsic::arm_strex: {
6216 Type *ElemTy =
Call.getAttributes().getParamElementType(1);
6218 "Intrinsic requires elementtype attribute on second argument.",
6222 case Intrinsic::aarch64_prefetch: {
6223 Check(cast<ConstantInt>(
Call.getArgOperand(1))->getZExtValue() < 2,
6224 "write argument to llvm.aarch64.prefetch must be 0 or 1", Call);
6225 Check(cast<ConstantInt>(
Call.getArgOperand(2))->getZExtValue() < 4,
6226 "target argument to llvm.aarch64.prefetch must be 0-3", Call);
6227 Check(cast<ConstantInt>(
Call.getArgOperand(3))->getZExtValue() < 2,
6228 "stream argument to llvm.aarch64.prefetch must be 0 or 1", Call);
6229 Check(cast<ConstantInt>(
Call.getArgOperand(4))->getZExtValue() < 2,
6230 "isdata argument to llvm.aarch64.prefetch must be 0 or 1", Call);
6233 case Intrinsic::callbr_landingpad: {
6234 const auto *CBR = dyn_cast<CallBrInst>(
Call.getOperand(0));
6235 Check(CBR,
"intrinstic requires callbr operand", &Call);
6242 CheckFailed(
"Intrinsic in block must have 1 unique predecessor", &Call);
6246 CheckFailed(
"Intrinsic must have corresponding callbr in predecessor",
6251 "Intrinsic's corresponding callbr must have intrinsic's parent basic "
6252 "block in indirect destination list",
6255 Check(&
First == &Call,
"No other instructions may proceed intrinsic",
6259 case Intrinsic::amdgcn_cs_chain: {
6260 auto CallerCC =
Call.getCaller()->getCallingConv();
6267 CheckFailed(
"Intrinsic can only be used from functions with the "
6268 "amdgpu_cs, amdgpu_cs_chain or amdgpu_cs_chain_preserve "
6269 "calling conventions",
6274 Check(
Call.paramHasAttr(2, Attribute::InReg),
6275 "SGPR arguments must have the `inreg` attribute", &Call);
6276 Check(!
Call.paramHasAttr(3, Attribute::InReg),
6277 "VGPR arguments must not have the `inreg` attribute", &Call);
6280 case Intrinsic::amdgcn_set_inactive_chain_arg: {
6281 auto CallerCC =
Call.getCaller()->getCallingConv();
6287 CheckFailed(
"Intrinsic can only be used from functions with the "
6288 "amdgpu_cs_chain or amdgpu_cs_chain_preserve "
6289 "calling conventions",
6294 unsigned InactiveIdx = 1;
6295 Check(!
Call.paramHasAttr(InactiveIdx, Attribute::InReg),
6296 "Value for inactive lanes must not have the `inreg` attribute",
6298 Check(isa<Argument>(
Call.getArgOperand(InactiveIdx)),
6299 "Value for inactive lanes must be a function argument", &Call);
6300 Check(!cast<Argument>(
Call.getArgOperand(InactiveIdx))->hasInRegAttr(),
6301 "Value for inactive lanes must be a VGPR function argument", &Call);
6304 case Intrinsic::nvvm_setmaxnreg_inc_sync_aligned_u32:
6305 case Intrinsic::nvvm_setmaxnreg_dec_sync_aligned_u32: {
6307 unsigned RegCount = cast<ConstantInt>(V)->getZExtValue();
6308 Check(RegCount % 8 == 0,
6309 "reg_count argument to nvvm.setmaxnreg must be in multiples of 8");
6310 Check((RegCount >= 24 && RegCount <= 256),
6311 "reg_count argument to nvvm.setmaxnreg must be within [24, 256]");
6314 case Intrinsic::experimental_convergence_entry:
6315 case Intrinsic::experimental_convergence_anchor:
6317 case Intrinsic::experimental_convergence_loop:
6319 case Intrinsic::ptrmask: {
6320 Type *Ty0 =
Call.getArgOperand(0)->getType();
6321 Type *Ty1 =
Call.getArgOperand(1)->getType();
6323 "llvm.ptrmask intrinsic first argument must be pointer or vector "
6328 "llvm.ptrmask intrinsic arguments must be both scalars or both vectors",
6331 Check(cast<VectorType>(Ty0)->getElementCount() ==
6332 cast<VectorType>(Ty1)->getElementCount(),
6333 "llvm.ptrmask intrinsic arguments must have the same number of "
6337 "llvm.ptrmask intrinsic second argument bitwidth must match "
6338 "pointer index type size of first argument",
6342 case Intrinsic::threadlocal_address: {
6343 const Value &Arg0 = *
Call.getArgOperand(0);
6344 Check(isa<GlobalValue>(Arg0),
6345 "llvm.threadlocal.address first argument must be a GlobalValue");
6346 Check(cast<GlobalValue>(Arg0).isThreadLocal(),
6347 "llvm.threadlocal.address operand isThreadLocal() must be true");
6350 case Intrinsic::nvvm_fence_proxy_tensormap_generic_acquire_cta:
6351 case Intrinsic::nvvm_fence_proxy_tensormap_generic_acquire_cluster:
6352 case Intrinsic::nvvm_fence_proxy_tensormap_generic_acquire_gpu:
6353 case Intrinsic::nvvm_fence_proxy_tensormap_generic_acquire_sys: {
6354 unsigned size = cast<ConstantInt>(
Call.getArgOperand(1))->getZExtValue();
6355 Check(size == 128,
" The only supported value for size operand is 128");
6363 if (
F->hasPersonalityFn() &&
6367 if (BlockEHFuncletColors.
empty())
6371 bool InEHFunclet =
false;
6376 if (dyn_cast_or_null<FuncletPadInst>(ColorFirstBB->getFirstNonPHI()))
6380 bool HasToken =
false;
6381 for (
unsigned I = 0, E =
Call.getNumOperandBundles();
I != E; ++
I)
6387 Check(HasToken,
"Missing funclet token on intrinsic call", &Call);
6400 if (
auto *SP = dyn_cast<DISubprogram>(LocalScope))
6403 if (
auto *LB = dyn_cast<DILexicalBlockBase>(LocalScope))
6407 assert(!isa<DILocalScope>(LocalScope) &&
"Unknown type of local scope");
6413 "invalid #dbg_label intrinsic variable", &DLR, DLR.
getRawLabel());
6417 if (!isa<DILocation>(
N))
6426 CheckDI(Loc,
"#dbg_label record requires a !dbg attachment", &DLR, BB,
F);
6430 if (!LabelSP || !LocSP)
6434 "mismatched subprogram between #dbg_label label and !dbg attachment",
6435 &DLR, BB,
F, Label,
Label->getScope()->getSubprogram(), Loc,
6436 Loc->getScope()->getSubprogram());
6446 "invalid #dbg record type", &DVR, DVR.
getType());
6452 CheckDI(MD && (isa<ValueAsMetadata>(MD) || isa<DIArgList>(MD) ||
6453 (isa<MDNode>(MD) && !cast<MDNode>(MD)->getNumOperands())),
6454 "invalid #dbg record address/value", &DVR, MD);
6455 if (
auto *VAM = dyn_cast<ValueAsMetadata>(MD))
6456 visitValueAsMetadata(*VAM,
F);
6457 else if (
auto *AL = dyn_cast<DIArgList>(MD))
6458 visitDIArgList(*AL,
F);
6472 AreDebugLocsAllowed::No);
6479 isa<ValueAsMetadata>(RawAddr) ||
6480 (isa<MDNode>(RawAddr) && !cast<MDNode>(RawAddr)->getNumOperands()),
6482 if (
auto *VAM = dyn_cast<ValueAsMetadata>(RawAddr))
6483 visitValueAsMetadata(*VAM,
F);
6486 "invalid #dbg_assign address expression", &DVR,
6493 "inst not in same function as #dbg_assign",
I, &DVR);
6502 CheckDI(isa_and_nonnull<DILocation>(DLNode),
"invalid #dbg record DILocation",
6509 if (!VarSP || !LocSP)
6513 "mismatched subprogram between #dbg record variable and DILocation",
6515 Loc->getScope()->getSubprogram());
6520void Verifier::visitVPIntrinsic(
VPIntrinsic &VPI) {
6521 if (
auto *VPCast = dyn_cast<VPCastIntrinsic>(&VPI)) {
6522 auto *
RetTy = cast<VectorType>(VPCast->getType());
6523 auto *ValTy = cast<VectorType>(VPCast->getOperand(0)->getType());
6524 Check(
RetTy->getElementCount() == ValTy->getElementCount(),
6525 "VP cast intrinsic first argument and result vector lengths must be "
6529 switch (VPCast->getIntrinsicID()) {
6532 case Intrinsic::vp_trunc:
6534 "llvm.vp.trunc intrinsic first argument and result element type "
6538 "llvm.vp.trunc intrinsic the bit size of first argument must be "
6539 "larger than the bit size of the return type",
6542 case Intrinsic::vp_zext:
6543 case Intrinsic::vp_sext:
6545 "llvm.vp.zext or llvm.vp.sext intrinsic first argument and result "
6546 "element type must be integer",
6549 "llvm.vp.zext or llvm.vp.sext intrinsic the bit size of first "
6550 "argument must be smaller than the bit size of the return type",
6553 case Intrinsic::vp_fptoui:
6554 case Intrinsic::vp_fptosi:
6555 case Intrinsic::vp_lrint:
6556 case Intrinsic::vp_llrint:
6559 "llvm.vp.fptoui, llvm.vp.fptosi, llvm.vp.lrint or llvm.vp.llrint" "intrinsic first argument element "
6560 "type must be floating-point and result element type must be integer",
6563 case Intrinsic::vp_uitofp:
6564 case Intrinsic::vp_sitofp:
6567 "llvm.vp.uitofp or llvm.vp.sitofp intrinsic first argument element "
6568 "type must be integer and result element type must be floating-point",
6571 case Intrinsic::vp_fptrunc:
6573 "llvm.vp.fptrunc intrinsic first argument and result element type "
6574 "must be floating-point",
6577 "llvm.vp.fptrunc intrinsic the bit size of first argument must be "
6578 "larger than the bit size of the return type",
6581 case Intrinsic::vp_fpext:
6583 "llvm.vp.fpext intrinsic first argument and result element type "
6584 "must be floating-point",
6587 "llvm.vp.fpext intrinsic the bit size of first argument must be "
6588 "smaller than the bit size of the return type",
6591 case Intrinsic::vp_ptrtoint:
6593 "llvm.vp.ptrtoint intrinsic first argument element type must be "
6594 "pointer and result element type must be integer",
6597 case Intrinsic::vp_inttoptr:
6599 "llvm.vp.inttoptr intrinsic first argument element type must be "
6600 "integer and result element type must be pointer",
6606 auto Pred = cast<VPCmpIntrinsic>(&VPI)->getPredicate();
6608 "invalid predicate for VP FP comparison intrinsic", &VPI);
6611 auto Pred = cast<VPCmpIntrinsic>(&VPI)->getPredicate();
6613 "invalid predicate for VP integer comparison intrinsic", &VPI);
6616 auto TestMask = cast<ConstantInt>(VPI.
getOperand(1));
6618 "unsupported bits for llvm.vp.is.fpclass test mask");
6624 bool HasRoundingMD =
6628 NumOperands += (1 + HasRoundingMD);
6631 if (isa<ConstrainedFPCmpIntrinsic>(FPI))
6634 "invalid arguments for constrained FP intrinsic", &FPI);
6637 case Intrinsic::experimental_constrained_lrint:
6638 case Intrinsic::experimental_constrained_llrint: {
6642 "Intrinsic does not support vectors", &FPI);
6646 case Intrinsic::experimental_constrained_lround:
6647 case Intrinsic::experimental_constrained_llround: {
6651 "Intrinsic does not support vectors", &FPI);
6655 case Intrinsic::experimental_constrained_fcmp:
6656 case Intrinsic::experimental_constrained_fcmps: {
6657 auto Pred = cast<ConstrainedFPCmpIntrinsic>(&FPI)->getPredicate();
6659 "invalid predicate for constrained FP comparison intrinsic", &FPI);
6663 case Intrinsic::experimental_constrained_fptosi:
6664 case Intrinsic::experimental_constrained_fptoui: {
6668 "Intrinsic first argument must be floating point", &FPI);
6669 if (
auto *OperandT = dyn_cast<VectorType>(Operand->
getType())) {
6670 SrcEC = cast<VectorType>(OperandT)->getElementCount();
6675 "Intrinsic first argument and result disagree on vector use", &FPI);
6677 "Intrinsic result must be an integer", &FPI);
6678 if (
auto *OperandT = dyn_cast<VectorType>(Operand->
getType())) {
6679 Check(SrcEC == cast<VectorType>(OperandT)->getElementCount(),
6680 "Intrinsic first argument and result vector lengths must be equal",
6686 case Intrinsic::experimental_constrained_sitofp:
6687 case Intrinsic::experimental_constrained_uitofp: {
6691 "Intrinsic first argument must be integer", &FPI);
6692 if (
auto *OperandT = dyn_cast<VectorType>(Operand->
getType())) {
6693 SrcEC = cast<VectorType>(OperandT)->getElementCount();
6698 "Intrinsic first argument and result disagree on vector use", &FPI);
6700 "Intrinsic result must be a floating point", &FPI);
6701 if (
auto *OperandT = dyn_cast<VectorType>(Operand->
getType())) {
6702 Check(SrcEC == cast<VectorType>(OperandT)->getElementCount(),
6703 "Intrinsic first argument and result vector lengths must be equal",
6709 case Intrinsic::experimental_constrained_fptrunc:
6710 case Intrinsic::experimental_constrained_fpext: {
6716 "Intrinsic first argument must be FP or FP vector", &FPI);
6718 "Intrinsic result must be FP or FP vector", &FPI);
6720 "Intrinsic first argument and result disagree on vector use", &FPI);
6722 Check(cast<VectorType>(OperandTy)->getElementCount() ==
6723 cast<VectorType>(ResultTy)->getElementCount(),
6724 "Intrinsic first argument and result vector lengths must be equal",
6727 if (FPI.
getIntrinsicID() == Intrinsic::experimental_constrained_fptrunc) {
6729 "Intrinsic first argument's type must be larger than result type",
6733 "Intrinsic first argument's type must be smaller than result type",
6749 "invalid exception behavior argument", &FPI);
6750 if (HasRoundingMD) {
6758 CheckDI(isa<ValueAsMetadata>(MD) || isa<DIArgList>(MD) ||
6759 (isa<MDNode>(MD) && !cast<MDNode>(MD)->getNumOperands()),
6760 "invalid llvm.dbg." + Kind +
" intrinsic address/value", &DII, MD);
6762 "invalid llvm.dbg." + Kind +
" intrinsic variable", &DII,
6765 "invalid llvm.dbg." + Kind +
" intrinsic expression", &DII,
6768 if (
auto *DAI = dyn_cast<DbgAssignIntrinsic>(&DII)) {
6769 CheckDI(isa<DIAssignID>(DAI->getRawAssignID()),
6770 "invalid llvm.dbg.assign intrinsic DIAssignID", &DII,
6771 DAI->getRawAssignID());
6772 const auto *RawAddr = DAI->getRawAddress();
6774 isa<ValueAsMetadata>(RawAddr) ||
6775 (isa<MDNode>(RawAddr) && !cast<MDNode>(RawAddr)->getNumOperands()),
6776 "invalid llvm.dbg.assign intrinsic address", &DII,
6777 DAI->getRawAddress());
6778 CheckDI(isa<DIExpression>(DAI->getRawAddressExpression()),
6779 "invalid llvm.dbg.assign intrinsic address expression", &DII,
6780 DAI->getRawAddressExpression());
6783 CheckDI(DAI->getFunction() ==
I->getFunction(),
6784 "inst not in same function as dbg.assign",
I, DAI);
6789 if (!isa<DILocation>(
N))
6798 CheckDI(Loc,
"llvm.dbg." + Kind +
" intrinsic requires a !dbg attachment",
6803 if (!VarSP || !LocSP)
6807 "mismatched subprogram between llvm.dbg." + Kind +
6808 " variable and !dbg attachment",
6810 Loc->getScope()->getSubprogram());
6820 "invalid llvm.dbg." + Kind +
" intrinsic variable", &DLI,
6825 if (!isa<DILocation>(
N))
6834 Check(Loc,
"llvm.dbg." + Kind +
" intrinsic requires a !dbg attachment", &DLI,
6839 if (!LabelSP || !LocSP)
6843 "mismatched subprogram between llvm.dbg." + Kind +
6844 " label and !dbg attachment",
6845 &DLI, BB,
F, Label,
Label->getScope()->getSubprogram(), Loc,
6846 Loc->getScope()->getSubprogram());
6851 DIExpression *E = dyn_cast_or_null<DIExpression>(
I.getRawExpression());
6854 if (!V || !E || !E->
isValid())
6868 if (
V->isArtificial())
6871 verifyFragmentExpression(*V, *Fragment, &
I);
6878 if (!V || !E || !E->
isValid())
6892 if (
V->isArtificial())
6895 verifyFragmentExpression(*V, *Fragment, &DVR);
6898template <
typename ValueOrMetadata>
6899void Verifier::verifyFragmentExpression(
const DIVariable &V,
6901 ValueOrMetadata *
Desc) {
6904 auto VarSize =
V.getSizeInBits();
6910 CheckDI(FragSize + FragOffset <= *VarSize,
6911 "fragment is larger than or outside of variable",
Desc, &V);
6912 CheckDI(FragSize != *VarSize,
"fragment covers entire variable",
Desc, &V);
6923 if (
I.getDebugLoc()->getInlinedAt())
6927 CheckDI(Var,
"dbg intrinsic without variable");
6929 unsigned ArgNo = Var->
getArg();
6935 if (DebugFnArgs.
size() < ArgNo)
6936 DebugFnArgs.
resize(ArgNo,
nullptr);
6938 auto *Prev = DebugFnArgs[ArgNo - 1];
6939 DebugFnArgs[ArgNo - 1] = Var;
6940 CheckDI(!Prev || (Prev == Var),
"conflicting debug info for argument", &
I,
6955 CheckDI(Var,
"#dbg record without variable");
6957 unsigned ArgNo = Var->
getArg();
6963 if (DebugFnArgs.
size() < ArgNo)
6964 DebugFnArgs.
resize(ArgNo,
nullptr);
6966 auto *Prev = DebugFnArgs[ArgNo - 1];
6967 DebugFnArgs[ArgNo - 1] = Var;
6968 CheckDI(!Prev || (Prev == Var),
"conflicting debug info for argument", &DVR,
6973 DIExpression *E = dyn_cast_or_null<DIExpression>(
I.getRawExpression());
6979 if (isa<ValueAsMetadata>(
I.getRawLocation())) {
6980 Value *VarValue =
I.getVariableLocationOp(0);
6981 if (isa<UndefValue>(VarValue) || isa<PoisonValue>(VarValue))
6985 if (
auto *ArgLoc = dyn_cast_or_null<Argument>(VarValue);
6986 ArgLoc && ArgLoc->hasAttribute(Attribute::SwiftAsync))
6991 "Entry values are only allowed in MIR unless they target a "
6992 "swiftasync Argument",
7004 if (isa<UndefValue>(VarValue) || isa<PoisonValue>(VarValue))
7008 if (
auto *ArgLoc = dyn_cast_or_null<Argument>(VarValue);
7009 ArgLoc && ArgLoc->hasAttribute(Attribute::SwiftAsync))
7014 "Entry values are only allowed in MIR unless they target a "
7015 "swiftasync Argument",
7019void Verifier::verifyCompileUnits() {
7023 if (
M.getContext().isODRUniquingDebugTypes())
7025 auto *CUs =
M.getNamedMetadata(
"llvm.dbg.cu");
7028 Listed.
insert(CUs->op_begin(), CUs->op_end());
7029 for (
const auto *
CU : CUVisited)
7034void Verifier::verifyDeoptimizeCallingConvs() {
7035 if (DeoptimizeDeclarations.
empty())
7039 for (
const auto *
F :
ArrayRef(DeoptimizeDeclarations).slice(1)) {
7040 Check(
First->getCallingConv() ==
F->getCallingConv(),
7041 "All llvm.experimental.deoptimize declarations must have the same "
7042 "calling convention",
7047void Verifier::verifyAttachedCallBundle(
const CallBase &Call,
7051 Check((FTy->getReturnType()->isPointerTy() ||
7052 (
Call.doesNotReturn() && FTy->getReturnType()->isVoidTy())),
7053 "a call with operand bundle \"clang.arc.attachedcall\" must call a "
7054 "function returning a pointer or a non-returning function that has a "
7059 "operand bundle \"clang.arc.attachedcall\" requires one function as "
7063 auto *Fn = cast<Function>(BU.
Inputs.front());
7067 Check((IID == Intrinsic::objc_retainAutoreleasedReturnValue ||
7068 IID == Intrinsic::objc_unsafeClaimAutoreleasedReturnValue),
7069 "invalid function argument", Call);
7072 Check((FnName ==
"objc_retainAutoreleasedReturnValue" ||
7073 FnName ==
"objc_unsafeClaimAutoreleasedReturnValue"),
7074 "invalid function argument", Call);
7078void Verifier::verifyNoAliasScopeDecl() {
7079 if (NoAliasScopeDecls.
empty())
7083 for (
auto *
II : NoAliasScopeDecls) {
7084 assert(
II->getIntrinsicID() == Intrinsic::experimental_noalias_scope_decl &&
7085 "Not a llvm.experimental.noalias.scope.decl ?");
7086 const auto *ScopeListMV = dyn_cast<MetadataAsValue>(
7088 Check(ScopeListMV !=
nullptr,
7089 "llvm.experimental.noalias.scope.decl must have a MetadataAsValue "
7093 const auto *ScopeListMD = dyn_cast<MDNode>(ScopeListMV->getMetadata());
7094 Check(ScopeListMD !=
nullptr,
"!id.scope.list must point to an MDNode",
II);
7095 Check(ScopeListMD->getNumOperands() == 1,
7096 "!id.scope.list must point to a list with a single scope",
II);
7097 visitAliasScopeListMetadata(ScopeListMD);
7108 const auto *ScopeListMV = cast<MetadataAsValue>(
7110 return &cast<MDNode>(ScopeListMV->getMetadata())->getOperand(0);
7116 return GetScope(Lhs) < GetScope(Rhs);
7123 auto ItCurrent = NoAliasScopeDecls.begin();
7124 while (ItCurrent != NoAliasScopeDecls.end()) {
7125 auto CurScope = GetScope(*ItCurrent);
7126 auto ItNext = ItCurrent;
7129 }
while (ItNext != NoAliasScopeDecls.end() &&
7130 GetScope(*ItNext) == CurScope);
7135 if (ItNext - ItCurrent < 32)
7139 Check(!DT.dominates(
I, J),
7140 "llvm.experimental.noalias.scope.decl dominates another one "
7141 "with the same scope",
7159 return !V.verify(
F);
7163 bool *BrokenDebugInfo) {
7167 bool Broken =
false;
7169 Broken |= !V.verify(
F);
7171 Broken |= !V.verify();
7172 if (BrokenDebugInfo)
7173 *BrokenDebugInfo = V.hasBrokenDebugInfo();
7184 std::unique_ptr<Verifier> V;
7185 bool FatalErrors =
true;
7190 explicit VerifierLegacyPass(
bool FatalErrors)
7192 FatalErrors(FatalErrors) {
7196 bool doInitialization(
Module &M)
override {
7197 V = std::make_unique<Verifier>(
7203 if (!
V->verify(
F) && FatalErrors) {
7204 errs() <<
"in function " <<
F.getName() <<
'\n';
7210 bool doFinalization(
Module &M)
override {
7211 bool HasErrors =
false;
7213 if (
F.isDeclaration())
7214 HasErrors |= !
V->verify(
F);
7216 HasErrors |= !
V->verify();
7217 if (FatalErrors && (HasErrors ||
V->hasBrokenDebugInfo()))
7230template <
typename... Tys>
void TBAAVerifier::CheckFailed(Tys &&... Args) {
7235#define CheckTBAA(C, ...) \
7238 CheckFailed(__VA_ARGS__); \
7246TBAAVerifier::TBAABaseNodeSummary
7250 CheckFailed(
"Base nodes must have at least two operands", &
I, BaseNode);
7254 auto Itr = TBAABaseNodes.find(BaseNode);
7255 if (Itr != TBAABaseNodes.end())
7258 auto Result = verifyTBAABaseNodeImpl(
I, BaseNode, IsNewFormat);
7259 auto InsertResult = TBAABaseNodes.insert({BaseNode, Result});
7261 assert(InsertResult.second &&
"We just checked!");
7265TBAAVerifier::TBAABaseNodeSummary
7268 const TBAAVerifier::TBAABaseNodeSummary InvalidNode = {
true, ~0
u};
7272 return isValidScalarTBAANode(BaseNode)
7273 ? TBAAVerifier::TBAABaseNodeSummary({
false, 0})
7279 CheckFailed(
"Access tag nodes must have the number of operands that is a "
7280 "multiple of 3!", BaseNode);
7285 CheckFailed(
"Struct tag nodes must have an odd number of operands!",
7293 auto *TypeSizeNode = mdconst::dyn_extract_or_null<ConstantInt>(
7295 if (!TypeSizeNode) {
7296 CheckFailed(
"Type size nodes must be constants!", &
I, BaseNode);
7302 if (!IsNewFormat && !isa<MDString>(BaseNode->
getOperand(0))) {
7303 CheckFailed(
"Struct tag nodes have a string as their first operand",
7310 std::optional<APInt> PrevOffset;
7315 unsigned FirstFieldOpNo = IsNewFormat ? 3 : 1;
7316 unsigned NumOpsPerField = IsNewFormat ? 3 : 2;
7318 Idx += NumOpsPerField) {
7321 if (!isa<MDNode>(FieldTy)) {
7322 CheckFailed(
"Incorrect field entry in struct type node!", &
I, BaseNode);
7327 auto *OffsetEntryCI =
7328 mdconst::dyn_extract_or_null<ConstantInt>(FieldOffset);
7329 if (!OffsetEntryCI) {
7330 CheckFailed(
"Offset entries must be constants!", &
I, BaseNode);
7336 BitWidth = OffsetEntryCI->getBitWidth();
7338 if (OffsetEntryCI->getBitWidth() !=
BitWidth) {
7340 "Bitwidth between the offsets and struct type entries must match", &
I,
7352 !PrevOffset || PrevOffset->ule(OffsetEntryCI->getValue());
7355 CheckFailed(
"Offsets must be increasing!", &
I, BaseNode);
7359 PrevOffset = OffsetEntryCI->getValue();
7362 auto *MemberSizeNode = mdconst::dyn_extract_or_null<ConstantInt>(
7364 if (!MemberSizeNode) {
7365 CheckFailed(
"Member size entries must be constants!", &
I, BaseNode);
7372 return Failed ? InvalidNode
7373 : TBAAVerifier::TBAABaseNodeSummary(
false,
BitWidth);
7394 auto *Parent = dyn_cast_or_null<MDNode>(MD->
getOperand(1));
7395 return Parent && Visited.
insert(Parent).second &&
7399bool TBAAVerifier::isValidScalarTBAANode(
const MDNode *MD) {
7400 auto ResultIt = TBAAScalarNodes.find(MD);
7401 if (ResultIt != TBAAScalarNodes.end())
7402 return ResultIt->second;
7406 auto InsertResult = TBAAScalarNodes.insert({MD,
Result});
7408 assert(InsertResult.second &&
"Just checked!");
7427 return cast<MDNode>(BaseNode->
getOperand(1));
7429 unsigned FirstFieldOpNo = IsNewFormat ? 3 : 1;
7430 unsigned NumOpsPerField = IsNewFormat ? 3 : 2;
7432 Idx += NumOpsPerField) {
7433 auto *OffsetEntryCI =
7434 mdconst::extract<ConstantInt>(BaseNode->
getOperand(
Idx + 1));
7435 if (OffsetEntryCI->getValue().ugt(
Offset)) {
7436 if (
Idx == FirstFieldOpNo) {
7437 CheckFailed(
"Could not find TBAA parent in struct type node", &
I,
7442 unsigned PrevIdx =
Idx - NumOpsPerField;
7443 auto *PrevOffsetEntryCI =
7444 mdconst::extract<ConstantInt>(BaseNode->
getOperand(PrevIdx + 1));
7445 Offset -= PrevOffsetEntryCI->getValue();
7446 return cast<MDNode>(BaseNode->
getOperand(PrevIdx));
7451 auto *LastOffsetEntryCI = mdconst::extract<ConstantInt>(
7453 Offset -= LastOffsetEntryCI->getValue();
7454 return cast<MDNode>(BaseNode->
getOperand(LastIdx));
7458 if (!
Type ||
Type->getNumOperands() < 3)
7463 return isa_and_nonnull<MDNode>(
Type->getOperand(0));
7470 CheckTBAA(isa<LoadInst>(
I) || isa<StoreInst>(
I) || isa<CallInst>(
I) ||
7471 isa<VAArgInst>(
I) || isa<AtomicRMWInst>(
I) ||
7472 isa<AtomicCmpXchgInst>(
I),
7473 "This instruction shall not have a TBAA access tag!", &
I);
7475 bool IsStructPathTBAA =
7479 "Old-style TBAA is no longer allowed, use struct-path TBAA instead",
7489 "Access tag metadata must have either 4 or 5 operands", &
I, MD);
7492 "Struct tag metadata must have either 3 or 4 operands", &
I, MD);
7497 auto *AccessSizeNode = mdconst::dyn_extract_or_null<ConstantInt>(
7499 CheckTBAA(AccessSizeNode,
"Access size field must be a constant", &
I, MD);
7503 unsigned ImmutabilityFlagOpNo = IsNewFormat ? 4 : 3;
7505 auto *IsImmutableCI = mdconst::dyn_extract_or_null<ConstantInt>(
7508 "Immutability tag on struct tag metadata must be a constant", &
I,
7511 IsImmutableCI->isZero() || IsImmutableCI->isOne(),
7512 "Immutability part of the struct tag metadata must be either 0 or 1",
7517 "Malformed struct tag metadata: base and access-type "
7518 "should be non-null and point to Metadata nodes",
7519 &
I, MD, BaseNode, AccessType);
7522 CheckTBAA(isValidScalarTBAANode(AccessType),
7523 "Access type node must be a valid scalar type", &
I, MD,
7527 auto *OffsetCI = mdconst::dyn_extract_or_null<ConstantInt>(MD->
getOperand(2));
7528 CheckTBAA(OffsetCI,
"Offset must be constant integer", &
I, MD);
7531 bool SeenAccessTypeInPath =
false;
7536 BaseNode = getFieldNodeFromTBAABaseNode(
I, BaseNode,
Offset,
7538 if (!StructPath.
insert(BaseNode).second) {
7539 CheckFailed(
"Cycle detected in struct path", &
I, MD);
7544 unsigned BaseNodeBitWidth;
7545 std::tie(
Invalid, BaseNodeBitWidth) = verifyTBAABaseNode(
I, BaseNode,
7553 SeenAccessTypeInPath |= BaseNode == AccessType;
7555 if (isValidScalarTBAANode(BaseNode) || BaseNode == AccessType)
7556 CheckTBAA(
Offset == 0,
"Offset not zero at the point of scalar access",
7560 (BaseNodeBitWidth == 0 &&
Offset == 0) ||
7561 (IsNewFormat && BaseNodeBitWidth == ~0u),
7562 "Access bit-width not the same as description bit-width", &
I, MD,
7563 BaseNodeBitWidth,
Offset.getBitWidth());
7565 if (IsNewFormat && SeenAccessTypeInPath)
7569 CheckTBAA(SeenAccessTypeInPath,
"Did not see access type in access path!", &
I,
7574char VerifierLegacyPass::ID = 0;
7575INITIALIZE_PASS(VerifierLegacyPass,
"verify",
"Module Verifier",
false,
false)
7578 return new VerifierLegacyPass(FatalErrors);
7596 if (FatalErrors && (Res.IRBroken || Res.DebugInfoBroken))
7604 if (res.IRBroken && FatalErrors)
This file defines the StringMap class.
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< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
Analysis containing CSE Info
This file contains the declarations for the subclasses of Constant, which represent the different fla...
This file declares the LLVM IR specialization of the GenericConvergenceVerifier template.
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
This file defines the DenseMap class.
This file contains constants used for implementing Dwarf debug support.
static bool runOnFunction(Function &F, bool PostInlining)
This file provides various utilities for inspecting and working with the control flow graph in LLVM I...
This defines the Use class.
This file implements a map that provides insertion order iteration.
This file provides utility for Memory Model Relaxation Annotations (MMRAs).
Module.h This file contains the declarations for the Module class.
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
uint64_t IntrinsicInst * II
This header defines various interfaces for pass management in LLVM.
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
This file builds on the ADT/GraphTraits.h file to build a generic graph post order iterator.
This file contains the declarations for profiling metadata utility functions.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
static unsigned getNumElements(Type *Ty)
verify safepoint Safepoint IR Verifier
This file defines the SmallPtrSet class.
This file defines the SmallSet 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)
#define Check(C,...)
We know that cond should be true, if not print an error message.
static bool isNewFormatTBAATypeNode(llvm::MDNode *Type)
#define CheckDI(C,...)
We know that a debug info condition should be true, if not print an error message.
static void forEachUser(const Value *User, SmallPtrSet< const Value *, 32 > &Visited, llvm::function_ref< bool(const Value *)> Callback)
static bool isDINode(const Metadata *MD)
static bool isScope(const Metadata *MD)
static cl::opt< bool > VerifyNoAliasScopeDomination("verify-noalias-scope-decl-dom", cl::Hidden, cl::init(false), cl::desc("Ensure that llvm.experimental.noalias.scope.decl for identical " "scopes are not dominating"))
static DISubprogram * getSubprogram(Metadata *LocalScope)
Carefully grab the subprogram from a local scope.
static bool isTypeCongruent(Type *L, Type *R)
Two types are "congruent" if they are identical, or if they are both pointer types with different poi...
static bool IsRootTBAANode(const MDNode *MD)
static bool isContiguous(const ConstantRange &A, const ConstantRange &B)
static Value * getParentPad(Value *EHPad)
static bool hasConflictingReferenceFlags(unsigned Flags)
Detect mutually exclusive flags.
static AttrBuilder getParameterABIAttributes(LLVMContext &C, unsigned I, AttributeList Attrs)
bool isFiniteNonZero() const
const fltSemantics & getSemantics() const
Class for arbitrary precision integers.
bool sgt(const APInt &RHS) const
Signed greater than comparison.
bool isZero() const
Determine if this value is zero, i.e. all bits are clear.
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.
an instruction to allocate memory on the stack
bool isSwiftError() const
Return true if this alloca is used as a swifterror argument to a call.
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.
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.
A container for analyses that lazily runs them and caches their results.
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
Represent the analysis usage information of a pass.
void setPreservesAll()
Set by analyses that do not transform their input at all.
This class represents an incoming formal argument to a Function.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
bool empty() const
empty - Check if the array is empty.
An instruction that atomically checks whether a specified value is in a memory location,...
an instruction that atomically reads a memory location, combines it with another value,...
static bool isFPOperation(BinOp Op)
BinOp getOperation() const
static 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.
bool hasAttribute(Attribute::AttrKind Kind) const
Return true if the attribute exists in this set.
std::string getAsString(bool InAttrGrp=false) const
static Attribute::AttrKind getAttrKindFromName(StringRef AttrName)
static bool canUseAsRetAttr(AttrKind Kind)
static bool isExistingAttribute(StringRef Name)
Return true if the provided string matches the IR name of an attribute.
static bool canUseAsFnAttr(AttrKind Kind)
AttrKind
This enumeration lists the attributes that can be associated with parameters, function results,...
@ None
No attributes have been set.
static bool isIntAttrKind(AttrKind Kind)
static bool canUseAsParamAttr(AttrKind Kind)
bool isValid() const
Return true if the attribute is any kind of attribute.
LLVM Basic Block Representation.
iterator begin()
Instruction iterator methods.
iterator_range< const_phi_iterator > phis() const
Returns a range that iterates over the phis in the basic block.
const Instruction * getFirstNonPHI() const
Returns a pointer to the first instruction in this block that is not a PHINode instruction.
const Instruction & front() const
bool isEntryBlock() const
Return true if this is the entry block of the containing function.
const BasicBlock * getUniquePredecessor() const
Return the predecessor of this block if it has a unique predecessor block.
const Function * getParent() const
Return the enclosing method, or null if none.
InstListType::iterator iterator
Instruction iterators...
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction if the block is well formed or null if the block is not well forme...
This class represents a no-op cast from one type to another.
static BlockAddress * lookup(const BasicBlock *BB)
Lookup an existing BlockAddress constant for the given BasicBlock.
Conditional or Unconditional Branch instruction.
bool isConditional() const
Value * getCondition() const
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
bool isInlineAsm() const
Check if this call is an inline asm statement.
Function * getCalledFunction() const
Returns the function called, or null if this is an indirect function invocation or the function signa...
CallingConv::ID getCallingConv() const
Value * getCalledOperand() const
Value * getArgOperand(unsigned i) const
FunctionType * getFunctionType() const
unsigned arg_size() const
AttributeList getAttributes() const
Return the parameter attributes for this call.
CallBr instruction, tracking function calls that may not return control but instead transfer it to a ...
This class represents a function call, abstracting a target machine's calling convention.
bool isMustTailCall() const
static bool castIsValid(Instruction::CastOps op, Type *SrcTy, Type *DstTy)
This method can be used to determine if a cast from SrcTy to DstTy using Opcode op is valid or not.
unsigned getNumHandlers() const
return the number of 'handlers' in this catchswitch instruction, except the default handler
Value * getParentPad() const
BasicBlock * getUnwindDest() const
handler_range handlers()
iteration adapter for range-for loops.
BasicBlock * getUnwindDest() const
bool isFPPredicate() const
bool isIntPredicate() const
static bool isIntPredicate(Predicate P)
ConstantArray - Constant Array Declarations.
A constant value that is initialized with an expression using other constant values.
ConstantFP - Floating Point Values [float, double].
This is the shared class of boolean and integer constants.
bool isMinusOne() const
This function will return true iff every bit in this constant is set to true.
bool isZero() const
This is just a convenience method to make client code smaller for a common code.
unsigned getBitWidth() const
getBitWidth - Return the scalar bitwidth of this constant.
uint64_t getZExtValue() const
Return the constant as a 64-bit unsigned integer value after it has been zero extended as appropriate...
const APInt & getValue() const
Return the constant as an APInt value reference.
A signed pointer, in the ptrauth sense.
Constant * getAddrDiscriminator() const
The address discriminator if any, or the null constant.
Constant * getPointer() const
The pointer that is signed in this ptrauth signed pointer.
ConstantInt * getKey() const
The Key ID, an i32 constant.
ConstantInt * getDiscriminator() const
The integer discriminator, an i64 constant, or 0.
static bool isOrderedRanges(ArrayRef< ConstantRange > RangesRef)
This class represents a range of values.
uint32_t getBitWidth() const
Get the bit width of this ConstantRange.
static ConstantTokenNone * get(LLVMContext &Context)
Return the ConstantTokenNone.
This is an important base class in LLVM.
bool isNullValue() const
Return true if this is the value that would be returned by getNullValue.
This is the common base class for constrained floating point intrinsics.
std::optional< fp::ExceptionBehavior > getExceptionBehavior() const
std::optional< RoundingMode > getRoundingMode() const
unsigned getNonMetadataArgCount() const
List of ValueAsMetadata, to be used as an argument to a dbg.value intrinsic.
Basic type, like 'int' or 'float'.
bool isEntryValue() const
Check if the expression consists of exactly one entry value operand.
static std::optional< FragmentInfo > getFragmentInfo(expr_op_iterator Start, expr_op_iterator End)
Retrieve the details of this fragment expression.
A pair of DIGlobalVariable and DIExpression.
DIGlobalVariable * getVariable() const
DIExpression * getExpression() const
An imported module (C++ using directive or similar).
DISubprogram * getSubprogram() const
Get the subprogram for this scope.
DILocalScope * getScope() const
Get the local scope for this variable.
Metadata * getRawScope() const
Represents a module in the programming language, for example, a Clang module, or a Fortran module.
Base class for scope-like contexts.
String type, Fortran CHARACTER(n)
Type array for a subprogram.
Base class for template parameters.
Base class for variables.
Metadata * getRawType() const
Metadata * getRawScope() const
This class represents an Operation in the Expression.
uint64_t getNumOperands() const
A parsed version of the target data layout string in and methods for querying it.
This represents the llvm.dbg.label instruction.
Metadata * getRawLabel() const
DILabel * getLabel() 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.
void print(raw_ostream &O, bool IsForDebug=false) const
DebugLoc getDebugLoc() const
const BasicBlock * getParent() const
This is the common base class for debug info intrinsics for variables.
Metadata * getRawLocation() const
DILocalVariable * getVariable() const
Metadata * getRawVariable() const
Metadata * getRawExpression() const
Record of a variable value-assignment, aka a non instruction representation of the dbg....
LocationType getType() const
MDNode * getRawExpression() const
MDNode * getRawAddressExpression() const
DIExpression * getExpression() const
Metadata * getRawAssignID() const
Value * getVariableLocationOp(unsigned OpIdx) const
MDNode * getRawVariable() const
DILocalVariable * getVariable() const
Metadata * getRawLocation() const
Returns the metadata operand for the first location description.
Metadata * getRawAddress() const
@ End
Marks the end of the concrete types.
@ Any
To indicate all LocationTypes in searches.
DIExpression * getAddressExpression() const
MDNode * getAsMDNode() const
Return this as a bar MDNode.
ValueT lookup(const_arg_type_t< KeyT > Val) const
lookup - Return the entry for the specified key, or a default constructed value if no such entry exis...
iterator find(const_arg_type_t< KeyT > Val)
std::pair< iterator, bool > insert(const std::pair< KeyT, ValueT > &KV)
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
This instruction compares its operands according to the predicate given to the constructor.
This class represents an extension of floating point types.
This class represents a cast from floating point to signed integer.
This class represents a cast from floating point to unsigned integer.
This class represents a truncation of floating point types.
An instruction for ordering other memory operations.
AtomicOrdering getOrdering() const
Returns the ordering constraint of this fence instruction.
Value * getParentPad() const
Convenience accessors.
FunctionPass class - This class is used to implement most global optimizations.
Intrinsic::ID getIntrinsicID() const LLVM_READONLY
getIntrinsicID - This method returns the ID number of the specified function, or Intrinsic::not_intri...
bool hasPersonalityFn() const
Check whether this function has a personality function.
bool isIntrinsic() const
isIntrinsic - Returns true if the function's name starts with "llvm.".
const std::string & getGC() const
Represents calls to the gc.relocate intrinsic.
Value * getBasePtr() const
Value * getDerivedPtr() const
void initialize(raw_ostream *OS, function_ref< void(const Twine &Message)> FailureCB, const FunctionT &F)
void verify(const DominatorTreeT &DT)
void visit(const BlockT &BB)
Generic tagged DWARF-like metadata node.
an instruction for type-safe pointer arithmetic to access elements of arrays and structs
static 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
const Function * getResolverFunction() const
static bool isValidLinkage(LinkageTypes L)
const Constant * getResolver() const
MDNode * getMetadata(unsigned KindID) const
Get the current metadata attachments for the given kind, if any.
bool hasExternalLinkage() const
bool isImplicitDSOLocal() const
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
const Constant * getInitializer() const
getInitializer - Return the initializer for this global variable.
bool hasInitializer() const
Definitions have initializers, declarations don't.
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.
Indirect Branch Instruction.
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 bool isValidOperands(const Value *Vec, const Value *NewElt, const Value *Idx)
Return true if an insertelement instruction can be formed with the specified operands.
This instruction inserts a struct field of array element value into an aggregate value.
Value * getAggregateOperand()
ArrayRef< unsigned > getIndices() const
Base class for instruction visitors.
RetTy visitTerminator(Instruction &I)
RetTy visitCallBase(CallBase &I)
void visitFunction(Function &F)
void visitBasicBlock(BasicBlock &BB)
void visit(Iterator Start, Iterator End)
RetTy visitFuncletPadInst(FuncletPadInst &I)
void visitInstruction(Instruction &I)
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.
bool isAtomic() const LLVM_READONLY
Return true if this instruction has an AtomicOrdering of unordered or higher.
const Function * getFunction() const
Return the function this instruction belongs to.
This class represents a cast from an integer to a pointer.
A wrapper class for inspecting calls to intrinsic functions.
static 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
The landingpad instruction holds all of the information necessary to generate correct exception handl...
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.
An instruction for reading from memory.
AtomicOrdering getOrdering() const
Returns the ordering constraint of this load instruction.
SyncScope::ID getSyncScopeID() const
Returns the synchronization scope ID of this load instruction.
Align getAlign() const
Return the alignment of the access that is being performed.
const MDOperand & getOperand(unsigned I) const
ArrayRef< MDOperand > operands() const
unsigned getNumOperands() const
Return number of MDNode operands.
bool isResolved() const
Check if node is fully resolved.
LLVMContext & getContext() const
Tracking metadata reference owned by Metadata.
StringRef getString() const
Typed, array-like tuple of metadata.
This class implements a map that also provides access to all stored values in a deterministic order.
Manage lifetime of a slot tracker for printing IR.
A Module instance is used to store all the information related to an LLVM module.
ModFlagBehavior
This enumeration defines the supported behaviors of module flags.
@ AppendUnique
Appends the two values, which are required to be metadata nodes.
@ Override
Uses the specified value, regardless of the behavior or value of the other module.
@ Warning
Emits a warning if two values disagree.
@ Error
Emits an error if two values disagree, otherwise the resulting value is that of the operands.
@ Min
Takes the min of the two values, which are required to be integers.
@ Append
Appends the two values, which are required to be metadata nodes.
@ Max
Takes the max of the two values, which are required to be integers.
@ Require
Adds a requirement that another module flag be present and have a specified value after linking is pe...
const std::string & getModuleIdentifier() const
Get the module identifier which is, essentially, the name of the module.
static bool isValidModFlagBehavior(Metadata *MD, ModFlagBehavior &MFB)
Checks if Metadata represents a valid ModFlagBehavior, and stores the converted result in MFB.
StringRef getName() const
void print(raw_ostream &ROS, bool IsForDebug=false) const
iterator_range< op_iterator > operands()
op_range incoming_values()
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
static PointerType * get(Type *ElementType, unsigned AddressSpace)
This constructs a pointer to an object of the specified type in a numbered address space.
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.
Simple wrapper around std::function<void(raw_ostream&)>.
This class represents a cast from a pointer to an integer.
Interface for looking up the initializer for a variable name, used by Init::resolveReferences.
Resume the propagation of an exception.
Value * getValue() const
Convenience accessor.
Return a value (possibly void), from a function.
This class represents a sign extension of integer types.
This class represents a cast from signed integer to floating point.
This class represents the LLVM 'select' instruction.
static 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 bool isValidOperands(const Value *V1, const Value *V2, const Value *Mask)
Return true if a shufflevector instruction can be formed with the specified operands.
static void getShuffleMask(const Constant *Mask, SmallVectorImpl< int > &Result)
Convert the input shuffle mask operand to a vector of integers.
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
size_type count(ConstPtrType Ptr) const
count - Return 1 if the specified pointer is in the set, 0 otherwise.
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.
SmallSet - This maintains a set of unique values, optimizing for the case when the set is small (less...
std::pair< const_iterator, bool > insert(const T &V)
insert - Insert an element into the set if it isn't already there.
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void reserve(size_type N)
iterator insert(iterator I, T &&Elt)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
An instruction for storing to memory.
StringMapEntry - This is used to represent one value that is inserted into a StringMap.
StringRef - Represent a constant reference to a string, i.e.
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.
bool contains(StringRef Other) const
Return true if the given string is a substring of *this, and false otherwise.
static constexpr size_t npos
Class to represent struct types.
unsigned getNumElements() const
Random access to the elements.
bool containsScalableVectorType(SmallPtrSetImpl< Type * > *Visited=nullptr) const
Returns true if this struct contains a scalable vector.
Type * getTypeAtIndex(const Value *V) const
Given an index value into the type, return the type of the element.
Verify that the TBAA Metadatas are valid.
bool visitTBAAMetadata(Instruction &I, const MDNode *MD)
Visit an instruction and return true if it is valid, return false if an invalid TBAA is attached.
@ CanBeGlobal
This type may be used as the value type of a global variable.
TinyPtrVector - This class is specialized for cases where there are normally 0 or 1 element in a vect...
Triple - Helper class for working with autoconf configuration names.
This class represents a truncation of integer types.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
The instances of the Type class are immutable: once they are created, they are never changed.
bool isVectorTy() const
True if this is an instance of VectorType.
bool isArrayTy() const
True if this is an instance of ArrayType.
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.
unsigned getPointerAddressSpace() const
Get the address space of this pointer or pointer vector type.
unsigned getScalarSizeInBits() const LLVM_READONLY
If this is a vector type, return the getPrimitiveSizeInBits value for the element type.
bool isSized(SmallPtrSetImpl< Type * > *Visited=nullptr) const
Return true if it makes sense to take the size of this type.
bool isFloatingPointTy() const
Return true if this is one of the floating-point types.
bool isPtrOrPtrVectorTy() const
Return true if this is a pointer type or a vector of pointer types.
bool isScalableTy() const
Return true if this is a type whose size is a known multiple of vscale.
bool canLosslesslyBitCastTo(Type *Ty) const
Return true if this type could be converted with a lossless BitCast to type 'Ty'.
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 isTokenTy() const
Return true if this is 'token'.
bool isFPOrFPVectorTy() const
Return true if this is a FP type or a vector of FP.
Type * getScalarType() const
If this is a vector type, return the element type, otherwise return 'this'.
bool isMetadataTy() const
Return true if this is 'metadata'.
This class represents a cast unsigned integer to floating point.
A Use represents the edge between a Value definition and its users.
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...
This is the common base class for vector predication intrinsics.
LLVM Value Representation.
iterator_range< user_iterator > materialized_users()
Type * getType() const
All values are typed, get the type of this value.
static constexpr uint64_t MaximumAlignment
const Value * stripPointerCastsAndAliases() const
Strip off pointer casts, all-zero GEPs, address space casts, and aliases.
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
LLVMContext & getContext() const
All values hold a context through their type.
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.
Result run(Module &M, ModuleAnalysisManager &)
PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM)
This class represents zero extension of integer types.
constexpr bool isNonZero() const
constexpr bool isScalable() const
Returns whether the quantity is scaled by a runtime quantity (vscale).
constexpr ScalarTy getKnownMinValue() const
Returns the minimum value this quantity can represent.
An efficient, type-erasing, non-owning reference to a callable.
const ParentTy * getParent() const
NodeTy * getNextNode()
Get the next node, or nullptr for the list tail.
This class implements an extremely fast bulk output stream that can only output to a stream.
This file contains the declaration of the Comdat class, which represents a single COMDAT in LLVM.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
constexpr char Args[]
Key for Kernel::Metadata::mArgs.
constexpr char Attrs[]
Key for Kernel::Metadata::mAttrs.
AttributeMask typeIncompatible(Type *Ty, AttributeSafetyKind ASK=ASK_ALL)
Which attributes cannot be applied to a type.
constexpr std::underlying_type_t< E > Mask()
Get a bitmask with 1s in all places up to the high-order bit of E's largest value.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
@ AMDGPU_CS
Used for Mesa/AMDPAL compute shaders.
@ AMDGPU_VS
Used for Mesa vertex shaders, or AMDPAL last shader stage before rasterization (vertex shader if tess...
@ AMDGPU_KERNEL
Used for AMDGPU code object kernels.
@ AnyReg
OBSOLETED - Used for stack based JavaScript calls.
@ AMDGPU_CS_ChainPreserve
Used on AMDGPUs to give the middle-end more control over argument placement.
@ AMDGPU_HS
Used for Mesa/AMDPAL hull shaders (= tessellation control shaders).
@ AMDGPU_GS
Used for Mesa/AMDPAL geometry shaders.
@ X86_INTR
x86 hardware interrupt context.
@ AMDGPU_CS_Chain
Used on AMDGPUs to give the middle-end more control over argument placement.
@ AMDGPU_PS
Used for Mesa/AMDPAL pixel shaders.
@ Cold
Attempts to make code in the caller as efficient as possible under the assumption that the call is no...
@ PTX_Device
Call to a PTX device function.
@ SPIR_KERNEL
Used for SPIR kernel functions.
@ Fast
Attempts to make calls as fast as possible (e.g.
@ Intel_OCL_BI
Used for Intel OpenCL built-ins.
@ Tail
Attemps to make calls as fast as possible while guaranteeing that tail call optimization can always b...
@ PTX_Kernel
Call to a PTX kernel. Passes all arguments in parameter space.
@ SwiftTail
This follows the Swift calling convention in how arguments are passed but guarantees tail calls will ...
@ C
The default llvm calling convention, compatible with C.
MatchIntrinsicTypesResult matchIntrinsicSignature(FunctionType *FTy, ArrayRef< IITDescriptor > &Infos, SmallVectorImpl< Type * > &ArgTys)
Match the specified function type with the type constraints specified by the .td file.
void getIntrinsicInfoTableEntries(ID id, SmallVectorImpl< IITDescriptor > &T)
Return the IIT table descriptor for the specified intrinsic into an array of IITDescriptors.
MatchIntrinsicTypesResult
@ MatchIntrinsicTypes_NoMatchRet
@ MatchIntrinsicTypes_NoMatchArg
bool hasConstrainedFPRoundingModeOperand(ID QID)
Returns true if the intrinsic ID is for one of the "Constrained Floating-Point Intrinsics" that take ...
StringRef getName(ID id)
Return the LLVM name for an intrinsic, such as "llvm.ppc.altivec.lvx".
static const int NoAliasScopeDeclScopeArg
bool matchIntrinsicVarArg(bool isVarArg, ArrayRef< IITDescriptor > &Infos)
Verify if the intrinsic has variable arguments.
Flag
These should be considered private to the implementation of the MCInstrDesc class.
@ System
Synchronized with respect to all concurrently executing threads.
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.
initializer< Ty > init(const Ty &Val)
Scope
Defines the scope in which this symbol should be visible: Default – Visible in the public interface o...
This is an optimization pass for GlobalISel generic memory operations.
@ 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.
auto size(R &&Range, std::enable_if_t< std::is_base_of< std::random_access_iterator_tag, typename std::iterator_traits< decltype(Range.begin())>::iterator_category >::value, void > *=nullptr)
Get the size of a range.
bool canInstructionHaveMMRAs(const Instruction &I)
unsigned getBranchWeightOffset(const MDNode *ProfileData)
Return the offset to the first branch weight data.
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
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()
void initializeVerifierLegacyPassPass(PassRegistry &)
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.
DenseMap< BasicBlock *, ColorVector > colorEHFunclets(Function &F)
If an EH funclet personality is in use (see isFuncletEHPersonality), this will recompute which blocks...
constexpr bool isPowerOf2_64(uint64_t Value)
Return true if the argument is a power of two > 0 (64 bit edition.)
bool isScopedEHPersonality(EHPersonality Pers)
Returns true if this personality uses scope-style EH IR instructions: catchswitch,...
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)
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
void report_fatal_error(Error Err, bool gen_crash_diag=true)
Report a serious error, calling any installed error handler.
EHPersonality classifyEHPersonality(const Value *Pers)
See if the given exception handling personality function is one that we understand.
raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
unsigned getNumBranchWeights(const MDNode &ProfileData)
AtomicOrdering
Atomic ordering for LLVM's memory model.
@ ArgMem
Access to memory via argument pointers.
@ First
Helpers to iterate all locations in the MemoryEffectsBase class.
FunctionPass * createVerifierPass(bool FatalErrors=true)
@ Dynamic
Denotes mode unknown at compile time.
@ MaskAll
A bitmask that includes all valid flags.
constexpr unsigned BitWidth
std::optional< RoundingMode > convertStrToRoundingMode(StringRef)
Returns a valid RoundingMode enumerator when given a string that is valid as input in constrained int...
std::unique_ptr< GCStrategy > getGCStrategy(const StringRef Name)
Lookup the GCStrategy object associated with the given gc name.
auto predecessors(const MachineBasicBlock *BB)
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
bool pred_empty(const BasicBlock *BB)
bool verifyModule(const Module &M, raw_ostream *OS=nullptr, bool *BrokenDebugInfo=nullptr)
Check a module for errors.
static const fltSemantics & IEEEsingle() LLVM_READNONE
This struct is a compact representation of a valid (non-zero power of two) alignment.
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...
Description of the encoding of one expression Op.
This struct is a compact representation of a valid (power of two) or undefined (0) alignment.
A lightweight accessor for an operand bundle meant to be passed around by value.
uint32_t getTagID() const
Return the tag of this operand bundle as an integer.
void DebugInfoCheckFailed(const Twine &Message)
A debug info check failed.
VerifierSupport(raw_ostream *OS, const Module &M)
bool Broken
Track the brokenness of the module while recursively visiting.
void CheckFailed(const Twine &Message, const T1 &V1, const Ts &... Vs)
A check failed (with values to print).
bool BrokenDebugInfo
Broken debug info can be "recovered" from by stripping the debug info.
bool TreatBrokenDebugInfoAsError
Whether to treat broken debug info as an error.
void CheckFailed(const Twine &Message)
A check failed, so printout out the condition and the message.
void DebugInfoCheckFailed(const Twine &Message, const T1 &V1, const Ts &... Vs)
A debug info check failed (with values to print).