2008-04-30 09:19:47 +00:00
|
|
|
; RUN: llvm-as < %s | llc -tailcallopt -march=x86-64 | grep TAILCALL
|
|
|
|
; Check that lowered arguments on the stack do not overwrite each other.
|
|
|
|
; Move param %in1 to temp register (%eax).
|
|
|
|
; RUN: llvm-as < %s | llc -tailcallopt -march=x86-64 -x86-asm-syntax=att | grep {movl 40(%rsp), %eax}
|
|
|
|
; Add %in1 %p1 to another temporary register (%r9d).
|
2009-06-12 16:26:57 +00:00
|
|
|
; RUN: llvm-as < %s | llc -tailcallopt -march=x86-64 -x86-asm-syntax=att | grep {movl %edi, %r10d}
|
|
|
|
; RUN: llvm-as < %s | llc -tailcallopt -march=x86-64 -x86-asm-syntax=att | grep {addl 32(%rsp), %r10d}
|
2008-04-30 09:19:47 +00:00
|
|
|
; Move result of addition to stack.
|
2009-06-12 16:26:57 +00:00
|
|
|
; RUN: llvm-as < %s | llc -tailcallopt -march=x86-64 -x86-asm-syntax=att | grep {movl %r10d, 40(%rsp)}
|
2008-04-30 09:19:47 +00:00
|
|
|
; Move param %in2 to stack.
|
|
|
|
; RUN: llvm-as < %s | llc -tailcallopt -march=x86-64 -x86-asm-syntax=att | grep {movl %eax, 32(%rsp)}
|
|
|
|
|
2009-06-12 16:26:57 +00:00
|
|
|
declare fastcc i32 @tailcallee(i32 %p1, i32 %p2, i32 %p3, i32 %p4, i32 %p5, i32 %p6, i32 %a, i32 %b)
|
2008-04-30 09:19:47 +00:00
|
|
|
|
2009-06-12 16:26:57 +00:00
|
|
|
define fastcc i32 @tailcaller(i32 %p1, i32 %p2, i32 %p3, i32 %p4, i32 %p5, i32 %p6, i32 %in1, i32 %in2) {
|
2008-04-30 09:19:47 +00:00
|
|
|
entry:
|
|
|
|
%tmp = add i32 %in1, %p1
|
2009-06-12 16:26:57 +00:00
|
|
|
%retval = tail call fastcc i32 @tailcallee(i32 %p1, i32 %p2, i32 %p3, i32 %p4, i32 %p5, i32 %p6, i32 %in2,i32 %tmp)
|
2008-04-30 09:19:47 +00:00
|
|
|
ret i32 %retval
|
|
|
|
}
|
|
|
|
|