* infrun.c (step_into_function): Account for possible breakpoint
authorKevin Buettner <kevinb@redhat.com>
Mon, 19 Jan 2004 17:28:52 +0000 (17:28 +0000)
committerKevin Buettner <kevinb@redhat.com>
Mon, 19 Jan 2004 17:28:52 +0000 (17:28 +0000)
adjustment when computing ``stop_func_start''.

gdb/ChangeLog
gdb/infrun.c

index 489443202afa1bd39e125017ce427d54a6fac59d..1967a1e4f07db8843d0a039f7d9e9bde0f115968 100644 (file)
@@ -1,3 +1,8 @@
+2004-01-19  Kevin Buettner  <kevinb@redhat.com>
+
+       * infrun.c (step_into_function): Account for possible breakpoint
+       adjustment when computing ``stop_func_start''.
+
 2004-01-19  Kevin Buettner  <kevinb@redhat.com>
 
        * target.c (default_region_size_ok_for_hw_watchpoint): Compare
index 1ecbcc6a7a96ff739038f98686a1e523779f4771..b10d65f76ff9f782268c0b7c49aa93d1df232506 100644 (file)
@@ -2757,6 +2757,29 @@ step_into_function (struct execution_control_state *ecs)
       && ecs->sal.end < ecs->stop_func_end)
     ecs->stop_func_start = ecs->sal.end;
 
+  /* Architectures which require breakpoint adjustment might not be able
+     to place a breakpoint at the computed address.  If so, the test
+     ``ecs->stop_func_start == stop_pc'' will never succeed.  Adjust
+     ecs->stop_func_start to an address at which a breakpoint may be
+     legitimately placed.
+     
+     Note:  kevinb/2004-01-19:  On FR-V, if this adjustment is not
+     made, GDB will enter an infinite loop when stepping through
+     optimized code consisting of VLIW instructions which contain
+     subinstructions corresponding to different source lines.  On
+     FR-V, it's not permitted to place a breakpoint on any but the
+     first subinstruction of a VLIW instruction.  When a breakpoint is
+     set, GDB will adjust the breakpoint address to the beginning of
+     the VLIW instruction.  Thus, we need to make the corresponding
+     adjustment here when computing the stop address.  */
+     
+  if (gdbarch_adjust_breakpoint_address_p (current_gdbarch))
+    {
+      ecs->stop_func_start
+       = gdbarch_adjust_breakpoint_address (current_gdbarch,
+                                            ecs->stop_func_start);
+    }
+
   if (ecs->stop_func_start == stop_pc)
     {
       /* We are already there: stop now.  */
This page took 0.041982 seconds and 4 git commands to generate.