mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-16 16:16:45 +00:00
RangeIsDefinedByCopyFromReg() should check for subreg_to_reg, insert_subreg,
and extract_subreg as a "copy" that defines a valno. Also fixes a typo. These two issues prevent a simple subreg coalescing from happening before. llvm-svn: 86022
This commit is contained in:
parent
d8ab8fbe9f
commit
801415706c
@ -1369,7 +1369,7 @@ bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) {
|
||||
if (SrcSubIdx)
|
||||
SrcSubRC = SrcRC->getSubRegisterRegClass(SrcSubIdx);
|
||||
assert(SrcSubRC && "Illegal subregister index");
|
||||
if (!SrcSubRC->contains(DstReg)) {
|
||||
if (!SrcSubRC->contains(DstSubReg)) {
|
||||
DEBUG(errs() << "\tIncompatible source regclass: "
|
||||
<< tri_->getName(DstSubReg) << " not in "
|
||||
<< SrcSubRC->getName() << ".\n");
|
||||
@ -1834,6 +1834,25 @@ static bool InVector(VNInfo *Val, const SmallVector<VNInfo*, 8> &V) {
|
||||
return std::find(V.begin(), V.end(), Val) != V.end();
|
||||
}
|
||||
|
||||
static bool isValNoDefMove(const MachineInstr *MI, unsigned DR, unsigned SR,
|
||||
const TargetInstrInfo *TII,
|
||||
const TargetRegisterInfo *TRI) {
|
||||
unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
|
||||
if (TII->isMoveInstr(*MI, SrcReg, DstReg, SrcSubIdx, DstSubIdx))
|
||||
;
|
||||
else if (MI->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG) {
|
||||
DstReg = MI->getOperand(0).getReg();
|
||||
SrcReg = MI->getOperand(1).getReg();
|
||||
} else if (MI->getOpcode() == TargetInstrInfo::SUBREG_TO_REG ||
|
||||
MI->getOpcode() == TargetInstrInfo::INSERT_SUBREG) {
|
||||
DstReg = MI->getOperand(0).getReg();
|
||||
SrcReg = MI->getOperand(2).getReg();
|
||||
} else
|
||||
return false;
|
||||
return (SrcReg == SR || TRI->isSuperRegister(SR, SrcReg)) &&
|
||||
(DstReg == DR || TRI->isSuperRegister(DR, DstReg));
|
||||
}
|
||||
|
||||
/// RangeIsDefinedByCopyFromReg - Return true if the specified live range of
|
||||
/// the specified live interval is defined by a copy from the specified
|
||||
/// register.
|
||||
@ -1850,12 +1869,9 @@ bool SimpleRegisterCoalescing::RangeIsDefinedByCopyFromReg(LiveInterval &li,
|
||||
// It's a sub-register live interval, we may not have precise information.
|
||||
// Re-compute it.
|
||||
MachineInstr *DefMI = li_->getInstructionFromIndex(LR->start);
|
||||
unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
|
||||
if (DefMI &&
|
||||
tii_->isMoveInstr(*DefMI, SrcReg, DstReg, SrcSubIdx, DstSubIdx) &&
|
||||
DstReg == li.reg && SrcReg == Reg) {
|
||||
if (DefMI && isValNoDefMove(DefMI, li.reg, Reg, tii_, tri_)) {
|
||||
// Cache computed info.
|
||||
LR->valno->def = LR->start;
|
||||
LR->valno->def = LR->start;
|
||||
LR->valno->setCopy(DefMI);
|
||||
return true;
|
||||
}
|
||||
|
15
test/CodeGen/X86/2009-11-04-SubregCoalescingBug.ll
Normal file
15
test/CodeGen/X86/2009-11-04-SubregCoalescingBug.ll
Normal file
@ -0,0 +1,15 @@
|
||||
; RUN: llc < %s -mtriple=x86_64-apple-darwin11 | FileCheck %s
|
||||
; rdar://7362871
|
||||
|
||||
define void @bar(i32 %b, i32 %a) nounwind optsize ssp {
|
||||
entry:
|
||||
; CHECK: leal 15(%rsi), %edi
|
||||
; CHECK-NOT: movl
|
||||
; CHECK: call _foo
|
||||
%0 = add i32 %a, 15 ; <i32> [#uses=1]
|
||||
%1 = zext i32 %0 to i64 ; <i64> [#uses=1]
|
||||
tail call void @foo(i64 %1) nounwind
|
||||
ret void
|
||||
}
|
||||
|
||||
declare void @foo(i64)
|
Loading…
Reference in New Issue
Block a user