summaryrefslogtreecommitdiff
path: root/yjit
diff options
context:
space:
mode:
authorNoah Gibbs <noah.gibbs@shopify.com>2022-06-07 16:20:57 +0100
committerGitHub <noreply@github.com>2022-06-07 11:20:57 -0400
commit1598c9458a3ac8e0e4c179317a4e5bba506e3367 (patch)
tree707cfb4f9a94defcb78ff7fb4e06c52020b69e37 /yjit
parentdeff9e2699c46075c3bb9b9e1bf9f721a12a2ca3 (diff)
Add special-case code for the String unary plus operator (#5982)
Notes
Notes: Merged-By: maximecb <maximecb@ruby-lang.org>
Diffstat (limited to 'yjit')
-rw-r--r--yjit/bindgen/src/main.rs1
-rw-r--r--yjit/src/codegen.rs38
-rw-r--r--yjit/src/cruby_bindings.inc.rs3
3 files changed, 42 insertions, 0 deletions
diff --git a/yjit/bindgen/src/main.rs b/yjit/bindgen/src/main.rs
index 6ccdbc0cc5..c3a18c9c6f 100644
--- a/yjit/bindgen/src/main.rs
+++ b/yjit/bindgen/src/main.rs
@@ -62,6 +62,7 @@ fn main() {
// From include/ruby/internal/intern/string.h
.allowlist_function("rb_utf8_str_new")
.allowlist_function("rb_str_append")
+ .allowlist_function("rb_str_dup")
// This struct is public to Ruby C extensions
// From include/ruby/internal/core/rbasic.h
diff --git a/yjit/src/codegen.rs b/yjit/src/codegen.rs
index b15d87cac6..4203196e34 100644
--- a/yjit/src/codegen.rs
+++ b/yjit/src/codegen.rs
@@ -3599,6 +3599,43 @@ fn jit_rb_obj_equal(
true
}
+/// If string is frozen, duplicate it to get a non-frozen string. Otherwise, return it.
+fn jit_rb_str_uplus(
+ _jit: &mut JITState,
+ ctx: &mut Context,
+ cb: &mut CodeBlock,
+ _ocb: &mut OutlinedCb,
+ _ci: *const rb_callinfo,
+ _cme: *const rb_callable_method_entry_t,
+ _block: Option<IseqPtr>,
+ _argc: i32,
+ _known_recv_class: *const VALUE,
+) -> bool
+{
+ let recv = ctx.stack_pop(1);
+
+ add_comment(cb, "Unary plus on string");
+ mov(cb, REG0, recv);
+ mov(cb, REG1, mem_opnd(64, REG0, RUBY_OFFSET_RBASIC_FLAGS));
+ test(cb, REG1, imm_opnd(RUBY_FL_FREEZE as i64));
+
+ let ret_label = cb.new_label("stack_ret".to_string());
+ // If the string isn't frozen, we just return it. It's already in REG0.
+ jz_label(cb, ret_label);
+
+ // Str is frozen - duplicate
+ mov(cb, C_ARG_REGS[0], REG0);
+ call_ptr(cb, REG0, rb_str_dup as *const u8);
+ // Return value is in REG0, drop through and return it.
+
+ cb.write_label(ret_label);
+ let stack_ret = ctx.stack_push(Type::String);
+ mov(cb, stack_ret, REG0);
+
+ cb.link_labels();
+ true
+}
+
fn jit_rb_str_bytesize(
_jit: &mut JITState,
ctx: &mut Context,
@@ -6045,6 +6082,7 @@ impl CodegenGlobals {
self.yjit_reg_method(rb_cString, "to_str", jit_rb_str_to_s);
self.yjit_reg_method(rb_cString, "bytesize", jit_rb_str_bytesize);
self.yjit_reg_method(rb_cString, "<<", jit_rb_str_concat);
+ self.yjit_reg_method(rb_cString, "+@", jit_rb_str_uplus);
// Thread.current
self.yjit_reg_method(
diff --git a/yjit/src/cruby_bindings.inc.rs b/yjit/src/cruby_bindings.inc.rs
index 0bd18ea68c..758a8de2fd 100644
--- a/yjit/src/cruby_bindings.inc.rs
+++ b/yjit/src/cruby_bindings.inc.rs
@@ -224,6 +224,9 @@ extern "C" {
) -> VALUE;
}
extern "C" {
+ pub fn rb_str_dup(str_: VALUE) -> VALUE;
+}
+extern "C" {
pub fn rb_str_append(dst: VALUE, src: VALUE) -> VALUE;
}
extern "C" {