| 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 <cstdarg> |
| 8 #include <memory> | 9 #include <memory> |
| 9 | 10 |
| 10 #include "src/base/compiler-specific.h" | 11 #include "src/base/compiler-specific.h" |
| 11 #include "src/flags.h" | 12 #include "src/flags.h" |
| 12 #include "src/signature.h" | 13 #include "src/signature.h" |
| 13 #include "src/utils.h" | 14 #include "src/utils.h" |
| 14 #include "src/wasm/wasm-result.h" | 15 #include "src/wasm/wasm-result.h" |
| 15 #include "src/zone/zone-containers.h" | 16 #include "src/zone/zone-containers.h" |
| 16 | 17 |
| 17 namespace v8 { | 18 namespace v8 { |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 return traceOffEnd<uint32_t>(); | 403 return traceOffEnd<uint32_t>(); |
| 403 } | 404 } |
| 404 }; | 405 }; |
| 405 | 406 |
| 406 #undef TRACE | 407 #undef TRACE |
| 407 } // namespace wasm | 408 } // namespace wasm |
| 408 } // namespace internal | 409 } // namespace internal |
| 409 } // namespace v8 | 410 } // namespace v8 |
| 410 | 411 |
| 411 #endif // V8_WASM_DECODER_H_ | 412 #endif // V8_WASM_DECODER_H_ |
| OLD | NEW |