| 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_ENCODER_H_ | 5 #ifndef V8_WASM_ENCODER_H_ |
| 6 #define V8_WASM_ENCODER_H_ | 6 #define V8_WASM_ENCODER_H_ |
| 7 | 7 |
| 8 #include "src/signature.h" | 8 #include "src/signature.h" |
| 9 #include "src/zone-containers.h" | 9 #include "src/zone/zone-containers.h" |
| 10 | 10 |
| 11 #include "src/wasm/leb-helper.h" | 11 #include "src/wasm/leb-helper.h" |
| 12 #include "src/wasm/wasm-macro-gen.h" | 12 #include "src/wasm/wasm-macro-gen.h" |
| 13 #include "src/wasm/wasm-module.h" | 13 #include "src/wasm/wasm-module.h" |
| 14 #include "src/wasm/wasm-opcodes.h" | 14 #include "src/wasm/wasm-opcodes.h" |
| 15 #include "src/wasm/wasm-result.h" | 15 #include "src/wasm/wasm-result.h" |
| 16 | 16 |
| 17 namespace v8 { | 17 namespace v8 { |
| 18 namespace internal { | 18 namespace internal { |
| 19 namespace wasm { | 19 namespace wasm { |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 ZoneVector<std::pair<LocalType, bool>> globals_; | 240 ZoneVector<std::pair<LocalType, bool>> globals_; |
| 241 SignatureMap signature_map_; | 241 SignatureMap signature_map_; |
| 242 int start_function_index_; | 242 int start_function_index_; |
| 243 }; | 243 }; |
| 244 | 244 |
| 245 } // namespace wasm | 245 } // namespace wasm |
| 246 } // namespace internal | 246 } // namespace internal |
| 247 } // namespace v8 | 247 } // namespace v8 |
| 248 | 248 |
| 249 #endif // V8_WASM_ENCODER_H_ | 249 #endif // V8_WASM_ENCODER_H_ |
| OLD | NEW |