Bill Wendling | 5567bb0 | 2010-08-19 18:52:17 +0000 | [diff] [blame] | 1 | //===-- MachineVerifier.cpp - Machine Code Verifier -----------------------===// |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // Pass to verify generated machine code. The following is checked: |
| 11 | // |
| 12 | // Operand counts: All explicit operands must be present. |
| 13 | // |
| 14 | // Register classes: All physical and virtual register operands must be |
| 15 | // compatible with the register class required by the instruction descriptor. |
| 16 | // |
| 17 | // Register live intervals: Registers must be defined only once, and must be |
| 18 | // defined before use. |
| 19 | // |
| 20 | // The machine code verifier is enabled from LLVMTargetMachine.cpp with the |
| 21 | // command-line option -verify-machineinstrs, or by defining the environment |
| 22 | // variable LLVM_VERIFY_MACHINEINSTRS to the name of a file that will receive |
| 23 | // the verifier errors. |
| 24 | //===----------------------------------------------------------------------===// |
| 25 | |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 26 | #include "llvm/Function.h" |
Jakob Stoklund Olesen | 1fe9c34 | 2010-08-05 22:32:21 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/LiveIntervalAnalysis.h" |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 28 | #include "llvm/CodeGen/LiveVariables.h" |
Jakob Stoklund Olesen | e8f0823 | 2010-11-01 19:49:52 +0000 | [diff] [blame] | 29 | #include "llvm/CodeGen/LiveStackAnalysis.h" |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 30 | #include "llvm/CodeGen/MachineFunctionPass.h" |
Jakob Stoklund Olesen | a6b677d | 2009-08-13 16:19:51 +0000 | [diff] [blame] | 31 | #include "llvm/CodeGen/MachineFrameInfo.h" |
Dan Gohman | 2dbc4c8 | 2009-10-07 17:36:00 +0000 | [diff] [blame] | 32 | #include "llvm/CodeGen/MachineMemOperand.h" |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 33 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
| 34 | #include "llvm/CodeGen/Passes.h" |
| 35 | #include "llvm/Target/TargetMachine.h" |
| 36 | #include "llvm/Target/TargetRegisterInfo.h" |
| 37 | #include "llvm/Target/TargetInstrInfo.h" |
Chris Lattner | cf143a4 | 2009-08-23 03:13:20 +0000 | [diff] [blame] | 38 | #include "llvm/ADT/DenseSet.h" |
| 39 | #include "llvm/ADT/SetOperations.h" |
| 40 | #include "llvm/ADT/SmallVector.h" |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 41 | #include "llvm/Support/Debug.h" |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 42 | #include "llvm/Support/ErrorHandling.h" |
| 43 | #include "llvm/Support/raw_ostream.h" |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 44 | using namespace llvm; |
| 45 | |
| 46 | namespace { |
Jakob Stoklund Olesen | 8f16e02 | 2009-11-18 20:36:57 +0000 | [diff] [blame] | 47 | struct MachineVerifier { |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 48 | |
Jakob Stoklund Olesen | 73cf709 | 2010-08-05 18:59:59 +0000 | [diff] [blame] | 49 | MachineVerifier(Pass *pass) : |
Jakob Stoklund Olesen | 8f16e02 | 2009-11-18 20:36:57 +0000 | [diff] [blame] | 50 | PASS(pass), |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 51 | OutFileName(getenv("LLVM_VERIFY_MACHINEINSTRS")) |
Jakob Stoklund Olesen | 8f16e02 | 2009-11-18 20:36:57 +0000 | [diff] [blame] | 52 | {} |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 53 | |
| 54 | bool runOnMachineFunction(MachineFunction &MF); |
| 55 | |
Jakob Stoklund Olesen | 8f16e02 | 2009-11-18 20:36:57 +0000 | [diff] [blame] | 56 | Pass *const PASS; |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 57 | const char *const OutFileName; |
Chris Lattner | 17e9edc | 2009-08-23 02:51:22 +0000 | [diff] [blame] | 58 | raw_ostream *OS; |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 59 | const MachineFunction *MF; |
| 60 | const TargetMachine *TM; |
| 61 | const TargetRegisterInfo *TRI; |
| 62 | const MachineRegisterInfo *MRI; |
| 63 | |
| 64 | unsigned foundErrors; |
| 65 | |
| 66 | typedef SmallVector<unsigned, 16> RegVector; |
| 67 | typedef DenseSet<unsigned> RegSet; |
| 68 | typedef DenseMap<unsigned, const MachineInstr*> RegMap; |
| 69 | |
| 70 | BitVector regsReserved; |
| 71 | RegSet regsLive; |
Jakob Stoklund Olesen | 710b13b | 2009-08-08 13:19:25 +0000 | [diff] [blame] | 72 | RegVector regsDefined, regsDead, regsKilled; |
| 73 | RegSet regsLiveInButUnused; |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 74 | |
| 75 | // Add Reg and any sub-registers to RV |
| 76 | void addRegWithSubRegs(RegVector &RV, unsigned Reg) { |
| 77 | RV.push_back(Reg); |
| 78 | if (TargetRegisterInfo::isPhysicalRegister(Reg)) |
| 79 | for (const unsigned *R = TRI->getSubRegisters(Reg); *R; R++) |
| 80 | RV.push_back(*R); |
| 81 | } |
| 82 | |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 83 | struct BBInfo { |
| 84 | // Is this MBB reachable from the MF entry point? |
| 85 | bool reachable; |
| 86 | |
| 87 | // Vregs that must be live in because they are used without being |
| 88 | // defined. Map value is the user. |
| 89 | RegMap vregsLiveIn; |
| 90 | |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 91 | // Regs killed in MBB. They may be defined again, and will then be in both |
| 92 | // regsKilled and regsLiveOut. |
| 93 | RegSet regsKilled; |
| 94 | |
| 95 | // Regs defined in MBB and live out. Note that vregs passing through may |
| 96 | // be live out without being mentioned here. |
| 97 | RegSet regsLiveOut; |
| 98 | |
| 99 | // Vregs that pass through MBB untouched. This set is disjoint from |
| 100 | // regsKilled and regsLiveOut. |
| 101 | RegSet vregsPassed; |
| 102 | |
Jakob Stoklund Olesen | 8f16e02 | 2009-11-18 20:36:57 +0000 | [diff] [blame] | 103 | // Vregs that must pass through MBB because they are needed by a successor |
| 104 | // block. This set is disjoint from regsLiveOut. |
| 105 | RegSet vregsRequired; |
| 106 | |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 107 | BBInfo() : reachable(false) {} |
| 108 | |
| 109 | // Add register to vregsPassed if it belongs there. Return true if |
| 110 | // anything changed. |
| 111 | bool addPassed(unsigned Reg) { |
| 112 | if (!TargetRegisterInfo::isVirtualRegister(Reg)) |
| 113 | return false; |
| 114 | if (regsKilled.count(Reg) || regsLiveOut.count(Reg)) |
| 115 | return false; |
| 116 | return vregsPassed.insert(Reg).second; |
| 117 | } |
| 118 | |
| 119 | // Same for a full set. |
| 120 | bool addPassed(const RegSet &RS) { |
| 121 | bool changed = false; |
| 122 | for (RegSet::const_iterator I = RS.begin(), E = RS.end(); I != E; ++I) |
| 123 | if (addPassed(*I)) |
| 124 | changed = true; |
| 125 | return changed; |
| 126 | } |
| 127 | |
Jakob Stoklund Olesen | 8f16e02 | 2009-11-18 20:36:57 +0000 | [diff] [blame] | 128 | // Add register to vregsRequired if it belongs there. Return true if |
| 129 | // anything changed. |
| 130 | bool addRequired(unsigned Reg) { |
| 131 | if (!TargetRegisterInfo::isVirtualRegister(Reg)) |
| 132 | return false; |
| 133 | if (regsLiveOut.count(Reg)) |
| 134 | return false; |
| 135 | return vregsRequired.insert(Reg).second; |
| 136 | } |
| 137 | |
| 138 | // Same for a full set. |
| 139 | bool addRequired(const RegSet &RS) { |
| 140 | bool changed = false; |
| 141 | for (RegSet::const_iterator I = RS.begin(), E = RS.end(); I != E; ++I) |
| 142 | if (addRequired(*I)) |
| 143 | changed = true; |
| 144 | return changed; |
| 145 | } |
| 146 | |
| 147 | // Same for a full map. |
| 148 | bool addRequired(const RegMap &RM) { |
| 149 | bool changed = false; |
| 150 | for (RegMap::const_iterator I = RM.begin(), E = RM.end(); I != E; ++I) |
| 151 | if (addRequired(I->first)) |
| 152 | changed = true; |
| 153 | return changed; |
| 154 | } |
| 155 | |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 156 | // Live-out registers are either in regsLiveOut or vregsPassed. |
| 157 | bool isLiveOut(unsigned Reg) const { |
| 158 | return regsLiveOut.count(Reg) || vregsPassed.count(Reg); |
| 159 | } |
| 160 | }; |
| 161 | |
| 162 | // Extra register info per MBB. |
| 163 | DenseMap<const MachineBasicBlock*, BBInfo> MBBInfoMap; |
| 164 | |
| 165 | bool isReserved(unsigned Reg) { |
Jakob Stoklund Olesen | d37bc5a | 2009-08-04 19:18:01 +0000 | [diff] [blame] | 166 | return Reg < regsReserved.size() && regsReserved.test(Reg); |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 167 | } |
| 168 | |
Jakob Stoklund Olesen | 8f16e02 | 2009-11-18 20:36:57 +0000 | [diff] [blame] | 169 | // Analysis information if available |
| 170 | LiveVariables *LiveVars; |
Jakob Stoklund Olesen | 501dc42 | 2010-10-26 22:36:07 +0000 | [diff] [blame] | 171 | LiveIntervals *LiveInts; |
Jakob Stoklund Olesen | e8f0823 | 2010-11-01 19:49:52 +0000 | [diff] [blame] | 172 | LiveStacks *LiveStks; |
Jakob Stoklund Olesen | f4a1e1a | 2010-10-26 20:21:46 +0000 | [diff] [blame] | 173 | SlotIndexes *Indexes; |
Jakob Stoklund Olesen | 8f16e02 | 2009-11-18 20:36:57 +0000 | [diff] [blame] | 174 | |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 175 | void visitMachineFunctionBefore(); |
| 176 | void visitMachineBasicBlockBefore(const MachineBasicBlock *MBB); |
| 177 | void visitMachineInstrBefore(const MachineInstr *MI); |
| 178 | void visitMachineOperand(const MachineOperand *MO, unsigned MONum); |
| 179 | void visitMachineInstrAfter(const MachineInstr *MI); |
| 180 | void visitMachineBasicBlockAfter(const MachineBasicBlock *MBB); |
| 181 | void visitMachineFunctionAfter(); |
| 182 | |
| 183 | void report(const char *msg, const MachineFunction *MF); |
| 184 | void report(const char *msg, const MachineBasicBlock *MBB); |
| 185 | void report(const char *msg, const MachineInstr *MI); |
| 186 | void report(const char *msg, const MachineOperand *MO, unsigned MONum); |
| 187 | |
| 188 | void markReachable(const MachineBasicBlock *MBB); |
Jakob Stoklund Olesen | b31defe | 2010-01-05 20:59:36 +0000 | [diff] [blame] | 189 | void calcRegsPassed(); |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 190 | void checkPHIOps(const MachineBasicBlock *MBB); |
Jakob Stoklund Olesen | 8f16e02 | 2009-11-18 20:36:57 +0000 | [diff] [blame] | 191 | |
| 192 | void calcRegsRequired(); |
| 193 | void verifyLiveVariables(); |
Jakob Stoklund Olesen | 58e1248 | 2010-08-06 18:04:19 +0000 | [diff] [blame] | 194 | void verifyLiveIntervals(); |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 195 | }; |
Jakob Stoklund Olesen | 8f16e02 | 2009-11-18 20:36:57 +0000 | [diff] [blame] | 196 | |
| 197 | struct MachineVerifierPass : public MachineFunctionPass { |
| 198 | static char ID; // Pass ID, replacement for typeid |
Jakob Stoklund Olesen | 8f16e02 | 2009-11-18 20:36:57 +0000 | [diff] [blame] | 199 | |
Jakob Stoklund Olesen | 73cf709 | 2010-08-05 18:59:59 +0000 | [diff] [blame] | 200 | MachineVerifierPass() |
Owen Anderson | 081c34b | 2010-10-19 17:21:58 +0000 | [diff] [blame] | 201 | : MachineFunctionPass(ID) { |
| 202 | initializeMachineVerifierPassPass(*PassRegistry::getPassRegistry()); |
| 203 | } |
Jakob Stoklund Olesen | 8f16e02 | 2009-11-18 20:36:57 +0000 | [diff] [blame] | 204 | |
| 205 | void getAnalysisUsage(AnalysisUsage &AU) const { |
| 206 | AU.setPreservesAll(); |
| 207 | MachineFunctionPass::getAnalysisUsage(AU); |
| 208 | } |
| 209 | |
| 210 | bool runOnMachineFunction(MachineFunction &MF) { |
Jakob Stoklund Olesen | 73cf709 | 2010-08-05 18:59:59 +0000 | [diff] [blame] | 211 | MF.verify(this); |
Jakob Stoklund Olesen | 8f16e02 | 2009-11-18 20:36:57 +0000 | [diff] [blame] | 212 | return false; |
| 213 | } |
| 214 | }; |
| 215 | |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 216 | } |
| 217 | |
Jakob Stoklund Olesen | 8f16e02 | 2009-11-18 20:36:57 +0000 | [diff] [blame] | 218 | char MachineVerifierPass::ID = 0; |
Owen Anderson | 02dd53e | 2010-08-23 17:52:01 +0000 | [diff] [blame] | 219 | INITIALIZE_PASS(MachineVerifierPass, "machineverifier", |
Owen Anderson | ce665bd | 2010-10-07 22:25:06 +0000 | [diff] [blame] | 220 | "Verify generated machine code", false, false) |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 221 | |
Jakob Stoklund Olesen | 73cf709 | 2010-08-05 18:59:59 +0000 | [diff] [blame] | 222 | FunctionPass *llvm::createMachineVerifierPass() { |
| 223 | return new MachineVerifierPass(); |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 224 | } |
| 225 | |
Jakob Stoklund Olesen | 73cf709 | 2010-08-05 18:59:59 +0000 | [diff] [blame] | 226 | void MachineFunction::verify(Pass *p) const { |
| 227 | MachineVerifier(p).runOnMachineFunction(const_cast<MachineFunction&>(*this)); |
Jakob Stoklund Olesen | ce727d0 | 2009-11-13 21:56:09 +0000 | [diff] [blame] | 228 | } |
| 229 | |
Chris Lattner | 17e9edc | 2009-08-23 02:51:22 +0000 | [diff] [blame] | 230 | bool MachineVerifier::runOnMachineFunction(MachineFunction &MF) { |
| 231 | raw_ostream *OutFile = 0; |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 232 | if (OutFileName) { |
Chris Lattner | 17e9edc | 2009-08-23 02:51:22 +0000 | [diff] [blame] | 233 | std::string ErrorInfo; |
| 234 | OutFile = new raw_fd_ostream(OutFileName, ErrorInfo, |
| 235 | raw_fd_ostream::F_Append); |
| 236 | if (!ErrorInfo.empty()) { |
| 237 | errs() << "Error opening '" << OutFileName << "': " << ErrorInfo << '\n'; |
| 238 | exit(1); |
| 239 | } |
Jakob Stoklund Olesen | b44fad7 | 2009-10-04 18:18:39 +0000 | [diff] [blame] | 240 | |
Chris Lattner | 17e9edc | 2009-08-23 02:51:22 +0000 | [diff] [blame] | 241 | OS = OutFile; |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 242 | } else { |
Chris Lattner | 17e9edc | 2009-08-23 02:51:22 +0000 | [diff] [blame] | 243 | OS = &errs(); |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | foundErrors = 0; |
| 247 | |
| 248 | this->MF = &MF; |
| 249 | TM = &MF.getTarget(); |
| 250 | TRI = TM->getRegisterInfo(); |
| 251 | MRI = &MF.getRegInfo(); |
| 252 | |
Jakob Stoklund Olesen | c910c8d | 2010-08-05 23:51:26 +0000 | [diff] [blame] | 253 | LiveVars = NULL; |
| 254 | LiveInts = NULL; |
Jakob Stoklund Olesen | e8f0823 | 2010-11-01 19:49:52 +0000 | [diff] [blame] | 255 | LiveStks = NULL; |
Jakob Stoklund Olesen | f4a1e1a | 2010-10-26 20:21:46 +0000 | [diff] [blame] | 256 | Indexes = NULL; |
Jakob Stoklund Olesen | 8f16e02 | 2009-11-18 20:36:57 +0000 | [diff] [blame] | 257 | if (PASS) { |
Jakob Stoklund Olesen | 1fe9c34 | 2010-08-05 22:32:21 +0000 | [diff] [blame] | 258 | LiveInts = PASS->getAnalysisIfAvailable<LiveIntervals>(); |
Jakob Stoklund Olesen | c910c8d | 2010-08-05 23:51:26 +0000 | [diff] [blame] | 259 | // We don't want to verify LiveVariables if LiveIntervals is available. |
| 260 | if (!LiveInts) |
| 261 | LiveVars = PASS->getAnalysisIfAvailable<LiveVariables>(); |
Jakob Stoklund Olesen | e8f0823 | 2010-11-01 19:49:52 +0000 | [diff] [blame] | 262 | LiveStks = PASS->getAnalysisIfAvailable<LiveStacks>(); |
Jakob Stoklund Olesen | f4a1e1a | 2010-10-26 20:21:46 +0000 | [diff] [blame] | 263 | Indexes = PASS->getAnalysisIfAvailable<SlotIndexes>(); |
Jakob Stoklund Olesen | 8f16e02 | 2009-11-18 20:36:57 +0000 | [diff] [blame] | 264 | } |
| 265 | |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 266 | visitMachineFunctionBefore(); |
| 267 | for (MachineFunction::const_iterator MFI = MF.begin(), MFE = MF.end(); |
| 268 | MFI!=MFE; ++MFI) { |
| 269 | visitMachineBasicBlockBefore(MFI); |
| 270 | for (MachineBasicBlock::const_iterator MBBI = MFI->begin(), |
| 271 | MBBE = MFI->end(); MBBI != MBBE; ++MBBI) { |
| 272 | visitMachineInstrBefore(MBBI); |
| 273 | for (unsigned I = 0, E = MBBI->getNumOperands(); I != E; ++I) |
| 274 | visitMachineOperand(&MBBI->getOperand(I), I); |
| 275 | visitMachineInstrAfter(MBBI); |
| 276 | } |
| 277 | visitMachineBasicBlockAfter(MFI); |
| 278 | } |
| 279 | visitMachineFunctionAfter(); |
| 280 | |
Chris Lattner | 17e9edc | 2009-08-23 02:51:22 +0000 | [diff] [blame] | 281 | if (OutFile) |
| 282 | delete OutFile; |
| 283 | else if (foundErrors) |
Chris Lattner | 75361b6 | 2010-04-07 22:58:41 +0000 | [diff] [blame] | 284 | report_fatal_error("Found "+Twine(foundErrors)+" machine code errors."); |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 285 | |
Jakob Stoklund Olesen | 6349668 | 2009-08-08 15:34:50 +0000 | [diff] [blame] | 286 | // Clean up. |
| 287 | regsLive.clear(); |
| 288 | regsDefined.clear(); |
| 289 | regsDead.clear(); |
| 290 | regsKilled.clear(); |
| 291 | regsLiveInButUnused.clear(); |
| 292 | MBBInfoMap.clear(); |
| 293 | |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 294 | return false; // no changes |
| 295 | } |
| 296 | |
Chris Lattner | 372fefe | 2009-08-23 01:03:30 +0000 | [diff] [blame] | 297 | void MachineVerifier::report(const char *msg, const MachineFunction *MF) { |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 298 | assert(MF); |
Chris Lattner | 17e9edc | 2009-08-23 02:51:22 +0000 | [diff] [blame] | 299 | *OS << '\n'; |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 300 | if (!foundErrors++) |
Jakob Stoklund Olesen | f4a1e1a | 2010-10-26 20:21:46 +0000 | [diff] [blame] | 301 | MF->print(*OS, Indexes); |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 302 | *OS << "*** Bad machine code: " << msg << " ***\n" |
Daniel Dunbar | ce63ffb | 2009-07-25 00:23:56 +0000 | [diff] [blame] | 303 | << "- function: " << MF->getFunction()->getNameStr() << "\n"; |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 304 | } |
| 305 | |
Jakob Stoklund Olesen | b44fad7 | 2009-10-04 18:18:39 +0000 | [diff] [blame] | 306 | void MachineVerifier::report(const char *msg, const MachineBasicBlock *MBB) { |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 307 | assert(MBB); |
| 308 | report(msg, MBB->getParent()); |
Jakob Stoklund Olesen | 324da76 | 2009-11-20 01:17:03 +0000 | [diff] [blame] | 309 | *OS << "- basic block: " << MBB->getName() |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 310 | << " " << (void*)MBB |
Jakob Stoklund Olesen | f4a1e1a | 2010-10-26 20:21:46 +0000 | [diff] [blame] | 311 | << " (BB#" << MBB->getNumber() << ")"; |
| 312 | if (Indexes) |
| 313 | *OS << " [" << Indexes->getMBBStartIdx(MBB) |
| 314 | << ';' << Indexes->getMBBEndIdx(MBB) << ')'; |
| 315 | *OS << '\n'; |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 316 | } |
| 317 | |
Jakob Stoklund Olesen | b44fad7 | 2009-10-04 18:18:39 +0000 | [diff] [blame] | 318 | void MachineVerifier::report(const char *msg, const MachineInstr *MI) { |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 319 | assert(MI); |
| 320 | report(msg, MI->getParent()); |
| 321 | *OS << "- instruction: "; |
Jakob Stoklund Olesen | f4a1e1a | 2010-10-26 20:21:46 +0000 | [diff] [blame] | 322 | if (Indexes && Indexes->hasIndex(MI)) |
| 323 | *OS << Indexes->getInstructionIndex(MI) << '\t'; |
Chris Lattner | 705e07f | 2009-08-23 03:41:05 +0000 | [diff] [blame] | 324 | MI->print(*OS, TM); |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 325 | } |
| 326 | |
Jakob Stoklund Olesen | b44fad7 | 2009-10-04 18:18:39 +0000 | [diff] [blame] | 327 | void MachineVerifier::report(const char *msg, |
| 328 | const MachineOperand *MO, unsigned MONum) { |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 329 | assert(MO); |
| 330 | report(msg, MO->getParent()); |
| 331 | *OS << "- operand " << MONum << ": "; |
| 332 | MO->print(*OS, TM); |
| 333 | *OS << "\n"; |
| 334 | } |
| 335 | |
Jakob Stoklund Olesen | b44fad7 | 2009-10-04 18:18:39 +0000 | [diff] [blame] | 336 | void MachineVerifier::markReachable(const MachineBasicBlock *MBB) { |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 337 | BBInfo &MInfo = MBBInfoMap[MBB]; |
| 338 | if (!MInfo.reachable) { |
| 339 | MInfo.reachable = true; |
| 340 | for (MachineBasicBlock::const_succ_iterator SuI = MBB->succ_begin(), |
| 341 | SuE = MBB->succ_end(); SuI != SuE; ++SuI) |
| 342 | markReachable(*SuI); |
| 343 | } |
| 344 | } |
| 345 | |
Jakob Stoklund Olesen | b44fad7 | 2009-10-04 18:18:39 +0000 | [diff] [blame] | 346 | void MachineVerifier::visitMachineFunctionBefore() { |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 347 | regsReserved = TRI->getReservedRegs(*MF); |
Jakob Stoklund Olesen | d37bc5a | 2009-08-04 19:18:01 +0000 | [diff] [blame] | 348 | |
| 349 | // A sub-register of a reserved register is also reserved |
| 350 | for (int Reg = regsReserved.find_first(); Reg>=0; |
| 351 | Reg = regsReserved.find_next(Reg)) { |
| 352 | for (const unsigned *Sub = TRI->getSubRegisters(Reg); *Sub; ++Sub) { |
| 353 | // FIXME: This should probably be: |
| 354 | // assert(regsReserved.test(*Sub) && "Non-reserved sub-register"); |
| 355 | regsReserved.set(*Sub); |
| 356 | } |
| 357 | } |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 358 | markReachable(&MF->front()); |
| 359 | } |
| 360 | |
Jakob Stoklund Olesen | 1dc0fcb | 2009-11-13 21:55:54 +0000 | [diff] [blame] | 361 | // Does iterator point to a and b as the first two elements? |
Dan Gohman | b357983 | 2010-04-15 17:08:50 +0000 | [diff] [blame] | 362 | static bool matchPair(MachineBasicBlock::const_succ_iterator i, |
| 363 | const MachineBasicBlock *a, const MachineBasicBlock *b) { |
Jakob Stoklund Olesen | 1dc0fcb | 2009-11-13 21:55:54 +0000 | [diff] [blame] | 364 | if (*i == a) |
| 365 | return *++i == b; |
| 366 | if (*i == b) |
| 367 | return *++i == a; |
| 368 | return false; |
| 369 | } |
| 370 | |
| 371 | void |
| 372 | MachineVerifier::visitMachineBasicBlockBefore(const MachineBasicBlock *MBB) { |
Dan Gohman | 2792059 | 2009-08-27 02:43:49 +0000 | [diff] [blame] | 373 | const TargetInstrInfo *TII = MF->getTarget().getInstrInfo(); |
| 374 | |
Jakob Stoklund Olesen | 0a7bbcb | 2010-10-21 18:47:06 +0000 | [diff] [blame] | 375 | // Count the number of landing pad successors. |
| 376 | unsigned LandingPadSuccs = 0; |
| 377 | for (MachineBasicBlock::const_succ_iterator I = MBB->succ_begin(), |
| 378 | E = MBB->succ_end(); I != E; ++I) |
| 379 | LandingPadSuccs += (*I)->isLandingPad(); |
| 380 | if (LandingPadSuccs > 1) |
| 381 | report("MBB has more than one landing pad successor", MBB); |
| 382 | |
Dan Gohman | 2792059 | 2009-08-27 02:43:49 +0000 | [diff] [blame] | 383 | // Call AnalyzeBranch. If it succeeds, there several more conditions to check. |
| 384 | MachineBasicBlock *TBB = 0, *FBB = 0; |
| 385 | SmallVector<MachineOperand, 4> Cond; |
| 386 | if (!TII->AnalyzeBranch(*const_cast<MachineBasicBlock *>(MBB), |
| 387 | TBB, FBB, Cond)) { |
| 388 | // Ok, AnalyzeBranch thinks it knows what's going on with this block. Let's |
| 389 | // check whether its answers match up with reality. |
| 390 | if (!TBB && !FBB) { |
| 391 | // Block falls through to its successor. |
| 392 | MachineFunction::const_iterator MBBI = MBB; |
| 393 | ++MBBI; |
| 394 | if (MBBI == MF->end()) { |
Dan Gohman | a01a80f | 2009-08-27 18:14:26 +0000 | [diff] [blame] | 395 | // It's possible that the block legitimately ends with a noreturn |
| 396 | // call or an unreachable, in which case it won't actually fall |
| 397 | // out the bottom of the function. |
Jakob Stoklund Olesen | 0a7bbcb | 2010-10-21 18:47:06 +0000 | [diff] [blame] | 398 | } else if (MBB->succ_size() == LandingPadSuccs) { |
Dan Gohman | a01a80f | 2009-08-27 18:14:26 +0000 | [diff] [blame] | 399 | // It's possible that the block legitimately ends with a noreturn |
| 400 | // call or an unreachable, in which case it won't actuall fall |
| 401 | // out of the block. |
Jakob Stoklund Olesen | 0a7bbcb | 2010-10-21 18:47:06 +0000 | [diff] [blame] | 402 | } else if (MBB->succ_size() != 1+LandingPadSuccs) { |
Dan Gohman | 2792059 | 2009-08-27 02:43:49 +0000 | [diff] [blame] | 403 | report("MBB exits via unconditional fall-through but doesn't have " |
| 404 | "exactly one CFG successor!", MBB); |
Jakob Stoklund Olesen | 0a7bbcb | 2010-10-21 18:47:06 +0000 | [diff] [blame] | 405 | } else if (!MBB->isSuccessor(MBBI)) { |
Dan Gohman | 2792059 | 2009-08-27 02:43:49 +0000 | [diff] [blame] | 406 | report("MBB exits via unconditional fall-through but its successor " |
| 407 | "differs from its CFG successor!", MBB); |
| 408 | } |
Evan Cheng | 86050dc | 2010-06-18 23:09:54 +0000 | [diff] [blame] | 409 | if (!MBB->empty() && MBB->back().getDesc().isBarrier() && |
| 410 | !TII->isPredicated(&MBB->back())) { |
Dan Gohman | 2792059 | 2009-08-27 02:43:49 +0000 | [diff] [blame] | 411 | report("MBB exits via unconditional fall-through but ends with a " |
| 412 | "barrier instruction!", MBB); |
| 413 | } |
| 414 | if (!Cond.empty()) { |
| 415 | report("MBB exits via unconditional fall-through but has a condition!", |
| 416 | MBB); |
| 417 | } |
| 418 | } else if (TBB && !FBB && Cond.empty()) { |
| 419 | // Block unconditionally branches somewhere. |
Jakob Stoklund Olesen | 0a7bbcb | 2010-10-21 18:47:06 +0000 | [diff] [blame] | 420 | if (MBB->succ_size() != 1+LandingPadSuccs) { |
Dan Gohman | 2792059 | 2009-08-27 02:43:49 +0000 | [diff] [blame] | 421 | report("MBB exits via unconditional branch but doesn't have " |
| 422 | "exactly one CFG successor!", MBB); |
Jakob Stoklund Olesen | 0a7bbcb | 2010-10-21 18:47:06 +0000 | [diff] [blame] | 423 | } else if (!MBB->isSuccessor(TBB)) { |
Dan Gohman | 2792059 | 2009-08-27 02:43:49 +0000 | [diff] [blame] | 424 | report("MBB exits via unconditional branch but the CFG " |
| 425 | "successor doesn't match the actual successor!", MBB); |
| 426 | } |
| 427 | if (MBB->empty()) { |
| 428 | report("MBB exits via unconditional branch but doesn't contain " |
| 429 | "any instructions!", MBB); |
| 430 | } else if (!MBB->back().getDesc().isBarrier()) { |
| 431 | report("MBB exits via unconditional branch but doesn't end with a " |
| 432 | "barrier instruction!", MBB); |
| 433 | } else if (!MBB->back().getDesc().isTerminator()) { |
| 434 | report("MBB exits via unconditional branch but the branch isn't a " |
| 435 | "terminator instruction!", MBB); |
| 436 | } |
| 437 | } else if (TBB && !FBB && !Cond.empty()) { |
| 438 | // Block conditionally branches somewhere, otherwise falls through. |
| 439 | MachineFunction::const_iterator MBBI = MBB; |
| 440 | ++MBBI; |
| 441 | if (MBBI == MF->end()) { |
| 442 | report("MBB conditionally falls through out of function!", MBB); |
| 443 | } if (MBB->succ_size() != 2) { |
| 444 | report("MBB exits via conditional branch/fall-through but doesn't have " |
| 445 | "exactly two CFG successors!", MBB); |
Jakob Stoklund Olesen | 1dc0fcb | 2009-11-13 21:55:54 +0000 | [diff] [blame] | 446 | } else if (!matchPair(MBB->succ_begin(), TBB, MBBI)) { |
Dan Gohman | 2792059 | 2009-08-27 02:43:49 +0000 | [diff] [blame] | 447 | report("MBB exits via conditional branch/fall-through but the CFG " |
| 448 | "successors don't match the actual successors!", MBB); |
| 449 | } |
| 450 | if (MBB->empty()) { |
| 451 | report("MBB exits via conditional branch/fall-through but doesn't " |
| 452 | "contain any instructions!", MBB); |
| 453 | } else if (MBB->back().getDesc().isBarrier()) { |
| 454 | report("MBB exits via conditional branch/fall-through but ends with a " |
| 455 | "barrier instruction!", MBB); |
| 456 | } else if (!MBB->back().getDesc().isTerminator()) { |
| 457 | report("MBB exits via conditional branch/fall-through but the branch " |
| 458 | "isn't a terminator instruction!", MBB); |
| 459 | } |
| 460 | } else if (TBB && FBB) { |
| 461 | // Block conditionally branches somewhere, otherwise branches |
| 462 | // somewhere else. |
| 463 | if (MBB->succ_size() != 2) { |
| 464 | report("MBB exits via conditional branch/branch but doesn't have " |
| 465 | "exactly two CFG successors!", MBB); |
Jakob Stoklund Olesen | 1dc0fcb | 2009-11-13 21:55:54 +0000 | [diff] [blame] | 466 | } else if (!matchPair(MBB->succ_begin(), TBB, FBB)) { |
Dan Gohman | 2792059 | 2009-08-27 02:43:49 +0000 | [diff] [blame] | 467 | report("MBB exits via conditional branch/branch but the CFG " |
| 468 | "successors don't match the actual successors!", MBB); |
| 469 | } |
| 470 | if (MBB->empty()) { |
| 471 | report("MBB exits via conditional branch/branch but doesn't " |
| 472 | "contain any instructions!", MBB); |
| 473 | } else if (!MBB->back().getDesc().isBarrier()) { |
| 474 | report("MBB exits via conditional branch/branch but doesn't end with a " |
| 475 | "barrier instruction!", MBB); |
| 476 | } else if (!MBB->back().getDesc().isTerminator()) { |
| 477 | report("MBB exits via conditional branch/branch but the branch " |
| 478 | "isn't a terminator instruction!", MBB); |
| 479 | } |
| 480 | if (Cond.empty()) { |
| 481 | report("MBB exits via conditinal branch/branch but there's no " |
| 482 | "condition!", MBB); |
| 483 | } |
| 484 | } else { |
| 485 | report("AnalyzeBranch returned invalid data!", MBB); |
| 486 | } |
| 487 | } |
| 488 | |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 489 | regsLive.clear(); |
Dan Gohman | 81bf03e | 2010-04-13 16:57:55 +0000 | [diff] [blame] | 490 | for (MachineBasicBlock::livein_iterator I = MBB->livein_begin(), |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 491 | E = MBB->livein_end(); I != E; ++I) { |
| 492 | if (!TargetRegisterInfo::isPhysicalRegister(*I)) { |
| 493 | report("MBB live-in list contains non-physical register", MBB); |
| 494 | continue; |
| 495 | } |
| 496 | regsLive.insert(*I); |
| 497 | for (const unsigned *R = TRI->getSubRegisters(*I); *R; R++) |
| 498 | regsLive.insert(*R); |
| 499 | } |
Jakob Stoklund Olesen | 710b13b | 2009-08-08 13:19:25 +0000 | [diff] [blame] | 500 | regsLiveInButUnused = regsLive; |
Jakob Stoklund Olesen | a6b677d | 2009-08-13 16:19:51 +0000 | [diff] [blame] | 501 | |
| 502 | const MachineFrameInfo *MFI = MF->getFrameInfo(); |
| 503 | assert(MFI && "Function has no frame info"); |
| 504 | BitVector PR = MFI->getPristineRegs(MBB); |
| 505 | for (int I = PR.find_first(); I>0; I = PR.find_next(I)) { |
| 506 | regsLive.insert(I); |
| 507 | for (const unsigned *R = TRI->getSubRegisters(I); *R; R++) |
| 508 | regsLive.insert(*R); |
| 509 | } |
| 510 | |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 511 | regsKilled.clear(); |
| 512 | regsDefined.clear(); |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 513 | } |
| 514 | |
Jakob Stoklund Olesen | b44fad7 | 2009-10-04 18:18:39 +0000 | [diff] [blame] | 515 | void MachineVerifier::visitMachineInstrBefore(const MachineInstr *MI) { |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 516 | const TargetInstrDesc &TI = MI->getDesc(); |
Jakob Stoklund Olesen | 39523e2 | 2009-09-23 20:57:55 +0000 | [diff] [blame] | 517 | if (MI->getNumOperands() < TI.getNumOperands()) { |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 518 | report("Too few operands", MI); |
| 519 | *OS << TI.getNumOperands() << " operands expected, but " |
| 520 | << MI->getNumExplicitOperands() << " given.\n"; |
| 521 | } |
Dan Gohman | 2dbc4c8 | 2009-10-07 17:36:00 +0000 | [diff] [blame] | 522 | |
| 523 | // Check the MachineMemOperands for basic consistency. |
| 524 | for (MachineInstr::mmo_iterator I = MI->memoperands_begin(), |
| 525 | E = MI->memoperands_end(); I != E; ++I) { |
| 526 | if ((*I)->isLoad() && !TI.mayLoad()) |
| 527 | report("Missing mayLoad flag", MI); |
| 528 | if ((*I)->isStore() && !TI.mayStore()) |
| 529 | report("Missing mayStore flag", MI); |
| 530 | } |
Jakob Stoklund Olesen | 1fe9c34 | 2010-08-05 22:32:21 +0000 | [diff] [blame] | 531 | |
| 532 | // Debug values must not have a slot index. |
| 533 | // Other instructions must have one. |
| 534 | if (LiveInts) { |
| 535 | bool mapped = !LiveInts->isNotInMIMap(MI); |
| 536 | if (MI->isDebugValue()) { |
| 537 | if (mapped) |
| 538 | report("Debug instruction has a slot index", MI); |
| 539 | } else { |
| 540 | if (!mapped) |
| 541 | report("Missing slot index", MI); |
| 542 | } |
| 543 | } |
| 544 | |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 545 | } |
| 546 | |
| 547 | void |
Jakob Stoklund Olesen | b44fad7 | 2009-10-04 18:18:39 +0000 | [diff] [blame] | 548 | MachineVerifier::visitMachineOperand(const MachineOperand *MO, unsigned MONum) { |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 549 | const MachineInstr *MI = MO->getParent(); |
Jakob Stoklund Olesen | 44b27e5 | 2009-05-16 07:25:20 +0000 | [diff] [blame] | 550 | const TargetInstrDesc &TI = MI->getDesc(); |
| 551 | |
| 552 | // The first TI.NumDefs operands must be explicit register defines |
| 553 | if (MONum < TI.getNumDefs()) { |
| 554 | if (!MO->isReg()) |
| 555 | report("Explicit definition must be a register", MO, MONum); |
| 556 | else if (!MO->isDef()) |
| 557 | report("Explicit definition marked as use", MO, MONum); |
| 558 | else if (MO->isImplicit()) |
| 559 | report("Explicit definition marked as implicit", MO, MONum); |
Jakob Stoklund Olesen | 39523e2 | 2009-09-23 20:57:55 +0000 | [diff] [blame] | 560 | } else if (MONum < TI.getNumOperands()) { |
| 561 | if (MO->isReg()) { |
| 562 | if (MO->isDef()) |
| 563 | report("Explicit operand marked as def", MO, MONum); |
| 564 | if (MO->isImplicit()) |
| 565 | report("Explicit operand marked as implicit", MO, MONum); |
| 566 | } |
| 567 | } else { |
Jakob Stoklund Olesen | 5711564 | 2009-12-22 21:48:20 +0000 | [diff] [blame] | 568 | // ARM adds %reg0 operands to indicate predicates. We'll allow that. |
| 569 | if (MO->isReg() && !MO->isImplicit() && !TI.isVariadic() && MO->getReg()) |
Jakob Stoklund Olesen | 39523e2 | 2009-09-23 20:57:55 +0000 | [diff] [blame] | 570 | report("Extra explicit operand on non-variadic instruction", MO, MONum); |
Jakob Stoklund Olesen | 44b27e5 | 2009-05-16 07:25:20 +0000 | [diff] [blame] | 571 | } |
| 572 | |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 573 | switch (MO->getType()) { |
| 574 | case MachineOperand::MO_Register: { |
| 575 | const unsigned Reg = MO->getReg(); |
| 576 | if (!Reg) |
| 577 | return; |
| 578 | |
| 579 | // Check Live Variables. |
Jakob Stoklund Olesen | 710b13b | 2009-08-08 13:19:25 +0000 | [diff] [blame] | 580 | if (MO->isUndef()) { |
| 581 | // An <undef> doesn't refer to any register, so just skip it. |
| 582 | } else if (MO->isUse()) { |
| 583 | regsLiveInButUnused.erase(Reg); |
| 584 | |
Jakob Stoklund Olesen | 8f16e02 | 2009-11-18 20:36:57 +0000 | [diff] [blame] | 585 | bool isKill = false; |
Jakob Stoklund Olesen | 1b2c761 | 2010-05-14 20:28:32 +0000 | [diff] [blame] | 586 | unsigned defIdx; |
| 587 | if (MI->isRegTiedToDefOperand(MONum, &defIdx)) { |
| 588 | // A two-addr use counts as a kill if use and def are the same. |
| 589 | unsigned DefReg = MI->getOperand(defIdx).getReg(); |
| 590 | if (Reg == DefReg) { |
| 591 | isKill = true; |
Jakob Stoklund Olesen | 1c163d2 | 2010-11-01 21:51:31 +0000 | [diff] [blame^] | 592 | // And in that case an explicit kill flag is not allowed. |
Jakob Stoklund Olesen | 1b2c761 | 2010-05-14 20:28:32 +0000 | [diff] [blame] | 593 | if (MO->isKill()) |
Jakob Stoklund Olesen | f7d3e69 | 2009-07-15 23:37:26 +0000 | [diff] [blame] | 594 | report("Illegal kill flag on two-address instruction operand", |
| 595 | MO, MONum); |
Jakob Stoklund Olesen | 1b2c761 | 2010-05-14 20:28:32 +0000 | [diff] [blame] | 596 | } else if (TargetRegisterInfo::isPhysicalRegister(Reg)) { |
| 597 | report("Two-address instruction operands must be identical", |
| 598 | MO, MONum); |
| 599 | } |
| 600 | } else |
| 601 | isKill = MO->isKill(); |
| 602 | |
Jakob Stoklund Olesen | c910c8d | 2010-08-05 23:51:26 +0000 | [diff] [blame] | 603 | if (isKill) |
Jakob Stoklund Olesen | 8f16e02 | 2009-11-18 20:36:57 +0000 | [diff] [blame] | 604 | addRegWithSubRegs(regsKilled, Reg); |
| 605 | |
Jakob Stoklund Olesen | c910c8d | 2010-08-05 23:51:26 +0000 | [diff] [blame] | 606 | // Check that LiveVars knows this kill. |
| 607 | if (LiveVars && TargetRegisterInfo::isVirtualRegister(Reg) && |
| 608 | MO->isKill()) { |
| 609 | LiveVariables::VarInfo &VI = LiveVars->getVarInfo(Reg); |
| 610 | if (std::find(VI.Kills.begin(), |
| 611 | VI.Kills.end(), MI) == VI.Kills.end()) |
| 612 | report("Kill missing from LiveVariables", MO, MONum); |
Jakob Stoklund Olesen | 8f16e02 | 2009-11-18 20:36:57 +0000 | [diff] [blame] | 613 | } |
| 614 | |
Jakob Stoklund Olesen | 1fe9c34 | 2010-08-05 22:32:21 +0000 | [diff] [blame] | 615 | // Check LiveInts liveness and kill. |
Jakob Stoklund Olesen | ab56647 | 2010-10-30 01:26:11 +0000 | [diff] [blame] | 616 | if (TargetRegisterInfo::isVirtualRegister(Reg) && |
| 617 | LiveInts && !LiveInts->isNotInMIMap(MI)) { |
Jakob Stoklund Olesen | 1fe9c34 | 2010-08-05 22:32:21 +0000 | [diff] [blame] | 618 | SlotIndex UseIdx = LiveInts->getInstructionIndex(MI).getUseIndex(); |
| 619 | if (LiveInts->hasInterval(Reg)) { |
| 620 | const LiveInterval &LI = LiveInts->getInterval(Reg); |
| 621 | if (!LI.liveAt(UseIdx)) { |
| 622 | report("No live range at use", MO, MONum); |
| 623 | *OS << UseIdx << " is not live in " << LI << '\n'; |
| 624 | } |
Jakob Stoklund Olesen | 1c163d2 | 2010-11-01 21:51:31 +0000 | [diff] [blame^] | 625 | // Verify isKill == LI.killedAt. |
| 626 | if (!MI->isRegTiedToDefOperand(MONum)) { |
| 627 | bool liKill = LI.killedAt(UseIdx.getDefIndex()); |
| 628 | if (isKill && !liKill) { |
| 629 | report("Live range continues after kill flag", MO, MONum); |
| 630 | *OS << "Live range: " << LI << '\n'; |
| 631 | } |
| 632 | if (!isKill && liKill) { |
| 633 | report("Live range ends without kill flag", MO, MONum); |
| 634 | *OS << "Live range: " << LI << '\n'; |
| 635 | } |
| 636 | } |
Jakob Stoklund Olesen | ab56647 | 2010-10-30 01:26:11 +0000 | [diff] [blame] | 637 | } else { |
Jakob Stoklund Olesen | 1fe9c34 | 2010-08-05 22:32:21 +0000 | [diff] [blame] | 638 | report("Virtual register has no Live interval", MO, MONum); |
| 639 | } |
| 640 | } |
| 641 | |
Jakob Stoklund Olesen | 710b13b | 2009-08-08 13:19:25 +0000 | [diff] [blame] | 642 | // Use of a dead register. |
| 643 | if (!regsLive.count(Reg)) { |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 644 | if (TargetRegisterInfo::isPhysicalRegister(Reg)) { |
| 645 | // Reserved registers may be used even when 'dead'. |
| 646 | if (!isReserved(Reg)) |
| 647 | report("Using an undefined physical register", MO, MONum); |
| 648 | } else { |
| 649 | BBInfo &MInfo = MBBInfoMap[MI->getParent()]; |
| 650 | // We don't know which virtual registers are live in, so only complain |
| 651 | // if vreg was killed in this MBB. Otherwise keep track of vregs that |
| 652 | // must be live in. PHI instructions are handled separately. |
| 653 | if (MInfo.regsKilled.count(Reg)) |
| 654 | report("Using a killed virtual register", MO, MONum); |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 655 | else if (!MI->isPHI()) |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 656 | MInfo.vregsLiveIn.insert(std::make_pair(Reg, MI)); |
| 657 | } |
Duncan Sands | e556720 | 2009-05-16 03:28:54 +0000 | [diff] [blame] | 658 | } |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 659 | } else { |
Jakob Stoklund Olesen | 710b13b | 2009-08-08 13:19:25 +0000 | [diff] [blame] | 660 | assert(MO->isDef()); |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 661 | // Register defined. |
| 662 | // TODO: verify that earlyclobber ops are not used. |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 663 | if (MO->isDead()) |
| 664 | addRegWithSubRegs(regsDead, Reg); |
Jakob Stoklund Olesen | 710b13b | 2009-08-08 13:19:25 +0000 | [diff] [blame] | 665 | else |
| 666 | addRegWithSubRegs(regsDefined, Reg); |
Jakob Stoklund Olesen | 1fe9c34 | 2010-08-05 22:32:21 +0000 | [diff] [blame] | 667 | |
Jakob Stoklund Olesen | 775aa22 | 2010-08-06 18:04:14 +0000 | [diff] [blame] | 668 | // Check LiveInts for a live range, but only for virtual registers. |
| 669 | if (LiveInts && TargetRegisterInfo::isVirtualRegister(Reg) && |
| 670 | !LiveInts->isNotInMIMap(MI)) { |
Jakob Stoklund Olesen | 1fe9c34 | 2010-08-05 22:32:21 +0000 | [diff] [blame] | 671 | SlotIndex DefIdx = LiveInts->getInstructionIndex(MI).getDefIndex(); |
| 672 | if (LiveInts->hasInterval(Reg)) { |
| 673 | const LiveInterval &LI = LiveInts->getInterval(Reg); |
Jakob Stoklund Olesen | ed82635 | 2010-10-02 05:24:46 +0000 | [diff] [blame] | 674 | if (const VNInfo *VNI = LI.getVNInfoAt(DefIdx)) { |
| 675 | assert(VNI && "NULL valno is not allowed"); |
| 676 | if (VNI->def != DefIdx) { |
Jakob Stoklund Olesen | 1fe9c34 | 2010-08-05 22:32:21 +0000 | [diff] [blame] | 677 | report("Inconsistent valno->def", MO, MONum); |
Jakob Stoklund Olesen | ed82635 | 2010-10-02 05:24:46 +0000 | [diff] [blame] | 678 | *OS << "Valno " << VNI->id << " is not defined at " |
Jakob Stoklund Olesen | 1fe9c34 | 2010-08-05 22:32:21 +0000 | [diff] [blame] | 679 | << DefIdx << " in " << LI << '\n'; |
| 680 | } |
Jakob Stoklund Olesen | 1fe9c34 | 2010-08-05 22:32:21 +0000 | [diff] [blame] | 681 | } else { |
| 682 | report("No live range at def", MO, MONum); |
| 683 | *OS << DefIdx << " is not live in " << LI << '\n'; |
| 684 | } |
Jakob Stoklund Olesen | 775aa22 | 2010-08-06 18:04:14 +0000 | [diff] [blame] | 685 | } else { |
Jakob Stoklund Olesen | 1fe9c34 | 2010-08-05 22:32:21 +0000 | [diff] [blame] | 686 | report("Virtual register has no Live interval", MO, MONum); |
| 687 | } |
| 688 | } |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 689 | } |
| 690 | |
| 691 | // Check register classes. |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 692 | if (MONum < TI.getNumOperands() && !MO->isImplicit()) { |
| 693 | const TargetOperandInfo &TOI = TI.OpInfo[MONum]; |
| 694 | unsigned SubIdx = MO->getSubReg(); |
| 695 | |
| 696 | if (TargetRegisterInfo::isPhysicalRegister(Reg)) { |
| 697 | unsigned sr = Reg; |
| 698 | if (SubIdx) { |
| 699 | unsigned s = TRI->getSubReg(Reg, SubIdx); |
| 700 | if (!s) { |
| 701 | report("Invalid subregister index for physical register", |
| 702 | MO, MONum); |
| 703 | return; |
| 704 | } |
| 705 | sr = s; |
| 706 | } |
Chris Lattner | cb778a8 | 2009-07-29 21:10:12 +0000 | [diff] [blame] | 707 | if (const TargetRegisterClass *DRC = TOI.getRegClass(TRI)) { |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 708 | if (!DRC->contains(sr)) { |
| 709 | report("Illegal physical register for instruction", MO, MONum); |
| 710 | *OS << TRI->getName(sr) << " is not a " |
| 711 | << DRC->getName() << " register.\n"; |
| 712 | } |
| 713 | } |
| 714 | } else { |
| 715 | // Virtual register. |
| 716 | const TargetRegisterClass *RC = MRI->getRegClass(Reg); |
| 717 | if (SubIdx) { |
Jakob Stoklund Olesen | 6a8d2c6 | 2010-05-18 17:31:12 +0000 | [diff] [blame] | 718 | const TargetRegisterClass *SRC = RC->getSubRegisterRegClass(SubIdx); |
| 719 | if (!SRC) { |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 720 | report("Invalid subregister index for virtual register", MO, MONum); |
Jakob Stoklund Olesen | 6a8d2c6 | 2010-05-18 17:31:12 +0000 | [diff] [blame] | 721 | *OS << "Register class " << RC->getName() |
| 722 | << " does not support subreg index " << SubIdx << "\n"; |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 723 | return; |
| 724 | } |
Jakob Stoklund Olesen | 6a8d2c6 | 2010-05-18 17:31:12 +0000 | [diff] [blame] | 725 | RC = SRC; |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 726 | } |
Chris Lattner | cb778a8 | 2009-07-29 21:10:12 +0000 | [diff] [blame] | 727 | if (const TargetRegisterClass *DRC = TOI.getRegClass(TRI)) { |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 728 | if (RC != DRC && !RC->hasSuperClass(DRC)) { |
| 729 | report("Illegal virtual register for instruction", MO, MONum); |
| 730 | *OS << "Expected a " << DRC->getName() << " register, but got a " |
| 731 | << RC->getName() << " register\n"; |
| 732 | } |
| 733 | } |
| 734 | } |
| 735 | } |
| 736 | break; |
| 737 | } |
Jakob Stoklund Olesen | a5ba07c | 2009-09-21 07:19:08 +0000 | [diff] [blame] | 738 | |
| 739 | case MachineOperand::MO_MachineBasicBlock: |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 740 | if (MI->isPHI() && !MO->getMBB()->isSuccessor(MI->getParent())) |
| 741 | report("PHI operand is not in the CFG", MO, MONum); |
Jakob Stoklund Olesen | a5ba07c | 2009-09-21 07:19:08 +0000 | [diff] [blame] | 742 | break; |
| 743 | |
Jakob Stoklund Olesen | e8f0823 | 2010-11-01 19:49:52 +0000 | [diff] [blame] | 744 | case MachineOperand::MO_FrameIndex: |
| 745 | if (LiveStks && LiveStks->hasInterval(MO->getIndex()) && |
| 746 | LiveInts && !LiveInts->isNotInMIMap(MI)) { |
| 747 | LiveInterval &LI = LiveStks->getInterval(MO->getIndex()); |
| 748 | SlotIndex Idx = LiveInts->getInstructionIndex(MI); |
| 749 | if (TI.mayLoad() && !LI.liveAt(Idx.getUseIndex())) { |
| 750 | report("Instruction loads from dead spill slot", MO, MONum); |
| 751 | *OS << "Live stack: " << LI << '\n'; |
| 752 | } |
| 753 | if (TI.mayStore() && !LI.liveAt(Idx.getDefIndex())) { |
| 754 | report("Instruction stores to dead spill slot", MO, MONum); |
| 755 | *OS << "Live stack: " << LI << '\n'; |
| 756 | } |
| 757 | } |
| 758 | break; |
| 759 | |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 760 | default: |
| 761 | break; |
| 762 | } |
| 763 | } |
| 764 | |
Jakob Stoklund Olesen | b44fad7 | 2009-10-04 18:18:39 +0000 | [diff] [blame] | 765 | void MachineVerifier::visitMachineInstrAfter(const MachineInstr *MI) { |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 766 | BBInfo &MInfo = MBBInfoMap[MI->getParent()]; |
| 767 | set_union(MInfo.regsKilled, regsKilled); |
Jakob Stoklund Olesen | 73cf709 | 2010-08-05 18:59:59 +0000 | [diff] [blame] | 768 | set_subtract(regsLive, regsKilled); regsKilled.clear(); |
| 769 | set_subtract(regsLive, regsDead); regsDead.clear(); |
| 770 | set_union(regsLive, regsDefined); regsDefined.clear(); |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 771 | } |
| 772 | |
| 773 | void |
Jakob Stoklund Olesen | b44fad7 | 2009-10-04 18:18:39 +0000 | [diff] [blame] | 774 | MachineVerifier::visitMachineBasicBlockAfter(const MachineBasicBlock *MBB) { |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 775 | MBBInfoMap[MBB].regsLiveOut = regsLive; |
| 776 | regsLive.clear(); |
| 777 | } |
| 778 | |
| 779 | // Calculate the largest possible vregsPassed sets. These are the registers that |
| 780 | // can pass through an MBB live, but may not be live every time. It is assumed |
| 781 | // that all vregsPassed sets are empty before the call. |
Jakob Stoklund Olesen | b31defe | 2010-01-05 20:59:36 +0000 | [diff] [blame] | 782 | void MachineVerifier::calcRegsPassed() { |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 783 | // First push live-out regs to successors' vregsPassed. Remember the MBBs that |
| 784 | // have any vregsPassed. |
| 785 | DenseSet<const MachineBasicBlock*> todo; |
| 786 | for (MachineFunction::const_iterator MFI = MF->begin(), MFE = MF->end(); |
| 787 | MFI != MFE; ++MFI) { |
| 788 | const MachineBasicBlock &MBB(*MFI); |
| 789 | BBInfo &MInfo = MBBInfoMap[&MBB]; |
| 790 | if (!MInfo.reachable) |
| 791 | continue; |
| 792 | for (MachineBasicBlock::const_succ_iterator SuI = MBB.succ_begin(), |
| 793 | SuE = MBB.succ_end(); SuI != SuE; ++SuI) { |
| 794 | BBInfo &SInfo = MBBInfoMap[*SuI]; |
| 795 | if (SInfo.addPassed(MInfo.regsLiveOut)) |
| 796 | todo.insert(*SuI); |
| 797 | } |
| 798 | } |
| 799 | |
| 800 | // Iteratively push vregsPassed to successors. This will converge to the same |
| 801 | // final state regardless of DenseSet iteration order. |
| 802 | while (!todo.empty()) { |
| 803 | const MachineBasicBlock *MBB = *todo.begin(); |
| 804 | todo.erase(MBB); |
| 805 | BBInfo &MInfo = MBBInfoMap[MBB]; |
| 806 | for (MachineBasicBlock::const_succ_iterator SuI = MBB->succ_begin(), |
| 807 | SuE = MBB->succ_end(); SuI != SuE; ++SuI) { |
| 808 | if (*SuI == MBB) |
| 809 | continue; |
| 810 | BBInfo &SInfo = MBBInfoMap[*SuI]; |
| 811 | if (SInfo.addPassed(MInfo.vregsPassed)) |
| 812 | todo.insert(*SuI); |
| 813 | } |
| 814 | } |
| 815 | } |
| 816 | |
Jakob Stoklund Olesen | 8f16e02 | 2009-11-18 20:36:57 +0000 | [diff] [blame] | 817 | // Calculate the set of virtual registers that must be passed through each basic |
| 818 | // block in order to satisfy the requirements of successor blocks. This is very |
Jakob Stoklund Olesen | b31defe | 2010-01-05 20:59:36 +0000 | [diff] [blame] | 819 | // similar to calcRegsPassed, only backwards. |
Jakob Stoklund Olesen | 8f16e02 | 2009-11-18 20:36:57 +0000 | [diff] [blame] | 820 | void MachineVerifier::calcRegsRequired() { |
| 821 | // First push live-in regs to predecessors' vregsRequired. |
| 822 | DenseSet<const MachineBasicBlock*> todo; |
| 823 | for (MachineFunction::const_iterator MFI = MF->begin(), MFE = MF->end(); |
| 824 | MFI != MFE; ++MFI) { |
| 825 | const MachineBasicBlock &MBB(*MFI); |
| 826 | BBInfo &MInfo = MBBInfoMap[&MBB]; |
| 827 | for (MachineBasicBlock::const_pred_iterator PrI = MBB.pred_begin(), |
| 828 | PrE = MBB.pred_end(); PrI != PrE; ++PrI) { |
| 829 | BBInfo &PInfo = MBBInfoMap[*PrI]; |
| 830 | if (PInfo.addRequired(MInfo.vregsLiveIn)) |
| 831 | todo.insert(*PrI); |
| 832 | } |
| 833 | } |
| 834 | |
| 835 | // Iteratively push vregsRequired to predecessors. This will converge to the |
| 836 | // same final state regardless of DenseSet iteration order. |
| 837 | while (!todo.empty()) { |
| 838 | const MachineBasicBlock *MBB = *todo.begin(); |
| 839 | todo.erase(MBB); |
| 840 | BBInfo &MInfo = MBBInfoMap[MBB]; |
| 841 | for (MachineBasicBlock::const_pred_iterator PrI = MBB->pred_begin(), |
| 842 | PrE = MBB->pred_end(); PrI != PrE; ++PrI) { |
| 843 | if (*PrI == MBB) |
| 844 | continue; |
| 845 | BBInfo &SInfo = MBBInfoMap[*PrI]; |
| 846 | if (SInfo.addRequired(MInfo.vregsRequired)) |
| 847 | todo.insert(*PrI); |
| 848 | } |
| 849 | } |
| 850 | } |
| 851 | |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 852 | // Check PHI instructions at the beginning of MBB. It is assumed that |
Jakob Stoklund Olesen | b31defe | 2010-01-05 20:59:36 +0000 | [diff] [blame] | 853 | // calcRegsPassed has been run so BBInfo::isLiveOut is valid. |
Jakob Stoklund Olesen | b44fad7 | 2009-10-04 18:18:39 +0000 | [diff] [blame] | 854 | void MachineVerifier::checkPHIOps(const MachineBasicBlock *MBB) { |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 855 | for (MachineBasicBlock::const_iterator BBI = MBB->begin(), BBE = MBB->end(); |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 856 | BBI != BBE && BBI->isPHI(); ++BBI) { |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 857 | DenseSet<const MachineBasicBlock*> seen; |
| 858 | |
| 859 | for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2) { |
| 860 | unsigned Reg = BBI->getOperand(i).getReg(); |
| 861 | const MachineBasicBlock *Pre = BBI->getOperand(i + 1).getMBB(); |
| 862 | if (!Pre->isSuccessor(MBB)) |
| 863 | continue; |
| 864 | seen.insert(Pre); |
| 865 | BBInfo &PrInfo = MBBInfoMap[Pre]; |
| 866 | if (PrInfo.reachable && !PrInfo.isLiveOut(Reg)) |
| 867 | report("PHI operand is not live-out from predecessor", |
| 868 | &BBI->getOperand(i), i); |
| 869 | } |
| 870 | |
| 871 | // Did we see all predecessors? |
| 872 | for (MachineBasicBlock::const_pred_iterator PrI = MBB->pred_begin(), |
| 873 | PrE = MBB->pred_end(); PrI != PrE; ++PrI) { |
| 874 | if (!seen.count(*PrI)) { |
| 875 | report("Missing PHI operand", BBI); |
Dan Gohman | 0ba90f3 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 876 | *OS << "BB#" << (*PrI)->getNumber() |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 877 | << " is a predecessor according to the CFG.\n"; |
| 878 | } |
| 879 | } |
| 880 | } |
| 881 | } |
| 882 | |
Jakob Stoklund Olesen | b44fad7 | 2009-10-04 18:18:39 +0000 | [diff] [blame] | 883 | void MachineVerifier::visitMachineFunctionAfter() { |
Jakob Stoklund Olesen | b31defe | 2010-01-05 20:59:36 +0000 | [diff] [blame] | 884 | calcRegsPassed(); |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 885 | |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 886 | for (MachineFunction::const_iterator MFI = MF->begin(), MFE = MF->end(); |
| 887 | MFI != MFE; ++MFI) { |
| 888 | BBInfo &MInfo = MBBInfoMap[MFI]; |
| 889 | |
| 890 | // Skip unreachable MBBs. |
| 891 | if (!MInfo.reachable) |
| 892 | continue; |
| 893 | |
| 894 | checkPHIOps(MFI); |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 895 | } |
Jakob Stoklund Olesen | 8f16e02 | 2009-11-18 20:36:57 +0000 | [diff] [blame] | 896 | |
Jakob Stoklund Olesen | 58e1248 | 2010-08-06 18:04:19 +0000 | [diff] [blame] | 897 | // Now check liveness info if available |
| 898 | if (LiveVars || LiveInts) |
Jakob Stoklund Olesen | 8f16e02 | 2009-11-18 20:36:57 +0000 | [diff] [blame] | 899 | calcRegsRequired(); |
Jakob Stoklund Olesen | 58e1248 | 2010-08-06 18:04:19 +0000 | [diff] [blame] | 900 | if (LiveVars) |
Jakob Stoklund Olesen | 8f16e02 | 2009-11-18 20:36:57 +0000 | [diff] [blame] | 901 | verifyLiveVariables(); |
Jakob Stoklund Olesen | 58e1248 | 2010-08-06 18:04:19 +0000 | [diff] [blame] | 902 | if (LiveInts) |
| 903 | verifyLiveIntervals(); |
Jakob Stoklund Olesen | 48872e0 | 2009-05-16 00:33:53 +0000 | [diff] [blame] | 904 | } |
Jakob Stoklund Olesen | 8f16e02 | 2009-11-18 20:36:57 +0000 | [diff] [blame] | 905 | |
| 906 | void MachineVerifier::verifyLiveVariables() { |
| 907 | assert(LiveVars && "Don't call verifyLiveVariables without LiveVars"); |
| 908 | for (unsigned Reg = TargetRegisterInfo::FirstVirtualRegister, |
| 909 | RegE = MRI->getLastVirtReg()-1; Reg != RegE; ++Reg) { |
| 910 | LiveVariables::VarInfo &VI = LiveVars->getVarInfo(Reg); |
| 911 | for (MachineFunction::const_iterator MFI = MF->begin(), MFE = MF->end(); |
| 912 | MFI != MFE; ++MFI) { |
| 913 | BBInfo &MInfo = MBBInfoMap[MFI]; |
| 914 | |
| 915 | // Our vregsRequired should be identical to LiveVariables' AliveBlocks |
| 916 | if (MInfo.vregsRequired.count(Reg)) { |
| 917 | if (!VI.AliveBlocks.test(MFI->getNumber())) { |
| 918 | report("LiveVariables: Block missing from AliveBlocks", MFI); |
| 919 | *OS << "Virtual register %reg" << Reg |
| 920 | << " must be live through the block.\n"; |
| 921 | } |
| 922 | } else { |
| 923 | if (VI.AliveBlocks.test(MFI->getNumber())) { |
| 924 | report("LiveVariables: Block should not be in AliveBlocks", MFI); |
| 925 | *OS << "Virtual register %reg" << Reg |
| 926 | << " is not needed live through the block.\n"; |
| 927 | } |
| 928 | } |
| 929 | } |
| 930 | } |
| 931 | } |
| 932 | |
Jakob Stoklund Olesen | 58e1248 | 2010-08-06 18:04:19 +0000 | [diff] [blame] | 933 | void MachineVerifier::verifyLiveIntervals() { |
| 934 | assert(LiveInts && "Don't call verifyLiveIntervals without LiveInts"); |
| 935 | for (LiveIntervals::const_iterator LVI = LiveInts->begin(), |
| 936 | LVE = LiveInts->end(); LVI != LVE; ++LVI) { |
| 937 | const LiveInterval &LI = *LVI->second; |
Jakob Stoklund Olesen | 893ab5d | 2010-10-06 23:54:35 +0000 | [diff] [blame] | 938 | |
| 939 | // Spilling and splitting may leave unused registers around. Skip them. |
| 940 | if (MRI->use_empty(LI.reg)) |
| 941 | continue; |
| 942 | |
Jakob Stoklund Olesen | 8c45642 | 2010-10-28 20:44:22 +0000 | [diff] [blame] | 943 | // Physical registers have much weirdness going on, mostly from coalescing. |
| 944 | // We should probably fix it, but for now just ignore them. |
| 945 | if (TargetRegisterInfo::isPhysicalRegister(LI.reg)) |
| 946 | continue; |
| 947 | |
Jakob Stoklund Olesen | 58e1248 | 2010-08-06 18:04:19 +0000 | [diff] [blame] | 948 | assert(LVI->first == LI.reg && "Invalid reg to interval mapping"); |
| 949 | |
| 950 | for (LiveInterval::const_vni_iterator I = LI.vni_begin(), E = LI.vni_end(); |
| 951 | I!=E; ++I) { |
| 952 | VNInfo *VNI = *I; |
Jakob Stoklund Olesen | ed82635 | 2010-10-02 05:24:46 +0000 | [diff] [blame] | 953 | const VNInfo *DefVNI = LI.getVNInfoAt(VNI->def); |
Jakob Stoklund Olesen | 58e1248 | 2010-08-06 18:04:19 +0000 | [diff] [blame] | 954 | |
Jakob Stoklund Olesen | ed82635 | 2010-10-02 05:24:46 +0000 | [diff] [blame] | 955 | if (!DefVNI) { |
Jakob Stoklund Olesen | 58e1248 | 2010-08-06 18:04:19 +0000 | [diff] [blame] | 956 | if (!VNI->isUnused()) { |
| 957 | report("Valno not live at def and not marked unused", MF); |
| 958 | *OS << "Valno #" << VNI->id << " in " << LI << '\n'; |
| 959 | } |
| 960 | continue; |
| 961 | } |
| 962 | |
| 963 | if (VNI->isUnused()) |
| 964 | continue; |
| 965 | |
Jakob Stoklund Olesen | ed82635 | 2010-10-02 05:24:46 +0000 | [diff] [blame] | 966 | if (DefVNI != VNI) { |
Jakob Stoklund Olesen | 58e1248 | 2010-08-06 18:04:19 +0000 | [diff] [blame] | 967 | report("Live range at def has different valno", MF); |
Jakob Stoklund Olesen | ed82635 | 2010-10-02 05:24:46 +0000 | [diff] [blame] | 968 | *OS << "Valno #" << VNI->id << " is defined at " << VNI->def |
Jakob Stoklund Olesen | dbcc2e1 | 2010-10-26 20:21:43 +0000 | [diff] [blame] | 969 | << " where valno #" << DefVNI->id << " is live in " << LI << '\n'; |
Jakob Stoklund Olesen | 3bf7cf9 | 2010-10-22 22:48:58 +0000 | [diff] [blame] | 970 | continue; |
Jakob Stoklund Olesen | 58e1248 | 2010-08-06 18:04:19 +0000 | [diff] [blame] | 971 | } |
| 972 | |
Jakob Stoklund Olesen | 3bf7cf9 | 2010-10-22 22:48:58 +0000 | [diff] [blame] | 973 | const MachineBasicBlock *MBB = LiveInts->getMBBFromIndex(VNI->def); |
| 974 | if (!MBB) { |
| 975 | report("Invalid definition index", MF); |
Jakob Stoklund Olesen | dbcc2e1 | 2010-10-26 20:21:43 +0000 | [diff] [blame] | 976 | *OS << "Valno #" << VNI->id << " is defined at " << VNI->def |
| 977 | << " in " << LI << '\n'; |
Jakob Stoklund Olesen | 3bf7cf9 | 2010-10-22 22:48:58 +0000 | [diff] [blame] | 978 | continue; |
| 979 | } |
| 980 | |
| 981 | if (VNI->isPHIDef()) { |
| 982 | if (VNI->def != LiveInts->getMBBStartIdx(MBB)) { |
| 983 | report("PHIDef value is not defined at MBB start", MF); |
| 984 | *OS << "Valno #" << VNI->id << " is defined at " << VNI->def |
Jakob Stoklund Olesen | dbcc2e1 | 2010-10-26 20:21:43 +0000 | [diff] [blame] | 985 | << ", not at the beginning of BB#" << MBB->getNumber() |
| 986 | << " in " << LI << '\n'; |
Jakob Stoklund Olesen | 3bf7cf9 | 2010-10-22 22:48:58 +0000 | [diff] [blame] | 987 | } |
| 988 | } else { |
| 989 | // Non-PHI def. |
| 990 | if (!VNI->def.isDef()) { |
| 991 | report("Non-PHI def must be at a DEF slot", MF); |
Jakob Stoklund Olesen | dbcc2e1 | 2010-10-26 20:21:43 +0000 | [diff] [blame] | 992 | *OS << "Valno #" << VNI->id << " is defined at " << VNI->def |
| 993 | << " in " << LI << '\n'; |
Jakob Stoklund Olesen | 3bf7cf9 | 2010-10-22 22:48:58 +0000 | [diff] [blame] | 994 | } |
| 995 | const MachineInstr *MI = LiveInts->getInstructionFromIndex(VNI->def); |
| 996 | if (!MI) { |
| 997 | report("No instruction at def index", MF); |
Jakob Stoklund Olesen | 7871687 | 2010-10-23 00:49:09 +0000 | [diff] [blame] | 998 | *OS << "Valno #" << VNI->id << " is defined at " << VNI->def |
| 999 | << " in " << LI << '\n'; |
Jakob Stoklund Olesen | 3bf7cf9 | 2010-10-22 22:48:58 +0000 | [diff] [blame] | 1000 | } else if (!MI->modifiesRegister(LI.reg, TRI)) { |
| 1001 | report("Defining instruction does not modify register", MI); |
| 1002 | *OS << "Valno #" << VNI->id << " in " << LI << '\n'; |
| 1003 | } |
| 1004 | } |
Jakob Stoklund Olesen | 58e1248 | 2010-08-06 18:04:19 +0000 | [diff] [blame] | 1005 | } |
| 1006 | |
| 1007 | for (LiveInterval::const_iterator I = LI.begin(), E = LI.end(); I!=E; ++I) { |
Jakob Stoklund Olesen | ed82635 | 2010-10-02 05:24:46 +0000 | [diff] [blame] | 1008 | const VNInfo *VNI = I->valno; |
| 1009 | assert(VNI && "Live range has no valno"); |
Jakob Stoklund Olesen | 58e1248 | 2010-08-06 18:04:19 +0000 | [diff] [blame] | 1010 | |
Jakob Stoklund Olesen | ed82635 | 2010-10-02 05:24:46 +0000 | [diff] [blame] | 1011 | if (VNI->id >= LI.getNumValNums() || VNI != LI.getValNumInfo(VNI->id)) { |
Jakob Stoklund Olesen | 58e1248 | 2010-08-06 18:04:19 +0000 | [diff] [blame] | 1012 | report("Foreign valno in live range", MF); |
Jakob Stoklund Olesen | ed82635 | 2010-10-02 05:24:46 +0000 | [diff] [blame] | 1013 | I->print(*OS); |
Jakob Stoklund Olesen | 58e1248 | 2010-08-06 18:04:19 +0000 | [diff] [blame] | 1014 | *OS << " has a valno not in " << LI << '\n'; |
| 1015 | } |
| 1016 | |
Jakob Stoklund Olesen | ed82635 | 2010-10-02 05:24:46 +0000 | [diff] [blame] | 1017 | if (VNI->isUnused()) { |
Jakob Stoklund Olesen | 58e1248 | 2010-08-06 18:04:19 +0000 | [diff] [blame] | 1018 | report("Live range valno is marked unused", MF); |
Jakob Stoklund Olesen | ed82635 | 2010-10-02 05:24:46 +0000 | [diff] [blame] | 1019 | I->print(*OS); |
Jakob Stoklund Olesen | 58e1248 | 2010-08-06 18:04:19 +0000 | [diff] [blame] | 1020 | *OS << " in " << LI << '\n'; |
| 1021 | } |
| 1022 | |
Jakob Stoklund Olesen | 7871687 | 2010-10-23 00:49:09 +0000 | [diff] [blame] | 1023 | const MachineBasicBlock *MBB = LiveInts->getMBBFromIndex(I->start); |
| 1024 | if (!MBB) { |
| 1025 | report("Bad start of live segment, no basic block", MF); |
| 1026 | I->print(*OS); |
| 1027 | *OS << " in " << LI << '\n'; |
| 1028 | continue; |
| 1029 | } |
| 1030 | SlotIndex MBBStartIdx = LiveInts->getMBBStartIdx(MBB); |
| 1031 | if (I->start != MBBStartIdx && I->start != VNI->def) { |
| 1032 | report("Live segment must begin at MBB entry or valno def", MBB); |
| 1033 | I->print(*OS); |
| 1034 | *OS << " in " << LI << '\n' << "Basic block starts at " |
| 1035 | << MBBStartIdx << '\n'; |
| 1036 | } |
| 1037 | |
| 1038 | const MachineBasicBlock *EndMBB = |
| 1039 | LiveInts->getMBBFromIndex(I->end.getPrevSlot()); |
| 1040 | if (!EndMBB) { |
| 1041 | report("Bad end of live segment, no basic block", MF); |
| 1042 | I->print(*OS); |
| 1043 | *OS << " in " << LI << '\n'; |
| 1044 | continue; |
| 1045 | } |
| 1046 | if (I->end != LiveInts->getMBBEndIdx(EndMBB)) { |
| 1047 | // The live segment is ending inside EndMBB |
| 1048 | const MachineInstr *MI = |
| 1049 | LiveInts->getInstructionFromIndex(I->end.getPrevSlot()); |
| 1050 | if (!MI) { |
| 1051 | report("Live segment doesn't end at a valid instruction", EndMBB); |
| 1052 | I->print(*OS); |
| 1053 | *OS << " in " << LI << '\n' << "Basic block starts at " |
| 1054 | << MBBStartIdx << '\n'; |
| 1055 | } else if (TargetRegisterInfo::isVirtualRegister(LI.reg) && |
| 1056 | !MI->readsVirtualRegister(LI.reg)) { |
| 1057 | // FIXME: Should we require a kill flag? |
| 1058 | report("Instruction killing live segment doesn't read register", MI); |
| 1059 | I->print(*OS); |
| 1060 | *OS << " in " << LI << '\n'; |
| 1061 | } |
| 1062 | } |
| 1063 | |
| 1064 | // Now check all the basic blocks in this live segment. |
| 1065 | MachineFunction::const_iterator MFI = MBB; |
| 1066 | // Is LI live-in to MBB and not a PHIDef? |
| 1067 | if (I->start == VNI->def) { |
| 1068 | // Not live-in to any blocks. |
| 1069 | if (MBB == EndMBB) |
| 1070 | continue; |
| 1071 | // Skip this block. |
| 1072 | ++MFI; |
| 1073 | } |
| 1074 | for (;;) { |
| 1075 | assert(LiveInts->isLiveInToMBB(LI, MFI)); |
Jakob Stoklund Olesen | e459d55 | 2010-10-26 16:49:23 +0000 | [diff] [blame] | 1076 | // We don't know how to track physregs into a landing pad. |
| 1077 | if (TargetRegisterInfo::isPhysicalRegister(LI.reg) && |
| 1078 | MFI->isLandingPad()) { |
| 1079 | if (&*MFI == EndMBB) |
| 1080 | break; |
| 1081 | ++MFI; |
| 1082 | continue; |
| 1083 | } |
Jakob Stoklund Olesen | 7871687 | 2010-10-23 00:49:09 +0000 | [diff] [blame] | 1084 | // Check that VNI is live-out of all predecessors. |
| 1085 | for (MachineBasicBlock::const_pred_iterator PI = MFI->pred_begin(), |
| 1086 | PE = MFI->pred_end(); PI != PE; ++PI) { |
| 1087 | SlotIndex PEnd = LiveInts->getMBBEndIdx(*PI).getPrevSlot(); |
| 1088 | const VNInfo *PVNI = LI.getVNInfoAt(PEnd); |
| 1089 | if (!PVNI) { |
| 1090 | report("Register not marked live out of predecessor", *PI); |
| 1091 | *OS << "Valno #" << VNI->id << " live into BB#" << MFI->getNumber() |
| 1092 | << '@' << LiveInts->getMBBStartIdx(MFI) << ", not live at " |
| 1093 | << PEnd << " in " << LI << '\n'; |
| 1094 | } else if (PVNI != VNI) { |
| 1095 | report("Different value live out of predecessor", *PI); |
| 1096 | *OS << "Valno #" << PVNI->id << " live out of BB#" |
| 1097 | << (*PI)->getNumber() << '@' << PEnd |
| 1098 | << "\nValno #" << VNI->id << " live into BB#" << MFI->getNumber() |
| 1099 | << '@' << LiveInts->getMBBStartIdx(MFI) << " in " << LI << '\n'; |
| 1100 | } |
| 1101 | } |
| 1102 | if (&*MFI == EndMBB) |
| 1103 | break; |
| 1104 | ++MFI; |
| 1105 | } |
Jakob Stoklund Olesen | 58e1248 | 2010-08-06 18:04:19 +0000 | [diff] [blame] | 1106 | } |
Jakob Stoklund Olesen | 501dc42 | 2010-10-26 22:36:07 +0000 | [diff] [blame] | 1107 | |
| 1108 | // Check the LI only has one connected component. |
Jakob Stoklund Olesen | 8c593f9 | 2010-10-27 00:39:01 +0000 | [diff] [blame] | 1109 | if (TargetRegisterInfo::isVirtualRegister(LI.reg)) { |
| 1110 | ConnectedVNInfoEqClasses ConEQ(*LiveInts); |
| 1111 | unsigned NumComp = ConEQ.Classify(&LI); |
| 1112 | if (NumComp > 1) { |
| 1113 | report("Multiple connected components in live interval", MF); |
| 1114 | *OS << NumComp << " components in " << LI << '\n'; |
Jakob Stoklund Olesen | cb36777 | 2010-10-29 00:40:57 +0000 | [diff] [blame] | 1115 | for (unsigned comp = 0; comp != NumComp; ++comp) { |
| 1116 | *OS << comp << ": valnos"; |
| 1117 | for (LiveInterval::const_vni_iterator I = LI.vni_begin(), |
| 1118 | E = LI.vni_end(); I!=E; ++I) |
| 1119 | if (comp == ConEQ.getEqClass(*I)) |
| 1120 | *OS << ' ' << (*I)->id; |
| 1121 | *OS << '\n'; |
| 1122 | } |
Jakob Stoklund Olesen | 8c593f9 | 2010-10-27 00:39:01 +0000 | [diff] [blame] | 1123 | } |
Jakob Stoklund Olesen | 501dc42 | 2010-10-26 22:36:07 +0000 | [diff] [blame] | 1124 | } |
Jakob Stoklund Olesen | 58e1248 | 2010-08-06 18:04:19 +0000 | [diff] [blame] | 1125 | } |
| 1126 | } |
Jakob Stoklund Olesen | 8f16e02 | 2009-11-18 20:36:57 +0000 | [diff] [blame] | 1127 | |