@@ -799,6 +799,15 @@ ZEND_FUNCTION(opcache_get_configuration)
799
799
add_assoc_long (& directives , "opcache.jit_buffer_size" , JIT_G (buffer_size ));
800
800
add_assoc_long (& directives , "opcache.jit_debug" , JIT_G (debug ));
801
801
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 ));
802
811
#endif
803
812
804
813
add_assoc_zval (return_value , "directives" , & directives );
0 commit comments