Lines Matching refs:CG

526 	ZEND_HASH_FOREACH_BUCKET(CG(function_table), p) {  in accel_copy_permanent_strings()
552 ZEND_HASH_FOREACH_BUCKET(CG(class_table), p) { in accel_copy_permanent_strings()
609 ZEND_HASH_FOREACH_BUCKET(CG(auto_globals), p) { in accel_copy_permanent_strings()
1297 ZCG(mem) = zend_arena_alloc(&CG(arena), memory_used + 64); in store_script_in_file_cache()
1301 ZCG(mem) = zend_arena_alloc(&CG(arena), memory_used + 8); in store_script_in_file_cache()
1304 ZCG(mem) = zend_arena_alloc(&CG(arena), memory_used); in store_script_in_file_cache()
1617 orig_active_op_array = CG(active_op_array); in opcache_compile_file()
1618 orig_function_table = CG(function_table); in opcache_compile_file()
1619 orig_class_table = CG(class_table); in opcache_compile_file()
1623 CG(function_table) = &ZCG(function_table); in opcache_compile_file()
1624 EG(class_table) = CG(class_table) = &new_persistent_script->script.class_table; in opcache_compile_file()
1628 orig_compiler_options = CG(compiler_options); in opcache_compile_file()
1629 CG(compiler_options) |= ZEND_COMPILE_HANDLE_OP_ARRAY; in opcache_compile_file()
1630 CG(compiler_options) |= ZEND_COMPILE_IGNORE_INTERNAL_CLASSES; in opcache_compile_file()
1631 CG(compiler_options) |= ZEND_COMPILE_DELAYED_BINDING; in opcache_compile_file()
1632 CG(compiler_options) |= ZEND_COMPILE_NO_CONSTANT_SUBSTITUTION; in opcache_compile_file()
1634 CG(compiler_options) = orig_compiler_options; in opcache_compile_file()
1638 CG(compiler_options) = orig_compiler_options; in opcache_compile_file()
1642 CG(active_op_array) = orig_active_op_array; in opcache_compile_file()
1643 CG(function_table) = orig_function_table; in opcache_compile_file()
1644 EG(class_table) = CG(class_table) = orig_class_table; in opcache_compile_file()
2233 …zend_hash_init(&ZCG(function_table), zend_hash_num_elements(CG(function_table)), NULL, ZEND_FUNCTI… in accel_activate()
2807 if ((func = zend_hash_str_find_ptr(CG(function_table), "chdir", sizeof("chdir")-1)) != NULL &&