Lines Matching refs:EG

517 		zend_exception_error(EG(exception), E_ERROR);  in PHPDBG_COMMAND()
533 if (EG(exception)) { in phpdbg_compile_stdin()
581 if (EG(exception)) { in phpdbg_compile()
582 zend_exception_error(EG(exception), E_ERROR); in phpdbg_compile()
611 zend_execute_data *ex = phpdbg_user_execute_data(EG(current_execute_data)); in phpdbg_skip_line_helper()
656 zend_execute_data *ex = phpdbg_user_execute_data(EG(current_execute_data)); in phpdbg_seek_to_end()
683 …if (zend_hash_index_exists(&PHPDBG_G(seek), (zend_ulong) phpdbg_user_execute_data(EG(current_execu… in PHPDBG_COMMAND()
700 …if (zend_hash_index_exists(&PHPDBG_G(seek), (zend_ulong) phpdbg_user_execute_data(EG(current_execu… in PHPDBG_COMMAND()
723 zend_object *ex = EG(exception); in phpdbg_handle_exception()
728 EG(exception) = NULL; in phpdbg_handle_exception()
735 if (EG(exception)) { in phpdbg_handle_exception()
736 EG(exception) = NULL; in phpdbg_handle_exception()
749 if (EG(prev_exception)) { in phpdbg_handle_exception()
750 OBJ_RELEASE(EG(prev_exception)); in phpdbg_handle_exception()
751 EG(prev_exception) = 0; in phpdbg_handle_exception()
754 EG(opline_before_exception) = NULL; in phpdbg_handle_exception()
756 EG(exit_status) = 255; in phpdbg_handle_exception()
762 zend_execute_data *ex = EG(current_execute_data); in PHPDBG_COMMAND()
776 EG(exit_status) = FAILURE; in PHPDBG_COMMAND()
926 if (EG(exception)) { in PHPDBG_COMMAND()
962 zend_execute_data *original_execute_data = EG(current_execute_data); in PHPDBG_COMMAND()
963 zend_vm_stack original_stack = EG(vm_stack); in PHPDBG_COMMAND()
968 original_stack->top = EG(vm_stack_top); in PHPDBG_COMMAND()
972 … phpdbg_parse_variable(param->str, param->len, &EG(symbol_table), 0, phpdbg_output_ev_variable, 0); in PHPDBG_COMMAND()
989 if (EG(exception)) { in PHPDBG_COMMAND()
990 ex = EG(exception); in PHPDBG_COMMAND()
991 zend_exception_error(EG(exception), E_ERROR); in PHPDBG_COMMAND()
1009 EG(current_execute_data) = original_execute_data; in PHPDBG_COMMAND()
1010 EG(vm_stack_top) = original_stack->top; in PHPDBG_COMMAND()
1011 EG(vm_stack_end) = original_stack->end; in PHPDBG_COMMAND()
1012 EG(vm_stack) = original_stack; in PHPDBG_COMMAND()
1013 EG(exit_status) = 0; in PHPDBG_COMMAND()
1057 zend_object **obj = EG(objects_store).object_buckets + i; in PHPDBG_COMMAND()
1058 if (i < EG(objects_store).top && *obj && IS_OBJ_VALID(*obj) && (*obj)->ce == zend_ce_generator) { in PHPDBG_COMMAND()
1073 for (i = 0; i < EG(objects_store).top; i++) { in PHPDBG_COMMAND()
1074 zend_object *obj = EG(objects_store).object_buckets[i]; in PHPDBG_COMMAND()
1146 phpdbg_writeln("info", "classes=\"%d\"", "Classes %d", zend_hash_num_elements(EG(class_table))); in PHPDBG_COMMAND()
1147 …phpdbg_writeln("info", "functions=\"%d\"", "Functions %d", zend_hash_num_elements(EG(function_tab… in PHPDBG_COMMAND()
1148 …phpdbg_writeln("info", "constants=\"%d\"", "Constants %d", zend_hash_num_elements(EG(zend_constan… in PHPDBG_COMMAND()
1149 …phpdbg_writeln("info", "includes=\"%d\"", "Included %d", zend_hash_num_elements(&EG(included_fil… in PHPDBG_COMMAND()
1454 if ((function = zend_hash_str_find_ptr(EG(function_table), lcname, lcname_len))) { in PHPDBG_COMMAND()
1489 …phpdbg_writeln("clean", "classes=\"%d\"", "Classes %d", zend_hash_num_elements(EG(class_table))… in PHPDBG_COMMAND()
1490 …phpdbg_writeln("clean", "functions=\"%d\"", "Functions %d", zend_hash_num_elements(EG(function_ta… in PHPDBG_COMMAND()
1491 …phpdbg_writeln("clean", "constants=\"%d\"", "Constants %d", zend_hash_num_elements(EG(zend_consta… in PHPDBG_COMMAND()
1492 …phpdbg_writeln("clean", "includes=\"%d\"", "Includes %d", zend_hash_num_elements(&EG(included_fi… in PHPDBG_COMMAND()
1663 const zend_op *before_ex = EG(opline_before_exception); \
1665 …if (EG(current_execute_data) && EG(current_execute_data)->func && ZEND_USER_CODE(EG(current_execut…
1666 backup_opline = EG(current_execute_data)->opline; \
1679 EG(current_execute_data)->opline = backup_opline; \
1680 EG(exception) = exception; \
1685 EG(opline_before_exception) = before_ex; \
1705 zend_object *exception = EG(exception); in phpdbg_execute_ex()
1713 if (EG(timed_out)) { in phpdbg_execute_ex()
1874 execute_data = EG(current_execute_data); in phpdbg_execute_ex()
1883 zend_object *exception = EG(exception); in phpdbg_force_interruption()
1884 zend_execute_data *data = EG(current_execute_data); /* should be always readable if not NULL */ in phpdbg_force_interruption()