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

Side by Side Diff: tests_lit/llvm2ice_tests/branch-opt.ll

Issue 2384983002: Subzero: Remove --skip-unimplemented from ARM lit tests. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 4 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 ; Tests the branch optimizations under O2 (against a lack of 1 ; Tests the branch optimizations under O2 (against a lack of
2 ; optimizations under Om1). 2 ; optimizations under Om1).
3 3
4 ; RUN: %if --need=target_X8632 --command %p2i --filetype=obj --disassemble \ 4 ; RUN: %if --need=target_X8632 --command %p2i --filetype=obj --disassemble \
5 ; RUN: --target x8632 -i %s --args -O2 -allow-externally-defined-symbols \ 5 ; RUN: --target x8632 -i %s --args -O2 -allow-externally-defined-symbols \
6 ; RUN: | %if --need=target_X8632 --command FileCheck --check-prefix=O2 %s 6 ; RUN: | %if --need=target_X8632 --command FileCheck --check-prefix=O2 %s
7 7
8 ; RUN: %if --need=target_X8632 --command %p2i --filetype=obj --disassemble \ 8 ; RUN: %if --need=target_X8632 --command %p2i --filetype=obj --disassemble \
9 ; RUN: --target x8632 -i %s --args -Om1 -allow-externally-defined-symbols \ 9 ; RUN: --target x8632 -i %s --args -Om1 -allow-externally-defined-symbols \
10 ; RUN: | %if --need=target_X8632 --command FileCheck --check-prefix=OM1 %s 10 ; RUN: | %if --need=target_X8632 --command FileCheck --check-prefix=OM1 %s
11 11
12 ; TODO(jvoung): Stop skipping unimplemented parts (via --skip-unimplemented) 12 ; RUN: %if --need=target_ARM32_dump \
13 ; once enough infrastructure is in. Also, switch to --filetype=obj 13 ; RUN: --command %p2i --filetype=obj \
14 ; when possible.
15 ; RUN: %if --need=target_ARM32 --need=allow_dump \
16 ; RUN: --command %p2i --filetype=asm --assemble \
17 ; RUN: --disassemble --target arm32 -i %s --args -O2 \ 14 ; RUN: --disassemble --target arm32 -i %s --args -O2 \
18 ; RUN: -allow-externally-defined-symbols \ 15 ; RUN: -allow-externally-defined-symbols \
19 ; RUN: | %if --need=target_ARM32 --need=allow_dump \ 16 ; RUN: | %if --need=target_ARM32_dump \
20 ; RUN: --command FileCheck --check-prefix ARM32O2 %s 17 ; RUN: --command FileCheck --check-prefix ARM32O2 %s
21 18
22 ; RUN: %if --need=target_ARM32 --need=allow_dump \ 19 ; RUN: %if --need=target_ARM32 \
23 ; RUN: --command %p2i --filetype=asm --assemble \ 20 ; RUN: --command %p2i --filetype=obj \
24 ; RUN: --disassemble --target arm32 -i %s --args -Om1 \ 21 ; RUN: --disassemble --target arm32 -i %s --args -Om1 \
25 ; RUN: -allow-externally-defined-symbols \ 22 ; RUN: -allow-externally-defined-symbols \
26 ; RUN: | %if --need=target_ARM32 --need=allow_dump \ 23 ; RUN: | %if --need=target_ARM32 \
27 ; RUN: --command FileCheck \ 24 ; RUN: --command FileCheck \
28 ; RUN: --check-prefix ARM32OM1 %s 25 ; RUN: --check-prefix ARM32OM1 %s
29 26
30 ; TODO(jaydeep.patil): Using --skip-unimplemented for MIPS32 27 ; TODO(jaydeep.patil): Using --skip-unimplemented for MIPS32
31 ; RUN: %if --need=target_MIPS32 --need=allow_dump \ 28 ; RUN: %if --need=target_MIPS32 --need=allow_dump \
32 ; RUN: --command %p2i --filetype=asm --assemble \ 29 ; RUN: --command %p2i --filetype=asm --assemble \
33 ; RUN: --disassemble --target mips32 -i %s --args -O2 \ 30 ; RUN: --disassemble --target mips32 -i %s --args -O2 \
34 ; RUN: --skip-unimplemented \ 31 ; RUN: --skip-unimplemented \
35 ; RUN: -allow-externally-defined-symbols \ 32 ; RUN: -allow-externally-defined-symbols \
36 ; RUN: | %if --need=target_MIPS32 --need=allow_dump \ 33 ; RUN: | %if --need=target_MIPS32 --need=allow_dump \
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 ; ARM32OM1-NEXT: bl {{.*}} dummy 304 ; ARM32OM1-NEXT: bl {{.*}} dummy
308 305
309 ; MIPS32O2-LABEL: testUncondToBlockAfterContract 306 ; MIPS32O2-LABEL: testUncondToBlockAfterContract
310 ; MIPS32O2: jal {{.*}} dummy 307 ; MIPS32O2: jal {{.*}} dummy
311 ; MIPS32O2: .LtestUncondToBlockAfterContract$target 308 ; MIPS32O2: .LtestUncondToBlockAfterContract$target
312 309
313 ; MIPS32OM1-LABEL: testUncondToBlockAfterContract 310 ; MIPS32OM1-LABEL: testUncondToBlockAfterContract
314 ; MIPS32OM1: jal {{.*}} dummy 311 ; MIPS32OM1: jal {{.*}} dummy
315 ; MIPS32OM1: b 312 ; MIPS32OM1: b
316 ; MIPS32OM1: .LtestUncondToBlockAfterContract$target 313 ; MIPS32OM1: .LtestUncondToBlockAfterContract$target
OLDNEW
« no previous file with comments | « tests_lit/llvm2ice_tests/bool-folding.ll ('k') | tests_lit/llvm2ice_tests/callindirect.pnacl.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698