Chris Lattner | 179cdfb | 2002-08-09 20:08:03 +0000 | [diff] [blame] | 1 | //===-- PhyRegAlloc.cpp ---------------------------------------------------===// |
Vikram S. Adve | 12af164 | 2001-11-08 04:48:50 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by the LLVM research group and is distributed under |
| 6 | // the University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Brian Gaeke | 222bd53 | 2003-09-24 18:16:23 +0000 | [diff] [blame] | 10 | // Traditional graph-coloring global register allocator currently used |
| 11 | // by the SPARC back-end. |
| 12 | // |
| 13 | // NOTE: This register allocator has some special support |
| 14 | // for the Reoptimizer, such as not saving some registers on calls to |
| 15 | // the first-level instrumentation function. |
| 16 | // |
| 17 | // NOTE 2: This register allocator can save its state in a global |
| 18 | // variable in the module it's working on. This feature is not |
| 19 | // thread-safe; if you have doubts, leave it turned off. |
Chris Lattner | 179cdfb | 2002-08-09 20:08:03 +0000 | [diff] [blame] | 20 | // |
| 21 | //===----------------------------------------------------------------------===// |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 22 | |
Brian Gaeke | 537132b | 2003-10-23 20:32:55 +0000 | [diff] [blame] | 23 | #include "AllocInfo.h" |
Misha Brukman | 396c8c3 | 2003-10-23 18:06:27 +0000 | [diff] [blame] | 24 | #include "IGNode.h" |
Chris Lattner | 70b2f56 | 2003-09-01 20:09:04 +0000 | [diff] [blame] | 25 | #include "PhyRegAlloc.h" |
Chris Lattner | 4309e73 | 2003-01-15 19:57:07 +0000 | [diff] [blame] | 26 | #include "RegAllocCommon.h" |
Chris Lattner | 9d4ed15 | 2003-01-15 21:14:01 +0000 | [diff] [blame] | 27 | #include "RegClass.h" |
Brian Gaeke | 748fba1 | 2004-02-24 19:46:00 +0000 | [diff] [blame] | 28 | #include "../LiveVar/FunctionLiveVarInfo.h" |
Misha Brukman | 396c8c3 | 2003-10-23 18:06:27 +0000 | [diff] [blame] | 29 | #include "llvm/Constants.h" |
| 30 | #include "llvm/DerivedTypes.h" |
Brian Gaeke | 25d4b54 | 2004-05-30 07:08:43 +0000 | [diff] [blame] | 31 | #include "llvm/iPHINode.h" |
Misha Brukman | 396c8c3 | 2003-10-23 18:06:27 +0000 | [diff] [blame] | 32 | #include "llvm/iOther.h" |
| 33 | #include "llvm/Module.h" |
| 34 | #include "llvm/Type.h" |
| 35 | #include "llvm/Analysis/LoopInfo.h" |
Chris Lattner | 797c136 | 2003-09-30 20:13:59 +0000 | [diff] [blame] | 36 | #include "llvm/CodeGen/InstrSelection.h" |
Brian Gaeke | 3ceac85 | 2003-10-30 21:21:33 +0000 | [diff] [blame] | 37 | #include "llvm/CodeGen/MachineCodeForInstruction.h" |
Misha Brukman | 396c8c3 | 2003-10-23 18:06:27 +0000 | [diff] [blame] | 38 | #include "llvm/CodeGen/MachineFunction.h" |
| 39 | #include "llvm/CodeGen/MachineFunctionInfo.h" |
Brian Gaeke | 874f423 | 2003-09-21 02:50:21 +0000 | [diff] [blame] | 40 | #include "llvm/CodeGen/MachineInstr.h" |
Chris Lattner | f6ee49f | 2003-01-15 18:08:07 +0000 | [diff] [blame] | 41 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Chris Lattner | 08d4963 | 2004-02-29 19:12:51 +0000 | [diff] [blame] | 42 | #include "../MachineInstrAnnot.h" |
Chris Lattner | 797c136 | 2003-09-30 20:13:59 +0000 | [diff] [blame] | 43 | #include "llvm/CodeGen/Passes.h" |
Chris Lattner | 797c136 | 2003-09-30 20:13:59 +0000 | [diff] [blame] | 44 | #include "llvm/Support/InstIterator.h" |
Misha Brukman | 396c8c3 | 2003-10-23 18:06:27 +0000 | [diff] [blame] | 45 | #include "llvm/Target/TargetInstrInfo.h" |
Chris Lattner | 4bc2348 | 2002-09-15 07:07:55 +0000 | [diff] [blame] | 46 | #include "Support/CommandLine.h" |
Misha Brukman | 396c8c3 | 2003-10-23 18:06:27 +0000 | [diff] [blame] | 47 | #include "Support/SetOperations.h" |
| 48 | #include "Support/STLExtras.h" |
Brian Gaeke | bd353fb | 2003-09-21 03:57:37 +0000 | [diff] [blame] | 49 | #include <cmath> |
Vikram S. Adve | 12af164 | 2001-11-08 04:48:50 +0000 | [diff] [blame] | 50 | |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 51 | namespace llvm { |
| 52 | |
Chris Lattner | 70e60cb | 2002-05-22 17:08:27 +0000 | [diff] [blame] | 53 | RegAllocDebugLevel_t DEBUG_RA; |
Vikram S. Adve | 39c94e1 | 2002-09-14 23:05:33 +0000 | [diff] [blame] | 54 | |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 55 | static cl::opt<RegAllocDebugLevel_t, true> |
| 56 | DRA_opt("dregalloc", cl::Hidden, cl::location(DEBUG_RA), |
| 57 | cl::desc("enable register allocation debugging information"), |
| 58 | cl::values( |
Vikram S. Adve | 39c94e1 | 2002-09-14 23:05:33 +0000 | [diff] [blame] | 59 | clEnumValN(RA_DEBUG_None , "n", "disable debug output"), |
| 60 | clEnumValN(RA_DEBUG_Results, "y", "debug output for allocation results"), |
| 61 | clEnumValN(RA_DEBUG_Coloring, "c", "debug output for graph coloring step"), |
| 62 | clEnumValN(RA_DEBUG_Interference,"ig","debug output for interference graphs"), |
| 63 | clEnumValN(RA_DEBUG_LiveRanges , "lr","debug output for live ranges"), |
| 64 | clEnumValN(RA_DEBUG_Verbose, "v", "extra debug output"), |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 65 | 0)); |
Ruchira Sasanka | 6b0a8b5 | 2001-09-15 21:11:11 +0000 | [diff] [blame] | 66 | |
Brian Gaeke | d1b3679 | 2004-03-10 22:21:03 +0000 | [diff] [blame] | 67 | /// The reoptimizer wants to be able to grovel through the register |
| 68 | /// allocator's state after it has done its job. This is a hack. |
| 69 | /// |
| 70 | PhyRegAlloc::SavedStateMapTy ExportedFnAllocState; |
| 71 | bool SaveRegAllocState = false; |
| 72 | bool SaveStateToModule = true; |
| 73 | static cl::opt<bool, true> |
| 74 | SaveRegAllocStateOpt("save-ra-state", cl::Hidden, |
| 75 | cl::location (SaveRegAllocState), |
| 76 | cl::init(false), |
Brian Gaeke | 59b1c56 | 2003-09-24 17:50:28 +0000 | [diff] [blame] | 77 | cl::desc("write reg. allocator state into module")); |
| 78 | |
Brian Gaeke | bf3c4cf | 2003-08-14 06:09:32 +0000 | [diff] [blame] | 79 | FunctionPass *getRegisterAllocator(TargetMachine &T) { |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 80 | return new PhyRegAlloc (T); |
Chris Lattner | 2f9b28e | 2002-02-04 15:54:09 +0000 | [diff] [blame] | 81 | } |
Chris Lattner | 6dd98a6 | 2002-02-04 00:33:08 +0000 | [diff] [blame] | 82 | |
Chris Lattner | 8474f6f | 2003-09-23 15:13:04 +0000 | [diff] [blame] | 83 | void PhyRegAlloc::getAnalysisUsage(AnalysisUsage &AU) const { |
| 84 | AU.addRequired<LoopInfo> (); |
| 85 | AU.addRequired<FunctionLiveVarInfo> (); |
| 86 | } |
| 87 | |
| 88 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 89 | /// Initialize interference graphs (one in each reg class) and IGNodeLists |
| 90 | /// (one in each IG). The actual nodes will be pushed later. |
| 91 | /// |
Chris Lattner | dd1e40b | 2002-02-03 07:46:34 +0000 | [diff] [blame] | 92 | void PhyRegAlloc::createIGNodeListsAndIGs() { |
Chris Lattner | c083dcc | 2003-09-01 20:05:47 +0000 | [diff] [blame] | 93 | if (DEBUG_RA >= RA_DEBUG_LiveRanges) std::cerr << "Creating LR lists ...\n"; |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 94 | |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 95 | LiveRangeMapType::const_iterator HMI = LRI->getLiveRangeMap()->begin(); |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 96 | LiveRangeMapType::const_iterator HMIEnd = LRI->getLiveRangeMap()->end(); |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 97 | |
Chris Lattner | dd1e40b | 2002-02-03 07:46:34 +0000 | [diff] [blame] | 98 | for (; HMI != HMIEnd ; ++HMI ) { |
| 99 | if (HMI->first) { |
| 100 | LiveRange *L = HMI->second; // get the LiveRange |
| 101 | if (!L) { |
Brian Gaeke | eb8863d | 2004-03-29 21:58:41 +0000 | [diff] [blame] | 102 | if (DEBUG_RA && !isa<ConstantIntegral> (HMI->first)) |
Chris Lattner | c083dcc | 2003-09-01 20:05:47 +0000 | [diff] [blame] | 103 | std::cerr << "\n**** ?!?WARNING: NULL LIVE RANGE FOUND FOR: " |
Vikram S. Adve | 39c94e1 | 2002-09-14 23:05:33 +0000 | [diff] [blame] | 104 | << RAV(HMI->first) << "****\n"; |
Chris Lattner | dd1e40b | 2002-02-03 07:46:34 +0000 | [diff] [blame] | 105 | continue; |
| 106 | } |
Vikram S. Adve | 39c94e1 | 2002-09-14 23:05:33 +0000 | [diff] [blame] | 107 | |
| 108 | // if the Value * is not null, and LR is not yet written to the IGNodeList |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 109 | if (!(L->getUserIGNode()) ) { |
Chris Lattner | dd1e40b | 2002-02-03 07:46:34 +0000 | [diff] [blame] | 110 | RegClass *const RC = // RegClass of first value in the LR |
Brian Gaeke | 59b1c56 | 2003-09-24 17:50:28 +0000 | [diff] [blame] | 111 | RegClassList[ L->getRegClassID() ]; |
Chris Lattner | dd1e40b | 2002-02-03 07:46:34 +0000 | [diff] [blame] | 112 | RC->addLRToIG(L); // add this LR to an IG |
| 113 | } |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 114 | } |
| 115 | } |
Chris Lattner | dd1e40b | 2002-02-03 07:46:34 +0000 | [diff] [blame] | 116 | |
| 117 | // init RegClassList |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 118 | for ( unsigned rc=0; rc < NumOfRegClasses ; rc++) |
Chris Lattner | dd1e40b | 2002-02-03 07:46:34 +0000 | [diff] [blame] | 119 | RegClassList[rc]->createInterferenceGraph(); |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 120 | |
Chris Lattner | c083dcc | 2003-09-01 20:05:47 +0000 | [diff] [blame] | 121 | if (DEBUG_RA >= RA_DEBUG_LiveRanges) std::cerr << "LRLists Created!\n"; |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 125 | /// Add all interferences for a given instruction. Interference occurs only |
| 126 | /// if the LR of Def (Inst or Arg) is of the same reg class as that of live |
| 127 | /// var. The live var passed to this function is the LVset AFTER the |
| 128 | /// instruction. |
| 129 | /// |
| 130 | void PhyRegAlloc::addInterference(const Value *Def, const ValueSet *LVSet, |
Chris Lattner | 296b773 | 2002-02-05 02:52:05 +0000 | [diff] [blame] | 131 | bool isCallInst) { |
Chris Lattner | 296b773 | 2002-02-05 02:52:05 +0000 | [diff] [blame] | 132 | ValueSet::const_iterator LIt = LVSet->begin(); |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 133 | |
| 134 | // get the live range of instruction |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 135 | const LiveRange *const LROfDef = LRI->getLiveRangeForValue( Def ); |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 136 | |
| 137 | IGNode *const IGNodeOfDef = LROfDef->getUserIGNode(); |
| 138 | assert( IGNodeOfDef ); |
| 139 | |
| 140 | RegClass *const RCOfDef = LROfDef->getRegClass(); |
| 141 | |
| 142 | // for each live var in live variable set |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 143 | for ( ; LIt != LVSet->end(); ++LIt) { |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 144 | |
Vikram S. Adve | f5af636 | 2002-07-08 23:15:32 +0000 | [diff] [blame] | 145 | if (DEBUG_RA >= RA_DEBUG_Verbose) |
Chris Lattner | c083dcc | 2003-09-01 20:05:47 +0000 | [diff] [blame] | 146 | std::cerr << "< Def=" << RAV(Def) << ", Lvar=" << RAV(*LIt) << "> "; |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 147 | |
| 148 | // get the live range corresponding to live var |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 149 | LiveRange *LROfVar = LRI->getLiveRangeForValue(*LIt); |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 150 | |
| 151 | // LROfVar can be null if it is a const since a const |
| 152 | // doesn't have a dominating def - see Assumptions above |
Vikram S. Adve | 39c94e1 | 2002-09-14 23:05:33 +0000 | [diff] [blame] | 153 | if (LROfVar) |
| 154 | if (LROfDef != LROfVar) // do not set interf for same LR |
| 155 | if (RCOfDef == LROfVar->getRegClass()) // 2 reg classes are the same |
| 156 | RCOfDef->setInterference( LROfDef, LROfVar); |
Ruchira Sasanka | 958faf3 | 2001-10-19 17:21:03 +0000 | [diff] [blame] | 157 | } |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 158 | } |
| 159 | |
Ruchira Sasanka | 958faf3 | 2001-10-19 17:21:03 +0000 | [diff] [blame] | 160 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 161 | /// For a call instruction, this method sets the CallInterference flag in |
| 162 | /// the LR of each variable live in the Live Variable Set live after the |
| 163 | /// call instruction (except the return value of the call instruction - since |
| 164 | /// the return value does not interfere with that call itself). |
| 165 | /// |
Ruchira Sasanka | 958faf3 | 2001-10-19 17:21:03 +0000 | [diff] [blame] | 166 | void PhyRegAlloc::setCallInterferences(const MachineInstr *MInst, |
Chris Lattner | 296b773 | 2002-02-05 02:52:05 +0000 | [diff] [blame] | 167 | const ValueSet *LVSetAft) { |
Vikram S. Adve | 39c94e1 | 2002-09-14 23:05:33 +0000 | [diff] [blame] | 168 | if (DEBUG_RA >= RA_DEBUG_Interference) |
Chris Lattner | c083dcc | 2003-09-01 20:05:47 +0000 | [diff] [blame] | 169 | std::cerr << "\n For call inst: " << *MInst; |
Ruchira Sasanka | 958faf3 | 2001-10-19 17:21:03 +0000 | [diff] [blame] | 170 | |
Ruchira Sasanka | 958faf3 | 2001-10-19 17:21:03 +0000 | [diff] [blame] | 171 | // for each live var in live variable set after machine inst |
Vikram S. Adve | 65b2f40 | 2003-07-02 01:24:00 +0000 | [diff] [blame] | 172 | for (ValueSet::const_iterator LIt = LVSetAft->begin(), LEnd = LVSetAft->end(); |
| 173 | LIt != LEnd; ++LIt) { |
Ruchira Sasanka | 958faf3 | 2001-10-19 17:21:03 +0000 | [diff] [blame] | 174 | |
Ruchira Sasanka | 4f3eb22 | 2002-01-07 19:19:18 +0000 | [diff] [blame] | 175 | // get the live range corresponding to live var |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 176 | LiveRange *const LR = LRI->getLiveRangeForValue(*LIt ); |
Ruchira Sasanka | 958faf3 | 2001-10-19 17:21:03 +0000 | [diff] [blame] | 177 | |
Ruchira Sasanka | 958faf3 | 2001-10-19 17:21:03 +0000 | [diff] [blame] | 178 | // LR can be null if it is a const since a const |
| 179 | // doesn't have a dominating def - see Assumptions above |
Vikram S. Adve | 39c94e1 | 2002-09-14 23:05:33 +0000 | [diff] [blame] | 180 | if (LR ) { |
| 181 | if (DEBUG_RA >= RA_DEBUG_Interference) { |
Chris Lattner | c083dcc | 2003-09-01 20:05:47 +0000 | [diff] [blame] | 182 | std::cerr << "\n\tLR after Call: "; |
Vikram S. Adve | 39c94e1 | 2002-09-14 23:05:33 +0000 | [diff] [blame] | 183 | printSet(*LR); |
| 184 | } |
Ruchira Sasanka | 958faf3 | 2001-10-19 17:21:03 +0000 | [diff] [blame] | 185 | LR->setCallInterference(); |
Vikram S. Adve | 39c94e1 | 2002-09-14 23:05:33 +0000 | [diff] [blame] | 186 | if (DEBUG_RA >= RA_DEBUG_Interference) { |
Chris Lattner | c083dcc | 2003-09-01 20:05:47 +0000 | [diff] [blame] | 187 | std::cerr << "\n ++After adding call interference for LR: " ; |
Chris Lattner | 296b773 | 2002-02-05 02:52:05 +0000 | [diff] [blame] | 188 | printSet(*LR); |
Ruchira Sasanka | 958faf3 | 2001-10-19 17:21:03 +0000 | [diff] [blame] | 189 | } |
| 190 | } |
| 191 | |
| 192 | } |
| 193 | |
Vikram S. Adve | 1a53f03 | 2002-03-31 18:54:37 +0000 | [diff] [blame] | 194 | // Now find the LR of the return value of the call |
| 195 | // We do this because, we look at the LV set *after* the instruction |
| 196 | // to determine, which LRs must be saved across calls. The return value |
| 197 | // of the call is live in this set - but it does not interfere with call |
| 198 | // (i.e., we can allocate a volatile register to the return value) |
Vikram S. Adve | dabb41d | 2002-05-19 15:29:31 +0000 | [diff] [blame] | 199 | CallArgsDescriptor* argDesc = CallArgsDescriptor::get(MInst); |
| 200 | |
| 201 | if (const Value *RetVal = argDesc->getReturnValue()) { |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 202 | LiveRange *RetValLR = LRI->getLiveRangeForValue( RetVal ); |
Vikram S. Adve | 1a53f03 | 2002-03-31 18:54:37 +0000 | [diff] [blame] | 203 | assert( RetValLR && "No LR for RetValue of call"); |
| 204 | RetValLR->clearCallInterference(); |
| 205 | } |
| 206 | |
| 207 | // If the CALL is an indirect call, find the LR of the function pointer. |
| 208 | // That has a call interference because it conflicts with outgoing args. |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 209 | if (const Value *AddrVal = argDesc->getIndirectFuncPtr()) { |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 210 | LiveRange *AddrValLR = LRI->getLiveRangeForValue( AddrVal ); |
Vikram S. Adve | 1a53f03 | 2002-03-31 18:54:37 +0000 | [diff] [blame] | 211 | assert( AddrValLR && "No LR for indirect addr val of call"); |
| 212 | AddrValLR->setCallInterference(); |
| 213 | } |
Ruchira Sasanka | 958faf3 | 2001-10-19 17:21:03 +0000 | [diff] [blame] | 214 | } |
| 215 | |
| 216 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 217 | /// Create interferences in the IG of each RegClass, and calculate the spill |
| 218 | /// cost of each Live Range (it is done in this method to save another pass |
| 219 | /// over the code). |
| 220 | /// |
| 221 | void PhyRegAlloc::buildInterferenceGraphs() { |
Vikram S. Adve | 39c94e1 | 2002-09-14 23:05:33 +0000 | [diff] [blame] | 222 | if (DEBUG_RA >= RA_DEBUG_Interference) |
Chris Lattner | c083dcc | 2003-09-01 20:05:47 +0000 | [diff] [blame] | 223 | std::cerr << "Creating interference graphs ...\n"; |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 224 | |
Ruchira Sasanka | 4f3eb22 | 2002-01-07 19:19:18 +0000 | [diff] [blame] | 225 | unsigned BBLoopDepthCost; |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 226 | for (MachineFunction::iterator BBI = MF->begin(), BBE = MF->end(); |
Chris Lattner | 2fbfdcf | 2002-04-07 20:49:59 +0000 | [diff] [blame] | 227 | BBI != BBE; ++BBI) { |
Chris Lattner | f726e77 | 2002-10-28 19:22:04 +0000 | [diff] [blame] | 228 | const MachineBasicBlock &MBB = *BBI; |
| 229 | const BasicBlock *BB = MBB.getBasicBlock(); |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 230 | |
Ruchira Sasanka | 4f3eb22 | 2002-01-07 19:19:18 +0000 | [diff] [blame] | 231 | // find the 10^(loop_depth) of this BB |
Chris Lattner | f726e77 | 2002-10-28 19:22:04 +0000 | [diff] [blame] | 232 | BBLoopDepthCost = (unsigned)pow(10.0, LoopDepthCalc->getLoopDepth(BB)); |
Ruchira Sasanka | 4f3eb22 | 2002-01-07 19:19:18 +0000 | [diff] [blame] | 233 | |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 234 | // get the iterator for machine instructions |
Chris Lattner | f726e77 | 2002-10-28 19:22:04 +0000 | [diff] [blame] | 235 | MachineBasicBlock::const_iterator MII = MBB.begin(); |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 236 | |
| 237 | // iterate over all the machine instructions in BB |
Chris Lattner | f726e77 | 2002-10-28 19:22:04 +0000 | [diff] [blame] | 238 | for ( ; MII != MBB.end(); ++MII) { |
Alkis Evlogimenos | c0b9dc5 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 239 | const MachineInstr *MInst = MII; |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 240 | |
| 241 | // get the LV set after the instruction |
Chris Lattner | f726e77 | 2002-10-28 19:22:04 +0000 | [diff] [blame] | 242 | const ValueSet &LVSetAI = LVI->getLiveVarSetAfterMInst(MInst, BB); |
Chris Lattner | d029cd2 | 2004-06-02 05:55:25 +0000 | [diff] [blame] | 243 | bool isCallInst = TM.getInstrInfo()->isCall(MInst->getOpcode()); |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 244 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 245 | if (isCallInst) { |
Misha Brukman | 37f92e2 | 2003-09-11 22:34:13 +0000 | [diff] [blame] | 246 | // set the isCallInterference flag of each live range which extends |
| 247 | // across this call instruction. This information is used by graph |
| 248 | // coloring algorithm to avoid allocating volatile colors to live ranges |
Ruchira Sasanka | 958faf3 | 2001-10-19 17:21:03 +0000 | [diff] [blame] | 249 | // that span across calls (since they have to be saved/restored) |
Chris Lattner | 748697d | 2002-02-05 04:20:12 +0000 | [diff] [blame] | 250 | setCallInterferences(MInst, &LVSetAI); |
Ruchira Sasanka | 958faf3 | 2001-10-19 17:21:03 +0000 | [diff] [blame] | 251 | } |
| 252 | |
Ruchira Sasanka | 4f3eb22 | 2002-01-07 19:19:18 +0000 | [diff] [blame] | 253 | // iterate over all MI operands to find defs |
Chris Lattner | 2f898d2 | 2002-02-05 06:02:59 +0000 | [diff] [blame] | 254 | for (MachineInstr::const_val_op_iterator OpI = MInst->begin(), |
| 255 | OpE = MInst->end(); OpI != OpE; ++OpI) { |
Alkis Evlogimenos | 4d7af65 | 2003-12-14 13:24:17 +0000 | [diff] [blame] | 256 | if (OpI.isDef()) // create a new LR since def |
Chris Lattner | 748697d | 2002-02-05 04:20:12 +0000 | [diff] [blame] | 257 | addInterference(*OpI, &LVSetAI, isCallInst); |
Ruchira Sasanka | 4f3eb22 | 2002-01-07 19:19:18 +0000 | [diff] [blame] | 258 | |
| 259 | // Calculate the spill cost of each live range |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 260 | LiveRange *LR = LRI->getLiveRangeForValue(*OpI); |
Chris Lattner | 2f898d2 | 2002-02-05 06:02:59 +0000 | [diff] [blame] | 261 | if (LR) LR->addSpillCost(BBLoopDepthCost); |
Ruchira Sasanka | 4f3eb22 | 2002-01-07 19:19:18 +0000 | [diff] [blame] | 262 | } |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 263 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 264 | // Mark all operands of pseudo-instructions as interfering with one |
| 265 | // another. This must be done because pseudo-instructions may be |
| 266 | // expanded to multiple instructions by the assembler, so all the |
| 267 | // operands must get distinct registers. |
Chris Lattner | d029cd2 | 2004-06-02 05:55:25 +0000 | [diff] [blame] | 268 | if (TM.getInstrInfo()->isPseudoInstr(MInst->getOpcode())) |
Ruchira Sasanka | 22ccb1b | 2001-11-14 15:33:58 +0000 | [diff] [blame] | 269 | addInterf4PseudoInstr(MInst); |
| 270 | |
Ruchira Sasanka | c4d4b76 | 2001-10-16 01:23:19 +0000 | [diff] [blame] | 271 | // Also add interference for any implicit definitions in a machine |
| 272 | // instr (currently, only calls have this). |
Ruchira Sasanka | c4d4b76 | 2001-10-16 01:23:19 +0000 | [diff] [blame] | 273 | unsigned NumOfImpRefs = MInst->getNumImplicitRefs(); |
Vikram S. Adve | 5f2180c | 2003-05-27 00:05:23 +0000 | [diff] [blame] | 274 | for (unsigned z=0; z < NumOfImpRefs; z++) |
Alkis Evlogimenos | 4d7af65 | 2003-12-14 13:24:17 +0000 | [diff] [blame] | 275 | if (MInst->getImplicitOp(z).isDef()) |
Vikram S. Adve | 5f2180c | 2003-05-27 00:05:23 +0000 | [diff] [blame] | 276 | addInterference( MInst->getImplicitRef(z), &LVSetAI, isCallInst ); |
Ruchira Sasanka | ef1b0cb | 2001-11-03 17:13:27 +0000 | [diff] [blame] | 277 | |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 278 | } // for all machine instructions in BB |
Chris Lattner | 2fbfdcf | 2002-04-07 20:49:59 +0000 | [diff] [blame] | 279 | } // for all BBs in function |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 280 | |
Misha Brukman | 37f92e2 | 2003-09-11 22:34:13 +0000 | [diff] [blame] | 281 | // add interferences for function arguments. Since there are no explicit |
Chris Lattner | 2fbfdcf | 2002-04-07 20:49:59 +0000 | [diff] [blame] | 282 | // defs in the function for args, we have to add them manually |
Ruchira Sasanka | 4f3eb22 | 2002-01-07 19:19:18 +0000 | [diff] [blame] | 283 | addInterferencesForArgs(); |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 284 | |
Vikram S. Adve | 39c94e1 | 2002-09-14 23:05:33 +0000 | [diff] [blame] | 285 | if (DEBUG_RA >= RA_DEBUG_Interference) |
Chris Lattner | c083dcc | 2003-09-01 20:05:47 +0000 | [diff] [blame] | 286 | std::cerr << "Interference graphs calculated!\n"; |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 287 | } |
| 288 | |
Ruchira Sasanka | 4f3eb22 | 2002-01-07 19:19:18 +0000 | [diff] [blame] | 289 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 290 | /// Mark all operands of the given MachineInstr as interfering with one |
| 291 | /// another. |
| 292 | /// |
Brian Gaeke | 43ce8fe | 2003-09-21 02:24:09 +0000 | [diff] [blame] | 293 | void PhyRegAlloc::addInterf4PseudoInstr(const MachineInstr *MInst) { |
Ruchira Sasanka | f6dfca1 | 2001-11-15 15:00:53 +0000 | [diff] [blame] | 294 | bool setInterf = false; |
| 295 | |
Brian Gaeke | 43ce8fe | 2003-09-21 02:24:09 +0000 | [diff] [blame] | 296 | // iterate over MI operands to find defs |
Chris Lattner | 2f898d2 | 2002-02-05 06:02:59 +0000 | [diff] [blame] | 297 | for (MachineInstr::const_val_op_iterator It1 = MInst->begin(), |
| 298 | ItE = MInst->end(); It1 != ItE; ++It1) { |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 299 | const LiveRange *LROfOp1 = LRI->getLiveRangeForValue(*It1); |
Alkis Evlogimenos | 4d7af65 | 2003-12-14 13:24:17 +0000 | [diff] [blame] | 300 | assert((LROfOp1 || It1.isDef()) && "No LR for Def in PSEUDO insruction"); |
Ruchira Sasanka | 22ccb1b | 2001-11-14 15:33:58 +0000 | [diff] [blame] | 301 | |
Chris Lattner | 2f898d2 | 2002-02-05 06:02:59 +0000 | [diff] [blame] | 302 | MachineInstr::const_val_op_iterator It2 = It1; |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 303 | for (++It2; It2 != ItE; ++It2) { |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 304 | const LiveRange *LROfOp2 = LRI->getLiveRangeForValue(*It2); |
Ruchira Sasanka | f6dfca1 | 2001-11-15 15:00:53 +0000 | [diff] [blame] | 305 | |
Chris Lattner | 2f898d2 | 2002-02-05 06:02:59 +0000 | [diff] [blame] | 306 | if (LROfOp2) { |
| 307 | RegClass *RCOfOp1 = LROfOp1->getRegClass(); |
| 308 | RegClass *RCOfOp2 = LROfOp2->getRegClass(); |
Ruchira Sasanka | 22ccb1b | 2001-11-14 15:33:58 +0000 | [diff] [blame] | 309 | |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 310 | if (RCOfOp1 == RCOfOp2 ){ |
Ruchira Sasanka | 22ccb1b | 2001-11-14 15:33:58 +0000 | [diff] [blame] | 311 | RCOfOp1->setInterference( LROfOp1, LROfOp2 ); |
Ruchira Sasanka | f6dfca1 | 2001-11-15 15:00:53 +0000 | [diff] [blame] | 312 | setInterf = true; |
Ruchira Sasanka | 22ccb1b | 2001-11-14 15:33:58 +0000 | [diff] [blame] | 313 | } |
Ruchira Sasanka | 22ccb1b | 2001-11-14 15:33:58 +0000 | [diff] [blame] | 314 | } // if Op2 has a LR |
Ruchira Sasanka | 22ccb1b | 2001-11-14 15:33:58 +0000 | [diff] [blame] | 315 | } // for all other defs in machine instr |
Ruchira Sasanka | 22ccb1b | 2001-11-14 15:33:58 +0000 | [diff] [blame] | 316 | } // for all operands in an instruction |
| 317 | |
Chris Lattner | 2f898d2 | 2002-02-05 06:02:59 +0000 | [diff] [blame] | 318 | if (!setInterf && MInst->getNumOperands() > 2) { |
Chris Lattner | c083dcc | 2003-09-01 20:05:47 +0000 | [diff] [blame] | 319 | std::cerr << "\nInterf not set for any operand in pseudo instr:\n"; |
| 320 | std::cerr << *MInst; |
Ruchira Sasanka | f6dfca1 | 2001-11-15 15:00:53 +0000 | [diff] [blame] | 321 | assert(0 && "Interf not set for pseudo instr with > 2 operands" ); |
Ruchira Sasanka | f6dfca1 | 2001-11-15 15:00:53 +0000 | [diff] [blame] | 322 | } |
Ruchira Sasanka | 22ccb1b | 2001-11-14 15:33:58 +0000 | [diff] [blame] | 323 | } |
| 324 | |
| 325 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 326 | /// Add interferences for incoming arguments to a function. |
| 327 | /// |
Chris Lattner | 296b773 | 2002-02-05 02:52:05 +0000 | [diff] [blame] | 328 | void PhyRegAlloc::addInterferencesForArgs() { |
| 329 | // get the InSet of root BB |
Chris Lattner | f726e77 | 2002-10-28 19:22:04 +0000 | [diff] [blame] | 330 | const ValueSet &InSet = LVI->getInSetOfBB(&Fn->front()); |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 331 | |
Chris Lattner | f726e77 | 2002-10-28 19:22:04 +0000 | [diff] [blame] | 332 | for (Function::const_aiterator AI = Fn->abegin(); AI != Fn->aend(); ++AI) { |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 333 | // add interferences between args and LVars at start |
| 334 | addInterference(AI, &InSet, false); |
| 335 | |
Vikram S. Adve | 39c94e1 | 2002-09-14 23:05:33 +0000 | [diff] [blame] | 336 | if (DEBUG_RA >= RA_DEBUG_Interference) |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 337 | std::cerr << " - %% adding interference for argument " << RAV(AI) << "\n"; |
Ruchira Sasanka | 8e60479 | 2001-09-14 21:18:34 +0000 | [diff] [blame] | 338 | } |
| 339 | } |
| 340 | |
| 341 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 342 | /// The following are utility functions used solely by updateMachineCode and |
| 343 | /// the functions that it calls. They should probably be folded back into |
| 344 | /// updateMachineCode at some point. |
| 345 | /// |
Vikram S. Adve | 4876209 | 2002-04-25 04:34:15 +0000 | [diff] [blame] | 346 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 347 | // used by: updateMachineCode (1 time), PrependInstructions (1 time) |
| 348 | inline void InsertBefore(MachineInstr* newMI, MachineBasicBlock& MBB, |
| 349 | MachineBasicBlock::iterator& MII) { |
Chris Lattner | f726e77 | 2002-10-28 19:22:04 +0000 | [diff] [blame] | 350 | MII = MBB.insert(MII, newMI); |
Vikram S. Adve | cb202e3 | 2002-10-11 16:12:40 +0000 | [diff] [blame] | 351 | ++MII; |
| 352 | } |
| 353 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 354 | // used by: AppendInstructions (1 time) |
| 355 | inline void InsertAfter(MachineInstr* newMI, MachineBasicBlock& MBB, |
| 356 | MachineBasicBlock::iterator& MII) { |
Vikram S. Adve | cb202e3 | 2002-10-11 16:12:40 +0000 | [diff] [blame] | 357 | ++MII; // insert before the next instruction |
Chris Lattner | f726e77 | 2002-10-28 19:22:04 +0000 | [diff] [blame] | 358 | MII = MBB.insert(MII, newMI); |
Vikram S. Adve | cb202e3 | 2002-10-11 16:12:40 +0000 | [diff] [blame] | 359 | } |
| 360 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 361 | // used by: updateMachineCode (2 times) |
| 362 | inline void PrependInstructions(std::vector<MachineInstr *> &IBef, |
| 363 | MachineBasicBlock& MBB, |
| 364 | MachineBasicBlock::iterator& MII, |
| 365 | const std::string& msg) { |
| 366 | if (!IBef.empty()) { |
Alkis Evlogimenos | c0b9dc5 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 367 | MachineInstr* OrigMI = MII; |
Vikram S. Adve | dabb41d | 2002-05-19 15:29:31 +0000 | [diff] [blame] | 368 | std::vector<MachineInstr *>::iterator AdIt; |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 369 | for (AdIt = IBef.begin(); AdIt != IBef.end() ; ++AdIt) { |
Vikram S. Adve | 4876209 | 2002-04-25 04:34:15 +0000 | [diff] [blame] | 370 | if (DEBUG_RA) { |
Chris Lattner | c083dcc | 2003-09-01 20:05:47 +0000 | [diff] [blame] | 371 | if (OrigMI) std::cerr << "For MInst:\n " << *OrigMI; |
| 372 | std::cerr << msg << "PREPENDed instr:\n " << **AdIt << "\n"; |
Vikram S. Adve | 4876209 | 2002-04-25 04:34:15 +0000 | [diff] [blame] | 373 | } |
Chris Lattner | f726e77 | 2002-10-28 19:22:04 +0000 | [diff] [blame] | 374 | InsertBefore(*AdIt, MBB, MII); |
Vikram S. Adve | 4876209 | 2002-04-25 04:34:15 +0000 | [diff] [blame] | 375 | } |
| 376 | } |
| 377 | } |
| 378 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 379 | // used by: updateMachineCode (1 time) |
| 380 | inline void AppendInstructions(std::vector<MachineInstr *> &IAft, |
| 381 | MachineBasicBlock& MBB, |
| 382 | MachineBasicBlock::iterator& MII, |
| 383 | const std::string& msg) { |
| 384 | if (!IAft.empty()) { |
Alkis Evlogimenos | c0b9dc5 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 385 | MachineInstr* OrigMI = MII; |
Vikram S. Adve | dabb41d | 2002-05-19 15:29:31 +0000 | [diff] [blame] | 386 | std::vector<MachineInstr *>::iterator AdIt; |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 387 | for ( AdIt = IAft.begin(); AdIt != IAft.end() ; ++AdIt ) { |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 388 | if (DEBUG_RA) { |
Chris Lattner | c083dcc | 2003-09-01 20:05:47 +0000 | [diff] [blame] | 389 | if (OrigMI) std::cerr << "For MInst:\n " << *OrigMI; |
| 390 | std::cerr << msg << "APPENDed instr:\n " << **AdIt << "\n"; |
Vikram S. Adve | 4876209 | 2002-04-25 04:34:15 +0000 | [diff] [blame] | 391 | } |
Chris Lattner | f726e77 | 2002-10-28 19:22:04 +0000 | [diff] [blame] | 392 | InsertAfter(*AdIt, MBB, MII); |
Vikram S. Adve | 4876209 | 2002-04-25 04:34:15 +0000 | [diff] [blame] | 393 | } |
| 394 | } |
| 395 | } |
| 396 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 397 | /// Set the registers for operands in the given MachineInstr, if a register was |
| 398 | /// successfully allocated. Return true if any of its operands has been marked |
| 399 | /// for spill. |
| 400 | /// |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 401 | bool PhyRegAlloc::markAllocatedRegs(MachineInstr* MInst) |
Vikram S. Adve | d0d06ad | 2003-05-31 07:32:01 +0000 | [diff] [blame] | 402 | { |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 403 | bool instrNeedsSpills = false; |
| 404 | |
Vikram S. Adve | d0d06ad | 2003-05-31 07:32:01 +0000 | [diff] [blame] | 405 | // First, set the registers for operands in the machine instruction |
| 406 | // if a register was successfully allocated. Do this first because we |
| 407 | // will need to know which registers are already used by this instr'n. |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 408 | for (unsigned OpNum=0; OpNum < MInst->getNumOperands(); ++OpNum) { |
Vikram S. Adve | d0d06ad | 2003-05-31 07:32:01 +0000 | [diff] [blame] | 409 | MachineOperand& Op = MInst->getOperand(OpNum); |
| 410 | if (Op.getType() == MachineOperand::MO_VirtualRegister || |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 411 | Op.getType() == MachineOperand::MO_CCRegister) { |
Vikram S. Adve | d0d06ad | 2003-05-31 07:32:01 +0000 | [diff] [blame] | 412 | const Value *const Val = Op.getVRegValue(); |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 413 | if (const LiveRange* LR = LRI->getLiveRangeForValue(Val)) { |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 414 | // Remember if any operand needs spilling |
| 415 | instrNeedsSpills |= LR->isMarkedForSpill(); |
| 416 | |
| 417 | // An operand may have a color whether or not it needs spilling |
Vikram S. Adve | d0d06ad | 2003-05-31 07:32:01 +0000 | [diff] [blame] | 418 | if (LR->hasColor()) |
| 419 | MInst->SetRegForOperand(OpNum, |
Brian Gaeke | 59b1c56 | 2003-09-24 17:50:28 +0000 | [diff] [blame] | 420 | MRI.getUnifiedRegNum(LR->getRegClassID(), |
Vikram S. Adve | d0d06ad | 2003-05-31 07:32:01 +0000 | [diff] [blame] | 421 | LR->getColor())); |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 422 | } |
Vikram S. Adve | d0d06ad | 2003-05-31 07:32:01 +0000 | [diff] [blame] | 423 | } |
| 424 | } // for each operand |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 425 | |
| 426 | return instrNeedsSpills; |
| 427 | } |
| 428 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 429 | /// Mark allocated registers (using markAllocatedRegs()) on the instruction |
| 430 | /// that MII points to. Then, if it's a call instruction, insert caller-saving |
| 431 | /// code before and after it. Finally, insert spill code before and after it, |
| 432 | /// using insertCode4SpilledLR(). |
| 433 | /// |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 434 | void PhyRegAlloc::updateInstruction(MachineBasicBlock::iterator& MII, |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 435 | MachineBasicBlock &MBB) { |
Alkis Evlogimenos | c0b9dc5 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 436 | MachineInstr* MInst = MII; |
Brian Gaeke | 12c1d2c | 2004-02-11 20:47:34 +0000 | [diff] [blame] | 437 | unsigned Opcode = MInst->getOpcode(); |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 438 | |
| 439 | // Reset tmp stack positions so they can be reused for each machine instr. |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 440 | MF->getInfo()->popAllTempValues(); |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 441 | |
| 442 | // Mark the operands for which regs have been allocated. |
Alkis Evlogimenos | c0b9dc5 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 443 | bool instrNeedsSpills = markAllocatedRegs(MII); |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 444 | |
| 445 | #ifndef NDEBUG |
| 446 | // Mark that the operands have been updated. Later, |
| 447 | // setRelRegsUsedByThisInst() is called to find registers used by each |
| 448 | // MachineInst, and it should not be used for an instruction until |
| 449 | // this is done. This flag just serves as a sanity check. |
Vikram S. Adve | d0d06ad | 2003-05-31 07:32:01 +0000 | [diff] [blame] | 450 | OperandsColoredMap[MInst] = true; |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 451 | #endif |
Vikram S. Adve | d0d06ad | 2003-05-31 07:32:01 +0000 | [diff] [blame] | 452 | |
Vikram S. Adve | bc001b2 | 2003-07-25 21:06:09 +0000 | [diff] [blame] | 453 | // Now insert caller-saving code before/after the call. |
| 454 | // Do this before inserting spill code since some registers must be |
| 455 | // used by save/restore and spill code should not use those registers. |
Chris Lattner | d029cd2 | 2004-06-02 05:55:25 +0000 | [diff] [blame] | 456 | if (TM.getInstrInfo()->isCall(Opcode)) { |
Vikram S. Adve | d0d06ad | 2003-05-31 07:32:01 +0000 | [diff] [blame] | 457 | AddedInstrns &AI = AddedInstrMap[MInst]; |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 458 | insertCallerSavingCode(AI.InstrnsBefore, AI.InstrnsAfter, MInst, |
| 459 | MBB.getBasicBlock()); |
Vikram S. Adve | d0d06ad | 2003-05-31 07:32:01 +0000 | [diff] [blame] | 460 | } |
Vikram S. Adve | bc001b2 | 2003-07-25 21:06:09 +0000 | [diff] [blame] | 461 | |
Vikram S. Adve | d0d06ad | 2003-05-31 07:32:01 +0000 | [diff] [blame] | 462 | // Now insert spill code for remaining operands not allocated to |
| 463 | // registers. This must be done even for call return instructions |
| 464 | // since those are not handled by the special code above. |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 465 | if (instrNeedsSpills) |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 466 | for (unsigned OpNum=0; OpNum < MInst->getNumOperands(); ++OpNum) { |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 467 | MachineOperand& Op = MInst->getOperand(OpNum); |
| 468 | if (Op.getType() == MachineOperand::MO_VirtualRegister || |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 469 | Op.getType() == MachineOperand::MO_CCRegister) { |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 470 | const Value* Val = Op.getVRegValue(); |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 471 | if (const LiveRange *LR = LRI->getLiveRangeForValue(Val)) |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 472 | if (LR->isMarkedForSpill()) |
| 473 | insertCode4SpilledLR(LR, MII, MBB, OpNum); |
| 474 | } |
| 475 | } // for each operand |
Vikram S. Adve | d0d06ad | 2003-05-31 07:32:01 +0000 | [diff] [blame] | 476 | } |
| 477 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 478 | /// Iterate over all the MachineBasicBlocks in the current function and set |
| 479 | /// the allocated registers for each instruction (using updateInstruction()), |
| 480 | /// after register allocation is complete. Then move code out of delay slots. |
| 481 | /// |
Vikram S. Adve | d0d06ad | 2003-05-31 07:32:01 +0000 | [diff] [blame] | 482 | void PhyRegAlloc::updateMachineCode() |
| 483 | { |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 484 | // Insert any instructions needed at method entry |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 485 | MachineBasicBlock::iterator MII = MF->front().begin(); |
| 486 | PrependInstructions(AddedInstrAtEntry.InstrnsBefore, MF->front(), MII, |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 487 | "At function entry: \n"); |
| 488 | assert(AddedInstrAtEntry.InstrnsAfter.empty() && |
| 489 | "InstrsAfter should be unnecessary since we are just inserting at " |
| 490 | "the function entry point here."); |
Vikram S. Adve | 4876209 | 2002-04-25 04:34:15 +0000 | [diff] [blame] | 491 | |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 492 | for (MachineFunction::iterator BBI = MF->begin(), BBE = MF->end(); |
Chris Lattner | 2fbfdcf | 2002-04-07 20:49:59 +0000 | [diff] [blame] | 493 | BBI != BBE; ++BBI) { |
Chris Lattner | f726e77 | 2002-10-28 19:22:04 +0000 | [diff] [blame] | 494 | MachineBasicBlock &MBB = *BBI; |
Vikram S. Adve | d0d06ad | 2003-05-31 07:32:01 +0000 | [diff] [blame] | 495 | |
| 496 | // Iterate over all machine instructions in BB and mark operands with |
| 497 | // their assigned registers or insert spill code, as appropriate. |
| 498 | // Also, fix operands of call/return instructions. |
Vikram S. Adve | d0d06ad | 2003-05-31 07:32:01 +0000 | [diff] [blame] | 499 | for (MachineBasicBlock::iterator MII = MBB.begin(); MII != MBB.end(); ++MII) |
Chris Lattner | d029cd2 | 2004-06-02 05:55:25 +0000 | [diff] [blame] | 500 | if (! TM.getInstrInfo()->isDummyPhiInstr(MII->getOpcode())) |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 501 | updateInstruction(MII, MBB); |
Vikram S. Adve | d0d06ad | 2003-05-31 07:32:01 +0000 | [diff] [blame] | 502 | |
| 503 | // Now, move code out of delay slots of branches and returns if needed. |
| 504 | // (Also, move "after" code from calls to the last delay slot instruction.) |
| 505 | // Moving code out of delay slots is needed in 2 situations: |
| 506 | // (1) If this is a branch and it needs instructions inserted after it, |
| 507 | // move any existing instructions out of the delay slot so that the |
| 508 | // instructions can go into the delay slot. This only supports the |
| 509 | // case that #instrsAfter <= #delay slots. |
| 510 | // |
| 511 | // (2) If any instruction in the delay slot needs |
| 512 | // instructions inserted, move it out of the delay slot and before the |
| 513 | // branch because putting code before or after it would be VERY BAD! |
| 514 | // |
| 515 | // If the annul bit of the branch is set, neither of these is legal! |
| 516 | // If so, we need to handle spill differently but annulling is not yet used. |
Alkis Evlogimenos | c0b9dc5 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 517 | for (MachineBasicBlock::iterator MII = MBB.begin(); MII != MBB.end(); ++MII) |
Vikram S. Adve | d0d06ad | 2003-05-31 07:32:01 +0000 | [diff] [blame] | 518 | if (unsigned delaySlots = |
Chris Lattner | d029cd2 | 2004-06-02 05:55:25 +0000 | [diff] [blame] | 519 | TM.getInstrInfo()->getNumDelaySlots(MII->getOpcode())) { |
Alkis Evlogimenos | f81af21 | 2004-02-14 01:18:34 +0000 | [diff] [blame] | 520 | MachineBasicBlock::iterator DelaySlotMI = next(MII); |
Alkis Evlogimenos | c0b9dc5 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 521 | assert(DelaySlotMI != MBB.end() && "no instruction for delay slot"); |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 522 | |
Vikram S. Adve | d0d06ad | 2003-05-31 07:32:01 +0000 | [diff] [blame] | 523 | // Check the 2 conditions above: |
| 524 | // (1) Does a branch need instructions added after it? |
| 525 | // (2) O/w does delay slot instr. need instrns before or after? |
Chris Lattner | d029cd2 | 2004-06-02 05:55:25 +0000 | [diff] [blame] | 526 | bool isBranch = (TM.getInstrInfo()->isBranch(MII->getOpcode()) || |
| 527 | TM.getInstrInfo()->isReturn(MII->getOpcode())); |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 528 | bool cond1 = (isBranch && |
Alkis Evlogimenos | c0b9dc5 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 529 | AddedInstrMap.count(MII) && |
| 530 | AddedInstrMap[MII].InstrnsAfter.size() > 0); |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 531 | bool cond2 = (AddedInstrMap.count(DelaySlotMI) && |
| 532 | (AddedInstrMap[DelaySlotMI].InstrnsBefore.size() > 0 || |
| 533 | AddedInstrMap[DelaySlotMI].InstrnsAfter.size() > 0)); |
Vikram S. Adve | d0d06ad | 2003-05-31 07:32:01 +0000 | [diff] [blame] | 534 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 535 | if (cond1 || cond2) { |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 536 | assert(delaySlots==1 && |
| 537 | "InsertBefore does not yet handle >1 delay slots!"); |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 538 | |
| 539 | if (DEBUG_RA) { |
Chris Lattner | c083dcc | 2003-09-01 20:05:47 +0000 | [diff] [blame] | 540 | std::cerr << "\nRegAlloc: Moved instr. with added code: " |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 541 | << *DelaySlotMI |
Alkis Evlogimenos | c0b9dc5 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 542 | << " out of delay slots of instr: " << *MII; |
| 543 | } |
| 544 | |
| 545 | // move instruction before branch |
Chris Lattner | b4186e0 | 2004-03-31 21:59:59 +0000 | [diff] [blame] | 546 | MBB.insert(MII, MBB.remove(DelaySlotMI++)); |
Alkis Evlogimenos | c0b9dc5 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 547 | |
| 548 | // On cond1 we are done (we already moved the |
| 549 | // instruction out of the delay slot). On cond2 we need |
| 550 | // to insert a nop in place of the moved instruction |
| 551 | if (cond2) { |
Chris Lattner | d029cd2 | 2004-06-02 05:55:25 +0000 | [diff] [blame] | 552 | MBB.insert(MII, BuildMI(TM.getInstrInfo()->getNOPOpCode(),1)); |
Vikram S. Adve | d0d06ad | 2003-05-31 07:32:01 +0000 | [diff] [blame] | 553 | } |
| 554 | } |
Alkis Evlogimenos | c0b9dc5 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 555 | else { |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 556 | // For non-branch instr with delay slots (probably a call), move |
| 557 | // InstrAfter to the instr. in the last delay slot. |
Alkis Evlogimenos | f81af21 | 2004-02-14 01:18:34 +0000 | [diff] [blame] | 558 | MachineBasicBlock::iterator tmp = next(MII, delaySlots); |
Alkis Evlogimenos | c0b9dc5 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 559 | move2DelayedInstr(MII, tmp); |
| 560 | } |
| 561 | } |
Vikram S. Adve | d0d06ad | 2003-05-31 07:32:01 +0000 | [diff] [blame] | 562 | |
| 563 | // Finally iterate over all instructions in BB and insert before/after |
Vikram S. Adve | bc001b2 | 2003-07-25 21:06:09 +0000 | [diff] [blame] | 564 | for (MachineBasicBlock::iterator MII=MBB.begin(); MII != MBB.end(); ++MII) { |
Alkis Evlogimenos | c0b9dc5 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 565 | MachineInstr *MInst = MII; |
Vikram S. Adve | bc001b2 | 2003-07-25 21:06:09 +0000 | [diff] [blame] | 566 | |
Ruchira Sasanka | 65480b7 | 2001-11-10 21:21:36 +0000 | [diff] [blame] | 567 | // do not process Phis |
Chris Lattner | d029cd2 | 2004-06-02 05:55:25 +0000 | [diff] [blame] | 568 | if (TM.getInstrInfo()->isDummyPhiInstr(MInst->getOpcode())) |
Ruchira Sasanka | 65480b7 | 2001-11-10 21:21:36 +0000 | [diff] [blame] | 569 | continue; |
| 570 | |
Vikram S. Adve | bc001b2 | 2003-07-25 21:06:09 +0000 | [diff] [blame] | 571 | // if there are any added instructions... |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 572 | if (AddedInstrMap.count(MInst)) { |
Vikram S. Adve | bc001b2 | 2003-07-25 21:06:09 +0000 | [diff] [blame] | 573 | AddedInstrns &CallAI = AddedInstrMap[MInst]; |
| 574 | |
| 575 | #ifndef NDEBUG |
Chris Lattner | d029cd2 | 2004-06-02 05:55:25 +0000 | [diff] [blame] | 576 | bool isBranch = (TM.getInstrInfo()->isBranch(MInst->getOpcode()) || |
| 577 | TM.getInstrInfo()->isReturn(MInst->getOpcode())); |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 578 | assert((!isBranch || |
| 579 | AddedInstrMap[MInst].InstrnsAfter.size() <= |
Chris Lattner | d029cd2 | 2004-06-02 05:55:25 +0000 | [diff] [blame] | 580 | TM.getInstrInfo()->getNumDelaySlots(MInst->getOpcode())) && |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 581 | "Cannot put more than #delaySlots instrns after " |
| 582 | "branch or return! Need to handle temps differently."); |
| 583 | #endif |
| 584 | |
| 585 | #ifndef NDEBUG |
Vikram S. Adve | bc001b2 | 2003-07-25 21:06:09 +0000 | [diff] [blame] | 586 | // Temporary sanity checking code to detect whether the same machine |
| 587 | // instruction is ever inserted twice before/after a call. |
| 588 | // I suspect this is happening but am not sure. --Vikram, 7/1/03. |
Vikram S. Adve | bc001b2 | 2003-07-25 21:06:09 +0000 | [diff] [blame] | 589 | std::set<const MachineInstr*> instrsSeen; |
| 590 | for (int i = 0, N = CallAI.InstrnsBefore.size(); i < N; ++i) { |
| 591 | assert(instrsSeen.count(CallAI.InstrnsBefore[i]) == 0 && |
| 592 | "Duplicate machine instruction in InstrnsBefore!"); |
| 593 | instrsSeen.insert(CallAI.InstrnsBefore[i]); |
| 594 | } |
| 595 | for (int i = 0, N = CallAI.InstrnsAfter.size(); i < N; ++i) { |
| 596 | assert(instrsSeen.count(CallAI.InstrnsAfter[i]) == 0 && |
| 597 | "Duplicate machine instruction in InstrnsBefore/After!"); |
| 598 | instrsSeen.insert(CallAI.InstrnsAfter[i]); |
| 599 | } |
| 600 | #endif |
| 601 | |
| 602 | // Now add the instructions before/after this MI. |
| 603 | // We do this here to ensure that spill for an instruction is inserted |
| 604 | // as close as possible to an instruction (see above insertCode4Spill) |
Vikram S. Adve | bc001b2 | 2003-07-25 21:06:09 +0000 | [diff] [blame] | 605 | if (! CallAI.InstrnsBefore.empty()) |
| 606 | PrependInstructions(CallAI.InstrnsBefore, MBB, MII,""); |
| 607 | |
| 608 | if (! CallAI.InstrnsAfter.empty()) |
| 609 | AppendInstructions(CallAI.InstrnsAfter, MBB, MII,""); |
| 610 | |
| 611 | } // if there are any added instructions |
Ruchira Sasanka | c4d4b76 | 2001-10-16 01:23:19 +0000 | [diff] [blame] | 612 | } // for each machine instruction |
Ruchira Sasanka | 0931a01 | 2001-09-15 19:06:58 +0000 | [diff] [blame] | 613 | } |
| 614 | } |
| 615 | |
| 616 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 617 | /// Insert spill code for AN operand whose LR was spilled. May be called |
| 618 | /// repeatedly for a single MachineInstr if it has many spilled operands. On |
| 619 | /// each call, it finds a register which is not live at that instruction and |
| 620 | /// also which is not used by other spilled operands of the same |
| 621 | /// instruction. Then it uses this register temporarily to accommodate the |
| 622 | /// spilled value. |
| 623 | /// |
Ruchira Sasanka | 5a61d85 | 2001-11-08 16:43:25 +0000 | [diff] [blame] | 624 | void PhyRegAlloc::insertCode4SpilledLR(const LiveRange *LR, |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 625 | MachineBasicBlock::iterator& MII, |
| 626 | MachineBasicBlock &MBB, |
Ruchira Sasanka | 5a61d85 | 2001-11-08 16:43:25 +0000 | [diff] [blame] | 627 | const unsigned OpNum) { |
Alkis Evlogimenos | c0b9dc5 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 628 | MachineInstr *MInst = MII; |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 629 | const BasicBlock *BB = MBB.getBasicBlock(); |
| 630 | |
Chris Lattner | d029cd2 | 2004-06-02 05:55:25 +0000 | [diff] [blame] | 631 | assert((! TM.getInstrInfo()->isCall(MInst->getOpcode()) || OpNum == 0) && |
Vikram S. Adve | ad9c978 | 2002-09-28 17:02:40 +0000 | [diff] [blame] | 632 | "Outgoing arg of a call must be handled elsewhere (func arg ok)"); |
Chris Lattner | d029cd2 | 2004-06-02 05:55:25 +0000 | [diff] [blame] | 633 | assert(! TM.getInstrInfo()->isReturn(MInst->getOpcode()) && |
Vikram S. Adve | ad9c978 | 2002-09-28 17:02:40 +0000 | [diff] [blame] | 634 | "Return value of a ret must be handled elsewhere"); |
Ruchira Sasanka | ba9d5db | 2001-11-15 20:23:19 +0000 | [diff] [blame] | 635 | |
Ruchira Sasanka | 5a61d85 | 2001-11-08 16:43:25 +0000 | [diff] [blame] | 636 | MachineOperand& Op = MInst->getOperand(OpNum); |
Alkis Evlogimenos | 4d7af65 | 2003-12-14 13:24:17 +0000 | [diff] [blame] | 637 | bool isDef = Op.isDef(); |
| 638 | bool isUse = Op.isUse(); |
Vikram S. Adve | bc001b2 | 2003-07-25 21:06:09 +0000 | [diff] [blame] | 639 | unsigned RegType = MRI.getRegTypeForLR(LR); |
Ruchira Sasanka | 5a61d85 | 2001-11-08 16:43:25 +0000 | [diff] [blame] | 640 | int SpillOff = LR->getSpillOffFromFP(); |
| 641 | RegClass *RC = LR->getRegClass(); |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 642 | |
| 643 | // Get the live-variable set to find registers free before this instr. |
Vikram S. Adve | feb3298 | 2003-08-12 22:22:24 +0000 | [diff] [blame] | 644 | const ValueSet &LVSetBef = LVI->getLiveVarSetBeforeMInst(MInst, BB); |
| 645 | |
| 646 | #ifndef NDEBUG |
| 647 | // If this instr. is in the delay slot of a branch or return, we need to |
| 648 | // include all live variables before that branch or return -- we don't want to |
| 649 | // trample those! Verify that the set is included in the LV set before MInst. |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 650 | if (MII != MBB.begin()) { |
Alkis Evlogimenos | f81af21 | 2004-02-14 01:18:34 +0000 | [diff] [blame] | 651 | MachineBasicBlock::iterator PredMI = prior(MII); |
Chris Lattner | d029cd2 | 2004-06-02 05:55:25 +0000 | [diff] [blame] | 652 | if (unsigned DS = TM.getInstrInfo()->getNumDelaySlots(PredMI->getOpcode())) |
Vikram S. Adve | feb3298 | 2003-08-12 22:22:24 +0000 | [diff] [blame] | 653 | assert(set_difference(LVI->getLiveVarSetBeforeMInst(PredMI), LVSetBef) |
| 654 | .empty() && "Live-var set before branch should be included in " |
| 655 | "live-var set of each delay slot instruction!"); |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 656 | } |
Vikram S. Adve | feb3298 | 2003-08-12 22:22:24 +0000 | [diff] [blame] | 657 | #endif |
Vikram S. Adve | 00521d7 | 2001-11-12 23:26:35 +0000 | [diff] [blame] | 658 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 659 | MF->getInfo()->pushTempValue(MRI.getSpilledRegSize(RegType)); |
Ruchira Sasanka | 5a61d85 | 2001-11-08 16:43:25 +0000 | [diff] [blame] | 660 | |
Chris Lattner | c083dcc | 2003-09-01 20:05:47 +0000 | [diff] [blame] | 661 | std::vector<MachineInstr*> MIBef, MIAft; |
| 662 | std::vector<MachineInstr*> AdIMid; |
Ruchira Sasanka | ba9d5db | 2001-11-15 20:23:19 +0000 | [diff] [blame] | 663 | |
Vikram S. Adve | 3bf0892 | 2003-07-10 19:42:55 +0000 | [diff] [blame] | 664 | // Choose a register to hold the spilled value, if one was not preallocated. |
| 665 | // This may insert code before and after MInst to free up the value. If so, |
| 666 | // this code should be first/last in the spill sequence before/after MInst. |
| 667 | int TmpRegU=(LR->hasColor() |
Brian Gaeke | 59b1c56 | 2003-09-24 17:50:28 +0000 | [diff] [blame] | 668 | ? MRI.getUnifiedRegNum(LR->getRegClassID(),LR->getColor()) |
Vikram S. Adve | 3bf0892 | 2003-07-10 19:42:55 +0000 | [diff] [blame] | 669 | : getUsableUniRegAtMI(RegType, &LVSetBef, MInst, MIBef,MIAft)); |
Ruchira Sasanka | ba9d5db | 2001-11-15 20:23:19 +0000 | [diff] [blame] | 670 | |
Vikram S. Adve | f5af636 | 2002-07-08 23:15:32 +0000 | [diff] [blame] | 671 | // Set the operand first so that it this register does not get used |
| 672 | // as a scratch register for later calls to getUsableUniRegAtMI below |
| 673 | MInst->SetRegForOperand(OpNum, TmpRegU); |
| 674 | |
| 675 | // get the added instructions for this instruction |
Chris Lattner | 0b0ffa0 | 2002-04-09 05:13:04 +0000 | [diff] [blame] | 676 | AddedInstrns &AI = AddedInstrMap[MInst]; |
Vikram S. Adve | f5af636 | 2002-07-08 23:15:32 +0000 | [diff] [blame] | 677 | |
| 678 | // We may need a scratch register to copy the spilled value to/from memory. |
| 679 | // This may itself have to insert code to free up a scratch register. |
| 680 | // Any such code should go before (after) the spill code for a load (store). |
Vikram S. Adve | d0d06ad | 2003-05-31 07:32:01 +0000 | [diff] [blame] | 681 | // The scratch reg is not marked as used because it is only used |
| 682 | // for the copy and not used across MInst. |
Vikram S. Adve | f5af636 | 2002-07-08 23:15:32 +0000 | [diff] [blame] | 683 | int scratchRegType = -1; |
| 684 | int scratchReg = -1; |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 685 | if (MRI.regTypeNeedsScratchReg(RegType, scratchRegType)) { |
Chris Lattner | 27a0893 | 2002-10-22 23:16:21 +0000 | [diff] [blame] | 686 | scratchReg = getUsableUniRegAtMI(scratchRegType, &LVSetBef, |
| 687 | MInst, MIBef, MIAft); |
Vikram S. Adve | f5af636 | 2002-07-08 23:15:32 +0000 | [diff] [blame] | 688 | assert(scratchReg != MRI.getInvalidRegNum()); |
Vikram S. Adve | f5af636 | 2002-07-08 23:15:32 +0000 | [diff] [blame] | 689 | } |
| 690 | |
Alkis Evlogimenos | 4d7af65 | 2003-12-14 13:24:17 +0000 | [diff] [blame] | 691 | if (isUse) { |
Ruchira Sasanka | 5a61d85 | 2001-11-08 16:43:25 +0000 | [diff] [blame] | 692 | // for a USE, we have to load the value of LR from stack to a TmpReg |
| 693 | // and use the TmpReg as one operand of instruction |
Vikram S. Adve | dabb41d | 2002-05-19 15:29:31 +0000 | [diff] [blame] | 694 | |
Vikram S. Adve | f5af636 | 2002-07-08 23:15:32 +0000 | [diff] [blame] | 695 | // actual loading instruction(s) |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 696 | MRI.cpMem2RegMI(AdIMid, MRI.getFramePointer(), SpillOff, TmpRegU, |
| 697 | RegType, scratchReg); |
Ruchira Sasanka | 226f1f0 | 2001-11-08 19:11:30 +0000 | [diff] [blame] | 698 | |
Vikram S. Adve | f5af636 | 2002-07-08 23:15:32 +0000 | [diff] [blame] | 699 | // the actual load should be after the instructions to free up TmpRegU |
| 700 | MIBef.insert(MIBef.end(), AdIMid.begin(), AdIMid.end()); |
| 701 | AdIMid.clear(); |
| 702 | } |
| 703 | |
Alkis Evlogimenos | 4d7af65 | 2003-12-14 13:24:17 +0000 | [diff] [blame] | 704 | if (isDef) { // if this is a Def |
Ruchira Sasanka | 5a61d85 | 2001-11-08 16:43:25 +0000 | [diff] [blame] | 705 | // for a DEF, we have to store the value produced by this instruction |
| 706 | // on the stack position allocated for this LR |
Vikram S. Adve | dabb41d | 2002-05-19 15:29:31 +0000 | [diff] [blame] | 707 | |
Vikram S. Adve | f5af636 | 2002-07-08 23:15:32 +0000 | [diff] [blame] | 708 | // actual storing instruction(s) |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 709 | MRI.cpReg2MemMI(AdIMid, TmpRegU, MRI.getFramePointer(), SpillOff, |
| 710 | RegType, scratchReg); |
Vikram S. Adve | dabb41d | 2002-05-19 15:29:31 +0000 | [diff] [blame] | 711 | |
Vikram S. Adve | f5af636 | 2002-07-08 23:15:32 +0000 | [diff] [blame] | 712 | MIAft.insert(MIAft.begin(), AdIMid.begin(), AdIMid.end()); |
Ruchira Sasanka | 5a61d85 | 2001-11-08 16:43:25 +0000 | [diff] [blame] | 713 | } // if !DEF |
Vikram S. Adve | dabb41d | 2002-05-19 15:29:31 +0000 | [diff] [blame] | 714 | |
Vikram S. Adve | f5af636 | 2002-07-08 23:15:32 +0000 | [diff] [blame] | 715 | // Finally, insert the entire spill code sequences before/after MInst |
| 716 | AI.InstrnsBefore.insert(AI.InstrnsBefore.end(), MIBef.begin(), MIBef.end()); |
| 717 | AI.InstrnsAfter.insert(AI.InstrnsAfter.begin(), MIAft.begin(), MIAft.end()); |
| 718 | |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 719 | if (DEBUG_RA) { |
Chris Lattner | c083dcc | 2003-09-01 20:05:47 +0000 | [diff] [blame] | 720 | std::cerr << "\nFor Inst:\n " << *MInst; |
| 721 | std::cerr << "SPILLED LR# " << LR->getUserIGNode()->getIndex(); |
| 722 | std::cerr << "; added Instructions:"; |
Anand Shukla | d58290e | 2002-07-09 19:18:56 +0000 | [diff] [blame] | 723 | for_each(MIBef.begin(), MIBef.end(), std::mem_fun(&MachineInstr::dump)); |
| 724 | for_each(MIAft.begin(), MIAft.end(), std::mem_fun(&MachineInstr::dump)); |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 725 | } |
Ruchira Sasanka | 5a61d85 | 2001-11-08 16:43:25 +0000 | [diff] [blame] | 726 | } |
| 727 | |
| 728 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 729 | /// Insert caller saving/restoring instructions before/after a call machine |
| 730 | /// instruction (before or after any other instructions that were inserted for |
| 731 | /// the call). |
| 732 | /// |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 733 | void |
| 734 | PhyRegAlloc::insertCallerSavingCode(std::vector<MachineInstr*> &instrnsBefore, |
| 735 | std::vector<MachineInstr*> &instrnsAfter, |
| 736 | MachineInstr *CallMI, |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 737 | const BasicBlock *BB) { |
Chris Lattner | d029cd2 | 2004-06-02 05:55:25 +0000 | [diff] [blame] | 738 | assert(TM.getInstrInfo()->isCall(CallMI->getOpcode())); |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 739 | |
Brian Gaeke | 43ce8fe | 2003-09-21 02:24:09 +0000 | [diff] [blame] | 740 | // hash set to record which registers were saved/restored |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 741 | hash_set<unsigned> PushedRegSet; |
| 742 | |
| 743 | CallArgsDescriptor* argDesc = CallArgsDescriptor::get(CallMI); |
| 744 | |
| 745 | // if the call is to a instrumentation function, do not insert save and |
| 746 | // restore instructions the instrumentation function takes care of save |
| 747 | // restore for volatile regs. |
| 748 | // |
| 749 | // FIXME: this should be made general, not specific to the reoptimizer! |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 750 | const Function *Callee = argDesc->getCallInst()->getCalledFunction(); |
| 751 | bool isLLVMFirstTrigger = Callee && Callee->getName() == "llvm_first_trigger"; |
| 752 | |
| 753 | // Now check if the call has a return value (using argDesc) and if so, |
| 754 | // find the LR of the TmpInstruction representing the return value register. |
| 755 | // (using the last or second-last *implicit operand* of the call MI). |
| 756 | // Insert it to to the PushedRegSet since we must not save that register |
| 757 | // and restore it after the call. |
| 758 | // We do this because, we look at the LV set *after* the instruction |
| 759 | // to determine, which LRs must be saved across calls. The return value |
| 760 | // of the call is live in this set - but we must not save/restore it. |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 761 | if (const Value *origRetVal = argDesc->getReturnValue()) { |
| 762 | unsigned retValRefNum = (CallMI->getNumImplicitRefs() - |
| 763 | (argDesc->getIndirectFuncPtr()? 1 : 2)); |
| 764 | const TmpInstruction* tmpRetVal = |
| 765 | cast<TmpInstruction>(CallMI->getImplicitRef(retValRefNum)); |
| 766 | assert(tmpRetVal->getOperand(0) == origRetVal && |
| 767 | tmpRetVal->getType() == origRetVal->getType() && |
| 768 | "Wrong implicit ref?"); |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 769 | LiveRange *RetValLR = LRI->getLiveRangeForValue(tmpRetVal); |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 770 | assert(RetValLR && "No LR for RetValue of call"); |
| 771 | |
| 772 | if (! RetValLR->isMarkedForSpill()) |
| 773 | PushedRegSet.insert(MRI.getUnifiedRegNum(RetValLR->getRegClassID(), |
| 774 | RetValLR->getColor())); |
| 775 | } |
| 776 | |
| 777 | const ValueSet &LVSetAft = LVI->getLiveVarSetAfterMInst(CallMI, BB); |
| 778 | ValueSet::const_iterator LIt = LVSetAft.begin(); |
| 779 | |
| 780 | // for each live var in live variable set after machine inst |
| 781 | for( ; LIt != LVSetAft.end(); ++LIt) { |
Brian Gaeke | 43ce8fe | 2003-09-21 02:24:09 +0000 | [diff] [blame] | 782 | // get the live range corresponding to live var |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 783 | LiveRange *const LR = LRI->getLiveRangeForValue(*LIt); |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 784 | |
| 785 | // LR can be null if it is a const since a const |
| 786 | // doesn't have a dominating def - see Assumptions above |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 787 | if (LR) { |
| 788 | if (! LR->isMarkedForSpill()) { |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 789 | assert(LR->hasColor() && "LR is neither spilled nor colored?"); |
| 790 | unsigned RCID = LR->getRegClassID(); |
| 791 | unsigned Color = LR->getColor(); |
| 792 | |
| 793 | if (MRI.isRegVolatile(RCID, Color) ) { |
Brian Gaeke | 43ce8fe | 2003-09-21 02:24:09 +0000 | [diff] [blame] | 794 | // if this is a call to the first-level reoptimizer |
| 795 | // instrumentation entry point, and the register is not |
| 796 | // modified by call, don't save and restore it. |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 797 | if (isLLVMFirstTrigger && !MRI.modifiedByCall(RCID, Color)) |
| 798 | continue; |
| 799 | |
| 800 | // if the value is in both LV sets (i.e., live before and after |
| 801 | // the call machine instruction) |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 802 | unsigned Reg = MRI.getUnifiedRegNum(RCID, Color); |
| 803 | |
Brian Gaeke | 43ce8fe | 2003-09-21 02:24:09 +0000 | [diff] [blame] | 804 | // if we haven't already pushed this register... |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 805 | if( PushedRegSet.find(Reg) == PushedRegSet.end() ) { |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 806 | unsigned RegType = MRI.getRegTypeForLR(LR); |
| 807 | |
| 808 | // Now get two instructions - to push on stack and pop from stack |
| 809 | // and add them to InstrnsBefore and InstrnsAfter of the |
| 810 | // call instruction |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 811 | int StackOff = |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 812 | MF->getInfo()->pushTempValue(MRI.getSpilledRegSize(RegType)); |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 813 | |
| 814 | //---- Insert code for pushing the reg on stack ---------- |
| 815 | |
| 816 | std::vector<MachineInstr*> AdIBef, AdIAft; |
| 817 | |
| 818 | // We may need a scratch register to copy the saved value |
| 819 | // to/from memory. This may itself have to insert code to |
| 820 | // free up a scratch register. Any such code should go before |
| 821 | // the save code. The scratch register, if any, is by default |
| 822 | // temporary and not "used" by the instruction unless the |
| 823 | // copy code itself decides to keep the value in the scratch reg. |
| 824 | int scratchRegType = -1; |
| 825 | int scratchReg = -1; |
| 826 | if (MRI.regTypeNeedsScratchReg(RegType, scratchRegType)) |
| 827 | { // Find a register not live in the LVSet before CallMI |
| 828 | const ValueSet &LVSetBef = |
| 829 | LVI->getLiveVarSetBeforeMInst(CallMI, BB); |
| 830 | scratchReg = getUsableUniRegAtMI(scratchRegType, &LVSetBef, |
| 831 | CallMI, AdIBef, AdIAft); |
| 832 | assert(scratchReg != MRI.getInvalidRegNum()); |
| 833 | } |
| 834 | |
| 835 | if (AdIBef.size() > 0) |
| 836 | instrnsBefore.insert(instrnsBefore.end(), |
| 837 | AdIBef.begin(), AdIBef.end()); |
| 838 | |
| 839 | MRI.cpReg2MemMI(instrnsBefore, Reg, MRI.getFramePointer(), |
| 840 | StackOff, RegType, scratchReg); |
| 841 | |
| 842 | if (AdIAft.size() > 0) |
| 843 | instrnsBefore.insert(instrnsBefore.end(), |
| 844 | AdIAft.begin(), AdIAft.end()); |
| 845 | |
| 846 | //---- Insert code for popping the reg from the stack ---------- |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 847 | AdIBef.clear(); |
| 848 | AdIAft.clear(); |
| 849 | |
| 850 | // We may need a scratch register to copy the saved value |
| 851 | // from memory. This may itself have to insert code to |
| 852 | // free up a scratch register. Any such code should go |
| 853 | // after the save code. As above, scratch is not marked "used". |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 854 | scratchRegType = -1; |
| 855 | scratchReg = -1; |
| 856 | if (MRI.regTypeNeedsScratchReg(RegType, scratchRegType)) |
| 857 | { // Find a register not live in the LVSet after CallMI |
| 858 | scratchReg = getUsableUniRegAtMI(scratchRegType, &LVSetAft, |
| 859 | CallMI, AdIBef, AdIAft); |
| 860 | assert(scratchReg != MRI.getInvalidRegNum()); |
| 861 | } |
| 862 | |
| 863 | if (AdIBef.size() > 0) |
| 864 | instrnsAfter.insert(instrnsAfter.end(), |
| 865 | AdIBef.begin(), AdIBef.end()); |
| 866 | |
| 867 | MRI.cpMem2RegMI(instrnsAfter, MRI.getFramePointer(), StackOff, |
| 868 | Reg, RegType, scratchReg); |
| 869 | |
| 870 | if (AdIAft.size() > 0) |
| 871 | instrnsAfter.insert(instrnsAfter.end(), |
| 872 | AdIAft.begin(), AdIAft.end()); |
| 873 | |
| 874 | PushedRegSet.insert(Reg); |
| 875 | |
| 876 | if(DEBUG_RA) { |
| 877 | std::cerr << "\nFor call inst:" << *CallMI; |
| 878 | std::cerr << " -inserted caller saving instrs: Before:\n\t "; |
| 879 | for_each(instrnsBefore.begin(), instrnsBefore.end(), |
| 880 | std::mem_fun(&MachineInstr::dump)); |
| 881 | std::cerr << " -and After:\n\t "; |
| 882 | for_each(instrnsAfter.begin(), instrnsAfter.end(), |
| 883 | std::mem_fun(&MachineInstr::dump)); |
| 884 | } |
| 885 | } // if not already pushed |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 886 | } // if LR has a volatile color |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 887 | } // if LR has color |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 888 | } // if there is a LR for Var |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 889 | } // for each value in the LV set after instruction |
| 890 | } |
| 891 | |
| 892 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 893 | /// Returns the unified register number of a temporary register to be used |
| 894 | /// BEFORE MInst. If no register is available, it will pick one and modify |
| 895 | /// MIBef and MIAft to contain instructions used to free up this returned |
| 896 | /// register. |
| 897 | /// |
Vikram S. Adve | f5af636 | 2002-07-08 23:15:32 +0000 | [diff] [blame] | 898 | int PhyRegAlloc::getUsableUniRegAtMI(const int RegType, |
| 899 | const ValueSet *LVSetBef, |
| 900 | MachineInstr *MInst, |
| 901 | std::vector<MachineInstr*>& MIBef, |
| 902 | std::vector<MachineInstr*>& MIAft) { |
Chris Lattner | 133f079 | 2002-10-28 04:45:29 +0000 | [diff] [blame] | 903 | RegClass* RC = getRegClassByID(MRI.getRegClassIDOfRegType(RegType)); |
Vikram S. Adve | f5af636 | 2002-07-08 23:15:32 +0000 | [diff] [blame] | 904 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 905 | int RegU = getUnusedUniRegAtMI(RC, RegType, MInst, LVSetBef); |
Vikram S. Adve | f5af636 | 2002-07-08 23:15:32 +0000 | [diff] [blame] | 906 | |
| 907 | if (RegU == -1) { |
Ruchira Sasanka | 80b1a1a | 2001-11-03 20:41:22 +0000 | [diff] [blame] | 908 | // we couldn't find an unused register. Generate code to free up a reg by |
Ruchira Sasanka | 174bded | 2001-10-28 18:12:02 +0000 | [diff] [blame] | 909 | // saving it on stack and restoring after the instruction |
Vikram S. Adve | f5af636 | 2002-07-08 23:15:32 +0000 | [diff] [blame] | 910 | |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 911 | int TmpOff = MF->getInfo()->pushTempValue(MRI.getSpilledRegSize(RegType)); |
Vikram S. Adve | 12af164 | 2001-11-08 04:48:50 +0000 | [diff] [blame] | 912 | |
Vikram S. Adve | bc001b2 | 2003-07-25 21:06:09 +0000 | [diff] [blame] | 913 | RegU = getUniRegNotUsedByThisInst(RC, RegType, MInst); |
Vikram S. Adve | dabb41d | 2002-05-19 15:29:31 +0000 | [diff] [blame] | 914 | |
Vikram S. Adve | f5af636 | 2002-07-08 23:15:32 +0000 | [diff] [blame] | 915 | // Check if we need a scratch register to copy this register to memory. |
| 916 | int scratchRegType = -1; |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 917 | if (MRI.regTypeNeedsScratchReg(RegType, scratchRegType)) { |
Chris Lattner | 133f079 | 2002-10-28 04:45:29 +0000 | [diff] [blame] | 918 | int scratchReg = getUsableUniRegAtMI(scratchRegType, LVSetBef, |
| 919 | MInst, MIBef, MIAft); |
Vikram S. Adve | f5af636 | 2002-07-08 23:15:32 +0000 | [diff] [blame] | 920 | assert(scratchReg != MRI.getInvalidRegNum()); |
| 921 | |
| 922 | // We may as well hold the value in the scratch register instead |
| 923 | // of copying it to memory and back. But we have to mark the |
| 924 | // register as used by this instruction, so it does not get used |
| 925 | // as a scratch reg. by another operand or anyone else. |
Chris Lattner | 3fd1f5b | 2003-08-05 22:11:13 +0000 | [diff] [blame] | 926 | ScratchRegsUsed.insert(std::make_pair(MInst, scratchReg)); |
Vikram S. Adve | f5af636 | 2002-07-08 23:15:32 +0000 | [diff] [blame] | 927 | MRI.cpReg2RegMI(MIBef, RegU, scratchReg, RegType); |
| 928 | MRI.cpReg2RegMI(MIAft, scratchReg, RegU, RegType); |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 929 | } else { // the register can be copied directly to/from memory so do it. |
Vikram S. Adve | f5af636 | 2002-07-08 23:15:32 +0000 | [diff] [blame] | 930 | MRI.cpReg2MemMI(MIBef, RegU, MRI.getFramePointer(), TmpOff, RegType); |
| 931 | MRI.cpMem2RegMI(MIAft, MRI.getFramePointer(), TmpOff, RegU, RegType); |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 932 | } |
Ruchira Sasanka | 174bded | 2001-10-28 18:12:02 +0000 | [diff] [blame] | 933 | } |
Vikram S. Adve | f5af636 | 2002-07-08 23:15:32 +0000 | [diff] [blame] | 934 | |
Ruchira Sasanka | ba9d5db | 2001-11-15 20:23:19 +0000 | [diff] [blame] | 935 | return RegU; |
Ruchira Sasanka | 174bded | 2001-10-28 18:12:02 +0000 | [diff] [blame] | 936 | } |
| 937 | |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 938 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 939 | /// Returns the register-class register number of a new unused register that |
| 940 | /// can be used to accommodate a temporary value. May be called repeatedly |
| 941 | /// for a single MachineInstr. On each call, it finds a register which is not |
| 942 | /// live at that instruction and which is not used by any spilled operands of |
| 943 | /// that instruction. |
| 944 | /// |
| 945 | int PhyRegAlloc::getUnusedUniRegAtMI(RegClass *RC, const int RegType, |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 946 | const MachineInstr *MInst, |
| 947 | const ValueSet* LVSetBef) { |
Vikram S. Adve | bc001b2 | 2003-07-25 21:06:09 +0000 | [diff] [blame] | 948 | RC->clearColorsUsed(); // Reset array |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 949 | |
| 950 | if (LVSetBef == NULL) { |
| 951 | LVSetBef = &LVI->getLiveVarSetBeforeMInst(MInst); |
| 952 | assert(LVSetBef != NULL && "Unable to get live-var set before MInst?"); |
| 953 | } |
| 954 | |
Chris Lattner | 296b773 | 2002-02-05 02:52:05 +0000 | [diff] [blame] | 955 | ValueSet::const_iterator LIt = LVSetBef->begin(); |
Ruchira Sasanka | 174bded | 2001-10-28 18:12:02 +0000 | [diff] [blame] | 956 | |
| 957 | // for each live var in live variable set after machine inst |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 958 | for ( ; LIt != LVSetBef->end(); ++LIt) { |
Brian Gaeke | 43ce8fe | 2003-09-21 02:24:09 +0000 | [diff] [blame] | 959 | // Get the live range corresponding to live var, and its RegClass |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 960 | LiveRange *const LRofLV = LRI->getLiveRangeForValue(*LIt ); |
Ruchira Sasanka | 174bded | 2001-10-28 18:12:02 +0000 | [diff] [blame] | 961 | |
| 962 | // LR can be null if it is a const since a const |
| 963 | // doesn't have a dominating def - see Assumptions above |
Vikram S. Adve | bc001b2 | 2003-07-25 21:06:09 +0000 | [diff] [blame] | 964 | if (LRofLV && LRofLV->getRegClass() == RC && LRofLV->hasColor()) |
| 965 | RC->markColorsUsed(LRofLV->getColor(), |
| 966 | MRI.getRegTypeForLR(LRofLV), RegType); |
Ruchira Sasanka | 174bded | 2001-10-28 18:12:02 +0000 | [diff] [blame] | 967 | } |
| 968 | |
| 969 | // It is possible that one operand of this MInst was already spilled |
| 970 | // and it received some register temporarily. If that's the case, |
| 971 | // it is recorded in machine operand. We must skip such registers. |
Vikram S. Adve | bc001b2 | 2003-07-25 21:06:09 +0000 | [diff] [blame] | 972 | setRelRegsUsedByThisInst(RC, RegType, MInst); |
Ruchira Sasanka | 174bded | 2001-10-28 18:12:02 +0000 | [diff] [blame] | 973 | |
Vikram S. Adve | bc001b2 | 2003-07-25 21:06:09 +0000 | [diff] [blame] | 974 | int unusedReg = RC->getUnusedColor(RegType); // find first unused color |
| 975 | if (unusedReg >= 0) |
| 976 | return MRI.getUnifiedRegNum(RC->getID(), unusedReg); |
| 977 | |
Chris Lattner | 85c5465 | 2002-05-23 15:50:03 +0000 | [diff] [blame] | 978 | return -1; |
Ruchira Sasanka | 174bded | 2001-10-28 18:12:02 +0000 | [diff] [blame] | 979 | } |
| 980 | |
| 981 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 982 | /// Return the unified register number of a register in class RC which is not |
| 983 | /// used by any operands of MInst. |
| 984 | /// |
Ruchira Sasanka | ba9d5db | 2001-11-15 20:23:19 +0000 | [diff] [blame] | 985 | int PhyRegAlloc::getUniRegNotUsedByThisInst(RegClass *RC, |
Vikram S. Adve | bc001b2 | 2003-07-25 21:06:09 +0000 | [diff] [blame] | 986 | const int RegType, |
Chris Lattner | 85c5465 | 2002-05-23 15:50:03 +0000 | [diff] [blame] | 987 | const MachineInstr *MInst) { |
Vikram S. Adve | bc001b2 | 2003-07-25 21:06:09 +0000 | [diff] [blame] | 988 | RC->clearColorsUsed(); |
Ruchira Sasanka | ba9d5db | 2001-11-15 20:23:19 +0000 | [diff] [blame] | 989 | |
Vikram S. Adve | bc001b2 | 2003-07-25 21:06:09 +0000 | [diff] [blame] | 990 | setRelRegsUsedByThisInst(RC, RegType, MInst); |
Ruchira Sasanka | ba9d5db | 2001-11-15 20:23:19 +0000 | [diff] [blame] | 991 | |
Vikram S. Adve | bc001b2 | 2003-07-25 21:06:09 +0000 | [diff] [blame] | 992 | // find the first unused color |
| 993 | int unusedReg = RC->getUnusedColor(RegType); |
| 994 | assert(unusedReg >= 0 && |
| 995 | "FATAL: No free register could be found in reg class!!"); |
Ruchira Sasanka | ba9d5db | 2001-11-15 20:23:19 +0000 | [diff] [blame] | 996 | |
Vikram S. Adve | bc001b2 | 2003-07-25 21:06:09 +0000 | [diff] [blame] | 997 | return MRI.getUnifiedRegNum(RC->getID(), unusedReg); |
Ruchira Sasanka | ba9d5db | 2001-11-15 20:23:19 +0000 | [diff] [blame] | 998 | } |
| 999 | |
| 1000 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 1001 | /// Modify the IsColorUsedArr of register class RC, by setting the bits |
| 1002 | /// corresponding to register RegNo. This is a helper method of |
| 1003 | /// setRelRegsUsedByThisInst(). |
| 1004 | /// |
Chris Lattner | 3bed95b | 2003-08-05 21:55:58 +0000 | [diff] [blame] | 1005 | static void markRegisterUsed(int RegNo, RegClass *RC, int RegType, |
Brian Gaeke | 498231b | 2004-06-03 02:45:09 +0000 | [diff] [blame^] | 1006 | const SparcV9RegInfo &TRI) { |
Chris Lattner | 3bed95b | 2003-08-05 21:55:58 +0000 | [diff] [blame] | 1007 | unsigned classId = 0; |
| 1008 | int classRegNum = TRI.getClassRegNum(RegNo, classId); |
| 1009 | if (RC->getID() == classId) |
| 1010 | RC->markColorsUsed(classRegNum, RegType, RegType); |
| 1011 | } |
| 1012 | |
| 1013 | void PhyRegAlloc::setRelRegsUsedByThisInst(RegClass *RC, int RegType, |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 1014 | const MachineInstr *MI) { |
Chris Lattner | 3bed95b | 2003-08-05 21:55:58 +0000 | [diff] [blame] | 1015 | assert(OperandsColoredMap[MI] == true && |
Vikram S. Adve | d0d06ad | 2003-05-31 07:32:01 +0000 | [diff] [blame] | 1016 | "Illegal to call setRelRegsUsedByThisInst() until colored operands " |
| 1017 | "are marked for an instruction."); |
Ruchira Sasanka | 174bded | 2001-10-28 18:12:02 +0000 | [diff] [blame] | 1018 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 1019 | // Add the registers already marked as used by the instruction. Both |
| 1020 | // explicit and implicit operands are set. |
Chris Lattner | 3bed95b | 2003-08-05 21:55:58 +0000 | [diff] [blame] | 1021 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) |
| 1022 | if (MI->getOperand(i).hasAllocatedReg()) |
Alkis Evlogimenos | be766c7 | 2004-02-13 21:01:20 +0000 | [diff] [blame] | 1023 | markRegisterUsed(MI->getOperand(i).getReg(), RC, RegType,MRI); |
Chris Lattner | 3bed95b | 2003-08-05 21:55:58 +0000 | [diff] [blame] | 1024 | |
| 1025 | for (unsigned i = 0, e = MI->getNumImplicitRefs(); i != e; ++i) |
| 1026 | if (MI->getImplicitOp(i).hasAllocatedReg()) |
Alkis Evlogimenos | be766c7 | 2004-02-13 21:01:20 +0000 | [diff] [blame] | 1027 | markRegisterUsed(MI->getImplicitOp(i).getReg(), RC, RegType,MRI); |
Chris Lattner | 3bed95b | 2003-08-05 21:55:58 +0000 | [diff] [blame] | 1028 | |
Chris Lattner | 3fd1f5b | 2003-08-05 22:11:13 +0000 | [diff] [blame] | 1029 | // Add all of the scratch registers that are used to save values across the |
| 1030 | // instruction (e.g., for saving state register values). |
| 1031 | std::pair<ScratchRegsUsedTy::iterator, ScratchRegsUsedTy::iterator> |
| 1032 | IR = ScratchRegsUsed.equal_range(MI); |
| 1033 | for (ScratchRegsUsedTy::iterator I = IR.first; I != IR.second; ++I) |
| 1034 | markRegisterUsed(I->second, RC, RegType, MRI); |
Vikram S. Adve | d0d06ad | 2003-05-31 07:32:01 +0000 | [diff] [blame] | 1035 | |
Vikram S. Adve | f5af636 | 2002-07-08 23:15:32 +0000 | [diff] [blame] | 1036 | // If there are implicit references, mark their allocated regs as well |
Chris Lattner | 3bed95b | 2003-08-05 21:55:58 +0000 | [diff] [blame] | 1037 | for (unsigned z=0; z < MI->getNumImplicitRefs(); z++) |
Vikram S. Adve | f5af636 | 2002-07-08 23:15:32 +0000 | [diff] [blame] | 1038 | if (const LiveRange* |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 1039 | LRofImpRef = LRI->getLiveRangeForValue(MI->getImplicitRef(z))) |
Vikram S. Adve | f5af636 | 2002-07-08 23:15:32 +0000 | [diff] [blame] | 1040 | if (LRofImpRef->hasColor()) |
| 1041 | // this implicit reference is in a LR that received a color |
Vikram S. Adve | bc001b2 | 2003-07-25 21:06:09 +0000 | [diff] [blame] | 1042 | RC->markColorsUsed(LRofImpRef->getColor(), |
| 1043 | MRI.getRegTypeForLR(LRofImpRef), RegType); |
Ruchira Sasanka | 174bded | 2001-10-28 18:12:02 +0000 | [diff] [blame] | 1044 | } |
| 1045 | |
| 1046 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 1047 | /// If there are delay slots for an instruction, the instructions added after |
| 1048 | /// it must really go after the delayed instruction(s). So, we Move the |
| 1049 | /// InstrAfter of that instruction to the corresponding delayed instruction |
| 1050 | /// using the following method. |
| 1051 | /// |
Vikram S. Adve | d0d06ad | 2003-05-31 07:32:01 +0000 | [diff] [blame] | 1052 | void PhyRegAlloc::move2DelayedInstr(const MachineInstr *OrigMI, |
| 1053 | const MachineInstr *DelayedMI) |
| 1054 | { |
Vikram S. Adve | feb3298 | 2003-08-12 22:22:24 +0000 | [diff] [blame] | 1055 | // "added after" instructions of the original instr |
| 1056 | std::vector<MachineInstr *> &OrigAft = AddedInstrMap[OrigMI].InstrnsAfter; |
| 1057 | |
| 1058 | if (DEBUG_RA && OrigAft.size() > 0) { |
Chris Lattner | c083dcc | 2003-09-01 20:05:47 +0000 | [diff] [blame] | 1059 | std::cerr << "\nRegAlloc: Moved InstrnsAfter for: " << *OrigMI; |
| 1060 | std::cerr << " to last delay slot instrn: " << *DelayedMI; |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 1061 | } |
| 1062 | |
Ruchira Sasanka | 251d8db | 2001-10-23 21:38:00 +0000 | [diff] [blame] | 1063 | // "added after" instructions of the delayed instr |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 1064 | std::vector<MachineInstr *> &DelayedAft=AddedInstrMap[DelayedMI].InstrnsAfter; |
Ruchira Sasanka | 251d8db | 2001-10-23 21:38:00 +0000 | [diff] [blame] | 1065 | |
| 1066 | // go thru all the "added after instructions" of the original instruction |
Vikram S. Adve | d0d06ad | 2003-05-31 07:32:01 +0000 | [diff] [blame] | 1067 | // and append them to the "added after instructions" of the delayed |
Ruchira Sasanka | 251d8db | 2001-10-23 21:38:00 +0000 | [diff] [blame] | 1068 | // instructions |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 1069 | DelayedAft.insert(DelayedAft.end(), OrigAft.begin(), OrigAft.end()); |
Ruchira Sasanka | 251d8db | 2001-10-23 21:38:00 +0000 | [diff] [blame] | 1070 | |
| 1071 | // empty the "added after instructions" of the original instruction |
| 1072 | OrigAft.clear(); |
Ruchira Sasanka | 251d8db | 2001-10-23 21:38:00 +0000 | [diff] [blame] | 1073 | } |
Ruchira Sasanka | 0931a01 | 2001-09-15 19:06:58 +0000 | [diff] [blame] | 1074 | |
Ruchira Sasanka | 6b0a8b5 | 2001-09-15 21:11:11 +0000 | [diff] [blame] | 1075 | |
Ruchira Sasanka | a5ab964 | 2001-09-30 23:11:59 +0000 | [diff] [blame] | 1076 | void PhyRegAlloc::colorIncomingArgs() |
| 1077 | { |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 1078 | MRI.colorMethodArgs(Fn, *LRI, AddedInstrAtEntry.InstrnsBefore, |
Vikram S. Adve | 814030a | 2003-07-29 19:49:21 +0000 | [diff] [blame] | 1079 | AddedInstrAtEntry.InstrnsAfter); |
Ruchira Sasanka | a5ab964 | 2001-09-30 23:11:59 +0000 | [diff] [blame] | 1080 | } |
| 1081 | |
Ruchira Sasanka | e727f85 | 2001-09-18 22:43:57 +0000 | [diff] [blame] | 1082 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 1083 | /// Determine whether the suggested color of each live range is really usable, |
| 1084 | /// and then call its setSuggestedColorUsable() method to record the answer. A |
| 1085 | /// suggested color is NOT usable when the suggested color is volatile AND |
| 1086 | /// when there are call interferences. |
| 1087 | /// |
Ruchira Sasanka | 0e62aa6 | 2001-10-19 21:39:31 +0000 | [diff] [blame] | 1088 | void PhyRegAlloc::markUnusableSugColors() |
| 1089 | { |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 1090 | LiveRangeMapType::const_iterator HMI = (LRI->getLiveRangeMap())->begin(); |
| 1091 | LiveRangeMapType::const_iterator HMIEnd = (LRI->getLiveRangeMap())->end(); |
Ruchira Sasanka | 0e62aa6 | 2001-10-19 21:39:31 +0000 | [diff] [blame] | 1092 | |
Brian Gaeke | 43ce8fe | 2003-09-21 02:24:09 +0000 | [diff] [blame] | 1093 | for (; HMI != HMIEnd ; ++HMI ) { |
| 1094 | if (HMI->first) { |
| 1095 | LiveRange *L = HMI->second; // get the LiveRange |
Brian Gaeke | 59b1c56 | 2003-09-24 17:50:28 +0000 | [diff] [blame] | 1096 | if (L && L->hasSuggestedColor ()) |
Brian Gaeke | 6a256cc | 2003-09-24 18:08:54 +0000 | [diff] [blame] | 1097 | L->setSuggestedColorUsable |
| 1098 | (!(MRI.isRegVolatile (L->getRegClassID (), L->getSuggestedColor ()) |
| 1099 | && L->isCallInterference ())); |
Brian Gaeke | 43ce8fe | 2003-09-21 02:24:09 +0000 | [diff] [blame] | 1100 | } |
| 1101 | } // for all LR's in hash map |
Ruchira Sasanka | 0e62aa6 | 2001-10-19 21:39:31 +0000 | [diff] [blame] | 1102 | } |
| 1103 | |
| 1104 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 1105 | /// For each live range that is spilled, allocates a new spill position on the |
| 1106 | /// stack, and set the stack offsets of the live range that will be spilled to |
| 1107 | /// that position. This must be called just after coloring the LRs. |
| 1108 | /// |
Chris Lattner | 3773094 | 2002-02-05 03:52:29 +0000 | [diff] [blame] | 1109 | void PhyRegAlloc::allocateStackSpace4SpilledLRs() { |
Chris Lattner | c083dcc | 2003-09-01 20:05:47 +0000 | [diff] [blame] | 1110 | if (DEBUG_RA) std::cerr << "\nSetting LR stack offsets for spills...\n"; |
Ruchira Sasanka | 0e62aa6 | 2001-10-19 21:39:31 +0000 | [diff] [blame] | 1111 | |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 1112 | LiveRangeMapType::const_iterator HMI = LRI->getLiveRangeMap()->begin(); |
| 1113 | LiveRangeMapType::const_iterator HMIEnd = LRI->getLiveRangeMap()->end(); |
Ruchira Sasanka | 174bded | 2001-10-28 18:12:02 +0000 | [diff] [blame] | 1114 | |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 1115 | for ( ; HMI != HMIEnd ; ++HMI) { |
Chris Lattner | 3773094 | 2002-02-05 03:52:29 +0000 | [diff] [blame] | 1116 | if (HMI->first && HMI->second) { |
Vikram S. Adve | 3bf0892 | 2003-07-10 19:42:55 +0000 | [diff] [blame] | 1117 | LiveRange *L = HMI->second; // get the LiveRange |
| 1118 | if (L->isMarkedForSpill()) { // NOTE: allocating size of long Type ** |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 1119 | int stackOffset = MF->getInfo()->allocateSpilledValue(Type::LongTy); |
Vikram S. Adve | 39c94e1 | 2002-09-14 23:05:33 +0000 | [diff] [blame] | 1120 | L->setSpillOffFromFP(stackOffset); |
| 1121 | if (DEBUG_RA) |
Chris Lattner | c083dcc | 2003-09-01 20:05:47 +0000 | [diff] [blame] | 1122 | std::cerr << " LR# " << L->getUserIGNode()->getIndex() |
Vikram S. Adve | 39c94e1 | 2002-09-14 23:05:33 +0000 | [diff] [blame] | 1123 | << ": stack-offset = " << stackOffset << "\n"; |
| 1124 | } |
Chris Lattner | 3773094 | 2002-02-05 03:52:29 +0000 | [diff] [blame] | 1125 | } |
| 1126 | } // for all LR's in hash map |
Ruchira Sasanka | 174bded | 2001-10-28 18:12:02 +0000 | [diff] [blame] | 1127 | } |
Ruchira Sasanka | 0e62aa6 | 2001-10-19 21:39:31 +0000 | [diff] [blame] | 1128 | |
Brian Gaeke | 874f423 | 2003-09-21 02:50:21 +0000 | [diff] [blame] | 1129 | |
Brian Gaeke | 2139041 | 2003-11-10 00:05:26 +0000 | [diff] [blame] | 1130 | void PhyRegAlloc::saveStateForValue (std::vector<AllocInfo> &state, |
Brian Gaeke | 54a76b8 | 2004-03-08 23:22:02 +0000 | [diff] [blame] | 1131 | const Value *V, int Insn, int Opnd) { |
Brian Gaeke | 2139041 | 2003-11-10 00:05:26 +0000 | [diff] [blame] | 1132 | LiveRangeMapType::const_iterator HMI = LRI->getLiveRangeMap ()->find (V); |
| 1133 | LiveRangeMapType::const_iterator HMIEnd = LRI->getLiveRangeMap ()->end (); |
| 1134 | AllocInfo::AllocStateTy AllocState = AllocInfo::NotAllocated; |
| 1135 | int Placement = -1; |
| 1136 | if ((HMI != HMIEnd) && HMI->second) { |
| 1137 | LiveRange *L = HMI->second; |
| 1138 | assert ((L->hasColor () || L->isMarkedForSpill ()) |
| 1139 | && "Live range exists but not colored or spilled"); |
| 1140 | if (L->hasColor ()) { |
| 1141 | AllocState = AllocInfo::Allocated; |
| 1142 | Placement = MRI.getUnifiedRegNum (L->getRegClassID (), |
| 1143 | L->getColor ()); |
| 1144 | } else if (L->isMarkedForSpill ()) { |
| 1145 | AllocState = AllocInfo::Spilled; |
| 1146 | assert (L->hasSpillOffset () |
| 1147 | && "Live range marked for spill but has no spill offset"); |
| 1148 | Placement = L->getSpillOffFromFP (); |
| 1149 | } |
| 1150 | } |
| 1151 | state.push_back (AllocInfo (Insn, Opnd, AllocState, Placement)); |
| 1152 | } |
| 1153 | |
| 1154 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 1155 | /// Save the global register allocation decisions made by the register |
| 1156 | /// allocator so that they can be accessed later (sort of like "poor man's |
| 1157 | /// debug info"). |
| 1158 | /// |
| 1159 | void PhyRegAlloc::saveState () { |
Brian Gaeke | 537132b | 2003-10-23 20:32:55 +0000 | [diff] [blame] | 1160 | std::vector<AllocInfo> &state = FnAllocState[Fn]; |
Brian Gaeke | 54a76b8 | 2004-03-08 23:22:02 +0000 | [diff] [blame] | 1161 | unsigned ArgNum = 0; |
| 1162 | // Arguments encoded as instruction # -1 |
| 1163 | for (Function::const_aiterator i=Fn->abegin (), e=Fn->aend (); i != e; ++i) { |
| 1164 | const Argument *Arg = &*i; |
| 1165 | saveStateForValue (state, Arg, -1, ArgNum); |
| 1166 | ++ArgNum; |
| 1167 | } |
Brian Gaeke | 25d4b54 | 2004-05-30 07:08:43 +0000 | [diff] [blame] | 1168 | unsigned InstCount = 0; |
Brian Gaeke | 54a76b8 | 2004-03-08 23:22:02 +0000 | [diff] [blame] | 1169 | // Instructions themselves encoded as operand # -1 |
Brian Gaeke | 3ceac85 | 2003-10-30 21:21:33 +0000 | [diff] [blame] | 1170 | for (const_inst_iterator II=inst_begin (Fn), IE=inst_end (Fn); II!=IE; ++II){ |
Brian Gaeke | 25d4b54 | 2004-05-30 07:08:43 +0000 | [diff] [blame] | 1171 | const Instruction *Inst = &*II; |
| 1172 | saveStateForValue (state, Inst, InstCount, -1); |
| 1173 | if (isa<PHINode> (Inst)) { |
| 1174 | MachineCodeForInstruction &MCforPN = MachineCodeForInstruction::get(Inst); |
| 1175 | // Last instr should be the copy...figure out what reg it is reading from |
| 1176 | if (Value *PhiCpRes = MCforPN.back()->getOperand(0).getVRegValueOrNull()){ |
| 1177 | if (DEBUG_RA) |
| 1178 | std::cerr << "Found Phi copy result: " << PhiCpRes->getName() |
| 1179 | << " in: " << *MCforPN.back() << "\n"; |
| 1180 | saveStateForValue (state, PhiCpRes, InstCount, -2); |
| 1181 | } |
Brian Gaeke | 6a256cc | 2003-09-24 18:08:54 +0000 | [diff] [blame] | 1182 | } |
Brian Gaeke | 25d4b54 | 2004-05-30 07:08:43 +0000 | [diff] [blame] | 1183 | ++InstCount; |
Brian Gaeke | 3ceac85 | 2003-10-30 21:21:33 +0000 | [diff] [blame] | 1184 | } |
Brian Gaeke | 6a256cc | 2003-09-24 18:08:54 +0000 | [diff] [blame] | 1185 | } |
| 1186 | |
Brian Gaeke | 537132b | 2003-10-23 20:32:55 +0000 | [diff] [blame] | 1187 | |
Brian Gaeke | a7afac2 | 2004-05-30 04:22:24 +0000 | [diff] [blame] | 1188 | /// Dump the saved state filled in by saveState() out to stderr. Only |
| 1189 | /// used when debugging. |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 1190 | /// |
Brian Gaeke | a7afac2 | 2004-05-30 04:22:24 +0000 | [diff] [blame] | 1191 | void PhyRegAlloc::dumpSavedState () { |
Brian Gaeke | 3ceac85 | 2003-10-30 21:21:33 +0000 | [diff] [blame] | 1192 | std::vector<AllocInfo> &state = FnAllocState[Fn]; |
Brian Gaeke | cf68bd5 | 2004-03-11 06:45:52 +0000 | [diff] [blame] | 1193 | int ArgNum = 0; |
| 1194 | for (Function::const_aiterator i=Fn->abegin (), e=Fn->aend (); i != e; ++i) { |
| 1195 | const Argument *Arg = &*i; |
| 1196 | std::cerr << "Argument: " << *Arg << "\n" |
| 1197 | << "FnAllocState:\n"; |
| 1198 | for (unsigned i = 0; i < state.size (); ++i) { |
| 1199 | AllocInfo &S = state[i]; |
| 1200 | if (S.Instruction == -1 && S.Operand == ArgNum) |
| 1201 | std::cerr << " " << S << "\n"; |
| 1202 | } |
| 1203 | std::cerr << "----------\n"; |
| 1204 | ++ArgNum; |
| 1205 | } |
Brian Gaeke | 54a76b8 | 2004-03-08 23:22:02 +0000 | [diff] [blame] | 1206 | int Insn = 0; |
Brian Gaeke | 3ceac85 | 2003-10-30 21:21:33 +0000 | [diff] [blame] | 1207 | for (const_inst_iterator II=inst_begin (Fn), IE=inst_end (Fn); II!=IE; ++II) { |
Chris Lattner | 6ffe551 | 2004-04-27 15:13:33 +0000 | [diff] [blame] | 1208 | const Instruction *I = &*II; |
Brian Gaeke | 3ceac85 | 2003-10-30 21:21:33 +0000 | [diff] [blame] | 1209 | MachineCodeForInstruction &Instrs = MachineCodeForInstruction::get (I); |
Brian Gaeke | cf68bd5 | 2004-03-11 06:45:52 +0000 | [diff] [blame] | 1210 | std::cerr << "Instruction: " << *I |
Brian Gaeke | 3ceac85 | 2003-10-30 21:21:33 +0000 | [diff] [blame] | 1211 | << "MachineCodeForInstruction:\n"; |
| 1212 | for (unsigned i = 0, n = Instrs.size (); i != n; ++i) |
Brian Gaeke | cf68bd5 | 2004-03-11 06:45:52 +0000 | [diff] [blame] | 1213 | std::cerr << " " << *Instrs[i]; |
Brian Gaeke | 3ceac85 | 2003-10-30 21:21:33 +0000 | [diff] [blame] | 1214 | std::cerr << "FnAllocState:\n"; |
| 1215 | for (unsigned i = 0; i < state.size (); ++i) { |
| 1216 | AllocInfo &S = state[i]; |
Brian Gaeke | 97374d4 | 2004-01-28 19:05:43 +0000 | [diff] [blame] | 1217 | if (Insn == S.Instruction) |
| 1218 | std::cerr << " " << S << "\n"; |
Brian Gaeke | 3ceac85 | 2003-10-30 21:21:33 +0000 | [diff] [blame] | 1219 | } |
| 1220 | std::cerr << "----------\n"; |
| 1221 | ++Insn; |
| 1222 | } |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 1223 | } |
Brian Gaeke | 6a256cc | 2003-09-24 18:08:54 +0000 | [diff] [blame] | 1224 | |
Brian Gaeke | cce4e7a | 2003-11-04 18:25:56 +0000 | [diff] [blame] | 1225 | |
Brian Gaeke | 6a256cc | 2003-09-24 18:08:54 +0000 | [diff] [blame] | 1226 | bool PhyRegAlloc::doFinalization (Module &M) { |
Brian Gaeke | cf68bd5 | 2004-03-11 06:45:52 +0000 | [diff] [blame] | 1227 | if (SaveRegAllocState) finishSavingState (M); |
| 1228 | return false; |
| 1229 | } |
| 1230 | |
| 1231 | |
| 1232 | /// Finish the job of saveState(), by collapsing FnAllocState into an LLVM |
| 1233 | /// Constant and stuffing it inside the Module. |
| 1234 | /// |
| 1235 | /// FIXME: There should be other, better ways of storing the saved |
| 1236 | /// state; this one is cumbersome and does not work well with the JIT. |
| 1237 | /// |
| 1238 | void PhyRegAlloc::finishSavingState (Module &M) { |
Brian Gaeke | c760d64 | 2004-03-11 19:46:30 +0000 | [diff] [blame] | 1239 | if (DEBUG_RA) |
| 1240 | std::cerr << "---- Saving reg. alloc state; SaveStateToModule = " |
| 1241 | << SaveStateToModule << " ----\n"; |
Brian Gaeke | 6a256cc | 2003-09-24 18:08:54 +0000 | [diff] [blame] | 1242 | |
Brian Gaeke | cce4e7a | 2003-11-04 18:25:56 +0000 | [diff] [blame] | 1243 | // If saving state into the module, just copy new elements to the |
| 1244 | // correct global. |
Brian Gaeke | 8fc4934 | 2003-10-24 21:21:58 +0000 | [diff] [blame] | 1245 | if (!SaveStateToModule) { |
| 1246 | ExportedFnAllocState = FnAllocState; |
Brian Gaeke | cce4e7a | 2003-11-04 18:25:56 +0000 | [diff] [blame] | 1247 | // FIXME: should ONLY copy new elements in FnAllocState |
Brian Gaeke | cf68bd5 | 2004-03-11 06:45:52 +0000 | [diff] [blame] | 1248 | return; |
Brian Gaeke | 8fc4934 | 2003-10-24 21:21:58 +0000 | [diff] [blame] | 1249 | } |
| 1250 | |
Brian Gaeke | 6a256cc | 2003-09-24 18:08:54 +0000 | [diff] [blame] | 1251 | // Convert FnAllocState to a single Constant array and add it |
| 1252 | // to the Module. |
| 1253 | ArrayType *AT = ArrayType::get (AllocInfo::getConstantType (), 0); |
| 1254 | std::vector<const Type *> TV; |
| 1255 | TV.push_back (Type::UIntTy); |
| 1256 | TV.push_back (AT); |
| 1257 | PointerType *PT = PointerType::get (StructType::get (TV)); |
| 1258 | |
| 1259 | std::vector<Constant *> allstate; |
| 1260 | for (Module::iterator I = M.begin (), E = M.end (); I != E; ++I) { |
| 1261 | Function *F = I; |
Brian Gaeke | 55766e1 | 2003-11-04 22:42:41 +0000 | [diff] [blame] | 1262 | if (F->isExternal ()) continue; |
Brian Gaeke | 6a256cc | 2003-09-24 18:08:54 +0000 | [diff] [blame] | 1263 | if (FnAllocState.find (F) == FnAllocState.end ()) { |
| 1264 | allstate.push_back (ConstantPointerNull::get (PT)); |
| 1265 | } else { |
Brian Gaeke | 537132b | 2003-10-23 20:32:55 +0000 | [diff] [blame] | 1266 | std::vector<AllocInfo> &state = FnAllocState[F]; |
Brian Gaeke | 60a3c55 | 2003-10-22 20:44:23 +0000 | [diff] [blame] | 1267 | |
| 1268 | // Convert state into an LLVM ConstantArray, and put it in a |
| 1269 | // ConstantStruct (named S) along with its size. |
Brian Gaeke | 537132b | 2003-10-23 20:32:55 +0000 | [diff] [blame] | 1270 | std::vector<Constant *> stateConstants; |
| 1271 | for (unsigned i = 0, s = state.size (); i != s; ++i) |
| 1272 | stateConstants.push_back (state[i].toConstant ()); |
| 1273 | unsigned Size = stateConstants.size (); |
Brian Gaeke | 60a3c55 | 2003-10-22 20:44:23 +0000 | [diff] [blame] | 1274 | ArrayType *AT = ArrayType::get (AllocInfo::getConstantType (), Size); |
| 1275 | std::vector<const Type *> TV; |
| 1276 | TV.push_back (Type::UIntTy); |
| 1277 | TV.push_back (AT); |
| 1278 | StructType *ST = StructType::get (TV); |
| 1279 | std::vector<Constant *> CV; |
| 1280 | CV.push_back (ConstantUInt::get (Type::UIntTy, Size)); |
Brian Gaeke | 537132b | 2003-10-23 20:32:55 +0000 | [diff] [blame] | 1281 | CV.push_back (ConstantArray::get (AT, stateConstants)); |
Brian Gaeke | 60a3c55 | 2003-10-22 20:44:23 +0000 | [diff] [blame] | 1282 | Constant *S = ConstantStruct::get (ST, CV); |
| 1283 | |
Brian Gaeke | 6a256cc | 2003-09-24 18:08:54 +0000 | [diff] [blame] | 1284 | GlobalVariable *GV = |
Brian Gaeke | 60a3c55 | 2003-10-22 20:44:23 +0000 | [diff] [blame] | 1285 | new GlobalVariable (ST, true, |
| 1286 | GlobalValue::InternalLinkage, S, |
Brian Gaeke | 6a256cc | 2003-09-24 18:08:54 +0000 | [diff] [blame] | 1287 | F->getName () + ".regAllocState", &M); |
Brian Gaeke | 60a3c55 | 2003-10-22 20:44:23 +0000 | [diff] [blame] | 1288 | |
Brian Gaeke | 2139041 | 2003-11-10 00:05:26 +0000 | [diff] [blame] | 1289 | // Have: { uint, [Size x { uint, int, uint, int }] } * |
| 1290 | // Cast it to: { uint, [0 x { uint, int, uint, int }] } * |
Brian Gaeke | 6a256cc | 2003-09-24 18:08:54 +0000 | [diff] [blame] | 1291 | Constant *CE = ConstantExpr::getCast (ConstantPointerRef::get (GV), PT); |
| 1292 | allstate.push_back (CE); |
| 1293 | } |
| 1294 | } |
| 1295 | |
| 1296 | unsigned Size = allstate.size (); |
| 1297 | // Final structure type is: |
Brian Gaeke | 2139041 | 2003-11-10 00:05:26 +0000 | [diff] [blame] | 1298 | // { uint, [Size x { uint, [0 x { uint, int, uint, int }] } *] } |
Brian Gaeke | 6a256cc | 2003-09-24 18:08:54 +0000 | [diff] [blame] | 1299 | std::vector<const Type *> TV2; |
| 1300 | TV2.push_back (Type::UIntTy); |
| 1301 | ArrayType *AT2 = ArrayType::get (PT, Size); |
| 1302 | TV2.push_back (AT2); |
| 1303 | StructType *ST2 = StructType::get (TV2); |
| 1304 | std::vector<Constant *> CV2; |
| 1305 | CV2.push_back (ConstantUInt::get (Type::UIntTy, Size)); |
| 1306 | CV2.push_back (ConstantArray::get (AT2, allstate)); |
Brian Gaeke | e9414ca | 2003-11-10 07:12:01 +0000 | [diff] [blame] | 1307 | new GlobalVariable (ST2, true, GlobalValue::ExternalLinkage, |
Brian Gaeke | 6a256cc | 2003-09-24 18:08:54 +0000 | [diff] [blame] | 1308 | ConstantStruct::get (ST2, CV2), "_llvm_regAllocState", |
| 1309 | &M); |
Brian Gaeke | 6a256cc | 2003-09-24 18:08:54 +0000 | [diff] [blame] | 1310 | } |
| 1311 | |
| 1312 | |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 1313 | /// Allocate registers for the machine code previously generated for F using |
| 1314 | /// the graph-coloring algorithm. |
| 1315 | /// |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 1316 | bool PhyRegAlloc::runOnFunction (Function &F) { |
| 1317 | if (DEBUG_RA) |
| 1318 | std::cerr << "\n********* Function "<< F.getName () << " ***********\n"; |
| 1319 | |
| 1320 | Fn = &F; |
| 1321 | MF = &MachineFunction::get (Fn); |
| 1322 | LVI = &getAnalysis<FunctionLiveVarInfo> (); |
| 1323 | LRI = new LiveRangeInfo (Fn, TM, RegClassList); |
| 1324 | LoopDepthCalc = &getAnalysis<LoopInfo> (); |
| 1325 | |
| 1326 | // Create each RegClass for the target machine and add it to the |
| 1327 | // RegClassList. This must be done before calling constructLiveRanges(). |
| 1328 | for (unsigned rc = 0; rc != NumOfRegClasses; ++rc) |
Chris Lattner | d029cd2 | 2004-06-02 05:55:25 +0000 | [diff] [blame] | 1329 | RegClassList.push_back (new RegClass (Fn, TM.getRegInfo(), |
| 1330 | MRI.getMachineRegClass(rc))); |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 1331 | |
| 1332 | LRI->constructLiveRanges(); // create LR info |
Vikram S. Adve | 39c94e1 | 2002-09-14 23:05:33 +0000 | [diff] [blame] | 1333 | if (DEBUG_RA >= RA_DEBUG_LiveRanges) |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 1334 | LRI->printLiveRanges(); |
Ruchira Sasanka | a5ab964 | 2001-09-30 23:11:59 +0000 | [diff] [blame] | 1335 | |
Ruchira Sasanka | 6b0a8b5 | 2001-09-15 21:11:11 +0000 | [diff] [blame] | 1336 | createIGNodeListsAndIGs(); // create IGNode list and IGs |
| 1337 | |
| 1338 | buildInterferenceGraphs(); // build IGs in all reg classes |
Ruchira Sasanka | 6b0a8b5 | 2001-09-15 21:11:11 +0000 | [diff] [blame] | 1339 | |
Vikram S. Adve | 39c94e1 | 2002-09-14 23:05:33 +0000 | [diff] [blame] | 1340 | if (DEBUG_RA >= RA_DEBUG_LiveRanges) { |
Ruchira Sasanka | 6b0a8b5 | 2001-09-15 21:11:11 +0000 | [diff] [blame] | 1341 | // print all LRs in all reg classes |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 1342 | for ( unsigned rc=0; rc < NumOfRegClasses ; rc++) |
| 1343 | RegClassList[rc]->printIGNodeList(); |
Ruchira Sasanka | a5ab964 | 2001-09-30 23:11:59 +0000 | [diff] [blame] | 1344 | |
Ruchira Sasanka | 6b0a8b5 | 2001-09-15 21:11:11 +0000 | [diff] [blame] | 1345 | // print IGs in all register classes |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 1346 | for ( unsigned rc=0; rc < NumOfRegClasses ; rc++) |
| 1347 | RegClassList[rc]->printIG(); |
Ruchira Sasanka | 6b0a8b5 | 2001-09-15 21:11:11 +0000 | [diff] [blame] | 1348 | } |
Ruchira Sasanka | 4f3eb22 | 2002-01-07 19:19:18 +0000 | [diff] [blame] | 1349 | |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 1350 | LRI->coalesceLRs(); // coalesce all live ranges |
Ruchira Sasanka | ef1b0cb | 2001-11-03 17:13:27 +0000 | [diff] [blame] | 1351 | |
Vikram S. Adve | 39c94e1 | 2002-09-14 23:05:33 +0000 | [diff] [blame] | 1352 | if (DEBUG_RA >= RA_DEBUG_LiveRanges) { |
Ruchira Sasanka | 6b0a8b5 | 2001-09-15 21:11:11 +0000 | [diff] [blame] | 1353 | // print all LRs in all reg classes |
Chris Lattner | f726e77 | 2002-10-28 19:22:04 +0000 | [diff] [blame] | 1354 | for (unsigned rc=0; rc < NumOfRegClasses; rc++) |
| 1355 | RegClassList[rc]->printIGNodeList(); |
Ruchira Sasanka | a5ab964 | 2001-09-30 23:11:59 +0000 | [diff] [blame] | 1356 | |
Ruchira Sasanka | 6b0a8b5 | 2001-09-15 21:11:11 +0000 | [diff] [blame] | 1357 | // print IGs in all register classes |
Chris Lattner | f726e77 | 2002-10-28 19:22:04 +0000 | [diff] [blame] | 1358 | for (unsigned rc=0; rc < NumOfRegClasses; rc++) |
| 1359 | RegClassList[rc]->printIG(); |
Ruchira Sasanka | 6b0a8b5 | 2001-09-15 21:11:11 +0000 | [diff] [blame] | 1360 | } |
| 1361 | |
Ruchira Sasanka | 0e62aa6 | 2001-10-19 21:39:31 +0000 | [diff] [blame] | 1362 | // mark un-usable suggested color before graph coloring algorithm. |
| 1363 | // When this is done, the graph coloring algo will not reserve |
| 1364 | // suggested color unnecessarily - they can be used by another LR |
| 1365 | markUnusableSugColors(); |
| 1366 | |
| 1367 | // color all register classes using the graph coloring algo |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 1368 | for (unsigned rc=0; rc < NumOfRegClasses ; rc++) |
Chris Lattner | f726e77 | 2002-10-28 19:22:04 +0000 | [diff] [blame] | 1369 | RegClassList[rc]->colorAllRegs(); |
Ruchira Sasanka | 6b0a8b5 | 2001-09-15 21:11:11 +0000 | [diff] [blame] | 1370 | |
Misha Brukman | 37f92e2 | 2003-09-11 22:34:13 +0000 | [diff] [blame] | 1371 | // After graph coloring, if some LRs did not receive a color (i.e, spilled) |
| 1372 | // a position for such spilled LRs |
Ruchira Sasanka | 174bded | 2001-10-28 18:12:02 +0000 | [diff] [blame] | 1373 | allocateStackSpace4SpilledLRs(); |
Ruchira Sasanka | a5ab964 | 2001-09-30 23:11:59 +0000 | [diff] [blame] | 1374 | |
Vikram S. Adve | d0d06ad | 2003-05-31 07:32:01 +0000 | [diff] [blame] | 1375 | // Reset the temp. area on the stack before use by the first instruction. |
| 1376 | // This will also happen after updating each instruction. |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 1377 | MF->getInfo()->popAllTempValues(); |
Ruchira Sasanka | f90870f | 2001-11-15 22:02:06 +0000 | [diff] [blame] | 1378 | |
Ruchira Sasanka | 4f3eb22 | 2002-01-07 19:19:18 +0000 | [diff] [blame] | 1379 | // color incoming args - if the correct color was not received |
| 1380 | // insert code to copy to the correct register |
Ruchira Sasanka | a5ab964 | 2001-09-30 23:11:59 +0000 | [diff] [blame] | 1381 | colorIncomingArgs(); |
Ruchira Sasanka | a5ab964 | 2001-09-30 23:11:59 +0000 | [diff] [blame] | 1382 | |
Brian Gaeke | 6a256cc | 2003-09-24 18:08:54 +0000 | [diff] [blame] | 1383 | // Save register allocation state for this function in a Constant. |
Brian Gaeke | 14068d9 | 2004-03-10 22:01:59 +0000 | [diff] [blame] | 1384 | if (SaveRegAllocState) { |
Brian Gaeke | 6a256cc | 2003-09-24 18:08:54 +0000 | [diff] [blame] | 1385 | saveState(); |
Brian Gaeke | af84370 | 2003-10-22 20:22:53 +0000 | [diff] [blame] | 1386 | } |
Brian Gaeke | 6a256cc | 2003-09-24 18:08:54 +0000 | [diff] [blame] | 1387 | |
Brian Gaeke | 60a3c55 | 2003-10-22 20:44:23 +0000 | [diff] [blame] | 1388 | // Now update the machine code with register names and add any additional |
| 1389 | // code inserted by the register allocator to the instruction stream. |
Ruchira Sasanka | 6b0a8b5 | 2001-09-15 21:11:11 +0000 | [diff] [blame] | 1390 | updateMachineCode(); |
Ruchira Sasanka | 4f3eb22 | 2002-01-07 19:19:18 +0000 | [diff] [blame] | 1391 | |
Brian Gaeke | a7afac2 | 2004-05-30 04:22:24 +0000 | [diff] [blame] | 1392 | if (SaveRegAllocState) { |
| 1393 | if (DEBUG_RA) // Check our work. |
| 1394 | dumpSavedState (); |
| 1395 | if (!SaveStateToModule) |
| 1396 | finishSavingState (const_cast<Module&> (*Fn->getParent ())); |
| 1397 | } |
| 1398 | |
Chris Lattner | 045e7c8 | 2001-09-19 16:26:23 +0000 | [diff] [blame] | 1399 | if (DEBUG_RA) { |
Chris Lattner | c083dcc | 2003-09-01 20:05:47 +0000 | [diff] [blame] | 1400 | std::cerr << "\n**** Machine Code After Register Allocation:\n\n"; |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 1401 | MF->dump(); |
Chris Lattner | 045e7c8 | 2001-09-19 16:26:23 +0000 | [diff] [blame] | 1402 | } |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 1403 | |
| 1404 | // Tear down temporary data structures |
| 1405 | for (unsigned rc = 0; rc < NumOfRegClasses; ++rc) |
| 1406 | delete RegClassList[rc]; |
| 1407 | RegClassList.clear (); |
| 1408 | AddedInstrMap.clear (); |
| 1409 | OperandsColoredMap.clear (); |
| 1410 | ScratchRegsUsed.clear (); |
| 1411 | AddedInstrAtEntry.clear (); |
| 1412 | delete LRI; |
Ruchira Sasanka | 6b0a8b5 | 2001-09-15 21:11:11 +0000 | [diff] [blame] | 1413 | |
Brian Gaeke | 4efe342 | 2003-09-21 01:23:46 +0000 | [diff] [blame] | 1414 | if (DEBUG_RA) std::cerr << "\nRegister allocation complete!\n"; |
| 1415 | return false; // Function was not modified |
| 1416 | } |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 1417 | |
| 1418 | } // End llvm namespace |