blob: d3f8b02f1108f6e98c62112b2449632602084052 [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 Olesen48872e02009-05-16 00:33:53 +000031#include "llvm/CodeGen/MachineFunctionPass.h"
Jakob Stoklund Olesena6b677d2009-08-13 16:19:51 +000032#include "llvm/CodeGen/MachineFrameInfo.h"
Dan Gohman2dbc4c82009-10-07 17:36:00 +000033#include "llvm/CodeGen/MachineMemOperand.h"
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000034#include "llvm/CodeGen/MachineRegisterInfo.h"
35#include "llvm/CodeGen/Passes.h"
Bill Wendlingd29052b2011-05-04 22:54:05 +000036#include "llvm/MC/MCAsmInfo.h"
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000037#include "llvm/Target/TargetMachine.h"
38#include "llvm/Target/TargetRegisterInfo.h"
39#include "llvm/Target/TargetInstrInfo.h"
Chris Lattnercf143a42009-08-23 03:13:20 +000040#include "llvm/ADT/DenseSet.h"
41#include "llvm/ADT/SetOperations.h"
42#include "llvm/ADT/SmallVector.h"
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000043#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000044#include "llvm/Support/ErrorHandling.h"
45#include "llvm/Support/raw_ostream.h"
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000046using namespace llvm;
47
48namespace {
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +000049 struct MachineVerifier {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000050
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +000051 MachineVerifier(Pass *pass, const char *b) :
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +000052 PASS(pass),
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +000053 Banner(b),
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000054 OutFileName(getenv("LLVM_VERIFY_MACHINEINSTRS"))
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +000055 {}
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000056
57 bool runOnMachineFunction(MachineFunction &MF);
58
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +000059 Pass *const PASS;
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +000060 const char *Banner;
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000061 const char *const OutFileName;
Chris Lattner17e9edc2009-08-23 02:51:22 +000062 raw_ostream *OS;
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000063 const MachineFunction *MF;
64 const TargetMachine *TM;
Evan Cheng15993f82011-06-27 21:26:13 +000065 const TargetInstrInfo *TII;
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000066 const TargetRegisterInfo *TRI;
67 const MachineRegisterInfo *MRI;
68
69 unsigned foundErrors;
70
71 typedef SmallVector<unsigned, 16> RegVector;
72 typedef DenseSet<unsigned> RegSet;
73 typedef DenseMap<unsigned, const MachineInstr*> RegMap;
74
75 BitVector regsReserved;
76 RegSet regsLive;
Jakob Stoklund Olesen710b13b2009-08-08 13:19:25 +000077 RegVector regsDefined, regsDead, regsKilled;
78 RegSet regsLiveInButUnused;
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000079
Jakob Stoklund Olesenfc69c372011-01-12 21:27:48 +000080 SlotIndex lastIndex;
81
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000082 // Add Reg and any sub-registers to RV
83 void addRegWithSubRegs(RegVector &RV, unsigned Reg) {
84 RV.push_back(Reg);
85 if (TargetRegisterInfo::isPhysicalRegister(Reg))
86 for (const unsigned *R = TRI->getSubRegisters(Reg); *R; R++)
87 RV.push_back(*R);
88 }
89
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000090 struct BBInfo {
91 // Is this MBB reachable from the MF entry point?
92 bool reachable;
93
94 // Vregs that must be live in because they are used without being
95 // defined. Map value is the user.
96 RegMap vregsLiveIn;
97
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +000098 // Regs killed in MBB. They may be defined again, and will then be in both
99 // regsKilled and regsLiveOut.
100 RegSet regsKilled;
101
102 // Regs defined in MBB and live out. Note that vregs passing through may
103 // be live out without being mentioned here.
104 RegSet regsLiveOut;
105
106 // Vregs that pass through MBB untouched. This set is disjoint from
107 // regsKilled and regsLiveOut.
108 RegSet vregsPassed;
109
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000110 // Vregs that must pass through MBB because they are needed by a successor
111 // block. This set is disjoint from regsLiveOut.
112 RegSet vregsRequired;
113
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000114 BBInfo() : reachable(false) {}
115
116 // Add register to vregsPassed if it belongs there. Return true if
117 // anything changed.
118 bool addPassed(unsigned Reg) {
119 if (!TargetRegisterInfo::isVirtualRegister(Reg))
120 return false;
121 if (regsKilled.count(Reg) || regsLiveOut.count(Reg))
122 return false;
123 return vregsPassed.insert(Reg).second;
124 }
125
126 // Same for a full set.
127 bool addPassed(const RegSet &RS) {
128 bool changed = false;
129 for (RegSet::const_iterator I = RS.begin(), E = RS.end(); I != E; ++I)
130 if (addPassed(*I))
131 changed = true;
132 return changed;
133 }
134
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000135 // Add register to vregsRequired if it belongs there. Return true if
136 // anything changed.
137 bool addRequired(unsigned Reg) {
138 if (!TargetRegisterInfo::isVirtualRegister(Reg))
139 return false;
140 if (regsLiveOut.count(Reg))
141 return false;
142 return vregsRequired.insert(Reg).second;
143 }
144
145 // Same for a full set.
146 bool addRequired(const RegSet &RS) {
147 bool changed = false;
148 for (RegSet::const_iterator I = RS.begin(), E = RS.end(); I != E; ++I)
149 if (addRequired(*I))
150 changed = true;
151 return changed;
152 }
153
154 // Same for a full map.
155 bool addRequired(const RegMap &RM) {
156 bool changed = false;
157 for (RegMap::const_iterator I = RM.begin(), E = RM.end(); I != E; ++I)
158 if (addRequired(I->first))
159 changed = true;
160 return changed;
161 }
162
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000163 // Live-out registers are either in regsLiveOut or vregsPassed.
164 bool isLiveOut(unsigned Reg) const {
165 return regsLiveOut.count(Reg) || vregsPassed.count(Reg);
166 }
167 };
168
169 // Extra register info per MBB.
170 DenseMap<const MachineBasicBlock*, BBInfo> MBBInfoMap;
171
172 bool isReserved(unsigned Reg) {
Jakob Stoklund Olesend37bc5a2009-08-04 19:18:01 +0000173 return Reg < regsReserved.size() && regsReserved.test(Reg);
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000174 }
175
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000176 // Analysis information if available
177 LiveVariables *LiveVars;
Jakob Stoklund Olesen501dc422010-10-26 22:36:07 +0000178 LiveIntervals *LiveInts;
Jakob Stoklund Olesene8f08232010-11-01 19:49:52 +0000179 LiveStacks *LiveStks;
Jakob Stoklund Olesenf4a1e1a2010-10-26 20:21:46 +0000180 SlotIndexes *Indexes;
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000181
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000182 void visitMachineFunctionBefore();
183 void visitMachineBasicBlockBefore(const MachineBasicBlock *MBB);
184 void visitMachineInstrBefore(const MachineInstr *MI);
185 void visitMachineOperand(const MachineOperand *MO, unsigned MONum);
186 void visitMachineInstrAfter(const MachineInstr *MI);
187 void visitMachineBasicBlockAfter(const MachineBasicBlock *MBB);
188 void visitMachineFunctionAfter();
189
190 void report(const char *msg, const MachineFunction *MF);
191 void report(const char *msg, const MachineBasicBlock *MBB);
192 void report(const char *msg, const MachineInstr *MI);
193 void report(const char *msg, const MachineOperand *MO, unsigned MONum);
194
195 void markReachable(const MachineBasicBlock *MBB);
Jakob Stoklund Olesenb31defe2010-01-05 20:59:36 +0000196 void calcRegsPassed();
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000197 void checkPHIOps(const MachineBasicBlock *MBB);
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000198
199 void calcRegsRequired();
200 void verifyLiveVariables();
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +0000201 void verifyLiveIntervals();
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000202 };
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000203
204 struct MachineVerifierPass : public MachineFunctionPass {
205 static char ID; // Pass ID, replacement for typeid
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +0000206 const char *const Banner;
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000207
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +0000208 MachineVerifierPass(const char *b = 0)
209 : MachineFunctionPass(ID), Banner(b) {
Owen Anderson081c34b2010-10-19 17:21:58 +0000210 initializeMachineVerifierPassPass(*PassRegistry::getPassRegistry());
211 }
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000212
213 void getAnalysisUsage(AnalysisUsage &AU) const {
214 AU.setPreservesAll();
215 MachineFunctionPass::getAnalysisUsage(AU);
216 }
217
218 bool runOnMachineFunction(MachineFunction &MF) {
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +0000219 MF.verify(this, Banner);
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000220 return false;
221 }
222 };
223
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000224}
225
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000226char MachineVerifierPass::ID = 0;
Owen Anderson02dd53e2010-08-23 17:52:01 +0000227INITIALIZE_PASS(MachineVerifierPass, "machineverifier",
Owen Andersonce665bd2010-10-07 22:25:06 +0000228 "Verify generated machine code", false, false)
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000229
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +0000230FunctionPass *llvm::createMachineVerifierPass(const char *Banner) {
231 return new MachineVerifierPass(Banner);
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000232}
233
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +0000234void MachineFunction::verify(Pass *p, const char *Banner) const {
235 MachineVerifier(p, Banner)
236 .runOnMachineFunction(const_cast<MachineFunction&>(*this));
Jakob Stoklund Olesence727d02009-11-13 21:56:09 +0000237}
238
Chris Lattner17e9edc2009-08-23 02:51:22 +0000239bool MachineVerifier::runOnMachineFunction(MachineFunction &MF) {
240 raw_ostream *OutFile = 0;
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000241 if (OutFileName) {
Chris Lattner17e9edc2009-08-23 02:51:22 +0000242 std::string ErrorInfo;
243 OutFile = new raw_fd_ostream(OutFileName, ErrorInfo,
244 raw_fd_ostream::F_Append);
245 if (!ErrorInfo.empty()) {
246 errs() << "Error opening '" << OutFileName << "': " << ErrorInfo << '\n';
247 exit(1);
248 }
Jakob Stoklund Olesenb44fad72009-10-04 18:18:39 +0000249
Chris Lattner17e9edc2009-08-23 02:51:22 +0000250 OS = OutFile;
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000251 } else {
Chris Lattner17e9edc2009-08-23 02:51:22 +0000252 OS = &errs();
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000253 }
254
255 foundErrors = 0;
256
257 this->MF = &MF;
258 TM = &MF.getTarget();
Evan Cheng15993f82011-06-27 21:26:13 +0000259 TII = TM->getInstrInfo();
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000260 TRI = TM->getRegisterInfo();
261 MRI = &MF.getRegInfo();
262
Jakob Stoklund Olesenc910c8d2010-08-05 23:51:26 +0000263 LiveVars = NULL;
264 LiveInts = NULL;
Jakob Stoklund Olesene8f08232010-11-01 19:49:52 +0000265 LiveStks = NULL;
Jakob Stoklund Olesenf4a1e1a2010-10-26 20:21:46 +0000266 Indexes = NULL;
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000267 if (PASS) {
Jakob Stoklund Olesen1fe9c342010-08-05 22:32:21 +0000268 LiveInts = PASS->getAnalysisIfAvailable<LiveIntervals>();
Jakob Stoklund Olesenc910c8d2010-08-05 23:51:26 +0000269 // We don't want to verify LiveVariables if LiveIntervals is available.
270 if (!LiveInts)
271 LiveVars = PASS->getAnalysisIfAvailable<LiveVariables>();
Jakob Stoklund Olesene8f08232010-11-01 19:49:52 +0000272 LiveStks = PASS->getAnalysisIfAvailable<LiveStacks>();
Jakob Stoklund Olesenf4a1e1a2010-10-26 20:21:46 +0000273 Indexes = PASS->getAnalysisIfAvailable<SlotIndexes>();
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000274 }
275
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000276 visitMachineFunctionBefore();
277 for (MachineFunction::const_iterator MFI = MF.begin(), MFE = MF.end();
278 MFI!=MFE; ++MFI) {
279 visitMachineBasicBlockBefore(MFI);
280 for (MachineBasicBlock::const_iterator MBBI = MFI->begin(),
281 MBBE = MFI->end(); MBBI != MBBE; ++MBBI) {
Jakob Stoklund Olesen7bd46da2011-01-12 21:27:41 +0000282 if (MBBI->getParent() != MFI) {
283 report("Bad instruction parent pointer", MFI);
284 *OS << "Instruction: " << *MBBI;
285 continue;
286 }
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000287 visitMachineInstrBefore(MBBI);
288 for (unsigned I = 0, E = MBBI->getNumOperands(); I != E; ++I)
289 visitMachineOperand(&MBBI->getOperand(I), I);
290 visitMachineInstrAfter(MBBI);
291 }
292 visitMachineBasicBlockAfter(MFI);
293 }
294 visitMachineFunctionAfter();
295
Chris Lattner17e9edc2009-08-23 02:51:22 +0000296 if (OutFile)
297 delete OutFile;
298 else if (foundErrors)
Chris Lattner75361b62010-04-07 22:58:41 +0000299 report_fatal_error("Found "+Twine(foundErrors)+" machine code errors.");
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000300
Jakob Stoklund Olesen63496682009-08-08 15:34:50 +0000301 // Clean up.
302 regsLive.clear();
303 regsDefined.clear();
304 regsDead.clear();
305 regsKilled.clear();
306 regsLiveInButUnused.clear();
307 MBBInfoMap.clear();
308
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000309 return false; // no changes
310}
311
Chris Lattner372fefe2009-08-23 01:03:30 +0000312void MachineVerifier::report(const char *msg, const MachineFunction *MF) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000313 assert(MF);
Chris Lattner17e9edc2009-08-23 02:51:22 +0000314 *OS << '\n';
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +0000315 if (!foundErrors++) {
316 if (Banner)
317 *OS << "# " << Banner << '\n';
Jakob Stoklund Olesenf4a1e1a2010-10-26 20:21:46 +0000318 MF->print(*OS, Indexes);
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +0000319 }
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000320 *OS << "*** Bad machine code: " << msg << " ***\n"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000321 << "- function: " << MF->getFunction()->getNameStr() << "\n";
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000322}
323
Jakob Stoklund Olesenb44fad72009-10-04 18:18:39 +0000324void MachineVerifier::report(const char *msg, const MachineBasicBlock *MBB) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000325 assert(MBB);
326 report(msg, MBB->getParent());
Jakob Stoklund Olesen324da762009-11-20 01:17:03 +0000327 *OS << "- basic block: " << MBB->getName()
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000328 << " " << (void*)MBB
Jakob Stoklund Olesenf4a1e1a2010-10-26 20:21:46 +0000329 << " (BB#" << MBB->getNumber() << ")";
330 if (Indexes)
331 *OS << " [" << Indexes->getMBBStartIdx(MBB)
332 << ';' << Indexes->getMBBEndIdx(MBB) << ')';
333 *OS << '\n';
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000334}
335
Jakob Stoklund Olesenb44fad72009-10-04 18:18:39 +0000336void MachineVerifier::report(const char *msg, const MachineInstr *MI) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000337 assert(MI);
338 report(msg, MI->getParent());
339 *OS << "- instruction: ";
Jakob Stoklund Olesenf4a1e1a2010-10-26 20:21:46 +0000340 if (Indexes && Indexes->hasIndex(MI))
341 *OS << Indexes->getInstructionIndex(MI) << '\t';
Chris Lattner705e07f2009-08-23 03:41:05 +0000342 MI->print(*OS, TM);
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000343}
344
Jakob Stoklund Olesenb44fad72009-10-04 18:18:39 +0000345void MachineVerifier::report(const char *msg,
346 const MachineOperand *MO, unsigned MONum) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000347 assert(MO);
348 report(msg, MO->getParent());
349 *OS << "- operand " << MONum << ": ";
350 MO->print(*OS, TM);
351 *OS << "\n";
352}
353
Jakob Stoklund Olesenb44fad72009-10-04 18:18:39 +0000354void MachineVerifier::markReachable(const MachineBasicBlock *MBB) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000355 BBInfo &MInfo = MBBInfoMap[MBB];
356 if (!MInfo.reachable) {
357 MInfo.reachable = true;
358 for (MachineBasicBlock::const_succ_iterator SuI = MBB->succ_begin(),
359 SuE = MBB->succ_end(); SuI != SuE; ++SuI)
360 markReachable(*SuI);
361 }
362}
363
Jakob Stoklund Olesenb44fad72009-10-04 18:18:39 +0000364void MachineVerifier::visitMachineFunctionBefore() {
Jakob Stoklund Olesenfc69c372011-01-12 21:27:48 +0000365 lastIndex = SlotIndex();
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000366 regsReserved = TRI->getReservedRegs(*MF);
Jakob Stoklund Olesend37bc5a2009-08-04 19:18:01 +0000367
368 // A sub-register of a reserved register is also reserved
369 for (int Reg = regsReserved.find_first(); Reg>=0;
370 Reg = regsReserved.find_next(Reg)) {
371 for (const unsigned *Sub = TRI->getSubRegisters(Reg); *Sub; ++Sub) {
372 // FIXME: This should probably be:
373 // assert(regsReserved.test(*Sub) && "Non-reserved sub-register");
374 regsReserved.set(*Sub);
375 }
376 }
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000377 markReachable(&MF->front());
378}
379
Jakob Stoklund Olesen1dc0fcb2009-11-13 21:55:54 +0000380// Does iterator point to a and b as the first two elements?
Dan Gohmanb3579832010-04-15 17:08:50 +0000381static bool matchPair(MachineBasicBlock::const_succ_iterator i,
382 const MachineBasicBlock *a, const MachineBasicBlock *b) {
Jakob Stoklund Olesen1dc0fcb2009-11-13 21:55:54 +0000383 if (*i == a)
384 return *++i == b;
385 if (*i == b)
386 return *++i == a;
387 return false;
388}
389
390void
391MachineVerifier::visitMachineBasicBlockBefore(const MachineBasicBlock *MBB) {
Jakob Stoklund Olesen0a7bbcb2010-10-21 18:47:06 +0000392 // Count the number of landing pad successors.
Cameron Zwarich2100d212010-12-20 04:19:48 +0000393 SmallPtrSet<MachineBasicBlock*, 4> LandingPadSuccs;
Jakob Stoklund Olesen0a7bbcb2010-10-21 18:47:06 +0000394 for (MachineBasicBlock::const_succ_iterator I = MBB->succ_begin(),
Cameron Zwarich2100d212010-12-20 04:19:48 +0000395 E = MBB->succ_end(); I != E; ++I) {
396 if ((*I)->isLandingPad())
397 LandingPadSuccs.insert(*I);
398 }
Bill Wendlingd29052b2011-05-04 22:54:05 +0000399
400 const MCAsmInfo *AsmInfo = TM->getMCAsmInfo();
401 const BasicBlock *BB = MBB->getBasicBlock();
402 if (LandingPadSuccs.size() > 1 &&
403 !(AsmInfo &&
404 AsmInfo->getExceptionHandlingType() == ExceptionHandling::SjLj &&
405 BB && isa<SwitchInst>(BB->getTerminator())))
Jakob Stoklund Olesen0a7bbcb2010-10-21 18:47:06 +0000406 report("MBB has more than one landing pad successor", MBB);
407
Dan Gohman27920592009-08-27 02:43:49 +0000408 // Call AnalyzeBranch. If it succeeds, there several more conditions to check.
409 MachineBasicBlock *TBB = 0, *FBB = 0;
410 SmallVector<MachineOperand, 4> Cond;
411 if (!TII->AnalyzeBranch(*const_cast<MachineBasicBlock *>(MBB),
412 TBB, FBB, Cond)) {
413 // Ok, AnalyzeBranch thinks it knows what's going on with this block. Let's
414 // check whether its answers match up with reality.
415 if (!TBB && !FBB) {
416 // Block falls through to its successor.
417 MachineFunction::const_iterator MBBI = MBB;
418 ++MBBI;
419 if (MBBI == MF->end()) {
Dan Gohmana01a80f2009-08-27 18:14:26 +0000420 // It's possible that the block legitimately ends with a noreturn
421 // call or an unreachable, in which case it won't actually fall
422 // out the bottom of the function.
Cameron Zwarich2100d212010-12-20 04:19:48 +0000423 } else if (MBB->succ_size() == LandingPadSuccs.size()) {
Dan Gohmana01a80f2009-08-27 18:14:26 +0000424 // It's possible that the block legitimately ends with a noreturn
425 // call or an unreachable, in which case it won't actuall fall
426 // out of the block.
Cameron Zwarich2100d212010-12-20 04:19:48 +0000427 } else if (MBB->succ_size() != 1+LandingPadSuccs.size()) {
Dan Gohman27920592009-08-27 02:43:49 +0000428 report("MBB exits via unconditional fall-through but doesn't have "
429 "exactly one CFG successor!", MBB);
Jakob Stoklund Olesen0a7bbcb2010-10-21 18:47:06 +0000430 } else if (!MBB->isSuccessor(MBBI)) {
Dan Gohman27920592009-08-27 02:43:49 +0000431 report("MBB exits via unconditional fall-through but its successor "
432 "differs from its CFG successor!", MBB);
433 }
Evan Cheng86050dc2010-06-18 23:09:54 +0000434 if (!MBB->empty() && MBB->back().getDesc().isBarrier() &&
435 !TII->isPredicated(&MBB->back())) {
Dan Gohman27920592009-08-27 02:43:49 +0000436 report("MBB exits via unconditional fall-through but ends with a "
437 "barrier instruction!", MBB);
438 }
439 if (!Cond.empty()) {
440 report("MBB exits via unconditional fall-through but has a condition!",
441 MBB);
442 }
443 } else if (TBB && !FBB && Cond.empty()) {
444 // Block unconditionally branches somewhere.
Cameron Zwarich2100d212010-12-20 04:19:48 +0000445 if (MBB->succ_size() != 1+LandingPadSuccs.size()) {
Dan Gohman27920592009-08-27 02:43:49 +0000446 report("MBB exits via unconditional branch but doesn't have "
447 "exactly one CFG successor!", MBB);
Jakob Stoklund Olesen0a7bbcb2010-10-21 18:47:06 +0000448 } else if (!MBB->isSuccessor(TBB)) {
Dan Gohman27920592009-08-27 02:43:49 +0000449 report("MBB exits via unconditional branch but the CFG "
450 "successor doesn't match the actual successor!", MBB);
451 }
452 if (MBB->empty()) {
453 report("MBB exits via unconditional branch but doesn't contain "
454 "any instructions!", MBB);
455 } else if (!MBB->back().getDesc().isBarrier()) {
456 report("MBB exits via unconditional branch but doesn't end with a "
457 "barrier instruction!", MBB);
458 } else if (!MBB->back().getDesc().isTerminator()) {
459 report("MBB exits via unconditional branch but the branch isn't a "
460 "terminator instruction!", MBB);
461 }
462 } else if (TBB && !FBB && !Cond.empty()) {
463 // Block conditionally branches somewhere, otherwise falls through.
464 MachineFunction::const_iterator MBBI = MBB;
465 ++MBBI;
466 if (MBBI == MF->end()) {
467 report("MBB conditionally falls through out of function!", MBB);
468 } if (MBB->succ_size() != 2) {
469 report("MBB exits via conditional branch/fall-through but doesn't have "
470 "exactly two CFG successors!", MBB);
Jakob Stoklund Olesen1dc0fcb2009-11-13 21:55:54 +0000471 } else if (!matchPair(MBB->succ_begin(), TBB, MBBI)) {
Dan Gohman27920592009-08-27 02:43:49 +0000472 report("MBB exits via conditional branch/fall-through but the CFG "
473 "successors don't match the actual successors!", MBB);
474 }
475 if (MBB->empty()) {
476 report("MBB exits via conditional branch/fall-through but doesn't "
477 "contain any instructions!", MBB);
478 } else if (MBB->back().getDesc().isBarrier()) {
479 report("MBB exits via conditional branch/fall-through but ends with a "
480 "barrier instruction!", MBB);
481 } else if (!MBB->back().getDesc().isTerminator()) {
482 report("MBB exits via conditional branch/fall-through but the branch "
483 "isn't a terminator instruction!", MBB);
484 }
485 } else if (TBB && FBB) {
486 // Block conditionally branches somewhere, otherwise branches
487 // somewhere else.
488 if (MBB->succ_size() != 2) {
489 report("MBB exits via conditional branch/branch but doesn't have "
490 "exactly two CFG successors!", MBB);
Jakob Stoklund Olesen1dc0fcb2009-11-13 21:55:54 +0000491 } else if (!matchPair(MBB->succ_begin(), TBB, FBB)) {
Dan Gohman27920592009-08-27 02:43:49 +0000492 report("MBB exits via conditional branch/branch but the CFG "
493 "successors don't match the actual successors!", MBB);
494 }
495 if (MBB->empty()) {
496 report("MBB exits via conditional branch/branch but doesn't "
497 "contain any instructions!", MBB);
498 } else if (!MBB->back().getDesc().isBarrier()) {
499 report("MBB exits via conditional branch/branch but doesn't end with a "
500 "barrier instruction!", MBB);
501 } else if (!MBB->back().getDesc().isTerminator()) {
502 report("MBB exits via conditional branch/branch but the branch "
503 "isn't a terminator instruction!", MBB);
504 }
505 if (Cond.empty()) {
506 report("MBB exits via conditinal branch/branch but there's no "
507 "condition!", MBB);
508 }
509 } else {
510 report("AnalyzeBranch returned invalid data!", MBB);
511 }
512 }
513
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000514 regsLive.clear();
Dan Gohman81bf03e2010-04-13 16:57:55 +0000515 for (MachineBasicBlock::livein_iterator I = MBB->livein_begin(),
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000516 E = MBB->livein_end(); I != E; ++I) {
517 if (!TargetRegisterInfo::isPhysicalRegister(*I)) {
518 report("MBB live-in list contains non-physical register", MBB);
519 continue;
520 }
521 regsLive.insert(*I);
522 for (const unsigned *R = TRI->getSubRegisters(*I); *R; R++)
523 regsLive.insert(*R);
524 }
Jakob Stoklund Olesen710b13b2009-08-08 13:19:25 +0000525 regsLiveInButUnused = regsLive;
Jakob Stoklund Olesena6b677d2009-08-13 16:19:51 +0000526
527 const MachineFrameInfo *MFI = MF->getFrameInfo();
528 assert(MFI && "Function has no frame info");
529 BitVector PR = MFI->getPristineRegs(MBB);
530 for (int I = PR.find_first(); I>0; I = PR.find_next(I)) {
531 regsLive.insert(I);
532 for (const unsigned *R = TRI->getSubRegisters(I); *R; R++)
533 regsLive.insert(*R);
534 }
535
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000536 regsKilled.clear();
537 regsDefined.clear();
Jakob Stoklund Olesenfc69c372011-01-12 21:27:48 +0000538
539 if (Indexes)
540 lastIndex = Indexes->getMBBStartIdx(MBB);
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000541}
542
Jakob Stoklund Olesenb44fad72009-10-04 18:18:39 +0000543void MachineVerifier::visitMachineInstrBefore(const MachineInstr *MI) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000544 const TargetInstrDesc &TI = MI->getDesc();
Jakob Stoklund Olesen39523e22009-09-23 20:57:55 +0000545 if (MI->getNumOperands() < TI.getNumOperands()) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000546 report("Too few operands", MI);
547 *OS << TI.getNumOperands() << " operands expected, but "
548 << MI->getNumExplicitOperands() << " given.\n";
549 }
Dan Gohman2dbc4c82009-10-07 17:36:00 +0000550
551 // Check the MachineMemOperands for basic consistency.
552 for (MachineInstr::mmo_iterator I = MI->memoperands_begin(),
553 E = MI->memoperands_end(); I != E; ++I) {
554 if ((*I)->isLoad() && !TI.mayLoad())
555 report("Missing mayLoad flag", MI);
556 if ((*I)->isStore() && !TI.mayStore())
557 report("Missing mayStore flag", MI);
558 }
Jakob Stoklund Olesen1fe9c342010-08-05 22:32:21 +0000559
560 // Debug values must not have a slot index.
561 // Other instructions must have one.
562 if (LiveInts) {
563 bool mapped = !LiveInts->isNotInMIMap(MI);
564 if (MI->isDebugValue()) {
565 if (mapped)
566 report("Debug instruction has a slot index", MI);
567 } else {
568 if (!mapped)
569 report("Missing slot index", MI);
570 }
571 }
572
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000573}
574
575void
Jakob Stoklund Olesenb44fad72009-10-04 18:18:39 +0000576MachineVerifier::visitMachineOperand(const MachineOperand *MO, unsigned MONum) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000577 const MachineInstr *MI = MO->getParent();
Jakob Stoklund Olesen44b27e52009-05-16 07:25:20 +0000578 const TargetInstrDesc &TI = MI->getDesc();
Cameron Zwarich22d67cf2010-12-19 21:37:23 +0000579 const TargetOperandInfo &TOI = TI.OpInfo[MONum];
Jakob Stoklund Olesen44b27e52009-05-16 07:25:20 +0000580
581 // The first TI.NumDefs operands must be explicit register defines
582 if (MONum < TI.getNumDefs()) {
583 if (!MO->isReg())
584 report("Explicit definition must be a register", MO, MONum);
585 else if (!MO->isDef())
586 report("Explicit definition marked as use", MO, MONum);
587 else if (MO->isImplicit())
588 report("Explicit definition marked as implicit", MO, MONum);
Jakob Stoklund Olesen39523e22009-09-23 20:57:55 +0000589 } else if (MONum < TI.getNumOperands()) {
Eric Christopher113a06c2010-11-17 00:55:36 +0000590 // Don't check if it's the last operand in a variadic instruction. See,
591 // e.g., LDM_RET in the arm back end.
592 if (MO->isReg() && !(TI.isVariadic() && MONum == TI.getNumOperands()-1)) {
Cameron Zwarich22d67cf2010-12-19 21:37:23 +0000593 if (MO->isDef() && !TOI.isOptionalDef())
594 report("Explicit operand marked as def", MO, MONum);
Jakob Stoklund Olesen39523e22009-09-23 20:57:55 +0000595 if (MO->isImplicit())
596 report("Explicit operand marked as implicit", MO, MONum);
597 }
598 } else {
Jakob Stoklund Olesen57115642009-12-22 21:48:20 +0000599 // ARM adds %reg0 operands to indicate predicates. We'll allow that.
600 if (MO->isReg() && !MO->isImplicit() && !TI.isVariadic() && MO->getReg())
Jakob Stoklund Olesen39523e22009-09-23 20:57:55 +0000601 report("Extra explicit operand on non-variadic instruction", MO, MONum);
Jakob Stoklund Olesen44b27e52009-05-16 07:25:20 +0000602 }
603
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000604 switch (MO->getType()) {
605 case MachineOperand::MO_Register: {
606 const unsigned Reg = MO->getReg();
607 if (!Reg)
608 return;
609
610 // Check Live Variables.
Cameron Zwarich8ec88ba2010-12-20 00:08:10 +0000611 if (MI->isDebugValue()) {
612 // Liveness checks are not valid for debug values.
Jakob Stoklund Olesen8e53aca2011-03-31 17:23:25 +0000613 } else if (MO->isUse() && !MO->isUndef()) {
Jakob Stoklund Olesen710b13b2009-08-08 13:19:25 +0000614 regsLiveInButUnused.erase(Reg);
615
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000616 bool isKill = false;
Jakob Stoklund Olesen1b2c7612010-05-14 20:28:32 +0000617 unsigned defIdx;
618 if (MI->isRegTiedToDefOperand(MONum, &defIdx)) {
619 // A two-addr use counts as a kill if use and def are the same.
620 unsigned DefReg = MI->getOperand(defIdx).getReg();
Jakob Stoklund Olesen02ae9f22011-03-31 17:52:41 +0000621 if (Reg == DefReg)
Jakob Stoklund Olesen1b2c7612010-05-14 20:28:32 +0000622 isKill = true;
Jakob Stoklund Olesen02ae9f22011-03-31 17:52:41 +0000623 else if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
Jakob Stoklund Olesen1b2c7612010-05-14 20:28:32 +0000624 report("Two-address instruction operands must be identical",
625 MO, MONum);
626 }
627 } else
628 isKill = MO->isKill();
629
Jakob Stoklund Olesenc910c8d2010-08-05 23:51:26 +0000630 if (isKill)
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000631 addRegWithSubRegs(regsKilled, Reg);
632
Jakob Stoklund Olesenc910c8d2010-08-05 23:51:26 +0000633 // Check that LiveVars knows this kill.
634 if (LiveVars && TargetRegisterInfo::isVirtualRegister(Reg) &&
635 MO->isKill()) {
636 LiveVariables::VarInfo &VI = LiveVars->getVarInfo(Reg);
637 if (std::find(VI.Kills.begin(),
638 VI.Kills.end(), MI) == VI.Kills.end())
639 report("Kill missing from LiveVariables", MO, MONum);
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000640 }
641
Jakob Stoklund Olesen1fe9c342010-08-05 22:32:21 +0000642 // Check LiveInts liveness and kill.
Jakob Stoklund Olesenab566472010-10-30 01:26:11 +0000643 if (TargetRegisterInfo::isVirtualRegister(Reg) &&
644 LiveInts && !LiveInts->isNotInMIMap(MI)) {
Jakob Stoklund Olesen1fe9c342010-08-05 22:32:21 +0000645 SlotIndex UseIdx = LiveInts->getInstructionIndex(MI).getUseIndex();
646 if (LiveInts->hasInterval(Reg)) {
647 const LiveInterval &LI = LiveInts->getInterval(Reg);
648 if (!LI.liveAt(UseIdx)) {
649 report("No live range at use", MO, MONum);
650 *OS << UseIdx << " is not live in " << LI << '\n';
651 }
Jakob Stoklund Olesena7b586b2011-02-04 00:39:18 +0000652 // Check for extra kill flags.
653 // Note that we allow missing kill flags for now.
654 if (MO->isKill() && !LI.killedAt(UseIdx.getDefIndex())) {
655 report("Live range continues after kill flag", MO, MONum);
656 *OS << "Live range: " << LI << '\n';
Jakob Stoklund Olesen1c163d22010-11-01 21:51:31 +0000657 }
Jakob Stoklund Olesenab566472010-10-30 01:26:11 +0000658 } else {
Jakob Stoklund Olesen1fe9c342010-08-05 22:32:21 +0000659 report("Virtual register has no Live interval", MO, MONum);
660 }
661 }
662
Jakob Stoklund Olesen710b13b2009-08-08 13:19:25 +0000663 // Use of a dead register.
664 if (!regsLive.count(Reg)) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000665 if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
666 // Reserved registers may be used even when 'dead'.
667 if (!isReserved(Reg))
668 report("Using an undefined physical register", MO, MONum);
669 } else {
670 BBInfo &MInfo = MBBInfoMap[MI->getParent()];
671 // We don't know which virtual registers are live in, so only complain
672 // if vreg was killed in this MBB. Otherwise keep track of vregs that
673 // must be live in. PHI instructions are handled separately.
674 if (MInfo.regsKilled.count(Reg))
675 report("Using a killed virtual register", MO, MONum);
Chris Lattner518bb532010-02-09 19:54:29 +0000676 else if (!MI->isPHI())
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000677 MInfo.vregsLiveIn.insert(std::make_pair(Reg, MI));
678 }
Duncan Sandse5567202009-05-16 03:28:54 +0000679 }
Jakob Stoklund Olesen8e53aca2011-03-31 17:23:25 +0000680 } else if (MO->isDef()) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000681 // Register defined.
682 // TODO: verify that earlyclobber ops are not used.
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000683 if (MO->isDead())
684 addRegWithSubRegs(regsDead, Reg);
Jakob Stoklund Olesen710b13b2009-08-08 13:19:25 +0000685 else
686 addRegWithSubRegs(regsDefined, Reg);
Jakob Stoklund Olesen1fe9c342010-08-05 22:32:21 +0000687
Jakob Stoklund Olesen775aa222010-08-06 18:04:14 +0000688 // Check LiveInts for a live range, but only for virtual registers.
689 if (LiveInts && TargetRegisterInfo::isVirtualRegister(Reg) &&
690 !LiveInts->isNotInMIMap(MI)) {
Jakob Stoklund Olesen1fe9c342010-08-05 22:32:21 +0000691 SlotIndex DefIdx = LiveInts->getInstructionIndex(MI).getDefIndex();
692 if (LiveInts->hasInterval(Reg)) {
693 const LiveInterval &LI = LiveInts->getInterval(Reg);
Jakob Stoklund Olesened826352010-10-02 05:24:46 +0000694 if (const VNInfo *VNI = LI.getVNInfoAt(DefIdx)) {
695 assert(VNI && "NULL valno is not allowed");
Cameron Zwarich1b031dd2010-12-19 23:50:53 +0000696 if (VNI->def != DefIdx && !MO->isEarlyClobber()) {
Jakob Stoklund Olesen1fe9c342010-08-05 22:32:21 +0000697 report("Inconsistent valno->def", MO, MONum);
Jakob Stoklund Olesened826352010-10-02 05:24:46 +0000698 *OS << "Valno " << VNI->id << " is not defined at "
Jakob Stoklund Olesen1fe9c342010-08-05 22:32:21 +0000699 << DefIdx << " in " << LI << '\n';
700 }
Jakob Stoklund Olesen1fe9c342010-08-05 22:32:21 +0000701 } else {
702 report("No live range at def", MO, MONum);
703 *OS << DefIdx << " is not live in " << LI << '\n';
704 }
Jakob Stoklund Olesen775aa222010-08-06 18:04:14 +0000705 } else {
Jakob Stoklund Olesen1fe9c342010-08-05 22:32:21 +0000706 report("Virtual register has no Live interval", MO, MONum);
707 }
708 }
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000709 }
710
711 // Check register classes.
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000712 if (MONum < TI.getNumOperands() && !MO->isImplicit()) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000713 unsigned SubIdx = MO->getSubReg();
714
715 if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
716 unsigned sr = Reg;
717 if (SubIdx) {
718 unsigned s = TRI->getSubReg(Reg, SubIdx);
719 if (!s) {
720 report("Invalid subregister index for physical register",
721 MO, MONum);
722 return;
723 }
724 sr = s;
725 }
Evan Cheng15993f82011-06-27 21:26:13 +0000726 if (const TargetRegisterClass *DRC = TII->getRegClass(TI, MONum, TRI)) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000727 if (!DRC->contains(sr)) {
728 report("Illegal physical register for instruction", MO, MONum);
729 *OS << TRI->getName(sr) << " is not a "
730 << DRC->getName() << " register.\n";
731 }
732 }
733 } else {
734 // Virtual register.
735 const TargetRegisterClass *RC = MRI->getRegClass(Reg);
736 if (SubIdx) {
Jakob Stoklund Olesen6a8d2c62010-05-18 17:31:12 +0000737 const TargetRegisterClass *SRC = RC->getSubRegisterRegClass(SubIdx);
738 if (!SRC) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000739 report("Invalid subregister index for virtual register", MO, MONum);
Jakob Stoklund Olesen6a8d2c62010-05-18 17:31:12 +0000740 *OS << "Register class " << RC->getName()
741 << " does not support subreg index " << SubIdx << "\n";
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000742 return;
743 }
Jakob Stoklund Olesen6a8d2c62010-05-18 17:31:12 +0000744 RC = SRC;
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000745 }
Evan Cheng15993f82011-06-27 21:26:13 +0000746 if (const TargetRegisterClass *DRC = TII->getRegClass(TI, MONum, TRI)) {
Jakob Stoklund Olesenfa226bc2011-06-02 05:43:46 +0000747 if (!RC->hasSuperClassEq(DRC)) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000748 report("Illegal virtual register for instruction", MO, MONum);
749 *OS << "Expected a " << DRC->getName() << " register, but got a "
750 << RC->getName() << " register\n";
751 }
752 }
753 }
754 }
755 break;
756 }
Jakob Stoklund Olesena5ba07c2009-09-21 07:19:08 +0000757
758 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner518bb532010-02-09 19:54:29 +0000759 if (MI->isPHI() && !MO->getMBB()->isSuccessor(MI->getParent()))
760 report("PHI operand is not in the CFG", MO, MONum);
Jakob Stoklund Olesena5ba07c2009-09-21 07:19:08 +0000761 break;
762
Jakob Stoklund Olesene8f08232010-11-01 19:49:52 +0000763 case MachineOperand::MO_FrameIndex:
764 if (LiveStks && LiveStks->hasInterval(MO->getIndex()) &&
765 LiveInts && !LiveInts->isNotInMIMap(MI)) {
766 LiveInterval &LI = LiveStks->getInterval(MO->getIndex());
767 SlotIndex Idx = LiveInts->getInstructionIndex(MI);
768 if (TI.mayLoad() && !LI.liveAt(Idx.getUseIndex())) {
769 report("Instruction loads from dead spill slot", MO, MONum);
770 *OS << "Live stack: " << LI << '\n';
771 }
772 if (TI.mayStore() && !LI.liveAt(Idx.getDefIndex())) {
773 report("Instruction stores to dead spill slot", MO, MONum);
774 *OS << "Live stack: " << LI << '\n';
775 }
776 }
777 break;
778
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000779 default:
780 break;
781 }
782}
783
Jakob Stoklund Olesenb44fad72009-10-04 18:18:39 +0000784void MachineVerifier::visitMachineInstrAfter(const MachineInstr *MI) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000785 BBInfo &MInfo = MBBInfoMap[MI->getParent()];
786 set_union(MInfo.regsKilled, regsKilled);
Jakob Stoklund Olesen73cf7092010-08-05 18:59:59 +0000787 set_subtract(regsLive, regsKilled); regsKilled.clear();
788 set_subtract(regsLive, regsDead); regsDead.clear();
789 set_union(regsLive, regsDefined); regsDefined.clear();
Jakob Stoklund Olesenfc69c372011-01-12 21:27:48 +0000790
791 if (Indexes && Indexes->hasIndex(MI)) {
792 SlotIndex idx = Indexes->getInstructionIndex(MI);
793 if (!(idx > lastIndex)) {
794 report("Instruction index out of order", MI);
795 *OS << "Last instruction was at " << lastIndex << '\n';
796 }
797 lastIndex = idx;
798 }
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000799}
800
801void
Jakob Stoklund Olesenb44fad72009-10-04 18:18:39 +0000802MachineVerifier::visitMachineBasicBlockAfter(const MachineBasicBlock *MBB) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000803 MBBInfoMap[MBB].regsLiveOut = regsLive;
804 regsLive.clear();
Jakob Stoklund Olesenfc69c372011-01-12 21:27:48 +0000805
806 if (Indexes) {
807 SlotIndex stop = Indexes->getMBBEndIdx(MBB);
808 if (!(stop > lastIndex)) {
809 report("Block ends before last instruction index", MBB);
810 *OS << "Block ends at " << stop
811 << " last instruction was at " << lastIndex << '\n';
812 }
813 lastIndex = stop;
814 }
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000815}
816
817// Calculate the largest possible vregsPassed sets. These are the registers that
818// can pass through an MBB live, but may not be live every time. It is assumed
819// that all vregsPassed sets are empty before the call.
Jakob Stoklund Olesenb31defe2010-01-05 20:59:36 +0000820void MachineVerifier::calcRegsPassed() {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000821 // First push live-out regs to successors' vregsPassed. Remember the MBBs that
822 // have any vregsPassed.
823 DenseSet<const MachineBasicBlock*> todo;
824 for (MachineFunction::const_iterator MFI = MF->begin(), MFE = MF->end();
825 MFI != MFE; ++MFI) {
826 const MachineBasicBlock &MBB(*MFI);
827 BBInfo &MInfo = MBBInfoMap[&MBB];
828 if (!MInfo.reachable)
829 continue;
830 for (MachineBasicBlock::const_succ_iterator SuI = MBB.succ_begin(),
831 SuE = MBB.succ_end(); SuI != SuE; ++SuI) {
832 BBInfo &SInfo = MBBInfoMap[*SuI];
833 if (SInfo.addPassed(MInfo.regsLiveOut))
834 todo.insert(*SuI);
835 }
836 }
837
838 // Iteratively push vregsPassed to successors. This will converge to the same
839 // final state regardless of DenseSet iteration order.
840 while (!todo.empty()) {
841 const MachineBasicBlock *MBB = *todo.begin();
842 todo.erase(MBB);
843 BBInfo &MInfo = MBBInfoMap[MBB];
844 for (MachineBasicBlock::const_succ_iterator SuI = MBB->succ_begin(),
845 SuE = MBB->succ_end(); SuI != SuE; ++SuI) {
846 if (*SuI == MBB)
847 continue;
848 BBInfo &SInfo = MBBInfoMap[*SuI];
849 if (SInfo.addPassed(MInfo.vregsPassed))
850 todo.insert(*SuI);
851 }
852 }
853}
854
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000855// Calculate the set of virtual registers that must be passed through each basic
856// block in order to satisfy the requirements of successor blocks. This is very
Jakob Stoklund Olesenb31defe2010-01-05 20:59:36 +0000857// similar to calcRegsPassed, only backwards.
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000858void MachineVerifier::calcRegsRequired() {
859 // First push live-in regs to predecessors' vregsRequired.
860 DenseSet<const MachineBasicBlock*> todo;
861 for (MachineFunction::const_iterator MFI = MF->begin(), MFE = MF->end();
862 MFI != MFE; ++MFI) {
863 const MachineBasicBlock &MBB(*MFI);
864 BBInfo &MInfo = MBBInfoMap[&MBB];
865 for (MachineBasicBlock::const_pred_iterator PrI = MBB.pred_begin(),
866 PrE = MBB.pred_end(); PrI != PrE; ++PrI) {
867 BBInfo &PInfo = MBBInfoMap[*PrI];
868 if (PInfo.addRequired(MInfo.vregsLiveIn))
869 todo.insert(*PrI);
870 }
871 }
872
873 // Iteratively push vregsRequired to predecessors. This will converge to the
874 // same final state regardless of DenseSet iteration order.
875 while (!todo.empty()) {
876 const MachineBasicBlock *MBB = *todo.begin();
877 todo.erase(MBB);
878 BBInfo &MInfo = MBBInfoMap[MBB];
879 for (MachineBasicBlock::const_pred_iterator PrI = MBB->pred_begin(),
880 PrE = MBB->pred_end(); PrI != PrE; ++PrI) {
881 if (*PrI == MBB)
882 continue;
883 BBInfo &SInfo = MBBInfoMap[*PrI];
884 if (SInfo.addRequired(MInfo.vregsRequired))
885 todo.insert(*PrI);
886 }
887 }
888}
889
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000890// Check PHI instructions at the beginning of MBB. It is assumed that
Jakob Stoklund Olesenb31defe2010-01-05 20:59:36 +0000891// calcRegsPassed has been run so BBInfo::isLiveOut is valid.
Jakob Stoklund Olesenb44fad72009-10-04 18:18:39 +0000892void MachineVerifier::checkPHIOps(const MachineBasicBlock *MBB) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000893 for (MachineBasicBlock::const_iterator BBI = MBB->begin(), BBE = MBB->end();
Chris Lattner518bb532010-02-09 19:54:29 +0000894 BBI != BBE && BBI->isPHI(); ++BBI) {
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000895 DenseSet<const MachineBasicBlock*> seen;
896
897 for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2) {
898 unsigned Reg = BBI->getOperand(i).getReg();
899 const MachineBasicBlock *Pre = BBI->getOperand(i + 1).getMBB();
900 if (!Pre->isSuccessor(MBB))
901 continue;
902 seen.insert(Pre);
903 BBInfo &PrInfo = MBBInfoMap[Pre];
904 if (PrInfo.reachable && !PrInfo.isLiveOut(Reg))
905 report("PHI operand is not live-out from predecessor",
906 &BBI->getOperand(i), i);
907 }
908
909 // Did we see all predecessors?
910 for (MachineBasicBlock::const_pred_iterator PrI = MBB->pred_begin(),
911 PrE = MBB->pred_end(); PrI != PrE; ++PrI) {
912 if (!seen.count(*PrI)) {
913 report("Missing PHI operand", BBI);
Dan Gohman0ba90f32009-10-31 20:19:03 +0000914 *OS << "BB#" << (*PrI)->getNumber()
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000915 << " is a predecessor according to the CFG.\n";
916 }
917 }
918 }
919}
920
Jakob Stoklund Olesenb44fad72009-10-04 18:18:39 +0000921void MachineVerifier::visitMachineFunctionAfter() {
Jakob Stoklund Olesenb31defe2010-01-05 20:59:36 +0000922 calcRegsPassed();
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000923
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000924 for (MachineFunction::const_iterator MFI = MF->begin(), MFE = MF->end();
925 MFI != MFE; ++MFI) {
926 BBInfo &MInfo = MBBInfoMap[MFI];
927
928 // Skip unreachable MBBs.
929 if (!MInfo.reachable)
930 continue;
931
932 checkPHIOps(MFI);
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000933 }
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000934
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +0000935 // Now check liveness info if available
936 if (LiveVars || LiveInts)
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000937 calcRegsRequired();
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +0000938 if (LiveVars)
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000939 verifyLiveVariables();
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +0000940 if (LiveInts)
941 verifyLiveIntervals();
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000942}
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000943
944void MachineVerifier::verifyLiveVariables() {
945 assert(LiveVars && "Don't call verifyLiveVariables without LiveVars");
Jakob Stoklund Olesen98c54762011-01-08 23:11:02 +0000946 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
947 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000948 LiveVariables::VarInfo &VI = LiveVars->getVarInfo(Reg);
949 for (MachineFunction::const_iterator MFI = MF->begin(), MFE = MF->end();
950 MFI != MFE; ++MFI) {
951 BBInfo &MInfo = MBBInfoMap[MFI];
952
953 // Our vregsRequired should be identical to LiveVariables' AliveBlocks
954 if (MInfo.vregsRequired.count(Reg)) {
955 if (!VI.AliveBlocks.test(MFI->getNumber())) {
956 report("LiveVariables: Block missing from AliveBlocks", MFI);
Jakob Stoklund Olesen43142682011-01-09 03:05:53 +0000957 *OS << "Virtual register " << PrintReg(Reg)
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000958 << " must be live through the block.\n";
959 }
960 } else {
961 if (VI.AliveBlocks.test(MFI->getNumber())) {
962 report("LiveVariables: Block should not be in AliveBlocks", MFI);
Jakob Stoklund Olesen43142682011-01-09 03:05:53 +0000963 *OS << "Virtual register " << PrintReg(Reg)
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +0000964 << " is not needed live through the block.\n";
965 }
966 }
967 }
968 }
969}
970
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +0000971void MachineVerifier::verifyLiveIntervals() {
972 assert(LiveInts && "Don't call verifyLiveIntervals without LiveInts");
973 for (LiveIntervals::const_iterator LVI = LiveInts->begin(),
974 LVE = LiveInts->end(); LVI != LVE; ++LVI) {
975 const LiveInterval &LI = *LVI->second;
Jakob Stoklund Olesen893ab5d2010-10-06 23:54:35 +0000976
977 // Spilling and splitting may leave unused registers around. Skip them.
978 if (MRI->use_empty(LI.reg))
979 continue;
980
Jakob Stoklund Olesen8c456422010-10-28 20:44:22 +0000981 // Physical registers have much weirdness going on, mostly from coalescing.
982 // We should probably fix it, but for now just ignore them.
983 if (TargetRegisterInfo::isPhysicalRegister(LI.reg))
984 continue;
985
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +0000986 assert(LVI->first == LI.reg && "Invalid reg to interval mapping");
987
988 for (LiveInterval::const_vni_iterator I = LI.vni_begin(), E = LI.vni_end();
989 I!=E; ++I) {
990 VNInfo *VNI = *I;
Jakob Stoklund Olesened826352010-10-02 05:24:46 +0000991 const VNInfo *DefVNI = LI.getVNInfoAt(VNI->def);
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +0000992
Jakob Stoklund Olesened826352010-10-02 05:24:46 +0000993 if (!DefVNI) {
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +0000994 if (!VNI->isUnused()) {
995 report("Valno not live at def and not marked unused", MF);
996 *OS << "Valno #" << VNI->id << " in " << LI << '\n';
997 }
998 continue;
999 }
1000
1001 if (VNI->isUnused())
1002 continue;
1003
Jakob Stoklund Olesened826352010-10-02 05:24:46 +00001004 if (DefVNI != VNI) {
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +00001005 report("Live range at def has different valno", MF);
Jakob Stoklund Olesened826352010-10-02 05:24:46 +00001006 *OS << "Valno #" << VNI->id << " is defined at " << VNI->def
Jakob Stoklund Olesendbcc2e12010-10-26 20:21:43 +00001007 << " where valno #" << DefVNI->id << " is live in " << LI << '\n';
Jakob Stoklund Olesen3bf7cf92010-10-22 22:48:58 +00001008 continue;
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +00001009 }
1010
Jakob Stoklund Olesen3bf7cf92010-10-22 22:48:58 +00001011 const MachineBasicBlock *MBB = LiveInts->getMBBFromIndex(VNI->def);
1012 if (!MBB) {
1013 report("Invalid definition index", MF);
Jakob Stoklund Olesendbcc2e12010-10-26 20:21:43 +00001014 *OS << "Valno #" << VNI->id << " is defined at " << VNI->def
1015 << " in " << LI << '\n';
Jakob Stoklund Olesen3bf7cf92010-10-22 22:48:58 +00001016 continue;
1017 }
1018
1019 if (VNI->isPHIDef()) {
1020 if (VNI->def != LiveInts->getMBBStartIdx(MBB)) {
1021 report("PHIDef value is not defined at MBB start", MF);
1022 *OS << "Valno #" << VNI->id << " is defined at " << VNI->def
Jakob Stoklund Olesendbcc2e12010-10-26 20:21:43 +00001023 << ", not at the beginning of BB#" << MBB->getNumber()
1024 << " in " << LI << '\n';
Jakob Stoklund Olesen3bf7cf92010-10-22 22:48:58 +00001025 }
1026 } else {
1027 // Non-PHI def.
Jakob Stoklund Olesen3bf7cf92010-10-22 22:48:58 +00001028 const MachineInstr *MI = LiveInts->getInstructionFromIndex(VNI->def);
1029 if (!MI) {
1030 report("No instruction at def index", MF);
Jakob Stoklund Olesen78716872010-10-23 00:49:09 +00001031 *OS << "Valno #" << VNI->id << " is defined at " << VNI->def
1032 << " in " << LI << '\n';
Jakob Stoklund Olesen3bf7cf92010-10-22 22:48:58 +00001033 } else if (!MI->modifiesRegister(LI.reg, TRI)) {
1034 report("Defining instruction does not modify register", MI);
1035 *OS << "Valno #" << VNI->id << " in " << LI << '\n';
1036 }
Cameron Zwarich0b13d7d2010-12-20 03:15:20 +00001037
1038 bool isEarlyClobber = false;
1039 if (MI) {
1040 for (MachineInstr::const_mop_iterator MOI = MI->operands_begin(),
1041 MOE = MI->operands_end(); MOI != MOE; ++MOI) {
1042 if (MOI->isReg() && MOI->getReg() == LI.reg && MOI->isDef() &&
1043 MOI->isEarlyClobber()) {
1044 isEarlyClobber = true;
1045 break;
1046 }
1047 }
1048 }
1049
1050 // Early clobber defs begin at USE slots, but other defs must begin at
1051 // DEF slots.
1052 if (isEarlyClobber) {
1053 if (!VNI->def.isUse()) {
1054 report("Early clobber def must be at a USE slot", MF);
1055 *OS << "Valno #" << VNI->id << " is defined at " << VNI->def
1056 << " in " << LI << '\n';
1057 }
1058 } else if (!VNI->def.isDef()) {
1059 report("Non-PHI, non-early clobber def must be at a DEF slot", MF);
1060 *OS << "Valno #" << VNI->id << " is defined at " << VNI->def
1061 << " in " << LI << '\n';
1062 }
Jakob Stoklund Olesen3bf7cf92010-10-22 22:48:58 +00001063 }
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +00001064 }
1065
1066 for (LiveInterval::const_iterator I = LI.begin(), E = LI.end(); I!=E; ++I) {
Jakob Stoklund Olesened826352010-10-02 05:24:46 +00001067 const VNInfo *VNI = I->valno;
1068 assert(VNI && "Live range has no valno");
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +00001069
Jakob Stoklund Olesened826352010-10-02 05:24:46 +00001070 if (VNI->id >= LI.getNumValNums() || VNI != LI.getValNumInfo(VNI->id)) {
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +00001071 report("Foreign valno in live range", MF);
Jakob Stoklund Olesened826352010-10-02 05:24:46 +00001072 I->print(*OS);
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +00001073 *OS << " has a valno not in " << LI << '\n';
1074 }
1075
Jakob Stoklund Olesened826352010-10-02 05:24:46 +00001076 if (VNI->isUnused()) {
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +00001077 report("Live range valno is marked unused", MF);
Jakob Stoklund Olesened826352010-10-02 05:24:46 +00001078 I->print(*OS);
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +00001079 *OS << " in " << LI << '\n';
1080 }
1081
Jakob Stoklund Olesen78716872010-10-23 00:49:09 +00001082 const MachineBasicBlock *MBB = LiveInts->getMBBFromIndex(I->start);
1083 if (!MBB) {
1084 report("Bad start of live segment, no basic block", MF);
1085 I->print(*OS);
1086 *OS << " in " << LI << '\n';
1087 continue;
1088 }
1089 SlotIndex MBBStartIdx = LiveInts->getMBBStartIdx(MBB);
1090 if (I->start != MBBStartIdx && I->start != VNI->def) {
1091 report("Live segment must begin at MBB entry or valno def", MBB);
1092 I->print(*OS);
1093 *OS << " in " << LI << '\n' << "Basic block starts at "
1094 << MBBStartIdx << '\n';
1095 }
1096
1097 const MachineBasicBlock *EndMBB =
1098 LiveInts->getMBBFromIndex(I->end.getPrevSlot());
1099 if (!EndMBB) {
1100 report("Bad end of live segment, no basic block", MF);
1101 I->print(*OS);
1102 *OS << " in " << LI << '\n';
1103 continue;
1104 }
1105 if (I->end != LiveInts->getMBBEndIdx(EndMBB)) {
1106 // The live segment is ending inside EndMBB
1107 const MachineInstr *MI =
1108 LiveInts->getInstructionFromIndex(I->end.getPrevSlot());
1109 if (!MI) {
1110 report("Live segment doesn't end at a valid instruction", EndMBB);
1111 I->print(*OS);
1112 *OS << " in " << LI << '\n' << "Basic block starts at "
1113 << MBBStartIdx << '\n';
1114 } else if (TargetRegisterInfo::isVirtualRegister(LI.reg) &&
1115 !MI->readsVirtualRegister(LI.reg)) {
Cameron Zwarich636f15f2010-12-20 01:22:37 +00001116 // A live range can end with either a redefinition, a kill flag on a
1117 // use, or a dead flag on a def.
1118 // FIXME: Should we check for each of these?
1119 bool hasDeadDef = false;
1120 for (MachineInstr::const_mop_iterator MOI = MI->operands_begin(),
1121 MOE = MI->operands_end(); MOI != MOE; ++MOI) {
Cameron Zwarich5e61f992010-12-20 02:59:51 +00001122 if (MOI->isReg() && MOI->getReg() == LI.reg && MOI->isDef() && MOI->isDead()) {
Cameron Zwarich636f15f2010-12-20 01:22:37 +00001123 hasDeadDef = true;
1124 break;
1125 }
1126 }
1127
1128 if (!hasDeadDef) {
1129 report("Instruction killing live segment neither defines nor reads "
1130 "register", MI);
1131 I->print(*OS);
1132 *OS << " in " << LI << '\n';
1133 }
Jakob Stoklund Olesen78716872010-10-23 00:49:09 +00001134 }
1135 }
1136
1137 // Now check all the basic blocks in this live segment.
1138 MachineFunction::const_iterator MFI = MBB;
Cameron Zwarichcb584d02010-12-28 23:45:38 +00001139 // Is this live range the beginning of a non-PHIDef VN?
1140 if (I->start == VNI->def && !VNI->isPHIDef()) {
Jakob Stoklund Olesen78716872010-10-23 00:49:09 +00001141 // Not live-in to any blocks.
1142 if (MBB == EndMBB)
1143 continue;
1144 // Skip this block.
1145 ++MFI;
1146 }
1147 for (;;) {
1148 assert(LiveInts->isLiveInToMBB(LI, MFI));
Jakob Stoklund Olesene459d552010-10-26 16:49:23 +00001149 // We don't know how to track physregs into a landing pad.
1150 if (TargetRegisterInfo::isPhysicalRegister(LI.reg) &&
1151 MFI->isLandingPad()) {
1152 if (&*MFI == EndMBB)
1153 break;
1154 ++MFI;
1155 continue;
1156 }
Jakob Stoklund Olesen78716872010-10-23 00:49:09 +00001157 // Check that VNI is live-out of all predecessors.
1158 for (MachineBasicBlock::const_pred_iterator PI = MFI->pred_begin(),
1159 PE = MFI->pred_end(); PI != PE; ++PI) {
1160 SlotIndex PEnd = LiveInts->getMBBEndIdx(*PI).getPrevSlot();
1161 const VNInfo *PVNI = LI.getVNInfoAt(PEnd);
Cameron Zwarich4eee42c2010-12-27 05:17:23 +00001162
1163 if (VNI->isPHIDef() && VNI->def == LiveInts->getMBBStartIdx(MFI)) {
Cameron Zwarichcb584d02010-12-28 23:45:38 +00001164 if (PVNI && !PVNI->hasPHIKill()) {
Cameron Zwarich4eee42c2010-12-27 05:17:23 +00001165 report("Value live out of predecessor doesn't have PHIKill", MF);
1166 *OS << "Valno #" << PVNI->id << " live out of BB#"
1167 << (*PI)->getNumber() << '@' << PEnd
1168 << " doesn't have PHIKill, but Valno #" << VNI->id
1169 << " is PHIDef and defined at the beginning of BB#"
1170 << MFI->getNumber() << '@' << LiveInts->getMBBStartIdx(MFI)
1171 << " in " << LI << '\n';
1172 }
1173 continue;
1174 }
1175
Cameron Zwarichcb584d02010-12-28 23:45:38 +00001176 if (!PVNI) {
1177 report("Register not marked live out of predecessor", *PI);
1178 *OS << "Valno #" << VNI->id << " live into BB#" << MFI->getNumber()
1179 << '@' << LiveInts->getMBBStartIdx(MFI) << ", not live at "
1180 << PEnd << " in " << LI << '\n';
1181 continue;
1182 }
1183
Cameron Zwarich4eee42c2010-12-27 05:17:23 +00001184 if (PVNI != VNI) {
Jakob Stoklund Olesen78716872010-10-23 00:49:09 +00001185 report("Different value live out of predecessor", *PI);
1186 *OS << "Valno #" << PVNI->id << " live out of BB#"
1187 << (*PI)->getNumber() << '@' << PEnd
1188 << "\nValno #" << VNI->id << " live into BB#" << MFI->getNumber()
1189 << '@' << LiveInts->getMBBStartIdx(MFI) << " in " << LI << '\n';
1190 }
1191 }
1192 if (&*MFI == EndMBB)
1193 break;
1194 ++MFI;
1195 }
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +00001196 }
Jakob Stoklund Olesen501dc422010-10-26 22:36:07 +00001197
1198 // Check the LI only has one connected component.
Jakob Stoklund Olesen8c593f92010-10-27 00:39:01 +00001199 if (TargetRegisterInfo::isVirtualRegister(LI.reg)) {
1200 ConnectedVNInfoEqClasses ConEQ(*LiveInts);
1201 unsigned NumComp = ConEQ.Classify(&LI);
1202 if (NumComp > 1) {
1203 report("Multiple connected components in live interval", MF);
1204 *OS << NumComp << " components in " << LI << '\n';
Jakob Stoklund Olesencb367772010-10-29 00:40:57 +00001205 for (unsigned comp = 0; comp != NumComp; ++comp) {
1206 *OS << comp << ": valnos";
1207 for (LiveInterval::const_vni_iterator I = LI.vni_begin(),
1208 E = LI.vni_end(); I!=E; ++I)
1209 if (comp == ConEQ.getEqClass(*I))
1210 *OS << ' ' << (*I)->id;
1211 *OS << '\n';
1212 }
Jakob Stoklund Olesen8c593f92010-10-27 00:39:01 +00001213 }
Jakob Stoklund Olesen501dc422010-10-26 22:36:07 +00001214 }
Jakob Stoklund Olesen58e12482010-08-06 18:04:19 +00001215 }
1216}
Jakob Stoklund Olesen8f16e022009-11-18 20:36:57 +00001217