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

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

Issue 1429003002: Add SDIV to ARM integrated assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: 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 | « src/IceInstARM32.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 ; Show that we know how to translate sdiv
2
3 ; NOTE: We use -O2 to get rid of memory stores.
4
5 ; REQUIRES: allow_dump
6
7 ; Compile using standalone assembler.
8 ; RUN: %p2i --filetype=asm -i %s --target=arm32 --args -O2 -mattr=hwdiv-arm \
9 ; RUN: | FileCheck %s --check-prefix=ASM
10
11 ; Show bytes in assembled standalone code.
12 ; RUN: %p2i --filetype=asm -i %s --target=arm32 --assemble --disassemble \
13 ; RUN: --args -O2 -mattr=hwdiv-arm | FileCheck %s --check-prefix=DIS
14
15 ; Compile using integrated assembler.
16 ; RUN: %p2i --filetype=iasm -i %s --target=arm32 --args -O2 -mattr=hwdiv-arm \
17 ; RUN: | FileCheck %s --check-prefix=IASM
18
19 ; Show bytes in assembled integrated code.
20 ; RUN: %p2i --filetype=iasm -i %s --target=arm32 --assemble --disassemble \
21 ; RUN: --args -O2 -mattr=hwdiv-arm | FileCheck %s --check-prefix=DIS
22
23 define internal i32 @SdivTwoRegs(i32 %a, i32 %b) {
24 %v = sdiv i32 %a, %b
25 ret i32 %v
26 }
27
28 ; ASM-LABEL:SdivTwoRegs:
29 ; ASM-NEXT:.LSdivTwoRegs$__0:
30 ; ASM-NEXT: tst r1, r1
31 ; ASM-NEXT: bne .LSdivTwoRegs$local$__0
32 ; ASM-NEXT: .long 0xe7fedef0
33 ; ASM-NEXT:.LSdivTwoRegs$local$__0:
34 ; ASM-NEXT: sdiv r0, r0, r1
35 ; ASM-NEXT: bx lr
36
37 ; DIS-LABEL:00000000 <SdivTwoRegs>:
38 ; DIS-NEXT: 0: e1110001
39 ; DIS-NEXT: 4: 1a000000
40 ; DIS-NEXT: 8: e7fedef0
41 ; DIS-NEXT: c: e710f110
42 ; DIS-NEXT: 10: e12fff1e
43
44 ; IASM-LABEL:SdivTwoRegs:
45 ; IASM-NEXT:.LSdivTwoRegs$__0:
46 ; IASM-NEXT: tst r1, r1
47 ; IASM-NEXT: .byte 0x0
48 ; IASM-NEXT: .byte 0x0
49 ; IASM-NEXT: .byte 0x0
50 ; IASM-NEXT: .byte 0x1a
51 ; IASM-NEXT: .long 0xe7fedef0
52 ; IASM-NEXT: .byte 0x10
53 ; IASM-NEXT: .byte 0xf1
54 ; IASM-NEXT: .byte 0x10
55 ; IASM-NEXT: .byte 0xe7
56 ; IASM-NEXT: .byte 0x1e
57 ; IASM-NEXT: .byte 0xff
58 ; IASM-NEXT: .byte 0x2f
59 ; IASM-NEXT: .byte 0xe1
OLDNEW
« no previous file with comments | « src/IceInstARM32.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698