| 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_S_EXPR_H_ | 5 #ifndef V8_WASM_S_EXPR_H_ |
| 6 #define V8_WASM_S_EXPR_H_ | 6 #define V8_WASM_S_EXPR_H_ |
| 7 | 7 |
| 8 #include <cstdint> | 8 #include <cstdint> |
| 9 #include <ostream> | 9 #include <ostream> |
| 10 #include <tuple> | 10 #include <tuple> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 namespace v8 { | 13 namespace v8 { |
| 14 namespace internal { | 14 namespace internal { |
| 15 | 15 |
| 16 namespace wasm { | 16 namespace wasm { |
| 17 | 17 |
| 18 // Forward declaration. | 18 // Forward declaration. |
| 19 struct WasmModule; | 19 struct WasmModule; |
| 20 struct ModuleWireBytes; |
| 20 | 21 |
| 21 // Generate disassembly according to official text format. | 22 // Generate disassembly according to official text format. |
| 22 // Output disassembly to the given output stream, and optionally return an | 23 // Output disassembly to the given output stream, and optionally return an |
| 23 // offset table of <byte offset, line, column> via the given pointer. | 24 // offset table of <byte offset, line, column> via the given pointer. |
| 24 void PrintWasmText(const WasmModule *module, uint32_t func_index, | 25 void PrintWasmText(const WasmModule *module, const ModuleWireBytes &wire_bytes, |
| 25 std::ostream &os, | 26 uint32_t func_index, std::ostream &os, |
| 26 std::vector<std::tuple<uint32_t, int, int>> *offset_table); | 27 std::vector<std::tuple<uint32_t, int, int>> *offset_table); |
| 27 | 28 |
| 28 } // namespace wasm | 29 } // namespace wasm |
| 29 } // namespace internal | 30 } // namespace internal |
| 30 } // namespace v8 | 31 } // namespace v8 |
| 31 | 32 |
| 32 #endif // V8_WASM_S_EXPR_H_ | 33 #endif // V8_WASM_S_EXPR_H_ |
| OLD | NEW |