diff options
author | Chris Lattner <sabre@nondot.org> | 2005-12-20 07:56:31 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-12-20 07:56:31 +0000 |
commit | 85e42b45ac05223882f24c17bff66b89daa0d6fc (patch) | |
tree | 57c98ef1137921115043ccacffe880e41ffe5812 /lib/Target/Sparc/SparcRegisterInfo.cpp | |
parent | a5386b0823039ae5ccec81707d9c8a4ed7c4fb03 (diff) | |
download | external_llvm-85e42b45ac05223882f24c17bff66b89daa0d6fc.zip external_llvm-85e42b45ac05223882f24c17bff66b89daa0d6fc.tar.gz external_llvm-85e42b45ac05223882f24c17bff66b89daa0d6fc.tar.bz2 |
Reserve G1 for frame offset stuff and use it to handle large stack frames.
For example, instead of emitting this:
test:
save -40112, %o6, %o6 ;; imm too large
add %i6, -40016, %o0 ;; imm too large
call caller
nop
restore %g0, %g0, %g0
retl
nop
emit this:
test:
sethi 4194264, %g1
or %g1, 848, %g1
save %o6, %g1, %o6
sethi 4194264, %g1
add %g1, %i6, %g1
add %i1, 944, %o0
call caller
nop
restore %g0, %g0, %g0
retl
nop
which doesn't cause the assembler to barf.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24880 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Sparc/SparcRegisterInfo.cpp')
-rw-r--r-- | lib/Target/Sparc/SparcRegisterInfo.cpp | 44 |
1 files changed, 37 insertions, 7 deletions
diff --git a/lib/Target/Sparc/SparcRegisterInfo.cpp b/lib/Target/Sparc/SparcRegisterInfo.cpp index 7b25856..49cbbc0 100644 --- a/lib/Target/Sparc/SparcRegisterInfo.cpp +++ b/lib/Target/Sparc/SparcRegisterInfo.cpp @@ -96,15 +96,30 @@ SparcV8RegisterInfo::eliminateFrameIndex(MachineBasicBlock::iterator II) const { int FrameIndex = MI.getOperand(i).getFrameIndex(); - // Replace frame index with a frame pointer reference - MI.SetMachineOperandReg (i, V8::I6); - // Addressable stack objects are accessed using neg. offsets from %fp MachineFunction &MF = *MI.getParent()->getParent(); int Offset = MF.getFrameInfo()->getObjectOffset(FrameIndex) + MI.getOperand(i+1).getImmedValue(); - // note: Offset < 0 - MI.SetMachineOperandConst (i+1, MachineOperand::MO_SignExtendedImmed, Offset); + + // Replace frame index with a frame pointer reference. + if (Offset >= -4096 && Offset <= 4095) { + // If the offset is small enough to fit in the immediate field, directly + // encode it. + MI.SetMachineOperandReg(i, V8::I6); + MI.SetMachineOperandConst(i+1, MachineOperand::MO_SignExtendedImmed,Offset); + } else { + // Otherwise, emit a G1 = SETHI %hi(offset). FIXME: it would be better to + // scavenge a register here instead of reserving G1 all of the time. + unsigned OffHi = (unsigned)Offset >> 10U; + BuildMI(*MI.getParent(), II, V8::SETHIi, 1, V8::G1).addImm(OffHi); + // Emit G1 = G1 + I6 + BuildMI(*MI.getParent(), II, V8::ADDrr, 2, + V8::G1).addReg(V8::G1).addReg(V8::I6); + // Insert: G1+%lo(offset) into the user. + MI.SetMachineOperandReg(i, V8::I1); + MI.SetMachineOperandConst(i+1, MachineOperand::MO_SignExtendedImmed, + Offset & ((1 << 10)-1)); + } } void SparcV8RegisterInfo:: @@ -128,8 +143,23 @@ void SparcV8RegisterInfo::emitPrologue(MachineFunction &MF) const { // Round up to next doubleword boundary -- a double-word boundary // is required by the ABI. NumBytes = (NumBytes + 7) & ~7; - BuildMI(MBB, MBB.begin(), V8::SAVEri, 2, - V8::O6).addImm(-NumBytes).addReg(V8::O6); + NumBytes = -NumBytes; + + if (NumBytes >= -4096) { + BuildMI(MBB, MBB.begin(), V8::SAVEri, 2, + V8::O6).addImm(NumBytes).addReg(V8::O6); + } else { + MachineBasicBlock::iterator InsertPt = MBB.begin(); + // Emit this the hard way. This clobbers G1 which we always know is + // available here. + unsigned OffHi = (unsigned)NumBytes >> 10U; + BuildMI(MBB, InsertPt, V8::SETHIi, 1, V8::G1).addImm(OffHi); + // Emit G1 = G1 + I6 + BuildMI(MBB, InsertPt, V8::ORri, 2, V8::G1) + .addReg(V8::G1).addImm(NumBytes & ((1 << 10)-1)); + BuildMI(MBB, InsertPt, V8::SAVErr, 2, + V8::O6).addReg(V8::O6).addReg(V8::G1); + } } void SparcV8RegisterInfo::emitEpilogue(MachineFunction &MF, |