summaryrefslogtreecommitdiff
path: root/mjit_worker.c
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-21 14:23:24 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-21 14:23:24 +0000
commit13df05acfa02aeccac89e93f8789933b23004113 (patch)
treeaf70b90f8ac5c364aaee1a5ea69899c413a03065 /mjit_worker.c
parentbca2cdcc0b1d4630fd1cb36ecb5b8dc57cdd8e41 (diff)
mjit.c: copy call cache values to MJIT worker
same as r65275 but for call cache. === Optcarrot Benchmark === $ benchmark-driver benchmark.yml --rbenv 'before::before --disable-gems --jit;after::after --disable-gems --jit' -v --repeat-count 24 before: ruby 2.6.0dev (2018-10-21 trunk 65277) +JIT [x86_64-linux] after: ruby 2.6.0dev (2018-10-21 trunk 65277) +JIT [x86_64-linux] last_commit=mjit.c: copy call cache values to MJIT worker Calculating ------------------------------------- before after Optcarrot Lan_Master.nes 85.372 85.359 fps Comparison: Optcarrot Lan_Master.nes before: 85.4 fps after: 85.4 fps - 1.00x slower git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65279 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'mjit_worker.c')
-rw-r--r--mjit_worker.c49
1 files changed, 30 insertions, 19 deletions
diff --git a/mjit_worker.c b/mjit_worker.c
index 0dcd25321b..2234dcd8f1 100644
--- a/mjit_worker.c
+++ b/mjit_worker.c
@@ -1029,7 +1029,7 @@ compile_prelude(FILE *f)
/* Compile ISeq in UNIT and return function pointer of JIT-ed code.
It may return NOT_COMPILED_JIT_ISEQ_FUNC if something went wrong. */
static mjit_func_t
-convert_unit_to_func(struct rb_mjit_unit *unit, union iseq_inline_storage_entry *is_entries)
+convert_unit_to_func(struct rb_mjit_unit *unit, struct rb_call_cache *cc_entries, union iseq_inline_storage_entry *is_entries)
{
char c_file_buff[MAXPATHLEN], *c_file = c_file_buff, *so_file, funcname[35]; /* TODO: reconsider `35` */
int success;
@@ -1097,7 +1097,7 @@ convert_unit_to_func(struct rb_mjit_unit *unit, union iseq_inline_storage_entry
verbose(2, "start compilation: %s@%s:%d -> %s", label, path, lineno, c_file);
fprintf(f, "/* %s@%s:%d */\n\n", label, path, lineno);
}
- success = mjit_compile(f, unit->iseq->body, funcname, is_entries);
+ success = mjit_compile(f, unit->iseq->body, funcname, cc_entries, is_entries);
/* release blocking mjit_gc_start_hook */
CRITICAL_SECTION_START(3, "after mjit_compile to wakeup client for GC");
@@ -1163,12 +1163,29 @@ convert_unit_to_func(struct rb_mjit_unit *unit, union iseq_inline_storage_entry
struct mjit_copy_job {
const struct rb_iseq_constant_body *body;
+ struct rb_call_cache *cc_entries;
union iseq_inline_storage_entry *is_entries;
int finish_p;
};
static void mjit_copy_job_handler(void *data);
+/* We're lazily copying cache values from main thread because these cache values
+ could be different between ones on enqueue timing and ones on dequeue timing. */
+static void
+copy_cache_from_main_thread(struct mjit_copy_job *job)
+{
+ job->finish_p = FALSE;
+
+ rb_postponed_job_register(0, mjit_copy_job_handler, (void *)job);
+ CRITICAL_SECTION_START(3, "in MJIT copy job wait");
+ while (!job->finish_p) {
+ rb_native_cond_wait(&mjit_worker_wakeup, &mjit_engine_mutex);
+ verbose(3, "Getting wakeup from client");
+ }
+ CRITICAL_SECTION_FINISH(3, "in MJIT copy job wait");
+}
+
/* The function implementing a worker. It is executed in a separate
thread by rb_thread_create_mjit_thread. It compiles precompiled header
and then compiles requested ISeqs. */
@@ -1207,24 +1224,21 @@ mjit_worker(void)
mjit_func_t func;
struct mjit_copy_job job;
- /* Copy ISeq's inline caches from main thread. */
- job.is_entries = NULL;
job.body = node->unit->iseq->body;
- if (job.body->is_size > 0) {
- job.is_entries = malloc(sizeof(union iseq_inline_storage_entry) * job.body->is_size);
- job.finish_p = FALSE;
-
- rb_postponed_job_register(0, mjit_copy_job_handler, (void *)&job);
- CRITICAL_SECTION_START(3, "in MJIT copy job wait");
- while (!job.finish_p) {
- rb_native_cond_wait(&mjit_worker_wakeup, &mjit_engine_mutex);
- verbose(3, "Getting wakeup from client");
- }
- CRITICAL_SECTION_FINISH(3, "in MJIT copy job wait");
+ job.cc_entries = NULL;
+ if (job.body->ci_size > 0 || job.body->ci_kw_size > 0)
+ job.cc_entries = alloca(sizeof(struct rb_call_cache) * (job.body->ci_size + job.body->ci_kw_size));
+ job.is_entries = NULL;
+ if (job.body->is_size > 0)
+ job.is_entries = alloca(sizeof(union iseq_inline_storage_entry) * job.body->is_size);
+
+ /* Copy ISeq's inline caches values to avoid race condition. */
+ if (job.cc_entries != NULL || job.is_entries != NULL) {
+ copy_cache_from_main_thread(&job);
}
/* JIT compile */
- func = convert_unit_to_func(node->unit, job.is_entries);
+ func = convert_unit_to_func(node->unit, job.cc_entries, job.is_entries);
CRITICAL_SECTION_START(3, "in jit func replace");
if (node->unit->iseq) { /* Check whether GCed or not */
@@ -1241,9 +1255,6 @@ mjit_worker(void)
compact_all_jit_code();
}
#endif
- if (job.is_entries != NULL) {
- free(job.is_entries);
- }
}
}