Skip to content

Commit 74ef4bd

Browse files
committed
Fix opcache_get_configuration() test
1 parent 8c19e61 commit 74ef4bd

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

ext/opcache/zend_accelerator_module.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -799,6 +799,15 @@ ZEND_FUNCTION(opcache_get_configuration)
799799
add_assoc_long(&directives, "opcache.jit_buffer_size", JIT_G(buffer_size));
800800
add_assoc_long(&directives, "opcache.jit_debug", JIT_G(debug));
801801
add_assoc_long(&directives, "opcache.jit_bisect_limit", JIT_G(bisect_limit));
802+
add_assoc_long(&directives, "opcache.jit_blacklist_root_trace", JIT_G(blacklist_root_trace));
803+
add_assoc_long(&directives, "opcache.jit_blacklist_side_trace", JIT_G(blacklist_side_trace));
804+
add_assoc_long(&directives, "opcache.jit_hot_func", JIT_G(hot_func));
805+
add_assoc_long(&directives, "opcache.jit_hot_loop", JIT_G(hot_loop));
806+
add_assoc_long(&directives, "opcache.jit_hot_return", JIT_G(hot_return));
807+
add_assoc_long(&directives, "opcache.jit_hot_side_exit", JIT_G(hot_side_exit));
808+
add_assoc_long(&directives, "opcache.jit_max_loops_unroll", JIT_G(max_loops_unroll));
809+
add_assoc_long(&directives, "opcache.jit_max_recursion_unroll", JIT_G(max_recursion_unroll));
810+
add_assoc_long(&directives, "opcache.jit_prof_threshold", JIT_G(prof_threshold));
802811
#endif
803812

804813
add_assoc_zval(return_value, "directives", &directives);

0 commit comments

Comments
 (0)