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
9e3cbaaa
Commit
9e3cbaaa
authored
Sep 26, 2018
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid using `memmove()` for performance; fix #4130
parent
87ce7401
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
30 deletions
+31
-30
mrbgems/mruby-string-ext/src/string.c
mrbgems/mruby-string-ext/src/string.c
+31
-30
No files found.
mrbgems/mruby-string-ext/src/string.c
View file @
9e3cbaaa
...
...
@@ -386,6 +386,7 @@ str_tr(mrb_state *mrb, mrb_value str, mrb_value p1, mrb_value p2, mrb_bool squee
char
*
s
;
mrb_int
len
;
mrb_int
i
;
mrb_int
j
;
mrb_bool
flag_changed
=
FALSE
;
mrb_int
lastch
=
-
1
;
...
...
@@ -395,21 +396,22 @@ str_tr(mrb_state *mrb, mrb_value str, mrb_value p1, mrb_value p2, mrb_bool squee
s
=
RSTRING_PTR
(
str
);
len
=
RSTRING_LEN
(
str
);
for
(
i
=
0
;
i
<
len
;
i
++
)
{
for
(
i
=
j
=
0
;
i
<
len
;
i
++
,
j
++
)
{
mrb_int
n
=
tr_find_character
(
pat
,
s
[
i
]);
if
(
i
>
j
)
s
[
j
]
=
s
[
i
];
if
(
n
>=
0
)
{
flag_changed
=
TRUE
;
if
(
rep
==
NULL
)
{
compact:
memmove
(
s
+
i
,
s
+
i
+
1
,
len
-
i
);
len
--
;
i
--
;
j
--
;
}
else
{
mrb_int
c
=
tr_get_character
(
rep
,
n
);
if
(
squeeze
&&
c
==
lastch
)
goto
compact
;
if
(
squeeze
&&
c
==
lastch
)
{
j
--
;
continue
;
}
if
(
c
<
0
||
c
>
0x80
)
{
mrb_raisef
(
mrb
,
E_ARGUMENT_ERROR
,
"character (%S) out of range"
,
mrb_fixnum_value
((
mrb_int
)
c
));
...
...
@@ -422,9 +424,10 @@ str_tr(mrb_state *mrb, mrb_value str, mrb_value p1, mrb_value p2, mrb_bool squee
tr_free_pattern
(
mrb
,
pat
);
if
(
rep
)
tr_free_pattern
(
mrb
,
rep
);
RSTR_SET_LEN
(
RSTRING
(
str
),
len
);
RSTRING_PTR
(
str
)[
len
]
=
0
;
if
(
flag_changed
)
{
RSTR_SET_LEN
(
RSTRING
(
str
),
j
);
RSTRING_PTR
(
str
)[
j
]
=
0
;
}
return
flag_changed
;
}
...
...
@@ -542,7 +545,7 @@ static mrb_bool
str_squeeze
(
mrb_state
*
mrb
,
mrb_value
str
,
mrb_value
v_pat
)
{
struct
tr_pattern
*
pat
=
NULL
;
mrb_int
i
;
mrb_int
i
,
j
;
unsigned
char
*
s
;
mrb_int
len
;
mrb_bool
flag_changed
=
FALSE
;
...
...
@@ -556,34 +559,33 @@ str_squeeze(mrb_state *mrb, mrb_value str, mrb_value v_pat)
len
=
RSTRING_LEN
(
str
);
if
(
pat
)
{
for
(
i
=
0
;
i
<
len
;
i
++
)
{
for
(
i
=
j
=
0
;
i
<
len
;
i
++
,
j
++
)
{
mrb_int
n
=
tr_find_character
(
pat
,
s
[
i
]);
if
(
i
>
j
)
s
[
j
]
=
s
[
i
];
if
(
n
>=
0
&&
s
[
i
]
==
lastch
)
{
flag_changed
=
TRUE
;
memmove
(
s
+
i
,
s
+
i
+
1
,
len
-
i
);
len
--
;
i
--
;
j
--
;
}
lastch
=
s
[
i
];
}
}
else
{
for
(
i
=
0
;
i
<
len
;
i
++
)
{
for
(
i
=
j
=
0
;
i
<
len
;
i
++
,
j
++
)
{
if
(
i
>
j
)
s
[
j
]
=
s
[
i
];
if
(
s
[
i
]
==
lastch
)
{
flag_changed
=
TRUE
;
memmove
(
s
+
i
,
s
+
i
+
1
,
len
-
i
);
len
--
;
i
--
;
j
--
;
}
lastch
=
s
[
i
];
}
}
tr_free_pattern
(
mrb
,
pat
);
RSTR_SET_LEN
(
RSTRING
(
str
),
len
);
RSTRING_PTR
(
str
)[
len
]
=
0
;
if
(
flag_changed
)
{
RSTR_SET_LEN
(
RSTRING
(
str
),
j
);
RSTRING_PTR
(
str
)[
j
]
=
0
;
}
return
flag_changed
;
}
...
...
@@ -636,7 +638,7 @@ static mrb_bool
str_delete
(
mrb_state
*
mrb
,
mrb_value
str
,
mrb_value
v_pat
)
{
struct
tr_pattern
*
pat
=
NULL
;
mrb_int
i
;
mrb_int
i
,
j
;
char
*
s
;
mrb_int
len
;
mrb_bool
flag_changed
=
FALSE
;
...
...
@@ -646,21 +648,20 @@ str_delete(mrb_state *mrb, mrb_value str, mrb_value v_pat)
s
=
RSTRING_PTR
(
str
);
len
=
RSTRING_LEN
(
str
);
for
(
i
=
0
;
i
<
len
;
i
++
)
{
for
(
i
=
j
=
0
;
i
<
len
;
i
++
,
j
++
)
{
mrb_int
n
=
tr_find_character
(
pat
,
s
[
i
]);
if
(
i
>
j
)
s
[
j
]
=
s
[
i
];
if
(
n
>=
0
)
{
flag_changed
=
TRUE
;
memmove
(
s
+
i
,
s
+
i
+
1
,
len
-
i
);
len
--
;
i
--
;
j
--
;
}
}
tr_free_pattern
(
mrb
,
pat
);
RSTR_SET_LEN
(
RSTRING
(
str
),
len
);
RSTRING_PTR
(
str
)[
len
]
=
0
;
if
(
flag_changed
)
{
RSTR_SET_LEN
(
RSTRING
(
str
),
j
);
RSTRING_PTR
(
str
)[
j
]
=
0
;
}
return
flag_changed
;
}
...
...
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