mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-06 06:33:24 +00:00
Don't merge restore with tail call instruction.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124167 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c0a7007d3a
commit
7cfa656ad8
@ -586,6 +586,11 @@ void ARMFrameLowering::emitPopInst(MachineBasicBlock &MBB,
|
|||||||
const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
|
const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
|
||||||
ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
|
ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
|
||||||
DebugLoc DL = MI->getDebugLoc();
|
DebugLoc DL = MI->getDebugLoc();
|
||||||
|
unsigned RetOpcode = MI->getOpcode();
|
||||||
|
bool isTailCall = (RetOpcode == ARM::TCRETURNdi ||
|
||||||
|
RetOpcode == ARM::TCRETURNdiND ||
|
||||||
|
RetOpcode == ARM::TCRETURNri ||
|
||||||
|
RetOpcode == ARM::TCRETURNriND);
|
||||||
|
|
||||||
SmallVector<unsigned, 4> Regs;
|
SmallVector<unsigned, 4> Regs;
|
||||||
unsigned i = CSI.size();
|
unsigned i = CSI.size();
|
||||||
@ -596,7 +601,7 @@ void ARMFrameLowering::emitPopInst(MachineBasicBlock &MBB,
|
|||||||
unsigned Reg = CSI[i-1].getReg();
|
unsigned Reg = CSI[i-1].getReg();
|
||||||
if (!(Func)(Reg, STI.isTargetDarwin())) continue;
|
if (!(Func)(Reg, STI.isTargetDarwin())) continue;
|
||||||
|
|
||||||
if (Reg == ARM::LR && !isVarArg && STI.hasV5TOps()) {
|
if (Reg == ARM::LR && !isTailCall && !isVarArg && STI.hasV5TOps()) {
|
||||||
Reg = ARM::PC;
|
Reg = ARM::PC;
|
||||||
LdmOpc = AFI->isThumbFunction() ? ARM::t2LDMIA_RET : ARM::LDMIA_RET;
|
LdmOpc = AFI->isThumbFunction() ? ARM::t2LDMIA_RET : ARM::LDMIA_RET;
|
||||||
// Fold the return instruction into the LDM.
|
// Fold the return instruction into the LDM.
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
; RUN: llc < %s -mtriple=armv6-apple-darwin -mattr=+vfp2 -arm-tail-calls | FileCheck %s -check-prefix=CHECKV6
|
; RUN: llc < %s -mtriple=armv6-apple-darwin -mattr=+vfp2 -arm-tail-calls | FileCheck %s -check-prefix=CHECKV6
|
||||||
; RUN: llc < %s -mtriple=armv6-linux-gnueabi -relocation-model=pic -mattr=+vfp2 -arm-tail-calls | FileCheck %s -check-prefix=CHECKELF
|
; RUN: llc < %s -mtriple=armv6-linux-gnueabi -relocation-model=pic -mattr=+vfp2 -arm-tail-calls | FileCheck %s -check-prefix=CHECKELF
|
||||||
|
; RUN: llc < %s -mtriple=thumbv7-apple-darwin -arm-tail-calls | FileCheck %s -check-prefix=CHECKT2
|
||||||
|
|
||||||
@t = weak global i32 ()* null ; <i32 ()**> [#uses=1]
|
@t = weak global i32 ()* null ; <i32 ()**> [#uses=1]
|
||||||
|
|
||||||
@ -63,3 +64,24 @@ entry:
|
|||||||
%0 = sdiv i32 %a, %b
|
%0 = sdiv i32 %a, %b
|
||||||
ret i32 %0
|
ret i32 %0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
; Make sure the tail call instruction isn't deleted
|
||||||
|
; rdar://8309338
|
||||||
|
declare void @foo() nounwind
|
||||||
|
|
||||||
|
define void @t7() nounwind {
|
||||||
|
entry:
|
||||||
|
; CHECKT2: t7:
|
||||||
|
; CHECKT2: blxeq _foo
|
||||||
|
; CHECKT2-NEXT: pop.w
|
||||||
|
; CHECKT2-NEXT: b.w _foo
|
||||||
|
br i1 undef, label %bb, label %bb1.lr.ph
|
||||||
|
|
||||||
|
bb1.lr.ph:
|
||||||
|
tail call void @foo() nounwind
|
||||||
|
unreachable
|
||||||
|
|
||||||
|
bb:
|
||||||
|
tail call void @foo() nounwind
|
||||||
|
ret void
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user