|
|
861f93 |
Index: gdb-7.5.50.20130215/gdb/breakpoint.c
|
|
|
861f93 |
===================================================================
|
|
|
861f93 |
--- gdb-7.5.50.20130215.orig/gdb/breakpoint.c 2013-02-15 22:31:37.000000000 +0100
|
|
|
861f93 |
+++ gdb-7.5.50.20130215/gdb/breakpoint.c 2013-02-15 22:37:08.216381988 +0100
|
|
|
861f93 |
@@ -16020,6 +16020,50 @@ initialize_breakpoint_ops (void)
|
|
|
861f93 |
static struct cmd_list_element *enablebreaklist = NULL;
|
|
|
861f93 |
|
|
|
861f93 |
void
|
|
|
861f93 |
+breakpoints_relocate (struct objfile *objfile, struct section_offsets *delta)
|
|
|
861f93 |
+{
|
|
|
861f93 |
+ struct bp_location *bl, **blp_tmp;
|
|
|
861f93 |
+ int changed = 0;
|
|
|
861f93 |
+
|
|
|
861f93 |
+ gdb_assert (objfile->separate_debug_objfile_backlink == NULL);
|
|
|
861f93 |
+
|
|
|
861f93 |
+ ALL_BP_LOCATIONS (bl, blp_tmp)
|
|
|
861f93 |
+ {
|
|
|
861f93 |
+ struct obj_section *osect;
|
|
|
861f93 |
+
|
|
|
861f93 |
+ /* BL->SECTION can be correctly NULL for breakpoints with multiple
|
|
|
861f93 |
+ locations expanded through symtab. */
|
|
|
861f93 |
+
|
|
|
861f93 |
+ ALL_OBJFILE_OSECTIONS (objfile, osect)
|
|
|
861f93 |
+ {
|
|
|
861f93 |
+ CORE_ADDR relocated_address;
|
|
|
861f93 |
+ CORE_ADDR delta_offset;
|
|
|
861f93 |
+
|
|
|
861f93 |
+ delta_offset = ANOFFSET (delta, osect->the_bfd_section->index);
|
|
|
861f93 |
+ if (delta_offset == 0)
|
|
|
861f93 |
+ continue;
|
|
|
861f93 |
+ relocated_address = bl->address + delta_offset;
|
|
|
861f93 |
+
|
|
|
861f93 |
+ if (obj_section_addr (osect) <= relocated_address
|
|
|
861f93 |
+ && relocated_address < obj_section_endaddr (osect))
|
|
|
861f93 |
+ {
|
|
|
861f93 |
+ if (bl->inserted)
|
|
|
861f93 |
+ remove_breakpoint (bl, mark_uninserted);
|
|
|
861f93 |
+
|
|
|
861f93 |
+ bl->address += delta_offset;
|
|
|
861f93 |
+ bl->requested_address += delta_offset;
|
|
|
861f93 |
+
|
|
|
861f93 |
+ changed = 1;
|
|
|
861f93 |
+ }
|
|
|
861f93 |
+ }
|
|
|
861f93 |
+ }
|
|
|
861f93 |
+
|
|
|
861f93 |
+ if (changed)
|
|
|
861f93 |
+ qsort (bp_location, bp_location_count, sizeof (*bp_location),
|
|
|
861f93 |
+ bp_location_compare);
|
|
|
861f93 |
+}
|
|
|
861f93 |
+
|
|
|
861f93 |
+void
|
|
|
861f93 |
_initialize_breakpoint (void)
|
|
|
861f93 |
{
|
|
|
861f93 |
struct cmd_list_element *c;
|
|
|
861f93 |
Index: gdb-7.5.50.20130215/gdb/breakpoint.h
|
|
|
861f93 |
===================================================================
|
|
|
861f93 |
--- gdb-7.5.50.20130215.orig/gdb/breakpoint.h 2013-02-03 16:57:06.000000000 +0100
|
|
|
861f93 |
+++ gdb-7.5.50.20130215/gdb/breakpoint.h 2013-02-15 22:37:19.025395693 +0100
|
|
|
861f93 |
@@ -1556,4 +1556,7 @@ extern void handle_solib_event (void);
|
|
|
861f93 |
|
|
|
861f93 |
extern void breakpoint_free_objfile (struct objfile *objfile);
|
|
|
861f93 |
|
|
|
861f93 |
+extern void breakpoints_relocate (struct objfile *objfile,
|
|
|
861f93 |
+ struct section_offsets *delta);
|
|
|
861f93 |
+
|
|
|
861f93 |
#endif /* !defined (BREAKPOINT_H) */
|
|
|
861f93 |
Index: gdb-7.5.50.20130215/gdb/objfiles.c
|
|
|
861f93 |
===================================================================
|
|
|
861f93 |
--- gdb-7.5.50.20130215.orig/gdb/objfiles.c 2013-02-03 16:57:07.000000000 +0100
|
|
|
861f93 |
+++ gdb-7.5.50.20130215/gdb/objfiles.c 2013-02-15 22:37:08.217381990 +0100
|
|
|
861f93 |
@@ -831,6 +831,11 @@ objfile_relocate1 (struct objfile *objfi
|
|
|
861f93 |
objfile->sf->sym_probe_fns->sym_relocate_probe (objfile,
|
|
|
861f93 |
new_offsets, delta);
|
|
|
861f93 |
|
|
|
861f93 |
+ /* Final call of breakpoint_re_set can keep breakpoint locations disabled if
|
|
|
861f93 |
+ their addresses match. */
|
|
|
861f93 |
+ if (objfile->separate_debug_objfile_backlink == NULL)
|
|
|
861f93 |
+ breakpoints_relocate (objfile, delta);
|
|
|
861f93 |
+
|
|
|
861f93 |
/* Data changed. */
|
|
|
861f93 |
return 1;
|
|
|
861f93 |
}
|