[前][次][番号順一覧][スレッド一覧]

ruby-changes:72182

From: Takashi <ko1@a...>
Date: Thu, 16 Jun 2022 14:03:04 +0900 (JST)
Subject: [ruby-changes:72182] 66f0ce34f1 (master): MJIT: Get rid of obsoleted compiling_iseqs

https://git.ruby-lang.org/ruby.git/commit/?id=66f0ce34f1

From 66f0ce34f12ed710c97aad30b083017c73f399ad Mon Sep 17 00:00:00 2001
From: Takashi Kokubun <takashikkbn@g...>
Date: Wed, 15 Jun 2022 21:58:00 -0700
Subject: MJIT: Get rid of obsoleted compiling_iseqs

---
 mjit.c         | 36 +++----------------------------
 mjit_compile.c |  3 +--
 mjit_worker.c  | 68 ----------------------------------------------------------
 3 files changed, 4 insertions(+), 103 deletions(-)

diff --git a/mjit.c b/mjit.c
index 043bb34c32..9531172a66 100644
--- a/mjit.c
+++ b/mjit.c
@@ -1050,11 +1050,8 @@ mjit_finish(bool close_handle_p) https://github.com/ruby/ruby/blob/trunk/mjit.c#L1050
 
 // Called by rb_vm_mark().
 //
-// Mark an ISeq being compiled to prevent its CCs from being GC-ed, which
-// an MJIT worker may concurrently see.
-//
-// Also mark active_units so that we do not GC ISeq which may still be
-// referred to by mjit_recompile() or compact_all_jit_code().
+// Mark active_units so that we do not GC ISeq which may still be
+// referenced by mjit_recompile() or mjit_compact().
 void
 mjit_mark(void)
 {
@@ -1062,36 +1059,9 @@ mjit_mark(void) https://github.com/ruby/ruby/blob/trunk/mjit.c#L1059
         return;
     RUBY_MARK_ENTER("mjit");
 
-    // We need to release a lock when calling rb_gc_mark to avoid doubly acquiring
-    // a lock by by mjit_gc_start_hook inside rb_gc_mark.
-    //
-    // Because an MJIT worker may modify active_units anytime, we need to convert
-    // the linked list to an array to safely loop its ISeqs without keeping a lock.
-    int length = 0;
-    if (compiling_iseqs != NULL) {
-        while (compiling_iseqs[length]) length++;
-    }
-    length += active_units.length;
-    const rb_iseq_t **iseqs = ALLOCA_N(const rb_iseq_t *, length);
-
     struct rb_mjit_unit *unit = NULL;
-    int i = 0;
-    if (compiling_iseqs != NULL) {
-        while (compiling_iseqs[i]) {
-            iseqs[i] = compiling_iseqs[i];
-            i++;
-        }
-    }
     ccan_list_for_each(&active_units.head, unit, unode) {
-        iseqs[i] = unit->iseq;
-        i++;
-    }
-    assert(i == length);
-
-    for (i = 0; i < length; i++) {
-        if (iseqs[i] == NULL) // ISeq is GC-ed
-            continue;
-        rb_gc_mark((VALUE)iseqs[i]);
+        rb_gc_mark((VALUE)unit->iseq);
     }
 
     RUBY_MARK_LEAVE("mjit");
diff --git a/mjit_compile.c b/mjit_compile.c
index 29b76f8b3d..69db42a59f 100644
--- a/mjit_compile.c
+++ b/mjit_compile.c
@@ -548,9 +548,8 @@ precompile_inlinable_iseqs(FILE *f, const rb_iseq_t *iseq, struct compile_status https://github.com/ruby/ruby/blob/trunk/mjit_compile.c#L548
             const struct rb_callinfo *ci = cd->ci;
             const struct rb_callcache *cc = captured_cc_entries(status)[call_data_index(cd, body)]; // use copy to avoid race condition
 
-            extern bool rb_mjit_compiling_iseq_p(const rb_iseq_t *iseq);
             const rb_iseq_t *child_iseq;
-            if ((child_iseq = rb_mjit_inlinable_iseq(ci, cc)) != NULL && rb_mjit_compiling_iseq_p(child_iseq)) {
+            if ((child_iseq = rb_mjit_inlinable_iseq(ci, cc)) != NULL) {
                 status->inlined_iseqs[pos] = ISEQ_BODY(child_iseq);
 
                 if (mjit_opts.verbose >= 1) // print beforehand because ISeq may be GCed during copy job.
diff --git a/mjit_worker.c b/mjit_worker.c
index 6228031696..a2dacfc0f8 100644
--- a/mjit_worker.c
+++ b/mjit_worker.c
@@ -694,59 +694,6 @@ sprint_funcname(char *funcname, const struct rb_mjit_unit *unit) https://github.com/ruby/ruby/blob/trunk/mjit_worker.c#L694
     }
 }
 
-static const rb_iseq_t **compiling_iseqs = NULL;
-
-static bool
-set_compiling_iseqs(const rb_iseq_t *iseq)
-{
-    compiling_iseqs = calloc(ISEQ_BODY(iseq)->iseq_size + 2, sizeof(rb_iseq_t *)); // 2: 1 (unit->iseq) + 1 (NULL end)
-    if (compiling_iseqs == NULL)
-        return false;
-
-    compiling_iseqs[0] = iseq;
-    int i = 1;
-
-    unsigned int pos = 0;
-    while (pos < ISEQ_BODY(iseq)->iseq_size) {
-        int insn = rb_vm_insn_decode(ISEQ_BODY(iseq)->iseq_encoded[pos]);
-        if (insn == BIN(opt_send_without_block) || insn == BIN(opt_size)) {
-            CALL_DATA cd = (CALL_DATA)ISEQ_BODY(iseq)->iseq_encoded[pos + 1];
-            extern const rb_iseq_t *rb_mjit_inlinable_iseq(const struct rb_callinfo *ci, const struct rb_callcache *cc);
-            const rb_iseq_t *iseq = rb_mjit_inlinable_iseq(cd->ci, cd->cc);
-            if (iseq != NULL) {
-                compiling_iseqs[i] = iseq;
-                i++;
-            }
-        }
-        pos += insn_len(insn);
-    }
-    return true;
-}
-
-static void
-free_compiling_iseqs(void)
-{
-    RBIMPL_WARNING_PUSH();
-#ifdef _MSC_VER
-    RBIMPL_WARNING_IGNORED(4090); /* suppress false warning by MSVC */
-#endif
-    free(compiling_iseqs);
-    RBIMPL_WARNING_POP();
-    compiling_iseqs = NULL;
-}
-
-bool
-rb_mjit_compiling_iseq_p(const rb_iseq_t *iseq)
-{
-    assert(compiling_iseqs != NULL);
-    int i = 0;
-    while (compiling_iseqs[i]) {
-        if (compiling_iseqs[i] == iseq) return true;
-        i++;
-    }
-    return false;
-}
-
 static const int c_file_access_mode =
 #ifdef O_BINARY
     O_BINARY|
@@ -932,7 +879,6 @@ mjit_compact(char* c_file) https://github.com/ruby/ruby/blob/trunk/mjit_worker.c#L879
     bool success = true;
     struct rb_mjit_unit *child_unit = 0;
     ccan_list_for_each(&active_units.head, child_unit, unode) {
-        success &= set_compiling_iseqs(child_unit->iseq);
         if (!success) continue;
 
         char funcname[MAXPATHLEN];
@@ -948,8 +894,6 @@ mjit_compact(char* c_file) https://github.com/ruby/ruby/blob/trunk/mjit_worker.c#L894
         if (!iseq_label) iseq_label = sep = "";
         fprintf(f, "\n/* %s%s%s:%ld */\n", iseq_label, sep, iseq_path, iseq_lineno);
         success &= mjit_compile(f, child_unit->iseq, funcname, child_unit->id);
-
-        free_compiling_iseqs();
     }
 
     fclose(f);
@@ -1098,9 +1042,6 @@ start_mjit_compile(struct rb_mjit_unit *unit) https://github.com/ruby/ruby/blob/trunk/mjit_worker.c#L1042
     // print #include of MJIT header, etc.
     compile_prelude(f);
 
-    // This is no longer necessary. TODO: Just reference the ISeq directly in the compiler.
-    if (!set_compiling_iseqs(unit->iseq)) return -1;
-
     // To make MJIT worker thread-safe against GC.compact, copy ISeq values while `in_jit` is true.
     long iseq_lineno = 0;
     if (FIXNUM_P(ISEQ_BODY(unit->iseq)->location.first_lineno))
@@ -1115,8 +1056,6 @@ start_mjit_compile(struct rb_mjit_unit *unit) https://github.com/ruby/ruby/blob/trunk/mjit_worker.c#L1056
     fprintf(f, "/* %s@%s:%ld */\n\n", iseq_label, iseq_path, iseq_lineno);
     bool success = mjit_compile(f, unit->iseq, funcname, unit->id);
 
-    free_compiling_iseqs();
-
     fclose(f);
     if (!success) {
         if (!mjit_opts.save_temps)
@@ -1154,13 +1093,6 @@ convert_unit_to_func(struct rb_mjit_unit *unit) https://github.com/ruby/ruby/blob/trunk/mjit_worker.c#L1093
     // print #include of MJIT header, etc.
     compile_prelude(f);
 
-    if (!set_compiling_iseqs(unit->iseq)) {
-        fclose(f);
-        if (!mjit_opts.save_temps)
-            remove_file(c_file);
-        return (mjit_func_t)NOT_COMPILED_JIT_ISEQ_FUNC;
-    }
-
     // To make MJIT worker thread-safe against GC.compact, copy ISeq values while `in_jit` is true.
     long iseq_lineno = 0;
     if (FIXNUM_P(ISEQ_BODY(unit->iseq)->location.first_lineno))
-- 
cgit v1.2.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]