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

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

Issue 1509243002: Add ASR instruction to the ARM integrated assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years 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 asr
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 \
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 | FileCheck %s --check-prefix=DIS
14
15 ; Compile using integrated assembler.
16 ; RUN: %p2i --filetype=iasm -i %s --target=arm32 --args -O2 \
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 | FileCheck %s --check-prefix=DIS
22
23 define internal i32 @AshrAmt(i32 %a) {
24 ; ASM-LABEL:AshrAmt:
25 ; DIS-LABEL:00000000 <AshrAmt>:
26 ; IASM-LABEL:AshrAmt:
27
28 entry:
29 ; ASM-NEXT:.LAshrAmt$entry:
30 ; IASM-NEXT:.LAshrAmt$entry:
31
32 %v = ashr i32 %a, 23
33
34 ; ASM-NEXT: asr r0, r0, #23
35 ; DIS-NEXT: 0: e1a00bc0
36 ; IASM-NEXT: .byte 0xc0
37 ; IASM-NEXT: .byte 0xb
38 ; IASM-NEXT: .byte 0xa0
39 ; IASM-NEXT: .byte 0xe1
40
41 ret i32 %v
42 }
43
44 define internal i32 @AshrReg(i32 %a, i32 %b) {
45 ; ASM-LABEL:AshrReg:
46 ; DIS-LABEL:00000010 <AshrReg>:
47 ; IASM-LABEL:AshrReg:
48
49 entry:
50 ; ASM-NEXT:.LAshrReg$entry:
51 ; IASM-NEXT:.LAshrReg$entry:
52
53 %v = ashr i32 %a, %b
54
55 ; ASM-NEXT: asr r0, r0, r1
56 ; DIS-NEXT: 10: e1a00150
57 ; IASM-NEXT: .byte 0x50
58 ; IASM-NEXT: .byte 0x1
59 ; IASM-NEXT: .byte 0xa0
60 ; IASM-NEXT: .byte 0xe1
61
62 ret i32 %v
63 }
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