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

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

Issue 927433002: Convert a few lit tests that use "lc2i | llvm-mc | llvm-objdump" to use p2i. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: comment Created 5 years, 10 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
« no previous file with comments | « tests_lit/llvm2ice_tests/8bit.pnacl.ll ('k') | tests_lit/llvm2ice_tests/ebp_args.ll » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ; This checks to ensure that Subzero aligns spill slots. 1 ; This checks to ensure that Subzero aligns spill slots.
2 2
3 ; TODO(kschimpf) Find out why lc2i needed. 3 ; RUN: %p2i -i %s --args --verbose none \
4 ; REQUIRES: allow_llvm_ir_as_input
5 ; RUN: %lc2i -i %s --args --verbose none \
6 ; RUN: | llvm-mc -triple=i686-none-nacl -filetype=obj \ 4 ; RUN: | llvm-mc -triple=i686-none-nacl -filetype=obj \
7 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s 5 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s
8 ; RUN: %lc2i -i %s --args -O2 --verbose none \ 6 ; RUN: %p2i -i %s --args -O2 --verbose none \
9 ; RUN: | llvm-mc -triple=i686-none-nacl -filetype=obj \ 7 ; RUN: | llvm-mc -triple=i686-none-nacl -filetype=obj \
10 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s 8 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s
11 9
12 ; The location of the stack slot for a variable is inferred from the 10 ; The location of the stack slot for a variable is inferred from the
13 ; return sequence. 11 ; return sequence.
14 12
15 ; In this file, "global" refers to a variable with a live range across 13 ; In this file, "global" refers to a variable with a live range across
16 ; multiple basic blocks (not an LLVM global variable) and "local" 14 ; multiple basic blocks (not an LLVM global variable) and "local"
17 ; refers to a variable that is live in only a single basic block. 15 ; refers to a variable that is live in only a single basic block.
18 16
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 ; CHECK-LABEL: align_local_vector_and_global_float: 82 ; CHECK-LABEL: align_local_vector_and_global_float:
85 ; CHECK: cvtsi2ss xmm0, eax 83 ; CHECK: cvtsi2ss xmm0, eax
86 ; CHECK-NEXT: movss dword ptr [esp + {{12|28}}], xmm0 84 ; CHECK-NEXT: movss dword ptr [esp + {{12|28}}], xmm0
87 ; CHECK: movups xmm0, xmmword ptr [{{esp|esp \+ 16}}] 85 ; CHECK: movups xmm0, xmmword ptr [{{esp|esp \+ 16}}]
88 ; CHECK-NEXT: add esp, 44 86 ; CHECK-NEXT: add esp, 44
89 ; CHECK-NEXT: ret 87 ; CHECK-NEXT: ret
90 } 88 }
91 89
92 declare void @ForceXmmSpillsAndUseAlloca(i8*) 90 declare void @ForceXmmSpillsAndUseAlloca(i8*)
93 declare void @ForceXmmSpillsAndUseFloat(float) 91 declare void @ForceXmmSpillsAndUseFloat(float)
OLDNEW
« no previous file with comments | « tests_lit/llvm2ice_tests/8bit.pnacl.ll ('k') | tests_lit/llvm2ice_tests/ebp_args.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698