Lines Matching refs:CG

524 	CG(empty_string) = accel_new_interned_string(CG(empty_string));  in accel_use_shm_interned_strings()
529 CG(one_char_string)[j] = accel_new_interned_string(zend_string_init(s, 1, 0)); in accel_use_shm_interned_strings()
531 for (j = 0; j < CG(known_strings_count); j++) { in accel_use_shm_interned_strings()
532 CG(known_strings)[j] = accel_new_interned_string(CG(known_strings)[j]); in accel_use_shm_interned_strings()
536 for (idx = 0; idx < CG(function_table)->nNumUsed; idx++) { in accel_use_shm_interned_strings()
537 p = CG(function_table)->arData + idx; in accel_use_shm_interned_strings()
548 for (idx = 0; idx < CG(class_table)->nNumUsed; idx++) { in accel_use_shm_interned_strings()
551 p = CG(class_table)->arData + idx; in accel_use_shm_interned_strings()
610 for (idx = 0; idx < CG(auto_globals)->nNumUsed; idx++) { in accel_use_shm_interned_strings()
613 p = CG(auto_globals)->arData + idx; in accel_use_shm_interned_strings()
1239 ZCG(mem) = zend_arena_alloc(&CG(arena), memory_used + 64); in store_script_in_file_cache()
1242 ZCG(mem) = zend_arena_alloc(&CG(arena), memory_used); in store_script_in_file_cache()
1545 orig_active_op_array = CG(active_op_array); in opcache_compile_file()
1546 orig_function_table = CG(function_table); in opcache_compile_file()
1547 orig_class_table = CG(class_table); in opcache_compile_file()
1551 CG(function_table) = &ZCG(function_table); in opcache_compile_file()
1552 EG(class_table) = CG(class_table) = &new_persistent_script->script.class_table; in opcache_compile_file()
1556 orig_compiler_options = CG(compiler_options); in opcache_compile_file()
1557 CG(compiler_options) |= ZEND_COMPILE_HANDLE_OP_ARRAY; in opcache_compile_file()
1558 CG(compiler_options) |= ZEND_COMPILE_IGNORE_INTERNAL_CLASSES; in opcache_compile_file()
1559 CG(compiler_options) |= ZEND_COMPILE_DELAYED_BINDING; in opcache_compile_file()
1560 CG(compiler_options) |= ZEND_COMPILE_NO_CONSTANT_SUBSTITUTION; in opcache_compile_file()
1562 CG(compiler_options) = orig_compiler_options; in opcache_compile_file()
1566 CG(compiler_options) = orig_compiler_options; in opcache_compile_file()
1570 CG(active_op_array) = orig_active_op_array; in opcache_compile_file()
1571 CG(function_table) = orig_function_table; in opcache_compile_file()
1572 EG(class_table) = CG(class_table) = orig_class_table; in opcache_compile_file()
2118 …zend_hash_init(&ZCG(function_table), zend_hash_num_elements(CG(function_table)), NULL, ZEND_FUNCTI… in accel_activate()
2424 CG(unclean_shutdown) = 1; in zend_accel_fast_shutdown()
2910 if ((func = zend_hash_str_find_ptr(CG(function_table), "chdir", sizeof("chdir")-1)) != NULL &&
2969 zend_hash_clean(CG(auto_globals));
2970 zend_hash_clean(CG(function_table));
2971 zend_hash_clean(CG(class_table));