blob: a192310686dd13f76d01968cf0d65982271b546f [file] [log] [blame]
Vikram S. Adve12af1642001-11-08 04:48:50 +00001//***************************************************************************
2// File:
3// PhyRegAlloc.cpp
4//
5// Purpose:
6// Register allocation for LLVM.
7//
8// History:
9// 9/10/01 - Ruchira Sasanka - created.
10//**************************************************************************/
Ruchira Sasanka8e604792001-09-14 21:18:34 +000011
Chris Lattner6dd98a62002-02-04 00:33:08 +000012#include "llvm/CodeGen/RegisterAllocation.h"
Vikram S. Adve12af1642001-11-08 04:48:50 +000013#include "llvm/CodeGen/PhyRegAlloc.h"
14#include "llvm/CodeGen/MachineInstr.h"
Vikram S. Advedabb41d2002-05-19 15:29:31 +000015#include "llvm/CodeGen/MachineInstrAnnot.h"
Vikram S. Advef5af6362002-07-08 23:15:32 +000016#include "llvm/CodeGen/MachineCodeForBasicBlock.h"
Chris Lattnerdd1e40b2002-02-03 07:46:34 +000017#include "llvm/CodeGen/MachineCodeForMethod.h"
Chris Lattner483e14e2002-04-27 07:27:19 +000018#include "llvm/Analysis/LiveVar/FunctionLiveVarInfo.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 Lattner2fbfdcf2002-04-07 20:49:59 +000022#include "llvm/Function.h"
Chris Lattner37730942002-02-05 03:52:29 +000023#include "llvm/Type.h"
Vikram S. Advedabb41d2002-05-19 15:29:31 +000024#include "llvm/iOther.h"
Chris Lattnerc6f3ae52002-04-29 17:42:12 +000025#include "llvm/CodeGen/RegAllocCommon.h"
Chris Lattner70e60cb2002-05-22 17:08:27 +000026#include "Support/CommandLine.h"
Vikram S. Advef5af6362002-07-08 23:15:32 +000027#include "Support/STLExtras.h"
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +000028#include <math.h>
Chris Lattner697954c2002-01-20 22:54:45 +000029using std::cerr;
Anand Shuklacfb22d32002-06-25 20:55:50 +000030using std::vector;
Vikram S. Adve12af1642001-11-08 04:48:50 +000031
Chris Lattner70e60cb2002-05-22 17:08:27 +000032RegAllocDebugLevel_t DEBUG_RA;
Chris Lattner5ff62e92002-07-22 02:10:13 +000033static cl::opt<RegAllocDebugLevel_t, true>
34DRA_opt("dregalloc", cl::Hidden, cl::location(DEBUG_RA),
35 cl::desc("enable register allocation debugging information"),
36 cl::values(
Chris Lattner045e7c82001-09-19 16:26:23 +000037 clEnumValN(RA_DEBUG_None , "n", "disable debug output"),
38 clEnumValN(RA_DEBUG_Normal , "y", "enable debug output"),
Chris Lattner5ff62e92002-07-22 02:10:13 +000039 clEnumValN(RA_DEBUG_Verbose, "v", "enable extra debug output"),
40 0));
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +000041
42
Chris Lattner2f9b28e2002-02-04 15:54:09 +000043//----------------------------------------------------------------------------
44// RegisterAllocation pass front end...
45//----------------------------------------------------------------------------
46namespace {
Chris Lattnerf57b8452002-04-27 06:56:12 +000047 class RegisterAllocator : public FunctionPass {
Chris Lattner2f9b28e2002-02-04 15:54:09 +000048 TargetMachine &Target;
49 public:
50 inline RegisterAllocator(TargetMachine &T) : Target(T) {}
Chris Lattner96c466b2002-04-29 14:57:45 +000051
52 const char *getPassName() const { return "Register Allocation"; }
Chris Lattner6dd98a62002-02-04 00:33:08 +000053
Chris Lattner7e708292002-06-25 16:13:24 +000054 bool runOnFunction(Function &F) {
Chris Lattner2f9b28e2002-02-04 15:54:09 +000055 if (DEBUG_RA)
Chris Lattner7e708292002-06-25 16:13:24 +000056 cerr << "\n********* Function "<< F.getName() << " ***********\n";
Chris Lattner2f9b28e2002-02-04 15:54:09 +000057
Chris Lattner7e708292002-06-25 16:13:24 +000058 PhyRegAlloc PRA(&F, Target, &getAnalysis<FunctionLiveVarInfo>(),
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000059 &getAnalysis<LoopInfo>());
Chris Lattner2f9b28e2002-02-04 15:54:09 +000060 PRA.allocateRegisters();
61
62 if (DEBUG_RA) cerr << "\nRegister allocation complete!\n";
63 return false;
64 }
Chris Lattner4911c352002-02-04 17:39:42 +000065
Chris Lattnerf57b8452002-04-27 06:56:12 +000066 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000067 AU.addRequired(LoopInfo::ID);
Chris Lattner483e14e2002-04-27 07:27:19 +000068 AU.addRequired(FunctionLiveVarInfo::ID);
Chris Lattner4911c352002-02-04 17:39:42 +000069 }
Chris Lattner2f9b28e2002-02-04 15:54:09 +000070 };
Chris Lattner6dd98a62002-02-04 00:33:08 +000071}
72
Chris Lattnerf57b8452002-04-27 06:56:12 +000073Pass *getRegisterAllocator(TargetMachine &T) {
Chris Lattner2f9b28e2002-02-04 15:54:09 +000074 return new RegisterAllocator(T);
75}
Chris Lattner6dd98a62002-02-04 00:33:08 +000076
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +000077//----------------------------------------------------------------------------
78// Constructor: Init local composite objects and create register classes.
79//----------------------------------------------------------------------------
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000080PhyRegAlloc::PhyRegAlloc(Function *F, const TargetMachine& tm,
81 FunctionLiveVarInfo *Lvi, LoopInfo *LDC)
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000082 : TM(tm), Meth(F),
83 mcInfo(MachineCodeForMethod::get(F)),
84 LVI(Lvi), LRI(F, tm, RegClassList),
85 MRI(tm.getRegInfo()),
Ruchira Sasanka8e604792001-09-14 21:18:34 +000086 NumOfRegClasses(MRI.getNumOfRegClasses()),
Chris Lattner4911c352002-02-04 17:39:42 +000087 LoopDepthCalc(LDC) {
Ruchira Sasanka8e604792001-09-14 21:18:34 +000088
89 // create each RegisterClass and put in RegClassList
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +000090 //
Chris Lattner7e708292002-06-25 16:13:24 +000091 for (unsigned rc=0; rc < NumOfRegClasses; rc++)
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000092 RegClassList.push_back(new RegClass(F, MRI.getMachineRegClass(rc),
93 &ResColList));
Ruchira Sasanka8e604792001-09-14 21:18:34 +000094}
95
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +000096
97//----------------------------------------------------------------------------
98// Destructor: Deletes register classes
99//----------------------------------------------------------------------------
100PhyRegAlloc::~PhyRegAlloc() {
Chris Lattner7e708292002-06-25 16:13:24 +0000101 for ( unsigned rc=0; rc < NumOfRegClasses; rc++)
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000102 delete RegClassList[rc];
Chris Lattner0b0ffa02002-04-09 05:13:04 +0000103
104 AddedInstrMap.clear();
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000105}
106
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000107//----------------------------------------------------------------------------
108// This method initally creates interference graphs (one in each reg class)
109// and IGNodeList (one in each IG). The actual nodes will be pushed later.
110//----------------------------------------------------------------------------
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000111void PhyRegAlloc::createIGNodeListsAndIGs() {
112 if (DEBUG_RA) cerr << "Creating LR lists ...\n";
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000113
114 // hash map iterator
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000115 LiveRangeMapType::const_iterator HMI = LRI.getLiveRangeMap()->begin();
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000116
117 // hash map end
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000118 LiveRangeMapType::const_iterator HMIEnd = LRI.getLiveRangeMap()->end();
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000119
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000120 for (; HMI != HMIEnd ; ++HMI ) {
121 if (HMI->first) {
122 LiveRange *L = HMI->second; // get the LiveRange
123 if (!L) {
Chris Lattner7e708292002-06-25 16:13:24 +0000124 if (DEBUG_RA) {
Chris Lattner0665a5f2002-02-05 01:43:49 +0000125 cerr << "\n*?!?Warning: Null liver range found for: "
126 << RAV(HMI->first) << "\n";
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000127 }
128 continue;
129 }
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000130 // if the Value * is not null, and LR
131 // is not yet written to the IGNodeList
Chris Lattner7e708292002-06-25 16:13:24 +0000132 if (!(L->getUserIGNode()) ) {
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000133 RegClass *const RC = // RegClass of first value in the LR
134 RegClassList[ L->getRegClass()->getID() ];
135
136 RC->addLRToIG(L); // add this LR to an IG
137 }
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000138 }
139 }
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000140
141 // init RegClassList
Chris Lattner7e708292002-06-25 16:13:24 +0000142 for ( unsigned rc=0; rc < NumOfRegClasses ; rc++)
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000143 RegClassList[rc]->createInterferenceGraph();
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000144
Chris Lattner7e708292002-06-25 16:13:24 +0000145 if (DEBUG_RA)
Chris Lattner697954c2002-01-20 22:54:45 +0000146 cerr << "LRLists Created!\n";
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000147}
148
149
150
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000151
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000152//----------------------------------------------------------------------------
153// This method will add all interferences at for a given instruction.
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000154// Interence occurs only if the LR of Def (Inst or Arg) is of the same reg
155// class as that of live var. The live var passed to this function is the
156// LVset AFTER the instruction
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000157//----------------------------------------------------------------------------
Chris Lattner296b7732002-02-05 02:52:05 +0000158void PhyRegAlloc::addInterference(const Value *Def,
159 const ValueSet *LVSet,
160 bool isCallInst) {
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000161
Chris Lattner296b7732002-02-05 02:52:05 +0000162 ValueSet::const_iterator LIt = LVSet->begin();
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000163
164 // get the live range of instruction
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000165 //
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000166 const LiveRange *const LROfDef = LRI.getLiveRangeForValue( Def );
167
168 IGNode *const IGNodeOfDef = LROfDef->getUserIGNode();
169 assert( IGNodeOfDef );
170
171 RegClass *const RCOfDef = LROfDef->getRegClass();
172
173 // for each live var in live variable set
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000174 //
Chris Lattner7e708292002-06-25 16:13:24 +0000175 for ( ; LIt != LVSet->end(); ++LIt) {
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000176
Vikram S. Advef5af6362002-07-08 23:15:32 +0000177 if (DEBUG_RA >= RA_DEBUG_Verbose)
Chris Lattner0665a5f2002-02-05 01:43:49 +0000178 cerr << "< Def=" << RAV(Def) << ", Lvar=" << RAV(*LIt) << "> ";
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000179
180 // get the live range corresponding to live var
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000181 //
Chris Lattner0665a5f2002-02-05 01:43:49 +0000182 LiveRange *LROfVar = LRI.getLiveRangeForValue(*LIt);
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000183
184 // LROfVar can be null if it is a const since a const
185 // doesn't have a dominating def - see Assumptions above
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000186 //
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000187 if (LROfVar) {
Chris Lattner7e708292002-06-25 16:13:24 +0000188 if (LROfDef == LROfVar) // do not set interf for same LR
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000189 continue;
190
191 // if 2 reg classes are the same set interference
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000192 //
Chris Lattner0665a5f2002-02-05 01:43:49 +0000193 if (RCOfDef == LROfVar->getRegClass()) {
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000194 RCOfDef->setInterference( LROfDef, LROfVar);
Vikram S. Advef5af6362002-07-08 23:15:32 +0000195 } else if (DEBUG_RA >= RA_DEBUG_Verbose) {
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000196 // we will not have LRs for values not explicitly allocated in the
197 // instruction stream (e.g., constants)
Chris Lattner0665a5f2002-02-05 01:43:49 +0000198 cerr << " warning: no live range for " << RAV(*LIt) << "\n";
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000199 }
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000200 }
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000201 }
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000202}
203
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000204
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000205
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000206//----------------------------------------------------------------------------
207// For a call instruction, this method sets the CallInterference flag in
208// the LR of each variable live int the Live Variable Set live after the
209// call instruction (except the return value of the call instruction - since
210// the return value does not interfere with that call itself).
211//----------------------------------------------------------------------------
212
213void PhyRegAlloc::setCallInterferences(const MachineInstr *MInst,
Chris Lattner296b7732002-02-05 02:52:05 +0000214 const ValueSet *LVSetAft) {
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000215
Chris Lattner7e708292002-06-25 16:13:24 +0000216 if (DEBUG_RA)
Chris Lattner697954c2002-01-20 22:54:45 +0000217 cerr << "\n For call inst: " << *MInst;
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000218
Chris Lattner296b7732002-02-05 02:52:05 +0000219 ValueSet::const_iterator LIt = LVSetAft->begin();
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000220
221 // for each live var in live variable set after machine inst
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000222 //
Chris Lattner7e708292002-06-25 16:13:24 +0000223 for ( ; LIt != LVSetAft->end(); ++LIt) {
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000224
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000225 // get the live range corresponding to live var
226 //
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000227 LiveRange *const LR = LRI.getLiveRangeForValue(*LIt );
228
Chris Lattner7e708292002-06-25 16:13:24 +0000229 if (LR && DEBUG_RA) {
Chris Lattner697954c2002-01-20 22:54:45 +0000230 cerr << "\n\tLR Aft Call: ";
Chris Lattner296b7732002-02-05 02:52:05 +0000231 printSet(*LR);
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000232 }
233
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000234 // LR can be null if it is a const since a const
235 // doesn't have a dominating def - see Assumptions above
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000236 //
Chris Lattner7e708292002-06-25 16:13:24 +0000237 if (LR ) {
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000238 LR->setCallInterference();
Chris Lattner7e708292002-06-25 16:13:24 +0000239 if (DEBUG_RA) {
Chris Lattner697954c2002-01-20 22:54:45 +0000240 cerr << "\n ++Added call interf for LR: " ;
Chris Lattner296b7732002-02-05 02:52:05 +0000241 printSet(*LR);
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000242 }
243 }
244
245 }
246
Vikram S. Adve1a53f032002-03-31 18:54:37 +0000247 // Now find the LR of the return value of the call
248 // We do this because, we look at the LV set *after* the instruction
249 // to determine, which LRs must be saved across calls. The return value
250 // of the call is live in this set - but it does not interfere with call
251 // (i.e., we can allocate a volatile register to the return value)
252 //
Vikram S. Advedabb41d2002-05-19 15:29:31 +0000253 CallArgsDescriptor* argDesc = CallArgsDescriptor::get(MInst);
254
255 if (const Value *RetVal = argDesc->getReturnValue()) {
Vikram S. Adve1a53f032002-03-31 18:54:37 +0000256 LiveRange *RetValLR = LRI.getLiveRangeForValue( RetVal );
257 assert( RetValLR && "No LR for RetValue of call");
258 RetValLR->clearCallInterference();
259 }
260
261 // If the CALL is an indirect call, find the LR of the function pointer.
262 // That has a call interference because it conflicts with outgoing args.
Chris Lattner7e708292002-06-25 16:13:24 +0000263 if (const Value *AddrVal = argDesc->getIndirectFuncPtr()) {
Vikram S. Adve1a53f032002-03-31 18:54:37 +0000264 LiveRange *AddrValLR = LRI.getLiveRangeForValue( AddrVal );
265 assert( AddrValLR && "No LR for indirect addr val of call");
266 AddrValLR->setCallInterference();
267 }
268
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000269}
270
271
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000272
273
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000274//----------------------------------------------------------------------------
275// This method will walk thru code and create interferences in the IG of
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000276// each RegClass. Also, this method calculates the spill cost of each
277// Live Range (it is done in this method to save another pass over the code).
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000278//----------------------------------------------------------------------------
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000279void PhyRegAlloc::buildInterferenceGraphs()
280{
281
Chris Lattner7e708292002-06-25 16:13:24 +0000282 if (DEBUG_RA) cerr << "Creating interference graphs ...\n";
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000283
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000284 unsigned BBLoopDepthCost;
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000285 for (Function::const_iterator BBI = Meth->begin(), BBE = Meth->end();
286 BBI != BBE; ++BBI) {
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000287
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000288 // find the 10^(loop_depth) of this BB
289 //
Chris Lattner7e708292002-06-25 16:13:24 +0000290 BBLoopDepthCost = (unsigned)pow(10.0, LoopDepthCalc->getLoopDepth(BBI));
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000291
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000292 // get the iterator for machine instructions
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000293 //
Vikram S. Advef5af6362002-07-08 23:15:32 +0000294 const MachineCodeForBasicBlock& MIVec = MachineCodeForBasicBlock::get(BBI);
Vikram S. Adve48762092002-04-25 04:34:15 +0000295 MachineCodeForBasicBlock::const_iterator MII = MIVec.begin();
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000296
297 // iterate over all the machine instructions in BB
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000298 //
Chris Lattner7e708292002-06-25 16:13:24 +0000299 for ( ; MII != MIVec.end(); ++MII) {
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +0000300
Vikram S. Adve48762092002-04-25 04:34:15 +0000301 const MachineInstr *MInst = *MII;
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000302
303 // get the LV set after the instruction
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000304 //
Chris Lattner7e708292002-06-25 16:13:24 +0000305 const ValueSet &LVSetAI = LVI->getLiveVarSetAfterMInst(MInst, BBI);
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000306
307 const bool isCallInst = TM.getInstrInfo().isCall(MInst->getOpCode());
308
Chris Lattner7e708292002-06-25 16:13:24 +0000309 if (isCallInst ) {
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000310 // set the isCallInterference flag of each live range wich extends
311 // accross this call instruction. This information is used by graph
312 // coloring algo to avoid allocating volatile colors to live ranges
313 // that span across calls (since they have to be saved/restored)
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000314 //
Chris Lattner748697d2002-02-05 04:20:12 +0000315 setCallInterferences(MInst, &LVSetAI);
Ruchira Sasanka958faf32001-10-19 17:21:03 +0000316 }
317
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000318
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000319 // iterate over all MI operands to find defs
320 //
Chris Lattner2f898d22002-02-05 06:02:59 +0000321 for (MachineInstr::const_val_op_iterator OpI = MInst->begin(),
322 OpE = MInst->end(); OpI != OpE; ++OpI) {
323 if (OpI.isDef()) // create a new LR iff this operand is a def
Chris Lattner748697d2002-02-05 04:20:12 +0000324 addInterference(*OpI, &LVSetAI, isCallInst);
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000325
326 // Calculate the spill cost of each live range
327 //
Chris Lattner2f898d22002-02-05 06:02:59 +0000328 LiveRange *LR = LRI.getLiveRangeForValue(*OpI);
329 if (LR) LR->addSpillCost(BBLoopDepthCost);
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000330 }
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000331
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000332
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000333 // if there are multiple defs in this instruction e.g. in SETX
334 //
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000335 if (TM.getInstrInfo().isPseudoInstr(MInst->getOpCode()))
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000336 addInterf4PseudoInstr(MInst);
337
338
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000339 // Also add interference for any implicit definitions in a machine
340 // instr (currently, only calls have this).
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000341 //
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000342 unsigned NumOfImpRefs = MInst->getNumImplicitRefs();
Chris Lattner7e708292002-06-25 16:13:24 +0000343 if ( NumOfImpRefs > 0 ) {
344 for (unsigned z=0; z < NumOfImpRefs; z++)
345 if (MInst->implicitRefIsDefined(z) )
Chris Lattner748697d2002-02-05 04:20:12 +0000346 addInterference( MInst->getImplicitRef(z), &LVSetAI, isCallInst );
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000347 }
348
Ruchira Sasankaef1b0cb2001-11-03 17:13:27 +0000349
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000350 } // for all machine instructions in BB
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000351 } // for all BBs in function
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000352
353
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000354 // add interferences for function arguments. Since there are no explict
355 // defs in the function for args, we have to add them manually
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000356 //
357 addInterferencesForArgs();
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000358
Chris Lattner7e708292002-06-25 16:13:24 +0000359 if (DEBUG_RA)
Chris Lattner697954c2002-01-20 22:54:45 +0000360 cerr << "Interference graphs calculted!\n";
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000361
362}
363
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000364
365
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000366//--------------------------------------------------------------------------
367// Pseudo instructions will be exapnded to multiple instructions by the
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000368// assembler. Consequently, all the opernds must get distinct registers.
369// Therefore, we mark all operands of a pseudo instruction as they interfere
370// with one another.
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000371//--------------------------------------------------------------------------
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000372void PhyRegAlloc::addInterf4PseudoInstr(const MachineInstr *MInst) {
373
Ruchira Sasankaf6dfca12001-11-15 15:00:53 +0000374 bool setInterf = false;
375
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000376 // iterate over MI operands to find defs
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000377 //
Chris Lattner2f898d22002-02-05 06:02:59 +0000378 for (MachineInstr::const_val_op_iterator It1 = MInst->begin(),
379 ItE = MInst->end(); It1 != ItE; ++It1) {
380 const LiveRange *LROfOp1 = LRI.getLiveRangeForValue(*It1);
381 assert((LROfOp1 || !It1.isDef()) && "No LR for Def in PSEUDO insruction");
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000382
Chris Lattner2f898d22002-02-05 06:02:59 +0000383 MachineInstr::const_val_op_iterator It2 = It1;
Chris Lattner7e708292002-06-25 16:13:24 +0000384 for (++It2; It2 != ItE; ++It2) {
Chris Lattner2f898d22002-02-05 06:02:59 +0000385 const LiveRange *LROfOp2 = LRI.getLiveRangeForValue(*It2);
Ruchira Sasankaf6dfca12001-11-15 15:00:53 +0000386
Chris Lattner2f898d22002-02-05 06:02:59 +0000387 if (LROfOp2) {
388 RegClass *RCOfOp1 = LROfOp1->getRegClass();
389 RegClass *RCOfOp2 = LROfOp2->getRegClass();
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000390
Chris Lattner7e708292002-06-25 16:13:24 +0000391 if (RCOfOp1 == RCOfOp2 ){
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000392 RCOfOp1->setInterference( LROfOp1, LROfOp2 );
Ruchira Sasankaf6dfca12001-11-15 15:00:53 +0000393 setInterf = true;
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000394 }
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000395 } // if Op2 has a LR
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000396 } // for all other defs in machine instr
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000397 } // for all operands in an instruction
398
Chris Lattner2f898d22002-02-05 06:02:59 +0000399 if (!setInterf && MInst->getNumOperands() > 2) {
Ruchira Sasankaf6dfca12001-11-15 15:00:53 +0000400 cerr << "\nInterf not set for any operand in pseudo instr:\n";
401 cerr << *MInst;
402 assert(0 && "Interf not set for pseudo instr with > 2 operands" );
Ruchira Sasankaf6dfca12001-11-15 15:00:53 +0000403 }
Ruchira Sasanka22ccb1b2001-11-14 15:33:58 +0000404}
405
406
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000407
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000408//----------------------------------------------------------------------------
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000409// This method will add interferences for incoming arguments to a function.
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000410//----------------------------------------------------------------------------
Chris Lattner296b7732002-02-05 02:52:05 +0000411void PhyRegAlloc::addInterferencesForArgs() {
412 // get the InSet of root BB
Chris Lattner7e708292002-06-25 16:13:24 +0000413 const ValueSet &InSet = LVI->getInSetOfBB(&Meth->front());
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000414
Chris Lattner7e708292002-06-25 16:13:24 +0000415 for (Function::const_aiterator AI = Meth->abegin(); AI != Meth->aend(); ++AI) {
416 // add interferences between args and LVars at start
417 addInterference(AI, &InSet, false);
418
Vikram S. Advef5af6362002-07-08 23:15:32 +0000419 if (DEBUG_RA >= RA_DEBUG_Verbose)
Chris Lattner7e708292002-06-25 16:13:24 +0000420 cerr << " - %% adding interference for argument " << RAV(AI) << "\n";
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000421 }
422}
423
424
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000425//----------------------------------------------------------------------------
426// This method is called after register allocation is complete to set the
427// allocated reisters in the machine code. This code will add register numbers
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000428// to MachineOperands that contain a Value. Also it calls target specific
429// methods to produce caller saving instructions. At the end, it adds all
430// additional instructions produced by the register allocator to the
431// instruction stream.
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000432//----------------------------------------------------------------------------
Vikram S. Adve48762092002-04-25 04:34:15 +0000433
434//-----------------------------
435// Utility functions used below
436//-----------------------------
437inline void
Vikram S. Advedabb41d2002-05-19 15:29:31 +0000438PrependInstructions(vector<MachineInstr *> &IBef,
Vikram S. Adve48762092002-04-25 04:34:15 +0000439 MachineCodeForBasicBlock& MIVec,
440 MachineCodeForBasicBlock::iterator& MII,
441 const std::string& msg)
442{
443 if (!IBef.empty())
444 {
445 MachineInstr* OrigMI = *MII;
Vikram S. Advedabb41d2002-05-19 15:29:31 +0000446 std::vector<MachineInstr *>::iterator AdIt;
Vikram S. Adve48762092002-04-25 04:34:15 +0000447 for (AdIt = IBef.begin(); AdIt != IBef.end() ; ++AdIt)
448 {
449 if (DEBUG_RA) {
450 if (OrigMI) cerr << "For MInst: " << *OrigMI;
451 cerr << msg << " PREPENDed instr: " << **AdIt << "\n";
452 }
453 MII = MIVec.insert(MII, *AdIt);
454 ++MII;
455 }
456 }
457}
458
459inline void
Vikram S. Advedabb41d2002-05-19 15:29:31 +0000460AppendInstructions(std::vector<MachineInstr *> &IAft,
Vikram S. Adve48762092002-04-25 04:34:15 +0000461 MachineCodeForBasicBlock& MIVec,
462 MachineCodeForBasicBlock::iterator& MII,
463 const std::string& msg)
464{
465 if (!IAft.empty())
466 {
467 MachineInstr* OrigMI = *MII;
Vikram S. Advedabb41d2002-05-19 15:29:31 +0000468 std::vector<MachineInstr *>::iterator AdIt;
Chris Lattner7e708292002-06-25 16:13:24 +0000469 for ( AdIt = IAft.begin(); AdIt != IAft.end() ; ++AdIt )
Vikram S. Adve48762092002-04-25 04:34:15 +0000470 {
Chris Lattner7e708292002-06-25 16:13:24 +0000471 if (DEBUG_RA) {
Vikram S. Adve48762092002-04-25 04:34:15 +0000472 if (OrigMI) cerr << "For MInst: " << *OrigMI;
473 cerr << msg << " APPENDed instr: " << **AdIt << "\n";
474 }
475 ++MII; // insert before the next instruction
476 MII = MIVec.insert(MII, *AdIt);
477 }
478 }
479}
480
481
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000482void PhyRegAlloc::updateMachineCode()
483{
Vikram S. Advef5af6362002-07-08 23:15:32 +0000484 MachineCodeForBasicBlock& MIVec = MachineCodeForBasicBlock::get(&Meth->getEntryNode());
Vikram S. Adve48762092002-04-25 04:34:15 +0000485
Chris Lattner7e708292002-06-25 16:13:24 +0000486 // Insert any instructions needed at method entry
487 MachineCodeForBasicBlock::iterator MII = MIVec.begin();
488 PrependInstructions(AddedInstrAtEntry.InstrnsBefore, MIVec, MII,
489 "At function entry: \n");
490 assert(AddedInstrAtEntry.InstrnsAfter.empty() &&
491 "InstrsAfter should be unnecessary since we are just inserting at "
492 "the function entry point here.");
Vikram S. Adve48762092002-04-25 04:34:15 +0000493
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000494 for (Function::const_iterator BBI = Meth->begin(), BBE = Meth->end();
495 BBI != BBE; ++BBI) {
Vikram S. Adve48762092002-04-25 04:34:15 +0000496
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000497 // iterate over all the machine instructions in BB
Vikram S. Advef5af6362002-07-08 23:15:32 +0000498 MachineCodeForBasicBlock &MIVec = MachineCodeForBasicBlock::get(BBI);
Chris Lattner7e708292002-06-25 16:13:24 +0000499 for (MachineCodeForBasicBlock::iterator MII = MIVec.begin();
Vikram S. Adve48762092002-04-25 04:34:15 +0000500 MII != MIVec.end(); ++MII) {
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000501
Vikram S. Adve48762092002-04-25 04:34:15 +0000502 MachineInstr *MInst = *MII;
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000503
504 unsigned Opcode = MInst->getOpCode();
505
Ruchira Sasanka65480b72001-11-10 21:21:36 +0000506 // do not process Phis
Vikram S. Adve23a4c8f2002-03-18 03:37:19 +0000507 if (TM.getInstrInfo().isDummyPhiInstr(Opcode))
Ruchira Sasanka65480b72001-11-10 21:21:36 +0000508 continue;
509
Vikram S. Advef5af6362002-07-08 23:15:32 +0000510 // Reset tmp stack positions so they can be reused for each machine instr.
511 mcInfo.popAllTempValues(TM);
512
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000513 // Now insert speical instructions (if necessary) for call/return
514 // instructions.
515 //
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000516 if (TM.getInstrInfo().isCall(Opcode) ||
517 TM.getInstrInfo().isReturn(Opcode)) {
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000518
Chris Lattner0b0ffa02002-04-09 05:13:04 +0000519 AddedInstrns &AI = AddedInstrMap[MInst];
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000520
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000521 if (TM.getInstrInfo().isCall(Opcode))
Chris Lattner7e708292002-06-25 16:13:24 +0000522 MRI.colorCallArgs(MInst, LRI, &AI, *this, BBI);
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000523 else if (TM.getInstrInfo().isReturn(Opcode))
Chris Lattner0b0ffa02002-04-09 05:13:04 +0000524 MRI.colorRetValue(MInst, LRI, &AI);
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000525 }
526
Vikram S. Advef5af6362002-07-08 23:15:32 +0000527 // Set the registers for operands in the machine instruction
528 // if a register was successfully allocated. If not, insert
529 // code to spill the register value.
530 //
531 for (unsigned OpNum=0; OpNum < MInst->getNumOperands(); ++OpNum)
532 {
533 MachineOperand& Op = MInst->getOperand(OpNum);
534 if (Op.getOperandType() == MachineOperand::MO_VirtualRegister ||
535 Op.getOperandType() == MachineOperand::MO_CCRegister)
536 {
537 const Value *const Val = Op.getVRegValue();
538
539 LiveRange *const LR = LRI.getLiveRangeForValue(Val);
540 if (!LR) // consts or labels will have no live range
541 {
542 // if register is not allocated, mark register as invalid
543 if (Op.getAllocatedRegNum() == -1)
544 MInst->SetRegForOperand(OpNum, MRI.getInvalidRegNum());
545 continue;
546 }
547
548 if (LR->hasColor() )
549 MInst->SetRegForOperand(OpNum,
550 MRI.getUnifiedRegNum(LR->getRegClass()->getID(),
551 LR->getColor()));
552 else
553 // LR did NOT receive a color (register). Insert spill code.
554 insertCode4SpilledLR(LR, MInst, BBI, OpNum );
Chris Lattner4c3aaa42001-09-19 16:09:04 +0000555 }
Vikram S. Advef5af6362002-07-08 23:15:32 +0000556 } // for each operand
557
558
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000559 // Now add instructions that the register allocator inserts before/after
560 // this machine instructions (done only for calls/rets/incoming args)
561 // We do this here, to ensure that spill for an instruction is inserted
562 // closest as possible to an instruction (see above insertCode4Spill...)
563 //
Ruchira Sasankaf221a2e2001-11-13 23:09:30 +0000564 // If there are instructions to be added, *before* this machine
565 // instruction, add them now.
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000566 //
Chris Lattner7e708292002-06-25 16:13:24 +0000567 if (AddedInstrMap.count(MInst)) {
Vikram S. Adve48762092002-04-25 04:34:15 +0000568 PrependInstructions(AddedInstrMap[MInst].InstrnsBefore, MIVec, MII,"");
Ruchira Sasankaf221a2e2001-11-13 23:09:30 +0000569 }
Vikram S. Adve48762092002-04-25 04:34:15 +0000570
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000571 // If there are instructions to be added *after* this machine
572 // instruction, add them now
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000573 //
Chris Lattner0b0ffa02002-04-09 05:13:04 +0000574 if (!AddedInstrMap[MInst].InstrnsAfter.empty()) {
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000575
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000576 // if there are delay slots for this instruction, the instructions
577 // added after it must really go after the delayed instruction(s)
578 // So, we move the InstrAfter of the current instruction to the
579 // corresponding delayed instruction
580
581 unsigned delay;
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000582 if ((delay=TM.getInstrInfo().getNumDelaySlots(MInst->getOpCode())) >0){
Vikram S. Adve48762092002-04-25 04:34:15 +0000583 move2DelayedInstr(MInst, *(MII+delay) );
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000584 }
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000585 else {
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000586 // Here we can add the "instructions after" to the current
587 // instruction since there are no delay slots for this instruction
Vikram S. Adve48762092002-04-25 04:34:15 +0000588 AppendInstructions(AddedInstrMap[MInst].InstrnsAfter, MIVec, MII,"");
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000589 } // if not delay
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000590 }
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000591
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000592 } // for each machine instruction
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000593 }
594}
595
596
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000597
598//----------------------------------------------------------------------------
599// This method inserts spill code for AN operand whose LR was spilled.
600// This method may be called several times for a single machine instruction
601// if it contains many spilled operands. Each time it is called, it finds
602// a register which is not live at that instruction and also which is not
603// used by other spilled operands of the same instruction. Then it uses
604// this register temporarily to accomodate the spilled value.
605//----------------------------------------------------------------------------
606void PhyRegAlloc::insertCode4SpilledLR(const LiveRange *LR,
607 MachineInstr *MInst,
608 const BasicBlock *BB,
609 const unsigned OpNum) {
610
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000611 assert(! TM.getInstrInfo().isCall(MInst->getOpCode()) &&
612 (! TM.getInstrInfo().isReturn(MInst->getOpCode())) &&
613 "Arg of a call/ret must be handled elsewhere");
614
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000615 MachineOperand& Op = MInst->getOperand(OpNum);
616 bool isDef = MInst->operandIsDefined(OpNum);
Vikram S. Advef5af6362002-07-08 23:15:32 +0000617 bool isDefAndUse = MInst->operandIsDefinedAndUsed(OpNum);
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000618 unsigned RegType = MRI.getRegType( LR );
619 int SpillOff = LR->getSpillOffFromFP();
620 RegClass *RC = LR->getRegClass();
Chris Lattner748697d2002-02-05 04:20:12 +0000621 const ValueSet &LVSetBef = LVI->getLiveVarSetBeforeMInst(MInst, BB);
Vikram S. Adve00521d72001-11-12 23:26:35 +0000622
Chris Lattner697954c2002-01-20 22:54:45 +0000623 mcInfo.pushTempValue(TM, MRI.getSpilledRegSize(RegType) );
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000624
Vikram S. Advef5af6362002-07-08 23:15:32 +0000625 vector<MachineInstr*> MIBef, MIAft;
Vikram S. Advedabb41d2002-05-19 15:29:31 +0000626 vector<MachineInstr*> AdIMid;
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000627
Vikram S. Advef5af6362002-07-08 23:15:32 +0000628 // Choose a register to hold the spilled value. This may insert code
629 // before and after MInst to free up the value. If so, this code should
630 // be first and last in the spill sequence before/after MInst.
631 int TmpRegU = getUsableUniRegAtMI(RegType, &LVSetBef, MInst, MIBef, MIAft);
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000632
Vikram S. Advef5af6362002-07-08 23:15:32 +0000633 // Set the operand first so that it this register does not get used
634 // as a scratch register for later calls to getUsableUniRegAtMI below
635 MInst->SetRegForOperand(OpNum, TmpRegU);
636
637 // get the added instructions for this instruction
Chris Lattner0b0ffa02002-04-09 05:13:04 +0000638 AddedInstrns &AI = AddedInstrMap[MInst];
Vikram S. Advef5af6362002-07-08 23:15:32 +0000639
640 // We may need a scratch register to copy the spilled value to/from memory.
641 // This may itself have to insert code to free up a scratch register.
642 // Any such code should go before (after) the spill code for a load (store).
643 int scratchRegType = -1;
644 int scratchReg = -1;
645 if (MRI.regTypeNeedsScratchReg(RegType, scratchRegType))
646 {
647 scratchReg = this->getUsableUniRegAtMI(scratchRegType, &LVSetBef,
648 MInst, MIBef, MIAft);
649 assert(scratchReg != MRI.getInvalidRegNum());
650 MInst->getRegsUsed().insert(scratchReg);
651 }
652
653 if (!isDef || isDefAndUse) {
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000654 // for a USE, we have to load the value of LR from stack to a TmpReg
655 // and use the TmpReg as one operand of instruction
Vikram S. Advedabb41d2002-05-19 15:29:31 +0000656
Vikram S. Advef5af6362002-07-08 23:15:32 +0000657 // actual loading instruction(s)
658 MRI.cpMem2RegMI(AdIMid, MRI.getFramePointer(), SpillOff, TmpRegU, RegType,
659 scratchReg);
Ruchira Sasanka226f1f02001-11-08 19:11:30 +0000660
Vikram S. Advef5af6362002-07-08 23:15:32 +0000661 // the actual load should be after the instructions to free up TmpRegU
662 MIBef.insert(MIBef.end(), AdIMid.begin(), AdIMid.end());
663 AdIMid.clear();
664 }
665
666 if (isDef) { // if this is a Def
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000667 // for a DEF, we have to store the value produced by this instruction
668 // on the stack position allocated for this LR
Vikram S. Advedabb41d2002-05-19 15:29:31 +0000669
Vikram S. Advef5af6362002-07-08 23:15:32 +0000670 // actual storing instruction(s)
671 MRI.cpReg2MemMI(AdIMid, TmpRegU, MRI.getFramePointer(), SpillOff, RegType,
672 scratchReg);
Vikram S. Advedabb41d2002-05-19 15:29:31 +0000673
Vikram S. Advef5af6362002-07-08 23:15:32 +0000674 MIAft.insert(MIAft.begin(), AdIMid.begin(), AdIMid.end());
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000675 } // if !DEF
Vikram S. Advedabb41d2002-05-19 15:29:31 +0000676
Vikram S. Advef5af6362002-07-08 23:15:32 +0000677 // Finally, insert the entire spill code sequences before/after MInst
678 AI.InstrnsBefore.insert(AI.InstrnsBefore.end(), MIBef.begin(), MIBef.end());
679 AI.InstrnsAfter.insert(AI.InstrnsAfter.begin(), MIAft.begin(), MIAft.end());
680
Chris Lattner7e708292002-06-25 16:13:24 +0000681 if (DEBUG_RA) {
682 cerr << "\nFor Inst " << *MInst;
683 cerr << " - SPILLED LR: "; printSet(*LR);
684 cerr << "\n - Added Instructions:";
Anand Shuklad58290e2002-07-09 19:18:56 +0000685 for_each(MIBef.begin(), MIBef.end(), std::mem_fun(&MachineInstr::dump));
686 for_each(MIAft.begin(), MIAft.end(), std::mem_fun(&MachineInstr::dump));
Chris Lattner7e708292002-06-25 16:13:24 +0000687 }
Ruchira Sasanka5a61d852001-11-08 16:43:25 +0000688}
689
690
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000691//----------------------------------------------------------------------------
692// We can use the following method to get a temporary register to be used
693// BEFORE any given machine instruction. If there is a register available,
694// this method will simply return that register and set MIBef = MIAft = NULL.
695// Otherwise, it will return a register and MIAft and MIBef will contain
696// two instructions used to free up this returned register.
Ruchira Sasanka80b1a1a2001-11-03 20:41:22 +0000697// Returned register number is the UNIFIED register number
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000698//----------------------------------------------------------------------------
699
Vikram S. Advef5af6362002-07-08 23:15:32 +0000700int PhyRegAlloc::getUsableUniRegAtMI(const int RegType,
701 const ValueSet *LVSetBef,
702 MachineInstr *MInst,
703 std::vector<MachineInstr*>& MIBef,
704 std::vector<MachineInstr*>& MIAft) {
705
706 RegClass* RC = this->getRegClassByID(MRI.getRegClassIDOfRegType(RegType));
707
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000708 int RegU = getUnusedUniRegAtMI(RC, MInst, LVSetBef);
Vikram S. Advef5af6362002-07-08 23:15:32 +0000709
710 if (RegU == -1) {
Ruchira Sasanka80b1a1a2001-11-03 20:41:22 +0000711 // we couldn't find an unused register. Generate code to free up a reg by
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000712 // saving it on stack and restoring after the instruction
Vikram S. Advef5af6362002-07-08 23:15:32 +0000713
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +0000714 int TmpOff = mcInfo.pushTempValue(TM, MRI.getSpilledRegSize(RegType) );
Vikram S. Adve12af1642001-11-08 04:48:50 +0000715
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000716 RegU = getUniRegNotUsedByThisInst(RC, MInst);
Vikram S. Advedabb41d2002-05-19 15:29:31 +0000717
Vikram S. Advef5af6362002-07-08 23:15:32 +0000718 // Check if we need a scratch register to copy this register to memory.
719 int scratchRegType = -1;
720 if (MRI.regTypeNeedsScratchReg(RegType, scratchRegType))
721 {
722 int scratchReg = this->getUsableUniRegAtMI(scratchRegType, LVSetBef,
723 MInst, MIBef, MIAft);
724 assert(scratchReg != MRI.getInvalidRegNum());
725
726 // We may as well hold the value in the scratch register instead
727 // of copying it to memory and back. But we have to mark the
728 // register as used by this instruction, so it does not get used
729 // as a scratch reg. by another operand or anyone else.
730 MInst->getRegsUsed().insert(scratchReg);
731 MRI.cpReg2RegMI(MIBef, RegU, scratchReg, RegType);
732 MRI.cpReg2RegMI(MIAft, scratchReg, RegU, RegType);
733 }
734 else
735 { // the register can be copied directly to/from memory so do it.
736 MRI.cpReg2MemMI(MIBef, RegU, MRI.getFramePointer(), TmpOff, RegType);
737 MRI.cpMem2RegMI(MIAft, MRI.getFramePointer(), TmpOff, RegU, RegType);
738 }
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000739 }
Vikram S. Advef5af6362002-07-08 23:15:32 +0000740
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000741 return RegU;
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000742}
743
744//----------------------------------------------------------------------------
745// This method is called to get a new unused register that can be used to
746// accomodate a spilled value.
747// This method may be called several times for a single machine instruction
748// if it contains many spilled operands. Each time it is called, it finds
749// a register which is not live at that instruction and also which is not
750// used by other spilled operands of the same instruction.
Ruchira Sasanka80b1a1a2001-11-03 20:41:22 +0000751// Return register number is relative to the register class. NOT
752// unified number
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000753//----------------------------------------------------------------------------
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000754int PhyRegAlloc::getUnusedUniRegAtMI(RegClass *RC,
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000755 const MachineInstr *MInst,
Chris Lattner296b7732002-02-05 02:52:05 +0000756 const ValueSet *LVSetBef) {
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000757
758 unsigned NumAvailRegs = RC->getNumOfAvailRegs();
759
Chris Lattner85c54652002-05-23 15:50:03 +0000760 std::vector<bool> &IsColorUsedArr = RC->getIsColorUsedArr();
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000761
Chris Lattner7e708292002-06-25 16:13:24 +0000762 for (unsigned i=0; i < NumAvailRegs; i++) // Reset array
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000763 IsColorUsedArr[i] = false;
764
Chris Lattner296b7732002-02-05 02:52:05 +0000765 ValueSet::const_iterator LIt = LVSetBef->begin();
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000766
767 // for each live var in live variable set after machine inst
Chris Lattner7e708292002-06-25 16:13:24 +0000768 for ( ; LIt != LVSetBef->end(); ++LIt) {
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000769
770 // get the live range corresponding to live var
771 LiveRange *const LRofLV = LRI.getLiveRangeForValue(*LIt );
772
773 // LR can be null if it is a const since a const
774 // doesn't have a dominating def - see Assumptions above
Chris Lattner7e708292002-06-25 16:13:24 +0000775 if (LRofLV && LRofLV->getRegClass() == RC && LRofLV->hasColor() )
Vikram S. Advedabb41d2002-05-19 15:29:31 +0000776 IsColorUsedArr[ LRofLV->getColor() ] = true;
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000777 }
778
779 // It is possible that one operand of this MInst was already spilled
780 // and it received some register temporarily. If that's the case,
781 // it is recorded in machine operand. We must skip such registers.
782
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000783 setRelRegsUsedByThisInst(RC, MInst);
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000784
Chris Lattner7e708292002-06-25 16:13:24 +0000785 for (unsigned c=0; c < NumAvailRegs; c++) // find first unused color
Chris Lattner85c54652002-05-23 15:50:03 +0000786 if (!IsColorUsedArr[c])
787 return MRI.getUnifiedRegNum(RC->getID(), c);
Vikram S. Advef5af6362002-07-08 23:15:32 +0000788
Chris Lattner85c54652002-05-23 15:50:03 +0000789 return -1;
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000790}
791
792
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000793//----------------------------------------------------------------------------
794// Get any other register in a register class, other than what is used
795// by operands of a machine instruction. Returns the unified reg number.
796//----------------------------------------------------------------------------
797int PhyRegAlloc::getUniRegNotUsedByThisInst(RegClass *RC,
Chris Lattner85c54652002-05-23 15:50:03 +0000798 const MachineInstr *MInst) {
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000799
Chris Lattner85c54652002-05-23 15:50:03 +0000800 vector<bool> &IsColorUsedArr = RC->getIsColorUsedArr();
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000801 unsigned NumAvailRegs = RC->getNumOfAvailRegs();
802
Chris Lattner7e708292002-06-25 16:13:24 +0000803 for (unsigned i=0; i < NumAvailRegs ; i++) // Reset array
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000804 IsColorUsedArr[i] = false;
805
806 setRelRegsUsedByThisInst(RC, MInst);
807
Chris Lattner7e708292002-06-25 16:13:24 +0000808 for (unsigned c=0; c < RC->getNumOfAvailRegs(); c++)// find first unused color
Chris Lattner85c54652002-05-23 15:50:03 +0000809 if (!IsColorUsedArr[c])
810 return MRI.getUnifiedRegNum(RC->getID(), c);
811
812 assert(0 && "FATAL: No free register could be found in reg class!!");
Chris Lattner697954c2002-01-20 22:54:45 +0000813 return 0;
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000814}
815
816
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000817//----------------------------------------------------------------------------
818// This method modifies the IsColorUsedArr of the register class passed to it.
819// It sets the bits corresponding to the registers used by this machine
Ruchira Sasankaf6dfca12001-11-15 15:00:53 +0000820// instructions. Both explicit and implicit operands are set.
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000821//----------------------------------------------------------------------------
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000822void PhyRegAlloc::setRelRegsUsedByThisInst(RegClass *RC,
Vikram S. Advef5af6362002-07-08 23:15:32 +0000823 const MachineInstr *MInst ) {
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000824
Vikram S. Advef5af6362002-07-08 23:15:32 +0000825 vector<bool> &IsColorUsedArr = RC->getIsColorUsedArr();
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000826
Vikram S. Advef5af6362002-07-08 23:15:32 +0000827 // Add the registers already marked as used by the instruction.
828 // This should include any scratch registers that are used to save
829 // values across the instruction (e.g., for saving state register values).
830 const hash_set<int>& regsUsed = MInst->getRegsUsed();
831 for (hash_set<int>::const_iterator SI=regsUsed.begin(), SE=regsUsed.end();
832 SI != SE; ++SI)
833 {
834 unsigned classId = 0;
835 int classRegNum = MRI.getClassRegNum(*SI, classId);
836 if (RC->getID() == classId)
837 {
838 assert(classRegNum < (int) IsColorUsedArr.size() &&
839 "Illegal register number for this reg class?");
840 IsColorUsedArr[classRegNum] = true;
841 }
Ruchira Sasankaf6dfca12001-11-15 15:00:53 +0000842 }
Vikram S. Advef5af6362002-07-08 23:15:32 +0000843
844 // Now add registers allocated to the live ranges of values used in
845 // the instruction. These are not yet recorded in the instruction.
846 for (unsigned OpNum=0; OpNum < MInst->getNumOperands(); ++OpNum)
847 {
848 const MachineOperand& Op = MInst->getOperand(OpNum);
849
850 if (Op.getOperandType() == MachineOperand::MO_VirtualRegister ||
851 Op.getOperandType() == MachineOperand::MO_CCRegister)
852 if (const Value* Val = Op.getVRegValue())
853 if (MRI.getRegClassIDOfValue(Val) == RC->getID())
854 if (Op.getAllocatedRegNum() == -1)
855 if (LiveRange *LROfVal = LRI.getLiveRangeForValue(Val))
856 if (LROfVal->hasColor() )
857 // this operand is in a LR that received a color
858 IsColorUsedArr[LROfVal->getColor()] = true;
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000859 }
Vikram S. Advef5af6362002-07-08 23:15:32 +0000860
861 // If there are implicit references, mark their allocated regs as well
862 //
863 for (unsigned z=0; z < MInst->getNumImplicitRefs(); z++)
864 if (const LiveRange*
865 LRofImpRef = LRI.getLiveRangeForValue(MInst->getImplicitRef(z)))
866 if (LRofImpRef->hasColor())
867 // this implicit reference is in a LR that received a color
868 IsColorUsedArr[LRofImpRef->getColor()] = true;
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000869}
870
871
Ruchira Sasanka174bded2001-10-28 18:12:02 +0000872//----------------------------------------------------------------------------
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000873// If there are delay slots for an instruction, the instructions
874// added after it must really go after the delayed instruction(s).
875// So, we move the InstrAfter of that instruction to the
876// corresponding delayed instruction using the following method.
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000877
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000878//----------------------------------------------------------------------------
Chris Lattner0b0ffa02002-04-09 05:13:04 +0000879void PhyRegAlloc::move2DelayedInstr(const MachineInstr *OrigMI,
880 const MachineInstr *DelayedMI) {
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000881
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000882 // "added after" instructions of the original instr
Vikram S. Advedabb41d2002-05-19 15:29:31 +0000883 std::vector<MachineInstr *> &OrigAft = AddedInstrMap[OrigMI].InstrnsAfter;
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000884
885 // "added instructions" of the delayed instr
Chris Lattner0b0ffa02002-04-09 05:13:04 +0000886 AddedInstrns &DelayAdI = AddedInstrMap[DelayedMI];
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000887
888 // "added after" instructions of the delayed instr
Vikram S. Advedabb41d2002-05-19 15:29:31 +0000889 std::vector<MachineInstr *> &DelayedAft = DelayAdI.InstrnsAfter;
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000890
891 // go thru all the "added after instructions" of the original instruction
892 // and append them to the "addded after instructions" of the delayed
893 // instructions
Chris Lattner697954c2002-01-20 22:54:45 +0000894 DelayedAft.insert(DelayedAft.end(), OrigAft.begin(), OrigAft.end());
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000895
896 // empty the "added after instructions" of the original instruction
897 OrigAft.clear();
Ruchira Sasanka251d8db2001-10-23 21:38:00 +0000898}
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000899
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000900//----------------------------------------------------------------------------
901// This method prints the code with registers after register allocation is
902// complete.
903//----------------------------------------------------------------------------
904void PhyRegAlloc::printMachineCode()
905{
906
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000907 cerr << "\n;************** Function " << Meth->getName()
Chris Lattner697954c2002-01-20 22:54:45 +0000908 << " *****************\n";
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000909
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000910 for (Function::const_iterator BBI = Meth->begin(), BBE = Meth->end();
911 BBI != BBE; ++BBI) {
Chris Lattner7e708292002-06-25 16:13:24 +0000912 cerr << "\n"; printLabel(BBI); cerr << ": ";
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000913
914 // get the iterator for machine instructions
Vikram S. Advef5af6362002-07-08 23:15:32 +0000915 MachineCodeForBasicBlock& MIVec = MachineCodeForBasicBlock::get(BBI);
Vikram S. Adve48762092002-04-25 04:34:15 +0000916 MachineCodeForBasicBlock::iterator MII = MIVec.begin();
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000917
918 // iterate over all the machine instructions in BB
Chris Lattner7e708292002-06-25 16:13:24 +0000919 for ( ; MII != MIVec.end(); ++MII) {
Vikram S. Adve48762092002-04-25 04:34:15 +0000920 MachineInstr *const MInst = *MII;
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000921
Chris Lattner697954c2002-01-20 22:54:45 +0000922 cerr << "\n\t";
923 cerr << TargetInstrDescriptors[MInst->getOpCode()].opCodeString;
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000924
Chris Lattner7e708292002-06-25 16:13:24 +0000925 for (unsigned OpNum=0; OpNum < MInst->getNumOperands(); ++OpNum) {
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000926 MachineOperand& Op = MInst->getOperand(OpNum);
927
Chris Lattner7e708292002-06-25 16:13:24 +0000928 if (Op.getOperandType() == MachineOperand::MO_VirtualRegister ||
Ruchira Sasanka97b8b442001-10-18 22:36:26 +0000929 Op.getOperandType() == MachineOperand::MO_CCRegister /*||
930 Op.getOperandType() == MachineOperand::MO_PCRelativeDisp*/ ) {
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000931
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000932 const Value *const Val = Op.getVRegValue () ;
Ruchira Sasankae727f852001-09-18 22:43:57 +0000933 // ****this code is temporary till NULL Values are fixed
Chris Lattner7e708292002-06-25 16:13:24 +0000934 if (! Val ) {
Chris Lattner697954c2002-01-20 22:54:45 +0000935 cerr << "\t<*NULL*>";
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000936 continue;
937 }
Ruchira Sasankae727f852001-09-18 22:43:57 +0000938
939 // if a label or a constant
Chris Lattner7e708292002-06-25 16:13:24 +0000940 if (isa<BasicBlock>(Val)) {
Chris Lattner697954c2002-01-20 22:54:45 +0000941 cerr << "\t"; printLabel( Op.getVRegValue () );
942 } else {
Ruchira Sasankae727f852001-09-18 22:43:57 +0000943 // else it must be a register value
944 const int RegNum = Op.getAllocatedRegNum();
945
Chris Lattner697954c2002-01-20 22:54:45 +0000946 cerr << "\t" << "%" << MRI.getUnifiedRegName( RegNum );
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000947 if (Val->hasName() )
Chris Lattner697954c2002-01-20 22:54:45 +0000948 cerr << "(" << Val->getName() << ")";
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000949 else
Chris Lattner697954c2002-01-20 22:54:45 +0000950 cerr << "(" << Val << ")";
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000951
Chris Lattner7e708292002-06-25 16:13:24 +0000952 if (Op.opIsDef() )
Chris Lattner697954c2002-01-20 22:54:45 +0000953 cerr << "*";
Ruchira Sasankaba9d5db2001-11-15 20:23:19 +0000954
955 const LiveRange *LROfVal = LRI.getLiveRangeForValue(Val);
Chris Lattner7e708292002-06-25 16:13:24 +0000956 if (LROfVal )
957 if (LROfVal->hasSpillOffset() )
Chris Lattner697954c2002-01-20 22:54:45 +0000958 cerr << "$";
Ruchira Sasankae727f852001-09-18 22:43:57 +0000959 }
960
961 }
Chris Lattner7e708292002-06-25 16:13:24 +0000962 else if (Op.getOperandType() == MachineOperand::MO_MachineRegister) {
Chris Lattner697954c2002-01-20 22:54:45 +0000963 cerr << "\t" << "%" << MRI.getUnifiedRegName(Op.getMachineRegNum());
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000964 }
965
966 else
Chris Lattner697954c2002-01-20 22:54:45 +0000967 cerr << "\t" << Op; // use dump field
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000968 }
969
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000970
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000971
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000972 unsigned NumOfImpRefs = MInst->getNumImplicitRefs();
Chris Lattner7e708292002-06-25 16:13:24 +0000973 if (NumOfImpRefs > 0) {
Chris Lattner697954c2002-01-20 22:54:45 +0000974 cerr << "\tImplicit:";
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000975
Chris Lattner7e708292002-06-25 16:13:24 +0000976 for (unsigned z=0; z < NumOfImpRefs; z++)
Chris Lattner0665a5f2002-02-05 01:43:49 +0000977 cerr << RAV(MInst->getImplicitRef(z)) << "\t";
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000978 }
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000979
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000980 } // for all machine instructions
981
Chris Lattner697954c2002-01-20 22:54:45 +0000982 cerr << "\n";
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000983
984 } // for all BBs
985
Chris Lattner697954c2002-01-20 22:54:45 +0000986 cerr << "\n";
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +0000987}
988
Ruchira Sasankae727f852001-09-18 22:43:57 +0000989
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +0000990//----------------------------------------------------------------------------
991
992//----------------------------------------------------------------------------
993void PhyRegAlloc::colorIncomingArgs()
994{
Chris Lattner7e708292002-06-25 16:13:24 +0000995 const BasicBlock &FirstBB = Meth->front();
Vikram S. Advef5af6362002-07-08 23:15:32 +0000996 const MachineInstr *FirstMI = MachineCodeForBasicBlock::get(&FirstBB).front();
Chris Lattnerdd1e40b2002-02-03 07:46:34 +0000997 assert(FirstMI && "No machine instruction in entry BB");
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +0000998
Vikram S. Adve48762092002-04-25 04:34:15 +0000999 MRI.colorMethodArgs(Meth, LRI, &AddedInstrAtEntry);
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001000}
1001
Ruchira Sasankae727f852001-09-18 22:43:57 +00001002
1003//----------------------------------------------------------------------------
1004// Used to generate a label for a basic block
1005//----------------------------------------------------------------------------
Chris Lattner697954c2002-01-20 22:54:45 +00001006void PhyRegAlloc::printLabel(const Value *const Val) {
1007 if (Val->hasName())
1008 cerr << Val->getName();
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001009 else
Chris Lattner697954c2002-01-20 22:54:45 +00001010 cerr << "Label" << Val;
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001011}
1012
1013
Ruchira Sasankae727f852001-09-18 22:43:57 +00001014//----------------------------------------------------------------------------
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001015// This method calls setSugColorUsable method of each live range. This
1016// will determine whether the suggested color of LR is really usable.
1017// A suggested color is not usable when the suggested color is volatile
1018// AND when there are call interferences
1019//----------------------------------------------------------------------------
1020
1021void PhyRegAlloc::markUnusableSugColors()
1022{
Chris Lattner7e708292002-06-25 16:13:24 +00001023 if (DEBUG_RA ) cerr << "\nmarking unusable suggested colors ...\n";
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001024
1025 // hash map iterator
1026 LiveRangeMapType::const_iterator HMI = (LRI.getLiveRangeMap())->begin();
1027 LiveRangeMapType::const_iterator HMIEnd = (LRI.getLiveRangeMap())->end();
1028
Chris Lattner7e708292002-06-25 16:13:24 +00001029 for (; HMI != HMIEnd ; ++HMI ) {
Chris Lattnerdd1e40b2002-02-03 07:46:34 +00001030 if (HMI->first) {
1031 LiveRange *L = HMI->second; // get the LiveRange
1032 if (L) {
Chris Lattner7e708292002-06-25 16:13:24 +00001033 if (L->hasSuggestedColor()) {
Chris Lattnerdd1e40b2002-02-03 07:46:34 +00001034 int RCID = L->getRegClass()->getID();
Chris Lattner7e708292002-06-25 16:13:24 +00001035 if (MRI.isRegVolatile( RCID, L->getSuggestedColor()) &&
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001036 L->isCallInterference() )
1037 L->setSuggestedColorUsable( false );
1038 else
1039 L->setSuggestedColorUsable( true );
1040 }
1041 } // if L->hasSuggestedColor()
1042 }
1043 } // for all LR's in hash map
1044}
1045
1046
1047
Ruchira Sasanka174bded2001-10-28 18:12:02 +00001048//----------------------------------------------------------------------------
1049// The following method will set the stack offsets of the live ranges that
1050// are decided to be spillled. This must be called just after coloring the
1051// LRs using the graph coloring algo. For each live range that is spilled,
1052// this method allocate a new spill position on the stack.
1053//----------------------------------------------------------------------------
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001054
Chris Lattner37730942002-02-05 03:52:29 +00001055void PhyRegAlloc::allocateStackSpace4SpilledLRs() {
1056 if (DEBUG_RA) cerr << "\nsetting LR stack offsets ...\n";
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001057
Chris Lattner37730942002-02-05 03:52:29 +00001058 LiveRangeMapType::const_iterator HMI = LRI.getLiveRangeMap()->begin();
1059 LiveRangeMapType::const_iterator HMIEnd = LRI.getLiveRangeMap()->end();
Ruchira Sasanka174bded2001-10-28 18:12:02 +00001060
Chris Lattner7e708292002-06-25 16:13:24 +00001061 for ( ; HMI != HMIEnd ; ++HMI) {
Chris Lattner37730942002-02-05 03:52:29 +00001062 if (HMI->first && HMI->second) {
1063 LiveRange *L = HMI->second; // get the LiveRange
1064 if (!L->hasColor()) // NOTE: ** allocating the size of long Type **
1065 L->setSpillOffFromFP(mcInfo.allocateSpilledValue(TM, Type::LongTy));
1066 }
1067 } // for all LR's in hash map
Ruchira Sasanka174bded2001-10-28 18:12:02 +00001068}
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001069
1070
1071
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001072//----------------------------------------------------------------------------
Ruchira Sasankae727f852001-09-18 22:43:57 +00001073// The entry pont to Register Allocation
1074//----------------------------------------------------------------------------
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001075
1076void PhyRegAlloc::allocateRegisters()
1077{
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001078
1079 // make sure that we put all register classes into the RegClassList
1080 // before we call constructLiveRanges (now done in the constructor of
1081 // PhyRegAlloc class).
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +00001082 //
1083 LRI.constructLiveRanges(); // create LR info
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001084
Chris Lattnerdd1e40b2002-02-03 07:46:34 +00001085 if (DEBUG_RA)
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001086 LRI.printLiveRanges();
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001087
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001088 createIGNodeListsAndIGs(); // create IGNode list and IGs
1089
1090 buildInterferenceGraphs(); // build IGs in all reg classes
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001091
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001092
Chris Lattnerdd1e40b2002-02-03 07:46:34 +00001093 if (DEBUG_RA) {
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001094 // print all LRs in all reg classes
Chris Lattner7e708292002-06-25 16:13:24 +00001095 for ( unsigned rc=0; rc < NumOfRegClasses ; rc++)
1096 RegClassList[rc]->printIGNodeList();
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001097
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001098 // print IGs in all register classes
Chris Lattner7e708292002-06-25 16:13:24 +00001099 for ( unsigned rc=0; rc < NumOfRegClasses ; rc++)
1100 RegClassList[rc]->printIG();
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001101 }
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001102
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +00001103
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001104 LRI.coalesceLRs(); // coalesce all live ranges
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001105
Ruchira Sasankaef1b0cb2001-11-03 17:13:27 +00001106
Chris Lattner7e708292002-06-25 16:13:24 +00001107 if (DEBUG_RA) {
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001108 // print all LRs in all reg classes
Chris Lattner7e708292002-06-25 16:13:24 +00001109 for ( unsigned rc=0; rc < NumOfRegClasses ; rc++)
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001110 RegClassList[ rc ]->printIGNodeList();
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001111
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001112 // print IGs in all register classes
Chris Lattner7e708292002-06-25 16:13:24 +00001113 for ( unsigned rc=0; rc < NumOfRegClasses ; rc++)
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001114 RegClassList[ rc ]->printIG();
1115 }
1116
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001117
1118 // mark un-usable suggested color before graph coloring algorithm.
1119 // When this is done, the graph coloring algo will not reserve
1120 // suggested color unnecessarily - they can be used by another LR
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +00001121 //
Ruchira Sasanka0e62aa62001-10-19 21:39:31 +00001122 markUnusableSugColors();
1123
1124 // color all register classes using the graph coloring algo
Chris Lattner7e708292002-06-25 16:13:24 +00001125 for (unsigned rc=0; rc < NumOfRegClasses ; rc++)
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001126 RegClassList[ rc ]->colorAllRegs();
1127
Ruchira Sasanka174bded2001-10-28 18:12:02 +00001128 // Atter grpah coloring, if some LRs did not receive a color (i.e, spilled)
1129 // a poistion for such spilled LRs
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +00001130 //
Ruchira Sasanka174bded2001-10-28 18:12:02 +00001131 allocateStackSpace4SpilledLRs();
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001132
Ruchira Sasankaf90870f2001-11-15 22:02:06 +00001133 mcInfo.popAllTempValues(TM); // TODO **Check
1134
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +00001135 // color incoming args - if the correct color was not received
1136 // insert code to copy to the correct register
1137 //
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001138 colorIncomingArgs();
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00001139
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +00001140 // Now update the machine code with register names and add any
1141 // additional code inserted by the register allocator to the instruction
1142 // stream
1143 //
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001144 updateMachineCode();
Ruchira Sasanka4f3eb222002-01-07 19:19:18 +00001145
Chris Lattner045e7c82001-09-19 16:26:23 +00001146 if (DEBUG_RA) {
Vikram S. Adve12af1642001-11-08 04:48:50 +00001147 MachineCodeForMethod::get(Meth).dump();
Chris Lattner045e7c82001-09-19 16:26:23 +00001148 printMachineCode(); // only for DEBUGGING
1149 }
Ruchira Sasanka6b0a8b52001-09-15 21:11:11 +00001150}
1151
Ruchira Sasankae727f852001-09-18 22:43:57 +00001152
1153