blob: 064219d97db2d5427f07eef824faa23980bc6478 [file] [log] [blame]
Dan Gohman36a09472009-09-08 23:54:48 +00001; RUN: llc < %s -tailcallopt -march=x86-64 | FileCheck %s
Dan Gohman98ca4f22009-08-05 01:29:28 +00002
Arnold Schwaighoferd2ef5232008-04-30 09:19:47 +00003; Check that lowered arguments on the stack do not overwrite each other.
Dan Gohman98ca4f22009-08-05 01:29:28 +00004; Add %in1 %p1 to a different temporary register (%eax).
5; CHECK: movl %edi, %eax
Dan Gohman98ca4f22009-08-05 01:29:28 +00006; Move param %in1 to temp register (%r10d).
7; CHECK: movl 40(%rsp), %r10d
Evan Chengd36076e2009-10-18 19:57:27 +00008; Move result of addition to stack.
9; CHECK: movl %eax, 40(%rsp)
Daniel Dunbar62424952009-11-13 01:01:58 +000010; Move param %in2 to stack.
11; CHECK: movl %r10d, 32(%rsp)
Dan Gohman98ca4f22009-08-05 01:29:28 +000012; Eventually, do a TAILCALL
13; CHECK: TAILCALL
Arnold Schwaighoferd2ef5232008-04-30 09:19:47 +000014
Evan Chengd36076e2009-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 Schwaighoferd2ef5232008-04-30 09:19:47 +000016
Evan Chengd36076e2009-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 Schwaighoferd2ef5232008-04-30 09:19:47 +000018entry:
19 %tmp = add i32 %in1, %p1
Arnold Schwaighoferbbd8c332009-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 Schwaighoferd2ef5232008-04-30 09:19:47 +000021 ret i32 %retval
22}
23