YJIT: Change the default --yjit-call-threshold to 30 (#6850)

This commit is contained in:
Takashi Kokubun 2022-12-02 08:32:49 -08:00 коммит произвёл GitHub
Родитель e558c374b7
Коммит fa77bcf722
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -518,6 +518,8 @@ The following deprecated APIs are removed.
* Simply run ruby with `--yjit-stats` to compute stats (incurs some run-time overhead).
* YJIT is now optimized to take advantage of object shapes. [[Feature #18776]]
* Take advantage of finer-grained constant invalidation to invalidate less code when defining new constants. [[Feature #18589]]
* The default `--yjit-exec-mem-size` is changed to 128 (MiB).
* The default `--yjit-call-threshold` is changed to 30.
### MJIT

Просмотреть файл

@ -55,7 +55,7 @@ pub struct Options {
pub static mut OPTIONS: Options = Options {
exec_mem_size: 128 * 1024 * 1024,
code_page_size: 16 * 1024,
call_threshold: 10,
call_threshold: 30,
greedy_versioning: false,
no_type_prop: false,
max_versions: 4,