92 struct MachineVerifier {
93 MachineVerifier(
Pass *
pass,
const char *b) : PASS(
pass), Banner(
b) {}
98 : Banner(
b), LiveVars(LiveVars), LiveInts(LiveInts), LiveStks(LiveStks),
103 Pass *
const PASS =
nullptr;
112 unsigned foundErrors = 0;
115 bool isFunctionRegBankSelected =
false;
116 bool isFunctionSelected =
false;
117 bool isFunctionTracksDebugUserValues =
false;
127 BlockSet FunctionBlocks;
131 RegVector regsDefined, regsDead, regsKilled;
132 RegMaskVector regMasks;
137 void addRegWithSubRegs(RegVector &RV,
Register Reg) {
139 if (
Reg.isPhysical())
145 bool reachable =
false;
166 RegSet vregsRequired;
169 BlockSet Preds, Succs;
176 if (!
Reg.isVirtual())
178 if (regsLiveOut.count(Reg))
180 return vregsRequired.insert(Reg).second;
184 bool addRequired(
const RegSet &RS) {
185 bool Changed =
false;
187 Changed |= addRequired(Reg);
192 bool addRequired(
const RegMap &RM) {
193 bool Changed =
false;
194 for (
const auto &
I : RM)
195 Changed |= addRequired(
I.first);
201 return regsLiveOut.count(Reg) || vregsPassed.count(Reg);
209 return Reg.id() < regsReserved.
size() && regsReserved.
test(
Reg.id());
212 bool isAllocatable(
Register Reg)
const {
213 return Reg.id() <
TRI->getNumRegs() &&
TRI->isInAllocatableClass(Reg) &&
223 void visitMachineFunctionBefore();
239 void visitMachineOperand(
const MachineOperand *MO,
unsigned MONum);
242 void visitMachineFunctionAfter();
247 void report(
const char *msg,
const MachineOperand *MO,
unsigned MONum,
255 void report_context(
const VNInfo &VNI)
const;
256 void report_context(
SlotIndex Pos)
const;
257 void report_context(
MCPhysReg PhysReg)
const;
258 void report_context_liverange(
const LiveRange &LR)
const;
259 void report_context_lanemask(
LaneBitmask LaneMask)
const;
260 void report_context_vreg(
Register VReg)
const;
261 void report_context_vreg_regunit(
Register VRegOrUnit)
const;
272 Register VRegOrUnit,
bool SubRangeCheck =
false,
276 void calcRegsPassed();
279 void calcRegsRequired();
280 void verifyLiveVariables();
281 void verifyLiveIntervals();
285 void verifyLiveRangeSegment(
const LiveRange &,
291 void verifyStackFrame();
293 void verifySlotIndexes()
const;
300 const std::string Banner;
302 MachineVerifierPass(std::string banner = std::string())
321 MachineFunctionProperties::Property::FailsVerification))
324 unsigned FoundErrors = MachineVerifier(
this, Banner.c_str()).verify(MF);
333char MachineVerifierPass::ID = 0;
336 "Verify generated machine code",
false,
false)
339 return new MachineVerifierPass(Banner);
343 const std::string &Banner,
350 unsigned FoundErrors = MachineVerifier(
nullptr, Banner.c_str()).verify(MF);
358 unsigned FoundErrors = MachineVerifier(p, Banner).verify(MF);
359 if (AbortOnErrors && FoundErrors)
361 return FoundErrors == 0;
365 const char *Banner,
bool AbortOnErrors)
const {
367 unsigned FoundErrors =
368 MachineVerifier(Banner,
nullptr, LiveInts,
nullptr, Indexes).verify(MF);
369 if (AbortOnErrors && FoundErrors)
371 return FoundErrors == 0;
374void MachineVerifier::verifySlotIndexes()
const {
375 if (Indexes ==
nullptr)
393 MRI->getNumVirtRegs())
394 report(
"Function has NoVRegs property but there are VReg operands", &MF);
413 if (isFunctionFailedISel)
434 verifyProperties(MF);
436 visitMachineFunctionBefore();
438 visitMachineBasicBlockBefore(&
MBB);
442 bool InBundle =
false;
445 if (
MI.getParent() != &
MBB) {
446 report(
"Bad instruction parent pointer", &
MBB);
447 errs() <<
"Instruction: " <<
MI;
452 if (InBundle && !
MI.isBundledWithPred())
453 report(
"Missing BundledPred flag, "
454 "BundledSucc was set on predecessor",
456 if (!InBundle &&
MI.isBundledWithPred())
457 report(
"BundledPred flag is set, "
458 "but BundledSucc not set on predecessor",
462 if (!
MI.isInsideBundle()) {
464 visitMachineBundleAfter(CurBundle);
466 visitMachineBundleBefore(CurBundle);
467 }
else if (!CurBundle)
468 report(
"No bundle header", &
MI);
469 visitMachineInstrBefore(&
MI);
470 for (
unsigned I = 0,
E =
MI.getNumOperands();
I !=
E; ++
I) {
472 if (
Op.getParent() != &
MI) {
475 report(
"Instruction has operand with wrong parent set", &
MI);
478 visitMachineOperand(&
Op,
I);
482 InBundle =
MI.isBundledWithSucc();
485 visitMachineBundleAfter(CurBundle);
487 report(
"BundledSucc flag set on last instruction in block", &
MBB.
back());
488 visitMachineBasicBlockAfter(&
MBB);
490 visitMachineFunctionAfter();
503void MachineVerifier::report(
const char *msg,
const MachineFunction *MF) {
506 if (!foundErrors++) {
508 errs() <<
"# " << Banner <<
'\n';
509 if (LiveInts !=
nullptr)
514 errs() <<
"*** Bad machine code: " << msg <<
" ***\n"
515 <<
"- function: " << MF->
getName() <<
"\n";
529void MachineVerifier::report(
const char *msg,
const MachineInstr *
MI) {
531 report(msg,
MI->getParent());
532 errs() <<
"- instruction: ";
538void MachineVerifier::report(
const char *msg,
const MachineOperand *MO,
539 unsigned MONum,
LLT MOVRegType) {
542 errs() <<
"- operand " << MONum <<
": ";
548 report(
Msg.str().c_str(),
MI);
551void MachineVerifier::report_context(
SlotIndex Pos)
const {
552 errs() <<
"- at: " << Pos <<
'\n';
555void MachineVerifier::report_context(
const LiveInterval &LI)
const {
556 errs() <<
"- interval: " << LI <<
'\n';
561 report_context_liverange(LR);
562 report_context_vreg_regunit(VRegUnit);
564 report_context_lanemask(LaneMask);
568 errs() <<
"- segment: " << S <<
'\n';
571void MachineVerifier::report_context(
const VNInfo &VNI)
const {
572 errs() <<
"- ValNo: " << VNI.
id <<
" (def " << VNI.
def <<
")\n";
575void MachineVerifier::report_context_liverange(
const LiveRange &LR)
const {
576 errs() <<
"- liverange: " << LR <<
'\n';
579void MachineVerifier::report_context(
MCPhysReg PReg)
const {
583void MachineVerifier::report_context_vreg(
Register VReg)
const {
587void MachineVerifier::report_context_vreg_regunit(
Register VRegOrUnit)
const {
589 report_context_vreg(VRegOrUnit);
595void MachineVerifier::report_context_lanemask(
LaneBitmask LaneMask)
const {
600 BBInfo &MInfo = MBBInfoMap[
MBB];
601 if (!MInfo.reachable) {
602 MInfo.reachable =
true;
608void MachineVerifier::visitMachineFunctionBefore() {
610 regsReserved =
MRI->reservedRegsFrozen() ?
MRI->getReservedRegs()
611 :
TRI->getReservedRegs(*MF);
614 markReachable(&MF->
front());
617 FunctionBlocks.clear();
618 for (
const auto &
MBB : *MF) {
619 FunctionBlocks.insert(&
MBB);
620 BBInfo &MInfo = MBBInfoMap[&
MBB];
624 report(
"MBB has duplicate entries in its predecessor list.", &
MBB);
628 report(
"MBB has duplicate entries in its successor list.", &
MBB);
632 MRI->verifyUseLists();
640 FirstTerminator =
nullptr;
641 FirstNonPHI =
nullptr;
643 if (!MF->getProperties().hasProperty(
648 if (isAllocatable(LI.PhysReg) && !
MBB->
isEHPad() &&
651 report(
"MBB has allocatable live-in, but isn't entry, landing-pad, or "
652 "inlineasm-br-indirect-target.",
654 report_context(LI.PhysReg);
661 report(
"ir-block-address-taken is associated with basic block not used by "
670 LandingPadSuccs.
insert(succ);
671 if (!FunctionBlocks.count(succ))
672 report(
"MBB has successor that isn't part of the function.",
MBB);
673 if (!MBBInfoMap[succ].Preds.count(
MBB)) {
674 report(
"Inconsistent CFG",
MBB);
675 errs() <<
"MBB is not in the predecessor list of the successor "
682 if (!FunctionBlocks.count(Pred))
683 report(
"MBB has predecessor that isn't part of the function.",
MBB);
684 if (!MBBInfoMap[Pred].Succs.count(
MBB)) {
685 report(
"Inconsistent CFG",
MBB);
686 errs() <<
"MBB is not in the successor list of the predecessor "
694 if (LandingPadSuccs.
size() > 1 &&
699 report(
"MBB has more than one landing pad successor",
MBB);
712 report(
"MBB exits via unconditional fall-through but ends with a "
713 "barrier instruction!",
MBB);
716 report(
"MBB exits via unconditional fall-through but has a condition!",
719 }
else if (
TBB && !FBB &&
Cond.empty()) {
722 report(
"MBB exits via unconditional branch but doesn't contain "
723 "any instructions!",
MBB);
725 report(
"MBB exits via unconditional branch but doesn't end with a "
726 "barrier instruction!",
MBB);
728 report(
"MBB exits via unconditional branch but the branch isn't a "
729 "terminator instruction!",
MBB);
731 }
else if (
TBB && !FBB && !
Cond.empty()) {
734 report(
"MBB exits via conditional branch/fall-through but doesn't "
735 "contain any instructions!",
MBB);
737 report(
"MBB exits via conditional branch/fall-through but ends with a "
738 "barrier instruction!",
MBB);
740 report(
"MBB exits via conditional branch/fall-through but the branch "
741 "isn't a terminator instruction!",
MBB);
743 }
else if (
TBB && FBB) {
747 report(
"MBB exits via conditional branch/branch but doesn't "
748 "contain any instructions!",
MBB);
750 report(
"MBB exits via conditional branch/branch but doesn't end with a "
751 "barrier instruction!",
MBB);
753 report(
"MBB exits via conditional branch/branch but the branch "
754 "isn't a terminator instruction!",
MBB);
757 report(
"MBB exits via conditional branch/branch but there's no "
761 report(
"analyzeBranch returned invalid data!",
MBB);
767 report(
"MBB exits via jump or conditional branch, but its target isn't a "
771 report(
"MBB exits via conditional branch, but its target isn't a CFG "
778 bool Fallthrough = !
TBB || (!
Cond.empty() && !FBB);
783 if (!
Cond.empty() && !FBB) {
786 report(
"MBB conditionally falls through out of function!",
MBB);
788 report(
"MBB exits via conditional branch/fall-through but the CFG "
789 "successors don't match the actual successors!",
796 if (SuccMBB ==
TBB || SuccMBB == FBB)
804 if (SuccMBB->isEHPad() || SuccMBB->isInlineAsmBrIndirectTarget())
806 report(
"MBB has unexpected successors which are not branch targets, "
807 "fallthrough, EHPads, or inlineasm_br targets.",
813 if (
MRI->tracksLiveness()) {
816 report(
"MBB live-in list contains non-physical register",
MBB);
840void MachineVerifier::visitMachineBundleBefore(
const MachineInstr *
MI) {
843 if (!(idx > lastIndex)) {
844 report(
"Instruction index out of order",
MI);
845 errs() <<
"Last instruction was at " << lastIndex <<
'\n';
851 if (
MI->isTerminator()) {
852 if (!FirstTerminator)
853 FirstTerminator =
MI;
854 }
else if (FirstTerminator) {
857 if (FirstTerminator->
getOpcode() != TargetOpcode::G_INVOKE_REGION_START) {
858 report(
"Non-terminator instruction after the first terminator",
MI);
859 errs() <<
"First terminator was:\t" << *FirstTerminator;
868 if (
MI->getNumOperands() < 2) {
869 report(
"Too few operands on inline asm",
MI);
872 if (!
MI->getOperand(0).isSymbol())
873 report(
"Asm string must be an external symbol",
MI);
874 if (!
MI->getOperand(1).isImm())
875 report(
"Asm flags must be an immediate",
MI);
879 if (!isUInt<6>(
MI->getOperand(1).getImm()))
880 report(
"Unknown asm flags", &
MI->getOperand(1), 1);
886 for (
unsigned e =
MI->getNumOperands(); OpNo <
e; OpNo += NumOps) {
892 NumOps = 1 +
F.getNumOperandRegisters();
895 if (OpNo >
MI->getNumOperands())
896 report(
"Missing operands in last group",
MI);
899 if (OpNo < MI->getNumOperands() &&
MI->getOperand(OpNo).isMetadata())
903 for (
unsigned e =
MI->getNumOperands(); OpNo < e; ++OpNo) {
906 report(
"Expected implicit register after groups", &MO, OpNo);
909 if (
MI->getOpcode() == TargetOpcode::INLINEASM_BR) {
922 if (!IndirectTargetMBB) {
923 report(
"INLINEASM_BR indirect target does not exist", &MO, i);
928 report(
"INLINEASM_BR indirect target missing from successor list", &MO,
932 report(
"INLINEASM_BR indirect target predecessor list missing parent",
938bool MachineVerifier::verifyAllRegOpsScalar(
const MachineInstr &
MI,
943 const auto Reg = Op.getReg();
944 if (Reg.isPhysical())
946 return !MRI.getType(Reg).isScalar();
949 report(
"All register operands must have scalar types", &
MI);
956bool MachineVerifier::verifyVectorElementMatch(
LLT Ty0,
LLT Ty1,
959 report(
"operand types must be all-vector or all-scalar",
MI);
969 report(
"operand types must preserve number of vector elements",
MI);
976bool MachineVerifier::verifyGIntrinsicSideEffects(
const MachineInstr *
MI) {
977 auto Opcode =
MI->getOpcode();
978 bool NoSideEffects = Opcode == TargetOpcode::G_INTRINSIC ||
979 Opcode == TargetOpcode::G_INTRINSIC_CONVERGENT;
980 unsigned IntrID = cast<GIntrinsic>(
MI)->getIntrinsicID();
981 if (IntrID != 0 && IntrID < Intrinsic::num_intrinsics) {
983 MF->getFunction().getContext(),
static_cast<Intrinsic::ID>(IntrID));
984 bool DeclHasSideEffects = !
Attrs.getMemoryEffects().doesNotAccessMemory();
985 if (NoSideEffects && DeclHasSideEffects) {
987 " used with intrinsic that accesses memory"),
991 if (!NoSideEffects && !DeclHasSideEffects) {
992 report(
Twine(
TII->getName(Opcode),
" used with readnone intrinsic"),
MI);
1000bool MachineVerifier::verifyGIntrinsicConvergence(
const MachineInstr *
MI) {
1001 auto Opcode =
MI->getOpcode();
1002 bool NotConvergent = Opcode == TargetOpcode::G_INTRINSIC ||
1003 Opcode == TargetOpcode::G_INTRINSIC_W_SIDE_EFFECTS;
1004 unsigned IntrID = cast<GIntrinsic>(
MI)->getIntrinsicID();
1005 if (IntrID != 0 && IntrID < Intrinsic::num_intrinsics) {
1007 MF->getFunction().getContext(),
static_cast<Intrinsic::ID>(IntrID));
1008 bool DeclIsConvergent =
Attrs.hasFnAttr(Attribute::Convergent);
1009 if (NotConvergent && DeclIsConvergent) {
1010 report(
Twine(
TII->getName(Opcode),
" used with a convergent intrinsic"),
1014 if (!NotConvergent && !DeclIsConvergent) {
1016 Twine(
TII->getName(Opcode),
" used with a non-convergent intrinsic"),
1025void MachineVerifier::verifyPreISelGenericInstruction(
const MachineInstr *
MI) {
1026 if (isFunctionSelected)
1027 report(
"Unexpected generic instruction in a Selected function",
MI);
1030 unsigned NumOps =
MI->getNumOperands();
1033 if (
MI->isBranch() && !
MI->isIndirectBranch()) {
1034 bool HasMBB =
false;
1043 report(
"Branch instruction is missing a basic block operand or "
1044 "isIndirectBranch property",
1053 if (!MCID.
operands()[
I].isGenericType())
1057 size_t TypeIdx = MCID.
operands()[
I].getGenericTypeIndex();
1058 Types.resize(std::max(TypeIdx + 1,
Types.size()));
1062 report(
"generic instruction must use register operands",
MI);
1072 if (!Types[TypeIdx].
isValid())
1073 Types[TypeIdx] = OpTy;
1074 else if (Types[TypeIdx] != OpTy)
1075 report(
"Type mismatch in generic instruction", MO,
I, OpTy);
1078 report(
"Generic instruction is missing a virtual register type", MO,
I);
1083 for (
unsigned I = 0;
I <
MI->getNumOperands(); ++
I) {
1086 report(
"Generic instruction cannot have physical register", MO,
I);
1098 unsigned Opc =
MI->getOpcode();
1100 case TargetOpcode::G_ASSERT_SEXT:
1101 case TargetOpcode::G_ASSERT_ZEXT: {
1102 std::string OpcName =
1103 Opc == TargetOpcode::G_ASSERT_ZEXT ?
"G_ASSERT_ZEXT" :
"G_ASSERT_SEXT";
1104 if (!
MI->getOperand(2).isImm()) {
1105 report(
Twine(OpcName,
" expects an immediate operand #2"),
MI);
1111 LLT SrcTy =
MRI->getType(Src);
1112 int64_t
Imm =
MI->getOperand(2).getImm();
1114 report(
Twine(OpcName,
" size must be >= 1"),
MI);
1119 report(
Twine(OpcName,
" size must be less than source bit width"),
MI);
1127 if ((SrcRB && DstRB && SrcRB != DstRB) || (DstRB && !SrcRB)) {
1128 report(
Twine(OpcName,
" cannot change register bank"),
MI);
1134 if (DstRC && DstRC !=
MRI->getRegClassOrNull(Src)) {
1136 Twine(OpcName,
" source and destination register classes must match"),
1144 case TargetOpcode::G_CONSTANT:
1145 case TargetOpcode::G_FCONSTANT: {
1146 LLT DstTy =
MRI->getType(
MI->getOperand(0).getReg());
1148 report(
"Instruction cannot use a vector result type",
MI);
1150 if (
MI->getOpcode() == TargetOpcode::G_CONSTANT) {
1151 if (!
MI->getOperand(1).isCImm()) {
1152 report(
"G_CONSTANT operand must be cimm",
MI);
1158 report(
"inconsistent constant size",
MI);
1160 if (!
MI->getOperand(1).isFPImm()) {
1161 report(
"G_FCONSTANT operand must be fpimm",
MI);
1168 report(
"inconsistent constant size",
MI);
1174 case TargetOpcode::G_LOAD:
1175 case TargetOpcode::G_STORE:
1176 case TargetOpcode::G_ZEXTLOAD:
1177 case TargetOpcode::G_SEXTLOAD: {
1178 LLT ValTy =
MRI->getType(
MI->getOperand(0).getReg());
1179 LLT PtrTy =
MRI->getType(
MI->getOperand(1).getReg());
1181 report(
"Generic memory instruction must access a pointer",
MI);
1185 if (!
MI->hasOneMemOperand()) {
1186 report(
"Generic instruction accessing memory must have one mem operand",
1190 if (
MI->getOpcode() == TargetOpcode::G_ZEXTLOAD ||
1191 MI->getOpcode() == TargetOpcode::G_SEXTLOAD) {
1193 report(
"Generic extload must have a narrower memory type",
MI);
1194 }
else if (
MI->getOpcode() == TargetOpcode::G_LOAD) {
1196 report(
"load memory size cannot exceed result size",
MI);
1197 }
else if (
MI->getOpcode() == TargetOpcode::G_STORE) {
1199 report(
"store memory size cannot exceed value size",
MI);
1203 if (Opc == TargetOpcode::G_STORE) {
1206 report(
"atomic store cannot use acquire ordering",
MI);
1211 report(
"atomic load cannot use release ordering",
MI);
1217 case TargetOpcode::G_PHI: {
1218 LLT DstTy =
MRI->getType(
MI->getOperand(0).getReg());
1223 LLT Ty = MRI->getType(MO.getReg());
1224 if (!Ty.isValid() || (Ty != DstTy))
1228 report(
"Generic Instruction G_PHI has operands with incompatible/missing "
1233 case TargetOpcode::G_BITCAST: {
1234 LLT DstTy =
MRI->getType(
MI->getOperand(0).getReg());
1235 LLT SrcTy =
MRI->getType(
MI->getOperand(1).getReg());
1240 report(
"bitcast cannot convert between pointers and other types",
MI);
1243 report(
"bitcast sizes must match",
MI);
1246 report(
"bitcast must change the type",
MI);
1250 case TargetOpcode::G_INTTOPTR:
1251 case TargetOpcode::G_PTRTOINT:
1252 case TargetOpcode::G_ADDRSPACE_CAST: {
1253 LLT DstTy =
MRI->getType(
MI->getOperand(0).getReg());
1254 LLT SrcTy =
MRI->getType(
MI->getOperand(1).getReg());
1258 verifyVectorElementMatch(DstTy, SrcTy,
MI);
1263 if (
MI->getOpcode() == TargetOpcode::G_INTTOPTR) {
1265 report(
"inttoptr result type must be a pointer",
MI);
1267 report(
"inttoptr source type must not be a pointer",
MI);
1268 }
else if (
MI->getOpcode() == TargetOpcode::G_PTRTOINT) {
1270 report(
"ptrtoint source type must be a pointer",
MI);
1272 report(
"ptrtoint result type must not be a pointer",
MI);
1274 assert(
MI->getOpcode() == TargetOpcode::G_ADDRSPACE_CAST);
1276 report(
"addrspacecast types must be pointers",
MI);
1279 report(
"addrspacecast must convert different address spaces",
MI);
1285 case TargetOpcode::G_PTR_ADD: {
1286 LLT DstTy =
MRI->getType(
MI->getOperand(0).getReg());
1287 LLT PtrTy =
MRI->getType(
MI->getOperand(1).getReg());
1288 LLT OffsetTy =
MRI->getType(
MI->getOperand(2).getReg());
1293 report(
"gep first operand must be a pointer",
MI);
1296 report(
"gep offset operand must not be a pointer",
MI);
1301 case TargetOpcode::G_PTRMASK: {
1302 LLT DstTy =
MRI->getType(
MI->getOperand(0).getReg());
1303 LLT SrcTy =
MRI->getType(
MI->getOperand(1).getReg());
1304 LLT MaskTy =
MRI->getType(
MI->getOperand(2).getReg());
1309 report(
"ptrmask result type must be a pointer",
MI);
1312 report(
"ptrmask mask type must be an integer",
MI);
1314 verifyVectorElementMatch(DstTy, MaskTy,
MI);
1317 case TargetOpcode::G_SEXT:
1318 case TargetOpcode::G_ZEXT:
1319 case TargetOpcode::G_ANYEXT:
1320 case TargetOpcode::G_TRUNC:
1321 case TargetOpcode::G_FPEXT:
1322 case TargetOpcode::G_FPTRUNC: {
1329 LLT DstTy =
MRI->getType(
MI->getOperand(0).getReg());
1330 LLT SrcTy =
MRI->getType(
MI->getOperand(1).getReg());
1337 report(
"Generic extend/truncate can not operate on pointers",
MI);
1339 verifyVectorElementMatch(DstTy, SrcTy,
MI);
1343 switch (
MI->getOpcode()) {
1345 if (DstSize <= SrcSize)
1346 report(
"Generic extend has destination type no larger than source",
MI);
1348 case TargetOpcode::G_TRUNC:
1349 case TargetOpcode::G_FPTRUNC:
1350 if (DstSize >= SrcSize)
1351 report(
"Generic truncate has destination type no smaller than source",
1357 case TargetOpcode::G_SELECT: {
1358 LLT SelTy =
MRI->getType(
MI->getOperand(0).getReg());
1359 LLT CondTy =
MRI->getType(
MI->getOperand(1).getReg());
1365 verifyVectorElementMatch(SelTy, CondTy,
MI);
1368 case TargetOpcode::G_MERGE_VALUES: {
1373 LLT DstTy =
MRI->getType(
MI->getOperand(0).getReg());
1374 LLT SrcTy =
MRI->getType(
MI->getOperand(1).getReg());
1376 report(
"G_MERGE_VALUES cannot operate on vectors",
MI);
1378 const unsigned NumOps =
MI->getNumOperands();
1380 report(
"G_MERGE_VALUES result size is inconsistent",
MI);
1382 for (
unsigned I = 2;
I != NumOps; ++
I) {
1383 if (
MRI->getType(
MI->getOperand(
I).getReg()) != SrcTy)
1384 report(
"G_MERGE_VALUES source types do not match",
MI);
1389 case TargetOpcode::G_UNMERGE_VALUES: {
1390 unsigned NumDsts =
MI->getNumOperands() - 1;
1391 LLT DstTy =
MRI->getType(
MI->getOperand(0).getReg());
1392 for (
unsigned i = 1; i < NumDsts; ++i) {
1393 if (
MRI->getType(
MI->getOperand(i).getReg()) != DstTy) {
1394 report(
"G_UNMERGE_VALUES destination types do not match",
MI);
1399 LLT SrcTy =
MRI->getType(
MI->getOperand(NumDsts).getReg());
1404 report(
"G_UNMERGE_VALUES source operand does not match vector "
1405 "destination operands",
1412 report(
"G_UNMERGE_VALUES vector source operand does not match scalar "
1413 "destination operands",
1418 report(
"G_UNMERGE_VALUES scalar source operand does not match scalar "
1419 "destination operands",
1425 case TargetOpcode::G_BUILD_VECTOR: {
1428 LLT DstTy =
MRI->getType(
MI->getOperand(0).getReg());
1429 LLT SrcEltTy =
MRI->getType(
MI->getOperand(1).getReg());
1431 report(
"G_BUILD_VECTOR must produce a vector from scalar operands",
MI);
1436 report(
"G_BUILD_VECTOR result element type must match source type",
MI);
1439 report(
"G_BUILD_VECTOR must have an operand for each elemement",
MI);
1442 if (
MRI->getType(
MI->getOperand(1).getReg()) !=
MRI->getType(MO.
getReg()))
1443 report(
"G_BUILD_VECTOR source operand types are not homogeneous",
MI);
1447 case TargetOpcode::G_BUILD_VECTOR_TRUNC: {
1450 LLT DstTy =
MRI->getType(
MI->getOperand(0).getReg());
1451 LLT SrcEltTy =
MRI->getType(
MI->getOperand(1).getReg());
1453 report(
"G_BUILD_VECTOR_TRUNC must produce a vector from scalar operands",
1456 if (
MRI->getType(
MI->getOperand(1).getReg()) !=
MRI->getType(MO.
getReg()))
1457 report(
"G_BUILD_VECTOR_TRUNC source operand types are not homogeneous",
1460 report(
"G_BUILD_VECTOR_TRUNC source operand types are not larger than "
1465 case TargetOpcode::G_CONCAT_VECTORS: {
1468 LLT DstTy =
MRI->getType(
MI->getOperand(0).getReg());
1469 LLT SrcTy =
MRI->getType(
MI->getOperand(1).getReg());
1471 report(
"G_CONCAT_VECTOR requires vector source and destination operands",
1474 if (
MI->getNumOperands() < 3)
1475 report(
"G_CONCAT_VECTOR requires at least 2 source operands",
MI);
1478 if (
MRI->getType(
MI->getOperand(1).getReg()) !=
MRI->getType(MO.
getReg()))
1479 report(
"G_CONCAT_VECTOR source operand types are not homogeneous",
MI);
1482 report(
"G_CONCAT_VECTOR num dest and source elements should match",
MI);
1485 case TargetOpcode::G_ICMP:
1486 case TargetOpcode::G_FCMP: {
1487 LLT DstTy =
MRI->getType(
MI->getOperand(0).getReg());
1488 LLT SrcTy =
MRI->getType(
MI->getOperand(2).getReg());
1492 report(
"Generic vector icmp/fcmp must preserve number of lanes",
MI);
1496 case TargetOpcode::G_EXTRACT: {
1498 if (!
SrcOp.isReg()) {
1499 report(
"extract source must be a register",
MI);
1504 if (!OffsetOp.
isImm()) {
1505 report(
"extract offset must be a constant",
MI);
1509 unsigned DstSize =
MRI->getType(
MI->getOperand(0).getReg()).getSizeInBits();
1511 if (SrcSize == DstSize)
1512 report(
"extract source must be larger than result",
MI);
1514 if (DstSize + OffsetOp.
getImm() > SrcSize)
1515 report(
"extract reads past end of register",
MI);
1518 case TargetOpcode::G_INSERT: {
1520 if (!
SrcOp.isReg()) {
1521 report(
"insert source must be a register",
MI);
1526 if (!OffsetOp.
isImm()) {
1527 report(
"insert offset must be a constant",
MI);
1531 unsigned DstSize =
MRI->getType(
MI->getOperand(0).getReg()).getSizeInBits();
1534 if (DstSize <= SrcSize)
1535 report(
"inserted size must be smaller than total register",
MI);
1537 if (SrcSize + OffsetOp.
getImm() > DstSize)
1538 report(
"insert writes past end of register",
MI);
1542 case TargetOpcode::G_JUMP_TABLE: {
1543 if (!
MI->getOperand(1).isJTI())
1544 report(
"G_JUMP_TABLE source operand must be a jump table index",
MI);
1545 LLT DstTy =
MRI->getType(
MI->getOperand(0).getReg());
1547 report(
"G_JUMP_TABLE dest operand must have a pointer type",
MI);
1550 case TargetOpcode::G_BRJT: {
1551 if (!
MRI->getType(
MI->getOperand(0).getReg()).isPointer())
1552 report(
"G_BRJT src operand 0 must be a pointer type",
MI);
1554 if (!
MI->getOperand(1).isJTI())
1555 report(
"G_BRJT src operand 1 must be a jump table index",
MI);
1557 const auto &IdxOp =
MI->getOperand(2);
1558 if (!IdxOp.isReg() ||
MRI->getType(IdxOp.getReg()).isPointer())
1559 report(
"G_BRJT src operand 2 must be a scalar reg type",
MI);
1562 case TargetOpcode::G_INTRINSIC:
1563 case TargetOpcode::G_INTRINSIC_W_SIDE_EFFECTS:
1564 case TargetOpcode::G_INTRINSIC_CONVERGENT:
1565 case TargetOpcode::G_INTRINSIC_CONVERGENT_W_SIDE_EFFECTS: {
1570 report(
"G_INTRINSIC first src operand must be an intrinsic ID",
MI);
1574 if (!verifyGIntrinsicSideEffects(
MI))
1576 if (!verifyGIntrinsicConvergence(
MI))
1581 case TargetOpcode::G_SEXT_INREG: {
1582 if (!
MI->getOperand(2).isImm()) {
1583 report(
"G_SEXT_INREG expects an immediate operand #2",
MI);
1587 LLT SrcTy =
MRI->getType(
MI->getOperand(1).getReg());
1588 int64_t
Imm =
MI->getOperand(2).getImm();
1590 report(
"G_SEXT_INREG size must be >= 1",
MI);
1592 report(
"G_SEXT_INREG size must be less than source bit width",
MI);
1595 case TargetOpcode::G_SHUFFLE_VECTOR: {
1598 report(
"Incorrect mask operand type for G_SHUFFLE_VECTOR",
MI);
1602 LLT DstTy =
MRI->getType(
MI->getOperand(0).getReg());
1603 LLT Src0Ty =
MRI->getType(
MI->getOperand(1).getReg());
1604 LLT Src1Ty =
MRI->getType(
MI->getOperand(2).getReg());
1606 if (Src0Ty != Src1Ty)
1607 report(
"Source operands must be the same type",
MI);
1610 report(
"G_SHUFFLE_VECTOR cannot change element type",
MI);
1619 if (
static_cast<int>(MaskIdxes.
size()) != DstNumElts)
1620 report(
"Wrong result type for shufflemask",
MI);
1622 for (
int Idx : MaskIdxes) {
1626 if (
Idx >= 2 * SrcNumElts)
1627 report(
"Out of bounds shuffle index",
MI);
1632 case TargetOpcode::G_DYN_STACKALLOC: {
1638 report(
"dst operand 0 must be a pointer type",
MI);
1642 if (!AllocOp.
isReg() || !
MRI->getType(AllocOp.
getReg()).isScalar()) {
1643 report(
"src operand 1 must be a scalar reg type",
MI);
1647 if (!AlignOp.
isImm()) {
1648 report(
"src operand 2 must be an immediate type",
MI);
1653 case TargetOpcode::G_MEMCPY_INLINE:
1654 case TargetOpcode::G_MEMCPY:
1655 case TargetOpcode::G_MEMMOVE: {
1657 if (MMOs.
size() != 2) {
1658 report(
"memcpy/memmove must have 2 memory operands",
MI);
1664 report(
"wrong memory operand types",
MI);
1669 report(
"inconsistent memory operand sizes",
MI);
1671 LLT DstPtrTy =
MRI->getType(
MI->getOperand(0).getReg());
1672 LLT SrcPtrTy =
MRI->getType(
MI->getOperand(1).getReg());
1675 report(
"memory instruction operand must be a pointer",
MI);
1680 report(
"inconsistent store address space",
MI);
1682 report(
"inconsistent load address space",
MI);
1684 if (Opc != TargetOpcode::G_MEMCPY_INLINE)
1685 if (!
MI->getOperand(3).isImm() || (
MI->getOperand(3).getImm() & ~1LL))
1686 report(
"'tail' flag (operand 3) must be an immediate 0 or 1",
MI);
1690 case TargetOpcode::G_BZERO:
1691 case TargetOpcode::G_MEMSET: {
1693 std::string
Name = Opc == TargetOpcode::G_MEMSET ?
"memset" :
"bzero";
1694 if (MMOs.
size() != 1) {
1695 report(
Twine(
Name,
" must have 1 memory operand"),
MI);
1700 report(
Twine(
Name,
" memory operand must be a store"),
MI);
1704 LLT DstPtrTy =
MRI->getType(
MI->getOperand(0).getReg());
1706 report(
Twine(
Name,
" operand must be a pointer"),
MI);
1711 report(
"inconsistent " +
Twine(
Name,
" address space"),
MI);
1713 if (!
MI->getOperand(
MI->getNumOperands() - 1).isImm() ||
1714 (
MI->getOperand(
MI->getNumOperands() - 1).getImm() & ~1LL))
1715 report(
"'tail' flag (last operand) must be an immediate 0 or 1",
MI);
1719 case TargetOpcode::G_VECREDUCE_SEQ_FADD:
1720 case TargetOpcode::G_VECREDUCE_SEQ_FMUL: {
1721 LLT DstTy =
MRI->getType(
MI->getOperand(0).getReg());
1722 LLT Src1Ty =
MRI->getType(
MI->getOperand(1).getReg());
1723 LLT Src2Ty =
MRI->getType(
MI->getOperand(2).getReg());
1725 report(
"Vector reduction requires a scalar destination type",
MI);
1727 report(
"Sequential FADD/FMUL vector reduction requires a scalar 1st operand",
MI);
1729 report(
"Sequential FADD/FMUL vector reduction must have a vector 2nd operand",
MI);
1732 case TargetOpcode::G_VECREDUCE_FADD:
1733 case TargetOpcode::G_VECREDUCE_FMUL:
1734 case TargetOpcode::G_VECREDUCE_FMAX:
1735 case TargetOpcode::G_VECREDUCE_FMIN:
1736 case TargetOpcode::G_VECREDUCE_FMAXIMUM:
1737 case TargetOpcode::G_VECREDUCE_FMINIMUM:
1738 case TargetOpcode::G_VECREDUCE_ADD:
1739 case TargetOpcode::G_VECREDUCE_MUL:
1740 case TargetOpcode::G_VECREDUCE_AND:
1741 case TargetOpcode::G_VECREDUCE_OR:
1742 case TargetOpcode::G_VECREDUCE_XOR:
1743 case TargetOpcode::G_VECREDUCE_SMAX:
1744 case TargetOpcode::G_VECREDUCE_SMIN:
1745 case TargetOpcode::G_VECREDUCE_UMAX:
1746 case TargetOpcode::G_VECREDUCE_UMIN: {
1747 LLT DstTy =
MRI->getType(
MI->getOperand(0).getReg());
1749 report(
"Vector reduction requires a scalar destination type",
MI);
1753 case TargetOpcode::G_SBFX:
1754 case TargetOpcode::G_UBFX: {
1755 LLT DstTy =
MRI->getType(
MI->getOperand(0).getReg());
1757 report(
"Bitfield extraction is not supported on vectors",
MI);
1762 case TargetOpcode::G_SHL:
1763 case TargetOpcode::G_LSHR:
1764 case TargetOpcode::G_ASHR:
1765 case TargetOpcode::G_ROTR:
1766 case TargetOpcode::G_ROTL: {
1767 LLT Src1Ty =
MRI->getType(
MI->getOperand(1).getReg());
1768 LLT Src2Ty =
MRI->getType(
MI->getOperand(2).getReg());
1770 report(
"Shifts and rotates require operands to be either all scalars or "
1777 case TargetOpcode::G_LLROUND:
1778 case TargetOpcode::G_LROUND: {
1779 verifyAllRegOpsScalar(*
MI, *
MRI);
1782 case TargetOpcode::G_IS_FPCLASS: {
1783 LLT DestTy =
MRI->getType(
MI->getOperand(0).getReg());
1786 report(
"Destination must be a scalar or vector of scalars",
MI);
1789 LLT SrcTy =
MRI->getType(
MI->getOperand(1).getReg());
1792 report(
"Source must be a scalar or vector of scalars",
MI);
1795 if (!verifyVectorElementMatch(DestTy, SrcTy,
MI))
1798 if (!TestMO.
isImm()) {
1799 report(
"floating-point class set (operand 2) must be an immediate",
MI);
1804 report(
"Incorrect floating-point class set (operand 2)",
MI);
1809 case TargetOpcode::G_ASSERT_ALIGN: {
1810 if (
MI->getOperand(2).getImm() < 1)
1811 report(
"alignment immediate must be >= 1",
MI);
1814 case TargetOpcode::G_CONSTANT_POOL: {
1815 if (!
MI->getOperand(1).isCPI())
1816 report(
"Src operand 1 must be a constant pool index",
MI);
1817 if (!
MRI->getType(
MI->getOperand(0).getReg()).isPointer())
1818 report(
"Dst operand 0 must be a pointer",
MI);
1826void MachineVerifier::visitMachineInstrBefore(
const MachineInstr *
MI) {
1829 report(
"Too few operands",
MI);
1831 <<
MI->getNumOperands() <<
" given.\n";
1835 report(
"NoConvergent flag expected only on convergent instructions.",
MI);
1838 if (MF->getProperties().hasProperty(
1840 report(
"Found PHI instruction with NoPHIs property set",
MI);
1843 report(
"Found PHI instruction after non-PHI",
MI);
1844 }
else if (FirstNonPHI ==
nullptr)
1848 if (
MI->isInlineAsm())
1849 verifyInlineAsm(
MI);
1852 if (
TII->isUnspillableTerminator(
MI)) {
1853 if (!
MI->getOperand(0).isReg() || !
MI->getOperand(0).isDef())
1854 report(
"Unspillable Terminator does not define a reg",
MI);
1856 if (
Def.isVirtual() &&
1857 !MF->getProperties().hasProperty(
1859 std::distance(
MRI->use_nodbg_begin(Def),
MRI->use_nodbg_end()) > 1)
1860 report(
"Unspillable Terminator expected to have at most one use!",
MI);
1866 if (
MI->isDebugValue() &&
MI->getNumOperands() == 4)
1867 if (!
MI->getDebugLoc())
1868 report(
"Missing DebugLoc for debug instruction",
MI);
1872 if (
MI->isMetaInstruction() &&
MI->peekDebugInstrNum())
1873 report(
"Metadata instruction should not have a value tracking number",
MI);
1877 if (
Op->isLoad() && !
MI->mayLoad())
1878 report(
"Missing mayLoad flag",
MI);
1879 if (
Op->isStore() && !
MI->mayStore())
1880 report(
"Missing mayStore flag",
MI);
1887 if (
MI->isDebugOrPseudoInstr()) {
1889 report(
"Debug instruction has a slot index",
MI);
1890 }
else if (
MI->isInsideBundle()) {
1892 report(
"Instruction inside bundle has a slot index",
MI);
1895 report(
"Missing slot index",
MI);
1901 verifyPreISelGenericInstruction(
MI);
1910 switch (
MI->getOpcode()) {
1911 case TargetOpcode::COPY: {
1917 LLT DstTy =
MRI->getType(DstReg);
1918 LLT SrcTy =
MRI->getType(SrcReg);
1921 if (SrcTy != DstTy) {
1922 report(
"Copy Instruction is illegal with mismatching types",
MI);
1923 errs() <<
"Def = " << DstTy <<
", Src = " << SrcTy <<
"\n";
1934 unsigned SrcSize = 0;
1935 unsigned DstSize = 0;
1938 TRI->getMinimalPhysRegClassLLT(SrcReg, DstTy);
1940 SrcSize =
TRI->getRegSizeInBits(*SrcRC);
1944 SrcSize =
TRI->getRegSizeInBits(SrcReg, *
MRI);
1948 TRI->getMinimalPhysRegClassLLT(DstReg, SrcTy);
1950 DstSize =
TRI->getRegSizeInBits(*DstRC);
1954 DstSize =
TRI->getRegSizeInBits(DstReg, *
MRI);
1956 if (SrcSize != 0 && DstSize != 0 && SrcSize != DstSize) {
1957 if (!
DstOp.getSubReg() && !
SrcOp.getSubReg()) {
1958 report(
"Copy Instruction is illegal with mismatching sizes",
MI);
1959 errs() <<
"Def Size = " << DstSize <<
", Src Size = " << SrcSize
1965 case TargetOpcode::STATEPOINT: {
1967 if (!
MI->getOperand(SO.getIDPos()).isImm() ||
1968 !
MI->getOperand(SO.getNBytesPos()).isImm() ||
1969 !
MI->getOperand(SO.getNCallArgsPos()).isImm()) {
1970 report(
"meta operands to STATEPOINT not constant!",
MI);
1974 auto VerifyStackMapConstant = [&](
unsigned Offset) {
1975 if (
Offset >=
MI->getNumOperands()) {
1976 report(
"stack map constant to STATEPOINT is out of range!",
MI);
1979 if (!
MI->getOperand(
Offset - 1).isImm() ||
1980 MI->getOperand(
Offset - 1).getImm() != StackMaps::ConstantOp ||
1982 report(
"stack map constant to STATEPOINT not well formed!",
MI);
1984 VerifyStackMapConstant(SO.getCCIdx());
1985 VerifyStackMapConstant(SO.getFlagsIdx());
1986 VerifyStackMapConstant(SO.getNumDeoptArgsIdx());
1987 VerifyStackMapConstant(SO.getNumGCPtrIdx());
1988 VerifyStackMapConstant(SO.getNumAllocaIdx());
1989 VerifyStackMapConstant(SO.getNumGcMapEntriesIdx());
1993 unsigned FirstGCPtrIdx = SO.getFirstGCPtrIdx();
1994 unsigned LastGCPtrIdx = SO.getNumAllocaIdx() - 2;
1995 for (
unsigned Idx = 0;
Idx <
MI->getNumDefs();
Idx++) {
1997 if (!
MI->isRegTiedToUseOperand(
Idx, &UseOpIdx)) {
1998 report(
"STATEPOINT defs expected to be tied",
MI);
2001 if (UseOpIdx < FirstGCPtrIdx || UseOpIdx > LastGCPtrIdx) {
2002 report(
"STATEPOINT def tied to non-gc operand",
MI);
2009 case TargetOpcode::INSERT_SUBREG: {
2010 unsigned InsertedSize;
2011 if (
unsigned SubIdx =
MI->getOperand(2).getSubReg())
2012 InsertedSize =
TRI->getSubRegIdxSize(SubIdx);
2014 InsertedSize =
TRI->getRegSizeInBits(
MI->getOperand(2).getReg(), *
MRI);
2015 unsigned SubRegSize =
TRI->getSubRegIdxSize(
MI->getOperand(3).getImm());
2016 if (SubRegSize < InsertedSize) {
2017 report(
"INSERT_SUBREG expected inserted value to have equal or lesser "
2018 "size than the subreg it was inserted into",
MI);
2022 case TargetOpcode::REG_SEQUENCE: {
2023 unsigned NumOps =
MI->getNumOperands();
2024 if (!(NumOps & 1)) {
2025 report(
"Invalid number of operands for REG_SEQUENCE",
MI);
2029 for (
unsigned I = 1;
I != NumOps;
I += 2) {
2034 report(
"Invalid register operand for REG_SEQUENCE", &RegOp,
I);
2036 if (!SubRegOp.
isImm() || SubRegOp.
getImm() == 0 ||
2037 SubRegOp.
getImm() >=
TRI->getNumSubRegIndices()) {
2038 report(
"Invalid subregister index operand for REG_SEQUENCE",
2043 Register DstReg =
MI->getOperand(0).getReg();
2045 report(
"REG_SEQUENCE does not support physical register results",
MI);
2047 if (
MI->getOperand(0).getSubReg())
2048 report(
"Invalid subreg result for REG_SEQUENCE",
MI);
2056MachineVerifier::visitMachineOperand(
const MachineOperand *MO,
unsigned MONum) {
2060 if (MCID.
getOpcode() == TargetOpcode::PATCHPOINT)
2061 NumDefs = (MONum == 0 && MO->
isReg()) ? NumDefs : 0;
2064 if (MONum < NumDefs) {
2067 report(
"Explicit definition must be a register", MO, MONum);
2069 report(
"Explicit definition marked as use", MO, MONum);
2071 report(
"Explicit definition marked as implicit", MO, MONum);
2080 report(
"Explicit operand marked as def", MO, MONum);
2082 report(
"Explicit operand marked as implicit", MO, MONum);
2088 report(
"Expected a register operand.", MO, MONum);
2092 !
TII->isPCRelRegisterOperandLegal(*MO)))
2093 report(
"Expected a non-register operand.", MO, MONum);
2100 report(
"Tied use must be a register", MO, MONum);
2102 report(
"Operand should be tied", MO, MONum);
2103 else if (
unsigned(TiedTo) !=
MI->findTiedOperandIdx(MONum))
2104 report(
"Tied def doesn't match MCInstrDesc", MO, MONum);
2107 if (!MOTied.
isReg())
2108 report(
"Tied counterpart must be a register", &MOTied, TiedTo);
2111 report(
"Tied physical registers must match.", &MOTied, TiedTo);
2114 report(
"Explicit operand should not be tied", MO, MONum);
2118 report(
"Extra explicit operand on non-variadic instruction", MO, MONum);
2125 if (
MI->isDebugInstr() && MO->
isUse()) {
2127 report(
"Register operand must be marked debug", MO, MONum);
2129 report(
"Register operand must not be marked debug", MO, MONum);
2135 if (
MRI->tracksLiveness() && !
MI->isDebugInstr())
2136 checkLiveness(MO, MONum);
2140 report(
"Undef virtual register def operands require a subregister", MO, MONum);
2144 unsigned OtherIdx =
MI->findTiedOperandIdx(MONum);
2146 if (!OtherMO.
isReg())
2147 report(
"Must be tied to a register", MO, MONum);
2149 report(
"Missing tie flags on tied operand", MO, MONum);
2150 if (
MI->findTiedOperandIdx(OtherIdx) != MONum)
2151 report(
"Inconsistent tie links", MO, MONum);
2155 report(
"Explicit def tied to explicit use without tie constraint",
2159 report(
"Explicit def should be tied to implicit use", MO, MONum);
2172 if (MF->getProperties().hasProperty(
2174 MO->
isUse() &&
MI->isRegTiedToDefOperand(MONum, &DefIdx) &&
2175 Reg !=
MI->getOperand(DefIdx).getReg())
2176 report(
"Two-address instruction operands must be identical", MO, MONum);
2181 if (
Reg.isPhysical()) {
2183 report(
"Illegal subregister index for physical register", MO, MONum);
2188 TII->getRegClass(MCID, MONum,
TRI, *MF)) {
2189 if (!DRC->contains(Reg)) {
2190 report(
"Illegal physical register for instruction", MO, MONum);
2192 <<
TRI->getRegClassName(DRC) <<
" register.\n";
2197 if (
MRI->isReserved(Reg)) {
2198 report(
"isRenamable set on reserved register", MO, MONum);
2215 report(
"Generic virtual register use cannot be undef", MO, MONum);
2222 if (isFunctionTracksDebugUserValues || !MO->
isUse() ||
2223 !
MI->isDebugValue() || !
MRI->def_empty(Reg)) {
2225 if (isFunctionSelected) {
2226 report(
"Generic virtual register invalid in a Selected function",
2232 LLT Ty =
MRI->getType(Reg);
2234 report(
"Generic virtual register must have a valid type", MO,
2243 if (!RegBank && isFunctionRegBankSelected) {
2244 report(
"Generic virtual register must have a bank in a "
2245 "RegBankSelected function",
2251 if (RegBank && Ty.
isValid() &&
2253 report(
"Register bank is too small for virtual register", MO,
2255 errs() <<
"Register bank " << RegBank->
getName() <<
" too small("
2263 report(
"Generic virtual register does not allow subregister index", MO,
2273 TII->getRegClass(MCID, MONum,
TRI, *MF)) {
2274 report(
"Virtual register does not match instruction constraint", MO,
2276 errs() <<
"Expect register class "
2277 <<
TRI->getRegClassName(
2278 TII->getRegClass(MCID, MONum,
TRI, *MF))
2279 <<
" but got nothing\n";
2287 TRI->getSubClassWithSubReg(RC, SubIdx);
2289 report(
"Invalid subregister index for virtual register", MO, MONum);
2290 errs() <<
"Register class " <<
TRI->getRegClassName(RC)
2291 <<
" does not support subreg index " << SubIdx <<
"\n";
2295 report(
"Invalid register class for subregister index", MO, MONum);
2296 errs() <<
"Register class " <<
TRI->getRegClassName(RC)
2297 <<
" does not fully support subreg index " << SubIdx <<
"\n";
2303 TII->getRegClass(MCID, MONum,
TRI, *MF)) {
2306 TRI->getLargestLegalSuperClass(RC, *MF);
2308 report(
"No largest legal super class exists.", MO, MONum);
2311 DRC =
TRI->getMatchingSuperRegClass(SuperRC, DRC, SubIdx);
2313 report(
"No matching super-reg register class.", MO, MONum);
2318 report(
"Illegal virtual register for instruction", MO, MONum);
2319 errs() <<
"Expected a " <<
TRI->getRegClassName(DRC)
2320 <<
" register, but got a " <<
TRI->getRegClassName(RC)
2335 report(
"PHI operand is not in the CFG", MO, MONum);
2346 bool loads =
MI->mayLoad();
2351 for (
auto *MMO :
MI->memoperands()) {
2353 if (PSV ==
nullptr)
continue;
2355 dyn_cast<FixedStackPseudoSourceValue>(PSV);
2356 if (
Value ==
nullptr)
continue;
2357 if (
Value->getFrameIndex() != FI)
continue;
2366 report(
"Missing fixed stack memoperand.",
MI);
2368 if (loads && !LI.
liveAt(
Idx.getRegSlot(
true))) {
2369 report(
"Instruction loads from dead spill slot", MO, MONum);
2370 errs() <<
"Live stack: " << LI <<
'\n';
2373 report(
"Instruction stores to dead spill slot", MO, MONum);
2374 errs() <<
"Live stack: " << LI <<
'\n';
2380 if (MO->
getCFIIndex() >= MF->getFrameInstructions().size())
2381 report(
"CFI instruction has invalid index", MO, MONum);
2389void MachineVerifier::checkLivenessAtUse(
const MachineOperand *MO,
2400 report(
"No live segment at use", MO, MONum);
2401 report_context_liverange(LR);
2402 report_context_vreg_regunit(VRegOrUnit);
2403 report_context(UseIdx);
2406 report(
"Live range continues after kill flag", MO, MONum);
2407 report_context_liverange(LR);
2408 report_context_vreg_regunit(VRegOrUnit);
2410 report_context_lanemask(LaneMask);
2411 report_context(UseIdx);
2415void MachineVerifier::checkLivenessAtDef(
const MachineOperand *MO,
2430 if (((SubRangeCheck || MO->
getSubReg() == 0) && VNI->def != DefIdx) ||
2432 (VNI->def != DefIdx &&
2433 (!VNI->def.isEarlyClobber() || !DefIdx.
isRegister()))) {
2434 report(
"Inconsistent valno->def", MO, MONum);
2435 report_context_liverange(LR);
2436 report_context_vreg_regunit(VRegOrUnit);
2438 report_context_lanemask(LaneMask);
2439 report_context(*VNI);
2440 report_context(DefIdx);
2443 report(
"No live segment at def", MO, MONum);
2444 report_context_liverange(LR);
2445 report_context_vreg_regunit(VRegOrUnit);
2447 report_context_lanemask(LaneMask);
2448 report_context(DefIdx);
2460 if (SubRangeCheck || MO->
getSubReg() == 0) {
2461 report(
"Live range continues after dead def flag", MO, MONum);
2462 report_context_liverange(LR);
2463 report_context_vreg_regunit(VRegOrUnit);
2465 report_context_lanemask(LaneMask);
2471void MachineVerifier::checkLiveness(
const MachineOperand *MO,
unsigned MONum) {
2474 const unsigned SubRegIdx = MO->
getSubReg();
2477 if (LiveInts &&
Reg.isVirtual()) {
2482 report(
"Live interval for subreg operand has no subranges", MO, MONum);
2484 report(
"Virtual register has no live interval", MO, MONum);
2491 addRegWithSubRegs(regsKilled, Reg);
2496 if (LiveVars &&
Reg.isVirtual() && MO->
isKill() &&
2497 !
MI->isBundledWithPred()) {
2500 report(
"Kill missing from LiveVariables", MO, MONum);
2514 if (
Reg.isPhysical() && !isReserved(Reg)) {
2516 if (
MRI->isReservedRegUnit(Unit))
2519 checkLivenessAtUse(MO, MONum, UseIdx, *LR, Unit);
2523 if (
Reg.isVirtual()) {
2525 checkLivenessAtUse(MO, MONum, UseIdx, *LI, Reg);
2529 ?
TRI->getSubRegIndexLaneMask(SubRegIdx)
2530 :
MRI->getMaxLaneMaskForVReg(Reg);
2533 if ((MOMask & SR.LaneMask).none())
2535 checkLivenessAtUse(MO, MONum, UseIdx, SR, Reg, SR.LaneMask);
2538 LiveInMask |= SR.LaneMask;
2541 if ((LiveInMask & MOMask).
none()) {
2542 report(
"No live subrange at use", MO, MONum);
2543 report_context(*LI);
2544 report_context(UseIdx);
2547 if (
MI->isPHI() && LiveInMask != MOMask) {
2548 report(
"Not all lanes of PHI source live at use", MO, MONum);
2549 report_context(*LI);
2550 report_context(UseIdx);
2557 if (!regsLive.count(Reg)) {
2558 if (
Reg.isPhysical()) {
2560 bool Bad = !isReserved(Reg);
2565 if (regsLive.count(
SubReg)) {
2577 if (!MOP.isReg() || !MOP.isImplicit())
2580 if (!MOP.getReg().isPhysical())
2588 report(
"Using an undefined physical register", MO, MONum);
2589 }
else if (
MRI->def_empty(Reg)) {
2590 report(
"Reading virtual register without a def", MO, MONum);
2592 BBInfo &MInfo = MBBInfoMap[
MI->getParent()];
2596 if (MInfo.regsKilled.count(Reg))
2597 report(
"Using a killed virtual register", MO, MONum);
2598 else if (!
MI->isPHI())
2599 MInfo.vregsLiveIn.insert(std::make_pair(Reg,
MI));
2608 addRegWithSubRegs(regsDead, Reg);
2610 addRegWithSubRegs(regsDefined, Reg);
2613 if (
MRI->isSSA() &&
Reg.isVirtual() &&
2614 std::next(
MRI->def_begin(Reg)) !=
MRI->def_end())
2615 report(
"Multiple virtual register defs in SSA form", MO, MONum);
2622 if (
Reg.isVirtual()) {
2623 checkLivenessAtDef(MO, MONum, DefIdx, *LI, Reg);
2627 ?
TRI->getSubRegIndexLaneMask(SubRegIdx)
2628 :
MRI->getMaxLaneMaskForVReg(Reg);
2630 if ((SR.LaneMask & MOMask).none())
2632 checkLivenessAtDef(MO, MONum, DefIdx, SR, Reg,
true, SR.LaneMask);
2644void MachineVerifier::visitMachineBundleAfter(
const MachineInstr *
MI) {
2645 BBInfo &MInfo = MBBInfoMap[
MI->getParent()];
2646 set_union(MInfo.regsKilled, regsKilled);
2647 set_subtract(regsLive, regsKilled); regsKilled.clear();
2649 while (!regMasks.empty()) {
2652 if (
Reg.isPhysical() &&
2654 regsDead.push_back(Reg);
2657 set_union(regsLive, regsDefined); regsDefined.clear();
2662 MBBInfoMap[
MBB].regsLiveOut = regsLive;
2667 if (!(stop > lastIndex)) {
2668 report(
"Block ends before last instruction index",
MBB);
2669 errs() <<
"Block ends at " << stop
2670 <<
" last instruction was at " << lastIndex <<
'\n';
2685 template <
typename RegSetT>
void add(
const RegSetT &FromRegSet) {
2687 filterAndAdd(FromRegSet, VRegsBuffer);
2692 template <
typename RegSetT>
2693 bool filterAndAdd(
const RegSetT &FromRegSet,
2695 unsigned SparseUniverse = Sparse.size();
2696 unsigned NewSparseUniverse = SparseUniverse;
2697 unsigned NewDenseSize =
Dense.size();
2698 size_t Begin = ToVRegs.
size();
2700 if (!
Reg.isVirtual())
2703 if (
Index < SparseUniverseMax) {
2704 if (
Index < SparseUniverse && Sparse.test(
Index))
2706 NewSparseUniverse = std::max(NewSparseUniverse,
Index + 1);
2721 Sparse.resize(NewSparseUniverse);
2722 Dense.reserve(NewDenseSize);
2723 for (
unsigned I = Begin;
I <
End; ++
I) {
2726 if (
Index < SparseUniverseMax)
2735 static constexpr unsigned SparseUniverseMax = 10 * 1024 * 8;
2755class FilteringVRegSet {
2762 template <
typename RegSetT>
void addToFilter(
const RegSetT &RS) {
2767 template <
typename RegSetT>
bool add(
const RegSetT &RS) {
2770 return Filter.filterAndAdd(RS, VRegs);
2775 size_t size()
const {
return VRegs.
size(); }
2782void MachineVerifier::calcRegsPassed() {
2789 FilteringVRegSet VRegs;
2790 BBInfo &
Info = MBBInfoMap[MB];
2793 VRegs.addToFilter(
Info.regsKilled);
2794 VRegs.addToFilter(
Info.regsLiveOut);
2796 const BBInfo &PredInfo = MBBInfoMap[Pred];
2797 if (!PredInfo.reachable)
2800 VRegs.add(PredInfo.regsLiveOut);
2801 VRegs.add(PredInfo.vregsPassed);
2803 Info.vregsPassed.reserve(VRegs.size());
2804 Info.vregsPassed.insert(VRegs.begin(), VRegs.end());
2811void MachineVerifier::calcRegsRequired() {
2814 for (
const auto &
MBB : *MF) {
2815 BBInfo &MInfo = MBBInfoMap[&
MBB];
2817 BBInfo &PInfo = MBBInfoMap[Pred];
2818 if (PInfo.addRequired(MInfo.vregsLiveIn))
2824 for (
unsigned i = 1, e =
MI.getNumOperands(); i != e; i += 2) {
2826 if (!
MI.getOperand(i).isReg() || !
MI.getOperand(i).readsReg())
2833 BBInfo &PInfo = MBBInfoMap[Pred];
2834 if (PInfo.addRequired(Reg))
2842 while (!todo.
empty()) {
2845 BBInfo &MInfo = MBBInfoMap[
MBB];
2849 BBInfo &SInfo = MBBInfoMap[Pred];
2850 if (SInfo.addRequired(MInfo.vregsRequired))
2859 BBInfo &MInfo = MBBInfoMap[&
MBB];
2869 report(
"Expected first PHI operand to be a register def", &MODef, 0);
2874 report(
"Unexpected flag on PHI operand", &MODef, 0);
2877 report(
"Expected first PHI operand to be a virtual register", &MODef, 0);
2879 for (
unsigned I = 1,
E =
Phi.getNumOperands();
I !=
E;
I += 2) {
2882 report(
"Expected PHI operand to be a register", &MO0,
I);
2887 report(
"Unexpected flag on PHI operand", &MO0,
I);
2891 report(
"Expected PHI operand to be a basic block", &MO1,
I + 1);
2897 report(
"PHI input is not a predecessor block", &MO1,
I + 1);
2901 if (MInfo.reachable) {
2903 BBInfo &PrInfo = MBBInfoMap[&Pre];
2904 if (!MO0.
isUndef() && PrInfo.reachable &&
2905 !PrInfo.isLiveOut(MO0.
getReg()))
2906 report(
"PHI operand is not live-out from predecessor", &MO0,
I);
2911 if (MInfo.reachable) {
2913 if (!seen.
count(Pred)) {
2914 report(
"Missing PHI operand", &Phi);
2916 <<
" is a predecessor according to the CFG.\n";
2923void MachineVerifier::visitMachineFunctionAfter() {
2933 for (
const auto &
MBB : *MF) {
2934 BBInfo &MInfo = MBBInfoMap[&
MBB];
2935 for (
Register VReg : MInfo.vregsRequired)
2936 if (MInfo.regsKilled.count(VReg)) {
2937 report(
"Virtual register killed in block, but needed live out.", &
MBB);
2939 <<
" is used after the block.\n";
2944 BBInfo &MInfo = MBBInfoMap[&MF->front()];
2945 for (
Register VReg : MInfo.vregsRequired) {
2946 report(
"Virtual register defs don't dominate all uses.", MF);
2947 report_context_vreg(VReg);
2952 verifyLiveVariables();
2954 verifyLiveIntervals();
2963 if (
MRI->tracksLiveness())
2964 for (
const auto &
MBB : *MF)
2968 if (hasAliases || isAllocatable(LiveInReg) || isReserved(LiveInReg))
2971 BBInfo &PInfo = MBBInfoMap[Pred];
2972 if (!PInfo.regsLiveOut.count(LiveInReg)) {
2973 report(
"Live in register not found to be live out from predecessor.",
2975 errs() <<
TRI->getName(LiveInReg)
2976 <<
" not found to be live out from "
2982 for (
auto CSInfo : MF->getCallSitesInfo())
2983 if (!CSInfo.first->isCall())
2984 report(
"Call site info referencing instruction that is not call", MF);
2988 if (MF->getFunction().getSubprogram()) {
2990 for (
const auto &
MBB : *MF) {
2991 for (
const auto &
MI :
MBB) {
2992 if (
auto Num =
MI.peekDebugInstrNum()) {
2995 report(
"Instruction has a duplicated value tracking number", &
MI);
3002void MachineVerifier::verifyLiveVariables() {
3003 assert(LiveVars &&
"Don't call verifyLiveVariables without LiveVars");
3004 for (
unsigned I = 0,
E =
MRI->getNumVirtRegs();
I !=
E; ++
I) {
3007 for (
const auto &
MBB : *MF) {
3008 BBInfo &MInfo = MBBInfoMap[&
MBB];
3011 if (MInfo.vregsRequired.count(Reg)) {
3013 report(
"LiveVariables: Block missing from AliveBlocks", &
MBB);
3015 <<
" must be live through the block.\n";
3019 report(
"LiveVariables: Block should not be in AliveBlocks", &
MBB);
3021 <<
" is not needed live through the block.\n";
3028void MachineVerifier::verifyLiveIntervals() {
3029 assert(LiveInts &&
"Don't call verifyLiveIntervals without LiveInts");
3030 for (
unsigned I = 0,
E =
MRI->getNumVirtRegs();
I !=
E; ++
I) {
3034 if (
MRI->reg_nodbg_empty(Reg))
3038 report(
"Missing live interval for virtual register", MF);
3044 assert(Reg == LI.
reg() &&
"Invalid reg to interval mapping");
3045 verifyLiveInterval(LI);
3049 for (
unsigned i = 0, e =
TRI->getNumRegUnits(); i != e; ++i)
3051 verifyLiveRange(*LR, i);
3054void MachineVerifier::verifyLiveRangeValue(
const LiveRange &LR,
3063 report(
"Value not live at VNInfo def and not marked unused", MF);
3064 report_context(LR, Reg, LaneMask);
3065 report_context(*VNI);
3069 if (DefVNI != VNI) {
3070 report(
"Live segment at def has different VNInfo", MF);
3071 report_context(LR, Reg, LaneMask);
3072 report_context(*VNI);
3078 report(
"Invalid VNInfo definition index", MF);
3079 report_context(LR, Reg, LaneMask);
3080 report_context(*VNI);
3086 report(
"PHIDef VNInfo is not defined at MBB start",
MBB);
3087 report_context(LR, Reg, LaneMask);
3088 report_context(*VNI);
3096 report(
"No instruction at VNInfo def index",
MBB);
3097 report_context(LR, Reg, LaneMask);
3098 report_context(*VNI);
3103 bool hasDef =
false;
3104 bool isEarlyClobber =
false;
3106 if (!MOI->isReg() || !MOI->isDef())
3108 if (
Reg.isVirtual()) {
3109 if (MOI->getReg() != Reg)
3112 if (!MOI->getReg().isPhysical() || !
TRI->hasRegUnit(MOI->getReg(), Reg))
3115 if (LaneMask.
any() &&
3116 (
TRI->getSubRegIndexLaneMask(MOI->getSubReg()) & LaneMask).none())
3119 if (MOI->isEarlyClobber())
3120 isEarlyClobber =
true;
3124 report(
"Defining instruction does not modify register",
MI);
3125 report_context(LR, Reg, LaneMask);
3126 report_context(*VNI);
3131 if (isEarlyClobber) {
3133 report(
"Early clobber def must be at an early-clobber slot",
MBB);
3134 report_context(LR, Reg, LaneMask);
3135 report_context(*VNI);
3138 report(
"Non-PHI, non-early clobber def must be at a register slot",
MBB);
3139 report_context(LR, Reg, LaneMask);
3140 report_context(*VNI);
3145void MachineVerifier::verifyLiveRangeSegment(
const LiveRange &LR,
3151 assert(VNI &&
"Live segment has no valno");
3154 report(
"Foreign valno in live segment", MF);
3155 report_context(LR, Reg, LaneMask);
3157 report_context(*VNI);
3161 report(
"Live segment valno is marked unused", MF);
3162 report_context(LR, Reg, LaneMask);
3168 report(
"Bad start of live segment, no basic block", MF);
3169 report_context(LR, Reg, LaneMask);
3175 report(
"Live segment must begin at MBB entry or valno def",
MBB);
3176 report_context(LR, Reg, LaneMask);
3183 report(
"Bad end of live segment, no basic block", MF);
3184 report_context(LR, Reg, LaneMask);
3200 report(
"Live segment doesn't end at a valid instruction", EndMBB);
3201 report_context(LR, Reg, LaneMask);
3208 report(
"Live segment ends at B slot of an instruction", EndMBB);
3209 report_context(LR, Reg, LaneMask);
3217 report(
"Live segment ending at dead slot spans instructions", EndMBB);
3218 report_context(LR, Reg, LaneMask);
3227 if (MF->getProperties().hasProperty(
3230 if (
I + 1 == LR.
end() || (
I + 1)->start != S.
end) {
3231 report(
"Live segment ending at early clobber slot must be "
3232 "redefined by an EC def in the same instruction",
3234 report_context(LR, Reg, LaneMask);
3241 if (
Reg.isVirtual()) {
3244 bool hasRead =
false;
3245 bool hasSubRegDef =
false;
3246 bool hasDeadDef =
false;
3248 if (!MOI->isReg() || MOI->getReg() != Reg)
3250 unsigned Sub = MOI->getSubReg();
3255 hasSubRegDef =
true;
3264 if (LaneMask.
any() && (LaneMask & SLM).none())
3266 if (MOI->readsReg())
3273 if (LaneMask.
none() && !hasDeadDef) {
3275 "Instruction ending live segment on dead slot has no dead flag",
3277 report_context(LR, Reg, LaneMask);
3284 if (!
MRI->shouldTrackSubRegLiveness(Reg) || LaneMask.
any() ||
3286 report(
"Instruction ending live segment doesn't read the register",
3288 report_context(LR, Reg, LaneMask);
3308 if (LaneMask.
any()) {
3316 if (!
Reg.isVirtual() && MFI->isEHPad()) {
3317 if (&*MFI == EndMBB)
3331 if (MFI->isEHPad()) {
3345 if (!PVNI && (LaneMask.
none() || !IsPHI)) {
3348 report(
"Register not marked live out of predecessor", Pred);
3349 report_context(LR, Reg, LaneMask);
3350 report_context(*VNI);
3358 if (!IsPHI && PVNI != VNI) {
3359 report(
"Different value live out of predecessor", Pred);
3360 report_context(LR, Reg, LaneMask);
3361 errs() <<
"Valno #" << PVNI->
id <<
" live out of "
3367 if (&*MFI == EndMBB)
3376 verifyLiveRangeValue(LR, VNI, Reg, LaneMask);
3379 verifyLiveRangeSegment(LR,
I, Reg, LaneMask);
3382void MachineVerifier::verifyLiveInterval(
const LiveInterval &LI) {
3385 verifyLiveRange(LI, Reg);
3391 if ((Mask & SR.LaneMask).any()) {
3392 report(
"Lane masks of sub ranges overlap in live interval", MF);
3395 if ((SR.LaneMask & ~MaxMask).any()) {
3396 report(
"Subrange lanemask is invalid", MF);
3400 report(
"Subrange must not be empty", MF);
3401 report_context(SR, LI.
reg(), SR.LaneMask);
3403 Mask |= SR.LaneMask;
3404 verifyLiveRange(SR, LI.
reg(), SR.LaneMask);
3406 report(
"A Subrange is not covered by the main range", MF);
3414 unsigned NumComp = ConEQ.Classify(LI);
3416 report(
"Multiple connected components in live interval", MF);
3418 for (
unsigned comp = 0; comp != NumComp; ++comp) {
3419 errs() << comp <<
": valnos";
3421 if (comp == ConEQ.getEqClass(
I))
3422 errs() <<
' ' <<
I->id;
3434 struct StackStateOfBB {
3435 StackStateOfBB() =
default;
3436 StackStateOfBB(
int EntryVal,
int ExitVal,
bool EntrySetup,
bool ExitSetup) :
3437 EntryValue(EntryVal), ExitValue(ExitVal), EntryIsSetup(EntrySetup),
3438 ExitIsSetup(ExitSetup) {}
3443 bool EntryIsSetup =
false;
3444 bool ExitIsSetup =
false;
3452void MachineVerifier::verifyStackFrame() {
3453 unsigned FrameSetupOpcode =
TII->getCallFrameSetupOpcode();
3454 unsigned FrameDestroyOpcode =
TII->getCallFrameDestroyOpcode();
3455 if (FrameSetupOpcode == ~0u && FrameDestroyOpcode == ~0u)
3459 SPState.
resize(MF->getNumBlockIDs());
3466 DFI != DFE; ++DFI) {
3469 StackStateOfBB BBState;
3471 if (DFI.getPathLength() >= 2) {
3474 "DFS stack predecessor is already visited.\n");
3475 BBState.EntryValue = SPState[StackPred->
getNumber()].ExitValue;
3476 BBState.EntryIsSetup = SPState[StackPred->
getNumber()].ExitIsSetup;
3477 BBState.ExitValue = BBState.EntryValue;
3478 BBState.ExitIsSetup = BBState.EntryIsSetup;
3482 report(
"Call frame size on entry does not match value computed from "
3486 <<
" does not match value computed from predecessor "
3487 << -BBState.EntryValue <<
'\n';
3491 for (
const auto &
I : *
MBB) {
3492 if (
I.getOpcode() == FrameSetupOpcode) {
3493 if (BBState.ExitIsSetup)
3494 report(
"FrameSetup is after another FrameSetup", &
I);
3495 BBState.ExitValue -=
TII->getFrameTotalSize(
I);
3496 BBState.ExitIsSetup =
true;
3499 if (
I.getOpcode() == FrameDestroyOpcode) {
3500 int Size =
TII->getFrameTotalSize(
I);
3501 if (!BBState.ExitIsSetup)
3502 report(
"FrameDestroy is not after a FrameSetup", &
I);
3503 int AbsSPAdj = BBState.ExitValue < 0 ? -BBState.ExitValue :
3505 if (BBState.ExitIsSetup && AbsSPAdj !=
Size) {
3506 report(
"FrameDestroy <n> is after FrameSetup <m>", &
I);
3507 errs() <<
"FrameDestroy <" <<
Size <<
"> is after FrameSetup <"
3508 << AbsSPAdj <<
">.\n";
3510 BBState.ExitValue +=
Size;
3511 BBState.ExitIsSetup =
false;
3519 if (Reachable.
count(Pred) &&
3520 (SPState[Pred->
getNumber()].ExitValue != BBState.EntryValue ||
3521 SPState[Pred->
getNumber()].ExitIsSetup != BBState.EntryIsSetup)) {
3522 report(
"The exit stack state of a predecessor is inconsistent.",
MBB);
3524 <<
" has exit state (" << SPState[Pred->
getNumber()].ExitValue
3525 <<
", " << SPState[Pred->
getNumber()].ExitIsSetup <<
"), while "
3527 << BBState.EntryValue <<
", " << BBState.EntryIsSetup <<
").\n";
3534 if (Reachable.
count(Succ) &&
3535 (SPState[Succ->getNumber()].EntryValue != BBState.ExitValue ||
3536 SPState[Succ->getNumber()].EntryIsSetup != BBState.ExitIsSetup)) {
3537 report(
"The entry stack state of a successor is inconsistent.",
MBB);
3539 <<
" has entry state (" << SPState[Succ->getNumber()].EntryValue
3540 <<
", " << SPState[Succ->getNumber()].EntryIsSetup <<
"), while "
3542 << BBState.ExitValue <<
", " << BBState.ExitIsSetup <<
").\n";
3548 if (BBState.ExitIsSetup)
3549 report(
"A return block ends with a FrameSetup.",
MBB);
3550 if (BBState.ExitValue)
3551 report(
"A return block ends with a nonzero stack adjustment.",
MBB);
unsigned const MachineRegisterInfo * MRI
MachineBasicBlock MachineBasicBlock::iterator MBBI
static bool isLoad(int Opcode)
static bool isStore(int Opcode)
This file implements the BitVector class.
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
Analysis containing CSE Info
This file contains the declarations for the subclasses of Constant, which represent the different fla...
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 defines the DenseSet and SmallDenseSet classes.
This file builds on the ADT/GraphTraits.h file to build generic depth first graph iterator.
Declares convenience wrapper classes for interpreting MachineInstr instances as specific generic oper...
const HexagonInstrInfo * TII
A common definition of LaneBitmask for use in TableGen and CodeGen.
Implement a low-level type suitable for MachineInstr level instruction selection.
unsigned const TargetRegisterInfo * TRI
modulo schedule Modulo Schedule test pass
const char LLVMTargetMachineRef TM
#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.
const SmallVectorImpl< MachineOperand > MachineBasicBlock * TBB
const SmallVectorImpl< MachineOperand > & Cond
static bool isValid(const char C)
Returns true if C is a valid mangled character: <0-9a-zA-Z_>.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
static bool isLiveOut(const MachineBasicBlock &MBB, unsigned Reg)
This file defines generic set operations that may be used on set's of different types,...
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
static unsigned getSize(unsigned Kind)
const fltSemantics & getSemantics() const
Represent the analysis usage information of a pass.
AnalysisUsage & addUsedIfAvailable()
Add the specified Pass class to the set of analyses used by this pass.
void setPreservesAll()
Set by analyses that do not transform their input at all.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
size_t size() const
size - Get the array size.
LLVM Basic Block Representation.
bool hasAddressTaken() const
Returns true if there are any uses of this basic block other than direct branches,...
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...
bool test(unsigned Idx) const
void clear()
clear - Removes all bits from the bitvector.
iterator_range< const_set_bits_iterator > set_bits() const
size_type size() const
size - Returns the number of bits in this bitvector.
ConnectedVNInfoEqClasses - Helper class that can divide VNInfos in a LiveInterval into equivalence cl...
ConstMIBundleOperands - Iterate over all operands in a const bundle of machine instructions.
ConstantFP - Floating Point Values [float, double].
const APFloat & getValueAPF() const
This is the shared class of boolean and integer constants.
unsigned getBitWidth() const
getBitWidth - Return the bitwidth of this constant.
This class represents an Operation in the Expression.
std::pair< iterator, bool > insert(const std::pair< KeyT, ValueT > &KV)
Implements a dense probed hash-table based set.
Base class for user error types.
A specialized PseudoSourceValue for holding FixedStack values, which must include a frame index.
FunctionPass class - This class is used to implement most global optimizations.
bool isPredicated(const MachineInstr &MI) const override
Returns true if the instruction is already predicated.
bool analyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB, MachineBasicBlock *&FBB, SmallVectorImpl< MachineOperand > &Cond, bool AllowModify) const override
Analyze the branching code at the end of MBB, returning true if it cannot be understood (e....
constexpr unsigned getScalarSizeInBits() const
constexpr bool isScalar() const
constexpr bool isValid() const
constexpr uint16_t getNumElements() const
Returns the number of elements in a vector LLT.
constexpr bool isVector() const
constexpr TypeSize getSizeInBits() const
Returns the total size of the type. Must only be called on sized types.
constexpr bool isPointer() const
constexpr LLT getElementType() const
Returns the vector's element type. Only valid for vector types.
constexpr unsigned getAddressSpace() const
constexpr LLT getScalarType() const
constexpr TypeSize getSizeInBytes() const
Returns the total size of the type in bytes, i.e.
A live range for subregisters.
LiveInterval - This class represents the liveness of a register, or stack slot.
bool hasSubRanges() const
Returns true if subregister liveness information is available.
iterator_range< subrange_iterator > subranges()
void computeSubRangeUndefs(SmallVectorImpl< SlotIndex > &Undefs, LaneBitmask LaneMask, const MachineRegisterInfo &MRI, const SlotIndexes &Indexes) const
For a given lane mask LaneMask, compute indexes at which the lane is marked undefined by subregister ...
bool hasInterval(Register Reg) const
SlotIndex getMBBStartIdx(const MachineBasicBlock *mbb) const
Return the first index in the given basic block.
MachineInstr * getInstructionFromIndex(SlotIndex index) const
Returns the instruction associated with the given index.
SlotIndex getInstructionIndex(const MachineInstr &Instr) const
Returns the base index of the given instruction.
SlotIndex getMBBEndIdx(const MachineBasicBlock *mbb) const
Return the last index in the given basic block.
LiveRange * getCachedRegUnit(unsigned Unit)
Return the live range for register unit Unit if it has already been computed, or nullptr if it hasn't...
LiveInterval & getInterval(Register Reg)
bool isNotInMIMap(const MachineInstr &Instr) const
Returns true if the specified machine instr has been removed or was never entered in the map.
MachineBasicBlock * getMBBFromIndex(SlotIndex index) const
bool isLiveInToMBB(const LiveRange &LR, const MachineBasicBlock *mbb) const
void print(raw_ostream &O, const Module *=nullptr) const override
Implement the dump method.
Result of a LiveRange query.
bool isDeadDef() const
Return true if this instruction has a dead def.
VNInfo * valueIn() const
Return the value that is live-in to the instruction.
VNInfo * valueOut() const
Return the value leaving the instruction, if any.
bool isKill() const
Return true if the live-in value is killed by this instruction.
static LLVM_ATTRIBUTE_UNUSED bool isJointlyDominated(const MachineBasicBlock *MBB, ArrayRef< SlotIndex > Defs, const SlotIndexes &Indexes)
A diagnostic function to check if the end of the block MBB is jointly dominated by the blocks corresp...
This class represents the liveness of a register, stack slot, etc.
VNInfo * getValNumInfo(unsigned ValNo)
getValNumInfo - Returns pointer to the specified val#.
bool liveAt(SlotIndex index) const
bool covers(const LiveRange &Other) const
Returns true if all segments of the Other live range are completely covered by this live range.
LiveQueryResult Query(SlotIndex Idx) const
Query Liveness at Idx.
VNInfo * getVNInfoBefore(SlotIndex Idx) const
getVNInfoBefore - Return the VNInfo that is live up to but not necessarilly including Idx,...
unsigned getNumValNums() const
VNInfo * getVNInfoAt(SlotIndex Idx) const
getVNInfoAt - Return the VNInfo that is live at Idx, or NULL.
LiveInterval & getInterval(int Slot)
bool hasInterval(int Slot) const
VarInfo & getVarInfo(Register Reg)
getVarInfo - Return the VarInfo structure for the specified VIRTUAL register.
This class is intended to be used as a base class for asm properties and features specific to the tar...
ExceptionHandling getExceptionHandlingType() const
Describe properties that are true of each instruction in the target description file.
unsigned getNumOperands() const
Return the number of declared MachineOperands for this MachineInstruction.
ArrayRef< MCOperandInfo > operands() const
unsigned getNumDefs() const
Return the number of MachineOperands that are register definitions.
bool isConvergent() const
Return true if this instruction is convergent.
bool variadicOpsAreDefs() const
Return true if variadic operands of this instruction are definitions.
int getOperandConstraint(unsigned OpNum, MCOI::OperandConstraint Constraint) const
Returns the value of the specified operand constraint if it is present.
unsigned getOpcode() const
Return the opcode number for this descriptor.
This holds information about one operand of a machine instruction, indicating the register class for ...
bool isOptionalDef() const
Set if this operand is a optional def.
uint8_t OperandType
Information about the type of the operand.
MCRegAliasIterator enumerates all registers aliasing Reg.
bool isValid() const
isValid - Returns true until all the operands have been visited.
bool isInlineAsmBrIndirectTarget() const
Returns true if this is the indirect dest of an INLINEASM_BR.
unsigned pred_size() const
bool isEHPad() const
Returns true if the block is a landing pad.
iterator_range< livein_iterator > liveins() const
iterator_range< iterator > phis()
Returns a range that iterates over the phis in the basic block.
int getNumber() const
MachineBasicBlocks are uniquely numbered at the function level, unless they're not in a MachineFuncti...
const BasicBlock * getBasicBlock() const
Return the LLVM basic block that this instance corresponded to originally.
succ_iterator succ_begin()
bool isIRBlockAddressTaken() const
Test whether this block is the target of an IR BlockAddress.
unsigned succ_size() const
BasicBlock * getAddressTakenIRBlock() const
Retrieves the BasicBlock which corresponds to this MachineBasicBlock.
bool isPredecessor(const MachineBasicBlock *MBB) const
Return true if the specified MBB is a predecessor of this block.
pred_iterator pred_begin()
const MachineFunction * getParent() const
Return the MachineFunction containing this basic block.
unsigned getCallFrameSize() const
Return the call frame size on entry to this basic block.
iterator_range< succ_iterator > successors()
bool isSuccessor(const MachineBasicBlock *MBB) const
Return true if the specified MBB is a successor of this block.
iterator_range< pred_iterator > predecessors()
StringRef getName() const
Return the name of the corresponding LLVM basic block, or an empty string.
The MachineFrameInfo class represents an abstract stack frame until prolog/epilog code is inserted.
BitVector getPristineRegs(const MachineFunction &MF) const
Return a set of physical registers that are pristine.
An AnalysisManager<MachineFunction> that also exposes IR analysis results.
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
virtual bool runOnMachineFunction(MachineFunction &MF)=0
runOnMachineFunction - This method must be overloaded to perform the desired machine code transformat...
bool hasProperty(Property P) const
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
StringRef getName() const
getName - Return the name of the corresponding LLVM function.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
const LLVMTargetMachine & getTarget() const
getTarget - Return the target machine this machine code is compiled with
const MachineFunctionProperties & getProperties() const
Get the function properties.
const MachineBasicBlock & front() const
bool verify(Pass *p=nullptr, const char *Banner=nullptr, bool AbortOnError=true) const
Run the current MachineFunction through the machine code verifier, useful for debugger use.
void print(raw_ostream &OS, const SlotIndexes *=nullptr) const
print - Print out the MachineFunction in a format suitable for debugging to the specified stream.
Representation of each machine instruction.
unsigned getOpcode() const
Returns the opcode of this MachineInstr.
bool isReturn(QueryType Type=AnyInBundle) const
bool isTerminator(QueryType Type=AnyInBundle) const
Returns true if this instruction part of the terminator for a basic block.
bool isBarrier(QueryType Type=AnyInBundle) const
Returns true if the specified instruction stops control flow from executing the instruction immediate...
A description of a memory reference used in the backend.
const PseudoSourceValue * getPseudoValue() const
uint64_t getSize() const
Return the size in bytes of the memory reference.
AtomicOrdering getSuccessOrdering() const
Return the atomic ordering requirements for this memory operation.
uint64_t getSizeInBits() const
Return the size in bits of the memory reference.
MachineOperand class - Representation of each machine instruction operand.
unsigned getSubReg() const
bool readsReg() const
readsReg - Returns true if this operand reads the previous value of its register.
bool isIntrinsicID() const
bool isReg() const
isReg - Tests if this is a MO_Register operand.
MachineBasicBlock * getMBB() const
ArrayRef< int > getShuffleMask() const
bool isImm() const
isImm - Tests if this is a MO_Immediate operand.
bool isShuffleMask() const
unsigned getCFIIndex() const
bool isRenamable() const
isRenamable - Returns true if this register may be renamed, i.e.
MachineInstr * getParent()
getParent - Return the instruction that this operand belongs to.
MachineOperandType getType() const
getType - Returns the MachineOperandType for this operand.
bool isEarlyClobber() const
Register getReg() const
getReg - Returns the register number.
bool isInternalRead() const
bool isFI() const
isFI - Tests if this is a MO_FrameIndex operand.
static bool clobbersPhysReg(const uint32_t *RegMask, MCRegister PhysReg)
clobbersPhysReg - Returns true if this RegMask clobbers PhysReg.
const uint32_t * getRegMask() const
getRegMask - Returns a bit mask of registers preserved by this RegMask operand.
void print(raw_ostream &os, const TargetRegisterInfo *TRI=nullptr, const TargetIntrinsicInfo *IntrinsicInfo=nullptr) const
Print the MachineOperand to os.
@ MO_CFIIndex
MCCFIInstruction index.
@ MO_RegisterMask
Mask of preserved registers.
@ MO_MachineBasicBlock
MachineBasicBlock reference.
@ MO_FrameIndex
Abstract Stack Frame Index.
@ MO_Register
Register operand.
bool isMBB() const
isMBB - Tests if this is a MO_MachineBasicBlock operand.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
Pass interface - Implemented by all 'passes'.
virtual void print(raw_ostream &OS, const Module *M) const
print - Print out the internal state of the pass.
AnalysisType * getAnalysisIfAvailable() const
getAnalysisIfAvailable<AnalysisType>() - Subclasses use this function to get analysis information tha...
Special value supplied for machine level alias analysis.
Holds all the information related to register banks.
const RegisterBank & getRegBank(unsigned ID)
Get the register bank identified by ID.
unsigned getMaximumSize(unsigned RegBankID) const
Get the maximum size in bits that fits in the given register bank.
This class implements the register bank concept.
const char * getName() const
Get a user friendly name of this register bank.
unsigned getID() const
Get the identifier of this register bank.
Wrapper class representing virtual and physical registers.
static Register index2VirtReg(unsigned Index)
Convert a 0-based index to a virtual register number.
static unsigned virtReg2Index(Register Reg)
Convert a virtual register number to a 0-based index.
constexpr bool isVirtual() const
Return true if the specified register number is in the virtual register namespace.
static constexpr bool isPhysicalRegister(unsigned Reg)
Return true if the specified register number is in the physical register namespace.
constexpr bool isPhysical() const
Return true if the specified register number is in the physical register namespace.
SlotIndex - An opaque wrapper around machine indexes.
static bool isSameInstr(SlotIndex A, SlotIndex B)
isSameInstr - Return true if A and B refer to the same instruction.
bool isBlock() const
isBlock - Returns true if this is a block boundary slot.
SlotIndex getDeadSlot() const
Returns the dead def kill slot for the current instruction.
bool isEarlyClobber() const
isEarlyClobber - Returns true if this is an early-clobber slot.
bool isRegister() const
isRegister - Returns true if this is a normal register use/def slot.
SlotIndex getBoundaryIndex() const
Returns the boundary index for associated with this index.
SlotIndex getPrevSlot() const
Returns the previous slot in the index list.
SlotIndex getRegSlot(bool EC=false) const
Returns the register use/def slot in the current instruction for a normal or early-clobber def.
bool isDead() const
isDead - Returns true if this is a dead def kill slot.
SlotIndex getMBBEndIdx(unsigned Num) const
Returns the last index in the given basic block number.
MBBIndexIterator MBBIndexBegin() const
Returns an iterator for the begin of the idx2MBBMap.
MBBIndexIterator MBBIndexEnd() const
Return an iterator for the end of the idx2MBBMap.
SmallVectorImpl< IdxMBBPair >::const_iterator MBBIndexIterator
Iterator over the idx2MBBMap (sorted pairs of slot index of basic block begin and basic block)
SlotIndex getInstructionIndex(const MachineInstr &MI, bool IgnoreBundle=false) const
Returns the base index for the given instruction.
SlotIndex getMBBStartIdx(unsigned Num) const
Returns the first index in the given basic block number.
bool hasIndex(const MachineInstr &instr) const
Returns true if the given machine instr is mapped to an index, otherwise returns false.
bool erase(PtrType Ptr)
erase - If the set contains the specified pointer, remove it and return true, otherwise return false.
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.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
MI-level Statepoint operands.
StringRef - Represent a constant reference to a string, i.e.
TargetInstrInfo - Interface to description of machine instruction set.
Primary interface to the complete machine description for the target machine.
bool hasSuperClassEq(const TargetRegisterClass *RC) const
Returns true if RC is a super-class of or equal to this class.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
virtual const TargetRegisterInfo * getRegisterInfo() const
getRegisterInfo - If register information is available, return it.
virtual const RegisterBankInfo * getRegBankInfo() const
If the information for the register banks is available, return it.
virtual const TargetInstrInfo * getInstrInfo() const
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
VNInfo - Value Number Information.
bool isUnused() const
Returns true if this value is unused.
unsigned id
The ID number of this value.
SlotIndex def
The index of the defining instruction.
bool isPHIDef() const
Returns true if this value is defined by a PHI instruction (or was, PHI instructions may have been el...
LLVM Value Representation.
std::pair< iterator, bool > insert(const ValueT &V)
Iterator for intrusive lists based on ilist_node.
self_iterator getIterator()
NodeTy * getNextNode()
Get the next node, or nullptr for the list tail.
constexpr char Attrs[]
Key for Kernel::Metadata::mAttrs.
const CustomOperand< const MCSubtargetInfo & > Msg[]
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.
AttributeList getAttributes(LLVMContext &C, ID id)
Return the attributes for an intrinsic.
Reg
All possible values of the reg field in the ModR/M byte.
NodeAddr< PhiNode * > Phi
NodeAddr< DefNode * > Def
const_iterator begin(StringRef path, Style style=Style::native)
Get begin iterator over path.
const_iterator end(StringRef path)
Get end iterator over path.
This is an optimization pass for GlobalISel generic memory operations.
auto drop_begin(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the first N elements excluded.
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.
@ SjLj
setjmp/longjmp based exceptions
bool isPreISelGenericOpcode(unsigned Opcode)
Check whether the given Opcode is a generic opcode that is not supposed to appear after ISel.
Printable printRegUnit(unsigned Unit, const TargetRegisterInfo *TRI)
Create Printable object to print register units on a raw_ostream.
void append_range(Container &C, Range &&R)
Wrapper function to append a range to a container.
void set_subtract(S1Ty &S1, const S2Ty &S2)
set_subtract(A, B) - Compute A := A - B
Printable PrintLaneMask(LaneBitmask LaneMask)
Create Printable object to print LaneBitmasks on a raw_ostream.
bool isPreISelGenericOptimizationHint(unsigned Opcode)
bool isScopedEHPersonality(EHPersonality Pers)
Returns true if this personality uses scope-style EH IR instructions: catchswitch,...
void initializeMachineVerifierPassPass(PassRegistry &)
auto reverse(ContainerTy &&C)
detail::ValueMatchesPoly< M > HasValue(M Matcher)
df_ext_iterator< T, SetTy > df_ext_begin(const T &G, SetTy &S)
bool none_of(R &&Range, UnaryPredicate P)
Provide wrappers to std::none_of which take ranges instead of having to pass begin/end explicitly.
void report_fatal_error(Error Err, bool gen_crash_diag=true)
Report a serious error, calling any installed error handler.
bool set_union(S1Ty &S1, const S2Ty &S2)
set_union(A, B) - Compute A := A u B, return whether A changed.
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.
AtomicOrdering
Atomic ordering for LLVM's memory model.
void verifyMachineFunction(MachineFunctionAnalysisManager *, const std::string &Banner, const MachineFunction &MF)
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
df_ext_iterator< T, SetTy > df_ext_end(const T &G, SetTy &S)
Printable printReg(Register Reg, const TargetRegisterInfo *TRI=nullptr, unsigned SubIdx=0, const MachineRegisterInfo *MRI=nullptr)
Prints virtual and physical registers with or without a TRI instance.
Printable printMBBReference(const MachineBasicBlock &MBB)
Prints a machine basic block reference.
FunctionPass * createMachineVerifierPass(const std::string &Banner)
createMachineVerifierPass - This pass verifies cenerated machine code instructions for correctness.
Implement std::hash so that hash_code can be used in STL containers.
static unsigned getSizeInBits(const fltSemantics &Sem)
Returns the size of the floating point number (in bits) in the given semantics.
static constexpr LaneBitmask getAll()
constexpr bool none() const
constexpr bool any() const
static constexpr LaneBitmask getNone()
This represents a simple continuous liveness interval for a value.
VarInfo - This represents the regions where a virtual register is live in the program.
Pair of physical register and lane mask.