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

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

Issue 1678133003: Subzero: Fix trailing whitespace errors. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Rebase Created 4 years, 10 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
« no previous file with comments | « tests_lit/assembler/arm32/bic.ll ('k') | tests_lit/assembler/arm32/cmn.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 clz. 1 ; Show that we know how to translate clz.
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=arm32 --args -Om1 \ 6 ; RUN: %p2i --filetype=asm -i %s --target=arm32 --args -Om1 \
7 ; RUN: | FileCheck %s --check-prefix=ASM 7 ; RUN: | FileCheck %s --check-prefix=ASM
8 8
9 ; Show bytes in assembled standalone code. 9 ; Show bytes in assembled standalone code.
10 ; RUN: %p2i --filetype=asm -i %s --target=arm32 --assemble --disassemble \ 10 ; RUN: %p2i --filetype=asm -i %s --target=arm32 --assemble --disassemble \
(...skipping 19 matching lines...) Expand all
30 ; IASM-NEXT:.LtestClz$entry: 30 ; IASM-NEXT:.LtestClz$entry:
31 31
32 ; ASM-NEXT: sub sp, sp, #8 32 ; ASM-NEXT: sub sp, sp, #8
33 ; DIS-NEXT: 0: e24dd008 33 ; DIS-NEXT: 0: e24dd008
34 ; IASM-NEXT: .byte 0x8 34 ; IASM-NEXT: .byte 0x8
35 ; IASM-NEXT: .byte 0xd0 35 ; IASM-NEXT: .byte 0xd0
36 ; IASM-NEXT: .byte 0x4d 36 ; IASM-NEXT: .byte 0x4d
37 ; IASM-NEXT: .byte 0xe2 37 ; IASM-NEXT: .byte 0xe2
38 38
39 ; ASM-NEXT: str r0, [sp, #4] 39 ; ASM-NEXT: str r0, [sp, #4]
40 ; ASM-NEXT: # [sp, #4] = def.pseudo 40 ; ASM-NEXT: # [sp, #4] = def.pseudo
41 ; DIS-NEXT: 4: e58d0004 41 ; DIS-NEXT: 4: e58d0004
42 ; IASM-NEXT: .byte 0x4 42 ; IASM-NEXT: .byte 0x4
43 ; IASM-NEXT: .byte 0x0 43 ; IASM-NEXT: .byte 0x0
44 ; IASM-NEXT: .byte 0x8d 44 ; IASM-NEXT: .byte 0x8d
45 ; IASM-NEXT: .byte 0xe5 45 ; IASM-NEXT: .byte 0xe5
46 46
47 %x = call i32 @llvm.ctlz.i32(i32 %a, i1 0) 47 %x = call i32 @llvm.ctlz.i32(i32 %a, i1 0)
48 48
49 ; ASM-NEXT: ldr r0, [sp, #4] 49 ; ASM-NEXT: ldr r0, [sp, #4]
50 ; DIS-NEXT: 8: e59d0004 50 ; DIS-NEXT: 8: e59d0004
51 ; IASM-NEXT: .byte 0x4 51 ; IASM-NEXT: .byte 0x4
52 ; IASM-NEXT: .byte 0x0 52 ; IASM-NEXT: .byte 0x0
53 ; IASM-NEXT: .byte 0x9d 53 ; IASM-NEXT: .byte 0x9d
54 ; IASM-NEXT: .byte 0xe5 54 ; IASM-NEXT: .byte 0xe5
55 55
56 ; ASM-NEXT: clz r0, r0 56 ; ASM-NEXT: clz r0, r0
57 ; DIS-NEXT: c: e16f0f10 57 ; DIS-NEXT: c: e16f0f10
58 ; IASM-NEXT: .byte 0x10 58 ; IASM-NEXT: .byte 0x10
59 ; IASM-NEXT: .byte 0xf 59 ; IASM-NEXT: .byte 0xf
60 ; IASM-NEXT: .byte 0x6f 60 ; IASM-NEXT: .byte 0x6f
61 ; IASM-NEXT: .byte 0xe1 61 ; IASM-NEXT: .byte 0xe1
62 62
63 ret i32 %x 63 ret i32 %x
64 } 64 }
OLDNEW
« no previous file with comments | « tests_lit/assembler/arm32/bic.ll ('k') | tests_lit/assembler/arm32/cmn.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698