blob: d05dff8928bac29d2213133ea292a431f2507876 [file] [log] [blame]
Dan Gohmanad1cc9c2009-12-07 19:04:31 +00001; RUN: llc < %s -tailcallopt -march=x86-64 -post-RA-scheduler=true | FileCheck %s
Dan Gohman9178de12009-08-05 01:29:28 +00002
Arnold Schwaighoferfda6f1a2008-04-30 09:19:47 +00003; Check that lowered arguments on the stack do not overwrite each other.
Dan Gohman9178de12009-08-05 01:29:28 +00004; Add %in1 %p1 to a different temporary register (%eax).
5; CHECK: movl %edi, %eax
Dan Gohman9178de12009-08-05 01:29:28 +00006; Move param %in1 to temp register (%r10d).
7; CHECK: movl 40(%rsp), %r10d
Daniel Dunbaree41cf22009-11-13 01:01:58 +00008; Move param %in2 to stack.
9; CHECK: movl %r10d, 32(%rsp)
Dan Gohman2d5efd22009-11-16 23:43:42 +000010; Move result of addition to stack.
11; CHECK: movl %eax, 40(%rsp)
Dan Gohman9178de12009-08-05 01:29:28 +000012; Eventually, do a TAILCALL
13; CHECK: TAILCALL
Arnold Schwaighoferfda6f1a2008-04-30 09:19:47 +000014
Evan Cheng6e2f5a42009-10-18 19:57:27 +000015declare fastcc i32 @tailcallee(i32 %p1, i32 %p2, i32 %p3, i32 %p4, i32 %p5, i32 %p6, i32 %a, i32 %b) nounwind
Arnold Schwaighoferfda6f1a2008-04-30 09:19:47 +000016
Evan Cheng6e2f5a42009-10-18 19:57:27 +000017define fastcc i32 @tailcaller(i32 %p1, i32 %p2, i32 %p3, i32 %p4, i32 %p5, i32 %p6, i32 %in1, i32 %in2) nounwind {
Arnold Schwaighoferfda6f1a2008-04-30 09:19:47 +000018entry:
19 %tmp = add i32 %in1, %p1
Arnold Schwaighofera8726f02009-06-12 16:26:57 +000020 %retval = tail call fastcc i32 @tailcallee(i32 %p1, i32 %p2, i32 %p3, i32 %p4, i32 %p5, i32 %p6, i32 %in2,i32 %tmp)
Arnold Schwaighoferfda6f1a2008-04-30 09:19:47 +000021 ret i32 %retval
22}
23