Lines Matching refs:CG

51 # define GLOBAL_FUNCTION_TABLE		CG(function_table)
52 # define GLOBAL_CLASS_TABLE CG(class_table)
53 # define GLOBAL_AUTO_GLOBALS_TABLE CG(auto_globals)
110 if (!CG(multibyte)) { in ZEND_INI_MH()
480 CG(short_tags) = short_tags_default; in zend_set_default_compile_time_values()
481 CG(compiler_options) = compiler_options_default; in zend_set_default_compile_time_values()
881 short_tags_default = CG(short_tags); in zend_post_startup()
882 compiler_options_default = CG(compiler_options); in zend_post_startup()
946 CG(parse_error) = 0; in zenderror()
965 CG(unclean_shutdown) = 1; in BEGIN_EXTERN_C()
966 CG(active_class_entry) = NULL; in BEGIN_EXTERN_C()
967 CG(in_compilation) = 0; in BEGIN_EXTERN_C()
1080 if (CG(stack).top) { \
1081 memcpy(&stack, &CG(stack), sizeof(zend_stack)); \
1082 CG(stack).top = CG(stack).max = 0; \
1083 CG(stack).elements = NULL; \
1091 zend_stack_destroy(&CG(stack)); \
1092 memcpy(&CG(stack), &stack, sizeof(zend_stack)); \
1262 in_compilation = CG(in_compilation); in zend_error()
1264 saved_class_entry = CG(active_class_entry); in zend_error()
1265 CG(active_class_entry) = NULL; in zend_error()
1268 CG(in_compilation) = 0; in zend_error()
1274 …if (call_user_function_ex(CG(function_table), NULL, &orig_user_error_handler, &retval, 5, params, … in zend_error()
1289 CG(active_class_entry) = saved_class_entry; in zend_error()
1292 CG(in_compilation) = 1; in zend_error()
1369 if (EG(current_execute_data) && !CG(in_compilation)) { in zend_throw_error()
1464 …if (call_user_function_ex(CG(function_table), NULL, &orig_user_exception_handler, &retval2, 1, par… in zend_try_exception_handler()