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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 } | 44 } |
45 // kExprI64Xor: | 45 // kExprI64Xor: |
46 TEST(Run_WasmI64Xor) { | 46 TEST(Run_WasmI64Xor) { |
47 WasmRunner<int64_t> r(MachineType::Int64(), MachineType::Int64()); | 47 WasmRunner<int64_t> r(MachineType::Int64(), MachineType::Int64()); |
48 BUILD(r, WASM_I64_XOR(WASM_GET_LOCAL(0), WASM_GET_LOCAL(1))); | 48 BUILD(r, WASM_I64_XOR(WASM_GET_LOCAL(0), WASM_GET_LOCAL(1))); |
49 FOR_INT64_INPUTS(i) { | 49 FOR_INT64_INPUTS(i) { |
50 FOR_INT64_INPUTS(j) { CHECK_EQ((*i) ^ (*j), r.Call(*i, *j)); } | 50 FOR_INT64_INPUTS(j) { CHECK_EQ((*i) ^ (*j), r.Call(*i, *j)); } |
51 } | 51 } |
52 } | 52 } |
53 // kExprI64Shl: | 53 // kExprI64Shl: |
54 #if !V8_TARGET_ARCH_MIPS && !V8_TARGET_ARCH_X87 && !V8_TARGET_ARCH_ARM | 54 #if !V8_TARGET_ARCH_MIPS && !V8_TARGET_ARCH_X87 |
55 TEST(Run_WasmI64Shl) { | 55 TEST(Run_WasmI64Shl) { |
56 { | 56 { |
57 WasmRunner<int64_t> r(MachineType::Int64(), MachineType::Int64()); | 57 WasmRunner<int64_t> r(MachineType::Int64(), MachineType::Int64()); |
58 BUILD(r, WASM_I64_SHL(WASM_GET_LOCAL(0), WASM_GET_LOCAL(1))); | 58 BUILD(r, WASM_I64_SHL(WASM_GET_LOCAL(0), WASM_GET_LOCAL(1))); |
59 FOR_UINT64_INPUTS(i) { | 59 FOR_UINT64_INPUTS(i) { |
60 for (int64_t j = 1; j < 64; j++) { | 60 for (int64_t j = 1; j < 64; j++) { |
61 CHECK_EQ(*i << j, r.Call(*i, j)); | 61 CHECK_EQ(*i << j, r.Call(*i, j)); |
62 } | 62 } |
63 } | 63 } |
64 } | 64 } |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 WASM_I64V_10(0xbcd1234000000013), WASM_I64V_10(0xbcd1234000000014), | 219 WASM_I64V_10(0xbcd1234000000013), WASM_I64V_10(0xbcd1234000000014), |
220 WASM_I64V_10(0xbcd1234000000015), WASM_I64V_10(0xbcd1234000000016), | 220 WASM_I64V_10(0xbcd1234000000015), WASM_I64V_10(0xbcd1234000000016), |
221 WASM_I64V_10(0xbcd1234000000017), WASM_I64V_10(0xbcd1234000000018), | 221 WASM_I64V_10(0xbcd1234000000017), WASM_I64V_10(0xbcd1234000000018), |
222 WASM_I64V_10(0xbcd1234000000019), WASM_I64V_10(0xbcd123400000001a), | 222 WASM_I64V_10(0xbcd1234000000019), WASM_I64V_10(0xbcd123400000001a), |
223 WASM_I64V_10(0xbcd123400000001b), WASM_I64V_10(0xbcd123400000001c), | 223 WASM_I64V_10(0xbcd123400000001b), WASM_I64V_10(0xbcd123400000001c), |
224 WASM_I64V_10(0xbcd123400000001d)))); | 224 WASM_I64V_10(0xbcd123400000001d)))); |
225 | 225 |
226 CHECK_EQ(i + 0xb, r.Call()); | 226 CHECK_EQ(i + 0xb, r.Call()); |
227 } | 227 } |
228 } | 228 } |
OLD | NEW |