| 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 <compiler/zone-stats.h> |
| 8 #include <stdint.h> | 9 #include <stdint.h> |
| 9 #include <stdlib.h> | 10 #include <stdlib.h> |
| 10 #include <string.h> | 11 #include <string.h> |
| 11 | |
| 12 #include <memory> | 12 #include <memory> |
| 13 | 13 |
| 14 #include "src/base/utils/random-number-generator.h" | 14 #include "src/base/utils/random-number-generator.h" |
| 15 #include "src/zone/accounting-allocator.h" | 15 #include "src/zone/accounting-allocator.h" |
| 16 | 16 |
| 17 #include "src/compiler/graph-visualizer.h" | 17 #include "src/compiler/graph-visualizer.h" |
| 18 #include "src/compiler/int64-lowering.h" | 18 #include "src/compiler/int64-lowering.h" |
| 19 #include "src/compiler/js-graph.h" | 19 #include "src/compiler/js-graph.h" |
| 20 #include "src/compiler/node.h" | 20 #include "src/compiler/node.h" |
| 21 #include "src/compiler/pipeline.h" | 21 #include "src/compiler/pipeline.h" |
| 22 #include "src/compiler/wasm-compiler.h" | 22 #include "src/compiler/wasm-compiler.h" |
| 23 #include "src/compiler/zone-pool.h" | |
| 24 | |
| 25 #include "src/wasm/ast-decoder.h" | 23 #include "src/wasm/ast-decoder.h" |
| 26 #include "src/wasm/wasm-interpreter.h" | 24 #include "src/wasm/wasm-interpreter.h" |
| 27 #include "src/wasm/wasm-js.h" | 25 #include "src/wasm/wasm-js.h" |
| 28 #include "src/wasm/wasm-macro-gen.h" | 26 #include "src/wasm/wasm-macro-gen.h" |
| 29 #include "src/wasm/wasm-module.h" | 27 #include "src/wasm/wasm-module.h" |
| 30 #include "src/wasm/wasm-opcodes.h" | 28 #include "src/wasm/wasm-opcodes.h" |
| 31 | 29 |
| 32 #include "src/zone/zone.h" | 30 #include "src/zone/zone.h" |
| 33 | 31 |
| 34 #include "test/cctest/cctest.h" | 32 #include "test/cctest/cctest.h" |
| (...skipping 741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 776 // interpreter. | 774 // interpreter. |
| 777 #define WASM_EXEC_TEST(name) \ | 775 #define WASM_EXEC_TEST(name) \ |
| 778 void RunWasm_##name(WasmExecutionMode execution_mode); \ | 776 void RunWasm_##name(WasmExecutionMode execution_mode); \ |
| 779 TEST(RunWasmCompiled_##name) { RunWasm_##name(kExecuteCompiled); } \ | 777 TEST(RunWasmCompiled_##name) { RunWasm_##name(kExecuteCompiled); } \ |
| 780 TEST(RunWasmInterpreted_##name) { RunWasm_##name(kExecuteInterpreted); } \ | 778 TEST(RunWasmInterpreted_##name) { RunWasm_##name(kExecuteInterpreted); } \ |
| 781 void RunWasm_##name(WasmExecutionMode execution_mode) | 779 void RunWasm_##name(WasmExecutionMode execution_mode) |
| 782 | 780 |
| 783 } // namespace | 781 } // namespace |
| 784 | 782 |
| 785 #endif | 783 #endif |
| OLD | NEW |