Lines Matching refs:op_array

1484 	zend_op_array *op_array;  in opcache_compile_file()  local
1561 op_array = *op_array_p = accelerator_orig_compile_file(file_handle, type); in opcache_compile_file()
1564 op_array = NULL; in opcache_compile_file()
1575 if (!op_array) { in opcache_compile_file()
1590 new_persistent_script->script.main_op_array = *op_array; in opcache_compile_file()
1592 efree(op_array); /* we have valid persistent_script, so it's safe to free op_array */ in opcache_compile_file()
1625 zend_op_array *op_array = NULL; in file_cache_compile_file() local
1683 persistent_script = opcache_compile_file(file_handle, type, NULL, &op_array); in file_cache_compile_file()
1691 return op_array; in file_cache_compile_file()
1881 zend_op_array *op_array; in persistent_compile_file() local
1902 persistent_script = opcache_compile_file(file_handle, type, key, &op_array); in persistent_compile_file()
1913 return op_array; in persistent_compile_file()
2337 if (func->op_array.static_variables) { in zend_accel_fast_shutdown()
2338 if (!(GC_FLAGS(func->op_array.static_variables) & IS_ARRAY_IMMUTABLE)) { in zend_accel_fast_shutdown()
2339 if (--GC_REFCOUNT(func->op_array.static_variables) == 0) { in zend_accel_fast_shutdown()
2340 accel_fast_hash_destroy(func->op_array.static_variables); in zend_accel_fast_shutdown()
2359 if (func->op_array.static_variables) { in zend_accel_fast_shutdown()
2360 if (!(GC_FLAGS(func->op_array.static_variables) & IS_ARRAY_IMMUTABLE)) { in zend_accel_fast_shutdown()
2361 if (--GC_REFCOUNT(func->op_array.static_variables) == 0) { in zend_accel_fast_shutdown()
2362 accel_fast_hash_destroy(func->op_array.static_variables); in zend_accel_fast_shutdown()
2365 func->op_array.static_variables = NULL; in zend_accel_fast_shutdown()