Jan Kratochvil 5bb0f3b
Index: gdb-7.99.90.20170420/gdb/breakpoint.c
8c4c91e
===================================================================
Jan Kratochvil 5bb0f3b
--- gdb-7.99.90.20170420.orig/gdb/breakpoint.c	2017-04-20 23:04:39.627960523 +0200
Jan Kratochvil 5bb0f3b
+++ gdb-7.99.90.20170420/gdb/breakpoint.c	2017-04-20 23:07:29.854919725 +0200
Jan Kratochvil 5bb0f3b
@@ -16086,6 +16086,50 @@
Jan Kratochvil 556378e
 static struct cmd_list_element *enablebreaklist = NULL;
Jan Kratochvil 254f0e9
 
Jan Kratochvil 254f0e9
 void
0911f37
+breakpoints_relocate (struct objfile *objfile, struct section_offsets *delta)
0911f37
+{
0911f37
+  struct bp_location *bl, **blp_tmp;
0911f37
+  int changed = 0;
0911f37
+
0911f37
+  gdb_assert (objfile->separate_debug_objfile_backlink == NULL);
0911f37
+
0911f37
+  ALL_BP_LOCATIONS (bl, blp_tmp)
0911f37
+    {
0911f37
+      struct obj_section *osect;
0911f37
+
0911f37
+      /* BL->SECTION can be correctly NULL for breakpoints with multiple
0911f37
+         locations expanded through symtab.  */
0911f37
+
0911f37
+      ALL_OBJFILE_OSECTIONS (objfile, osect)
0911f37
+	{
0911f37
+	  CORE_ADDR relocated_address;
0911f37
+	  CORE_ADDR delta_offset;
0911f37
+
0911f37
+	  delta_offset = ANOFFSET (delta, osect->the_bfd_section->index);
0911f37
+	  if (delta_offset == 0)
0911f37
+	    continue;
0911f37
+	  relocated_address = bl->address + delta_offset;
0911f37
+
0911f37
+	  if (obj_section_addr (osect) <= relocated_address
0911f37
+	      && relocated_address < obj_section_endaddr (osect))
0911f37
+	    {
0911f37
+	      if (bl->inserted)
Jan Kratochvil d987921
+		remove_breakpoint (bl);
0911f37
+
0911f37
+	      bl->address += delta_offset;
0911f37
+	      bl->requested_address += delta_offset;
0911f37
+
0911f37
+	      changed = 1;
0911f37
+	    }
0911f37
+	}
0911f37
+    }
0911f37
+
0911f37
+  if (changed)
Jan Kratochvil 5bb0f3b
+    qsort (bp_locations, bp_locations_count, sizeof (*bp_locations),
Jan Kratochvil 5bb0f3b
+	   bp_locations_compare);
0911f37
+}
Jan Kratochvil 254f0e9
+
Jan Kratochvil 254f0e9
+void
Jan Kratochvil 3b55f78
 _initialize_breakpoint (void)
Jan Kratochvil 254f0e9
 {
Jan Kratochvil 254f0e9
   struct cmd_list_element *c;
Jan Kratochvil 5bb0f3b
Index: gdb-7.99.90.20170420/gdb/breakpoint.h
8c4c91e
===================================================================
Jan Kratochvil 5bb0f3b
--- gdb-7.99.90.20170420.orig/gdb/breakpoint.h	2017-04-20 23:04:39.627960523 +0200
Jan Kratochvil 5bb0f3b
+++ gdb-7.99.90.20170420/gdb/breakpoint.h	2017-04-20 23:04:48.331009563 +0200
Jan Kratochvil 5bb0f3b
@@ -1646,4 +1646,7 @@
Jan Kratochvil c16b445
    UIOUT iff debugging multiple threads.  */
Jan Kratochvil c16b445
 extern void maybe_print_thread_hit_breakpoint (struct ui_out *uiout);
0911f37
 
0911f37
+extern void breakpoints_relocate (struct objfile *objfile,
0911f37
+				  struct section_offsets *delta);
0911f37
+
0911f37
 #endif /* !defined (BREAKPOINT_H) */
Jan Kratochvil 5bb0f3b
Index: gdb-7.99.90.20170420/gdb/objfiles.c
8c4c91e
===================================================================
Jan Kratochvil 5bb0f3b
--- gdb-7.99.90.20170420.orig/gdb/objfiles.c	2017-04-20 23:04:39.627960523 +0200
Jan Kratochvil 5bb0f3b
+++ gdb-7.99.90.20170420/gdb/objfiles.c	2017-04-20 23:04:48.332009569 +0200
Jan Kratochvil 5bb0f3b
@@ -909,6 +909,11 @@
Jan Kratochvil eb6cb2d
 				obj_section_addr (s));
Jan Kratochvil eb6cb2d
     }
8c4c91e
 
0911f37
+  /* Final call of breakpoint_re_set can keep breakpoint locations disabled if
0911f37
+     their addresses match.  */
0911f37
+  if (objfile->separate_debug_objfile_backlink == NULL)
0911f37
+    breakpoints_relocate (objfile, delta);
0911f37
+
8c4c91e
   /* Data changed.  */
8c4c91e
   return 1;
0911f37
 }