mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
5d566d918b
Instead of awkwardly encoding calling-convention information with ISD::CALL, ISD::FORMAL_ARGUMENTS, ISD::RET, and ISD::ARG_FLAGS nodes, TargetLowering provides three virtual functions for targets to override: LowerFormalArguments, LowerCall, and LowerRet, which replace the custom lowering done on the special nodes. They provide the same information, but in a more immediately usable format. This also reworks much of the target-independent tail call logic. The decision of whether or not to perform a tail call is now cleanly split between target-independent portions, and the target dependent portion in IsEligibleForTailCallOptimization. This also synchronizes all in-tree targets, to help enable future refactoring and feature work. llvm-svn: 78142
25 lines
901 B
LLVM
25 lines
901 B
LLVM
; RUN: llvm-as < %s | llc -tailcallopt -march=x86-64 | FileCheck %s
|
|
|
|
; Check that lowered arguments on the stack do not overwrite each other.
|
|
; Add %in1 %p1 to a different temporary register (%eax).
|
|
; CHECK: movl %edi, %eax
|
|
; CHECK: addl 32(%rsp), %eax
|
|
; Move param %in1 to temp register (%r10d).
|
|
; CHECK: movl 40(%rsp), %r10d
|
|
; Move result of addition to stack.
|
|
; CHECK: movl %eax, 40(%rsp)
|
|
; Move param %in2 to stack.
|
|
; CHECK: movl %r10d, 32(%rsp)
|
|
; Eventually, do a TAILCALL
|
|
; CHECK: TAILCALL
|
|
|
|
declare fastcc i32 @tailcallee(i32 %p1, i32 %p2, i32 %p3, i32 %p4, i32 %p5, i32 %p6, i32 %a, i32 %b)
|
|
|
|
define fastcc i32 @tailcaller(i32 %p1, i32 %p2, i32 %p3, i32 %p4, i32 %p5, i32 %p6, i32 %in1, i32 %in2) {
|
|
entry:
|
|
%tmp = add i32 %in1, %p1
|
|
%retval = tail call fastcc i32 @tailcallee(i32 %p1, i32 %p2, i32 %p3, i32 %p4, i32 %p5, i32 %p6, i32 %in2,i32 %tmp)
|
|
ret i32 %retval
|
|
}
|
|
|