OLD | NEW |
1 ; This checks to ensure that Subzero aligns spill slots. | 1 ; This checks to ensure that Subzero aligns spill slots. |
2 | 2 |
3 ; RUN: %llvm2ice --verbose none %s | FileCheck %s | 3 ; TODO(kschimpf) Find out why lc2i needed. |
4 ; RUN: %llvm2ice -O2 --verbose none %s | FileCheck %s | 4 ; RUN: %lc2i -i %s --args --verbose none | FileCheck %s |
5 ; RUN: %llvm2ice --verbose none %s | FileCheck --check-prefix=ERRORS %s | 5 ; RUN: %lc2i -i %s --args -O2 --verbose none | FileCheck %s |
| 6 ; RUN: %lc2i -i %s --args --verbose none | FileCheck --check-prefix=ERRORS %s |
6 | 7 |
7 ; The location of the stack slot for a variable is inferred from the | 8 ; The location of the stack slot for a variable is inferred from the |
8 ; return sequence. | 9 ; return sequence. |
9 | 10 |
10 ; In this file, "global" refers to a variable with a live range across | 11 ; In this file, "global" refers to a variable with a live range across |
11 ; multiple basic blocks (not an LLVM global variable) and "local" | 12 ; multiple basic blocks (not an LLVM global variable) and "local" |
12 ; refers to a variable that is live in only a single basic block. | 13 ; refers to a variable that is live in only a single basic block. |
13 | 14 |
14 define <4 x i32> @align_global_vector(i32 %arg) { | 15 define <4 x i32> @align_global_vector(i32 %arg) { |
15 entry: | 16 entry: |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 ; CHECK-NEXT: movss dword ptr [esp+28], xmm0 | 82 ; CHECK-NEXT: movss dword ptr [esp+28], xmm0 |
82 ; CHECK: movups xmm0, xmmword ptr [esp] | 83 ; CHECK: movups xmm0, xmmword ptr [esp] |
83 ; CHECK-NEXT: add esp, 44 | 84 ; CHECK-NEXT: add esp, 44 |
84 ; CHECK-NEXT: ret | 85 ; CHECK-NEXT: ret |
85 } | 86 } |
86 | 87 |
87 declare void @ForceXmmSpillsAndUseAlloca(i8*) | 88 declare void @ForceXmmSpillsAndUseAlloca(i8*) |
88 declare void @ForceXmmSpillsAndUseFloat(float) | 89 declare void @ForceXmmSpillsAndUseFloat(float) |
89 | 90 |
90 ; ERRORS-NOT: ICE translation error | 91 ; ERRORS-NOT: ICE translation error |
OLD | NEW |