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

Side by Side Diff: tests_lit/assembler/arm32/mul.ll

Issue 1448783004: Fix translation of instruction "move" in ARM integrated assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nit. Created 5 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 | « tests_lit/assembler/arm32/mov-imm.ll ('k') | tests_lit/assembler/arm32/push-pop.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 ; Show that we know how to translate mul. 1 ; Show that we know how to translate mul.
2 2
3 ; NOTE: We use -O2 to get rid of memory stores. 3 ; NOTE: We use -O2 to get rid of memory stores.
4 4
5 ; REQUIRES: allow_dump 5 ; REQUIRES: allow_dump
6 6
7 ; Compile using standalone assembler. 7 ; Compile using standalone assembler.
8 ; RUN: %p2i --filetype=asm -i %s --target=arm32 --args -O2 \ 8 ; RUN: %p2i --filetype=asm -i %s --target=arm32 --args -O2 \
9 ; RUN: | FileCheck %s --check-prefix=ASM 9 ; RUN: | FileCheck %s --check-prefix=ASM
10 10
11 ; Show bytes in assembled standalone code. 11 ; Show bytes in assembled standalone code.
12 ; RUN: %p2i --filetype=asm -i %s --target=arm32 --assemble --disassemble \ 12 ; RUN: %p2i --filetype=asm -i %s --target=arm32 --assemble --disassemble \
13 ; RUN: --args -O2 | FileCheck %s --check-prefix=DIS 13 ; RUN: --args -O2 | 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=arm32 --args -O2 -unsafe-ias \ 16 ; RUN: %p2i --filetype=iasm -i %s --target=arm32 --args -O2 \
17 ; RUN: | FileCheck %s --check-prefix=IASM 17 ; RUN: | FileCheck %s --check-prefix=IASM
18 18
19 ; Show bytes in assembled integrated code. 19 ; Show bytes in assembled integrated code.
20 ; RUN: %p2i --filetype=iasm -i %s --target=arm32 --assemble --disassemble \ 20 ; RUN: %p2i --filetype=iasm -i %s --target=arm32 --assemble --disassemble \
21 ; RUN: --args -O2 -unsafe-ias | FileCheck %s --check-prefix=DIS 21 ; RUN: --args -O2 | FileCheck %s --check-prefix=DIS
22 22
23 define internal i32 @MulTwoRegs(i32 %a, i32 %b) { 23 define internal i32 @MulTwoRegs(i32 %a, i32 %b) {
24 %v = mul i32 %a, %b 24 %v = mul i32 %a, %b
25 ret i32 %v 25 ret i32 %v
26 } 26 }
27 27
28 ; ASM-LABEL:MulTwoRegs: 28 ; ASM-LABEL:MulTwoRegs:
29 ; ASM-NEXT:.LMulTwoRegs$__0: 29 ; ASM-NEXT:.LMulTwoRegs$__0:
30 ; ASM-NEXT: mul r0, r0, r1 30 ; ASM-NEXT: mul r0, r0, r1
31 31
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 87
88 ; IASM-NEXT: .byte 0x2 88 ; IASM-NEXT: .byte 0x2
89 ; IASM-NEXT: .byte 0x10 89 ; IASM-NEXT: .byte 0x10
90 ; IASM-NEXT: .byte 0xa0 90 ; IASM-NEXT: .byte 0xa0
91 ; IASM-NEXT: .byte 0xe1 91 ; IASM-NEXT: .byte 0xe1
92 92
93 ; IASM-NEXT: .byte 0x1e 93 ; IASM-NEXT: .byte 0x1e
94 ; IASM-NEXT: .byte 0xff 94 ; IASM-NEXT: .byte 0xff
95 ; IASM-NEXT: .byte 0x2f 95 ; IASM-NEXT: .byte 0x2f
96 ; IASM-NEXT: .byte 0xe1 96 ; IASM-NEXT: .byte 0xe1
OLDNEW
« no previous file with comments | « tests_lit/assembler/arm32/mov-imm.ll ('k') | tests_lit/assembler/arm32/push-pop.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698