blob: 92e7d0ed5541b6f1fb77209f6f8f2fe3d86daa15 [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;
Matthias Braun1377fd62016-02-02 20:04:51 +0000222 void report_context_lanemask(LaneBitmask LaneMask) const;
Matthias Braun30668dd2016-05-11 21:31:39 +0000223 void report_context_vreg(unsigned VReg) const;
Matthias Braun1377fd62016-02-02 20:04:51 +0000224 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
Matthias Braun30668dd2016-05-11 21:31:39 +0000497void MachineVerifier::report_context_vreg(unsigned VReg) const {
498 errs() << "- v. register: " << PrintReg(VReg, 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)) {
Matthias Braun30668dd2016-05-11 21:31:39 +0000503 report_context_vreg(VRegOrUnit);
Matthias Braun1377fd62016-02-02 20:04:51 +0000504 } 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,
Wei Ding0526e7f2016-06-22 18:51:08 +0000813 // Extra_AsmDialect = 4, Extra_MayLoad = 8, and Extra_MayStore = 16,
814 // and Extra_IsConvergent = 32.
815 if (!isUInt<6>(MI->getOperand(1).getImm()))
Jakob Stoklund Olesen7a837b92012-08-29 18:11:05 +0000816 report("Unknown asm flags", &MI->getOperand(1), 1);
817
Gabor Horvathfee04342015-03-16 09:53:42 +0000818 static_assert(InlineAsm::MIOp_FirstOperand == 2, "Asm format changed");
Jakob Stoklund Olesen7a837b92012-08-29 18:11:05 +0000819
820 unsigned OpNo = InlineAsm::MIOp_FirstOperand;
821 unsigned NumOps;
822 for (unsigned e = MI->getNumOperands(); OpNo < e; OpNo += NumOps) {
823 const MachineOperand &MO = MI->getOperand(OpNo);
824 // There may be implicit ops after the fixed operands.
825 if (!MO.isImm())
826 break;
827 NumOps = 1 + InlineAsm::getNumOperandRegisters(MO.getImm());
828 }
829
830 if (OpNo > MI->getNumOperands())
831 report("Missing operands in last group", MI);
832
833 // An optional MDNode follows the groups.
834 if (OpNo < MI->getNumOperands() && MI->getOperand(OpNo).isMetadata())
835 ++OpNo;
836
837 // All trailing operands must be implicit registers.
838 for (unsigned e = MI->getNumOperands(); OpNo < e; ++OpNo) {
839 const MachineOperand &MO = MI->getOperand(OpNo);
840 if (!MO.isReg() || !MO.isImplicit())
841 report("Expected implicit register after groups", &MO, OpNo);
842 }
843}
844
Jakob Stoklund Olesen63c733f2009-10-04 18:18:39 +0000845void MachineVerifier::visitMachineInstrBefore(const MachineInstr *MI) {
Evan Cheng6cc775f2011-06-28 19:10:37 +0000846 const MCInstrDesc &MCID = MI->getDesc();
847 if (MI->getNumOperands() < MCID.getNumOperands()) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000848 report("Too few operands", MI);
Owen Anderson21b17882015-02-04 00:02:59 +0000849 errs() << MCID.getNumOperands() << " operands expected, but "
Matt Arsenault23c92742013-11-15 22:18:19 +0000850 << MI->getNumOperands() << " given.\n";
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000851 }
Dan Gohmandb9493c2009-10-07 17:36:00 +0000852
Jakob Stoklund Olesendbbff782012-08-29 00:38:03 +0000853 // Check the tied operands.
Jakob Stoklund Olesen7a837b92012-08-29 18:11:05 +0000854 if (MI->isInlineAsm())
855 verifyInlineAsm(MI);
Jakob Stoklund Olesendbbff782012-08-29 00:38:03 +0000856
Dan Gohmandb9493c2009-10-07 17:36:00 +0000857 // Check the MachineMemOperands for basic consistency.
858 for (MachineInstr::mmo_iterator I = MI->memoperands_begin(),
859 E = MI->memoperands_end(); I != E; ++I) {
Evan Cheng7f8e5632011-12-07 07:15:52 +0000860 if ((*I)->isLoad() && !MI->mayLoad())
Dan Gohmandb9493c2009-10-07 17:36:00 +0000861 report("Missing mayLoad flag", MI);
Evan Cheng7f8e5632011-12-07 07:15:52 +0000862 if ((*I)->isStore() && !MI->mayStore())
Dan Gohmandb9493c2009-10-07 17:36:00 +0000863 report("Missing mayStore flag", MI);
864 }
Jakob Stoklund Olesene7709eb2010-08-05 22:32:21 +0000865
866 // Debug values must not have a slot index.
Jakob Stoklund Olesen5aafb562012-02-27 18:24:30 +0000867 // Other instructions must have one, unless they are inside a bundle.
Jakob Stoklund Olesene7709eb2010-08-05 22:32:21 +0000868 if (LiveInts) {
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000869 bool mapped = !LiveInts->isNotInMIMap(*MI);
Jakob Stoklund Olesene7709eb2010-08-05 22:32:21 +0000870 if (MI->isDebugValue()) {
871 if (mapped)
872 report("Debug instruction has a slot index", MI);
Jakob Stoklund Olesen5aafb562012-02-27 18:24:30 +0000873 } else if (MI->isInsideBundle()) {
874 if (mapped)
875 report("Instruction inside bundle has a slot index", MI);
Jakob Stoklund Olesene7709eb2010-08-05 22:32:21 +0000876 } else {
877 if (!mapped)
878 report("Missing slot index", MI);
879 }
880 }
881
Andrew Trick924123a2011-09-21 02:20:46 +0000882 StringRef ErrorInfo;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000883 if (!TII->verifyInstruction(*MI, ErrorInfo))
Andrew Trick924123a2011-09-21 02:20:46 +0000884 report(ErrorInfo.data(), MI);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000885}
886
887void
Jakob Stoklund Olesen63c733f2009-10-04 18:18:39 +0000888MachineVerifier::visitMachineOperand(const MachineOperand *MO, unsigned MONum) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000889 const MachineInstr *MI = MO->getParent();
Evan Cheng6cc775f2011-06-28 19:10:37 +0000890 const MCInstrDesc &MCID = MI->getDesc();
Alex Lorenze5101e22015-08-10 21:47:36 +0000891 unsigned NumDefs = MCID.getNumDefs();
892 if (MCID.getOpcode() == TargetOpcode::PATCHPOINT)
893 NumDefs = (MONum == 0 && MO->isReg()) ? NumDefs : 0;
Jakob Stoklund Olesene61c7a32009-05-16 07:25:20 +0000894
Evan Cheng6cc775f2011-06-28 19:10:37 +0000895 // The first MCID.NumDefs operands must be explicit register defines
Alex Lorenze5101e22015-08-10 21:47:36 +0000896 if (MONum < NumDefs) {
Richard Smith8f3447c2012-08-15 01:39:31 +0000897 const MCOperandInfo &MCOI = MCID.OpInfo[MONum];
Jakob Stoklund Olesene61c7a32009-05-16 07:25:20 +0000898 if (!MO->isReg())
899 report("Explicit definition must be a register", MO, MONum);
Evan Cheng76f6e262012-05-29 19:40:44 +0000900 else if (!MO->isDef() && !MCOI.isOptionalDef())
Jakob Stoklund Olesene61c7a32009-05-16 07:25:20 +0000901 report("Explicit definition marked as use", MO, MONum);
902 else if (MO->isImplicit())
903 report("Explicit definition marked as implicit", MO, MONum);
Evan Cheng6cc775f2011-06-28 19:10:37 +0000904 } else if (MONum < MCID.getNumOperands()) {
Richard Smith8f3447c2012-08-15 01:39:31 +0000905 const MCOperandInfo &MCOI = MCID.OpInfo[MONum];
Eric Christopherbcc230a72010-11-17 00:55:36 +0000906 // Don't check if it's the last operand in a variadic instruction. See,
907 // e.g., LDM_RET in the arm back end.
Evan Cheng6cc775f2011-06-28 19:10:37 +0000908 if (MO->isReg() &&
Evan Cheng7f8e5632011-12-07 07:15:52 +0000909 !(MI->isVariadic() && MONum == MCID.getNumOperands()-1)) {
Evan Cheng6cc775f2011-06-28 19:10:37 +0000910 if (MO->isDef() && !MCOI.isOptionalDef())
Matthias Braun6a57acf2013-10-04 16:53:00 +0000911 report("Explicit operand marked as def", MO, MONum);
Jakob Stoklund Olesen75b9c272009-09-23 20:57:55 +0000912 if (MO->isImplicit())
913 report("Explicit operand marked as implicit", MO, MONum);
914 }
Jakob Stoklund Olesendbbff782012-08-29 00:38:03 +0000915
Jakob Stoklund Olesenc7579cd2012-09-04 18:38:28 +0000916 int TiedTo = MCID.getOperandConstraint(MONum, MCOI::TIED_TO);
917 if (TiedTo != -1) {
Jakob Stoklund Olesendbbff782012-08-29 00:38:03 +0000918 if (!MO->isReg())
919 report("Tied use must be a register", MO, MONum);
920 else if (!MO->isTied())
921 report("Operand should be tied", MO, MONum);
Jakob Stoklund Olesenc7579cd2012-09-04 18:38:28 +0000922 else if (unsigned(TiedTo) != MI->findTiedOperandIdx(MONum))
923 report("Tied def doesn't match MCInstrDesc", MO, MONum);
Jakob Stoklund Olesendbbff782012-08-29 00:38:03 +0000924 } else if (MO->isReg() && MO->isTied())
925 report("Explicit operand should not be tied", MO, MONum);
Jakob Stoklund Olesen75b9c272009-09-23 20:57:55 +0000926 } else {
Jakob Stoklund Olesen3db495232009-12-22 21:48:20 +0000927 // ARM adds %reg0 operands to indicate predicates. We'll allow that.
Evan Cheng7f8e5632011-12-07 07:15:52 +0000928 if (MO->isReg() && !MO->isImplicit() && !MI->isVariadic() && MO->getReg())
Jakob Stoklund Olesen75b9c272009-09-23 20:57:55 +0000929 report("Extra explicit operand on non-variadic instruction", MO, MONum);
Jakob Stoklund Olesene61c7a32009-05-16 07:25:20 +0000930 }
931
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000932 switch (MO->getType()) {
933 case MachineOperand::MO_Register: {
934 const unsigned Reg = MO->getReg();
935 if (!Reg)
936 return;
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +0000937 if (MRI->tracksLiveness() && !MI->isDebugValue())
938 checkLiveness(MO, MONum);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000939
Jakob Stoklund Olesenc7579cd2012-09-04 18:38:28 +0000940 // Verify the consistency of tied operands.
941 if (MO->isTied()) {
942 unsigned OtherIdx = MI->findTiedOperandIdx(MONum);
943 const MachineOperand &OtherMO = MI->getOperand(OtherIdx);
944 if (!OtherMO.isReg())
945 report("Must be tied to a register", MO, MONum);
946 if (!OtherMO.isTied())
947 report("Missing tie flags on tied operand", MO, MONum);
948 if (MI->findTiedOperandIdx(OtherIdx) != MONum)
949 report("Inconsistent tie links", MO, MONum);
950 if (MONum < MCID.getNumDefs()) {
951 if (OtherIdx < MCID.getNumOperands()) {
952 if (-1 == MCID.getOperandConstraint(OtherIdx, MCOI::TIED_TO))
953 report("Explicit def tied to explicit use without tie constraint",
954 MO, MONum);
955 } else {
956 if (!OtherMO.isImplicit())
957 report("Explicit def should be tied to implicit use", MO, MONum);
958 }
959 }
960 }
961
Jakob Stoklund Olesenc6fd3de2012-07-25 16:49:11 +0000962 // Verify two-address constraints after leaving SSA form.
963 unsigned DefIdx;
964 if (!MRI->isSSA() && MO->isUse() &&
965 MI->isRegTiedToDefOperand(MONum, &DefIdx) &&
966 Reg != MI->getOperand(DefIdx).getReg())
967 report("Two-address instruction operands must be identical", MO, MONum);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000968
969 // Check register classes.
Evan Cheng6cc775f2011-06-28 19:10:37 +0000970 if (MONum < MCID.getNumOperands() && !MO->isImplicit()) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000971 unsigned SubIdx = MO->getSubReg();
972
973 if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000974 if (SubIdx) {
Jakob Stoklund Oleseneb38bd8c2011-10-05 22:12:57 +0000975 report("Illegal subregister index for physical register", MO, MONum);
976 return;
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000977 }
Jakob Stoklund Olesen3c52f022012-05-07 22:10:26 +0000978 if (const TargetRegisterClass *DRC =
979 TII->getRegClass(MCID, MONum, TRI, *MF)) {
Jakob Stoklund Oleseneb38bd8c2011-10-05 22:12:57 +0000980 if (!DRC->contains(Reg)) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000981 report("Illegal physical register for instruction", MO, MONum);
Owen Anderson21b17882015-02-04 00:02:59 +0000982 errs() << TRI->getName(Reg) << " is not a "
Craig Toppercf0444b2014-11-17 05:50:14 +0000983 << TRI->getRegClassName(DRC) << " register.\n";
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000984 }
985 }
986 } else {
987 // Virtual register.
Quentin Colombetc1c94bc2016-04-08 16:35:22 +0000988 const TargetRegisterClass *RC = MRI->getRegClassOrNull(Reg);
989 if (!RC) {
990 // This is a generic virtual register.
991 // It must have a size and it must not have a SubIdx.
992 unsigned Size = MRI->getSize(Reg);
993 if (!Size) {
994 report("Generic virtual register must have a size", MO, MONum);
995 return;
996 }
997 // Make sure the register fits into its register bank if any.
998 const RegisterBank *RegBank = MRI->getRegBankOrNull(Reg);
999 if (RegBank && RegBank->getSize() < Size) {
1000 report("Register bank is too small for virtual register", MO,
1001 MONum);
1002 errs() << "Register bank " << RegBank->getName() << " too small("
1003 << RegBank->getSize() << ") to fit " << Size << "-bits\n";
1004 return;
1005 }
1006 if (SubIdx) {
1007 report("Generic virtual register does not subregister index", MO, MONum);
1008 return;
1009 }
1010 break;
1011 }
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001012 if (SubIdx) {
Jakob Stoklund Oleseneb38bd8c2011-10-05 22:12:57 +00001013 const TargetRegisterClass *SRC =
1014 TRI->getSubClassWithSubReg(RC, SubIdx);
Jakob Stoklund Olesen48431782010-05-18 17:31:12 +00001015 if (!SRC) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001016 report("Invalid subregister index for virtual register", MO, MONum);
Owen Anderson21b17882015-02-04 00:02:59 +00001017 errs() << "Register class " << TRI->getRegClassName(RC)
Jakob Stoklund Olesen48431782010-05-18 17:31:12 +00001018 << " does not support subreg index " << SubIdx << "\n";
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001019 return;
1020 }
Jakob Stoklund Oleseneb38bd8c2011-10-05 22:12:57 +00001021 if (RC != SRC) {
1022 report("Invalid register class for subregister index", MO, MONum);
Owen Anderson21b17882015-02-04 00:02:59 +00001023 errs() << "Register class " << TRI->getRegClassName(RC)
Jakob Stoklund Oleseneb38bd8c2011-10-05 22:12:57 +00001024 << " does not fully support subreg index " << SubIdx << "\n";
1025 return;
1026 }
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001027 }
Jakob Stoklund Olesen3c52f022012-05-07 22:10:26 +00001028 if (const TargetRegisterClass *DRC =
1029 TII->getRegClass(MCID, MONum, TRI, *MF)) {
Jakob Stoklund Oleseneb38bd8c2011-10-05 22:12:57 +00001030 if (SubIdx) {
1031 const TargetRegisterClass *SuperRC =
Eric Christopher433c4322015-03-10 23:46:01 +00001032 TRI->getLargestLegalSuperClass(RC, *MF);
Jakob Stoklund Oleseneb38bd8c2011-10-05 22:12:57 +00001033 if (!SuperRC) {
1034 report("No largest legal super class exists.", MO, MONum);
1035 return;
1036 }
1037 DRC = TRI->getMatchingSuperRegClass(SuperRC, DRC, SubIdx);
1038 if (!DRC) {
1039 report("No matching super-reg register class.", MO, MONum);
1040 return;
1041 }
1042 }
Jakob Stoklund Olesenaff10602011-06-02 05:43:46 +00001043 if (!RC->hasSuperClassEq(DRC)) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001044 report("Illegal virtual register for instruction", MO, MONum);
Owen Anderson21b17882015-02-04 00:02:59 +00001045 errs() << "Expected a " << TRI->getRegClassName(DRC)
Craig Toppercf0444b2014-11-17 05:50:14 +00001046 << " register, but got a " << TRI->getRegClassName(RC)
1047 << " register\n";
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001048 }
1049 }
1050 }
1051 }
1052 break;
1053 }
Jakob Stoklund Olesenf6eb7d82009-09-21 07:19:08 +00001054
Jakob Stoklund Olesen16c4a972012-02-28 01:42:41 +00001055 case MachineOperand::MO_RegisterMask:
1056 regMasks.push_back(MO->getRegMask());
1057 break;
1058
Jakob Stoklund Olesenf6eb7d82009-09-21 07:19:08 +00001059 case MachineOperand::MO_MachineBasicBlock:
Chris Lattnerb06015a2010-02-09 19:54:29 +00001060 if (MI->isPHI() && !MO->getMBB()->isSuccessor(MI->getParent()))
1061 report("PHI operand is not in the CFG", MO, MONum);
Jakob Stoklund Olesenf6eb7d82009-09-21 07:19:08 +00001062 break;
1063
Jakob Stoklund Olesen31fffb62010-11-01 19:49:52 +00001064 case MachineOperand::MO_FrameIndex:
1065 if (LiveStks && LiveStks->hasInterval(MO->getIndex()) &&
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001066 LiveInts && !LiveInts->isNotInMIMap(*MI)) {
Jonas Paulsson72640f12015-10-29 08:28:35 +00001067 int FI = MO->getIndex();
1068 LiveInterval &LI = LiveStks->getInterval(FI);
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001069 SlotIndex Idx = LiveInts->getInstructionIndex(*MI);
Jonas Paulsson17ad0452015-10-21 07:39:47 +00001070
Jonas Paulsson17ad0452015-10-21 07:39:47 +00001071 bool stores = MI->mayStore();
Jonas Paulsson72640f12015-10-29 08:28:35 +00001072 bool loads = MI->mayLoad();
1073 // For a memory-to-memory move, we need to check if the frame
1074 // index is used for storing or loading, by inspecting the
1075 // memory operands.
1076 if (stores && loads) {
1077 for (auto *MMO : MI->memoperands()) {
1078 const PseudoSourceValue *PSV = MMO->getPseudoValue();
1079 if (PSV == nullptr) continue;
1080 const FixedStackPseudoSourceValue *Value =
1081 dyn_cast<FixedStackPseudoSourceValue>(PSV);
1082 if (Value == nullptr) continue;
1083 if (Value->getFrameIndex() != FI) continue;
1084
1085 if (MMO->isStore())
1086 loads = false;
1087 else
1088 stores = false;
1089 break;
1090 }
1091 if (loads == stores)
1092 report("Missing fixed stack memoperand.", MI);
1093 }
1094 if (loads && !LI.liveAt(Idx.getRegSlot(true))) {
Jakob Stoklund Olesen31fffb62010-11-01 19:49:52 +00001095 report("Instruction loads from dead spill slot", MO, MONum);
Owen Anderson21b17882015-02-04 00:02:59 +00001096 errs() << "Live stack: " << LI << '\n';
Jakob Stoklund Olesen31fffb62010-11-01 19:49:52 +00001097 }
Jonas Paulsson17ad0452015-10-21 07:39:47 +00001098 if (stores && !LI.liveAt(Idx.getRegSlot())) {
Jakob Stoklund Olesen31fffb62010-11-01 19:49:52 +00001099 report("Instruction stores to dead spill slot", MO, MONum);
Owen Anderson21b17882015-02-04 00:02:59 +00001100 errs() << "Live stack: " << LI << '\n';
Jakob Stoklund Olesen31fffb62010-11-01 19:49:52 +00001101 }
1102 }
1103 break;
1104
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001105 default:
1106 break;
1107 }
1108}
1109
Matthias Braun1377fd62016-02-02 20:04:51 +00001110void MachineVerifier::checkLivenessAtUse(const MachineOperand *MO,
1111 unsigned MONum, SlotIndex UseIdx, const LiveRange &LR, unsigned VRegOrUnit,
1112 LaneBitmask LaneMask) {
1113 LiveQueryResult LRQ = LR.Query(UseIdx);
1114 // Check if we have a segment at the use, note however that we only need one
1115 // live subregister range, the others may be dead.
1116 if (!LRQ.valueIn() && LaneMask == 0) {
1117 report("No live segment at use", MO, MONum);
1118 report_context_liverange(LR);
1119 report_context_vreg_regunit(VRegOrUnit);
1120 report_context(UseIdx);
1121 }
1122 if (MO->isKill() && !LRQ.isKill()) {
1123 report("Live range continues after kill flag", MO, MONum);
1124 report_context_liverange(LR);
1125 report_context_vreg_regunit(VRegOrUnit);
1126 if (LaneMask != 0)
1127 report_context_lanemask(LaneMask);
1128 report_context(UseIdx);
1129 }
1130}
1131
1132void MachineVerifier::checkLivenessAtDef(const MachineOperand *MO,
1133 unsigned MONum, SlotIndex DefIdx, const LiveRange &LR, unsigned VRegOrUnit,
1134 LaneBitmask LaneMask) {
1135 if (const VNInfo *VNI = LR.getVNInfoAt(DefIdx)) {
1136 assert(VNI && "NULL valno is not allowed");
1137 if (VNI->def != DefIdx) {
1138 report("Inconsistent valno->def", MO, MONum);
1139 report_context_liverange(LR);
1140 report_context_vreg_regunit(VRegOrUnit);
1141 if (LaneMask != 0)
1142 report_context_lanemask(LaneMask);
1143 report_context(*VNI);
1144 report_context(DefIdx);
1145 }
1146 } else {
1147 report("No live segment at def", MO, MONum);
1148 report_context_liverange(LR);
1149 report_context_vreg_regunit(VRegOrUnit);
1150 if (LaneMask != 0)
1151 report_context_lanemask(LaneMask);
1152 report_context(DefIdx);
1153 }
1154 // Check that, if the dead def flag is present, LiveInts agree.
1155 if (MO->isDead()) {
1156 LiveQueryResult LRQ = LR.Query(DefIdx);
1157 if (!LRQ.isDeadDef()) {
1158 // In case of physregs we can have a non-dead definition on another
1159 // operand.
1160 bool otherDef = false;
1161 if (!TargetRegisterInfo::isVirtualRegister(VRegOrUnit)) {
1162 const MachineInstr &MI = *MO->getParent();
1163 for (const MachineOperand &MO : MI.operands()) {
1164 if (!MO.isReg() || !MO.isDef() || MO.isDead())
1165 continue;
1166 unsigned Reg = MO.getReg();
1167 for (MCRegUnitIterator Units(Reg, TRI); Units.isValid(); ++Units) {
1168 if (*Units == VRegOrUnit) {
1169 otherDef = true;
1170 break;
1171 }
1172 }
1173 }
1174 }
1175
1176 if (!otherDef) {
1177 report("Live range continues after dead def flag", MO, MONum);
1178 report_context_liverange(LR);
1179 report_context_vreg_regunit(VRegOrUnit);
1180 if (LaneMask != 0)
1181 report_context_lanemask(LaneMask);
1182 }
1183 }
1184 }
1185}
1186
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001187void MachineVerifier::checkLiveness(const MachineOperand *MO, unsigned MONum) {
1188 const MachineInstr *MI = MO->getParent();
1189 const unsigned Reg = MO->getReg();
1190
1191 // Both use and def operands can read a register.
1192 if (MO->readsReg()) {
1193 regsLiveInButUnused.erase(Reg);
1194
Jakob Stoklund Olesenc6fd3de2012-07-25 16:49:11 +00001195 if (MO->isKill())
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001196 addRegWithSubRegs(regsKilled, Reg);
1197
1198 // Check that LiveVars knows this kill.
1199 if (LiveVars && TargetRegisterInfo::isVirtualRegister(Reg) &&
1200 MO->isKill()) {
1201 LiveVariables::VarInfo &VI = LiveVars->getVarInfo(Reg);
1202 if (std::find(VI.Kills.begin(), VI.Kills.end(), MI) == VI.Kills.end())
1203 report("Kill missing from LiveVariables", MO, MONum);
1204 }
1205
1206 // Check LiveInts liveness and kill.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001207 if (LiveInts && !LiveInts->isNotInMIMap(*MI)) {
1208 SlotIndex UseIdx = LiveInts->getInstructionIndex(*MI);
Jakob Stoklund Olesena766b472012-08-01 23:52:40 +00001209 // Check the cached regunit intervals.
1210 if (TargetRegisterInfo::isPhysicalRegister(Reg) && !isReserved(Reg)) {
1211 for (MCRegUnitIterator Units(Reg, TRI); Units.isValid(); ++Units) {
Matthias Braun1377fd62016-02-02 20:04:51 +00001212 if (const LiveRange *LR = LiveInts->getCachedRegUnit(*Units))
1213 checkLivenessAtUse(MO, MONum, UseIdx, *LR, *Units);
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001214 }
Jakob Stoklund Olesena766b472012-08-01 23:52:40 +00001215 }
1216
1217 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
1218 if (LiveInts->hasInterval(Reg)) {
1219 // This is a virtual register interval.
1220 const LiveInterval &LI = LiveInts->getInterval(Reg);
Matthias Braun1377fd62016-02-02 20:04:51 +00001221 checkLivenessAtUse(MO, MONum, UseIdx, LI, Reg);
1222
1223 if (LI.hasSubRanges() && !MO->isDef()) {
1224 unsigned SubRegIdx = MO->getSubReg();
1225 LaneBitmask MOMask = SubRegIdx != 0
1226 ? TRI->getSubRegIndexLaneMask(SubRegIdx)
1227 : MRI->getMaxLaneMaskForVReg(Reg);
1228 LaneBitmask LiveInMask = 0;
1229 for (const LiveInterval::SubRange &SR : LI.subranges()) {
1230 if ((MOMask & SR.LaneMask) == 0)
1231 continue;
1232 checkLivenessAtUse(MO, MONum, UseIdx, SR, Reg, SR.LaneMask);
1233 LiveQueryResult LRQ = SR.Query(UseIdx);
1234 if (LRQ.valueIn())
1235 LiveInMask |= SR.LaneMask;
1236 }
1237 // At least parts of the register has to be live at the use.
1238 if ((LiveInMask & MOMask) == 0) {
1239 report("No live subrange at use", MO, MONum);
1240 report_context(LI);
1241 report_context(UseIdx);
1242 }
Jakob Stoklund Olesena766b472012-08-01 23:52:40 +00001243 }
1244 } else {
1245 report("Virtual register has no live interval", MO, MONum);
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001246 }
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001247 }
1248 }
1249
1250 // Use of a dead register.
1251 if (!regsLive.count(Reg)) {
1252 if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
1253 // Reserved registers may be used even when 'dead'.
Matthias Braun96d77322014-12-10 01:13:13 +00001254 bool Bad = !isReserved(Reg);
1255 // We are fine if just any subregister has a defined value.
1256 if (Bad) {
1257 for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid();
1258 ++SubRegs) {
1259 if (regsLive.count(*SubRegs)) {
1260 Bad = false;
1261 break;
1262 }
1263 }
1264 }
Matthias Braun96a31952015-01-14 22:25:14 +00001265 // If there is an additional implicit-use of a super register we stop
1266 // here. By definition we are fine if the super register is not
1267 // (completely) dead, if the complete super register is dead we will
1268 // get a report for its operand.
1269 if (Bad) {
1270 for (const MachineOperand &MOP : MI->uses()) {
1271 if (!MOP.isReg())
1272 continue;
1273 if (!MOP.isImplicit())
1274 continue;
1275 for (MCSubRegIterator SubRegs(MOP.getReg(), TRI); SubRegs.isValid();
1276 ++SubRegs) {
1277 if (*SubRegs == Reg) {
1278 Bad = false;
1279 break;
1280 }
1281 }
1282 }
1283 }
Matthias Braun96d77322014-12-10 01:13:13 +00001284 if (Bad)
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001285 report("Using an undefined physical register", MO, MONum);
Pete Cooperdcf94db2012-07-19 23:40:38 +00001286 } else if (MRI->def_empty(Reg)) {
1287 report("Reading virtual register without a def", MO, MONum);
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001288 } else {
1289 BBInfo &MInfo = MBBInfoMap[MI->getParent()];
1290 // We don't know which virtual registers are live in, so only complain
1291 // if vreg was killed in this MBB. Otherwise keep track of vregs that
1292 // must be live in. PHI instructions are handled separately.
1293 if (MInfo.regsKilled.count(Reg))
1294 report("Using a killed virtual register", MO, MONum);
1295 else if (!MI->isPHI())
1296 MInfo.vregsLiveIn.insert(std::make_pair(Reg, MI));
1297 }
1298 }
1299 }
1300
1301 if (MO->isDef()) {
1302 // Register defined.
1303 // TODO: verify that earlyclobber ops are not used.
1304 if (MO->isDead())
1305 addRegWithSubRegs(regsDead, Reg);
1306 else
1307 addRegWithSubRegs(regsDefined, Reg);
1308
1309 // Verify SSA form.
1310 if (MRI->isSSA() && TargetRegisterInfo::isVirtualRegister(Reg) &&
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001311 std::next(MRI->def_begin(Reg)) != MRI->def_end())
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001312 report("Multiple virtual register defs in SSA form", MO, MONum);
1313
Matthias Braun13ddb7c2013-10-10 21:28:43 +00001314 // Check LiveInts for a live segment, but only for virtual registers.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001315 if (LiveInts && !LiveInts->isNotInMIMap(*MI)) {
1316 SlotIndex DefIdx = LiveInts->getInstructionIndex(*MI);
Jakob Stoklund Olesenb033ded2012-06-22 22:23:58 +00001317 DefIdx = DefIdx.getRegSlot(MO->isEarlyClobber());
Matthias Braun1377fd62016-02-02 20:04:51 +00001318
1319 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
1320 if (LiveInts->hasInterval(Reg)) {
1321 const LiveInterval &LI = LiveInts->getInterval(Reg);
1322 checkLivenessAtDef(MO, MONum, DefIdx, LI, Reg);
1323
1324 if (LI.hasSubRanges()) {
1325 unsigned SubRegIdx = MO->getSubReg();
1326 LaneBitmask MOMask = SubRegIdx != 0
1327 ? TRI->getSubRegIndexLaneMask(SubRegIdx)
1328 : MRI->getMaxLaneMaskForVReg(Reg);
1329 for (const LiveInterval::SubRange &SR : LI.subranges()) {
1330 if ((SR.LaneMask & MOMask) == 0)
1331 continue;
1332 checkLivenessAtDef(MO, MONum, DefIdx, SR, Reg, SR.LaneMask);
1333 }
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001334 }
1335 } else {
Matthias Braun1377fd62016-02-02 20:04:51 +00001336 report("Virtual register has no Live interval", MO, MONum);
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001337 }
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001338 }
1339 }
1340 }
1341}
1342
Jakob Stoklund Olesen63c733f2009-10-04 18:18:39 +00001343void MachineVerifier::visitMachineInstrAfter(const MachineInstr *MI) {
Jakob Stoklund Olesen00e7dff2012-06-06 22:34:30 +00001344}
1345
1346// This function gets called after visiting all instructions in a bundle. The
1347// argument points to the bundle header.
1348// Normal stand-alone instructions are also considered 'bundles', and this
1349// function is called for all of them.
1350void MachineVerifier::visitMachineBundleAfter(const MachineInstr *MI) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001351 BBInfo &MInfo = MBBInfoMap[MI->getParent()];
1352 set_union(MInfo.regsKilled, regsKilled);
Jakob Stoklund Olesen45833552010-08-05 18:59:59 +00001353 set_subtract(regsLive, regsKilled); regsKilled.clear();
Jakob Stoklund Olesen16c4a972012-02-28 01:42:41 +00001354 // Kill any masked registers.
1355 while (!regMasks.empty()) {
1356 const uint32_t *Mask = regMasks.pop_back_val();
1357 for (RegSet::iterator I = regsLive.begin(), E = regsLive.end(); I != E; ++I)
1358 if (TargetRegisterInfo::isPhysicalRegister(*I) &&
1359 MachineOperand::clobbersPhysReg(Mask, *I))
1360 regsDead.push_back(*I);
1361 }
Jakob Stoklund Olesen45833552010-08-05 18:59:59 +00001362 set_subtract(regsLive, regsDead); regsDead.clear();
1363 set_union(regsLive, regsDefined); regsDefined.clear();
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001364}
1365
1366void
Jakob Stoklund Olesen63c733f2009-10-04 18:18:39 +00001367MachineVerifier::visitMachineBasicBlockAfter(const MachineBasicBlock *MBB) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001368 MBBInfoMap[MBB].regsLiveOut = regsLive;
1369 regsLive.clear();
Jakob Stoklund Olesen58b6f4d2011-01-12 21:27:48 +00001370
1371 if (Indexes) {
1372 SlotIndex stop = Indexes->getMBBEndIdx(MBB);
1373 if (!(stop > lastIndex)) {
1374 report("Block ends before last instruction index", MBB);
Owen Anderson21b17882015-02-04 00:02:59 +00001375 errs() << "Block ends at " << stop
Jakob Stoklund Olesen58b6f4d2011-01-12 21:27:48 +00001376 << " last instruction was at " << lastIndex << '\n';
1377 }
1378 lastIndex = stop;
1379 }
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001380}
1381
1382// Calculate the largest possible vregsPassed sets. These are the registers that
1383// can pass through an MBB live, but may not be live every time. It is assumed
1384// that all vregsPassed sets are empty before the call.
Jakob Stoklund Olesen4cb77022010-01-05 20:59:36 +00001385void MachineVerifier::calcRegsPassed() {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001386 // First push live-out regs to successors' vregsPassed. Remember the MBBs that
1387 // have any vregsPassed.
Jakob Stoklund Olesen6ea6a1442012-03-10 00:36:04 +00001388 SmallPtrSet<const MachineBasicBlock*, 8> todo;
Alexey Samsonov41b977d2014-04-30 18:29:51 +00001389 for (const auto &MBB : *MF) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001390 BBInfo &MInfo = MBBInfoMap[&MBB];
1391 if (!MInfo.reachable)
1392 continue;
1393 for (MachineBasicBlock::const_succ_iterator SuI = MBB.succ_begin(),
1394 SuE = MBB.succ_end(); SuI != SuE; ++SuI) {
1395 BBInfo &SInfo = MBBInfoMap[*SuI];
1396 if (SInfo.addPassed(MInfo.regsLiveOut))
1397 todo.insert(*SuI);
1398 }
1399 }
1400
1401 // Iteratively push vregsPassed to successors. This will converge to the same
1402 // final state regardless of DenseSet iteration order.
1403 while (!todo.empty()) {
1404 const MachineBasicBlock *MBB = *todo.begin();
1405 todo.erase(MBB);
1406 BBInfo &MInfo = MBBInfoMap[MBB];
1407 for (MachineBasicBlock::const_succ_iterator SuI = MBB->succ_begin(),
1408 SuE = MBB->succ_end(); SuI != SuE; ++SuI) {
1409 if (*SuI == MBB)
1410 continue;
1411 BBInfo &SInfo = MBBInfoMap[*SuI];
1412 if (SInfo.addPassed(MInfo.vregsPassed))
1413 todo.insert(*SuI);
1414 }
1415 }
1416}
1417
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001418// Calculate the set of virtual registers that must be passed through each basic
1419// block in order to satisfy the requirements of successor blocks. This is very
Jakob Stoklund Olesen4cb77022010-01-05 20:59:36 +00001420// similar to calcRegsPassed, only backwards.
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001421void MachineVerifier::calcRegsRequired() {
1422 // First push live-in regs to predecessors' vregsRequired.
Jakob Stoklund Olesen6ea6a1442012-03-10 00:36:04 +00001423 SmallPtrSet<const MachineBasicBlock*, 8> todo;
Alexey Samsonov41b977d2014-04-30 18:29:51 +00001424 for (const auto &MBB : *MF) {
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001425 BBInfo &MInfo = MBBInfoMap[&MBB];
1426 for (MachineBasicBlock::const_pred_iterator PrI = MBB.pred_begin(),
1427 PrE = MBB.pred_end(); PrI != PrE; ++PrI) {
1428 BBInfo &PInfo = MBBInfoMap[*PrI];
1429 if (PInfo.addRequired(MInfo.vregsLiveIn))
1430 todo.insert(*PrI);
1431 }
1432 }
1433
1434 // Iteratively push vregsRequired to predecessors. This will converge to the
1435 // same final state regardless of DenseSet iteration order.
1436 while (!todo.empty()) {
1437 const MachineBasicBlock *MBB = *todo.begin();
1438 todo.erase(MBB);
1439 BBInfo &MInfo = MBBInfoMap[MBB];
1440 for (MachineBasicBlock::const_pred_iterator PrI = MBB->pred_begin(),
1441 PrE = MBB->pred_end(); PrI != PrE; ++PrI) {
1442 if (*PrI == MBB)
1443 continue;
1444 BBInfo &SInfo = MBBInfoMap[*PrI];
1445 if (SInfo.addRequired(MInfo.vregsRequired))
1446 todo.insert(*PrI);
1447 }
1448 }
1449}
1450
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001451// Check PHI instructions at the beginning of MBB. It is assumed that
Jakob Stoklund Olesen4cb77022010-01-05 20:59:36 +00001452// calcRegsPassed has been run so BBInfo::isLiveOut is valid.
Jakob Stoklund Olesen63c733f2009-10-04 18:18:39 +00001453void MachineVerifier::checkPHIOps(const MachineBasicBlock *MBB) {
Jakob Stoklund Olesen6ea6a1442012-03-10 00:36:04 +00001454 SmallPtrSet<const MachineBasicBlock*, 8> seen;
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001455 for (const auto &BBI : *MBB) {
1456 if (!BBI.isPHI())
1457 break;
Jakob Stoklund Olesen6ea6a1442012-03-10 00:36:04 +00001458 seen.clear();
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001459
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001460 for (unsigned i = 1, e = BBI.getNumOperands(); i != e; i += 2) {
1461 unsigned Reg = BBI.getOperand(i).getReg();
1462 const MachineBasicBlock *Pre = BBI.getOperand(i + 1).getMBB();
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001463 if (!Pre->isSuccessor(MBB))
1464 continue;
1465 seen.insert(Pre);
1466 BBInfo &PrInfo = MBBInfoMap[Pre];
1467 if (PrInfo.reachable && !PrInfo.isLiveOut(Reg))
1468 report("PHI operand is not live-out from predecessor",
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001469 &BBI.getOperand(i), i);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001470 }
1471
1472 // Did we see all predecessors?
1473 for (MachineBasicBlock::const_pred_iterator PrI = MBB->pred_begin(),
1474 PrE = MBB->pred_end(); PrI != PrE; ++PrI) {
1475 if (!seen.count(*PrI)) {
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001476 report("Missing PHI operand", &BBI);
Owen Anderson21b17882015-02-04 00:02:59 +00001477 errs() << "BB#" << (*PrI)->getNumber()
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001478 << " is a predecessor according to the CFG.\n";
1479 }
1480 }
1481 }
1482}
1483
Jakob Stoklund Olesen63c733f2009-10-04 18:18:39 +00001484void MachineVerifier::visitMachineFunctionAfter() {
Jakob Stoklund Olesen4cb77022010-01-05 20:59:36 +00001485 calcRegsPassed();
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001486
Alexey Samsonov41b977d2014-04-30 18:29:51 +00001487 for (const auto &MBB : *MF) {
1488 BBInfo &MInfo = MBBInfoMap[&MBB];
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001489
1490 // Skip unreachable MBBs.
1491 if (!MInfo.reachable)
1492 continue;
1493
Alexey Samsonov41b977d2014-04-30 18:29:51 +00001494 checkPHIOps(&MBB);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001495 }
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001496
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001497 // Now check liveness info if available
Jakob Stoklund Olesen9f3e5742012-03-10 00:36:06 +00001498 calcRegsRequired();
1499
Jakob Stoklund Olesenda9ea1d2012-06-29 21:00:00 +00001500 // Check for killed virtual registers that should be live out.
Alexey Samsonov41b977d2014-04-30 18:29:51 +00001501 for (const auto &MBB : *MF) {
1502 BBInfo &MInfo = MBBInfoMap[&MBB];
Jakob Stoklund Olesenda9ea1d2012-06-29 21:00:00 +00001503 for (RegSet::iterator
1504 I = MInfo.vregsRequired.begin(), E = MInfo.vregsRequired.end(); I != E;
1505 ++I)
1506 if (MInfo.regsKilled.count(*I)) {
Alexey Samsonov41b977d2014-04-30 18:29:51 +00001507 report("Virtual register killed in block, but needed live out.", &MBB);
Owen Anderson21b17882015-02-04 00:02:59 +00001508 errs() << "Virtual register " << PrintReg(*I)
Jakob Stoklund Olesenda9ea1d2012-06-29 21:00:00 +00001509 << " is used after the block.\n";
1510 }
1511 }
1512
Jakob Stoklund Olesena57fc122012-06-25 18:18:27 +00001513 if (!MF->empty()) {
Jakob Stoklund Olesen9f3e5742012-03-10 00:36:06 +00001514 BBInfo &MInfo = MBBInfoMap[&MF->front()];
1515 for (RegSet::iterator
1516 I = MInfo.vregsRequired.begin(), E = MInfo.vregsRequired.end(); I != E;
Matthias Braun30668dd2016-05-11 21:31:39 +00001517 ++I) {
1518 report("Virtual register defs don't dominate all uses.", MF);
1519 report_context_vreg(*I);
1520 }
Jakob Stoklund Olesen9f3e5742012-03-10 00:36:06 +00001521 }
1522
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001523 if (LiveVars)
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001524 verifyLiveVariables();
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001525 if (LiveInts)
1526 verifyLiveIntervals();
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001527}
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001528
1529void MachineVerifier::verifyLiveVariables() {
1530 assert(LiveVars && "Don't call verifyLiveVariables without LiveVars");
Jakob Stoklund Olesen6ff70ad32011-01-08 23:11:02 +00001531 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
1532 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001533 LiveVariables::VarInfo &VI = LiveVars->getVarInfo(Reg);
Alexey Samsonov41b977d2014-04-30 18:29:51 +00001534 for (const auto &MBB : *MF) {
1535 BBInfo &MInfo = MBBInfoMap[&MBB];
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001536
1537 // Our vregsRequired should be identical to LiveVariables' AliveBlocks
1538 if (MInfo.vregsRequired.count(Reg)) {
Alexey Samsonov41b977d2014-04-30 18:29:51 +00001539 if (!VI.AliveBlocks.test(MBB.getNumber())) {
1540 report("LiveVariables: Block missing from AliveBlocks", &MBB);
Owen Anderson21b17882015-02-04 00:02:59 +00001541 errs() << "Virtual register " << PrintReg(Reg)
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001542 << " must be live through the block.\n";
1543 }
1544 } else {
Alexey Samsonov41b977d2014-04-30 18:29:51 +00001545 if (VI.AliveBlocks.test(MBB.getNumber())) {
1546 report("LiveVariables: Block should not be in AliveBlocks", &MBB);
Owen Anderson21b17882015-02-04 00:02:59 +00001547 errs() << "Virtual register " << PrintReg(Reg)
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001548 << " is not needed live through the block.\n";
1549 }
1550 }
1551 }
1552 }
1553}
1554
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001555void MachineVerifier::verifyLiveIntervals() {
1556 assert(LiveInts && "Don't call verifyLiveIntervals without LiveInts");
Jakob Stoklund Olesen781e0b92012-06-20 23:23:59 +00001557 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
1558 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
Jakob Stoklund Olesen1a065e42010-10-06 23:54:35 +00001559
1560 // Spilling and splitting may leave unused registers around. Skip them.
Jakob Stoklund Olesen781e0b92012-06-20 23:23:59 +00001561 if (MRI->reg_nodbg_empty(Reg))
Jakob Stoklund Olesen1a065e42010-10-06 23:54:35 +00001562 continue;
1563
Jakob Stoklund Olesen781e0b92012-06-20 23:23:59 +00001564 if (!LiveInts->hasInterval(Reg)) {
1565 report("Missing live interval for virtual register", MF);
Owen Anderson21b17882015-02-04 00:02:59 +00001566 errs() << PrintReg(Reg, TRI) << " still has defs or uses\n";
Jakob Stoklund Olesendc5e7062010-10-28 20:44:22 +00001567 continue;
Jakob Stoklund Olesen781e0b92012-06-20 23:23:59 +00001568 }
Jakob Stoklund Olesendc5e7062010-10-28 20:44:22 +00001569
Jakob Stoklund Olesen781e0b92012-06-20 23:23:59 +00001570 const LiveInterval &LI = LiveInts->getInterval(Reg);
1571 assert(Reg == LI.reg && "Invalid reg to interval mapping");
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001572 verifyLiveInterval(LI);
1573 }
Jakob Stoklund Olesen637c4672012-08-02 16:36:50 +00001574
1575 // Verify all the cached regunit intervals.
1576 for (unsigned i = 0, e = TRI->getNumRegUnits(); i != e; ++i)
Matthias Braun34e1be92013-10-10 21:29:02 +00001577 if (const LiveRange *LR = LiveInts->getCachedRegUnit(i))
1578 verifyLiveRange(*LR, i);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001579}
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001580
Matthias Braun364e6e92013-10-10 21:28:54 +00001581void MachineVerifier::verifyLiveRangeValue(const LiveRange &LR,
Matthias Braun3f1d8fd2014-12-10 01:12:10 +00001582 const VNInfo *VNI, unsigned Reg,
Matthias Braune6a24852015-09-25 21:51:14 +00001583 LaneBitmask LaneMask) {
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001584 if (VNI->isUnused())
1585 return;
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001586
Matthias Braun364e6e92013-10-10 21:28:54 +00001587 const VNInfo *DefVNI = LR.getVNInfoAt(VNI->def);
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001588
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001589 if (!DefVNI) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001590 report("Value not live at VNInfo def and not marked unused", MF);
1591 report_context(LR, Reg, LaneMask);
1592 report_context(*VNI);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001593 return;
1594 }
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001595
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001596 if (DefVNI != VNI) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001597 report("Live segment at def has different VNInfo", MF);
1598 report_context(LR, Reg, LaneMask);
1599 report_context(*VNI);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001600 return;
1601 }
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001602
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001603 const MachineBasicBlock *MBB = LiveInts->getMBBFromIndex(VNI->def);
1604 if (!MBB) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001605 report("Invalid VNInfo definition index", MF);
1606 report_context(LR, Reg, LaneMask);
1607 report_context(*VNI);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001608 return;
1609 }
Jakob Stoklund Olesen0fb303d2010-10-22 22:48:58 +00001610
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001611 if (VNI->isPHIDef()) {
1612 if (VNI->def != LiveInts->getMBBStartIdx(MBB)) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001613 report("PHIDef VNInfo is not defined at MBB start", MBB);
1614 report_context(LR, Reg, LaneMask);
1615 report_context(*VNI);
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001616 }
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001617 return;
1618 }
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001619
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001620 // Non-PHI def.
1621 const MachineInstr *MI = LiveInts->getInstructionFromIndex(VNI->def);
1622 if (!MI) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001623 report("No instruction at VNInfo def index", MBB);
1624 report_context(LR, Reg, LaneMask);
1625 report_context(*VNI);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001626 return;
1627 }
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001628
Matthias Braun364e6e92013-10-10 21:28:54 +00001629 if (Reg != 0) {
1630 bool hasDef = false;
1631 bool isEarlyClobber = false;
Duncan P. N. Exon Smithf9ab4162016-02-27 17:05:33 +00001632 for (ConstMIBundleOperands MOI(*MI); MOI.isValid(); ++MOI) {
Matthias Braun364e6e92013-10-10 21:28:54 +00001633 if (!MOI->isReg() || !MOI->isDef())
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001634 continue;
Matthias Braun364e6e92013-10-10 21:28:54 +00001635 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
1636 if (MOI->getReg() != Reg)
1637 continue;
1638 } else {
1639 if (!TargetRegisterInfo::isPhysicalRegister(MOI->getReg()) ||
1640 !TRI->hasRegUnit(MOI->getReg(), Reg))
1641 continue;
1642 }
Matthias Braun3f1d8fd2014-12-10 01:12:10 +00001643 if (LaneMask != 0 &&
1644 (TRI->getSubRegIndexLaneMask(MOI->getSubReg()) & LaneMask) == 0)
1645 continue;
Matthias Braun364e6e92013-10-10 21:28:54 +00001646 hasDef = true;
1647 if (MOI->isEarlyClobber())
1648 isEarlyClobber = true;
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001649 }
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001650
Matthias Braun364e6e92013-10-10 21:28:54 +00001651 if (!hasDef) {
1652 report("Defining instruction does not modify register", MI);
Matthias Braun7e624d52015-11-09 23:59:33 +00001653 report_context(LR, Reg, LaneMask);
1654 report_context(*VNI);
Matthias Braun364e6e92013-10-10 21:28:54 +00001655 }
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001656
Matthias Braun364e6e92013-10-10 21:28:54 +00001657 // Early clobber defs begin at USE slots, but other defs must begin at
1658 // DEF slots.
1659 if (isEarlyClobber) {
1660 if (!VNI->def.isEarlyClobber()) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001661 report("Early clobber def must be at an early-clobber slot", MBB);
1662 report_context(LR, Reg, LaneMask);
1663 report_context(*VNI);
Matthias Braun364e6e92013-10-10 21:28:54 +00001664 }
1665 } else if (!VNI->def.isRegister()) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001666 report("Non-PHI, non-early clobber def must be at a register slot", MBB);
1667 report_context(LR, Reg, LaneMask);
1668 report_context(*VNI);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001669 }
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001670 }
1671}
1672
Matthias Braun364e6e92013-10-10 21:28:54 +00001673void MachineVerifier::verifyLiveRangeSegment(const LiveRange &LR,
1674 const LiveRange::const_iterator I,
Matthias Braune6a24852015-09-25 21:51:14 +00001675 unsigned Reg, LaneBitmask LaneMask)
1676{
Matthias Braun364e6e92013-10-10 21:28:54 +00001677 const LiveRange::Segment &S = *I;
1678 const VNInfo *VNI = S.valno;
Matthias Braun13ddb7c2013-10-10 21:28:43 +00001679 assert(VNI && "Live segment has no valno");
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001680
Matthias Braun364e6e92013-10-10 21:28:54 +00001681 if (VNI->id >= LR.getNumValNums() || VNI != LR.getValNumInfo(VNI->id)) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001682 report("Foreign valno in live segment", MF);
1683 report_context(LR, Reg, LaneMask);
1684 report_context(S);
1685 report_context(*VNI);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001686 }
1687
1688 if (VNI->isUnused()) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001689 report("Live segment valno is marked unused", MF);
1690 report_context(LR, Reg, LaneMask);
1691 report_context(S);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001692 }
1693
Matthias Braun364e6e92013-10-10 21:28:54 +00001694 const MachineBasicBlock *MBB = LiveInts->getMBBFromIndex(S.start);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001695 if (!MBB) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001696 report("Bad start of live segment, no basic block", MF);
1697 report_context(LR, Reg, LaneMask);
1698 report_context(S);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001699 return;
1700 }
1701 SlotIndex MBBStartIdx = LiveInts->getMBBStartIdx(MBB);
Matthias Braun364e6e92013-10-10 21:28:54 +00001702 if (S.start != MBBStartIdx && S.start != VNI->def) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001703 report("Live segment must begin at MBB entry or valno def", MBB);
1704 report_context(LR, Reg, LaneMask);
1705 report_context(S);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001706 }
1707
1708 const MachineBasicBlock *EndMBB =
Matthias Braun364e6e92013-10-10 21:28:54 +00001709 LiveInts->getMBBFromIndex(S.end.getPrevSlot());
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001710 if (!EndMBB) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001711 report("Bad end of live segment, no basic block", MF);
1712 report_context(LR, Reg, LaneMask);
1713 report_context(S);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001714 return;
1715 }
1716
1717 // No more checks for live-out segments.
Matthias Braun364e6e92013-10-10 21:28:54 +00001718 if (S.end == LiveInts->getMBBEndIdx(EndMBB))
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001719 return;
1720
Jakob Stoklund Olesen637c4672012-08-02 16:36:50 +00001721 // RegUnit intervals are allowed dead phis.
Matthias Braun364e6e92013-10-10 21:28:54 +00001722 if (!TargetRegisterInfo::isVirtualRegister(Reg) && VNI->isPHIDef() &&
1723 S.start == VNI->def && S.end == VNI->def.getDeadSlot())
Jakob Stoklund Olesen637c4672012-08-02 16:36:50 +00001724 return;
1725
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001726 // The live segment is ending inside EndMBB
1727 const MachineInstr *MI =
Matthias Braun364e6e92013-10-10 21:28:54 +00001728 LiveInts->getInstructionFromIndex(S.end.getPrevSlot());
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001729 if (!MI) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001730 report("Live segment doesn't end at a valid instruction", EndMBB);
1731 report_context(LR, Reg, LaneMask);
1732 report_context(S);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001733 return;
1734 }
1735
1736 // The block slot must refer to a basic block boundary.
Matthias Braun364e6e92013-10-10 21:28:54 +00001737 if (S.end.isBlock()) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001738 report("Live segment ends at B slot of an instruction", EndMBB);
1739 report_context(LR, Reg, LaneMask);
1740 report_context(S);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001741 }
1742
Matthias Braun364e6e92013-10-10 21:28:54 +00001743 if (S.end.isDead()) {
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001744 // Segment ends on the dead slot.
1745 // That means there must be a dead def.
Matthias Braun364e6e92013-10-10 21:28:54 +00001746 if (!SlotIndex::isSameInstr(S.start, S.end)) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001747 report("Live segment ending at dead slot spans instructions", EndMBB);
1748 report_context(LR, Reg, LaneMask);
1749 report_context(S);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001750 }
1751 }
1752
1753 // A live segment can only end at an early-clobber slot if it is being
1754 // redefined by an early-clobber def.
Matthias Braun364e6e92013-10-10 21:28:54 +00001755 if (S.end.isEarlyClobber()) {
1756 if (I+1 == LR.end() || (I+1)->start != S.end) {
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001757 report("Live segment ending at early clobber slot must be "
Matthias Braun7e624d52015-11-09 23:59:33 +00001758 "redefined by an EC def in the same instruction", EndMBB);
1759 report_context(LR, Reg, LaneMask);
1760 report_context(S);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001761 }
1762 }
1763
1764 // The following checks only apply to virtual registers. Physreg liveness
1765 // is too weird to check.
Matthias Braun364e6e92013-10-10 21:28:54 +00001766 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Matthias Braun13ddb7c2013-10-10 21:28:43 +00001767 // A live segment can end with either a redefinition, a kill flag on a
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001768 // use, or a dead flag on a def.
1769 bool hasRead = false;
Matthias Braun21554d92014-12-10 01:13:11 +00001770 bool hasSubRegDef = false;
Matthias Braun72a58c32016-03-29 19:07:43 +00001771 bool hasDeadDef = false;
Duncan P. N. Exon Smithf9ab4162016-02-27 17:05:33 +00001772 for (ConstMIBundleOperands MOI(*MI); MOI.isValid(); ++MOI) {
Matthias Braun364e6e92013-10-10 21:28:54 +00001773 if (!MOI->isReg() || MOI->getReg() != Reg)
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001774 continue;
Matthias Braun3f1d8fd2014-12-10 01:12:10 +00001775 if (LaneMask != 0 &&
1776 (LaneMask & TRI->getSubRegIndexLaneMask(MOI->getSubReg())) == 0)
1777 continue;
Matthias Braun72a58c32016-03-29 19:07:43 +00001778 if (MOI->isDef()) {
1779 if (MOI->getSubReg() != 0)
1780 hasSubRegDef = true;
1781 if (MOI->isDead())
1782 hasDeadDef = true;
1783 }
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001784 if (MOI->readsReg())
1785 hasRead = true;
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001786 }
Matthias Braun72a58c32016-03-29 19:07:43 +00001787 if (S.end.isDead()) {
1788 // Make sure that the corresponding machine operand for a "dead" live
1789 // range has the dead flag. We cannot perform this check for subregister
1790 // liveranges as partially dead values are allowed.
1791 if (LaneMask == 0 && !hasDeadDef) {
1792 report("Instruction ending live segment on dead slot has no dead flag",
1793 MI);
1794 report_context(LR, Reg, LaneMask);
1795 report_context(S);
1796 }
1797 } else {
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001798 if (!hasRead) {
Matthias Braun21554d92014-12-10 01:13:11 +00001799 // When tracking subregister liveness, the main range must start new
1800 // values on partial register writes, even if there is no read.
Matthias Brauna25e13a2015-03-19 00:21:58 +00001801 if (!MRI->shouldTrackSubRegLiveness(Reg) || LaneMask != 0 ||
1802 !hasSubRegDef) {
Matthias Braun21554d92014-12-10 01:13:11 +00001803 report("Instruction ending live segment doesn't read the register",
1804 MI);
Matthias Braun7e624d52015-11-09 23:59:33 +00001805 report_context(LR, Reg, LaneMask);
1806 report_context(S);
Matthias Braun21554d92014-12-10 01:13:11 +00001807 }
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001808 }
1809 }
1810 }
1811
1812 // Now check all the basic blocks in this live segment.
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +00001813 MachineFunction::const_iterator MFI = MBB->getIterator();
Matthias Braun13ddb7c2013-10-10 21:28:43 +00001814 // Is this live segment the beginning of a non-PHIDef VN?
Matthias Braun364e6e92013-10-10 21:28:54 +00001815 if (S.start == VNI->def && !VNI->isPHIDef()) {
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001816 // Not live-in to any blocks.
1817 if (MBB == EndMBB)
1818 return;
1819 // Skip this block.
1820 ++MFI;
1821 }
1822 for (;;) {
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +00001823 assert(LiveInts->isLiveInToMBB(LR, &*MFI));
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001824 // We don't know how to track physregs into a landing pad.
Matthias Braun364e6e92013-10-10 21:28:54 +00001825 if (!TargetRegisterInfo::isVirtualRegister(Reg) &&
Reid Kleckner0e288232015-08-27 23:27:47 +00001826 MFI->isEHPad()) {
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001827 if (&*MFI == EndMBB)
1828 break;
1829 ++MFI;
1830 continue;
1831 }
1832
1833 // Is VNI a PHI-def in the current block?
1834 bool IsPHI = VNI->isPHIDef() &&
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +00001835 VNI->def == LiveInts->getMBBStartIdx(&*MFI);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001836
1837 // Check that VNI is live-out of all predecessors.
1838 for (MachineBasicBlock::const_pred_iterator PI = MFI->pred_begin(),
1839 PE = MFI->pred_end(); PI != PE; ++PI) {
1840 SlotIndex PEnd = LiveInts->getMBBEndIdx(*PI);
Matthias Braun364e6e92013-10-10 21:28:54 +00001841 const VNInfo *PVNI = LR.getVNInfoBefore(PEnd);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001842
Matthias Braune29b7682016-05-20 23:02:13 +00001843 // All predecessors must have a live-out value if this is not a
1844 // subregister liverange.
1845 if (!PVNI && LaneMask == 0) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001846 report("Register not marked live out of predecessor", *PI);
1847 report_context(LR, Reg, LaneMask);
1848 report_context(*VNI);
1849 errs() << " live into BB#" << MFI->getNumber()
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +00001850 << '@' << LiveInts->getMBBStartIdx(&*MFI) << ", not live before "
1851 << PEnd << '\n';
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001852 continue;
1853 }
1854
1855 // Only PHI-defs can take different predecessor values.
1856 if (!IsPHI && PVNI != VNI) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001857 report("Different value live out of predecessor", *PI);
1858 report_context(LR, Reg, LaneMask);
Owen Anderson21b17882015-02-04 00:02:59 +00001859 errs() << "Valno #" << PVNI->id << " live out of BB#"
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +00001860 << (*PI)->getNumber() << '@' << PEnd << "\nValno #" << VNI->id
1861 << " live into BB#" << MFI->getNumber() << '@'
1862 << LiveInts->getMBBStartIdx(&*MFI) << '\n';
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001863 }
1864 }
1865 if (&*MFI == EndMBB)
1866 break;
1867 ++MFI;
1868 }
1869}
1870
Matthias Braun3f1d8fd2014-12-10 01:12:10 +00001871void MachineVerifier::verifyLiveRange(const LiveRange &LR, unsigned Reg,
Matthias Braune6a24852015-09-25 21:51:14 +00001872 LaneBitmask LaneMask) {
Matthias Braun96761952014-12-10 23:07:54 +00001873 for (const VNInfo *VNI : LR.valnos)
1874 verifyLiveRangeValue(LR, VNI, Reg, LaneMask);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001875
Matthias Braun364e6e92013-10-10 21:28:54 +00001876 for (LiveRange::const_iterator I = LR.begin(), E = LR.end(); I != E; ++I)
Matthias Braun3f1d8fd2014-12-10 01:12:10 +00001877 verifyLiveRangeSegment(LR, I, Reg, LaneMask);
Matthias Braun364e6e92013-10-10 21:28:54 +00001878}
1879
1880void MachineVerifier::verifyLiveInterval(const LiveInterval &LI) {
Matthias Braun3f1d8fd2014-12-10 01:12:10 +00001881 unsigned Reg = LI.reg;
Matthias Braune962e522015-03-25 21:18:22 +00001882 assert(TargetRegisterInfo::isVirtualRegister(Reg));
1883 verifyLiveRange(LI, Reg);
1884
Matthias Braune6a24852015-09-25 21:51:14 +00001885 LaneBitmask Mask = 0;
1886 LaneBitmask MaxMask = MRI->getMaxLaneMaskForVReg(Reg);
Matthias Braune962e522015-03-25 21:18:22 +00001887 for (const LiveInterval::SubRange &SR : LI.subranges()) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001888 if ((Mask & SR.LaneMask) != 0) {
1889 report("Lane masks of sub ranges overlap in live interval", MF);
1890 report_context(LI);
1891 }
1892 if ((SR.LaneMask & ~MaxMask) != 0) {
1893 report("Subrange lanemask is invalid", MF);
1894 report_context(LI);
1895 }
1896 if (SR.empty()) {
1897 report("Subrange must not be empty", MF);
1898 report_context(SR, LI.reg, SR.LaneMask);
1899 }
Matthias Braune962e522015-03-25 21:18:22 +00001900 Mask |= SR.LaneMask;
1901 verifyLiveRange(SR, LI.reg, SR.LaneMask);
Matthias Braun7e624d52015-11-09 23:59:33 +00001902 if (!LI.covers(SR)) {
1903 report("A Subrange is not covered by the main range", MF);
1904 report_context(LI);
1905 }
Matthias Braun3f1d8fd2014-12-10 01:12:10 +00001906 }
1907
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001908 // Check the LI only has one connected component.
Matthias Braune962e522015-03-25 21:18:22 +00001909 ConnectedVNInfoEqClasses ConEQ(*LiveInts);
Matthias Braunbf47f632016-01-08 01:16:35 +00001910 unsigned NumComp = ConEQ.Classify(LI);
Matthias Braune962e522015-03-25 21:18:22 +00001911 if (NumComp > 1) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001912 report("Multiple connected components in live interval", MF);
1913 report_context(LI);
Matthias Braune962e522015-03-25 21:18:22 +00001914 for (unsigned comp = 0; comp != NumComp; ++comp) {
1915 errs() << comp << ": valnos";
1916 for (LiveInterval::const_vni_iterator I = LI.vni_begin(),
1917 E = LI.vni_end(); I!=E; ++I)
1918 if (comp == ConEQ.getEqClass(*I))
1919 errs() << ' ' << (*I)->id;
1920 errs() << '\n';
Jakob Stoklund Olesen260fa282010-10-26 22:36:07 +00001921 }
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001922 }
1923}
Manman Renaa6875b2013-07-15 21:26:31 +00001924
1925namespace {
1926 // FrameSetup and FrameDestroy can have zero adjustment, so using a single
1927 // integer, we can't tell whether it is a FrameSetup or FrameDestroy if the
1928 // value is zero.
1929 // We use a bool plus an integer to capture the stack state.
1930 struct StackStateOfBB {
1931 StackStateOfBB() : EntryValue(0), ExitValue(0), EntryIsSetup(false),
1932 ExitIsSetup(false) { }
1933 StackStateOfBB(int EntryVal, int ExitVal, bool EntrySetup, bool ExitSetup) :
1934 EntryValue(EntryVal), ExitValue(ExitVal), EntryIsSetup(EntrySetup),
1935 ExitIsSetup(ExitSetup) { }
1936 // Can be negative, which means we are setting up a frame.
1937 int EntryValue;
1938 int ExitValue;
1939 bool EntryIsSetup;
1940 bool ExitIsSetup;
1941 };
Alexander Kornienkof00654e2015-06-23 09:49:53 +00001942}
Manman Renaa6875b2013-07-15 21:26:31 +00001943
1944/// Make sure on every path through the CFG, a FrameSetup <n> is always followed
1945/// by a FrameDestroy <n>, stack adjustments are identical on all
1946/// CFG edges to a merge point, and frame is destroyed at end of a return block.
1947void MachineVerifier::verifyStackFrame() {
Matthias Braunfa3872e2015-05-18 20:27:55 +00001948 unsigned FrameSetupOpcode = TII->getCallFrameSetupOpcode();
1949 unsigned FrameDestroyOpcode = TII->getCallFrameDestroyOpcode();
Manman Renaa6875b2013-07-15 21:26:31 +00001950
1951 SmallVector<StackStateOfBB, 8> SPState;
1952 SPState.resize(MF->getNumBlockIDs());
1953 SmallPtrSet<const MachineBasicBlock*, 8> Reachable;
1954
1955 // Visit the MBBs in DFS order.
1956 for (df_ext_iterator<const MachineFunction*,
1957 SmallPtrSet<const MachineBasicBlock*, 8> >
1958 DFI = df_ext_begin(MF, Reachable), DFE = df_ext_end(MF, Reachable);
1959 DFI != DFE; ++DFI) {
1960 const MachineBasicBlock *MBB = *DFI;
1961
1962 StackStateOfBB BBState;
1963 // Check the exit state of the DFS stack predecessor.
1964 if (DFI.getPathLength() >= 2) {
1965 const MachineBasicBlock *StackPred = DFI.getPath(DFI.getPathLength() - 2);
1966 assert(Reachable.count(StackPred) &&
1967 "DFS stack predecessor is already visited.\n");
1968 BBState.EntryValue = SPState[StackPred->getNumber()].ExitValue;
1969 BBState.EntryIsSetup = SPState[StackPred->getNumber()].ExitIsSetup;
1970 BBState.ExitValue = BBState.EntryValue;
1971 BBState.ExitIsSetup = BBState.EntryIsSetup;
1972 }
1973
1974 // Update stack state by checking contents of MBB.
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001975 for (const auto &I : *MBB) {
1976 if (I.getOpcode() == FrameSetupOpcode) {
Manman Renaa6875b2013-07-15 21:26:31 +00001977 // The first operand of a FrameOpcode should be i32.
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001978 int Size = I.getOperand(0).getImm();
Manman Renaa6875b2013-07-15 21:26:31 +00001979 assert(Size >= 0 &&
1980 "Value should be non-negative in FrameSetup and FrameDestroy.\n");
1981
1982 if (BBState.ExitIsSetup)
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001983 report("FrameSetup is after another FrameSetup", &I);
Manman Renaa6875b2013-07-15 21:26:31 +00001984 BBState.ExitValue -= Size;
1985 BBState.ExitIsSetup = true;
1986 }
1987
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001988 if (I.getOpcode() == FrameDestroyOpcode) {
Manman Renaa6875b2013-07-15 21:26:31 +00001989 // The first operand of a FrameOpcode should be i32.
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001990 int Size = I.getOperand(0).getImm();
Manman Renaa6875b2013-07-15 21:26:31 +00001991 assert(Size >= 0 &&
1992 "Value should be non-negative in FrameSetup and FrameDestroy.\n");
1993
1994 if (!BBState.ExitIsSetup)
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001995 report("FrameDestroy is not after a FrameSetup", &I);
Manman Renaa6875b2013-07-15 21:26:31 +00001996 int AbsSPAdj = BBState.ExitValue < 0 ? -BBState.ExitValue :
1997 BBState.ExitValue;
1998 if (BBState.ExitIsSetup && AbsSPAdj != Size) {
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001999 report("FrameDestroy <n> is after FrameSetup <m>", &I);
Owen Anderson21b17882015-02-04 00:02:59 +00002000 errs() << "FrameDestroy <" << Size << "> is after FrameSetup <"
Manman Renaa6875b2013-07-15 21:26:31 +00002001 << AbsSPAdj << ">.\n";
2002 }
2003 BBState.ExitValue += Size;
2004 BBState.ExitIsSetup = false;
2005 }
2006 }
2007 SPState[MBB->getNumber()] = BBState;
2008
2009 // Make sure the exit state of any predecessor is consistent with the entry
2010 // state.
2011 for (MachineBasicBlock::const_pred_iterator I = MBB->pred_begin(),
2012 E = MBB->pred_end(); I != E; ++I) {
2013 if (Reachable.count(*I) &&
2014 (SPState[(*I)->getNumber()].ExitValue != BBState.EntryValue ||
2015 SPState[(*I)->getNumber()].ExitIsSetup != BBState.EntryIsSetup)) {
2016 report("The exit stack state of a predecessor is inconsistent.", MBB);
Owen Anderson21b17882015-02-04 00:02:59 +00002017 errs() << "Predecessor BB#" << (*I)->getNumber() << " has exit state ("
Manman Renaa6875b2013-07-15 21:26:31 +00002018 << SPState[(*I)->getNumber()].ExitValue << ", "
2019 << SPState[(*I)->getNumber()].ExitIsSetup
2020 << "), while BB#" << MBB->getNumber() << " has entry state ("
2021 << BBState.EntryValue << ", " << BBState.EntryIsSetup << ").\n";
2022 }
2023 }
2024
2025 // Make sure the entry state of any successor is consistent with the exit
2026 // state.
2027 for (MachineBasicBlock::const_succ_iterator I = MBB->succ_begin(),
2028 E = MBB->succ_end(); I != E; ++I) {
2029 if (Reachable.count(*I) &&
2030 (SPState[(*I)->getNumber()].EntryValue != BBState.ExitValue ||
2031 SPState[(*I)->getNumber()].EntryIsSetup != BBState.ExitIsSetup)) {
2032 report("The entry stack state of a successor is inconsistent.", MBB);
Owen Anderson21b17882015-02-04 00:02:59 +00002033 errs() << "Successor BB#" << (*I)->getNumber() << " has entry state ("
Manman Renaa6875b2013-07-15 21:26:31 +00002034 << SPState[(*I)->getNumber()].EntryValue << ", "
2035 << SPState[(*I)->getNumber()].EntryIsSetup
2036 << "), while BB#" << MBB->getNumber() << " has exit state ("
2037 << BBState.ExitValue << ", " << BBState.ExitIsSetup << ").\n";
2038 }
2039 }
2040
2041 // Make sure a basic block with return ends with zero stack adjustment.
2042 if (!MBB->empty() && MBB->back().isReturn()) {
2043 if (BBState.ExitIsSetup)
2044 report("A return block ends with a FrameSetup.", MBB);
2045 if (BBState.ExitValue)
2046 report("A return block ends with a nonzero stack adjustment.", MBB);
2047 }
2048 }
2049}