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

Side by Side Diff: tests_lit/assembler/x86/opcode_register_encodings.ll

Issue 695993004: Subzero: Switch to AT&T asm syntax. I give up. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Add opcode suffix to xchg. Use .L$ prefix for constant pool entries. Created 6 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/x86/jump_encodings.ll ('k') | tests_lit/llvm2ice_tests/64bit.pnacl.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 ; Tests various aspects of x86 opcode encodings. E.g., some opcodes like 1 ; Tests various aspects of x86 opcode encodings. E.g., some opcodes like
2 ; those for pmull vary more wildly depending on operand size (rather than 2 ; those for pmull vary more wildly depending on operand size (rather than
3 ; follow a usual pattern). 3 ; follow a usual pattern).
4 4
5 ; RUN: %p2i -i %s --args -O2 -mattr=sse4.1 -sandbox --verbose none \ 5 ; RUN: %p2i -i %s --args -O2 -mattr=sse4.1 -sandbox --verbose none \
6 ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj \ 6 ; RUN: | llvm-mc -triple=i686-none-nacl -filetype=obj \
7 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s 7 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s
8 ; RUN: %p2i -i %s --args --verbose none | FileCheck --check-prefix=ERRORS %s 8 ; RUN: %p2i -i %s --args --verbose none | FileCheck --check-prefix=ERRORS %s
9 9
10 define <8 x i16> @test_mul_v8i16(<8 x i16> %arg0, <8 x i16> %arg1) { 10 define <8 x i16> @test_mul_v8i16(<8 x i16> %arg0, <8 x i16> %arg1) {
11 entry: 11 entry:
12 %res = mul <8 x i16> %arg0, %arg1 12 %res = mul <8 x i16> %arg0, %arg1
13 ret <8 x i16> %res 13 ret <8 x i16> %res
14 ; CHECK-LABEL: test_mul_v8i16 14 ; CHECK-LABEL: test_mul_v8i16
15 ; CHECK: 66 0f d5 c1 pmullw xmm0, xmm1 15 ; CHECK: 66 0f d5 c1 pmullw xmm0, xmm1
16 } 16 }
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 ret i32 %res3_ext 289 ret i32 %res3_ext
290 } 290 }
291 ; CHECK-LABEL: test_pextrw 291 ; CHECK-LABEL: test_pextrw
292 ; CHECK-DAG: 66 0f c5 c0 00 pextrw eax, xmm0, 0 292 ; CHECK-DAG: 66 0f c5 c0 00 pextrw eax, xmm0, 0
293 ; CHECK-DAG: 66 0f c5 c1 02 pextrw eax, xmm1, 2 293 ; CHECK-DAG: 66 0f c5 c1 02 pextrw eax, xmm1, 2
294 ; CHECK-DAG: 66 0f c5 c2 05 pextrw eax, xmm2, 5 294 ; CHECK-DAG: 66 0f c5 c2 05 pextrw eax, xmm2, 5
295 ; CHECK-DAG: 66 0f c5 c3 07 pextrw eax, xmm3, 7 295 ; CHECK-DAG: 66 0f c5 c3 07 pextrw eax, xmm3, 7
296 296
297 297
298 ; ERRORS-NOT: ICE translation error 298 ; ERRORS-NOT: ICE translation error
OLDNEW
« no previous file with comments | « tests_lit/assembler/x86/jump_encodings.ll ('k') | tests_lit/llvm2ice_tests/64bit.pnacl.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698