blob: dda24a2ca163fdc55c1ac0aaceec9fe3728a869c [file] [log] [blame]
Simon Dardisd2ed8ab2016-09-27 13:15:54 +00001; RUN: llc -march=mips -mcpu=mips32 -O0 -relocation-model=pic -mips-tail-calls=1 < %s | FileCheck \
Simon Dardis9a66bbe2016-09-21 09:43:40 +00002; RUN: %s -check-prefix=MIPS32
3; RUN: llc -march=mips64 -mcpu=mips64 -O0 -relocation-model=pic -target-abi n64 \
Simon Dardisd2ed8ab2016-09-27 13:15:54 +00004; RUN: -mips-tail-calls=1 < %s | FileCheck %s -check-prefix=MIPS64
Simon Dardis9a66bbe2016-09-21 09:43:40 +00005; RUN: llc -march=mips64 -mcpu=mips64 -O0 -relocation-model=pic -target-abi n32 \
Simon Dardisd2ed8ab2016-09-27 13:15:54 +00006; RUN: -mips-tail-calls=1 < %s | FileCheck %s -check-prefix=MIPS64
Simon Dardis9a66bbe2016-09-21 09:43:40 +00007
8
9; LLVM PR/30197
10; Test that the scheduler does not order loads and stores of arguments that
11; are passed on the stack such that the arguments of the caller are clobbered
12; too early.
13
14; This test is more fragile than I'd like. The -NEXT directives enforce an
15; assumption that any GOT related instructions will not appear between the
16; loads and stores.
17
18; O32 case: The last two arguments should appear at 16(sp), 20(sp). The order
19; of the loads doesn't matter, but they have to become before the
20; stores
Simon Dardis1dcb9112016-11-20 21:23:08 +000021define internal i32 @func2(i32 %a, i32 %b, i32 %c, i32 %d, i32 %e, i32 %f) {
22 %1 = add i32 %a, %b
23 %2 = add i32 %1, %c
24 %3 = add i32 %2, %d
25 %4 = add i32 %3, %e
26 %5 = add i32 %4, %f
27 ret i32 %5
28}
Simon Dardis9a66bbe2016-09-21 09:43:40 +000029
30define i32 @func1(i32 %a, i32 %b, i32 %c, i32 %d, i32 %e, i32 %f){
Vasileios Kalintiris3955b752016-10-18 13:05:42 +000031; MIPS32-LABEL: func1:
Simon Dardis9a66bbe2016-09-21 09:43:40 +000032
33; MIPS32: lw ${{[0-9]+}}, {{[0-9]+}}($sp)
34; MIPS32-NEXT: lw ${{[0-9]+}}, {{[0-9]+}}($sp)
35; MIPS32-NEXT: sw ${{[0-9]+}}, {{[0-9]+}}($sp)
36; MIPS32-NEXT: sw ${{[0-9]+}}, {{[0-9]+}}($sp)
Simon Dardis1dcb9112016-11-20 21:23:08 +000037 %retval = tail call i32 @func2(i32 %a, i32 %f, i32 %c, i32 %d, i32 %e, i32 %b)
Simon Dardis9a66bbe2016-09-21 09:43:40 +000038
39 ret i32 %retval
40}
41
42; N64, N32 cases: N64 and N32 both pass 8 arguments in registers. The order
43; of the loads doesn't matter, but they have to become before the
44; stores
45
Simon Dardis1dcb9112016-11-20 21:23:08 +000046define internal i64 @func4(i64 %a, i64 %b, i64 %c, i64 %d, i64 %e,
47 i64 %f, i64 %g, i64 %h, i64 %i, i64 %j) {
48 %1 = add i64 %a, %b
49 %2 = add i64 %1, %c
50 %3 = add i64 %2, %d
51 %4 = add i64 %3, %e
52 %5 = add i64 %4, %f
53 %6 = add i64 %1, %g
54 %7 = add i64 %2, %h
55 %8 = add i64 %3, %i
56 %9 = add i64 %4, %j
57 ret i64 %5
58}
Simon Dardis9a66bbe2016-09-21 09:43:40 +000059define i64 @func3(i64 %a, i64 %b, i64 %c, i64 %d,
60 i64 %e, i64 %f, i64 %g, i64 %h,
61 i64 %i, i64 %j){
Vasileios Kalintiris3955b752016-10-18 13:05:42 +000062; MIPS64-LABEL: func3:
Simon Dardis9a66bbe2016-09-21 09:43:40 +000063
64; MIPS64: ld ${{[0-9]+}}, {{[0-9]+}}($sp)
65; MIPS64-NEXT: ld ${{[0-9]+}}, {{[0-9]+}}($sp)
66; MIPS64-NEXT: sd ${{[0-9]+}}, {{[0-9]+}}($sp)
67; MIPS64-NEXT: sd ${{[0-9]+}}, {{[0-9]+}}($sp)
68 %retval = tail call i64 @func4(i64 %a, i64 %j, i64 %c, i64 %d, i64 %e, i64 %f, i64 %g, i64 %h, i64 %i, i64 %b)
69
70 ret i64 %retval
71}