Lines Matching refs:CG

521 	CG(empty_string) = accel_new_interned_string(CG(empty_string));  in accel_use_shm_interned_strings()
526 CG(one_char_string)[j] = accel_new_interned_string(zend_string_init(s, 1, 0)); in accel_use_shm_interned_strings()
530 for (idx = 0; idx < CG(function_table)->nNumUsed; idx++) { in accel_use_shm_interned_strings()
531 p = CG(function_table)->arData + idx; in accel_use_shm_interned_strings()
542 for (idx = 0; idx < CG(class_table)->nNumUsed; idx++) { in accel_use_shm_interned_strings()
545 p = CG(class_table)->arData + idx; in accel_use_shm_interned_strings()
604 for (idx = 0; idx < CG(auto_globals)->nNumUsed; idx++) { in accel_use_shm_interned_strings()
607 p = CG(auto_globals)->arData + idx; in accel_use_shm_interned_strings()
1229 ZCG(mem) = zend_arena_alloc(&CG(arena), memory_used + 64); in cache_script_in_file_cache()
1232 ZCG(mem) = zend_arena_alloc(&CG(arena), memory_used); in cache_script_in_file_cache()
1521 orig_active_op_array = CG(active_op_array); in opcache_compile_file()
1522 orig_function_table = CG(function_table); in opcache_compile_file()
1523 orig_class_table = CG(class_table); in opcache_compile_file()
1527 CG(function_table) = &ZCG(function_table); in opcache_compile_file()
1528 EG(class_table) = CG(class_table) = &new_persistent_script->class_table; in opcache_compile_file()
1532 orig_compiler_options = CG(compiler_options); in opcache_compile_file()
1533 CG(compiler_options) |= ZEND_COMPILE_HANDLE_OP_ARRAY; in opcache_compile_file()
1534 CG(compiler_options) |= ZEND_COMPILE_IGNORE_INTERNAL_CLASSES; in opcache_compile_file()
1535 CG(compiler_options) |= ZEND_COMPILE_DELAYED_BINDING; in opcache_compile_file()
1536 CG(compiler_options) |= ZEND_COMPILE_NO_CONSTANT_SUBSTITUTION; in opcache_compile_file()
1538 CG(compiler_options) = orig_compiler_options; in opcache_compile_file()
1542 CG(compiler_options) = orig_compiler_options; in opcache_compile_file()
1546 CG(active_op_array) = orig_active_op_array; in opcache_compile_file()
1547 CG(function_table) = orig_function_table; in opcache_compile_file()
1548 EG(class_table) = CG(class_table) = orig_class_table; in opcache_compile_file()
2076 …zend_hash_init(&ZCG(function_table), zend_hash_num_elements(CG(function_table)), NULL, ZEND_FUNCTI… in accel_activate()
2380 CG(unclean_shutdown) = 1; in zend_accel_fast_shutdown()
2857 if ((func = zend_hash_str_find_ptr(CG(function_table), "chdir", sizeof("chdir")-1)) != NULL &&
2912 zend_hash_clean(CG(auto_globals));
2913 zend_hash_clean(CG(function_table));
2914 zend_hash_clean(CG(class_table));