2012-06-03 17:40:44 +00:00
|
|
|
Index: gdb-7.4.50.20120602/gdb/breakpoint.c
|
2010-01-16 22:32:10 +00:00
|
|
|
===================================================================
|
2012-06-03 17:40:44 +00:00
|
|
|
--- gdb-7.4.50.20120602.orig/gdb/breakpoint.c 2012-06-02 19:11:54.000000000 +0200
|
|
|
|
+++ gdb-7.4.50.20120602/gdb/breakpoint.c 2012-06-02 19:52:58.161226506 +0200
|
|
|
|
@@ -15495,6 +15495,50 @@ initialize_breakpoint_ops (void)
|
2011-07-22 22:41:56 +00:00
|
|
|
}
|
2012-01-03 15:00:12 +00:00
|
|
|
|
|
|
|
void
|
2010-01-12 22:15:57 +00:00
|
|
|
+breakpoints_relocate (struct objfile *objfile, struct section_offsets *delta)
|
|
|
|
+{
|
|
|
|
+ struct bp_location *bl, **blp_tmp;
|
|
|
|
+ int changed = 0;
|
|
|
|
+
|
|
|
|
+ gdb_assert (objfile->separate_debug_objfile_backlink == NULL);
|
|
|
|
+
|
|
|
|
+ ALL_BP_LOCATIONS (bl, blp_tmp)
|
|
|
|
+ {
|
|
|
|
+ struct obj_section *osect;
|
|
|
|
+
|
|
|
|
+ /* BL->SECTION can be correctly NULL for breakpoints with multiple
|
|
|
|
+ locations expanded through symtab. */
|
|
|
|
+
|
|
|
|
+ ALL_OBJFILE_OSECTIONS (objfile, osect)
|
|
|
|
+ {
|
|
|
|
+ CORE_ADDR relocated_address;
|
|
|
|
+ CORE_ADDR delta_offset;
|
|
|
|
+
|
|
|
|
+ delta_offset = ANOFFSET (delta, osect->the_bfd_section->index);
|
|
|
|
+ if (delta_offset == 0)
|
|
|
|
+ continue;
|
|
|
|
+ relocated_address = bl->address + delta_offset;
|
|
|
|
+
|
|
|
|
+ if (obj_section_addr (osect) <= relocated_address
|
|
|
|
+ && relocated_address < obj_section_endaddr (osect))
|
|
|
|
+ {
|
|
|
|
+ if (bl->inserted)
|
|
|
|
+ remove_breakpoint (bl, mark_uninserted);
|
|
|
|
+
|
|
|
|
+ bl->address += delta_offset;
|
|
|
|
+ bl->requested_address += delta_offset;
|
|
|
|
+
|
|
|
|
+ changed = 1;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (changed)
|
|
|
|
+ qsort (bp_location, bp_location_count, sizeof (*bp_location),
|
2010-01-16 22:32:10 +00:00
|
|
|
+ bp_location_compare);
|
2010-01-12 22:15:57 +00:00
|
|
|
+}
|
2012-01-03 15:00:12 +00:00
|
|
|
+
|
|
|
|
+void
|
2011-07-22 22:41:56 +00:00
|
|
|
_initialize_breakpoint (void)
|
2012-01-03 15:00:12 +00:00
|
|
|
{
|
|
|
|
struct cmd_list_element *c;
|
2012-06-03 17:40:44 +00:00
|
|
|
Index: gdb-7.4.50.20120602/gdb/breakpoint.h
|
2010-01-16 22:32:10 +00:00
|
|
|
===================================================================
|
2012-06-03 17:40:44 +00:00
|
|
|
--- gdb-7.4.50.20120602.orig/gdb/breakpoint.h 2012-05-16 16:35:03.000000000 +0200
|
|
|
|
+++ gdb-7.4.50.20120602/gdb/breakpoint.h 2012-06-02 19:53:09.268223263 +0200
|
|
|
|
@@ -1503,4 +1503,7 @@ extern struct gdbarch *get_sal_arch (str
|
2011-02-06 21:46:57 +00:00
|
|
|
|
2012-06-03 17:40:44 +00:00
|
|
|
extern void handle_solib_event (void);
|
2010-01-12 22:15:57 +00:00
|
|
|
|
|
|
|
+extern void breakpoints_relocate (struct objfile *objfile,
|
|
|
|
+ struct section_offsets *delta);
|
|
|
|
+
|
|
|
|
#endif /* !defined (BREAKPOINT_H) */
|
2012-06-03 17:40:44 +00:00
|
|
|
Index: gdb-7.4.50.20120602/gdb/objfiles.c
|
2010-01-16 22:32:10 +00:00
|
|
|
===================================================================
|
2012-06-03 17:40:44 +00:00
|
|
|
--- gdb-7.4.50.20120602.orig/gdb/objfiles.c 2012-05-10 21:50:08.000000000 +0200
|
|
|
|
+++ gdb-7.4.50.20120602/gdb/objfiles.c 2012-06-02 19:52:58.202226502 +0200
|
|
|
|
@@ -802,6 +802,11 @@ objfile_relocate1 (struct objfile *objfi
|
2011-03-20 20:44:20 +00:00
|
|
|
objfile->sf->sym_probe_fns->sym_relocate_probe (objfile,
|
|
|
|
new_offsets, delta);
|
2010-01-16 22:32:10 +00:00
|
|
|
|
2010-01-12 22:15:57 +00:00
|
|
|
+ /* Final call of breakpoint_re_set can keep breakpoint locations disabled if
|
|
|
|
+ their addresses match. */
|
|
|
|
+ if (objfile->separate_debug_objfile_backlink == NULL)
|
|
|
|
+ breakpoints_relocate (objfile, delta);
|
|
|
|
+
|
2010-01-16 22:32:10 +00:00
|
|
|
/* Data changed. */
|
|
|
|
return 1;
|
2010-01-12 22:15:57 +00:00
|
|
|
}
|