Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 1 | #include "llvm/CodeGen/LiveRangeInfo.h" |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 2 | #include <iostream> |
| 3 | using std::cerr; |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 4 | |
Ruchira Sasanka | 4f3eb22 | 2002-01-07 19:19:18 +0000 | [diff] [blame] | 5 | //--------------------------------------------------------------------------- |
| 6 | // Constructor |
| 7 | //--------------------------------------------------------------------------- |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 8 | LiveRangeInfo::LiveRangeInfo(const Method *const M, |
| 9 | const TargetMachine& tm, |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 10 | std::vector<RegClass *> &RCL) |
| 11 | : Meth(M), LiveRangeMap(), TM(tm), |
| 12 | RegClassList(RCL), MRI(tm.getRegInfo()) |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 13 | { } |
| 14 | |
| 15 | |
Ruchira Sasanka | 4f3eb22 | 2002-01-07 19:19:18 +0000 | [diff] [blame] | 16 | //--------------------------------------------------------------------------- |
| 17 | // Destructor: Deletes all LiveRanges in the LiveRangeMap |
| 18 | //--------------------------------------------------------------------------- |
| 19 | LiveRangeInfo::~LiveRangeInfo() { |
Ruchira Sasanka | 4f3eb22 | 2002-01-07 19:19:18 +0000 | [diff] [blame] | 20 | LiveRangeMapType::iterator MI = LiveRangeMap.begin(); |
| 21 | |
| 22 | for( ; MI != LiveRangeMap.end() ; ++MI) { |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 23 | if (MI->first && MI->second) { |
| 24 | LiveRange *LR = MI->second; |
| 25 | |
| 26 | // we need to be careful in deleting LiveRanges in LiveRangeMap |
| 27 | // since two/more Values in the live range map can point to the same |
| 28 | // live range. We have to make the other entries NULL when we delete |
| 29 | // a live range. |
| 30 | |
| 31 | LiveRange::iterator LI = LR->begin(); |
Ruchira Sasanka | 4f3eb22 | 2002-01-07 19:19:18 +0000 | [diff] [blame] | 32 | |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 33 | for( ; LI != LR->end() ; ++LI) |
| 34 | LiveRangeMap[*LI] = 0; |
| 35 | |
| 36 | delete LR; |
Ruchira Sasanka | 4f3eb22 | 2002-01-07 19:19:18 +0000 | [diff] [blame] | 37 | } |
| 38 | } |
Ruchira Sasanka | 4f3eb22 | 2002-01-07 19:19:18 +0000 | [diff] [blame] | 39 | } |
| 40 | |
| 41 | |
| 42 | //--------------------------------------------------------------------------- |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 43 | // union two live ranges into one. The 2nd LR is deleted. Used for coalescing. |
Ruchira Sasanka | a5ab964 | 2001-09-30 23:11:59 +0000 | [diff] [blame] | 44 | // Note: the caller must make sure that L1 and L2 are distinct and both |
| 45 | // LRs don't have suggested colors |
Ruchira Sasanka | 4f3eb22 | 2002-01-07 19:19:18 +0000 | [diff] [blame] | 46 | //--------------------------------------------------------------------------- |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 47 | void LiveRangeInfo::unionAndUpdateLRs(LiveRange *const L1, LiveRange *L2) |
| 48 | { |
| 49 | assert( L1 != L2); |
Ruchira Sasanka | 4f3eb22 | 2002-01-07 19:19:18 +0000 | [diff] [blame] | 50 | L1->setUnion( L2 ); // add elements of L2 to L1 |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 51 | ValueSet::iterator L2It; |
| 52 | |
| 53 | for( L2It = L2->begin() ; L2It != L2->end(); ++L2It) { |
| 54 | |
| 55 | //assert(( L1->getTypeID() == L2->getTypeID()) && "Merge:Different types"); |
| 56 | |
Ruchira Sasanka | 4f3eb22 | 2002-01-07 19:19:18 +0000 | [diff] [blame] | 57 | L1->add( *L2It ); // add the var in L2 to L1 |
| 58 | LiveRangeMap[ *L2It ] = L1; // now the elements in L2 should map |
| 59 | //to L1 |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 60 | } |
Ruchira Sasanka | a5ab964 | 2001-09-30 23:11:59 +0000 | [diff] [blame] | 61 | |
| 62 | |
| 63 | // Now if LROfDef(L1) has a suggested color, it will remain. |
| 64 | // But, if LROfUse(L2) has a suggested color, the new range |
| 65 | // must have the same color. |
| 66 | |
| 67 | if(L2->hasSuggestedColor()) |
| 68 | L1->setSuggestedColor( L2->getSuggestedColor() ); |
| 69 | |
Ruchira Sasanka | 958faf3 | 2001-10-19 17:21:03 +0000 | [diff] [blame] | 70 | |
| 71 | if( L2->isCallInterference() ) |
| 72 | L1->setCallInterference(); |
| 73 | |
Ruchira Sasanka | 4f3eb22 | 2002-01-07 19:19:18 +0000 | [diff] [blame] | 74 | |
| 75 | L1->addSpillCost( L2->getSpillCost() ); // add the spill costs |
Ruchira Sasanka | 958faf3 | 2001-10-19 17:21:03 +0000 | [diff] [blame] | 76 | |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 77 | delete L2; // delete L2 as it is no longer needed |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 78 | } |
| 79 | |
| 80 | |
| 81 | |
Ruchira Sasanka | 4f3eb22 | 2002-01-07 19:19:18 +0000 | [diff] [blame] | 82 | //--------------------------------------------------------------------------- |
| 83 | // Method for constructing all live ranges in a method. It creates live |
| 84 | // ranges for all values defined in the instruction stream. Also, it |
| 85 | // creates live ranges for all incoming arguments of the method. |
| 86 | //--------------------------------------------------------------------------- |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 87 | void LiveRangeInfo::constructLiveRanges() |
| 88 | { |
| 89 | |
| 90 | if( DEBUG_RA) |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 91 | cerr << "Consturcting Live Ranges ...\n"; |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 92 | |
| 93 | // first find the live ranges for all incoming args of the method since |
| 94 | // those LRs start from the start of the method |
| 95 | |
| 96 | // get the argument list |
| 97 | const Method::ArgumentListType& ArgList = Meth->getArgumentList(); |
| 98 | // get an iterator to arg list |
| 99 | Method::ArgumentListType::const_iterator ArgIt = ArgList.begin(); |
| 100 | |
| 101 | |
| 102 | for( ; ArgIt != ArgList.end() ; ++ArgIt) { // for each argument |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 103 | LiveRange * ArgRange = new LiveRange(); // creates a new LR and |
| 104 | const Value *const Val = (const Value *) *ArgIt; |
| 105 | |
| 106 | assert( Val); |
| 107 | |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 108 | ArgRange->add(Val); // add the arg (def) to it |
| 109 | LiveRangeMap[Val] = ArgRange; |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 110 | |
| 111 | // create a temp machine op to find the register class of value |
| 112 | //const MachineOperand Op(MachineOperand::MO_VirtualRegister); |
| 113 | |
Ruchira Sasanka | a5ab964 | 2001-09-30 23:11:59 +0000 | [diff] [blame] | 114 | unsigned rcid = MRI.getRegClassIDOfValue( Val ); |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 115 | ArgRange->setRegClass(RegClassList[ rcid ] ); |
| 116 | |
| 117 | |
| 118 | if( DEBUG_RA > 1) { |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 119 | cerr << " adding LiveRange for argument "; |
| 120 | printValue((const Value *) *ArgIt); cerr << "\n"; |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 121 | } |
| 122 | } |
| 123 | |
Ruchira Sasanka | a5ab964 | 2001-09-30 23:11:59 +0000 | [diff] [blame] | 124 | // Now suggest hardware registers for these method args |
| 125 | MRI.suggestRegs4MethodArgs(Meth, *this); |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 126 | |
Ruchira Sasanka | a5ab964 | 2001-09-30 23:11:59 +0000 | [diff] [blame] | 127 | |
| 128 | |
| 129 | // Now find speical LLVM instructions (CALL, RET) and LRs in machine |
| 130 | // instructions. |
| 131 | |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 132 | |
| 133 | Method::const_iterator BBI = Meth->begin(); // random iterator for BBs |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 134 | for( ; BBI != Meth->end(); ++BBI) { // go thru BBs in random order |
| 135 | |
Ruchira Sasanka | a5ab964 | 2001-09-30 23:11:59 +0000 | [diff] [blame] | 136 | // Now find all LRs for machine the instructions. A new LR will be created |
| 137 | // only for defs in the machine instr since, we assume that all Values are |
| 138 | // defined before they are used. However, there can be multiple defs for |
| 139 | // the same Value in machine instructions. |
| 140 | |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 141 | // get the iterator for machine instructions |
| 142 | const MachineCodeForBasicBlock& MIVec = (*BBI)->getMachineInstrVec(); |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 143 | MachineCodeForBasicBlock::const_iterator MInstIterator = MIVec.begin(); |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 144 | |
| 145 | // iterate over all the machine instructions in BB |
| 146 | for( ; MInstIterator != MIVec.end(); MInstIterator++) { |
| 147 | |
| 148 | const MachineInstr * MInst = *MInstIterator; |
Ruchira Sasanka | a5ab964 | 2001-09-30 23:11:59 +0000 | [diff] [blame] | 149 | |
Ruchira Sasanka | a90e770 | 2001-10-15 16:26:38 +0000 | [diff] [blame] | 150 | // Now if the machine instruction is a call/return instruction, |
| 151 | // add it to CallRetInstrList for processing its implicit operands |
Ruchira Sasanka | a5ab964 | 2001-09-30 23:11:59 +0000 | [diff] [blame] | 152 | |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 153 | if(TM.getInstrInfo().isReturn(MInst->getOpCode()) || |
| 154 | TM.getInstrInfo().isCall(MInst->getOpCode())) |
Ruchira Sasanka | a90e770 | 2001-10-15 16:26:38 +0000 | [diff] [blame] | 155 | CallRetInstrList.push_back( MInst ); |
| 156 | |
| 157 | |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 158 | // iterate over MI operands to find defs |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 159 | for (MachineInstr::val_const_op_iterator OpI(MInst); !OpI.done(); ++OpI) { |
| 160 | if(DEBUG_RA) { |
Ruchira Sasanka | a90e770 | 2001-10-15 16:26:38 +0000 | [diff] [blame] | 161 | MachineOperand::MachineOperandType OpTyp = |
| 162 | OpI.getMachineOperand().getOperandType(); |
Ruchira Sasanka | e727f85 | 2001-09-18 22:43:57 +0000 | [diff] [blame] | 163 | |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 164 | if (OpTyp == MachineOperand::MO_CCRegister) { |
| 165 | cerr << "\n**CC reg found. Is Def=" << OpI.isDef() << " Val:"; |
Ruchira Sasanka | a90e770 | 2001-10-15 16:26:38 +0000 | [diff] [blame] | 166 | printValue( OpI.getMachineOperand().getVRegValue() ); |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 167 | cerr << "\n"; |
Ruchira Sasanka | a90e770 | 2001-10-15 16:26:38 +0000 | [diff] [blame] | 168 | } |
Ruchira Sasanka | e727f85 | 2001-09-18 22:43:57 +0000 | [diff] [blame] | 169 | } |
Ruchira Sasanka | e727f85 | 2001-09-18 22:43:57 +0000 | [diff] [blame] | 170 | |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 171 | // create a new LR iff this operand is a def |
| 172 | if( OpI.isDef() ) { |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 173 | const Value *const Def = *OpI; |
Ruchira Sasanka | a5ab964 | 2001-09-30 23:11:59 +0000 | [diff] [blame] | 174 | |
Ruchira Sasanka | a5ab964 | 2001-09-30 23:11:59 +0000 | [diff] [blame] | 175 | // Only instruction values are accepted for live ranges here |
Ruchira Sasanka | a5ab964 | 2001-09-30 23:11:59 +0000 | [diff] [blame] | 176 | if( Def->getValueType() != Value::InstructionVal ) { |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 177 | cerr << "\n**%%Error: Def is not an instruction val. Def="; |
| 178 | printValue( Def ); cerr << "\n"; |
Ruchira Sasanka | a5ab964 | 2001-09-30 23:11:59 +0000 | [diff] [blame] | 179 | continue; |
| 180 | } |
| 181 | |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 182 | LiveRange *DefRange = LiveRangeMap[Def]; |
| 183 | |
| 184 | // see LR already there (because of multiple defs) |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 185 | if( !DefRange) { // if it is not in LiveRangeMap |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 186 | DefRange = new LiveRange(); // creates a new live range and |
| 187 | DefRange->add( Def ); // add the instruction (def) to it |
| 188 | LiveRangeMap[ Def ] = DefRange; // update the map |
| 189 | |
| 190 | if( DEBUG_RA > 1) { |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 191 | cerr << " creating a LR for def: "; |
| 192 | printValue(Def); cerr << "\n"; |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | // set the register class of the new live range |
| 196 | //assert( RegClassList.size() ); |
| 197 | MachineOperand::MachineOperandType OpTy = |
| 198 | OpI.getMachineOperand().getOperandType(); |
| 199 | |
| 200 | bool isCC = ( OpTy == MachineOperand::MO_CCRegister); |
Ruchira Sasanka | a5ab964 | 2001-09-30 23:11:59 +0000 | [diff] [blame] | 201 | unsigned rcid = MRI.getRegClassIDOfValue( |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 202 | OpI.getMachineOperand().getVRegValue(), isCC ); |
| 203 | |
| 204 | |
Ruchira Sasanka | e727f85 | 2001-09-18 22:43:57 +0000 | [diff] [blame] | 205 | if(isCC && DEBUG_RA) { |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 206 | cerr << "\a**created a LR for a CC reg:"; |
Ruchira Sasanka | 0931a01 | 2001-09-15 19:06:58 +0000 | [diff] [blame] | 207 | printValue( OpI.getMachineOperand().getVRegValue() ); |
| 208 | } |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 209 | |
| 210 | DefRange->setRegClass( RegClassList[ rcid ] ); |
| 211 | |
| 212 | } |
| 213 | else { |
| 214 | DefRange->add( Def ); // add the opearand to def range |
| 215 | // update the map - Operand points |
| 216 | // to the merged set |
| 217 | LiveRangeMap[ Def ] = DefRange; |
| 218 | |
| 219 | if( DEBUG_RA > 1) { |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 220 | cerr << " added to an existing LR for def: "; |
| 221 | printValue( Def ); cerr << "\n"; |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 222 | } |
| 223 | } |
| 224 | |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 225 | } // if isDef() |
| 226 | |
| 227 | } // for all opereands in machine instructions |
| 228 | |
| 229 | } // for all machine instructions in the BB |
| 230 | |
Ruchira Sasanka | a5ab964 | 2001-09-30 23:11:59 +0000 | [diff] [blame] | 231 | } // for all BBs in method |
| 232 | |
Ruchira Sasanka | a5ab964 | 2001-09-30 23:11:59 +0000 | [diff] [blame] | 233 | |
Ruchira Sasanka | a90e770 | 2001-10-15 16:26:38 +0000 | [diff] [blame] | 234 | // Now we have to suggest clors for call and return arg live ranges. |
| 235 | // Also, if there are implicit defs (e.g., retun value of a call inst) |
| 236 | // they must be added to the live range list |
Ruchira Sasanka | a5ab964 | 2001-09-30 23:11:59 +0000 | [diff] [blame] | 237 | |
Ruchira Sasanka | a90e770 | 2001-10-15 16:26:38 +0000 | [diff] [blame] | 238 | suggestRegs4CallRets(); |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 239 | |
| 240 | if( DEBUG_RA) |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 241 | cerr << "Initial Live Ranges constructed!\n"; |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 242 | |
| 243 | } |
| 244 | |
| 245 | |
Ruchira Sasanka | 4f3eb22 | 2002-01-07 19:19:18 +0000 | [diff] [blame] | 246 | //--------------------------------------------------------------------------- |
| 247 | // If some live ranges must be colored with specific hardware registers |
| 248 | // (e.g., for outgoing call args), suggesting of colors for such live |
| 249 | // ranges is done using target specific method. Those methods are called |
| 250 | // from this function. The target specific methods must: |
| 251 | // 1) suggest colors for call and return args. |
| 252 | // 2) create new LRs for implicit defs in machine instructions |
| 253 | //--------------------------------------------------------------------------- |
Ruchira Sasanka | a90e770 | 2001-10-15 16:26:38 +0000 | [diff] [blame] | 254 | void LiveRangeInfo::suggestRegs4CallRets() |
| 255 | { |
| 256 | |
| 257 | CallRetInstrListType::const_iterator It = CallRetInstrList.begin(); |
| 258 | |
| 259 | for( ; It != CallRetInstrList.end(); ++It ) { |
| 260 | |
| 261 | const MachineInstr *MInst = *It; |
| 262 | MachineOpCode OpCode = MInst->getOpCode(); |
| 263 | |
| 264 | if( (TM.getInstrInfo()).isReturn(OpCode) ) |
| 265 | MRI.suggestReg4RetValue( MInst, *this); |
| 266 | |
| 267 | else if( (TM.getInstrInfo()).isCall( OpCode ) ) |
| 268 | MRI.suggestRegs4CallArgs( MInst, *this, RegClassList ); |
| 269 | |
| 270 | else |
| 271 | assert( 0 && "Non call/ret instr in CallRetInstrList" ); |
| 272 | } |
| 273 | |
| 274 | } |
| 275 | |
| 276 | |
Ruchira Sasanka | 4f3eb22 | 2002-01-07 19:19:18 +0000 | [diff] [blame] | 277 | //-------------------------------------------------------------------------- |
| 278 | // The following method coalesces live ranges when possible. This method |
| 279 | // must be called after the interference graph has been constructed. |
Ruchira Sasanka | a90e770 | 2001-10-15 16:26:38 +0000 | [diff] [blame] | 280 | |
| 281 | |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 282 | /* Algorithm: |
| 283 | for each BB in method |
| 284 | for each machine instruction (inst) |
| 285 | for each definition (def) in inst |
| 286 | for each operand (op) of inst that is a use |
Ruchira Sasanka | efaf9be | 2001-11-10 00:20:24 +0000 | [diff] [blame] | 287 | if the def and op are of the same register type |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 288 | if the def and op do not interfere //i.e., not simultaneously live |
| 289 | if (degree(LR of def) + degree(LR of op)) <= # avail regs |
Ruchira Sasanka | a5ab964 | 2001-09-30 23:11:59 +0000 | [diff] [blame] | 290 | if both LRs do not have suggested colors |
| 291 | merge2IGNodes(def, op) // i.e., merge 2 LRs |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 292 | |
| 293 | */ |
Ruchira Sasanka | 4f3eb22 | 2002-01-07 19:19:18 +0000 | [diff] [blame] | 294 | //--------------------------------------------------------------------------- |
| 295 | void LiveRangeInfo::coalesceLRs() |
| 296 | { |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 297 | if( DEBUG_RA) |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 298 | cerr << "\nCoalscing LRs ...\n"; |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 299 | |
| 300 | Method::const_iterator BBI = Meth->begin(); // random iterator for BBs |
| 301 | |
| 302 | for( ; BBI != Meth->end(); ++BBI) { // traverse BBs in random order |
| 303 | |
| 304 | // get the iterator for machine instructions |
| 305 | const MachineCodeForBasicBlock& MIVec = (*BBI)->getMachineInstrVec(); |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 306 | MachineCodeForBasicBlock::const_iterator MInstIterator = MIVec.begin(); |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 307 | |
| 308 | // iterate over all the machine instructions in BB |
| 309 | for( ; MInstIterator != MIVec.end(); ++MInstIterator) { |
| 310 | |
| 311 | const MachineInstr * MInst = *MInstIterator; |
| 312 | |
| 313 | if( DEBUG_RA > 1) { |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 314 | cerr << " *Iterating over machine instr "; |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 315 | MInst->dump(); |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 316 | cerr << "\n"; |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 317 | } |
| 318 | |
| 319 | |
| 320 | // iterate over MI operands to find defs |
Chris Lattner | 7a17675 | 2001-12-04 00:03:30 +0000 | [diff] [blame] | 321 | for(MachineInstr::val_const_op_iterator DefI(MInst);!DefI.done();++DefI){ |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 322 | |
| 323 | if( DefI.isDef() ) { // iff this operand is a def |
| 324 | |
| 325 | LiveRange *const LROfDef = getLiveRangeForValue( *DefI ); |
| 326 | assert( LROfDef ); |
| 327 | RegClass *const RCOfDef = LROfDef->getRegClass(); |
| 328 | |
Chris Lattner | 7a17675 | 2001-12-04 00:03:30 +0000 | [diff] [blame] | 329 | MachineInstr::val_const_op_iterator UseI(MInst); |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 330 | for( ; !UseI.done(); ++UseI){ // for all uses |
| 331 | |
| 332 | LiveRange *const LROfUse = getLiveRangeForValue( *UseI ); |
| 333 | |
| 334 | if( ! LROfUse ) { // if LR of use is not found |
| 335 | |
| 336 | //don't warn about labels |
| 337 | if (!((*UseI)->getType())->isLabelType() && DEBUG_RA) { |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 338 | cerr<<" !! Warning: No LR for use "; printValue(*UseI); |
| 339 | cerr << "\n"; |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 340 | } |
| 341 | continue; // ignore and continue |
| 342 | } |
| 343 | |
| 344 | if( LROfUse == LROfDef) // nothing to merge if they are same |
| 345 | continue; |
| 346 | |
Ruchira Sasanka | efaf9be | 2001-11-10 00:20:24 +0000 | [diff] [blame] | 347 | //RegClass *const RCOfUse = LROfUse->getRegClass(); |
| 348 | //if( RCOfDef == RCOfUse ) { // if the reg classes are the same |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 349 | |
Ruchira Sasanka | efaf9be | 2001-11-10 00:20:24 +0000 | [diff] [blame] | 350 | if( MRI.getRegType(LROfDef) == MRI.getRegType(LROfUse) ) { |
| 351 | |
| 352 | // If the two RegTypes are the same |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 353 | |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 354 | if( ! RCOfDef->getInterference(LROfDef, LROfUse) ) { |
| 355 | |
| 356 | unsigned CombinedDegree = |
| 357 | LROfDef->getUserIGNode()->getNumOfNeighbors() + |
| 358 | LROfUse->getUserIGNode()->getNumOfNeighbors(); |
| 359 | |
| 360 | if( CombinedDegree <= RCOfDef->getNumOfAvailRegs() ) { |
| 361 | |
Ruchira Sasanka | a5ab964 | 2001-09-30 23:11:59 +0000 | [diff] [blame] | 362 | // if both LRs do not have suggested colors |
| 363 | if( ! (LROfDef->hasSuggestedColor() && |
| 364 | LROfUse->hasSuggestedColor() ) ) { |
| 365 | |
| 366 | RCOfDef->mergeIGNodesOfLRs(LROfDef, LROfUse); |
| 367 | unionAndUpdateLRs(LROfDef, LROfUse); |
| 368 | } |
| 369 | |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 370 | |
| 371 | } // if combined degree is less than # of regs |
| 372 | |
| 373 | } // if def and use do not interfere |
| 374 | |
Ruchira Sasanka | d33238b | 2001-10-12 17:48:18 +0000 | [diff] [blame] | 375 | }// if reg classes are the same |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 376 | |
| 377 | } // for all uses |
| 378 | |
| 379 | } // if def |
| 380 | |
| 381 | } // for all defs |
| 382 | |
| 383 | } // for all machine instructions |
| 384 | |
| 385 | } // for all BBs |
| 386 | |
| 387 | if( DEBUG_RA) |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 388 | cerr << "\nCoalscing Done!\n"; |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 389 | |
| 390 | } |
| 391 | |
| 392 | |
| 393 | |
| 394 | |
| 395 | |
| 396 | /*--------------------------- Debug code for printing ---------------*/ |
| 397 | |
| 398 | |
| 399 | void LiveRangeInfo::printLiveRanges() |
| 400 | { |
| 401 | LiveRangeMapType::iterator HMI = LiveRangeMap.begin(); // hash map iterator |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 402 | cerr << "\nPrinting Live Ranges from Hash Map:\n"; |
| 403 | for( ; HMI != LiveRangeMap.end() ; ++HMI) { |
| 404 | if( HMI->first && HMI->second ) { |
| 405 | cerr <<" "; printValue((*HMI).first); cerr << "\t: "; |
| 406 | HMI->second->printSet(); cerr << "\n"; |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 407 | } |
| 408 | } |
| 409 | } |
| 410 | |
| 411 | |