reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/CodeGen/RegAllocGreedy.cpp
 2922   Register PhysReg = VRM->getPhys(Reg);
 2925   Visited.insert(Reg);
 2926   RecoloringCandidates.push_back(Reg);
 2928   LLVM_DEBUG(dbgs() << "Trying to reconcile hints for: " << printReg(Reg, TRI)
 2932     Reg = RecoloringCandidates.pop_back_val();
 2935     if (Register::isPhysicalRegister(Reg))
 2938     assert(VRM->hasPhys(Reg) && "We have unallocated variable!!");
 2942     LiveInterval &LI = LIS->getInterval(Reg);
 2943     Register CurrPhys = VRM->getPhys(Reg);
 2946     if (CurrPhys != PhysReg && (!MRI->getRegClass(Reg)->contains(PhysReg) ||
 2950     LLVM_DEBUG(dbgs() << printReg(Reg, TRI) << '(' << printReg(CurrPhys, TRI)
 2955     collectHintInfo(Reg, Info);