Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
c5721652
Unverified
Commit
c5721652
authored
Jul 08, 2021
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mruby-bin-debugger: support `mrb_debug_line_packed_map`.
parent
f16ea05a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
4 deletions
+35
-4
mrbgems/mruby-bin-debugger/tools/mrdb/apibreak.c
mrbgems/mruby-bin-debugger/tools/mrdb/apibreak.c
+35
-4
No files found.
mrbgems/mruby-bin-debugger/tools/mrdb/apibreak.c
View file @
c5721652
...
...
@@ -20,25 +20,56 @@
#define MRB_DEBUG_BP_FILE_OK (0x0001)
#define MRB_DEBUG_BP_LINENO_OK (0x0002)
static
uint32_t
packed_int_decode
(
char
*
p
,
char
**
newpos
)
{
size_t
i
=
0
,
shift
=
0
;
uint32_t
n
=
0
;
do
{
n
|=
((
uint32_t
)(
p
[
i
]
&
0x7f
))
<<
shift
;
i
++
;
shift
+=
7
;
}
while
(
shift
<
sizeof
(
uint32_t
)
*
8
&&
(
p
[
i
-
1
]
&
0x80
));
if
(
newpos
)
*
newpos
=
p
+
i
;
return
n
;
}
static
uint16_t
check_lineno
(
mrb_irep_debug_info_file
*
info_file
,
uint16_t
lineno
)
{
uint32_t
count
=
info_file
->
line_entry_count
;
uint16_t
l_idx
;
if
(
info_file
->
line_type
==
mrb_debug_line_ary
)
{
switch
(
info_file
->
line_type
)
{
case
mrb_debug_line_ary
:
for
(
l_idx
=
0
;
l_idx
<
count
;
++
l_idx
)
{
if
(
lineno
==
info_file
->
lines
.
ary
[
l_idx
])
{
return
lineno
;
}
}
}
else
{
break
;
case
mrb_debug_line_flat_map
:
for
(
l_idx
=
0
;
l_idx
<
count
;
++
l_idx
)
{
if
(
lineno
==
info_file
->
lines
.
flat_map
[
l_idx
].
line
)
{
return
lineno
;
}
}
break
;
case
mrb_debug_line_packed_map
:
{
char
*
p
=
info_file
->
lines
.
packed_map
;
char
*
pend
=
p
+
count
;
uint32_t
line
=
0
;
while
(
p
<
pend
)
{
packed_int_decode
(
p
,
&
p
);
line
+=
packed_int_decode
(
p
,
&
p
);
if
(
line
==
lineno
)
return
lineno
;
}
}
break
;
}
return
0
;
...
...
@@ -188,7 +219,7 @@ mrb_debug_set_break_line(mrb_state *mrb, mrb_debug_context *dbg, const char *fil
return
MRB_DEBUG_BREAK_NO_OVER
;
}
/* file and lineno check
(line type mrb_debug_line_ary only.)
*/
/* file and lineno check
.
*/
result
=
check_file_lineno
(
mrb
,
dbg
->
root_irep
,
file
,
lineno
);
if
(
result
==
0
)
{
return
MRB_DEBUG_BREAK_INVALID_FILE
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment