mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-04 05:31:51 +00:00
mi-sched: register pressure update tracing.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190178 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f9c2fa8341
commit
1251bcccc1
@ -577,8 +577,10 @@ void ScheduleDAGMI::updatePressureDiffs(ArrayRef<unsigned> LiveUses) {
|
||||
for (unsigned LUIdx = 0, LUEnd = LiveUses.size(); LUIdx != LUEnd; ++LUIdx) {
|
||||
/// FIXME: Currently assuming single-use physregs.
|
||||
unsigned Reg = LiveUses[LUIdx];
|
||||
DEBUG(dbgs() << " LiveReg: " << PrintVRegOrUnit(Reg, TRI) << "\n");
|
||||
if (!TRI->isVirtualRegister(Reg))
|
||||
continue;
|
||||
|
||||
// This may be called before CurrentBottom has been initialized. However,
|
||||
// BotRPTracker must have a valid position. We want the value live into the
|
||||
// instruction or live out of the block, so ask for the previous
|
||||
@ -598,6 +600,8 @@ void ScheduleDAGMI::updatePressureDiffs(ArrayRef<unsigned> LiveUses) {
|
||||
for (VReg2UseMap::iterator
|
||||
UI = VRegUses.find(Reg); UI != VRegUses.end(); ++UI) {
|
||||
SUnit *SU = UI->SU;
|
||||
DEBUG(dbgs() << " UpdateRegP: SU(" << SU->NodeNum << ") "
|
||||
<< *SU->getInstr());
|
||||
// If this use comes before the reaching def, it cannot be a last use, so
|
||||
// descrease its pressure change.
|
||||
if (!SU->isScheduled && SU != &ExitSU) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user