OLD | NEW |
1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 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 #ifndef WASM_RUN_UTILS_H | 5 #ifndef WASM_RUN_UTILS_H |
6 #define WASM_RUN_UTILS_H | 6 #define WASM_RUN_UTILS_H |
7 | 7 |
8 #include <setjmp.h> | 8 #include <setjmp.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 #include <stdlib.h> | 10 #include <stdlib.h> |
11 #include <string.h> | 11 #include <string.h> |
12 #include <array> | 12 #include <array> |
13 #include <memory> | 13 #include <memory> |
14 | 14 |
15 #include "src/base/utils/random-number-generator.h" | 15 #include "src/base/utils/random-number-generator.h" |
16 #include "src/zone/accounting-allocator.h" | 16 #include "src/zone/accounting-allocator.h" |
17 | 17 |
18 #include "src/compiler/compiler-source-position-table.h" | 18 #include "src/compiler/compiler-source-position-table.h" |
19 #include "src/compiler/graph-visualizer.h" | 19 #include "src/compiler/graph-visualizer.h" |
20 #include "src/compiler/int64-lowering.h" | 20 #include "src/compiler/int64-lowering.h" |
21 #include "src/compiler/js-graph.h" | 21 #include "src/compiler/js-graph.h" |
22 #include "src/compiler/node.h" | 22 #include "src/compiler/node.h" |
23 #include "src/compiler/pipeline.h" | 23 #include "src/compiler/pipeline.h" |
24 #include "src/compiler/wasm-compiler.h" | 24 #include "src/compiler/wasm-compiler.h" |
25 #include "src/compiler/zone-stats.h" | 25 #include "src/compiler/zone-stats.h" |
26 #include "src/wasm/ast-decoder.h" | 26 #include "src/wasm/function-body-decoder.h" |
27 #include "src/wasm/wasm-external-refs.h" | 27 #include "src/wasm/wasm-external-refs.h" |
28 #include "src/wasm/wasm-interpreter.h" | 28 #include "src/wasm/wasm-interpreter.h" |
29 #include "src/wasm/wasm-js.h" | 29 #include "src/wasm/wasm-js.h" |
30 #include "src/wasm/wasm-macro-gen.h" | 30 #include "src/wasm/wasm-macro-gen.h" |
31 #include "src/wasm/wasm-module.h" | 31 #include "src/wasm/wasm-module.h" |
32 #include "src/wasm/wasm-objects.h" | 32 #include "src/wasm/wasm-objects.h" |
33 #include "src/wasm/wasm-opcodes.h" | 33 #include "src/wasm/wasm-opcodes.h" |
34 | 34 |
35 #include "src/zone/zone.h" | 35 #include "src/zone/zone.h" |
36 | 36 |
(...skipping 759 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
796 void RunWasm_##name(WasmExecutionMode execution_mode) | 796 void RunWasm_##name(WasmExecutionMode execution_mode) |
797 | 797 |
798 #define WASM_EXEC_COMPILED_TEST(name) \ | 798 #define WASM_EXEC_COMPILED_TEST(name) \ |
799 void RunWasm_##name(WasmExecutionMode execution_mode); \ | 799 void RunWasm_##name(WasmExecutionMode execution_mode); \ |
800 TEST(RunWasmCompiled_##name) { RunWasm_##name(kExecuteCompiled); } \ | 800 TEST(RunWasmCompiled_##name) { RunWasm_##name(kExecuteCompiled); } \ |
801 void RunWasm_##name(WasmExecutionMode execution_mode) | 801 void RunWasm_##name(WasmExecutionMode execution_mode) |
802 | 802 |
803 } // namespace | 803 } // namespace |
804 | 804 |
805 #endif | 805 #endif |
OLD | NEW |