1 //===-- RegAllocFast.cpp - A fast register allocator for debug code -------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This register allocator allocates registers to a basic block at a time, 11 // attempting to keep values in registers and reusing registers as appropriate. 12 // 13 //===----------------------------------------------------------------------===// 14 15 #include "llvm/ADT/DenseMap.h" 16 #include "llvm/ADT/IndexedMap.h" 17 #include "llvm/ADT/STLExtras.h" 18 #include "llvm/ADT/SmallSet.h" 19 #include "llvm/ADT/SmallVector.h" 20 #include "llvm/ADT/SparseSet.h" 21 #include "llvm/ADT/Statistic.h" 22 #include "llvm/CodeGen/MachineFrameInfo.h" 23 #include "llvm/CodeGen/MachineFunctionPass.h" 24 #include "llvm/CodeGen/MachineInstr.h" 25 #include "llvm/CodeGen/MachineInstrBuilder.h" 26 #include "llvm/CodeGen/MachineRegisterInfo.h" 27 #include "llvm/CodeGen/Passes.h" 28 #include "llvm/CodeGen/RegAllocRegistry.h" 29 #include "llvm/CodeGen/RegisterClassInfo.h" 30 #include "llvm/IR/DebugInfo.h" 31 #include "llvm/Support/Debug.h" 32 #include "llvm/Support/ErrorHandling.h" 33 #include "llvm/Target/TargetInstrInfo.h" 34 #include "llvm/Target/TargetSubtargetInfo.h" 35 #include <algorithm> 36 using namespace llvm; 37 38 #define DEBUG_TYPE "regalloc" 39 40 STATISTIC(NumStores, "Number of stores added"); 41 STATISTIC(NumLoads , "Number of loads added"); 42 STATISTIC(NumCopies, "Number of copies coalesced"); 43 44 static RegisterRegAlloc 45 fastRegAlloc("fast", "fast register allocator", createFastRegisterAllocator); 46 47 namespace { 48 class RAFast : public MachineFunctionPass { 49 public: 50 static char ID; 51 RAFast() : MachineFunctionPass(ID), StackSlotForVirtReg(-1), 52 isBulkSpilling(false) {} 53 54 private: 55 MachineFunction *MF; 56 MachineRegisterInfo *MRI; 57 const TargetRegisterInfo *TRI; 58 const TargetInstrInfo *TII; 59 RegisterClassInfo RegClassInfo; 60 61 // Basic block currently being allocated. 62 MachineBasicBlock *MBB; 63 64 // StackSlotForVirtReg - Maps virtual regs to the frame index where these 65 // values are spilled. 66 IndexedMap<int, VirtReg2IndexFunctor> StackSlotForVirtReg; 67 68 // Everything we know about a live virtual register. 69 struct LiveReg { 70 MachineInstr *LastUse; // Last instr to use reg. 71 unsigned VirtReg; // Virtual register number. 72 unsigned PhysReg; // Currently held here. 73 unsigned short LastOpNum; // OpNum on LastUse. 74 bool Dirty; // Register needs spill. 75 76 explicit LiveReg(unsigned v) 77 : LastUse(nullptr), VirtReg(v), PhysReg(0), LastOpNum(0), Dirty(false){} 78 79 unsigned getSparseSetIndex() const { 80 return TargetRegisterInfo::virtReg2Index(VirtReg); 81 } 82 }; 83 84 typedef SparseSet<LiveReg> LiveRegMap; 85 86 // LiveVirtRegs - This map contains entries for each virtual register 87 // that is currently available in a physical register. 88 LiveRegMap LiveVirtRegs; 89 90 DenseMap<unsigned, SmallVector<MachineInstr *, 4> > LiveDbgValueMap; 91 92 // RegState - Track the state of a physical register. 93 enum RegState { 94 // A disabled register is not available for allocation, but an alias may 95 // be in use. A register can only be moved out of the disabled state if 96 // all aliases are disabled. 97 regDisabled, 98 99 // A free register is not currently in use and can be allocated 100 // immediately without checking aliases. 101 regFree, 102 103 // A reserved register has been assigned explicitly (e.g., setting up a 104 // call parameter), and it remains reserved until it is used. 105 regReserved 106 107 // A register state may also be a virtual register number, indication that 108 // the physical register is currently allocated to a virtual register. In 109 // that case, LiveVirtRegs contains the inverse mapping. 110 }; 111 112 // PhysRegState - One of the RegState enums, or a virtreg. 113 std::vector<unsigned> PhysRegState; 114 115 // Set of register units. 116 typedef SparseSet<unsigned> UsedInInstrSet; 117 118 // Set of register units that are used in the current instruction, and so 119 // cannot be allocated. 120 UsedInInstrSet UsedInInstr; 121 122 // Mark a physreg as used in this instruction. 123 void markRegUsedInInstr(unsigned PhysReg) { 124 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) 125 UsedInInstr.insert(*Units); 126 } 127 128 // Check if a physreg or any of its aliases are used in this instruction. 129 bool isRegUsedInInstr(unsigned PhysReg) const { 130 for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) 131 if (UsedInInstr.count(*Units)) 132 return true; 133 return false; 134 } 135 136 // SkippedInstrs - Descriptors of instructions whose clobber list was 137 // ignored because all registers were spilled. It is still necessary to 138 // mark all the clobbered registers as used by the function. 139 SmallPtrSet<const MCInstrDesc*, 4> SkippedInstrs; 140 141 // isBulkSpilling - This flag is set when LiveRegMap will be cleared 142 // completely after spilling all live registers. LiveRegMap entries should 143 // not be erased. 144 bool isBulkSpilling; 145 146 enum : unsigned { 147 spillClean = 1, 148 spillDirty = 100, 149 spillImpossible = ~0u 150 }; 151 public: 152 const char *getPassName() const override { 153 return "Fast Register Allocator"; 154 } 155 156 void getAnalysisUsage(AnalysisUsage &AU) const override { 157 AU.setPreservesCFG(); 158 MachineFunctionPass::getAnalysisUsage(AU); 159 } 160 161 MachineFunctionProperties getSetProperties() const override { 162 return MachineFunctionProperties().set( 163 MachineFunctionProperties::Property::AllVRegsAllocated); 164 } 165 166 private: 167 bool runOnMachineFunction(MachineFunction &Fn) override; 168 void AllocateBasicBlock(); 169 void handleThroughOperands(MachineInstr *MI, 170 SmallVectorImpl<unsigned> &VirtDead); 171 int getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC); 172 bool isLastUseOfLocalReg(MachineOperand&); 173 174 void addKillFlag(const LiveReg&); 175 void killVirtReg(LiveRegMap::iterator); 176 void killVirtReg(unsigned VirtReg); 177 void spillVirtReg(MachineBasicBlock::iterator MI, LiveRegMap::iterator); 178 void spillVirtReg(MachineBasicBlock::iterator MI, unsigned VirtReg); 179 180 void usePhysReg(MachineOperand&); 181 void definePhysReg(MachineInstr *MI, unsigned PhysReg, RegState NewState); 182 unsigned calcSpillCost(unsigned PhysReg) const; 183 void assignVirtToPhysReg(LiveReg&, unsigned PhysReg); 184 LiveRegMap::iterator findLiveVirtReg(unsigned VirtReg) { 185 return LiveVirtRegs.find(TargetRegisterInfo::virtReg2Index(VirtReg)); 186 } 187 LiveRegMap::const_iterator findLiveVirtReg(unsigned VirtReg) const { 188 return LiveVirtRegs.find(TargetRegisterInfo::virtReg2Index(VirtReg)); 189 } 190 LiveRegMap::iterator assignVirtToPhysReg(unsigned VReg, unsigned PhysReg); 191 LiveRegMap::iterator allocVirtReg(MachineInstr *MI, LiveRegMap::iterator, 192 unsigned Hint); 193 LiveRegMap::iterator defineVirtReg(MachineInstr *MI, unsigned OpNum, 194 unsigned VirtReg, unsigned Hint); 195 LiveRegMap::iterator reloadVirtReg(MachineInstr *MI, unsigned OpNum, 196 unsigned VirtReg, unsigned Hint); 197 void spillAll(MachineBasicBlock::iterator MI); 198 bool setPhysReg(MachineInstr *MI, unsigned OpNum, unsigned PhysReg); 199 }; 200 char RAFast::ID = 0; 201 } 202 203 /// getStackSpaceFor - This allocates space for the specified virtual register 204 /// to be held on the stack. 205 int RAFast::getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC) { 206 // Find the location Reg would belong... 207 int SS = StackSlotForVirtReg[VirtReg]; 208 if (SS != -1) 209 return SS; // Already has space allocated? 210 211 // Allocate a new stack object for this spill location... 212 int FrameIdx = MF->getFrameInfo()->CreateSpillStackObject(RC->getSize(), 213 RC->getAlignment()); 214 215 // Assign the slot. 216 StackSlotForVirtReg[VirtReg] = FrameIdx; 217 return FrameIdx; 218 } 219 220 /// isLastUseOfLocalReg - Return true if MO is the only remaining reference to 221 /// its virtual register, and it is guaranteed to be a block-local register. 222 /// 223 bool RAFast::isLastUseOfLocalReg(MachineOperand &MO) { 224 // If the register has ever been spilled or reloaded, we conservatively assume 225 // it is a global register used in multiple blocks. 226 if (StackSlotForVirtReg[MO.getReg()] != -1) 227 return false; 228 229 // Check that the use/def chain has exactly one operand - MO. 230 MachineRegisterInfo::reg_nodbg_iterator I = MRI->reg_nodbg_begin(MO.getReg()); 231 if (&*I != &MO) 232 return false; 233 return ++I == MRI->reg_nodbg_end(); 234 } 235 236 /// addKillFlag - Set kill flags on last use of a virtual register. 237 void RAFast::addKillFlag(const LiveReg &LR) { 238 if (!LR.LastUse) return; 239 MachineOperand &MO = LR.LastUse->getOperand(LR.LastOpNum); 240 if (MO.isUse() && !LR.LastUse->isRegTiedToDefOperand(LR.LastOpNum)) { 241 if (MO.getReg() == LR.PhysReg) 242 MO.setIsKill(); 243 else 244 LR.LastUse->addRegisterKilled(LR.PhysReg, TRI, true); 245 } 246 } 247 248 /// killVirtReg - Mark virtreg as no longer available. 249 void RAFast::killVirtReg(LiveRegMap::iterator LRI) { 250 addKillFlag(*LRI); 251 assert(PhysRegState[LRI->PhysReg] == LRI->VirtReg && 252 "Broken RegState mapping"); 253 PhysRegState[LRI->PhysReg] = regFree; 254 // Erase from LiveVirtRegs unless we're spilling in bulk. 255 if (!isBulkSpilling) 256 LiveVirtRegs.erase(LRI); 257 } 258 259 /// killVirtReg - Mark virtreg as no longer available. 260 void RAFast::killVirtReg(unsigned VirtReg) { 261 assert(TargetRegisterInfo::isVirtualRegister(VirtReg) && 262 "killVirtReg needs a virtual register"); 263 LiveRegMap::iterator LRI = findLiveVirtReg(VirtReg); 264 if (LRI != LiveVirtRegs.end()) 265 killVirtReg(LRI); 266 } 267 268 /// spillVirtReg - This method spills the value specified by VirtReg into the 269 /// corresponding stack slot if needed. 270 void RAFast::spillVirtReg(MachineBasicBlock::iterator MI, unsigned VirtReg) { 271 assert(TargetRegisterInfo::isVirtualRegister(VirtReg) && 272 "Spilling a physical register is illegal!"); 273 LiveRegMap::iterator LRI = findLiveVirtReg(VirtReg); 274 assert(LRI != LiveVirtRegs.end() && "Spilling unmapped virtual register"); 275 spillVirtReg(MI, LRI); 276 } 277 278 /// spillVirtReg - Do the actual work of spilling. 279 void RAFast::spillVirtReg(MachineBasicBlock::iterator MI, 280 LiveRegMap::iterator LRI) { 281 LiveReg &LR = *LRI; 282 assert(PhysRegState[LR.PhysReg] == LRI->VirtReg && "Broken RegState mapping"); 283 284 if (LR.Dirty) { 285 // If this physreg is used by the instruction, we want to kill it on the 286 // instruction, not on the spill. 287 bool SpillKill = LR.LastUse != MI; 288 LR.Dirty = false; 289 DEBUG(dbgs() << "Spilling " << PrintReg(LRI->VirtReg, TRI) 290 << " in " << PrintReg(LR.PhysReg, TRI)); 291 const TargetRegisterClass *RC = MRI->getRegClass(LRI->VirtReg); 292 int FI = getStackSpaceFor(LRI->VirtReg, RC); 293 DEBUG(dbgs() << " to stack slot #" << FI << "\n"); 294 TII->storeRegToStackSlot(*MBB, MI, LR.PhysReg, SpillKill, FI, RC, TRI); 295 ++NumStores; // Update statistics 296 297 // If this register is used by DBG_VALUE then insert new DBG_VALUE to 298 // identify spilled location as the place to find corresponding variable's 299 // value. 300 SmallVectorImpl<MachineInstr *> &LRIDbgValues = 301 LiveDbgValueMap[LRI->VirtReg]; 302 for (unsigned li = 0, le = LRIDbgValues.size(); li != le; ++li) { 303 MachineInstr *DBG = LRIDbgValues[li]; 304 const MDNode *Var = DBG->getDebugVariable(); 305 const MDNode *Expr = DBG->getDebugExpression(); 306 bool IsIndirect = DBG->isIndirectDebugValue(); 307 uint64_t Offset = IsIndirect ? DBG->getOperand(1).getImm() : 0; 308 DebugLoc DL = DBG->getDebugLoc(); 309 assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(DL) && 310 "Expected inlined-at fields to agree"); 311 MachineInstr *NewDV = 312 BuildMI(*MBB, MI, DL, TII->get(TargetOpcode::DBG_VALUE)) 313 .addFrameIndex(FI) 314 .addImm(Offset) 315 .addMetadata(Var) 316 .addMetadata(Expr); 317 assert(NewDV->getParent() == MBB && "dangling parent pointer"); 318 (void)NewDV; 319 DEBUG(dbgs() << "Inserting debug info due to spill:" << "\n" << *NewDV); 320 } 321 // Now this register is spilled there is should not be any DBG_VALUE 322 // pointing to this register because they are all pointing to spilled value 323 // now. 324 LRIDbgValues.clear(); 325 if (SpillKill) 326 LR.LastUse = nullptr; // Don't kill register again 327 } 328 killVirtReg(LRI); 329 } 330 331 /// spillAll - Spill all dirty virtregs without killing them. 332 void RAFast::spillAll(MachineBasicBlock::iterator MI) { 333 if (LiveVirtRegs.empty()) return; 334 isBulkSpilling = true; 335 // The LiveRegMap is keyed by an unsigned (the virtreg number), so the order 336 // of spilling here is deterministic, if arbitrary. 337 for (LiveRegMap::iterator i = LiveVirtRegs.begin(), e = LiveVirtRegs.end(); 338 i != e; ++i) 339 spillVirtReg(MI, i); 340 LiveVirtRegs.clear(); 341 isBulkSpilling = false; 342 } 343 344 /// usePhysReg - Handle the direct use of a physical register. 345 /// Check that the register is not used by a virtreg. 346 /// Kill the physreg, marking it free. 347 /// This may add implicit kills to MO->getParent() and invalidate MO. 348 void RAFast::usePhysReg(MachineOperand &MO) { 349 unsigned PhysReg = MO.getReg(); 350 assert(TargetRegisterInfo::isPhysicalRegister(PhysReg) && 351 "Bad usePhysReg operand"); 352 markRegUsedInInstr(PhysReg); 353 switch (PhysRegState[PhysReg]) { 354 case regDisabled: 355 break; 356 case regReserved: 357 PhysRegState[PhysReg] = regFree; 358 // Fall through 359 case regFree: 360 MO.setIsKill(); 361 return; 362 default: 363 // The physreg was allocated to a virtual register. That means the value we 364 // wanted has been clobbered. 365 llvm_unreachable("Instruction uses an allocated register"); 366 } 367 368 // Maybe a superregister is reserved? 369 for (MCRegAliasIterator AI(PhysReg, TRI, false); AI.isValid(); ++AI) { 370 unsigned Alias = *AI; 371 switch (PhysRegState[Alias]) { 372 case regDisabled: 373 break; 374 case regReserved: 375 // Either PhysReg is a subregister of Alias and we mark the 376 // whole register as free, or PhysReg is the superregister of 377 // Alias and we mark all the aliases as disabled before freeing 378 // PhysReg. 379 // In the latter case, since PhysReg was disabled, this means that 380 // its value is defined only by physical sub-registers. This check 381 // is performed by the assert of the default case in this loop. 382 // Note: The value of the superregister may only be partial 383 // defined, that is why regDisabled is a valid state for aliases. 384 assert((TRI->isSuperRegister(PhysReg, Alias) || 385 TRI->isSuperRegister(Alias, PhysReg)) && 386 "Instruction is not using a subregister of a reserved register"); 387 // Fall through. 388 case regFree: 389 if (TRI->isSuperRegister(PhysReg, Alias)) { 390 // Leave the superregister in the working set. 391 PhysRegState[Alias] = regFree; 392 MO.getParent()->addRegisterKilled(Alias, TRI, true); 393 return; 394 } 395 // Some other alias was in the working set - clear it. 396 PhysRegState[Alias] = regDisabled; 397 break; 398 default: 399 llvm_unreachable("Instruction uses an alias of an allocated register"); 400 } 401 } 402 403 // All aliases are disabled, bring register into working set. 404 PhysRegState[PhysReg] = regFree; 405 MO.setIsKill(); 406 } 407 408 /// definePhysReg - Mark PhysReg as reserved or free after spilling any 409 /// virtregs. This is very similar to defineVirtReg except the physreg is 410 /// reserved instead of allocated. 411 void RAFast::definePhysReg(MachineInstr *MI, unsigned PhysReg, 412 RegState NewState) { 413 markRegUsedInInstr(PhysReg); 414 switch (unsigned VirtReg = PhysRegState[PhysReg]) { 415 case regDisabled: 416 break; 417 default: 418 spillVirtReg(MI, VirtReg); 419 // Fall through. 420 case regFree: 421 case regReserved: 422 PhysRegState[PhysReg] = NewState; 423 return; 424 } 425 426 // This is a disabled register, disable all aliases. 427 PhysRegState[PhysReg] = NewState; 428 for (MCRegAliasIterator AI(PhysReg, TRI, false); AI.isValid(); ++AI) { 429 unsigned Alias = *AI; 430 switch (unsigned VirtReg = PhysRegState[Alias]) { 431 case regDisabled: 432 break; 433 default: 434 spillVirtReg(MI, VirtReg); 435 // Fall through. 436 case regFree: 437 case regReserved: 438 PhysRegState[Alias] = regDisabled; 439 if (TRI->isSuperRegister(PhysReg, Alias)) 440 return; 441 break; 442 } 443 } 444 } 445 446 447 // calcSpillCost - Return the cost of spilling clearing out PhysReg and 448 // aliases so it is free for allocation. 449 // Returns 0 when PhysReg is free or disabled with all aliases disabled - it 450 // can be allocated directly. 451 // Returns spillImpossible when PhysReg or an alias can't be spilled. 452 unsigned RAFast::calcSpillCost(unsigned PhysReg) const { 453 if (isRegUsedInInstr(PhysReg)) { 454 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << " is already used in instr.\n"); 455 return spillImpossible; 456 } 457 switch (unsigned VirtReg = PhysRegState[PhysReg]) { 458 case regDisabled: 459 break; 460 case regFree: 461 return 0; 462 case regReserved: 463 DEBUG(dbgs() << PrintReg(VirtReg, TRI) << " corresponding " 464 << PrintReg(PhysReg, TRI) << " is reserved already.\n"); 465 return spillImpossible; 466 default: { 467 LiveRegMap::const_iterator I = findLiveVirtReg(VirtReg); 468 assert(I != LiveVirtRegs.end() && "Missing VirtReg entry"); 469 return I->Dirty ? spillDirty : spillClean; 470 } 471 } 472 473 // This is a disabled register, add up cost of aliases. 474 DEBUG(dbgs() << PrintReg(PhysReg, TRI) << " is disabled.\n"); 475 unsigned Cost = 0; 476 for (MCRegAliasIterator AI(PhysReg, TRI, false); AI.isValid(); ++AI) { 477 unsigned Alias = *AI; 478 switch (unsigned VirtReg = PhysRegState[Alias]) { 479 case regDisabled: 480 break; 481 case regFree: 482 ++Cost; 483 break; 484 case regReserved: 485 return spillImpossible; 486 default: { 487 LiveRegMap::const_iterator I = findLiveVirtReg(VirtReg); 488 assert(I != LiveVirtRegs.end() && "Missing VirtReg entry"); 489 Cost += I->Dirty ? spillDirty : spillClean; 490 break; 491 } 492 } 493 } 494 return Cost; 495 } 496 497 498 /// assignVirtToPhysReg - This method updates local state so that we know 499 /// that PhysReg is the proper container for VirtReg now. The physical 500 /// register must not be used for anything else when this is called. 501 /// 502 void RAFast::assignVirtToPhysReg(LiveReg &LR, unsigned PhysReg) { 503 DEBUG(dbgs() << "Assigning " << PrintReg(LR.VirtReg, TRI) << " to " 504 << PrintReg(PhysReg, TRI) << "\n"); 505 PhysRegState[PhysReg] = LR.VirtReg; 506 assert(!LR.PhysReg && "Already assigned a physreg"); 507 LR.PhysReg = PhysReg; 508 } 509 510 RAFast::LiveRegMap::iterator 511 RAFast::assignVirtToPhysReg(unsigned VirtReg, unsigned PhysReg) { 512 LiveRegMap::iterator LRI = findLiveVirtReg(VirtReg); 513 assert(LRI != LiveVirtRegs.end() && "VirtReg disappeared"); 514 assignVirtToPhysReg(*LRI, PhysReg); 515 return LRI; 516 } 517 518 /// allocVirtReg - Allocate a physical register for VirtReg. 519 RAFast::LiveRegMap::iterator RAFast::allocVirtReg(MachineInstr *MI, 520 LiveRegMap::iterator LRI, 521 unsigned Hint) { 522 const unsigned VirtReg = LRI->VirtReg; 523 524 assert(TargetRegisterInfo::isVirtualRegister(VirtReg) && 525 "Can only allocate virtual registers"); 526 527 const TargetRegisterClass *RC = MRI->getRegClass(VirtReg); 528 529 // Ignore invalid hints. 530 if (Hint && (!TargetRegisterInfo::isPhysicalRegister(Hint) || 531 !RC->contains(Hint) || !MRI->isAllocatable(Hint))) 532 Hint = 0; 533 534 // Take hint when possible. 535 if (Hint) { 536 // Ignore the hint if we would have to spill a dirty register. 537 unsigned Cost = calcSpillCost(Hint); 538 if (Cost < spillDirty) { 539 if (Cost) 540 definePhysReg(MI, Hint, regFree); 541 // definePhysReg may kill virtual registers and modify LiveVirtRegs. 542 // That invalidates LRI, so run a new lookup for VirtReg. 543 return assignVirtToPhysReg(VirtReg, Hint); 544 } 545 } 546 547 ArrayRef<MCPhysReg> AO = RegClassInfo.getOrder(RC); 548 549 // First try to find a completely free register. 550 for (ArrayRef<MCPhysReg>::iterator I = AO.begin(), E = AO.end(); I != E; ++I){ 551 unsigned PhysReg = *I; 552 if (PhysRegState[PhysReg] == regFree && !isRegUsedInInstr(PhysReg)) { 553 assignVirtToPhysReg(*LRI, PhysReg); 554 return LRI; 555 } 556 } 557 558 DEBUG(dbgs() << "Allocating " << PrintReg(VirtReg) << " from " 559 << TRI->getRegClassName(RC) << "\n"); 560 561 unsigned BestReg = 0, BestCost = spillImpossible; 562 for (ArrayRef<MCPhysReg>::iterator I = AO.begin(), E = AO.end(); I != E; ++I){ 563 unsigned Cost = calcSpillCost(*I); 564 DEBUG(dbgs() << "\tRegister: " << PrintReg(*I, TRI) << "\n"); 565 DEBUG(dbgs() << "\tCost: " << Cost << "\n"); 566 DEBUG(dbgs() << "\tBestCost: " << BestCost << "\n"); 567 // Cost is 0 when all aliases are already disabled. 568 if (Cost == 0) { 569 assignVirtToPhysReg(*LRI, *I); 570 return LRI; 571 } 572 if (Cost < BestCost) 573 BestReg = *I, BestCost = Cost; 574 } 575 576 if (BestReg) { 577 definePhysReg(MI, BestReg, regFree); 578 // definePhysReg may kill virtual registers and modify LiveVirtRegs. 579 // That invalidates LRI, so run a new lookup for VirtReg. 580 return assignVirtToPhysReg(VirtReg, BestReg); 581 } 582 583 // Nothing we can do. Report an error and keep going with a bad allocation. 584 if (MI->isInlineAsm()) 585 MI->emitError("inline assembly requires more registers than available"); 586 else 587 MI->emitError("ran out of registers during register allocation"); 588 definePhysReg(MI, *AO.begin(), regFree); 589 return assignVirtToPhysReg(VirtReg, *AO.begin()); 590 } 591 592 /// defineVirtReg - Allocate a register for VirtReg and mark it as dirty. 593 RAFast::LiveRegMap::iterator 594 RAFast::defineVirtReg(MachineInstr *MI, unsigned OpNum, 595 unsigned VirtReg, unsigned Hint) { 596 assert(TargetRegisterInfo::isVirtualRegister(VirtReg) && 597 "Not a virtual register"); 598 LiveRegMap::iterator LRI; 599 bool New; 600 std::tie(LRI, New) = LiveVirtRegs.insert(LiveReg(VirtReg)); 601 if (New) { 602 // If there is no hint, peek at the only use of this register. 603 if ((!Hint || !TargetRegisterInfo::isPhysicalRegister(Hint)) && 604 MRI->hasOneNonDBGUse(VirtReg)) { 605 const MachineInstr &UseMI = *MRI->use_instr_nodbg_begin(VirtReg); 606 // It's a copy, use the destination register as a hint. 607 if (UseMI.isCopyLike()) 608 Hint = UseMI.getOperand(0).getReg(); 609 } 610 LRI = allocVirtReg(MI, LRI, Hint); 611 } else if (LRI->LastUse) { 612 // Redefining a live register - kill at the last use, unless it is this 613 // instruction defining VirtReg multiple times. 614 if (LRI->LastUse != MI || LRI->LastUse->getOperand(LRI->LastOpNum).isUse()) 615 addKillFlag(*LRI); 616 } 617 assert(LRI->PhysReg && "Register not assigned"); 618 LRI->LastUse = MI; 619 LRI->LastOpNum = OpNum; 620 LRI->Dirty = true; 621 markRegUsedInInstr(LRI->PhysReg); 622 return LRI; 623 } 624 625 /// reloadVirtReg - Make sure VirtReg is available in a physreg and return it. 626 RAFast::LiveRegMap::iterator 627 RAFast::reloadVirtReg(MachineInstr *MI, unsigned OpNum, 628 unsigned VirtReg, unsigned Hint) { 629 assert(TargetRegisterInfo::isVirtualRegister(VirtReg) && 630 "Not a virtual register"); 631 LiveRegMap::iterator LRI; 632 bool New; 633 std::tie(LRI, New) = LiveVirtRegs.insert(LiveReg(VirtReg)); 634 MachineOperand &MO = MI->getOperand(OpNum); 635 if (New) { 636 LRI = allocVirtReg(MI, LRI, Hint); 637 const TargetRegisterClass *RC = MRI->getRegClass(VirtReg); 638 int FrameIndex = getStackSpaceFor(VirtReg, RC); 639 DEBUG(dbgs() << "Reloading " << PrintReg(VirtReg, TRI) << " into " 640 << PrintReg(LRI->PhysReg, TRI) << "\n"); 641 TII->loadRegFromStackSlot(*MBB, MI, LRI->PhysReg, FrameIndex, RC, TRI); 642 ++NumLoads; 643 } else if (LRI->Dirty) { 644 if (isLastUseOfLocalReg(MO)) { 645 DEBUG(dbgs() << "Killing last use: " << MO << "\n"); 646 if (MO.isUse()) 647 MO.setIsKill(); 648 else 649 MO.setIsDead(); 650 } else if (MO.isKill()) { 651 DEBUG(dbgs() << "Clearing dubious kill: " << MO << "\n"); 652 MO.setIsKill(false); 653 } else if (MO.isDead()) { 654 DEBUG(dbgs() << "Clearing dubious dead: " << MO << "\n"); 655 MO.setIsDead(false); 656 } 657 } else if (MO.isKill()) { 658 // We must remove kill flags from uses of reloaded registers because the 659 // register would be killed immediately, and there might be a second use: 660 // %foo = OR %x<kill>, %x 661 // This would cause a second reload of %x into a different register. 662 DEBUG(dbgs() << "Clearing clean kill: " << MO << "\n"); 663 MO.setIsKill(false); 664 } else if (MO.isDead()) { 665 DEBUG(dbgs() << "Clearing clean dead: " << MO << "\n"); 666 MO.setIsDead(false); 667 } 668 assert(LRI->PhysReg && "Register not assigned"); 669 LRI->LastUse = MI; 670 LRI->LastOpNum = OpNum; 671 markRegUsedInInstr(LRI->PhysReg); 672 return LRI; 673 } 674 675 // setPhysReg - Change operand OpNum in MI the refer the PhysReg, considering 676 // subregs. This may invalidate any operand pointers. 677 // Return true if the operand kills its register. 678 bool RAFast::setPhysReg(MachineInstr *MI, unsigned OpNum, unsigned PhysReg) { 679 MachineOperand &MO = MI->getOperand(OpNum); 680 bool Dead = MO.isDead(); 681 if (!MO.getSubReg()) { 682 MO.setReg(PhysReg); 683 return MO.isKill() || Dead; 684 } 685 686 // Handle subregister index. 687 MO.setReg(PhysReg ? TRI->getSubReg(PhysReg, MO.getSubReg()) : 0); 688 MO.setSubReg(0); 689 690 // A kill flag implies killing the full register. Add corresponding super 691 // register kill. 692 if (MO.isKill()) { 693 MI->addRegisterKilled(PhysReg, TRI, true); 694 return true; 695 } 696 697 // A <def,read-undef> of a sub-register requires an implicit def of the full 698 // register. 699 if (MO.isDef() && MO.isUndef()) 700 MI->addRegisterDefined(PhysReg, TRI); 701 702 return Dead; 703 } 704 705 // Handle special instruction operand like early clobbers and tied ops when 706 // there are additional physreg defines. 707 void RAFast::handleThroughOperands(MachineInstr *MI, 708 SmallVectorImpl<unsigned> &VirtDead) { 709 DEBUG(dbgs() << "Scanning for through registers:"); 710 SmallSet<unsigned, 8> ThroughRegs; 711 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { 712 MachineOperand &MO = MI->getOperand(i); 713 if (!MO.isReg()) continue; 714 unsigned Reg = MO.getReg(); 715 if (!TargetRegisterInfo::isVirtualRegister(Reg)) 716 continue; 717 if (MO.isEarlyClobber() || MI->isRegTiedToDefOperand(i) || 718 (MO.getSubReg() && MI->readsVirtualRegister(Reg))) { 719 if (ThroughRegs.insert(Reg).second) 720 DEBUG(dbgs() << ' ' << PrintReg(Reg)); 721 } 722 } 723 724 // If any physreg defines collide with preallocated through registers, 725 // we must spill and reallocate. 726 DEBUG(dbgs() << "\nChecking for physdef collisions.\n"); 727 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { 728 MachineOperand &MO = MI->getOperand(i); 729 if (!MO.isReg() || !MO.isDef()) continue; 730 unsigned Reg = MO.getReg(); 731 if (!Reg || !TargetRegisterInfo::isPhysicalRegister(Reg)) continue; 732 markRegUsedInInstr(Reg); 733 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) { 734 if (ThroughRegs.count(PhysRegState[*AI])) 735 definePhysReg(MI, *AI, regFree); 736 } 737 } 738 739 SmallVector<unsigned, 8> PartialDefs; 740 DEBUG(dbgs() << "Allocating tied uses.\n"); 741 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { 742 MachineOperand &MO = MI->getOperand(i); 743 if (!MO.isReg()) continue; 744 unsigned Reg = MO.getReg(); 745 if (!TargetRegisterInfo::isVirtualRegister(Reg)) continue; 746 if (MO.isUse()) { 747 unsigned DefIdx = 0; 748 if (!MI->isRegTiedToDefOperand(i, &DefIdx)) continue; 749 DEBUG(dbgs() << "Operand " << i << "("<< MO << ") is tied to operand " 750 << DefIdx << ".\n"); 751 LiveRegMap::iterator LRI = reloadVirtReg(MI, i, Reg, 0); 752 unsigned PhysReg = LRI->PhysReg; 753 setPhysReg(MI, i, PhysReg); 754 // Note: we don't update the def operand yet. That would cause the normal 755 // def-scan to attempt spilling. 756 } else if (MO.getSubReg() && MI->readsVirtualRegister(Reg)) { 757 DEBUG(dbgs() << "Partial redefine: " << MO << "\n"); 758 // Reload the register, but don't assign to the operand just yet. 759 // That would confuse the later phys-def processing pass. 760 LiveRegMap::iterator LRI = reloadVirtReg(MI, i, Reg, 0); 761 PartialDefs.push_back(LRI->PhysReg); 762 } 763 } 764 765 DEBUG(dbgs() << "Allocating early clobbers.\n"); 766 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { 767 MachineOperand &MO = MI->getOperand(i); 768 if (!MO.isReg()) continue; 769 unsigned Reg = MO.getReg(); 770 if (!TargetRegisterInfo::isVirtualRegister(Reg)) continue; 771 if (!MO.isEarlyClobber()) 772 continue; 773 // Note: defineVirtReg may invalidate MO. 774 LiveRegMap::iterator LRI = defineVirtReg(MI, i, Reg, 0); 775 unsigned PhysReg = LRI->PhysReg; 776 if (setPhysReg(MI, i, PhysReg)) 777 VirtDead.push_back(Reg); 778 } 779 780 // Restore UsedInInstr to a state usable for allocating normal virtual uses. 781 UsedInInstr.clear(); 782 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { 783 MachineOperand &MO = MI->getOperand(i); 784 if (!MO.isReg() || (MO.isDef() && !MO.isEarlyClobber())) continue; 785 unsigned Reg = MO.getReg(); 786 if (!Reg || !TargetRegisterInfo::isPhysicalRegister(Reg)) continue; 787 DEBUG(dbgs() << "\tSetting " << PrintReg(Reg, TRI) 788 << " as used in instr\n"); 789 markRegUsedInInstr(Reg); 790 } 791 792 // Also mark PartialDefs as used to avoid reallocation. 793 for (unsigned i = 0, e = PartialDefs.size(); i != e; ++i) 794 markRegUsedInInstr(PartialDefs[i]); 795 } 796 797 void RAFast::AllocateBasicBlock() { 798 DEBUG(dbgs() << "\nAllocating " << *MBB); 799 800 PhysRegState.assign(TRI->getNumRegs(), regDisabled); 801 assert(LiveVirtRegs.empty() && "Mapping not cleared from last block?"); 802 803 MachineBasicBlock::iterator MII = MBB->begin(); 804 805 // Add live-in registers as live. 806 for (const auto &LI : MBB->liveins()) 807 if (MRI->isAllocatable(LI.PhysReg)) 808 definePhysReg(MII, LI.PhysReg, regReserved); 809 810 SmallVector<unsigned, 8> VirtDead; 811 SmallVector<MachineInstr*, 32> Coalesced; 812 813 // Otherwise, sequentially allocate each instruction in the MBB. 814 while (MII != MBB->end()) { 815 MachineInstr *MI = MII++; 816 const MCInstrDesc &MCID = MI->getDesc(); 817 DEBUG({ 818 dbgs() << "\n>> " << *MI << "Regs:"; 819 for (unsigned Reg = 1, E = TRI->getNumRegs(); Reg != E; ++Reg) { 820 if (PhysRegState[Reg] == regDisabled) continue; 821 dbgs() << " " << TRI->getName(Reg); 822 switch(PhysRegState[Reg]) { 823 case regFree: 824 break; 825 case regReserved: 826 dbgs() << "*"; 827 break; 828 default: { 829 dbgs() << '=' << PrintReg(PhysRegState[Reg]); 830 LiveRegMap::iterator I = findLiveVirtReg(PhysRegState[Reg]); 831 assert(I != LiveVirtRegs.end() && "Missing VirtReg entry"); 832 if (I->Dirty) 833 dbgs() << "*"; 834 assert(I->PhysReg == Reg && "Bad inverse map"); 835 break; 836 } 837 } 838 } 839 dbgs() << '\n'; 840 // Check that LiveVirtRegs is the inverse. 841 for (LiveRegMap::iterator i = LiveVirtRegs.begin(), 842 e = LiveVirtRegs.end(); i != e; ++i) { 843 assert(TargetRegisterInfo::isVirtualRegister(i->VirtReg) && 844 "Bad map key"); 845 assert(TargetRegisterInfo::isPhysicalRegister(i->PhysReg) && 846 "Bad map value"); 847 assert(PhysRegState[i->PhysReg] == i->VirtReg && "Bad inverse map"); 848 } 849 }); 850 851 // Debug values are not allowed to change codegen in any way. 852 if (MI->isDebugValue()) { 853 bool ScanDbgValue = true; 854 while (ScanDbgValue) { 855 ScanDbgValue = false; 856 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { 857 MachineOperand &MO = MI->getOperand(i); 858 if (!MO.isReg()) continue; 859 unsigned Reg = MO.getReg(); 860 if (!TargetRegisterInfo::isVirtualRegister(Reg)) continue; 861 LiveRegMap::iterator LRI = findLiveVirtReg(Reg); 862 if (LRI != LiveVirtRegs.end()) 863 setPhysReg(MI, i, LRI->PhysReg); 864 else { 865 int SS = StackSlotForVirtReg[Reg]; 866 if (SS == -1) { 867 // We can't allocate a physreg for a DebugValue, sorry! 868 DEBUG(dbgs() << "Unable to allocate vreg used by DBG_VALUE"); 869 MO.setReg(0); 870 } 871 else { 872 // Modify DBG_VALUE now that the value is in a spill slot. 873 bool IsIndirect = MI->isIndirectDebugValue(); 874 uint64_t Offset = IsIndirect ? MI->getOperand(1).getImm() : 0; 875 const MDNode *Var = MI->getDebugVariable(); 876 const MDNode *Expr = MI->getDebugExpression(); 877 DebugLoc DL = MI->getDebugLoc(); 878 MachineBasicBlock *MBB = MI->getParent(); 879 assert( 880 cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(DL) && 881 "Expected inlined-at fields to agree"); 882 MachineInstr *NewDV = BuildMI(*MBB, MBB->erase(MI), DL, 883 TII->get(TargetOpcode::DBG_VALUE)) 884 .addFrameIndex(SS) 885 .addImm(Offset) 886 .addMetadata(Var) 887 .addMetadata(Expr); 888 DEBUG(dbgs() << "Modifying debug info due to spill:" 889 << "\t" << *NewDV); 890 // Scan NewDV operands from the beginning. 891 MI = NewDV; 892 ScanDbgValue = true; 893 break; 894 } 895 } 896 LiveDbgValueMap[Reg].push_back(MI); 897 } 898 } 899 // Next instruction. 900 continue; 901 } 902 903 // If this is a copy, we may be able to coalesce. 904 unsigned CopySrc = 0, CopyDst = 0, CopySrcSub = 0, CopyDstSub = 0; 905 if (MI->isCopy()) { 906 CopyDst = MI->getOperand(0).getReg(); 907 CopySrc = MI->getOperand(1).getReg(); 908 CopyDstSub = MI->getOperand(0).getSubReg(); 909 CopySrcSub = MI->getOperand(1).getSubReg(); 910 } 911 912 // Track registers used by instruction. 913 UsedInInstr.clear(); 914 915 // First scan. 916 // Mark physreg uses and early clobbers as used. 917 // Find the end of the virtreg operands 918 unsigned VirtOpEnd = 0; 919 bool hasTiedOps = false; 920 bool hasEarlyClobbers = false; 921 bool hasPartialRedefs = false; 922 bool hasPhysDefs = false; 923 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { 924 MachineOperand &MO = MI->getOperand(i); 925 // Make sure MRI knows about registers clobbered by regmasks. 926 if (MO.isRegMask()) { 927 MRI->addPhysRegsUsedFromRegMask(MO.getRegMask()); 928 continue; 929 } 930 if (!MO.isReg()) continue; 931 unsigned Reg = MO.getReg(); 932 if (!Reg) continue; 933 if (TargetRegisterInfo::isVirtualRegister(Reg)) { 934 VirtOpEnd = i+1; 935 if (MO.isUse()) { 936 hasTiedOps = hasTiedOps || 937 MCID.getOperandConstraint(i, MCOI::TIED_TO) != -1; 938 } else { 939 if (MO.isEarlyClobber()) 940 hasEarlyClobbers = true; 941 if (MO.getSubReg() && MI->readsVirtualRegister(Reg)) 942 hasPartialRedefs = true; 943 } 944 continue; 945 } 946 if (!MRI->isAllocatable(Reg)) continue; 947 if (MO.isUse()) { 948 usePhysReg(MO); 949 } else if (MO.isEarlyClobber()) { 950 definePhysReg(MI, Reg, (MO.isImplicit() || MO.isDead()) ? 951 regFree : regReserved); 952 hasEarlyClobbers = true; 953 } else 954 hasPhysDefs = true; 955 } 956 957 // The instruction may have virtual register operands that must be allocated 958 // the same register at use-time and def-time: early clobbers and tied 959 // operands. If there are also physical defs, these registers must avoid 960 // both physical defs and uses, making them more constrained than normal 961 // operands. 962 // Similarly, if there are multiple defs and tied operands, we must make 963 // sure the same register is allocated to uses and defs. 964 // We didn't detect inline asm tied operands above, so just make this extra 965 // pass for all inline asm. 966 if (MI->isInlineAsm() || hasEarlyClobbers || hasPartialRedefs || 967 (hasTiedOps && (hasPhysDefs || MCID.getNumDefs() > 1))) { 968 handleThroughOperands(MI, VirtDead); 969 // Don't attempt coalescing when we have funny stuff going on. 970 CopyDst = 0; 971 // Pretend we have early clobbers so the use operands get marked below. 972 // This is not necessary for the common case of a single tied use. 973 hasEarlyClobbers = true; 974 } 975 976 // Second scan. 977 // Allocate virtreg uses. 978 for (unsigned i = 0; i != VirtOpEnd; ++i) { 979 MachineOperand &MO = MI->getOperand(i); 980 if (!MO.isReg()) continue; 981 unsigned Reg = MO.getReg(); 982 if (!TargetRegisterInfo::isVirtualRegister(Reg)) continue; 983 if (MO.isUse()) { 984 LiveRegMap::iterator LRI = reloadVirtReg(MI, i, Reg, CopyDst); 985 unsigned PhysReg = LRI->PhysReg; 986 CopySrc = (CopySrc == Reg || CopySrc == PhysReg) ? PhysReg : 0; 987 if (setPhysReg(MI, i, PhysReg)) 988 killVirtReg(LRI); 989 } 990 } 991 992 // Track registers defined by instruction - early clobbers and tied uses at 993 // this point. 994 UsedInInstr.clear(); 995 if (hasEarlyClobbers) { 996 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { 997 MachineOperand &MO = MI->getOperand(i); 998 if (!MO.isReg()) continue; 999 unsigned Reg = MO.getReg(); 1000 if (!Reg || !TargetRegisterInfo::isPhysicalRegister(Reg)) continue; 1001 // Look for physreg defs and tied uses. 1002 if (!MO.isDef() && !MI->isRegTiedToDefOperand(i)) continue; 1003 markRegUsedInInstr(Reg); 1004 } 1005 } 1006 1007 unsigned DefOpEnd = MI->getNumOperands(); 1008 if (MI->isCall()) { 1009 // Spill all virtregs before a call. This serves one purpose: If an 1010 // exception is thrown, the landing pad is going to expect to find 1011 // registers in their spill slots. 1012 // Note: although this is appealing to just consider all definitions 1013 // as call-clobbered, this is not correct because some of those 1014 // definitions may be used later on and we do not want to reuse 1015 // those for virtual registers in between. 1016 DEBUG(dbgs() << " Spilling remaining registers before call.\n"); 1017 spillAll(MI); 1018 1019 // The imp-defs are skipped below, but we still need to mark those 1020 // registers as used by the function. 1021 SkippedInstrs.insert(&MCID); 1022 } 1023 1024 // Third scan. 1025 // Allocate defs and collect dead defs. 1026 for (unsigned i = 0; i != DefOpEnd; ++i) { 1027 MachineOperand &MO = MI->getOperand(i); 1028 if (!MO.isReg() || !MO.isDef() || !MO.getReg() || MO.isEarlyClobber()) 1029 continue; 1030 unsigned Reg = MO.getReg(); 1031 1032 if (TargetRegisterInfo::isPhysicalRegister(Reg)) { 1033 if (!MRI->isAllocatable(Reg)) continue; 1034 definePhysReg(MI, Reg, MO.isDead() ? regFree : regReserved); 1035 continue; 1036 } 1037 LiveRegMap::iterator LRI = defineVirtReg(MI, i, Reg, CopySrc); 1038 unsigned PhysReg = LRI->PhysReg; 1039 if (setPhysReg(MI, i, PhysReg)) { 1040 VirtDead.push_back(Reg); 1041 CopyDst = 0; // cancel coalescing; 1042 } else 1043 CopyDst = (CopyDst == Reg || CopyDst == PhysReg) ? PhysReg : 0; 1044 } 1045 1046 // Kill dead defs after the scan to ensure that multiple defs of the same 1047 // register are allocated identically. We didn't need to do this for uses 1048 // because we are crerating our own kill flags, and they are always at the 1049 // last use. 1050 for (unsigned i = 0, e = VirtDead.size(); i != e; ++i) 1051 killVirtReg(VirtDead[i]); 1052 VirtDead.clear(); 1053 1054 if (CopyDst && CopyDst == CopySrc && CopyDstSub == CopySrcSub) { 1055 DEBUG(dbgs() << "-- coalescing: " << *MI); 1056 Coalesced.push_back(MI); 1057 } else { 1058 DEBUG(dbgs() << "<< " << *MI); 1059 } 1060 } 1061 1062 // Spill all physical registers holding virtual registers now. 1063 DEBUG(dbgs() << "Spilling live registers at end of block.\n"); 1064 spillAll(MBB->getFirstTerminator()); 1065 1066 // Erase all the coalesced copies. We are delaying it until now because 1067 // LiveVirtRegs might refer to the instrs. 1068 for (unsigned i = 0, e = Coalesced.size(); i != e; ++i) 1069 MBB->erase(Coalesced[i]); 1070 NumCopies += Coalesced.size(); 1071 1072 DEBUG(MBB->dump()); 1073 } 1074 1075 /// runOnMachineFunction - Register allocate the whole function 1076 /// 1077 bool RAFast::runOnMachineFunction(MachineFunction &Fn) { 1078 DEBUG(dbgs() << "********** FAST REGISTER ALLOCATION **********\n" 1079 << "********** Function: " << Fn.getName() << '\n'); 1080 MF = &Fn; 1081 MRI = &MF->getRegInfo(); 1082 TRI = MF->getSubtarget().getRegisterInfo(); 1083 TII = MF->getSubtarget().getInstrInfo(); 1084 MRI->freezeReservedRegs(Fn); 1085 RegClassInfo.runOnMachineFunction(Fn); 1086 UsedInInstr.clear(); 1087 UsedInInstr.setUniverse(TRI->getNumRegUnits()); 1088 1089 assert(!MRI->isSSA() && "regalloc requires leaving SSA"); 1090 1091 // initialize the virtual->physical register map to have a 'null' 1092 // mapping for all virtual registers 1093 StackSlotForVirtReg.resize(MRI->getNumVirtRegs()); 1094 LiveVirtRegs.setUniverse(MRI->getNumVirtRegs()); 1095 1096 // Loop over all of the basic blocks, eliminating virtual register references 1097 for (MachineFunction::iterator MBBi = Fn.begin(), MBBe = Fn.end(); 1098 MBBi != MBBe; ++MBBi) { 1099 MBB = &*MBBi; 1100 AllocateBasicBlock(); 1101 } 1102 1103 // All machine operands and other references to virtual registers have been 1104 // replaced. Remove the virtual registers. 1105 MRI->clearVirtRegs(); 1106 1107 SkippedInstrs.clear(); 1108 StackSlotForVirtReg.clear(); 1109 LiveDbgValueMap.clear(); 1110 return true; 1111 } 1112 1113 FunctionPass *llvm::createFastRegisterAllocator() { 1114 return new RAFast(); 1115 } 1116