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

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

Issue 2919203002: [WASM] Eliminate SIMD boolean vector types. (Closed)
Patch Set: Restore DCHECKs in AssembleMove/Swap now that we're back to 1 SIMD representation. Created 3 years, 6 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') | test/cctest/wasm/test-run-wasm-simd.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 3f46789935a2071b2aaaf2723ac516a705fb985c..d1824e47a069b269dc616186fe51655cbe5e6188 100644
--- a/src/wasm/wasm-opcodes.cc
+++ b/src/wasm/wasm-opcodes.cc
@@ -218,28 +218,14 @@ const char* WasmOpcodes::OpcodeName(WasmOpcode opcode) {
CASE_S128_OP(Or, "or")
CASE_S128_OP(Xor, "xor")
CASE_S128_OP(Not, "not")
+ CASE_S128_OP(Select, "select")
CASE_S32x4_OP(Shuffle, "shuffle")
- CASE_S32x4_OP(Select, "select")
CASE_S16x8_OP(Shuffle, "shuffle")
- CASE_S16x8_OP(Select, "select")
CASE_S8x16_OP(Shuffle, "shuffle")
- CASE_S8x16_OP(Select, "select")
- CASE_S1x4_OP(And, "and")
- CASE_S1x4_OP(Or, "or")
- CASE_S1x4_OP(Xor, "xor")
- CASE_S1x4_OP(Not, "not")
CASE_S1x4_OP(AnyTrue, "any_true")
CASE_S1x4_OP(AllTrue, "all_true")
- CASE_S1x8_OP(And, "and")
- CASE_S1x8_OP(Or, "or")
- CASE_S1x8_OP(Xor, "xor")
- CASE_S1x8_OP(Not, "not")
CASE_S1x8_OP(AnyTrue, "any_true")
CASE_S1x8_OP(AllTrue, "all_true")
- CASE_S1x16_OP(And, "and")
- CASE_S1x16_OP(Or, "or")
- CASE_S1x16_OP(Xor, "xor")
- CASE_S1x16_OP(Not, "not")
CASE_S1x16_OP(AnyTrue, "any_true")
CASE_S1x16_OP(AllTrue, "all_true")
« no previous file with comments | « src/wasm/wasm-opcodes.h ('k') | test/cctest/wasm/test-run-wasm-simd.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698