diff options
author | Peter Zhu <[email protected]> | 2023-01-06 09:09:18 -0500 |
---|---|---|
committer | Peter Zhu <[email protected]> | 2023-01-09 08:49:29 -0500 |
commit | 3be2acfafd3b3c6168e2266c7c6561d143d7ae5c (patch) | |
tree | abb57c1ed4aca5e9050cb8803fb9adad366aedf4 /string.c | |
parent | 29dc9378d971a66ad3fcb21281aac23f0521afe5 (diff) |
Fix re-embedding of strings during compaction
The reference updating code for strings is not re-embedding strings
because the code is incorrectly wrapped inside of a
`if (STR_SHARED_P(obj))` clause. Shared strings can't be re-embedded
so this ends up being a no-op. This means that strings can be moved to a
large size pool during compaction, but won't be re-embedded, which would
waste the space.
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/7071
Diffstat (limited to 'string.c')
-rw-r--r-- | string.c | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -312,14 +312,18 @@ rb_str_make_embedded(VALUE str) RUBY_ASSERT(rb_str_reembeddable_p(str)); RUBY_ASSERT(!STR_EMBED_P(str)); - char *buf = RSTRING_PTR(str); - long len = RSTRING_LEN(str); + char *buf = RSTRING(str)->as.heap.ptr; + long len = RSTRING(str)->as.heap.len; STR_SET_EMBED(str); STR_SET_EMBED_LEN(str, len); - memmove(RSTRING_PTR(str), buf, len); - ruby_xfree(buf); + if (len > 0) { + memcpy(RSTRING_PTR(str), buf, len); + ruby_xfree(buf); + } + + TERM_FILL(RSTRING(str)->as.embed.ary + len, TERM_LEN(str)); } void |