diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2012-08-08 23:44:01 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2012-08-08 23:44:01 +0000 |
commit | f71bc7b26742424691f887d204fb80c09e7deba6 (patch) | |
tree | 74ae350e8c745616e47bbda75ea3f4a9cc8793f9 /llvm/lib/CodeGen/RegAllocFast.cpp | |
parent | 18d0a5d50955097f9dfdc0843a528f6302c0fe69 (diff) | |
download | bcm5719-llvm-f71bc7b26742424691f887d204fb80c09e7deba6.tar.gz bcm5719-llvm-f71bc7b26742424691f887d204fb80c09e7deba6.zip |
Don't use getNextOperandForReg() in RAFast.
That particular optimization was probably premature anyway.
llvm-svn: 161541
Diffstat (limited to 'llvm/lib/CodeGen/RegAllocFast.cpp')
-rw-r--r-- | llvm/lib/CodeGen/RegAllocFast.cpp | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/llvm/lib/CodeGen/RegAllocFast.cpp b/llvm/lib/CodeGen/RegAllocFast.cpp index 8325f20e414..6b3a48eefd9 100644 --- a/llvm/lib/CodeGen/RegAllocFast.cpp +++ b/llvm/lib/CodeGen/RegAllocFast.cpp @@ -201,20 +201,16 @@ int RAFast::getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC) { /// its virtual register, and it is guaranteed to be a block-local register. /// bool RAFast::isLastUseOfLocalReg(MachineOperand &MO) { - // Check for non-debug uses or defs following MO. - // This is the most likely way to fail - fast path it. - MachineOperand *Next = &MO; - while ((Next = Next->getNextOperandForReg())) - if (!Next->isDebug()) - return false; - // If the register has ever been spilled or reloaded, we conservatively assume // it is a global register used in multiple blocks. if (StackSlotForVirtReg[MO.getReg()] != -1) return false; // Check that the use/def chain has exactly one operand - MO. - return &MRI->reg_nodbg_begin(MO.getReg()).getOperand() == &MO; + MachineRegisterInfo::reg_nodbg_iterator I = MRI->reg_nodbg_begin(MO.getReg()); + if (&I.getOperand() != &MO) + return false; + return ++I == MRI->reg_nodbg_end(); } /// addKillFlag - Set kill flags on last use of a virtual register. |