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

Unified Diff: src/wasm/wasm-opcodes.cc

Issue 2847663005: [WASM SIMD] Replace primitive shuffles with general Shuffle. (Closed)
Patch Set: Rebase. Created 3 years, 7 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/wasm/wasm-opcodes.h ('k') | src/wasm/wasm-text.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/wasm/wasm-opcodes.cc
diff --git a/src/wasm/wasm-opcodes.cc b/src/wasm/wasm-opcodes.cc
index 80a5c1fb674737d38da714ac1e22e516fc2f96c7..355cdf40b5ffc65ff8ccc35b77afbf74a9b5e063 100644
--- a/src/wasm/wasm-opcodes.cc
+++ b/src/wasm/wasm-opcodes.cc
@@ -214,34 +214,12 @@ const char* WasmOpcodes::OpcodeName(WasmOpcode opcode) {
CASE_S128_OP(Or, "or")
CASE_S128_OP(Xor, "xor")
CASE_S128_OP(Not, "not")
- CASE_S32x4_OP(ZipLeft, "zip left")
- CASE_S32x4_OP(ZipRight, "zip right")
- CASE_S32x4_OP(UnzipLeft, "unzip left")
- CASE_S32x4_OP(UnzipRight, "unzip right")
- CASE_S32x4_OP(TransposeLeft, "transpose left")
- CASE_S32x4_OP(TransposeRight, "transpose right")
+ CASE_S32x4_OP(Shuffle, "shuffle")
CASE_S32x4_OP(Select, "select")
- CASE_S16x8_OP(ZipLeft, "zip left")
- CASE_S16x8_OP(ZipRight, "zip right")
- CASE_S16x8_OP(UnzipLeft, "unzip left")
- CASE_S16x8_OP(UnzipRight, "unzip right")
- CASE_S16x8_OP(TransposeLeft, "transpose left")
- CASE_S16x8_OP(TransposeRight, "transpose right")
+ CASE_S16x8_OP(Shuffle, "shuffle")
CASE_S16x8_OP(Select, "select")
- CASE_S8x16_OP(ZipLeft, "zip left")
- CASE_S8x16_OP(ZipRight, "zip right")
- CASE_S8x16_OP(UnzipLeft, "unzip left")
- CASE_S8x16_OP(UnzipRight, "unzip right")
- CASE_S8x16_OP(TransposeLeft, "transpose left")
- CASE_S8x16_OP(TransposeRight, "transpose right")
+ CASE_S8x16_OP(Shuffle, "shuffle")
CASE_S8x16_OP(Select, "select")
- CASE_S8x16_OP(Concat, "concat")
- CASE_OP(S32x2Reverse, "32x2 reverse")
- CASE_OP(S16x4Reverse, "16x4 reverse")
- CASE_OP(S16x2Reverse, "16x2 reverse")
- CASE_OP(S8x8Reverse, "8x8 reverse")
- CASE_OP(S8x4Reverse, "8x4 reverse")
- CASE_OP(S8x2Reverse, "8x2 reverse")
CASE_S1x4_OP(And, "and")
CASE_S1x4_OP(Or, "or")
CASE_S1x4_OP(Xor, "xor")
« no previous file with comments | « src/wasm/wasm-opcodes.h ('k') | src/wasm/wasm-text.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698