| 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 #include "test/common/wasm/wasm-module-runner.h" | 5 #include "test/common/wasm/wasm-module-runner.h" |
| 6 | 6 |
| 7 #include "src/handles.h" | 7 #include "src/handles.h" |
| 8 #include "src/isolate.h" | 8 #include "src/isolate.h" |
| 9 #include "src/objects.h" | 9 #include "src/objects.h" |
| 10 #include "src/property-descriptor.h" | 10 #include "src/property-descriptor.h" |
| 11 #include "src/wasm/module-decoder.h" | 11 #include "src/wasm/module-decoder.h" |
| 12 #include "src/wasm/wasm-interpreter.h" | 12 #include "src/wasm/wasm-interpreter.h" |
| 13 #include "src/wasm/wasm-js.h" | 13 #include "src/wasm/wasm-js.h" |
| 14 #include "src/wasm/wasm-module.h" | 14 #include "src/wasm/wasm-module.h" |
| 15 #include "src/wasm/wasm-result.h" | 15 #include "src/wasm/wasm-result.h" |
| 16 #include "src/zone.h" | 16 #include "src/zone/zone.h" |
| 17 | 17 |
| 18 namespace v8 { | 18 namespace v8 { |
| 19 namespace internal { | 19 namespace internal { |
| 20 namespace wasm { | 20 namespace wasm { |
| 21 namespace testing { | 21 namespace testing { |
| 22 | 22 |
| 23 uint32_t GetMinModuleMemSize(const WasmModule* module) { | 23 uint32_t GetMinModuleMemSize(const WasmModule* module) { |
| 24 return WasmModule::kPageSize * module->min_mem_pages; | 24 return WasmModule::kPageSize * module->min_mem_pages; |
| 25 } | 25 } |
| 26 | 26 |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 void SetupIsolateForWasmModule(Isolate* isolate) { | 203 void SetupIsolateForWasmModule(Isolate* isolate) { |
| 204 WasmJs::InstallWasmFunctionMapIfNeeded(isolate, isolate->native_context()); | 204 WasmJs::InstallWasmFunctionMapIfNeeded(isolate, isolate->native_context()); |
| 205 WasmJs::InstallWasmModuleSymbolIfNeeded(isolate, isolate->global_object(), | 205 WasmJs::InstallWasmModuleSymbolIfNeeded(isolate, isolate->global_object(), |
| 206 isolate->native_context()); | 206 isolate->native_context()); |
| 207 } | 207 } |
| 208 | 208 |
| 209 } // namespace testing | 209 } // namespace testing |
| 210 } // namespace wasm | 210 } // namespace wasm |
| 211 } // namespace internal | 211 } // namespace internal |
| 212 } // namespace v8 | 212 } // namespace v8 |
| OLD | NEW |