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

Unified Diff: src/compiler/opcodes.h

Issue 2804883008: [WASM SIMD] Implement horizontal add for float and integer types. (Closed)
Patch Set: Fix MIPS. 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 1d80586bab51ec762c9f753a760cfc7cb9fe90ca..37d1030cc0b75bf249b0610033609eb1395037bd 100644
--- a/src/compiler/opcodes.h
+++ b/src/compiler/opcodes.h
@@ -579,6 +579,7 @@
V(F32x4RecipApprox) \
V(F32x4RecipSqrtApprox) \
V(F32x4Add) \
+ V(F32x4AddHoriz) \
V(F32x4Sub) \
V(F32x4Mul) \
V(F32x4Div) \
@@ -604,6 +605,7 @@
V(I32x4Shl) \
V(I32x4ShrS) \
V(I32x4Add) \
+ V(I32x4AddHoriz) \
V(I32x4Sub) \
V(I32x4Mul) \
V(I32x4MinS) \
@@ -635,6 +637,7 @@
V(I16x8SConvertI32x4) \
V(I16x8Add) \
V(I16x8AddSaturateS) \
+ V(I16x8AddHoriz) \
V(I16x8Sub) \
V(I16x8SubSaturateS) \
V(I16x8Mul) \
@@ -667,6 +670,7 @@
V(I8x16ShrS) \
V(I8x16Add) \
V(I8x16AddSaturateS) \
+ V(I8x16AddHoriz) \
V(I8x16Sub) \
V(I8x16SubSaturateS) \
V(I8x16Mul) \

Powered by Google App Engine
This is Rietveld 408576698