Home
last modified time | relevance | path

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

/PHP-7.0/Zend/
H A Dzend_closures.c168 my_function.op_array.run_time_cache = emalloc(my_function.op_array.cache_size); in ZEND_METHOD()
169 memset(my_function.op_array.run_time_cache, 0, my_function.op_array.cache_size); in ZEND_METHOD()
181 efree(my_function.op_array.run_time_cache); in ZEND_METHOD()
235 new_closure->func.op_array.run_time_cache = emalloc(new_closure->func.op_array.cache_size); in ZEND_METHOD()
236 memset(new_closure->func.op_array.run_time_cache, 0, new_closure->func.op_array.cache_size); in ZEND_METHOD()
351 efree(closure->func.op_array.run_time_cache); in zend_closure_free_storage()
352 closure->func.op_array.run_time_cache = NULL; in zend_closure_free_storage()
582 if (UNEXPECTED(!closure->func.op_array.run_time_cache)) { in zend_create_closure()
583 …closure->func.op_array.run_time_cache = func->op_array.run_time_cache = zend_arena_alloc(&CG(arena… in zend_create_closure()
584 memset(func->op_array.run_time_cache, 0, func->op_array.cache_size); in zend_create_closure()
H A Dzend_compile.h375 void **run_time_cache; member
440 void **run_time_cache; /* cache op_array->run_time_cache */ member
633 EX(run_time_cache)
636 EX(run_time_cache) = (op_array)->run_time_cache; \
642 EX(func)->op_array.run_time_cache
H A Dzend_opcode.c97 op_array->run_time_cache = NULL; in init_op_array()
354 if (op_array->run_time_cache && !op_array->function_name) { in destroy_op_array()
355 efree(op_array->run_time_cache); in destroy_op_array()
356 op_array->run_time_cache = NULL; in destroy_op_array()
H A Dzend_execute.c2181 if (UNEXPECTED(!op_array->run_time_cache)) { in i_init_func_execute_data()
2182 op_array->run_time_cache = zend_arena_alloc(&CG(arena), op_array->cache_size); in i_init_func_execute_data()
2183 memset(op_array->run_time_cache, 0, op_array->cache_size); in i_init_func_execute_data()
2210 if (!op_array->run_time_cache) { in i_init_code_execute_data()
2211 op_array->run_time_cache = emalloc(op_array->cache_size); in i_init_code_execute_data()
2212 memset(op_array->run_time_cache, 0, op_array->cache_size); in i_init_code_execute_data()
2297 if (!op_array->run_time_cache) { in i_init_execute_data()
2299 op_array->run_time_cache = zend_arena_alloc(&CG(arena), op_array->cache_size); in i_init_execute_data()
2301 op_array->run_time_cache = emalloc(op_array->cache_size); in i_init_execute_data()
2303 memset(op_array->run_time_cache, 0, op_array->cache_size); in i_init_execute_data()
H A Dzend_compile.c943 op_array->run_time_cache = NULL; in function_add_ref()
/PHP-7.0/ext/opcache/
H A Dzend_persist.c577 if (op_array->run_time_cache) { in zend_persist_op_array_ex()
578 efree(op_array->run_time_cache); in zend_persist_op_array_ex()
579 op_array->run_time_cache = NULL; in zend_persist_op_array_ex()

Completed in 47 milliseconds