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

Unified Diff: test/cctest/wasm/test-run-wasm-64.cc

Issue 1778893004: [wasm] Implementation of Word32PairShr and Word32PairSar on arm. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@pair-shl-test
Patch Set: Rebase. Created 4 years, 9 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/arm/instruction-selector-arm.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/wasm/test-run-wasm-64.cc
diff --git a/test/cctest/wasm/test-run-wasm-64.cc b/test/cctest/wasm/test-run-wasm-64.cc
index ea3f7f1974e642d5680c9c00d49477398d5f0d61..ceec1912f9a438d1779f25ee8b6fc1f2a1421fc8 100644
--- a/test/cctest/wasm/test-run-wasm-64.cc
+++ b/test/cctest/wasm/test-run-wasm-64.cc
@@ -39,52 +39,52 @@
#define MIPS_OR_ARM_OR_X87 false
#endif
-#define FOREACH_I64_OPERATOR(V) \
- V(DepthFirst, true) \
- V(I64Const, true) \
- V(I64Return, true) \
- V(I64Param, true) \
- V(I64LoadStore, true) \
- V(I64Add, true) \
- V(I64Sub, false) \
- V(I64Mul, false) \
- V(I64DivS, true) \
- V(I64DivU, true) \
- V(I64RemS, true) \
- V(I64RemU, true) \
- V(I64And, true) \
- V(I64Ior, true) \
- V(I64Xor, true) \
- V(I64Shl, !MIPS_OR_X87) \
- V(I64ShrU, !MIPS_OR_ARM_OR_X87) \
- V(I64ShrS, !MIPS_OR_ARM_OR_X87) \
- V(I64Eq, true) \
- V(I64Ne, true) \
- V(I64LtS, true) \
- V(I64LeS, true) \
- V(I64LtU, true) \
- V(I64LeU, true) \
- V(I64GtS, true) \
- V(I64GeS, true) \
- V(I64GtU, true) \
- V(I64GeU, true) \
- V(I64Clz, false) \
- V(I64Ctz, false) \
- V(I64Popcnt, false) \
- V(I32ConvertI64, true) \
- V(I64SConvertF32, false) \
- V(I64SConvertF64, false) \
- V(I64UConvertF32, false) \
- V(I64UConvertF64, false) \
- V(I64SConvertI32, true) \
- V(I64UConvertI32, true) \
- V(F32SConvertI64, true) \
- V(F32UConvertI64, true) \
- V(F64SConvertI64, true) \
- V(F64UConvertI64, true) \
- V(F64ReinterpretI64, false) \
- V(I64ReinterpretF64, false) \
- V(I64Ror, false) \
+#define FOREACH_I64_OPERATOR(V) \
+ V(DepthFirst, true) \
+ V(I64Const, true) \
+ V(I64Return, true) \
+ V(I64Param, true) \
+ V(I64LoadStore, true) \
+ V(I64Add, true) \
+ V(I64Sub, false) \
+ V(I64Mul, false) \
+ V(I64DivS, true) \
+ V(I64DivU, true) \
+ V(I64RemS, true) \
+ V(I64RemU, true) \
+ V(I64And, true) \
+ V(I64Ior, true) \
+ V(I64Xor, true) \
+ V(I64Shl, !MIPS_OR_X87) \
+ V(I64ShrU, !MIPS_OR_X87) \
+ V(I64ShrS, !MIPS_OR_X87) \
+ V(I64Eq, true) \
+ V(I64Ne, true) \
+ V(I64LtS, true) \
+ V(I64LeS, true) \
+ V(I64LtU, true) \
+ V(I64LeU, true) \
+ V(I64GtS, true) \
+ V(I64GeS, true) \
+ V(I64GtU, true) \
+ V(I64GeU, true) \
+ V(I64Clz, false) \
+ V(I64Ctz, false) \
+ V(I64Popcnt, false) \
+ V(I32ConvertI64, true) \
+ V(I64SConvertF32, false) \
+ V(I64SConvertF64, false) \
+ V(I64UConvertF32, false) \
+ V(I64UConvertF64, false) \
+ V(I64SConvertI32, true) \
+ V(I64UConvertI32, true) \
+ V(F32SConvertI64, true) \
+ V(F32UConvertI64, true) \
+ V(F64SConvertI64, true) \
+ V(F64UConvertI64, true) \
+ V(F64ReinterpretI64, false) \
+ V(I64ReinterpretF64, false) \
+ V(I64Ror, false) \
V(I64Rol, false)
#define DECLARE_CONST(name, cond) static const bool kSupported_##name = cond;
« no previous file with comments | « src/compiler/arm/instruction-selector-arm.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698