summaryrefslogtreecommitdiff
path: root/deps/v8/src/wasm/wasm-debug.h
blob: 965995127122cbbc599a7089f4b6d4a10e5db478 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Copyright 2016 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef V8_WASM_DEBUG_H_
#define V8_WASM_DEBUG_H_

#include "src/handles.h"
#include "src/objects.h"

namespace v8 {
namespace internal {
namespace wasm {

class WasmDebugInfo : public FixedArray {
 public:
  static Handle<WasmDebugInfo> New(Handle<JSObject> wasm);

  static bool IsDebugInfo(Object* object);
  static WasmDebugInfo* cast(Object* object);

  JSObject* wasm_object();

  bool SetBreakPoint(int byte_offset);

  // Get the Script for the specified function.
  static Script* GetFunctionScript(Handle<WasmDebugInfo> debug_info,
                                   int func_index);

  // Disassemble the specified function from this module.
  static Handle<String> DisassembleFunction(Handle<WasmDebugInfo> debug_info,
                                            int func_index);

  // Get the offset table for the specified function, mapping from byte offsets
  // to position in the disassembly.
  // Returns an array with three entries per instruction: byte offset, line and
  // column.
  static Handle<FixedArray> GetFunctionOffsetTable(
      Handle<WasmDebugInfo> debug_info, int func_index);
};

}  // namespace wasm
}  // namespace internal
}  // namespace v8

#endif  // V8_WASM_DEBUG_H_