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

Side by Side Diff: tests_lit/llvm2ice_tests/nacl-mem-intrinsics.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 ; This tests the NaCl intrinsics memset, memcpy and memmove. 1 ; This tests the NaCl intrinsics memset, memcpy and memmove.
2 2
3 ; RUN: %if --need=target_X8632 --command %p2i --filetype=obj --disassemble \ 3 ; RUN: %if --need=target_X8632 --command %p2i --filetype=obj --disassemble \
4 ; RUN: --target x8632 --sandbox -i %s --args -O2 \ 4 ; RUN: --target x8632 --sandbox -i %s --args -O2 \
5 ; RUN: | %if --need=target_X8632 --command FileCheck %s 5 ; RUN: | %if --need=target_X8632 --command FileCheck %s
6 ; RUN: %if --need=target_X8632 --command %p2i --filetype=obj --disassemble \ 6 ; RUN: %if --need=target_X8632 --command %p2i --filetype=obj --disassemble \
7 ; RUN: --target x8632 --sandbox -i %s --args -Om1 --fmem-intrin-opt \ 7 ; RUN: --target x8632 --sandbox -i %s --args -Om1 --fmem-intrin-opt \
8 ; RUN: | %if --need=target_X8632 --command FileCheck %s 8 ; RUN: | %if --need=target_X8632 --command FileCheck %s
9 ; RUN: %if --need=target_X8632 --command %p2i --filetype=obj --disassemble \ 9 ; RUN: %if --need=target_X8632 --command %p2i --filetype=obj --disassemble \
10 ; RUN: --target x8632 --sandbox -i %s --args -Om1 \ 10 ; RUN: --target x8632 --sandbox -i %s --args -Om1 \
11 ; RUN: | %if --need=target_X8632 --command FileCheck --check-prefix OM1 %s 11 ; RUN: | %if --need=target_X8632 --command FileCheck --check-prefix OM1 %s
12 12
13 ; RUN: %if --need=target_ARM32 --need=allow_dump \ 13 ; RUN: %if --need=target_ARM32 \
14 ; RUN: --command %p2i --filetype=asm --assemble --disassemble --target arm32 \ 14 ; RUN: --command %p2i --filetype=obj --disassemble --target arm32 \
15 ; RUN: -i %s --args -O2 --skip-unimplemented \ 15 ; RUN: -i %s --args -O2 \
16 ; RUN: | %if --need=target_ARM32 --need=allow_dump \ 16 ; RUN: | %if --need=target_ARM32 \
17 ; RUN: --command FileCheck --check-prefix ARM32 %s 17 ; RUN: --command FileCheck --check-prefix ARM32 %s
18 18
19 ; RUN: %if --need=target_MIPS32 --need=allow_dump \ 19 ; RUN: %if --need=target_MIPS32 --need=allow_dump \
20 ; RUN: --command %p2i --filetype=asm --assemble --disassemble --target mips32\ 20 ; RUN: --command %p2i --filetype=asm --assemble --disassemble --target mips32\
21 ; RUN: -i %s --args -Om1 --skip-unimplemented \ 21 ; RUN: -i %s --args -Om1 --skip-unimplemented \
22 ; RUN: | %if --need=target_MIPS32 --need=allow_dump \ 22 ; RUN: | %if --need=target_MIPS32 --need=allow_dump \
23 ; RUN: --command FileCheck --check-prefix MIPS32 %s 23 ; RUN: --command FileCheck --check-prefix MIPS32 %s
24 24
25 declare void @llvm.memcpy.p0i8.p0i8.i32(i8*, i8*, i32, i32, i1) 25 declare void @llvm.memcpy.p0i8.p0i8.i32(i8*, i8*, i32, i32, i1)
26 declare void @llvm.memmove.p0i8.p0i8.i32(i8*, i8*, i32, i32, i1) 26 declare void @llvm.memmove.p0i8.p0i8.i32(i8*, i8*, i32, i32, i1)
(...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after
574 ; CHECK-NEXT: movups XMMWORD PTR [{{.*}}],[[ZERO]] 574 ; CHECK-NEXT: movups XMMWORD PTR [{{.*}}],[[ZERO]]
575 ; CHECK-NEXT: mov BYTE PTR [{{.*}}+0x20],0x0 575 ; CHECK-NEXT: mov BYTE PTR [{{.*}}+0x20],0x0
576 ; CHECK-NOT: mov 576 ; CHECK-NOT: mov
577 ; OM1-LABEL: test_memset_zero_const_len_large 577 ; OM1-LABEL: test_memset_zero_const_len_large
578 ; OM1: call {{.*}} R_{{.*}} memset 578 ; OM1: call {{.*}} R_{{.*}} memset
579 ; ARM32-LABEL: test_memset_zero_const_len_large 579 ; ARM32-LABEL: test_memset_zero_const_len_large
580 ; ARM32: uxtb 580 ; ARM32: uxtb
581 ; ARM32: bl {{.*}} memset 581 ; ARM32: bl {{.*}} memset
582 ; MIPS32-LABEL: test_memset_zero_const_len_large 582 ; MIPS32-LABEL: test_memset_zero_const_len_large
583 ; MIPS32: jal {{.*}} memset 583 ; MIPS32: jal {{.*}} memset
OLDNEW
« no previous file with comments | « tests_lit/llvm2ice_tests/nacl-atomic-intrinsics.ll ('k') | tests_lit/llvm2ice_tests/nacl-other-intrinsics.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698