blob: 74ba94d1fcc0b6a29c4d28249cf7d151c4eaefc5 [file] [log] [blame]
Bill Wendling5567bb02010-08-19 18:52:17 +00001//===-- MachineVerifier.cpp - Machine Code Verifier -----------------------===//
Jakob Stoklund Olesen48872e02009-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
Bill Wendlingd29052b2011-05-04 22:54:05 +000026#include "llvm/Instructions.h"
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000027#include "llvm/Function.h"
Jakob Stoklund Olesen1fe9c342010-08-05 22:32:21 +000028#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000029#include "llvm/CodeGen/LiveVariables.h"
Jakob Stoklund Olesene8f08232010-11-01 19:49:52 +000030#include "llvm/CodeGen/LiveStackAnalysis.h"
Jakob Stoklund Olesen30e98a02012-02-29 00:33:41 +000031#include "llvm/CodeGen/MachineInstrBundle.h"
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000032#include "llvm/CodeGen/MachineFunctionPass.h"
Jakob Stoklund Olesena6b677d2009-08-13 16:19:51 +000033#include "llvm/CodeGen/MachineFrameInfo.h"
Dan Gohman2dbc4c82009-10-07 17:36:00 +000034#include "llvm/CodeGen/MachineMemOperand.h"
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000035#include "llvm/CodeGen/MachineRegisterInfo.h"
36#include "llvm/CodeGen/Passes.h"
Bill Wendlingd29052b2011-05-04 22:54:05 +000037#include "llvm/MC/MCAsmInfo.h"
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000038#include "llvm/Target/TargetMachine.h"
39#include "llvm/Target/TargetRegisterInfo.h"
40#include "llvm/Target/TargetInstrInfo.h"
Chris Lattnercf143a42009-08-23 03:13:20 +000041#include "llvm/ADT/DenseSet.h"
42#include "llvm/ADT/SetOperations.h"
43#include "llvm/ADT/SmallVector.h"
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000044#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000045#include "llvm/Support/ErrorHandling.h"
46#include "llvm/Support/raw_ostream.h"
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000047using namespace llvm;
48
49namespace {
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +000050 struct MachineVerifier {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000051
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +000052 MachineVerifier(Pass *pass, const char *b) :
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +000053 PASS(pass),
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +000054 Banner(b),
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000055 OutFileName(getenv("LLVM_VERIFY_MACHINEINSTRS"))
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +000056 {}
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000057
58 bool runOnMachineFunction(MachineFunction &MF);
59
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +000060 Pass *const PASS;
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +000061 const char *Banner;
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000062 const char *const OutFileName;
Chris Lattner17e9edc2009-08-23 02:51:22 +000063 raw_ostream *OS;
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000064 const MachineFunction *MF;
65 const TargetMachine *TM;
Evan Cheng15993f82011-06-27 21:26:13 +000066 const TargetInstrInfo *TII;
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000067 const TargetRegisterInfo *TRI;
68 const MachineRegisterInfo *MRI;
69
70 unsigned foundErrors;
71
72 typedef SmallVector<unsigned, 16> RegVector;
Jakob Stoklund Olesen9ca12d22012-02-28 01:42:41 +000073 typedef SmallVector<const uint32_t*, 4> RegMaskVector;
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000074 typedef DenseSet<unsigned> RegSet;
75 typedef DenseMap<unsigned, const MachineInstr*> RegMap;
76
Jakob Stoklund Olesen5adc07e2011-09-23 22:45:39 +000077 const MachineInstr *FirstTerminator;
78
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000079 BitVector regsReserved;
Lang Hames03698de2012-02-14 19:17:48 +000080 BitVector regsAllocatable;
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000081 RegSet regsLive;
Jakob Stoklund Olesen710b13b2009-08-08 13:19:25 +000082 RegVector regsDefined, regsDead, regsKilled;
Jakob Stoklund Olesen9ca12d22012-02-28 01:42:41 +000083 RegMaskVector regMasks;
Jakob Stoklund Olesen710b13b2009-08-08 13:19:25 +000084 RegSet regsLiveInButUnused;
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000085
Jakob Stoklund Olesenfc69c372011-01-12 21:27:48 +000086 SlotIndex lastIndex;
87
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000088 // Add Reg and any sub-registers to RV
89 void addRegWithSubRegs(RegVector &RV, unsigned Reg) {
90 RV.push_back(Reg);
91 if (TargetRegisterInfo::isPhysicalRegister(Reg))
Craig Topper9ebfbf82012-03-05 05:37:41 +000092 for (const uint16_t *R = TRI->getSubRegisters(Reg); *R; R++)
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000093 RV.push_back(*R);
94 }
95
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000096 struct BBInfo {
97 // Is this MBB reachable from the MF entry point?
98 bool reachable;
99
100 // Vregs that must be live in because they are used without being
101 // defined. Map value is the user.
102 RegMap vregsLiveIn;
103
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000104 // Regs killed in MBB. They may be defined again, and will then be in both
105 // regsKilled and regsLiveOut.
106 RegSet regsKilled;
107
108 // Regs defined in MBB and live out. Note that vregs passing through may
109 // be live out without being mentioned here.
110 RegSet regsLiveOut;
111
112 // Vregs that pass through MBB untouched. This set is disjoint from
113 // regsKilled and regsLiveOut.
114 RegSet vregsPassed;
115
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000116 // Vregs that must pass through MBB because they are needed by a successor
117 // block. This set is disjoint from regsLiveOut.
118 RegSet vregsRequired;
119
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000120 BBInfo() : reachable(false) {}
121
122 // Add register to vregsPassed if it belongs there. Return true if
123 // anything changed.
124 bool addPassed(unsigned Reg) {
125 if (!TargetRegisterInfo::isVirtualRegister(Reg))
126 return false;
127 if (regsKilled.count(Reg) || regsLiveOut.count(Reg))
128 return false;
129 return vregsPassed.insert(Reg).second;
130 }
131
132 // Same for a full set.
133 bool addPassed(const RegSet &RS) {
134 bool changed = false;
135 for (RegSet::const_iterator I = RS.begin(), E = RS.end(); I != E; ++I)
136 if (addPassed(*I))
137 changed = true;
138 return changed;
139 }
140
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000141 // Add register to vregsRequired if it belongs there. Return true if
142 // anything changed.
143 bool addRequired(unsigned Reg) {
144 if (!TargetRegisterInfo::isVirtualRegister(Reg))
145 return false;
146 if (regsLiveOut.count(Reg))
147 return false;
148 return vregsRequired.insert(Reg).second;
149 }
150
151 // Same for a full set.
152 bool addRequired(const RegSet &RS) {
153 bool changed = false;
154 for (RegSet::const_iterator I = RS.begin(), E = RS.end(); I != E; ++I)
155 if (addRequired(*I))
156 changed = true;
157 return changed;
158 }
159
160 // Same for a full map.
161 bool addRequired(const RegMap &RM) {
162 bool changed = false;
163 for (RegMap::const_iterator I = RM.begin(), E = RM.end(); I != E; ++I)
164 if (addRequired(I->first))
165 changed = true;
166 return changed;
167 }
168
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000169 // Live-out registers are either in regsLiveOut or vregsPassed.
170 bool isLiveOut(unsigned Reg) const {
171 return regsLiveOut.count(Reg) || vregsPassed.count(Reg);
172 }
173 };
174
175 // Extra register info per MBB.
176 DenseMap<const MachineBasicBlock*, BBInfo> MBBInfoMap;
177
178 bool isReserved(unsigned Reg) {
Jakob Stoklund Olesend37bc5a2009-08-04 19:18:01 +0000179 return Reg < regsReserved.size() && regsReserved.test(Reg);
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000180 }
181
Lang Hames03698de2012-02-14 19:17:48 +0000182 bool isAllocatable(unsigned Reg) {
183 return Reg < regsAllocatable.size() && regsAllocatable.test(Reg);
184 }
185
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000186 // Analysis information if available
187 LiveVariables *LiveVars;
Jakob Stoklund Olesen501dc422010-10-26 22:36:07 +0000188 LiveIntervals *LiveInts;
Jakob Stoklund Olesene8f08232010-11-01 19:49:52 +0000189 LiveStacks *LiveStks;
Jakob Stoklund Olesenf4a1e1a2010-10-26 20:21:46 +0000190 SlotIndexes *Indexes;
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000191
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000192 void visitMachineFunctionBefore();
193 void visitMachineBasicBlockBefore(const MachineBasicBlock *MBB);
194 void visitMachineInstrBefore(const MachineInstr *MI);
195 void visitMachineOperand(const MachineOperand *MO, unsigned MONum);
196 void visitMachineInstrAfter(const MachineInstr *MI);
197 void visitMachineBasicBlockAfter(const MachineBasicBlock *MBB);
198 void visitMachineFunctionAfter();
199
200 void report(const char *msg, const MachineFunction *MF);
201 void report(const char *msg, const MachineBasicBlock *MBB);
202 void report(const char *msg, const MachineInstr *MI);
203 void report(const char *msg, const MachineOperand *MO, unsigned MONum);
204
Jakob Stoklund Olesen948a4442012-03-28 20:47:35 +0000205 void checkLiveness(const MachineOperand *MO, unsigned MONum);
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000206 void markReachable(const MachineBasicBlock *MBB);
Jakob Stoklund Olesenb31defe2010-01-05 20:59:36 +0000207 void calcRegsPassed();
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000208 void checkPHIOps(const MachineBasicBlock *MBB);
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000209
210 void calcRegsRequired();
211 void verifyLiveVariables();
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +0000212 void verifyLiveIntervals();
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000213 };
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000214
215 struct MachineVerifierPass : public MachineFunctionPass {
216 static char ID; // Pass ID, replacement for typeid
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +0000217 const char *const Banner;
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000218
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +0000219 MachineVerifierPass(const char *b = 0)
220 : MachineFunctionPass(ID), Banner(b) {
Owen Anderson081c34b2010-10-19 17:21:58 +0000221 initializeMachineVerifierPassPass(*PassRegistry::getPassRegistry());
222 }
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000223
224 void getAnalysisUsage(AnalysisUsage &AU) const {
225 AU.setPreservesAll();
226 MachineFunctionPass::getAnalysisUsage(AU);
227 }
228
229 bool runOnMachineFunction(MachineFunction &MF) {
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +0000230 MF.verify(this, Banner);
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000231 return false;
232 }
233 };
234
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000235}
236
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000237char MachineVerifierPass::ID = 0;
Owen Anderson02dd53e2010-08-23 17:52:01 +0000238INITIALIZE_PASS(MachineVerifierPass, "machineverifier",
Owen Andersonce665bd2010-10-07 22:25:06 +0000239 "Verify generated machine code", false, false)
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000240
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +0000241FunctionPass *llvm::createMachineVerifierPass(const char *Banner) {
242 return new MachineVerifierPass(Banner);
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000243}
244
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +0000245void MachineFunction::verify(Pass *p, const char *Banner) const {
246 MachineVerifier(p, Banner)
247 .runOnMachineFunction(const_cast<MachineFunction&>(*this));
Jakob Stoklund Olesence727d02009-11-13 21:56:09 +0000248}
249
Chris Lattner17e9edc2009-08-23 02:51:22 +0000250bool MachineVerifier::runOnMachineFunction(MachineFunction &MF) {
251 raw_ostream *OutFile = 0;
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000252 if (OutFileName) {
Chris Lattner17e9edc2009-08-23 02:51:22 +0000253 std::string ErrorInfo;
254 OutFile = new raw_fd_ostream(OutFileName, ErrorInfo,
255 raw_fd_ostream::F_Append);
256 if (!ErrorInfo.empty()) {
257 errs() << "Error opening '" << OutFileName << "': " << ErrorInfo << '\n';
258 exit(1);
259 }
Jakob Stoklund Olesenb44fad72009-10-04 18:18:39 +0000260
Chris Lattner17e9edc2009-08-23 02:51:22 +0000261 OS = OutFile;
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000262 } else {
Chris Lattner17e9edc2009-08-23 02:51:22 +0000263 OS = &errs();
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000264 }
265
266 foundErrors = 0;
267
268 this->MF = &MF;
269 TM = &MF.getTarget();
Evan Cheng15993f82011-06-27 21:26:13 +0000270 TII = TM->getInstrInfo();
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000271 TRI = TM->getRegisterInfo();
272 MRI = &MF.getRegInfo();
273
Jakob Stoklund Olesenc910c8d2010-08-05 23:51:26 +0000274 LiveVars = NULL;
275 LiveInts = NULL;
Jakob Stoklund Olesene8f08232010-11-01 19:49:52 +0000276 LiveStks = NULL;
Jakob Stoklund Olesenf4a1e1a2010-10-26 20:21:46 +0000277 Indexes = NULL;
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000278 if (PASS) {
Jakob Stoklund Olesen1fe9c342010-08-05 22:32:21 +0000279 LiveInts = PASS->getAnalysisIfAvailable<LiveIntervals>();
Jakob Stoklund Olesenc910c8d2010-08-05 23:51:26 +0000280 // We don't want to verify LiveVariables if LiveIntervals is available.
281 if (!LiveInts)
282 LiveVars = PASS->getAnalysisIfAvailable<LiveVariables>();
Jakob Stoklund Olesene8f08232010-11-01 19:49:52 +0000283 LiveStks = PASS->getAnalysisIfAvailable<LiveStacks>();
Jakob Stoklund Olesenf4a1e1a2010-10-26 20:21:46 +0000284 Indexes = PASS->getAnalysisIfAvailable<SlotIndexes>();
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000285 }
286
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000287 visitMachineFunctionBefore();
288 for (MachineFunction::const_iterator MFI = MF.begin(), MFE = MF.end();
289 MFI!=MFE; ++MFI) {
290 visitMachineBasicBlockBefore(MFI);
Evan Chengddfd1372011-12-14 02:11:42 +0000291 for (MachineBasicBlock::const_instr_iterator MBBI = MFI->instr_begin(),
292 MBBE = MFI->instr_end(); MBBI != MBBE; ++MBBI) {
Jakob Stoklund Olesen7bd46da2011-01-12 21:27:41 +0000293 if (MBBI->getParent() != MFI) {
294 report("Bad instruction parent pointer", MFI);
295 *OS << "Instruction: " << *MBBI;
296 continue;
297 }
Evan Chengddfd1372011-12-14 02:11:42 +0000298 // Skip BUNDLE instruction for now. FIXME: We should add code to verify
299 // the BUNDLE's specifically.
300 if (MBBI->isBundle())
301 continue;
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000302 visitMachineInstrBefore(MBBI);
303 for (unsigned I = 0, E = MBBI->getNumOperands(); I != E; ++I)
304 visitMachineOperand(&MBBI->getOperand(I), I);
305 visitMachineInstrAfter(MBBI);
306 }
307 visitMachineBasicBlockAfter(MFI);
308 }
309 visitMachineFunctionAfter();
310
Chris Lattner17e9edc2009-08-23 02:51:22 +0000311 if (OutFile)
312 delete OutFile;
313 else if (foundErrors)
Chris Lattner75361b62010-04-07 22:58:41 +0000314 report_fatal_error("Found "+Twine(foundErrors)+" machine code errors.");
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000315
Jakob Stoklund Olesen63496682009-08-08 15:34:50 +0000316 // Clean up.
317 regsLive.clear();
318 regsDefined.clear();
319 regsDead.clear();
320 regsKilled.clear();
Jakob Stoklund Olesen9ca12d22012-02-28 01:42:41 +0000321 regMasks.clear();
Jakob Stoklund Olesen63496682009-08-08 15:34:50 +0000322 regsLiveInButUnused.clear();
323 MBBInfoMap.clear();
324
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000325 return false; // no changes
326}
327
Chris Lattner372fefe2009-08-23 01:03:30 +0000328void MachineVerifier::report(const char *msg, const MachineFunction *MF) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000329 assert(MF);
Chris Lattner17e9edc2009-08-23 02:51:22 +0000330 *OS << '\n';
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +0000331 if (!foundErrors++) {
332 if (Banner)
333 *OS << "# " << Banner << '\n';
Jakob Stoklund Olesenf4a1e1a2010-10-26 20:21:46 +0000334 MF->print(*OS, Indexes);
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +0000335 }
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000336 *OS << "*** Bad machine code: " << msg << " ***\n"
Benjamin Kramera7b0cb72011-11-15 16:27:03 +0000337 << "- function: " << MF->getFunction()->getName() << "\n";
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000338}
339
Jakob Stoklund Olesenb44fad72009-10-04 18:18:39 +0000340void MachineVerifier::report(const char *msg, const MachineBasicBlock *MBB) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000341 assert(MBB);
342 report(msg, MBB->getParent());
Jakob Stoklund Olesen324da762009-11-20 01:17:03 +0000343 *OS << "- basic block: " << MBB->getName()
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000344 << " " << (void*)MBB
Jakob Stoklund Olesenf4a1e1a2010-10-26 20:21:46 +0000345 << " (BB#" << MBB->getNumber() << ")";
346 if (Indexes)
347 *OS << " [" << Indexes->getMBBStartIdx(MBB)
348 << ';' << Indexes->getMBBEndIdx(MBB) << ')';
349 *OS << '\n';
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000350}
351
Jakob Stoklund Olesenb44fad72009-10-04 18:18:39 +0000352void MachineVerifier::report(const char *msg, const MachineInstr *MI) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000353 assert(MI);
354 report(msg, MI->getParent());
355 *OS << "- instruction: ";
Jakob Stoklund Olesenf4a1e1a2010-10-26 20:21:46 +0000356 if (Indexes && Indexes->hasIndex(MI))
357 *OS << Indexes->getInstructionIndex(MI) << '\t';
Chris Lattner705e07f2009-08-23 03:41:05 +0000358 MI->print(*OS, TM);
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000359}
360
Jakob Stoklund Olesenb44fad72009-10-04 18:18:39 +0000361void MachineVerifier::report(const char *msg,
362 const MachineOperand *MO, unsigned MONum) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000363 assert(MO);
364 report(msg, MO->getParent());
365 *OS << "- operand " << MONum << ": ";
366 MO->print(*OS, TM);
367 *OS << "\n";
368}
369
Jakob Stoklund Olesenb44fad72009-10-04 18:18:39 +0000370void MachineVerifier::markReachable(const MachineBasicBlock *MBB) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000371 BBInfo &MInfo = MBBInfoMap[MBB];
372 if (!MInfo.reachable) {
373 MInfo.reachable = true;
374 for (MachineBasicBlock::const_succ_iterator SuI = MBB->succ_begin(),
375 SuE = MBB->succ_end(); SuI != SuE; ++SuI)
376 markReachable(*SuI);
377 }
378}
379
Jakob Stoklund Olesenb44fad72009-10-04 18:18:39 +0000380void MachineVerifier::visitMachineFunctionBefore() {
Jakob Stoklund Olesenfc69c372011-01-12 21:27:48 +0000381 lastIndex = SlotIndex();
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000382 regsReserved = TRI->getReservedRegs(*MF);
Jakob Stoklund Olesend37bc5a2009-08-04 19:18:01 +0000383
384 // A sub-register of a reserved register is also reserved
385 for (int Reg = regsReserved.find_first(); Reg>=0;
386 Reg = regsReserved.find_next(Reg)) {
Craig Topper9ebfbf82012-03-05 05:37:41 +0000387 for (const uint16_t *Sub = TRI->getSubRegisters(Reg); *Sub; ++Sub) {
Jakob Stoklund Olesend37bc5a2009-08-04 19:18:01 +0000388 // FIXME: This should probably be:
389 // assert(regsReserved.test(*Sub) && "Non-reserved sub-register");
390 regsReserved.set(*Sub);
391 }
392 }
Lang Hames03698de2012-02-14 19:17:48 +0000393
394 regsAllocatable = TRI->getAllocatableSet(*MF);
395
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000396 markReachable(&MF->front());
397}
398
Jakob Stoklund Olesen1dc0fcb2009-11-13 21:55:54 +0000399// Does iterator point to a and b as the first two elements?
Dan Gohmanb3579832010-04-15 17:08:50 +0000400static bool matchPair(MachineBasicBlock::const_succ_iterator i,
401 const MachineBasicBlock *a, const MachineBasicBlock *b) {
Jakob Stoklund Olesen1dc0fcb2009-11-13 21:55:54 +0000402 if (*i == a)
403 return *++i == b;
404 if (*i == b)
405 return *++i == a;
406 return false;
407}
408
409void
410MachineVerifier::visitMachineBasicBlockBefore(const MachineBasicBlock *MBB) {
Jakob Stoklund Olesen5adc07e2011-09-23 22:45:39 +0000411 FirstTerminator = 0;
412
Lang Hames03698de2012-02-14 19:17:48 +0000413 if (MRI->isSSA()) {
414 // If this block has allocatable physical registers live-in, check that
415 // it is an entry block or landing pad.
416 for (MachineBasicBlock::livein_iterator LI = MBB->livein_begin(),
417 LE = MBB->livein_end();
418 LI != LE; ++LI) {
419 unsigned reg = *LI;
420 if (isAllocatable(reg) && !MBB->isLandingPad() &&
421 MBB != MBB->getParent()->begin()) {
422 report("MBB has allocable live-in, but isn't entry or landing-pad.", MBB);
423 }
424 }
425 }
426
Jakob Stoklund Olesen0a7bbcb2010-10-21 18:47:06 +0000427 // Count the number of landing pad successors.
Cameron Zwarich2100d212010-12-20 04:19:48 +0000428 SmallPtrSet<MachineBasicBlock*, 4> LandingPadSuccs;
Jakob Stoklund Olesen0a7bbcb2010-10-21 18:47:06 +0000429 for (MachineBasicBlock::const_succ_iterator I = MBB->succ_begin(),
Cameron Zwarich2100d212010-12-20 04:19:48 +0000430 E = MBB->succ_end(); I != E; ++I) {
431 if ((*I)->isLandingPad())
432 LandingPadSuccs.insert(*I);
433 }
Bill Wendlingd29052b2011-05-04 22:54:05 +0000434
435 const MCAsmInfo *AsmInfo = TM->getMCAsmInfo();
436 const BasicBlock *BB = MBB->getBasicBlock();
437 if (LandingPadSuccs.size() > 1 &&
438 !(AsmInfo &&
439 AsmInfo->getExceptionHandlingType() == ExceptionHandling::SjLj &&
440 BB && isa<SwitchInst>(BB->getTerminator())))
Jakob Stoklund Olesen0a7bbcb2010-10-21 18:47:06 +0000441 report("MBB has more than one landing pad successor", MBB);
442
Dan Gohman27920592009-08-27 02:43:49 +0000443 // Call AnalyzeBranch. If it succeeds, there several more conditions to check.
444 MachineBasicBlock *TBB = 0, *FBB = 0;
445 SmallVector<MachineOperand, 4> Cond;
446 if (!TII->AnalyzeBranch(*const_cast<MachineBasicBlock *>(MBB),
447 TBB, FBB, Cond)) {
448 // Ok, AnalyzeBranch thinks it knows what's going on with this block. Let's
449 // check whether its answers match up with reality.
450 if (!TBB && !FBB) {
451 // Block falls through to its successor.
452 MachineFunction::const_iterator MBBI = MBB;
453 ++MBBI;
454 if (MBBI == MF->end()) {
Dan Gohmana01a80f2009-08-27 18:14:26 +0000455 // It's possible that the block legitimately ends with a noreturn
456 // call or an unreachable, in which case it won't actually fall
457 // out the bottom of the function.
Cameron Zwarich2100d212010-12-20 04:19:48 +0000458 } else if (MBB->succ_size() == LandingPadSuccs.size()) {
Dan Gohmana01a80f2009-08-27 18:14:26 +0000459 // It's possible that the block legitimately ends with a noreturn
460 // call or an unreachable, in which case it won't actuall fall
461 // out of the block.
Cameron Zwarich2100d212010-12-20 04:19:48 +0000462 } else if (MBB->succ_size() != 1+LandingPadSuccs.size()) {
Dan Gohman27920592009-08-27 02:43:49 +0000463 report("MBB exits via unconditional fall-through but doesn't have "
464 "exactly one CFG successor!", MBB);
Jakob Stoklund Olesen0a7bbcb2010-10-21 18:47:06 +0000465 } else if (!MBB->isSuccessor(MBBI)) {
Dan Gohman27920592009-08-27 02:43:49 +0000466 report("MBB exits via unconditional fall-through but its successor "
467 "differs from its CFG successor!", MBB);
468 }
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000469 if (!MBB->empty() && MBB->back().isBarrier() &&
Evan Cheng86050dc2010-06-18 23:09:54 +0000470 !TII->isPredicated(&MBB->back())) {
Dan Gohman27920592009-08-27 02:43:49 +0000471 report("MBB exits via unconditional fall-through but ends with a "
472 "barrier instruction!", MBB);
473 }
474 if (!Cond.empty()) {
475 report("MBB exits via unconditional fall-through but has a condition!",
476 MBB);
477 }
478 } else if (TBB && !FBB && Cond.empty()) {
479 // Block unconditionally branches somewhere.
Cameron Zwarich2100d212010-12-20 04:19:48 +0000480 if (MBB->succ_size() != 1+LandingPadSuccs.size()) {
Dan Gohman27920592009-08-27 02:43:49 +0000481 report("MBB exits via unconditional branch but doesn't have "
482 "exactly one CFG successor!", MBB);
Jakob Stoklund Olesen0a7bbcb2010-10-21 18:47:06 +0000483 } else if (!MBB->isSuccessor(TBB)) {
Dan Gohman27920592009-08-27 02:43:49 +0000484 report("MBB exits via unconditional branch but the CFG "
485 "successor doesn't match the actual successor!", MBB);
486 }
487 if (MBB->empty()) {
488 report("MBB exits via unconditional branch but doesn't contain "
489 "any instructions!", MBB);
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000490 } else if (!MBB->back().isBarrier()) {
Dan Gohman27920592009-08-27 02:43:49 +0000491 report("MBB exits via unconditional branch but doesn't end with a "
492 "barrier instruction!", MBB);
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000493 } else if (!MBB->back().isTerminator()) {
Dan Gohman27920592009-08-27 02:43:49 +0000494 report("MBB exits via unconditional branch but the branch isn't a "
495 "terminator instruction!", MBB);
496 }
497 } else if (TBB && !FBB && !Cond.empty()) {
498 // Block conditionally branches somewhere, otherwise falls through.
499 MachineFunction::const_iterator MBBI = MBB;
500 ++MBBI;
501 if (MBBI == MF->end()) {
502 report("MBB conditionally falls through out of function!", MBB);
503 } if (MBB->succ_size() != 2) {
504 report("MBB exits via conditional branch/fall-through but doesn't have "
505 "exactly two CFG successors!", MBB);
Jakob Stoklund Olesen1dc0fcb2009-11-13 21:55:54 +0000506 } else if (!matchPair(MBB->succ_begin(), TBB, MBBI)) {
Dan Gohman27920592009-08-27 02:43:49 +0000507 report("MBB exits via conditional branch/fall-through but the CFG "
508 "successors don't match the actual successors!", MBB);
509 }
510 if (MBB->empty()) {
511 report("MBB exits via conditional branch/fall-through but doesn't "
512 "contain any instructions!", MBB);
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000513 } else if (MBB->back().isBarrier()) {
Dan Gohman27920592009-08-27 02:43:49 +0000514 report("MBB exits via conditional branch/fall-through but ends with a "
515 "barrier instruction!", MBB);
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000516 } else if (!MBB->back().isTerminator()) {
Dan Gohman27920592009-08-27 02:43:49 +0000517 report("MBB exits via conditional branch/fall-through but the branch "
518 "isn't a terminator instruction!", MBB);
519 }
520 } else if (TBB && FBB) {
521 // Block conditionally branches somewhere, otherwise branches
522 // somewhere else.
523 if (MBB->succ_size() != 2) {
524 report("MBB exits via conditional branch/branch but doesn't have "
525 "exactly two CFG successors!", MBB);
Jakob Stoklund Olesen1dc0fcb2009-11-13 21:55:54 +0000526 } else if (!matchPair(MBB->succ_begin(), TBB, FBB)) {
Dan Gohman27920592009-08-27 02:43:49 +0000527 report("MBB exits via conditional branch/branch but the CFG "
528 "successors don't match the actual successors!", MBB);
529 }
530 if (MBB->empty()) {
531 report("MBB exits via conditional branch/branch but doesn't "
532 "contain any instructions!", MBB);
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000533 } else if (!MBB->back().isBarrier()) {
Dan Gohman27920592009-08-27 02:43:49 +0000534 report("MBB exits via conditional branch/branch but doesn't end with a "
535 "barrier instruction!", MBB);
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000536 } else if (!MBB->back().isTerminator()) {
Dan Gohman27920592009-08-27 02:43:49 +0000537 report("MBB exits via conditional branch/branch but the branch "
538 "isn't a terminator instruction!", MBB);
539 }
540 if (Cond.empty()) {
541 report("MBB exits via conditinal branch/branch but there's no "
542 "condition!", MBB);
543 }
544 } else {
545 report("AnalyzeBranch returned invalid data!", MBB);
546 }
547 }
548
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000549 regsLive.clear();
Dan Gohman81bf03e2010-04-13 16:57:55 +0000550 for (MachineBasicBlock::livein_iterator I = MBB->livein_begin(),
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000551 E = MBB->livein_end(); I != E; ++I) {
552 if (!TargetRegisterInfo::isPhysicalRegister(*I)) {
553 report("MBB live-in list contains non-physical register", MBB);
554 continue;
555 }
556 regsLive.insert(*I);
Craig Topper9ebfbf82012-03-05 05:37:41 +0000557 for (const uint16_t *R = TRI->getSubRegisters(*I); *R; R++)
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000558 regsLive.insert(*R);
559 }
Jakob Stoklund Olesen710b13b2009-08-08 13:19:25 +0000560 regsLiveInButUnused = regsLive;
Jakob Stoklund Olesena6b677d2009-08-13 16:19:51 +0000561
562 const MachineFrameInfo *MFI = MF->getFrameInfo();
563 assert(MFI && "Function has no frame info");
564 BitVector PR = MFI->getPristineRegs(MBB);
565 for (int I = PR.find_first(); I>0; I = PR.find_next(I)) {
566 regsLive.insert(I);
Craig Topper9ebfbf82012-03-05 05:37:41 +0000567 for (const uint16_t *R = TRI->getSubRegisters(I); *R; R++)
Jakob Stoklund Olesena6b677d2009-08-13 16:19:51 +0000568 regsLive.insert(*R);
569 }
570
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000571 regsKilled.clear();
572 regsDefined.clear();
Jakob Stoklund Olesenfc69c372011-01-12 21:27:48 +0000573
574 if (Indexes)
575 lastIndex = Indexes->getMBBStartIdx(MBB);
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000576}
577
Jakob Stoklund Olesenb44fad72009-10-04 18:18:39 +0000578void MachineVerifier::visitMachineInstrBefore(const MachineInstr *MI) {
Evan Chenge837dea2011-06-28 19:10:37 +0000579 const MCInstrDesc &MCID = MI->getDesc();
580 if (MI->getNumOperands() < MCID.getNumOperands()) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000581 report("Too few operands", MI);
Evan Chenge837dea2011-06-28 19:10:37 +0000582 *OS << MCID.getNumOperands() << " operands expected, but "
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000583 << MI->getNumExplicitOperands() << " given.\n";
584 }
Dan Gohman2dbc4c82009-10-07 17:36:00 +0000585
586 // Check the MachineMemOperands for basic consistency.
587 for (MachineInstr::mmo_iterator I = MI->memoperands_begin(),
588 E = MI->memoperands_end(); I != E; ++I) {
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000589 if ((*I)->isLoad() && !MI->mayLoad())
Dan Gohman2dbc4c82009-10-07 17:36:00 +0000590 report("Missing mayLoad flag", MI);
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000591 if ((*I)->isStore() && !MI->mayStore())
Dan Gohman2dbc4c82009-10-07 17:36:00 +0000592 report("Missing mayStore flag", MI);
593 }
Jakob Stoklund Olesen1fe9c342010-08-05 22:32:21 +0000594
595 // Debug values must not have a slot index.
Jakob Stoklund Olesen121b1792012-02-27 18:24:30 +0000596 // Other instructions must have one, unless they are inside a bundle.
Jakob Stoklund Olesen1fe9c342010-08-05 22:32:21 +0000597 if (LiveInts) {
598 bool mapped = !LiveInts->isNotInMIMap(MI);
599 if (MI->isDebugValue()) {
600 if (mapped)
601 report("Debug instruction has a slot index", MI);
Jakob Stoklund Olesen121b1792012-02-27 18:24:30 +0000602 } else if (MI->isInsideBundle()) {
603 if (mapped)
604 report("Instruction inside bundle has a slot index", MI);
Jakob Stoklund Olesen1fe9c342010-08-05 22:32:21 +0000605 } else {
606 if (!mapped)
607 report("Missing slot index", MI);
608 }
609 }
610
Jakob Stoklund Olesen5adc07e2011-09-23 22:45:39 +0000611 // Ensure non-terminators don't follow terminators.
Jakob Stoklund Olesen78811662012-03-28 23:31:15 +0000612 // Ignore predicated terminators formed by if conversion.
613 // FIXME: If conversion shouldn't need to violate this rule.
614 if (MI->isTerminator() && !TII->isPredicated(MI)) {
Jakob Stoklund Olesen5adc07e2011-09-23 22:45:39 +0000615 if (!FirstTerminator)
616 FirstTerminator = MI;
617 } else if (FirstTerminator) {
618 report("Non-terminator instruction after the first terminator", MI);
619 *OS << "First terminator was:\t" << *FirstTerminator;
620 }
621
Andrew Trick3be654f2011-09-21 02:20:46 +0000622 StringRef ErrorInfo;
623 if (!TII->verifyInstruction(MI, ErrorInfo))
624 report(ErrorInfo.data(), MI);
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000625}
626
627void
Jakob Stoklund Olesenb44fad72009-10-04 18:18:39 +0000628MachineVerifier::visitMachineOperand(const MachineOperand *MO, unsigned MONum) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000629 const MachineInstr *MI = MO->getParent();
Evan Chenge837dea2011-06-28 19:10:37 +0000630 const MCInstrDesc &MCID = MI->getDesc();
631 const MCOperandInfo &MCOI = MCID.OpInfo[MONum];
Jakob Stoklund Olesen44b27e52009-05-16 07:25:20 +0000632
Evan Chenge837dea2011-06-28 19:10:37 +0000633 // The first MCID.NumDefs operands must be explicit register defines
634 if (MONum < MCID.getNumDefs()) {
Jakob Stoklund Olesen44b27e52009-05-16 07:25:20 +0000635 if (!MO->isReg())
636 report("Explicit definition must be a register", MO, MONum);
637 else if (!MO->isDef())
638 report("Explicit definition marked as use", MO, MONum);
639 else if (MO->isImplicit())
640 report("Explicit definition marked as implicit", MO, MONum);
Evan Chenge837dea2011-06-28 19:10:37 +0000641 } else if (MONum < MCID.getNumOperands()) {
Eric Christopher113a06c2010-11-17 00:55:36 +0000642 // Don't check if it's the last operand in a variadic instruction. See,
643 // e.g., LDM_RET in the arm back end.
Evan Chenge837dea2011-06-28 19:10:37 +0000644 if (MO->isReg() &&
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000645 !(MI->isVariadic() && MONum == MCID.getNumOperands()-1)) {
Evan Chenge837dea2011-06-28 19:10:37 +0000646 if (MO->isDef() && !MCOI.isOptionalDef())
Cameron Zwarich22d67cf2010-12-19 21:37:23 +0000647 report("Explicit operand marked as def", MO, MONum);
Jakob Stoklund Olesen39523e22009-09-23 20:57:55 +0000648 if (MO->isImplicit())
649 report("Explicit operand marked as implicit", MO, MONum);
650 }
651 } else {
Jakob Stoklund Olesen57115642009-12-22 21:48:20 +0000652 // ARM adds %reg0 operands to indicate predicates. We'll allow that.
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000653 if (MO->isReg() && !MO->isImplicit() && !MI->isVariadic() && MO->getReg())
Jakob Stoklund Olesen39523e22009-09-23 20:57:55 +0000654 report("Extra explicit operand on non-variadic instruction", MO, MONum);
Jakob Stoklund Olesen44b27e52009-05-16 07:25:20 +0000655 }
656
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000657 switch (MO->getType()) {
658 case MachineOperand::MO_Register: {
659 const unsigned Reg = MO->getReg();
660 if (!Reg)
661 return;
Jakob Stoklund Olesen948a4442012-03-28 20:47:35 +0000662 if (MRI->tracksLiveness() && !MI->isDebugValue())
663 checkLiveness(MO, MONum);
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000664
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000665
666 // Check register classes.
Evan Chenge837dea2011-06-28 19:10:37 +0000667 if (MONum < MCID.getNumOperands() && !MO->isImplicit()) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000668 unsigned SubIdx = MO->getSubReg();
669
670 if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000671 if (SubIdx) {
Jakob Stoklund Olesenb4a02212011-10-05 22:12:57 +0000672 report("Illegal subregister index for physical register", MO, MONum);
673 return;
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000674 }
Evan Chenge837dea2011-06-28 19:10:37 +0000675 if (const TargetRegisterClass *DRC = TII->getRegClass(MCID,MONum,TRI)) {
Jakob Stoklund Olesenb4a02212011-10-05 22:12:57 +0000676 if (!DRC->contains(Reg)) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000677 report("Illegal physical register for instruction", MO, MONum);
Jakob Stoklund Olesenb4a02212011-10-05 22:12:57 +0000678 *OS << TRI->getName(Reg) << " is not a "
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000679 << DRC->getName() << " register.\n";
680 }
681 }
682 } else {
683 // Virtual register.
684 const TargetRegisterClass *RC = MRI->getRegClass(Reg);
685 if (SubIdx) {
Jakob Stoklund Olesenb4a02212011-10-05 22:12:57 +0000686 const TargetRegisterClass *SRC =
687 TRI->getSubClassWithSubReg(RC, SubIdx);
Jakob Stoklund Olesen6a8d2c62010-05-18 17:31:12 +0000688 if (!SRC) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000689 report("Invalid subregister index for virtual register", MO, MONum);
Jakob Stoklund Olesen6a8d2c62010-05-18 17:31:12 +0000690 *OS << "Register class " << RC->getName()
691 << " does not support subreg index " << SubIdx << "\n";
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000692 return;
693 }
Jakob Stoklund Olesenb4a02212011-10-05 22:12:57 +0000694 if (RC != SRC) {
695 report("Invalid register class for subregister index", MO, MONum);
696 *OS << "Register class " << RC->getName()
697 << " does not fully support subreg index " << SubIdx << "\n";
698 return;
699 }
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000700 }
Evan Chenge837dea2011-06-28 19:10:37 +0000701 if (const TargetRegisterClass *DRC = TII->getRegClass(MCID,MONum,TRI)) {
Jakob Stoklund Olesenb4a02212011-10-05 22:12:57 +0000702 if (SubIdx) {
703 const TargetRegisterClass *SuperRC =
704 TRI->getLargestLegalSuperClass(RC);
705 if (!SuperRC) {
706 report("No largest legal super class exists.", MO, MONum);
707 return;
708 }
709 DRC = TRI->getMatchingSuperRegClass(SuperRC, DRC, SubIdx);
710 if (!DRC) {
711 report("No matching super-reg register class.", MO, MONum);
712 return;
713 }
714 }
Jakob Stoklund Olesenfa226bc2011-06-02 05:43:46 +0000715 if (!RC->hasSuperClassEq(DRC)) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000716 report("Illegal virtual register for instruction", MO, MONum);
717 *OS << "Expected a " << DRC->getName() << " register, but got a "
718 << RC->getName() << " register\n";
719 }
720 }
721 }
722 }
723 break;
724 }
Jakob Stoklund Olesena5ba07c2009-09-21 07:19:08 +0000725
Jakob Stoklund Olesen9ca12d22012-02-28 01:42:41 +0000726 case MachineOperand::MO_RegisterMask:
727 regMasks.push_back(MO->getRegMask());
728 break;
729
Jakob Stoklund Olesena5ba07c2009-09-21 07:19:08 +0000730 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner518bb532010-02-09 19:54:29 +0000731 if (MI->isPHI() && !MO->getMBB()->isSuccessor(MI->getParent()))
732 report("PHI operand is not in the CFG", MO, MONum);
Jakob Stoklund Olesena5ba07c2009-09-21 07:19:08 +0000733 break;
734
Jakob Stoklund Olesene8f08232010-11-01 19:49:52 +0000735 case MachineOperand::MO_FrameIndex:
736 if (LiveStks && LiveStks->hasInterval(MO->getIndex()) &&
737 LiveInts && !LiveInts->isNotInMIMap(MI)) {
738 LiveInterval &LI = LiveStks->getInterval(MO->getIndex());
739 SlotIndex Idx = LiveInts->getInstructionIndex(MI);
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000740 if (MI->mayLoad() && !LI.liveAt(Idx.getRegSlot(true))) {
Jakob Stoklund Olesene8f08232010-11-01 19:49:52 +0000741 report("Instruction loads from dead spill slot", MO, MONum);
742 *OS << "Live stack: " << LI << '\n';
743 }
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000744 if (MI->mayStore() && !LI.liveAt(Idx.getRegSlot())) {
Jakob Stoklund Olesene8f08232010-11-01 19:49:52 +0000745 report("Instruction stores to dead spill slot", MO, MONum);
746 *OS << "Live stack: " << LI << '\n';
747 }
748 }
749 break;
750
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000751 default:
752 break;
753 }
754}
755
Jakob Stoklund Olesen948a4442012-03-28 20:47:35 +0000756void MachineVerifier::checkLiveness(const MachineOperand *MO, unsigned MONum) {
757 const MachineInstr *MI = MO->getParent();
758 const unsigned Reg = MO->getReg();
759
760 // Both use and def operands can read a register.
761 if (MO->readsReg()) {
762 regsLiveInButUnused.erase(Reg);
763
764 bool isKill = false;
765 unsigned defIdx;
766 if (MI->isRegTiedToDefOperand(MONum, &defIdx)) {
767 // A two-addr use counts as a kill if use and def are the same.
768 unsigned DefReg = MI->getOperand(defIdx).getReg();
769 if (Reg == DefReg)
770 isKill = true;
771 else if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
772 report("Two-address instruction operands must be identical", MO, MONum);
773 }
774 } else
775 isKill = MO->isKill();
776
777 if (isKill)
778 addRegWithSubRegs(regsKilled, Reg);
779
780 // Check that LiveVars knows this kill.
781 if (LiveVars && TargetRegisterInfo::isVirtualRegister(Reg) &&
782 MO->isKill()) {
783 LiveVariables::VarInfo &VI = LiveVars->getVarInfo(Reg);
784 if (std::find(VI.Kills.begin(), VI.Kills.end(), MI) == VI.Kills.end())
785 report("Kill missing from LiveVariables", MO, MONum);
786 }
787
788 // Check LiveInts liveness and kill.
789 if (TargetRegisterInfo::isVirtualRegister(Reg) &&
790 LiveInts && !LiveInts->isNotInMIMap(MI)) {
791 SlotIndex UseIdx = LiveInts->getInstructionIndex(MI).getRegSlot(true);
792 if (LiveInts->hasInterval(Reg)) {
793 const LiveInterval &LI = LiveInts->getInterval(Reg);
794 if (!LI.liveAt(UseIdx)) {
795 report("No live range at use", MO, MONum);
796 *OS << UseIdx << " is not live in " << LI << '\n';
797 }
798 // Check for extra kill flags.
799 // Note that we allow missing kill flags for now.
800 if (MO->isKill() && !LI.killedAt(UseIdx.getRegSlot())) {
801 report("Live range continues after kill flag", MO, MONum);
802 *OS << "Live range: " << LI << '\n';
803 }
804 } else {
805 report("Virtual register has no Live interval", MO, MONum);
806 }
807 }
808
809 // Use of a dead register.
810 if (!regsLive.count(Reg)) {
811 if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
812 // Reserved registers may be used even when 'dead'.
813 if (!isReserved(Reg))
814 report("Using an undefined physical register", MO, MONum);
815 } else {
816 BBInfo &MInfo = MBBInfoMap[MI->getParent()];
817 // We don't know which virtual registers are live in, so only complain
818 // if vreg was killed in this MBB. Otherwise keep track of vregs that
819 // must be live in. PHI instructions are handled separately.
820 if (MInfo.regsKilled.count(Reg))
821 report("Using a killed virtual register", MO, MONum);
822 else if (!MI->isPHI())
823 MInfo.vregsLiveIn.insert(std::make_pair(Reg, MI));
824 }
825 }
826 }
827
828 if (MO->isDef()) {
829 // Register defined.
830 // TODO: verify that earlyclobber ops are not used.
831 if (MO->isDead())
832 addRegWithSubRegs(regsDead, Reg);
833 else
834 addRegWithSubRegs(regsDefined, Reg);
835
836 // Verify SSA form.
837 if (MRI->isSSA() && TargetRegisterInfo::isVirtualRegister(Reg) &&
838 llvm::next(MRI->def_begin(Reg)) != MRI->def_end())
839 report("Multiple virtual register defs in SSA form", MO, MONum);
840
841 // Check LiveInts for a live range, but only for virtual registers.
842 if (LiveInts && TargetRegisterInfo::isVirtualRegister(Reg) &&
843 !LiveInts->isNotInMIMap(MI)) {
844 SlotIndex DefIdx = LiveInts->getInstructionIndex(MI).getRegSlot();
845 if (LiveInts->hasInterval(Reg)) {
846 const LiveInterval &LI = LiveInts->getInterval(Reg);
847 if (const VNInfo *VNI = LI.getVNInfoAt(DefIdx)) {
848 assert(VNI && "NULL valno is not allowed");
849 if (VNI->def != DefIdx && !MO->isEarlyClobber()) {
850 report("Inconsistent valno->def", MO, MONum);
851 *OS << "Valno " << VNI->id << " is not defined at "
852 << DefIdx << " in " << LI << '\n';
853 }
854 } else {
855 report("No live range at def", MO, MONum);
856 *OS << DefIdx << " is not live in " << LI << '\n';
857 }
858 } else {
859 report("Virtual register has no Live interval", MO, MONum);
860 }
861 }
862 }
863}
864
Jakob Stoklund Olesenb44fad72009-10-04 18:18:39 +0000865void MachineVerifier::visitMachineInstrAfter(const MachineInstr *MI) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000866 BBInfo &MInfo = MBBInfoMap[MI->getParent()];
867 set_union(MInfo.regsKilled, regsKilled);
Jakob Stoklund Olesen73cf7092010-08-05 18:59:59 +0000868 set_subtract(regsLive, regsKilled); regsKilled.clear();
Jakob Stoklund Olesen9ca12d22012-02-28 01:42:41 +0000869 // Kill any masked registers.
870 while (!regMasks.empty()) {
871 const uint32_t *Mask = regMasks.pop_back_val();
872 for (RegSet::iterator I = regsLive.begin(), E = regsLive.end(); I != E; ++I)
873 if (TargetRegisterInfo::isPhysicalRegister(*I) &&
874 MachineOperand::clobbersPhysReg(Mask, *I))
875 regsDead.push_back(*I);
876 }
Jakob Stoklund Olesen73cf7092010-08-05 18:59:59 +0000877 set_subtract(regsLive, regsDead); regsDead.clear();
878 set_union(regsLive, regsDefined); regsDefined.clear();
Jakob Stoklund Olesenfc69c372011-01-12 21:27:48 +0000879
880 if (Indexes && Indexes->hasIndex(MI)) {
881 SlotIndex idx = Indexes->getInstructionIndex(MI);
882 if (!(idx > lastIndex)) {
883 report("Instruction index out of order", MI);
884 *OS << "Last instruction was at " << lastIndex << '\n';
885 }
886 lastIndex = idx;
887 }
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000888}
889
890void
Jakob Stoklund Olesenb44fad72009-10-04 18:18:39 +0000891MachineVerifier::visitMachineBasicBlockAfter(const MachineBasicBlock *MBB) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000892 MBBInfoMap[MBB].regsLiveOut = regsLive;
893 regsLive.clear();
Jakob Stoklund Olesenfc69c372011-01-12 21:27:48 +0000894
895 if (Indexes) {
896 SlotIndex stop = Indexes->getMBBEndIdx(MBB);
897 if (!(stop > lastIndex)) {
898 report("Block ends before last instruction index", MBB);
899 *OS << "Block ends at " << stop
900 << " last instruction was at " << lastIndex << '\n';
901 }
902 lastIndex = stop;
903 }
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000904}
905
906// Calculate the largest possible vregsPassed sets. These are the registers that
907// can pass through an MBB live, but may not be live every time. It is assumed
908// that all vregsPassed sets are empty before the call.
Jakob Stoklund Olesenb31defe2010-01-05 20:59:36 +0000909void MachineVerifier::calcRegsPassed() {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000910 // First push live-out regs to successors' vregsPassed. Remember the MBBs that
911 // have any vregsPassed.
Jakob Stoklund Olesen1efd6b92012-03-10 00:36:04 +0000912 SmallPtrSet<const MachineBasicBlock*, 8> todo;
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000913 for (MachineFunction::const_iterator MFI = MF->begin(), MFE = MF->end();
914 MFI != MFE; ++MFI) {
915 const MachineBasicBlock &MBB(*MFI);
916 BBInfo &MInfo = MBBInfoMap[&MBB];
917 if (!MInfo.reachable)
918 continue;
919 for (MachineBasicBlock::const_succ_iterator SuI = MBB.succ_begin(),
920 SuE = MBB.succ_end(); SuI != SuE; ++SuI) {
921 BBInfo &SInfo = MBBInfoMap[*SuI];
922 if (SInfo.addPassed(MInfo.regsLiveOut))
923 todo.insert(*SuI);
924 }
925 }
926
927 // Iteratively push vregsPassed to successors. This will converge to the same
928 // final state regardless of DenseSet iteration order.
929 while (!todo.empty()) {
930 const MachineBasicBlock *MBB = *todo.begin();
931 todo.erase(MBB);
932 BBInfo &MInfo = MBBInfoMap[MBB];
933 for (MachineBasicBlock::const_succ_iterator SuI = MBB->succ_begin(),
934 SuE = MBB->succ_end(); SuI != SuE; ++SuI) {
935 if (*SuI == MBB)
936 continue;
937 BBInfo &SInfo = MBBInfoMap[*SuI];
938 if (SInfo.addPassed(MInfo.vregsPassed))
939 todo.insert(*SuI);
940 }
941 }
942}
943
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000944// Calculate the set of virtual registers that must be passed through each basic
945// block in order to satisfy the requirements of successor blocks. This is very
Jakob Stoklund Olesenb31defe2010-01-05 20:59:36 +0000946// similar to calcRegsPassed, only backwards.
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000947void MachineVerifier::calcRegsRequired() {
948 // First push live-in regs to predecessors' vregsRequired.
Jakob Stoklund Olesen1efd6b92012-03-10 00:36:04 +0000949 SmallPtrSet<const MachineBasicBlock*, 8> todo;
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000950 for (MachineFunction::const_iterator MFI = MF->begin(), MFE = MF->end();
951 MFI != MFE; ++MFI) {
952 const MachineBasicBlock &MBB(*MFI);
953 BBInfo &MInfo = MBBInfoMap[&MBB];
954 for (MachineBasicBlock::const_pred_iterator PrI = MBB.pred_begin(),
955 PrE = MBB.pred_end(); PrI != PrE; ++PrI) {
956 BBInfo &PInfo = MBBInfoMap[*PrI];
957 if (PInfo.addRequired(MInfo.vregsLiveIn))
958 todo.insert(*PrI);
959 }
960 }
961
962 // Iteratively push vregsRequired to predecessors. This will converge to the
963 // same final state regardless of DenseSet iteration order.
964 while (!todo.empty()) {
965 const MachineBasicBlock *MBB = *todo.begin();
966 todo.erase(MBB);
967 BBInfo &MInfo = MBBInfoMap[MBB];
968 for (MachineBasicBlock::const_pred_iterator PrI = MBB->pred_begin(),
969 PrE = MBB->pred_end(); PrI != PrE; ++PrI) {
970 if (*PrI == MBB)
971 continue;
972 BBInfo &SInfo = MBBInfoMap[*PrI];
973 if (SInfo.addRequired(MInfo.vregsRequired))
974 todo.insert(*PrI);
975 }
976 }
977}
978
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000979// Check PHI instructions at the beginning of MBB. It is assumed that
Jakob Stoklund Olesenb31defe2010-01-05 20:59:36 +0000980// calcRegsPassed has been run so BBInfo::isLiveOut is valid.
Jakob Stoklund Olesenb44fad72009-10-04 18:18:39 +0000981void MachineVerifier::checkPHIOps(const MachineBasicBlock *MBB) {
Jakob Stoklund Olesen1efd6b92012-03-10 00:36:04 +0000982 SmallPtrSet<const MachineBasicBlock*, 8> seen;
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000983 for (MachineBasicBlock::const_iterator BBI = MBB->begin(), BBE = MBB->end();
Chris Lattner518bb532010-02-09 19:54:29 +0000984 BBI != BBE && BBI->isPHI(); ++BBI) {
Jakob Stoklund Olesen1efd6b92012-03-10 00:36:04 +0000985 seen.clear();
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000986
987 for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2) {
988 unsigned Reg = BBI->getOperand(i).getReg();
989 const MachineBasicBlock *Pre = BBI->getOperand(i + 1).getMBB();
990 if (!Pre->isSuccessor(MBB))
991 continue;
992 seen.insert(Pre);
993 BBInfo &PrInfo = MBBInfoMap[Pre];
994 if (PrInfo.reachable && !PrInfo.isLiveOut(Reg))
995 report("PHI operand is not live-out from predecessor",
996 &BBI->getOperand(i), i);
997 }
998
999 // Did we see all predecessors?
1000 for (MachineBasicBlock::const_pred_iterator PrI = MBB->pred_begin(),
1001 PrE = MBB->pred_end(); PrI != PrE; ++PrI) {
1002 if (!seen.count(*PrI)) {
1003 report("Missing PHI operand", BBI);
Dan Gohman0ba90f32009-10-31 20:19:03 +00001004 *OS << "BB#" << (*PrI)->getNumber()
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +00001005 << " is a predecessor according to the CFG.\n";
1006 }
1007 }
1008 }
1009}
1010
Jakob Stoklund Olesenb44fad72009-10-04 18:18:39 +00001011void MachineVerifier::visitMachineFunctionAfter() {
Jakob Stoklund Olesenb31defe2010-01-05 20:59:36 +00001012 calcRegsPassed();
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +00001013
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +00001014 for (MachineFunction::const_iterator MFI = MF->begin(), MFE = MF->end();
1015 MFI != MFE; ++MFI) {
1016 BBInfo &MInfo = MBBInfoMap[MFI];
1017
1018 // Skip unreachable MBBs.
1019 if (!MInfo.reachable)
1020 continue;
1021
1022 checkPHIOps(MFI);
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +00001023 }
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +00001024
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +00001025 // Now check liveness info if available
Jakob Stoklund Olesen64ffa832012-03-10 00:36:06 +00001026 calcRegsRequired();
1027
1028 if (MRI->isSSA() && !MF->empty()) {
1029 BBInfo &MInfo = MBBInfoMap[&MF->front()];
1030 for (RegSet::iterator
1031 I = MInfo.vregsRequired.begin(), E = MInfo.vregsRequired.end(); I != E;
Jakob Stoklund Olesenff0275e2012-03-10 00:44:11 +00001032 ++I)
1033 report("Virtual register def doesn't dominate all uses.",
1034 MRI->getVRegDef(*I));
Jakob Stoklund Olesen64ffa832012-03-10 00:36:06 +00001035 }
1036
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +00001037 if (LiveVars)
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +00001038 verifyLiveVariables();
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +00001039 if (LiveInts)
1040 verifyLiveIntervals();
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +00001041}
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +00001042
1043void MachineVerifier::verifyLiveVariables() {
1044 assert(LiveVars && "Don't call verifyLiveVariables without LiveVars");
Jakob Stoklund Olesen98c54762011-01-08 23:11:02 +00001045 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
1046 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +00001047 LiveVariables::VarInfo &VI = LiveVars->getVarInfo(Reg);
1048 for (MachineFunction::const_iterator MFI = MF->begin(), MFE = MF->end();
1049 MFI != MFE; ++MFI) {
1050 BBInfo &MInfo = MBBInfoMap[MFI];
1051
1052 // Our vregsRequired should be identical to LiveVariables' AliveBlocks
1053 if (MInfo.vregsRequired.count(Reg)) {
1054 if (!VI.AliveBlocks.test(MFI->getNumber())) {
1055 report("LiveVariables: Block missing from AliveBlocks", MFI);
Jakob Stoklund Olesen43142682011-01-09 03:05:53 +00001056 *OS << "Virtual register " << PrintReg(Reg)
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +00001057 << " must be live through the block.\n";
1058 }
1059 } else {
1060 if (VI.AliveBlocks.test(MFI->getNumber())) {
1061 report("LiveVariables: Block should not be in AliveBlocks", MFI);
Jakob Stoklund Olesen43142682011-01-09 03:05:53 +00001062 *OS << "Virtual register " << PrintReg(Reg)
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +00001063 << " is not needed live through the block.\n";
1064 }
1065 }
1066 }
1067 }
1068}
1069
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +00001070void MachineVerifier::verifyLiveIntervals() {
1071 assert(LiveInts && "Don't call verifyLiveIntervals without LiveInts");
1072 for (LiveIntervals::const_iterator LVI = LiveInts->begin(),
1073 LVE = LiveInts->end(); LVI != LVE; ++LVI) {
1074 const LiveInterval &LI = *LVI->second;
Jakob Stoklund Olesen893ab5d2010-10-06 23:54:35 +00001075
1076 // Spilling and splitting may leave unused registers around. Skip them.
1077 if (MRI->use_empty(LI.reg))
1078 continue;
1079
Jakob Stoklund Olesen8c456422010-10-28 20:44:22 +00001080 // Physical registers have much weirdness going on, mostly from coalescing.
1081 // We should probably fix it, but for now just ignore them.
1082 if (TargetRegisterInfo::isPhysicalRegister(LI.reg))
1083 continue;
1084
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +00001085 assert(LVI->first == LI.reg && "Invalid reg to interval mapping");
1086
1087 for (LiveInterval::const_vni_iterator I = LI.vni_begin(), E = LI.vni_end();
1088 I!=E; ++I) {
1089 VNInfo *VNI = *I;
Jakob Stoklund Olesened826352010-10-02 05:24:46 +00001090 const VNInfo *DefVNI = LI.getVNInfoAt(VNI->def);
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +00001091
Jakob Stoklund Olesened826352010-10-02 05:24:46 +00001092 if (!DefVNI) {
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +00001093 if (!VNI->isUnused()) {
1094 report("Valno not live at def and not marked unused", MF);
1095 *OS << "Valno #" << VNI->id << " in " << LI << '\n';
1096 }
1097 continue;
1098 }
1099
1100 if (VNI->isUnused())
1101 continue;
1102
Jakob Stoklund Olesened826352010-10-02 05:24:46 +00001103 if (DefVNI != VNI) {
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +00001104 report("Live range at def has different valno", MF);
Jakob Stoklund Olesened826352010-10-02 05:24:46 +00001105 *OS << "Valno #" << VNI->id << " is defined at " << VNI->def
Jakob Stoklund Olesendbcc2e12010-10-26 20:21:43 +00001106 << " where valno #" << DefVNI->id << " is live in " << LI << '\n';
Jakob Stoklund Olesen3bf7cf92010-10-22 22:48:58 +00001107 continue;
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +00001108 }
1109
Jakob Stoklund Olesen3bf7cf92010-10-22 22:48:58 +00001110 const MachineBasicBlock *MBB = LiveInts->getMBBFromIndex(VNI->def);
1111 if (!MBB) {
1112 report("Invalid definition index", MF);
Jakob Stoklund Olesendbcc2e12010-10-26 20:21:43 +00001113 *OS << "Valno #" << VNI->id << " is defined at " << VNI->def
1114 << " in " << LI << '\n';
Jakob Stoklund Olesen3bf7cf92010-10-22 22:48:58 +00001115 continue;
1116 }
1117
1118 if (VNI->isPHIDef()) {
1119 if (VNI->def != LiveInts->getMBBStartIdx(MBB)) {
1120 report("PHIDef value is not defined at MBB start", MF);
1121 *OS << "Valno #" << VNI->id << " is defined at " << VNI->def
Jakob Stoklund Olesendbcc2e12010-10-26 20:21:43 +00001122 << ", not at the beginning of BB#" << MBB->getNumber()
1123 << " in " << LI << '\n';
Jakob Stoklund Olesen3bf7cf92010-10-22 22:48:58 +00001124 }
1125 } else {
1126 // Non-PHI def.
Jakob Stoklund Olesen30e98a02012-02-29 00:33:41 +00001127 const MachineInstr *MI = LiveInts->getInstructionFromIndex(VNI->def);
Jakob Stoklund Olesen3bf7cf92010-10-22 22:48:58 +00001128 if (!MI) {
1129 report("No instruction at def index", MF);
Jakob Stoklund Olesen78716872010-10-23 00:49:09 +00001130 *OS << "Valno #" << VNI->id << " is defined at " << VNI->def
1131 << " in " << LI << '\n';
Jakob Stoklund Olesen121b1792012-02-27 18:24:30 +00001132 continue;
Jakob Stoklund Olesen3bf7cf92010-10-22 22:48:58 +00001133 }
Cameron Zwarich0b13d7d2010-12-20 03:15:20 +00001134
Jakob Stoklund Olesen121b1792012-02-27 18:24:30 +00001135 bool hasDef = false;
Cameron Zwarich0b13d7d2010-12-20 03:15:20 +00001136 bool isEarlyClobber = false;
Jakob Stoklund Olesen30e98a02012-02-29 00:33:41 +00001137 for (ConstMIBundleOperands MOI(MI); MOI.isValid(); ++MOI) {
Jakob Stoklund Olesen121b1792012-02-27 18:24:30 +00001138 if (!MOI->isReg() || !MOI->isDef())
1139 continue;
1140 if (TargetRegisterInfo::isVirtualRegister(LI.reg)) {
1141 if (MOI->getReg() != LI.reg)
1142 continue;
1143 } else {
1144 if (!TargetRegisterInfo::isPhysicalRegister(MOI->getReg()) ||
1145 !TRI->regsOverlap(LI.reg, MOI->getReg()))
1146 continue;
Cameron Zwarich0b13d7d2010-12-20 03:15:20 +00001147 }
Jakob Stoklund Olesen121b1792012-02-27 18:24:30 +00001148 hasDef = true;
1149 if (MOI->isEarlyClobber())
1150 isEarlyClobber = true;
1151 }
1152
1153 if (!hasDef) {
1154 report("Defining instruction does not modify register", MI);
1155 *OS << "Valno #" << VNI->id << " in " << LI << '\n';
Cameron Zwarich0b13d7d2010-12-20 03:15:20 +00001156 }
1157
1158 // Early clobber defs begin at USE slots, but other defs must begin at
1159 // DEF slots.
1160 if (isEarlyClobber) {
Jakob Stoklund Olesen2debd482011-11-13 20:45:27 +00001161 if (!VNI->def.isEarlyClobber()) {
1162 report("Early clobber def must be at an early-clobber slot", MF);
Cameron Zwarich0b13d7d2010-12-20 03:15:20 +00001163 *OS << "Valno #" << VNI->id << " is defined at " << VNI->def
1164 << " in " << LI << '\n';
1165 }
Jakob Stoklund Olesen2debd482011-11-13 20:45:27 +00001166 } else if (!VNI->def.isRegister()) {
1167 report("Non-PHI, non-early clobber def must be at a register slot",
1168 MF);
Cameron Zwarich0b13d7d2010-12-20 03:15:20 +00001169 *OS << "Valno #" << VNI->id << " is defined at " << VNI->def
1170 << " in " << LI << '\n';
1171 }
Jakob Stoklund Olesen3bf7cf92010-10-22 22:48:58 +00001172 }
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +00001173 }
1174
1175 for (LiveInterval::const_iterator I = LI.begin(), E = LI.end(); I!=E; ++I) {
Jakob Stoklund Olesened826352010-10-02 05:24:46 +00001176 const VNInfo *VNI = I->valno;
1177 assert(VNI && "Live range has no valno");
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +00001178
Jakob Stoklund Olesened826352010-10-02 05:24:46 +00001179 if (VNI->id >= LI.getNumValNums() || VNI != LI.getValNumInfo(VNI->id)) {
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +00001180 report("Foreign valno in live range", MF);
Jakob Stoklund Olesened826352010-10-02 05:24:46 +00001181 I->print(*OS);
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +00001182 *OS << " has a valno not in " << LI << '\n';
1183 }
1184
Jakob Stoklund Olesened826352010-10-02 05:24:46 +00001185 if (VNI->isUnused()) {
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +00001186 report("Live range valno is marked unused", MF);
Jakob Stoklund Olesened826352010-10-02 05:24:46 +00001187 I->print(*OS);
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +00001188 *OS << " in " << LI << '\n';
1189 }
1190
Jakob Stoklund Olesen78716872010-10-23 00:49:09 +00001191 const MachineBasicBlock *MBB = LiveInts->getMBBFromIndex(I->start);
1192 if (!MBB) {
1193 report("Bad start of live segment, no basic block", MF);
1194 I->print(*OS);
1195 *OS << " in " << LI << '\n';
1196 continue;
1197 }
1198 SlotIndex MBBStartIdx = LiveInts->getMBBStartIdx(MBB);
1199 if (I->start != MBBStartIdx && I->start != VNI->def) {
1200 report("Live segment must begin at MBB entry or valno def", MBB);
1201 I->print(*OS);
1202 *OS << " in " << LI << '\n' << "Basic block starts at "
1203 << MBBStartIdx << '\n';
1204 }
1205
1206 const MachineBasicBlock *EndMBB =
1207 LiveInts->getMBBFromIndex(I->end.getPrevSlot());
1208 if (!EndMBB) {
1209 report("Bad end of live segment, no basic block", MF);
1210 I->print(*OS);
1211 *OS << " in " << LI << '\n';
1212 continue;
1213 }
Jakob Stoklund Olesen121b1792012-02-27 18:24:30 +00001214
1215 // No more checks for live-out segments.
1216 if (I->end == LiveInts->getMBBEndIdx(EndMBB))
1217 continue;
1218
1219 // The live segment is ending inside EndMBB
Jakob Stoklund Olesen30e98a02012-02-29 00:33:41 +00001220 const MachineInstr *MI =
Jakob Stoklund Olesen121b1792012-02-27 18:24:30 +00001221 LiveInts->getInstructionFromIndex(I->end.getPrevSlot());
1222 if (!MI) {
1223 report("Live segment doesn't end at a valid instruction", EndMBB);
Jakob Stoklund Olesen78716872010-10-23 00:49:09 +00001224 I->print(*OS);
1225 *OS << " in " << LI << '\n' << "Basic block starts at "
Jakob Stoklund Olesen121b1792012-02-27 18:24:30 +00001226 << MBBStartIdx << '\n';
1227 continue;
1228 }
Cameron Zwarich636f15f2010-12-20 01:22:37 +00001229
Jakob Stoklund Olesen121b1792012-02-27 18:24:30 +00001230 // The block slot must refer to a basic block boundary.
1231 if (I->end.isBlock()) {
1232 report("Live segment ends at B slot of an instruction", MI);
1233 I->print(*OS);
1234 *OS << " in " << LI << '\n';
1235 }
1236
1237 if (I->end.isDead()) {
1238 // Segment ends on the dead slot.
1239 // That means there must be a dead def.
1240 if (!SlotIndex::isSameInstr(I->start, I->end)) {
1241 report("Live segment ending at dead slot spans instructions", MI);
1242 I->print(*OS);
1243 *OS << " in " << LI << '\n';
1244 }
1245 }
1246
1247 // A live segment can only end at an early-clobber slot if it is being
1248 // redefined by an early-clobber def.
1249 if (I->end.isEarlyClobber()) {
1250 if (I+1 == E || (I+1)->start != I->end) {
1251 report("Live segment ending at early clobber slot must be "
1252 "redefined by an EC def in the same instruction", MI);
1253 I->print(*OS);
1254 *OS << " in " << LI << '\n';
1255 }
1256 }
1257
1258 // The following checks only apply to virtual registers. Physreg liveness
1259 // is too weird to check.
1260 if (TargetRegisterInfo::isVirtualRegister(LI.reg)) {
1261 // A live range can end with either a redefinition, a kill flag on a
1262 // use, or a dead flag on a def.
1263 bool hasRead = false;
1264 bool hasDeadDef = false;
Jakob Stoklund Olesen30e98a02012-02-29 00:33:41 +00001265 for (ConstMIBundleOperands MOI(MI); MOI.isValid(); ++MOI) {
Jakob Stoklund Olesen121b1792012-02-27 18:24:30 +00001266 if (!MOI->isReg() || MOI->getReg() != LI.reg)
1267 continue;
1268 if (MOI->readsReg())
1269 hasRead = true;
1270 if (MOI->isDef() && MOI->isDead())
1271 hasDeadDef = true;
1272 }
1273
1274 if (I->end.isDead()) {
Cameron Zwarich636f15f2010-12-20 01:22:37 +00001275 if (!hasDeadDef) {
Jakob Stoklund Olesen121b1792012-02-27 18:24:30 +00001276 report("Instruction doesn't have a dead def operand", MI);
1277 I->print(*OS);
1278 *OS << " in " << LI << '\n';
1279 }
1280 } else {
1281 if (!hasRead) {
1282 report("Instruction ending live range doesn't read the register",
1283 MI);
Cameron Zwarich636f15f2010-12-20 01:22:37 +00001284 I->print(*OS);
1285 *OS << " in " << LI << '\n';
1286 }
Jakob Stoklund Olesen78716872010-10-23 00:49:09 +00001287 }
1288 }
1289
1290 // Now check all the basic blocks in this live segment.
1291 MachineFunction::const_iterator MFI = MBB;
Cameron Zwarichcb584d02010-12-28 23:45:38 +00001292 // Is this live range the beginning of a non-PHIDef VN?
1293 if (I->start == VNI->def && !VNI->isPHIDef()) {
Jakob Stoklund Olesen78716872010-10-23 00:49:09 +00001294 // Not live-in to any blocks.
1295 if (MBB == EndMBB)
1296 continue;
1297 // Skip this block.
1298 ++MFI;
1299 }
1300 for (;;) {
1301 assert(LiveInts->isLiveInToMBB(LI, MFI));
Jakob Stoklund Olesene459d552010-10-26 16:49:23 +00001302 // We don't know how to track physregs into a landing pad.
1303 if (TargetRegisterInfo::isPhysicalRegister(LI.reg) &&
1304 MFI->isLandingPad()) {
1305 if (&*MFI == EndMBB)
1306 break;
1307 ++MFI;
1308 continue;
1309 }
Jakob Stoklund Olesen78716872010-10-23 00:49:09 +00001310 // Check that VNI is live-out of all predecessors.
1311 for (MachineBasicBlock::const_pred_iterator PI = MFI->pred_begin(),
1312 PE = MFI->pred_end(); PI != PE; ++PI) {
Jakob Stoklund Olesen194eb712011-11-14 01:39:36 +00001313 SlotIndex PEnd = LiveInts->getMBBEndIdx(*PI);
1314 const VNInfo *PVNI = LI.getVNInfoBefore(PEnd);
Cameron Zwarich4eee42c2010-12-27 05:17:23 +00001315
Jakob Stoklund Olesendf8412c2011-09-15 05:16:30 +00001316 if (VNI->isPHIDef() && VNI->def == LiveInts->getMBBStartIdx(MFI))
Cameron Zwarich4eee42c2010-12-27 05:17:23 +00001317 continue;
Cameron Zwarich4eee42c2010-12-27 05:17:23 +00001318
Cameron Zwarichcb584d02010-12-28 23:45:38 +00001319 if (!PVNI) {
1320 report("Register not marked live out of predecessor", *PI);
1321 *OS << "Valno #" << VNI->id << " live into BB#" << MFI->getNumber()
Jakob Stoklund Olesen194eb712011-11-14 01:39:36 +00001322 << '@' << LiveInts->getMBBStartIdx(MFI) << ", not live before "
Cameron Zwarichcb584d02010-12-28 23:45:38 +00001323 << PEnd << " in " << LI << '\n';
1324 continue;
1325 }
1326
Cameron Zwarich4eee42c2010-12-27 05:17:23 +00001327 if (PVNI != VNI) {
Jakob Stoklund Olesen78716872010-10-23 00:49:09 +00001328 report("Different value live out of predecessor", *PI);
1329 *OS << "Valno #" << PVNI->id << " live out of BB#"
1330 << (*PI)->getNumber() << '@' << PEnd
1331 << "\nValno #" << VNI->id << " live into BB#" << MFI->getNumber()
1332 << '@' << LiveInts->getMBBStartIdx(MFI) << " in " << LI << '\n';
1333 }
1334 }
1335 if (&*MFI == EndMBB)
1336 break;
1337 ++MFI;
1338 }
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +00001339 }
Jakob Stoklund Olesen501dc422010-10-26 22:36:07 +00001340
1341 // Check the LI only has one connected component.
Jakob Stoklund Olesen8c593f92010-10-27 00:39:01 +00001342 if (TargetRegisterInfo::isVirtualRegister(LI.reg)) {
1343 ConnectedVNInfoEqClasses ConEQ(*LiveInts);
1344 unsigned NumComp = ConEQ.Classify(&LI);
1345 if (NumComp > 1) {
1346 report("Multiple connected components in live interval", MF);
1347 *OS << NumComp << " components in " << LI << '\n';
Jakob Stoklund Olesencb367772010-10-29 00:40:57 +00001348 for (unsigned comp = 0; comp != NumComp; ++comp) {
1349 *OS << comp << ": valnos";
1350 for (LiveInterval::const_vni_iterator I = LI.vni_begin(),
1351 E = LI.vni_end(); I!=E; ++I)
1352 if (comp == ConEQ.getEqClass(*I))
1353 *OS << ' ' << (*I)->id;
1354 *OS << '\n';
1355 }
Jakob Stoklund Olesen8c593f92010-10-27 00:39:01 +00001356 }
Jakob Stoklund Olesen501dc422010-10-26 22:36:07 +00001357 }
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +00001358 }
1359}
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +00001360