| 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_DECODER_H_ | 5 #ifndef V8_WASM_DECODER_H_ |
| 6 #define V8_WASM_DECODER_H_ | 6 #define V8_WASM_DECODER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "src/base/compiler-specific.h" | 10 #include "src/base/compiler-specific.h" |
| 11 #include "src/base/smart-pointers.h" | |
| 12 #include "src/flags.h" | 11 #include "src/flags.h" |
| 13 #include "src/signature.h" | 12 #include "src/signature.h" |
| 14 #include "src/utils.h" | 13 #include "src/utils.h" |
| 15 #include "src/wasm/wasm-result.h" | 14 #include "src/wasm/wasm-result.h" |
| 16 #include "src/zone-containers.h" | 15 #include "src/zone-containers.h" |
| 17 | 16 |
| 18 namespace v8 { | 17 namespace v8 { |
| 19 namespace internal { | 18 namespace internal { |
| 20 namespace wasm { | 19 namespace wasm { |
| 21 | 20 |
| (...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 return result; | 371 return result; |
| 373 } | 372 } |
| 374 }; | 373 }; |
| 375 | 374 |
| 376 #undef TRACE | 375 #undef TRACE |
| 377 } // namespace wasm | 376 } // namespace wasm |
| 378 } // namespace internal | 377 } // namespace internal |
| 379 } // namespace v8 | 378 } // namespace v8 |
| 380 | 379 |
| 381 #endif // V8_WASM_DECODER_H_ | 380 #endif // V8_WASM_DECODER_H_ |
| OLD | NEW |