Lines Matching refs:EG

516 		zend_exception_error(EG(exception), E_ERROR);  in PHPDBG_COMMAND()
532 if (EG(exception)) { in phpdbg_compile_stdin()
628 if (EG(exception)) { in phpdbg_compile()
629 zend_exception_error(EG(exception), E_ERROR); in phpdbg_compile()
658 zend_execute_data *ex = phpdbg_user_execute_data(EG(current_execute_data)); in phpdbg_skip_line_helper()
703 zend_execute_data *ex = phpdbg_user_execute_data(EG(current_execute_data)); in phpdbg_seek_to_end()
730 …if (zend_hash_index_exists(&PHPDBG_G(seek), (zend_ulong) phpdbg_user_execute_data(EG(current_execu… in PHPDBG_COMMAND()
747 …if (zend_hash_index_exists(&PHPDBG_G(seek), (zend_ulong) phpdbg_user_execute_data(EG(current_execu… in PHPDBG_COMMAND()
770 zend_object *ex = EG(exception); in phpdbg_handle_exception()
775 EG(exception) = NULL; in phpdbg_handle_exception()
782 if (EG(exception)) { in phpdbg_handle_exception()
783 EG(exception) = NULL; in phpdbg_handle_exception()
796 if (EG(prev_exception)) { in phpdbg_handle_exception()
797 OBJ_RELEASE(EG(prev_exception)); in phpdbg_handle_exception()
798 EG(prev_exception) = 0; in phpdbg_handle_exception()
801 EG(opline_before_exception) = NULL; in phpdbg_handle_exception()
803 EG(exit_status) = 255; in phpdbg_handle_exception()
809 zend_execute_data *ex = EG(current_execute_data); in PHPDBG_COMMAND()
972 if (EG(exception)) { in PHPDBG_COMMAND()
1008 zend_execute_data *original_execute_data = EG(current_execute_data); in PHPDBG_COMMAND()
1009 zend_vm_stack original_stack = EG(vm_stack); in PHPDBG_COMMAND()
1014 original_stack->top = EG(vm_stack_top); in PHPDBG_COMMAND()
1018 … phpdbg_parse_variable(param->str, param->len, &EG(symbol_table), 0, phpdbg_output_ev_variable, 0); in PHPDBG_COMMAND()
1035 if (EG(exception)) { in PHPDBG_COMMAND()
1036 ex = EG(exception); in PHPDBG_COMMAND()
1037 zend_exception_error(EG(exception), E_ERROR); in PHPDBG_COMMAND()
1055 EG(current_execute_data) = original_execute_data; in PHPDBG_COMMAND()
1056 EG(vm_stack_top) = original_stack->top; in PHPDBG_COMMAND()
1057 EG(vm_stack_end) = original_stack->end; in PHPDBG_COMMAND()
1058 EG(vm_stack) = original_stack; in PHPDBG_COMMAND()
1059 EG(exit_status) = 0; in PHPDBG_COMMAND()
1103 zend_object **obj = EG(objects_store).object_buckets + i; in PHPDBG_COMMAND()
1104 if (i < EG(objects_store).top && *obj && IS_OBJ_VALID(*obj) && (*obj)->ce == zend_ce_generator) { in PHPDBG_COMMAND()
1119 for (i = 0; i < EG(objects_store).top; i++) { in PHPDBG_COMMAND()
1120 zend_object *obj = EG(objects_store).object_buckets[i]; in PHPDBG_COMMAND()
1192 phpdbg_writeln("info", "classes=\"%d\"", "Classes %d", zend_hash_num_elements(EG(class_table))); in PHPDBG_COMMAND()
1193 …phpdbg_writeln("info", "functions=\"%d\"", "Functions %d", zend_hash_num_elements(EG(function_tab… in PHPDBG_COMMAND()
1194 …phpdbg_writeln("info", "constants=\"%d\"", "Constants %d", zend_hash_num_elements(EG(zend_constan… in PHPDBG_COMMAND()
1195 …phpdbg_writeln("info", "includes=\"%d\"", "Included %d", zend_hash_num_elements(&EG(included_fil… in PHPDBG_COMMAND()
1500 if ((function = zend_hash_str_find_ptr(EG(function_table), lcname, lcname_len))) { in PHPDBG_COMMAND()
1535 …phpdbg_writeln("clean", "classes=\"%d\"", "Classes %d", zend_hash_num_elements(EG(class_table))… in PHPDBG_COMMAND()
1536 …phpdbg_writeln("clean", "functions=\"%d\"", "Functions %d", zend_hash_num_elements(EG(function_ta… in PHPDBG_COMMAND()
1537 …phpdbg_writeln("clean", "constants=\"%d\"", "Constants %d", zend_hash_num_elements(EG(zend_consta… in PHPDBG_COMMAND()
1538 …phpdbg_writeln("clean", "includes=\"%d\"", "Includes %d", zend_hash_num_elements(&EG(included_fi… in PHPDBG_COMMAND()
1695 …if (EG(current_execute_data) && EG(current_execute_data)->func && ZEND_USER_CODE(EG(current_execut…
1696 backup_opline = EG(current_execute_data)->opline; \
1698 before_ex = EG(opline_before_exception); \
1716 …if (EG(current_execute_data) && EG(current_execute_data)->func && ZEND_USER_CODE(EG(current_execut…
1718 EG(current_execute_data)->opline = backup_opline; \
1719 EG(exception) = exception; \
1724 EG(opline_before_exception) = before_ex; \
1743 zend_object *exception = EG(exception); in phpdbg_execute_ex()
1751 if (EG(timed_out)) { in phpdbg_execute_ex()
1912 execute_data = EG(current_execute_data); in phpdbg_execute_ex()
1921 zend_object *exception = EG(exception); in phpdbg_force_interruption()
1922 zend_execute_data *data = EG(current_execute_data); /* should be always readable if not NULL */ in phpdbg_force_interruption()