LLVM 23.0.0git
MachineVerifier.cpp
Go to the documentation of this file.
1//===- MachineVerifier.cpp - Machine Code Verifier ------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// Pass to verify generated machine code. The following is checked:
10//
11// Operand counts: All explicit operands must be present.
12//
13// Register classes: All physical and virtual register operands must be
14// compatible with the register class required by the instruction descriptor.
15//
16// Register live intervals: Registers must be defined only once, and must be
17// defined before use.
18//
19// The machine code verifier is enabled with the command-line option
20// -verify-machineinstrs.
21//===----------------------------------------------------------------------===//
22
24#include "llvm/ADT/BitVector.h"
25#include "llvm/ADT/DenseMap.h"
26#include "llvm/ADT/DenseSet.h"
29#include "llvm/ADT/STLExtras.h"
33#include "llvm/ADT/StringRef.h"
34#include "llvm/ADT/Twine.h"
64#include "llvm/IR/BasicBlock.h"
65#include "llvm/IR/Constants.h"
67#include "llvm/IR/Function.h"
68#include "llvm/IR/InlineAsm.h"
71#include "llvm/MC/LaneBitmask.h"
72#include "llvm/MC/MCAsmInfo.h"
73#include "llvm/MC/MCDwarf.h"
74#include "llvm/MC/MCInstrDesc.h"
77#include "llvm/Pass.h"
82#include "llvm/Support/ModRef.h"
83#include "llvm/Support/Mutex.h"
86#include <algorithm>
87#include <cassert>
88#include <cstddef>
89#include <cstdint>
90#include <iterator>
91#include <string>
92#include <utility>
93
94using namespace llvm;
95
96namespace {
97
98/// Used the by the ReportedErrors class to guarantee only one error is reported
99/// at one time.
100static ManagedStatic<sys::SmartMutex<true>> ReportedErrorsLock;
101
102static bool hasPhysRegClassForType(const TargetRegisterInfo &TRI,
103 MCRegister Reg, LLT Ty) {
104 assert(Reg.isPhysical() && "reg must be a physical register");
105 assert(Ty.isValid() && "expected a valid type");
106
107 const TargetRegisterClass *RC = TRI.getMinimalPhysRegClass(Reg);
108 if (TRI.isTypeLegalForClass(*RC, Ty))
109 return true;
110
111 return llvm::any_of(TRI.regclasses(), [&](const TargetRegisterClass *RC) {
112 return RC->contains(Reg) && TRI.isTypeLegalForClass(*RC, Ty);
113 });
114}
115
116struct MachineVerifier {
117 MachineVerifier(MachineFunctionAnalysisManager &MFAM, const char *b,
118 raw_ostream *OS, bool AbortOnError = true)
119 : MFAM(&MFAM), OS(OS ? *OS : nulls()), Banner(b),
120 ReportedErrs(AbortOnError) {}
121
122 MachineVerifier(Pass *pass, const char *b, raw_ostream *OS,
123 bool AbortOnError = true)
124 : PASS(pass), OS(OS ? *OS : nulls()), Banner(b),
125 ReportedErrs(AbortOnError) {}
126
127 MachineVerifier(const char *b, LiveVariables *LiveVars,
128 LiveIntervals *LiveInts, LiveStacks *LiveStks,
129 SlotIndexes *Indexes, raw_ostream *OS,
130 bool AbortOnError = true)
131 : OS(OS ? *OS : nulls()), Banner(b), LiveVars(LiveVars),
132 LiveInts(LiveInts), LiveStks(LiveStks), Indexes(Indexes),
133 ReportedErrs(AbortOnError) {}
134
135 /// \returns true if no problems were found.
136 bool verify(const MachineFunction &MF);
137
138 MachineFunctionAnalysisManager *MFAM = nullptr;
139 Pass *const PASS = nullptr;
140 raw_ostream &OS;
141 const char *Banner;
142 const MachineFunction *MF = nullptr;
143 const TargetMachine *TM = nullptr;
144 const TargetInstrInfo *TII = nullptr;
145 const TargetRegisterInfo *TRI = nullptr;
146 const MachineRegisterInfo *MRI = nullptr;
147 const RegisterBankInfo *RBI = nullptr;
148
149 // Avoid querying the MachineFunctionProperties for each operand.
150 bool isFunctionRegBankSelected = false;
151 bool isFunctionSelected = false;
152 bool isFunctionTracksDebugUserValues = false;
153
154 using RegVector = SmallVector<Register, 16>;
155 using RegMaskVector = SmallVector<const uint32_t *, 4>;
156 using RegSet = DenseSet<Register>;
157 using RegMap = DenseMap<Register, const MachineInstr *>;
158 using BlockSet = SmallPtrSet<const MachineBasicBlock *, 8>;
159
160 const MachineInstr *FirstNonPHI = nullptr;
161 const MachineInstr *FirstTerminator = nullptr;
162 BlockSet FunctionBlocks;
163
164 BitVector regsReserved;
165 RegSet regsLive;
166 RegVector regsDefined, regsDead, regsKilled;
167 RegMaskVector regMasks;
168
169 SlotIndex lastIndex;
170
171 // Add Reg and any sub-registers to RV
172 void addRegWithSubRegs(RegVector &RV, Register Reg) {
173 RV.push_back(Reg);
174 if (Reg.isPhysical())
175 append_range(RV, TRI->subregs(Reg.asMCReg()));
176 }
177
178 struct BBInfo {
179 // Is this MBB reachable from the MF entry point?
180 bool reachable = false;
181
182 // Vregs that must be live in because they are used without being
183 // defined. Map value is the user. vregsLiveIn doesn't include regs
184 // that only are used by PHI nodes.
185 RegMap vregsLiveIn;
186
187 // Regs killed in MBB. They may be defined again, and will then be in both
188 // regsKilled and regsLiveOut.
189 RegSet regsKilled;
190
191 // Regs defined in MBB and live out. Note that vregs passing through may
192 // be live out without being mentioned here.
193 RegSet regsLiveOut;
194
195 // Vregs that pass through MBB untouched. This set is disjoint from
196 // regsKilled and regsLiveOut.
197 RegSet vregsPassed;
198
199 // Vregs that must pass through MBB because they are needed by a successor
200 // block. This set is disjoint from regsLiveOut.
201 RegSet vregsRequired;
202
203 // Set versions of block's predecessor and successor lists.
204 BlockSet Preds, Succs;
205
206 BBInfo() = default;
207
208 // Add register to vregsRequired if it belongs there. Return true if
209 // anything changed.
210 bool addRequired(Register Reg) {
211 if (!Reg.isVirtual())
212 return false;
213 if (regsLiveOut.count(Reg))
214 return false;
215 return vregsRequired.insert(Reg).second;
216 }
217
218 // Same for a full set.
219 bool addRequired(const RegSet &RS) {
220 bool Changed = false;
221 for (Register Reg : RS)
222 Changed |= addRequired(Reg);
223 return Changed;
224 }
225
226 // Same for a full map.
227 bool addRequired(const RegMap &RM) {
228 bool Changed = false;
229 for (const auto &I : RM)
230 Changed |= addRequired(I.first);
231 return Changed;
232 }
233
234 // Live-out registers are either in regsLiveOut or vregsPassed.
235 bool isLiveOut(Register Reg) const {
236 return regsLiveOut.count(Reg) || vregsPassed.count(Reg);
237 }
238 };
239
240 // Extra register info per MBB.
241 DenseMap<const MachineBasicBlock *, BBInfo> MBBInfoMap;
242
243 bool isReserved(Register Reg) {
244 return Reg.id() < regsReserved.size() && regsReserved.test(Reg.id());
245 }
246
247 bool isAllocatable(Register Reg) const {
248 return Reg.id() < TRI->getNumRegs() && TRI->isInAllocatableClass(Reg) &&
249 !regsReserved.test(Reg.id());
250 }
251
252 // Analysis information if available
253 LiveVariables *LiveVars = nullptr;
254 LiveIntervals *LiveInts = nullptr;
255 LiveStacks *LiveStks = nullptr;
256 SlotIndexes *Indexes = nullptr;
257
258 /// A class to track the number of reported error and to guarantee that only
259 /// one error is reported at one time.
260 class ReportedErrors {
261 unsigned NumReported = 0;
262 bool AbortOnError;
263
264 public:
265 /// \param AbortOnError -- If set, abort after printing the first error.
266 ReportedErrors(bool AbortOnError) : AbortOnError(AbortOnError) {}
267
268 ~ReportedErrors() {
269 if (!hasError())
270 return;
271 if (AbortOnError)
272 report_fatal_error("Found " + Twine(NumReported) +
273 " machine code errors.");
274 // Since we haven't aborted, release the lock to allow other threads to
275 // report errors.
276 ReportedErrorsLock->unlock();
277 }
278
279 /// Increment the number of reported errors.
280 /// \returns true if this is the first reported error.
281 bool increment() {
282 // If this is the first error this thread has encountered, grab the lock
283 // to prevent other threads from reporting errors at the same time.
284 // Otherwise we assume we already have the lock.
285 if (!hasError())
286 ReportedErrorsLock->lock();
287 ++NumReported;
288 return NumReported == 1;
289 }
290
291 /// \returns true if an error was reported.
292 bool hasError() { return NumReported; }
293 };
294 ReportedErrors ReportedErrs;
295
296 // This is calculated only when trying to verify convergence control tokens.
297 // Similar to the LLVM IR verifier, we calculate this locally instead of
298 // relying on the pass manager.
299 MachineDominatorTree DT;
300
301 void visitMachineFunctionBefore();
302 void visitMachineBasicBlockBefore(const MachineBasicBlock *MBB);
303 void visitMachineBundleBefore(const MachineInstr *MI);
304
305 /// Verify that all of \p MI's virtual register operands are scalars.
306 /// \returns True if all virtual register operands are scalar. False
307 /// otherwise.
308 bool verifyAllRegOpsScalar(const MachineInstr &MI,
309 const MachineRegisterInfo &MRI);
310 bool verifyVectorElementMatch(LLT Ty0, LLT Ty1, const MachineInstr *MI);
311
312 bool verifyGIntrinsicSideEffects(const MachineInstr *MI);
313 bool verifyGIntrinsicConvergence(const MachineInstr *MI);
314 void verifyPreISelGenericInstruction(const MachineInstr *MI);
315
316 void visitMachineInstrBefore(const MachineInstr *MI);
317 void visitMachineOperand(const MachineOperand *MO, unsigned MONum);
318 void visitMachineBundleAfter(const MachineInstr *MI);
319 void visitMachineBasicBlockAfter(const MachineBasicBlock *MBB);
320 void visitMachineFunctionAfter();
321
322 void report(const char *msg, const MachineFunction *MF);
323 void report(const char *msg, const MachineBasicBlock *MBB);
324 void report(const char *msg, const MachineInstr *MI);
325 void report(const char *msg, const MachineOperand *MO, unsigned MONum,
326 LLT MOVRegType = LLT{});
327 void report(const Twine &Msg, const MachineInstr *MI);
328
329 void report_context(const LiveInterval &LI) const;
330 void report_context(const LiveRange &LR, VirtRegOrUnit VRegOrUnit,
331 LaneBitmask LaneMask) const;
332 void report_context(const LiveRange::Segment &S) const;
333 void report_context(const VNInfo &VNI) const;
334 void report_context(SlotIndex Pos) const;
335 void report_context(MCPhysReg PhysReg) const;
336 void report_context_liverange(const LiveRange &LR) const;
337 void report_context_lanemask(LaneBitmask LaneMask) const;
338 void report_context_vreg(Register VReg) const;
339 void report_context_vreg_regunit(VirtRegOrUnit VRegOrUnit) const;
340
341 void verifyInlineAsm(const MachineInstr *MI);
342
343 void checkLiveness(const MachineOperand *MO, unsigned MONum);
344 void checkLivenessAtUse(const MachineOperand *MO, unsigned MONum,
345 SlotIndex UseIdx, const LiveRange &LR,
346 VirtRegOrUnit VRegOrUnit,
347 LaneBitmask LaneMask = LaneBitmask::getNone());
348 void checkLivenessAtDef(const MachineOperand *MO, unsigned MONum,
349 SlotIndex DefIdx, const LiveRange &LR,
350 VirtRegOrUnit VRegOrUnit, bool SubRangeCheck = false,
351 LaneBitmask LaneMask = LaneBitmask::getNone());
352
353 void markReachable(const MachineBasicBlock *MBB);
354 void calcRegsPassed();
355 void checkPHIOps(const MachineBasicBlock &MBB);
356
357 void calcRegsRequired();
358 void verifyLiveVariables();
359 void verifyLiveIntervals();
360 void verifyLiveInterval(const LiveInterval &);
361 void verifyLiveRangeValue(const LiveRange &, const VNInfo *, VirtRegOrUnit,
362 LaneBitmask);
363 void verifyLiveRangeSegment(const LiveRange &,
364 const LiveRange::const_iterator I, VirtRegOrUnit,
365 LaneBitmask);
366 void verifyLiveRange(const LiveRange &, VirtRegOrUnit,
367 LaneBitmask LaneMask = LaneBitmask::getNone());
368
369 void verifyStackFrame();
370 /// Check that the stack protector is the top-most object in the stack.
371 void verifyStackProtector();
372
373 void verifySlotIndexes() const;
374 void verifyProperties(const MachineFunction &MF);
375};
376
377struct MachineVerifierLegacyPass : public MachineFunctionPass {
378 static char ID; // Pass ID, replacement for typeid
379
380 const std::string Banner;
381
382 MachineVerifierLegacyPass(std::string banner = std::string())
383 : MachineFunctionPass(ID), Banner(std::move(banner)) {}
384
385 void getAnalysisUsage(AnalysisUsage &AU) const override {
386 AU.addUsedIfAvailable<LiveStacksWrapperLegacy>();
387 AU.addUsedIfAvailable<LiveVariablesWrapperPass>();
388 AU.addUsedIfAvailable<SlotIndexesWrapperPass>();
389 AU.addUsedIfAvailable<LiveIntervalsWrapperPass>();
390 AU.setPreservesAll();
392 }
393
394 bool runOnMachineFunction(MachineFunction &MF) override {
395 // Skip functions that have known verification problems.
396 // FIXME: Remove this mechanism when all problematic passes have been
397 // fixed.
398 if (MF.getProperties().hasFailsVerification())
399 return false;
400
401 MachineVerifier(this, Banner.c_str(), &errs()).verify(MF);
402 return false;
403 }
404};
405
406} // end anonymous namespace
407
411 // Skip functions that have known verification problems.
412 // FIXME: Remove this mechanism when all problematic passes have been
413 // fixed.
414 if (MF.getProperties().hasFailsVerification())
415 return PreservedAnalyses::all();
416 MachineVerifier(MFAM, Banner.c_str(), &errs()).verify(MF);
417 return PreservedAnalyses::all();
418}
419
420char MachineVerifierLegacyPass::ID = 0;
421
422INITIALIZE_PASS(MachineVerifierLegacyPass, "machineverifier",
423 "Verify generated machine code", false, false)
424
426 return new MachineVerifierLegacyPass(Banner);
427}
428
429void llvm::verifyMachineFunction(const std::string &Banner,
430 const MachineFunction &MF) {
431 // TODO: Use MFAM after porting below analyses.
432 // LiveVariables *LiveVars;
433 // LiveIntervals *LiveInts;
434 // LiveStacks *LiveStks;
435 // SlotIndexes *Indexes;
436 MachineVerifier(nullptr, Banner.c_str(), &errs()).verify(MF);
437}
438
439bool MachineFunction::verify(Pass *p, const char *Banner, raw_ostream *OS,
440 bool AbortOnError) const {
441 return MachineVerifier(p, Banner, OS, AbortOnError).verify(*this);
442}
443
445 const char *Banner, raw_ostream *OS,
446 bool AbortOnError) const {
447 return MachineVerifier(MFAM, Banner, OS, AbortOnError).verify(*this);
448}
449
451 const char *Banner, raw_ostream *OS,
452 bool AbortOnError) const {
453 return MachineVerifier(Banner, /*LiveVars=*/nullptr, LiveInts,
454 /*LiveStks=*/nullptr, Indexes, OS, AbortOnError)
455 .verify(*this);
456}
457
458void MachineVerifier::verifySlotIndexes() const {
459 if (Indexes == nullptr)
460 return;
461
462 // Ensure the IdxMBB list is sorted by slot indexes.
465 E = Indexes->MBBIndexEnd(); I != E; ++I) {
466 assert(!Last.isValid() || I->first > Last);
467 Last = I->first;
468 }
469}
470
471void MachineVerifier::verifyProperties(const MachineFunction &MF) {
472 // If a pass has introduced virtual registers without clearing the
473 // NoVRegs property (or set it without allocating the vregs)
474 // then report an error.
475 if (MF.getProperties().hasNoVRegs() && MRI->getNumVirtRegs())
476 report("Function has NoVRegs property but there are VReg operands", &MF);
477}
478
479bool MachineVerifier::verify(const MachineFunction &MF) {
480 this->MF = &MF;
481 TM = &MF.getTarget();
484 RBI = MF.getSubtarget().getRegBankInfo();
485 MRI = &MF.getRegInfo();
486
487 const MachineFunctionProperties &Props = MF.getProperties();
488 const bool isFunctionFailedISel = Props.hasFailedISel();
489
490 // If we're mid-GlobalISel and we already triggered the fallback path then
491 // it's expected that the MIR is somewhat broken but that's ok since we'll
492 // reset it and clear the FailedISel attribute in ResetMachineFunctions.
493 if (isFunctionFailedISel)
494 return true;
495
496 isFunctionRegBankSelected = Props.hasRegBankSelected();
497 isFunctionSelected = Props.hasSelected();
498 isFunctionTracksDebugUserValues = Props.hasTracksDebugUserValues();
499
500 if (PASS) {
501 auto *LISWrapper = PASS->getAnalysisIfAvailable<LiveIntervalsWrapperPass>();
502 LiveInts = LISWrapper ? &LISWrapper->getLIS() : nullptr;
503 // We don't want to verify LiveVariables if LiveIntervals is available.
504 auto *LVWrapper = PASS->getAnalysisIfAvailable<LiveVariablesWrapperPass>();
505 if (!LiveInts)
506 LiveVars = LVWrapper ? &LVWrapper->getLV() : nullptr;
507 auto *LSWrapper = PASS->getAnalysisIfAvailable<LiveStacksWrapperLegacy>();
508 LiveStks = LSWrapper ? &LSWrapper->getLS() : nullptr;
509 auto *SIWrapper = PASS->getAnalysisIfAvailable<SlotIndexesWrapperPass>();
510 Indexes = SIWrapper ? &SIWrapper->getSI() : nullptr;
511 }
512 if (MFAM) {
513 MachineFunction &Func = const_cast<MachineFunction &>(MF);
514 LiveInts = MFAM->getCachedResult<LiveIntervalsAnalysis>(Func);
515 if (!LiveInts)
516 LiveVars = MFAM->getCachedResult<LiveVariablesAnalysis>(Func);
517 // TODO: LiveStks = MFAM->getCachedResult<LiveStacksAnalysis>(Func);
518 Indexes = MFAM->getCachedResult<SlotIndexesAnalysis>(Func);
519 }
520
521 verifySlotIndexes();
522
523 verifyProperties(MF);
524
525 visitMachineFunctionBefore();
526 for (const MachineBasicBlock &MBB : MF) {
527 visitMachineBasicBlockBefore(&MBB);
528 // Keep track of the current bundle header.
529 const MachineInstr *CurBundle = nullptr;
530 // Do we expect the next instruction to be part of the same bundle?
531 bool InBundle = false;
532
533 for (const MachineInstr &MI : MBB.instrs()) {
534 if (MI.getParent() != &MBB) {
535 report("Bad instruction parent pointer", &MBB);
536 OS << "Instruction: " << MI;
537 continue;
538 }
539
540 // Check for consistent bundle flags.
541 if (InBundle && !MI.isBundledWithPred())
542 report("Missing BundledPred flag, "
543 "BundledSucc was set on predecessor",
544 &MI);
545 if (!InBundle && MI.isBundledWithPred())
546 report("BundledPred flag is set, "
547 "but BundledSucc not set on predecessor",
548 &MI);
549
550 // Is this a bundle header?
551 if (!MI.isInsideBundle()) {
552 if (CurBundle)
553 visitMachineBundleAfter(CurBundle);
554 CurBundle = &MI;
555 visitMachineBundleBefore(CurBundle);
556 } else if (!CurBundle)
557 report("No bundle header", &MI);
558 visitMachineInstrBefore(&MI);
559 for (unsigned I = 0, E = MI.getNumOperands(); I != E; ++I) {
560 const MachineOperand &Op = MI.getOperand(I);
561 if (Op.getParent() != &MI) {
562 // Make sure to use correct addOperand / removeOperand / ChangeTo
563 // functions when replacing operands of a MachineInstr.
564 report("Instruction has operand with wrong parent set", &MI);
565 }
566
567 visitMachineOperand(&Op, I);
568 }
569
570 // Was this the last bundled instruction?
571 InBundle = MI.isBundledWithSucc();
572 }
573 if (CurBundle)
574 visitMachineBundleAfter(CurBundle);
575 if (InBundle)
576 report("BundledSucc flag set on last instruction in block", &MBB.back());
577 visitMachineBasicBlockAfter(&MBB);
578 }
579 visitMachineFunctionAfter();
580
581 // Clean up.
582 regsLive.clear();
583 regsDefined.clear();
584 regsDead.clear();
585 regsKilled.clear();
586 regMasks.clear();
587 MBBInfoMap.clear();
588
589 return !ReportedErrs.hasError();
590}
591
592void MachineVerifier::report(const char *msg, const MachineFunction *MF) {
593 assert(MF);
594 OS << '\n';
595 if (ReportedErrs.increment()) {
596 if (Banner)
597 OS << "# " << Banner << '\n';
598
599 if (LiveInts != nullptr)
600 LiveInts->print(OS);
601 else
602 MF->print(OS, Indexes);
603 }
604
605 OS << "*** Bad machine code: " << msg << " ***\n"
606 << "- function: " << MF->getName() << '\n';
607}
608
609void MachineVerifier::report(const char *msg, const MachineBasicBlock *MBB) {
610 assert(MBB);
611 report(msg, MBB->getParent());
612 OS << "- basic block: " << printMBBReference(*MBB) << ' ' << MBB->getName()
613 << " (" << (const void *)MBB << ')';
614 if (Indexes)
615 OS << " [" << Indexes->getMBBStartIdx(MBB) << ';'
616 << Indexes->getMBBEndIdx(MBB) << ')';
617 OS << '\n';
618}
619
620void MachineVerifier::report(const char *msg, const MachineInstr *MI) {
621 assert(MI);
622 report(msg, MI->getParent());
623 OS << "- instruction: ";
624 if (Indexes && Indexes->hasIndex(*MI))
625 OS << Indexes->getInstructionIndex(*MI) << '\t';
626 MI->print(OS, /*IsStandalone=*/true);
627}
628
629void MachineVerifier::report(const char *msg, const MachineOperand *MO,
630 unsigned MONum, LLT MOVRegType) {
631 assert(MO);
632 report(msg, MO->getParent());
633 OS << "- operand " << MONum << ": ";
634 MO->print(OS, MOVRegType, TRI);
635 OS << '\n';
636}
637
638void MachineVerifier::report(const Twine &Msg, const MachineInstr *MI) {
639 report(Msg.str().c_str(), MI);
640}
641
642void MachineVerifier::report_context(SlotIndex Pos) const {
643 OS << "- at: " << Pos << '\n';
644}
645
646void MachineVerifier::report_context(const LiveInterval &LI) const {
647 OS << "- interval: " << LI << '\n';
648}
649
650void MachineVerifier::report_context(const LiveRange &LR,
651 VirtRegOrUnit VRegOrUnit,
652 LaneBitmask LaneMask) const {
653 report_context_liverange(LR);
654 report_context_vreg_regunit(VRegOrUnit);
655 if (LaneMask.any())
656 report_context_lanemask(LaneMask);
657}
658
659void MachineVerifier::report_context(const LiveRange::Segment &S) const {
660 OS << "- segment: " << S << '\n';
661}
662
663void MachineVerifier::report_context(const VNInfo &VNI) const {
664 OS << "- ValNo: " << VNI.id << " (def " << VNI.def << ")\n";
665}
666
667void MachineVerifier::report_context_liverange(const LiveRange &LR) const {
668 OS << "- liverange: " << LR << '\n';
669}
670
671void MachineVerifier::report_context(MCPhysReg PReg) const {
672 OS << "- p. register: " << printReg(PReg, TRI) << '\n';
673}
674
675void MachineVerifier::report_context_vreg(Register VReg) const {
676 OS << "- v. register: " << printReg(VReg, TRI) << '\n';
677}
678
679void MachineVerifier::report_context_vreg_regunit(
680 VirtRegOrUnit VRegOrUnit) const {
681 if (VRegOrUnit.isVirtualReg()) {
682 report_context_vreg(VRegOrUnit.asVirtualReg());
683 } else {
684 OS << "- regunit: " << printRegUnit(VRegOrUnit.asMCRegUnit(), TRI)
685 << '\n';
686 }
687}
688
689void MachineVerifier::report_context_lanemask(LaneBitmask LaneMask) const {
690 OS << "- lanemask: " << PrintLaneMask(LaneMask) << '\n';
691}
692
693void MachineVerifier::markReachable(const MachineBasicBlock *MBB) {
694 BBInfo &MInfo = MBBInfoMap[MBB];
695 if (!MInfo.reachable) {
696 MInfo.reachable = true;
697 for (const MachineBasicBlock *Succ : MBB->successors())
698 markReachable(Succ);
699 }
700}
701
702void MachineVerifier::visitMachineFunctionBefore() {
703 lastIndex = SlotIndex();
704 regsReserved = MRI->reservedRegsFrozen() ? MRI->getReservedRegs()
705 : TRI->getReservedRegs(*MF);
706
707 if (!MF->empty())
708 markReachable(&MF->front());
709
710 // Build a set of the basic blocks in the function.
711 FunctionBlocks.clear();
712 for (const auto &MBB : *MF) {
713 FunctionBlocks.insert(&MBB);
714 BBInfo &MInfo = MBBInfoMap[&MBB];
715
716 MInfo.Preds.insert_range(MBB.predecessors());
717 if (MInfo.Preds.size() != MBB.pred_size())
718 report("MBB has duplicate entries in its predecessor list.", &MBB);
719
720 MInfo.Succs.insert_range(MBB.successors());
721 if (MInfo.Succs.size() != MBB.succ_size())
722 report("MBB has duplicate entries in its successor list.", &MBB);
723 }
724
725 // Check that the register use lists are sane.
726 MRI->verifyUseLists();
727
728 if (!MF->empty()) {
729 verifyStackFrame();
730 verifyStackProtector();
731 }
732}
733
734void
735MachineVerifier::visitMachineBasicBlockBefore(const MachineBasicBlock *MBB) {
736 FirstTerminator = nullptr;
737 FirstNonPHI = nullptr;
738
739 if (!MF->getProperties().hasNoPHIs() && MRI->tracksLiveness()) {
740 // If this block has allocatable physical registers live-in, check that
741 // it is an entry block or landing pad.
742 for (const auto &LI : MBB->liveins()) {
743 if (isAllocatable(LI.PhysReg) && !MBB->isEHPad() &&
744 MBB->getIterator() != MBB->getParent()->begin() &&
746 report("MBB has allocatable live-in, but isn't entry, landing-pad, or "
747 "inlineasm-br-indirect-target.",
748 MBB);
749 report_context(LI.PhysReg);
750 }
751 }
752 }
753
754 if (MBB->isIRBlockAddressTaken()) {
756 report("ir-block-address-taken is associated with basic block not used by "
757 "a blockaddress.",
758 MBB);
759 }
760
761 // Count the number of landing pad successors.
763 for (const auto *succ : MBB->successors()) {
764 if (succ->isEHPad())
765 LandingPadSuccs.insert(succ);
766 if (!FunctionBlocks.count(succ))
767 report("MBB has successor that isn't part of the function.", MBB);
768 if (!MBBInfoMap[succ].Preds.count(MBB)) {
769 report("Inconsistent CFG", MBB);
770 OS << "MBB is not in the predecessor list of the successor "
771 << printMBBReference(*succ) << ".\n";
772 }
773 }
774
775 // Check the predecessor list.
776 for (const MachineBasicBlock *Pred : MBB->predecessors()) {
777 if (!FunctionBlocks.count(Pred))
778 report("MBB has predecessor that isn't part of the function.", MBB);
779 if (!MBBInfoMap[Pred].Succs.count(MBB)) {
780 report("Inconsistent CFG", MBB);
781 OS << "MBB is not in the successor list of the predecessor "
782 << printMBBReference(*Pred) << ".\n";
783 }
784 }
785
786 const MCAsmInfo &AsmInfo = TM->getMCAsmInfo();
787 const BasicBlock *BB = MBB->getBasicBlock();
788 const Function &F = MF->getFunction();
789 if (LandingPadSuccs.size() > 1 &&
792 !isScopedEHPersonality(classifyEHPersonality(F.getPersonalityFn())))
793 report("MBB has more than one landing pad successor", MBB);
794
795 // Call analyzeBranch. If it succeeds, there several more conditions to check.
796 MachineBasicBlock *TBB = nullptr, *FBB = nullptr;
798 if (!TII->analyzeBranch(*const_cast<MachineBasicBlock *>(MBB), TBB, FBB,
799 Cond)) {
800 // Ok, analyzeBranch thinks it knows what's going on with this block. Let's
801 // check whether its answers match up with reality.
802 if (!TBB && !FBB) {
803 // Block falls through to its successor.
804 if (!MBB->empty() && MBB->back().isBarrier() &&
805 !TII->isPredicated(MBB->back())) {
806 report("MBB exits via unconditional fall-through but ends with a "
807 "barrier instruction!", MBB);
808 }
809 if (!Cond.empty()) {
810 report("MBB exits via unconditional fall-through but has a condition!",
811 MBB);
812 }
813 } else if (TBB && !FBB && Cond.empty()) {
814 // Block unconditionally branches somewhere.
815 if (MBB->empty()) {
816 report("MBB exits via unconditional branch but doesn't contain "
817 "any instructions!", MBB);
818 } else if (!MBB->back().isBarrier()) {
819 report("MBB exits via unconditional branch but doesn't end with a "
820 "barrier instruction!", MBB);
821 } else if (!MBB->back().isTerminator()) {
822 report("MBB exits via unconditional branch but the branch isn't a "
823 "terminator instruction!", MBB);
824 }
825 } else if (TBB && !FBB && !Cond.empty()) {
826 // Block conditionally branches somewhere, otherwise falls through.
827 if (MBB->empty()) {
828 report("MBB exits via conditional branch/fall-through but doesn't "
829 "contain any instructions!", MBB);
830 } else if (MBB->back().isBarrier()) {
831 report("MBB exits via conditional branch/fall-through but ends with a "
832 "barrier instruction!", MBB);
833 } else if (!MBB->back().isTerminator()) {
834 report("MBB exits via conditional branch/fall-through but the branch "
835 "isn't a terminator instruction!", MBB);
836 }
837 } else if (TBB && FBB) {
838 // Block conditionally branches somewhere, otherwise branches
839 // somewhere else.
840 if (MBB->empty()) {
841 report("MBB exits via conditional branch/branch but doesn't "
842 "contain any instructions!", MBB);
843 } else if (!MBB->back().isBarrier()) {
844 report("MBB exits via conditional branch/branch but doesn't end with a "
845 "barrier instruction!", MBB);
846 } else if (!MBB->back().isTerminator()) {
847 report("MBB exits via conditional branch/branch but the branch "
848 "isn't a terminator instruction!", MBB);
849 }
850 if (Cond.empty()) {
851 report("MBB exits via conditional branch/branch but there's no "
852 "condition!", MBB);
853 }
854 } else {
855 report("analyzeBranch returned invalid data!", MBB);
856 }
857
858 // Now check that the successors match up with the answers reported by
859 // analyzeBranch.
860 if (TBB && !MBB->isSuccessor(TBB))
861 report("MBB exits via jump or conditional branch, but its target isn't a "
862 "CFG successor!",
863 MBB);
864 if (FBB && !MBB->isSuccessor(FBB))
865 report("MBB exits via conditional branch, but its target isn't a CFG "
866 "successor!",
867 MBB);
868
869 // There might be a fallthrough to the next block if there's either no
870 // unconditional true branch, or if there's a condition, and one of the
871 // branches is missing.
872 bool Fallthrough = !TBB || (!Cond.empty() && !FBB);
873
874 // A conditional fallthrough must be an actual CFG successor, not
875 // unreachable. (Conversely, an unconditional fallthrough might not really
876 // be a successor, because the block might end in unreachable.)
877 if (!Cond.empty() && !FBB) {
879 if (MBBI == MF->end()) {
880 report("MBB conditionally falls through out of function!", MBB);
881 } else if (!MBB->isSuccessor(&*MBBI))
882 report("MBB exits via conditional branch/fall-through but the CFG "
883 "successors don't match the actual successors!",
884 MBB);
885 }
886
887 // Verify that there aren't any extra un-accounted-for successors.
888 for (const MachineBasicBlock *SuccMBB : MBB->successors()) {
889 // If this successor is one of the branch targets, it's okay.
890 if (SuccMBB == TBB || SuccMBB == FBB)
891 continue;
892 // If we might have a fallthrough, and the successor is the fallthrough
893 // block, that's also ok.
894 if (Fallthrough && SuccMBB == MBB->getNextNode())
895 continue;
896 // Also accept successors which are for exception-handling or might be
897 // inlineasm_br targets.
898 if (SuccMBB->isEHPad() || SuccMBB->isInlineAsmBrIndirectTarget())
899 continue;
900 report("MBB has unexpected successors which are not branch targets, "
901 "fallthrough, EHPads, or inlineasm_br targets.",
902 MBB);
903 }
904 }
905
906 regsLive.clear();
907 if (MRI->tracksLiveness()) {
908 for (const auto &LI : MBB->liveins()) {
909 if (!LI.PhysReg.isPhysical()) {
910 report("MBB live-in list contains non-physical register", MBB);
911 continue;
912 }
913 regsLive.insert_range(TRI->subregs_inclusive(LI.PhysReg));
914 }
915 }
916
917 const MachineFrameInfo &MFI = MF->getFrameInfo();
918 BitVector PR = MFI.getPristineRegs(*MF);
919 for (unsigned I : PR.set_bits())
920 regsLive.insert_range(TRI->subregs_inclusive(I));
921
922 regsKilled.clear();
923 regsDefined.clear();
924
925 if (Indexes)
926 lastIndex = Indexes->getMBBStartIdx(MBB);
927}
928
929// This function gets called for all bundle headers, including normal
930// stand-alone unbundled instructions.
931void MachineVerifier::visitMachineBundleBefore(const MachineInstr *MI) {
932 if (Indexes && Indexes->hasIndex(*MI)) {
933 SlotIndex idx = Indexes->getInstructionIndex(*MI);
934 if (!(idx > lastIndex)) {
935 report("Instruction index out of order", MI);
936 OS << "Last instruction was at " << lastIndex << '\n';
937 }
938 lastIndex = idx;
939 }
940
941 // Ensure non-terminators don't follow terminators.
942 if (MI->isTerminator()) {
943 if (!FirstTerminator)
944 FirstTerminator = MI;
945 } else if (FirstTerminator) {
946 // For GlobalISel, G_INVOKE_REGION_START is a terminator that we allow to
947 // precede non-terminators.
948 if (FirstTerminator->getOpcode() != TargetOpcode::G_INVOKE_REGION_START) {
949 report("Non-terminator instruction after the first terminator", MI);
950 OS << "First terminator was:\t" << *FirstTerminator;
951 }
952 }
953}
954
955// The operands on an INLINEASM instruction must follow a template.
956// Verify that the flag operands make sense.
957void MachineVerifier::verifyInlineAsm(const MachineInstr *MI) {
958 // The first two operands on INLINEASM are the asm string and global flags.
959 if (MI->getNumOperands() < 2) {
960 report("Too few operands on inline asm", MI);
961 return;
962 }
963 if (!MI->getOperand(0).isSymbol())
964 report("Asm string must be an external symbol", MI);
965 if (!MI->getOperand(1).isImm())
966 report("Asm flags must be an immediate", MI);
967 // Allowed flags are Extra_HasSideEffects = 1, Extra_IsAlignStack = 2,
968 // Extra_AsmDialect = 4, Extra_MayLoad = 8, and Extra_MayStore = 16,
969 // and Extra_IsConvergent = 32, Extra_MayUnwind = 64.
970 if (!isUInt<7>(MI->getOperand(1).getImm()))
971 report("Unknown asm flags", &MI->getOperand(1), 1);
972
973 static_assert(InlineAsm::MIOp_FirstOperand == 2, "Asm format changed");
974
975 unsigned OpNo = InlineAsm::MIOp_FirstOperand;
976 unsigned NumOps;
977 for (unsigned e = MI->getNumOperands(); OpNo < e; OpNo += NumOps) {
978 const MachineOperand &MO = MI->getOperand(OpNo);
979 // There may be implicit ops after the fixed operands.
980 if (!MO.isImm())
981 break;
982 const InlineAsm::Flag F(MO.getImm());
983 NumOps = 1 + F.getNumOperandRegisters();
984 }
985
986 if (OpNo > MI->getNumOperands())
987 report("Missing operands in last group", MI);
988
989 // An optional MDNode follows the groups.
990 if (OpNo < MI->getNumOperands() && MI->getOperand(OpNo).isMetadata())
991 ++OpNo;
992
993 // All trailing operands must be implicit registers.
994 for (unsigned e = MI->getNumOperands(); OpNo < e; ++OpNo) {
995 const MachineOperand &MO = MI->getOperand(OpNo);
996 if (!MO.isReg() || !MO.isImplicit())
997 report("Expected implicit register after groups", &MO, OpNo);
998 }
999
1000 if (MI->getOpcode() == TargetOpcode::INLINEASM_BR) {
1001 const MachineBasicBlock *MBB = MI->getParent();
1002
1003 for (unsigned i = InlineAsm::MIOp_FirstOperand, e = MI->getNumOperands();
1004 i != e; ++i) {
1005 const MachineOperand &MO = MI->getOperand(i);
1006
1007 if (!MO.isMBB())
1008 continue;
1009
1010 // Check the successor & predecessor lists look ok, assume they are
1011 // not. Find the indirect target without going through the successors.
1012 const MachineBasicBlock *IndirectTargetMBB = MO.getMBB();
1013 if (!IndirectTargetMBB) {
1014 report("INLINEASM_BR indirect target does not exist", &MO, i);
1015 break;
1016 }
1017
1018 if (!MBB->isSuccessor(IndirectTargetMBB))
1019 report("INLINEASM_BR indirect target missing from successor list", &MO,
1020 i);
1021
1022 if (!IndirectTargetMBB->isPredecessor(MBB))
1023 report("INLINEASM_BR indirect target predecessor list missing parent",
1024 &MO, i);
1025 }
1026 }
1027}
1028
1029bool MachineVerifier::verifyAllRegOpsScalar(const MachineInstr &MI,
1030 const MachineRegisterInfo &MRI) {
1031 if (none_of(MI.explicit_operands(), [&MRI](const MachineOperand &Op) {
1032 if (!Op.isReg())
1033 return false;
1034 const auto Reg = Op.getReg();
1035 if (Reg.isPhysical())
1036 return false;
1037 return !MRI.getType(Reg).isScalar();
1038 }))
1039 return true;
1040 report("All register operands must have scalar types", &MI);
1041 return false;
1042}
1043
1044/// Check that types are consistent when two operands need to have the same
1045/// number of vector elements.
1046/// \return true if the types are valid.
1047bool MachineVerifier::verifyVectorElementMatch(LLT Ty0, LLT Ty1,
1048 const MachineInstr *MI) {
1049 if (Ty0.isVector() != Ty1.isVector()) {
1050 report("operand types must be all-vector or all-scalar", MI);
1051 // Generally we try to report as many issues as possible at once, but in
1052 // this case it's not clear what should we be comparing the size of the
1053 // scalar with: the size of the whole vector or its lane. Instead of
1054 // making an arbitrary choice and emitting not so helpful message, let's
1055 // avoid the extra noise and stop here.
1056 return false;
1057 }
1058
1059 if (Ty0.isVector() && Ty0.getElementCount() != Ty1.getElementCount()) {
1060 report("operand types must preserve number of vector elements", MI);
1061 return false;
1062 }
1063
1064 return true;
1065}
1066
1067bool MachineVerifier::verifyGIntrinsicSideEffects(const MachineInstr *MI) {
1068 auto Opcode = MI->getOpcode();
1069 bool NoSideEffects = Opcode == TargetOpcode::G_INTRINSIC ||
1070 Opcode == TargetOpcode::G_INTRINSIC_CONVERGENT;
1071 unsigned IntrID = cast<GIntrinsic>(MI)->getIntrinsicID();
1072 if (IntrID != 0 && IntrID < Intrinsic::num_intrinsics) {
1074 MF->getFunction().getContext(), static_cast<Intrinsic::ID>(IntrID));
1075 bool DeclHasSideEffects = !Attrs.getMemoryEffects().doesNotAccessMemory();
1076 if (NoSideEffects && DeclHasSideEffects) {
1077 report(Twine(TII->getName(Opcode),
1078 " used with intrinsic that accesses memory"),
1079 MI);
1080 return false;
1081 }
1082 if (!NoSideEffects && !DeclHasSideEffects) {
1083 report(Twine(TII->getName(Opcode), " used with readnone intrinsic"), MI);
1084 return false;
1085 }
1086 }
1087
1088 return true;
1089}
1090
1091bool MachineVerifier::verifyGIntrinsicConvergence(const MachineInstr *MI) {
1092 auto Opcode = MI->getOpcode();
1093 bool NotConvergent = Opcode == TargetOpcode::G_INTRINSIC ||
1094 Opcode == TargetOpcode::G_INTRINSIC_W_SIDE_EFFECTS;
1095 unsigned IntrID = cast<GIntrinsic>(MI)->getIntrinsicID();
1096 if (IntrID != 0 && IntrID < Intrinsic::num_intrinsics) {
1098 MF->getFunction().getContext(), static_cast<Intrinsic::ID>(IntrID));
1099 bool DeclIsConvergent = Attrs.hasAttribute(Attribute::Convergent);
1100 if (NotConvergent && DeclIsConvergent) {
1101 report(Twine(TII->getName(Opcode), " used with a convergent intrinsic"),
1102 MI);
1103 return false;
1104 }
1105 if (!NotConvergent && !DeclIsConvergent) {
1106 report(
1107 Twine(TII->getName(Opcode), " used with a non-convergent intrinsic"),
1108 MI);
1109 return false;
1110 }
1111 }
1112
1113 return true;
1114}
1115
1116void MachineVerifier::verifyPreISelGenericInstruction(const MachineInstr *MI) {
1117 if (isFunctionSelected)
1118 report("Unexpected generic instruction in a Selected function", MI);
1119
1120 const MCInstrDesc &MCID = MI->getDesc();
1121 unsigned NumOps = MI->getNumOperands();
1122
1123 // Branches must reference a basic block if they are not indirect
1124 if (MI->isBranch() && !MI->isIndirectBranch()) {
1125 bool HasMBB = false;
1126 for (const MachineOperand &Op : MI->operands()) {
1127 if (Op.isMBB()) {
1128 HasMBB = true;
1129 break;
1130 }
1131 }
1132
1133 if (!HasMBB) {
1134 report("Branch instruction is missing a basic block operand or "
1135 "isIndirectBranch property",
1136 MI);
1137 }
1138 }
1139
1140 // Check types.
1142 for (unsigned I = 0, E = std::min(MCID.getNumOperands(), NumOps);
1143 I != E; ++I) {
1144 if (!MCID.operands()[I].isGenericType())
1145 continue;
1146 // Generic instructions specify type equality constraints between some of
1147 // their operands. Make sure these are consistent.
1148 size_t TypeIdx = MCID.operands()[I].getGenericTypeIndex();
1149 Types.resize(std::max(TypeIdx + 1, Types.size()));
1150
1151 const MachineOperand *MO = &MI->getOperand(I);
1152 if (!MO->isReg()) {
1153 report("generic instruction must use register operands", MI);
1154 continue;
1155 }
1156
1157 LLT OpTy = MRI->getType(MO->getReg());
1158 // Don't report a type mismatch if there is no actual mismatch, only a
1159 // type missing, to reduce noise:
1160 if (OpTy.isValid()) {
1161 // Only the first valid type for a type index will be printed: don't
1162 // overwrite it later so it's always clear which type was expected:
1163 if (!Types[TypeIdx].isValid())
1164 Types[TypeIdx] = OpTy;
1165 else if (Types[TypeIdx] != OpTy)
1166 report("Type mismatch in generic instruction", MO, I, OpTy);
1167 } else {
1168 // Generic instructions must have types attached to their operands.
1169 report("Generic instruction is missing a virtual register type", MO, I);
1170 }
1171 }
1172
1173 // Generic opcodes must not have physical register operands.
1174 for (unsigned I = 0; I < MI->getNumOperands(); ++I) {
1175 const MachineOperand *MO = &MI->getOperand(I);
1176 if (MO->isReg() && MO->getReg().isPhysical())
1177 report("Generic instruction cannot have physical register", MO, I);
1178 }
1179
1180 // Avoid out of bounds in checks below. This was already reported earlier.
1181 if (MI->getNumOperands() < MCID.getNumOperands())
1182 return;
1183
1185 if (!TII->verifyInstruction(*MI, ErrorInfo))
1186 report(ErrorInfo.data(), MI);
1187
1188 // Verify properties of various specific instruction types
1189 unsigned Opc = MI->getOpcode();
1190 switch (Opc) {
1191 case TargetOpcode::G_ASSERT_SEXT:
1192 case TargetOpcode::G_ASSERT_ZEXT: {
1193 std::string OpcName =
1194 Opc == TargetOpcode::G_ASSERT_ZEXT ? "G_ASSERT_ZEXT" : "G_ASSERT_SEXT";
1195 if (!MI->getOperand(2).isImm()) {
1196 report(Twine(OpcName, " expects an immediate operand #2"), MI);
1197 break;
1198 }
1199
1200 Register Dst = MI->getOperand(0).getReg();
1201 Register Src = MI->getOperand(1).getReg();
1202 LLT SrcTy = MRI->getType(Src);
1203 int64_t Imm = MI->getOperand(2).getImm();
1204 if (Imm <= 0) {
1205 report(Twine(OpcName, " size must be >= 1"), MI);
1206 break;
1207 }
1208
1209 if (Imm >= SrcTy.getScalarSizeInBits()) {
1210 report(Twine(OpcName, " size must be less than source bit width"), MI);
1211 break;
1212 }
1213
1214 const RegisterBank *SrcRB = RBI->getRegBank(Src, *MRI, *TRI);
1215 const RegisterBank *DstRB = RBI->getRegBank(Dst, *MRI, *TRI);
1216
1217 // Allow only the source bank to be set.
1218 if ((SrcRB && DstRB && SrcRB != DstRB) || (DstRB && !SrcRB)) {
1219 report(Twine(OpcName, " cannot change register bank"), MI);
1220 break;
1221 }
1222
1223 // Don't allow a class change. Do allow member class->regbank.
1224 const TargetRegisterClass *DstRC = MRI->getRegClassOrNull(Dst);
1225 if (DstRC && DstRC != MRI->getRegClassOrNull(Src)) {
1226 report(
1227 Twine(OpcName, " source and destination register classes must match"),
1228 MI);
1229 break;
1230 }
1231
1232 break;
1233 }
1234
1235 case TargetOpcode::G_CONSTANT:
1236 case TargetOpcode::G_FCONSTANT: {
1237 LLT DstTy = MRI->getType(MI->getOperand(0).getReg());
1238 if (DstTy.isVector())
1239 report("Instruction cannot use a vector result type", MI);
1240
1241 if (MI->getOpcode() == TargetOpcode::G_CONSTANT) {
1242 if (!MI->getOperand(1).isCImm()) {
1243 report("G_CONSTANT operand must be cimm", MI);
1244 break;
1245 }
1246
1247 const ConstantInt *CI = MI->getOperand(1).getCImm();
1248 if (CI->getBitWidth() != DstTy.getSizeInBits())
1249 report("inconsistent constant size", MI);
1250 } else {
1251 if (!MI->getOperand(1).isFPImm()) {
1252 report("G_FCONSTANT operand must be fpimm", MI);
1253 break;
1254 }
1255 const ConstantFP *CF = MI->getOperand(1).getFPImm();
1256
1258 DstTy.getSizeInBits()) {
1259 report("inconsistent constant size", MI);
1260 }
1261 }
1262
1263 break;
1264 }
1265 case TargetOpcode::G_LOAD:
1266 case TargetOpcode::G_STORE:
1267 case TargetOpcode::G_ZEXTLOAD:
1268 case TargetOpcode::G_SEXTLOAD:
1269 case TargetOpcode::G_FPEXTLOAD:
1270 case TargetOpcode::G_FPTRUNCSTORE: {
1271 LLT ValTy = MRI->getType(MI->getOperand(0).getReg());
1272 LLT PtrTy = MRI->getType(MI->getOperand(1).getReg());
1273 if (!PtrTy.isPointer())
1274 report("Generic memory instruction must access a pointer", MI);
1275
1276 // Generic loads and stores must have a single MachineMemOperand
1277 // describing that access.
1278 if (!MI->hasOneMemOperand()) {
1279 report("Generic instruction accessing memory must have one mem operand",
1280 MI);
1281 } else {
1282 const MachineMemOperand &MMO = **MI->memoperands_begin();
1283 if (isa<GExtLoad>(*MI)) {
1285 ValTy.getSizeInBits()))
1286 report("Generic extload must have a narrower memory type", MI);
1287 } else if (isa<GFPTruncStore>(*MI)) {
1289 ValTy.getSizeInBits()))
1290 report("Generic truncstore must have a narrower memory type", MI);
1291 } else if (MI->getOpcode() == TargetOpcode::G_LOAD) {
1293 ValTy.getSizeInBytes()))
1294 report("load memory size cannot exceed result size", MI);
1295
1296 if (MMO.getRanges()) {
1297 ConstantInt *i =
1299 const LLT RangeTy = LLT::scalar(i->getIntegerType()->getBitWidth());
1300 const LLT MemTy = MMO.getMemoryType();
1301 if (MemTy.getScalarType() != RangeTy ||
1302 ValTy.isScalar() != MemTy.isScalar() ||
1303 (ValTy.isVector() &&
1304 ValTy.getNumElements() != MemTy.getNumElements())) {
1305 report("range is incompatible with the result type", MI);
1306 }
1307 }
1308 } else if (MI->getOpcode() == TargetOpcode::G_STORE) {
1310 MMO.getSize().getValue()))
1311 report("store memory size cannot exceed value size", MI);
1312 }
1313
1314 const AtomicOrdering Order = MMO.getSuccessOrdering();
1315 if (isa<GAnyStore>(*MI)) {
1316 if (Order == AtomicOrdering::Acquire ||
1318 report("atomic store cannot use acquire ordering", MI);
1319
1320 } else {
1321 if (Order == AtomicOrdering::Release ||
1323 report("atomic load cannot use release ordering", MI);
1324 }
1325 }
1326
1327 break;
1328 }
1329 case TargetOpcode::G_PHI: {
1330 LLT DstTy = MRI->getType(MI->getOperand(0).getReg());
1331 if (!DstTy.isValid() || !all_of(drop_begin(MI->operands()),
1332 [this, &DstTy](const MachineOperand &MO) {
1333 if (!MO.isReg())
1334 return true;
1335 LLT Ty = MRI->getType(MO.getReg());
1336 if (!Ty.isValid() || (Ty != DstTy))
1337 return false;
1338 return true;
1339 }))
1340 report("Generic Instruction G_PHI has operands with incompatible/missing "
1341 "types",
1342 MI);
1343 break;
1344 }
1345 case TargetOpcode::G_BITCAST: {
1346 LLT DstTy = MRI->getType(MI->getOperand(0).getReg());
1347 LLT SrcTy = MRI->getType(MI->getOperand(1).getReg());
1348 if (!DstTy.isValid() || !SrcTy.isValid())
1349 break;
1350
1351 if (SrcTy.isPointer() != DstTy.isPointer())
1352 report("bitcast cannot convert between pointers and other types", MI);
1353
1354 if (SrcTy.getSizeInBits() != DstTy.getSizeInBits())
1355 report("bitcast sizes must match", MI);
1356
1357 bool SameType = SrcTy.getKind() == DstTy.getKind();
1358 if (SameType && SrcTy.isPointerOrPointerVector())
1359 SameType &= SrcTy.getAddressSpace() == DstTy.getAddressSpace();
1360
1361 SameType &= SrcTy.getScalarSizeInBits() == DstTy.getScalarSizeInBits();
1362
1363 if (SameType && SrcTy.isVector())
1364 SameType &= SrcTy.getElementCount() == DstTy.getElementCount();
1365 if (SameType && SrcTy.isFloatOrFloatVector())
1366 SameType &= SrcTy.getFpSemantics() == DstTy.getFpSemantics();
1367
1368 if (SameType)
1369 report("bitcast must change the type", MI);
1370
1371 break;
1372 }
1373 case TargetOpcode::G_INTTOPTR:
1374 case TargetOpcode::G_PTRTOINT:
1375 case TargetOpcode::G_ADDRSPACE_CAST: {
1376 LLT DstTy = MRI->getType(MI->getOperand(0).getReg());
1377 LLT SrcTy = MRI->getType(MI->getOperand(1).getReg());
1378 if (!DstTy.isValid() || !SrcTy.isValid())
1379 break;
1380
1381 verifyVectorElementMatch(DstTy, SrcTy, MI);
1382
1383 DstTy = DstTy.getScalarType();
1384 SrcTy = SrcTy.getScalarType();
1385
1386 if (MI->getOpcode() == TargetOpcode::G_INTTOPTR) {
1387 if (!DstTy.isPointer())
1388 report("inttoptr result type must be a pointer", MI);
1389 if (SrcTy.isPointer())
1390 report("inttoptr source type must not be a pointer", MI);
1391 } else if (MI->getOpcode() == TargetOpcode::G_PTRTOINT) {
1392 if (!SrcTy.isPointer())
1393 report("ptrtoint source type must be a pointer", MI);
1394 if (DstTy.isPointer())
1395 report("ptrtoint result type must not be a pointer", MI);
1396 } else {
1397 assert(MI->getOpcode() == TargetOpcode::G_ADDRSPACE_CAST);
1398 if (!SrcTy.isPointer() || !DstTy.isPointer())
1399 report("addrspacecast types must be pointers", MI);
1400 else {
1401 if (SrcTy.getAddressSpace() == DstTy.getAddressSpace())
1402 report("addrspacecast must convert different address spaces", MI);
1403 }
1404 }
1405
1406 break;
1407 }
1408 case TargetOpcode::G_PTR_ADD: {
1409 LLT DstTy = MRI->getType(MI->getOperand(0).getReg());
1410 LLT PtrTy = MRI->getType(MI->getOperand(1).getReg());
1411 LLT OffsetTy = MRI->getType(MI->getOperand(2).getReg());
1412 if (!DstTy.isValid() || !PtrTy.isValid() || !OffsetTy.isValid())
1413 break;
1414
1415 if (!PtrTy.isPointerOrPointerVector())
1416 report("gep first operand must be a pointer", MI);
1417
1418 if (OffsetTy.isPointerOrPointerVector())
1419 report("gep offset operand must not be a pointer", MI);
1420
1421 if (PtrTy.isPointerOrPointerVector()) {
1422 const DataLayout &DL = MF->getDataLayout();
1423 unsigned AS = PtrTy.getAddressSpace();
1424 unsigned IndexSizeInBits = DL.getIndexSize(AS) * 8;
1425 if (OffsetTy.getScalarSizeInBits() != IndexSizeInBits) {
1426 report("gep offset operand must match index size for address space",
1427 MI);
1428 }
1429 }
1430
1431 // TODO: Is the offset allowed to be a scalar with a vector?
1432 break;
1433 }
1434 case TargetOpcode::G_PTRMASK: {
1435 LLT DstTy = MRI->getType(MI->getOperand(0).getReg());
1436 LLT SrcTy = MRI->getType(MI->getOperand(1).getReg());
1437 LLT MaskTy = MRI->getType(MI->getOperand(2).getReg());
1438 if (!DstTy.isValid() || !SrcTy.isValid() || !MaskTy.isValid())
1439 break;
1440
1441 if (!DstTy.isPointerOrPointerVector())
1442 report("ptrmask result type must be a pointer", MI);
1443
1444 if (!MaskTy.getScalarType().isScalar())
1445 report("ptrmask mask type must be an integer", MI);
1446
1447 verifyVectorElementMatch(DstTy, MaskTy, MI);
1448 break;
1449 }
1450 case TargetOpcode::G_SEXT:
1451 case TargetOpcode::G_ZEXT:
1452 case TargetOpcode::G_ANYEXT:
1453 case TargetOpcode::G_TRUNC:
1454 case TargetOpcode::G_TRUNC_SSAT_S:
1455 case TargetOpcode::G_TRUNC_SSAT_U:
1456 case TargetOpcode::G_TRUNC_USAT_U:
1457 case TargetOpcode::G_FPEXT:
1458 case TargetOpcode::G_FPTRUNC: {
1459 // Number of operands and presense of types is already checked (and
1460 // reported in case of any issues), so no need to report them again. As
1461 // we're trying to report as many issues as possible at once, however, the
1462 // instructions aren't guaranteed to have the right number of operands or
1463 // types attached to them at this point
1464 assert(MCID.getNumOperands() == 2 && "Expected 2 operands G_*{EXT,TRUNC}");
1465 LLT DstTy = MRI->getType(MI->getOperand(0).getReg());
1466 LLT SrcTy = MRI->getType(MI->getOperand(1).getReg());
1467 if (!DstTy.isValid() || !SrcTy.isValid())
1468 break;
1469
1471 report("Generic extend/truncate can not operate on pointers", MI);
1472
1473 verifyVectorElementMatch(DstTy, SrcTy, MI);
1474
1475 unsigned DstSize = DstTy.getScalarSizeInBits();
1476 unsigned SrcSize = SrcTy.getScalarSizeInBits();
1477 switch (MI->getOpcode()) {
1478 default:
1479 if (DstSize <= SrcSize)
1480 report("Generic extend has destination type no larger than source", MI);
1481 break;
1482 case TargetOpcode::G_TRUNC:
1483 case TargetOpcode::G_TRUNC_SSAT_S:
1484 case TargetOpcode::G_TRUNC_SSAT_U:
1485 case TargetOpcode::G_TRUNC_USAT_U:
1486 case TargetOpcode::G_FPTRUNC:
1487 if (DstSize >= SrcSize)
1488 report("Generic truncate has destination type no smaller than source",
1489 MI);
1490 break;
1491 }
1492 break;
1493 }
1494 case TargetOpcode::G_SELECT: {
1495 LLT SelTy = MRI->getType(MI->getOperand(0).getReg());
1496 LLT CondTy = MRI->getType(MI->getOperand(1).getReg());
1497 if (!SelTy.isValid() || !CondTy.isValid())
1498 break;
1499
1500 // Scalar condition select on a vector is valid.
1501 if (CondTy.isVector())
1502 verifyVectorElementMatch(SelTy, CondTy, MI);
1503 break;
1504 }
1505 case TargetOpcode::G_MERGE_VALUES: {
1506 // G_MERGE_VALUES should only be used to merge scalars into a larger scalar,
1507 // e.g. s2N = MERGE sN, sN
1508 // Merging multiple scalars into a vector is not allowed, should use
1509 // G_BUILD_VECTOR for that.
1510 LLT DstTy = MRI->getType(MI->getOperand(0).getReg());
1511 LLT SrcTy = MRI->getType(MI->getOperand(1).getReg());
1512 if (DstTy.isVector() || SrcTy.isVector())
1513 report("G_MERGE_VALUES cannot operate on vectors", MI);
1514
1515 const unsigned NumOps = MI->getNumOperands();
1516 if (DstTy.getSizeInBits() != SrcTy.getSizeInBits() * (NumOps - 1))
1517 report("G_MERGE_VALUES result size is inconsistent", MI);
1518
1519 for (unsigned I = 2; I != NumOps; ++I) {
1520 if (MRI->getType(MI->getOperand(I).getReg()) != SrcTy)
1521 report("G_MERGE_VALUES source types do not match", MI);
1522 }
1523
1524 break;
1525 }
1526 case TargetOpcode::G_UNMERGE_VALUES: {
1527 unsigned NumDsts = MI->getNumOperands() - 1;
1528 LLT DstTy = MRI->getType(MI->getOperand(0).getReg());
1529 for (unsigned i = 1; i < NumDsts; ++i) {
1530 if (MRI->getType(MI->getOperand(i).getReg()) != DstTy) {
1531 report("G_UNMERGE_VALUES destination types do not match", MI);
1532 break;
1533 }
1534 }
1535
1536 LLT SrcTy = MRI->getType(MI->getOperand(NumDsts).getReg());
1537 if (DstTy.isVector()) {
1538 // This case is the converse of G_CONCAT_VECTORS.
1539 if (!SrcTy.isVector() ||
1540 (SrcTy.getScalarType() != DstTy.getScalarType() &&
1541 !SrcTy.isPointerVector()) ||
1542 SrcTy.isScalableVector() != DstTy.isScalableVector() ||
1543 SrcTy.getSizeInBits() != NumDsts * DstTy.getSizeInBits())
1544 report("G_UNMERGE_VALUES source operand does not match vector "
1545 "destination operands",
1546 MI);
1547 } else if (SrcTy.isVector()) {
1548 // This case is the converse of G_BUILD_VECTOR, but relaxed to allow
1549 // mismatched types as long as the total size matches:
1550 // %0:_(s64), %1:_(s64) = G_UNMERGE_VALUES %2:_(<4 x s32>)
1551 if (SrcTy.getSizeInBits() != NumDsts * DstTy.getSizeInBits())
1552 report("G_UNMERGE_VALUES vector source operand does not match scalar "
1553 "destination operands",
1554 MI);
1555 } else {
1556 // This case is the converse of G_MERGE_VALUES.
1557 if (SrcTy.getSizeInBits() != NumDsts * DstTy.getSizeInBits()) {
1558 report("G_UNMERGE_VALUES scalar source operand does not match scalar "
1559 "destination operands",
1560 MI);
1561 }
1562 }
1563 break;
1564 }
1565 case TargetOpcode::G_BUILD_VECTOR: {
1566 // Source types must be scalars, dest type a vector. Total size of scalars
1567 // must match the dest vector size.
1568 LLT DstTy = MRI->getType(MI->getOperand(0).getReg());
1569 LLT SrcEltTy = MRI->getType(MI->getOperand(1).getReg());
1570 if (!DstTy.isVector() || SrcEltTy.isVector()) {
1571 report("G_BUILD_VECTOR must produce a vector from scalar operands", MI);
1572 break;
1573 }
1574
1575 if (DstTy.getElementType() != SrcEltTy)
1576 report("G_BUILD_VECTOR result element type must match source type", MI);
1577
1578 if (DstTy.getNumElements() != MI->getNumOperands() - 1)
1579 report("G_BUILD_VECTOR must have an operand for each element", MI);
1580
1581 for (const MachineOperand &MO : llvm::drop_begin(MI->operands(), 2))
1582 if (MRI->getType(MI->getOperand(1).getReg()) != MRI->getType(MO.getReg()))
1583 report("G_BUILD_VECTOR source operand types are not homogeneous", MI);
1584
1585 break;
1586 }
1587 case TargetOpcode::G_BUILD_VECTOR_TRUNC: {
1588 // Source types must be scalars, dest type a vector. Scalar types must be
1589 // larger than the dest vector elt type, as this is a truncating operation.
1590 LLT DstTy = MRI->getType(MI->getOperand(0).getReg());
1591 LLT SrcEltTy = MRI->getType(MI->getOperand(1).getReg());
1592 if (!DstTy.isVector() || SrcEltTy.isVector())
1593 report("G_BUILD_VECTOR_TRUNC must produce a vector from scalar operands",
1594 MI);
1595 for (const MachineOperand &MO : llvm::drop_begin(MI->operands(), 2))
1596 if (MRI->getType(MI->getOperand(1).getReg()) != MRI->getType(MO.getReg()))
1597 report("G_BUILD_VECTOR_TRUNC source operand types are not homogeneous",
1598 MI);
1599 if (SrcEltTy.getSizeInBits() <= DstTy.getElementType().getSizeInBits())
1600 report("G_BUILD_VECTOR_TRUNC source operand types are not larger than "
1601 "dest elt type",
1602 MI);
1603 break;
1604 }
1605 case TargetOpcode::G_CONCAT_VECTORS: {
1606 // Source types should be vectors, and total size should match the dest
1607 // vector size.
1608 LLT DstTy = MRI->getType(MI->getOperand(0).getReg());
1609 LLT SrcTy = MRI->getType(MI->getOperand(1).getReg());
1610 if (!DstTy.isVector() || !SrcTy.isVector())
1611 report("G_CONCAT_VECTOR requires vector source and destination operands",
1612 MI);
1613
1614 if (MI->getNumOperands() < 3)
1615 report("G_CONCAT_VECTOR requires at least 2 source operands", MI);
1616
1617 for (const MachineOperand &MO : llvm::drop_begin(MI->operands(), 2))
1618 if (MRI->getType(MI->getOperand(1).getReg()) != MRI->getType(MO.getReg()))
1619 report("G_CONCAT_VECTOR source operand types are not homogeneous", MI);
1620 if (DstTy.getElementCount() !=
1621 SrcTy.getElementCount() * (MI->getNumOperands() - 1))
1622 report("G_CONCAT_VECTOR num dest and source elements should match", MI);
1623 break;
1624 }
1625 case TargetOpcode::G_ICMP:
1626 case TargetOpcode::G_FCMP: {
1627 LLT DstTy = MRI->getType(MI->getOperand(0).getReg());
1628 LLT SrcTy = MRI->getType(MI->getOperand(2).getReg());
1629
1630 if ((DstTy.isVector() != SrcTy.isVector()) ||
1631 (DstTy.isVector() &&
1632 DstTy.getElementCount() != SrcTy.getElementCount()))
1633 report("Generic vector icmp/fcmp must preserve number of lanes", MI);
1634
1635 break;
1636 }
1637 case TargetOpcode::G_SCMP:
1638 case TargetOpcode::G_UCMP: {
1639 LLT DstTy = MRI->getType(MI->getOperand(0).getReg());
1640 LLT SrcTy = MRI->getType(MI->getOperand(1).getReg());
1641
1642 if (SrcTy.isPointerOrPointerVector()) {
1643 report("Generic scmp/ucmp does not support pointers as operands", MI);
1644 break;
1645 }
1646
1647 if (DstTy.isPointerOrPointerVector()) {
1648 report("Generic scmp/ucmp does not support pointers as a result", MI);
1649 break;
1650 }
1651
1652 if (DstTy.getScalarSizeInBits() < 2) {
1653 report("Result type must be at least 2 bits wide", MI);
1654 break;
1655 }
1656
1657 if ((DstTy.isVector() != SrcTy.isVector()) ||
1658 (DstTy.isVector() &&
1659 DstTy.getElementCount() != SrcTy.getElementCount())) {
1660 report("Generic vector scmp/ucmp must preserve number of lanes", MI);
1661 break;
1662 }
1663
1664 break;
1665 }
1666 case TargetOpcode::G_EXTRACT: {
1667 const MachineOperand &SrcOp = MI->getOperand(1);
1668 if (!SrcOp.isReg()) {
1669 report("extract source must be a register", MI);
1670 break;
1671 }
1672
1673 const MachineOperand &OffsetOp = MI->getOperand(2);
1674 if (!OffsetOp.isImm()) {
1675 report("extract offset must be a constant", MI);
1676 break;
1677 }
1678
1679 unsigned DstSize = MRI->getType(MI->getOperand(0).getReg()).getSizeInBits();
1680 unsigned SrcSize = MRI->getType(SrcOp.getReg()).getSizeInBits();
1681 if (SrcSize == DstSize)
1682 report("extract source must be larger than result", MI);
1683
1684 if (DstSize + OffsetOp.getImm() > SrcSize)
1685 report("extract reads past end of register", MI);
1686 break;
1687 }
1688 case TargetOpcode::G_INSERT: {
1689 const MachineOperand &SrcOp = MI->getOperand(2);
1690 if (!SrcOp.isReg()) {
1691 report("insert source must be a register", MI);
1692 break;
1693 }
1694
1695 const MachineOperand &OffsetOp = MI->getOperand(3);
1696 if (!OffsetOp.isImm()) {
1697 report("insert offset must be a constant", MI);
1698 break;
1699 }
1700
1701 unsigned DstSize = MRI->getType(MI->getOperand(0).getReg()).getSizeInBits();
1702 unsigned SrcSize = MRI->getType(SrcOp.getReg()).getSizeInBits();
1703
1704 if (DstSize <= SrcSize)
1705 report("inserted size must be smaller than total register", MI);
1706
1707 if (SrcSize + OffsetOp.getImm() > DstSize)
1708 report("insert writes past end of register", MI);
1709
1710 break;
1711 }
1712 case TargetOpcode::G_JUMP_TABLE: {
1713 if (!MI->getOperand(1).isJTI())
1714 report("G_JUMP_TABLE source operand must be a jump table index", MI);
1715 LLT DstTy = MRI->getType(MI->getOperand(0).getReg());
1716 if (!DstTy.isPointer())
1717 report("G_JUMP_TABLE dest operand must have a pointer type", MI);
1718 break;
1719 }
1720 case TargetOpcode::G_BRJT: {
1721 if (!MRI->getType(MI->getOperand(0).getReg()).isPointer())
1722 report("G_BRJT src operand 0 must be a pointer type", MI);
1723
1724 if (!MI->getOperand(1).isJTI())
1725 report("G_BRJT src operand 1 must be a jump table index", MI);
1726
1727 const auto &IdxOp = MI->getOperand(2);
1728 if (!IdxOp.isReg() || MRI->getType(IdxOp.getReg()).isPointer())
1729 report("G_BRJT src operand 2 must be a scalar reg type", MI);
1730 break;
1731 }
1732 case TargetOpcode::G_INTRINSIC:
1733 case TargetOpcode::G_INTRINSIC_W_SIDE_EFFECTS:
1734 case TargetOpcode::G_INTRINSIC_CONVERGENT:
1735 case TargetOpcode::G_INTRINSIC_CONVERGENT_W_SIDE_EFFECTS: {
1736 // TODO: Should verify number of def and use operands, but the current
1737 // interface requires passing in IR types for mangling.
1738 const MachineOperand &IntrIDOp = MI->getOperand(MI->getNumExplicitDefs());
1739 if (!IntrIDOp.isIntrinsicID()) {
1740 report("G_INTRINSIC first src operand must be an intrinsic ID", MI);
1741 break;
1742 }
1743
1744 if (!verifyGIntrinsicSideEffects(MI))
1745 break;
1746 if (!verifyGIntrinsicConvergence(MI))
1747 break;
1748
1749 break;
1750 }
1751 case TargetOpcode::G_SEXT_INREG: {
1752 if (!MI->getOperand(2).isImm()) {
1753 report("G_SEXT_INREG expects an immediate operand #2", MI);
1754 break;
1755 }
1756
1757 LLT SrcTy = MRI->getType(MI->getOperand(1).getReg());
1758 int64_t Imm = MI->getOperand(2).getImm();
1759 if (Imm <= 0)
1760 report("G_SEXT_INREG size must be >= 1", MI);
1761 if (Imm >= SrcTy.getScalarSizeInBits())
1762 report("G_SEXT_INREG size must be less than source bit width", MI);
1763 break;
1764 }
1765 case TargetOpcode::G_BSWAP: {
1766 LLT DstTy = MRI->getType(MI->getOperand(0).getReg());
1767 if (DstTy.getScalarSizeInBits() % 16 != 0)
1768 report("G_BSWAP size must be a multiple of 16 bits", MI);
1769 break;
1770 }
1771 case TargetOpcode::G_VSCALE: {
1772 if (!MI->getOperand(1).isCImm()) {
1773 report("G_VSCALE operand must be cimm", MI);
1774 break;
1775 }
1776 if (MI->getOperand(1).getCImm()->isZero()) {
1777 report("G_VSCALE immediate cannot be zero", MI);
1778 break;
1779 }
1780 break;
1781 }
1782 case TargetOpcode::G_STEP_VECTOR: {
1783 if (!MI->getOperand(1).isCImm()) {
1784 report("operand must be cimm", MI);
1785 break;
1786 }
1787
1788 if (!MI->getOperand(1).getCImm()->getValue().isStrictlyPositive()) {
1789 report("step must be > 0", MI);
1790 break;
1791 }
1792
1793 LLT DstTy = MRI->getType(MI->getOperand(0).getReg());
1794 if (!DstTy.isScalableVector()) {
1795 report("Destination type must be a scalable vector", MI);
1796 break;
1797 }
1798
1799 // <vscale x 2 x p0>
1800 if (!DstTy.getElementType().isScalar()) {
1801 report("Destination element type must be scalar", MI);
1802 break;
1803 }
1804
1805 if (MI->getOperand(1).getCImm()->getBitWidth() !=
1807 report("step bitwidth differs from result type element bitwidth", MI);
1808 break;
1809 }
1810 break;
1811 }
1812 case TargetOpcode::G_INSERT_SUBVECTOR: {
1813 const MachineOperand &Src0Op = MI->getOperand(1);
1814 if (!Src0Op.isReg()) {
1815 report("G_INSERT_SUBVECTOR first source must be a register", MI);
1816 break;
1817 }
1818
1819 const MachineOperand &Src1Op = MI->getOperand(2);
1820 if (!Src1Op.isReg()) {
1821 report("G_INSERT_SUBVECTOR second source must be a register", MI);
1822 break;
1823 }
1824
1825 const MachineOperand &IndexOp = MI->getOperand(3);
1826 if (!IndexOp.isImm()) {
1827 report("G_INSERT_SUBVECTOR index must be an immediate", MI);
1828 break;
1829 }
1830
1831 LLT DstTy = MRI->getType(MI->getOperand(0).getReg());
1832 LLT Src1Ty = MRI->getType(Src1Op.getReg());
1833
1834 if (!DstTy.isVector()) {
1835 report("Destination type must be a vector", MI);
1836 break;
1837 }
1838
1839 if (!Src1Ty.isVector()) {
1840 report("Second source must be a vector", MI);
1841 break;
1842 }
1843
1844 if (DstTy.getElementType() != Src1Ty.getElementType()) {
1845 report("Element type of vectors must be the same", MI);
1846 break;
1847 }
1848
1849 if (!DstTy.isScalable() && Src1Ty.isScalable()) {
1850 report("Cannot insert a scalable vector into a fixed length vector", MI);
1851 break;
1852 }
1853
1854 bool IsMixedFixedIntoScalable =
1855 DstTy.isScalableVector() && Src1Ty.isFixedVector();
1856
1857 if (!IsMixedFixedIntoScalable &&
1859 DstTy.getElementCount())) {
1860 report("Second source must be smaller than destination vector", MI);
1861 break;
1862 }
1863
1864 uint64_t Idx = IndexOp.getImm();
1865 uint64_t Src1MinLen = Src1Ty.getElementCount().getKnownMinValue();
1866 if (IndexOp.getImm() % Src1MinLen != 0) {
1867 report("Index must be a multiple of the second source vector's "
1868 "minimum vector length",
1869 MI);
1870 break;
1871 }
1872
1873 uint64_t DstMinLen = DstTy.getElementCount().getKnownMinValue();
1874 if (Idx >= DstMinLen ||
1875 (!IsMixedFixedIntoScalable && Idx + Src1MinLen > DstMinLen)) {
1876 report("Subvector type and index must not cause insert to overrun the "
1877 "vector being inserted into",
1878 MI);
1879 break;
1880 }
1881
1882 break;
1883 }
1884 case TargetOpcode::G_EXTRACT_SUBVECTOR: {
1885 const MachineOperand &SrcOp = MI->getOperand(1);
1886 if (!SrcOp.isReg()) {
1887 report("G_EXTRACT_SUBVECTOR first source must be a register", MI);
1888 break;
1889 }
1890
1891 const MachineOperand &IndexOp = MI->getOperand(2);
1892 if (!IndexOp.isImm()) {
1893 report("G_EXTRACT_SUBVECTOR index must be an immediate", MI);
1894 break;
1895 }
1896
1897 LLT DstTy = MRI->getType(MI->getOperand(0).getReg());
1898 LLT SrcTy = MRI->getType(SrcOp.getReg());
1899
1900 if (!DstTy.isVector()) {
1901 report("Destination type must be a vector", MI);
1902 break;
1903 }
1904
1905 if (!SrcTy.isVector()) {
1906 report("Source must be a vector", MI);
1907 break;
1908 }
1909
1910 if (DstTy.getElementType() != SrcTy.getElementType()) {
1911 report("Element type of vectors must be the same", MI);
1912 break;
1913 }
1914
1915 if (DstTy.isScalable() && !SrcTy.isScalable()) {
1916 report("Cannot extract a scalable vector from a fixed length vector", MI);
1917 break;
1918 }
1919
1921 SrcTy.getElementCount())) {
1922 report("Destination vector must be smaller than source vector", MI);
1923 break;
1924 }
1925
1926 uint64_t Idx = IndexOp.getImm();
1927 uint64_t DstMinLen = DstTy.getElementCount().getKnownMinValue();
1928 if (Idx % DstMinLen != 0) {
1929 report("Index must be a multiple of the destination vector's minimum "
1930 "vector length",
1931 MI);
1932 break;
1933 }
1934
1935 bool IsMixedFixedFromScalable =
1936 DstTy.isFixedVector() && SrcTy.isScalableVector();
1937 uint64_t SrcMinLen = SrcTy.getElementCount().getKnownMinValue();
1938 if (Idx >= SrcMinLen ||
1939 (!IsMixedFixedFromScalable && Idx + DstMinLen > SrcMinLen)) {
1940 report("Destination type and index must not cause extract to overrun the "
1941 "source vector",
1942 MI);
1943 break;
1944 }
1945
1946 break;
1947 }
1948 case TargetOpcode::G_SHUFFLE_VECTOR: {
1949 const MachineOperand &MaskOp = MI->getOperand(3);
1950 if (!MaskOp.isShuffleMask()) {
1951 report("Incorrect mask operand type for G_SHUFFLE_VECTOR", MI);
1952 break;
1953 }
1954
1955 LLT DstTy = MRI->getType(MI->getOperand(0).getReg());
1956 LLT Src0Ty = MRI->getType(MI->getOperand(1).getReg());
1957 LLT Src1Ty = MRI->getType(MI->getOperand(2).getReg());
1958
1959 if (Src0Ty != Src1Ty)
1960 report("Source operands must be the same type", MI);
1961
1962 if (Src0Ty.getScalarType() != DstTy.getScalarType()) {
1963 report("G_SHUFFLE_VECTOR cannot change element type", MI);
1964 break;
1965 }
1966 if (!Src0Ty.isVector()) {
1967 report("G_SHUFFLE_VECTOR must have vector src", MI);
1968 break;
1969 }
1970 if (!DstTy.isVector()) {
1971 report("G_SHUFFLE_VECTOR must have vector dst", MI);
1972 break;
1973 }
1974
1975 // Don't check that all operands are vector because scalars are used in
1976 // place of 1 element vectors.
1977 int SrcNumElts = Src0Ty.getNumElements();
1978 int DstNumElts = DstTy.getNumElements();
1979
1980 ArrayRef<int> MaskIdxes = MaskOp.getShuffleMask();
1981
1982 if (static_cast<int>(MaskIdxes.size()) != DstNumElts)
1983 report("Wrong result type for shufflemask", MI);
1984
1985 for (int Idx : MaskIdxes) {
1986 if (Idx < 0)
1987 continue;
1988
1989 if (Idx >= 2 * SrcNumElts)
1990 report("Out of bounds shuffle index", MI);
1991 }
1992
1993 break;
1994 }
1995
1996 case TargetOpcode::G_SPLAT_VECTOR: {
1997 LLT DstTy = MRI->getType(MI->getOperand(0).getReg());
1998 LLT SrcTy = MRI->getType(MI->getOperand(1).getReg());
1999
2000 if (!DstTy.isScalableVector()) {
2001 report("Destination type must be a scalable vector", MI);
2002 break;
2003 }
2004
2005 if (!SrcTy.isScalar() && !SrcTy.isPointer()) {
2006 report("Source type must be a scalar or pointer", MI);
2007 break;
2008 }
2009
2011 SrcTy.getSizeInBits())) {
2012 report("Element type of the destination must be the same size or smaller "
2013 "than the source type",
2014 MI);
2015 break;
2016 }
2017
2018 break;
2019 }
2020 case TargetOpcode::G_EXTRACT_VECTOR_ELT: {
2021 LLT DstTy = MRI->getType(MI->getOperand(0).getReg());
2022 LLT SrcTy = MRI->getType(MI->getOperand(1).getReg());
2023 LLT IdxTy = MRI->getType(MI->getOperand(2).getReg());
2024
2025 if (!DstTy.isScalar() && !DstTy.isPointer()) {
2026 report("Destination type must be a scalar or pointer", MI);
2027 break;
2028 }
2029
2030 if (!SrcTy.isVector()) {
2031 report("First source must be a vector", MI);
2032 break;
2033 }
2034
2035 auto TLI = MF->getSubtarget().getTargetLowering();
2036 if (IdxTy.getSizeInBits() != TLI->getVectorIdxWidth(MF->getDataLayout())) {
2037 report("Index type must match VectorIdxTy", MI);
2038 break;
2039 }
2040
2041 break;
2042 }
2043 case TargetOpcode::G_INSERT_VECTOR_ELT: {
2044 LLT DstTy = MRI->getType(MI->getOperand(0).getReg());
2045 LLT VecTy = MRI->getType(MI->getOperand(1).getReg());
2046 LLT ScaTy = MRI->getType(MI->getOperand(2).getReg());
2047 LLT IdxTy = MRI->getType(MI->getOperand(3).getReg());
2048
2049 if (!DstTy.isVector()) {
2050 report("Destination type must be a vector", MI);
2051 break;
2052 }
2053
2054 if (VecTy != DstTy) {
2055 report("Destination type and vector type must match", MI);
2056 break;
2057 }
2058
2059 if (!ScaTy.isScalar() && !ScaTy.isPointer()) {
2060 report("Inserted element must be a scalar or pointer", MI);
2061 break;
2062 }
2063
2064 auto TLI = MF->getSubtarget().getTargetLowering();
2065 if (IdxTy.getSizeInBits() != TLI->getVectorIdxWidth(MF->getDataLayout())) {
2066 report("Index type must match VectorIdxTy", MI);
2067 break;
2068 }
2069
2070 break;
2071 }
2072 case TargetOpcode::G_DYN_STACKALLOC: {
2073 const MachineOperand &DstOp = MI->getOperand(0);
2074 const MachineOperand &AllocOp = MI->getOperand(1);
2075 const MachineOperand &AlignOp = MI->getOperand(2);
2076
2077 if (!DstOp.isReg() || !MRI->getType(DstOp.getReg()).isPointer()) {
2078 report("dst operand 0 must be a pointer type", MI);
2079 break;
2080 }
2081
2082 if (!AllocOp.isReg() || !MRI->getType(AllocOp.getReg()).isScalar()) {
2083 report("src operand 1 must be a scalar reg type", MI);
2084 break;
2085 }
2086
2087 if (!AlignOp.isImm()) {
2088 report("src operand 2 must be an immediate type", MI);
2089 break;
2090 }
2091 break;
2092 }
2093 case TargetOpcode::G_MEMCPY_INLINE:
2094 case TargetOpcode::G_MEMCPY:
2095 case TargetOpcode::G_MEMMOVE: {
2096 ArrayRef<MachineMemOperand *> MMOs = MI->memoperands();
2097 if (MMOs.size() != 2) {
2098 report("memcpy/memmove must have 2 memory operands", MI);
2099 break;
2100 }
2101
2102 if ((!MMOs[0]->isStore() || MMOs[0]->isLoad()) ||
2103 (MMOs[1]->isStore() || !MMOs[1]->isLoad())) {
2104 report("wrong memory operand types", MI);
2105 break;
2106 }
2107
2108 if (MMOs[0]->getSize() != MMOs[1]->getSize())
2109 report("inconsistent memory operand sizes", MI);
2110
2111 LLT DstPtrTy = MRI->getType(MI->getOperand(0).getReg());
2112 LLT SrcPtrTy = MRI->getType(MI->getOperand(1).getReg());
2113
2114 if (!DstPtrTy.isPointer() || !SrcPtrTy.isPointer()) {
2115 report("memory instruction operand must be a pointer", MI);
2116 break;
2117 }
2118
2119 if (DstPtrTy.getAddressSpace() != MMOs[0]->getAddrSpace())
2120 report("inconsistent store address space", MI);
2121 if (SrcPtrTy.getAddressSpace() != MMOs[1]->getAddrSpace())
2122 report("inconsistent load address space", MI);
2123
2124 if (Opc != TargetOpcode::G_MEMCPY_INLINE)
2125 if (!MI->getOperand(3).isImm() || (MI->getOperand(3).getImm() & ~1LL))
2126 report("'tail' flag (operand 3) must be an immediate 0 or 1", MI);
2127
2128 break;
2129 }
2130 case TargetOpcode::G_BZERO:
2131 case TargetOpcode::G_MEMSET: {
2132 ArrayRef<MachineMemOperand *> MMOs = MI->memoperands();
2133 std::string Name = Opc == TargetOpcode::G_MEMSET ? "memset" : "bzero";
2134 if (MMOs.size() != 1) {
2135 report(Twine(Name, " must have 1 memory operand"), MI);
2136 break;
2137 }
2138
2139 if ((!MMOs[0]->isStore() || MMOs[0]->isLoad())) {
2140 report(Twine(Name, " memory operand must be a store"), MI);
2141 break;
2142 }
2143
2144 LLT DstPtrTy = MRI->getType(MI->getOperand(0).getReg());
2145 if (!DstPtrTy.isPointer()) {
2146 report(Twine(Name, " operand must be a pointer"), MI);
2147 break;
2148 }
2149
2150 if (DstPtrTy.getAddressSpace() != MMOs[0]->getAddrSpace())
2151 report("inconsistent " + Twine(Name, " address space"), MI);
2152
2153 if (!MI->getOperand(MI->getNumOperands() - 1).isImm() ||
2154 (MI->getOperand(MI->getNumOperands() - 1).getImm() & ~1LL))
2155 report("'tail' flag (last operand) must be an immediate 0 or 1", MI);
2156
2157 break;
2158 }
2159 case TargetOpcode::G_UBSANTRAP: {
2160 const MachineOperand &KindOp = MI->getOperand(0);
2161 if (!MI->getOperand(0).isImm()) {
2162 report("Crash kind must be an immediate", &KindOp, 0);
2163 break;
2164 }
2165 int64_t Kind = MI->getOperand(0).getImm();
2166 if (!isInt<8>(Kind))
2167 report("Crash kind must be 8 bit wide", &KindOp, 0);
2168 break;
2169 }
2170 case TargetOpcode::G_VECREDUCE_SEQ_FADD:
2171 case TargetOpcode::G_VECREDUCE_SEQ_FMUL: {
2172 LLT DstTy = MRI->getType(MI->getOperand(0).getReg());
2173 LLT Src1Ty = MRI->getType(MI->getOperand(1).getReg());
2174 LLT Src2Ty = MRI->getType(MI->getOperand(2).getReg());
2175 if (!DstTy.isScalar())
2176 report("Vector reduction requires a scalar destination type", MI);
2177 if (!Src1Ty.isScalar())
2178 report("Sequential FADD/FMUL vector reduction requires a scalar 1st operand", MI);
2179 if (!Src2Ty.isVector())
2180 report("Sequential FADD/FMUL vector reduction must have a vector 2nd operand", MI);
2181 break;
2182 }
2183 case TargetOpcode::G_VECREDUCE_FADD:
2184 case TargetOpcode::G_VECREDUCE_FMUL:
2185 case TargetOpcode::G_VECREDUCE_FMAX:
2186 case TargetOpcode::G_VECREDUCE_FMIN:
2187 case TargetOpcode::G_VECREDUCE_FMAXIMUM:
2188 case TargetOpcode::G_VECREDUCE_FMINIMUM:
2189 case TargetOpcode::G_VECREDUCE_ADD:
2190 case TargetOpcode::G_VECREDUCE_MUL:
2191 case TargetOpcode::G_VECREDUCE_AND:
2192 case TargetOpcode::G_VECREDUCE_OR:
2193 case TargetOpcode::G_VECREDUCE_XOR:
2194 case TargetOpcode::G_VECREDUCE_SMAX:
2195 case TargetOpcode::G_VECREDUCE_SMIN:
2196 case TargetOpcode::G_VECREDUCE_UMAX:
2197 case TargetOpcode::G_VECREDUCE_UMIN: {
2198 LLT DstTy = MRI->getType(MI->getOperand(0).getReg());
2199 if (!DstTy.isScalar())
2200 report("Vector reduction requires a scalar destination type", MI);
2201 break;
2202 }
2203
2204 case TargetOpcode::G_SBFX:
2205 case TargetOpcode::G_UBFX: {
2206 LLT DstTy = MRI->getType(MI->getOperand(0).getReg());
2207 if (DstTy.isVector()) {
2208 report("Bitfield extraction is not supported on vectors", MI);
2209 break;
2210 }
2211 break;
2212 }
2213 case TargetOpcode::G_SHL:
2214 case TargetOpcode::G_LSHR:
2215 case TargetOpcode::G_ASHR:
2216 case TargetOpcode::G_ROTR:
2217 case TargetOpcode::G_ROTL: {
2218 LLT Src1Ty = MRI->getType(MI->getOperand(1).getReg());
2219 LLT Src2Ty = MRI->getType(MI->getOperand(2).getReg());
2220 if (Src1Ty.isVector() != Src2Ty.isVector()) {
2221 report("Shifts and rotates require operands to be either all scalars or "
2222 "all vectors",
2223 MI);
2224 break;
2225 }
2226 break;
2227 }
2228 case TargetOpcode::G_LLROUND:
2229 case TargetOpcode::G_LROUND: {
2230 LLT DstTy = MRI->getType(MI->getOperand(0).getReg());
2231 LLT SrcTy = MRI->getType(MI->getOperand(1).getReg());
2232 if (!DstTy.isValid() || !SrcTy.isValid())
2233 break;
2234 if (SrcTy.isPointer() || DstTy.isPointer()) {
2235 StringRef Op = SrcTy.isPointer() ? "Source" : "Destination";
2236 report(Twine(Op, " operand must not be a pointer type"), MI);
2237 } else if (SrcTy.isScalar()) {
2238 verifyAllRegOpsScalar(*MI, *MRI);
2239 break;
2240 } else if (SrcTy.isVector()) {
2241 verifyVectorElementMatch(SrcTy, DstTy, MI);
2242 break;
2243 }
2244 break;
2245 }
2246 case TargetOpcode::G_IS_FPCLASS: {
2247 LLT DestTy = MRI->getType(MI->getOperand(0).getReg());
2248 LLT DestEltTy = DestTy.getScalarType();
2249 if (!DestEltTy.isScalar()) {
2250 report("Destination must be a scalar or vector of scalars", MI);
2251 break;
2252 }
2253 LLT SrcTy = MRI->getType(MI->getOperand(1).getReg());
2254 LLT SrcEltTy = SrcTy.getScalarType();
2255 if (!SrcEltTy.isScalar()) {
2256 report("Source must be a scalar or vector of scalars", MI);
2257 break;
2258 }
2259 if (!verifyVectorElementMatch(DestTy, SrcTy, MI))
2260 break;
2261 const MachineOperand &TestMO = MI->getOperand(2);
2262 if (!TestMO.isImm()) {
2263 report("floating-point class set (operand 2) must be an immediate", MI);
2264 break;
2265 }
2266 int64_t Test = TestMO.getImm();
2268 report("Incorrect floating-point class set (operand 2)", MI);
2269 break;
2270 }
2271 break;
2272 }
2273 case TargetOpcode::G_PREFETCH: {
2274 const MachineOperand &AddrOp = MI->getOperand(0);
2275 if (!AddrOp.isReg() || !MRI->getType(AddrOp.getReg()).isPointer()) {
2276 report("addr operand must be a pointer", &AddrOp, 0);
2277 break;
2278 }
2279 const MachineOperand &RWOp = MI->getOperand(1);
2280 if (!RWOp.isImm() || (uint64_t)RWOp.getImm() >= 2) {
2281 report("rw operand must be an immediate 0-1", &RWOp, 1);
2282 break;
2283 }
2284 const MachineOperand &LocalityOp = MI->getOperand(2);
2285 if (!LocalityOp.isImm() || (uint64_t)LocalityOp.getImm() >= 4) {
2286 report("locality operand must be an immediate 0-3", &LocalityOp, 2);
2287 break;
2288 }
2289 const MachineOperand &CacheTypeOp = MI->getOperand(3);
2290 if (!CacheTypeOp.isImm() || (uint64_t)CacheTypeOp.getImm() >= 2) {
2291 report("cache type operand must be an immediate 0-1", &CacheTypeOp, 3);
2292 break;
2293 }
2294 break;
2295 }
2296 case TargetOpcode::G_ASSERT_ALIGN: {
2297 if (MI->getOperand(2).getImm() < 1)
2298 report("alignment immediate must be >= 1", MI);
2299 break;
2300 }
2301 case TargetOpcode::G_CONSTANT_POOL: {
2302 if (!MI->getOperand(1).isCPI())
2303 report("Src operand 1 must be a constant pool index", MI);
2304 if (!MRI->getType(MI->getOperand(0).getReg()).isPointer())
2305 report("Dst operand 0 must be a pointer", MI);
2306 break;
2307 }
2308 case TargetOpcode::G_PTRAUTH_GLOBAL_VALUE: {
2309 const MachineOperand &AddrOp = MI->getOperand(1);
2310 if (!AddrOp.isReg() || !MRI->getType(AddrOp.getReg()).isPointer())
2311 report("addr operand must be a pointer", &AddrOp, 1);
2312 break;
2313 }
2314 case TargetOpcode::G_SMIN:
2315 case TargetOpcode::G_SMAX:
2316 case TargetOpcode::G_UMIN:
2317 case TargetOpcode::G_UMAX: {
2318 const LLT DstTy = MRI->getType(MI->getOperand(0).getReg());
2319 if (DstTy.isPointerOrPointerVector())
2320 report("Generic smin/smax/umin/umax does not support pointer operands",
2321 MI);
2322 break;
2323 }
2324 default:
2325 break;
2326 }
2327}
2328
2329void MachineVerifier::visitMachineInstrBefore(const MachineInstr *MI) {
2330 const MCInstrDesc &MCID = MI->getDesc();
2331 if (MI->getNumOperands() < MCID.getNumOperands()) {
2332 report("Too few operands", MI);
2333 OS << MCID.getNumOperands() << " operands expected, but "
2334 << MI->getNumOperands() << " given.\n";
2335 }
2336
2337 if (MI->getFlag(MachineInstr::NoConvergent) && !MCID.isConvergent())
2338 report("NoConvergent flag expected only on convergent instructions.", MI);
2339
2340 if (MI->isPHI()) {
2341 if (MF->getProperties().hasNoPHIs())
2342 report("Found PHI instruction with NoPHIs property set", MI);
2343
2344 if (FirstNonPHI)
2345 report("Found PHI instruction after non-PHI", MI);
2346 } else if (FirstNonPHI == nullptr)
2347 FirstNonPHI = MI;
2348
2349 // Check the tied operands.
2350 if (MI->isInlineAsm())
2351 verifyInlineAsm(MI);
2352
2353 // Check that unspillable terminators define a reg and have at most one use.
2354 if (TII->isUnspillableTerminator(MI)) {
2355 if (!MI->getOperand(0).isReg() || !MI->getOperand(0).isDef())
2356 report("Unspillable Terminator does not define a reg", MI);
2357 Register Def = MI->getOperand(0).getReg();
2358 if (Def.isVirtual() && !MF->getProperties().hasNoPHIs() &&
2359 std::distance(MRI->use_nodbg_begin(Def), MRI->use_nodbg_end()) > 1)
2360 report("Unspillable Terminator expected to have at most one use!", MI);
2361 }
2362
2363 // A fully-formed DBG_VALUE must have a location. Ignore partially formed
2364 // DBG_VALUEs: these are convenient to use in tests, but should never get
2365 // generated.
2366 if (MI->isDebugValue() && MI->getNumOperands() == 4)
2367 if (!MI->getDebugLoc())
2368 report("Missing DebugLoc for debug instruction", MI);
2369
2370 // Meta instructions should never be the subject of debug value tracking,
2371 // they don't create a value in the output program at all.
2372 if (MI->isMetaInstruction() && MI->peekDebugInstrNum())
2373 report("Metadata instruction should not have a value tracking number", MI);
2374
2375 // Check the MachineMemOperands for basic consistency.
2376 for (MachineMemOperand *Op : MI->memoperands()) {
2377 if (Op->isLoad() && !MI->mayLoad())
2378 report("Missing mayLoad flag", MI);
2379 if (Op->isStore() && !MI->mayStore())
2380 report("Missing mayStore flag", MI);
2381 }
2382
2383 // Debug values must not have a slot index.
2384 // Other instructions must have one, unless they are inside a bundle.
2385 if (LiveInts) {
2386 bool mapped = !LiveInts->isNotInMIMap(*MI);
2387 if (MI->isDebugOrPseudoInstr()) {
2388 if (mapped)
2389 report("Debug instruction has a slot index", MI);
2390 } else if (MI->isInsideBundle()) {
2391 if (mapped)
2392 report("Instruction inside bundle has a slot index", MI);
2393 } else {
2394 if (!mapped)
2395 report("Missing slot index", MI);
2396 }
2397 }
2398
2399 unsigned Opc = MCID.getOpcode();
2401 verifyPreISelGenericInstruction(MI);
2402 return;
2403 }
2404
2406 if (!TII->verifyInstruction(*MI, ErrorInfo))
2407 report(ErrorInfo.data(), MI);
2408
2409 // Verify properties of various specific instruction types
2410 switch (MI->getOpcode()) {
2411 case TargetOpcode::COPY: {
2412 const MachineOperand &DstOp = MI->getOperand(0);
2413 const MachineOperand &SrcOp = MI->getOperand(1);
2414 const Register SrcReg = SrcOp.getReg();
2415 const Register DstReg = DstOp.getReg();
2416
2417 LLT DstTy = MRI->getType(DstReg);
2418 LLT SrcTy = MRI->getType(SrcReg);
2419 if (SrcTy.isValid() && DstTy.isValid()) {
2420 // If both types are valid, check that the types are the same.
2421 if (SrcTy != DstTy) {
2422 report("Copy Instruction is illegal with mismatching types", MI);
2423 OS << "Def = " << DstTy << ", Src = " << SrcTy << '\n';
2424 }
2425
2426 break;
2427 }
2428
2429 if (!SrcTy.isValid() && !DstTy.isValid())
2430 break;
2431
2432 // If we have only one valid type, this is likely a copy between a virtual
2433 // and physical register.
2434 TypeSize SrcSize = TypeSize::getZero();
2435 TypeSize DstSize = TypeSize::getZero();
2436 if (SrcReg.isPhysical() && DstTy.isValid()) {
2437 if (!hasPhysRegClassForType(*TRI, SrcReg, DstTy))
2438 SrcSize = TRI->getRegSizeInBits(SrcReg, *MRI);
2439 } else {
2440 SrcSize = TRI->getRegSizeInBits(SrcReg, *MRI);
2441 }
2442
2443 if (DstReg.isPhysical() && SrcTy.isValid()) {
2444 if (!hasPhysRegClassForType(*TRI, DstReg, SrcTy))
2445 DstSize = TRI->getRegSizeInBits(DstReg, *MRI);
2446 } else {
2447 DstSize = TRI->getRegSizeInBits(DstReg, *MRI);
2448 }
2449
2450 // The next two checks allow COPY between physical and virtual registers,
2451 // when the virtual register has a scalable size and the physical register
2452 // has a fixed size. These checks allow COPY between *potentially*
2453 // mismatched sizes. However, once RegisterBankSelection occurs,
2454 // MachineVerifier should be able to resolve a fixed size for the scalable
2455 // vector, and at that point this function will know for sure whether the
2456 // sizes are mismatched and correctly report a size mismatch.
2457 if (SrcReg.isPhysical() && DstReg.isVirtual() && DstSize.isScalable() &&
2458 !SrcSize.isScalable())
2459 break;
2460 if (SrcReg.isVirtual() && DstReg.isPhysical() && SrcSize.isScalable() &&
2461 !DstSize.isScalable())
2462 break;
2463
2464 if (SrcSize.isNonZero() && DstSize.isNonZero() && SrcSize != DstSize) {
2465 if (!DstOp.getSubReg() && !SrcOp.getSubReg()) {
2466 report("Copy Instruction is illegal with mismatching sizes", MI);
2467 OS << "Def Size = " << DstSize << ", Src Size = " << SrcSize << '\n';
2468 }
2469 }
2470 break;
2471 }
2472 case TargetOpcode::COPY_LANEMASK: {
2473 const MachineOperand &DstOp = MI->getOperand(0);
2474 const MachineOperand &SrcOp = MI->getOperand(1);
2475 const MachineOperand &LaneMaskOp = MI->getOperand(2);
2476 const Register SrcReg = SrcOp.getReg();
2477 const LaneBitmask LaneMask = LaneMaskOp.getLaneMask();
2478 LaneBitmask SrcMaxLaneMask = LaneBitmask::getAll();
2479
2480 if (DstOp.getSubReg())
2481 report("COPY_LANEMASK must not use a subregister index", &DstOp, 0);
2482
2483 if (SrcOp.getSubReg())
2484 report("COPY_LANEMASK must not use a subregister index", &SrcOp, 1);
2485
2486 if (LaneMask.none())
2487 report("COPY_LANEMASK must read at least one lane", MI);
2488
2489 if (SrcReg.isPhysical()) {
2490 const TargetRegisterClass *SrcRC = TRI->getMinimalPhysRegClass(SrcReg);
2491 if (SrcRC)
2492 SrcMaxLaneMask = SrcRC->getLaneMask();
2493 } else {
2494 SrcMaxLaneMask = MRI->getMaxLaneMaskForVReg(SrcReg);
2495 }
2496
2497 // COPY_LANEMASK should be used only for partial copy. For full
2498 // copy, one should strictly use the COPY instruction.
2499 if (SrcMaxLaneMask == LaneMask)
2500 report("COPY_LANEMASK cannot be used to do full copy", MI);
2501
2502 // If LaneMask is greater than the SrcMaxLaneMask, it implies
2503 // COPY_LANEMASK is attempting to read from the lanes that
2504 // don't exists in the source register.
2505 if (SrcMaxLaneMask < LaneMask)
2506 report("COPY_LANEMASK attempts to read from the lanes that "
2507 "don't exist in the source register",
2508 MI);
2509
2510 break;
2511 }
2512 case TargetOpcode::STATEPOINT: {
2513 StatepointOpers SO(MI);
2514 if (!MI->getOperand(SO.getIDPos()).isImm() ||
2515 !MI->getOperand(SO.getNBytesPos()).isImm() ||
2516 !MI->getOperand(SO.getNCallArgsPos()).isImm()) {
2517 report("meta operands to STATEPOINT not constant!", MI);
2518 break;
2519 }
2520
2521 auto VerifyStackMapConstant = [&](unsigned Offset) {
2522 if (Offset >= MI->getNumOperands()) {
2523 report("stack map constant to STATEPOINT is out of range!", MI);
2524 return;
2525 }
2526 if (!MI->getOperand(Offset - 1).isImm() ||
2527 MI->getOperand(Offset - 1).getImm() != StackMaps::ConstantOp ||
2528 !MI->getOperand(Offset).isImm())
2529 report("stack map constant to STATEPOINT not well formed!", MI);
2530 };
2531 VerifyStackMapConstant(SO.getCCIdx());
2532 VerifyStackMapConstant(SO.getFlagsIdx());
2533 VerifyStackMapConstant(SO.getNumDeoptArgsIdx());
2534 VerifyStackMapConstant(SO.getNumGCPtrIdx());
2535 VerifyStackMapConstant(SO.getNumAllocaIdx());
2536 VerifyStackMapConstant(SO.getNumGcMapEntriesIdx());
2537
2538 // Verify that all explicit statepoint defs are tied to gc operands as
2539 // they are expected to be a relocation of gc operands.
2540 unsigned FirstGCPtrIdx = SO.getFirstGCPtrIdx();
2541 unsigned LastGCPtrIdx = SO.getNumAllocaIdx() - 2;
2542 for (unsigned Idx = 0; Idx < MI->getNumDefs(); Idx++) {
2543 unsigned UseOpIdx;
2544 if (!MI->isRegTiedToUseOperand(Idx, &UseOpIdx)) {
2545 report("STATEPOINT defs expected to be tied", MI);
2546 break;
2547 }
2548 if (UseOpIdx < FirstGCPtrIdx || UseOpIdx > LastGCPtrIdx) {
2549 report("STATEPOINT def tied to non-gc operand", MI);
2550 break;
2551 }
2552 }
2553
2554 // TODO: verify we have properly encoded deopt arguments
2555 } break;
2556 case TargetOpcode::INSERT_SUBREG: {
2557 unsigned InsertedSize;
2558 if (unsigned SubIdx = MI->getOperand(2).getSubReg())
2559 InsertedSize = TRI->getSubRegIdxSize(SubIdx);
2560 else
2561 InsertedSize = TRI->getRegSizeInBits(MI->getOperand(2).getReg(), *MRI);
2562 unsigned SubRegSize = TRI->getSubRegIdxSize(MI->getOperand(3).getImm());
2563 if (SubRegSize < InsertedSize) {
2564 report("INSERT_SUBREG expected inserted value to have equal or lesser "
2565 "size than the subreg it was inserted into", MI);
2566 break;
2567 }
2568 } break;
2569 case TargetOpcode::REG_SEQUENCE: {
2570 unsigned NumOps = MI->getNumOperands();
2571 if (!(NumOps & 1)) {
2572 report("Invalid number of operands for REG_SEQUENCE", MI);
2573 break;
2574 }
2575
2576 for (unsigned I = 1; I != NumOps; I += 2) {
2577 const MachineOperand &RegOp = MI->getOperand(I);
2578 const MachineOperand &SubRegOp = MI->getOperand(I + 1);
2579
2580 if (!RegOp.isReg())
2581 report("Invalid register operand for REG_SEQUENCE", &RegOp, I);
2582
2583 if (!SubRegOp.isImm() || SubRegOp.getImm() == 0 ||
2584 SubRegOp.getImm() >= TRI->getNumSubRegIndices()) {
2585 report("Invalid subregister index operand for REG_SEQUENCE",
2586 &SubRegOp, I + 1);
2587 }
2588 }
2589
2590 Register DstReg = MI->getOperand(0).getReg();
2591 if (DstReg.isPhysical())
2592 report("REG_SEQUENCE does not support physical register results", MI);
2593
2594 if (MI->getOperand(0).getSubReg())
2595 report("Invalid subreg result for REG_SEQUENCE", MI);
2596
2597 break;
2598 }
2599 }
2600}
2601
2602void
2603MachineVerifier::visitMachineOperand(const MachineOperand *MO, unsigned MONum) {
2604 const MachineInstr *MI = MO->getParent();
2605 const MCInstrDesc &MCID = MI->getDesc();
2606 unsigned NumDefs = MCID.getNumDefs();
2607 if (MCID.getOpcode() == TargetOpcode::PATCHPOINT)
2608 NumDefs = (MONum == 0 && MO->isReg()) ? NumDefs : 0;
2609
2610 // The first MCID.NumDefs operands must be explicit register defines
2611 if (MONum < NumDefs) {
2612 const MCOperandInfo &MCOI = MCID.operands()[MONum];
2613 if (!MO->isReg())
2614 report("Explicit definition must be a register", MO, MONum);
2615 else if (!MO->isDef() && !MCOI.isOptionalDef())
2616 report("Explicit definition marked as use", MO, MONum);
2617 else if (MO->isImplicit())
2618 report("Explicit definition marked as implicit", MO, MONum);
2619 } else if (MONum < MCID.getNumOperands()) {
2620 const MCOperandInfo &MCOI = MCID.operands()[MONum];
2621 // Don't check if it's the last operand in a variadic instruction. See,
2622 // e.g., LDM_RET in the arm back end. Check non-variadic operands only.
2623 bool IsOptional = MI->isVariadic() && MONum == MCID.getNumOperands() - 1;
2624 if (!IsOptional) {
2625 if (MO->isReg()) {
2626 if (MO->isDef() && !MCOI.isOptionalDef() && !MCID.variadicOpsAreDefs())
2627 report("Explicit operand marked as def", MO, MONum);
2628 if (MO->isImplicit())
2629 report("Explicit operand marked as implicit", MO, MONum);
2630 }
2631
2632 // Check that an instruction has register operands only as expected.
2633 if (MCOI.OperandType == MCOI::OPERAND_REGISTER &&
2634 !MO->isReg() && !MO->isFI())
2635 report("Expected a register operand.", MO, MONum);
2636 if (MO->isReg()) {
2637 if (MCOI.OperandType == MCOI::OPERAND_IMMEDIATE ||
2638 (MCOI.OperandType == MCOI::OPERAND_PCREL &&
2639 !TII->isPCRelRegisterOperandLegal(*MO)))
2640 report("Expected a non-register operand.", MO, MONum);
2641 }
2642 }
2643
2644 int TiedTo = MCID.getOperandConstraint(MONum, MCOI::TIED_TO);
2645 if (TiedTo != -1) {
2646 if (!MO->isReg())
2647 report("Tied use must be a register", MO, MONum);
2648 else if (!MO->isTied())
2649 report("Operand should be tied", MO, MONum);
2650 else if (unsigned(TiedTo) != MI->findTiedOperandIdx(MONum))
2651 report("Tied def doesn't match MCInstrDesc", MO, MONum);
2652 else if (MO->getReg().isPhysical()) {
2653 const MachineOperand &MOTied = MI->getOperand(TiedTo);
2654 if (!MOTied.isReg())
2655 report("Tied counterpart must be a register", &MOTied, TiedTo);
2656 else if (MOTied.getReg().isPhysical() &&
2657 MO->getReg() != MOTied.getReg())
2658 report("Tied physical registers must match.", &MOTied, TiedTo);
2659 }
2660 } else if (MO->isReg() && MO->isTied())
2661 report("Explicit operand should not be tied", MO, MONum);
2662 } else if (!MI->isVariadic()) {
2663 // ARM adds %reg0 operands to indicate predicates. We'll allow that.
2664 if (!MO->isValidExcessOperand())
2665 report("Extra explicit operand on non-variadic instruction", MO, MONum);
2666 }
2667
2668 // Verify earlyClobber def operand
2669 if (MCID.getOperandConstraint(MONum, MCOI::EARLY_CLOBBER) != -1) {
2670 if (!MO->isReg())
2671 report("Early clobber must be a register", MI);
2672 if (!MO->isEarlyClobber())
2673 report("Missing earlyClobber flag", MI);
2674 }
2675
2676 switch (MO->getType()) {
2678 // Verify debug flag on debug instructions. Check this first because reg0
2679 // indicates an undefined debug value.
2680 if (MI->isDebugInstr() && MO->isUse()) {
2681 if (!MO->isDebug())
2682 report("Register operand must be marked debug", MO, MONum);
2683 } else if (MO->isDebug()) {
2684 report("Register operand must not be marked debug", MO, MONum);
2685 }
2686
2687 const Register Reg = MO->getReg();
2688 if (!Reg)
2689 return;
2690 if (MRI->tracksLiveness() && !MI->isDebugInstr())
2691 checkLiveness(MO, MONum);
2692
2693 if (MO->isDef() && MO->isUndef() && !MO->getSubReg() &&
2694 MO->getReg().isVirtual()) // TODO: Apply to physregs too
2695 report("Undef virtual register def operands require a subregister", MO, MONum);
2696
2697 // Verify the consistency of tied operands.
2698 if (MO->isTied()) {
2699 unsigned OtherIdx = MI->findTiedOperandIdx(MONum);
2700 const MachineOperand &OtherMO = MI->getOperand(OtherIdx);
2701 if (!OtherMO.isReg())
2702 report("Must be tied to a register", MO, MONum);
2703 if (!OtherMO.isTied())
2704 report("Missing tie flags on tied operand", MO, MONum);
2705 if (MI->findTiedOperandIdx(OtherIdx) != MONum)
2706 report("Inconsistent tie links", MO, MONum);
2707 if (MONum < MCID.getNumDefs()) {
2708 if (OtherIdx < MCID.getNumOperands()) {
2709 if (-1 == MCID.getOperandConstraint(OtherIdx, MCOI::TIED_TO))
2710 report("Explicit def tied to explicit use without tie constraint",
2711 MO, MONum);
2712 } else {
2713 if (!OtherMO.isImplicit())
2714 report("Explicit def should be tied to implicit use", MO, MONum);
2715 }
2716 }
2717 }
2718
2719 // Verify two-address constraints after the twoaddressinstruction pass.
2720 // Both twoaddressinstruction pass and phi-node-elimination pass call
2721 // MRI->leaveSSA() to set MF as not IsSSA, we should do the verification
2722 // after twoaddressinstruction pass not after phi-node-elimination pass. So
2723 // we shouldn't use the IsSSA as the condition, we should based on
2724 // TiedOpsRewritten property to verify two-address constraints, this
2725 // property will be set in twoaddressinstruction pass.
2726 unsigned DefIdx;
2727 if (MF->getProperties().hasTiedOpsRewritten() && MO->isUse() &&
2728 MI->isRegTiedToDefOperand(MONum, &DefIdx) &&
2729 Reg != MI->getOperand(DefIdx).getReg())
2730 report("Two-address instruction operands must be identical", MO, MONum);
2731
2732 // Check register classes.
2733 unsigned SubIdx = MO->getSubReg();
2734
2735 if (Reg.isPhysical()) {
2736 if (SubIdx) {
2737 report("Illegal subregister index for physical register", MO, MONum);
2738 return;
2739 }
2740 if (MONum < MCID.getNumOperands()) {
2741 if (const TargetRegisterClass *DRC = TII->getRegClass(MCID, MONum)) {
2742 if (!DRC->contains(Reg)) {
2743 report("Illegal physical register for instruction", MO, MONum);
2744 OS << printReg(Reg, TRI) << " is not a "
2745 << TRI->getRegClassName(DRC) << " register.\n";
2746 }
2747 }
2748 }
2749 if (MO->isRenamable()) {
2750 if (MRI->isReserved(Reg)) {
2751 report("isRenamable set on reserved register", MO, MONum);
2752 return;
2753 }
2754 }
2755 } else {
2756 // Virtual register.
2757 const TargetRegisterClass *RC = MRI->getRegClassOrNull(Reg);
2758 if (!RC) {
2759 // This is a generic virtual register.
2760
2761 // Do not allow undef uses for generic virtual registers. This ensures
2762 // getVRegDef can never fail and return null on a generic register.
2763 //
2764 // FIXME: This restriction should probably be broadened to all SSA
2765 // MIR. However, DetectDeadLanes/ProcessImplicitDefs technically still
2766 // run on the SSA function just before phi elimination.
2767 if (MO->isUndef())
2768 report("Generic virtual register use cannot be undef", MO, MONum);
2769
2770 // Debug value instruction is permitted to use undefined vregs.
2771 // This is a performance measure to skip the overhead of immediately
2772 // pruning unused debug operands. The final undef substitution occurs
2773 // when debug values are allocated in LDVImpl::handleDebugValue, so
2774 // these verifications always apply after this pass.
2775 if (isFunctionTracksDebugUserValues || !MO->isUse() ||
2776 !MI->isDebugValue() || !MRI->def_empty(Reg)) {
2777 // If we're post-Select, we can't have gvregs anymore.
2778 if (isFunctionSelected) {
2779 report("Generic virtual register invalid in a Selected function",
2780 MO, MONum);
2781 return;
2782 }
2783
2784 // The gvreg must have a type and it must not have a SubIdx.
2785 LLT Ty = MRI->getType(Reg);
2786 if (!Ty.isValid()) {
2787 report("Generic virtual register must have a valid type", MO,
2788 MONum);
2789 return;
2790 }
2791
2792 const RegisterBank *RegBank = MRI->getRegBankOrNull(Reg);
2793 const RegisterBankInfo *RBI = MF->getSubtarget().getRegBankInfo();
2794
2795 // If we're post-RegBankSelect, the gvreg must have a bank.
2796 if (!RegBank && isFunctionRegBankSelected) {
2797 report("Generic virtual register must have a bank in a "
2798 "RegBankSelected function",
2799 MO, MONum);
2800 return;
2801 }
2802
2803 // Make sure the register fits into its register bank if any.
2804 if (RegBank && Ty.isValid() && !Ty.isScalableVector() &&
2805 RBI->getMaximumSize(RegBank->getID()) < Ty.getSizeInBits()) {
2806 report("Register bank is too small for virtual register", MO,
2807 MONum);
2808 OS << "Register bank " << RegBank->getName() << " too small("
2809 << RBI->getMaximumSize(RegBank->getID()) << ") to fit "
2810 << Ty.getSizeInBits() << "-bits\n";
2811 return;
2812 }
2813 }
2814
2815 if (SubIdx) {
2816 report("Generic virtual register does not allow subregister index", MO,
2817 MONum);
2818 return;
2819 }
2820
2821 // If this is a target specific instruction and this operand
2822 // has register class constraint, the virtual register must
2823 // comply to it.
2824 if (!isPreISelGenericOpcode(MCID.getOpcode()) &&
2825 MONum < MCID.getNumOperands() && TII->getRegClass(MCID, MONum)) {
2826 report("Virtual register does not match instruction constraint", MO,
2827 MONum);
2828 OS << "Expect register class "
2829 << TRI->getRegClassName(TII->getRegClass(MCID, MONum))
2830 << " but got nothing\n";
2831 return;
2832 }
2833
2834 break;
2835 }
2836 // Validate that SubIdx can be applied to the virtual register.
2837 if (!TRI->isSubRegValidForRegClass(RC, SubIdx)) {
2838 report("Invalid subregister index for virtual register", MO, MONum);
2839 OS << "Register class " << TRI->getRegClassName(RC)
2840 << " does not support subreg index "
2841 << TRI->getSubRegIndexName(SubIdx) << '\n';
2842 return;
2843 }
2844 if (MONum >= MCID.getNumOperands())
2845 break;
2846 const TargetRegisterClass *DRC = TII->getRegClass(MCID, MONum);
2847 if (!DRC)
2848 break;
2849
2850 // If SubIdx is used, verify that RC with SubIdx can be used for an
2851 // operand of class DRC. This is valid if for every register in RC, the
2852 // register obtained by applying SubIdx to it is in DRC.
2853 if (SubIdx && TRI->getMatchingSuperRegClass(RC, DRC, SubIdx) != RC) {
2854 report("Illegal virtual register for instruction", MO, MONum);
2855 OS << TRI->getRegClassName(RC) << "." << TRI->getSubRegIndexName(SubIdx)
2856 << " cannot be used for " << TRI->getRegClassName(DRC)
2857 << " operands.";
2858 }
2859
2860 // If no SubIdx is used, verify that RC is a sub-class of DRC.
2861 if (!SubIdx && !RC->hasSuperClassEq(DRC)) {
2862 report("Illegal virtual register for instruction", MO, MONum);
2863 OS << "Expected a " << TRI->getRegClassName(DRC)
2864 << " register, but got a " << TRI->getRegClassName(RC)
2865 << " register\n";
2866 }
2867 }
2868 break;
2869 }
2870
2872 regMasks.push_back(MO->getRegMask());
2873 break;
2874
2876 if (MI->isPHI() && !MO->getMBB()->isSuccessor(MI->getParent()))
2877 report("PHI operand is not in the CFG", MO, MONum);
2878 break;
2879
2881 if (LiveStks && LiveStks->hasInterval(MO->getIndex()) &&
2882 LiveInts && !LiveInts->isNotInMIMap(*MI)) {
2883 int FI = MO->getIndex();
2884 LiveInterval &LI = LiveStks->getInterval(FI);
2885 SlotIndex Idx = LiveInts->getInstructionIndex(*MI);
2886
2887 bool MayStore = MI->mayStore();
2888 bool MayLoad = MI->mayLoad();
2889 // For a memory-to-memory move, we need to check if the frame
2890 // index is used for storing or loading, by inspecting the
2891 // memory operands.
2892 if (MayStore && MayLoad) {
2893 for (const MachineMemOperand *MMO : MI->memoperands()) {
2895 MMO->getPseudoValue());
2896 if (!Value || Value->getFrameIndex() != FI)
2897 continue;
2898
2899 if (MMO->isStore())
2900 MayLoad = false;
2901 else
2902 MayStore = false;
2903 break;
2904 }
2905 if (MayLoad == MayStore)
2906 report("Missing fixed stack memoperand.", MI);
2907 }
2908 if (MayLoad && !LI.liveAt(Idx.getRegSlot(true))) {
2909 report("Instruction loads from dead spill slot", MO, MONum);
2910 OS << "Live stack: " << LI << '\n';
2911 }
2912 if (MayStore && !LI.liveAt(Idx.getRegSlot())) {
2913 report("Instruction stores to dead spill slot", MO, MONum);
2914 OS << "Live stack: " << LI << '\n';
2915 }
2916 }
2917 break;
2918
2920 if (MO->getCFIIndex() >= MF->getFrameInstructions().size())
2921 report("CFI instruction has invalid index", MO, MONum);
2922 break;
2923
2924 default:
2925 break;
2926 }
2927}
2928
2929void MachineVerifier::checkLivenessAtUse(const MachineOperand *MO,
2930 unsigned MONum, SlotIndex UseIdx,
2931 const LiveRange &LR,
2932 VirtRegOrUnit VRegOrUnit,
2933 LaneBitmask LaneMask) {
2934 const MachineInstr *MI = MO->getParent();
2935
2936 if (!LR.verify()) {
2937 report("invalid live range", MO, MONum);
2938 report_context_liverange(LR);
2939 report_context_vreg_regunit(VRegOrUnit);
2940 report_context(UseIdx);
2941 return;
2942 }
2943
2944 LiveQueryResult LRQ = LR.Query(UseIdx);
2945 bool HasValue = LRQ.valueIn() || (MI->isPHI() && LRQ.valueOut());
2946 // Check if we have a segment at the use, note however that we only need one
2947 // live subregister range, the others may be dead.
2948 if (!HasValue && LaneMask.none()) {
2949 report("No live segment at use", MO, MONum);
2950 report_context_liverange(LR);
2951 report_context_vreg_regunit(VRegOrUnit);
2952 report_context(UseIdx);
2953 }
2954 if (MO->isKill() && !LRQ.isKill()) {
2955 report("Live range continues after kill flag", MO, MONum);
2956 report_context_liverange(LR);
2957 report_context_vreg_regunit(VRegOrUnit);
2958 if (LaneMask.any())
2959 report_context_lanemask(LaneMask);
2960 report_context(UseIdx);
2961 }
2962}
2963
2964void MachineVerifier::checkLivenessAtDef(const MachineOperand *MO,
2965 unsigned MONum, SlotIndex DefIdx,
2966 const LiveRange &LR,
2967 VirtRegOrUnit VRegOrUnit,
2968 bool SubRangeCheck,
2969 LaneBitmask LaneMask) {
2970 if (!LR.verify()) {
2971 report("invalid live range", MO, MONum);
2972 report_context_liverange(LR);
2973 report_context_vreg_regunit(VRegOrUnit);
2974 if (LaneMask.any())
2975 report_context_lanemask(LaneMask);
2976 report_context(DefIdx);
2977 }
2978
2979 if (const VNInfo *VNI = LR.getVNInfoAt(DefIdx)) {
2980 // The LR can correspond to the whole reg and its def slot is not obliged
2981 // to be the same as the MO' def slot. E.g. when we check here "normal"
2982 // subreg MO but there is other EC subreg MO in the same instruction so the
2983 // whole reg has EC def slot and differs from the currently checked MO' def
2984 // slot. For example:
2985 // %0 [16e,32r:0) 0@16e L..3 [16e,32r:0) 0@16e L..C [16r,32r:0) 0@16r
2986 // Check that there is an early-clobber def of the same superregister
2987 // somewhere is performed in visitMachineFunctionAfter()
2988 if (((SubRangeCheck || MO->getSubReg() == 0) && VNI->def != DefIdx) ||
2989 !SlotIndex::isSameInstr(VNI->def, DefIdx) ||
2990 (VNI->def != DefIdx &&
2991 (!VNI->def.isEarlyClobber() || !DefIdx.isRegister()))) {
2992 report("Inconsistent valno->def", MO, MONum);
2993 report_context_liverange(LR);
2994 report_context_vreg_regunit(VRegOrUnit);
2995 if (LaneMask.any())
2996 report_context_lanemask(LaneMask);
2997 report_context(*VNI);
2998 report_context(DefIdx);
2999 }
3000 } else {
3001 report("No live segment at def", MO, MONum);
3002 report_context_liverange(LR);
3003 report_context_vreg_regunit(VRegOrUnit);
3004 if (LaneMask.any())
3005 report_context_lanemask(LaneMask);
3006 report_context(DefIdx);
3007 }
3008 // Check that, if the dead def flag is present, LiveInts agree.
3009 if (MO->isDead()) {
3010 LiveQueryResult LRQ = LR.Query(DefIdx);
3011 if (!LRQ.isDeadDef()) {
3012 assert(VRegOrUnit.isVirtualReg() && "Expecting a virtual register.");
3013 // A dead subreg def only tells us that the specific subreg is dead. There
3014 // could be other non-dead defs of other subregs, or we could have other
3015 // parts of the register being live through the instruction. So unless we
3016 // are checking liveness for a subrange it is ok for the live range to
3017 // continue, given that we have a dead def of a subregister.
3018 if (SubRangeCheck || MO->getSubReg() == 0) {
3019 report("Live range continues after dead def flag", MO, MONum);
3020 report_context_liverange(LR);
3021 report_context_vreg_regunit(VRegOrUnit);
3022 if (LaneMask.any())
3023 report_context_lanemask(LaneMask);
3024 }
3025 }
3026 }
3027}
3028
3029void MachineVerifier::checkLiveness(const MachineOperand *MO, unsigned MONum) {
3030 const MachineInstr *MI = MO->getParent();
3031 const Register Reg = MO->getReg();
3032 const unsigned SubRegIdx = MO->getSubReg();
3033
3034 const LiveInterval *LI = nullptr;
3035 if (LiveInts && Reg.isVirtual()) {
3036 if (LiveInts->hasInterval(Reg)) {
3037 LI = &LiveInts->getInterval(Reg);
3038 if (SubRegIdx != 0 && (MO->isDef() || !MO->isUndef()) && !LI->empty() &&
3040 report("Live interval for subreg operand has no subranges", MO, MONum);
3041 } else {
3042 report("Virtual register has no live interval", MO, MONum);
3043 }
3044 }
3045
3046 // Both use and def operands can read a register.
3047 if (MO->readsReg()) {
3048 if (MO->isKill())
3049 addRegWithSubRegs(regsKilled, Reg);
3050
3051 // Check that LiveVars knows this kill (unless we are inside a bundle, in
3052 // which case we have already checked that LiveVars knows any kills on the
3053 // bundle header instead).
3054 if (LiveVars && Reg.isVirtual() && MO->isKill() &&
3055 !MI->isBundledWithPred()) {
3057 if (!is_contained(VI.Kills, MI))
3058 report("Kill missing from LiveVariables", MO, MONum);
3059 }
3060
3061 // Check LiveInts liveness and kill.
3062 if (LiveInts && !LiveInts->isNotInMIMap(*MI)) {
3063 SlotIndex UseIdx;
3064 if (MI->isPHI()) {
3065 // PHI use occurs on the edge, so check for live out here instead.
3066 UseIdx = LiveInts->getMBBEndIdx(
3067 MI->getOperand(MONum + 1).getMBB()).getPrevSlot();
3068 } else {
3069 UseIdx = LiveInts->getInstructionIndex(*MI);
3070 }
3071 // Check the cached regunit intervals.
3072 if (Reg.isPhysical() && !isReserved(Reg)) {
3073 for (MCRegUnit Unit : TRI->regunits(Reg.asMCReg())) {
3074 if (MRI->isReservedRegUnit(Unit))
3075 continue;
3076 if (const LiveRange *LR = LiveInts->getCachedRegUnit(Unit))
3077 checkLivenessAtUse(MO, MONum, UseIdx, *LR, VirtRegOrUnit(Unit));
3078 }
3079 }
3080
3081 if (Reg.isVirtual()) {
3082 // This is a virtual register interval.
3083 checkLivenessAtUse(MO, MONum, UseIdx, *LI, VirtRegOrUnit(Reg));
3084
3085 if (LI->hasSubRanges() && !MO->isDef()) {
3086 LaneBitmask MOMask = SubRegIdx != 0
3087 ? TRI->getSubRegIndexLaneMask(SubRegIdx)
3088 : MRI->getMaxLaneMaskForVReg(Reg);
3089 LaneBitmask LiveInMask;
3090 for (const LiveInterval::SubRange &SR : LI->subranges()) {
3091 if ((MOMask & SR.LaneMask).none())
3092 continue;
3093 checkLivenessAtUse(MO, MONum, UseIdx, SR, VirtRegOrUnit(Reg),
3094 SR.LaneMask);
3095 LiveQueryResult LRQ = SR.Query(UseIdx);
3096 if (LRQ.valueIn() || (MI->isPHI() && LRQ.valueOut()))
3097 LiveInMask |= SR.LaneMask;
3098 }
3099 // At least parts of the register has to be live at the use.
3100 if ((LiveInMask & MOMask).none()) {
3101 report("No live subrange at use", MO, MONum);
3102 report_context(*LI);
3103 report_context(UseIdx);
3104 }
3105 // For PHIs all lanes should be live
3106 if (MI->isPHI() && LiveInMask != MOMask) {
3107 report("Not all lanes of PHI source live at use", MO, MONum);
3108 report_context(*LI);
3109 report_context(UseIdx);
3110 }
3111 }
3112 }
3113 }
3114
3115 // Use of a dead register.
3116 if (!regsLive.count(Reg)) {
3117 if (Reg.isPhysical()) {
3118 // Reserved registers may be used even when 'dead'.
3119 bool Bad = !isReserved(Reg);
3120 // We are fine if just any subregister has a defined value.
3121 if (Bad) {
3122
3123 for (const MCPhysReg &SubReg : TRI->subregs(Reg)) {
3124 if (regsLive.count(SubReg)) {
3125 Bad = false;
3126 break;
3127 }
3128 }
3129 }
3130 // If there is an additional implicit-use of a super register we stop
3131 // here. By definition we are fine if the super register is not
3132 // (completely) dead, if the complete super register is dead we will
3133 // get a report for its operand.
3134 if (Bad) {
3135 for (const MachineOperand &MOP : MI->uses()) {
3136 if (!MOP.isReg() || !MOP.isImplicit())
3137 continue;
3138
3139 if (!MOP.getReg().isPhysical())
3140 continue;
3141
3142 if (MOP.getReg() != Reg &&
3143 all_of(TRI->regunits(Reg), [&](const MCRegUnit RegUnit) {
3144 return llvm::is_contained(TRI->regunits(MOP.getReg()),
3145 RegUnit);
3146 }))
3147 Bad = false;
3148 }
3149 }
3150 if (Bad)
3151 report("Using an undefined physical register", MO, MONum);
3152 } else if (MRI->def_empty(Reg)) {
3153 report("Reading virtual register without a def", MO, MONum);
3154 } else {
3155 BBInfo &MInfo = MBBInfoMap[MI->getParent()];
3156 // We don't know which virtual registers are live in, so only complain
3157 // if vreg was killed in this MBB. Otherwise keep track of vregs that
3158 // must be live in. PHI instructions are handled separately.
3159 if (MInfo.regsKilled.count(Reg))
3160 report("Using a killed virtual register", MO, MONum);
3161 else if (!MI->isPHI())
3162 MInfo.vregsLiveIn.insert(std::make_pair(Reg, MI));
3163 }
3164 }
3165 }
3166
3167 if (MO->isDef()) {
3168 // Register defined.
3169 // TODO: verify that earlyclobber ops are not used.
3170 if (MO->isDead())
3171 addRegWithSubRegs(regsDead, Reg);
3172 else
3173 addRegWithSubRegs(regsDefined, Reg);
3174
3175 // Verify SSA form.
3176 if (MRI->isSSA() && Reg.isVirtual()) {
3177 if (!MRI->hasOneDef(Reg))
3178 report("Multiple virtual register defs in SSA form", MO, MONum);
3179 if (MO->getSubReg())
3180 report("Subreg def in SSA form", MO, MONum);
3181 }
3182
3183 // Check LiveInts for a live segment, but only for virtual registers.
3184 if (LiveInts && !LiveInts->isNotInMIMap(*MI)) {
3185 SlotIndex DefIdx = LiveInts->getInstructionIndex(*MI);
3186 DefIdx = DefIdx.getRegSlot(MO->isEarlyClobber());
3187
3188 if (Reg.isVirtual()) {
3189 checkLivenessAtDef(MO, MONum, DefIdx, *LI, VirtRegOrUnit(Reg));
3190
3191 if (LI->hasSubRanges()) {
3192 LaneBitmask MOMask = SubRegIdx != 0
3193 ? TRI->getSubRegIndexLaneMask(SubRegIdx)
3194 : MRI->getMaxLaneMaskForVReg(Reg);
3195 for (const LiveInterval::SubRange &SR : LI->subranges()) {
3196 if ((SR.LaneMask & MOMask).none())
3197 continue;
3198 checkLivenessAtDef(MO, MONum, DefIdx, SR, VirtRegOrUnit(Reg), true,
3199 SR.LaneMask);
3200 }
3201 }
3202 }
3203 }
3204 }
3205}
3206
3207// This function gets called after visiting all instructions in a bundle. The
3208// argument points to the bundle header.
3209// Normal stand-alone instructions are also considered 'bundles', and this
3210// function is called for all of them.
3211void MachineVerifier::visitMachineBundleAfter(const MachineInstr *MI) {
3212 BBInfo &MInfo = MBBInfoMap[MI->getParent()];
3213 set_union(MInfo.regsKilled, regsKilled);
3214 set_subtract(regsLive, regsKilled); regsKilled.clear();
3215 // Kill any masked registers.
3216 while (!regMasks.empty()) {
3217 const uint32_t *Mask = regMasks.pop_back_val();
3218 for (Register Reg : regsLive)
3219 if (Reg.isPhysical() &&
3221 regsDead.push_back(Reg);
3222 }
3223 set_subtract(regsLive, regsDead); regsDead.clear();
3224 set_union(regsLive, regsDefined); regsDefined.clear();
3225}
3226
3227void
3228MachineVerifier::visitMachineBasicBlockAfter(const MachineBasicBlock *MBB) {
3229 MBBInfoMap[MBB].regsLiveOut = regsLive;
3230 regsLive.clear();
3231
3232 if (Indexes) {
3233 SlotIndex stop = Indexes->getMBBEndIdx(MBB);
3234 if (!(stop > lastIndex)) {
3235 report("Block ends before last instruction index", MBB);
3236 OS << "Block ends at " << stop << " last instruction was at " << lastIndex
3237 << '\n';
3238 }
3239 lastIndex = stop;
3240 }
3241}
3242
3243namespace {
3244// This implements a set of registers that serves as a filter: can filter other
3245// sets by passing through elements not in the filter and blocking those that
3246// are. Any filter implicitly includes the full set of physical registers upon
3247// creation, thus filtering them all out. The filter itself as a set only grows,
3248// and needs to be as efficient as possible.
3249struct VRegFilter {
3250 // Add elements to the filter itself. \pre Input set \p FromRegSet must have
3251 // no duplicates. Both virtual and physical registers are fine.
3252 template <typename RegSetT> void add(const RegSetT &FromRegSet) {
3253 SmallVector<Register, 0> VRegsBuffer;
3254 filterAndAdd(FromRegSet, VRegsBuffer);
3255 }
3256 // Filter \p FromRegSet through the filter and append passed elements into \p
3257 // ToVRegs. All elements appended are then added to the filter itself.
3258 // \returns true if anything changed.
3259 template <typename RegSetT>
3260 bool filterAndAdd(const RegSetT &FromRegSet,
3261 SmallVectorImpl<Register> &ToVRegs) {
3262 unsigned SparseUniverse = Sparse.size();
3263 unsigned NewSparseUniverse = SparseUniverse;
3264 unsigned NewDenseSize = Dense.size();
3265 size_t Begin = ToVRegs.size();
3266 for (Register Reg : FromRegSet) {
3267 if (!Reg.isVirtual())
3268 continue;
3269 unsigned Index = Reg.virtRegIndex();
3270 if (Index < SparseUniverseMax) {
3271 if (Index < SparseUniverse && Sparse.test(Index))
3272 continue;
3273 NewSparseUniverse = std::max(NewSparseUniverse, Index + 1);
3274 } else {
3275 if (Dense.count(Reg))
3276 continue;
3277 ++NewDenseSize;
3278 }
3279 ToVRegs.push_back(Reg);
3280 }
3281 size_t End = ToVRegs.size();
3282 if (Begin == End)
3283 return false;
3284 // Reserving space in sets once performs better than doing so continuously
3285 // and pays easily for double look-ups (even in Dense with SparseUniverseMax
3286 // tuned all the way down) and double iteration (the second one is over a
3287 // SmallVector, which is a lot cheaper compared to DenseSet or BitVector).
3288 Sparse.resize(NewSparseUniverse);
3289 Dense.reserve(NewDenseSize);
3290 for (unsigned I = Begin; I < End; ++I) {
3291 Register Reg = ToVRegs[I];
3292 unsigned Index = Reg.virtRegIndex();
3293 if (Index < SparseUniverseMax)
3294 Sparse.set(Index);
3295 else
3296 Dense.insert(Reg);
3297 }
3298 return true;
3299 }
3300
3301private:
3302 static constexpr unsigned SparseUniverseMax = 10 * 1024 * 8;
3303 // VRegs indexed within SparseUniverseMax are tracked by Sparse, those beyond
3304 // are tracked by Dense. The only purpose of the threshold and the Dense set
3305 // is to have a reasonably growing memory usage in pathological cases (large
3306 // number of very sparse VRegFilter instances live at the same time). In
3307 // practice even in the worst-by-execution time cases having all elements
3308 // tracked by Sparse (very large SparseUniverseMax scenario) tends to be more
3309 // space efficient than if tracked by Dense. The threshold is set to keep the
3310 // worst-case memory usage within 2x of figures determined empirically for
3311 // "all Dense" scenario in such worst-by-execution-time cases.
3312 BitVector Sparse;
3313 DenseSet<Register> Dense;
3314};
3315
3316// Implements both a transfer function and a (binary, in-place) join operator
3317// for a dataflow over register sets with set union join and filtering transfer
3318// (out_b = in_b \ filter_b). filter_b is expected to be set-up ahead of time.
3319// Maintains out_b as its state, allowing for O(n) iteration over it at any
3320// time, where n is the size of the set (as opposed to O(U) where U is the
3321// universe). filter_b implicitly contains all physical registers at all times.
3322class FilteringVRegSet {
3323 VRegFilter Filter;
3325
3326public:
3327 // Set-up the filter_b. \pre Input register set \p RS must have no duplicates.
3328 // Both virtual and physical registers are fine.
3329 template <typename RegSetT> void addToFilter(const RegSetT &RS) {
3330 Filter.add(RS);
3331 }
3332 // Passes \p RS through the filter_b (transfer function) and adds what's left
3333 // to itself (out_b).
3334 template <typename RegSetT> bool add(const RegSetT &RS) {
3335 // Double-duty the Filter: to maintain VRegs a set (and the join operation
3336 // a set union) just add everything being added here to the Filter as well.
3337 return Filter.filterAndAdd(RS, VRegs);
3338 }
3339 using const_iterator = decltype(VRegs)::const_iterator;
3340 const_iterator begin() const { return VRegs.begin(); }
3341 const_iterator end() const { return VRegs.end(); }
3342 size_t size() const { return VRegs.size(); }
3343};
3344} // namespace
3345
3346// Calculate the largest possible vregsPassed sets. These are the registers that
3347// can pass through an MBB live, but may not be live every time. It is assumed
3348// that all vregsPassed sets are empty before the call.
3349void MachineVerifier::calcRegsPassed() {
3350 if (MF->empty())
3351 // ReversePostOrderTraversal doesn't handle empty functions.
3352 return;
3353
3354 for (const MachineBasicBlock *MB :
3356 FilteringVRegSet VRegs;
3357 BBInfo &Info = MBBInfoMap[MB];
3358 assert(Info.reachable);
3359
3360 VRegs.addToFilter(Info.regsKilled);
3361 VRegs.addToFilter(Info.regsLiveOut);
3362 for (const MachineBasicBlock *Pred : MB->predecessors()) {
3363 const BBInfo &PredInfo = MBBInfoMap[Pred];
3364 if (!PredInfo.reachable)
3365 continue;
3366
3367 VRegs.add(PredInfo.regsLiveOut);
3368 VRegs.add(PredInfo.vregsPassed);
3369 }
3370 Info.vregsPassed.reserve(VRegs.size());
3371 Info.vregsPassed.insert_range(VRegs);
3372 }
3373}
3374
3375// Calculate the set of virtual registers that must be passed through each basic
3376// block in order to satisfy the requirements of successor blocks. This is very
3377// similar to calcRegsPassed, only backwards.
3378void MachineVerifier::calcRegsRequired() {
3379 // First push live-in regs to predecessors' vregsRequired.
3381 for (const auto &MBB : *MF) {
3382 BBInfo &MInfo = MBBInfoMap[&MBB];
3383 for (const MachineBasicBlock *Pred : MBB.predecessors()) {
3384 BBInfo &PInfo = MBBInfoMap[Pred];
3385 if (PInfo.addRequired(MInfo.vregsLiveIn))
3386 todo.insert(Pred);
3387 }
3388
3389 // Handle the PHI node.
3390 for (const MachineInstr &MI : MBB.phis()) {
3391 for (unsigned i = 1, e = MI.getNumOperands(); i != e; i += 2) {
3392 // Skip those Operands which are undef regs or not regs.
3393 if (!MI.getOperand(i).isReg() || !MI.getOperand(i).readsReg())
3394 continue;
3395
3396 // Get register and predecessor for one PHI edge.
3397 Register Reg = MI.getOperand(i).getReg();
3398 const MachineBasicBlock *Pred = MI.getOperand(i + 1).getMBB();
3399
3400 BBInfo &PInfo = MBBInfoMap[Pred];
3401 if (PInfo.addRequired(Reg))
3402 todo.insert(Pred);
3403 }
3404 }
3405 }
3406
3407 // Iteratively push vregsRequired to predecessors. This will converge to the
3408 // same final state regardless of DenseSet iteration order.
3409 while (!todo.empty()) {
3410 const MachineBasicBlock *MBB = *todo.begin();
3411 todo.erase(MBB);
3412 BBInfo &MInfo = MBBInfoMap[MBB];
3413 for (const MachineBasicBlock *Pred : MBB->predecessors()) {
3414 if (Pred == MBB)
3415 continue;
3416 BBInfo &SInfo = MBBInfoMap[Pred];
3417 if (SInfo.addRequired(MInfo.vregsRequired))
3418 todo.insert(Pred);
3419 }
3420 }
3421}
3422
3423// Check PHI instructions at the beginning of MBB. It is assumed that
3424// calcRegsPassed has been run so BBInfo::isLiveOut is valid.
3425void MachineVerifier::checkPHIOps(const MachineBasicBlock &MBB) {
3426 BBInfo &MInfo = MBBInfoMap[&MBB];
3427
3429 for (const MachineInstr &Phi : MBB) {
3430 if (!Phi.isPHI())
3431 break;
3432 seen.clear();
3433
3434 const MachineOperand &MODef = Phi.getOperand(0);
3435 if (!MODef.isReg() || !MODef.isDef()) {
3436 report("Expected first PHI operand to be a register def", &MODef, 0);
3437 continue;
3438 }
3439 if (MODef.isTied() || MODef.isImplicit() || MODef.isInternalRead() ||
3440 MODef.isEarlyClobber() || MODef.isDebug())
3441 report("Unexpected flag on PHI operand", &MODef, 0);
3442 Register DefReg = MODef.getReg();
3443 if (!DefReg.isVirtual())
3444 report("Expected first PHI operand to be a virtual register", &MODef, 0);
3445
3446 for (unsigned I = 1, E = Phi.getNumOperands(); I != E; I += 2) {
3447 const MachineOperand &MO0 = Phi.getOperand(I);
3448 if (!MO0.isReg()) {
3449 report("Expected PHI operand to be a register", &MO0, I);
3450 continue;
3451 }
3452 if (MO0.isImplicit() || MO0.isInternalRead() || MO0.isEarlyClobber() ||
3453 MO0.isDebug() || MO0.isTied())
3454 report("Unexpected flag on PHI operand", &MO0, I);
3455
3456 const MachineOperand &MO1 = Phi.getOperand(I + 1);
3457 if (!MO1.isMBB()) {
3458 report("Expected PHI operand to be a basic block", &MO1, I + 1);
3459 continue;
3460 }
3461
3462 const MachineBasicBlock &Pre = *MO1.getMBB();
3463 if (!Pre.isSuccessor(&MBB)) {
3464 report("PHI input is not a predecessor block", &MO1, I + 1);
3465 continue;
3466 }
3467
3468 if (MInfo.reachable) {
3469 seen.insert(&Pre);
3470 BBInfo &PrInfo = MBBInfoMap[&Pre];
3471 if (!MO0.isUndef() && PrInfo.reachable &&
3472 !PrInfo.isLiveOut(MO0.getReg()))
3473 report("PHI operand is not live-out from predecessor", &MO0, I);
3474 }
3475 }
3476
3477 // Did we see all predecessors?
3478 if (MInfo.reachable) {
3479 for (MachineBasicBlock *Pred : MBB.predecessors()) {
3480 if (!seen.count(Pred)) {
3481 report("Missing PHI operand", &Phi);
3482 OS << printMBBReference(*Pred)
3483 << " is a predecessor according to the CFG.\n";
3484 }
3485 }
3486 }
3487 }
3488}
3489
3490static void
3492 std::function<void(const Twine &Message)> FailureCB,
3493 raw_ostream &OS) {
3495 CV.initialize(&OS, FailureCB, MF);
3496
3497 for (const auto &MBB : MF) {
3498 CV.visit(MBB);
3499 for (const auto &MI : MBB.instrs())
3500 CV.visit(MI);
3501 }
3502
3503 if (CV.sawTokens()) {
3504 DT.recalculate(const_cast<MachineFunction &>(MF));
3505 CV.verify(DT);
3506 }
3507}
3508
3509void MachineVerifier::visitMachineFunctionAfter() {
3510 auto FailureCB = [this](const Twine &Message) {
3511 report(Message.str().c_str(), MF);
3512 };
3513 verifyConvergenceControl(*MF, DT, FailureCB, OS);
3514
3515 calcRegsPassed();
3516
3517 for (const MachineBasicBlock &MBB : *MF)
3518 checkPHIOps(MBB);
3519
3520 // Now check liveness info if available
3521 calcRegsRequired();
3522
3523 // Check for killed virtual registers that should be live out.
3524 for (const auto &MBB : *MF) {
3525 BBInfo &MInfo = MBBInfoMap[&MBB];
3526 for (Register VReg : MInfo.vregsRequired)
3527 if (MInfo.regsKilled.count(VReg)) {
3528 report("Virtual register killed in block, but needed live out.", &MBB);
3529 OS << "Virtual register " << printReg(VReg)
3530 << " is used after the block.\n";
3531 }
3532 }
3533
3534 if (!MF->empty()) {
3535 BBInfo &MInfo = MBBInfoMap[&MF->front()];
3536 for (Register VReg : MInfo.vregsRequired) {
3537 report("Virtual register defs don't dominate all uses.", MF);
3538 report_context_vreg(VReg);
3539 }
3540 }
3541
3542 if (LiveVars)
3543 verifyLiveVariables();
3544 if (LiveInts)
3545 verifyLiveIntervals();
3546
3547 // Check live-in list of each MBB. If a register is live into MBB, check
3548 // that the register is in regsLiveOut of each predecessor block. Since
3549 // this must come from a definition in the predecessor or its live-in
3550 // list, this will catch a live-through case where the predecessor does not
3551 // have the register in its live-in list. This currently only checks
3552 // registers that have no aliases, are not allocatable and are not
3553 // reserved, which could mean a condition code register for instance.
3554 if (MRI->tracksLiveness())
3555 for (const auto &MBB : *MF)
3557 MCRegister LiveInReg = P.PhysReg;
3558 bool hasAliases = MCRegAliasIterator(LiveInReg, TRI, false).isValid();
3559 if (hasAliases || isAllocatable(LiveInReg) || isReserved(LiveInReg))
3560 continue;
3561 for (const MachineBasicBlock *Pred : MBB.predecessors()) {
3562 BBInfo &PInfo = MBBInfoMap[Pred];
3563 if (!PInfo.regsLiveOut.count(LiveInReg)) {
3564 report("Live in register not found to be live out from predecessor.",
3565 &MBB);
3566 OS << TRI->getName(LiveInReg) << " not found to be live out from "
3567 << printMBBReference(*Pred) << '\n';
3568 }
3569 }
3570 }
3571
3572 for (auto CSInfo : MF->getCallSitesInfo())
3573 if (!CSInfo.first->isCall())
3574 report("Call site info referencing instruction that is not call", MF);
3575
3576 // If there's debug-info, check that we don't have any duplicate value
3577 // tracking numbers.
3578 if (MF->getFunction().getSubprogram()) {
3579 DenseSet<unsigned> SeenNumbers;
3580 for (const auto &MBB : *MF) {
3581 for (const auto &MI : MBB) {
3582 if (auto Num = MI.peekDebugInstrNum()) {
3583 auto Result = SeenNumbers.insert((unsigned)Num);
3584 if (!Result.second)
3585 report("Instruction has a duplicated value tracking number", &MI);
3586 }
3587 }
3588 }
3589 }
3590}
3591
3592void MachineVerifier::verifyLiveVariables() {
3593 assert(LiveVars && "Don't call verifyLiveVariables without LiveVars");
3594 for (unsigned I = 0, E = MRI->getNumVirtRegs(); I != E; ++I) {
3597 for (const auto &MBB : *MF) {
3598 BBInfo &MInfo = MBBInfoMap[&MBB];
3599
3600 // Our vregsRequired should be identical to LiveVariables' AliveBlocks
3601 if (MInfo.vregsRequired.count(Reg)) {
3602 if (!VI.AliveBlocks.test(MBB.getNumber())) {
3603 report("LiveVariables: Block missing from AliveBlocks", &MBB);
3604 OS << "Virtual register " << printReg(Reg)
3605 << " must be live through the block.\n";
3606 }
3607 } else {
3608 if (VI.AliveBlocks.test(MBB.getNumber())) {
3609 report("LiveVariables: Block should not be in AliveBlocks", &MBB);
3610 OS << "Virtual register " << printReg(Reg)
3611 << " is not needed live through the block.\n";
3612 }
3613 }
3614 }
3615 }
3616}
3617
3618void MachineVerifier::verifyLiveIntervals() {
3619 assert(LiveInts && "Don't call verifyLiveIntervals without LiveInts");
3620 for (unsigned I = 0, E = MRI->getNumVirtRegs(); I != E; ++I) {
3622
3623 // Spilling and splitting may leave unused registers around. Skip them.
3624 if (MRI->reg_nodbg_empty(Reg))
3625 continue;
3626
3627 if (!LiveInts->hasInterval(Reg)) {
3628 report("Missing live interval for virtual register", MF);
3629 OS << printReg(Reg, TRI) << " still has defs or uses\n";
3630 continue;
3631 }
3632
3633 const LiveInterval &LI = LiveInts->getInterval(Reg);
3634 assert(Reg == LI.reg() && "Invalid reg to interval mapping");
3635 verifyLiveInterval(LI);
3636 }
3637
3638 // Verify all the cached regunit intervals.
3639 for (MCRegUnit Unit : TRI->regunits())
3640 if (const LiveRange *LR = LiveInts->getCachedRegUnit(Unit))
3641 verifyLiveRange(*LR, VirtRegOrUnit(Unit));
3642}
3643
3644void MachineVerifier::verifyLiveRangeValue(const LiveRange &LR,
3645 const VNInfo *VNI,
3646 VirtRegOrUnit VRegOrUnit,
3647 LaneBitmask LaneMask) {
3648 if (VNI->isUnused())
3649 return;
3650
3651 const VNInfo *DefVNI = LR.getVNInfoAt(VNI->def);
3652
3653 if (!DefVNI) {
3654 report("Value not live at VNInfo def and not marked unused", MF);
3655 report_context(LR, VRegOrUnit, LaneMask);
3656 report_context(*VNI);
3657 return;
3658 }
3659
3660 if (DefVNI != VNI) {
3661 report("Live segment at def has different VNInfo", MF);
3662 report_context(LR, VRegOrUnit, LaneMask);
3663 report_context(*VNI);
3664 return;
3665 }
3666
3667 const MachineBasicBlock *MBB = LiveInts->getMBBFromIndex(VNI->def);
3668 if (!MBB) {
3669 report("Invalid VNInfo definition index", MF);
3670 report_context(LR, VRegOrUnit, LaneMask);
3671 report_context(*VNI);
3672 return;
3673 }
3674
3675 if (VNI->isPHIDef()) {
3676 if (VNI->def != LiveInts->getMBBStartIdx(MBB)) {
3677 report("PHIDef VNInfo is not defined at MBB start", MBB);
3678 report_context(LR, VRegOrUnit, LaneMask);
3679 report_context(*VNI);
3680 }
3681 return;
3682 }
3683
3684 // Non-PHI def.
3685 const MachineInstr *MI = LiveInts->getInstructionFromIndex(VNI->def);
3686 if (!MI) {
3687 report("No instruction at VNInfo def index", MBB);
3688 report_context(LR, VRegOrUnit, LaneMask);
3689 report_context(*VNI);
3690 return;
3691 }
3692
3693 bool hasDef = false;
3694 bool isEarlyClobber = false;
3695 for (ConstMIBundleOperands MOI(*MI); MOI.isValid(); ++MOI) {
3696 if (!MOI->isReg() || !MOI->isDef())
3697 continue;
3698 if (VRegOrUnit.isVirtualReg()) {
3699 if (MOI->getReg() != VRegOrUnit.asVirtualReg())
3700 continue;
3701 } else {
3702 if (!MOI->getReg().isPhysical() ||
3703 !TRI->hasRegUnit(MOI->getReg(), VRegOrUnit.asMCRegUnit()))
3704 continue;
3705 }
3706 if (LaneMask.any() &&
3707 (TRI->getSubRegIndexLaneMask(MOI->getSubReg()) & LaneMask).none())
3708 continue;
3709 hasDef = true;
3710 if (MOI->isEarlyClobber())
3711 isEarlyClobber = true;
3712 }
3713
3714 if (!hasDef) {
3715 report("Defining instruction does not modify register", MI);
3716 report_context(LR, VRegOrUnit, LaneMask);
3717 report_context(*VNI);
3718 }
3719
3720 // Early clobber defs begin at USE slots, but other defs must begin at
3721 // DEF slots.
3722 if (isEarlyClobber) {
3723 if (!VNI->def.isEarlyClobber()) {
3724 report("Early clobber def must be at an early-clobber slot", MBB);
3725 report_context(LR, VRegOrUnit, LaneMask);
3726 report_context(*VNI);
3727 }
3728 } else if (!VNI->def.isRegister()) {
3729 report("Non-PHI, non-early clobber def must be at a register slot", MBB);
3730 report_context(LR, VRegOrUnit, LaneMask);
3731 report_context(*VNI);
3732 }
3733}
3734
3735void MachineVerifier::verifyLiveRangeSegment(const LiveRange &LR,
3737 VirtRegOrUnit VRegOrUnit,
3738 LaneBitmask LaneMask) {
3739 const LiveRange::Segment &S = *I;
3740 const VNInfo *VNI = S.valno;
3741 assert(VNI && "Live segment has no valno");
3742
3743 if (VNI->id >= LR.getNumValNums() || VNI != LR.getValNumInfo(VNI->id)) {
3744 report("Foreign valno in live segment", MF);
3745 report_context(LR, VRegOrUnit, LaneMask);
3746 report_context(S);
3747 report_context(*VNI);
3748 }
3749
3750 if (VNI->isUnused()) {
3751 report("Live segment valno is marked unused", MF);
3752 report_context(LR, VRegOrUnit, LaneMask);
3753 report_context(S);
3754 }
3755
3756 const MachineBasicBlock *MBB = LiveInts->getMBBFromIndex(S.start);
3757 if (!MBB) {
3758 report("Bad start of live segment, no basic block", MF);
3759 report_context(LR, VRegOrUnit, LaneMask);
3760 report_context(S);
3761 return;
3762 }
3763 SlotIndex MBBStartIdx = LiveInts->getMBBStartIdx(MBB);
3764 if (S.start != MBBStartIdx && S.start != VNI->def) {
3765 report("Live segment must begin at MBB entry or valno def", MBB);
3766 report_context(LR, VRegOrUnit, LaneMask);
3767 report_context(S);
3768 }
3769
3770 const MachineBasicBlock *EndMBB =
3771 LiveInts->getMBBFromIndex(S.end.getPrevSlot());
3772 if (!EndMBB) {
3773 report("Bad end of live segment, no basic block", MF);
3774 report_context(LR, VRegOrUnit, LaneMask);
3775 report_context(S);
3776 return;
3777 }
3778
3779 // Checks for non-live-out segments.
3780 if (S.end != LiveInts->getMBBEndIdx(EndMBB)) {
3781 // RegUnit intervals are allowed dead phis.
3782 if (!VRegOrUnit.isVirtualReg() && VNI->isPHIDef() && S.start == VNI->def &&
3783 S.end == VNI->def.getDeadSlot())
3784 return;
3785
3786 // The live segment is ending inside EndMBB
3787 const MachineInstr *MI =
3788 LiveInts->getInstructionFromIndex(S.end.getPrevSlot());
3789 if (!MI) {
3790 report("Live segment doesn't end at a valid instruction", EndMBB);
3791 report_context(LR, VRegOrUnit, LaneMask);
3792 report_context(S);
3793 return;
3794 }
3795
3796 // The block slot must refer to a basic block boundary.
3797 if (S.end.isBlock()) {
3798 report("Live segment ends at B slot of an instruction", EndMBB);
3799 report_context(LR, VRegOrUnit, LaneMask);
3800 report_context(S);
3801 }
3802
3803 if (S.end.isDead()) {
3804 // Segment ends on the dead slot.
3805 // That means there must be a dead def.
3806 if (!SlotIndex::isSameInstr(S.start, S.end)) {
3807 report("Live segment ending at dead slot spans instructions", EndMBB);
3808 report_context(LR, VRegOrUnit, LaneMask);
3809 report_context(S);
3810 }
3811 }
3812
3813 // After tied operands are rewritten, a live segment can only end at an
3814 // early-clobber slot if it is being redefined by an early-clobber def.
3815 // TODO: Before tied operands are rewritten, a live segment can only end at
3816 // an early-clobber slot if the last use is tied to an early-clobber def.
3817 if (MF->getProperties().hasTiedOpsRewritten() && S.end.isEarlyClobber()) {
3818 if (I + 1 == LR.end() || (I + 1)->start != S.end) {
3819 report("Live segment ending at early clobber slot must be "
3820 "redefined by an EC def in the same instruction",
3821 EndMBB);
3822 report_context(LR, VRegOrUnit, LaneMask);
3823 report_context(S);
3824 }
3825 }
3826
3827 // The following checks only apply to virtual registers. Physreg liveness
3828 // is too weird to check.
3829 if (VRegOrUnit.isVirtualReg()) {
3830 // A live segment can end with either a redefinition, a kill flag on a
3831 // use, or a dead flag on a def.
3832 bool hasRead = false;
3833 bool hasSubRegDef = false;
3834 bool hasDeadDef = false;
3835 for (ConstMIBundleOperands MOI(*MI); MOI.isValid(); ++MOI) {
3836 if (!MOI->isReg() || MOI->getReg() != VRegOrUnit.asVirtualReg())
3837 continue;
3838 unsigned Sub = MOI->getSubReg();
3839 LaneBitmask SLM =
3840 Sub != 0 ? TRI->getSubRegIndexLaneMask(Sub) : LaneBitmask::getAll();
3841 if (MOI->isDef()) {
3842 if (Sub != 0) {
3843 hasSubRegDef = true;
3844 // An operand %0:sub0 reads %0:sub1..n. Invert the lane
3845 // mask for subregister defs. Read-undef defs will be handled by
3846 // readsReg below.
3847 SLM = ~SLM;
3848 }
3849 if (MOI->isDead())
3850 hasDeadDef = true;
3851 }
3852 if (LaneMask.any() && (LaneMask & SLM).none())
3853 continue;
3854 if (MOI->readsReg())
3855 hasRead = true;
3856 }
3857 if (S.end.isDead()) {
3858 // Make sure that the corresponding machine operand for a "dead" live
3859 // range has the dead flag. We cannot perform this check for subregister
3860 // liveranges as partially dead values are allowed.
3861 if (LaneMask.none() && !hasDeadDef) {
3862 report(
3863 "Instruction ending live segment on dead slot has no dead flag",
3864 MI);
3865 report_context(LR, VRegOrUnit, LaneMask);
3866 report_context(S);
3867 }
3868 } else {
3869 if (!hasRead) {
3870 // When tracking subregister liveness, the main range must start new
3871 // values on partial register writes, even if there is no read.
3872 if (!MRI->shouldTrackSubRegLiveness(VRegOrUnit.asVirtualReg()) ||
3873 LaneMask.any() || !hasSubRegDef) {
3874 report("Instruction ending live segment doesn't read the register",
3875 MI);
3876 report_context(LR, VRegOrUnit, LaneMask);
3877 report_context(S);
3878 }
3879 }
3880 }
3881 }
3882 }
3883
3884 // Now check all the basic blocks in this live segment.
3886 // Is this live segment the beginning of a non-PHIDef VN?
3887 if (S.start == VNI->def && !VNI->isPHIDef()) {
3888 // Not live-in to any blocks.
3889 if (MBB == EndMBB)
3890 return;
3891 // Skip this block.
3892 ++MFI;
3893 }
3894
3896 if (LaneMask.any()) {
3897 LiveInterval &OwnerLI = LiveInts->getInterval(VRegOrUnit.asVirtualReg());
3898 OwnerLI.computeSubRangeUndefs(Undefs, LaneMask, *MRI, *Indexes);
3899 }
3900
3901 while (true) {
3902 assert(LiveInts->isLiveInToMBB(LR, &*MFI));
3903 // We don't know how to track physregs into a landing pad.
3904 if (!VRegOrUnit.isVirtualReg() && MFI->isEHPad()) {
3905 if (&*MFI == EndMBB)
3906 break;
3907 ++MFI;
3908 continue;
3909 }
3910
3911 // Is VNI a PHI-def in the current block?
3912 bool IsPHI = VNI->isPHIDef() &&
3913 VNI->def == LiveInts->getMBBStartIdx(&*MFI);
3914
3915 // Check that VNI is live-out of all predecessors.
3916 for (const MachineBasicBlock *Pred : MFI->predecessors()) {
3917 SlotIndex PEnd = LiveInts->getMBBEndIdx(Pred);
3918 // Predecessor of landing pad live-out on last call.
3919 if (MFI->isEHPad()) {
3920 for (const MachineInstr &MI : llvm::reverse(*Pred)) {
3921 if (MI.isCall()) {
3922 PEnd = Indexes->getInstructionIndex(MI).getBoundaryIndex();
3923 break;
3924 }
3925 }
3926 }
3927 const VNInfo *PVNI = LR.getVNInfoBefore(PEnd);
3928
3929 // All predecessors must have a live-out value. However for a phi
3930 // instruction with subregister intervals
3931 // only one of the subregisters (not necessarily the current one) needs to
3932 // be defined.
3933 if (!PVNI && (LaneMask.none() || !IsPHI)) {
3934 if (LiveRangeCalc::isJointlyDominated(Pred, Undefs, *Indexes))
3935 continue;
3936 report("Register not marked live out of predecessor", Pred);
3937 report_context(LR, VRegOrUnit, LaneMask);
3938 report_context(*VNI);
3939 OS << " live into " << printMBBReference(*MFI) << '@'
3940 << LiveInts->getMBBStartIdx(&*MFI) << ", not live before " << PEnd
3941 << '\n';
3942 continue;
3943 }
3944
3945 // Only PHI-defs can take different predecessor values.
3946 if (!IsPHI && PVNI != VNI) {
3947 report("Different value live out of predecessor", Pred);
3948 report_context(LR, VRegOrUnit, LaneMask);
3949 OS << "Valno #" << PVNI->id << " live out of "
3950 << printMBBReference(*Pred) << '@' << PEnd << "\nValno #" << VNI->id
3951 << " live into " << printMBBReference(*MFI) << '@'
3952 << LiveInts->getMBBStartIdx(&*MFI) << '\n';
3953 }
3954 }
3955 if (&*MFI == EndMBB)
3956 break;
3957 ++MFI;
3958 }
3959}
3960
3961void MachineVerifier::verifyLiveRange(const LiveRange &LR,
3962 VirtRegOrUnit VRegOrUnit,
3963 LaneBitmask LaneMask) {
3964 for (const VNInfo *VNI : LR.valnos)
3965 verifyLiveRangeValue(LR, VNI, VRegOrUnit, LaneMask);
3966
3967 for (LiveRange::const_iterator I = LR.begin(), E = LR.end(); I != E; ++I)
3968 verifyLiveRangeSegment(LR, I, VRegOrUnit, LaneMask);
3969}
3970
3971void MachineVerifier::verifyLiveInterval(const LiveInterval &LI) {
3972 Register Reg = LI.reg();
3973 assert(Reg.isVirtual());
3974 verifyLiveRange(LI, VirtRegOrUnit(Reg));
3975
3976 if (LI.hasSubRanges()) {
3978 LaneBitmask MaxMask = MRI->getMaxLaneMaskForVReg(Reg);
3979 for (const LiveInterval::SubRange &SR : LI.subranges()) {
3980 if ((Mask & SR.LaneMask).any()) {
3981 report("Lane masks of sub ranges overlap in live interval", MF);
3982 report_context(LI);
3983 }
3984 if ((SR.LaneMask & ~MaxMask).any()) {
3985 report("Subrange lanemask is invalid", MF);
3986 report_context(LI);
3987 }
3988 if (SR.empty()) {
3989 report("Subrange must not be empty", MF);
3990 report_context(SR, VirtRegOrUnit(LI.reg()), SR.LaneMask);
3991 }
3992 Mask |= SR.LaneMask;
3993 verifyLiveRange(SR, VirtRegOrUnit(LI.reg()), SR.LaneMask);
3994 if (!LI.covers(SR)) {
3995 report("A Subrange is not covered by the main range", MF);
3996 report_context(LI);
3997 }
3998 }
3999 }
4000
4001 // Check the LI only has one connected component.
4002 ConnectedVNInfoEqClasses ConEQ(*LiveInts);
4003 unsigned NumComp = ConEQ.Classify(LI);
4004 if (NumComp > 1) {
4005 report("Multiple connected components in live interval", MF);
4006 report_context(LI);
4007 for (unsigned comp = 0; comp != NumComp; ++comp) {
4008 OS << comp << ": valnos";
4009 for (const VNInfo *I : LI.valnos)
4010 if (comp == ConEQ.getEqClass(I))
4011 OS << ' ' << I->id;
4012 OS << '\n';
4013 }
4014 }
4015}
4016
4017namespace {
4018
4019 // FrameSetup and FrameDestroy can have zero adjustment, so using a single
4020 // integer, we can't tell whether it is a FrameSetup or FrameDestroy if the
4021 // value is zero.
4022 // We use a bool plus an integer to capture the stack state.
4023struct StackStateOfBB {
4024 StackStateOfBB() = default;
4025 StackStateOfBB(int EntryVal, int ExitVal, bool EntrySetup, bool ExitSetup)
4026 : EntryValue(EntryVal), ExitValue(ExitVal), EntryIsSetup(EntrySetup),
4027 ExitIsSetup(ExitSetup) {}
4028
4029 // Can be negative, which means we are setting up a frame.
4030 int EntryValue = 0;
4031 int ExitValue = 0;
4032 bool EntryIsSetup = false;
4033 bool ExitIsSetup = false;
4034};
4035
4036} // end anonymous namespace
4037
4038/// Make sure on every path through the CFG, a FrameSetup <n> is always followed
4039/// by a FrameDestroy <n>, stack adjustments are identical on all
4040/// CFG edges to a merge point, and frame is destroyed at end of a return block.
4041void MachineVerifier::verifyStackFrame() {
4042 unsigned FrameSetupOpcode = TII->getCallFrameSetupOpcode();
4043 unsigned FrameDestroyOpcode = TII->getCallFrameDestroyOpcode();
4044 if (FrameSetupOpcode == ~0u && FrameDestroyOpcode == ~0u)
4045 return;
4046
4048 SPState.resize(MF->getNumBlockIDs());
4050
4051 // Visit the MBBs in DFS order.
4052 for (df_ext_iterator<const MachineFunction *,
4054 DFI = df_ext_begin(MF, Reachable), DFE = df_ext_end(MF, Reachable);
4055 DFI != DFE; ++DFI) {
4056 const MachineBasicBlock *MBB = *DFI;
4057
4058 StackStateOfBB BBState;
4059 // Check the exit state of the DFS stack predecessor.
4060 if (DFI.getPathLength() >= 2) {
4061 const MachineBasicBlock *StackPred = DFI.getPath(DFI.getPathLength() - 2);
4062 assert(Reachable.count(StackPred) &&
4063 "DFS stack predecessor is already visited.\n");
4064 BBState.EntryValue = SPState[StackPred->getNumber()].ExitValue;
4065 BBState.EntryIsSetup = SPState[StackPred->getNumber()].ExitIsSetup;
4066 BBState.ExitValue = BBState.EntryValue;
4067 BBState.ExitIsSetup = BBState.EntryIsSetup;
4068 }
4069
4070 if ((int)MBB->getCallFrameSize() != -BBState.EntryValue) {
4071 report("Call frame size on entry does not match value computed from "
4072 "predecessor",
4073 MBB);
4074 OS << "Call frame size on entry " << MBB->getCallFrameSize()
4075 << " does not match value computed from predecessor "
4076 << -BBState.EntryValue << '\n';
4077 }
4078
4079 // Update stack state by checking contents of MBB.
4080 for (const auto &I : *MBB) {
4081 if (I.getOpcode() == FrameSetupOpcode) {
4082 if (BBState.ExitIsSetup)
4083 report("FrameSetup is after another FrameSetup", &I);
4084 if (!MRI->isSSA() && !MF->getFrameInfo().adjustsStack())
4085 report("AdjustsStack not set in presence of a frame pseudo "
4086 "instruction.", &I);
4087 BBState.ExitValue -= TII->getFrameTotalSize(I);
4088 BBState.ExitIsSetup = true;
4089 }
4090
4091 if (I.getOpcode() == FrameDestroyOpcode) {
4092 int Size = TII->getFrameTotalSize(I);
4093 if (!BBState.ExitIsSetup)
4094 report("FrameDestroy is not after a FrameSetup", &I);
4095 int AbsSPAdj = BBState.ExitValue < 0 ? -BBState.ExitValue :
4096 BBState.ExitValue;
4097 if (BBState.ExitIsSetup && AbsSPAdj != Size) {
4098 report("FrameDestroy <n> is after FrameSetup <m>", &I);
4099 OS << "FrameDestroy <" << Size << "> is after FrameSetup <"
4100 << AbsSPAdj << ">.\n";
4101 }
4102 if (!MRI->isSSA() && !MF->getFrameInfo().adjustsStack())
4103 report("AdjustsStack not set in presence of a frame pseudo "
4104 "instruction.", &I);
4105 BBState.ExitValue += Size;
4106 BBState.ExitIsSetup = false;
4107 }
4108 }
4109 SPState[MBB->getNumber()] = BBState;
4110
4111 // Make sure the exit state of any predecessor is consistent with the entry
4112 // state.
4113 for (const MachineBasicBlock *Pred : MBB->predecessors()) {
4114 if (Reachable.count(Pred) &&
4115 (SPState[Pred->getNumber()].ExitValue != BBState.EntryValue ||
4116 SPState[Pred->getNumber()].ExitIsSetup != BBState.EntryIsSetup)) {
4117 report("The exit stack state of a predecessor is inconsistent.", MBB);
4118 OS << "Predecessor " << printMBBReference(*Pred) << " has exit state ("
4119 << SPState[Pred->getNumber()].ExitValue << ", "
4120 << SPState[Pred->getNumber()].ExitIsSetup << "), while "
4121 << printMBBReference(*MBB) << " has entry state ("
4122 << BBState.EntryValue << ", " << BBState.EntryIsSetup << ").\n";
4123 }
4124 }
4125
4126 // Make sure the entry state of any successor is consistent with the exit
4127 // state.
4128 for (const MachineBasicBlock *Succ : MBB->successors()) {
4129 if (Reachable.count(Succ) &&
4130 (SPState[Succ->getNumber()].EntryValue != BBState.ExitValue ||
4131 SPState[Succ->getNumber()].EntryIsSetup != BBState.ExitIsSetup)) {
4132 report("The entry stack state of a successor is inconsistent.", MBB);
4133 OS << "Successor " << printMBBReference(*Succ) << " has entry state ("
4134 << SPState[Succ->getNumber()].EntryValue << ", "
4135 << SPState[Succ->getNumber()].EntryIsSetup << "), while "
4136 << printMBBReference(*MBB) << " has exit state ("
4137 << BBState.ExitValue << ", " << BBState.ExitIsSetup << ").\n";
4138 }
4139 }
4140
4141 // Make sure a basic block with return ends with zero stack adjustment.
4142 if (!MBB->empty() && MBB->back().isReturn()) {
4143 if (BBState.ExitIsSetup)
4144 report("A return block ends with a FrameSetup.", MBB);
4145 if (BBState.ExitValue)
4146 report("A return block ends with a nonzero stack adjustment.", MBB);
4147 }
4148 }
4149}
4150
4151void MachineVerifier::verifyStackProtector() {
4152 const MachineFrameInfo &MFI = MF->getFrameInfo();
4153 if (!MFI.hasStackProtectorIndex())
4154 return;
4155 // Only applicable when the offsets of frame objects have been determined,
4156 // which is indicated by a non-zero stack size.
4157 if (!MFI.getStackSize())
4158 return;
4159 const TargetFrameLowering &TFI = *MF->getSubtarget().getFrameLowering();
4160 bool StackGrowsDown =
4162 unsigned FI = MFI.getStackProtectorIndex();
4163 int64_t SPStart = MFI.getObjectOffset(FI);
4164 int64_t SPEnd = SPStart + MFI.getObjectSize(FI);
4165 for (unsigned I = 0, E = MFI.getObjectIndexEnd(); I != E; ++I) {
4166 if (I == FI)
4167 continue;
4168 if (MFI.isDeadObjectIndex(I))
4169 continue;
4170 // FIXME: Skip non-default stack objects, as some targets may place them
4171 // above the stack protector. This is a workaround for the fact that
4172 // backends such as AArch64 may place SVE stack objects *above* the stack
4173 // protector.
4175 continue;
4176 // Skip variable-sized objects because they do not have a fixed offset.
4178 continue;
4179 // FIXME: Skip spill slots which may be allocated above the stack protector.
4180 // Ideally this would only skip callee-saved registers, but we don't have
4181 // that information here. For example, spill-slots used for scavenging are
4182 // not described in CalleeSavedInfo.
4183 if (MFI.isSpillSlotObjectIndex(I))
4184 continue;
4185 int64_t ObjStart = MFI.getObjectOffset(I);
4186 int64_t ObjEnd = ObjStart + MFI.getObjectSize(I);
4187 if (SPStart < ObjEnd && ObjStart < SPEnd) {
4188 report("Stack protector overlaps with another stack object", MF);
4189 break;
4190 }
4191 if ((StackGrowsDown && SPStart <= ObjStart) ||
4192 (!StackGrowsDown && SPStart >= ObjStart)) {
4193 report("Stack protector is not the top-most object on the stack", MF);
4194 break;
4195 }
4196 }
4197}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
aarch64 promote const
static bool isLoad(int Opcode)
static bool isStore(int Opcode)
MachineBasicBlock & MBB
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
MachineBasicBlock MachineBasicBlock::iterator MBBI
This file implements the BitVector class.
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
This file contains the declarations for the subclasses of Constant, which represent the different fla...
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
IRTranslator LLVM IR MI
std::pair< Instruction::BinaryOps, Value * > OffsetOp
Find all possible pairs (BinOp, RHS) that BinOp V, RHS can be simplified.
const size_t AbstractManglingParser< Derived, Alloc >::NumOps
A common definition of LaneBitmask for use in TableGen and CodeGen.
Implement a low-level type suitable for MachineInstr level instruction selection.
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
print mir2vec MIR2Vec Vocabulary Printer Pass
Definition MIR2Vec.cpp:598
This file declares the MIR specialization of the GenericConvergenceVerifier template.
Register Reg
Register const TargetRegisterInfo * TRI
static void verifyConvergenceControl(const MachineFunction &MF, MachineDominatorTree &DT, std::function< void(const Twine &Message)> FailureCB, raw_ostream &OS)
Promote Memory to Register
Definition Mem2Reg.cpp:110
modulo schedule Modulo Schedule test pass
#define P(N)
ppc ctr loops verify
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
Definition PassSupport.h:56
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_>.
static bool isLiveOut(const MachineBasicBlock &MBB, unsigned Reg)
SI Optimize VGPR LiveRange
std::unordered_set< BasicBlock * > BlockSet
This file contains some templates that are useful if you are working with the STL at all.
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.
This file describes how to lower LLVM code to machine code.
static unsigned getSize(unsigned Kind)
static LLVM_ABI unsigned getSizeInBits(const fltSemantics &Sem)
Returns the size of the floating point number (in bits) in the given semantics.
Definition APFloat.cpp:291
const fltSemantics & getSemantics() const
Definition APFloat.h:1546
PassT::Result * getCachedResult(IRUnitT &IR) const
Get the cached result of an analysis pass for a given IR unit.
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.
Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:40
size_t size() const
Get the array size.
Definition ArrayRef.h:141
This class holds the attributes for a particular argument, parameter, function, or return value.
Definition Attributes.h:407
LLVM Basic Block Representation.
Definition BasicBlock.h:62
bool hasAddressTaken() const
Returns true if there are any uses of this basic block other than direct branches,...
Definition BasicBlock.h:687
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction; assumes that the block is well-formed.
Definition BasicBlock.h:237
void clear()
Removes all bits from the bitvector.
Definition BitVector.h:349
iterator_range< const_set_bits_iterator > set_bits() const
Definition BitVector.h:159
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].
Definition Constants.h:420
const APFloat & getValueAPF() const
Definition Constants.h:463
This is the shared class of boolean and integer constants.
Definition Constants.h:87
IntegerType * getIntegerType() const
Variant of the getType() method to always return an IntegerType, which reduces the amount of casting ...
Definition Constants.h:198
unsigned getBitWidth() const
getBitWidth - Return the scalar bitwidth of this constant.
Definition Constants.h:162
A parsed version of the target data layout string in and methods for querying it.
Definition DataLayout.h:64
Implements a dense probed hash-table based set.
Definition DenseSet.h:289
void recalculate(ParentType &Func)
recalculate - compute a dominator tree for the given function
Register getReg() const
Base class for user error types.
Definition Error.h:354
FunctionPass class - This class is used to implement most global optimizations.
Definition Pass.h:314
const Function & getFunction() const
Definition Function.h:166
void initialize(raw_ostream *OS, function_ref< void(const Twine &Message)> FailureCB, const FunctionT &F)
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....
unsigned getBitWidth() const
Get the number of bits in this IntegerType.
constexpr bool isScalableVector() const
Returns true if the LLT is a scalable vector.
constexpr unsigned getScalarSizeInBits() const
constexpr bool isFloatOrFloatVector() const
constexpr bool isScalar() const
constexpr Kind getKind() const
LLT getScalarType() const
constexpr bool isPointerVector() const
constexpr FpSemantics getFpSemantics() const
static constexpr LLT scalar(unsigned SizeInBits)
Get a low-level scalar or aggregate "bag of bits".
constexpr bool isValid() const
constexpr uint16_t getNumElements() const
Returns the number of elements in a vector LLT.
constexpr bool isVector() const
constexpr bool isScalable() const
Returns true if the LLT is a scalable vector.
constexpr TypeSize getSizeInBits() const
Returns the total size of the type. Must only be called on sized types.
constexpr bool isPointer() const
constexpr ElementCount getElementCount() const
constexpr unsigned getAddressSpace() const
constexpr bool isPointerOrPointerVector() const
constexpr bool isFixedVector() const
Returns true if the LLT is a fixed vector.
constexpr TypeSize getSizeInBytes() const
Returns the total size of the type in bytes, i.e.
LLT getElementType() const
Returns the vector's element type. Only valid for vector types.
A live range for subregisters.
LiveInterval - This class represents the liveness of a register, or stack slot.
Register reg() const
bool hasSubRanges() const
Returns true if subregister liveness information is available.
iterator_range< subrange_iterator > subranges()
LLVM_ABI 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 ...
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_ABI 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#.
Segments::const_iterator const_iterator
bool liveAt(SlotIndex index) const
LLVM_ABI bool covers(const LiveRange &Other) const
Returns true if all segments of the Other live range are completely covered by this live range.
bool empty() const
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 necessarily including Idx,...
bool verify() const
Walk the range and assert if any invariants fail to hold.
unsigned getNumValNums() const
iterator begin()
VNInfoList valnos
VNInfo * getVNInfoAt(SlotIndex Idx) const
getVNInfoAt - Return the VNInfo that is live at Idx, or NULL.
LLVM_ABI VarInfo & getVarInfo(Register Reg)
getVarInfo - Return the VarInfo structure for the specified VIRTUAL register.
TypeSize getValue() const
This class is intended to be used as a base class for asm properties and features specific to the tar...
Definition MCAsmInfo.h:66
ExceptionHandling getExceptionHandlingType() const
Definition MCAsmInfo.h:655
Describe properties that are true of each instruction in the target description file.
This holds information about one operand of a machine instruction, indicating the register class for ...
Definition MCInstrDesc.h:86
MCRegAliasIterator enumerates all registers aliasing Reg.
Wrapper class representing physical registers. Should be passed by value.
Definition MCRegister.h:41
const MDOperand & getOperand(unsigned I) const
Definition Metadata.h:1439
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.
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.
bool isIRBlockAddressTaken() const
Test whether this block is the target of an IR BlockAddress.
BasicBlock * getAddressTakenIRBlock() const
Retrieves the BasicBlock which corresponds to this MachineBasicBlock.
LLVM_ABI bool isPredecessor(const MachineBasicBlock *MBB) const
Return true if the specified MBB is a predecessor of this block.
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()
LLVM_ABI bool isSuccessor(const MachineBasicBlock *MBB) const
Return true if the specified MBB is a successor of this block.
iterator_range< pred_iterator > predecessors()
LLVM_ABI StringRef getName() const
Return the name of the corresponding LLVM basic block, or an empty string.
DominatorTree Class - Concrete subclass of DominatorTreeBase that is used to compute a normal dominat...
The MachineFrameInfo class represents an abstract stack frame until prolog/epilog code is inserted.
uint64_t getStackSize() const
Return the number of bytes that must be allocated to hold all of the fixed size frame objects.
int getStackProtectorIndex() const
Return the index for the stack protector object.
bool isSpillSlotObjectIndex(int ObjectIdx) const
Returns true if the specified index corresponds to a spill slot.
int64_t getObjectSize(int ObjectIdx) const
Return the size of the specified object.
LLVM_ABI BitVector getPristineRegs(const MachineFunction &MF) const
Return a set of physical registers that are pristine.
bool isVariableSizedObjectIndex(int ObjectIdx) const
Returns true if the specified index corresponds to a variable sized object.
int getObjectIndexEnd() const
Return one past the maximum frame object index.
bool hasStackProtectorIndex() const
uint8_t getStackID(int ObjectIdx) const
int64_t getObjectOffset(int ObjectIdx) const
Return the assigned stack offset of the specified object from the incoming stack pointer.
bool isDeadObjectIndex(int ObjectIdx) const
Returns true if the specified index corresponds to a dead object.
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.
Properties which a MachineFunction may have at a given point in time.
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.
bool verify(Pass *p=nullptr, const char *Banner=nullptr, raw_ostream *OS=nullptr, bool AbortOnError=true) const
Run the current MachineFunction through the machine code verifier, useful for debugger use.
const MachineFunctionProperties & getProperties() const
Get the function properties.
const MachineBasicBlock & front() const
void print(raw_ostream &OS, const SlotIndexes *=nullptr) const
print - Print out the MachineFunction in a format suitable for debugging to the specified stream.
const TargetMachine & getTarget() const
getTarget - Return the target machine this machine code is compiled with
BasicBlockListType::const_iterator const_iterator
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.
LocationSize getSize() const
Return the size in bytes of the memory reference.
const PseudoSourceValue * getPseudoValue() const
LLT getMemoryType() const
Return the memory type of the memory reference.
const MDNode * getRanges() const
Return the range tag for the memory reference.
AtomicOrdering getSuccessOrdering() const
Return the atomic ordering requirements for this memory operation.
LocationSize getSizeInBits() const
Return the size in bits of the memory reference.
MachineOperand class - Representation of each machine instruction operand.
unsigned getSubReg() const
int64_t getImm() 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 isValidExcessOperand() const
Return true if this operand can validly be appended to an arbitrary operand list.
bool isShuffleMask() const
LLVM_ABI void print(raw_ostream &os, const TargetRegisterInfo *TRI=nullptr) const
Print the MachineOperand to os.
LaneBitmask getLaneMask() const
unsigned getCFIIndex() const
LLVM_ABI 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.
@ 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,...
use_nodbg_iterator use_nodbg_begin(Register RegNo) const
LLVM_ABI void verifyUseLists() const
Verify the use list of all registers.
bool tracksLiveness() const
tracksLiveness - Returns true when tracking register liveness accurately.
static use_nodbg_iterator use_nodbg_end()
bool isReserved(MCRegister PhysReg) const
isReserved - Returns true when PhysReg is a reserved register.
const BitVector & getReservedRegs() const
getReservedRegs - Returns a reference to the frozen set of reserved registers.
LLT getType(Register Reg) const
Get the low-level type of Reg or LLT{} if Reg is not a generic (target independent) virtual register.
bool reservedRegsFrozen() const
reservedRegsFrozen - Returns true after freezeReservedRegs() was called to ensure the set of reserved...
bool def_empty(Register RegNo) const
def_empty - Return true if there are no instructions defining the specified register (it may be live-...
bool reg_nodbg_empty(Register RegNo) const
reg_nodbg_empty - Return true if the only instructions using or defining Reg are Debug instructions.
const RegisterBank * getRegBankOrNull(Register Reg) const
Return the register bank of Reg, or null if Reg has not been assigned a register bank or has been ass...
bool shouldTrackSubRegLiveness(const TargetRegisterClass &RC) const
Returns true if liveness for register class RC should be tracked at the subregister level.
bool hasOneDef(Register RegNo) const
Return true if there is exactly one operand defining the specified register.
LLVM_ABI bool isReservedRegUnit(MCRegUnit Unit) const
Returns true when the given register unit is considered reserved.
const TargetRegisterClass * getRegClassOrNull(Register Reg) const
Return the register class of Reg, or null if Reg has not been assigned a register class yet.
LLVM_ABI LaneBitmask getMaxLaneMaskForVReg(Register Reg) const
Returns a mask covering all bits that can appear in lane masks of subregisters of the virtual registe...
unsigned getNumVirtRegs() const
getNumVirtRegs - Return the number of virtual registers created.
LLVM_ABI PreservedAnalyses run(MachineFunction &MF, MachineFunctionAnalysisManager &MFAM)
ManagedStatic - This transparently changes the behavior of global statics to be lazily constructed on...
Pass interface - Implemented by all 'passes'.
Definition Pass.h:99
virtual void print(raw_ostream &OS, const Module *M) const
print - Print out the internal state of the pass.
Definition Pass.cpp:140
AnalysisType * getAnalysisIfAvailable() const
getAnalysisIfAvailable<AnalysisType>() - Subclasses use this function to get analysis information tha...
A set of analyses that are preserved following a run of a transformation pass.
Definition Analysis.h:112
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Definition Analysis.h:118
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.
Definition Register.h:20
static Register index2VirtReg(unsigned Index)
Convert a 0-based index to a virtual register number.
Definition Register.h:72
MCRegister asMCReg() const
Utility to check-convert this value to a MCRegister.
Definition Register.h:107
unsigned virtRegIndex() const
Convert a virtual register number to a 0-based index.
Definition Register.h:87
constexpr bool isVirtual() const
Return true if the specified register number is in the virtual register namespace.
Definition Register.h:79
constexpr unsigned id() const
Definition Register.h:100
constexpr bool isPhysical() const
Return true if the specified register number is in the physical register namespace.
Definition Register.h:83
SlotIndex - An opaque wrapper around machine indexes.
Definition SlotIndexes.h:66
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 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.
SlotIndexes pass.
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)
size_type size() const
Definition SmallPtrSet.h:99
bool erase(PtrType Ptr)
Remove pointer from the set.
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.
iterator begin() const
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
void resize(size_type N)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Register getReg() const
MI-level Statepoint operands.
Definition StackMaps.h:159
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
Information about stack frame layout on the target.
StackDirection getStackGrowthDirection() const
getStackGrowthDirection - Return the direction the stack grows
const MCAsmInfo & getMCAsmInfo() const
Return target specific asm information.
bool hasSuperClassEq(const TargetRegisterClass *RC) const
Returns true if RC is a super-class of or equal to this class.
LaneBitmask getLaneMask() const
Returns the combination of all lane masks of register in this class.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
virtual const RegisterBankInfo * getRegBankInfo() const
If the information for the register banks is available, return it.
virtual const TargetInstrInfo * getInstrInfo() const
virtual const TargetRegisterInfo * getRegisterInfo() const =0
Return the target's register information.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition Twine.h:82
LLVM_ABI std::string str() const
Return the twine contents as a std::string.
Definition Twine.cpp:17
static constexpr TypeSize getZero()
Definition TypeSize.h:349
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.
Definition Value.h:75
Wrapper class representing a virtual register or register unit.
Definition Register.h:178
constexpr bool isVirtualReg() const
Definition Register.h:194
constexpr MCRegUnit asMCRegUnit() const
Definition Register.h:198
constexpr Register asVirtualReg() const
Definition Register.h:203
std::pair< iterator, bool > insert(const ValueT &V)
Definition DenseSet.h:212
constexpr bool isNonZero() const
Definition TypeSize.h:155
static constexpr bool isKnownLT(const FixedOrScalableQuantity &LHS, const FixedOrScalableQuantity &RHS)
Definition TypeSize.h:216
constexpr bool isScalable() const
Returns whether the quantity is scaled by a runtime quantity (vscale).
Definition TypeSize.h:168
constexpr ScalarTy getKnownMinValue() const
Returns the minimum value this quantity can represent.
Definition TypeSize.h:165
static constexpr bool isKnownGT(const FixedOrScalableQuantity &LHS, const FixedOrScalableQuantity &RHS)
Definition TypeSize.h:223
static constexpr bool isKnownGE(const FixedOrScalableQuantity &LHS, const FixedOrScalableQuantity &RHS)
Definition TypeSize.h:237
self_iterator getIterator()
Definition ilist_node.h:123
NodeTy * getNextNode()
Get the next node, or nullptr for the list tail.
Definition ilist_node.h:348
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition raw_ostream.h:53
Changed
constexpr char Attrs[]
Key for Kernel::Metadata::mAttrs.
constexpr std::underlying_type_t< E > Mask()
Get a bitmask with 1s in all places up to the high-order bit of E's largest value.
LLVM_ABI AttributeSet getFnAttributes(LLVMContext &C, ID id)
Return the function attributes for an intrinsic.
@ OPERAND_IMMEDIATE
Definition MCInstrDesc.h:61
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > extract(Y &&MD)
Extract a Value from Metadata.
Definition Metadata.h:668
NodeAddr< DefNode * > Def
Definition RDFGraph.h:384
NodeAddr< PhiNode * > Phi
Definition RDFGraph.h:390
NodeAddr< FuncNode * > Func
Definition RDFGraph.h:393
iterator end() const
Definition BasicBlock.h:89
LLVM_ABI iterator begin() const
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.
Definition STLExtras.h:315
@ Offset
Definition DWP.cpp:558
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1738
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.
Definition STLExtras.h:1668
constexpr bool isInt(int64_t x)
Checks if an integer fits into the given bit width.
Definition MathExtras.h:165
@ SjLj
setjmp/longjmp based exceptions
Definition CodeGen.h:56
bool isPreISelGenericOpcode(unsigned Opcode)
Check whether the given Opcode is a generic opcode that is not supposed to appear after ISel.
auto dyn_cast_if_present(const Y &Val)
dyn_cast_if_present<X> - Functionally identical to dyn_cast, except that a null (or none in the case ...
Definition Casting.h:732
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
Definition STLExtras.h:2207
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.
Definition LaneBitmask.h:92
LLVM_ABI Printable printRegUnit(MCRegUnit Unit, const TargetRegisterInfo *TRI)
Create Printable object to print register units on a raw_ostream.
AnalysisManager< MachineFunction > MachineFunctionAnalysisManager
bool isPreISelGenericOptimizationHint(unsigned Opcode)
bool isScopedEHPersonality(EHPersonality Pers)
Returns true if this personality uses scope-style EH IR instructions: catchswitch,...
LLVM_ABI FunctionPass * createMachineVerifierPass(const std::string &Banner)
createMachineVerifierPass - This pass verifies cenerated machine code instructions for correctness.
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1745
LLVM_ABI void verifyMachineFunction(const std::string &Banner, const MachineFunction &MF)
auto reverse(ContainerTy &&C)
Definition STLExtras.h:407
detail::ValueMatchesPoly< M > HasValue(M Matcher)
Definition Error.h:221
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.
Definition STLExtras.h:1752
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
Definition Error.cpp:163
GenericConvergenceVerifier< MachineSSAContext > MachineConvergenceVerifier
constexpr bool isUInt(uint64_t x)
Checks if an unsigned integer fits into the given bit width.
Definition MathExtras.h:189
LLVM_ABI raw_ostream & nulls()
This returns a reference to a raw_ostream which simply discards output.
bool set_union(S1Ty &S1, const S2Ty &S2)
set_union(A, B) - Compute A := A u B, return whether A changed.
LLVM_ABI EHPersonality classifyEHPersonality(const Value *Pers)
See if the given exception handling personality function is one that we understand.
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
Definition Casting.h:547
LLVM_ABI raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
AtomicOrdering
Atomic ordering for LLVM's memory model.
@ Sub
Subtraction of integers.
uint16_t MCPhysReg
An unsigned integer type large enough to represent all physical registers, but not necessarily virtua...
Definition MCRegister.h:21
DWARFExpression::Operation Op
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1916
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:559
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
Definition STLExtras.h:1946
df_ext_iterator< T, SetTy > df_ext_end(const T &G, SetTy &S)
LLVM_ABI 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.
LLVM_ABI Printable printMBBReference(const MachineBasicBlock &MBB)
Prints a machine basic block reference.
Implement std::hash so that hash_code can be used in STL containers.
Definition BitVector.h:861
static constexpr LaneBitmask getAll()
Definition LaneBitmask.h:82
constexpr bool none() const
Definition LaneBitmask.h:52
constexpr bool any() const
Definition LaneBitmask.h:53
static constexpr LaneBitmask getNone()
Definition LaneBitmask.h:81
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.