Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(691)

Side by Side Diff: tests_lit/llvm2ice_tests/align-spill-locations.ll

Issue 600043002: Clean up run script to use for testing Subzero. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nits. Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698