blob: 4d3e925382acdaa2ca2a74625cb17831a0fd6fed [file] [log] [blame]
Ruchira Sasanka8e604792001-09-14 21:18:34 +00001#include "llvm/CodeGen/LiveRangeInfo.h"
2
3LiveRangeInfo::LiveRangeInfo(const Method *const M,
4 const TargetMachine& tm,
5 vector<RegClass *> &RCL)
6 : Meth(M), LiveRangeMap(),
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +00007 TM(tm), RegClassList(RCL),
8 MRI( tm.getRegInfo()),
9 CallRetInstrList()
Ruchira Sasanka8e604792001-09-14 21:18:34 +000010{ }
11
12
13// union two live ranges into one. The 2nd LR is deleted. Used for coalescing.
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +000014// Note: the caller must make sure that L1 and L2 are distinct and both
15// LRs don't have suggested colors
Ruchira Sasanka8e604792001-09-14 21:18:34 +000016
17void LiveRangeInfo::unionAndUpdateLRs(LiveRange *const L1, LiveRange *L2)
18{
19 assert( L1 != L2);
20 L1->setUnion( L2 ); // add elements of L2 to L1
21 ValueSet::iterator L2It;
22
23 for( L2It = L2->begin() ; L2It != L2->end(); ++L2It) {
24
25 //assert(( L1->getTypeID() == L2->getTypeID()) && "Merge:Different types");
26
27 L1->add( *L2It ); // add the var in L2 to L1
28 LiveRangeMap[ *L2It ] = L1; // now the elements in L2 should map to L1
29 }
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +000030
31
32 // Now if LROfDef(L1) has a suggested color, it will remain.
33 // But, if LROfUse(L2) has a suggested color, the new range
34 // must have the same color.
35
36 if(L2->hasSuggestedColor())
37 L1->setSuggestedColor( L2->getSuggestedColor() );
38
Ruchira Sasanka8e604792001-09-14 21:18:34 +000039 delete ( L2 ); // delete L2 as it is no longer needed
40}
41
42
43
44
45void LiveRangeInfo::constructLiveRanges()
46{
47
48 if( DEBUG_RA)
49 cout << "Consturcting Live Ranges ..." << endl;
50
51 // first find the live ranges for all incoming args of the method since
52 // those LRs start from the start of the method
53
54 // get the argument list
55 const Method::ArgumentListType& ArgList = Meth->getArgumentList();
56 // get an iterator to arg list
57 Method::ArgumentListType::const_iterator ArgIt = ArgList.begin();
58
59
60 for( ; ArgIt != ArgList.end() ; ++ArgIt) { // for each argument
61
62 LiveRange * ArgRange = new LiveRange(); // creates a new LR and
63 const Value *const Val = (const Value *) *ArgIt;
64
65 assert( Val);
66
67 ArgRange->add( Val ); // add the arg (def) to it
68 LiveRangeMap[ Val ] = ArgRange;
69
70 // create a temp machine op to find the register class of value
71 //const MachineOperand Op(MachineOperand::MO_VirtualRegister);
72
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +000073 unsigned rcid = MRI.getRegClassIDOfValue( Val );
Ruchira Sasanka8e604792001-09-14 21:18:34 +000074 ArgRange->setRegClass(RegClassList[ rcid ] );
75
76
77 if( DEBUG_RA > 1) {
78 cout << " adding LiveRange for argument ";
79 printValue( (const Value *) *ArgIt); cout << endl;
80 }
81 }
82
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +000083 // Now suggest hardware registers for these method args
84 MRI.suggestRegs4MethodArgs(Meth, *this);
Ruchira Sasanka8e604792001-09-14 21:18:34 +000085
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +000086
87
88 // Now find speical LLVM instructions (CALL, RET) and LRs in machine
89 // instructions.
90
Ruchira Sasanka8e604792001-09-14 21:18:34 +000091
92 Method::const_iterator BBI = Meth->begin(); // random iterator for BBs
93
94 for( ; BBI != Meth->end(); ++BBI) { // go thru BBs in random order
95
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +000096 // Now find all LRs for machine the instructions. A new LR will be created
97 // only for defs in the machine instr since, we assume that all Values are
98 // defined before they are used. However, there can be multiple defs for
99 // the same Value in machine instructions.
100
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000101 // get the iterator for machine instructions
102 const MachineCodeForBasicBlock& MIVec = (*BBI)->getMachineInstrVec();
103 MachineCodeForBasicBlock::const_iterator
104 MInstIterator = MIVec.begin();
105
106 // iterate over all the machine instructions in BB
107 for( ; MInstIterator != MIVec.end(); MInstIterator++) {
108
109 const MachineInstr * MInst = *MInstIterator;
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +0000110
111 // Now if the machine instruction has special operands that must be
112 // set with a "suggested color", do it here.
113
114
115 if( MRI.handleSpecialMInstr(MInst, *this, RegClassList) )
116 continue;
117
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000118
119 // iterate over MI operands to find defs
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +0000120 for( MachineInstr::val_op_const_iterator OpI(MInst);!OpI.done(); ++OpI) {
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000121
Ruchira Sasankae727f852001-09-18 22:43:57 +0000122
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +0000123 // delete later from here ************
Ruchira Sasankae727f852001-09-18 22:43:57 +0000124 MachineOperand::MachineOperandType OpTyp =
125 OpI.getMachineOperand().getOperandType();
126
Chris Lattner4c3aaa42001-09-19 16:09:04 +0000127 if (DEBUG_RA && OpTyp == MachineOperand::MO_CCRegister) {
Ruchira Sasankae727f852001-09-18 22:43:57 +0000128 cout << "\n**CC reg found. Is Def=" << OpI.isDef() << " Val:";
129 printValue( OpI.getMachineOperand().getVRegValue() );
130 cout << endl;
131 }
132 // ************* to here
133
134
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000135 // create a new LR iff this operand is a def
136 if( OpI.isDef() ) {
137
138 const Value *const Def = *OpI;
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +0000139
140
141 // Only instruction values are accepted for live ranges here
142
143 if( Def->getValueType() != Value::InstructionVal ) {
144 cout << "\n**%%Error: Def is not an instruction val. Def=";
145 printValue( Def ); cout << endl;
146 continue;
147 }
148
149
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000150 LiveRange *DefRange = LiveRangeMap[Def];
151
152 // see LR already there (because of multiple defs)
153
154 if( !DefRange) { // if it is not in LiveRangeMap
155
156 DefRange = new LiveRange(); // creates a new live range and
157 DefRange->add( Def ); // add the instruction (def) to it
158 LiveRangeMap[ Def ] = DefRange; // update the map
159
160 if( DEBUG_RA > 1) {
161 cout << " creating a LR for def: ";
162 printValue(Def); cout << endl;
163 }
164
165 // set the register class of the new live range
166 //assert( RegClassList.size() );
167 MachineOperand::MachineOperandType OpTy =
168 OpI.getMachineOperand().getOperandType();
169
170 bool isCC = ( OpTy == MachineOperand::MO_CCRegister);
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +0000171 unsigned rcid = MRI.getRegClassIDOfValue(
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000172 OpI.getMachineOperand().getVRegValue(), isCC );
173
174
Ruchira Sasankae727f852001-09-18 22:43:57 +0000175 if(isCC && DEBUG_RA) {
Ruchira Sasanka0931a012001-09-15 19:06:58 +0000176 cout << "\a**created a LR for a CC reg:";
177 printValue( OpI.getMachineOperand().getVRegValue() );
178 }
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000179
180 DefRange->setRegClass( RegClassList[ rcid ] );
181
182 }
183 else {
184 DefRange->add( Def ); // add the opearand to def range
185 // update the map - Operand points
186 // to the merged set
187 LiveRangeMap[ Def ] = DefRange;
188
189 if( DEBUG_RA > 1) {
190 cout << " added to an existing LR for def: ";
191 printValue( Def ); cout << endl;
192 }
193 }
194
195
196
197
198 } // if isDef()
199
200 } // for all opereands in machine instructions
201
202 } // for all machine instructions in the BB
203
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +0000204
205 } // for all BBs in method
206
207 // go thru LLVM instructions in the basic block and suggest colors
208 // for their args. Also record all CALL
209 // instructions and Return instructions in the CallRetInstrList
210 // This is done because since there are no reverse pointers in machine
211 // instructions to find the llvm instruction, when we encounter a call
212 // or a return whose args must be specailly colored (e.g., %o's for args)
213 // We have to makes sure that all LRs of call/ret args are added before
214 // doing this. But return value of call will not have a LR.
215
216 BBI = Meth->begin(); // random iterator for BBs
217
218 for( ; BBI != Meth->end(); ++BBI) { // go thru BBs in random order
219
220 BasicBlock::const_iterator InstIt = (*BBI)->begin();
221
222 for( ; InstIt != (*BBI)->end() ; ++InstIt) {
223
224 const Instruction *const CallRetI = *InstIt;
225 unsigned OpCode = (CallRetI)->getOpcode();
226
227 if( (OpCode == Instruction::Call) ) {
228 CallRetInstrList.push_back(CallRetI );
229 MRI.suggestRegs4CallArgs( (CallInst *) CallRetI, *this, RegClassList );
230 }
231
232 else if (OpCode == Instruction::Ret ) {
233 CallRetInstrList.push_back( CallRetI );
234 MRI.suggestReg4RetValue( (ReturnInst *) CallRetI, *this);
235 }
236
237
238 } // for each llvm instr in BB
239
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000240 } // for all BBs in method
241
242 if( DEBUG_RA)
243 cout << "Initial Live Ranges constructed!" << endl;
244
245}
246
247
248
249void LiveRangeInfo::coalesceLRs()
250{
251
252/* Algorithm:
253 for each BB in method
254 for each machine instruction (inst)
255 for each definition (def) in inst
256 for each operand (op) of inst that is a use
257 if the def and op are of the same type
258 if the def and op do not interfere //i.e., not simultaneously live
259 if (degree(LR of def) + degree(LR of op)) <= # avail regs
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +0000260 if both LRs do not have suggested colors
261 merge2IGNodes(def, op) // i.e., merge 2 LRs
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000262
263*/
264
265 if( DEBUG_RA)
266 cout << endl << "Coalscing LRs ..." << endl;
267
268 Method::const_iterator BBI = Meth->begin(); // random iterator for BBs
269
270 for( ; BBI != Meth->end(); ++BBI) { // traverse BBs in random order
271
272 // get the iterator for machine instructions
273 const MachineCodeForBasicBlock& MIVec = (*BBI)->getMachineInstrVec();
274 MachineCodeForBasicBlock::const_iterator
275 MInstIterator = MIVec.begin();
276
277 // iterate over all the machine instructions in BB
278 for( ; MInstIterator != MIVec.end(); ++MInstIterator) {
279
280 const MachineInstr * MInst = *MInstIterator;
281
282 if( DEBUG_RA > 1) {
283 cout << " *Iterating over machine instr ";
284 MInst->dump();
285 cout << endl;
286 }
287
288
289 // iterate over MI operands to find defs
290 for(MachineInstr::val_op_const_iterator DefI(MInst);!DefI.done();++DefI){
291
292 if( DefI.isDef() ) { // iff this operand is a def
293
294 LiveRange *const LROfDef = getLiveRangeForValue( *DefI );
295 assert( LROfDef );
296 RegClass *const RCOfDef = LROfDef->getRegClass();
297
298 MachineInstr::val_op_const_iterator UseI(MInst);
299 for( ; !UseI.done(); ++UseI){ // for all uses
300
301 LiveRange *const LROfUse = getLiveRangeForValue( *UseI );
302
303 if( ! LROfUse ) { // if LR of use is not found
304
305 //don't warn about labels
306 if (!((*UseI)->getType())->isLabelType() && DEBUG_RA) {
307 cout<<" !! Warning: No LR for use "; printValue(*UseI);
308 cout << endl;
309 }
310 continue; // ignore and continue
311 }
312
313 if( LROfUse == LROfDef) // nothing to merge if they are same
314 continue;
315
316 // RegClass *const RCOfUse = LROfUse->getRegClass();
317
318 //if( RCOfDef == RCOfUse ) { // if the reg classes are the same
319
320
321 if( LROfUse->getTypeID() == LROfDef->getTypeID() ) {
322
323 if( ! RCOfDef->getInterference(LROfDef, LROfUse) ) {
324
325 unsigned CombinedDegree =
326 LROfDef->getUserIGNode()->getNumOfNeighbors() +
327 LROfUse->getUserIGNode()->getNumOfNeighbors();
328
329 if( CombinedDegree <= RCOfDef->getNumOfAvailRegs() ) {
330
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +0000331 // if both LRs do not have suggested colors
332 if( ! (LROfDef->hasSuggestedColor() &&
333 LROfUse->hasSuggestedColor() ) ) {
334
335 RCOfDef->mergeIGNodesOfLRs(LROfDef, LROfUse);
336 unionAndUpdateLRs(LROfDef, LROfUse);
337 }
338
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000339
340 } // if combined degree is less than # of regs
341
342 } // if def and use do not interfere
343
344 } // if reg classes are the same
345
346 } // for all uses
347
348 } // if def
349
350 } // for all defs
351
352 } // for all machine instructions
353
354 } // for all BBs
355
356 if( DEBUG_RA)
357 cout << endl << "Coalscing Done!" << endl;
358
359}
360
361
362
363
364
365/*--------------------------- Debug code for printing ---------------*/
366
367
368void LiveRangeInfo::printLiveRanges()
369{
370 LiveRangeMapType::iterator HMI = LiveRangeMap.begin(); // hash map iterator
371 cout << endl << "Printing Live Ranges from Hash Map:" << endl;
372 for( ; HMI != LiveRangeMap.end() ; HMI ++ ) {
Ruchira Sasankaa5ab9642001-09-30 23:11:59 +0000373 if( (*HMI).first && (*HMI).second ) {
Ruchira Sasanka8e604792001-09-14 21:18:34 +0000374 cout <<" "; printValue((*HMI).first); cout << "\t: ";
375 ((*HMI).second)->printSet(); cout << endl;
376 }
377 }
378}
379
380