Add more combos for JIT options

This commit is contained in:
Daniil Gentili 2025-01-08 17:36:29 +01:00
parent d6965e158c
commit 79c4bbbbc1

10
fuse.py
View File

@ -90,11 +90,17 @@ opcache.jit=''' + jit_mode + '\n'
"preload_ind.inc", "preload_bug81256.inc", "preload_user.inc"
]),
"opcache.jit": choice([0, 1205, 1235, 1255]),
"opcache.jit_buffer_size": choice(["1M", "64M", "0"]),
"opcache.jit_buffer_size": choice(["1M", "128M", "0"]),
"opcache.jit_blacklist_root_trace": choice(["16", "255"]),
"opcache.jit_blacklist_side_trace": choice(["8", "255"]),
"opcache.jit_max_loop_unrolls": choice(["8", "10"]),
"opcache.jit_max_recursive_calls": choice(["2", "10"]),
"opcache.jit_max_recursive_returns": choice(["2", "4"]),
"opcache.jit_max_polymorphic_calls": choice(["2", "1000"]),
"opcache.file_update_protection": choice([0, 2]),
"opcache.optimization_level": choice([-1, 0, 0x7fffffff, 0x4ff, 0x7FFFBFFF]),
"opcache.memory_consumption": choice([7, 64]),
"opcache.max_accelerated_files": choice([10, 4000]),
"opcache.max_accelerated_files": choice([10, 1000000]),
"opcache.revalidate_freq": choice([0, 60]),
"opcache.validate_timestamps": choice([0, 1]),
"opcache.interned_strings_buffer": choice([-1, 16, 131072]),