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

Unified Diff: src/compiler/opcodes.h

Issue 2800523002: [WASM SIMD] Implement packing and unpacking integer conversions. (Closed)
Patch Set: Fix stray edit, clean up some ordering of opcodes. 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
Index: src/compiler/opcodes.h
diff --git a/src/compiler/opcodes.h b/src/compiler/opcodes.h
index 896e0b4a3934c8c315dd49d42a5693ab24af9220..4f62856fc0aa8bda44dc6d55557dada097a666da 100644
--- a/src/compiler/opcodes.h
+++ b/src/compiler/opcodes.h
@@ -588,6 +588,8 @@
V(I32x4ExtractLane) \
V(I32x4ReplaceLane) \
V(I32x4SConvertF32x4) \
+ V(I32x4SConvertI16x8Low) \
+ V(I32x4SConvertI16x8High) \
V(I32x4Neg) \
V(I32x4Shl) \
V(I32x4ShrS) \
@@ -603,6 +605,8 @@
V(I32x4GtS) \
V(I32x4GeS) \
V(I32x4UConvertF32x4) \
+ V(I32x4UConvertI16x8Low) \
+ V(I32x4UConvertI16x8High) \
V(I32x4ShrU) \
V(I32x4MinU) \
V(I32x4MaxU) \
@@ -613,9 +617,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) \
@@ -629,9 +636,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) \
@@ -641,6 +651,7 @@
V(I8x16Splat) \
V(I8x16ExtractLane) \
V(I8x16ReplaceLane) \
+ V(I8x16SConvertI16x8) \
V(I8x16Neg) \
V(I8x16Shl) \
V(I8x16ShrS) \
@@ -657,6 +668,7 @@
V(I8x16LeS) \
V(I8x16GtS) \
V(I8x16GeS) \
+ V(I8x16UConvertI16x8) \
V(I8x16AddSaturateU) \
V(I8x16SubSaturateU) \
V(I8x16ShrU) \

Powered by Google App Engine
This is Rietveld 408576698