1 //===-- MachineCSE.cpp - Machine Common Subexpression Elimination Pass ----===// 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 pass performs global common subexpression elimination on machine 11 // instructions using a scoped hash table based value numbering scheme. It 12 // must be run while the machine function is still in SSA form. 13 // 14 //===----------------------------------------------------------------------===// 15 16 #define DEBUG_TYPE "machine-cse" 17 #include "llvm/CodeGen/Passes.h" 18 #include "llvm/CodeGen/MachineDominators.h" 19 #include "llvm/CodeGen/MachineInstr.h" 20 #include "llvm/CodeGen/MachineRegisterInfo.h" 21 #include "llvm/Analysis/AliasAnalysis.h" 22 #include "llvm/Target/TargetInstrInfo.h" 23 #include "llvm/ADT/DenseMap.h" 24 #include "llvm/ADT/ScopedHashTable.h" 25 #include "llvm/ADT/SmallSet.h" 26 #include "llvm/ADT/Statistic.h" 27 #include "llvm/Support/Debug.h" 28 #include "llvm/Support/RecyclingAllocator.h" 29 using namespace llvm; 30 31 STATISTIC(NumCoalesces, "Number of copies coalesced"); 32 STATISTIC(NumCSEs, "Number of common subexpression eliminated"); 33 STATISTIC(NumPhysCSEs, 34 "Number of physreg referencing common subexpr eliminated"); 35 STATISTIC(NumCrossBBCSEs, 36 "Number of cross-MBB physreg referencing CS eliminated"); 37 STATISTIC(NumCommutes, "Number of copies coalesced after commuting"); 38 39 namespace { 40 class MachineCSE : public MachineFunctionPass { 41 const TargetInstrInfo *TII; 42 const TargetRegisterInfo *TRI; 43 AliasAnalysis *AA; 44 MachineDominatorTree *DT; 45 MachineRegisterInfo *MRI; 46 public: 47 static char ID; // Pass identification 48 MachineCSE() : MachineFunctionPass(ID), LookAheadLimit(5), CurrVN(0) { 49 initializeMachineCSEPass(*PassRegistry::getPassRegistry()); 50 } 51 52 virtual bool runOnMachineFunction(MachineFunction &MF); 53 54 virtual void getAnalysisUsage(AnalysisUsage &AU) const { 55 AU.setPreservesCFG(); 56 MachineFunctionPass::getAnalysisUsage(AU); 57 AU.addRequired<AliasAnalysis>(); 58 AU.addPreservedID(MachineLoopInfoID); 59 AU.addRequired<MachineDominatorTree>(); 60 AU.addPreserved<MachineDominatorTree>(); 61 } 62 63 virtual void releaseMemory() { 64 ScopeMap.clear(); 65 Exps.clear(); 66 AllocatableRegs.clear(); 67 ReservedRegs.clear(); 68 } 69 70 private: 71 const unsigned LookAheadLimit; 72 typedef RecyclingAllocator<BumpPtrAllocator, 73 ScopedHashTableVal<MachineInstr*, unsigned> > AllocatorTy; 74 typedef ScopedHashTable<MachineInstr*, unsigned, 75 MachineInstrExpressionTrait, AllocatorTy> ScopedHTType; 76 typedef ScopedHTType::ScopeTy ScopeType; 77 DenseMap<MachineBasicBlock*, ScopeType*> ScopeMap; 78 ScopedHTType VNT; 79 SmallVector<MachineInstr*, 64> Exps; 80 unsigned CurrVN; 81 BitVector AllocatableRegs; 82 BitVector ReservedRegs; 83 84 bool PerformTrivialCoalescing(MachineInstr *MI, MachineBasicBlock *MBB); 85 bool isPhysDefTriviallyDead(unsigned Reg, 86 MachineBasicBlock::const_iterator I, 87 MachineBasicBlock::const_iterator E) const; 88 bool hasLivePhysRegDefUses(const MachineInstr *MI, 89 const MachineBasicBlock *MBB, 90 SmallSet<unsigned,8> &PhysRefs, 91 SmallVector<unsigned,2> &PhysDefs) const; 92 bool PhysRegDefsReach(MachineInstr *CSMI, MachineInstr *MI, 93 SmallSet<unsigned,8> &PhysRefs, 94 SmallVector<unsigned,2> &PhysDefs, 95 bool &NonLocal) const; 96 bool isCSECandidate(MachineInstr *MI); 97 bool isProfitableToCSE(unsigned CSReg, unsigned Reg, 98 MachineInstr *CSMI, MachineInstr *MI); 99 void EnterScope(MachineBasicBlock *MBB); 100 void ExitScope(MachineBasicBlock *MBB); 101 bool ProcessBlock(MachineBasicBlock *MBB); 102 void ExitScopeIfDone(MachineDomTreeNode *Node, 103 DenseMap<MachineDomTreeNode*, unsigned> &OpenChildren); 104 bool PerformCSE(MachineDomTreeNode *Node); 105 }; 106 } // end anonymous namespace 107 108 char MachineCSE::ID = 0; 109 char &llvm::MachineCSEID = MachineCSE::ID; 110 INITIALIZE_PASS_BEGIN(MachineCSE, "machine-cse", 111 "Machine Common Subexpression Elimination", false, false) 112 INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree) 113 INITIALIZE_AG_DEPENDENCY(AliasAnalysis) 114 INITIALIZE_PASS_END(MachineCSE, "machine-cse", 115 "Machine Common Subexpression Elimination", false, false) 116 117 bool MachineCSE::PerformTrivialCoalescing(MachineInstr *MI, 118 MachineBasicBlock *MBB) { 119 bool Changed = false; 120 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { 121 MachineOperand &MO = MI->getOperand(i); 122 if (!MO.isReg() || !MO.isUse()) 123 continue; 124 unsigned Reg = MO.getReg(); 125 if (!TargetRegisterInfo::isVirtualRegister(Reg)) 126 continue; 127 if (!MRI->hasOneNonDBGUse(Reg)) 128 // Only coalesce single use copies. This ensure the copy will be 129 // deleted. 130 continue; 131 MachineInstr *DefMI = MRI->getVRegDef(Reg); 132 if (DefMI->getParent() != MBB) 133 continue; 134 if (!DefMI->isCopy()) 135 continue; 136 unsigned SrcReg = DefMI->getOperand(1).getReg(); 137 if (!TargetRegisterInfo::isVirtualRegister(SrcReg)) 138 continue; 139 if (DefMI->getOperand(0).getSubReg() || DefMI->getOperand(1).getSubReg()) 140 continue; 141 if (!MRI->constrainRegClass(SrcReg, MRI->getRegClass(Reg))) 142 continue; 143 DEBUG(dbgs() << "Coalescing: " << *DefMI); 144 DEBUG(dbgs() << "*** to: " << *MI); 145 MO.setReg(SrcReg); 146 MRI->clearKillFlags(SrcReg); 147 DefMI->eraseFromParent(); 148 ++NumCoalesces; 149 Changed = true; 150 } 151 152 return Changed; 153 } 154 155 bool 156 MachineCSE::isPhysDefTriviallyDead(unsigned Reg, 157 MachineBasicBlock::const_iterator I, 158 MachineBasicBlock::const_iterator E) const { 159 unsigned LookAheadLeft = LookAheadLimit; 160 while (LookAheadLeft) { 161 // Skip over dbg_value's. 162 while (I != E && I->isDebugValue()) 163 ++I; 164 165 if (I == E) 166 // Reached end of block, register is obviously dead. 167 return true; 168 169 bool SeenDef = false; 170 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) { 171 const MachineOperand &MO = I->getOperand(i); 172 if (MO.isRegMask() && MO.clobbersPhysReg(Reg)) 173 SeenDef = true; 174 if (!MO.isReg() || !MO.getReg()) 175 continue; 176 if (!TRI->regsOverlap(MO.getReg(), Reg)) 177 continue; 178 if (MO.isUse()) 179 // Found a use! 180 return false; 181 SeenDef = true; 182 } 183 if (SeenDef) 184 // See a def of Reg (or an alias) before encountering any use, it's 185 // trivially dead. 186 return true; 187 188 --LookAheadLeft; 189 ++I; 190 } 191 return false; 192 } 193 194 /// hasLivePhysRegDefUses - Return true if the specified instruction read/write 195 /// physical registers (except for dead defs of physical registers). It also 196 /// returns the physical register def by reference if it's the only one and the 197 /// instruction does not uses a physical register. 198 bool MachineCSE::hasLivePhysRegDefUses(const MachineInstr *MI, 199 const MachineBasicBlock *MBB, 200 SmallSet<unsigned,8> &PhysRefs, 201 SmallVector<unsigned,2> &PhysDefs) const{ 202 MachineBasicBlock::const_iterator I = MI; I = llvm::next(I); 203 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { 204 const MachineOperand &MO = MI->getOperand(i); 205 if (!MO.isReg()) 206 continue; 207 unsigned Reg = MO.getReg(); 208 if (!Reg) 209 continue; 210 if (TargetRegisterInfo::isVirtualRegister(Reg)) 211 continue; 212 // If the def is dead, it's ok. But the def may not marked "dead". That's 213 // common since this pass is run before livevariables. We can scan 214 // forward a few instructions and check if it is obviously dead. 215 if (MO.isDef() && 216 (MO.isDead() || isPhysDefTriviallyDead(Reg, I, MBB->end()))) 217 continue; 218 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) 219 PhysRefs.insert(*AI); 220 if (MO.isDef()) 221 PhysDefs.push_back(Reg); 222 } 223 224 return !PhysRefs.empty(); 225 } 226 227 bool MachineCSE::PhysRegDefsReach(MachineInstr *CSMI, MachineInstr *MI, 228 SmallSet<unsigned,8> &PhysRefs, 229 SmallVector<unsigned,2> &PhysDefs, 230 bool &NonLocal) const { 231 // For now conservatively returns false if the common subexpression is 232 // not in the same basic block as the given instruction. The only exception 233 // is if the common subexpression is in the sole predecessor block. 234 const MachineBasicBlock *MBB = MI->getParent(); 235 const MachineBasicBlock *CSMBB = CSMI->getParent(); 236 237 bool CrossMBB = false; 238 if (CSMBB != MBB) { 239 if (MBB->pred_size() != 1 || *MBB->pred_begin() != CSMBB) 240 return false; 241 242 for (unsigned i = 0, e = PhysDefs.size(); i != e; ++i) { 243 if (AllocatableRegs.test(PhysDefs[i]) || ReservedRegs.test(PhysDefs[i])) 244 // Avoid extending live range of physical registers if they are 245 //allocatable or reserved. 246 return false; 247 } 248 CrossMBB = true; 249 } 250 MachineBasicBlock::const_iterator I = CSMI; I = llvm::next(I); 251 MachineBasicBlock::const_iterator E = MI; 252 MachineBasicBlock::const_iterator EE = CSMBB->end(); 253 unsigned LookAheadLeft = LookAheadLimit; 254 while (LookAheadLeft) { 255 // Skip over dbg_value's. 256 while (I != E && I != EE && I->isDebugValue()) 257 ++I; 258 259 if (I == EE) { 260 assert(CrossMBB && "Reaching end-of-MBB without finding MI?"); 261 (void)CrossMBB; 262 CrossMBB = false; 263 NonLocal = true; 264 I = MBB->begin(); 265 EE = MBB->end(); 266 continue; 267 } 268 269 if (I == E) 270 return true; 271 272 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) { 273 const MachineOperand &MO = I->getOperand(i); 274 // RegMasks go on instructions like calls that clobber lots of physregs. 275 // Don't attempt to CSE across such an instruction. 276 if (MO.isRegMask()) 277 return false; 278 if (!MO.isReg() || !MO.isDef()) 279 continue; 280 unsigned MOReg = MO.getReg(); 281 if (TargetRegisterInfo::isVirtualRegister(MOReg)) 282 continue; 283 if (PhysRefs.count(MOReg)) 284 return false; 285 } 286 287 --LookAheadLeft; 288 ++I; 289 } 290 291 return false; 292 } 293 294 bool MachineCSE::isCSECandidate(MachineInstr *MI) { 295 if (MI->isLabel() || MI->isPHI() || MI->isImplicitDef() || 296 MI->isKill() || MI->isInlineAsm() || MI->isDebugValue()) 297 return false; 298 299 // Ignore copies. 300 if (MI->isCopyLike()) 301 return false; 302 303 // Ignore stuff that we obviously can't move. 304 if (MI->mayStore() || MI->isCall() || MI->isTerminator() || 305 MI->hasUnmodeledSideEffects()) 306 return false; 307 308 if (MI->mayLoad()) { 309 // Okay, this instruction does a load. As a refinement, we allow the target 310 // to decide whether the loaded value is actually a constant. If so, we can 311 // actually use it as a load. 312 if (!MI->isInvariantLoad(AA)) 313 // FIXME: we should be able to hoist loads with no other side effects if 314 // there are no other instructions which can change memory in this loop. 315 // This is a trivial form of alias analysis. 316 return false; 317 } 318 return true; 319 } 320 321 /// isProfitableToCSE - Return true if it's profitable to eliminate MI with a 322 /// common expression that defines Reg. 323 bool MachineCSE::isProfitableToCSE(unsigned CSReg, unsigned Reg, 324 MachineInstr *CSMI, MachineInstr *MI) { 325 // FIXME: Heuristics that works around the lack the live range splitting. 326 327 // Heuristics #1: Don't CSE "cheap" computation if the def is not local or in 328 // an immediate predecessor. We don't want to increase register pressure and 329 // end up causing other computation to be spilled. 330 if (MI->isAsCheapAsAMove()) { 331 MachineBasicBlock *CSBB = CSMI->getParent(); 332 MachineBasicBlock *BB = MI->getParent(); 333 if (CSBB != BB && !CSBB->isSuccessor(BB)) 334 return false; 335 } 336 337 // Heuristics #2: If the expression doesn't not use a vr and the only use 338 // of the redundant computation are copies, do not cse. 339 bool HasVRegUse = false; 340 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { 341 const MachineOperand &MO = MI->getOperand(i); 342 if (MO.isReg() && MO.isUse() && 343 TargetRegisterInfo::isVirtualRegister(MO.getReg())) { 344 HasVRegUse = true; 345 break; 346 } 347 } 348 if (!HasVRegUse) { 349 bool HasNonCopyUse = false; 350 for (MachineRegisterInfo::use_nodbg_iterator I = MRI->use_nodbg_begin(Reg), 351 E = MRI->use_nodbg_end(); I != E; ++I) { 352 MachineInstr *Use = &*I; 353 // Ignore copies. 354 if (!Use->isCopyLike()) { 355 HasNonCopyUse = true; 356 break; 357 } 358 } 359 if (!HasNonCopyUse) 360 return false; 361 } 362 363 // Heuristics #3: If the common subexpression is used by PHIs, do not reuse 364 // it unless the defined value is already used in the BB of the new use. 365 bool HasPHI = false; 366 SmallPtrSet<MachineBasicBlock*, 4> CSBBs; 367 for (MachineRegisterInfo::use_nodbg_iterator I = MRI->use_nodbg_begin(CSReg), 368 E = MRI->use_nodbg_end(); I != E; ++I) { 369 MachineInstr *Use = &*I; 370 HasPHI |= Use->isPHI(); 371 CSBBs.insert(Use->getParent()); 372 } 373 374 if (!HasPHI) 375 return true; 376 return CSBBs.count(MI->getParent()); 377 } 378 379 void MachineCSE::EnterScope(MachineBasicBlock *MBB) { 380 DEBUG(dbgs() << "Entering: " << MBB->getName() << '\n'); 381 ScopeType *Scope = new ScopeType(VNT); 382 ScopeMap[MBB] = Scope; 383 } 384 385 void MachineCSE::ExitScope(MachineBasicBlock *MBB) { 386 DEBUG(dbgs() << "Exiting: " << MBB->getName() << '\n'); 387 DenseMap<MachineBasicBlock*, ScopeType*>::iterator SI = ScopeMap.find(MBB); 388 assert(SI != ScopeMap.end()); 389 ScopeMap.erase(SI); 390 delete SI->second; 391 } 392 393 bool MachineCSE::ProcessBlock(MachineBasicBlock *MBB) { 394 bool Changed = false; 395 396 SmallVector<std::pair<unsigned, unsigned>, 8> CSEPairs; 397 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end(); I != E; ) { 398 MachineInstr *MI = &*I; 399 ++I; 400 401 if (!isCSECandidate(MI)) 402 continue; 403 404 bool FoundCSE = VNT.count(MI); 405 if (!FoundCSE) { 406 // Look for trivial copy coalescing opportunities. 407 if (PerformTrivialCoalescing(MI, MBB)) { 408 Changed = true; 409 410 // After coalescing MI itself may become a copy. 411 if (MI->isCopyLike()) 412 continue; 413 FoundCSE = VNT.count(MI); 414 } 415 } 416 417 // Commute commutable instructions. 418 bool Commuted = false; 419 if (!FoundCSE && MI->isCommutable()) { 420 MachineInstr *NewMI = TII->commuteInstruction(MI); 421 if (NewMI) { 422 Commuted = true; 423 FoundCSE = VNT.count(NewMI); 424 if (NewMI != MI) { 425 // New instruction. It doesn't need to be kept. 426 NewMI->eraseFromParent(); 427 Changed = true; 428 } else if (!FoundCSE) 429 // MI was changed but it didn't help, commute it back! 430 (void)TII->commuteInstruction(MI); 431 } 432 } 433 434 // If the instruction defines physical registers and the values *may* be 435 // used, then it's not safe to replace it with a common subexpression. 436 // It's also not safe if the instruction uses physical registers. 437 bool CrossMBBPhysDef = false; 438 SmallSet<unsigned, 8> PhysRefs; 439 SmallVector<unsigned, 2> PhysDefs; 440 if (FoundCSE && hasLivePhysRegDefUses(MI, MBB, PhysRefs, PhysDefs)) { 441 FoundCSE = false; 442 443 // ... Unless the CS is local or is in the sole predecessor block 444 // and it also defines the physical register which is not clobbered 445 // in between and the physical register uses were not clobbered. 446 unsigned CSVN = VNT.lookup(MI); 447 MachineInstr *CSMI = Exps[CSVN]; 448 if (PhysRegDefsReach(CSMI, MI, PhysRefs, PhysDefs, CrossMBBPhysDef)) 449 FoundCSE = true; 450 } 451 452 if (!FoundCSE) { 453 VNT.insert(MI, CurrVN++); 454 Exps.push_back(MI); 455 continue; 456 } 457 458 // Found a common subexpression, eliminate it. 459 unsigned CSVN = VNT.lookup(MI); 460 MachineInstr *CSMI = Exps[CSVN]; 461 DEBUG(dbgs() << "Examining: " << *MI); 462 DEBUG(dbgs() << "*** Found a common subexpression: " << *CSMI); 463 464 // Check if it's profitable to perform this CSE. 465 bool DoCSE = true; 466 unsigned NumDefs = MI->getDesc().getNumDefs(); 467 for (unsigned i = 0, e = MI->getNumOperands(); NumDefs && i != e; ++i) { 468 MachineOperand &MO = MI->getOperand(i); 469 if (!MO.isReg() || !MO.isDef()) 470 continue; 471 unsigned OldReg = MO.getReg(); 472 unsigned NewReg = CSMI->getOperand(i).getReg(); 473 if (OldReg == NewReg) 474 continue; 475 476 assert(TargetRegisterInfo::isVirtualRegister(OldReg) && 477 TargetRegisterInfo::isVirtualRegister(NewReg) && 478 "Do not CSE physical register defs!"); 479 480 if (!isProfitableToCSE(NewReg, OldReg, CSMI, MI)) { 481 DEBUG(dbgs() << "*** Not profitable, avoid CSE!\n"); 482 DoCSE = false; 483 break; 484 } 485 486 // Don't perform CSE if the result of the old instruction cannot exist 487 // within the register class of the new instruction. 488 const TargetRegisterClass *OldRC = MRI->getRegClass(OldReg); 489 if (!MRI->constrainRegClass(NewReg, OldRC)) { 490 DEBUG(dbgs() << "*** Not the same register class, avoid CSE!\n"); 491 DoCSE = false; 492 break; 493 } 494 495 CSEPairs.push_back(std::make_pair(OldReg, NewReg)); 496 --NumDefs; 497 } 498 499 // Actually perform the elimination. 500 if (DoCSE) { 501 for (unsigned i = 0, e = CSEPairs.size(); i != e; ++i) { 502 MRI->replaceRegWith(CSEPairs[i].first, CSEPairs[i].second); 503 MRI->clearKillFlags(CSEPairs[i].second); 504 } 505 506 if (CrossMBBPhysDef) { 507 // Add physical register defs now coming in from a predecessor to MBB 508 // livein list. 509 while (!PhysDefs.empty()) { 510 unsigned LiveIn = PhysDefs.pop_back_val(); 511 if (!MBB->isLiveIn(LiveIn)) 512 MBB->addLiveIn(LiveIn); 513 } 514 ++NumCrossBBCSEs; 515 } 516 517 MI->eraseFromParent(); 518 ++NumCSEs; 519 if (!PhysRefs.empty()) 520 ++NumPhysCSEs; 521 if (Commuted) 522 ++NumCommutes; 523 Changed = true; 524 } else { 525 VNT.insert(MI, CurrVN++); 526 Exps.push_back(MI); 527 } 528 CSEPairs.clear(); 529 } 530 531 return Changed; 532 } 533 534 /// ExitScopeIfDone - Destroy scope for the MBB that corresponds to the given 535 /// dominator tree node if its a leaf or all of its children are done. Walk 536 /// up the dominator tree to destroy ancestors which are now done. 537 void 538 MachineCSE::ExitScopeIfDone(MachineDomTreeNode *Node, 539 DenseMap<MachineDomTreeNode*, unsigned> &OpenChildren) { 540 if (OpenChildren[Node]) 541 return; 542 543 // Pop scope. 544 ExitScope(Node->getBlock()); 545 546 // Now traverse upwards to pop ancestors whose offsprings are all done. 547 while (MachineDomTreeNode *Parent = Node->getIDom()) { 548 unsigned Left = --OpenChildren[Parent]; 549 if (Left != 0) 550 break; 551 ExitScope(Parent->getBlock()); 552 Node = Parent; 553 } 554 } 555 556 bool MachineCSE::PerformCSE(MachineDomTreeNode *Node) { 557 SmallVector<MachineDomTreeNode*, 32> Scopes; 558 SmallVector<MachineDomTreeNode*, 8> WorkList; 559 DenseMap<MachineDomTreeNode*, unsigned> OpenChildren; 560 561 CurrVN = 0; 562 563 // Perform a DFS walk to determine the order of visit. 564 WorkList.push_back(Node); 565 do { 566 Node = WorkList.pop_back_val(); 567 Scopes.push_back(Node); 568 const std::vector<MachineDomTreeNode*> &Children = Node->getChildren(); 569 unsigned NumChildren = Children.size(); 570 OpenChildren[Node] = NumChildren; 571 for (unsigned i = 0; i != NumChildren; ++i) { 572 MachineDomTreeNode *Child = Children[i]; 573 WorkList.push_back(Child); 574 } 575 } while (!WorkList.empty()); 576 577 // Now perform CSE. 578 bool Changed = false; 579 for (unsigned i = 0, e = Scopes.size(); i != e; ++i) { 580 MachineDomTreeNode *Node = Scopes[i]; 581 MachineBasicBlock *MBB = Node->getBlock(); 582 EnterScope(MBB); 583 Changed |= ProcessBlock(MBB); 584 // If it's a leaf node, it's done. Traverse upwards to pop ancestors. 585 ExitScopeIfDone(Node, OpenChildren); 586 } 587 588 return Changed; 589 } 590 591 bool MachineCSE::runOnMachineFunction(MachineFunction &MF) { 592 TII = MF.getTarget().getInstrInfo(); 593 TRI = MF.getTarget().getRegisterInfo(); 594 MRI = &MF.getRegInfo(); 595 AA = &getAnalysis<AliasAnalysis>(); 596 DT = &getAnalysis<MachineDominatorTree>(); 597 AllocatableRegs = TRI->getAllocatableSet(MF); 598 ReservedRegs = TRI->getReservedRegs(MF); 599 return PerformCSE(DT->getRootNode()); 600 } 601