Home
last modified time | relevance | path

Searched refs:run_time_cache (Results 1 – 8 of 8) sorted by relevance

/PHP-5.5/Zend/
H A Dzend_execute.h393 EG(active_op_array)->run_time_cache[(num)]
396 EG(active_op_array)->run_time_cache[(num)] = (ptr); \
400 ((EG(active_op_array)->run_time_cache[(num)] == (ce)) ? \
401 EG(active_op_array)->run_time_cache[(num) + 1] : \
405 EG(active_op_array)->run_time_cache[(num)] = (ce); \
406 EG(active_op_array)->run_time_cache[(num) + 1] = (ptr); \
H A Dzend_opcode.c104 op_array->run_time_cache = NULL; in init_op_array()
365 if (op_array->run_time_cache) { in destroy_op_array()
366 efree(op_array->run_time_cache); in destroy_op_array()
H A Dzend_closures.c468 closure->func.op_array.run_time_cache = NULL; in zend_create_closure()
H A Dzend_generators.c268 op_array->run_time_cache = NULL; in zend_generator_create_zval()
H A Dzend_compile.c73 …if ((CG(active_op_array)->fn_flags & ZEND_ACC_INTERACTIVE) && CG(active_op_array)->run_time_cache)…
74 …CG(active_op_array)->run_time_cache = erealloc(CG(active_op_array)->run_time_cache, CG(active_op_a…
75 CG(active_op_array)->run_time_cache[CG(active_op_array)->last_cache_slot - 1] = NULL; \
84 …if ((CG(active_op_array)->fn_flags & ZEND_ACC_INTERACTIVE) && CG(active_op_array)->run_time_cache)…
85 …CG(active_op_array)->run_time_cache = erealloc(CG(active_op_array)->run_time_cache, CG(active_op_a…
86 CG(active_op_array)->run_time_cache[CG(active_op_array)->last_cache_slot - 1] = NULL; \
87 CG(active_op_array)->run_time_cache[CG(active_op_array)->last_cache_slot - 2] = NULL; \
2993 op_array->run_time_cache = NULL; in function_add_ref()
H A Dzend_execute.c1651 if (!op_array->run_time_cache && op_array->last_cache_slot) { in i_create_execute_data_from_op_array()
1652 op_array->run_time_cache = ecalloc(op_array->last_cache_slot, sizeof(void*)); in i_create_execute_data_from_op_array()
H A Dzend_compile.h308 void **run_time_cache; member
/PHP-5.5/ext/opcache/
H A Dzend_persist.c345 if (op_array->run_time_cache) {
346 efree(op_array->run_time_cache);
347 op_array->run_time_cache = NULL;

Completed in 72 milliseconds