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
d2cab163
Unverified
Commit
d2cab163
authored
Apr 27, 2020
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update `presym_find` to use more efficient binary search.
parent
eddd3249
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
7 deletions
+14
-7
src/symbol.c
src/symbol.c
+14
-7
No files found.
src/symbol.c
View file @
d2cab163
...
...
@@ -26,13 +26,20 @@ static const char *presym_table[] = {
static
mrb_sym
presym_find
(
const
char
*
name
)
{
/* use linear search for now */
/* binary search should work better */
int
i
;
for
(
i
=
0
;
presym_table
[
i
];
i
++
)
{
if
(
strcmp
(
presym_table
[
i
],
name
)
==
0
)
return
i
+
1
;
int
start
=
0
;
int
end
=
MRB_PRESYM_MAX
-
1
;
while
(
start
<=
end
)
{
int
mid
=
(
start
+
end
)
/
2
;
int
cmp
=
strcmp
(
name
,
presym_table
[
mid
]);
if
(
cmp
==
0
)
{
return
mid
+
1
;
}
else
if
(
cmp
<
0
)
{
end
=
mid
-
1
;
}
else
{
start
=
mid
+
1
;
}
}
return
0
;
}
...
...
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