diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-11-16 19:55:12 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-11-16 19:55:12 +0000 |
commit | fd900a2c07f54b4687315edf3df0ec99e4462942 (patch) | |
tree | c0c189054b6d8b135d9ee7fdb6243f160d3838e0 /lib/CodeGen | |
parent | 5a0a7ced12ed248c2a7b857d024d31030c627190 (diff) | |
download | external_llvm-fd900a2c07f54b4687315edf3df0ec99e4462942.zip external_llvm-fd900a2c07f54b4687315edf3df0ec99e4462942.tar.gz external_llvm-fd900a2c07f54b4687315edf3df0ec99e4462942.tar.bz2 |
Print out the register class of the current interval.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119374 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/RegAllocLinearScan.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/CodeGen/RegAllocLinearScan.cpp b/lib/CodeGen/RegAllocLinearScan.cpp index 81b9070..c0720fe 100644 --- a/lib/CodeGen/RegAllocLinearScan.cpp +++ b/lib/CodeGen/RegAllocLinearScan.cpp @@ -954,10 +954,11 @@ namespace { /// assignRegOrStackSlotAtInterval - assign a register if one is available, or /// spill. void RALinScan::assignRegOrStackSlotAtInterval(LiveInterval* cur) { - DEBUG(dbgs() << "\tallocating current interval: "); + const TargetRegisterClass *RC = mri_->getRegClass(cur->reg); + DEBUG(dbgs() << "\tallocating current interval from " + << RC->getName() << ": "); // This is an implicitly defined live interval, just assign any register. - const TargetRegisterClass *RC = mri_->getRegClass(cur->reg); if (cur->empty()) { unsigned physReg = vrm_->getRegAllocPref(cur->reg); if (!physReg) |