mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-03 13:31:05 +00:00
Changed my mind. We now allow remat of instructions whose defs have subreg indices.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76100 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
914e50c841
commit
5f15992b77
@ -1157,11 +1157,6 @@ bool LiveIntervals::isReMaterializable(const LiveInterval &li,
|
|||||||
if (DisableReMat)
|
if (DisableReMat)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
// FIXME: For now, avoid remating instructions whose definition has a subreg
|
|
||||||
// index. It's just incredibly difficult to get right.
|
|
||||||
if (MI->findRegisterDefOperand(li.reg)->getSubReg())
|
|
||||||
return false;
|
|
||||||
|
|
||||||
if (MI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF)
|
if (MI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
|
@ -490,7 +490,14 @@ static void ReMaterialize(MachineBasicBlock &MBB,
|
|||||||
const TargetInstrInfo *TII,
|
const TargetInstrInfo *TII,
|
||||||
const TargetRegisterInfo *TRI,
|
const TargetRegisterInfo *TRI,
|
||||||
VirtRegMap &VRM) {
|
VirtRegMap &VRM) {
|
||||||
TII->reMaterialize(MBB, MII, DestReg, 0, VRM.getReMaterializedMI(Reg));
|
MachineInstr *ReMatDefMI = VRM.getReMaterializedMI(Reg);
|
||||||
|
#ifdef NDEBUG
|
||||||
|
const TargetInstrDesc &TID = ReMatDefMI->getDesc();
|
||||||
|
assert(TID.getNumDefs() != 1 &&
|
||||||
|
"Don't know how to remat instructions that define > 1 values!");
|
||||||
|
#endif
|
||||||
|
TII->reMaterialize(MBB, MII, DestReg,
|
||||||
|
ReMatDefMI->getOperand(0).getSubReg(), ReMatDefMI);
|
||||||
MachineInstr *NewMI = prior(MII);
|
MachineInstr *NewMI = prior(MII);
|
||||||
for (unsigned i = 0, e = NewMI->getNumOperands(); i != e; ++i) {
|
for (unsigned i = 0, e = NewMI->getNumOperands(); i != e; ++i) {
|
||||||
MachineOperand &MO = NewMI->getOperand(i);
|
MachineOperand &MO = NewMI->getOperand(i);
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
|
; RUN: llvm-as < %s | llc -mtriple=x86_64-apple-darwin | grep movd | count 1
|
||||||
; RUN: llvm-as < %s | llc -mtriple=x86_64-apple-darwin | grep movq
|
; RUN: llvm-as < %s | llc -mtriple=x86_64-apple-darwin | grep movq
|
||||||
; PR2677
|
; PR2677
|
||||||
|
|
||||||
; FIXME: llvm-as < %s | llc -mtriple=x86_64-apple-darwin | grep movd | count 1
|
|
||||||
; We now no longer allow instruction whose def has a sub-reg index to be
|
|
||||||
; rematerialized.
|
|
||||||
|
|
||||||
|
|
||||||
%struct.Bigint = type { %struct.Bigint*, i32, i32, i32, i32, [1 x i32] }
|
%struct.Bigint = type { %struct.Bigint*, i32, i32, i32, i32, [1 x i32] }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user