blob: 938ab1b8512a222092ad6242574e1284c5f10371 [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
Chris Lattner6dd98a62002-02-04 00:33:08 +000013#include "llvm/CodeGen/RegisterAllocation.h"
Vikram S. Adve12af1642001-11-08 04:48:50 +000014#include "llvm/CodeGen/PhyRegAlloc.h"
15#include "llvm/CodeGen/MachineInstr.h"
Chris Lattnerdd1e40b2002-02-03 07:46:34 +000016#include "llvm/CodeGen/MachineCodeForMethod.h"
Chris Lattner0a8ed942002-02-04 05:56:09 +000017#include "llvm/Analysis/LiveVar/MethodLiveVarInfo.h"
Chris Lattner296b7732002-02-05 02:52:05 +000018#include "llvm/Analysis/LiveVar/ValueSet.h"
Chris Lattner14ab1ce2002-02-04 17:48:00 +000019#include "llvm/Analysis/LoopInfo.h"
Vikram S. Adve12af1642001-11-08 04:48:50 +000020#include "llvm/Target/TargetMachine.h"
21#include "llvm/Target/MachineFrameInfo.h"
Chris Lattner30adeb62002-02-04 16:36:59 +000022#include "llvm/Method.h"
Chris Lattner697954c2002-01-20 22:54:45 +000023#include <iostream>
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +000024#include <math.h>
Chris Lattner697954c2002-01-20 22:54:45 +000025using std::cerr;
Vikram S. Adve12af1642001-11-08 04:48:50 +000026
27
28// ***TODO: There are several places we add instructions. Validate the order
29// of adding these instructions.
Ruchira Sasanka174bded2001-10-28 18:12:02 +000030
Chris Lattner045e7c82001-09-19 16:26:23 +000031cl::Enum<RegAllocDebugLevel_t> DEBUG_RA("dregalloc", cl::NoFlags,
32 "enable register allocation debugging information",
33 clEnumValN(RA_DEBUG_None , "n", "disable debug output"),
34 clEnumValN(RA_DEBUG_Normal , "y", "enable debug output"),
35 clEnumValN(RA_DEBUG_Verbose, "v", "enable extra debug output"), 0);
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +000036
37
Chris Lattner2f9b28e2002-02-04 15:54:09 +000038//----------------------------------------------------------------------------
39// RegisterAllocation pass front end...
40//----------------------------------------------------------------------------
41namespace {
42 class RegisterAllocator : public MethodPass {
43 TargetMachine &Target;
44 public:
45 inline RegisterAllocator(TargetMachine &T) : Target(T) {}
Chris Lattner6dd98a62002-02-04 00:33:08 +000046
Chris Lattner2f9b28e2002-02-04 15:54:09 +000047 bool runOnMethod(Method *M) {
48 if (DEBUG_RA)
49 cerr << "\n******************** Method "<< M->getName()
50 << " ********************\n";
51
Chris Lattner4d7fc112002-02-04 20:02:38 +000052 PhyRegAlloc PRA(M, Target, &getAnalysis<MethodLiveVarInfo>(),
Chris Lattner14ab1ce2002-02-04 17:48:00 +000053 &getAnalysis<cfg::LoopInfo>());
Chris Lattner2f9b28e2002-02-04 15:54:09 +000054 PRA.allocateRegisters();
55
56 if (DEBUG_RA) cerr << "\nRegister allocation complete!\n";
57 return false;
58 }
Chris Lattner4911c352002-02-04 17:39:42 +000059
60 virtual void getAnalysisUsageInfo(Pass::AnalysisSet &Requires,
61 Pass::AnalysisSet &Destroyed,
62 Pass::AnalysisSet &Provided) {
Chris Lattner14ab1ce2002-02-04 17:48:00 +000063 Requires.push_back(cfg::LoopInfo::ID);
Chris Lattner4d7fc112002-02-04 20:02:38 +000064 Requires.push_back(MethodLiveVarInfo::ID);
Chris Lattner4911c352002-02-04 17:39:42 +000065 }
Chris Lattner2f9b28e2002-02-04 15:54:09 +000066 };
Chris Lattner6dd98a62002-02-04 00:33:08 +000067}
68
Chris Lattner2f9b28e2002-02-04 15:54:09 +000069MethodPass *getRegisterAllocator(TargetMachine &T) {
70 return new RegisterAllocator(T);
71}
Chris Lattner6dd98a62002-02-04 00:33:08 +000072
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +000073//----------------------------------------------------------------------------
74// Constructor: Init local composite objects and create register classes.
75//----------------------------------------------------------------------------
Vikram S. Adve12af1642001-11-08 04:48:50 +000076PhyRegAlloc::PhyRegAlloc(Method *M,
Ruchira Sasanka8e604792001-09-14 21:18:34 +000077 const TargetMachine& tm,
Chris Lattner4911c352002-02-04 17:39:42 +000078 MethodLiveVarInfo *Lvi,
Chris Lattner14ab1ce2002-02-04 17:48:00 +000079 cfg::LoopInfo *LDC)
Chris Lattner697954c2002-01-20 22:54:45 +000080 : TM(tm), Meth(M),
Vikram S. Adve12af1642001-11-08 04:48:50 +000081 mcInfo(MachineCodeForMethod::get(M)),
82 LVI(Lvi), LRI(M, tm, RegClassList),
Ruchira Sasanka8e604792001-09-14 21:18:34 +000083 MRI( tm.getRegInfo() ),
84 NumOfRegClasses(MRI.getNumOfRegClasses()),
Chris Lattner4911c352002-02-04 17:39:42 +000085 LoopDepthCalc(LDC) {
Ruchira Sasanka8e604792001-09-14 21:18:34 +000086
87 // create each RegisterClass and put in RegClassList
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +000088 //
Chris Lattner697954c2002-01-20 22:54:45 +000089 for(unsigned int rc=0; rc < NumOfRegClasses; rc++)
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +000090 RegClassList.push_back( new RegClass(M, MRI.getMachineRegClass(rc),
91 &ResColList) );
Ruchira Sasanka8e604792001-09-14 21:18:34 +000092}
93
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +000094
95//----------------------------------------------------------------------------
96// Destructor: Deletes register classes
97//----------------------------------------------------------------------------
98PhyRegAlloc::~PhyRegAlloc() {
Chris Lattnerdd1e40b2002-02-03 07:46:34 +000099 for( unsigned int rc=0; rc < NumOfRegClasses; rc++)
100 delete RegClassList[rc];
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000101}
102
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000103//----------------------------------------------------------------------------
104// This method initally creates interference graphs (one in each reg class)
105// and IGNodeList (one in each IG). The actual nodes will be pushed later.
106//----------------------------------------------------------------------------
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000107void PhyRegAlloc::createIGNodeListsAndIGs() {
108 if (DEBUG_RA) cerr << "Creating LR lists ...\n";
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000109
110 // hash map iterator
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000111 LiveRangeMapType::const_iterator HMI = LRI.getLiveRangeMap()->begin();
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000112
113 // hash map end
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000114 LiveRangeMapType::const_iterator HMIEnd = LRI.getLiveRangeMap()->end();
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000115
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000116 for (; HMI != HMIEnd ; ++HMI ) {
117 if (HMI->first) {
118 LiveRange *L = HMI->second; // get the LiveRange
119 if (!L) {
120 if( DEBUG_RA) {
Chris Lattner0665a5f2002-02-05 01:43:49 +0000121 cerr << "\n*?!?Warning: Null liver range found for: "
122 << RAV(HMI->first) << "\n";
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000123 }
124 continue;
125 }
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000126 // if the Value * is not null, and LR
127 // is not yet written to the IGNodeList
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000128 if( !(L->getUserIGNode()) ) {
129 RegClass *const RC = // RegClass of first value in the LR
130 RegClassList[ L->getRegClass()->getID() ];
131
132 RC->addLRToIG(L); // add this LR to an IG
133 }
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000134 }
135 }
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000136
137 // init RegClassList
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000138 for( unsigned int rc=0; rc < NumOfRegClasses ; rc++)
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000139 RegClassList[rc]->createInterferenceGraph();
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000140
141 if( DEBUG_RA)
Chris Lattner697954c2002-01-20 22:54:45 +0000142 cerr << "LRLists Created!\n";
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000143}
144
145
146
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000147
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000148//----------------------------------------------------------------------------
149// This method will add all interferences at for a given instruction.
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000150// Interence occurs only if the LR of Def (Inst or Arg) is of the same reg
151// class as that of live var. The live var passed to this function is the
152// LVset AFTER the instruction
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000153//----------------------------------------------------------------------------
Chris Lattner296b7732002-02-05 02:52:05 +0000154void PhyRegAlloc::addInterference(const Value *Def,
155 const ValueSet *LVSet,
156 bool isCallInst) {
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000157
Chris Lattner296b7732002-02-05 02:52:05 +0000158 ValueSet::const_iterator LIt = LVSet->begin();
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000159
160 // get the live range of instruction
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000161 //
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000162 const LiveRange *const LROfDef = LRI.getLiveRangeForValue( Def );
163
164 IGNode *const IGNodeOfDef = LROfDef->getUserIGNode();
165 assert( IGNodeOfDef );
166
167 RegClass *const RCOfDef = LROfDef->getRegClass();
168
169 // for each live var in live variable set
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000170 //
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000171 for( ; LIt != LVSet->end(); ++LIt) {
172
Chris Lattner0665a5f2002-02-05 01:43:49 +0000173 if (DEBUG_RA > 1)
174 cerr << "< Def=" << RAV(Def) << ", Lvar=" << RAV(*LIt) << "> ";
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000175
176 // get the live range corresponding to live var
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000177 //
Chris Lattner0665a5f2002-02-05 01:43:49 +0000178 LiveRange *LROfVar = LRI.getLiveRangeForValue(*LIt);
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000179
180 // LROfVar can be null if it is a const since a const
181 // doesn't have a dominating def - see Assumptions above
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000182 //
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000183 if (LROfVar) {
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000184 if(LROfDef == LROfVar) // do not set interf for same LR
185 continue;
186
187 // if 2 reg classes are the same set interference
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000188 //
Chris Lattner0665a5f2002-02-05 01:43:49 +0000189 if (RCOfDef == LROfVar->getRegClass()) {
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000190 RCOfDef->setInterference( LROfDef, LROfVar);
Chris Lattner0665a5f2002-02-05 01:43:49 +0000191 } else if (DEBUG_RA > 1) {
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000192 // we will not have LRs for values not explicitly allocated in the
193 // instruction stream (e.g., constants)
Chris Lattner0665a5f2002-02-05 01:43:49 +0000194 cerr << " warning: no live range for " << RAV(*LIt) << "\n";
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000195 }
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000196 }
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000197 }
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000198}
199
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000200
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000201
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000202//----------------------------------------------------------------------------
203// For a call instruction, this method sets the CallInterference flag in
204// the LR of each variable live int the Live Variable Set live after the
205// call instruction (except the return value of the call instruction - since
206// the return value does not interfere with that call itself).
207//----------------------------------------------------------------------------
208
209void PhyRegAlloc::setCallInterferences(const MachineInstr *MInst,
Chris Lattner296b7732002-02-05 02:52:05 +0000210 const ValueSet *LVSetAft) {
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000211
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000212 // Now find the LR of the return value of the call
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000213 // We do this because, we look at the LV set *after* the instruction
214 // to determine, which LRs must be saved across calls. The return value
215 // of the call is live in this set - but it does not interfere with call
216 // (i.e., we can allocate a volatile register to the return value)
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000217 //
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000218 LiveRange *RetValLR = NULL;
Ruchira Sasankab3b6f532001-10-21 16:43:41 +0000219 const Value *RetVal = MRI.getCallInstRetVal( MInst );
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000220
Ruchira Sasankab3b6f532001-10-21 16:43:41 +0000221 if( RetVal ) {
222 RetValLR = LRI.getLiveRangeForValue( RetVal );
223 assert( RetValLR && "No LR for RetValue of call");
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000224 }
225
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000226 if( DEBUG_RA)
Chris Lattner697954c2002-01-20 22:54:45 +0000227 cerr << "\n For call inst: " << *MInst;
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000228
Chris Lattner296b7732002-02-05 02:52:05 +0000229 ValueSet::const_iterator LIt = LVSetAft->begin();
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000230
231 // for each live var in live variable set after machine inst
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000232 //
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000233 for( ; LIt != LVSetAft->end(); ++LIt) {
234
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000235 // get the live range corresponding to live var
236 //
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000237 LiveRange *const LR = LRI.getLiveRangeForValue(*LIt );
238
239 if( LR && DEBUG_RA) {
Chris Lattner697954c2002-01-20 22:54:45 +0000240 cerr << "\n\tLR Aft Call: ";
Chris Lattner296b7732002-02-05 02:52:05 +0000241 printSet(*LR);
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000242 }
243
244
245 // LR can be null if it is a const since a const
246 // doesn't have a dominating def - see Assumptions above
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000247 //
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000248 if( LR && (LR != RetValLR) ) {
249 LR->setCallInterference();
250 if( DEBUG_RA) {
Chris Lattner697954c2002-01-20 22:54:45 +0000251 cerr << "\n ++Added call interf for LR: " ;
Chris Lattner296b7732002-02-05 02:52:05 +0000252 printSet(*LR);
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000253 }
254 }
255
256 }
257
258}
259
260
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000261
262
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000263//----------------------------------------------------------------------------
264// This method will walk thru code and create interferences in the IG of
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000265// each RegClass. Also, this method calculates the spill cost of each
266// Live Range (it is done in this method to save another pass over the code).
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000267//----------------------------------------------------------------------------
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000268void PhyRegAlloc::buildInterferenceGraphs()
269{
270
Chris Lattner697954c2002-01-20 22:54:45 +0000271 if(DEBUG_RA) cerr << "Creating interference graphs ...\n";
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000272
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000273 unsigned BBLoopDepthCost;
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000274 Method::const_iterator BBI = Meth->begin(); // random iterator for BBs
275
276 for( ; BBI != Meth->end(); ++BBI) { // traverse BBs in random order
277
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000278 // find the 10^(loop_depth) of this BB
279 //
Chris Lattner4911c352002-02-04 17:39:42 +0000280 BBLoopDepthCost = (unsigned) pow( 10.0, LoopDepthCalc->getLoopDepth(*BBI));
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000281
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000282 // get the iterator for machine instructions
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000283 //
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000284 const MachineCodeForBasicBlock& MIVec = (*BBI)->getMachineInstrVec();
285 MachineCodeForBasicBlock::const_iterator
286 MInstIterator = MIVec.begin();
287
288 // iterate over all the machine instructions in BB
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000289 //
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000290 for( ; MInstIterator != MIVec.end(); ++MInstIterator) {
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +0000291
Ruchira Sasankaef1b0cb2001-11-03 17:13:27 +0000292 const MachineInstr * MInst = *MInstIterator;
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000293
294 // get the LV set after the instruction
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000295 //
Chris Lattner296b7732002-02-05 02:52:05 +0000296 const ValueSet *LVSetAI = LVI->getLiveVarSetAfterMInst(MInst, *BBI);
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000297
298 const bool isCallInst = TM.getInstrInfo().isCall(MInst->getOpCode());
299
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000300 if( isCallInst ) {
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000301 // set the isCallInterference flag of each live range wich extends
302 // accross this call instruction. This information is used by graph
303 // coloring algo to avoid allocating volatile colors to live ranges
304 // that span across calls (since they have to be saved/restored)
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000305 //
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000306 setCallInterferences( MInst, LVSetAI);
307 }
308
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000309
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000310 // iterate over all MI operands to find defs
311 //
Chris Lattner7a176752001-12-04 00:03:30 +0000312 for( MachineInstr::val_const_op_iterator OpI(MInst);!OpI.done(); ++OpI) {
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000313
314 if( OpI.isDef() ) {
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000315 // create a new LR iff this operand is a def
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000316 //
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000317 addInterference(*OpI, LVSetAI, isCallInst );
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000318 }
319
320 // Calculate the spill cost of each live range
321 //
322 LiveRange *LR = LRI.getLiveRangeForValue( *OpI );
323 if( LR )
324 LR->addSpillCost(BBLoopDepthCost);
325 }
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000326
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000327
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000328 // if there are multiple defs in this instruction e.g. in SETX
329 //
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000330 if (TM.getInstrInfo().isPseudoInstr(MInst->getOpCode()))
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000331 addInterf4PseudoInstr(MInst);
332
333
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000334 // Also add interference for any implicit definitions in a machine
335 // instr (currently, only calls have this).
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000336 //
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000337 unsigned NumOfImpRefs = MInst->getNumImplicitRefs();
338 if( NumOfImpRefs > 0 ) {
339 for(unsigned z=0; z < NumOfImpRefs; z++)
340 if( MInst->implicitRefIsDefined(z) )
341 addInterference( MInst->getImplicitRef(z), LVSetAI, isCallInst );
342 }
343
Ruchira Sasankaef1b0cb2001-11-03 17:13:27 +0000344
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000345 } // for all machine instructions in BB
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000346
347 } // for all BBs in method
348
349
350 // add interferences for method arguments. Since there are no explict
351 // defs in method for args, we have to add them manually
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000352 //
353 addInterferencesForArgs();
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000354
355 if( DEBUG_RA)
Chris Lattner697954c2002-01-20 22:54:45 +0000356 cerr << "Interference graphs calculted!\n";
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000357
358}
359
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000360
361
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000362//--------------------------------------------------------------------------
363// Pseudo instructions will be exapnded to multiple instructions by the
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000364// assembler. Consequently, all the opernds must get distinct registers.
365// Therefore, we mark all operands of a pseudo instruction as they interfere
366// with one another.
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000367//--------------------------------------------------------------------------
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000368void PhyRegAlloc::addInterf4PseudoInstr(const MachineInstr *MInst) {
369
Ruchira Sasankaf6dfca12001-11-15 15:00:53 +0000370 bool setInterf = false;
371
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000372 // iterate over MI operands to find defs
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000373 //
Chris Lattner7a176752001-12-04 00:03:30 +0000374 for( MachineInstr::val_const_op_iterator It1(MInst);!It1.done(); ++It1) {
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000375
376 const LiveRange *const LROfOp1 = LRI.getLiveRangeForValue( *It1 );
377
Ruchira Sasankaf6dfca12001-11-15 15:00:53 +0000378 if( !LROfOp1 && It1.isDef() )
379 assert( 0 && "No LR for Def in PSEUDO insruction");
380
Chris Lattner7a176752001-12-04 00:03:30 +0000381 MachineInstr::val_const_op_iterator It2 = It1;
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000382 ++It2;
383
384 for( ; !It2.done(); ++It2) {
385
386 const LiveRange *const LROfOp2 = LRI.getLiveRangeForValue( *It2 );
387
388 if( LROfOp2) {
389
390 RegClass *const RCOfOp1 = LROfOp1->getRegClass();
391 RegClass *const RCOfOp2 = LROfOp2->getRegClass();
392
393 if( RCOfOp1 == RCOfOp2 ){
394 RCOfOp1->setInterference( LROfOp1, LROfOp2 );
Ruchira Sasankaf6dfca12001-11-15 15:00:53 +0000395 setInterf = true;
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000396 }
397
398 } // if Op2 has a LR
399
400 } // for all other defs in machine instr
401
402 } // for all operands in an instruction
403
Ruchira Sasankaf6dfca12001-11-15 15:00:53 +0000404 if( !setInterf && (MInst->getNumOperands() > 2) ) {
405 cerr << "\nInterf not set for any operand in pseudo instr:\n";
406 cerr << *MInst;
407 assert(0 && "Interf not set for pseudo instr with > 2 operands" );
408
409 }
410
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000411}
412
413
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000414
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000415//----------------------------------------------------------------------------
416// This method will add interferences for incoming arguments to a method.
417//----------------------------------------------------------------------------
Chris Lattner296b7732002-02-05 02:52:05 +0000418void PhyRegAlloc::addInterferencesForArgs() {
419 // get the InSet of root BB
420 const ValueSet *InSet = LVI->getInSetOfBB(Meth->front());
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000421
Chris Lattner296b7732002-02-05 02:52:05 +0000422 // get the argument list
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000423 const Method::ArgumentListType& ArgList = Meth->getArgumentList();
424
Chris Lattner296b7732002-02-05 02:52:05 +0000425 // get an iterator to arg list
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000426 Method::ArgumentListType::const_iterator ArgIt = ArgList.begin();
427
428
429 for( ; ArgIt != ArgList.end() ; ++ArgIt) { // for each argument
Chris Lattner30adeb62002-02-04 16:36:59 +0000430 addInterference((Value*)*ArgIt, InSet, false); // add interferences between
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000431 // args and LVars at start
Chris Lattner0665a5f2002-02-05 01:43:49 +0000432 if( DEBUG_RA > 1)
433 cerr << " - %% adding interference for argument "
434 << RAV((const Value *)*ArgIt) << "\n";
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000435 }
436}
437
438
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000439
440
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000441//----------------------------------------------------------------------------
442// This method is called after register allocation is complete to set the
443// allocated reisters in the machine code. This code will add register numbers
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000444// to MachineOperands that contain a Value. Also it calls target specific
445// methods to produce caller saving instructions. At the end, it adds all
446// additional instructions produced by the register allocator to the
447// instruction stream.
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000448//----------------------------------------------------------------------------
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000449void PhyRegAlloc::updateMachineCode()
450{
451
452 Method::const_iterator BBI = Meth->begin(); // random iterator for BBs
453
454 for( ; BBI != Meth->end(); ++BBI) { // traverse BBs in random order
455
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000456 // get the iterator for machine instructions
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000457 //
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000458 MachineCodeForBasicBlock& MIVec = (*BBI)->getMachineInstrVec();
459 MachineCodeForBasicBlock::iterator MInstIterator = MIVec.begin();
460
461 // iterate over all the machine instructions in BB
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000462 //
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000463 for( ; MInstIterator != MIVec.end(); ++MInstIterator) {
464
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +0000465 MachineInstr *MInst = *MInstIterator;
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000466
467 unsigned Opcode = MInst->getOpCode();
468
Ruchira Sasanka65480b72001-11-10 21:21:36 +0000469 // do not process Phis
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000470 if (TM.getInstrInfo().isPhi(Opcode))
Ruchira Sasanka65480b72001-11-10 21:21:36 +0000471 continue;
472
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000473 // Now insert speical instructions (if necessary) for call/return
474 // instructions.
475 //
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000476 if (TM.getInstrInfo().isCall(Opcode) ||
477 TM.getInstrInfo().isReturn(Opcode)) {
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000478
479 AddedInstrns *AI = AddedInstrMap[ MInst];
480 if ( !AI ) {
481 AI = new AddedInstrns();
482 AddedInstrMap[ MInst ] = AI;
483 }
484
485 // Tmp stack poistions are needed by some calls that have spilled args
486 // So reset it before we call each such method
Ruchira Sasanka6a3db8c2002-01-07 21:09:06 +0000487 //
488 mcInfo.popAllTempValues(TM);
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000489
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000490 if (TM.getInstrInfo().isCall(Opcode))
491 MRI.colorCallArgs(MInst, LRI, AI, *this, *BBI);
492 else if (TM.getInstrInfo().isReturn(Opcode))
493 MRI.colorRetValue(MInst, LRI, AI);
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000494 }
495
496
497 /* -- Using above code instead of this
Ruchira Sasanka65480b72001-11-10 21:21:36 +0000498
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000499 // if this machine instr is call, insert caller saving code
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +0000500
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000501 if( (TM.getInstrInfo()).isCall( MInst->getOpCode()) )
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000502 MRI.insertCallerSavingCode(MInst, *BBI, *this );
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000503
504 */
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000505
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000506
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000507 // reset the stack offset for temporary variables since we may
508 // need that to spill
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000509 // mcInfo.popAllTempValues(TM);
Ruchira Sasankaf90870f2001-11-15 22:02:06 +0000510 // TODO ** : do later
Vikram S. Adve12af1642001-11-08 04:48:50 +0000511
Chris Lattner7a176752001-12-04 00:03:30 +0000512 //for(MachineInstr::val_const_op_iterator OpI(MInst);!OpI.done();++OpI) {
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000513
Ruchira Sasankaf221a2e2001-11-13 23:09:30 +0000514
515 // Now replace set the registers for operands in the machine instruction
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000516 //
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000517 for(unsigned OpNum=0; OpNum < MInst->getNumOperands(); ++OpNum) {
518
519 MachineOperand& Op = MInst->getOperand(OpNum);
520
521 if( Op.getOperandType() == MachineOperand::MO_VirtualRegister ||
522 Op.getOperandType() == MachineOperand::MO_CCRegister) {
523
524 const Value *const Val = Op.getVRegValue();
525
526 // delete this condition checking later (must assert if Val is null)
Chris Lattner045e7c82001-09-19 16:26:23 +0000527 if( !Val) {
528 if (DEBUG_RA)
Chris Lattner697954c2002-01-20 22:54:45 +0000529 cerr << "Warning: NULL Value found for operand\n";
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000530 continue;
531 }
532 assert( Val && "Value is NULL");
533
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000534 LiveRange *const LR = LRI.getLiveRangeForValue(Val);
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000535
536 if ( !LR ) {
Ruchira Sasankae727f852001-09-18 22:43:57 +0000537
538 // nothing to worry if it's a const or a label
539
Chris Lattner4c3aaa42001-09-19 16:09:04 +0000540 if (DEBUG_RA) {
Chris Lattner697954c2002-01-20 22:54:45 +0000541 cerr << "*NO LR for operand : " << Op ;
542 cerr << " [reg:" << Op.getAllocatedRegNum() << "]";
543 cerr << " in inst:\t" << *MInst << "\n";
Chris Lattner4c3aaa42001-09-19 16:09:04 +0000544 }
Ruchira Sasankae727f852001-09-18 22:43:57 +0000545
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000546 // if register is not allocated, mark register as invalid
Ruchira Sasankaa90e7702001-10-15 16:26:38 +0000547 if( Op.getAllocatedRegNum() == -1)
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000548 Op.setRegForValue( MRI.getInvalidRegNum());
Ruchira Sasankae727f852001-09-18 22:43:57 +0000549
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +0000550
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000551 continue;
552 }
553
554 unsigned RCID = (LR->getRegClass())->getID();
555
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000556 if( LR->hasColor() ) {
557 Op.setRegForValue( MRI.getUnifiedRegNum(RCID, LR->getColor()) );
558 }
559 else {
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000560
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000561 // LR did NOT receive a color (register). Now, insert spill code
562 // for spilled opeands in this machine instruction
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000563
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000564 //assert(0 && "LR must be spilled");
565 insertCode4SpilledLR(LR, MInst, *BBI, OpNum );
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000566
567 }
Ruchira Sasankae727f852001-09-18 22:43:57 +0000568 }
569
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000570 } // for each operand
571
572
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000573 // Now add instructions that the register allocator inserts before/after
574 // this machine instructions (done only for calls/rets/incoming args)
575 // We do this here, to ensure that spill for an instruction is inserted
576 // closest as possible to an instruction (see above insertCode4Spill...)
577 //
Ruchira Sasankaf221a2e2001-11-13 23:09:30 +0000578 // If there are instructions to be added, *before* this machine
579 // instruction, add them now.
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000580 //
Ruchira Sasankaf221a2e2001-11-13 23:09:30 +0000581 if( AddedInstrMap[ MInst ] ) {
Chris Lattner697954c2002-01-20 22:54:45 +0000582 std::deque<MachineInstr *> &IBef = AddedInstrMap[MInst]->InstrnsBefore;
Ruchira Sasankaf221a2e2001-11-13 23:09:30 +0000583
584 if( ! IBef.empty() ) {
Chris Lattner697954c2002-01-20 22:54:45 +0000585 std::deque<MachineInstr *>::iterator AdIt;
Ruchira Sasankaf221a2e2001-11-13 23:09:30 +0000586
587 for( AdIt = IBef.begin(); AdIt != IBef.end() ; ++AdIt ) {
588
589 if( DEBUG_RA) {
590 cerr << "For inst " << *MInst;
Chris Lattner697954c2002-01-20 22:54:45 +0000591 cerr << " PREPENDed instr: " << **AdIt << "\n";
Ruchira Sasankaf221a2e2001-11-13 23:09:30 +0000592 }
593
594 MInstIterator = MIVec.insert( MInstIterator, *AdIt );
595 ++MInstIterator;
596 }
597
598 }
599
600 }
601
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000602 // If there are instructions to be added *after* this machine
603 // instruction, add them now
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000604 //
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000605 if(AddedInstrMap[MInst] &&
606 !AddedInstrMap[MInst]->InstrnsAfter.empty() ) {
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000607
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000608 // if there are delay slots for this instruction, the instructions
609 // added after it must really go after the delayed instruction(s)
610 // So, we move the InstrAfter of the current instruction to the
611 // corresponding delayed instruction
612
613 unsigned delay;
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000614 if ((delay=TM.getInstrInfo().getNumDelaySlots(MInst->getOpCode())) >0){
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000615 move2DelayedInstr(MInst, *(MInstIterator+delay) );
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000616
Chris Lattner697954c2002-01-20 22:54:45 +0000617 if(DEBUG_RA) cerr<< "\nMoved an added instr after the delay slot";
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000618 }
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000619
620 else {
621
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000622
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000623 // Here we can add the "instructions after" to the current
624 // instruction since there are no delay slots for this instruction
625
Chris Lattner697954c2002-01-20 22:54:45 +0000626 std::deque<MachineInstr *> &IAft = AddedInstrMap[MInst]->InstrnsAfter;
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000627
628 if( ! IAft.empty() ) {
629
Chris Lattner697954c2002-01-20 22:54:45 +0000630 std::deque<MachineInstr *>::iterator AdIt;
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000631
632 ++MInstIterator; // advance to the next instruction
633
634 for( AdIt = IAft.begin(); AdIt != IAft.end() ; ++AdIt ) {
635
Ruchira Sasankaf221a2e2001-11-13 23:09:30 +0000636 if(DEBUG_RA) {
637 cerr << "For inst " << *MInst;
Chris Lattner697954c2002-01-20 22:54:45 +0000638 cerr << " APPENDed instr: " << **AdIt << "\n";
Ruchira Sasankaf221a2e2001-11-13 23:09:30 +0000639 }
640
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000641 MInstIterator = MIVec.insert( MInstIterator, *AdIt );
642 ++MInstIterator;
643 }
644
645 // MInsterator already points to the next instr. Since the
646 // for loop also increments it, decrement it to point to the
647 // instruction added last
648 --MInstIterator;
649
650 }
651
652 } // if not delay
653
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000654 }
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000655
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000656 } // for each machine instruction
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000657 }
658}
659
660
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000661
662//----------------------------------------------------------------------------
663// This method inserts spill code for AN operand whose LR was spilled.
664// This method may be called several times for a single machine instruction
665// if it contains many spilled operands. Each time it is called, it finds
666// a register which is not live at that instruction and also which is not
667// used by other spilled operands of the same instruction. Then it uses
668// this register temporarily to accomodate the spilled value.
669//----------------------------------------------------------------------------
670void PhyRegAlloc::insertCode4SpilledLR(const LiveRange *LR,
671 MachineInstr *MInst,
672 const BasicBlock *BB,
673 const unsigned OpNum) {
674
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000675 assert(! TM.getInstrInfo().isCall(MInst->getOpCode()) &&
676 (! TM.getInstrInfo().isReturn(MInst->getOpCode())) &&
677 "Arg of a call/ret must be handled elsewhere");
678
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000679 MachineOperand& Op = MInst->getOperand(OpNum);
680 bool isDef = MInst->operandIsDefined(OpNum);
681 unsigned RegType = MRI.getRegType( LR );
682 int SpillOff = LR->getSpillOffFromFP();
683 RegClass *RC = LR->getRegClass();
Chris Lattner296b7732002-02-05 02:52:05 +0000684 const ValueSet *LVSetBef = LVI->getLiveVarSetBeforeMInst(MInst, BB);
Vikram S. Adve00521d72001-11-12 23:26:35 +0000685
Chris Lattner697954c2002-01-20 22:54:45 +0000686 mcInfo.pushTempValue(TM, MRI.getSpilledRegSize(RegType) );
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000687
Ruchira Sasanka226f1f02001-11-08 19:11:30 +0000688 MachineInstr *MIBef=NULL, *AdIMid=NULL, *MIAft=NULL;
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000689
690 int TmpRegU = getUsableUniRegAtMI(RC, RegType, MInst,LVSetBef, MIBef, MIAft);
691
Ruchira Sasanka226f1f02001-11-08 19:11:30 +0000692 // get the added instructions for this instruciton
693 AddedInstrns *AI = AddedInstrMap[ MInst ];
694 if ( !AI ) {
695 AI = new AddedInstrns();
696 AddedInstrMap[ MInst ] = AI;
697 }
698
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000699
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000700 if( !isDef ) {
701
702 // for a USE, we have to load the value of LR from stack to a TmpReg
703 // and use the TmpReg as one operand of instruction
704
705 // actual loading instruction
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000706 AdIMid = MRI.cpMem2RegMI(MRI.getFramePointer(), SpillOff, TmpRegU,RegType);
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000707
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000708 if(MIBef)
709 AI->InstrnsBefore.push_back(MIBef);
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000710
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000711 AI->InstrnsBefore.push_back(AdIMid);
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000712
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000713 if(MIAft)
714 AI->InstrnsAfter.push_front(MIAft);
Ruchira Sasanka226f1f02001-11-08 19:11:30 +0000715
Chris Lattner296b7732002-02-05 02:52:05 +0000716 } else { // if this is a Def
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000717 // for a DEF, we have to store the value produced by this instruction
718 // on the stack position allocated for this LR
719
720 // actual storing instruction
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000721 AdIMid = MRI.cpReg2MemMI(TmpRegU, MRI.getFramePointer(), SpillOff,RegType);
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000722
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000723 if (MIBef)
724 AI->InstrnsBefore.push_back(MIBef);
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000725
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000726 AI->InstrnsAfter.push_front(AdIMid);
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000727
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000728 if (MIAft)
729 AI->InstrnsAfter.push_front(MIAft);
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000730
731 } // if !DEF
732
733 cerr << "\nFor Inst " << *MInst;
Chris Lattner296b7732002-02-05 02:52:05 +0000734 cerr << " - SPILLED LR: "; printSet(*LR);
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000735 cerr << "\n - Added Instructions:";
Chris Lattner296b7732002-02-05 02:52:05 +0000736 if (MIBef) cerr << *MIBef;
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000737 cerr << *AdIMid;
Chris Lattner296b7732002-02-05 02:52:05 +0000738 if (MIAft) cerr << *MIAft;
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000739
Chris Lattner296b7732002-02-05 02:52:05 +0000740 Op.setRegForValue(TmpRegU); // set the opearnd
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000741}
742
743
744
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000745//----------------------------------------------------------------------------
746// We can use the following method to get a temporary register to be used
747// BEFORE any given machine instruction. If there is a register available,
748// this method will simply return that register and set MIBef = MIAft = NULL.
749// Otherwise, it will return a register and MIAft and MIBef will contain
750// two instructions used to free up this returned register.
Ruchira Sasanka80b1a1a2001-11-03 20:41:22 +0000751// Returned register number is the UNIFIED register number
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000752//----------------------------------------------------------------------------
753
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000754int PhyRegAlloc::getUsableUniRegAtMI(RegClass *RC,
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000755 const int RegType,
756 const MachineInstr *MInst,
Chris Lattner296b7732002-02-05 02:52:05 +0000757 const ValueSet *LVSetBef,
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000758 MachineInstr *MIBef,
759 MachineInstr *MIAft) {
760
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000761 int RegU = getUnusedUniRegAtMI(RC, MInst, LVSetBef);
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000762
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000763
764 if( RegU != -1) {
Ruchira Sasankaf6dfca12001-11-15 15:00:53 +0000765 // we found an unused register, so we can simply use it
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000766 MIBef = MIAft = NULL;
767 }
768 else {
Ruchira Sasanka80b1a1a2001-11-03 20:41:22 +0000769 // we couldn't find an unused register. Generate code to free up a reg by
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000770 // saving it on stack and restoring after the instruction
771
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000772 int TmpOff = mcInfo.pushTempValue(TM, MRI.getSpilledRegSize(RegType) );
Vikram S. Adve12af1642001-11-08 04:48:50 +0000773
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000774 RegU = getUniRegNotUsedByThisInst(RC, MInst);
775 MIBef = MRI.cpReg2MemMI(RegU, MRI.getFramePointer(), TmpOff, RegType );
776 MIAft = MRI.cpMem2RegMI(MRI.getFramePointer(), TmpOff, RegU, RegType );
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000777 }
778
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000779 return RegU;
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000780}
781
782//----------------------------------------------------------------------------
783// This method is called to get a new unused register that can be used to
784// accomodate a spilled value.
785// This method may be called several times for a single machine instruction
786// if it contains many spilled operands. Each time it is called, it finds
787// a register which is not live at that instruction and also which is not
788// used by other spilled operands of the same instruction.
Ruchira Sasanka80b1a1a2001-11-03 20:41:22 +0000789// Return register number is relative to the register class. NOT
790// unified number
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000791//----------------------------------------------------------------------------
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000792int PhyRegAlloc::getUnusedUniRegAtMI(RegClass *RC,
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000793 const MachineInstr *MInst,
Chris Lattner296b7732002-02-05 02:52:05 +0000794 const ValueSet *LVSetBef) {
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000795
796 unsigned NumAvailRegs = RC->getNumOfAvailRegs();
797
798 bool *IsColorUsedArr = RC->getIsColorUsedArr();
799
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000800 for(unsigned i=0; i < NumAvailRegs; i++) // Reset array
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000801 IsColorUsedArr[i] = false;
802
Chris Lattner296b7732002-02-05 02:52:05 +0000803 ValueSet::const_iterator LIt = LVSetBef->begin();
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000804
805 // for each live var in live variable set after machine inst
806 for( ; LIt != LVSetBef->end(); ++LIt) {
807
808 // get the live range corresponding to live var
809 LiveRange *const LRofLV = LRI.getLiveRangeForValue(*LIt );
810
811 // LR can be null if it is a const since a const
812 // doesn't have a dominating def - see Assumptions above
813 if( LRofLV )
814 if( LRofLV->hasColor() )
815 IsColorUsedArr[ LRofLV->getColor() ] = true;
816 }
817
818 // It is possible that one operand of this MInst was already spilled
819 // and it received some register temporarily. If that's the case,
820 // it is recorded in machine operand. We must skip such registers.
821
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000822 setRelRegsUsedByThisInst(RC, MInst);
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000823
824 unsigned c; // find first unused color
825 for( c=0; c < NumAvailRegs; c++)
826 if( ! IsColorUsedArr[ c ] ) break;
827
828 if(c < NumAvailRegs)
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000829 return MRI.getUnifiedRegNum(RC->getID(), c);
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000830 else
831 return -1;
832
833
834}
835
836
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000837//----------------------------------------------------------------------------
838// Get any other register in a register class, other than what is used
839// by operands of a machine instruction. Returns the unified reg number.
840//----------------------------------------------------------------------------
841int PhyRegAlloc::getUniRegNotUsedByThisInst(RegClass *RC,
842 const MachineInstr *MInst) {
843
844 bool *IsColorUsedArr = RC->getIsColorUsedArr();
845 unsigned NumAvailRegs = RC->getNumOfAvailRegs();
846
847
848 for(unsigned i=0; i < NumAvailRegs ; i++) // Reset array
849 IsColorUsedArr[i] = false;
850
851 setRelRegsUsedByThisInst(RC, MInst);
852
853 unsigned c; // find first unused color
854 for( c=0; c < RC->getNumOfAvailRegs(); c++)
855 if( ! IsColorUsedArr[ c ] ) break;
856
857 if(c < NumAvailRegs)
858 return MRI.getUnifiedRegNum(RC->getID(), c);
859 else
860 assert( 0 && "FATAL: No free register could be found in reg class!!");
Chris Lattner697954c2002-01-20 22:54:45 +0000861 return 0;
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000862}
863
864
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000865//----------------------------------------------------------------------------
866// This method modifies the IsColorUsedArr of the register class passed to it.
867// It sets the bits corresponding to the registers used by this machine
Ruchira Sasankaf6dfca12001-11-15 15:00:53 +0000868// instructions. Both explicit and implicit operands are set.
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000869//----------------------------------------------------------------------------
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000870void PhyRegAlloc::setRelRegsUsedByThisInst(RegClass *RC,
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000871 const MachineInstr *MInst ) {
872
873 bool *IsColorUsedArr = RC->getIsColorUsedArr();
874
875 for(unsigned OpNum=0; OpNum < MInst->getNumOperands(); ++OpNum) {
876
877 const MachineOperand& Op = MInst->getOperand(OpNum);
878
879 if( Op.getOperandType() == MachineOperand::MO_VirtualRegister ||
Ruchira Sasankaf6dfca12001-11-15 15:00:53 +0000880 Op.getOperandType() == MachineOperand::MO_CCRegister ) {
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000881
882 const Value *const Val = Op.getVRegValue();
883
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000884 if( Val )
885 if( MRI.getRegClassIDOfValue(Val) == RC->getID() ) {
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000886 int Reg;
Ruchira Sasankaf6dfca12001-11-15 15:00:53 +0000887 if( (Reg=Op.getAllocatedRegNum()) != -1) {
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000888 IsColorUsedArr[ Reg ] = true;
Ruchira Sasankaf6dfca12001-11-15 15:00:53 +0000889 }
890 else {
891 // it is possilbe that this operand still is not marked with
892 // a register but it has a LR and that received a color
893
894 LiveRange *LROfVal = LRI.getLiveRangeForValue(Val);
895 if( LROfVal)
896 if( LROfVal->hasColor() )
897 IsColorUsedArr[ LROfVal->getColor() ] = true;
898 }
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000899
Ruchira Sasankaf6dfca12001-11-15 15:00:53 +0000900 } // if reg classes are the same
901 }
902 else if (Op.getOperandType() == MachineOperand::MO_MachineRegister) {
903 IsColorUsedArr[ Op.getMachineRegNum() ] = true;
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000904 }
905 }
906
907 // If there are implicit references, mark them as well
908
909 for(unsigned z=0; z < MInst->getNumImplicitRefs(); z++) {
910
911 LiveRange *const LRofImpRef =
912 LRI.getLiveRangeForValue( MInst->getImplicitRef(z) );
Chris Lattner697954c2002-01-20 22:54:45 +0000913
914 if(LRofImpRef && LRofImpRef->hasColor())
915 IsColorUsedArr[LRofImpRef->getColor()] = true;
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000916 }
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000917}
918
919
920
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000921
922
923
924
925
926//----------------------------------------------------------------------------
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000927// If there are delay slots for an instruction, the instructions
928// added after it must really go after the delayed instruction(s).
929// So, we move the InstrAfter of that instruction to the
930// corresponding delayed instruction using the following method.
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000931
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000932//----------------------------------------------------------------------------
933void PhyRegAlloc:: move2DelayedInstr(const MachineInstr *OrigMI,
934 const MachineInstr *DelayedMI) {
935
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000936 // "added after" instructions of the original instr
Chris Lattner697954c2002-01-20 22:54:45 +0000937 std::deque<MachineInstr *> &OrigAft = AddedInstrMap[OrigMI]->InstrnsAfter;
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000938
939 // "added instructions" of the delayed instr
940 AddedInstrns *DelayAdI = AddedInstrMap[DelayedMI];
941
942 if(! DelayAdI ) { // create a new "added after" if necessary
943 DelayAdI = new AddedInstrns();
944 AddedInstrMap[DelayedMI] = DelayAdI;
945 }
946
947 // "added after" instructions of the delayed instr
Chris Lattner697954c2002-01-20 22:54:45 +0000948 std::deque<MachineInstr *> &DelayedAft = DelayAdI->InstrnsAfter;
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000949
950 // go thru all the "added after instructions" of the original instruction
951 // and append them to the "addded after instructions" of the delayed
952 // instructions
Chris Lattner697954c2002-01-20 22:54:45 +0000953 DelayedAft.insert(DelayedAft.end(), OrigAft.begin(), OrigAft.end());
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000954
955 // empty the "added after instructions" of the original instruction
956 OrigAft.clear();
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000957}
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000958
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000959//----------------------------------------------------------------------------
960// This method prints the code with registers after register allocation is
961// complete.
962//----------------------------------------------------------------------------
963void PhyRegAlloc::printMachineCode()
964{
965
Chris Lattner697954c2002-01-20 22:54:45 +0000966 cerr << "\n;************** Method " << Meth->getName()
967 << " *****************\n";
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000968
969 Method::const_iterator BBI = Meth->begin(); // random iterator for BBs
970
971 for( ; BBI != Meth->end(); ++BBI) { // traverse BBs in random order
972
Chris Lattner697954c2002-01-20 22:54:45 +0000973 cerr << "\n"; printLabel( *BBI); cerr << ": ";
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000974
975 // get the iterator for machine instructions
976 MachineCodeForBasicBlock& MIVec = (*BBI)->getMachineInstrVec();
977 MachineCodeForBasicBlock::iterator MInstIterator = MIVec.begin();
978
979 // iterate over all the machine instructions in BB
980 for( ; MInstIterator != MIVec.end(); ++MInstIterator) {
981
982 MachineInstr *const MInst = *MInstIterator;
983
984
Chris Lattner697954c2002-01-20 22:54:45 +0000985 cerr << "\n\t";
986 cerr << TargetInstrDescriptors[MInst->getOpCode()].opCodeString;
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000987
988
Chris Lattner7a176752001-12-04 00:03:30 +0000989 //for(MachineInstr::val_const_op_iterator OpI(MInst);!OpI.done();++OpI) {
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000990
991 for(unsigned OpNum=0; OpNum < MInst->getNumOperands(); ++OpNum) {
992
993 MachineOperand& Op = MInst->getOperand(OpNum);
994
995 if( Op.getOperandType() == MachineOperand::MO_VirtualRegister ||
Ruchira Sasanka97b8b442001-10-18 22:36:26 +0000996 Op.getOperandType() == MachineOperand::MO_CCRegister /*||
997 Op.getOperandType() == MachineOperand::MO_PCRelativeDisp*/ ) {
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000998
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000999 const Value *const Val = Op.getVRegValue () ;
Ruchira Sasankae727f852001-09-18 22:43:57 +00001000 // ****this code is temporary till NULL Values are fixed
1001 if( ! Val ) {
Chris Lattner697954c2002-01-20 22:54:45 +00001002 cerr << "\t<*NULL*>";
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001003 continue;
1004 }
Ruchira Sasankae727f852001-09-18 22:43:57 +00001005
1006 // if a label or a constant
Chris Lattnerdbe53042002-01-21 01:33:12 +00001007 if(isa<BasicBlock>(Val)) {
Chris Lattner697954c2002-01-20 22:54:45 +00001008 cerr << "\t"; printLabel( Op.getVRegValue () );
1009 } else {
Ruchira Sasankae727f852001-09-18 22:43:57 +00001010 // else it must be a register value
1011 const int RegNum = Op.getAllocatedRegNum();
1012
Chris Lattner697954c2002-01-20 22:54:45 +00001013 cerr << "\t" << "%" << MRI.getUnifiedRegName( RegNum );
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +00001014 if (Val->hasName() )
Chris Lattner697954c2002-01-20 22:54:45 +00001015 cerr << "(" << Val->getName() << ")";
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +00001016 else
Chris Lattner697954c2002-01-20 22:54:45 +00001017 cerr << "(" << Val << ")";
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +00001018
1019 if( Op.opIsDef() )
Chris Lattner697954c2002-01-20 22:54:45 +00001020 cerr << "*";
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +00001021
1022 const LiveRange *LROfVal = LRI.getLiveRangeForValue(Val);
1023 if( LROfVal )
1024 if( LROfVal->hasSpillOffset() )
Chris Lattner697954c2002-01-20 22:54:45 +00001025 cerr << "$";
Ruchira Sasankae727f852001-09-18 22:43:57 +00001026 }
1027
1028 }
1029 else if(Op.getOperandType() == MachineOperand::MO_MachineRegister) {
Chris Lattner697954c2002-01-20 22:54:45 +00001030 cerr << "\t" << "%" << MRI.getUnifiedRegName(Op.getMachineRegNum());
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001031 }
1032
1033 else
Chris Lattner697954c2002-01-20 22:54:45 +00001034 cerr << "\t" << Op; // use dump field
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001035 }
1036
Ruchira Sasankac4d4b762001-10-16 01:23:19 +00001037
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001038
Ruchira Sasankac4d4b762001-10-16 01:23:19 +00001039 unsigned NumOfImpRefs = MInst->getNumImplicitRefs();
Chris Lattner0665a5f2002-02-05 01:43:49 +00001040 if( NumOfImpRefs > 0) {
Chris Lattner697954c2002-01-20 22:54:45 +00001041 cerr << "\tImplicit:";
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001042
Chris Lattner0665a5f2002-02-05 01:43:49 +00001043 for(unsigned z=0; z < NumOfImpRefs; z++)
1044 cerr << RAV(MInst->getImplicitRef(z)) << "\t";
Ruchira Sasankac4d4b762001-10-16 01:23:19 +00001045 }
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001046
Ruchira Sasankac4d4b762001-10-16 01:23:19 +00001047 } // for all machine instructions
1048
Chris Lattner697954c2002-01-20 22:54:45 +00001049 cerr << "\n";
Ruchira Sasankac4d4b762001-10-16 01:23:19 +00001050
1051 } // for all BBs
1052
Chris Lattner697954c2002-01-20 22:54:45 +00001053 cerr << "\n";
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001054}
1055
Ruchira Sasankae727f852001-09-18 22:43:57 +00001056
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +00001057#if 0
1058
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001059//----------------------------------------------------------------------------
1060//
1061//----------------------------------------------------------------------------
1062
1063void PhyRegAlloc::colorCallRetArgs()
1064{
1065
1066 CallRetInstrListType &CallRetInstList = LRI.getCallRetInstrList();
1067 CallRetInstrListType::const_iterator It = CallRetInstList.begin();
1068
1069 for( ; It != CallRetInstList.end(); ++It ) {
1070
Ruchira Sasankaa90e7702001-10-15 16:26:38 +00001071 const MachineInstr *const CRMI = *It;
1072 unsigned OpCode = CRMI->getOpCode();
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001073
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001074 // get the added instructions for this Call/Ret instruciton
1075 AddedInstrns *AI = AddedInstrMap[ CRMI ];
1076 if ( !AI ) {
1077 AI = new AddedInstrns();
1078 AddedInstrMap[ CRMI ] = AI;
1079 }
1080
Ruchira Sasanka174bded2001-10-28 18:12:02 +00001081 // Tmp stack poistions are needed by some calls that have spilled args
1082 // So reset it before we call each such method
Ruchira Sasankaf90870f2001-11-15 22:02:06 +00001083 //mcInfo.popAllTempValues(TM);
1084
1085
Vikram S. Adve12af1642001-11-08 04:48:50 +00001086
Chris Lattnerdd1e40b2002-02-03 07:46:34 +00001087 if (TM.getInstrInfo().isCall(OpCode))
1088 MRI.colorCallArgs(CRMI, LRI, AI, *this);
1089 else if (TM.getInstrInfo().isReturn(OpCode))
Ruchira Sasankaa90e7702001-10-15 16:26:38 +00001090 MRI.colorRetValue( CRMI, LRI, AI );
Chris Lattnerdd1e40b2002-02-03 07:46:34 +00001091 else
1092 assert(0 && "Non Call/Ret instrn in CallRetInstrList\n");
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001093 }
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001094}
1095
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +00001096#endif
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001097
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001098//----------------------------------------------------------------------------
1099
1100//----------------------------------------------------------------------------
1101void PhyRegAlloc::colorIncomingArgs()
1102{
1103 const BasicBlock *const FirstBB = Meth->front();
Chris Lattnerdd1e40b2002-02-03 07:46:34 +00001104 const MachineInstr *FirstMI = FirstBB->getMachineInstrVec().front();
1105 assert(FirstMI && "No machine instruction in entry BB");
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001106
Chris Lattnerdd1e40b2002-02-03 07:46:34 +00001107 AddedInstrns *AI = AddedInstrMap[FirstMI];
1108 if (!AI)
1109 AddedInstrMap[FirstMI] = AI = new AddedInstrns();
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001110
Chris Lattnerdd1e40b2002-02-03 07:46:34 +00001111 MRI.colorMethodArgs(Meth, LRI, AI);
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001112}
1113
Ruchira Sasankae727f852001-09-18 22:43:57 +00001114
1115//----------------------------------------------------------------------------
1116// Used to generate a label for a basic block
1117//----------------------------------------------------------------------------
Chris Lattner697954c2002-01-20 22:54:45 +00001118void PhyRegAlloc::printLabel(const Value *const Val) {
1119 if (Val->hasName())
1120 cerr << Val->getName();
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001121 else
Chris Lattner697954c2002-01-20 22:54:45 +00001122 cerr << "Label" << Val;
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001123}
1124
1125
Ruchira Sasankae727f852001-09-18 22:43:57 +00001126//----------------------------------------------------------------------------
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001127// This method calls setSugColorUsable method of each live range. This
1128// will determine whether the suggested color of LR is really usable.
1129// A suggested color is not usable when the suggested color is volatile
1130// AND when there are call interferences
1131//----------------------------------------------------------------------------
1132
1133void PhyRegAlloc::markUnusableSugColors()
1134{
Chris Lattner697954c2002-01-20 22:54:45 +00001135 if(DEBUG_RA ) cerr << "\nmarking unusable suggested colors ...\n";
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001136
1137 // hash map iterator
1138 LiveRangeMapType::const_iterator HMI = (LRI.getLiveRangeMap())->begin();
1139 LiveRangeMapType::const_iterator HMIEnd = (LRI.getLiveRangeMap())->end();
1140
Chris Lattnerdd1e40b2002-02-03 07:46:34 +00001141 for(; HMI != HMIEnd ; ++HMI ) {
1142 if (HMI->first) {
1143 LiveRange *L = HMI->second; // get the LiveRange
1144 if (L) {
1145 if(L->hasSuggestedColor()) {
1146 int RCID = L->getRegClass()->getID();
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001147 if( MRI.isRegVolatile( RCID, L->getSuggestedColor()) &&
1148 L->isCallInterference() )
1149 L->setSuggestedColorUsable( false );
1150 else
1151 L->setSuggestedColorUsable( true );
1152 }
1153 } // if L->hasSuggestedColor()
1154 }
1155 } // for all LR's in hash map
1156}
1157
1158
1159
Ruchira Sasanka174bded2001-10-28 18:12:02 +00001160//----------------------------------------------------------------------------
1161// The following method will set the stack offsets of the live ranges that
1162// are decided to be spillled. This must be called just after coloring the
1163// LRs using the graph coloring algo. For each live range that is spilled,
1164// this method allocate a new spill position on the stack.
1165//----------------------------------------------------------------------------
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001166
Ruchira Sasanka174bded2001-10-28 18:12:02 +00001167void PhyRegAlloc::allocateStackSpace4SpilledLRs()
1168{
Chris Lattner697954c2002-01-20 22:54:45 +00001169 if(DEBUG_RA ) cerr << "\nsetting LR stack offsets ...\n";
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001170
Ruchira Sasanka174bded2001-10-28 18:12:02 +00001171 // hash map iterator
1172 LiveRangeMapType::const_iterator HMI = (LRI.getLiveRangeMap())->begin();
1173 LiveRangeMapType::const_iterator HMIEnd = (LRI.getLiveRangeMap())->end();
1174
1175 for( ; HMI != HMIEnd ; ++HMI ) {
Chris Lattner697954c2002-01-20 22:54:45 +00001176 if(HMI->first && HMI->second) {
1177 LiveRange *L = HMI->second; // get the LiveRange
1178 if( ! L->hasColor() )
1179 // NOTE: ** allocating the size of long Type **
1180 L->setSpillOffFromFP(mcInfo.allocateSpilledValue(TM, Type::LongTy));
Ruchira Sasanka174bded2001-10-28 18:12:02 +00001181 }
1182 } // for all LR's in hash map
Ruchira Sasanka174bded2001-10-28 18:12:02 +00001183}
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001184
1185
1186
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001187//----------------------------------------------------------------------------
Ruchira Sasankae727f852001-09-18 22:43:57 +00001188// The entry pont to Register Allocation
1189//----------------------------------------------------------------------------
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001190
1191void PhyRegAlloc::allocateRegisters()
1192{
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001193
1194 // make sure that we put all register classes into the RegClassList
1195 // before we call constructLiveRanges (now done in the constructor of
1196 // PhyRegAlloc class).
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +00001197 //
1198 LRI.constructLiveRanges(); // create LR info
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001199
Chris Lattnerdd1e40b2002-02-03 07:46:34 +00001200 if (DEBUG_RA)
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001201 LRI.printLiveRanges();
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001202
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001203 createIGNodeListsAndIGs(); // create IGNode list and IGs
1204
1205 buildInterferenceGraphs(); // build IGs in all reg classes
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001206
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001207
Chris Lattnerdd1e40b2002-02-03 07:46:34 +00001208 if (DEBUG_RA) {
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001209 // print all LRs in all reg classes
1210 for( unsigned int rc=0; rc < NumOfRegClasses ; rc++)
1211 RegClassList[ rc ]->printIGNodeList();
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001212
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001213 // print IGs in all register classes
1214 for( unsigned int rc=0; rc < NumOfRegClasses ; rc++)
1215 RegClassList[ rc ]->printIG();
1216 }
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001217
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +00001218
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001219 LRI.coalesceLRs(); // coalesce all live ranges
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001220
Ruchira Sasankaef1b0cb2001-11-03 17:13:27 +00001221
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001222 if( DEBUG_RA) {
1223 // print all LRs in all reg classes
1224 for( unsigned int rc=0; rc < NumOfRegClasses ; rc++)
1225 RegClassList[ rc ]->printIGNodeList();
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001226
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001227 // print IGs in all register classes
1228 for( unsigned int rc=0; rc < NumOfRegClasses ; rc++)
1229 RegClassList[ rc ]->printIG();
1230 }
1231
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001232
1233 // mark un-usable suggested color before graph coloring algorithm.
1234 // When this is done, the graph coloring algo will not reserve
1235 // suggested color unnecessarily - they can be used by another LR
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +00001236 //
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001237 markUnusableSugColors();
1238
1239 // color all register classes using the graph coloring algo
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001240 for( unsigned int rc=0; rc < NumOfRegClasses ; rc++)
1241 RegClassList[ rc ]->colorAllRegs();
1242
Ruchira Sasanka174bded2001-10-28 18:12:02 +00001243 // Atter grpah coloring, if some LRs did not receive a color (i.e, spilled)
1244 // a poistion for such spilled LRs
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +00001245 //
Ruchira Sasanka174bded2001-10-28 18:12:02 +00001246 allocateStackSpace4SpilledLRs();
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001247
Ruchira Sasankaf90870f2001-11-15 22:02:06 +00001248 mcInfo.popAllTempValues(TM); // TODO **Check
1249
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +00001250 // color incoming args - if the correct color was not received
1251 // insert code to copy to the correct register
1252 //
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001253 colorIncomingArgs();
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001254
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +00001255 // Now update the machine code with register names and add any
1256 // additional code inserted by the register allocator to the instruction
1257 // stream
1258 //
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001259 updateMachineCode();
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +00001260
Chris Lattner045e7c82001-09-19 16:26:23 +00001261 if (DEBUG_RA) {
Vikram S. Adve12af1642001-11-08 04:48:50 +00001262 MachineCodeForMethod::get(Meth).dump();
Chris Lattner045e7c82001-09-19 16:26:23 +00001263 printMachineCode(); // only for DEBUGGING
1264 }
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001265}
1266
Ruchira Sasankae727f852001-09-18 22:43:57 +00001267
1268