| 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 #ifndef V8_WASM_MODULE_H_ | 5 #ifndef V8_WASM_MODULE_H_ | 
| 6 #define V8_WASM_MODULE_H_ | 6 #define V8_WASM_MODULE_H_ | 
| 7 | 7 | 
| 8 #include <memory> | 8 #include <memory> | 
| 9 | 9 | 
| 10 #include "src/api.h" | 10 #include "src/api.h" | 
|  | 11 #include "src/debug/debug-interface.h" | 
| 11 #include "src/globals.h" | 12 #include "src/globals.h" | 
| 12 #include "src/handles.h" | 13 #include "src/handles.h" | 
| 13 #include "src/parsing/preparse-data.h" | 14 #include "src/parsing/preparse-data.h" | 
| 14 | 15 | 
| 15 #include "src/wasm/managed.h" | 16 #include "src/wasm/managed.h" | 
| 16 #include "src/wasm/signature-map.h" | 17 #include "src/wasm/signature-map.h" | 
| 17 #include "src/wasm/wasm-opcodes.h" | 18 #include "src/wasm/wasm-opcodes.h" | 
| 18 | 19 | 
| 19 namespace v8 { | 20 namespace v8 { | 
| 20 namespace internal { | 21 namespace internal { | 
| (...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 458 void ValidateModuleState(Isolate* isolate, Handle<WasmModuleObject> module_obj); | 459 void ValidateModuleState(Isolate* isolate, Handle<WasmModuleObject> module_obj); | 
| 459 void ValidateOrphanedInstance(Isolate* isolate, | 460 void ValidateOrphanedInstance(Isolate* isolate, | 
| 460                               Handle<WasmInstanceObject> instance); | 461                               Handle<WasmInstanceObject> instance); | 
| 461 | 462 | 
| 462 }  // namespace testing | 463 }  // namespace testing | 
| 463 }  // namespace wasm | 464 }  // namespace wasm | 
| 464 }  // namespace internal | 465 }  // namespace internal | 
| 465 }  // namespace v8 | 466 }  // namespace v8 | 
| 466 | 467 | 
| 467 #endif  // V8_WASM_MODULE_H_ | 468 #endif  // V8_WASM_MODULE_H_ | 
| OLD | NEW | 
|---|