Lines Matching refs:CG
42 # define GLOBAL_FUNCTION_TABLE CG(function_table)
43 # define GLOBAL_CLASS_TABLE CG(class_table)
44 # define GLOBAL_AUTO_GLOBALS_TABLE CG(auto_globals)
92 if (!CG(multibyte)) {
412 CG(short_tags) = short_tags_default;
413 CG(compiler_options) = compiler_options_default;
823 short_tags_default = CG(short_tags);
824 compiler_options_default = CG(compiler_options);
919 CG(parse_error) = 0;
938 CG(unclean_shutdown) = 1;
939 CG(active_class_entry) = NULL;
940 CG(in_compilation) = 0;
1053 if (CG(stack).top) { \
1054 memcpy(&stack, &CG(stack), sizeof(zend_stack)); \
1055 CG(stack).top = CG(stack).max = 0; \
1056 CG(stack).elements = NULL; \
1064 zend_stack_destroy(&CG(stack)); \
1065 memcpy(&CG(stack), &stack, sizeof(zend_stack)); \
1248 * such scripts recursivly, but some CG() variables may be
1251 in_compilation = CG(in_compilation);
1253 saved_class_entry = CG(active_class_entry);
1254 CG(active_class_entry) = NULL;
1257 CG(in_compilation) = 0;
1260 if (call_user_function_ex(CG(function_table), NULL, &orig_user_error_handler, &retval, 5, params, 1, NULL) == SUCCESS) {
1273 CG(active_class_entry) = saved_class_entry;
1276 CG(in_compilation) = 1;
1353 if (EG(current_execute_data) && !CG(in_compilation)) {
1448 if (call_user_function_ex(CG(function_table), NULL, &orig_user_exception_handler, &retval2, 1, params, 1, NULL) == SUCCESS) {