blob: 7d6fbb7cc98dcec3af7565cef14d5ff90cf16727 [file] [log] [blame]
Vikram S. Adve12af1642001-11-08 04:48:50 +00001// $Id$
2//***************************************************************************
3// File:
4// PhyRegAlloc.cpp
5//
6// Purpose:
7// Register allocation for LLVM.
8//
9// History:
10// 9/10/01 - Ruchira Sasanka - created.
11//**************************************************************************/
Ruchira Sasanka8e604792001-09-14 21:18:34 +000012
Vikram S. Adve12af1642001-11-08 04:48:50 +000013#include "llvm/CodeGen/PhyRegAlloc.h"
14#include "llvm/CodeGen/MachineInstr.h"
15#include "llvm/Target/TargetMachine.h"
16#include "llvm/Target/MachineFrameInfo.h"
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +000017#include <math.h>
Vikram S. Adve12af1642001-11-08 04:48:50 +000018
19
20// ***TODO: There are several places we add instructions. Validate the order
21// of adding these instructions.
Ruchira Sasanka174bded2001-10-28 18:12:02 +000022
23
24
Chris Lattner045e7c82001-09-19 16:26:23 +000025cl::Enum<RegAllocDebugLevel_t> DEBUG_RA("dregalloc", cl::NoFlags,
26 "enable register allocation debugging information",
27 clEnumValN(RA_DEBUG_None , "n", "disable debug output"),
28 clEnumValN(RA_DEBUG_Normal , "y", "enable debug output"),
29 clEnumValN(RA_DEBUG_Verbose, "v", "enable extra debug output"), 0);
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +000030
31
32//----------------------------------------------------------------------------
33// Constructor: Init local composite objects and create register classes.
34//----------------------------------------------------------------------------
Vikram S. Adve12af1642001-11-08 04:48:50 +000035PhyRegAlloc::PhyRegAlloc(Method *M,
Ruchira Sasanka8e604792001-09-14 21:18:34 +000036 const TargetMachine& tm,
37 MethodLiveVarInfo *const Lvi)
38 : RegClassList(),
Vikram S. Adve12af1642001-11-08 04:48:50 +000039 TM(tm),
40 Meth(M),
41 mcInfo(MachineCodeForMethod::get(M)),
42 LVI(Lvi), LRI(M, tm, RegClassList),
Ruchira Sasanka8e604792001-09-14 21:18:34 +000043 MRI( tm.getRegInfo() ),
44 NumOfRegClasses(MRI.getNumOfRegClasses()),
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +000045 AddedInstrMap(), LoopDepthCalc(M), ResColList() {
Ruchira Sasanka8e604792001-09-14 21:18:34 +000046
47 // create each RegisterClass and put in RegClassList
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +000048 //
Ruchira Sasanka8e604792001-09-14 21:18:34 +000049 for( unsigned int rc=0; rc < NumOfRegClasses; rc++)
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +000050 RegClassList.push_back( new RegClass(M, MRI.getMachineRegClass(rc),
51 &ResColList) );
Ruchira Sasanka8e604792001-09-14 21:18:34 +000052}
53
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +000054
55//----------------------------------------------------------------------------
56// Destructor: Deletes register classes
57//----------------------------------------------------------------------------
58PhyRegAlloc::~PhyRegAlloc() {
59
60 for( unsigned int rc=0; rc < NumOfRegClasses; rc++) {
61 RegClass *RC = RegClassList[rc];
62 delete RC;
63 }
64}
65
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +000066//----------------------------------------------------------------------------
67// This method initally creates interference graphs (one in each reg class)
68// and IGNodeList (one in each IG). The actual nodes will be pushed later.
69//----------------------------------------------------------------------------
Ruchira Sasanka8e604792001-09-14 21:18:34 +000070void PhyRegAlloc::createIGNodeListsAndIGs()
71{
Ruchira Sasankac4d4b762001-10-16 01:23:19 +000072 if(DEBUG_RA ) cout << "Creating LR lists ..." << endl;
Ruchira Sasanka8e604792001-09-14 21:18:34 +000073
74 // hash map iterator
75 LiveRangeMapType::const_iterator HMI = (LRI.getLiveRangeMap())->begin();
76
77 // hash map end
78 LiveRangeMapType::const_iterator HMIEnd = (LRI.getLiveRangeMap())->end();
79
80 for( ; HMI != HMIEnd ; ++HMI ) {
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +000081
82 if( (*HMI).first ) {
Ruchira Sasanka8e604792001-09-14 21:18:34 +000083
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +000084 LiveRange *L = (*HMI).second; // get the LiveRange
Ruchira Sasanka8e604792001-09-14 21:18:34 +000085
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +000086 if( !L) {
87 if( DEBUG_RA) {
Ruchira Sasankac4d4b762001-10-16 01:23:19 +000088 cout << "\n*?!?Warning: Null liver range found for: ";
89 printValue( (*HMI).first) ; cout << endl;
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +000090 }
91 continue;
92 }
Ruchira Sasanka8e604792001-09-14 21:18:34 +000093 // if the Value * is not null, and LR
94 // is not yet written to the IGNodeList
95 if( !(L->getUserIGNode()) ) {
96
97 RegClass *const RC = // RegClass of first value in the LR
98 //RegClassList [MRI.getRegClassIDOfValue(*(L->begin()))];
99 RegClassList[ L->getRegClass()->getID() ];
100
101 RC-> addLRToIG( L ); // add this LR to an IG
102 }
103 }
104 }
105
106 // init RegClassList
107 for( unsigned int rc=0; rc < NumOfRegClasses ; rc++)
108 RegClassList[ rc ]->createInterferenceGraph();
109
110 if( DEBUG_RA)
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000111 cout << "LRLists Created!" << endl;
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000112}
113
114
115
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000116
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000117//----------------------------------------------------------------------------
118// This method will add all interferences at for a given instruction.
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000119// Interence occurs only if the LR of Def (Inst or Arg) is of the same reg
120// class as that of live var. The live var passed to this function is the
121// LVset AFTER the instruction
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000122//----------------------------------------------------------------------------
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000123void PhyRegAlloc::addInterference(const Value *const Def,
124 const LiveVarSet *const LVSet,
125 const bool isCallInst) {
126
127 LiveVarSet::const_iterator LIt = LVSet->begin();
128
129 // get the live range of instruction
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000130 //
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000131 const LiveRange *const LROfDef = LRI.getLiveRangeForValue( Def );
132
133 IGNode *const IGNodeOfDef = LROfDef->getUserIGNode();
134 assert( IGNodeOfDef );
135
136 RegClass *const RCOfDef = LROfDef->getRegClass();
137
138 // for each live var in live variable set
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000139 //
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000140 for( ; LIt != LVSet->end(); ++LIt) {
141
142 if( DEBUG_RA > 1) {
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000143 cout << "< Def="; printValue(Def);
144 cout << ", Lvar="; printValue( *LIt); cout << "> ";
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000145 }
146
147 // get the live range corresponding to live var
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000148 //
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000149 LiveRange *const LROfVar = LRI.getLiveRangeForValue(*LIt );
150
151 // LROfVar can be null if it is a const since a const
152 // doesn't have a dominating def - see Assumptions above
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000153 //
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000154 if( LROfVar) {
155
156 if(LROfDef == LROfVar) // do not set interf for same LR
157 continue;
158
159 // if 2 reg classes are the same set interference
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000160 //
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000161 if( RCOfDef == LROfVar->getRegClass() ){
162 RCOfDef->setInterference( LROfDef, LROfVar);
163
164 }
165
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000166 else if(DEBUG_RA > 1) {
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000167 // we will not have LRs for values not explicitly allocated in the
168 // instruction stream (e.g., constants)
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000169 cout << " warning: no live range for " ;
170 printValue( *LIt); cout << endl; }
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000171
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000172 }
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000173
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000174 }
175
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000176}
177
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000178
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000179
180
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000181//----------------------------------------------------------------------------
182// For a call instruction, this method sets the CallInterference flag in
183// the LR of each variable live int the Live Variable Set live after the
184// call instruction (except the return value of the call instruction - since
185// the return value does not interfere with that call itself).
186//----------------------------------------------------------------------------
187
188void PhyRegAlloc::setCallInterferences(const MachineInstr *MInst,
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000189 const LiveVarSet *const LVSetAft ) {
190
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000191 // Now find the LR of the return value of the call
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000192 // We do this because, we look at the LV set *after* the instruction
193 // to determine, which LRs must be saved across calls. The return value
194 // of the call is live in this set - but it does not interfere with call
195 // (i.e., we can allocate a volatile register to the return value)
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000196 //
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000197 LiveRange *RetValLR = NULL;
Ruchira Sasankab3b6f532001-10-21 16:43:41 +0000198 const Value *RetVal = MRI.getCallInstRetVal( MInst );
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000199
Ruchira Sasankab3b6f532001-10-21 16:43:41 +0000200 if( RetVal ) {
201 RetValLR = LRI.getLiveRangeForValue( RetVal );
202 assert( RetValLR && "No LR for RetValue of call");
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000203 }
204
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000205 if( DEBUG_RA)
206 cout << "\n For call inst: " << *MInst;
207
208 LiveVarSet::const_iterator LIt = LVSetAft->begin();
209
210 // for each live var in live variable set after machine inst
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000211 //
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000212 for( ; LIt != LVSetAft->end(); ++LIt) {
213
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000214 // get the live range corresponding to live var
215 //
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000216 LiveRange *const LR = LRI.getLiveRangeForValue(*LIt );
217
218 if( LR && DEBUG_RA) {
219 cout << "\n\tLR Aft Call: ";
220 LR->printSet();
221 }
222
223
224 // LR can be null if it is a const since a const
225 // doesn't have a dominating def - see Assumptions above
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000226 //
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000227 if( LR && (LR != RetValLR) ) {
228 LR->setCallInterference();
229 if( DEBUG_RA) {
230 cout << "\n ++Added call interf for LR: " ;
231 LR->printSet();
232 }
233 }
234
235 }
236
237}
238
239
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000240
241
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000242//----------------------------------------------------------------------------
243// This method will walk thru code and create interferences in the IG of
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000244// each RegClass. Also, this method calculates the spill cost of each
245// Live Range (it is done in this method to save another pass over the code).
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000246//----------------------------------------------------------------------------
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000247void PhyRegAlloc::buildInterferenceGraphs()
248{
249
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000250 if(DEBUG_RA) cout << "Creating interference graphs ..." << endl;
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000251
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000252 unsigned BBLoopDepthCost;
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000253 Method::const_iterator BBI = Meth->begin(); // random iterator for BBs
254
255 for( ; BBI != Meth->end(); ++BBI) { // traverse BBs in random order
256
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000257 // find the 10^(loop_depth) of this BB
258 //
259 BBLoopDepthCost = (unsigned) pow( 10.0, LoopDepthCalc.getLoopDepth(*BBI));
260
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000261 // get the iterator for machine instructions
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000262 //
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000263 const MachineCodeForBasicBlock& MIVec = (*BBI)->getMachineInstrVec();
264 MachineCodeForBasicBlock::const_iterator
265 MInstIterator = MIVec.begin();
266
267 // iterate over all the machine instructions in BB
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000268 //
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000269 for( ; MInstIterator != MIVec.end(); ++MInstIterator) {
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +0000270
Ruchira Sasankaef1b0cb2001-11-03 17:13:27 +0000271 const MachineInstr * MInst = *MInstIterator;
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000272
273 // get the LV set after the instruction
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000274 //
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000275 const LiveVarSet *const LVSetAI =
276 LVI->getLiveVarSetAfterMInst(MInst, *BBI);
277
278 const bool isCallInst = TM.getInstrInfo().isCall(MInst->getOpCode());
279
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000280 if( isCallInst ) {
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000281 // set the isCallInterference flag of each live range wich extends
282 // accross this call instruction. This information is used by graph
283 // coloring algo to avoid allocating volatile colors to live ranges
284 // that span across calls (since they have to be saved/restored)
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000285 //
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000286 setCallInterferences( MInst, LVSetAI);
287 }
288
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000289
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000290 // iterate over all MI operands to find defs
291 //
Chris Lattner7a176752001-12-04 00:03:30 +0000292 for( MachineInstr::val_const_op_iterator OpI(MInst);!OpI.done(); ++OpI) {
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000293
294 if( OpI.isDef() ) {
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000295 // create a new LR iff this operand is a def
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000296 //
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000297 addInterference(*OpI, LVSetAI, isCallInst );
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000298 }
299
300 // Calculate the spill cost of each live range
301 //
302 LiveRange *LR = LRI.getLiveRangeForValue( *OpI );
303 if( LR )
304 LR->addSpillCost(BBLoopDepthCost);
305 }
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000306
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000307
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000308 // if there are multiple defs in this instruction e.g. in SETX
309 //
310 if( (TM.getInstrInfo()).isPseudoInstr( MInst->getOpCode()) )
311 addInterf4PseudoInstr(MInst);
312
313
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000314 // Also add interference for any implicit definitions in a machine
315 // instr (currently, only calls have this).
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000316 //
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000317 unsigned NumOfImpRefs = MInst->getNumImplicitRefs();
318 if( NumOfImpRefs > 0 ) {
319 for(unsigned z=0; z < NumOfImpRefs; z++)
320 if( MInst->implicitRefIsDefined(z) )
321 addInterference( MInst->getImplicitRef(z), LVSetAI, isCallInst );
322 }
323
Ruchira Sasankaef1b0cb2001-11-03 17:13:27 +0000324
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000325 } // for all machine instructions in BB
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000326
327 } // for all BBs in method
328
329
330 // add interferences for method arguments. Since there are no explict
331 // defs in method for args, we have to add them manually
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000332 //
333 addInterferencesForArgs();
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000334
335 if( DEBUG_RA)
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000336 cout << "Interference graphs calculted!" << endl;
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000337
338}
339
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000340
341
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000342//--------------------------------------------------------------------------
343// Pseudo instructions will be exapnded to multiple instructions by the
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000344// assembler. Consequently, all the opernds must get distinct registers.
345// Therefore, we mark all operands of a pseudo instruction as they interfere
346// with one another.
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000347//--------------------------------------------------------------------------
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000348void PhyRegAlloc::addInterf4PseudoInstr(const MachineInstr *MInst) {
349
Ruchira Sasankaf6dfca12001-11-15 15:00:53 +0000350 bool setInterf = false;
351
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000352 // iterate over MI operands to find defs
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000353 //
Chris Lattner7a176752001-12-04 00:03:30 +0000354 for( MachineInstr::val_const_op_iterator It1(MInst);!It1.done(); ++It1) {
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000355
356 const LiveRange *const LROfOp1 = LRI.getLiveRangeForValue( *It1 );
357
Ruchira Sasankaf6dfca12001-11-15 15:00:53 +0000358 if( !LROfOp1 && It1.isDef() )
359 assert( 0 && "No LR for Def in PSEUDO insruction");
360
Chris Lattner7a176752001-12-04 00:03:30 +0000361 MachineInstr::val_const_op_iterator It2 = It1;
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000362 ++It2;
363
364 for( ; !It2.done(); ++It2) {
365
366 const LiveRange *const LROfOp2 = LRI.getLiveRangeForValue( *It2 );
367
368 if( LROfOp2) {
369
370 RegClass *const RCOfOp1 = LROfOp1->getRegClass();
371 RegClass *const RCOfOp2 = LROfOp2->getRegClass();
372
373 if( RCOfOp1 == RCOfOp2 ){
374 RCOfOp1->setInterference( LROfOp1, LROfOp2 );
Ruchira Sasankaf6dfca12001-11-15 15:00:53 +0000375 setInterf = true;
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000376 }
377
378 } // if Op2 has a LR
379
380 } // for all other defs in machine instr
381
382 } // for all operands in an instruction
383
Ruchira Sasankaf6dfca12001-11-15 15:00:53 +0000384 if( !setInterf && (MInst->getNumOperands() > 2) ) {
385 cerr << "\nInterf not set for any operand in pseudo instr:\n";
386 cerr << *MInst;
387 assert(0 && "Interf not set for pseudo instr with > 2 operands" );
388
389 }
390
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000391}
392
393
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000394
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000395//----------------------------------------------------------------------------
396// This method will add interferences for incoming arguments to a method.
397//----------------------------------------------------------------------------
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000398void PhyRegAlloc::addInterferencesForArgs()
399{
400 // get the InSet of root BB
401 const LiveVarSet *const InSet = LVI->getInSetOfBB( Meth->front() );
402
403 // get the argument list
404 const Method::ArgumentListType& ArgList = Meth->getArgumentList();
405
406 // get an iterator to arg list
407 Method::ArgumentListType::const_iterator ArgIt = ArgList.begin();
408
409
410 for( ; ArgIt != ArgList.end() ; ++ArgIt) { // for each argument
411 addInterference( *ArgIt, InSet, false ); // add interferences between
412 // args and LVars at start
413 if( DEBUG_RA > 1) {
Ruchira Sasanka97b8b442001-10-18 22:36:26 +0000414 cout << " - %% adding interference for argument ";
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000415 printValue( (const Value *) *ArgIt); cout << endl;
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000416 }
417 }
418}
419
420
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000421
422
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000423//----------------------------------------------------------------------------
424// This method is called after register allocation is complete to set the
425// allocated reisters in the machine code. This code will add register numbers
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000426// to MachineOperands that contain a Value. Also it calls target specific
427// methods to produce caller saving instructions. At the end, it adds all
428// additional instructions produced by the register allocator to the
429// instruction stream.
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000430//----------------------------------------------------------------------------
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000431void PhyRegAlloc::updateMachineCode()
432{
433
434 Method::const_iterator BBI = Meth->begin(); // random iterator for BBs
435
436 for( ; BBI != Meth->end(); ++BBI) { // traverse BBs in random order
437
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000438 // get the iterator for machine instructions
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000439 //
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000440 MachineCodeForBasicBlock& MIVec = (*BBI)->getMachineInstrVec();
441 MachineCodeForBasicBlock::iterator MInstIterator = MIVec.begin();
442
443 // iterate over all the machine instructions in BB
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000444 //
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000445 for( ; MInstIterator != MIVec.end(); ++MInstIterator) {
446
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +0000447 MachineInstr *MInst = *MInstIterator;
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000448
449 unsigned Opcode = MInst->getOpCode();
450
Ruchira Sasanka65480b72001-11-10 21:21:36 +0000451 // do not process Phis
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000452 if( (TM.getInstrInfo()).isPhi( Opcode ) )
Ruchira Sasanka65480b72001-11-10 21:21:36 +0000453 continue;
454
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000455 // Now insert speical instructions (if necessary) for call/return
456 // instructions.
457 //
458 if( (TM.getInstrInfo()).isCall( Opcode) ||
459 (TM.getInstrInfo()).isReturn( Opcode) ) {
460
461 AddedInstrns *AI = AddedInstrMap[ MInst];
462 if ( !AI ) {
463 AI = new AddedInstrns();
464 AddedInstrMap[ MInst ] = AI;
465 }
466
467 // Tmp stack poistions are needed by some calls that have spilled args
468 // So reset it before we call each such method
Ruchira Sasanka6a3db8c2002-01-07 21:09:06 +0000469 //
470 mcInfo.popAllTempValues(TM);
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000471
472 if( (TM.getInstrInfo()).isCall( Opcode ) )
473 MRI.colorCallArgs( MInst, LRI, AI, *this, *BBI );
474
475 else if ( (TM.getInstrInfo()).isReturn(Opcode) )
476 MRI.colorRetValue( MInst, LRI, AI );
477
478 }
479
480
481 /* -- Using above code instead of this
Ruchira Sasanka65480b72001-11-10 21:21:36 +0000482
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000483 // if this machine instr is call, insert caller saving code
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +0000484
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000485 if( (TM.getInstrInfo()).isCall( MInst->getOpCode()) )
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000486 MRI.insertCallerSavingCode(MInst, *BBI, *this );
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000487
488 */
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000489
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000490
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000491 // reset the stack offset for temporary variables since we may
492 // need that to spill
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000493 // mcInfo.popAllTempValues(TM);
Ruchira Sasankaf90870f2001-11-15 22:02:06 +0000494 // TODO ** : do later
Vikram S. Adve12af1642001-11-08 04:48:50 +0000495
Chris Lattner7a176752001-12-04 00:03:30 +0000496 //for(MachineInstr::val_const_op_iterator OpI(MInst);!OpI.done();++OpI) {
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000497
Ruchira Sasankaf221a2e2001-11-13 23:09:30 +0000498
499 // Now replace set the registers for operands in the machine instruction
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000500 //
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000501 for(unsigned OpNum=0; OpNum < MInst->getNumOperands(); ++OpNum) {
502
503 MachineOperand& Op = MInst->getOperand(OpNum);
504
505 if( Op.getOperandType() == MachineOperand::MO_VirtualRegister ||
506 Op.getOperandType() == MachineOperand::MO_CCRegister) {
507
508 const Value *const Val = Op.getVRegValue();
509
510 // delete this condition checking later (must assert if Val is null)
Chris Lattner045e7c82001-09-19 16:26:23 +0000511 if( !Val) {
512 if (DEBUG_RA)
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000513 cout << "Warning: NULL Value found for operand" << endl;
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000514 continue;
515 }
516 assert( Val && "Value is NULL");
517
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000518 LiveRange *const LR = LRI.getLiveRangeForValue(Val);
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000519
520 if ( !LR ) {
Ruchira Sasankae727f852001-09-18 22:43:57 +0000521
522 // nothing to worry if it's a const or a label
523
Chris Lattner4c3aaa42001-09-19 16:09:04 +0000524 if (DEBUG_RA) {
Ruchira Sasanka1b732fd2001-10-16 16:34:44 +0000525 cout << "*NO LR for operand : " << Op ;
526 cout << " [reg:" << Op.getAllocatedRegNum() << "]";
527 cout << " in inst:\t" << *MInst << endl;
Chris Lattner4c3aaa42001-09-19 16:09:04 +0000528 }
Ruchira Sasankae727f852001-09-18 22:43:57 +0000529
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000530 // if register is not allocated, mark register as invalid
Ruchira Sasankaa90e7702001-10-15 16:26:38 +0000531 if( Op.getAllocatedRegNum() == -1)
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000532 Op.setRegForValue( MRI.getInvalidRegNum());
Ruchira Sasankae727f852001-09-18 22:43:57 +0000533
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +0000534
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000535 continue;
536 }
537
538 unsigned RCID = (LR->getRegClass())->getID();
539
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000540 if( LR->hasColor() ) {
541 Op.setRegForValue( MRI.getUnifiedRegNum(RCID, LR->getColor()) );
542 }
543 else {
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000544
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000545 // LR did NOT receive a color (register). Now, insert spill code
546 // for spilled opeands in this machine instruction
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000547
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000548 //assert(0 && "LR must be spilled");
549 insertCode4SpilledLR(LR, MInst, *BBI, OpNum );
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000550
551 }
Ruchira Sasankae727f852001-09-18 22:43:57 +0000552 }
553
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000554 } // for each operand
555
556
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000557 // Now add instructions that the register allocator inserts before/after
558 // this machine instructions (done only for calls/rets/incoming args)
559 // We do this here, to ensure that spill for an instruction is inserted
560 // closest as possible to an instruction (see above insertCode4Spill...)
561 //
Ruchira Sasankaf221a2e2001-11-13 23:09:30 +0000562 // If there are instructions to be added, *before* this machine
563 // instruction, add them now.
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000564 //
Ruchira Sasankaf221a2e2001-11-13 23:09:30 +0000565 if( AddedInstrMap[ MInst ] ) {
566
567 deque<MachineInstr *> &IBef = (AddedInstrMap[MInst])->InstrnsBefore;
568
569 if( ! IBef.empty() ) {
570
571 deque<MachineInstr *>::iterator AdIt;
572
573 for( AdIt = IBef.begin(); AdIt != IBef.end() ; ++AdIt ) {
574
575 if( DEBUG_RA) {
576 cerr << "For inst " << *MInst;
577 cerr << " PREPENDed instr: " << **AdIt << endl;
578 }
579
580 MInstIterator = MIVec.insert( MInstIterator, *AdIt );
581 ++MInstIterator;
582 }
583
584 }
585
586 }
587
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000588 // If there are instructions to be added *after* this machine
589 // instruction, add them now
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000590 //
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000591 if( AddedInstrMap[ MInst ] &&
592 ! (AddedInstrMap[ MInst ]->InstrnsAfter).empty() ) {
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000593
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000594 // if there are delay slots for this instruction, the instructions
595 // added after it must really go after the delayed instruction(s)
596 // So, we move the InstrAfter of the current instruction to the
597 // corresponding delayed instruction
598
599 unsigned delay;
600 if((delay=TM.getInstrInfo().getNumDelaySlots(MInst->getOpCode())) >0){
601 move2DelayedInstr(MInst, *(MInstIterator+delay) );
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000602
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000603 if(DEBUG_RA) cout<< "\nMoved an added instr after the delay slot";
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000604 }
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000605
606 else {
607
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000608
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000609 // Here we can add the "instructions after" to the current
610 // instruction since there are no delay slots for this instruction
611
612 deque<MachineInstr *> &IAft = (AddedInstrMap[MInst])->InstrnsAfter;
613
614 if( ! IAft.empty() ) {
615
616 deque<MachineInstr *>::iterator AdIt;
617
618 ++MInstIterator; // advance to the next instruction
619
620 for( AdIt = IAft.begin(); AdIt != IAft.end() ; ++AdIt ) {
621
Ruchira Sasankaf221a2e2001-11-13 23:09:30 +0000622 if(DEBUG_RA) {
623 cerr << "For inst " << *MInst;
Ruchira Sasankaad140092001-11-09 23:49:42 +0000624 cerr << " APPENDed instr: " << **AdIt << endl;
Ruchira Sasankaf221a2e2001-11-13 23:09:30 +0000625 }
626
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000627 MInstIterator = MIVec.insert( MInstIterator, *AdIt );
628 ++MInstIterator;
629 }
630
631 // MInsterator already points to the next instr. Since the
632 // for loop also increments it, decrement it to point to the
633 // instruction added last
634 --MInstIterator;
635
636 }
637
638 } // if not delay
639
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000640 }
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000641
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000642 } // for each machine instruction
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000643 }
644}
645
646
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000647
648//----------------------------------------------------------------------------
649// This method inserts spill code for AN operand whose LR was spilled.
650// This method may be called several times for a single machine instruction
651// if it contains many spilled operands. Each time it is called, it finds
652// a register which is not live at that instruction and also which is not
653// used by other spilled operands of the same instruction. Then it uses
654// this register temporarily to accomodate the spilled value.
655//----------------------------------------------------------------------------
656void PhyRegAlloc::insertCode4SpilledLR(const LiveRange *LR,
657 MachineInstr *MInst,
658 const BasicBlock *BB,
659 const unsigned OpNum) {
660
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000661 assert(! TM.getInstrInfo().isCall(MInst->getOpCode()) &&
662 (! TM.getInstrInfo().isReturn(MInst->getOpCode())) &&
663 "Arg of a call/ret must be handled elsewhere");
664
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000665 MachineOperand& Op = MInst->getOperand(OpNum);
666 bool isDef = MInst->operandIsDefined(OpNum);
667 unsigned RegType = MRI.getRegType( LR );
668 int SpillOff = LR->getSpillOffFromFP();
669 RegClass *RC = LR->getRegClass();
670 const LiveVarSet *LVSetBef = LVI->getLiveVarSetBeforeMInst(MInst, BB);
Vikram S. Adve00521d72001-11-12 23:26:35 +0000671
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000672
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000673 int TmpOff =
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000674 mcInfo.pushTempValue(TM, MRI.getSpilledRegSize(RegType) );
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000675
Ruchira Sasanka226f1f02001-11-08 19:11:30 +0000676 MachineInstr *MIBef=NULL, *AdIMid=NULL, *MIAft=NULL;
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000677
678 int TmpRegU = getUsableUniRegAtMI(RC, RegType, MInst,LVSetBef, MIBef, MIAft);
679
Ruchira Sasanka226f1f02001-11-08 19:11:30 +0000680 // get the added instructions for this instruciton
681 AddedInstrns *AI = AddedInstrMap[ MInst ];
682 if ( !AI ) {
683 AI = new AddedInstrns();
684 AddedInstrMap[ MInst ] = AI;
685 }
686
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000687
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000688 if( !isDef ) {
689
690 // for a USE, we have to load the value of LR from stack to a TmpReg
691 // and use the TmpReg as one operand of instruction
692
693 // actual loading instruction
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000694 AdIMid = MRI.cpMem2RegMI(MRI.getFramePointer(), SpillOff, TmpRegU,RegType);
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000695
696 if( MIBef )
Ruchira Sasanka226f1f02001-11-08 19:11:30 +0000697 (AI->InstrnsBefore).push_back(MIBef);
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000698
Ruchira Sasanka226f1f02001-11-08 19:11:30 +0000699 (AI->InstrnsBefore).push_back(AdIMid);
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000700
701 if( MIAft)
Ruchira Sasanka226f1f02001-11-08 19:11:30 +0000702 (AI->InstrnsAfter).push_front(MIAft);
703
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000704
705 }
706 else { // if this is a Def
707
708 // for a DEF, we have to store the value produced by this instruction
709 // on the stack position allocated for this LR
710
711 // actual storing instruction
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000712 AdIMid = MRI.cpReg2MemMI(TmpRegU, MRI.getFramePointer(), SpillOff,RegType);
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000713
714 if( MIBef )
Ruchira Sasanka226f1f02001-11-08 19:11:30 +0000715 (AI->InstrnsBefore).push_back(MIBef);
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000716
Ruchira Sasankaf221a2e2001-11-13 23:09:30 +0000717 (AI->InstrnsAfter).push_front(AdIMid);
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000718
719 if( MIAft)
Ruchira Sasanka226f1f02001-11-08 19:11:30 +0000720 (AI->InstrnsAfter).push_front(MIAft);
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000721
722 } // if !DEF
723
724 cerr << "\nFor Inst " << *MInst;
Ruchira Sasanka65480b72001-11-10 21:21:36 +0000725 cerr << " - SPILLED LR: "; LR->printSet();
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000726 cerr << "\n - Added Instructions:";
727 if( MIBef ) cerr << *MIBef;
728 cerr << *AdIMid;
729 if( MIAft ) cerr << *MIAft;
730
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000731 Op.setRegForValue( TmpRegU ); // set the opearnd
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000732
733
734}
735
736
737
738
739
740
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000741//----------------------------------------------------------------------------
742// We can use the following method to get a temporary register to be used
743// BEFORE any given machine instruction. If there is a register available,
744// this method will simply return that register and set MIBef = MIAft = NULL.
745// Otherwise, it will return a register and MIAft and MIBef will contain
746// two instructions used to free up this returned register.
Ruchira Sasanka80b1a1a2001-11-03 20:41:22 +0000747// Returned register number is the UNIFIED register number
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000748//----------------------------------------------------------------------------
749
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000750int PhyRegAlloc::getUsableUniRegAtMI(RegClass *RC,
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000751 const int RegType,
752 const MachineInstr *MInst,
753 const LiveVarSet *LVSetBef,
754 MachineInstr *MIBef,
755 MachineInstr *MIAft) {
756
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000757 int RegU = getUnusedUniRegAtMI(RC, MInst, LVSetBef);
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000758
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000759
760 if( RegU != -1) {
Ruchira Sasankaf6dfca12001-11-15 15:00:53 +0000761 // we found an unused register, so we can simply use it
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000762 MIBef = MIAft = NULL;
763 }
764 else {
Ruchira Sasanka80b1a1a2001-11-03 20:41:22 +0000765 // we couldn't find an unused register. Generate code to free up a reg by
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000766 // saving it on stack and restoring after the instruction
767
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000768 int TmpOff = mcInfo.pushTempValue(TM, MRI.getSpilledRegSize(RegType) );
Vikram S. Adve12af1642001-11-08 04:48:50 +0000769
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000770 RegU = getUniRegNotUsedByThisInst(RC, MInst);
771 MIBef = MRI.cpReg2MemMI(RegU, MRI.getFramePointer(), TmpOff, RegType );
772 MIAft = MRI.cpMem2RegMI(MRI.getFramePointer(), TmpOff, RegU, RegType );
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000773 }
774
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000775 return RegU;
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000776}
777
778//----------------------------------------------------------------------------
779// This method is called to get a new unused register that can be used to
780// accomodate a spilled value.
781// This method may be called several times for a single machine instruction
782// if it contains many spilled operands. Each time it is called, it finds
783// a register which is not live at that instruction and also which is not
784// used by other spilled operands of the same instruction.
Ruchira Sasanka80b1a1a2001-11-03 20:41:22 +0000785// Return register number is relative to the register class. NOT
786// unified number
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000787//----------------------------------------------------------------------------
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000788int PhyRegAlloc::getUnusedUniRegAtMI(RegClass *RC,
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000789 const MachineInstr *MInst,
790 const LiveVarSet *LVSetBef) {
791
792 unsigned NumAvailRegs = RC->getNumOfAvailRegs();
793
794 bool *IsColorUsedArr = RC->getIsColorUsedArr();
795
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000796 for(unsigned i=0; i < NumAvailRegs; i++) // Reset array
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000797 IsColorUsedArr[i] = false;
798
799 LiveVarSet::const_iterator LIt = LVSetBef->begin();
800
801 // for each live var in live variable set after machine inst
802 for( ; LIt != LVSetBef->end(); ++LIt) {
803
804 // get the live range corresponding to live var
805 LiveRange *const LRofLV = LRI.getLiveRangeForValue(*LIt );
806
807 // LR can be null if it is a const since a const
808 // doesn't have a dominating def - see Assumptions above
809 if( LRofLV )
810 if( LRofLV->hasColor() )
811 IsColorUsedArr[ LRofLV->getColor() ] = true;
812 }
813
814 // It is possible that one operand of this MInst was already spilled
815 // and it received some register temporarily. If that's the case,
816 // it is recorded in machine operand. We must skip such registers.
817
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000818 setRelRegsUsedByThisInst(RC, MInst);
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000819
820 unsigned c; // find first unused color
821 for( c=0; c < NumAvailRegs; c++)
822 if( ! IsColorUsedArr[ c ] ) break;
823
824 if(c < NumAvailRegs)
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000825 return MRI.getUnifiedRegNum(RC->getID(), c);
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000826 else
827 return -1;
828
829
830}
831
832
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000833//----------------------------------------------------------------------------
834// Get any other register in a register class, other than what is used
835// by operands of a machine instruction. Returns the unified reg number.
836//----------------------------------------------------------------------------
837int PhyRegAlloc::getUniRegNotUsedByThisInst(RegClass *RC,
838 const MachineInstr *MInst) {
839
840 bool *IsColorUsedArr = RC->getIsColorUsedArr();
841 unsigned NumAvailRegs = RC->getNumOfAvailRegs();
842
843
844 for(unsigned i=0; i < NumAvailRegs ; i++) // Reset array
845 IsColorUsedArr[i] = false;
846
847 setRelRegsUsedByThisInst(RC, MInst);
848
849 unsigned c; // find first unused color
850 for( c=0; c < RC->getNumOfAvailRegs(); c++)
851 if( ! IsColorUsedArr[ c ] ) break;
852
853 if(c < NumAvailRegs)
854 return MRI.getUnifiedRegNum(RC->getID(), c);
855 else
856 assert( 0 && "FATAL: No free register could be found in reg class!!");
857
858}
859
860
861
862
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000863
864//----------------------------------------------------------------------------
865// This method modifies the IsColorUsedArr of the register class passed to it.
866// It sets the bits corresponding to the registers used by this machine
Ruchira Sasankaf6dfca12001-11-15 15:00:53 +0000867// instructions. Both explicit and implicit operands are set.
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000868//----------------------------------------------------------------------------
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000869void PhyRegAlloc::setRelRegsUsedByThisInst(RegClass *RC,
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000870 const MachineInstr *MInst ) {
871
872 bool *IsColorUsedArr = RC->getIsColorUsedArr();
873
874 for(unsigned OpNum=0; OpNum < MInst->getNumOperands(); ++OpNum) {
875
876 const MachineOperand& Op = MInst->getOperand(OpNum);
877
878 if( Op.getOperandType() == MachineOperand::MO_VirtualRegister ||
Ruchira Sasankaf6dfca12001-11-15 15:00:53 +0000879 Op.getOperandType() == MachineOperand::MO_CCRegister ) {
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000880
881 const Value *const Val = Op.getVRegValue();
882
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000883 if( Val )
884 if( MRI.getRegClassIDOfValue(Val) == RC->getID() ) {
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000885 int Reg;
Ruchira Sasankaf6dfca12001-11-15 15:00:53 +0000886 if( (Reg=Op.getAllocatedRegNum()) != -1) {
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000887 IsColorUsedArr[ Reg ] = true;
Ruchira Sasankaf6dfca12001-11-15 15:00:53 +0000888 }
889 else {
890 // it is possilbe that this operand still is not marked with
891 // a register but it has a LR and that received a color
892
893 LiveRange *LROfVal = LRI.getLiveRangeForValue(Val);
894 if( LROfVal)
895 if( LROfVal->hasColor() )
896 IsColorUsedArr[ LROfVal->getColor() ] = true;
897 }
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000898
Ruchira Sasankaf6dfca12001-11-15 15:00:53 +0000899 } // if reg classes are the same
900 }
901 else if (Op.getOperandType() == MachineOperand::MO_MachineRegister) {
902 IsColorUsedArr[ Op.getMachineRegNum() ] = true;
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000903 }
904 }
905
906 // If there are implicit references, mark them as well
907
908 for(unsigned z=0; z < MInst->getNumImplicitRefs(); z++) {
909
910 LiveRange *const LRofImpRef =
911 LRI.getLiveRangeForValue( MInst->getImplicitRef(z) );
912
913 if( LRofImpRef )
914 if( LRofImpRef->hasColor() )
915 IsColorUsedArr[ LRofImpRef->getColor() ] = true;
916 }
917
918
919
920}
921
922
923
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000924
925
926
927
928
929//----------------------------------------------------------------------------
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000930// If there are delay slots for an instruction, the instructions
931// added after it must really go after the delayed instruction(s).
932// So, we move the InstrAfter of that instruction to the
933// corresponding delayed instruction using the following method.
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000934
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000935//----------------------------------------------------------------------------
936void PhyRegAlloc:: move2DelayedInstr(const MachineInstr *OrigMI,
937 const MachineInstr *DelayedMI) {
938
939
940 // "added after" instructions of the original instr
941 deque<MachineInstr *> &OrigAft = (AddedInstrMap[OrigMI])->InstrnsAfter;
942
943 // "added instructions" of the delayed instr
944 AddedInstrns *DelayAdI = AddedInstrMap[DelayedMI];
945
946 if(! DelayAdI ) { // create a new "added after" if necessary
947 DelayAdI = new AddedInstrns();
948 AddedInstrMap[DelayedMI] = DelayAdI;
949 }
950
951 // "added after" instructions of the delayed instr
952 deque<MachineInstr *> &DelayedAft = DelayAdI->InstrnsAfter;
953
954 // go thru all the "added after instructions" of the original instruction
955 // and append them to the "addded after instructions" of the delayed
956 // instructions
957
958 deque<MachineInstr *>::iterator OrigAdIt;
959
960 for( OrigAdIt = OrigAft.begin(); OrigAdIt != OrigAft.end() ; ++OrigAdIt ) {
961 DelayedAft.push_back( *OrigAdIt );
962 }
963
964 // empty the "added after instructions" of the original instruction
965 OrigAft.clear();
966
967}
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000968
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000969//----------------------------------------------------------------------------
970// This method prints the code with registers after register allocation is
971// complete.
972//----------------------------------------------------------------------------
973void PhyRegAlloc::printMachineCode()
974{
975
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000976 cout << endl << ";************** Method ";
977 cout << Meth->getName() << " *****************" << endl;
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000978
979 Method::const_iterator BBI = Meth->begin(); // random iterator for BBs
980
981 for( ; BBI != Meth->end(); ++BBI) { // traverse BBs in random order
982
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000983 cout << endl ; printLabel( *BBI); cout << ": ";
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000984
985 // get the iterator for machine instructions
986 MachineCodeForBasicBlock& MIVec = (*BBI)->getMachineInstrVec();
987 MachineCodeForBasicBlock::iterator MInstIterator = MIVec.begin();
988
989 // iterate over all the machine instructions in BB
990 for( ; MInstIterator != MIVec.end(); ++MInstIterator) {
991
992 MachineInstr *const MInst = *MInstIterator;
993
994
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000995 cout << endl << "\t";
996 cout << TargetInstrDescriptors[MInst->getOpCode()].opCodeString;
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000997
998
Chris Lattner7a176752001-12-04 00:03:30 +0000999 //for(MachineInstr::val_const_op_iterator OpI(MInst);!OpI.done();++OpI) {
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001000
1001 for(unsigned OpNum=0; OpNum < MInst->getNumOperands(); ++OpNum) {
1002
1003 MachineOperand& Op = MInst->getOperand(OpNum);
1004
1005 if( Op.getOperandType() == MachineOperand::MO_VirtualRegister ||
Ruchira Sasanka97b8b442001-10-18 22:36:26 +00001006 Op.getOperandType() == MachineOperand::MO_CCRegister /*||
1007 Op.getOperandType() == MachineOperand::MO_PCRelativeDisp*/ ) {
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001008
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001009 const Value *const Val = Op.getVRegValue () ;
Ruchira Sasankae727f852001-09-18 22:43:57 +00001010 // ****this code is temporary till NULL Values are fixed
1011 if( ! Val ) {
Ruchira Sasankac4d4b762001-10-16 01:23:19 +00001012 cout << "\t<*NULL*>";
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001013 continue;
1014 }
Ruchira Sasankae727f852001-09-18 22:43:57 +00001015
1016 // if a label or a constant
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001017 if( (Val->getValueType() == Value::BasicBlockVal) ) {
Ruchira Sasankae727f852001-09-18 22:43:57 +00001018
Ruchira Sasankac4d4b762001-10-16 01:23:19 +00001019 cout << "\t"; printLabel( Op.getVRegValue () );
Ruchira Sasankae727f852001-09-18 22:43:57 +00001020 }
1021 else {
1022 // else it must be a register value
1023 const int RegNum = Op.getAllocatedRegNum();
1024
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001025 cout << "\t" << "%" << MRI.getUnifiedRegName( RegNum );
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +00001026 if (Val->hasName() )
1027 cout << "(" << Val->getName() << ")";
1028 else
1029 cout << "(" << Val << ")";
1030
1031 if( Op.opIsDef() )
1032 cout << "*";
1033
1034 const LiveRange *LROfVal = LRI.getLiveRangeForValue(Val);
1035 if( LROfVal )
1036 if( LROfVal->hasSpillOffset() )
1037 cout << "$";
Ruchira Sasankae727f852001-09-18 22:43:57 +00001038 }
1039
1040 }
1041 else if(Op.getOperandType() == MachineOperand::MO_MachineRegister) {
Ruchira Sasankac4d4b762001-10-16 01:23:19 +00001042 cout << "\t" << "%" << MRI.getUnifiedRegName(Op.getMachineRegNum());
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001043 }
1044
1045 else
Ruchira Sasankac4d4b762001-10-16 01:23:19 +00001046 cout << "\t" << Op; // use dump field
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001047 }
1048
Ruchira Sasankac4d4b762001-10-16 01:23:19 +00001049
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001050
Ruchira Sasankac4d4b762001-10-16 01:23:19 +00001051 unsigned NumOfImpRefs = MInst->getNumImplicitRefs();
1052 if( NumOfImpRefs > 0 ) {
1053
1054 cout << "\tImplicit:";
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001055
Ruchira Sasankac4d4b762001-10-16 01:23:19 +00001056 for(unsigned z=0; z < NumOfImpRefs; z++) {
1057 printValue( MInst->getImplicitRef(z) );
1058 cout << "\t";
1059 }
1060
1061 }
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001062
Ruchira Sasankac4d4b762001-10-16 01:23:19 +00001063 } // for all machine instructions
1064
1065
1066 cout << endl;
1067
1068 } // for all BBs
1069
1070 cout << endl;
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001071}
1072
Ruchira Sasankae727f852001-09-18 22:43:57 +00001073
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +00001074#if 0
1075
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001076//----------------------------------------------------------------------------
1077//
1078//----------------------------------------------------------------------------
1079
1080void PhyRegAlloc::colorCallRetArgs()
1081{
1082
1083 CallRetInstrListType &CallRetInstList = LRI.getCallRetInstrList();
1084 CallRetInstrListType::const_iterator It = CallRetInstList.begin();
1085
1086 for( ; It != CallRetInstList.end(); ++It ) {
1087
Ruchira Sasankaa90e7702001-10-15 16:26:38 +00001088 const MachineInstr *const CRMI = *It;
1089 unsigned OpCode = CRMI->getOpCode();
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001090
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001091 // get the added instructions for this Call/Ret instruciton
1092 AddedInstrns *AI = AddedInstrMap[ CRMI ];
1093 if ( !AI ) {
1094 AI = new AddedInstrns();
1095 AddedInstrMap[ CRMI ] = AI;
1096 }
1097
Ruchira Sasanka174bded2001-10-28 18:12:02 +00001098 // Tmp stack poistions are needed by some calls that have spilled args
1099 // So reset it before we call each such method
Ruchira Sasankaf90870f2001-11-15 22:02:06 +00001100 //mcInfo.popAllTempValues(TM);
1101
1102
Vikram S. Adve12af1642001-11-08 04:48:50 +00001103
Ruchira Sasankaa90e7702001-10-15 16:26:38 +00001104 if( (TM.getInstrInfo()).isCall( OpCode ) )
Ruchira Sasanka174bded2001-10-28 18:12:02 +00001105 MRI.colorCallArgs( CRMI, LRI, AI, *this );
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001106
Ruchira Sasankaa90e7702001-10-15 16:26:38 +00001107 else if ( (TM.getInstrInfo()).isReturn(OpCode) )
1108 MRI.colorRetValue( CRMI, LRI, AI );
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001109
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001110 else assert( 0 && "Non Call/Ret instrn in CallRetInstrList\n" );
1111
1112 }
1113
1114}
1115
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +00001116#endif
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001117
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001118//----------------------------------------------------------------------------
1119
1120//----------------------------------------------------------------------------
1121void PhyRegAlloc::colorIncomingArgs()
1122{
1123 const BasicBlock *const FirstBB = Meth->front();
1124 const MachineInstr *FirstMI = *((FirstBB->getMachineInstrVec()).begin());
1125 assert( FirstMI && "No machine instruction in entry BB");
1126
1127 AddedInstrns *AI = AddedInstrMap[ FirstMI ];
1128 if ( !AI ) {
1129 AI = new AddedInstrns();
1130 AddedInstrMap[ FirstMI ] = AI;
1131 }
1132
1133 MRI.colorMethodArgs(Meth, LRI, AI );
1134}
1135
Ruchira Sasankae727f852001-09-18 22:43:57 +00001136
1137//----------------------------------------------------------------------------
1138// Used to generate a label for a basic block
1139//----------------------------------------------------------------------------
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001140void PhyRegAlloc::printLabel(const Value *const Val)
1141{
1142 if( Val->hasName() )
Ruchira Sasankac4d4b762001-10-16 01:23:19 +00001143 cout << Val->getName();
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001144 else
Ruchira Sasankac4d4b762001-10-16 01:23:19 +00001145 cout << "Label" << Val;
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001146}
1147
1148
Ruchira Sasankae727f852001-09-18 22:43:57 +00001149//----------------------------------------------------------------------------
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001150// This method calls setSugColorUsable method of each live range. This
1151// will determine whether the suggested color of LR is really usable.
1152// A suggested color is not usable when the suggested color is volatile
1153// AND when there are call interferences
1154//----------------------------------------------------------------------------
1155
1156void PhyRegAlloc::markUnusableSugColors()
1157{
Ruchira Sasanka174bded2001-10-28 18:12:02 +00001158 if(DEBUG_RA ) cout << "\nmarking unusable suggested colors ..." << endl;
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001159
1160 // hash map iterator
1161 LiveRangeMapType::const_iterator HMI = (LRI.getLiveRangeMap())->begin();
1162 LiveRangeMapType::const_iterator HMIEnd = (LRI.getLiveRangeMap())->end();
1163
1164 for( ; HMI != HMIEnd ; ++HMI ) {
1165
1166 if( (*HMI).first ) {
1167
1168 LiveRange *L = (*HMI).second; // get the LiveRange
1169
1170 if(L) {
1171 if( L->hasSuggestedColor() ) {
1172
1173 int RCID = (L->getRegClass())->getID();
1174 if( MRI.isRegVolatile( RCID, L->getSuggestedColor()) &&
1175 L->isCallInterference() )
1176 L->setSuggestedColorUsable( false );
1177 else
1178 L->setSuggestedColorUsable( true );
1179 }
1180 } // if L->hasSuggestedColor()
1181 }
1182 } // for all LR's in hash map
1183}
1184
1185
1186
Ruchira Sasanka174bded2001-10-28 18:12:02 +00001187//----------------------------------------------------------------------------
1188// The following method will set the stack offsets of the live ranges that
1189// are decided to be spillled. This must be called just after coloring the
1190// LRs using the graph coloring algo. For each live range that is spilled,
1191// this method allocate a new spill position on the stack.
1192//----------------------------------------------------------------------------
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001193
Ruchira Sasanka174bded2001-10-28 18:12:02 +00001194void PhyRegAlloc::allocateStackSpace4SpilledLRs()
1195{
1196 if(DEBUG_RA ) cout << "\nsetting LR stack offsets ..." << endl;
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001197
Ruchira Sasanka174bded2001-10-28 18:12:02 +00001198 // hash map iterator
1199 LiveRangeMapType::const_iterator HMI = (LRI.getLiveRangeMap())->begin();
1200 LiveRangeMapType::const_iterator HMIEnd = (LRI.getLiveRangeMap())->end();
1201
1202 for( ; HMI != HMIEnd ; ++HMI ) {
Ruchira Sasanka174bded2001-10-28 18:12:02 +00001203 if( (*HMI).first ) {
1204 LiveRange *L = (*HMI).second; // get the LiveRange
1205 if(L)
1206 if( ! L->hasColor() )
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +00001207
1208 // NOTE: ** allocating the size of long Type **
1209 L->setSpillOffFromFP(mcInfo.allocateSpilledValue(TM,
1210 Type::LongTy));
1211
Ruchira Sasanka174bded2001-10-28 18:12:02 +00001212 }
1213 } // for all LR's in hash map
Ruchira Sasanka174bded2001-10-28 18:12:02 +00001214}
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001215
1216
1217
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001218//----------------------------------------------------------------------------
Ruchira Sasankae727f852001-09-18 22:43:57 +00001219// The entry pont to Register Allocation
1220//----------------------------------------------------------------------------
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001221
1222void PhyRegAlloc::allocateRegisters()
1223{
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001224
1225 // make sure that we put all register classes into the RegClassList
1226 // before we call constructLiveRanges (now done in the constructor of
1227 // PhyRegAlloc class).
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +00001228 //
1229 LRI.constructLiveRanges(); // create LR info
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001230
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001231 if( DEBUG_RA )
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001232 LRI.printLiveRanges();
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001233
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001234 createIGNodeListsAndIGs(); // create IGNode list and IGs
1235
1236 buildInterferenceGraphs(); // build IGs in all reg classes
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001237
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001238
1239 if( DEBUG_RA ) {
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001240 // print all LRs in all reg classes
1241 for( unsigned int rc=0; rc < NumOfRegClasses ; rc++)
1242 RegClassList[ rc ]->printIGNodeList();
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001243
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001244 // print IGs in all register classes
1245 for( unsigned int rc=0; rc < NumOfRegClasses ; rc++)
1246 RegClassList[ rc ]->printIG();
1247 }
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001248
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +00001249
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001250 LRI.coalesceLRs(); // coalesce all live ranges
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001251
Ruchira Sasankaef1b0cb2001-11-03 17:13:27 +00001252
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001253 if( DEBUG_RA) {
1254 // print all LRs in all reg classes
1255 for( unsigned int rc=0; rc < NumOfRegClasses ; rc++)
1256 RegClassList[ rc ]->printIGNodeList();
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001257
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001258 // print IGs in all register classes
1259 for( unsigned int rc=0; rc < NumOfRegClasses ; rc++)
1260 RegClassList[ rc ]->printIG();
1261 }
1262
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001263
1264 // mark un-usable suggested color before graph coloring algorithm.
1265 // When this is done, the graph coloring algo will not reserve
1266 // suggested color unnecessarily - they can be used by another LR
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +00001267 //
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001268 markUnusableSugColors();
1269
1270 // color all register classes using the graph coloring algo
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001271 for( unsigned int rc=0; rc < NumOfRegClasses ; rc++)
1272 RegClassList[ rc ]->colorAllRegs();
1273
Ruchira Sasanka174bded2001-10-28 18:12:02 +00001274 // Atter grpah coloring, if some LRs did not receive a color (i.e, spilled)
1275 // a poistion for such spilled LRs
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +00001276 //
Ruchira Sasanka174bded2001-10-28 18:12:02 +00001277 allocateStackSpace4SpilledLRs();
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001278
Ruchira Sasankaf90870f2001-11-15 22:02:06 +00001279 mcInfo.popAllTempValues(TM); // TODO **Check
1280
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +00001281 // color incoming args - if the correct color was not received
1282 // insert code to copy to the correct register
1283 //
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001284 colorIncomingArgs();
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001285
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +00001286
1287 // Now update the machine code with register names and add any
1288 // additional code inserted by the register allocator to the instruction
1289 // stream
1290 //
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001291 updateMachineCode();
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +00001292
1293
Chris Lattner045e7c82001-09-19 16:26:23 +00001294 if (DEBUG_RA) {
Vikram S. Adve12af1642001-11-08 04:48:50 +00001295 MachineCodeForMethod::get(Meth).dump();
Chris Lattner045e7c82001-09-19 16:26:23 +00001296 printMachineCode(); // only for DEBUGGING
1297 }
Ruchira Sasankaf221a2e2001-11-13 23:09:30 +00001298
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001299}
1300
Ruchira Sasankae727f852001-09-18 22:43:57 +00001301
1302