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

Side by Side Diff: test/cctest/wasm/test-run-wasm-64.cc

Issue 1801013002: [wasm] Int64Lowering of F64ReinterpretI64. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@wasm-bit-cast
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 unified diff | Download patch
« no previous file with comments | « src/compiler/wasm-compiler.cc ('k') | test/unittests/compiler/int64-lowering-unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <stdint.h> 5 #include <stdint.h>
6 #include <stdlib.h> 6 #include <stdlib.h>
7 #include <string.h> 7 #include <string.h>
8 8
9 #include "src/wasm/wasm-macro-gen.h" 9 #include "src/wasm/wasm-macro-gen.h"
10 10
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 V(I64SConvertF32, false) \ 75 V(I64SConvertF32, false) \
76 V(I64SConvertF64, false) \ 76 V(I64SConvertF64, false) \
77 V(I64UConvertF32, false) \ 77 V(I64UConvertF32, false) \
78 V(I64UConvertF64, false) \ 78 V(I64UConvertF64, false) \
79 V(I64SConvertI32, true) \ 79 V(I64SConvertI32, true) \
80 V(I64UConvertI32, true) \ 80 V(I64UConvertI32, true) \
81 V(F32SConvertI64, true) \ 81 V(F32SConvertI64, true) \
82 V(F32UConvertI64, true) \ 82 V(F32UConvertI64, true) \
83 V(F64SConvertI64, true) \ 83 V(F64SConvertI64, true) \
84 V(F64UConvertI64, true) \ 84 V(F64UConvertI64, true) \
85 V(F64ReinterpretI64, false) \ 85 V(F64ReinterpretI64, true) \
86 V(I64ReinterpretF64, true) \ 86 V(I64ReinterpretF64, true) \
87 V(I64Ror, false) \ 87 V(I64Ror, false) \
88 V(I64Rol, false) 88 V(I64Rol, false)
89 89
90 #define DECLARE_CONST(name, cond) static const bool kSupported_##name = cond; 90 #define DECLARE_CONST(name, cond) static const bool kSupported_##name = cond;
91 FOREACH_I64_OPERATOR(DECLARE_CONST) 91 FOREACH_I64_OPERATOR(DECLARE_CONST)
92 #undef DECLARE_CONST 92 #undef DECLARE_CONST
93 93
94 #define REQUIRE(name) \ 94 #define REQUIRE(name) \
95 if (!WASM_64 && !kSupported_##name) return 95 if (!WASM_64 && !kSupported_##name) return
(...skipping 1202 matching lines...) Expand 10 before | Expand all | Expand 10 after
1298 REQUIRE(I64Eq); 1298 REQUIRE(I64Eq);
1299 1299
1300 WasmRunner<int32_t> r(MachineType::Int64()); 1300 WasmRunner<int32_t> r(MachineType::Int64());
1301 BUILD(r, WASM_I64_EQZ(WASM_GET_LOCAL(0))); 1301 BUILD(r, WASM_I64_EQZ(WASM_GET_LOCAL(0)));
1302 1302
1303 FOR_INT64_INPUTS(i) { 1303 FOR_INT64_INPUTS(i) {
1304 int32_t result = *i == 0 ? 1 : 0; 1304 int32_t result = *i == 0 ? 1 : 0;
1305 CHECK_EQ(result, r.Call(*i)); 1305 CHECK_EQ(result, r.Call(*i));
1306 } 1306 }
1307 } 1307 }
OLDNEW
« no previous file with comments | « src/compiler/wasm-compiler.cc ('k') | test/unittests/compiler/int64-lowering-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698