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 2800 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2811 | 2811 |
2812 #if WASM_64 | 2812 #if WASM_64 |
2813 TEST(Compile_Wasm_CallIndirect_Many_i64) { CompileCallIndirectMany(kAstI64); } | 2813 TEST(Compile_Wasm_CallIndirect_Many_i64) { CompileCallIndirectMany(kAstI64); } |
2814 #endif | 2814 #endif |
2815 | 2815 |
2816 | 2816 |
2817 TEST(Compile_Wasm_CallIndirect_Many_f32) { CompileCallIndirectMany(kAstF32); } | 2817 TEST(Compile_Wasm_CallIndirect_Many_f32) { CompileCallIndirectMany(kAstF32); } |
2818 | 2818 |
2819 | 2819 |
2820 TEST(Compile_Wasm_CallIndirect_Many_f64) { CompileCallIndirectMany(kAstF64); } | 2820 TEST(Compile_Wasm_CallIndirect_Many_f64) { CompileCallIndirectMany(kAstF64); } |
| 2821 |
| 2822 TEST(Run_WASM_Int32RemS_dead) { |
| 2823 WasmRunner<int32_t> r(MachineType::Int32(), MachineType::Int32()); |
| 2824 BUILD(r, WASM_I32_REMS(WASM_GET_LOCAL(0), WASM_GET_LOCAL(1)), WASM_ZERO); |
| 2825 const int32_t kMin = std::numeric_limits<int32_t>::min(); |
| 2826 CHECK_EQ(0, r.Call(133, 100)); |
| 2827 CHECK_EQ(0, r.Call(kMin, -1)); |
| 2828 CHECK_EQ(0, r.Call(0, 1)); |
| 2829 CHECK_TRAP(r.Call(100, 0)); |
| 2830 CHECK_TRAP(r.Call(-1001, 0)); |
| 2831 CHECK_TRAP(r.Call(kMin, 0)); |
| 2832 } |
OLD | NEW |