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

Side by Side Diff: tests_lit/assembler/mips32/encoding_intrinsics.ll

Issue 2433243003: Subzero, MIPS32: Remove --skip-unimplemented from lit tests (Closed)
Patch Set: Reverted --skip-unimplemented in nacl-other-intrinsics.ll Created 4 years, 1 month 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 | « no previous file | tests_lit/assembler/mips32/encoding_test_arith.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 ; Test encoding of MIPS32 instructions used in intrinsic calls 1 ; Test encoding of MIPS32 instructions used in intrinsic calls
2 2
3 ; REQUIRES: allow_dump 3 ; REQUIRES: allow_dump
4 4
5 ; Compile using standalone assembler. 5 ; Compile using standalone assembler.
6 ; RUN: %p2i --filetype=asm -i %s --target=mips32 --args -O2 \ 6 ; RUN: %p2i --filetype=asm -i %s --target=mips32 --args -O2 \
7 ; RUN: --allow-externally-defined-symbols --skip-unimplemented \ 7 ; RUN: --allow-externally-defined-symbols \
8 ; RUN: | FileCheck %s --check-prefix=ASM 8 ; RUN: | FileCheck %s --check-prefix=ASM
9 9
10 ; Show bytes in assembled standalone code. 10 ; Show bytes in assembled standalone code.
11 ; RUN: %p2i --filetype=asm -i %s --target=mips32 --assemble --disassemble \ 11 ; RUN: %p2i --filetype=asm -i %s --target=mips32 --assemble --disassemble \
12 ; RUN: --args -O2 --allow-externally-defined-symbols --skip-unimplemented \ 12 ; RUN: --args -O2 --allow-externally-defined-symbols \
13 ; RUN: | FileCheck %s --check-prefix=DIS 13 ; RUN: | FileCheck %s --check-prefix=DIS
14 14
15 ; Compile using integrated assembler. 15 ; Compile using integrated assembler.
16 ; RUN: %p2i --filetype=iasm -i %s --target=mips32 --args -O2 \ 16 ; RUN: %p2i --filetype=iasm -i %s --target=mips32 --args -O2 \
17 ; RUN: --allow-externally-defined-symbols --skip-unimplemented \ 17 ; RUN: --allow-externally-defined-symbols \
18 ; RUN: | FileCheck %s --check-prefix=IASM 18 ; RUN: | FileCheck %s --check-prefix=IASM
19 19
20 ; Show bytes in assembled integrated code. 20 ; Show bytes in assembled integrated code.
21 ; RUN: %p2i --filetype=iasm -i %s --target=mips32 --assemble --disassemble \ 21 ; RUN: %p2i --filetype=iasm -i %s --target=mips32 --assemble --disassemble \
22 ; RUN: --args -O2 --allow-externally-defined-symbols --skip-unimplemented \ 22 ; RUN: --args -O2 --allow-externally-defined-symbols \
23 ; RUN: | FileCheck %s --check-prefix=DIS 23 ; RUN: | FileCheck %s --check-prefix=DIS
24 24
25 declare i16 @llvm.bswap.i16(i16) 25 declare i16 @llvm.bswap.i16(i16)
26 declare i32 @llvm.bswap.i32(i32) 26 declare i32 @llvm.bswap.i32(i32)
27 declare i64 @llvm.bswap.i64(i64) 27 declare i64 @llvm.bswap.i64(i64)
28 declare i32 @llvm.ctlz.i32(i32, i1) 28 declare i32 @llvm.ctlz.i32(i32, i1)
29 declare i64 @llvm.ctlz.i64(i64, i1) 29 declare i64 @llvm.ctlz.i64(i64, i1)
30 declare i32 @llvm.cttz.i32(i32, i1) 30 declare i32 @llvm.cttz.i32(i32, i1)
31 declare i64 @llvm.cttz.i64(i64, i1) 31 declare i64 @llvm.cttz.i64(i64, i1)
32 declare void @llvm.trap() 32 declare void @llvm.trap()
(...skipping 1043 matching lines...) Expand 10 before | Expand all | Expand 10 after
1076 1076
1077 ; DIS-LABEL: <encTrap>: 1077 ; DIS-LABEL: <encTrap>:
1078 ; DIS-NEXT: 00000034 teq zero,zero 1078 ; DIS-NEXT: 00000034 teq zero,zero
1079 1079
1080 ; IASM-LABEL: encTrap: 1080 ; IASM-LABEL: encTrap:
1081 ; IASM-NEXT: .LencTrap$__0: 1081 ; IASM-NEXT: .LencTrap$__0:
1082 ; IASM-NEXT: .byte 0x34 1082 ; IASM-NEXT: .byte 0x34
1083 ; IASM-NEXT: .byte 0x0 1083 ; IASM-NEXT: .byte 0x0
1084 ; IASM-NEXT: .byte 0x0 1084 ; IASM-NEXT: .byte 0x0
1085 ; IASM-NEXT: .byte 0x0 1085 ; IASM-NEXT: .byte 0x0
OLDNEW
« no previous file with comments | « no previous file | tests_lit/assembler/mips32/encoding_test_arith.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698