OLD | NEW |
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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 V(I64Eq, true) \ | 61 V(I64Eq, true) \ |
62 V(I64Ne, true) \ | 62 V(I64Ne, true) \ |
63 V(I64LtS, true) \ | 63 V(I64LtS, true) \ |
64 V(I64LeS, true) \ | 64 V(I64LeS, true) \ |
65 V(I64LtU, true) \ | 65 V(I64LtU, true) \ |
66 V(I64LeU, true) \ | 66 V(I64LeU, true) \ |
67 V(I64GtS, true) \ | 67 V(I64GtS, true) \ |
68 V(I64GeS, true) \ | 68 V(I64GeS, true) \ |
69 V(I64GtU, true) \ | 69 V(I64GtU, true) \ |
70 V(I64GeU, true) \ | 70 V(I64GeU, true) \ |
71 V(I64Clz, false) \ | 71 V(I64Clz, true) \ |
72 V(I64Ctz, false) \ | 72 V(I64Ctz, false) \ |
73 V(I64Popcnt, !MIPS_OR_X87) \ | 73 V(I64Popcnt, !MIPS_OR_X87) \ |
74 V(I32ConvertI64, true) \ | 74 V(I32ConvertI64, true) \ |
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) \ |
(...skipping 1216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 } |
OLD | NEW |