blob: 0bdf86406f104cab9b127fed994f2017a148bb2e [file] [log] [blame]
Chris Lattnerbc40e892003-01-13 20:01:16 +00001//===-- LiveVariables.cpp - Live Variable Analysis for Machine Code -------===//
2//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Chris Lattner5cdfbad2003-05-07 20:08:36 +000010// This file implements the LiveVariable analysis pass. For each machine
11// instruction in the function, this pass calculates the set of registers that
12// are immediately dead after the instruction (i.e., the instruction calculates
13// the value, but it is never used) and the set of registers that are used by
14// the instruction, but are never used after the instruction (i.e., they are
15// killed).
16//
17// This class computes live variables using are sparse implementation based on
18// the machine code SSA form. This class computes live variable information for
19// each virtual and _register allocatable_ physical register in a function. It
20// uses the dominance properties of SSA form to efficiently compute live
21// variables for virtual registers, and assumes that physical registers are only
22// live within a single basic block (allowing it to do a single local analysis
23// to resolve physical register lifetimes in each basic block). If a physical
24// register is not register allocatable, it is not tracked. This is useful for
25// things like the stack pointer and condition codes.
26//
Chris Lattnerbc40e892003-01-13 20:01:16 +000027//===----------------------------------------------------------------------===//
28
29#include "llvm/CodeGen/LiveVariables.h"
30#include "llvm/CodeGen/MachineInstr.h"
Chris Lattner61b08f12004-02-10 21:18:55 +000031#include "llvm/Target/MRegisterInfo.h"
Chris Lattner3501fea2003-01-14 22:00:31 +000032#include "llvm/Target/TargetInstrInfo.h"
Chris Lattnerbc40e892003-01-13 20:01:16 +000033#include "llvm/Target/TargetMachine.h"
Chris Lattnerbc40e892003-01-13 20:01:16 +000034#include "Support/DepthFirstIterator.h"
Chris Lattner5ed001b2004-02-19 18:28:02 +000035#include "Support/STLExtras.h"
Chris Lattner49a5aaa2004-01-30 22:08:53 +000036using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000037
Chris Lattnerbc40e892003-01-13 20:01:16 +000038static RegisterAnalysis<LiveVariables> X("livevars", "Live Variable Analysis");
39
Chris Lattnerfb2cb692003-05-12 14:24:00 +000040LiveVariables::VarInfo &LiveVariables::getVarInfo(unsigned RegIdx) {
Chris Lattneref09c632004-01-31 21:27:19 +000041 assert(MRegisterInfo::isVirtualRegister(RegIdx) &&
Chris Lattnerfb2cb692003-05-12 14:24:00 +000042 "getVarInfo: not a virtual register!");
43 RegIdx -= MRegisterInfo::FirstVirtualRegister;
44 if (RegIdx >= VirtRegInfo.size()) {
45 if (RegIdx >= 2*VirtRegInfo.size())
46 VirtRegInfo.resize(RegIdx*2);
47 else
48 VirtRegInfo.resize(2*VirtRegInfo.size());
49 }
50 return VirtRegInfo[RegIdx];
51}
52
53
54
Chris Lattnerbc40e892003-01-13 20:01:16 +000055void LiveVariables::MarkVirtRegAliveInBlock(VarInfo &VRInfo,
Misha Brukman09ba9062004-06-24 21:31:16 +000056 MachineBasicBlock *MBB) {
Chris Lattner8ba97712004-07-01 04:29:47 +000057 unsigned BBNum = MBB->getNumber();
Chris Lattnerbc40e892003-01-13 20:01:16 +000058
59 // Check to see if this basic block is one of the killing blocks. If so,
60 // remove it...
61 for (unsigned i = 0, e = VRInfo.Kills.size(); i != e; ++i)
Chris Lattner74de8b12004-07-19 07:04:55 +000062 if (VRInfo.Kills[i]->getParent() == MBB) {
Chris Lattnerbc40e892003-01-13 20:01:16 +000063 VRInfo.Kills.erase(VRInfo.Kills.begin()+i); // Erase entry
64 break;
65 }
66
Chris Lattner73d4adf2004-07-19 06:26:50 +000067 if (MBB == VRInfo.DefInst->getParent()) return; // Terminate recursion
Chris Lattnerbc40e892003-01-13 20:01:16 +000068
69 if (VRInfo.AliveBlocks.size() <= BBNum)
70 VRInfo.AliveBlocks.resize(BBNum+1); // Make space...
71
72 if (VRInfo.AliveBlocks[BBNum])
73 return; // We already know the block is live
74
75 // Mark the variable known alive in this bb
76 VRInfo.AliveBlocks[BBNum] = true;
77
Chris Lattnerf25fb4b2004-05-01 21:24:24 +000078 for (MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(),
79 E = MBB->pred_end(); PI != E; ++PI)
Chris Lattnerbc40e892003-01-13 20:01:16 +000080 MarkVirtRegAliveInBlock(VRInfo, *PI);
81}
82
83void LiveVariables::HandleVirtRegUse(VarInfo &VRInfo, MachineBasicBlock *MBB,
Misha Brukman09ba9062004-06-24 21:31:16 +000084 MachineInstr *MI) {
Chris Lattnerbc40e892003-01-13 20:01:16 +000085 // Check to see if this basic block is already a kill block...
Chris Lattner74de8b12004-07-19 07:04:55 +000086 if (!VRInfo.Kills.empty() && VRInfo.Kills.back()->getParent() == MBB) {
Chris Lattnerbc40e892003-01-13 20:01:16 +000087 // Yes, this register is killed in this basic block already. Increase the
88 // live range by updating the kill instruction.
Chris Lattner74de8b12004-07-19 07:04:55 +000089 VRInfo.Kills.back() = MI;
Chris Lattnerbc40e892003-01-13 20:01:16 +000090 return;
91 }
92
93#ifndef NDEBUG
94 for (unsigned i = 0, e = VRInfo.Kills.size(); i != e; ++i)
Chris Lattner74de8b12004-07-19 07:04:55 +000095 assert(VRInfo.Kills[i]->getParent() != MBB && "entry should be at end!");
Chris Lattnerbc40e892003-01-13 20:01:16 +000096#endif
97
Chris Lattner73d4adf2004-07-19 06:26:50 +000098 assert(MBB != VRInfo.DefInst->getParent() &&
99 "Should have kill for defblock!");
Chris Lattnerbc40e892003-01-13 20:01:16 +0000100
101 // Add a new kill entry for this basic block.
Chris Lattner74de8b12004-07-19 07:04:55 +0000102 VRInfo.Kills.push_back(MI);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000103
104 // Update all dominating blocks to mark them known live.
105 const BasicBlock *BB = MBB->getBasicBlock();
Chris Lattnerf25fb4b2004-05-01 21:24:24 +0000106 for (MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(),
107 E = MBB->pred_end(); PI != E; ++PI)
Chris Lattnerbc40e892003-01-13 20:01:16 +0000108 MarkVirtRegAliveInBlock(VRInfo, *PI);
109}
110
111void LiveVariables::HandlePhysRegUse(unsigned Reg, MachineInstr *MI) {
Alkis Evlogimenosc55640f2004-01-13 21:16:25 +0000112 PhysRegInfo[Reg] = MI;
113 PhysRegUsed[Reg] = true;
Chris Lattner6d3848d2004-05-10 05:12:43 +0000114
115 for (const unsigned *AliasSet = RegInfo->getAliasSet(Reg);
116 unsigned Alias = *AliasSet; ++AliasSet) {
117 PhysRegInfo[Alias] = MI;
118 PhysRegUsed[Alias] = true;
119 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000120}
121
122void LiveVariables::HandlePhysRegDef(unsigned Reg, MachineInstr *MI) {
123 // Does this kill a previous version of this register?
124 if (MachineInstr *LastUse = PhysRegInfo[Reg]) {
125 if (PhysRegUsed[Reg])
126 RegistersKilled.insert(std::make_pair(LastUse, Reg));
127 else
128 RegistersDead.insert(std::make_pair(LastUse, Reg));
Chris Lattnerbc40e892003-01-13 20:01:16 +0000129 }
130 PhysRegInfo[Reg] = MI;
131 PhysRegUsed[Reg] = false;
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000132
133 for (const unsigned *AliasSet = RegInfo->getAliasSet(Reg);
Chris Lattner6d3848d2004-05-10 05:12:43 +0000134 unsigned Alias = *AliasSet; ++AliasSet) {
Chris Lattner49948772004-02-09 01:43:23 +0000135 if (MachineInstr *LastUse = PhysRegInfo[Alias]) {
136 if (PhysRegUsed[Alias])
Chris Lattner6d3848d2004-05-10 05:12:43 +0000137 RegistersKilled.insert(std::make_pair(LastUse, Alias));
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000138 else
Misha Brukman09ba9062004-06-24 21:31:16 +0000139 RegistersDead.insert(std::make_pair(LastUse, Alias));
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000140 }
Chris Lattner49948772004-02-09 01:43:23 +0000141 PhysRegInfo[Alias] = MI;
142 PhysRegUsed[Alias] = false;
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000143 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000144}
145
146bool LiveVariables::runOnMachineFunction(MachineFunction &MF) {
Chris Lattner9bcdcd12004-06-02 05:57:12 +0000147 const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
Chris Lattner96aef892004-02-09 01:35:21 +0000148 RegInfo = MF.getTarget().getRegisterInfo();
149 assert(RegInfo && "Target doesn't have register information?");
150
Chris Lattner5cdfbad2003-05-07 20:08:36 +0000151 // First time though, initialize AllocatablePhysicalRegisters for the target
152 if (AllocatablePhysicalRegisters.empty()) {
Chris Lattner5cdfbad2003-05-07 20:08:36 +0000153 // Make space, initializing to false...
Chris Lattner96aef892004-02-09 01:35:21 +0000154 AllocatablePhysicalRegisters.resize(RegInfo->getNumRegs());
Chris Lattner5cdfbad2003-05-07 20:08:36 +0000155
156 // Loop over all of the register classes...
Chris Lattner96aef892004-02-09 01:35:21 +0000157 for (MRegisterInfo::regclass_iterator RCI = RegInfo->regclass_begin(),
158 E = RegInfo->regclass_end(); RCI != E; ++RCI)
Chris Lattner5cdfbad2003-05-07 20:08:36 +0000159 // Loop over all of the allocatable registers in the function...
160 for (TargetRegisterClass::iterator I = (*RCI)->allocation_order_begin(MF),
161 E = (*RCI)->allocation_order_end(MF); I != E; ++I)
162 AllocatablePhysicalRegisters[*I] = true; // The reg is allocatable!
163 }
164
Chris Lattnerbc40e892003-01-13 20:01:16 +0000165 // PhysRegInfo - Keep track of which instruction was the last use of a
166 // physical register. This is a purely local property, because all physical
167 // register references as presumed dead across basic blocks.
168 //
Alkis Evlogimenos859a18b2004-02-15 21:37:17 +0000169 MachineInstr *PhysRegInfoA[RegInfo->getNumRegs()];
170 bool PhysRegUsedA[RegInfo->getNumRegs()];
171 std::fill(PhysRegInfoA, PhysRegInfoA+RegInfo->getNumRegs(), (MachineInstr*)0);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000172 PhysRegInfo = PhysRegInfoA;
173 PhysRegUsed = PhysRegUsedA;
174
Chris Lattnerbc40e892003-01-13 20:01:16 +0000175 /// Get some space for a respectable number of registers...
176 VirtRegInfo.resize(64);
177
178 // Calculate live variable information in depth first order on the CFG of the
179 // function. This guarantees that we will see the definition of a virtual
180 // register before its uses due to dominance properties of SSA (except for PHI
181 // nodes, which are treated as a special case).
182 //
Chris Lattnerf25fb4b2004-05-01 21:24:24 +0000183 MachineBasicBlock *Entry = MF.begin();
Chris Lattnera5287a62004-07-01 04:24:29 +0000184 std::set<MachineBasicBlock*> Visited;
185 for (df_ext_iterator<MachineBasicBlock*> DFI = df_ext_begin(Entry, Visited),
186 E = df_ext_end(Entry, Visited); DFI != E; ++DFI) {
Chris Lattnerf25fb4b2004-05-01 21:24:24 +0000187 MachineBasicBlock *MBB = *DFI;
Chris Lattner8ba97712004-07-01 04:29:47 +0000188 unsigned BBNum = MBB->getNumber();
Chris Lattnerbc40e892003-01-13 20:01:16 +0000189
190 // Loop over all of the instructions, processing them.
191 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end();
Misha Brukman09ba9062004-06-24 21:31:16 +0000192 I != E; ++I) {
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000193 MachineInstr *MI = I;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000194 const TargetInstrDescriptor &MID = TII.get(MI->getOpcode());
195
196 // Process all of the operands of the instruction...
197 unsigned NumOperandsToProcess = MI->getNumOperands();
198
199 // Unless it is a PHI node. In this case, ONLY process the DEF, not any
200 // of the uses. They will be handled in other basic blocks.
201 if (MI->getOpcode() == TargetInstrInfo::PHI)
Misha Brukman09ba9062004-06-24 21:31:16 +0000202 NumOperandsToProcess = 1;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000203
204 // Loop over implicit uses, using them.
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000205 for (const unsigned *ImplicitUses = MID.ImplicitUses;
206 *ImplicitUses; ++ImplicitUses)
Misha Brukman09ba9062004-06-24 21:31:16 +0000207 HandlePhysRegUse(*ImplicitUses, MI);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000208
209 // Process all explicit uses...
210 for (unsigned i = 0; i != NumOperandsToProcess; ++i) {
Misha Brukman09ba9062004-06-24 21:31:16 +0000211 MachineOperand &MO = MI->getOperand(i);
212 if (MO.isUse() && MO.isRegister() && MO.getReg()) {
213 if (MRegisterInfo::isVirtualRegister(MO.getReg())){
214 HandleVirtRegUse(getVarInfo(MO.getReg()), MBB, MI);
215 } else if (MRegisterInfo::isPhysicalRegister(MO.getReg()) &&
Chris Lattner5cdfbad2003-05-07 20:08:36 +0000216 AllocatablePhysicalRegisters[MO.getReg()]) {
Misha Brukman09ba9062004-06-24 21:31:16 +0000217 HandlePhysRegUse(MO.getReg(), MI);
218 }
219 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000220 }
221
222 // Loop over implicit defs, defining them.
Alkis Evlogimenosefe995a2003-12-13 01:20:58 +0000223 for (const unsigned *ImplicitDefs = MID.ImplicitDefs;
224 *ImplicitDefs; ++ImplicitDefs)
225 HandlePhysRegDef(*ImplicitDefs, MI);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000226
227 // Process all explicit defs...
228 for (unsigned i = 0; i != NumOperandsToProcess; ++i) {
Misha Brukman09ba9062004-06-24 21:31:16 +0000229 MachineOperand &MO = MI->getOperand(i);
230 if (MO.isDef() && MO.isRegister() && MO.getReg()) {
231 if (MRegisterInfo::isVirtualRegister(MO.getReg())) {
232 VarInfo &VRInfo = getVarInfo(MO.getReg());
Chris Lattnerbc40e892003-01-13 20:01:16 +0000233
Chris Lattner73d4adf2004-07-19 06:26:50 +0000234 assert(VRInfo.DefInst == 0 && "Variable multiply defined!");
Misha Brukman09ba9062004-06-24 21:31:16 +0000235 VRInfo.DefInst = MI;
Chris Lattner472405e2004-07-19 06:55:21 +0000236 // Defaults to dead
Chris Lattner74de8b12004-07-19 07:04:55 +0000237 VRInfo.Kills.push_back(MI);
Misha Brukman09ba9062004-06-24 21:31:16 +0000238 } else if (MRegisterInfo::isPhysicalRegister(MO.getReg()) &&
Chris Lattner5cdfbad2003-05-07 20:08:36 +0000239 AllocatablePhysicalRegisters[MO.getReg()]) {
Misha Brukman09ba9062004-06-24 21:31:16 +0000240 HandlePhysRegDef(MO.getReg(), MI);
241 }
242 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000243 }
244 }
245
246 // Handle any virtual assignments from PHI nodes which might be at the
247 // bottom of this basic block. We check all of our successor blocks to see
248 // if they have PHI nodes, and if so, we simulate an assignment at the end
249 // of the current block.
Chris Lattnerf25fb4b2004-05-01 21:24:24 +0000250 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
251 E = MBB->succ_end(); SI != E; ++SI) {
252 MachineBasicBlock *Succ = *SI;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000253
254 // PHI nodes are guaranteed to be at the top of the block...
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000255 for (MachineBasicBlock::iterator MI = Succ->begin(), ME = Succ->end();
Misha Brukman09ba9062004-06-24 21:31:16 +0000256 MI != ME && MI->getOpcode() == TargetInstrInfo::PHI; ++MI) {
257 for (unsigned i = 1; ; i += 2) {
Chris Lattner92bc3bc2004-02-29 22:01:51 +0000258 assert(MI->getNumOperands() > i+1 &&
259 "Didn't find an entry for our predecessor??");
Misha Brukman09ba9062004-06-24 21:31:16 +0000260 if (MI->getOperand(i+1).getMachineBasicBlock() == MBB) {
261 MachineOperand &MO = MI->getOperand(i);
262 if (!MO.getVRegValueOrNull()) {
263 VarInfo &VRInfo = getVarInfo(MO.getReg());
Chris Lattnerbc40e892003-01-13 20:01:16 +0000264
Misha Brukman09ba9062004-06-24 21:31:16 +0000265 // Only mark it alive only in the block we are representing...
266 MarkVirtRegAliveInBlock(VRInfo, MBB);
267 break; // Found the PHI entry for this block...
268 }
269 }
Chris Lattner92bc3bc2004-02-29 22:01:51 +0000270 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000271 }
272 }
273
274 // Loop over PhysRegInfo, killing any registers that are available at the
275 // end of the basic block. This also resets the PhysRegInfo map.
Chris Lattner96aef892004-02-09 01:35:21 +0000276 for (unsigned i = 0, e = RegInfo->getNumRegs(); i != e; ++i)
Chris Lattnerbc40e892003-01-13 20:01:16 +0000277 if (PhysRegInfo[i])
Misha Brukman09ba9062004-06-24 21:31:16 +0000278 HandlePhysRegDef(i, 0);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000279 }
280
Chris Lattnerbc40e892003-01-13 20:01:16 +0000281 // Convert the information we have gathered into VirtRegInfo and transform it
282 // into a form usable by RegistersKilled.
283 //
284 for (unsigned i = 0, e = VirtRegInfo.size(); i != e; ++i)
285 for (unsigned j = 0, e = VirtRegInfo[i].Kills.size(); j != e; ++j) {
Chris Lattner74de8b12004-07-19 07:04:55 +0000286 if (VirtRegInfo[i].Kills[j] == VirtRegInfo[i].DefInst)
287 RegistersDead.insert(std::make_pair(VirtRegInfo[i].Kills[j],
Misha Brukman09ba9062004-06-24 21:31:16 +0000288 i + MRegisterInfo::FirstVirtualRegister));
Chris Lattnerbc40e892003-01-13 20:01:16 +0000289
290 else
Chris Lattner74de8b12004-07-19 07:04:55 +0000291 RegistersKilled.insert(std::make_pair(VirtRegInfo[i].Kills[j],
Misha Brukman09ba9062004-06-24 21:31:16 +0000292 i + MRegisterInfo::FirstVirtualRegister));
Chris Lattnerbc40e892003-01-13 20:01:16 +0000293 }
Chris Lattnera5287a62004-07-01 04:24:29 +0000294
Chris Lattner9fb6cf12004-07-09 16:44:37 +0000295 // Check to make sure there are no unreachable blocks in the MC CFG for the
296 // function. If so, it is due to a bug in the instruction selector or some
297 // other part of the code generator if this happens.
298#ifndef NDEBUG
299 for(MachineFunction::iterator i = MF.begin(), e = MF.end(); i != e; ++i)
300 assert(Visited.count(&*i) != 0 && "unreachable basic block found");
301#endif
302
Chris Lattnerbc40e892003-01-13 20:01:16 +0000303 return false;
304}
Chris Lattner5ed001b2004-02-19 18:28:02 +0000305
306/// instructionChanged - When the address of an instruction changes, this
307/// method should be called so that live variables can update its internal
308/// data structures. This removes the records for OldMI, transfering them to
309/// the records for NewMI.
310void LiveVariables::instructionChanged(MachineInstr *OldMI,
311 MachineInstr *NewMI) {
312 // If the instruction defines any virtual registers, update the VarInfo for
313 // the instruction.
Alkis Evlogimenosa8db01a2004-03-30 22:44:39 +0000314 for (unsigned i = 0, e = OldMI->getNumOperands(); i != e; ++i) {
315 MachineOperand &MO = OldMI->getOperand(i);
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000316 if (MO.isRegister() && MO.isDef() && MO.getReg() &&
Chris Lattner5ed001b2004-02-19 18:28:02 +0000317 MRegisterInfo::isVirtualRegister(MO.getReg())) {
318 unsigned Reg = MO.getReg();
319 VarInfo &VI = getVarInfo(Reg);
320 if (VI.DefInst == OldMI)
Alkis Evlogimenosa8db01a2004-03-30 22:44:39 +0000321 VI.DefInst = NewMI;
Chris Lattner5ed001b2004-02-19 18:28:02 +0000322 }
323 }
324
325 // Move the killed information over...
326 killed_iterator I, E;
327 tie(I, E) = killed_range(OldMI);
Chris Lattnera96478d2004-02-19 18:32:29 +0000328 std::vector<unsigned> Regs;
Chris Lattner5ed001b2004-02-19 18:28:02 +0000329 for (killed_iterator A = I; A != E; ++A)
Chris Lattnera96478d2004-02-19 18:32:29 +0000330 Regs.push_back(A->second);
Chris Lattner5ed001b2004-02-19 18:28:02 +0000331 RegistersKilled.erase(I, E);
332
Chris Lattnera96478d2004-02-19 18:32:29 +0000333 for (unsigned i = 0, e = Regs.size(); i != e; ++i)
334 RegistersKilled.insert(std::make_pair(NewMI, Regs[i]));
335 Regs.clear();
336
Chris Lattner5ed001b2004-02-19 18:28:02 +0000337 // Move the dead information over...
338 tie(I, E) = dead_range(OldMI);
339 for (killed_iterator A = I; A != E; ++A)
Chris Lattnera96478d2004-02-19 18:32:29 +0000340 Regs.push_back(A->second);
Chris Lattner5ed001b2004-02-19 18:28:02 +0000341 RegistersDead.erase(I, E);
Chris Lattnera96478d2004-02-19 18:32:29 +0000342
343 for (unsigned i = 0, e = Regs.size(); i != e; ++i)
344 RegistersDead.insert(std::make_pair(NewMI, Regs[i]));
Chris Lattner5ed001b2004-02-19 18:28:02 +0000345}