| 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 V8_WASM_MODULE_RUNNER_H_ | 5 #ifndef V8_WASM_MODULE_RUNNER_H_ | 
| 6 #define V8_WASM_MODULE_RUNNER_H_ | 6 #define V8_WASM_MODULE_RUNNER_H_ | 
| 7 | 7 | 
| 8 #include "src/handles.h" | 8 #include "src/handles.h" | 
| 9 #include "src/isolate.h" | 9 #include "src/isolate.h" | 
| 10 #include "src/objects.h" | 10 #include "src/objects.h" | 
| (...skipping 28 matching lines...) Expand all  Loading... | 
| 39 // given encoded module. The module should have no imports. | 39 // given encoded module. The module should have no imports. | 
| 40 int32_t CompileAndRunWasmModule(Isolate* isolate, const byte* module_start, | 40 int32_t CompileAndRunWasmModule(Isolate* isolate, const byte* module_start, | 
| 41                                 const byte* module_end, ModuleOrigin origin); | 41                                 const byte* module_end, ModuleOrigin origin); | 
| 42 | 42 | 
| 43 // Interprets the given module, starting at the function specified by | 43 // Interprets the given module, starting at the function specified by | 
| 44 // {function_index}. The return type of the function has to be int32. The module | 44 // {function_index}. The return type of the function has to be int32. The module | 
| 45 // should not have any imports or exports | 45 // should not have any imports or exports | 
| 46 int32_t InterpretWasmModule(Isolate* isolate, ErrorThrower* thrower, | 46 int32_t InterpretWasmModule(Isolate* isolate, ErrorThrower* thrower, | 
| 47                             const WasmModule* module, int function_index, | 47                             const WasmModule* module, int function_index, | 
| 48                             WasmVal* args); | 48                             WasmVal* args); | 
|  | 49 | 
|  | 50 // Install function map, module symbol for testing | 
|  | 51 void SetupIsolateForWasmModule(Isolate* isolate); | 
| 49 }  // namespace testing | 52 }  // namespace testing | 
| 50 }  // namespace wasm | 53 }  // namespace wasm | 
| 51 }  // namespace internal | 54 }  // namespace internal | 
| 52 }  // namespace v8 | 55 }  // namespace v8 | 
| 53 | 56 | 
| 54 #endif  // V8_WASM_MODULE_RUNNER_H_ | 57 #endif  // V8_WASM_MODULE_RUNNER_H_ | 
| OLD | NEW | 
|---|