eced06738941f81a18f414bf3cd17003e5e6b009
[oota-llvm.git] / test / CodeGen / X86 / tailcallstack64.ll
1 ; RUN: llvm-as < %s | llc -tailcallopt -march=x86-64 | FileCheck %s
2
3 ; Check that lowered arguments on the stack do not overwrite each other.
4 ; Add %in1 %p1 to a different temporary register (%eax).
5 ; CHECK: movl  %edi, %eax
6 ; CHECK: addl  32(%rsp), %eax
7 ; Move param %in1 to temp register (%r10d).
8 ; CHECK: movl  40(%rsp), %r10d
9 ; Move result of addition to stack.
10 ; CHECK: movl  %eax, 40(%rsp)
11 ; Move param %in2 to stack.
12 ; CHECK: movl  %r10d, 32(%rsp)
13 ; Eventually, do a TAILCALL
14 ; CHECK: TAILCALL
15
16 declare fastcc i32 @tailcallee(i32 %p1, i32 %p2, i32 %p3, i32 %p4, i32 %p5, i32 %p6, i32 %a, i32 %b)
17
18 define fastcc i32 @tailcaller(i32 %p1, i32 %p2, i32 %p3, i32 %p4, i32 %p5, i32 %p6, i32 %in1, i32 %in2) {
19 entry:
20         %tmp = add i32 %in1, %p1
21         %retval = tail call fastcc i32 @tailcallee(i32 %p1, i32 %p2, i32 %p3, i32 %p4, i32 %p5, i32 %p6, i32 %in2,i32 %tmp)
22         ret i32 %retval
23 }
24