1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Pause an MJIT worker when JIT is cancelled

This commit is contained in:
Takashi Kokubun 2021-08-12 23:15:34 -07:00
parent b3f8c491ef
commit b64f81c817
No known key found for this signature in database
GPG key ID: 6FFC433B12EE23DD
2 changed files with 5 additions and 0 deletions

View file

@ -179,6 +179,8 @@ Excluding feature bug fixes.
* `--jit-verbose` and `--jit-warning` output "JIT cancel" when JIT-ed
code is disabled because TracePoint or GC.compact is used.
* Pause an MJIT worker when JIT-ed code gets disabled.
* `RubyVM::MJIT` is renamed to `RubyVM::JIT`. [[Feature #17490]]
## Static analysis

3
mjit.c
View file

@ -91,6 +91,9 @@ mjit_cancel_all(const char *reason)
if (mjit_opts.warnings || mjit_opts.verbose) {
fprintf(stderr, "JIT cancel: Disabled JIT-ed code because %s\n", reason);
}
// Currently we never re-enable JIT calls. Thus we don't need to run JIT anymore.
mjit_pause(false);
}
// Deal with ISeq movement from compactor