From: Andrew Cagney Date: Thu, 29 Apr 2004 22:36:24 +0000 (+0000) Subject: 2004-04-29 Joel Brobecker X-Git-Tag: csl-arm-2004-q1a~61 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=5bf07449f4c78672b3cca6e41358443878b7be8c;p=pf3gnuchains%2Fpf3gnuchains4x.git 2004-04-29 Joel Brobecker Committed by Andrew Cagney. * infrun.c (handle_inferior_event): Rely on frame IDs to detect function calls. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index efd7c50574..37dd1db373 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2004-04-29 Joel Brobecker + + Committed by Andrew Cagney. + * infrun.c (handle_inferior_event): Rely on frame IDs to detect + function calls. + 2004-04-29 Andrew Cagney * mips-tdep.c (mips_abi_regsize): Replace tdep parameter with diff --git a/gdb/infrun.c b/gdb/infrun.c index fea2498454..5f114750ea 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -2465,6 +2465,18 @@ process_event_stop_test: return; } + if (step_over_calls == STEP_OVER_UNDEBUGGABLE + && ecs->stop_func_name == NULL) + { + /* There is no symbol, not even a minimal symbol, corresponding + to the address where we just stopped. So we just stepped + inside undebuggable code. Since we want to step over this + kind of code, we keep going until the inferior returns from + the current function. */ + handle_step_into_function (ecs); + return; + } + /* We can't update step_sp every time through the loop, because reading the stack pointer would slow down stepping too much. But we can update it every time we leave the step range. */ @@ -2543,11 +2555,8 @@ process_event_stop_test: return; } - if (((stop_pc == ecs->stop_func_start /* Quick test */ - || in_prologue (stop_pc, ecs->stop_func_start)) - && !IN_SOLIB_RETURN_TRAMPOLINE (stop_pc, ecs->stop_func_name)) - || IN_SOLIB_CALL_TRAMPOLINE (stop_pc, ecs->stop_func_name) - || ecs->stop_func_name == 0) + if (frame_id_eq (get_frame_id (get_prev_frame (get_current_frame ())), + step_frame_id)) { /* It's a subroutine call. */ handle_step_into_function (ecs);