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

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

Issue 955003002: Subzero: Clean up function header emission. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix the tests that were broken as a result Created 5 years, 9 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/x86/jump_encodings.ll ('k') | tests_lit/assembler/x86/sandboxing.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 --assemble --disassemble -i %s --args -O2 -mattr=sse4.1 -sandbox \ 5 ; RUN: %p2i --filetype=obj --disassemble -i %s --args -O2 -mattr=sse4.1 \
6 ; RUN: --verbose none | FileCheck %s 6 ; RUN: -sandbox | FileCheck %s
7 7
8 define <8 x i16> @test_mul_v8i16(<8 x i16> %arg0, <8 x i16> %arg1) { 8 define <8 x i16> @test_mul_v8i16(<8 x i16> %arg0, <8 x i16> %arg1) {
9 entry: 9 entry:
10 %res = mul <8 x i16> %arg0, %arg1 10 %res = mul <8 x i16> %arg0, %arg1
11 ret <8 x i16> %res 11 ret <8 x i16> %res
12 ; CHECK-LABEL: test_mul_v8i16 12 ; CHECK-LABEL: test_mul_v8i16
13 ; CHECK: 66 0f d5 c1 pmullw xmm0,xmm1 13 ; CHECK: 66 0f d5 c1 pmullw xmm0,xmm1
14 } 14 }
15 15
16 ; Test register and address mode encoding. 16 ; Test register and address mode encoding.
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 three: 284 three:
285 %res3 = extractelement <8 x i16> %vec4, i32 7 285 %res3 = extractelement <8 x i16> %vec4, i32 7
286 %res3_ext = zext i16 %res3 to i32 286 %res3_ext = zext i16 %res3 to i32
287 ret i32 %res3_ext 287 ret i32 %res3_ext
288 } 288 }
289 ; CHECK-LABEL: test_pextrw 289 ; CHECK-LABEL: test_pextrw
290 ; CHECK-DAG: 66 0f c5 c0 00 pextrw eax,xmm0 290 ; CHECK-DAG: 66 0f c5 c0 00 pextrw eax,xmm0
291 ; CHECK-DAG: 66 0f c5 c1 02 pextrw eax,xmm1 291 ; CHECK-DAG: 66 0f c5 c1 02 pextrw eax,xmm1
292 ; CHECK-DAG: 66 0f c5 c2 05 pextrw eax,xmm2 292 ; CHECK-DAG: 66 0f c5 c2 05 pextrw eax,xmm2
293 ; CHECK-DAG: 66 0f c5 c3 07 pextrw eax,xmm3 293 ; CHECK-DAG: 66 0f c5 c3 07 pextrw eax,xmm3
OLDNEW
« no previous file with comments | « tests_lit/assembler/x86/jump_encodings.ll ('k') | tests_lit/assembler/x86/sandboxing.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698