mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
Increase default YJIT call threshold to 10. Add exec mem size arg. (#52)
This commit is contained in:
parent
764740c661
commit
b415ceb92e
5 changed files with 20 additions and 10 deletions
5
ruby.c
5
ruby.c
|
@ -1036,7 +1036,10 @@ setup_yjit_options(const char *s, struct rb_yjit_options *yjit_opt)
|
|||
if (*s != '-') return;
|
||||
const size_t l = strlen(++s);
|
||||
|
||||
if (opt_match_arg(s, l, "call-threshold")) {
|
||||
if (opt_match_arg(s, l, "exec-mem-size")) {
|
||||
yjit_opt->exec_mem_size = atoi(s + 1);
|
||||
}
|
||||
else if (opt_match_arg(s, l, "call-threshold")) {
|
||||
yjit_opt->call_threshold = atoi(s + 1);
|
||||
}
|
||||
else if (opt_match_arg(s, l, "version-limit")) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue