FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
mruby/include/mruby/debug.h at master · deftclaw/mruby · GitHub
deftclaw
/
mruby
Public
forked from
mruby/mruby
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
mruby
/
include
/
mruby
/
debug.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
75 lines (62 loc) · 1.89 KB
Breadcrumbs
mruby
/
include
/
mruby
/
debug.h
Copy path
File metadata and controls
75 lines (62 loc) · 1.89 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/**
** @file mruby/debug.h - mruby debug info
**
** See Copyright Notice in mruby.h
*/
#ifndef
MRUBY_DEBUG_H
#define
MRUBY_DEBUG_H
#include
"common.h"
/**
* mruby Debugging.
*/
MRB_BEGIN_DECL
typedef
enum
mrb_debug_line_type
{
mrb_debug_line_ary
=
0
,
mrb_debug_line_flat_map
,
mrb_debug_line_packed_map
}
mrb_debug_line_type
;
typedef
struct
mrb_irep_debug_info_line
{
uint32_t
start_pos
;
uint16_t
line
;
}
mrb_irep_debug_info_line
;
typedef
struct
mrb_irep_debug_info_file
{
uint32_t
start_pos
;
mrb_sym
filename_sym
;
uint32_t
line_entry_count
;
mrb_debug_line_type
line_type
;
union
{
const
char
*
s
;
void
*
ptr
;
const
uint16_t
*
ary
;
const
mrb_irep_debug_info_line
*
flat_map
;
const
uint8_t
*
packed_map
;
}
lines
;
}
mrb_irep_debug_info_file
;
typedef
struct
mrb_irep_debug_info
{
uint32_t
pc_count
;
uint16_t
flen
;
mrb_irep_debug_info_file
*
*
files
;
}
mrb_irep_debug_info
;
/*
* get filename from irep's debug info and program counter
* @return returns NULL if not found
*/
MRB_API
const
char
*
mrb_debug_get_filename
(
mrb_state
*
mrb
,
const
mrb_irep
*
irep
,
uint32_t
pc
);
/*
* get line from irep's debug info and program counter
* @return returns -1 if not found
*/
MRB_API
int32_t
mrb_debug_get_line
(
mrb_state
*
mrb
,
const
mrb_irep
*
irep
,
uint32_t
pc
);
/*
* get line and filename from irep's debug info and program counter
* @return returns FALSE if not found
*/
MRB_API
mrb_bool
mrb_debug_get_position
(
mrb_state
*
mrb
,
const
mrb_irep
*
irep
,
uint32_t
pc
,
int32_t
*
lp
,
const
char
*
*
fp
);
MRB_API
mrb_irep_debug_info
*
mrb_debug_info_alloc
(
mrb_state
*
mrb
,
mrb_irep
*
irep
);
MRB_API
mrb_irep_debug_info_file
*
mrb_debug_info_append_file
(
mrb_state
*
mrb
,
mrb_irep_debug_info
*
info
,
const
char
*
filename
,
uint16_t
*
lines
,
uint32_t
start_pos
,
uint32_t
end_pos
);
MRB_API
void
mrb_debug_info_free
(
mrb_state
*
mrb
,
mrb_irep_debug_info
*
d
);
MRB_END_DECL
#endif
/* MRUBY_DEBUG_H */
Back
|
FazBrowse Home
|
New Git URL