blob: 3456f6717041edabb746bc8af28f5f81d57d07dd [file] [log] [blame]
Bill Wendling68caaaf2010-08-19 18:52:17 +00001//===-- MachineVerifier.cpp - Machine Code Verifier -----------------------===//
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// Pass to verify generated machine code. The following is checked:
11//
12// Operand counts: All explicit operands must be present.
13//
14// Register classes: All physical and virtual register operands must be
15// compatible with the register class required by the instruction descriptor.
16//
17// Register live intervals: Registers must be defined only once, and must be
18// defined before use.
19//
20// The machine code verifier is enabled from LLVMTargetMachine.cpp with the
21// command-line option -verify-machineinstrs, or by defining the environment
22// variable LLVM_VERIFY_MACHINEINSTRS to the name of a file that will receive
23// the verifier errors.
24//===----------------------------------------------------------------------===//
25
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +000026#include "llvm/CodeGen/Passes.h"
Chris Lattner565449d2009-08-23 03:13:20 +000027#include "llvm/ADT/DenseSet.h"
Manman Renaa6875b2013-07-15 21:26:31 +000028#include "llvm/ADT/DepthFirstIterator.h"
Chris Lattner565449d2009-08-23 03:13:20 +000029#include "llvm/ADT/SetOperations.h"
30#include "llvm/ADT/SmallVector.h"
David Majnemer70497c62015-12-02 23:06:39 +000031#include "llvm/Analysis/EHPersonalities.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000032#include "llvm/CodeGen/LiveIntervalAnalysis.h"
33#include "llvm/CodeGen/LiveStackAnalysis.h"
34#include "llvm/CodeGen/LiveVariables.h"
35#include "llvm/CodeGen/MachineFrameInfo.h"
36#include "llvm/CodeGen/MachineFunctionPass.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000037#include "llvm/CodeGen/MachineMemOperand.h"
38#include "llvm/CodeGen/MachineRegisterInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000039#include "llvm/IR/BasicBlock.h"
40#include "llvm/IR/InlineAsm.h"
41#include "llvm/IR/Instructions.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000042#include "llvm/MC/MCAsmInfo.h"
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +000043#include "llvm/Support/Debug.h"
Torok Edwinccb29cd2009-07-11 13:10:19 +000044#include "llvm/Support/ErrorHandling.h"
Benjamin Kramerd59664f2014-04-29 23:26:49 +000045#include "llvm/Support/FileSystem.h"
Torok Edwinccb29cd2009-07-11 13:10:19 +000046#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000047#include "llvm/Target/TargetInstrInfo.h"
48#include "llvm/Target/TargetMachine.h"
49#include "llvm/Target/TargetRegisterInfo.h"
Eric Christopherd9134482014-08-04 21:25:23 +000050#include "llvm/Target/TargetSubtargetInfo.h"
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +000051using namespace llvm;
52
53namespace {
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +000054 struct MachineVerifier {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +000055
Jakob Stoklund Olesenbf4550e2010-12-18 00:06:56 +000056 MachineVerifier(Pass *pass, const char *b) :
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +000057 PASS(pass),
Owen Anderson21b17882015-02-04 00:02:59 +000058 Banner(b)
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +000059 {}
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +000060
Matthias Braunb3aefc32016-02-15 19:25:31 +000061 unsigned verify(MachineFunction &MF);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +000062
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +000063 Pass *const PASS;
Jakob Stoklund Olesenbf4550e2010-12-18 00:06:56 +000064 const char *Banner;
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +000065 const MachineFunction *MF;
66 const TargetMachine *TM;
Evan Cheng8d71a752011-06-27 21:26:13 +000067 const TargetInstrInfo *TII;
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +000068 const TargetRegisterInfo *TRI;
69 const MachineRegisterInfo *MRI;
70
71 unsigned foundErrors;
72
73 typedef SmallVector<unsigned, 16> RegVector;
Jakob Stoklund Olesen16c4a972012-02-28 01:42:41 +000074 typedef SmallVector<const uint32_t*, 4> RegMaskVector;
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +000075 typedef DenseSet<unsigned> RegSet;
76 typedef DenseMap<unsigned, const MachineInstr*> RegMap;
Jakob Stoklund Olesende31b522012-08-20 20:52:06 +000077 typedef SmallPtrSet<const MachineBasicBlock*, 8> BlockSet;
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +000078
Jakob Stoklund Olesen3bb99bc2011-09-23 22:45:39 +000079 const MachineInstr *FirstTerminator;
Jakob Stoklund Olesende31b522012-08-20 20:52:06 +000080 BlockSet FunctionBlocks;
Jakob Stoklund Olesen3bb99bc2011-09-23 22:45:39 +000081
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +000082 BitVector regsReserved;
83 RegSet regsLive;
Jakob Stoklund Olesen2d59cff2009-08-08 13:19:25 +000084 RegVector regsDefined, regsDead, regsKilled;
Jakob Stoklund Olesen16c4a972012-02-28 01:42:41 +000085 RegMaskVector regMasks;
Jakob Stoklund Olesen2d59cff2009-08-08 13:19:25 +000086 RegSet regsLiveInButUnused;
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +000087
Jakob Stoklund Olesen58b6f4d2011-01-12 21:27:48 +000088 SlotIndex lastIndex;
89
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +000090 // Add Reg and any sub-registers to RV
91 void addRegWithSubRegs(RegVector &RV, unsigned Reg) {
92 RV.push_back(Reg);
93 if (TargetRegisterInfo::isPhysicalRegister(Reg))
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +000094 for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid(); ++SubRegs)
95 RV.push_back(*SubRegs);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +000096 }
97
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +000098 struct BBInfo {
99 // Is this MBB reachable from the MF entry point?
100 bool reachable;
101
102 // Vregs that must be live in because they are used without being
103 // defined. Map value is the user.
104 RegMap vregsLiveIn;
105
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000106 // Regs killed in MBB. They may be defined again, and will then be in both
107 // regsKilled and regsLiveOut.
108 RegSet regsKilled;
109
110 // Regs defined in MBB and live out. Note that vregs passing through may
111 // be live out without being mentioned here.
112 RegSet regsLiveOut;
113
114 // Vregs that pass through MBB untouched. This set is disjoint from
115 // regsKilled and regsLiveOut.
116 RegSet vregsPassed;
117
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +0000118 // Vregs that must pass through MBB because they are needed by a successor
119 // block. This set is disjoint from regsLiveOut.
120 RegSet vregsRequired;
121
Jakob Stoklund Olesende31b522012-08-20 20:52:06 +0000122 // Set versions of block's predecessor and successor lists.
123 BlockSet Preds, Succs;
124
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000125 BBInfo() : reachable(false) {}
126
127 // Add register to vregsPassed if it belongs there. Return true if
128 // anything changed.
129 bool addPassed(unsigned Reg) {
130 if (!TargetRegisterInfo::isVirtualRegister(Reg))
131 return false;
132 if (regsKilled.count(Reg) || regsLiveOut.count(Reg))
133 return false;
134 return vregsPassed.insert(Reg).second;
135 }
136
137 // Same for a full set.
138 bool addPassed(const RegSet &RS) {
139 bool changed = false;
140 for (RegSet::const_iterator I = RS.begin(), E = RS.end(); I != E; ++I)
141 if (addPassed(*I))
142 changed = true;
143 return changed;
144 }
145
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +0000146 // Add register to vregsRequired if it belongs there. Return true if
147 // anything changed.
148 bool addRequired(unsigned Reg) {
149 if (!TargetRegisterInfo::isVirtualRegister(Reg))
150 return false;
151 if (regsLiveOut.count(Reg))
152 return false;
153 return vregsRequired.insert(Reg).second;
154 }
155
156 // Same for a full set.
157 bool addRequired(const RegSet &RS) {
158 bool changed = false;
159 for (RegSet::const_iterator I = RS.begin(), E = RS.end(); I != E; ++I)
160 if (addRequired(*I))
161 changed = true;
162 return changed;
163 }
164
165 // Same for a full map.
166 bool addRequired(const RegMap &RM) {
167 bool changed = false;
168 for (RegMap::const_iterator I = RM.begin(), E = RM.end(); I != E; ++I)
169 if (addRequired(I->first))
170 changed = true;
171 return changed;
172 }
173
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000174 // Live-out registers are either in regsLiveOut or vregsPassed.
175 bool isLiveOut(unsigned Reg) const {
176 return regsLiveOut.count(Reg) || vregsPassed.count(Reg);
177 }
178 };
179
180 // Extra register info per MBB.
181 DenseMap<const MachineBasicBlock*, BBInfo> MBBInfoMap;
182
183 bool isReserved(unsigned Reg) {
Jakob Stoklund Olesen3c2a1de2009-08-04 19:18:01 +0000184 return Reg < regsReserved.size() && regsReserved.test(Reg);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000185 }
186
Lang Hames1ce837a2012-02-14 19:17:48 +0000187 bool isAllocatable(unsigned Reg) {
Jakob Stoklund Olesen244beb42012-10-16 00:05:06 +0000188 return Reg < TRI->getNumRegs() && MRI->isAllocatable(Reg);
Lang Hames1ce837a2012-02-14 19:17:48 +0000189 }
190
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +0000191 // Analysis information if available
192 LiveVariables *LiveVars;
Jakob Stoklund Olesen260fa282010-10-26 22:36:07 +0000193 LiveIntervals *LiveInts;
Jakob Stoklund Olesen31fffb62010-11-01 19:49:52 +0000194 LiveStacks *LiveStks;
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000195 SlotIndexes *Indexes;
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +0000196
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000197 void visitMachineFunctionBefore();
198 void visitMachineBasicBlockBefore(const MachineBasicBlock *MBB);
Jakob Stoklund Olesen00e7dff2012-06-06 22:34:30 +0000199 void visitMachineBundleBefore(const MachineInstr *MI);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000200 void visitMachineInstrBefore(const MachineInstr *MI);
201 void visitMachineOperand(const MachineOperand *MO, unsigned MONum);
202 void visitMachineInstrAfter(const MachineInstr *MI);
Jakob Stoklund Olesen00e7dff2012-06-06 22:34:30 +0000203 void visitMachineBundleAfter(const MachineInstr *MI);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000204 void visitMachineBasicBlockAfter(const MachineBasicBlock *MBB);
205 void visitMachineFunctionAfter();
206
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000207 template <typename T> void report(const char *msg, ilist_iterator<T> I) {
208 report(msg, &*I);
209 }
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000210 void report(const char *msg, const MachineFunction *MF);
211 void report(const char *msg, const MachineBasicBlock *MBB);
212 void report(const char *msg, const MachineInstr *MI);
213 void report(const char *msg, const MachineOperand *MO, unsigned MONum);
Matthias Braun7e624d52015-11-09 23:59:33 +0000214
215 void report_context(const LiveInterval &LI) const;
216 void report_context(const LiveRange &LR, unsigned Reg,
217 LaneBitmask LaneMask) const;
218 void report_context(const LiveRange::Segment &S) const;
219 void report_context(const VNInfo &VNI) const;
Matthias Braun579c9cd2016-02-02 02:44:25 +0000220 void report_context(SlotIndex Pos) const;
221 void report_context_liverange(const LiveRange &LR) const;
222 void report_context_regunit(unsigned RegUnit) const;
Matthias Braun1377fd62016-02-02 20:04:51 +0000223 void report_context_lanemask(LaneBitmask LaneMask) const;
224 void report_context_vreg_regunit(unsigned VRegOrRegUnit) const;
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000225
Jakob Stoklund Olesen7a837b92012-08-29 18:11:05 +0000226 void verifyInlineAsm(const MachineInstr *MI);
Jakob Stoklund Olesen7a837b92012-08-29 18:11:05 +0000227
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +0000228 void checkLiveness(const MachineOperand *MO, unsigned MONum);
Matthias Braun1377fd62016-02-02 20:04:51 +0000229 void checkLivenessAtUse(const MachineOperand *MO, unsigned MONum,
230 SlotIndex UseIdx, const LiveRange &LR, unsigned Reg,
231 LaneBitmask LaneMask = 0);
232 void checkLivenessAtDef(const MachineOperand *MO, unsigned MONum,
233 SlotIndex DefIdx, const LiveRange &LR, unsigned Reg,
234 LaneBitmask LaneMask = 0);
235
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000236 void markReachable(const MachineBasicBlock *MBB);
Jakob Stoklund Olesen4cb77022010-01-05 20:59:36 +0000237 void calcRegsPassed();
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000238 void checkPHIOps(const MachineBasicBlock *MBB);
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +0000239
240 void calcRegsRequired();
241 void verifyLiveVariables();
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +0000242 void verifyLiveIntervals();
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +0000243 void verifyLiveInterval(const LiveInterval&);
Matthias Braun3f1d8fd2014-12-10 01:12:10 +0000244 void verifyLiveRangeValue(const LiveRange&, const VNInfo*, unsigned,
245 unsigned);
Matthias Braun364e6e92013-10-10 21:28:54 +0000246 void verifyLiveRangeSegment(const LiveRange&,
Matthias Braun3f1d8fd2014-12-10 01:12:10 +0000247 const LiveRange::const_iterator I, unsigned,
248 unsigned);
Matthias Braune6a24852015-09-25 21:51:14 +0000249 void verifyLiveRange(const LiveRange&, unsigned, LaneBitmask LaneMask = 0);
Manman Renaa6875b2013-07-15 21:26:31 +0000250
251 void verifyStackFrame();
Matthias Braun80595462015-09-09 17:49:46 +0000252
253 void verifySlotIndexes() const;
Derek Schuff42666ee2016-03-29 17:40:22 +0000254 void verifyProperties(const MachineFunction &MF);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000255 };
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +0000256
257 struct MachineVerifierPass : public MachineFunctionPass {
258 static char ID; // Pass ID, replacement for typeid
Matthias Brauna4e932d2014-12-11 19:41:51 +0000259 const std::string Banner;
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +0000260
Matthias Brauna4e932d2014-12-11 19:41:51 +0000261 MachineVerifierPass(const std::string &banner = nullptr)
262 : MachineFunctionPass(ID), Banner(banner) {
Owen Anderson6c18d1a2010-10-19 17:21:58 +0000263 initializeMachineVerifierPassPass(*PassRegistry::getPassRegistry());
264 }
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +0000265
Craig Topper4584cd52014-03-07 09:26:03 +0000266 void getAnalysisUsage(AnalysisUsage &AU) const override {
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +0000267 AU.setPreservesAll();
268 MachineFunctionPass::getAnalysisUsage(AU);
269 }
270
Craig Topper4584cd52014-03-07 09:26:03 +0000271 bool runOnMachineFunction(MachineFunction &MF) override {
Matthias Braunb3aefc32016-02-15 19:25:31 +0000272 unsigned FoundErrors = MachineVerifier(this, Banner.c_str()).verify(MF);
273 if (FoundErrors)
274 report_fatal_error("Found "+Twine(FoundErrors)+" machine code errors.");
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +0000275 return false;
276 }
277 };
278
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000279}
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000280
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +0000281char MachineVerifierPass::ID = 0;
Owen Andersond31d82d2010-08-23 17:52:01 +0000282INITIALIZE_PASS(MachineVerifierPass, "machineverifier",
Owen Andersondf7a4f22010-10-07 22:25:06 +0000283 "Verify generated machine code", false, false)
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000284
Matthias Brauna4e932d2014-12-11 19:41:51 +0000285FunctionPass *llvm::createMachineVerifierPass(const std::string &Banner) {
Jakob Stoklund Olesenbf4550e2010-12-18 00:06:56 +0000286 return new MachineVerifierPass(Banner);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000287}
288
Matthias Braunb3aefc32016-02-15 19:25:31 +0000289bool MachineFunction::verify(Pass *p, const char *Banner, bool AbortOnErrors)
290 const {
291 MachineFunction &MF = const_cast<MachineFunction&>(*this);
292 unsigned FoundErrors = MachineVerifier(p, Banner).verify(MF);
293 if (AbortOnErrors && FoundErrors)
294 report_fatal_error("Found "+Twine(FoundErrors)+" machine code errors.");
295 return FoundErrors == 0;
Jakob Stoklund Olesen27440e72009-11-13 21:56:09 +0000296}
297
Matthias Braun80595462015-09-09 17:49:46 +0000298void MachineVerifier::verifySlotIndexes() const {
299 if (Indexes == nullptr)
300 return;
301
302 // Ensure the IdxMBB list is sorted by slot indexes.
303 SlotIndex Last;
304 for (SlotIndexes::MBBIndexIterator I = Indexes->MBBIndexBegin(),
305 E = Indexes->MBBIndexEnd(); I != E; ++I) {
306 assert(!Last.isValid() || I->first > Last);
307 Last = I->first;
308 }
309}
310
Derek Schuff42666ee2016-03-29 17:40:22 +0000311void MachineVerifier::verifyProperties(const MachineFunction &MF) {
312 // If a pass has introduced virtual registers without clearing the
313 // AllVRegsAllocated property (or set it without allocating the vregs)
314 // then report an error.
315 if (MF.getProperties().hasProperty(
316 MachineFunctionProperties::Property::AllVRegsAllocated) &&
317 MRI->getNumVirtRegs()) {
318 report(
319 "Function has AllVRegsAllocated property but there are VReg operands",
320 &MF);
321 }
322}
323
Matthias Braunb3aefc32016-02-15 19:25:31 +0000324unsigned MachineVerifier::verify(MachineFunction &MF) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000325 foundErrors = 0;
326
327 this->MF = &MF;
328 TM = &MF.getTarget();
Eric Christophereb9e87f2014-10-14 07:00:33 +0000329 TII = MF.getSubtarget().getInstrInfo();
330 TRI = MF.getSubtarget().getRegisterInfo();
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000331 MRI = &MF.getRegInfo();
332
Craig Topperc0196b12014-04-14 00:51:57 +0000333 LiveVars = nullptr;
334 LiveInts = nullptr;
335 LiveStks = nullptr;
336 Indexes = nullptr;
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +0000337 if (PASS) {
Jakob Stoklund Olesene7709eb2010-08-05 22:32:21 +0000338 LiveInts = PASS->getAnalysisIfAvailable<LiveIntervals>();
Jakob Stoklund Olesenb4ef4a92010-08-05 23:51:26 +0000339 // We don't want to verify LiveVariables if LiveIntervals is available.
340 if (!LiveInts)
341 LiveVars = PASS->getAnalysisIfAvailable<LiveVariables>();
Jakob Stoklund Olesen31fffb62010-11-01 19:49:52 +0000342 LiveStks = PASS->getAnalysisIfAvailable<LiveStacks>();
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000343 Indexes = PASS->getAnalysisIfAvailable<SlotIndexes>();
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +0000344 }
345
Matthias Braun80595462015-09-09 17:49:46 +0000346 verifySlotIndexes();
347
Derek Schuff42666ee2016-03-29 17:40:22 +0000348 verifyProperties(MF);
349
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000350 visitMachineFunctionBefore();
351 for (MachineFunction::const_iterator MFI = MF.begin(), MFE = MF.end();
352 MFI!=MFE; ++MFI) {
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000353 visitMachineBasicBlockBefore(&*MFI);
Jakob Stoklund Olesen00e7dff2012-06-06 22:34:30 +0000354 // Keep track of the current bundle header.
Craig Topperc0196b12014-04-14 00:51:57 +0000355 const MachineInstr *CurBundle = nullptr;
Jakob Stoklund Olesen29c27712012-12-18 22:55:07 +0000356 // Do we expect the next instruction to be part of the same bundle?
357 bool InBundle = false;
358
Evan Cheng7fae11b2011-12-14 02:11:42 +0000359 for (MachineBasicBlock::const_instr_iterator MBBI = MFI->instr_begin(),
360 MBBE = MFI->instr_end(); MBBI != MBBE; ++MBBI) {
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000361 if (MBBI->getParent() != &*MFI) {
Jakob Stoklund Olesenb5b4a5d2011-01-12 21:27:41 +0000362 report("Bad instruction parent pointer", MFI);
Owen Anderson21b17882015-02-04 00:02:59 +0000363 errs() << "Instruction: " << *MBBI;
Jakob Stoklund Olesenb5b4a5d2011-01-12 21:27:41 +0000364 continue;
365 }
Jakob Stoklund Olesen29c27712012-12-18 22:55:07 +0000366
367 // Check for consistent bundle flags.
368 if (InBundle && !MBBI->isBundledWithPred())
369 report("Missing BundledPred flag, "
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000370 "BundledSucc was set on predecessor",
371 &*MBBI);
Jakob Stoklund Olesen29c27712012-12-18 22:55:07 +0000372 if (!InBundle && MBBI->isBundledWithPred())
373 report("BundledPred flag is set, "
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000374 "but BundledSucc not set on predecessor",
375 &*MBBI);
Jakob Stoklund Olesen29c27712012-12-18 22:55:07 +0000376
Jakob Stoklund Olesen00e7dff2012-06-06 22:34:30 +0000377 // Is this a bundle header?
378 if (!MBBI->isInsideBundle()) {
379 if (CurBundle)
380 visitMachineBundleAfter(CurBundle);
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000381 CurBundle = &*MBBI;
Jakob Stoklund Olesen00e7dff2012-06-06 22:34:30 +0000382 visitMachineBundleBefore(CurBundle);
383 } else if (!CurBundle)
384 report("No bundle header", MBBI);
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000385 visitMachineInstrBefore(&*MBBI);
Matt Arsenaultee5c2ab2015-04-30 19:35:41 +0000386 for (unsigned I = 0, E = MBBI->getNumOperands(); I != E; ++I) {
387 const MachineInstr &MI = *MBBI;
388 const MachineOperand &Op = MI.getOperand(I);
389 if (Op.getParent() != &MI) {
Matt Arsenault59d2ca12015-04-30 23:20:56 +0000390 // Make sure to use correct addOperand / RemoveOperand / ChangeTo
Matt Arsenaultee5c2ab2015-04-30 19:35:41 +0000391 // functions when replacing operands of a MachineInstr.
392 report("Instruction has operand with wrong parent set", &MI);
393 }
394
395 visitMachineOperand(&Op, I);
396 }
397
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000398 visitMachineInstrAfter(&*MBBI);
Jakob Stoklund Olesen29c27712012-12-18 22:55:07 +0000399
400 // Was this the last bundled instruction?
401 InBundle = MBBI->isBundledWithSucc();
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000402 }
Jakob Stoklund Olesen00e7dff2012-06-06 22:34:30 +0000403 if (CurBundle)
404 visitMachineBundleAfter(CurBundle);
Jakob Stoklund Olesen29c27712012-12-18 22:55:07 +0000405 if (InBundle)
406 report("BundledSucc flag set on last instruction in block", &MFI->back());
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000407 visitMachineBasicBlockAfter(&*MFI);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000408 }
409 visitMachineFunctionAfter();
410
Jakob Stoklund Olesendcf009c2009-08-08 15:34:50 +0000411 // Clean up.
412 regsLive.clear();
413 regsDefined.clear();
414 regsDead.clear();
415 regsKilled.clear();
Jakob Stoklund Olesen16c4a972012-02-28 01:42:41 +0000416 regMasks.clear();
Jakob Stoklund Olesendcf009c2009-08-08 15:34:50 +0000417 regsLiveInButUnused.clear();
418 MBBInfoMap.clear();
419
Matthias Braunb3aefc32016-02-15 19:25:31 +0000420 return foundErrors;
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000421}
422
Chris Lattner75f40452009-08-23 01:03:30 +0000423void MachineVerifier::report(const char *msg, const MachineFunction *MF) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000424 assert(MF);
Owen Anderson21b17882015-02-04 00:02:59 +0000425 errs() << '\n';
Jakob Stoklund Olesenbf4550e2010-12-18 00:06:56 +0000426 if (!foundErrors++) {
427 if (Banner)
Owen Anderson21b17882015-02-04 00:02:59 +0000428 errs() << "# " << Banner << '\n';
Matthias Braun42b4b632015-11-09 23:59:23 +0000429 if (LiveInts != nullptr)
430 LiveInts->print(errs());
431 else
432 MF->print(errs(), Indexes);
Jakob Stoklund Olesenbf4550e2010-12-18 00:06:56 +0000433 }
Owen Anderson21b17882015-02-04 00:02:59 +0000434 errs() << "*** Bad machine code: " << msg << " ***\n"
Craig Toppera538d832012-08-22 06:07:19 +0000435 << "- function: " << MF->getName() << "\n";
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000436}
437
Jakob Stoklund Olesen63c733f2009-10-04 18:18:39 +0000438void MachineVerifier::report(const char *msg, const MachineBasicBlock *MBB) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000439 assert(MBB);
440 report(msg, MBB->getParent());
Owen Anderson21b17882015-02-04 00:02:59 +0000441 errs() << "- basic block: BB#" << MBB->getNumber()
Jakob Stoklund Olesenbde5dc52012-08-02 14:31:49 +0000442 << ' ' << MBB->getName()
Roman Divackyad06cee2012-09-05 22:26:57 +0000443 << " (" << (const void*)MBB << ')';
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000444 if (Indexes)
Owen Anderson21b17882015-02-04 00:02:59 +0000445 errs() << " [" << Indexes->getMBBStartIdx(MBB)
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000446 << ';' << Indexes->getMBBEndIdx(MBB) << ')';
Owen Anderson21b17882015-02-04 00:02:59 +0000447 errs() << '\n';
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000448}
449
Jakob Stoklund Olesen63c733f2009-10-04 18:18:39 +0000450void MachineVerifier::report(const char *msg, const MachineInstr *MI) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000451 assert(MI);
452 report(msg, MI->getParent());
Owen Anderson21b17882015-02-04 00:02:59 +0000453 errs() << "- instruction: ";
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000454 if (Indexes && Indexes->hasIndex(*MI))
455 errs() << Indexes->getInstructionIndex(*MI) << '\t';
Matthias Braun45718db2015-11-09 23:59:25 +0000456 MI->print(errs(), /*SkipOpers=*/true);
Matthias Braun716b4332015-11-09 23:59:29 +0000457 errs() << '\n';
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000458}
459
Jakob Stoklund Olesen63c733f2009-10-04 18:18:39 +0000460void MachineVerifier::report(const char *msg,
461 const MachineOperand *MO, unsigned MONum) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000462 assert(MO);
463 report(msg, MO->getParent());
Owen Anderson21b17882015-02-04 00:02:59 +0000464 errs() << "- operand " << MONum << ": ";
Eric Christopher1cdefae2015-02-27 00:11:34 +0000465 MO->print(errs(), TRI);
Owen Anderson21b17882015-02-04 00:02:59 +0000466 errs() << "\n";
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000467}
468
Matthias Braun579c9cd2016-02-02 02:44:25 +0000469void MachineVerifier::report_context(SlotIndex Pos) const {
470 errs() << "- at: " << Pos << '\n';
471}
472
Matthias Braun7e624d52015-11-09 23:59:33 +0000473void MachineVerifier::report_context(const LiveInterval &LI) const {
Owen Anderson21b17882015-02-04 00:02:59 +0000474 errs() << "- interval: " << LI << '\n';
Jakob Stoklund Olesenbde5dc52012-08-02 14:31:49 +0000475}
476
Matthias Braun7e624d52015-11-09 23:59:33 +0000477void MachineVerifier::report_context(const LiveRange &LR, unsigned Reg,
478 LaneBitmask LaneMask) const {
Matthias Braun579c9cd2016-02-02 02:44:25 +0000479 report_context_liverange(LR);
Owen Anderson21b17882015-02-04 00:02:59 +0000480 errs() << "- register: " << PrintReg(Reg, TRI) << '\n';
Matthias Braun3f1d8fd2014-12-10 01:12:10 +0000481 if (LaneMask != 0)
Matthias Braun1377fd62016-02-02 20:04:51 +0000482 report_context_lanemask(LaneMask);
Matthias Braun364e6e92013-10-10 21:28:54 +0000483}
484
Matthias Braun7e624d52015-11-09 23:59:33 +0000485void MachineVerifier::report_context(const LiveRange::Segment &S) const {
486 errs() << "- segment: " << S << '\n';
487}
488
489void MachineVerifier::report_context(const VNInfo &VNI) const {
490 errs() << "- ValNo: " << VNI.id << " (def " << VNI.def << ")\n";
Matthias Braun364e6e92013-10-10 21:28:54 +0000491}
492
Matthias Braun579c9cd2016-02-02 02:44:25 +0000493void MachineVerifier::report_context_liverange(const LiveRange &LR) const {
494 errs() << "- liverange: " << LR << '\n';
495}
496
497void MachineVerifier::report_context_regunit(unsigned RegUnit) const {
498 errs() << "- regunit: " << PrintRegUnit(RegUnit, TRI) << '\n';
499}
500
Matthias Braun1377fd62016-02-02 20:04:51 +0000501void MachineVerifier::report_context_vreg_regunit(unsigned VRegOrUnit) const {
502 if (TargetRegisterInfo::isVirtualRegister(VRegOrUnit)) {
503 errs() << "- v. register: " << PrintReg(VRegOrUnit, TRI) << '\n';
504 } else {
505 errs() << "- regunit: " << PrintRegUnit(VRegOrUnit, TRI) << '\n';
506 }
507}
508
509void MachineVerifier::report_context_lanemask(LaneBitmask LaneMask) const {
510 errs() << "- lanemask: " << PrintLaneMask(LaneMask) << '\n';
511}
512
Jakob Stoklund Olesen63c733f2009-10-04 18:18:39 +0000513void MachineVerifier::markReachable(const MachineBasicBlock *MBB) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000514 BBInfo &MInfo = MBBInfoMap[MBB];
515 if (!MInfo.reachable) {
516 MInfo.reachable = true;
517 for (MachineBasicBlock::const_succ_iterator SuI = MBB->succ_begin(),
518 SuE = MBB->succ_end(); SuI != SuE; ++SuI)
519 markReachable(*SuI);
520 }
521}
522
Jakob Stoklund Olesen63c733f2009-10-04 18:18:39 +0000523void MachineVerifier::visitMachineFunctionBefore() {
Jakob Stoklund Olesen58b6f4d2011-01-12 21:27:48 +0000524 lastIndex = SlotIndex();
Jakob Stoklund Olesenc30a9af2012-10-15 21:57:41 +0000525 regsReserved = MRI->getReservedRegs();
Jakob Stoklund Olesen3c2a1de2009-08-04 19:18:01 +0000526
527 // A sub-register of a reserved register is also reserved
528 for (int Reg = regsReserved.find_first(); Reg>=0;
529 Reg = regsReserved.find_next(Reg)) {
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000530 for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid(); ++SubRegs) {
Jakob Stoklund Olesen3c2a1de2009-08-04 19:18:01 +0000531 // FIXME: This should probably be:
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000532 // assert(regsReserved.test(*SubRegs) && "Non-reserved sub-register");
533 regsReserved.set(*SubRegs);
Jakob Stoklund Olesen3c2a1de2009-08-04 19:18:01 +0000534 }
535 }
Lang Hames1ce837a2012-02-14 19:17:48 +0000536
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000537 markReachable(&MF->front());
Jakob Stoklund Olesende31b522012-08-20 20:52:06 +0000538
539 // Build a set of the basic blocks in the function.
540 FunctionBlocks.clear();
Alexey Samsonov41b977d2014-04-30 18:29:51 +0000541 for (const auto &MBB : *MF) {
542 FunctionBlocks.insert(&MBB);
543 BBInfo &MInfo = MBBInfoMap[&MBB];
Jakob Stoklund Olesende31b522012-08-20 20:52:06 +0000544
Alexey Samsonov41b977d2014-04-30 18:29:51 +0000545 MInfo.Preds.insert(MBB.pred_begin(), MBB.pred_end());
546 if (MInfo.Preds.size() != MBB.pred_size())
547 report("MBB has duplicate entries in its predecessor list.", &MBB);
Jakob Stoklund Olesende31b522012-08-20 20:52:06 +0000548
Alexey Samsonov41b977d2014-04-30 18:29:51 +0000549 MInfo.Succs.insert(MBB.succ_begin(), MBB.succ_end());
550 if (MInfo.Succs.size() != MBB.succ_size())
551 report("MBB has duplicate entries in its successor list.", &MBB);
Jakob Stoklund Olesende31b522012-08-20 20:52:06 +0000552 }
Jakob Stoklund Olesene17c3fd2013-04-19 21:40:57 +0000553
554 // Check that the register use lists are sane.
555 MRI->verifyUseLists();
Manman Renaa6875b2013-07-15 21:26:31 +0000556
557 verifyStackFrame();
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000558}
559
Jakob Stoklund Olesen1ecc8b22009-11-13 21:55:54 +0000560// Does iterator point to a and b as the first two elements?
Dan Gohmanb29cda92010-04-15 17:08:50 +0000561static bool matchPair(MachineBasicBlock::const_succ_iterator i,
562 const MachineBasicBlock *a, const MachineBasicBlock *b) {
Jakob Stoklund Olesen1ecc8b22009-11-13 21:55:54 +0000563 if (*i == a)
564 return *++i == b;
565 if (*i == b)
566 return *++i == a;
567 return false;
568}
569
570void
571MachineVerifier::visitMachineBasicBlockBefore(const MachineBasicBlock *MBB) {
Craig Topperc0196b12014-04-14 00:51:57 +0000572 FirstTerminator = nullptr;
Jakob Stoklund Olesen3bb99bc2011-09-23 22:45:39 +0000573
Lang Hames1ce837a2012-02-14 19:17:48 +0000574 if (MRI->isSSA()) {
575 // If this block has allocatable physical registers live-in, check that
576 // it is an entry block or landing pad.
Matthias Braund9da1622015-09-09 18:08:03 +0000577 for (const auto &LI : MBB->liveins()) {
578 if (isAllocatable(LI.PhysReg) && !MBB->isEHPad() &&
Duncan P. N. Exon Smithe9bc5792016-02-21 20:39:50 +0000579 MBB->getIterator() != MBB->getParent()->begin()) {
Lang Hames1ce837a2012-02-14 19:17:48 +0000580 report("MBB has allocable live-in, but isn't entry or landing-pad.", MBB);
581 }
582 }
583 }
584
Jakob Stoklund Olesen7c9d5842010-10-21 18:47:06 +0000585 // Count the number of landing pad successors.
Cameron Zwarich4ffda702010-12-20 04:19:48 +0000586 SmallPtrSet<MachineBasicBlock*, 4> LandingPadSuccs;
Jakob Stoklund Olesen7c9d5842010-10-21 18:47:06 +0000587 for (MachineBasicBlock::const_succ_iterator I = MBB->succ_begin(),
Cameron Zwarich4ffda702010-12-20 04:19:48 +0000588 E = MBB->succ_end(); I != E; ++I) {
Reid Kleckner0e288232015-08-27 23:27:47 +0000589 if ((*I)->isEHPad())
Cameron Zwarich4ffda702010-12-20 04:19:48 +0000590 LandingPadSuccs.insert(*I);
Jakob Stoklund Olesende31b522012-08-20 20:52:06 +0000591 if (!FunctionBlocks.count(*I))
592 report("MBB has successor that isn't part of the function.", MBB);
593 if (!MBBInfoMap[*I].Preds.count(MBB)) {
594 report("Inconsistent CFG", MBB);
Owen Anderson21b17882015-02-04 00:02:59 +0000595 errs() << "MBB is not in the predecessor list of the successor BB#"
Jakob Stoklund Olesende31b522012-08-20 20:52:06 +0000596 << (*I)->getNumber() << ".\n";
597 }
598 }
599
600 // Check the predecessor list.
601 for (MachineBasicBlock::const_pred_iterator I = MBB->pred_begin(),
602 E = MBB->pred_end(); I != E; ++I) {
603 if (!FunctionBlocks.count(*I))
604 report("MBB has predecessor that isn't part of the function.", MBB);
605 if (!MBBInfoMap[*I].Succs.count(MBB)) {
606 report("Inconsistent CFG", MBB);
Owen Anderson21b17882015-02-04 00:02:59 +0000607 errs() << "MBB is not in the successor list of the predecessor BB#"
Jakob Stoklund Olesende31b522012-08-20 20:52:06 +0000608 << (*I)->getNumber() << ".\n";
609 }
Cameron Zwarich4ffda702010-12-20 04:19:48 +0000610 }
Bill Wendling2a401312011-05-04 22:54:05 +0000611
612 const MCAsmInfo *AsmInfo = TM->getMCAsmInfo();
613 const BasicBlock *BB = MBB->getBasicBlock();
Reid Kleckner64b003f2015-11-09 21:04:00 +0000614 const Function *Fn = MF->getFunction();
Bill Wendling2a401312011-05-04 22:54:05 +0000615 if (LandingPadSuccs.size() > 1 &&
616 !(AsmInfo &&
617 AsmInfo->getExceptionHandlingType() == ExceptionHandling::SjLj &&
Reid Kleckner64b003f2015-11-09 21:04:00 +0000618 BB && isa<SwitchInst>(BB->getTerminator())) &&
619 !isFuncletEHPersonality(classifyEHPersonality(Fn->getPersonalityFn())))
Jakob Stoklund Olesen7c9d5842010-10-21 18:47:06 +0000620 report("MBB has more than one landing pad successor", MBB);
621
Dan Gohman352a4952009-08-27 02:43:49 +0000622 // Call AnalyzeBranch. If it succeeds, there several more conditions to check.
Craig Topperc0196b12014-04-14 00:51:57 +0000623 MachineBasicBlock *TBB = nullptr, *FBB = nullptr;
Dan Gohman352a4952009-08-27 02:43:49 +0000624 SmallVector<MachineOperand, 4> Cond;
625 if (!TII->AnalyzeBranch(*const_cast<MachineBasicBlock *>(MBB),
626 TBB, FBB, Cond)) {
627 // Ok, AnalyzeBranch thinks it knows what's going on with this block. Let's
628 // check whether its answers match up with reality.
629 if (!TBB && !FBB) {
630 // Block falls through to its successor.
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000631 MachineFunction::const_iterator MBBI = MBB->getIterator();
Dan Gohman352a4952009-08-27 02:43:49 +0000632 ++MBBI;
633 if (MBBI == MF->end()) {
Dan Gohmaned10d7c2009-08-27 18:14:26 +0000634 // It's possible that the block legitimately ends with a noreturn
635 // call or an unreachable, in which case it won't actually fall
636 // out the bottom of the function.
Cameron Zwarich4ffda702010-12-20 04:19:48 +0000637 } else if (MBB->succ_size() == LandingPadSuccs.size()) {
Dan Gohmaned10d7c2009-08-27 18:14:26 +0000638 // It's possible that the block legitimately ends with a noreturn
639 // call or an unreachable, in which case it won't actuall fall
640 // out of the block.
Cameron Zwarich4ffda702010-12-20 04:19:48 +0000641 } else if (MBB->succ_size() != 1+LandingPadSuccs.size()) {
Dan Gohman352a4952009-08-27 02:43:49 +0000642 report("MBB exits via unconditional fall-through but doesn't have "
643 "exactly one CFG successor!", MBB);
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000644 } else if (!MBB->isSuccessor(&*MBBI)) {
Dan Gohman352a4952009-08-27 02:43:49 +0000645 report("MBB exits via unconditional fall-through but its successor "
646 "differs from its CFG successor!", MBB);
647 }
Benjamin Kramer5256ce32014-05-24 13:31:10 +0000648 if (!MBB->empty() && MBB->back().isBarrier() &&
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000649 !TII->isPredicated(MBB->back())) {
Dan Gohman352a4952009-08-27 02:43:49 +0000650 report("MBB exits via unconditional fall-through but ends with a "
651 "barrier instruction!", MBB);
652 }
653 if (!Cond.empty()) {
654 report("MBB exits via unconditional fall-through but has a condition!",
655 MBB);
656 }
657 } else if (TBB && !FBB && Cond.empty()) {
658 // Block unconditionally branches somewhere.
Ahmed Bougachafb6eeb72014-12-01 18:43:53 +0000659 // If the block has exactly one successor, that happens to be a
660 // landingpad, accept it as valid control flow.
661 if (MBB->succ_size() != 1+LandingPadSuccs.size() &&
662 (MBB->succ_size() != 1 || LandingPadSuccs.size() != 1 ||
663 *MBB->succ_begin() != *LandingPadSuccs.begin())) {
Dan Gohman352a4952009-08-27 02:43:49 +0000664 report("MBB exits via unconditional branch but doesn't have "
665 "exactly one CFG successor!", MBB);
Jakob Stoklund Olesen7c9d5842010-10-21 18:47:06 +0000666 } else if (!MBB->isSuccessor(TBB)) {
Dan Gohman352a4952009-08-27 02:43:49 +0000667 report("MBB exits via unconditional branch but the CFG "
668 "successor doesn't match the actual successor!", MBB);
669 }
670 if (MBB->empty()) {
671 report("MBB exits via unconditional branch but doesn't contain "
672 "any instructions!", MBB);
Benjamin Kramer5256ce32014-05-24 13:31:10 +0000673 } else if (!MBB->back().isBarrier()) {
Dan Gohman352a4952009-08-27 02:43:49 +0000674 report("MBB exits via unconditional branch but doesn't end with a "
675 "barrier instruction!", MBB);
Benjamin Kramer5256ce32014-05-24 13:31:10 +0000676 } else if (!MBB->back().isTerminator()) {
Dan Gohman352a4952009-08-27 02:43:49 +0000677 report("MBB exits via unconditional branch but the branch isn't a "
678 "terminator instruction!", MBB);
679 }
680 } else if (TBB && !FBB && !Cond.empty()) {
681 // Block conditionally branches somewhere, otherwise falls through.
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000682 MachineFunction::const_iterator MBBI = MBB->getIterator();
Dan Gohman352a4952009-08-27 02:43:49 +0000683 ++MBBI;
684 if (MBBI == MF->end()) {
685 report("MBB conditionally falls through out of function!", MBB);
Dmitri Gribenko349d1a32012-12-19 22:13:01 +0000686 } else if (MBB->succ_size() == 1) {
Jakob Stoklund Olesen7d33c572012-08-20 21:39:52 +0000687 // A conditional branch with only one successor is weird, but allowed.
688 if (&*MBBI != TBB)
689 report("MBB exits via conditional branch/fall-through but only has "
690 "one CFG successor!", MBB);
691 else if (TBB != *MBB->succ_begin())
692 report("MBB exits via conditional branch/fall-through but the CFG "
693 "successor don't match the actual successor!", MBB);
694 } else if (MBB->succ_size() != 2) {
Dan Gohman352a4952009-08-27 02:43:49 +0000695 report("MBB exits via conditional branch/fall-through but doesn't have "
696 "exactly two CFG successors!", MBB);
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000697 } else if (!matchPair(MBB->succ_begin(), TBB, &*MBBI)) {
Dan Gohman352a4952009-08-27 02:43:49 +0000698 report("MBB exits via conditional branch/fall-through but the CFG "
699 "successors don't match the actual successors!", MBB);
700 }
701 if (MBB->empty()) {
702 report("MBB exits via conditional branch/fall-through but doesn't "
703 "contain any instructions!", MBB);
Benjamin Kramer5256ce32014-05-24 13:31:10 +0000704 } else if (MBB->back().isBarrier()) {
Dan Gohman352a4952009-08-27 02:43:49 +0000705 report("MBB exits via conditional branch/fall-through but ends with a "
706 "barrier instruction!", MBB);
Benjamin Kramer5256ce32014-05-24 13:31:10 +0000707 } else if (!MBB->back().isTerminator()) {
Dan Gohman352a4952009-08-27 02:43:49 +0000708 report("MBB exits via conditional branch/fall-through but the branch "
709 "isn't a terminator instruction!", MBB);
710 }
711 } else if (TBB && FBB) {
712 // Block conditionally branches somewhere, otherwise branches
713 // somewhere else.
Jakob Stoklund Olesen7d33c572012-08-20 21:39:52 +0000714 if (MBB->succ_size() == 1) {
715 // A conditional branch with only one successor is weird, but allowed.
716 if (FBB != TBB)
717 report("MBB exits via conditional branch/branch through but only has "
718 "one CFG successor!", MBB);
719 else if (TBB != *MBB->succ_begin())
720 report("MBB exits via conditional branch/branch through but the CFG "
721 "successor don't match the actual successor!", MBB);
722 } else if (MBB->succ_size() != 2) {
Dan Gohman352a4952009-08-27 02:43:49 +0000723 report("MBB exits via conditional branch/branch but doesn't have "
724 "exactly two CFG successors!", MBB);
Jakob Stoklund Olesen1ecc8b22009-11-13 21:55:54 +0000725 } else if (!matchPair(MBB->succ_begin(), TBB, FBB)) {
Dan Gohman352a4952009-08-27 02:43:49 +0000726 report("MBB exits via conditional branch/branch but the CFG "
727 "successors don't match the actual successors!", MBB);
728 }
729 if (MBB->empty()) {
730 report("MBB exits via conditional branch/branch but doesn't "
731 "contain any instructions!", MBB);
Benjamin Kramer389cec02014-05-24 13:13:17 +0000732 } else if (!MBB->back().isBarrier()) {
Dan Gohman352a4952009-08-27 02:43:49 +0000733 report("MBB exits via conditional branch/branch but doesn't end with a "
734 "barrier instruction!", MBB);
Benjamin Kramer389cec02014-05-24 13:13:17 +0000735 } else if (!MBB->back().isTerminator()) {
Dan Gohman352a4952009-08-27 02:43:49 +0000736 report("MBB exits via conditional branch/branch but the branch "
737 "isn't a terminator instruction!", MBB);
738 }
739 if (Cond.empty()) {
740 report("MBB exits via conditinal branch/branch but there's no "
741 "condition!", MBB);
742 }
743 } else {
744 report("AnalyzeBranch returned invalid data!", MBB);
745 }
746 }
747
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000748 regsLive.clear();
Matthias Braund9da1622015-09-09 18:08:03 +0000749 for (const auto &LI : MBB->liveins()) {
750 if (!TargetRegisterInfo::isPhysicalRegister(LI.PhysReg)) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000751 report("MBB live-in list contains non-physical register", MBB);
752 continue;
753 }
Matthias Braund9da1622015-09-09 18:08:03 +0000754 for (MCSubRegIterator SubRegs(LI.PhysReg, TRI, /*IncludeSelf=*/true);
Chad Rosierabdb1d62013-05-22 23:17:36 +0000755 SubRegs.isValid(); ++SubRegs)
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000756 regsLive.insert(*SubRegs);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000757 }
Jakob Stoklund Olesen2d59cff2009-08-08 13:19:25 +0000758 regsLiveInButUnused = regsLive;
Jakob Stoklund Olesen0e73fdf2009-08-13 16:19:51 +0000759
760 const MachineFrameInfo *MFI = MF->getFrameInfo();
761 assert(MFI && "Function has no frame info");
Matthias Braun111f5d82015-05-28 23:20:35 +0000762 BitVector PR = MFI->getPristineRegs(*MF);
Jakob Stoklund Olesen0e73fdf2009-08-13 16:19:51 +0000763 for (int I = PR.find_first(); I>0; I = PR.find_next(I)) {
Chad Rosierabdb1d62013-05-22 23:17:36 +0000764 for (MCSubRegIterator SubRegs(I, TRI, /*IncludeSelf=*/true);
765 SubRegs.isValid(); ++SubRegs)
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000766 regsLive.insert(*SubRegs);
Jakob Stoklund Olesen0e73fdf2009-08-13 16:19:51 +0000767 }
768
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000769 regsKilled.clear();
770 regsDefined.clear();
Jakob Stoklund Olesen58b6f4d2011-01-12 21:27:48 +0000771
772 if (Indexes)
773 lastIndex = Indexes->getMBBStartIdx(MBB);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000774}
775
Jakob Stoklund Olesen00e7dff2012-06-06 22:34:30 +0000776// This function gets called for all bundle headers, including normal
777// stand-alone unbundled instructions.
778void MachineVerifier::visitMachineBundleBefore(const MachineInstr *MI) {
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000779 if (Indexes && Indexes->hasIndex(*MI)) {
780 SlotIndex idx = Indexes->getInstructionIndex(*MI);
Jakob Stoklund Olesen00e7dff2012-06-06 22:34:30 +0000781 if (!(idx > lastIndex)) {
782 report("Instruction index out of order", MI);
Owen Anderson21b17882015-02-04 00:02:59 +0000783 errs() << "Last instruction was at " << lastIndex << '\n';
Jakob Stoklund Olesen00e7dff2012-06-06 22:34:30 +0000784 }
785 lastIndex = idx;
786 }
Pete Coopercd720162012-06-07 17:41:39 +0000787
788 // Ensure non-terminators don't follow terminators.
789 // Ignore predicated terminators formed by if conversion.
790 // FIXME: If conversion shouldn't need to violate this rule.
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000791 if (MI->isTerminator() && !TII->isPredicated(*MI)) {
Pete Coopercd720162012-06-07 17:41:39 +0000792 if (!FirstTerminator)
793 FirstTerminator = MI;
794 } else if (FirstTerminator) {
795 report("Non-terminator instruction after the first terminator", MI);
Owen Anderson21b17882015-02-04 00:02:59 +0000796 errs() << "First terminator was:\t" << *FirstTerminator;
Pete Coopercd720162012-06-07 17:41:39 +0000797 }
Jakob Stoklund Olesen00e7dff2012-06-06 22:34:30 +0000798}
799
Jakob Stoklund Olesen7a837b92012-08-29 18:11:05 +0000800// The operands on an INLINEASM instruction must follow a template.
801// Verify that the flag operands make sense.
802void MachineVerifier::verifyInlineAsm(const MachineInstr *MI) {
803 // The first two operands on INLINEASM are the asm string and global flags.
804 if (MI->getNumOperands() < 2) {
805 report("Too few operands on inline asm", MI);
806 return;
807 }
808 if (!MI->getOperand(0).isSymbol())
809 report("Asm string must be an external symbol", MI);
810 if (!MI->getOperand(1).isImm())
811 report("Asm flags must be an immediate", MI);
Chad Rosier9e1274f2012-10-30 19:11:54 +0000812 // Allowed flags are Extra_HasSideEffects = 1, Extra_IsAlignStack = 2,
813 // Extra_AsmDialect = 4, Extra_MayLoad = 8, and Extra_MayStore = 16.
814 if (!isUInt<5>(MI->getOperand(1).getImm()))
Jakob Stoklund Olesen7a837b92012-08-29 18:11:05 +0000815 report("Unknown asm flags", &MI->getOperand(1), 1);
816
Gabor Horvathfee04342015-03-16 09:53:42 +0000817 static_assert(InlineAsm::MIOp_FirstOperand == 2, "Asm format changed");
Jakob Stoklund Olesen7a837b92012-08-29 18:11:05 +0000818
819 unsigned OpNo = InlineAsm::MIOp_FirstOperand;
820 unsigned NumOps;
821 for (unsigned e = MI->getNumOperands(); OpNo < e; OpNo += NumOps) {
822 const MachineOperand &MO = MI->getOperand(OpNo);
823 // There may be implicit ops after the fixed operands.
824 if (!MO.isImm())
825 break;
826 NumOps = 1 + InlineAsm::getNumOperandRegisters(MO.getImm());
827 }
828
829 if (OpNo > MI->getNumOperands())
830 report("Missing operands in last group", MI);
831
832 // An optional MDNode follows the groups.
833 if (OpNo < MI->getNumOperands() && MI->getOperand(OpNo).isMetadata())
834 ++OpNo;
835
836 // All trailing operands must be implicit registers.
837 for (unsigned e = MI->getNumOperands(); OpNo < e; ++OpNo) {
838 const MachineOperand &MO = MI->getOperand(OpNo);
839 if (!MO.isReg() || !MO.isImplicit())
840 report("Expected implicit register after groups", &MO, OpNo);
841 }
842}
843
Jakob Stoklund Olesen63c733f2009-10-04 18:18:39 +0000844void MachineVerifier::visitMachineInstrBefore(const MachineInstr *MI) {
Evan Cheng6cc775f2011-06-28 19:10:37 +0000845 const MCInstrDesc &MCID = MI->getDesc();
846 if (MI->getNumOperands() < MCID.getNumOperands()) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000847 report("Too few operands", MI);
Owen Anderson21b17882015-02-04 00:02:59 +0000848 errs() << MCID.getNumOperands() << " operands expected, but "
Matt Arsenault23c92742013-11-15 22:18:19 +0000849 << MI->getNumOperands() << " given.\n";
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000850 }
Dan Gohmandb9493c2009-10-07 17:36:00 +0000851
Jakob Stoklund Olesendbbff782012-08-29 00:38:03 +0000852 // Check the tied operands.
Jakob Stoklund Olesen7a837b92012-08-29 18:11:05 +0000853 if (MI->isInlineAsm())
854 verifyInlineAsm(MI);
Jakob Stoklund Olesendbbff782012-08-29 00:38:03 +0000855
Dan Gohmandb9493c2009-10-07 17:36:00 +0000856 // Check the MachineMemOperands for basic consistency.
857 for (MachineInstr::mmo_iterator I = MI->memoperands_begin(),
858 E = MI->memoperands_end(); I != E; ++I) {
Evan Cheng7f8e5632011-12-07 07:15:52 +0000859 if ((*I)->isLoad() && !MI->mayLoad())
Dan Gohmandb9493c2009-10-07 17:36:00 +0000860 report("Missing mayLoad flag", MI);
Evan Cheng7f8e5632011-12-07 07:15:52 +0000861 if ((*I)->isStore() && !MI->mayStore())
Dan Gohmandb9493c2009-10-07 17:36:00 +0000862 report("Missing mayStore flag", MI);
863 }
Jakob Stoklund Olesene7709eb2010-08-05 22:32:21 +0000864
865 // Debug values must not have a slot index.
Jakob Stoklund Olesen5aafb562012-02-27 18:24:30 +0000866 // Other instructions must have one, unless they are inside a bundle.
Jakob Stoklund Olesene7709eb2010-08-05 22:32:21 +0000867 if (LiveInts) {
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000868 bool mapped = !LiveInts->isNotInMIMap(*MI);
Jakob Stoklund Olesene7709eb2010-08-05 22:32:21 +0000869 if (MI->isDebugValue()) {
870 if (mapped)
871 report("Debug instruction has a slot index", MI);
Jakob Stoklund Olesen5aafb562012-02-27 18:24:30 +0000872 } else if (MI->isInsideBundle()) {
873 if (mapped)
874 report("Instruction inside bundle has a slot index", MI);
Jakob Stoklund Olesene7709eb2010-08-05 22:32:21 +0000875 } else {
876 if (!mapped)
877 report("Missing slot index", MI);
878 }
879 }
880
Andrew Trick924123a2011-09-21 02:20:46 +0000881 StringRef ErrorInfo;
882 if (!TII->verifyInstruction(MI, ErrorInfo))
883 report(ErrorInfo.data(), MI);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000884}
885
886void
Jakob Stoklund Olesen63c733f2009-10-04 18:18:39 +0000887MachineVerifier::visitMachineOperand(const MachineOperand *MO, unsigned MONum) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000888 const MachineInstr *MI = MO->getParent();
Evan Cheng6cc775f2011-06-28 19:10:37 +0000889 const MCInstrDesc &MCID = MI->getDesc();
Alex Lorenze5101e22015-08-10 21:47:36 +0000890 unsigned NumDefs = MCID.getNumDefs();
891 if (MCID.getOpcode() == TargetOpcode::PATCHPOINT)
892 NumDefs = (MONum == 0 && MO->isReg()) ? NumDefs : 0;
Jakob Stoklund Olesene61c7a32009-05-16 07:25:20 +0000893
Evan Cheng6cc775f2011-06-28 19:10:37 +0000894 // The first MCID.NumDefs operands must be explicit register defines
Alex Lorenze5101e22015-08-10 21:47:36 +0000895 if (MONum < NumDefs) {
Richard Smith8f3447c2012-08-15 01:39:31 +0000896 const MCOperandInfo &MCOI = MCID.OpInfo[MONum];
Jakob Stoklund Olesene61c7a32009-05-16 07:25:20 +0000897 if (!MO->isReg())
898 report("Explicit definition must be a register", MO, MONum);
Evan Cheng76f6e262012-05-29 19:40:44 +0000899 else if (!MO->isDef() && !MCOI.isOptionalDef())
Jakob Stoklund Olesene61c7a32009-05-16 07:25:20 +0000900 report("Explicit definition marked as use", MO, MONum);
901 else if (MO->isImplicit())
902 report("Explicit definition marked as implicit", MO, MONum);
Evan Cheng6cc775f2011-06-28 19:10:37 +0000903 } else if (MONum < MCID.getNumOperands()) {
Richard Smith8f3447c2012-08-15 01:39:31 +0000904 const MCOperandInfo &MCOI = MCID.OpInfo[MONum];
Eric Christopherbcc230a72010-11-17 00:55:36 +0000905 // Don't check if it's the last operand in a variadic instruction. See,
906 // e.g., LDM_RET in the arm back end.
Evan Cheng6cc775f2011-06-28 19:10:37 +0000907 if (MO->isReg() &&
Evan Cheng7f8e5632011-12-07 07:15:52 +0000908 !(MI->isVariadic() && MONum == MCID.getNumOperands()-1)) {
Evan Cheng6cc775f2011-06-28 19:10:37 +0000909 if (MO->isDef() && !MCOI.isOptionalDef())
Matthias Braun6a57acf2013-10-04 16:53:00 +0000910 report("Explicit operand marked as def", MO, MONum);
Jakob Stoklund Olesen75b9c272009-09-23 20:57:55 +0000911 if (MO->isImplicit())
912 report("Explicit operand marked as implicit", MO, MONum);
913 }
Jakob Stoklund Olesendbbff782012-08-29 00:38:03 +0000914
Jakob Stoklund Olesenc7579cd2012-09-04 18:38:28 +0000915 int TiedTo = MCID.getOperandConstraint(MONum, MCOI::TIED_TO);
916 if (TiedTo != -1) {
Jakob Stoklund Olesendbbff782012-08-29 00:38:03 +0000917 if (!MO->isReg())
918 report("Tied use must be a register", MO, MONum);
919 else if (!MO->isTied())
920 report("Operand should be tied", MO, MONum);
Jakob Stoklund Olesenc7579cd2012-09-04 18:38:28 +0000921 else if (unsigned(TiedTo) != MI->findTiedOperandIdx(MONum))
922 report("Tied def doesn't match MCInstrDesc", MO, MONum);
Jakob Stoklund Olesendbbff782012-08-29 00:38:03 +0000923 } else if (MO->isReg() && MO->isTied())
924 report("Explicit operand should not be tied", MO, MONum);
Jakob Stoklund Olesen75b9c272009-09-23 20:57:55 +0000925 } else {
Jakob Stoklund Olesen3db495232009-12-22 21:48:20 +0000926 // ARM adds %reg0 operands to indicate predicates. We'll allow that.
Evan Cheng7f8e5632011-12-07 07:15:52 +0000927 if (MO->isReg() && !MO->isImplicit() && !MI->isVariadic() && MO->getReg())
Jakob Stoklund Olesen75b9c272009-09-23 20:57:55 +0000928 report("Extra explicit operand on non-variadic instruction", MO, MONum);
Jakob Stoklund Olesene61c7a32009-05-16 07:25:20 +0000929 }
930
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000931 switch (MO->getType()) {
932 case MachineOperand::MO_Register: {
933 const unsigned Reg = MO->getReg();
934 if (!Reg)
935 return;
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +0000936 if (MRI->tracksLiveness() && !MI->isDebugValue())
937 checkLiveness(MO, MONum);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000938
Jakob Stoklund Olesenc7579cd2012-09-04 18:38:28 +0000939 // Verify the consistency of tied operands.
940 if (MO->isTied()) {
941 unsigned OtherIdx = MI->findTiedOperandIdx(MONum);
942 const MachineOperand &OtherMO = MI->getOperand(OtherIdx);
943 if (!OtherMO.isReg())
944 report("Must be tied to a register", MO, MONum);
945 if (!OtherMO.isTied())
946 report("Missing tie flags on tied operand", MO, MONum);
947 if (MI->findTiedOperandIdx(OtherIdx) != MONum)
948 report("Inconsistent tie links", MO, MONum);
949 if (MONum < MCID.getNumDefs()) {
950 if (OtherIdx < MCID.getNumOperands()) {
951 if (-1 == MCID.getOperandConstraint(OtherIdx, MCOI::TIED_TO))
952 report("Explicit def tied to explicit use without tie constraint",
953 MO, MONum);
954 } else {
955 if (!OtherMO.isImplicit())
956 report("Explicit def should be tied to implicit use", MO, MONum);
957 }
958 }
959 }
960
Jakob Stoklund Olesenc6fd3de2012-07-25 16:49:11 +0000961 // Verify two-address constraints after leaving SSA form.
962 unsigned DefIdx;
963 if (!MRI->isSSA() && MO->isUse() &&
964 MI->isRegTiedToDefOperand(MONum, &DefIdx) &&
965 Reg != MI->getOperand(DefIdx).getReg())
966 report("Two-address instruction operands must be identical", MO, MONum);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000967
968 // Check register classes.
Evan Cheng6cc775f2011-06-28 19:10:37 +0000969 if (MONum < MCID.getNumOperands() && !MO->isImplicit()) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000970 unsigned SubIdx = MO->getSubReg();
971
972 if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000973 if (SubIdx) {
Jakob Stoklund Oleseneb38bd8c2011-10-05 22:12:57 +0000974 report("Illegal subregister index for physical register", MO, MONum);
975 return;
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000976 }
Jakob Stoklund Olesen3c52f022012-05-07 22:10:26 +0000977 if (const TargetRegisterClass *DRC =
978 TII->getRegClass(MCID, MONum, TRI, *MF)) {
Jakob Stoklund Oleseneb38bd8c2011-10-05 22:12:57 +0000979 if (!DRC->contains(Reg)) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000980 report("Illegal physical register for instruction", MO, MONum);
Owen Anderson21b17882015-02-04 00:02:59 +0000981 errs() << TRI->getName(Reg) << " is not a "
Craig Toppercf0444b2014-11-17 05:50:14 +0000982 << TRI->getRegClassName(DRC) << " register.\n";
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000983 }
984 }
985 } else {
986 // Virtual register.
Quentin Colombetc1c94bc2016-04-08 16:35:22 +0000987 const TargetRegisterClass *RC = MRI->getRegClassOrNull(Reg);
988 if (!RC) {
989 // This is a generic virtual register.
990 // It must have a size and it must not have a SubIdx.
991 unsigned Size = MRI->getSize(Reg);
992 if (!Size) {
993 report("Generic virtual register must have a size", MO, MONum);
994 return;
995 }
996 // Make sure the register fits into its register bank if any.
997 const RegisterBank *RegBank = MRI->getRegBankOrNull(Reg);
998 if (RegBank && RegBank->getSize() < Size) {
999 report("Register bank is too small for virtual register", MO,
1000 MONum);
1001 errs() << "Register bank " << RegBank->getName() << " too small("
1002 << RegBank->getSize() << ") to fit " << Size << "-bits\n";
1003 return;
1004 }
1005 if (SubIdx) {
1006 report("Generic virtual register does not subregister index", MO, MONum);
1007 return;
1008 }
1009 break;
1010 }
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001011 if (SubIdx) {
Jakob Stoklund Oleseneb38bd8c2011-10-05 22:12:57 +00001012 const TargetRegisterClass *SRC =
1013 TRI->getSubClassWithSubReg(RC, SubIdx);
Jakob Stoklund Olesen48431782010-05-18 17:31:12 +00001014 if (!SRC) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001015 report("Invalid subregister index for virtual register", MO, MONum);
Owen Anderson21b17882015-02-04 00:02:59 +00001016 errs() << "Register class " << TRI->getRegClassName(RC)
Jakob Stoklund Olesen48431782010-05-18 17:31:12 +00001017 << " does not support subreg index " << SubIdx << "\n";
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001018 return;
1019 }
Jakob Stoklund Oleseneb38bd8c2011-10-05 22:12:57 +00001020 if (RC != SRC) {
1021 report("Invalid register class for subregister index", MO, MONum);
Owen Anderson21b17882015-02-04 00:02:59 +00001022 errs() << "Register class " << TRI->getRegClassName(RC)
Jakob Stoklund Oleseneb38bd8c2011-10-05 22:12:57 +00001023 << " does not fully support subreg index " << SubIdx << "\n";
1024 return;
1025 }
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001026 }
Jakob Stoklund Olesen3c52f022012-05-07 22:10:26 +00001027 if (const TargetRegisterClass *DRC =
1028 TII->getRegClass(MCID, MONum, TRI, *MF)) {
Jakob Stoklund Oleseneb38bd8c2011-10-05 22:12:57 +00001029 if (SubIdx) {
1030 const TargetRegisterClass *SuperRC =
Eric Christopher433c4322015-03-10 23:46:01 +00001031 TRI->getLargestLegalSuperClass(RC, *MF);
Jakob Stoklund Oleseneb38bd8c2011-10-05 22:12:57 +00001032 if (!SuperRC) {
1033 report("No largest legal super class exists.", MO, MONum);
1034 return;
1035 }
1036 DRC = TRI->getMatchingSuperRegClass(SuperRC, DRC, SubIdx);
1037 if (!DRC) {
1038 report("No matching super-reg register class.", MO, MONum);
1039 return;
1040 }
1041 }
Jakob Stoklund Olesenaff10602011-06-02 05:43:46 +00001042 if (!RC->hasSuperClassEq(DRC)) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001043 report("Illegal virtual register for instruction", MO, MONum);
Owen Anderson21b17882015-02-04 00:02:59 +00001044 errs() << "Expected a " << TRI->getRegClassName(DRC)
Craig Toppercf0444b2014-11-17 05:50:14 +00001045 << " register, but got a " << TRI->getRegClassName(RC)
1046 << " register\n";
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001047 }
1048 }
1049 }
1050 }
1051 break;
1052 }
Jakob Stoklund Olesenf6eb7d82009-09-21 07:19:08 +00001053
Jakob Stoklund Olesen16c4a972012-02-28 01:42:41 +00001054 case MachineOperand::MO_RegisterMask:
1055 regMasks.push_back(MO->getRegMask());
1056 break;
1057
Jakob Stoklund Olesenf6eb7d82009-09-21 07:19:08 +00001058 case MachineOperand::MO_MachineBasicBlock:
Chris Lattnerb06015a2010-02-09 19:54:29 +00001059 if (MI->isPHI() && !MO->getMBB()->isSuccessor(MI->getParent()))
1060 report("PHI operand is not in the CFG", MO, MONum);
Jakob Stoklund Olesenf6eb7d82009-09-21 07:19:08 +00001061 break;
1062
Jakob Stoklund Olesen31fffb62010-11-01 19:49:52 +00001063 case MachineOperand::MO_FrameIndex:
1064 if (LiveStks && LiveStks->hasInterval(MO->getIndex()) &&
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001065 LiveInts && !LiveInts->isNotInMIMap(*MI)) {
Jonas Paulsson72640f12015-10-29 08:28:35 +00001066 int FI = MO->getIndex();
1067 LiveInterval &LI = LiveStks->getInterval(FI);
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001068 SlotIndex Idx = LiveInts->getInstructionIndex(*MI);
Jonas Paulsson17ad0452015-10-21 07:39:47 +00001069
Jonas Paulsson17ad0452015-10-21 07:39:47 +00001070 bool stores = MI->mayStore();
Jonas Paulsson72640f12015-10-29 08:28:35 +00001071 bool loads = MI->mayLoad();
1072 // For a memory-to-memory move, we need to check if the frame
1073 // index is used for storing or loading, by inspecting the
1074 // memory operands.
1075 if (stores && loads) {
1076 for (auto *MMO : MI->memoperands()) {
1077 const PseudoSourceValue *PSV = MMO->getPseudoValue();
1078 if (PSV == nullptr) continue;
1079 const FixedStackPseudoSourceValue *Value =
1080 dyn_cast<FixedStackPseudoSourceValue>(PSV);
1081 if (Value == nullptr) continue;
1082 if (Value->getFrameIndex() != FI) continue;
1083
1084 if (MMO->isStore())
1085 loads = false;
1086 else
1087 stores = false;
1088 break;
1089 }
1090 if (loads == stores)
1091 report("Missing fixed stack memoperand.", MI);
1092 }
1093 if (loads && !LI.liveAt(Idx.getRegSlot(true))) {
Jakob Stoklund Olesen31fffb62010-11-01 19:49:52 +00001094 report("Instruction loads from dead spill slot", MO, MONum);
Owen Anderson21b17882015-02-04 00:02:59 +00001095 errs() << "Live stack: " << LI << '\n';
Jakob Stoklund Olesen31fffb62010-11-01 19:49:52 +00001096 }
Jonas Paulsson17ad0452015-10-21 07:39:47 +00001097 if (stores && !LI.liveAt(Idx.getRegSlot())) {
Jakob Stoklund Olesen31fffb62010-11-01 19:49:52 +00001098 report("Instruction stores to dead spill slot", MO, MONum);
Owen Anderson21b17882015-02-04 00:02:59 +00001099 errs() << "Live stack: " << LI << '\n';
Jakob Stoklund Olesen31fffb62010-11-01 19:49:52 +00001100 }
1101 }
1102 break;
1103
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001104 default:
1105 break;
1106 }
1107}
1108
Matthias Braun1377fd62016-02-02 20:04:51 +00001109void MachineVerifier::checkLivenessAtUse(const MachineOperand *MO,
1110 unsigned MONum, SlotIndex UseIdx, const LiveRange &LR, unsigned VRegOrUnit,
1111 LaneBitmask LaneMask) {
1112 LiveQueryResult LRQ = LR.Query(UseIdx);
1113 // Check if we have a segment at the use, note however that we only need one
1114 // live subregister range, the others may be dead.
1115 if (!LRQ.valueIn() && LaneMask == 0) {
1116 report("No live segment at use", MO, MONum);
1117 report_context_liverange(LR);
1118 report_context_vreg_regunit(VRegOrUnit);
1119 report_context(UseIdx);
1120 }
1121 if (MO->isKill() && !LRQ.isKill()) {
1122 report("Live range continues after kill flag", MO, MONum);
1123 report_context_liverange(LR);
1124 report_context_vreg_regunit(VRegOrUnit);
1125 if (LaneMask != 0)
1126 report_context_lanemask(LaneMask);
1127 report_context(UseIdx);
1128 }
1129}
1130
1131void MachineVerifier::checkLivenessAtDef(const MachineOperand *MO,
1132 unsigned MONum, SlotIndex DefIdx, const LiveRange &LR, unsigned VRegOrUnit,
1133 LaneBitmask LaneMask) {
1134 if (const VNInfo *VNI = LR.getVNInfoAt(DefIdx)) {
1135 assert(VNI && "NULL valno is not allowed");
1136 if (VNI->def != DefIdx) {
1137 report("Inconsistent valno->def", MO, MONum);
1138 report_context_liverange(LR);
1139 report_context_vreg_regunit(VRegOrUnit);
1140 if (LaneMask != 0)
1141 report_context_lanemask(LaneMask);
1142 report_context(*VNI);
1143 report_context(DefIdx);
1144 }
1145 } else {
1146 report("No live segment at def", MO, MONum);
1147 report_context_liverange(LR);
1148 report_context_vreg_regunit(VRegOrUnit);
1149 if (LaneMask != 0)
1150 report_context_lanemask(LaneMask);
1151 report_context(DefIdx);
1152 }
1153 // Check that, if the dead def flag is present, LiveInts agree.
1154 if (MO->isDead()) {
1155 LiveQueryResult LRQ = LR.Query(DefIdx);
1156 if (!LRQ.isDeadDef()) {
1157 // In case of physregs we can have a non-dead definition on another
1158 // operand.
1159 bool otherDef = false;
1160 if (!TargetRegisterInfo::isVirtualRegister(VRegOrUnit)) {
1161 const MachineInstr &MI = *MO->getParent();
1162 for (const MachineOperand &MO : MI.operands()) {
1163 if (!MO.isReg() || !MO.isDef() || MO.isDead())
1164 continue;
1165 unsigned Reg = MO.getReg();
1166 for (MCRegUnitIterator Units(Reg, TRI); Units.isValid(); ++Units) {
1167 if (*Units == VRegOrUnit) {
1168 otherDef = true;
1169 break;
1170 }
1171 }
1172 }
1173 }
1174
1175 if (!otherDef) {
1176 report("Live range continues after dead def flag", MO, MONum);
1177 report_context_liverange(LR);
1178 report_context_vreg_regunit(VRegOrUnit);
1179 if (LaneMask != 0)
1180 report_context_lanemask(LaneMask);
1181 }
1182 }
1183 }
1184}
1185
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001186void MachineVerifier::checkLiveness(const MachineOperand *MO, unsigned MONum) {
1187 const MachineInstr *MI = MO->getParent();
1188 const unsigned Reg = MO->getReg();
1189
1190 // Both use and def operands can read a register.
1191 if (MO->readsReg()) {
1192 regsLiveInButUnused.erase(Reg);
1193
Jakob Stoklund Olesenc6fd3de2012-07-25 16:49:11 +00001194 if (MO->isKill())
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001195 addRegWithSubRegs(regsKilled, Reg);
1196
1197 // Check that LiveVars knows this kill.
1198 if (LiveVars && TargetRegisterInfo::isVirtualRegister(Reg) &&
1199 MO->isKill()) {
1200 LiveVariables::VarInfo &VI = LiveVars->getVarInfo(Reg);
1201 if (std::find(VI.Kills.begin(), VI.Kills.end(), MI) == VI.Kills.end())
1202 report("Kill missing from LiveVariables", MO, MONum);
1203 }
1204
1205 // Check LiveInts liveness and kill.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001206 if (LiveInts && !LiveInts->isNotInMIMap(*MI)) {
1207 SlotIndex UseIdx = LiveInts->getInstructionIndex(*MI);
Jakob Stoklund Olesena766b472012-08-01 23:52:40 +00001208 // Check the cached regunit intervals.
1209 if (TargetRegisterInfo::isPhysicalRegister(Reg) && !isReserved(Reg)) {
1210 for (MCRegUnitIterator Units(Reg, TRI); Units.isValid(); ++Units) {
Matthias Braun1377fd62016-02-02 20:04:51 +00001211 if (const LiveRange *LR = LiveInts->getCachedRegUnit(*Units))
1212 checkLivenessAtUse(MO, MONum, UseIdx, *LR, *Units);
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001213 }
Jakob Stoklund Olesena766b472012-08-01 23:52:40 +00001214 }
1215
1216 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
1217 if (LiveInts->hasInterval(Reg)) {
1218 // This is a virtual register interval.
1219 const LiveInterval &LI = LiveInts->getInterval(Reg);
Matthias Braun1377fd62016-02-02 20:04:51 +00001220 checkLivenessAtUse(MO, MONum, UseIdx, LI, Reg);
1221
1222 if (LI.hasSubRanges() && !MO->isDef()) {
1223 unsigned SubRegIdx = MO->getSubReg();
1224 LaneBitmask MOMask = SubRegIdx != 0
1225 ? TRI->getSubRegIndexLaneMask(SubRegIdx)
1226 : MRI->getMaxLaneMaskForVReg(Reg);
1227 LaneBitmask LiveInMask = 0;
1228 for (const LiveInterval::SubRange &SR : LI.subranges()) {
1229 if ((MOMask & SR.LaneMask) == 0)
1230 continue;
1231 checkLivenessAtUse(MO, MONum, UseIdx, SR, Reg, SR.LaneMask);
1232 LiveQueryResult LRQ = SR.Query(UseIdx);
1233 if (LRQ.valueIn())
1234 LiveInMask |= SR.LaneMask;
1235 }
1236 // At least parts of the register has to be live at the use.
1237 if ((LiveInMask & MOMask) == 0) {
1238 report("No live subrange at use", MO, MONum);
1239 report_context(LI);
1240 report_context(UseIdx);
1241 }
Jakob Stoklund Olesena766b472012-08-01 23:52:40 +00001242 }
1243 } else {
1244 report("Virtual register has no live interval", MO, MONum);
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001245 }
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001246 }
1247 }
1248
1249 // Use of a dead register.
1250 if (!regsLive.count(Reg)) {
1251 if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
1252 // Reserved registers may be used even when 'dead'.
Matthias Braun96d77322014-12-10 01:13:13 +00001253 bool Bad = !isReserved(Reg);
1254 // We are fine if just any subregister has a defined value.
1255 if (Bad) {
1256 for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid();
1257 ++SubRegs) {
1258 if (regsLive.count(*SubRegs)) {
1259 Bad = false;
1260 break;
1261 }
1262 }
1263 }
Matthias Braun96a31952015-01-14 22:25:14 +00001264 // If there is an additional implicit-use of a super register we stop
1265 // here. By definition we are fine if the super register is not
1266 // (completely) dead, if the complete super register is dead we will
1267 // get a report for its operand.
1268 if (Bad) {
1269 for (const MachineOperand &MOP : MI->uses()) {
1270 if (!MOP.isReg())
1271 continue;
1272 if (!MOP.isImplicit())
1273 continue;
1274 for (MCSubRegIterator SubRegs(MOP.getReg(), TRI); SubRegs.isValid();
1275 ++SubRegs) {
1276 if (*SubRegs == Reg) {
1277 Bad = false;
1278 break;
1279 }
1280 }
1281 }
1282 }
Matthias Braun96d77322014-12-10 01:13:13 +00001283 if (Bad)
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001284 report("Using an undefined physical register", MO, MONum);
Pete Cooperdcf94db2012-07-19 23:40:38 +00001285 } else if (MRI->def_empty(Reg)) {
1286 report("Reading virtual register without a def", MO, MONum);
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001287 } else {
1288 BBInfo &MInfo = MBBInfoMap[MI->getParent()];
1289 // We don't know which virtual registers are live in, so only complain
1290 // if vreg was killed in this MBB. Otherwise keep track of vregs that
1291 // must be live in. PHI instructions are handled separately.
1292 if (MInfo.regsKilled.count(Reg))
1293 report("Using a killed virtual register", MO, MONum);
1294 else if (!MI->isPHI())
1295 MInfo.vregsLiveIn.insert(std::make_pair(Reg, MI));
1296 }
1297 }
1298 }
1299
1300 if (MO->isDef()) {
1301 // Register defined.
1302 // TODO: verify that earlyclobber ops are not used.
1303 if (MO->isDead())
1304 addRegWithSubRegs(regsDead, Reg);
1305 else
1306 addRegWithSubRegs(regsDefined, Reg);
1307
1308 // Verify SSA form.
1309 if (MRI->isSSA() && TargetRegisterInfo::isVirtualRegister(Reg) &&
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001310 std::next(MRI->def_begin(Reg)) != MRI->def_end())
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001311 report("Multiple virtual register defs in SSA form", MO, MONum);
1312
Matthias Braun13ddb7c2013-10-10 21:28:43 +00001313 // Check LiveInts for a live segment, but only for virtual registers.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001314 if (LiveInts && !LiveInts->isNotInMIMap(*MI)) {
1315 SlotIndex DefIdx = LiveInts->getInstructionIndex(*MI);
Jakob Stoklund Olesenb033ded2012-06-22 22:23:58 +00001316 DefIdx = DefIdx.getRegSlot(MO->isEarlyClobber());
Matthias Braun1377fd62016-02-02 20:04:51 +00001317
1318 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
1319 if (LiveInts->hasInterval(Reg)) {
1320 const LiveInterval &LI = LiveInts->getInterval(Reg);
1321 checkLivenessAtDef(MO, MONum, DefIdx, LI, Reg);
1322
1323 if (LI.hasSubRanges()) {
1324 unsigned SubRegIdx = MO->getSubReg();
1325 LaneBitmask MOMask = SubRegIdx != 0
1326 ? TRI->getSubRegIndexLaneMask(SubRegIdx)
1327 : MRI->getMaxLaneMaskForVReg(Reg);
1328 for (const LiveInterval::SubRange &SR : LI.subranges()) {
1329 if ((SR.LaneMask & MOMask) == 0)
1330 continue;
1331 checkLivenessAtDef(MO, MONum, DefIdx, SR, Reg, SR.LaneMask);
1332 }
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001333 }
1334 } else {
Matthias Braun1377fd62016-02-02 20:04:51 +00001335 report("Virtual register has no Live interval", MO, MONum);
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001336 }
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001337 }
1338 }
1339 }
1340}
1341
Jakob Stoklund Olesen63c733f2009-10-04 18:18:39 +00001342void MachineVerifier::visitMachineInstrAfter(const MachineInstr *MI) {
Jakob Stoklund Olesen00e7dff2012-06-06 22:34:30 +00001343}
1344
1345// This function gets called after visiting all instructions in a bundle. The
1346// argument points to the bundle header.
1347// Normal stand-alone instructions are also considered 'bundles', and this
1348// function is called for all of them.
1349void MachineVerifier::visitMachineBundleAfter(const MachineInstr *MI) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001350 BBInfo &MInfo = MBBInfoMap[MI->getParent()];
1351 set_union(MInfo.regsKilled, regsKilled);
Jakob Stoklund Olesen45833552010-08-05 18:59:59 +00001352 set_subtract(regsLive, regsKilled); regsKilled.clear();
Jakob Stoklund Olesen16c4a972012-02-28 01:42:41 +00001353 // Kill any masked registers.
1354 while (!regMasks.empty()) {
1355 const uint32_t *Mask = regMasks.pop_back_val();
1356 for (RegSet::iterator I = regsLive.begin(), E = regsLive.end(); I != E; ++I)
1357 if (TargetRegisterInfo::isPhysicalRegister(*I) &&
1358 MachineOperand::clobbersPhysReg(Mask, *I))
1359 regsDead.push_back(*I);
1360 }
Jakob Stoklund Olesen45833552010-08-05 18:59:59 +00001361 set_subtract(regsLive, regsDead); regsDead.clear();
1362 set_union(regsLive, regsDefined); regsDefined.clear();
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001363}
1364
1365void
Jakob Stoklund Olesen63c733f2009-10-04 18:18:39 +00001366MachineVerifier::visitMachineBasicBlockAfter(const MachineBasicBlock *MBB) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001367 MBBInfoMap[MBB].regsLiveOut = regsLive;
1368 regsLive.clear();
Jakob Stoklund Olesen58b6f4d2011-01-12 21:27:48 +00001369
1370 if (Indexes) {
1371 SlotIndex stop = Indexes->getMBBEndIdx(MBB);
1372 if (!(stop > lastIndex)) {
1373 report("Block ends before last instruction index", MBB);
Owen Anderson21b17882015-02-04 00:02:59 +00001374 errs() << "Block ends at " << stop
Jakob Stoklund Olesen58b6f4d2011-01-12 21:27:48 +00001375 << " last instruction was at " << lastIndex << '\n';
1376 }
1377 lastIndex = stop;
1378 }
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001379}
1380
1381// Calculate the largest possible vregsPassed sets. These are the registers that
1382// can pass through an MBB live, but may not be live every time. It is assumed
1383// that all vregsPassed sets are empty before the call.
Jakob Stoklund Olesen4cb77022010-01-05 20:59:36 +00001384void MachineVerifier::calcRegsPassed() {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001385 // First push live-out regs to successors' vregsPassed. Remember the MBBs that
1386 // have any vregsPassed.
Jakob Stoklund Olesen6ea6a1442012-03-10 00:36:04 +00001387 SmallPtrSet<const MachineBasicBlock*, 8> todo;
Alexey Samsonov41b977d2014-04-30 18:29:51 +00001388 for (const auto &MBB : *MF) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001389 BBInfo &MInfo = MBBInfoMap[&MBB];
1390 if (!MInfo.reachable)
1391 continue;
1392 for (MachineBasicBlock::const_succ_iterator SuI = MBB.succ_begin(),
1393 SuE = MBB.succ_end(); SuI != SuE; ++SuI) {
1394 BBInfo &SInfo = MBBInfoMap[*SuI];
1395 if (SInfo.addPassed(MInfo.regsLiveOut))
1396 todo.insert(*SuI);
1397 }
1398 }
1399
1400 // Iteratively push vregsPassed to successors. This will converge to the same
1401 // final state regardless of DenseSet iteration order.
1402 while (!todo.empty()) {
1403 const MachineBasicBlock *MBB = *todo.begin();
1404 todo.erase(MBB);
1405 BBInfo &MInfo = MBBInfoMap[MBB];
1406 for (MachineBasicBlock::const_succ_iterator SuI = MBB->succ_begin(),
1407 SuE = MBB->succ_end(); SuI != SuE; ++SuI) {
1408 if (*SuI == MBB)
1409 continue;
1410 BBInfo &SInfo = MBBInfoMap[*SuI];
1411 if (SInfo.addPassed(MInfo.vregsPassed))
1412 todo.insert(*SuI);
1413 }
1414 }
1415}
1416
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001417// Calculate the set of virtual registers that must be passed through each basic
1418// block in order to satisfy the requirements of successor blocks. This is very
Jakob Stoklund Olesen4cb77022010-01-05 20:59:36 +00001419// similar to calcRegsPassed, only backwards.
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001420void MachineVerifier::calcRegsRequired() {
1421 // First push live-in regs to predecessors' vregsRequired.
Jakob Stoklund Olesen6ea6a1442012-03-10 00:36:04 +00001422 SmallPtrSet<const MachineBasicBlock*, 8> todo;
Alexey Samsonov41b977d2014-04-30 18:29:51 +00001423 for (const auto &MBB : *MF) {
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001424 BBInfo &MInfo = MBBInfoMap[&MBB];
1425 for (MachineBasicBlock::const_pred_iterator PrI = MBB.pred_begin(),
1426 PrE = MBB.pred_end(); PrI != PrE; ++PrI) {
1427 BBInfo &PInfo = MBBInfoMap[*PrI];
1428 if (PInfo.addRequired(MInfo.vregsLiveIn))
1429 todo.insert(*PrI);
1430 }
1431 }
1432
1433 // Iteratively push vregsRequired to predecessors. This will converge to the
1434 // same final state regardless of DenseSet iteration order.
1435 while (!todo.empty()) {
1436 const MachineBasicBlock *MBB = *todo.begin();
1437 todo.erase(MBB);
1438 BBInfo &MInfo = MBBInfoMap[MBB];
1439 for (MachineBasicBlock::const_pred_iterator PrI = MBB->pred_begin(),
1440 PrE = MBB->pred_end(); PrI != PrE; ++PrI) {
1441 if (*PrI == MBB)
1442 continue;
1443 BBInfo &SInfo = MBBInfoMap[*PrI];
1444 if (SInfo.addRequired(MInfo.vregsRequired))
1445 todo.insert(*PrI);
1446 }
1447 }
1448}
1449
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001450// Check PHI instructions at the beginning of MBB. It is assumed that
Jakob Stoklund Olesen4cb77022010-01-05 20:59:36 +00001451// calcRegsPassed has been run so BBInfo::isLiveOut is valid.
Jakob Stoklund Olesen63c733f2009-10-04 18:18:39 +00001452void MachineVerifier::checkPHIOps(const MachineBasicBlock *MBB) {
Jakob Stoklund Olesen6ea6a1442012-03-10 00:36:04 +00001453 SmallPtrSet<const MachineBasicBlock*, 8> seen;
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001454 for (const auto &BBI : *MBB) {
1455 if (!BBI.isPHI())
1456 break;
Jakob Stoklund Olesen6ea6a1442012-03-10 00:36:04 +00001457 seen.clear();
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001458
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001459 for (unsigned i = 1, e = BBI.getNumOperands(); i != e; i += 2) {
1460 unsigned Reg = BBI.getOperand(i).getReg();
1461 const MachineBasicBlock *Pre = BBI.getOperand(i + 1).getMBB();
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001462 if (!Pre->isSuccessor(MBB))
1463 continue;
1464 seen.insert(Pre);
1465 BBInfo &PrInfo = MBBInfoMap[Pre];
1466 if (PrInfo.reachable && !PrInfo.isLiveOut(Reg))
1467 report("PHI operand is not live-out from predecessor",
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001468 &BBI.getOperand(i), i);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001469 }
1470
1471 // Did we see all predecessors?
1472 for (MachineBasicBlock::const_pred_iterator PrI = MBB->pred_begin(),
1473 PrE = MBB->pred_end(); PrI != PrE; ++PrI) {
1474 if (!seen.count(*PrI)) {
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001475 report("Missing PHI operand", &BBI);
Owen Anderson21b17882015-02-04 00:02:59 +00001476 errs() << "BB#" << (*PrI)->getNumber()
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001477 << " is a predecessor according to the CFG.\n";
1478 }
1479 }
1480 }
1481}
1482
Jakob Stoklund Olesen63c733f2009-10-04 18:18:39 +00001483void MachineVerifier::visitMachineFunctionAfter() {
Jakob Stoklund Olesen4cb77022010-01-05 20:59:36 +00001484 calcRegsPassed();
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001485
Alexey Samsonov41b977d2014-04-30 18:29:51 +00001486 for (const auto &MBB : *MF) {
1487 BBInfo &MInfo = MBBInfoMap[&MBB];
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001488
1489 // Skip unreachable MBBs.
1490 if (!MInfo.reachable)
1491 continue;
1492
Alexey Samsonov41b977d2014-04-30 18:29:51 +00001493 checkPHIOps(&MBB);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001494 }
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001495
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001496 // Now check liveness info if available
Jakob Stoklund Olesen9f3e5742012-03-10 00:36:06 +00001497 calcRegsRequired();
1498
Jakob Stoklund Olesenda9ea1d2012-06-29 21:00:00 +00001499 // Check for killed virtual registers that should be live out.
Alexey Samsonov41b977d2014-04-30 18:29:51 +00001500 for (const auto &MBB : *MF) {
1501 BBInfo &MInfo = MBBInfoMap[&MBB];
Jakob Stoklund Olesenda9ea1d2012-06-29 21:00:00 +00001502 for (RegSet::iterator
1503 I = MInfo.vregsRequired.begin(), E = MInfo.vregsRequired.end(); I != E;
1504 ++I)
1505 if (MInfo.regsKilled.count(*I)) {
Alexey Samsonov41b977d2014-04-30 18:29:51 +00001506 report("Virtual register killed in block, but needed live out.", &MBB);
Owen Anderson21b17882015-02-04 00:02:59 +00001507 errs() << "Virtual register " << PrintReg(*I)
Jakob Stoklund Olesenda9ea1d2012-06-29 21:00:00 +00001508 << " is used after the block.\n";
1509 }
1510 }
1511
Jakob Stoklund Olesena57fc122012-06-25 18:18:27 +00001512 if (!MF->empty()) {
Jakob Stoklund Olesen9f3e5742012-03-10 00:36:06 +00001513 BBInfo &MInfo = MBBInfoMap[&MF->front()];
1514 for (RegSet::iterator
1515 I = MInfo.vregsRequired.begin(), E = MInfo.vregsRequired.end(); I != E;
Jakob Stoklund Olesen99014ff2012-03-10 00:44:11 +00001516 ++I)
1517 report("Virtual register def doesn't dominate all uses.",
1518 MRI->getVRegDef(*I));
Jakob Stoklund Olesen9f3e5742012-03-10 00:36:06 +00001519 }
1520
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001521 if (LiveVars)
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001522 verifyLiveVariables();
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001523 if (LiveInts)
1524 verifyLiveIntervals();
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001525}
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001526
1527void MachineVerifier::verifyLiveVariables() {
1528 assert(LiveVars && "Don't call verifyLiveVariables without LiveVars");
Jakob Stoklund Olesen6ff70ad32011-01-08 23:11:02 +00001529 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
1530 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001531 LiveVariables::VarInfo &VI = LiveVars->getVarInfo(Reg);
Alexey Samsonov41b977d2014-04-30 18:29:51 +00001532 for (const auto &MBB : *MF) {
1533 BBInfo &MInfo = MBBInfoMap[&MBB];
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001534
1535 // Our vregsRequired should be identical to LiveVariables' AliveBlocks
1536 if (MInfo.vregsRequired.count(Reg)) {
Alexey Samsonov41b977d2014-04-30 18:29:51 +00001537 if (!VI.AliveBlocks.test(MBB.getNumber())) {
1538 report("LiveVariables: Block missing from AliveBlocks", &MBB);
Owen Anderson21b17882015-02-04 00:02:59 +00001539 errs() << "Virtual register " << PrintReg(Reg)
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001540 << " must be live through the block.\n";
1541 }
1542 } else {
Alexey Samsonov41b977d2014-04-30 18:29:51 +00001543 if (VI.AliveBlocks.test(MBB.getNumber())) {
1544 report("LiveVariables: Block should not be in AliveBlocks", &MBB);
Owen Anderson21b17882015-02-04 00:02:59 +00001545 errs() << "Virtual register " << PrintReg(Reg)
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001546 << " is not needed live through the block.\n";
1547 }
1548 }
1549 }
1550 }
1551}
1552
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001553void MachineVerifier::verifyLiveIntervals() {
1554 assert(LiveInts && "Don't call verifyLiveIntervals without LiveInts");
Jakob Stoklund Olesen781e0b92012-06-20 23:23:59 +00001555 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
1556 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
Jakob Stoklund Olesen1a065e42010-10-06 23:54:35 +00001557
1558 // Spilling and splitting may leave unused registers around. Skip them.
Jakob Stoklund Olesen781e0b92012-06-20 23:23:59 +00001559 if (MRI->reg_nodbg_empty(Reg))
Jakob Stoklund Olesen1a065e42010-10-06 23:54:35 +00001560 continue;
1561
Jakob Stoklund Olesen781e0b92012-06-20 23:23:59 +00001562 if (!LiveInts->hasInterval(Reg)) {
1563 report("Missing live interval for virtual register", MF);
Owen Anderson21b17882015-02-04 00:02:59 +00001564 errs() << PrintReg(Reg, TRI) << " still has defs or uses\n";
Jakob Stoklund Olesendc5e7062010-10-28 20:44:22 +00001565 continue;
Jakob Stoklund Olesen781e0b92012-06-20 23:23:59 +00001566 }
Jakob Stoklund Olesendc5e7062010-10-28 20:44:22 +00001567
Jakob Stoklund Olesen781e0b92012-06-20 23:23:59 +00001568 const LiveInterval &LI = LiveInts->getInterval(Reg);
1569 assert(Reg == LI.reg && "Invalid reg to interval mapping");
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001570 verifyLiveInterval(LI);
1571 }
Jakob Stoklund Olesen637c4672012-08-02 16:36:50 +00001572
1573 // Verify all the cached regunit intervals.
1574 for (unsigned i = 0, e = TRI->getNumRegUnits(); i != e; ++i)
Matthias Braun34e1be92013-10-10 21:29:02 +00001575 if (const LiveRange *LR = LiveInts->getCachedRegUnit(i))
1576 verifyLiveRange(*LR, i);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001577}
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001578
Matthias Braun364e6e92013-10-10 21:28:54 +00001579void MachineVerifier::verifyLiveRangeValue(const LiveRange &LR,
Matthias Braun3f1d8fd2014-12-10 01:12:10 +00001580 const VNInfo *VNI, unsigned Reg,
Matthias Braune6a24852015-09-25 21:51:14 +00001581 LaneBitmask LaneMask) {
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001582 if (VNI->isUnused())
1583 return;
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001584
Matthias Braun364e6e92013-10-10 21:28:54 +00001585 const VNInfo *DefVNI = LR.getVNInfoAt(VNI->def);
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001586
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001587 if (!DefVNI) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001588 report("Value not live at VNInfo def and not marked unused", MF);
1589 report_context(LR, Reg, LaneMask);
1590 report_context(*VNI);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001591 return;
1592 }
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001593
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001594 if (DefVNI != VNI) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001595 report("Live segment at def has different VNInfo", MF);
1596 report_context(LR, Reg, LaneMask);
1597 report_context(*VNI);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001598 return;
1599 }
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001600
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001601 const MachineBasicBlock *MBB = LiveInts->getMBBFromIndex(VNI->def);
1602 if (!MBB) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001603 report("Invalid VNInfo definition index", MF);
1604 report_context(LR, Reg, LaneMask);
1605 report_context(*VNI);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001606 return;
1607 }
Jakob Stoklund Olesen0fb303d2010-10-22 22:48:58 +00001608
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001609 if (VNI->isPHIDef()) {
1610 if (VNI->def != LiveInts->getMBBStartIdx(MBB)) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001611 report("PHIDef VNInfo is not defined at MBB start", MBB);
1612 report_context(LR, Reg, LaneMask);
1613 report_context(*VNI);
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001614 }
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001615 return;
1616 }
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001617
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001618 // Non-PHI def.
1619 const MachineInstr *MI = LiveInts->getInstructionFromIndex(VNI->def);
1620 if (!MI) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001621 report("No instruction at VNInfo def index", MBB);
1622 report_context(LR, Reg, LaneMask);
1623 report_context(*VNI);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001624 return;
1625 }
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001626
Matthias Braun364e6e92013-10-10 21:28:54 +00001627 if (Reg != 0) {
1628 bool hasDef = false;
1629 bool isEarlyClobber = false;
Duncan P. N. Exon Smithf9ab4162016-02-27 17:05:33 +00001630 for (ConstMIBundleOperands MOI(*MI); MOI.isValid(); ++MOI) {
Matthias Braun364e6e92013-10-10 21:28:54 +00001631 if (!MOI->isReg() || !MOI->isDef())
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001632 continue;
Matthias Braun364e6e92013-10-10 21:28:54 +00001633 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
1634 if (MOI->getReg() != Reg)
1635 continue;
1636 } else {
1637 if (!TargetRegisterInfo::isPhysicalRegister(MOI->getReg()) ||
1638 !TRI->hasRegUnit(MOI->getReg(), Reg))
1639 continue;
1640 }
Matthias Braun3f1d8fd2014-12-10 01:12:10 +00001641 if (LaneMask != 0 &&
1642 (TRI->getSubRegIndexLaneMask(MOI->getSubReg()) & LaneMask) == 0)
1643 continue;
Matthias Braun364e6e92013-10-10 21:28:54 +00001644 hasDef = true;
1645 if (MOI->isEarlyClobber())
1646 isEarlyClobber = true;
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001647 }
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001648
Matthias Braun364e6e92013-10-10 21:28:54 +00001649 if (!hasDef) {
1650 report("Defining instruction does not modify register", MI);
Matthias Braun7e624d52015-11-09 23:59:33 +00001651 report_context(LR, Reg, LaneMask);
1652 report_context(*VNI);
Matthias Braun364e6e92013-10-10 21:28:54 +00001653 }
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001654
Matthias Braun364e6e92013-10-10 21:28:54 +00001655 // Early clobber defs begin at USE slots, but other defs must begin at
1656 // DEF slots.
1657 if (isEarlyClobber) {
1658 if (!VNI->def.isEarlyClobber()) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001659 report("Early clobber def must be at an early-clobber slot", MBB);
1660 report_context(LR, Reg, LaneMask);
1661 report_context(*VNI);
Matthias Braun364e6e92013-10-10 21:28:54 +00001662 }
1663 } else if (!VNI->def.isRegister()) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001664 report("Non-PHI, non-early clobber def must be at a register slot", MBB);
1665 report_context(LR, Reg, LaneMask);
1666 report_context(*VNI);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001667 }
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001668 }
1669}
1670
Matthias Braun364e6e92013-10-10 21:28:54 +00001671void MachineVerifier::verifyLiveRangeSegment(const LiveRange &LR,
1672 const LiveRange::const_iterator I,
Matthias Braune6a24852015-09-25 21:51:14 +00001673 unsigned Reg, LaneBitmask LaneMask)
1674{
Matthias Braun364e6e92013-10-10 21:28:54 +00001675 const LiveRange::Segment &S = *I;
1676 const VNInfo *VNI = S.valno;
Matthias Braun13ddb7c2013-10-10 21:28:43 +00001677 assert(VNI && "Live segment has no valno");
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001678
Matthias Braun364e6e92013-10-10 21:28:54 +00001679 if (VNI->id >= LR.getNumValNums() || VNI != LR.getValNumInfo(VNI->id)) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001680 report("Foreign valno in live segment", MF);
1681 report_context(LR, Reg, LaneMask);
1682 report_context(S);
1683 report_context(*VNI);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001684 }
1685
1686 if (VNI->isUnused()) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001687 report("Live segment valno is marked unused", MF);
1688 report_context(LR, Reg, LaneMask);
1689 report_context(S);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001690 }
1691
Matthias Braun364e6e92013-10-10 21:28:54 +00001692 const MachineBasicBlock *MBB = LiveInts->getMBBFromIndex(S.start);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001693 if (!MBB) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001694 report("Bad start of live segment, no basic block", MF);
1695 report_context(LR, Reg, LaneMask);
1696 report_context(S);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001697 return;
1698 }
1699 SlotIndex MBBStartIdx = LiveInts->getMBBStartIdx(MBB);
Matthias Braun364e6e92013-10-10 21:28:54 +00001700 if (S.start != MBBStartIdx && S.start != VNI->def) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001701 report("Live segment must begin at MBB entry or valno def", MBB);
1702 report_context(LR, Reg, LaneMask);
1703 report_context(S);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001704 }
1705
1706 const MachineBasicBlock *EndMBB =
Matthias Braun364e6e92013-10-10 21:28:54 +00001707 LiveInts->getMBBFromIndex(S.end.getPrevSlot());
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001708 if (!EndMBB) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001709 report("Bad end of live segment, no basic block", MF);
1710 report_context(LR, Reg, LaneMask);
1711 report_context(S);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001712 return;
1713 }
1714
1715 // No more checks for live-out segments.
Matthias Braun364e6e92013-10-10 21:28:54 +00001716 if (S.end == LiveInts->getMBBEndIdx(EndMBB))
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001717 return;
1718
Jakob Stoklund Olesen637c4672012-08-02 16:36:50 +00001719 // RegUnit intervals are allowed dead phis.
Matthias Braun364e6e92013-10-10 21:28:54 +00001720 if (!TargetRegisterInfo::isVirtualRegister(Reg) && VNI->isPHIDef() &&
1721 S.start == VNI->def && S.end == VNI->def.getDeadSlot())
Jakob Stoklund Olesen637c4672012-08-02 16:36:50 +00001722 return;
1723
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001724 // The live segment is ending inside EndMBB
1725 const MachineInstr *MI =
Matthias Braun364e6e92013-10-10 21:28:54 +00001726 LiveInts->getInstructionFromIndex(S.end.getPrevSlot());
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001727 if (!MI) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001728 report("Live segment doesn't end at a valid instruction", EndMBB);
1729 report_context(LR, Reg, LaneMask);
1730 report_context(S);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001731 return;
1732 }
1733
1734 // The block slot must refer to a basic block boundary.
Matthias Braun364e6e92013-10-10 21:28:54 +00001735 if (S.end.isBlock()) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001736 report("Live segment ends at B slot of an instruction", EndMBB);
1737 report_context(LR, Reg, LaneMask);
1738 report_context(S);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001739 }
1740
Matthias Braun364e6e92013-10-10 21:28:54 +00001741 if (S.end.isDead()) {
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001742 // Segment ends on the dead slot.
1743 // That means there must be a dead def.
Matthias Braun364e6e92013-10-10 21:28:54 +00001744 if (!SlotIndex::isSameInstr(S.start, S.end)) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001745 report("Live segment ending at dead slot spans instructions", EndMBB);
1746 report_context(LR, Reg, LaneMask);
1747 report_context(S);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001748 }
1749 }
1750
1751 // A live segment can only end at an early-clobber slot if it is being
1752 // redefined by an early-clobber def.
Matthias Braun364e6e92013-10-10 21:28:54 +00001753 if (S.end.isEarlyClobber()) {
1754 if (I+1 == LR.end() || (I+1)->start != S.end) {
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001755 report("Live segment ending at early clobber slot must be "
Matthias Braun7e624d52015-11-09 23:59:33 +00001756 "redefined by an EC def in the same instruction", EndMBB);
1757 report_context(LR, Reg, LaneMask);
1758 report_context(S);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001759 }
1760 }
1761
1762 // The following checks only apply to virtual registers. Physreg liveness
1763 // is too weird to check.
Matthias Braun364e6e92013-10-10 21:28:54 +00001764 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Matthias Braun13ddb7c2013-10-10 21:28:43 +00001765 // A live segment can end with either a redefinition, a kill flag on a
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001766 // use, or a dead flag on a def.
1767 bool hasRead = false;
Matthias Braun21554d92014-12-10 01:13:11 +00001768 bool hasSubRegDef = false;
Matthias Braun72a58c32016-03-29 19:07:43 +00001769 bool hasDeadDef = false;
Duncan P. N. Exon Smithf9ab4162016-02-27 17:05:33 +00001770 for (ConstMIBundleOperands MOI(*MI); MOI.isValid(); ++MOI) {
Matthias Braun364e6e92013-10-10 21:28:54 +00001771 if (!MOI->isReg() || MOI->getReg() != Reg)
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001772 continue;
Matthias Braun3f1d8fd2014-12-10 01:12:10 +00001773 if (LaneMask != 0 &&
1774 (LaneMask & TRI->getSubRegIndexLaneMask(MOI->getSubReg())) == 0)
1775 continue;
Matthias Braun72a58c32016-03-29 19:07:43 +00001776 if (MOI->isDef()) {
1777 if (MOI->getSubReg() != 0)
1778 hasSubRegDef = true;
1779 if (MOI->isDead())
1780 hasDeadDef = true;
1781 }
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001782 if (MOI->readsReg())
1783 hasRead = true;
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001784 }
Matthias Braun72a58c32016-03-29 19:07:43 +00001785 if (S.end.isDead()) {
1786 // Make sure that the corresponding machine operand for a "dead" live
1787 // range has the dead flag. We cannot perform this check for subregister
1788 // liveranges as partially dead values are allowed.
1789 if (LaneMask == 0 && !hasDeadDef) {
1790 report("Instruction ending live segment on dead slot has no dead flag",
1791 MI);
1792 report_context(LR, Reg, LaneMask);
1793 report_context(S);
1794 }
1795 } else {
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001796 if (!hasRead) {
Matthias Braun21554d92014-12-10 01:13:11 +00001797 // When tracking subregister liveness, the main range must start new
1798 // values on partial register writes, even if there is no read.
Matthias Brauna25e13a2015-03-19 00:21:58 +00001799 if (!MRI->shouldTrackSubRegLiveness(Reg) || LaneMask != 0 ||
1800 !hasSubRegDef) {
Matthias Braun21554d92014-12-10 01:13:11 +00001801 report("Instruction ending live segment doesn't read the register",
1802 MI);
Matthias Braun7e624d52015-11-09 23:59:33 +00001803 report_context(LR, Reg, LaneMask);
1804 report_context(S);
Matthias Braun21554d92014-12-10 01:13:11 +00001805 }
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001806 }
1807 }
1808 }
1809
1810 // Now check all the basic blocks in this live segment.
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +00001811 MachineFunction::const_iterator MFI = MBB->getIterator();
Matthias Braun13ddb7c2013-10-10 21:28:43 +00001812 // Is this live segment the beginning of a non-PHIDef VN?
Matthias Braun364e6e92013-10-10 21:28:54 +00001813 if (S.start == VNI->def && !VNI->isPHIDef()) {
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001814 // Not live-in to any blocks.
1815 if (MBB == EndMBB)
1816 return;
1817 // Skip this block.
1818 ++MFI;
1819 }
1820 for (;;) {
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +00001821 assert(LiveInts->isLiveInToMBB(LR, &*MFI));
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001822 // We don't know how to track physregs into a landing pad.
Matthias Braun364e6e92013-10-10 21:28:54 +00001823 if (!TargetRegisterInfo::isVirtualRegister(Reg) &&
Reid Kleckner0e288232015-08-27 23:27:47 +00001824 MFI->isEHPad()) {
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001825 if (&*MFI == EndMBB)
1826 break;
1827 ++MFI;
1828 continue;
1829 }
1830
1831 // Is VNI a PHI-def in the current block?
1832 bool IsPHI = VNI->isPHIDef() &&
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +00001833 VNI->def == LiveInts->getMBBStartIdx(&*MFI);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001834
1835 // Check that VNI is live-out of all predecessors.
1836 for (MachineBasicBlock::const_pred_iterator PI = MFI->pred_begin(),
1837 PE = MFI->pred_end(); PI != PE; ++PI) {
1838 SlotIndex PEnd = LiveInts->getMBBEndIdx(*PI);
Matthias Braun364e6e92013-10-10 21:28:54 +00001839 const VNInfo *PVNI = LR.getVNInfoBefore(PEnd);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001840
1841 // All predecessors must have a live-out value.
1842 if (!PVNI) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001843 report("Register not marked live out of predecessor", *PI);
1844 report_context(LR, Reg, LaneMask);
1845 report_context(*VNI);
1846 errs() << " live into BB#" << MFI->getNumber()
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +00001847 << '@' << LiveInts->getMBBStartIdx(&*MFI) << ", not live before "
1848 << PEnd << '\n';
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001849 continue;
1850 }
1851
1852 // Only PHI-defs can take different predecessor values.
1853 if (!IsPHI && PVNI != VNI) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001854 report("Different value live out of predecessor", *PI);
1855 report_context(LR, Reg, LaneMask);
Owen Anderson21b17882015-02-04 00:02:59 +00001856 errs() << "Valno #" << PVNI->id << " live out of BB#"
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +00001857 << (*PI)->getNumber() << '@' << PEnd << "\nValno #" << VNI->id
1858 << " live into BB#" << MFI->getNumber() << '@'
1859 << LiveInts->getMBBStartIdx(&*MFI) << '\n';
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001860 }
1861 }
1862 if (&*MFI == EndMBB)
1863 break;
1864 ++MFI;
1865 }
1866}
1867
Matthias Braun3f1d8fd2014-12-10 01:12:10 +00001868void MachineVerifier::verifyLiveRange(const LiveRange &LR, unsigned Reg,
Matthias Braune6a24852015-09-25 21:51:14 +00001869 LaneBitmask LaneMask) {
Matthias Braun96761952014-12-10 23:07:54 +00001870 for (const VNInfo *VNI : LR.valnos)
1871 verifyLiveRangeValue(LR, VNI, Reg, LaneMask);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001872
Matthias Braun364e6e92013-10-10 21:28:54 +00001873 for (LiveRange::const_iterator I = LR.begin(), E = LR.end(); I != E; ++I)
Matthias Braun3f1d8fd2014-12-10 01:12:10 +00001874 verifyLiveRangeSegment(LR, I, Reg, LaneMask);
Matthias Braun364e6e92013-10-10 21:28:54 +00001875}
1876
1877void MachineVerifier::verifyLiveInterval(const LiveInterval &LI) {
Matthias Braun3f1d8fd2014-12-10 01:12:10 +00001878 unsigned Reg = LI.reg;
Matthias Braune962e522015-03-25 21:18:22 +00001879 assert(TargetRegisterInfo::isVirtualRegister(Reg));
1880 verifyLiveRange(LI, Reg);
1881
Matthias Braune6a24852015-09-25 21:51:14 +00001882 LaneBitmask Mask = 0;
1883 LaneBitmask MaxMask = MRI->getMaxLaneMaskForVReg(Reg);
Matthias Braune962e522015-03-25 21:18:22 +00001884 for (const LiveInterval::SubRange &SR : LI.subranges()) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001885 if ((Mask & SR.LaneMask) != 0) {
1886 report("Lane masks of sub ranges overlap in live interval", MF);
1887 report_context(LI);
1888 }
1889 if ((SR.LaneMask & ~MaxMask) != 0) {
1890 report("Subrange lanemask is invalid", MF);
1891 report_context(LI);
1892 }
1893 if (SR.empty()) {
1894 report("Subrange must not be empty", MF);
1895 report_context(SR, LI.reg, SR.LaneMask);
1896 }
Matthias Braune962e522015-03-25 21:18:22 +00001897 Mask |= SR.LaneMask;
1898 verifyLiveRange(SR, LI.reg, SR.LaneMask);
Matthias Braun7e624d52015-11-09 23:59:33 +00001899 if (!LI.covers(SR)) {
1900 report("A Subrange is not covered by the main range", MF);
1901 report_context(LI);
1902 }
Matthias Braun3f1d8fd2014-12-10 01:12:10 +00001903 }
1904
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001905 // Check the LI only has one connected component.
Matthias Braune962e522015-03-25 21:18:22 +00001906 ConnectedVNInfoEqClasses ConEQ(*LiveInts);
Matthias Braunbf47f632016-01-08 01:16:35 +00001907 unsigned NumComp = ConEQ.Classify(LI);
Matthias Braune962e522015-03-25 21:18:22 +00001908 if (NumComp > 1) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001909 report("Multiple connected components in live interval", MF);
1910 report_context(LI);
Matthias Braune962e522015-03-25 21:18:22 +00001911 for (unsigned comp = 0; comp != NumComp; ++comp) {
1912 errs() << comp << ": valnos";
1913 for (LiveInterval::const_vni_iterator I = LI.vni_begin(),
1914 E = LI.vni_end(); I!=E; ++I)
1915 if (comp == ConEQ.getEqClass(*I))
1916 errs() << ' ' << (*I)->id;
1917 errs() << '\n';
Jakob Stoklund Olesen260fa282010-10-26 22:36:07 +00001918 }
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001919 }
1920}
Manman Renaa6875b2013-07-15 21:26:31 +00001921
1922namespace {
1923 // FrameSetup and FrameDestroy can have zero adjustment, so using a single
1924 // integer, we can't tell whether it is a FrameSetup or FrameDestroy if the
1925 // value is zero.
1926 // We use a bool plus an integer to capture the stack state.
1927 struct StackStateOfBB {
1928 StackStateOfBB() : EntryValue(0), ExitValue(0), EntryIsSetup(false),
1929 ExitIsSetup(false) { }
1930 StackStateOfBB(int EntryVal, int ExitVal, bool EntrySetup, bool ExitSetup) :
1931 EntryValue(EntryVal), ExitValue(ExitVal), EntryIsSetup(EntrySetup),
1932 ExitIsSetup(ExitSetup) { }
1933 // Can be negative, which means we are setting up a frame.
1934 int EntryValue;
1935 int ExitValue;
1936 bool EntryIsSetup;
1937 bool ExitIsSetup;
1938 };
Alexander Kornienkof00654e2015-06-23 09:49:53 +00001939}
Manman Renaa6875b2013-07-15 21:26:31 +00001940
1941/// Make sure on every path through the CFG, a FrameSetup <n> is always followed
1942/// by a FrameDestroy <n>, stack adjustments are identical on all
1943/// CFG edges to a merge point, and frame is destroyed at end of a return block.
1944void MachineVerifier::verifyStackFrame() {
Matthias Braunfa3872e2015-05-18 20:27:55 +00001945 unsigned FrameSetupOpcode = TII->getCallFrameSetupOpcode();
1946 unsigned FrameDestroyOpcode = TII->getCallFrameDestroyOpcode();
Manman Renaa6875b2013-07-15 21:26:31 +00001947
1948 SmallVector<StackStateOfBB, 8> SPState;
1949 SPState.resize(MF->getNumBlockIDs());
1950 SmallPtrSet<const MachineBasicBlock*, 8> Reachable;
1951
1952 // Visit the MBBs in DFS order.
1953 for (df_ext_iterator<const MachineFunction*,
1954 SmallPtrSet<const MachineBasicBlock*, 8> >
1955 DFI = df_ext_begin(MF, Reachable), DFE = df_ext_end(MF, Reachable);
1956 DFI != DFE; ++DFI) {
1957 const MachineBasicBlock *MBB = *DFI;
1958
1959 StackStateOfBB BBState;
1960 // Check the exit state of the DFS stack predecessor.
1961 if (DFI.getPathLength() >= 2) {
1962 const MachineBasicBlock *StackPred = DFI.getPath(DFI.getPathLength() - 2);
1963 assert(Reachable.count(StackPred) &&
1964 "DFS stack predecessor is already visited.\n");
1965 BBState.EntryValue = SPState[StackPred->getNumber()].ExitValue;
1966 BBState.EntryIsSetup = SPState[StackPred->getNumber()].ExitIsSetup;
1967 BBState.ExitValue = BBState.EntryValue;
1968 BBState.ExitIsSetup = BBState.EntryIsSetup;
1969 }
1970
1971 // Update stack state by checking contents of MBB.
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001972 for (const auto &I : *MBB) {
1973 if (I.getOpcode() == FrameSetupOpcode) {
Manman Renaa6875b2013-07-15 21:26:31 +00001974 // The first operand of a FrameOpcode should be i32.
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001975 int Size = I.getOperand(0).getImm();
Manman Renaa6875b2013-07-15 21:26:31 +00001976 assert(Size >= 0 &&
1977 "Value should be non-negative in FrameSetup and FrameDestroy.\n");
1978
1979 if (BBState.ExitIsSetup)
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001980 report("FrameSetup is after another FrameSetup", &I);
Manman Renaa6875b2013-07-15 21:26:31 +00001981 BBState.ExitValue -= Size;
1982 BBState.ExitIsSetup = true;
1983 }
1984
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001985 if (I.getOpcode() == FrameDestroyOpcode) {
Manman Renaa6875b2013-07-15 21:26:31 +00001986 // The first operand of a FrameOpcode should be i32.
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001987 int Size = I.getOperand(0).getImm();
Manman Renaa6875b2013-07-15 21:26:31 +00001988 assert(Size >= 0 &&
1989 "Value should be non-negative in FrameSetup and FrameDestroy.\n");
1990
1991 if (!BBState.ExitIsSetup)
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001992 report("FrameDestroy is not after a FrameSetup", &I);
Manman Renaa6875b2013-07-15 21:26:31 +00001993 int AbsSPAdj = BBState.ExitValue < 0 ? -BBState.ExitValue :
1994 BBState.ExitValue;
1995 if (BBState.ExitIsSetup && AbsSPAdj != Size) {
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001996 report("FrameDestroy <n> is after FrameSetup <m>", &I);
Owen Anderson21b17882015-02-04 00:02:59 +00001997 errs() << "FrameDestroy <" << Size << "> is after FrameSetup <"
Manman Renaa6875b2013-07-15 21:26:31 +00001998 << AbsSPAdj << ">.\n";
1999 }
2000 BBState.ExitValue += Size;
2001 BBState.ExitIsSetup = false;
2002 }
2003 }
2004 SPState[MBB->getNumber()] = BBState;
2005
2006 // Make sure the exit state of any predecessor is consistent with the entry
2007 // state.
2008 for (MachineBasicBlock::const_pred_iterator I = MBB->pred_begin(),
2009 E = MBB->pred_end(); I != E; ++I) {
2010 if (Reachable.count(*I) &&
2011 (SPState[(*I)->getNumber()].ExitValue != BBState.EntryValue ||
2012 SPState[(*I)->getNumber()].ExitIsSetup != BBState.EntryIsSetup)) {
2013 report("The exit stack state of a predecessor is inconsistent.", MBB);
Owen Anderson21b17882015-02-04 00:02:59 +00002014 errs() << "Predecessor BB#" << (*I)->getNumber() << " has exit state ("
Manman Renaa6875b2013-07-15 21:26:31 +00002015 << SPState[(*I)->getNumber()].ExitValue << ", "
2016 << SPState[(*I)->getNumber()].ExitIsSetup
2017 << "), while BB#" << MBB->getNumber() << " has entry state ("
2018 << BBState.EntryValue << ", " << BBState.EntryIsSetup << ").\n";
2019 }
2020 }
2021
2022 // Make sure the entry state of any successor is consistent with the exit
2023 // state.
2024 for (MachineBasicBlock::const_succ_iterator I = MBB->succ_begin(),
2025 E = MBB->succ_end(); I != E; ++I) {
2026 if (Reachable.count(*I) &&
2027 (SPState[(*I)->getNumber()].EntryValue != BBState.ExitValue ||
2028 SPState[(*I)->getNumber()].EntryIsSetup != BBState.ExitIsSetup)) {
2029 report("The entry stack state of a successor is inconsistent.", MBB);
Owen Anderson21b17882015-02-04 00:02:59 +00002030 errs() << "Successor BB#" << (*I)->getNumber() << " has entry state ("
Manman Renaa6875b2013-07-15 21:26:31 +00002031 << SPState[(*I)->getNumber()].EntryValue << ", "
2032 << SPState[(*I)->getNumber()].EntryIsSetup
2033 << "), while BB#" << MBB->getNumber() << " has exit state ("
2034 << BBState.ExitValue << ", " << BBState.ExitIsSetup << ").\n";
2035 }
2036 }
2037
2038 // Make sure a basic block with return ends with zero stack adjustment.
2039 if (!MBB->empty() && MBB->back().isReturn()) {
2040 if (BBState.ExitIsSetup)
2041 report("A return block ends with a FrameSetup.", MBB);
2042 if (BBState.ExitValue)
2043 report("A return block ends with a nonzero stack adjustment.", MBB);
2044 }
2045 }
2046}