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

Unified Diff: src/compiler/opcodes.h

Issue 2800523002: [WASM SIMD] Implement packing and unpacking integer conversions. (Closed)
Patch Set: Remove extraneous fn signature. Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/compiler/machine-operator.cc ('k') | src/compiler/wasm-compiler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/opcodes.h
diff --git a/src/compiler/opcodes.h b/src/compiler/opcodes.h
index 9779f1fddcbe7d6ae1bd09549e3a32682f9f7e11..35cd39e8ce393ee00bca43666b37b727c2e92947 100644
--- a/src/compiler/opcodes.h
+++ b/src/compiler/opcodes.h
@@ -593,6 +593,8 @@
V(I32x4ExtractLane) \
V(I32x4ReplaceLane) \
V(I32x4SConvertF32x4) \
+ V(I32x4SConvertI16x8Low) \
+ V(I32x4SConvertI16x8High) \
V(I32x4Neg) \
V(I32x4Shl) \
V(I32x4ShrS) \
@@ -608,6 +610,8 @@
V(I32x4GtS) \
V(I32x4GeS) \
V(I32x4UConvertF32x4) \
+ V(I32x4UConvertI16x8Low) \
+ V(I32x4UConvertI16x8High) \
V(I32x4ShrU) \
V(I32x4MinU) \
V(I32x4MaxU) \
@@ -618,9 +622,12 @@
V(I16x8Splat) \
V(I16x8ExtractLane) \
V(I16x8ReplaceLane) \
+ V(I16x8SConvertI8x16Low) \
+ V(I16x8SConvertI8x16High) \
V(I16x8Neg) \
V(I16x8Shl) \
V(I16x8ShrS) \
+ V(I16x8SConvertI32x4) \
V(I16x8Add) \
V(I16x8AddSaturateS) \
V(I16x8Sub) \
@@ -634,9 +641,12 @@
V(I16x8LeS) \
V(I16x8GtS) \
V(I16x8GeS) \
+ V(I16x8UConvertI8x16Low) \
+ V(I16x8UConvertI8x16High) \
+ V(I16x8ShrU) \
+ V(I16x8UConvertI32x4) \
V(I16x8AddSaturateU) \
V(I16x8SubSaturateU) \
- V(I16x8ShrU) \
V(I16x8MinU) \
V(I16x8MaxU) \
V(I16x8LtU) \
@@ -646,6 +656,7 @@
V(I8x16Splat) \
V(I8x16ExtractLane) \
V(I8x16ReplaceLane) \
+ V(I8x16SConvertI16x8) \
V(I8x16Neg) \
V(I8x16Shl) \
V(I8x16ShrS) \
@@ -662,6 +673,7 @@
V(I8x16LeS) \
V(I8x16GtS) \
V(I8x16GeS) \
+ V(I8x16UConvertI16x8) \
V(I8x16AddSaturateU) \
V(I8x16SubSaturateU) \
V(I8x16ShrU) \
« no previous file with comments | « src/compiler/machine-operator.cc ('k') | src/compiler/wasm-compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698