run_time_cache    483 Zend/zend_closures.c 		closure->func.op_array.run_time_cache = NULL;
run_time_cache     70 Zend/zend_compile.c 		if ((CG(active_op_array)->fn_flags & ZEND_ACC_INTERACTIVE) && CG(active_op_array)->run_time_cache) { \
run_time_cache     71 Zend/zend_compile.c 			CG(active_op_array)->run_time_cache = erealloc(CG(active_op_array)->run_time_cache, CG(active_op_array)->last_cache_slot * sizeof(void*)); \
run_time_cache     72 Zend/zend_compile.c 			CG(active_op_array)->run_time_cache[CG(active_op_array)->last_cache_slot - 1] = NULL; \
run_time_cache     81 Zend/zend_compile.c 		if ((CG(active_op_array)->fn_flags & ZEND_ACC_INTERACTIVE) && CG(active_op_array)->run_time_cache) { \
run_time_cache     82 Zend/zend_compile.c 			CG(active_op_array)->run_time_cache = erealloc(CG(active_op_array)->run_time_cache, CG(active_op_array)->last_cache_slot * sizeof(void*)); \
run_time_cache     83 Zend/zend_compile.c 			CG(active_op_array)->run_time_cache[CG(active_op_array)->last_cache_slot - 1] = NULL; \
run_time_cache     84 Zend/zend_compile.c 			CG(active_op_array)->run_time_cache[CG(active_op_array)->last_cache_slot - 2] = NULL; \
run_time_cache   3112 Zend/zend_compile.c 		op_array->run_time_cache = NULL;
run_time_cache    314 Zend/zend_compile.h 	void **run_time_cache;
run_time_cache   1697 Zend/zend_execute.c 	if (!op_array->run_time_cache && op_array->last_cache_slot) {
run_time_cache   1698 Zend/zend_execute.c 		op_array->run_time_cache = ecalloc(op_array->last_cache_slot, sizeof(void*));
run_time_cache    405 Zend/zend_execute.h 	EG(active_op_array)->run_time_cache[(num)]
run_time_cache    408 Zend/zend_execute.h 		EG(active_op_array)->run_time_cache[(num)] = (ptr); \
run_time_cache    412 Zend/zend_execute.h 	((EG(active_op_array)->run_time_cache[(num)] == (ce)) ? \
run_time_cache    413 Zend/zend_execute.h 		EG(active_op_array)->run_time_cache[(num) + 1] : \
run_time_cache    417 Zend/zend_execute.h 		EG(active_op_array)->run_time_cache[(num)] = (ce); \
run_time_cache    418 Zend/zend_execute.h 		EG(active_op_array)->run_time_cache[(num) + 1] = (ptr); \
run_time_cache    271 Zend/zend_generators.c 		op_array->run_time_cache = NULL;
run_time_cache    104 Zend/zend_opcode.c 	op_array->run_time_cache = NULL;
run_time_cache    365 Zend/zend_opcode.c 	if (op_array->run_time_cache) {
run_time_cache    366 Zend/zend_opcode.c 		efree(op_array->run_time_cache);
run_time_cache    376 ext/opcache/zend_persist.c 		if (op_array->run_time_cache) {
run_time_cache    377 ext/opcache/zend_persist.c 			efree(op_array->run_time_cache);
run_time_cache    378 ext/opcache/zend_persist.c 			op_array->run_time_cache = NULL;
run_time_cache   1121 sapi/phpdbg/phpdbg_prompt.c 	if (!op_array->run_time_cache && op_array->last_cache_slot) {
run_time_cache   1122 sapi/phpdbg/phpdbg_prompt.c 		op_array->run_time_cache = ecalloc(op_array->last_cache_slot, sizeof(void*));