Simon Dardis | d2ed8ab | 2016-09-27 13:15:54 +0000 | [diff] [blame^] | 1 | ; RUN: llc -march=mips -mcpu=mips32 -O0 -relocation-model=pic -mips-tail-calls=1 < %s | FileCheck \ |
Simon Dardis | 9a66bbe | 2016-09-21 09:43:40 +0000 | [diff] [blame] | 2 | ; RUN: %s -check-prefix=MIPS32 |
| 3 | ; RUN: llc -march=mips64 -mcpu=mips64 -O0 -relocation-model=pic -target-abi n64 \ |
Simon Dardis | d2ed8ab | 2016-09-27 13:15:54 +0000 | [diff] [blame^] | 4 | ; RUN: -mips-tail-calls=1 < %s | FileCheck %s -check-prefix=MIPS64 |
Simon Dardis | 9a66bbe | 2016-09-21 09:43:40 +0000 | [diff] [blame] | 5 | ; RUN: llc -march=mips64 -mcpu=mips64 -O0 -relocation-model=pic -target-abi n32 \ |
Simon Dardis | d2ed8ab | 2016-09-27 13:15:54 +0000 | [diff] [blame^] | 6 | ; RUN: -mips-tail-calls=1 < %s | FileCheck %s -check-prefix=MIPS64 |
Simon Dardis | 9a66bbe | 2016-09-21 09:43:40 +0000 | [diff] [blame] | 7 | |
| 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 |
| 21 | declare i32 @func2(i32, i32, i32, i32, i32, i32) |
| 22 | |
| 23 | define i32 @func1(i32 %a, i32 %b, i32 %c, i32 %d, i32 %e, i32 %f){ |
| 24 | |
| 25 | ; MIPS32: lw ${{[0-9]+}}, {{[0-9]+}}($sp) |
| 26 | ; MIPS32-NEXT: lw ${{[0-9]+}}, {{[0-9]+}}($sp) |
| 27 | ; MIPS32-NEXT: sw ${{[0-9]+}}, {{[0-9]+}}($sp) |
| 28 | ; MIPS32-NEXT: sw ${{[0-9]+}}, {{[0-9]+}}($sp) |
| 29 | %retval = tail call i32 @func1(i32 %a, i32 %f, i32 %c, i32 %d, i32 %e, i32 %b) |
| 30 | |
| 31 | ret i32 %retval |
| 32 | } |
| 33 | |
| 34 | ; N64, N32 cases: N64 and N32 both pass 8 arguments in registers. The order |
| 35 | ; of the loads doesn't matter, but they have to become before the |
| 36 | ; stores |
| 37 | |
| 38 | declare i64 @func4(i64, i64, i64, i64, i64, i64, i64, i64, i64, i64) |
| 39 | |
| 40 | define i64 @func3(i64 %a, i64 %b, i64 %c, i64 %d, |
| 41 | i64 %e, i64 %f, i64 %g, i64 %h, |
| 42 | i64 %i, i64 %j){ |
| 43 | |
| 44 | ; MIPS64: ld ${{[0-9]+}}, {{[0-9]+}}($sp) |
| 45 | ; MIPS64-NEXT: ld ${{[0-9]+}}, {{[0-9]+}}($sp) |
| 46 | ; MIPS64-NEXT: sd ${{[0-9]+}}, {{[0-9]+}}($sp) |
| 47 | ; MIPS64-NEXT: sd ${{[0-9]+}}, {{[0-9]+}}($sp) |
| 48 | %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) |
| 49 | |
| 50 | ret i64 %retval |
| 51 | } |
| 52 | |
| 53 | |