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_OBJECTS_H_ | 5 #ifndef V8_WASM_OBJECTS_H_ |
6 #define V8_WASM_OBJECTS_H_ | 6 #define V8_WASM_OBJECTS_H_ |
7 | 7 |
8 #include "src/objects-inl.h" | 8 #include "src/objects-inl.h" |
| 9 #include "src/trap-handler/trap-handler.h" |
9 #include "src/wasm/managed.h" | 10 #include "src/wasm/managed.h" |
10 | 11 |
11 namespace v8 { | 12 namespace v8 { |
12 namespace internal { | 13 namespace internal { |
13 namespace wasm { | 14 namespace wasm { |
14 struct WasmModule; | 15 struct WasmModule; |
15 } | 16 } |
16 | 17 |
17 class WasmCompiledModule; | 18 class WasmCompiledModule; |
18 class WasmDebugInfo; | 19 class WasmDebugInfo; |
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
370 }; | 371 }; |
371 }; | 372 }; |
372 | 373 |
373 #undef DECLARE_ACCESSORS | 374 #undef DECLARE_ACCESSORS |
374 #undef DECLARE_OPTIONAL_ACCESSORS | 375 #undef DECLARE_OPTIONAL_ACCESSORS |
375 | 376 |
376 } // namespace internal | 377 } // namespace internal |
377 } // namespace v8 | 378 } // namespace v8 |
378 | 379 |
379 #endif // V8_WASM_OBJECTS_H_ | 380 #endif // V8_WASM_OBJECTS_H_ |
OLD | NEW |