blob: 7eb42ecdf0a3a49142d787ebff5f27fb680f237c [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
Ahmed Bougacha3681c772016-08-02 16:17:15 +000073 // Avoid querying the MachineFunctionProperties for each operand.
74 bool isFunctionRegBankSelected;
Ahmed Bougachab14e9442016-08-02 16:49:22 +000075 bool isFunctionSelected;
Ahmed Bougacha3681c772016-08-02 16:17:15 +000076
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +000077 typedef SmallVector<unsigned, 16> RegVector;
Jakob Stoklund Olesen16c4a972012-02-28 01:42:41 +000078 typedef SmallVector<const uint32_t*, 4> RegMaskVector;
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +000079 typedef DenseSet<unsigned> RegSet;
80 typedef DenseMap<unsigned, const MachineInstr*> RegMap;
Jakob Stoklund Olesende31b522012-08-20 20:52:06 +000081 typedef SmallPtrSet<const MachineBasicBlock*, 8> BlockSet;
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +000082
Jakob Stoklund Olesen3bb99bc2011-09-23 22:45:39 +000083 const MachineInstr *FirstTerminator;
Jakob Stoklund Olesende31b522012-08-20 20:52:06 +000084 BlockSet FunctionBlocks;
Jakob Stoklund Olesen3bb99bc2011-09-23 22:45:39 +000085
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +000086 BitVector regsReserved;
87 RegSet regsLive;
Jakob Stoklund Olesen2d59cff2009-08-08 13:19:25 +000088 RegVector regsDefined, regsDead, regsKilled;
Jakob Stoklund Olesen16c4a972012-02-28 01:42:41 +000089 RegMaskVector regMasks;
Jakob Stoklund Olesen2d59cff2009-08-08 13:19:25 +000090 RegSet regsLiveInButUnused;
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +000091
Jakob Stoklund Olesen58b6f4d2011-01-12 21:27:48 +000092 SlotIndex lastIndex;
93
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +000094 // Add Reg and any sub-registers to RV
95 void addRegWithSubRegs(RegVector &RV, unsigned Reg) {
96 RV.push_back(Reg);
97 if (TargetRegisterInfo::isPhysicalRegister(Reg))
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +000098 for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid(); ++SubRegs)
99 RV.push_back(*SubRegs);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000100 }
101
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000102 struct BBInfo {
103 // Is this MBB reachable from the MF entry point?
104 bool reachable;
105
106 // Vregs that must be live in because they are used without being
107 // defined. Map value is the user.
108 RegMap vregsLiveIn;
109
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000110 // Regs killed in MBB. They may be defined again, and will then be in both
111 // regsKilled and regsLiveOut.
112 RegSet regsKilled;
113
114 // Regs defined in MBB and live out. Note that vregs passing through may
115 // be live out without being mentioned here.
116 RegSet regsLiveOut;
117
118 // Vregs that pass through MBB untouched. This set is disjoint from
119 // regsKilled and regsLiveOut.
120 RegSet vregsPassed;
121
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +0000122 // Vregs that must pass through MBB because they are needed by a successor
123 // block. This set is disjoint from regsLiveOut.
124 RegSet vregsRequired;
125
Jakob Stoklund Olesende31b522012-08-20 20:52:06 +0000126 // Set versions of block's predecessor and successor lists.
127 BlockSet Preds, Succs;
128
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000129 BBInfo() : reachable(false) {}
130
131 // Add register to vregsPassed if it belongs there. Return true if
132 // anything changed.
133 bool addPassed(unsigned Reg) {
134 if (!TargetRegisterInfo::isVirtualRegister(Reg))
135 return false;
136 if (regsKilled.count(Reg) || regsLiveOut.count(Reg))
137 return false;
138 return vregsPassed.insert(Reg).second;
139 }
140
141 // Same for a full set.
142 bool addPassed(const RegSet &RS) {
143 bool changed = false;
144 for (RegSet::const_iterator I = RS.begin(), E = RS.end(); I != E; ++I)
145 if (addPassed(*I))
146 changed = true;
147 return changed;
148 }
149
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +0000150 // Add register to vregsRequired if it belongs there. Return true if
151 // anything changed.
152 bool addRequired(unsigned Reg) {
153 if (!TargetRegisterInfo::isVirtualRegister(Reg))
154 return false;
155 if (regsLiveOut.count(Reg))
156 return false;
157 return vregsRequired.insert(Reg).second;
158 }
159
160 // Same for a full set.
161 bool addRequired(const RegSet &RS) {
162 bool changed = false;
163 for (RegSet::const_iterator I = RS.begin(), E = RS.end(); I != E; ++I)
164 if (addRequired(*I))
165 changed = true;
166 return changed;
167 }
168
169 // Same for a full map.
170 bool addRequired(const RegMap &RM) {
171 bool changed = false;
172 for (RegMap::const_iterator I = RM.begin(), E = RM.end(); I != E; ++I)
173 if (addRequired(I->first))
174 changed = true;
175 return changed;
176 }
177
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000178 // Live-out registers are either in regsLiveOut or vregsPassed.
179 bool isLiveOut(unsigned Reg) const {
180 return regsLiveOut.count(Reg) || vregsPassed.count(Reg);
181 }
182 };
183
184 // Extra register info per MBB.
185 DenseMap<const MachineBasicBlock*, BBInfo> MBBInfoMap;
186
187 bool isReserved(unsigned Reg) {
Jakob Stoklund Olesen3c2a1de2009-08-04 19:18:01 +0000188 return Reg < regsReserved.size() && regsReserved.test(Reg);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000189 }
190
Lang Hames1ce837a2012-02-14 19:17:48 +0000191 bool isAllocatable(unsigned Reg) {
Jakob Stoklund Olesen244beb42012-10-16 00:05:06 +0000192 return Reg < TRI->getNumRegs() && MRI->isAllocatable(Reg);
Lang Hames1ce837a2012-02-14 19:17:48 +0000193 }
194
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +0000195 // Analysis information if available
196 LiveVariables *LiveVars;
Jakob Stoklund Olesen260fa282010-10-26 22:36:07 +0000197 LiveIntervals *LiveInts;
Jakob Stoklund Olesen31fffb62010-11-01 19:49:52 +0000198 LiveStacks *LiveStks;
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000199 SlotIndexes *Indexes;
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +0000200
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000201 void visitMachineFunctionBefore();
202 void visitMachineBasicBlockBefore(const MachineBasicBlock *MBB);
Jakob Stoklund Olesen00e7dff2012-06-06 22:34:30 +0000203 void visitMachineBundleBefore(const MachineInstr *MI);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000204 void visitMachineInstrBefore(const MachineInstr *MI);
205 void visitMachineOperand(const MachineOperand *MO, unsigned MONum);
206 void visitMachineInstrAfter(const MachineInstr *MI);
Jakob Stoklund Olesen00e7dff2012-06-06 22:34:30 +0000207 void visitMachineBundleAfter(const MachineInstr *MI);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000208 void visitMachineBasicBlockAfter(const MachineBasicBlock *MBB);
209 void visitMachineFunctionAfter();
210
211 void report(const char *msg, const MachineFunction *MF);
212 void report(const char *msg, const MachineBasicBlock *MBB);
213 void report(const char *msg, const MachineInstr *MI);
214 void report(const char *msg, const MachineOperand *MO, unsigned MONum);
Matthias Braun7e624d52015-11-09 23:59:33 +0000215
216 void report_context(const LiveInterval &LI) const;
Matt Arsenault892fcd02016-07-25 19:39:01 +0000217 void report_context(const LiveRange &LR, unsigned VRegUnit,
Matthias Braun7e624d52015-11-09 23:59:33 +0000218 LaneBitmask LaneMask) const;
219 void report_context(const LiveRange::Segment &S) const;
220 void report_context(const VNInfo &VNI) const;
Matthias Braun579c9cd2016-02-02 02:44:25 +0000221 void report_context(SlotIndex Pos) const;
222 void report_context_liverange(const LiveRange &LR) const;
Matthias Braun1377fd62016-02-02 20:04:51 +0000223 void report_context_lanemask(LaneBitmask LaneMask) const;
Matthias Braun30668dd2016-05-11 21:31:39 +0000224 void report_context_vreg(unsigned VReg) const;
Matthias Braun1377fd62016-02-02 20:04:51 +0000225 void report_context_vreg_regunit(unsigned VRegOrRegUnit) const;
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000226
Jakob Stoklund Olesen7a837b92012-08-29 18:11:05 +0000227 void verifyInlineAsm(const MachineInstr *MI);
Jakob Stoklund Olesen7a837b92012-08-29 18:11:05 +0000228
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +0000229 void checkLiveness(const MachineOperand *MO, unsigned MONum);
Matthias Braun1377fd62016-02-02 20:04:51 +0000230 void checkLivenessAtUse(const MachineOperand *MO, unsigned MONum,
231 SlotIndex UseIdx, const LiveRange &LR, unsigned Reg,
Krzysztof Parzyszek91b5cf82016-12-15 14:36:06 +0000232 LaneBitmask LaneMask = LaneBitmask::getNone());
Matthias Braun1377fd62016-02-02 20:04:51 +0000233 void checkLivenessAtDef(const MachineOperand *MO, unsigned MONum,
234 SlotIndex DefIdx, const LiveRange &LR, unsigned Reg,
Krzysztof Parzyszek91b5cf82016-12-15 14:36:06 +0000235 LaneBitmask LaneMask = LaneBitmask::getNone());
Matthias Braun1377fd62016-02-02 20:04:51 +0000236
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000237 void markReachable(const MachineBasicBlock *MBB);
Jakob Stoklund Olesen4cb77022010-01-05 20:59:36 +0000238 void calcRegsPassed();
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000239 void checkPHIOps(const MachineBasicBlock *MBB);
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +0000240
241 void calcRegsRequired();
242 void verifyLiveVariables();
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +0000243 void verifyLiveIntervals();
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +0000244 void verifyLiveInterval(const LiveInterval&);
Matthias Braun3f1d8fd2014-12-10 01:12:10 +0000245 void verifyLiveRangeValue(const LiveRange&, const VNInfo*, unsigned,
Krzysztof Parzyszek91b5cf82016-12-15 14:36:06 +0000246 LaneBitmask);
Matthias Braun364e6e92013-10-10 21:28:54 +0000247 void verifyLiveRangeSegment(const LiveRange&,
Matthias Braun3f1d8fd2014-12-10 01:12:10 +0000248 const LiveRange::const_iterator I, unsigned,
Krzysztof Parzyszek91b5cf82016-12-15 14:36:06 +0000249 LaneBitmask);
250 void verifyLiveRange(const LiveRange&, unsigned,
251 LaneBitmask LaneMask = LaneBitmask::getNone());
Manman Renaa6875b2013-07-15 21:26:31 +0000252
253 void verifyStackFrame();
Matthias Braun80595462015-09-09 17:49:46 +0000254
255 void verifySlotIndexes() const;
Derek Schuff42666ee2016-03-29 17:40:22 +0000256 void verifyProperties(const MachineFunction &MF);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000257 };
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +0000258
259 struct MachineVerifierPass : public MachineFunctionPass {
260 static char ID; // Pass ID, replacement for typeid
Matthias Brauna4e932d2014-12-11 19:41:51 +0000261 const std::string Banner;
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +0000262
Matthias Brauna4e932d2014-12-11 19:41:51 +0000263 MachineVerifierPass(const std::string &banner = nullptr)
264 : MachineFunctionPass(ID), Banner(banner) {
Owen Anderson6c18d1a2010-10-19 17:21:58 +0000265 initializeMachineVerifierPassPass(*PassRegistry::getPassRegistry());
266 }
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +0000267
Craig Topper4584cd52014-03-07 09:26:03 +0000268 void getAnalysisUsage(AnalysisUsage &AU) const override {
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +0000269 AU.setPreservesAll();
270 MachineFunctionPass::getAnalysisUsage(AU);
271 }
272
Craig Topper4584cd52014-03-07 09:26:03 +0000273 bool runOnMachineFunction(MachineFunction &MF) override {
Matthias Braunb3aefc32016-02-15 19:25:31 +0000274 unsigned FoundErrors = MachineVerifier(this, Banner.c_str()).verify(MF);
275 if (FoundErrors)
276 report_fatal_error("Found "+Twine(FoundErrors)+" machine code errors.");
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +0000277 return false;
278 }
279 };
280
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000281}
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000282
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +0000283char MachineVerifierPass::ID = 0;
Owen Andersond31d82d2010-08-23 17:52:01 +0000284INITIALIZE_PASS(MachineVerifierPass, "machineverifier",
Owen Andersondf7a4f22010-10-07 22:25:06 +0000285 "Verify generated machine code", false, false)
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000286
Matthias Brauna4e932d2014-12-11 19:41:51 +0000287FunctionPass *llvm::createMachineVerifierPass(const std::string &Banner) {
Jakob Stoklund Olesenbf4550e2010-12-18 00:06:56 +0000288 return new MachineVerifierPass(Banner);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000289}
290
Matthias Braunb3aefc32016-02-15 19:25:31 +0000291bool MachineFunction::verify(Pass *p, const char *Banner, bool AbortOnErrors)
292 const {
293 MachineFunction &MF = const_cast<MachineFunction&>(*this);
294 unsigned FoundErrors = MachineVerifier(p, Banner).verify(MF);
295 if (AbortOnErrors && FoundErrors)
296 report_fatal_error("Found "+Twine(FoundErrors)+" machine code errors.");
297 return FoundErrors == 0;
Jakob Stoklund Olesen27440e72009-11-13 21:56:09 +0000298}
299
Matthias Braun80595462015-09-09 17:49:46 +0000300void MachineVerifier::verifySlotIndexes() const {
301 if (Indexes == nullptr)
302 return;
303
304 // Ensure the IdxMBB list is sorted by slot indexes.
305 SlotIndex Last;
306 for (SlotIndexes::MBBIndexIterator I = Indexes->MBBIndexBegin(),
307 E = Indexes->MBBIndexEnd(); I != E; ++I) {
308 assert(!Last.isValid() || I->first > Last);
309 Last = I->first;
310 }
311}
312
Derek Schuff42666ee2016-03-29 17:40:22 +0000313void MachineVerifier::verifyProperties(const MachineFunction &MF) {
314 // If a pass has introduced virtual registers without clearing the
Matthias Braun1eb47362016-08-25 01:27:13 +0000315 // NoVRegs property (or set it without allocating the vregs)
Derek Schuff42666ee2016-03-29 17:40:22 +0000316 // then report an error.
317 if (MF.getProperties().hasProperty(
Matthias Braun1eb47362016-08-25 01:27:13 +0000318 MachineFunctionProperties::Property::NoVRegs) &&
319 MRI->getNumVirtRegs())
320 report("Function has NoVRegs property but there are VReg operands", &MF);
Derek Schuff42666ee2016-03-29 17:40:22 +0000321}
322
Matthias Braunb3aefc32016-02-15 19:25:31 +0000323unsigned MachineVerifier::verify(MachineFunction &MF) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000324 foundErrors = 0;
325
326 this->MF = &MF;
327 TM = &MF.getTarget();
Eric Christophereb9e87f2014-10-14 07:00:33 +0000328 TII = MF.getSubtarget().getInstrInfo();
329 TRI = MF.getSubtarget().getRegisterInfo();
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000330 MRI = &MF.getRegInfo();
331
Ahmed Bougacha3681c772016-08-02 16:17:15 +0000332 isFunctionRegBankSelected = MF.getProperties().hasProperty(
333 MachineFunctionProperties::Property::RegBankSelected);
Ahmed Bougachab14e9442016-08-02 16:49:22 +0000334 isFunctionSelected = MF.getProperties().hasProperty(
335 MachineFunctionProperties::Property::Selected);
Ahmed Bougacha3681c772016-08-02 16:17:15 +0000336
Craig Topperc0196b12014-04-14 00:51:57 +0000337 LiveVars = nullptr;
338 LiveInts = nullptr;
339 LiveStks = nullptr;
340 Indexes = nullptr;
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +0000341 if (PASS) {
Jakob Stoklund Olesene7709eb2010-08-05 22:32:21 +0000342 LiveInts = PASS->getAnalysisIfAvailable<LiveIntervals>();
Jakob Stoklund Olesenb4ef4a92010-08-05 23:51:26 +0000343 // We don't want to verify LiveVariables if LiveIntervals is available.
344 if (!LiveInts)
345 LiveVars = PASS->getAnalysisIfAvailable<LiveVariables>();
Jakob Stoklund Olesen31fffb62010-11-01 19:49:52 +0000346 LiveStks = PASS->getAnalysisIfAvailable<LiveStacks>();
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000347 Indexes = PASS->getAnalysisIfAvailable<SlotIndexes>();
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +0000348 }
349
Matthias Braun80595462015-09-09 17:49:46 +0000350 verifySlotIndexes();
351
Derek Schuff42666ee2016-03-29 17:40:22 +0000352 verifyProperties(MF);
353
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000354 visitMachineFunctionBefore();
355 for (MachineFunction::const_iterator MFI = MF.begin(), MFE = MF.end();
356 MFI!=MFE; ++MFI) {
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000357 visitMachineBasicBlockBefore(&*MFI);
Jakob Stoklund Olesen00e7dff2012-06-06 22:34:30 +0000358 // Keep track of the current bundle header.
Craig Topperc0196b12014-04-14 00:51:57 +0000359 const MachineInstr *CurBundle = nullptr;
Jakob Stoklund Olesen29c27712012-12-18 22:55:07 +0000360 // Do we expect the next instruction to be part of the same bundle?
361 bool InBundle = false;
362
Evan Cheng7fae11b2011-12-14 02:11:42 +0000363 for (MachineBasicBlock::const_instr_iterator MBBI = MFI->instr_begin(),
364 MBBE = MFI->instr_end(); MBBI != MBBE; ++MBBI) {
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000365 if (MBBI->getParent() != &*MFI) {
Duncan P. N. Exon Smith8cc24ea2016-09-03 01:22:56 +0000366 report("Bad instruction parent pointer", &*MFI);
Owen Anderson21b17882015-02-04 00:02:59 +0000367 errs() << "Instruction: " << *MBBI;
Jakob Stoklund Olesenb5b4a5d2011-01-12 21:27:41 +0000368 continue;
369 }
Jakob Stoklund Olesen29c27712012-12-18 22:55:07 +0000370
371 // Check for consistent bundle flags.
372 if (InBundle && !MBBI->isBundledWithPred())
373 report("Missing BundledPred flag, "
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000374 "BundledSucc was set on predecessor",
375 &*MBBI);
Jakob Stoklund Olesen29c27712012-12-18 22:55:07 +0000376 if (!InBundle && MBBI->isBundledWithPred())
377 report("BundledPred flag is set, "
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000378 "but BundledSucc not set on predecessor",
379 &*MBBI);
Jakob Stoklund Olesen29c27712012-12-18 22:55:07 +0000380
Jakob Stoklund Olesen00e7dff2012-06-06 22:34:30 +0000381 // Is this a bundle header?
382 if (!MBBI->isInsideBundle()) {
383 if (CurBundle)
384 visitMachineBundleAfter(CurBundle);
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000385 CurBundle = &*MBBI;
Jakob Stoklund Olesen00e7dff2012-06-06 22:34:30 +0000386 visitMachineBundleBefore(CurBundle);
387 } else if (!CurBundle)
Duncan P. N. Exon Smith8cc24ea2016-09-03 01:22:56 +0000388 report("No bundle header", &*MBBI);
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000389 visitMachineInstrBefore(&*MBBI);
Matt Arsenaultee5c2ab2015-04-30 19:35:41 +0000390 for (unsigned I = 0, E = MBBI->getNumOperands(); I != E; ++I) {
391 const MachineInstr &MI = *MBBI;
392 const MachineOperand &Op = MI.getOperand(I);
393 if (Op.getParent() != &MI) {
Matt Arsenault59d2ca12015-04-30 23:20:56 +0000394 // Make sure to use correct addOperand / RemoveOperand / ChangeTo
Matt Arsenaultee5c2ab2015-04-30 19:35:41 +0000395 // functions when replacing operands of a MachineInstr.
396 report("Instruction has operand with wrong parent set", &MI);
397 }
398
399 visitMachineOperand(&Op, I);
400 }
401
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000402 visitMachineInstrAfter(&*MBBI);
Jakob Stoklund Olesen29c27712012-12-18 22:55:07 +0000403
404 // Was this the last bundled instruction?
405 InBundle = MBBI->isBundledWithSucc();
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000406 }
Jakob Stoklund Olesen00e7dff2012-06-06 22:34:30 +0000407 if (CurBundle)
408 visitMachineBundleAfter(CurBundle);
Jakob Stoklund Olesen29c27712012-12-18 22:55:07 +0000409 if (InBundle)
410 report("BundledSucc flag set on last instruction in block", &MFI->back());
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000411 visitMachineBasicBlockAfter(&*MFI);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000412 }
413 visitMachineFunctionAfter();
414
Jakob Stoklund Olesendcf009c2009-08-08 15:34:50 +0000415 // Clean up.
416 regsLive.clear();
417 regsDefined.clear();
418 regsDead.clear();
419 regsKilled.clear();
Jakob Stoklund Olesen16c4a972012-02-28 01:42:41 +0000420 regMasks.clear();
Jakob Stoklund Olesendcf009c2009-08-08 15:34:50 +0000421 regsLiveInButUnused.clear();
422 MBBInfoMap.clear();
423
Matthias Braunb3aefc32016-02-15 19:25:31 +0000424 return foundErrors;
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000425}
426
Chris Lattner75f40452009-08-23 01:03:30 +0000427void MachineVerifier::report(const char *msg, const MachineFunction *MF) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000428 assert(MF);
Owen Anderson21b17882015-02-04 00:02:59 +0000429 errs() << '\n';
Jakob Stoklund Olesenbf4550e2010-12-18 00:06:56 +0000430 if (!foundErrors++) {
431 if (Banner)
Owen Anderson21b17882015-02-04 00:02:59 +0000432 errs() << "# " << Banner << '\n';
Matthias Braun42b4b632015-11-09 23:59:23 +0000433 if (LiveInts != nullptr)
434 LiveInts->print(errs());
435 else
436 MF->print(errs(), Indexes);
Jakob Stoklund Olesenbf4550e2010-12-18 00:06:56 +0000437 }
Owen Anderson21b17882015-02-04 00:02:59 +0000438 errs() << "*** Bad machine code: " << msg << " ***\n"
Craig Toppera538d832012-08-22 06:07:19 +0000439 << "- function: " << MF->getName() << "\n";
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000440}
441
Jakob Stoklund Olesen63c733f2009-10-04 18:18:39 +0000442void MachineVerifier::report(const char *msg, const MachineBasicBlock *MBB) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000443 assert(MBB);
444 report(msg, MBB->getParent());
Owen Anderson21b17882015-02-04 00:02:59 +0000445 errs() << "- basic block: BB#" << MBB->getNumber()
Jakob Stoklund Olesenbde5dc52012-08-02 14:31:49 +0000446 << ' ' << MBB->getName()
Roman Divackyad06cee2012-09-05 22:26:57 +0000447 << " (" << (const void*)MBB << ')';
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000448 if (Indexes)
Owen Anderson21b17882015-02-04 00:02:59 +0000449 errs() << " [" << Indexes->getMBBStartIdx(MBB)
Jakob Stoklund Olesenb7050232010-10-26 20:21:46 +0000450 << ';' << Indexes->getMBBEndIdx(MBB) << ')';
Owen Anderson21b17882015-02-04 00:02:59 +0000451 errs() << '\n';
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000452}
453
Jakob Stoklund Olesen63c733f2009-10-04 18:18:39 +0000454void MachineVerifier::report(const char *msg, const MachineInstr *MI) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000455 assert(MI);
456 report(msg, MI->getParent());
Owen Anderson21b17882015-02-04 00:02:59 +0000457 errs() << "- instruction: ";
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000458 if (Indexes && Indexes->hasIndex(*MI))
459 errs() << Indexes->getInstructionIndex(*MI) << '\t';
Matthias Braun45718db2015-11-09 23:59:25 +0000460 MI->print(errs(), /*SkipOpers=*/true);
Matthias Braun716b4332015-11-09 23:59:29 +0000461 errs() << '\n';
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000462}
463
Jakob Stoklund Olesen63c733f2009-10-04 18:18:39 +0000464void MachineVerifier::report(const char *msg,
465 const MachineOperand *MO, unsigned MONum) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000466 assert(MO);
467 report(msg, MO->getParent());
Owen Anderson21b17882015-02-04 00:02:59 +0000468 errs() << "- operand " << MONum << ": ";
Eric Christopher1cdefae2015-02-27 00:11:34 +0000469 MO->print(errs(), TRI);
Owen Anderson21b17882015-02-04 00:02:59 +0000470 errs() << "\n";
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000471}
472
Matthias Braun579c9cd2016-02-02 02:44:25 +0000473void MachineVerifier::report_context(SlotIndex Pos) const {
474 errs() << "- at: " << Pos << '\n';
475}
476
Matthias Braun7e624d52015-11-09 23:59:33 +0000477void MachineVerifier::report_context(const LiveInterval &LI) const {
Owen Anderson21b17882015-02-04 00:02:59 +0000478 errs() << "- interval: " << LI << '\n';
Jakob Stoklund Olesenbde5dc52012-08-02 14:31:49 +0000479}
480
Matt Arsenault892fcd02016-07-25 19:39:01 +0000481void MachineVerifier::report_context(const LiveRange &LR, unsigned VRegUnit,
Matthias Braun7e624d52015-11-09 23:59:33 +0000482 LaneBitmask LaneMask) const {
Matthias Braun579c9cd2016-02-02 02:44:25 +0000483 report_context_liverange(LR);
Matt Arsenault892fcd02016-07-25 19:39:01 +0000484 report_context_vreg_regunit(VRegUnit);
Krzysztof Parzyszekea9f8ce2016-12-16 19:11:56 +0000485 if (LaneMask.any())
Matthias Braun1377fd62016-02-02 20:04:51 +0000486 report_context_lanemask(LaneMask);
Matthias Braun364e6e92013-10-10 21:28:54 +0000487}
488
Matthias Braun7e624d52015-11-09 23:59:33 +0000489void MachineVerifier::report_context(const LiveRange::Segment &S) const {
490 errs() << "- segment: " << S << '\n';
491}
492
493void MachineVerifier::report_context(const VNInfo &VNI) const {
494 errs() << "- ValNo: " << VNI.id << " (def " << VNI.def << ")\n";
Matthias Braun364e6e92013-10-10 21:28:54 +0000495}
496
Matthias Braun579c9cd2016-02-02 02:44:25 +0000497void MachineVerifier::report_context_liverange(const LiveRange &LR) const {
498 errs() << "- liverange: " << LR << '\n';
499}
500
Matthias Braun30668dd2016-05-11 21:31:39 +0000501void MachineVerifier::report_context_vreg(unsigned VReg) const {
502 errs() << "- v. register: " << PrintReg(VReg, TRI) << '\n';
503}
504
Matthias Braun1377fd62016-02-02 20:04:51 +0000505void MachineVerifier::report_context_vreg_regunit(unsigned VRegOrUnit) const {
506 if (TargetRegisterInfo::isVirtualRegister(VRegOrUnit)) {
Matthias Braun30668dd2016-05-11 21:31:39 +0000507 report_context_vreg(VRegOrUnit);
Matthias Braun1377fd62016-02-02 20:04:51 +0000508 } else {
509 errs() << "- regunit: " << PrintRegUnit(VRegOrUnit, TRI) << '\n';
510 }
511}
512
513void MachineVerifier::report_context_lanemask(LaneBitmask LaneMask) const {
514 errs() << "- lanemask: " << PrintLaneMask(LaneMask) << '\n';
515}
516
Jakob Stoklund Olesen63c733f2009-10-04 18:18:39 +0000517void MachineVerifier::markReachable(const MachineBasicBlock *MBB) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000518 BBInfo &MInfo = MBBInfoMap[MBB];
519 if (!MInfo.reachable) {
520 MInfo.reachable = true;
521 for (MachineBasicBlock::const_succ_iterator SuI = MBB->succ_begin(),
522 SuE = MBB->succ_end(); SuI != SuE; ++SuI)
523 markReachable(*SuI);
524 }
525}
526
Jakob Stoklund Olesen63c733f2009-10-04 18:18:39 +0000527void MachineVerifier::visitMachineFunctionBefore() {
Jakob Stoklund Olesen58b6f4d2011-01-12 21:27:48 +0000528 lastIndex = SlotIndex();
Jakob Stoklund Olesenc30a9af2012-10-15 21:57:41 +0000529 regsReserved = MRI->getReservedRegs();
Jakob Stoklund Olesen3c2a1de2009-08-04 19:18:01 +0000530
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000531 markReachable(&MF->front());
Jakob Stoklund Olesende31b522012-08-20 20:52:06 +0000532
533 // Build a set of the basic blocks in the function.
534 FunctionBlocks.clear();
Alexey Samsonov41b977d2014-04-30 18:29:51 +0000535 for (const auto &MBB : *MF) {
536 FunctionBlocks.insert(&MBB);
537 BBInfo &MInfo = MBBInfoMap[&MBB];
Jakob Stoklund Olesende31b522012-08-20 20:52:06 +0000538
Alexey Samsonov41b977d2014-04-30 18:29:51 +0000539 MInfo.Preds.insert(MBB.pred_begin(), MBB.pred_end());
540 if (MInfo.Preds.size() != MBB.pred_size())
541 report("MBB has duplicate entries in its predecessor list.", &MBB);
Jakob Stoklund Olesende31b522012-08-20 20:52:06 +0000542
Alexey Samsonov41b977d2014-04-30 18:29:51 +0000543 MInfo.Succs.insert(MBB.succ_begin(), MBB.succ_end());
544 if (MInfo.Succs.size() != MBB.succ_size())
545 report("MBB has duplicate entries in its successor list.", &MBB);
Jakob Stoklund Olesende31b522012-08-20 20:52:06 +0000546 }
Jakob Stoklund Olesene17c3fd2013-04-19 21:40:57 +0000547
548 // Check that the register use lists are sane.
549 MRI->verifyUseLists();
Manman Renaa6875b2013-07-15 21:26:31 +0000550
551 verifyStackFrame();
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000552}
553
Jakob Stoklund Olesen1ecc8b22009-11-13 21:55:54 +0000554// Does iterator point to a and b as the first two elements?
Dan Gohmanb29cda92010-04-15 17:08:50 +0000555static bool matchPair(MachineBasicBlock::const_succ_iterator i,
556 const MachineBasicBlock *a, const MachineBasicBlock *b) {
Jakob Stoklund Olesen1ecc8b22009-11-13 21:55:54 +0000557 if (*i == a)
558 return *++i == b;
559 if (*i == b)
560 return *++i == a;
561 return false;
562}
563
564void
565MachineVerifier::visitMachineBasicBlockBefore(const MachineBasicBlock *MBB) {
Craig Topperc0196b12014-04-14 00:51:57 +0000566 FirstTerminator = nullptr;
Jakob Stoklund Olesen3bb99bc2011-09-23 22:45:39 +0000567
Matthias Braun79f85b32016-08-24 01:32:41 +0000568 if (!MF->getProperties().hasProperty(
569 MachineFunctionProperties::Property::NoPHIs)) {
Lang Hames1ce837a2012-02-14 19:17:48 +0000570 // If this block has allocatable physical registers live-in, check that
571 // it is an entry block or landing pad.
Matthias Braund9da1622015-09-09 18:08:03 +0000572 for (const auto &LI : MBB->liveins()) {
573 if (isAllocatable(LI.PhysReg) && !MBB->isEHPad() &&
Duncan P. N. Exon Smithe9bc5792016-02-21 20:39:50 +0000574 MBB->getIterator() != MBB->getParent()->begin()) {
Lang Hames1ce837a2012-02-14 19:17:48 +0000575 report("MBB has allocable live-in, but isn't entry or landing-pad.", MBB);
576 }
577 }
578 }
579
Jakob Stoklund Olesen7c9d5842010-10-21 18:47:06 +0000580 // Count the number of landing pad successors.
Cameron Zwarich4ffda702010-12-20 04:19:48 +0000581 SmallPtrSet<MachineBasicBlock*, 4> LandingPadSuccs;
Jakob Stoklund Olesen7c9d5842010-10-21 18:47:06 +0000582 for (MachineBasicBlock::const_succ_iterator I = MBB->succ_begin(),
Cameron Zwarich4ffda702010-12-20 04:19:48 +0000583 E = MBB->succ_end(); I != E; ++I) {
Reid Kleckner0e288232015-08-27 23:27:47 +0000584 if ((*I)->isEHPad())
Cameron Zwarich4ffda702010-12-20 04:19:48 +0000585 LandingPadSuccs.insert(*I);
Jakob Stoklund Olesende31b522012-08-20 20:52:06 +0000586 if (!FunctionBlocks.count(*I))
587 report("MBB has successor that isn't part of the function.", MBB);
588 if (!MBBInfoMap[*I].Preds.count(MBB)) {
589 report("Inconsistent CFG", MBB);
Owen Anderson21b17882015-02-04 00:02:59 +0000590 errs() << "MBB is not in the predecessor list of the successor BB#"
Jakob Stoklund Olesende31b522012-08-20 20:52:06 +0000591 << (*I)->getNumber() << ".\n";
592 }
593 }
594
595 // Check the predecessor list.
596 for (MachineBasicBlock::const_pred_iterator I = MBB->pred_begin(),
597 E = MBB->pred_end(); I != E; ++I) {
598 if (!FunctionBlocks.count(*I))
599 report("MBB has predecessor that isn't part of the function.", MBB);
600 if (!MBBInfoMap[*I].Succs.count(MBB)) {
601 report("Inconsistent CFG", MBB);
Owen Anderson21b17882015-02-04 00:02:59 +0000602 errs() << "MBB is not in the successor list of the predecessor BB#"
Jakob Stoklund Olesende31b522012-08-20 20:52:06 +0000603 << (*I)->getNumber() << ".\n";
604 }
Cameron Zwarich4ffda702010-12-20 04:19:48 +0000605 }
Bill Wendling2a401312011-05-04 22:54:05 +0000606
607 const MCAsmInfo *AsmInfo = TM->getMCAsmInfo();
608 const BasicBlock *BB = MBB->getBasicBlock();
Reid Kleckner64b003f2015-11-09 21:04:00 +0000609 const Function *Fn = MF->getFunction();
Bill Wendling2a401312011-05-04 22:54:05 +0000610 if (LandingPadSuccs.size() > 1 &&
611 !(AsmInfo &&
612 AsmInfo->getExceptionHandlingType() == ExceptionHandling::SjLj &&
Reid Kleckner64b003f2015-11-09 21:04:00 +0000613 BB && isa<SwitchInst>(BB->getTerminator())) &&
614 !isFuncletEHPersonality(classifyEHPersonality(Fn->getPersonalityFn())))
Jakob Stoklund Olesen7c9d5842010-10-21 18:47:06 +0000615 report("MBB has more than one landing pad successor", MBB);
616
Dan Gohman352a4952009-08-27 02:43:49 +0000617 // Call AnalyzeBranch. If it succeeds, there several more conditions to check.
Craig Topperc0196b12014-04-14 00:51:57 +0000618 MachineBasicBlock *TBB = nullptr, *FBB = nullptr;
Dan Gohman352a4952009-08-27 02:43:49 +0000619 SmallVector<MachineOperand, 4> Cond;
Jacques Pienaar71c30a12016-07-15 14:41:04 +0000620 if (!TII->analyzeBranch(*const_cast<MachineBasicBlock *>(MBB), TBB, FBB,
621 Cond)) {
Dan Gohman352a4952009-08-27 02:43:49 +0000622 // Ok, AnalyzeBranch thinks it knows what's going on with this block. Let's
623 // check whether its answers match up with reality.
624 if (!TBB && !FBB) {
625 // Block falls through to its successor.
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000626 MachineFunction::const_iterator MBBI = MBB->getIterator();
Dan Gohman352a4952009-08-27 02:43:49 +0000627 ++MBBI;
628 if (MBBI == MF->end()) {
Dan Gohmaned10d7c2009-08-27 18:14:26 +0000629 // It's possible that the block legitimately ends with a noreturn
630 // call or an unreachable, in which case it won't actually fall
631 // out the bottom of the function.
Cameron Zwarich4ffda702010-12-20 04:19:48 +0000632 } else if (MBB->succ_size() == LandingPadSuccs.size()) {
Dan Gohmaned10d7c2009-08-27 18:14:26 +0000633 // It's possible that the block legitimately ends with a noreturn
634 // call or an unreachable, in which case it won't actuall fall
635 // out of the block.
Cameron Zwarich4ffda702010-12-20 04:19:48 +0000636 } else if (MBB->succ_size() != 1+LandingPadSuccs.size()) {
Dan Gohman352a4952009-08-27 02:43:49 +0000637 report("MBB exits via unconditional fall-through but doesn't have "
638 "exactly one CFG successor!", MBB);
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000639 } else if (!MBB->isSuccessor(&*MBBI)) {
Dan Gohman352a4952009-08-27 02:43:49 +0000640 report("MBB exits via unconditional fall-through but its successor "
641 "differs from its CFG successor!", MBB);
642 }
Benjamin Kramer5256ce32014-05-24 13:31:10 +0000643 if (!MBB->empty() && MBB->back().isBarrier() &&
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000644 !TII->isPredicated(MBB->back())) {
Dan Gohman352a4952009-08-27 02:43:49 +0000645 report("MBB exits via unconditional fall-through but ends with a "
646 "barrier instruction!", MBB);
647 }
648 if (!Cond.empty()) {
649 report("MBB exits via unconditional fall-through but has a condition!",
650 MBB);
651 }
652 } else if (TBB && !FBB && Cond.empty()) {
653 // Block unconditionally branches somewhere.
Ahmed Bougachafb6eeb72014-12-01 18:43:53 +0000654 // If the block has exactly one successor, that happens to be a
655 // landingpad, accept it as valid control flow.
656 if (MBB->succ_size() != 1+LandingPadSuccs.size() &&
657 (MBB->succ_size() != 1 || LandingPadSuccs.size() != 1 ||
658 *MBB->succ_begin() != *LandingPadSuccs.begin())) {
Dan Gohman352a4952009-08-27 02:43:49 +0000659 report("MBB exits via unconditional branch but doesn't have "
660 "exactly one CFG successor!", MBB);
Jakob Stoklund Olesen7c9d5842010-10-21 18:47:06 +0000661 } else if (!MBB->isSuccessor(TBB)) {
Dan Gohman352a4952009-08-27 02:43:49 +0000662 report("MBB exits via unconditional branch but the CFG "
663 "successor doesn't match the actual successor!", MBB);
664 }
665 if (MBB->empty()) {
666 report("MBB exits via unconditional branch but doesn't contain "
667 "any instructions!", MBB);
Benjamin Kramer5256ce32014-05-24 13:31:10 +0000668 } else if (!MBB->back().isBarrier()) {
Dan Gohman352a4952009-08-27 02:43:49 +0000669 report("MBB exits via unconditional branch but doesn't end with a "
670 "barrier instruction!", MBB);
Benjamin Kramer5256ce32014-05-24 13:31:10 +0000671 } else if (!MBB->back().isTerminator()) {
Dan Gohman352a4952009-08-27 02:43:49 +0000672 report("MBB exits via unconditional branch but the branch isn't a "
673 "terminator instruction!", MBB);
674 }
675 } else if (TBB && !FBB && !Cond.empty()) {
676 // Block conditionally branches somewhere, otherwise falls through.
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000677 MachineFunction::const_iterator MBBI = MBB->getIterator();
Dan Gohman352a4952009-08-27 02:43:49 +0000678 ++MBBI;
679 if (MBBI == MF->end()) {
680 report("MBB conditionally falls through out of function!", MBB);
Dmitri Gribenko349d1a32012-12-19 22:13:01 +0000681 } else if (MBB->succ_size() == 1) {
Jakob Stoklund Olesen7d33c572012-08-20 21:39:52 +0000682 // A conditional branch with only one successor is weird, but allowed.
683 if (&*MBBI != TBB)
684 report("MBB exits via conditional branch/fall-through but only has "
685 "one CFG successor!", MBB);
686 else if (TBB != *MBB->succ_begin())
687 report("MBB exits via conditional branch/fall-through but the CFG "
688 "successor don't match the actual successor!", MBB);
689 } else if (MBB->succ_size() != 2) {
Dan Gohman352a4952009-08-27 02:43:49 +0000690 report("MBB exits via conditional branch/fall-through but doesn't have "
691 "exactly two CFG successors!", MBB);
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +0000692 } else if (!matchPair(MBB->succ_begin(), TBB, &*MBBI)) {
Dan Gohman352a4952009-08-27 02:43:49 +0000693 report("MBB exits via conditional branch/fall-through but the CFG "
694 "successors don't match the actual successors!", MBB);
695 }
696 if (MBB->empty()) {
697 report("MBB exits via conditional branch/fall-through but doesn't "
698 "contain any instructions!", MBB);
Benjamin Kramer5256ce32014-05-24 13:31:10 +0000699 } else if (MBB->back().isBarrier()) {
Dan Gohman352a4952009-08-27 02:43:49 +0000700 report("MBB exits via conditional branch/fall-through but ends with a "
701 "barrier instruction!", MBB);
Benjamin Kramer5256ce32014-05-24 13:31:10 +0000702 } else if (!MBB->back().isTerminator()) {
Dan Gohman352a4952009-08-27 02:43:49 +0000703 report("MBB exits via conditional branch/fall-through but the branch "
704 "isn't a terminator instruction!", MBB);
705 }
706 } else if (TBB && FBB) {
707 // Block conditionally branches somewhere, otherwise branches
708 // somewhere else.
Jakob Stoklund Olesen7d33c572012-08-20 21:39:52 +0000709 if (MBB->succ_size() == 1) {
710 // A conditional branch with only one successor is weird, but allowed.
711 if (FBB != TBB)
712 report("MBB exits via conditional branch/branch through but only has "
713 "one CFG successor!", MBB);
714 else if (TBB != *MBB->succ_begin())
715 report("MBB exits via conditional branch/branch through but the CFG "
716 "successor don't match the actual successor!", MBB);
717 } else if (MBB->succ_size() != 2) {
Dan Gohman352a4952009-08-27 02:43:49 +0000718 report("MBB exits via conditional branch/branch but doesn't have "
719 "exactly two CFG successors!", MBB);
Jakob Stoklund Olesen1ecc8b22009-11-13 21:55:54 +0000720 } else if (!matchPair(MBB->succ_begin(), TBB, FBB)) {
Dan Gohman352a4952009-08-27 02:43:49 +0000721 report("MBB exits via conditional branch/branch but the CFG "
722 "successors don't match the actual successors!", MBB);
723 }
724 if (MBB->empty()) {
725 report("MBB exits via conditional branch/branch but doesn't "
726 "contain any instructions!", MBB);
Benjamin Kramer389cec02014-05-24 13:13:17 +0000727 } else if (!MBB->back().isBarrier()) {
Dan Gohman352a4952009-08-27 02:43:49 +0000728 report("MBB exits via conditional branch/branch but doesn't end with a "
729 "barrier instruction!", MBB);
Benjamin Kramer389cec02014-05-24 13:13:17 +0000730 } else if (!MBB->back().isTerminator()) {
Dan Gohman352a4952009-08-27 02:43:49 +0000731 report("MBB exits via conditional branch/branch but the branch "
732 "isn't a terminator instruction!", MBB);
733 }
734 if (Cond.empty()) {
735 report("MBB exits via conditinal branch/branch but there's no "
736 "condition!", MBB);
737 }
738 } else {
739 report("AnalyzeBranch returned invalid data!", MBB);
740 }
741 }
742
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000743 regsLive.clear();
Matthias Braund9da1622015-09-09 18:08:03 +0000744 for (const auto &LI : MBB->liveins()) {
745 if (!TargetRegisterInfo::isPhysicalRegister(LI.PhysReg)) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000746 report("MBB live-in list contains non-physical register", MBB);
747 continue;
748 }
Matthias Braund9da1622015-09-09 18:08:03 +0000749 for (MCSubRegIterator SubRegs(LI.PhysReg, TRI, /*IncludeSelf=*/true);
Chad Rosierabdb1d62013-05-22 23:17:36 +0000750 SubRegs.isValid(); ++SubRegs)
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000751 regsLive.insert(*SubRegs);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000752 }
Jakob Stoklund Olesen2d59cff2009-08-08 13:19:25 +0000753 regsLiveInButUnused = regsLive;
Jakob Stoklund Olesen0e73fdf2009-08-13 16:19:51 +0000754
Matthias Braun941a7052016-07-28 18:40:00 +0000755 const MachineFrameInfo &MFI = MF->getFrameInfo();
756 BitVector PR = MFI.getPristineRegs(*MF);
Jakob Stoklund Olesen0e73fdf2009-08-13 16:19:51 +0000757 for (int I = PR.find_first(); I>0; I = PR.find_next(I)) {
Chad Rosierabdb1d62013-05-22 23:17:36 +0000758 for (MCSubRegIterator SubRegs(I, TRI, /*IncludeSelf=*/true);
759 SubRegs.isValid(); ++SubRegs)
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000760 regsLive.insert(*SubRegs);
Jakob Stoklund Olesen0e73fdf2009-08-13 16:19:51 +0000761 }
762
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000763 regsKilled.clear();
764 regsDefined.clear();
Jakob Stoklund Olesen58b6f4d2011-01-12 21:27:48 +0000765
766 if (Indexes)
767 lastIndex = Indexes->getMBBStartIdx(MBB);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000768}
769
Jakob Stoklund Olesen00e7dff2012-06-06 22:34:30 +0000770// This function gets called for all bundle headers, including normal
771// stand-alone unbundled instructions.
772void MachineVerifier::visitMachineBundleBefore(const MachineInstr *MI) {
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000773 if (Indexes && Indexes->hasIndex(*MI)) {
774 SlotIndex idx = Indexes->getInstructionIndex(*MI);
Jakob Stoklund Olesen00e7dff2012-06-06 22:34:30 +0000775 if (!(idx > lastIndex)) {
776 report("Instruction index out of order", MI);
Owen Anderson21b17882015-02-04 00:02:59 +0000777 errs() << "Last instruction was at " << lastIndex << '\n';
Jakob Stoklund Olesen00e7dff2012-06-06 22:34:30 +0000778 }
779 lastIndex = idx;
780 }
Pete Coopercd720162012-06-07 17:41:39 +0000781
782 // Ensure non-terminators don't follow terminators.
783 // Ignore predicated terminators formed by if conversion.
784 // FIXME: If conversion shouldn't need to violate this rule.
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000785 if (MI->isTerminator() && !TII->isPredicated(*MI)) {
Pete Coopercd720162012-06-07 17:41:39 +0000786 if (!FirstTerminator)
787 FirstTerminator = MI;
788 } else if (FirstTerminator) {
789 report("Non-terminator instruction after the first terminator", MI);
Owen Anderson21b17882015-02-04 00:02:59 +0000790 errs() << "First terminator was:\t" << *FirstTerminator;
Pete Coopercd720162012-06-07 17:41:39 +0000791 }
Jakob Stoklund Olesen00e7dff2012-06-06 22:34:30 +0000792}
793
Jakob Stoklund Olesen7a837b92012-08-29 18:11:05 +0000794// The operands on an INLINEASM instruction must follow a template.
795// Verify that the flag operands make sense.
796void MachineVerifier::verifyInlineAsm(const MachineInstr *MI) {
797 // The first two operands on INLINEASM are the asm string and global flags.
798 if (MI->getNumOperands() < 2) {
799 report("Too few operands on inline asm", MI);
800 return;
801 }
802 if (!MI->getOperand(0).isSymbol())
803 report("Asm string must be an external symbol", MI);
804 if (!MI->getOperand(1).isImm())
805 report("Asm flags must be an immediate", MI);
Chad Rosier9e1274f2012-10-30 19:11:54 +0000806 // Allowed flags are Extra_HasSideEffects = 1, Extra_IsAlignStack = 2,
Wei Ding0526e7f2016-06-22 18:51:08 +0000807 // Extra_AsmDialect = 4, Extra_MayLoad = 8, and Extra_MayStore = 16,
808 // and Extra_IsConvergent = 32.
809 if (!isUInt<6>(MI->getOperand(1).getImm()))
Jakob Stoklund Olesen7a837b92012-08-29 18:11:05 +0000810 report("Unknown asm flags", &MI->getOperand(1), 1);
811
Gabor Horvathfee04342015-03-16 09:53:42 +0000812 static_assert(InlineAsm::MIOp_FirstOperand == 2, "Asm format changed");
Jakob Stoklund Olesen7a837b92012-08-29 18:11:05 +0000813
814 unsigned OpNo = InlineAsm::MIOp_FirstOperand;
815 unsigned NumOps;
816 for (unsigned e = MI->getNumOperands(); OpNo < e; OpNo += NumOps) {
817 const MachineOperand &MO = MI->getOperand(OpNo);
818 // There may be implicit ops after the fixed operands.
819 if (!MO.isImm())
820 break;
821 NumOps = 1 + InlineAsm::getNumOperandRegisters(MO.getImm());
822 }
823
824 if (OpNo > MI->getNumOperands())
825 report("Missing operands in last group", MI);
826
827 // An optional MDNode follows the groups.
828 if (OpNo < MI->getNumOperands() && MI->getOperand(OpNo).isMetadata())
829 ++OpNo;
830
831 // All trailing operands must be implicit registers.
832 for (unsigned e = MI->getNumOperands(); OpNo < e; ++OpNo) {
833 const MachineOperand &MO = MI->getOperand(OpNo);
834 if (!MO.isReg() || !MO.isImplicit())
835 report("Expected implicit register after groups", &MO, OpNo);
836 }
837}
838
Jakob Stoklund Olesen63c733f2009-10-04 18:18:39 +0000839void MachineVerifier::visitMachineInstrBefore(const MachineInstr *MI) {
Evan Cheng6cc775f2011-06-28 19:10:37 +0000840 const MCInstrDesc &MCID = MI->getDesc();
841 if (MI->getNumOperands() < MCID.getNumOperands()) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000842 report("Too few operands", MI);
Owen Anderson21b17882015-02-04 00:02:59 +0000843 errs() << MCID.getNumOperands() << " operands expected, but "
Matt Arsenault23c92742013-11-15 22:18:19 +0000844 << MI->getNumOperands() << " given.\n";
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000845 }
Dan Gohmandb9493c2009-10-07 17:36:00 +0000846
Matthias Braun90799ce2016-08-23 21:19:49 +0000847 if (MI->isPHI() && MF->getProperties().hasProperty(
848 MachineFunctionProperties::Property::NoPHIs))
849 report("Found PHI instruction with NoPHIs property set", MI);
850
Jakob Stoklund Olesendbbff782012-08-29 00:38:03 +0000851 // Check the tied operands.
Jakob Stoklund Olesen7a837b92012-08-29 18:11:05 +0000852 if (MI->isInlineAsm())
853 verifyInlineAsm(MI);
Jakob Stoklund Olesendbbff782012-08-29 00:38:03 +0000854
Dan Gohmandb9493c2009-10-07 17:36:00 +0000855 // Check the MachineMemOperands for basic consistency.
856 for (MachineInstr::mmo_iterator I = MI->memoperands_begin(),
857 E = MI->memoperands_end(); I != E; ++I) {
Evan Cheng7f8e5632011-12-07 07:15:52 +0000858 if ((*I)->isLoad() && !MI->mayLoad())
Dan Gohmandb9493c2009-10-07 17:36:00 +0000859 report("Missing mayLoad flag", MI);
Evan Cheng7f8e5632011-12-07 07:15:52 +0000860 if ((*I)->isStore() && !MI->mayStore())
Dan Gohmandb9493c2009-10-07 17:36:00 +0000861 report("Missing mayStore flag", MI);
862 }
Jakob Stoklund Olesene7709eb2010-08-05 22:32:21 +0000863
864 // Debug values must not have a slot index.
Jakob Stoklund Olesen5aafb562012-02-27 18:24:30 +0000865 // Other instructions must have one, unless they are inside a bundle.
Jakob Stoklund Olesene7709eb2010-08-05 22:32:21 +0000866 if (LiveInts) {
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000867 bool mapped = !LiveInts->isNotInMIMap(*MI);
Jakob Stoklund Olesene7709eb2010-08-05 22:32:21 +0000868 if (MI->isDebugValue()) {
869 if (mapped)
870 report("Debug instruction has a slot index", MI);
Jakob Stoklund Olesen5aafb562012-02-27 18:24:30 +0000871 } else if (MI->isInsideBundle()) {
872 if (mapped)
873 report("Instruction inside bundle has a slot index", MI);
Jakob Stoklund Olesene7709eb2010-08-05 22:32:21 +0000874 } else {
875 if (!mapped)
876 report("Missing slot index", MI);
877 }
878 }
879
Ahmed Bougacha46c05fc2016-07-28 16:58:27 +0000880 // Check types.
Ahmed Bougacha46c05fc2016-07-28 16:58:27 +0000881 if (isPreISelGenericOpcode(MCID.getOpcode())) {
Ahmed Bougachab14e9442016-08-02 16:49:22 +0000882 if (isFunctionSelected)
883 report("Unexpected generic instruction in a Selected function", MI);
884
Tim Northover0f140c72016-09-09 11:46:34 +0000885 // Generic instructions specify equality constraints between some
886 // of their operands. Make sure these are consistent.
887 SmallVector<LLT, 4> Types;
888 for (unsigned i = 0; i < MCID.getNumOperands(); ++i) {
889 if (!MCID.OpInfo[i].isGenericType())
890 continue;
891 size_t TypeIdx = MCID.OpInfo[i].getGenericTypeIndex();
892 Types.resize(std::max(TypeIdx + 1, Types.size()));
893
894 LLT OpTy = MRI->getType(MI->getOperand(i).getReg());
895 if (Types[TypeIdx].isValid() && Types[TypeIdx] != OpTy)
896 report("type mismatch in generic instruction", MI);
897 Types[TypeIdx] = OpTy;
898 }
Ahmed Bougacha46c05fc2016-07-28 16:58:27 +0000899 }
900
Tim Northovere5102de2016-08-30 18:52:46 +0000901 // Generic opcodes must not have physical register operands.
Tim Northover25d12862016-09-09 11:47:31 +0000902 if (isPreISelGenericOpcode(MCID.getOpcode())) {
Tim Northovere5102de2016-08-30 18:52:46 +0000903 for (auto &Op : MI->operands()) {
904 if (Op.isReg() && TargetRegisterInfo::isPhysicalRegister(Op.getReg()))
905 report("Generic instruction cannot have physical register", MI);
906 }
907 }
908
Andrew Trick924123a2011-09-21 02:20:46 +0000909 StringRef ErrorInfo;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000910 if (!TII->verifyInstruction(*MI, ErrorInfo))
Andrew Trick924123a2011-09-21 02:20:46 +0000911 report(ErrorInfo.data(), MI);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000912}
913
914void
Jakob Stoklund Olesen63c733f2009-10-04 18:18:39 +0000915MachineVerifier::visitMachineOperand(const MachineOperand *MO, unsigned MONum) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000916 const MachineInstr *MI = MO->getParent();
Evan Cheng6cc775f2011-06-28 19:10:37 +0000917 const MCInstrDesc &MCID = MI->getDesc();
Alex Lorenze5101e22015-08-10 21:47:36 +0000918 unsigned NumDefs = MCID.getNumDefs();
919 if (MCID.getOpcode() == TargetOpcode::PATCHPOINT)
920 NumDefs = (MONum == 0 && MO->isReg()) ? NumDefs : 0;
Jakob Stoklund Olesene61c7a32009-05-16 07:25:20 +0000921
Evan Cheng6cc775f2011-06-28 19:10:37 +0000922 // The first MCID.NumDefs operands must be explicit register defines
Alex Lorenze5101e22015-08-10 21:47:36 +0000923 if (MONum < NumDefs) {
Richard Smith8f3447c2012-08-15 01:39:31 +0000924 const MCOperandInfo &MCOI = MCID.OpInfo[MONum];
Jakob Stoklund Olesene61c7a32009-05-16 07:25:20 +0000925 if (!MO->isReg())
926 report("Explicit definition must be a register", MO, MONum);
Evan Cheng76f6e262012-05-29 19:40:44 +0000927 else if (!MO->isDef() && !MCOI.isOptionalDef())
Jakob Stoklund Olesene61c7a32009-05-16 07:25:20 +0000928 report("Explicit definition marked as use", MO, MONum);
929 else if (MO->isImplicit())
930 report("Explicit definition marked as implicit", MO, MONum);
Evan Cheng6cc775f2011-06-28 19:10:37 +0000931 } else if (MONum < MCID.getNumOperands()) {
Richard Smith8f3447c2012-08-15 01:39:31 +0000932 const MCOperandInfo &MCOI = MCID.OpInfo[MONum];
Eric Christopherbcc230a72010-11-17 00:55:36 +0000933 // Don't check if it's the last operand in a variadic instruction. See,
934 // e.g., LDM_RET in the arm back end.
Evan Cheng6cc775f2011-06-28 19:10:37 +0000935 if (MO->isReg() &&
Evan Cheng7f8e5632011-12-07 07:15:52 +0000936 !(MI->isVariadic() && MONum == MCID.getNumOperands()-1)) {
Evan Cheng6cc775f2011-06-28 19:10:37 +0000937 if (MO->isDef() && !MCOI.isOptionalDef())
Matthias Braun6a57acf2013-10-04 16:53:00 +0000938 report("Explicit operand marked as def", MO, MONum);
Jakob Stoklund Olesen75b9c272009-09-23 20:57:55 +0000939 if (MO->isImplicit())
940 report("Explicit operand marked as implicit", MO, MONum);
941 }
Jakob Stoklund Olesendbbff782012-08-29 00:38:03 +0000942
Jakob Stoklund Olesenc7579cd2012-09-04 18:38:28 +0000943 int TiedTo = MCID.getOperandConstraint(MONum, MCOI::TIED_TO);
944 if (TiedTo != -1) {
Jakob Stoklund Olesendbbff782012-08-29 00:38:03 +0000945 if (!MO->isReg())
946 report("Tied use must be a register", MO, MONum);
947 else if (!MO->isTied())
948 report("Operand should be tied", MO, MONum);
Jakob Stoklund Olesenc7579cd2012-09-04 18:38:28 +0000949 else if (unsigned(TiedTo) != MI->findTiedOperandIdx(MONum))
950 report("Tied def doesn't match MCInstrDesc", MO, MONum);
Jakob Stoklund Olesendbbff782012-08-29 00:38:03 +0000951 } else if (MO->isReg() && MO->isTied())
952 report("Explicit operand should not be tied", MO, MONum);
Jakob Stoklund Olesen75b9c272009-09-23 20:57:55 +0000953 } else {
Jakob Stoklund Olesen3db495232009-12-22 21:48:20 +0000954 // ARM adds %reg0 operands to indicate predicates. We'll allow that.
Evan Cheng7f8e5632011-12-07 07:15:52 +0000955 if (MO->isReg() && !MO->isImplicit() && !MI->isVariadic() && MO->getReg())
Jakob Stoklund Olesen75b9c272009-09-23 20:57:55 +0000956 report("Extra explicit operand on non-variadic instruction", MO, MONum);
Jakob Stoklund Olesene61c7a32009-05-16 07:25:20 +0000957 }
958
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000959 switch (MO->getType()) {
960 case MachineOperand::MO_Register: {
961 const unsigned Reg = MO->getReg();
962 if (!Reg)
963 return;
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +0000964 if (MRI->tracksLiveness() && !MI->isDebugValue())
965 checkLiveness(MO, MONum);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000966
Jakob Stoklund Olesenc7579cd2012-09-04 18:38:28 +0000967 // Verify the consistency of tied operands.
968 if (MO->isTied()) {
969 unsigned OtherIdx = MI->findTiedOperandIdx(MONum);
970 const MachineOperand &OtherMO = MI->getOperand(OtherIdx);
971 if (!OtherMO.isReg())
972 report("Must be tied to a register", MO, MONum);
973 if (!OtherMO.isTied())
974 report("Missing tie flags on tied operand", MO, MONum);
975 if (MI->findTiedOperandIdx(OtherIdx) != MONum)
976 report("Inconsistent tie links", MO, MONum);
977 if (MONum < MCID.getNumDefs()) {
978 if (OtherIdx < MCID.getNumOperands()) {
979 if (-1 == MCID.getOperandConstraint(OtherIdx, MCOI::TIED_TO))
980 report("Explicit def tied to explicit use without tie constraint",
981 MO, MONum);
982 } else {
983 if (!OtherMO.isImplicit())
984 report("Explicit def should be tied to implicit use", MO, MONum);
985 }
986 }
987 }
988
Jakob Stoklund Olesenc6fd3de2012-07-25 16:49:11 +0000989 // Verify two-address constraints after leaving SSA form.
990 unsigned DefIdx;
991 if (!MRI->isSSA() && MO->isUse() &&
992 MI->isRegTiedToDefOperand(MONum, &DefIdx) &&
993 Reg != MI->getOperand(DefIdx).getReg())
994 report("Two-address instruction operands must be identical", MO, MONum);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000995
996 // Check register classes.
Evan Cheng6cc775f2011-06-28 19:10:37 +0000997 if (MONum < MCID.getNumOperands() && !MO->isImplicit()) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +0000998 unsigned SubIdx = MO->getSubReg();
999
1000 if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001001 if (SubIdx) {
Jakob Stoklund Oleseneb38bd8c2011-10-05 22:12:57 +00001002 report("Illegal subregister index for physical register", MO, MONum);
1003 return;
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001004 }
Jakob Stoklund Olesen3c52f022012-05-07 22:10:26 +00001005 if (const TargetRegisterClass *DRC =
1006 TII->getRegClass(MCID, MONum, TRI, *MF)) {
Jakob Stoklund Oleseneb38bd8c2011-10-05 22:12:57 +00001007 if (!DRC->contains(Reg)) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001008 report("Illegal physical register for instruction", MO, MONum);
Owen Anderson21b17882015-02-04 00:02:59 +00001009 errs() << TRI->getName(Reg) << " is not a "
Craig Toppercf0444b2014-11-17 05:50:14 +00001010 << TRI->getRegClassName(DRC) << " register.\n";
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001011 }
1012 }
1013 } else {
1014 // Virtual register.
Quentin Colombetc1c94bc2016-04-08 16:35:22 +00001015 const TargetRegisterClass *RC = MRI->getRegClassOrNull(Reg);
1016 if (!RC) {
1017 // This is a generic virtual register.
Ahmed Bougachab14e9442016-08-02 16:49:22 +00001018
1019 // If we're post-Select, we can't have gvregs anymore.
1020 if (isFunctionSelected) {
1021 report("Generic virtual register invalid in a Selected function",
1022 MO, MONum);
1023 return;
1024 }
1025
1026 // The gvreg must have a size and it must not have a SubIdx.
Tim Northover0f140c72016-09-09 11:46:34 +00001027 LLT Ty = MRI->getType(Reg);
1028 if (!Ty.isValid()) {
1029 report("Generic virtual register must have a valid type", MO,
1030 MONum);
Quentin Colombetc1c94bc2016-04-08 16:35:22 +00001031 return;
1032 }
Ahmed Bougacha3681c772016-08-02 16:17:15 +00001033
Quentin Colombetc1c94bc2016-04-08 16:35:22 +00001034 const RegisterBank *RegBank = MRI->getRegBankOrNull(Reg);
Ahmed Bougacha3681c772016-08-02 16:17:15 +00001035
1036 // If we're post-RegBankSelect, the gvreg must have a bank.
1037 if (!RegBank && isFunctionRegBankSelected) {
1038 report("Generic virtual register must have a bank in a "
1039 "RegBankSelected function",
1040 MO, MONum);
1041 return;
1042 }
1043
1044 // Make sure the register fits into its register bank if any.
Tim Northover32a078a2016-09-15 10:09:59 +00001045 if (RegBank && Ty.isValid() &&
Tim Northover0f140c72016-09-09 11:46:34 +00001046 RegBank->getSize() < Ty.getSizeInBits()) {
Quentin Colombetc1c94bc2016-04-08 16:35:22 +00001047 report("Register bank is too small for virtual register", MO,
1048 MONum);
1049 errs() << "Register bank " << RegBank->getName() << " too small("
Tim Northover0f140c72016-09-09 11:46:34 +00001050 << RegBank->getSize() << ") to fit " << Ty.getSizeInBits()
1051 << "-bits\n";
Quentin Colombetc1c94bc2016-04-08 16:35:22 +00001052 return;
1053 }
1054 if (SubIdx) {
Tim Northover0f140c72016-09-09 11:46:34 +00001055 report("Generic virtual register does not subregister index", MO,
1056 MONum);
Quentin Colombetc1c94bc2016-04-08 16:35:22 +00001057 return;
1058 }
Quentin Colombetfa5960a2016-12-22 21:56:39 +00001059
1060 // If this is a target specific instruction and this operand
1061 // has register class constraint, the virtual register must
1062 // comply to it.
1063 if (!isPreISelGenericOpcode(MCID.getOpcode()) &&
1064 TII->getRegClass(MCID, MONum, TRI, *MF)) {
1065 report("Virtual register does not match instruction constraint", MO,
1066 MONum);
1067 errs() << "Expect register class "
1068 << TRI->getRegClassName(
1069 TII->getRegClass(MCID, MONum, TRI, *MF))
1070 << " but got nothing\n";
1071 return;
1072 }
1073
Quentin Colombetc1c94bc2016-04-08 16:35:22 +00001074 break;
1075 }
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001076 if (SubIdx) {
Jakob Stoklund Oleseneb38bd8c2011-10-05 22:12:57 +00001077 const TargetRegisterClass *SRC =
1078 TRI->getSubClassWithSubReg(RC, SubIdx);
Jakob Stoklund Olesen48431782010-05-18 17:31:12 +00001079 if (!SRC) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001080 report("Invalid subregister index for virtual register", MO, MONum);
Owen Anderson21b17882015-02-04 00:02:59 +00001081 errs() << "Register class " << TRI->getRegClassName(RC)
Jakob Stoklund Olesen48431782010-05-18 17:31:12 +00001082 << " does not support subreg index " << SubIdx << "\n";
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001083 return;
1084 }
Jakob Stoklund Oleseneb38bd8c2011-10-05 22:12:57 +00001085 if (RC != SRC) {
1086 report("Invalid register class for subregister index", MO, MONum);
Owen Anderson21b17882015-02-04 00:02:59 +00001087 errs() << "Register class " << TRI->getRegClassName(RC)
Jakob Stoklund Oleseneb38bd8c2011-10-05 22:12:57 +00001088 << " does not fully support subreg index " << SubIdx << "\n";
1089 return;
1090 }
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001091 }
Jakob Stoklund Olesen3c52f022012-05-07 22:10:26 +00001092 if (const TargetRegisterClass *DRC =
1093 TII->getRegClass(MCID, MONum, TRI, *MF)) {
Jakob Stoklund Oleseneb38bd8c2011-10-05 22:12:57 +00001094 if (SubIdx) {
1095 const TargetRegisterClass *SuperRC =
Eric Christopher433c4322015-03-10 23:46:01 +00001096 TRI->getLargestLegalSuperClass(RC, *MF);
Jakob Stoklund Oleseneb38bd8c2011-10-05 22:12:57 +00001097 if (!SuperRC) {
1098 report("No largest legal super class exists.", MO, MONum);
1099 return;
1100 }
1101 DRC = TRI->getMatchingSuperRegClass(SuperRC, DRC, SubIdx);
1102 if (!DRC) {
1103 report("No matching super-reg register class.", MO, MONum);
1104 return;
1105 }
1106 }
Jakob Stoklund Olesenaff10602011-06-02 05:43:46 +00001107 if (!RC->hasSuperClassEq(DRC)) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001108 report("Illegal virtual register for instruction", MO, MONum);
Owen Anderson21b17882015-02-04 00:02:59 +00001109 errs() << "Expected a " << TRI->getRegClassName(DRC)
Craig Toppercf0444b2014-11-17 05:50:14 +00001110 << " register, but got a " << TRI->getRegClassName(RC)
1111 << " register\n";
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001112 }
1113 }
1114 }
1115 }
1116 break;
1117 }
Jakob Stoklund Olesenf6eb7d82009-09-21 07:19:08 +00001118
Jakob Stoklund Olesen16c4a972012-02-28 01:42:41 +00001119 case MachineOperand::MO_RegisterMask:
1120 regMasks.push_back(MO->getRegMask());
1121 break;
1122
Jakob Stoklund Olesenf6eb7d82009-09-21 07:19:08 +00001123 case MachineOperand::MO_MachineBasicBlock:
Chris Lattnerb06015a2010-02-09 19:54:29 +00001124 if (MI->isPHI() && !MO->getMBB()->isSuccessor(MI->getParent()))
1125 report("PHI operand is not in the CFG", MO, MONum);
Jakob Stoklund Olesenf6eb7d82009-09-21 07:19:08 +00001126 break;
1127
Jakob Stoklund Olesen31fffb62010-11-01 19:49:52 +00001128 case MachineOperand::MO_FrameIndex:
1129 if (LiveStks && LiveStks->hasInterval(MO->getIndex()) &&
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001130 LiveInts && !LiveInts->isNotInMIMap(*MI)) {
Jonas Paulsson72640f12015-10-29 08:28:35 +00001131 int FI = MO->getIndex();
1132 LiveInterval &LI = LiveStks->getInterval(FI);
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001133 SlotIndex Idx = LiveInts->getInstructionIndex(*MI);
Jonas Paulsson17ad0452015-10-21 07:39:47 +00001134
Jonas Paulsson17ad0452015-10-21 07:39:47 +00001135 bool stores = MI->mayStore();
Jonas Paulsson72640f12015-10-29 08:28:35 +00001136 bool loads = MI->mayLoad();
1137 // For a memory-to-memory move, we need to check if the frame
1138 // index is used for storing or loading, by inspecting the
1139 // memory operands.
1140 if (stores && loads) {
1141 for (auto *MMO : MI->memoperands()) {
1142 const PseudoSourceValue *PSV = MMO->getPseudoValue();
1143 if (PSV == nullptr) continue;
1144 const FixedStackPseudoSourceValue *Value =
1145 dyn_cast<FixedStackPseudoSourceValue>(PSV);
1146 if (Value == nullptr) continue;
1147 if (Value->getFrameIndex() != FI) continue;
1148
1149 if (MMO->isStore())
1150 loads = false;
1151 else
1152 stores = false;
1153 break;
1154 }
1155 if (loads == stores)
1156 report("Missing fixed stack memoperand.", MI);
1157 }
1158 if (loads && !LI.liveAt(Idx.getRegSlot(true))) {
Jakob Stoklund Olesen31fffb62010-11-01 19:49:52 +00001159 report("Instruction loads from dead spill slot", MO, MONum);
Owen Anderson21b17882015-02-04 00:02:59 +00001160 errs() << "Live stack: " << LI << '\n';
Jakob Stoklund Olesen31fffb62010-11-01 19:49:52 +00001161 }
Jonas Paulsson17ad0452015-10-21 07:39:47 +00001162 if (stores && !LI.liveAt(Idx.getRegSlot())) {
Jakob Stoklund Olesen31fffb62010-11-01 19:49:52 +00001163 report("Instruction stores to dead spill slot", MO, MONum);
Owen Anderson21b17882015-02-04 00:02:59 +00001164 errs() << "Live stack: " << LI << '\n';
Jakob Stoklund Olesen31fffb62010-11-01 19:49:52 +00001165 }
1166 }
1167 break;
1168
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001169 default:
1170 break;
1171 }
1172}
1173
Matthias Braun1377fd62016-02-02 20:04:51 +00001174void MachineVerifier::checkLivenessAtUse(const MachineOperand *MO,
1175 unsigned MONum, SlotIndex UseIdx, const LiveRange &LR, unsigned VRegOrUnit,
1176 LaneBitmask LaneMask) {
1177 LiveQueryResult LRQ = LR.Query(UseIdx);
1178 // Check if we have a segment at the use, note however that we only need one
1179 // live subregister range, the others may be dead.
Krzysztof Parzyszek91b5cf82016-12-15 14:36:06 +00001180 if (!LRQ.valueIn() && LaneMask.none()) {
Matthias Braun1377fd62016-02-02 20:04:51 +00001181 report("No live segment at use", MO, MONum);
1182 report_context_liverange(LR);
1183 report_context_vreg_regunit(VRegOrUnit);
1184 report_context(UseIdx);
1185 }
1186 if (MO->isKill() && !LRQ.isKill()) {
1187 report("Live range continues after kill flag", MO, MONum);
1188 report_context_liverange(LR);
1189 report_context_vreg_regunit(VRegOrUnit);
Krzysztof Parzyszekea9f8ce2016-12-16 19:11:56 +00001190 if (LaneMask.any())
Matthias Braun1377fd62016-02-02 20:04:51 +00001191 report_context_lanemask(LaneMask);
1192 report_context(UseIdx);
1193 }
1194}
1195
1196void MachineVerifier::checkLivenessAtDef(const MachineOperand *MO,
1197 unsigned MONum, SlotIndex DefIdx, const LiveRange &LR, unsigned VRegOrUnit,
1198 LaneBitmask LaneMask) {
1199 if (const VNInfo *VNI = LR.getVNInfoAt(DefIdx)) {
1200 assert(VNI && "NULL valno is not allowed");
1201 if (VNI->def != DefIdx) {
1202 report("Inconsistent valno->def", MO, MONum);
1203 report_context_liverange(LR);
1204 report_context_vreg_regunit(VRegOrUnit);
Krzysztof Parzyszekea9f8ce2016-12-16 19:11:56 +00001205 if (LaneMask.any())
Matthias Braun1377fd62016-02-02 20:04:51 +00001206 report_context_lanemask(LaneMask);
1207 report_context(*VNI);
1208 report_context(DefIdx);
1209 }
1210 } else {
1211 report("No live segment at def", MO, MONum);
1212 report_context_liverange(LR);
1213 report_context_vreg_regunit(VRegOrUnit);
Krzysztof Parzyszekea9f8ce2016-12-16 19:11:56 +00001214 if (LaneMask.any())
Matthias Braun1377fd62016-02-02 20:04:51 +00001215 report_context_lanemask(LaneMask);
1216 report_context(DefIdx);
1217 }
1218 // Check that, if the dead def flag is present, LiveInts agree.
1219 if (MO->isDead()) {
1220 LiveQueryResult LRQ = LR.Query(DefIdx);
1221 if (!LRQ.isDeadDef()) {
1222 // In case of physregs we can have a non-dead definition on another
1223 // operand.
1224 bool otherDef = false;
1225 if (!TargetRegisterInfo::isVirtualRegister(VRegOrUnit)) {
1226 const MachineInstr &MI = *MO->getParent();
1227 for (const MachineOperand &MO : MI.operands()) {
1228 if (!MO.isReg() || !MO.isDef() || MO.isDead())
1229 continue;
1230 unsigned Reg = MO.getReg();
1231 for (MCRegUnitIterator Units(Reg, TRI); Units.isValid(); ++Units) {
1232 if (*Units == VRegOrUnit) {
1233 otherDef = true;
1234 break;
1235 }
1236 }
1237 }
1238 }
1239
1240 if (!otherDef) {
1241 report("Live range continues after dead def flag", MO, MONum);
1242 report_context_liverange(LR);
1243 report_context_vreg_regunit(VRegOrUnit);
Krzysztof Parzyszekea9f8ce2016-12-16 19:11:56 +00001244 if (LaneMask.any())
Matthias Braun1377fd62016-02-02 20:04:51 +00001245 report_context_lanemask(LaneMask);
1246 }
1247 }
1248 }
1249}
1250
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001251void MachineVerifier::checkLiveness(const MachineOperand *MO, unsigned MONum) {
1252 const MachineInstr *MI = MO->getParent();
1253 const unsigned Reg = MO->getReg();
1254
1255 // Both use and def operands can read a register.
1256 if (MO->readsReg()) {
1257 regsLiveInButUnused.erase(Reg);
1258
Jakob Stoklund Olesenc6fd3de2012-07-25 16:49:11 +00001259 if (MO->isKill())
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001260 addRegWithSubRegs(regsKilled, Reg);
1261
1262 // Check that LiveVars knows this kill.
1263 if (LiveVars && TargetRegisterInfo::isVirtualRegister(Reg) &&
1264 MO->isKill()) {
1265 LiveVariables::VarInfo &VI = LiveVars->getVarInfo(Reg);
David Majnemer0d955d02016-08-11 22:21:41 +00001266 if (!is_contained(VI.Kills, MI))
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001267 report("Kill missing from LiveVariables", MO, MONum);
1268 }
1269
1270 // Check LiveInts liveness and kill.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001271 if (LiveInts && !LiveInts->isNotInMIMap(*MI)) {
1272 SlotIndex UseIdx = LiveInts->getInstructionIndex(*MI);
Jakob Stoklund Olesena766b472012-08-01 23:52:40 +00001273 // Check the cached regunit intervals.
1274 if (TargetRegisterInfo::isPhysicalRegister(Reg) && !isReserved(Reg)) {
1275 for (MCRegUnitIterator Units(Reg, TRI); Units.isValid(); ++Units) {
Matthias Braun1377fd62016-02-02 20:04:51 +00001276 if (const LiveRange *LR = LiveInts->getCachedRegUnit(*Units))
1277 checkLivenessAtUse(MO, MONum, UseIdx, *LR, *Units);
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001278 }
Jakob Stoklund Olesena766b472012-08-01 23:52:40 +00001279 }
1280
1281 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
1282 if (LiveInts->hasInterval(Reg)) {
1283 // This is a virtual register interval.
1284 const LiveInterval &LI = LiveInts->getInterval(Reg);
Matthias Braun1377fd62016-02-02 20:04:51 +00001285 checkLivenessAtUse(MO, MONum, UseIdx, LI, Reg);
1286
1287 if (LI.hasSubRanges() && !MO->isDef()) {
1288 unsigned SubRegIdx = MO->getSubReg();
1289 LaneBitmask MOMask = SubRegIdx != 0
1290 ? TRI->getSubRegIndexLaneMask(SubRegIdx)
1291 : MRI->getMaxLaneMaskForVReg(Reg);
Krzysztof Parzyszek91b5cf82016-12-15 14:36:06 +00001292 LaneBitmask LiveInMask;
Matthias Braun1377fd62016-02-02 20:04:51 +00001293 for (const LiveInterval::SubRange &SR : LI.subranges()) {
Krzysztof Parzyszek91b5cf82016-12-15 14:36:06 +00001294 if ((MOMask & SR.LaneMask).none())
Matthias Braun1377fd62016-02-02 20:04:51 +00001295 continue;
1296 checkLivenessAtUse(MO, MONum, UseIdx, SR, Reg, SR.LaneMask);
1297 LiveQueryResult LRQ = SR.Query(UseIdx);
1298 if (LRQ.valueIn())
1299 LiveInMask |= SR.LaneMask;
1300 }
1301 // At least parts of the register has to be live at the use.
Krzysztof Parzyszek91b5cf82016-12-15 14:36:06 +00001302 if ((LiveInMask & MOMask).none()) {
Matthias Braun1377fd62016-02-02 20:04:51 +00001303 report("No live subrange at use", MO, MONum);
1304 report_context(LI);
1305 report_context(UseIdx);
1306 }
Jakob Stoklund Olesena766b472012-08-01 23:52:40 +00001307 }
1308 } else {
1309 report("Virtual register has no live interval", MO, MONum);
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001310 }
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001311 }
1312 }
1313
1314 // Use of a dead register.
1315 if (!regsLive.count(Reg)) {
1316 if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
1317 // Reserved registers may be used even when 'dead'.
Matthias Braun96d77322014-12-10 01:13:13 +00001318 bool Bad = !isReserved(Reg);
1319 // We are fine if just any subregister has a defined value.
1320 if (Bad) {
1321 for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid();
1322 ++SubRegs) {
1323 if (regsLive.count(*SubRegs)) {
1324 Bad = false;
1325 break;
1326 }
1327 }
1328 }
Matthias Braun96a31952015-01-14 22:25:14 +00001329 // If there is an additional implicit-use of a super register we stop
1330 // here. By definition we are fine if the super register is not
1331 // (completely) dead, if the complete super register is dead we will
1332 // get a report for its operand.
1333 if (Bad) {
1334 for (const MachineOperand &MOP : MI->uses()) {
1335 if (!MOP.isReg())
1336 continue;
1337 if (!MOP.isImplicit())
1338 continue;
1339 for (MCSubRegIterator SubRegs(MOP.getReg(), TRI); SubRegs.isValid();
1340 ++SubRegs) {
1341 if (*SubRegs == Reg) {
1342 Bad = false;
1343 break;
1344 }
1345 }
1346 }
1347 }
Matthias Braun96d77322014-12-10 01:13:13 +00001348 if (Bad)
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001349 report("Using an undefined physical register", MO, MONum);
Pete Cooperdcf94db2012-07-19 23:40:38 +00001350 } else if (MRI->def_empty(Reg)) {
1351 report("Reading virtual register without a def", MO, MONum);
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001352 } else {
1353 BBInfo &MInfo = MBBInfoMap[MI->getParent()];
1354 // We don't know which virtual registers are live in, so only complain
1355 // if vreg was killed in this MBB. Otherwise keep track of vregs that
1356 // must be live in. PHI instructions are handled separately.
1357 if (MInfo.regsKilled.count(Reg))
1358 report("Using a killed virtual register", MO, MONum);
1359 else if (!MI->isPHI())
1360 MInfo.vregsLiveIn.insert(std::make_pair(Reg, MI));
1361 }
1362 }
1363 }
1364
1365 if (MO->isDef()) {
1366 // Register defined.
1367 // TODO: verify that earlyclobber ops are not used.
1368 if (MO->isDead())
1369 addRegWithSubRegs(regsDead, Reg);
1370 else
1371 addRegWithSubRegs(regsDefined, Reg);
1372
1373 // Verify SSA form.
1374 if (MRI->isSSA() && TargetRegisterInfo::isVirtualRegister(Reg) &&
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001375 std::next(MRI->def_begin(Reg)) != MRI->def_end())
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001376 report("Multiple virtual register defs in SSA form", MO, MONum);
1377
Matthias Braun13ddb7c2013-10-10 21:28:43 +00001378 // Check LiveInts for a live segment, but only for virtual registers.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +00001379 if (LiveInts && !LiveInts->isNotInMIMap(*MI)) {
1380 SlotIndex DefIdx = LiveInts->getInstructionIndex(*MI);
Jakob Stoklund Olesenb033ded2012-06-22 22:23:58 +00001381 DefIdx = DefIdx.getRegSlot(MO->isEarlyClobber());
Matthias Braun1377fd62016-02-02 20:04:51 +00001382
1383 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
1384 if (LiveInts->hasInterval(Reg)) {
1385 const LiveInterval &LI = LiveInts->getInterval(Reg);
1386 checkLivenessAtDef(MO, MONum, DefIdx, LI, Reg);
1387
1388 if (LI.hasSubRanges()) {
1389 unsigned SubRegIdx = MO->getSubReg();
1390 LaneBitmask MOMask = SubRegIdx != 0
1391 ? TRI->getSubRegIndexLaneMask(SubRegIdx)
1392 : MRI->getMaxLaneMaskForVReg(Reg);
1393 for (const LiveInterval::SubRange &SR : LI.subranges()) {
Krzysztof Parzyszek91b5cf82016-12-15 14:36:06 +00001394 if ((SR.LaneMask & MOMask).none())
Matthias Braun1377fd62016-02-02 20:04:51 +00001395 continue;
1396 checkLivenessAtDef(MO, MONum, DefIdx, SR, Reg, SR.LaneMask);
1397 }
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001398 }
1399 } else {
Matthias Braun1377fd62016-02-02 20:04:51 +00001400 report("Virtual register has no Live interval", MO, MONum);
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001401 }
Jakob Stoklund Olesenb21df322012-03-28 20:47:35 +00001402 }
1403 }
1404 }
1405}
1406
Jakob Stoklund Olesen63c733f2009-10-04 18:18:39 +00001407void MachineVerifier::visitMachineInstrAfter(const MachineInstr *MI) {
Jakob Stoklund Olesen00e7dff2012-06-06 22:34:30 +00001408}
1409
1410// This function gets called after visiting all instructions in a bundle. The
1411// argument points to the bundle header.
1412// Normal stand-alone instructions are also considered 'bundles', and this
1413// function is called for all of them.
1414void MachineVerifier::visitMachineBundleAfter(const MachineInstr *MI) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001415 BBInfo &MInfo = MBBInfoMap[MI->getParent()];
1416 set_union(MInfo.regsKilled, regsKilled);
Jakob Stoklund Olesen45833552010-08-05 18:59:59 +00001417 set_subtract(regsLive, regsKilled); regsKilled.clear();
Jakob Stoklund Olesen16c4a972012-02-28 01:42:41 +00001418 // Kill any masked registers.
1419 while (!regMasks.empty()) {
1420 const uint32_t *Mask = regMasks.pop_back_val();
1421 for (RegSet::iterator I = regsLive.begin(), E = regsLive.end(); I != E; ++I)
1422 if (TargetRegisterInfo::isPhysicalRegister(*I) &&
1423 MachineOperand::clobbersPhysReg(Mask, *I))
1424 regsDead.push_back(*I);
1425 }
Jakob Stoklund Olesen45833552010-08-05 18:59:59 +00001426 set_subtract(regsLive, regsDead); regsDead.clear();
1427 set_union(regsLive, regsDefined); regsDefined.clear();
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001428}
1429
1430void
Jakob Stoklund Olesen63c733f2009-10-04 18:18:39 +00001431MachineVerifier::visitMachineBasicBlockAfter(const MachineBasicBlock *MBB) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001432 MBBInfoMap[MBB].regsLiveOut = regsLive;
1433 regsLive.clear();
Jakob Stoklund Olesen58b6f4d2011-01-12 21:27:48 +00001434
1435 if (Indexes) {
1436 SlotIndex stop = Indexes->getMBBEndIdx(MBB);
1437 if (!(stop > lastIndex)) {
1438 report("Block ends before last instruction index", MBB);
Owen Anderson21b17882015-02-04 00:02:59 +00001439 errs() << "Block ends at " << stop
Jakob Stoklund Olesen58b6f4d2011-01-12 21:27:48 +00001440 << " last instruction was at " << lastIndex << '\n';
1441 }
1442 lastIndex = stop;
1443 }
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001444}
1445
1446// Calculate the largest possible vregsPassed sets. These are the registers that
1447// can pass through an MBB live, but may not be live every time. It is assumed
1448// that all vregsPassed sets are empty before the call.
Jakob Stoklund Olesen4cb77022010-01-05 20:59:36 +00001449void MachineVerifier::calcRegsPassed() {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001450 // First push live-out regs to successors' vregsPassed. Remember the MBBs that
1451 // have any vregsPassed.
Jakob Stoklund Olesen6ea6a1442012-03-10 00:36:04 +00001452 SmallPtrSet<const MachineBasicBlock*, 8> todo;
Alexey Samsonov41b977d2014-04-30 18:29:51 +00001453 for (const auto &MBB : *MF) {
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001454 BBInfo &MInfo = MBBInfoMap[&MBB];
1455 if (!MInfo.reachable)
1456 continue;
1457 for (MachineBasicBlock::const_succ_iterator SuI = MBB.succ_begin(),
1458 SuE = MBB.succ_end(); SuI != SuE; ++SuI) {
1459 BBInfo &SInfo = MBBInfoMap[*SuI];
1460 if (SInfo.addPassed(MInfo.regsLiveOut))
1461 todo.insert(*SuI);
1462 }
1463 }
1464
1465 // Iteratively push vregsPassed to successors. This will converge to the same
1466 // final state regardless of DenseSet iteration order.
1467 while (!todo.empty()) {
1468 const MachineBasicBlock *MBB = *todo.begin();
1469 todo.erase(MBB);
1470 BBInfo &MInfo = MBBInfoMap[MBB];
1471 for (MachineBasicBlock::const_succ_iterator SuI = MBB->succ_begin(),
1472 SuE = MBB->succ_end(); SuI != SuE; ++SuI) {
1473 if (*SuI == MBB)
1474 continue;
1475 BBInfo &SInfo = MBBInfoMap[*SuI];
1476 if (SInfo.addPassed(MInfo.vregsPassed))
1477 todo.insert(*SuI);
1478 }
1479 }
1480}
1481
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001482// Calculate the set of virtual registers that must be passed through each basic
1483// block in order to satisfy the requirements of successor blocks. This is very
Jakob Stoklund Olesen4cb77022010-01-05 20:59:36 +00001484// similar to calcRegsPassed, only backwards.
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001485void MachineVerifier::calcRegsRequired() {
1486 // First push live-in regs to predecessors' vregsRequired.
Jakob Stoklund Olesen6ea6a1442012-03-10 00:36:04 +00001487 SmallPtrSet<const MachineBasicBlock*, 8> todo;
Alexey Samsonov41b977d2014-04-30 18:29:51 +00001488 for (const auto &MBB : *MF) {
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001489 BBInfo &MInfo = MBBInfoMap[&MBB];
1490 for (MachineBasicBlock::const_pred_iterator PrI = MBB.pred_begin(),
1491 PrE = MBB.pred_end(); PrI != PrE; ++PrI) {
1492 BBInfo &PInfo = MBBInfoMap[*PrI];
1493 if (PInfo.addRequired(MInfo.vregsLiveIn))
1494 todo.insert(*PrI);
1495 }
1496 }
1497
1498 // Iteratively push vregsRequired to predecessors. This will converge to the
1499 // same final state regardless of DenseSet iteration order.
1500 while (!todo.empty()) {
1501 const MachineBasicBlock *MBB = *todo.begin();
1502 todo.erase(MBB);
1503 BBInfo &MInfo = MBBInfoMap[MBB];
1504 for (MachineBasicBlock::const_pred_iterator PrI = MBB->pred_begin(),
1505 PrE = MBB->pred_end(); PrI != PrE; ++PrI) {
1506 if (*PrI == MBB)
1507 continue;
1508 BBInfo &SInfo = MBBInfoMap[*PrI];
1509 if (SInfo.addRequired(MInfo.vregsRequired))
1510 todo.insert(*PrI);
1511 }
1512 }
1513}
1514
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001515// Check PHI instructions at the beginning of MBB. It is assumed that
Jakob Stoklund Olesen4cb77022010-01-05 20:59:36 +00001516// calcRegsPassed has been run so BBInfo::isLiveOut is valid.
Jakob Stoklund Olesen63c733f2009-10-04 18:18:39 +00001517void MachineVerifier::checkPHIOps(const MachineBasicBlock *MBB) {
Jakob Stoklund Olesen6ea6a1442012-03-10 00:36:04 +00001518 SmallPtrSet<const MachineBasicBlock*, 8> seen;
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001519 for (const auto &BBI : *MBB) {
1520 if (!BBI.isPHI())
1521 break;
Jakob Stoklund Olesen6ea6a1442012-03-10 00:36:04 +00001522 seen.clear();
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001523
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001524 for (unsigned i = 1, e = BBI.getNumOperands(); i != e; i += 2) {
1525 unsigned Reg = BBI.getOperand(i).getReg();
1526 const MachineBasicBlock *Pre = BBI.getOperand(i + 1).getMBB();
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001527 if (!Pre->isSuccessor(MBB))
1528 continue;
1529 seen.insert(Pre);
1530 BBInfo &PrInfo = MBBInfoMap[Pre];
1531 if (PrInfo.reachable && !PrInfo.isLiveOut(Reg))
1532 report("PHI operand is not live-out from predecessor",
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001533 &BBI.getOperand(i), i);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001534 }
1535
1536 // Did we see all predecessors?
1537 for (MachineBasicBlock::const_pred_iterator PrI = MBB->pred_begin(),
1538 PrE = MBB->pred_end(); PrI != PrE; ++PrI) {
1539 if (!seen.count(*PrI)) {
Alexey Samsonovf74bde62014-04-30 22:17:38 +00001540 report("Missing PHI operand", &BBI);
Owen Anderson21b17882015-02-04 00:02:59 +00001541 errs() << "BB#" << (*PrI)->getNumber()
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001542 << " is a predecessor according to the CFG.\n";
1543 }
1544 }
1545 }
1546}
1547
Jakob Stoklund Olesen63c733f2009-10-04 18:18:39 +00001548void MachineVerifier::visitMachineFunctionAfter() {
Jakob Stoklund Olesen4cb77022010-01-05 20:59:36 +00001549 calcRegsPassed();
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001550
Alexey Samsonov41b977d2014-04-30 18:29:51 +00001551 for (const auto &MBB : *MF) {
1552 BBInfo &MInfo = MBBInfoMap[&MBB];
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001553
1554 // Skip unreachable MBBs.
1555 if (!MInfo.reachable)
1556 continue;
1557
Alexey Samsonov41b977d2014-04-30 18:29:51 +00001558 checkPHIOps(&MBB);
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001559 }
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001560
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001561 // Now check liveness info if available
Jakob Stoklund Olesen9f3e5742012-03-10 00:36:06 +00001562 calcRegsRequired();
1563
Jakob Stoklund Olesenda9ea1d2012-06-29 21:00:00 +00001564 // Check for killed virtual registers that should be live out.
Alexey Samsonov41b977d2014-04-30 18:29:51 +00001565 for (const auto &MBB : *MF) {
1566 BBInfo &MInfo = MBBInfoMap[&MBB];
Jakob Stoklund Olesenda9ea1d2012-06-29 21:00:00 +00001567 for (RegSet::iterator
1568 I = MInfo.vregsRequired.begin(), E = MInfo.vregsRequired.end(); I != E;
1569 ++I)
1570 if (MInfo.regsKilled.count(*I)) {
Alexey Samsonov41b977d2014-04-30 18:29:51 +00001571 report("Virtual register killed in block, but needed live out.", &MBB);
Owen Anderson21b17882015-02-04 00:02:59 +00001572 errs() << "Virtual register " << PrintReg(*I)
Jakob Stoklund Olesenda9ea1d2012-06-29 21:00:00 +00001573 << " is used after the block.\n";
1574 }
1575 }
1576
Jakob Stoklund Olesena57fc122012-06-25 18:18:27 +00001577 if (!MF->empty()) {
Jakob Stoklund Olesen9f3e5742012-03-10 00:36:06 +00001578 BBInfo &MInfo = MBBInfoMap[&MF->front()];
1579 for (RegSet::iterator
1580 I = MInfo.vregsRequired.begin(), E = MInfo.vregsRequired.end(); I != E;
Matthias Braun30668dd2016-05-11 21:31:39 +00001581 ++I) {
1582 report("Virtual register defs don't dominate all uses.", MF);
1583 report_context_vreg(*I);
1584 }
Jakob Stoklund Olesen9f3e5742012-03-10 00:36:06 +00001585 }
1586
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001587 if (LiveVars)
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001588 verifyLiveVariables();
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001589 if (LiveInts)
1590 verifyLiveIntervals();
Jakob Stoklund Olesen36c027a2009-05-16 00:33:53 +00001591}
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001592
1593void MachineVerifier::verifyLiveVariables() {
1594 assert(LiveVars && "Don't call verifyLiveVariables without LiveVars");
Jakob Stoklund Olesen6ff70ad32011-01-08 23:11:02 +00001595 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
1596 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001597 LiveVariables::VarInfo &VI = LiveVars->getVarInfo(Reg);
Alexey Samsonov41b977d2014-04-30 18:29:51 +00001598 for (const auto &MBB : *MF) {
1599 BBInfo &MInfo = MBBInfoMap[&MBB];
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001600
1601 // Our vregsRequired should be identical to LiveVariables' AliveBlocks
1602 if (MInfo.vregsRequired.count(Reg)) {
Alexey Samsonov41b977d2014-04-30 18:29:51 +00001603 if (!VI.AliveBlocks.test(MBB.getNumber())) {
1604 report("LiveVariables: Block missing from AliveBlocks", &MBB);
Owen Anderson21b17882015-02-04 00:02:59 +00001605 errs() << "Virtual register " << PrintReg(Reg)
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001606 << " must be live through the block.\n";
1607 }
1608 } else {
Alexey Samsonov41b977d2014-04-30 18:29:51 +00001609 if (VI.AliveBlocks.test(MBB.getNumber())) {
1610 report("LiveVariables: Block should not be in AliveBlocks", &MBB);
Owen Anderson21b17882015-02-04 00:02:59 +00001611 errs() << "Virtual register " << PrintReg(Reg)
Jakob Stoklund Olesen9cbffd22009-11-18 20:36:57 +00001612 << " is not needed live through the block.\n";
1613 }
1614 }
1615 }
1616 }
1617}
1618
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001619void MachineVerifier::verifyLiveIntervals() {
1620 assert(LiveInts && "Don't call verifyLiveIntervals without LiveInts");
Jakob Stoklund Olesen781e0b92012-06-20 23:23:59 +00001621 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
1622 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
Jakob Stoklund Olesen1a065e42010-10-06 23:54:35 +00001623
1624 // Spilling and splitting may leave unused registers around. Skip them.
Jakob Stoklund Olesen781e0b92012-06-20 23:23:59 +00001625 if (MRI->reg_nodbg_empty(Reg))
Jakob Stoklund Olesen1a065e42010-10-06 23:54:35 +00001626 continue;
1627
Jakob Stoklund Olesen781e0b92012-06-20 23:23:59 +00001628 if (!LiveInts->hasInterval(Reg)) {
1629 report("Missing live interval for virtual register", MF);
Owen Anderson21b17882015-02-04 00:02:59 +00001630 errs() << PrintReg(Reg, TRI) << " still has defs or uses\n";
Jakob Stoklund Olesendc5e7062010-10-28 20:44:22 +00001631 continue;
Jakob Stoklund Olesen781e0b92012-06-20 23:23:59 +00001632 }
Jakob Stoklund Olesendc5e7062010-10-28 20:44:22 +00001633
Jakob Stoklund Olesen781e0b92012-06-20 23:23:59 +00001634 const LiveInterval &LI = LiveInts->getInterval(Reg);
1635 assert(Reg == LI.reg && "Invalid reg to interval mapping");
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001636 verifyLiveInterval(LI);
1637 }
Jakob Stoklund Olesen637c4672012-08-02 16:36:50 +00001638
1639 // Verify all the cached regunit intervals.
1640 for (unsigned i = 0, e = TRI->getNumRegUnits(); i != e; ++i)
Matthias Braun34e1be92013-10-10 21:29:02 +00001641 if (const LiveRange *LR = LiveInts->getCachedRegUnit(i))
1642 verifyLiveRange(*LR, i);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001643}
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001644
Matthias Braun364e6e92013-10-10 21:28:54 +00001645void MachineVerifier::verifyLiveRangeValue(const LiveRange &LR,
Matthias Braun3f1d8fd2014-12-10 01:12:10 +00001646 const VNInfo *VNI, unsigned Reg,
Matthias Braune6a24852015-09-25 21:51:14 +00001647 LaneBitmask LaneMask) {
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001648 if (VNI->isUnused())
1649 return;
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001650
Matthias Braun364e6e92013-10-10 21:28:54 +00001651 const VNInfo *DefVNI = LR.getVNInfoAt(VNI->def);
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001652
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001653 if (!DefVNI) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001654 report("Value not live at VNInfo def and not marked unused", MF);
1655 report_context(LR, Reg, LaneMask);
1656 report_context(*VNI);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001657 return;
1658 }
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001659
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001660 if (DefVNI != VNI) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001661 report("Live segment at def has different VNInfo", MF);
1662 report_context(LR, Reg, LaneMask);
1663 report_context(*VNI);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001664 return;
1665 }
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001666
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001667 const MachineBasicBlock *MBB = LiveInts->getMBBFromIndex(VNI->def);
1668 if (!MBB) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001669 report("Invalid VNInfo definition index", MF);
1670 report_context(LR, Reg, LaneMask);
1671 report_context(*VNI);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001672 return;
1673 }
Jakob Stoklund Olesen0fb303d2010-10-22 22:48:58 +00001674
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001675 if (VNI->isPHIDef()) {
1676 if (VNI->def != LiveInts->getMBBStartIdx(MBB)) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001677 report("PHIDef VNInfo is not defined at MBB start", MBB);
1678 report_context(LR, Reg, LaneMask);
1679 report_context(*VNI);
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001680 }
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001681 return;
1682 }
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001683
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001684 // Non-PHI def.
1685 const MachineInstr *MI = LiveInts->getInstructionFromIndex(VNI->def);
1686 if (!MI) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001687 report("No instruction at VNInfo def index", MBB);
1688 report_context(LR, Reg, LaneMask);
1689 report_context(*VNI);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001690 return;
1691 }
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001692
Matthias Braun364e6e92013-10-10 21:28:54 +00001693 if (Reg != 0) {
1694 bool hasDef = false;
1695 bool isEarlyClobber = false;
Duncan P. N. Exon Smithf9ab4162016-02-27 17:05:33 +00001696 for (ConstMIBundleOperands MOI(*MI); MOI.isValid(); ++MOI) {
Matthias Braun364e6e92013-10-10 21:28:54 +00001697 if (!MOI->isReg() || !MOI->isDef())
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001698 continue;
Matthias Braun364e6e92013-10-10 21:28:54 +00001699 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
1700 if (MOI->getReg() != Reg)
1701 continue;
1702 } else {
1703 if (!TargetRegisterInfo::isPhysicalRegister(MOI->getReg()) ||
1704 !TRI->hasRegUnit(MOI->getReg(), Reg))
1705 continue;
1706 }
Krzysztof Parzyszekea9f8ce2016-12-16 19:11:56 +00001707 if (LaneMask.any() &&
Krzysztof Parzyszek91b5cf82016-12-15 14:36:06 +00001708 (TRI->getSubRegIndexLaneMask(MOI->getSubReg()) & LaneMask).none())
Matthias Braun3f1d8fd2014-12-10 01:12:10 +00001709 continue;
Matthias Braun364e6e92013-10-10 21:28:54 +00001710 hasDef = true;
1711 if (MOI->isEarlyClobber())
1712 isEarlyClobber = true;
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001713 }
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001714
Matthias Braun364e6e92013-10-10 21:28:54 +00001715 if (!hasDef) {
1716 report("Defining instruction does not modify register", MI);
Matthias Braun7e624d52015-11-09 23:59:33 +00001717 report_context(LR, Reg, LaneMask);
1718 report_context(*VNI);
Matthias Braun364e6e92013-10-10 21:28:54 +00001719 }
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001720
Matthias Braun364e6e92013-10-10 21:28:54 +00001721 // Early clobber defs begin at USE slots, but other defs must begin at
1722 // DEF slots.
1723 if (isEarlyClobber) {
1724 if (!VNI->def.isEarlyClobber()) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001725 report("Early clobber def must be at an early-clobber slot", MBB);
1726 report_context(LR, Reg, LaneMask);
1727 report_context(*VNI);
Matthias Braun364e6e92013-10-10 21:28:54 +00001728 }
1729 } else if (!VNI->def.isRegister()) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001730 report("Non-PHI, non-early clobber def must be at a register slot", MBB);
1731 report_context(LR, Reg, LaneMask);
1732 report_context(*VNI);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001733 }
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001734 }
1735}
1736
Matthias Braun364e6e92013-10-10 21:28:54 +00001737void MachineVerifier::verifyLiveRangeSegment(const LiveRange &LR,
1738 const LiveRange::const_iterator I,
Matthias Braune6a24852015-09-25 21:51:14 +00001739 unsigned Reg, LaneBitmask LaneMask)
1740{
Matthias Braun364e6e92013-10-10 21:28:54 +00001741 const LiveRange::Segment &S = *I;
1742 const VNInfo *VNI = S.valno;
Matthias Braun13ddb7c2013-10-10 21:28:43 +00001743 assert(VNI && "Live segment has no valno");
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001744
Matthias Braun364e6e92013-10-10 21:28:54 +00001745 if (VNI->id >= LR.getNumValNums() || VNI != LR.getValNumInfo(VNI->id)) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001746 report("Foreign valno in live segment", MF);
1747 report_context(LR, Reg, LaneMask);
1748 report_context(S);
1749 report_context(*VNI);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001750 }
1751
1752 if (VNI->isUnused()) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001753 report("Live segment valno is marked unused", MF);
1754 report_context(LR, Reg, LaneMask);
1755 report_context(S);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001756 }
1757
Matthias Braun364e6e92013-10-10 21:28:54 +00001758 const MachineBasicBlock *MBB = LiveInts->getMBBFromIndex(S.start);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001759 if (!MBB) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001760 report("Bad start of live segment, no basic block", MF);
1761 report_context(LR, Reg, LaneMask);
1762 report_context(S);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001763 return;
1764 }
1765 SlotIndex MBBStartIdx = LiveInts->getMBBStartIdx(MBB);
Matthias Braun364e6e92013-10-10 21:28:54 +00001766 if (S.start != MBBStartIdx && S.start != VNI->def) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001767 report("Live segment must begin at MBB entry or valno def", MBB);
1768 report_context(LR, Reg, LaneMask);
1769 report_context(S);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001770 }
1771
1772 const MachineBasicBlock *EndMBB =
Matthias Braun364e6e92013-10-10 21:28:54 +00001773 LiveInts->getMBBFromIndex(S.end.getPrevSlot());
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001774 if (!EndMBB) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001775 report("Bad end of live segment, no basic block", MF);
1776 report_context(LR, Reg, LaneMask);
1777 report_context(S);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001778 return;
1779 }
1780
1781 // No more checks for live-out segments.
Matthias Braun364e6e92013-10-10 21:28:54 +00001782 if (S.end == LiveInts->getMBBEndIdx(EndMBB))
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001783 return;
1784
Jakob Stoklund Olesen637c4672012-08-02 16:36:50 +00001785 // RegUnit intervals are allowed dead phis.
Matthias Braun364e6e92013-10-10 21:28:54 +00001786 if (!TargetRegisterInfo::isVirtualRegister(Reg) && VNI->isPHIDef() &&
1787 S.start == VNI->def && S.end == VNI->def.getDeadSlot())
Jakob Stoklund Olesen637c4672012-08-02 16:36:50 +00001788 return;
1789
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001790 // The live segment is ending inside EndMBB
1791 const MachineInstr *MI =
Matthias Braun364e6e92013-10-10 21:28:54 +00001792 LiveInts->getInstructionFromIndex(S.end.getPrevSlot());
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001793 if (!MI) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001794 report("Live segment doesn't end at a valid instruction", EndMBB);
1795 report_context(LR, Reg, LaneMask);
1796 report_context(S);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001797 return;
1798 }
1799
1800 // The block slot must refer to a basic block boundary.
Matthias Braun364e6e92013-10-10 21:28:54 +00001801 if (S.end.isBlock()) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001802 report("Live segment ends at B slot of an instruction", EndMBB);
1803 report_context(LR, Reg, LaneMask);
1804 report_context(S);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001805 }
1806
Matthias Braun364e6e92013-10-10 21:28:54 +00001807 if (S.end.isDead()) {
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001808 // Segment ends on the dead slot.
1809 // That means there must be a dead def.
Matthias Braun364e6e92013-10-10 21:28:54 +00001810 if (!SlotIndex::isSameInstr(S.start, S.end)) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001811 report("Live segment ending at dead slot spans instructions", EndMBB);
1812 report_context(LR, Reg, LaneMask);
1813 report_context(S);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001814 }
1815 }
1816
1817 // A live segment can only end at an early-clobber slot if it is being
1818 // redefined by an early-clobber def.
Matthias Braun364e6e92013-10-10 21:28:54 +00001819 if (S.end.isEarlyClobber()) {
1820 if (I+1 == LR.end() || (I+1)->start != S.end) {
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001821 report("Live segment ending at early clobber slot must be "
Matthias Braun7e624d52015-11-09 23:59:33 +00001822 "redefined by an EC def in the same instruction", EndMBB);
1823 report_context(LR, Reg, LaneMask);
1824 report_context(S);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001825 }
1826 }
1827
1828 // The following checks only apply to virtual registers. Physreg liveness
1829 // is too weird to check.
Matthias Braun364e6e92013-10-10 21:28:54 +00001830 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Matthias Braun13ddb7c2013-10-10 21:28:43 +00001831 // A live segment can end with either a redefinition, a kill flag on a
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001832 // use, or a dead flag on a def.
1833 bool hasRead = false;
Matthias Braun21554d92014-12-10 01:13:11 +00001834 bool hasSubRegDef = false;
Matthias Braun72a58c32016-03-29 19:07:43 +00001835 bool hasDeadDef = false;
Duncan P. N. Exon Smithf9ab4162016-02-27 17:05:33 +00001836 for (ConstMIBundleOperands MOI(*MI); MOI.isValid(); ++MOI) {
Matthias Braun364e6e92013-10-10 21:28:54 +00001837 if (!MOI->isReg() || MOI->getReg() != Reg)
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001838 continue;
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001839 unsigned Sub = MOI->getSubReg();
Krzysztof Parzyszek91b5cf82016-12-15 14:36:06 +00001840 LaneBitmask SLM = Sub != 0 ? TRI->getSubRegIndexLaneMask(Sub)
1841 : LaneBitmask::getAll();
Matthias Braun72a58c32016-03-29 19:07:43 +00001842 if (MOI->isDef()) {
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001843 if (Sub != 0) {
Matthias Braun72a58c32016-03-29 19:07:43 +00001844 hasSubRegDef = true;
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001845 // An operand vreg0:sub0<def> reads vreg0:sub1..n. Invert the lane
1846 // mask for subregister defs. Read-undef defs will be handled by
1847 // readsReg below.
Krzysztof Parzyszek0a955d62016-08-29 13:15:35 +00001848 SLM = ~SLM;
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001849 }
Matthias Braun72a58c32016-03-29 19:07:43 +00001850 if (MOI->isDead())
1851 hasDeadDef = true;
1852 }
Krzysztof Parzyszekea9f8ce2016-12-16 19:11:56 +00001853 if (LaneMask.any() && (LaneMask & SLM).none())
Krzysztof Parzyszeka7ed0902016-08-24 13:37:55 +00001854 continue;
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001855 if (MOI->readsReg())
1856 hasRead = true;
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001857 }
Matthias Braun72a58c32016-03-29 19:07:43 +00001858 if (S.end.isDead()) {
1859 // Make sure that the corresponding machine operand for a "dead" live
1860 // range has the dead flag. We cannot perform this check for subregister
1861 // liveranges as partially dead values are allowed.
Krzysztof Parzyszek91b5cf82016-12-15 14:36:06 +00001862 if (LaneMask.none() && !hasDeadDef) {
Matthias Braun72a58c32016-03-29 19:07:43 +00001863 report("Instruction ending live segment on dead slot has no dead flag",
1864 MI);
1865 report_context(LR, Reg, LaneMask);
1866 report_context(S);
1867 }
1868 } else {
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001869 if (!hasRead) {
Matthias Braun21554d92014-12-10 01:13:11 +00001870 // When tracking subregister liveness, the main range must start new
1871 // values on partial register writes, even if there is no read.
Krzysztof Parzyszekea9f8ce2016-12-16 19:11:56 +00001872 if (!MRI->shouldTrackSubRegLiveness(Reg) || LaneMask.any() ||
Matthias Brauna25e13a2015-03-19 00:21:58 +00001873 !hasSubRegDef) {
Matthias Braun21554d92014-12-10 01:13:11 +00001874 report("Instruction ending live segment doesn't read the register",
1875 MI);
Matthias Braun7e624d52015-11-09 23:59:33 +00001876 report_context(LR, Reg, LaneMask);
1877 report_context(S);
Matthias Braun21554d92014-12-10 01:13:11 +00001878 }
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001879 }
1880 }
1881 }
1882
1883 // Now check all the basic blocks in this live segment.
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +00001884 MachineFunction::const_iterator MFI = MBB->getIterator();
Matthias Braun13ddb7c2013-10-10 21:28:43 +00001885 // Is this live segment the beginning of a non-PHIDef VN?
Matthias Braun364e6e92013-10-10 21:28:54 +00001886 if (S.start == VNI->def && !VNI->isPHIDef()) {
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001887 // Not live-in to any blocks.
1888 if (MBB == EndMBB)
1889 return;
1890 // Skip this block.
1891 ++MFI;
1892 }
1893 for (;;) {
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +00001894 assert(LiveInts->isLiveInToMBB(LR, &*MFI));
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001895 // We don't know how to track physregs into a landing pad.
Matthias Braun364e6e92013-10-10 21:28:54 +00001896 if (!TargetRegisterInfo::isVirtualRegister(Reg) &&
Reid Kleckner0e288232015-08-27 23:27:47 +00001897 MFI->isEHPad()) {
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001898 if (&*MFI == EndMBB)
1899 break;
1900 ++MFI;
1901 continue;
1902 }
1903
1904 // Is VNI a PHI-def in the current block?
1905 bool IsPHI = VNI->isPHIDef() &&
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +00001906 VNI->def == LiveInts->getMBBStartIdx(&*MFI);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001907
1908 // Check that VNI is live-out of all predecessors.
1909 for (MachineBasicBlock::const_pred_iterator PI = MFI->pred_begin(),
1910 PE = MFI->pred_end(); PI != PE; ++PI) {
1911 SlotIndex PEnd = LiveInts->getMBBEndIdx(*PI);
Matthias Braun364e6e92013-10-10 21:28:54 +00001912 const VNInfo *PVNI = LR.getVNInfoBefore(PEnd);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001913
Matthias Braune29b7682016-05-20 23:02:13 +00001914 // All predecessors must have a live-out value if this is not a
1915 // subregister liverange.
Krzysztof Parzyszek91b5cf82016-12-15 14:36:06 +00001916 if (!PVNI && LaneMask.none()) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001917 report("Register not marked live out of predecessor", *PI);
1918 report_context(LR, Reg, LaneMask);
1919 report_context(*VNI);
1920 errs() << " live into BB#" << MFI->getNumber()
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +00001921 << '@' << LiveInts->getMBBStartIdx(&*MFI) << ", not live before "
1922 << PEnd << '\n';
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001923 continue;
1924 }
1925
1926 // Only PHI-defs can take different predecessor values.
1927 if (!IsPHI && PVNI != VNI) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001928 report("Different value live out of predecessor", *PI);
1929 report_context(LR, Reg, LaneMask);
Owen Anderson21b17882015-02-04 00:02:59 +00001930 errs() << "Valno #" << PVNI->id << " live out of BB#"
Duncan P. N. Exon Smith5ec15682015-10-09 19:40:45 +00001931 << (*PI)->getNumber() << '@' << PEnd << "\nValno #" << VNI->id
1932 << " live into BB#" << MFI->getNumber() << '@'
1933 << LiveInts->getMBBStartIdx(&*MFI) << '\n';
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001934 }
1935 }
1936 if (&*MFI == EndMBB)
1937 break;
1938 ++MFI;
1939 }
1940}
1941
Matthias Braun3f1d8fd2014-12-10 01:12:10 +00001942void MachineVerifier::verifyLiveRange(const LiveRange &LR, unsigned Reg,
Matthias Braune6a24852015-09-25 21:51:14 +00001943 LaneBitmask LaneMask) {
Matthias Braun96761952014-12-10 23:07:54 +00001944 for (const VNInfo *VNI : LR.valnos)
1945 verifyLiveRangeValue(LR, VNI, Reg, LaneMask);
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001946
Matthias Braun364e6e92013-10-10 21:28:54 +00001947 for (LiveRange::const_iterator I = LR.begin(), E = LR.end(); I != E; ++I)
Matthias Braun3f1d8fd2014-12-10 01:12:10 +00001948 verifyLiveRangeSegment(LR, I, Reg, LaneMask);
Matthias Braun364e6e92013-10-10 21:28:54 +00001949}
1950
1951void MachineVerifier::verifyLiveInterval(const LiveInterval &LI) {
Matthias Braun3f1d8fd2014-12-10 01:12:10 +00001952 unsigned Reg = LI.reg;
Matthias Braune962e522015-03-25 21:18:22 +00001953 assert(TargetRegisterInfo::isVirtualRegister(Reg));
1954 verifyLiveRange(LI, Reg);
1955
Krzysztof Parzyszek91b5cf82016-12-15 14:36:06 +00001956 LaneBitmask Mask;
Matthias Braune6a24852015-09-25 21:51:14 +00001957 LaneBitmask MaxMask = MRI->getMaxLaneMaskForVReg(Reg);
Matthias Braune962e522015-03-25 21:18:22 +00001958 for (const LiveInterval::SubRange &SR : LI.subranges()) {
Krzysztof Parzyszekea9f8ce2016-12-16 19:11:56 +00001959 if ((Mask & SR.LaneMask).any()) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001960 report("Lane masks of sub ranges overlap in live interval", MF);
1961 report_context(LI);
1962 }
Krzysztof Parzyszekea9f8ce2016-12-16 19:11:56 +00001963 if ((SR.LaneMask & ~MaxMask).any()) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001964 report("Subrange lanemask is invalid", MF);
1965 report_context(LI);
1966 }
1967 if (SR.empty()) {
1968 report("Subrange must not be empty", MF);
1969 report_context(SR, LI.reg, SR.LaneMask);
1970 }
Matthias Braune962e522015-03-25 21:18:22 +00001971 Mask |= SR.LaneMask;
1972 verifyLiveRange(SR, LI.reg, SR.LaneMask);
Matthias Braun7e624d52015-11-09 23:59:33 +00001973 if (!LI.covers(SR)) {
1974 report("A Subrange is not covered by the main range", MF);
1975 report_context(LI);
1976 }
Matthias Braun3f1d8fd2014-12-10 01:12:10 +00001977 }
1978
Jakob Stoklund Olesene736b972012-08-02 00:20:20 +00001979 // Check the LI only has one connected component.
Matthias Braune962e522015-03-25 21:18:22 +00001980 ConnectedVNInfoEqClasses ConEQ(*LiveInts);
Matthias Braunbf47f632016-01-08 01:16:35 +00001981 unsigned NumComp = ConEQ.Classify(LI);
Matthias Braune962e522015-03-25 21:18:22 +00001982 if (NumComp > 1) {
Matthias Braun7e624d52015-11-09 23:59:33 +00001983 report("Multiple connected components in live interval", MF);
1984 report_context(LI);
Matthias Braune962e522015-03-25 21:18:22 +00001985 for (unsigned comp = 0; comp != NumComp; ++comp) {
1986 errs() << comp << ": valnos";
1987 for (LiveInterval::const_vni_iterator I = LI.vni_begin(),
1988 E = LI.vni_end(); I!=E; ++I)
1989 if (comp == ConEQ.getEqClass(*I))
1990 errs() << ' ' << (*I)->id;
1991 errs() << '\n';
Jakob Stoklund Olesen260fa282010-10-26 22:36:07 +00001992 }
Jakob Stoklund Olesen8147d7a2010-08-06 18:04:19 +00001993 }
1994}
Manman Renaa6875b2013-07-15 21:26:31 +00001995
1996namespace {
1997 // FrameSetup and FrameDestroy can have zero adjustment, so using a single
1998 // integer, we can't tell whether it is a FrameSetup or FrameDestroy if the
1999 // value is zero.
2000 // We use a bool plus an integer to capture the stack state.
2001 struct StackStateOfBB {
2002 StackStateOfBB() : EntryValue(0), ExitValue(0), EntryIsSetup(false),
2003 ExitIsSetup(false) { }
2004 StackStateOfBB(int EntryVal, int ExitVal, bool EntrySetup, bool ExitSetup) :
2005 EntryValue(EntryVal), ExitValue(ExitVal), EntryIsSetup(EntrySetup),
2006 ExitIsSetup(ExitSetup) { }
2007 // Can be negative, which means we are setting up a frame.
2008 int EntryValue;
2009 int ExitValue;
2010 bool EntryIsSetup;
2011 bool ExitIsSetup;
2012 };
Alexander Kornienkof00654e2015-06-23 09:49:53 +00002013}
Manman Renaa6875b2013-07-15 21:26:31 +00002014
2015/// Make sure on every path through the CFG, a FrameSetup <n> is always followed
2016/// by a FrameDestroy <n>, stack adjustments are identical on all
2017/// CFG edges to a merge point, and frame is destroyed at end of a return block.
2018void MachineVerifier::verifyStackFrame() {
Matthias Braunfa3872e2015-05-18 20:27:55 +00002019 unsigned FrameSetupOpcode = TII->getCallFrameSetupOpcode();
2020 unsigned FrameDestroyOpcode = TII->getCallFrameDestroyOpcode();
Manman Renaa6875b2013-07-15 21:26:31 +00002021
2022 SmallVector<StackStateOfBB, 8> SPState;
2023 SPState.resize(MF->getNumBlockIDs());
David Callahanc1051ab2016-10-05 21:36:16 +00002024 df_iterator_default_set<const MachineBasicBlock*> Reachable;
Manman Renaa6875b2013-07-15 21:26:31 +00002025
2026 // Visit the MBBs in DFS order.
2027 for (df_ext_iterator<const MachineFunction*,
David Callahanc1051ab2016-10-05 21:36:16 +00002028 df_iterator_default_set<const MachineBasicBlock*> >
Manman Renaa6875b2013-07-15 21:26:31 +00002029 DFI = df_ext_begin(MF, Reachable), DFE = df_ext_end(MF, Reachable);
2030 DFI != DFE; ++DFI) {
2031 const MachineBasicBlock *MBB = *DFI;
2032
2033 StackStateOfBB BBState;
2034 // Check the exit state of the DFS stack predecessor.
2035 if (DFI.getPathLength() >= 2) {
2036 const MachineBasicBlock *StackPred = DFI.getPath(DFI.getPathLength() - 2);
2037 assert(Reachable.count(StackPred) &&
2038 "DFS stack predecessor is already visited.\n");
2039 BBState.EntryValue = SPState[StackPred->getNumber()].ExitValue;
2040 BBState.EntryIsSetup = SPState[StackPred->getNumber()].ExitIsSetup;
2041 BBState.ExitValue = BBState.EntryValue;
2042 BBState.ExitIsSetup = BBState.EntryIsSetup;
2043 }
2044
2045 // Update stack state by checking contents of MBB.
Alexey Samsonovf74bde62014-04-30 22:17:38 +00002046 for (const auto &I : *MBB) {
2047 if (I.getOpcode() == FrameSetupOpcode) {
Manman Renaa6875b2013-07-15 21:26:31 +00002048 // The first operand of a FrameOpcode should be i32.
Alexey Samsonovf74bde62014-04-30 22:17:38 +00002049 int Size = I.getOperand(0).getImm();
Manman Renaa6875b2013-07-15 21:26:31 +00002050 assert(Size >= 0 &&
2051 "Value should be non-negative in FrameSetup and FrameDestroy.\n");
2052
2053 if (BBState.ExitIsSetup)
Alexey Samsonovf74bde62014-04-30 22:17:38 +00002054 report("FrameSetup is after another FrameSetup", &I);
Manman Renaa6875b2013-07-15 21:26:31 +00002055 BBState.ExitValue -= Size;
2056 BBState.ExitIsSetup = true;
2057 }
2058
Alexey Samsonovf74bde62014-04-30 22:17:38 +00002059 if (I.getOpcode() == FrameDestroyOpcode) {
Manman Renaa6875b2013-07-15 21:26:31 +00002060 // The first operand of a FrameOpcode should be i32.
Alexey Samsonovf74bde62014-04-30 22:17:38 +00002061 int Size = I.getOperand(0).getImm();
Manman Renaa6875b2013-07-15 21:26:31 +00002062 assert(Size >= 0 &&
2063 "Value should be non-negative in FrameSetup and FrameDestroy.\n");
2064
2065 if (!BBState.ExitIsSetup)
Alexey Samsonovf74bde62014-04-30 22:17:38 +00002066 report("FrameDestroy is not after a FrameSetup", &I);
Manman Renaa6875b2013-07-15 21:26:31 +00002067 int AbsSPAdj = BBState.ExitValue < 0 ? -BBState.ExitValue :
2068 BBState.ExitValue;
2069 if (BBState.ExitIsSetup && AbsSPAdj != Size) {
Alexey Samsonovf74bde62014-04-30 22:17:38 +00002070 report("FrameDestroy <n> is after FrameSetup <m>", &I);
Owen Anderson21b17882015-02-04 00:02:59 +00002071 errs() << "FrameDestroy <" << Size << "> is after FrameSetup <"
Manman Renaa6875b2013-07-15 21:26:31 +00002072 << AbsSPAdj << ">.\n";
2073 }
2074 BBState.ExitValue += Size;
2075 BBState.ExitIsSetup = false;
2076 }
2077 }
2078 SPState[MBB->getNumber()] = BBState;
2079
2080 // Make sure the exit state of any predecessor is consistent with the entry
2081 // state.
2082 for (MachineBasicBlock::const_pred_iterator I = MBB->pred_begin(),
2083 E = MBB->pred_end(); I != E; ++I) {
2084 if (Reachable.count(*I) &&
2085 (SPState[(*I)->getNumber()].ExitValue != BBState.EntryValue ||
2086 SPState[(*I)->getNumber()].ExitIsSetup != BBState.EntryIsSetup)) {
2087 report("The exit stack state of a predecessor is inconsistent.", MBB);
Owen Anderson21b17882015-02-04 00:02:59 +00002088 errs() << "Predecessor BB#" << (*I)->getNumber() << " has exit state ("
Manman Renaa6875b2013-07-15 21:26:31 +00002089 << SPState[(*I)->getNumber()].ExitValue << ", "
2090 << SPState[(*I)->getNumber()].ExitIsSetup
2091 << "), while BB#" << MBB->getNumber() << " has entry state ("
2092 << BBState.EntryValue << ", " << BBState.EntryIsSetup << ").\n";
2093 }
2094 }
2095
2096 // Make sure the entry state of any successor is consistent with the exit
2097 // state.
2098 for (MachineBasicBlock::const_succ_iterator I = MBB->succ_begin(),
2099 E = MBB->succ_end(); I != E; ++I) {
2100 if (Reachable.count(*I) &&
2101 (SPState[(*I)->getNumber()].EntryValue != BBState.ExitValue ||
2102 SPState[(*I)->getNumber()].EntryIsSetup != BBState.ExitIsSetup)) {
2103 report("The entry stack state of a successor is inconsistent.", MBB);
Owen Anderson21b17882015-02-04 00:02:59 +00002104 errs() << "Successor BB#" << (*I)->getNumber() << " has entry state ("
Manman Renaa6875b2013-07-15 21:26:31 +00002105 << SPState[(*I)->getNumber()].EntryValue << ", "
2106 << SPState[(*I)->getNumber()].EntryIsSetup
2107 << "), while BB#" << MBB->getNumber() << " has exit state ("
2108 << BBState.ExitValue << ", " << BBState.ExitIsSetup << ").\n";
2109 }
2110 }
2111
2112 // Make sure a basic block with return ends with zero stack adjustment.
2113 if (!MBB->empty() && MBB->back().isReturn()) {
2114 if (BBState.ExitIsSetup)
2115 report("A return block ends with a FrameSetup.", MBB);
2116 if (BBState.ExitValue)
2117 report("A return block ends with a nonzero stack adjustment.", MBB);
2118 }
2119 }
2120}