Blame SOURCES/gdb-archer-pie-addons.patch

689258
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
689258
From: Fedora GDB patches <invalid@email.com>
689258
Date: Fri, 27 Oct 2017 21:07:50 +0200
689258
Subject: gdb-archer-pie-addons.patch
689258
689258
;;=push+jan: May get obsoleted by Tom's unrelocated objfiles patch.
689258
689258
diff --git a/gdb/gdbtypes.h b/gdb/gdbtypes.h
689258
--- a/gdb/gdbtypes.h
689258
+++ b/gdb/gdbtypes.h
689258
@@ -505,6 +505,7 @@ enum field_loc_kind
689258
   {
689258
     FIELD_LOC_KIND_BITPOS,	/**< bitpos */
689258
     FIELD_LOC_KIND_ENUMVAL,	/**< enumval */
689258
+    /* This address is unrelocated by the objfile's ANOFFSET.  */
689258
     FIELD_LOC_KIND_PHYSADDR,	/**< physaddr */
689258
     FIELD_LOC_KIND_PHYSNAME,	/**< physname */
689258
     FIELD_LOC_KIND_DWARF_BLOCK	/**< dwarf_block */
689258
@@ -556,6 +557,7 @@ union field_location
689258
      field.  Otherwise, physname is the mangled label of the
689258
      static field.  */
689258
 
689258
+  /* This address is unrelocated by the objfile's ANOFFSET.  */
689258
   CORE_ADDR physaddr;
689258
   const char *physname;
689258
 
689258
@@ -1438,6 +1440,7 @@ extern void set_type_vptr_basetype (struct type *, struct type *);
689258
 #define FIELD_ENUMVAL_LVAL(thisfld) ((thisfld).loc.enumval)
689258
 #define FIELD_ENUMVAL(thisfld) (FIELD_ENUMVAL_LVAL (thisfld) + 0)
689258
 #define FIELD_STATIC_PHYSNAME(thisfld) ((thisfld).loc.physname)
689258
+/* This address is unrelocated by the objfile's ANOFFSET.  */
689258
 #define FIELD_STATIC_PHYSADDR(thisfld) ((thisfld).loc.physaddr)
689258
 #define FIELD_DWARF_BLOCK(thisfld) ((thisfld).loc.dwarf_block)
689258
 #define SET_FIELD_BITPOS(thisfld, bitpos)			\
689258
@@ -1449,6 +1452,7 @@ extern void set_type_vptr_basetype (struct type *, struct type *);
689258
 #define SET_FIELD_PHYSNAME(thisfld, name)			\
689258
   (FIELD_LOC_KIND (thisfld) = FIELD_LOC_KIND_PHYSNAME,		\
689258
    FIELD_STATIC_PHYSNAME (thisfld) = (name))
689258
+/* This address is unrelocated by the objfile's ANOFFSET.  */
689258
 #define SET_FIELD_PHYSADDR(thisfld, addr)			\
689258
   (FIELD_LOC_KIND (thisfld) = FIELD_LOC_KIND_PHYSADDR,		\
689258
    FIELD_STATIC_PHYSADDR (thisfld) = (addr))
689258
@@ -1465,6 +1469,7 @@ extern void set_type_vptr_basetype (struct type *, struct type *);
689258
 #define TYPE_FIELD_BITPOS(thistype, n) FIELD_BITPOS (TYPE_FIELD (thistype, n))
689258
 #define TYPE_FIELD_ENUMVAL(thistype, n) FIELD_ENUMVAL (TYPE_FIELD (thistype, n))
689258
 #define TYPE_FIELD_STATIC_PHYSNAME(thistype, n) FIELD_STATIC_PHYSNAME (TYPE_FIELD (thistype, n))
689258
+/* This address is unrelocated by the objfile's ANOFFSET.  */
689258
 #define TYPE_FIELD_STATIC_PHYSADDR(thistype, n) FIELD_STATIC_PHYSADDR (TYPE_FIELD (thistype, n))
689258
 #define TYPE_FIELD_DWARF_BLOCK(thistype, n) FIELD_DWARF_BLOCK (TYPE_FIELD (thistype, n))
689258
 #define TYPE_FIELD_ARTIFICIAL(thistype, n) FIELD_ARTIFICIAL(TYPE_FIELD(thistype,n))
689258
diff --git a/gdb/value.c b/gdb/value.c
689258
--- a/gdb/value.c
689258
+++ b/gdb/value.c
689258
@@ -2829,7 +2829,8 @@ value_static_field (struct type *type, int fieldno)
689258
     {
689258
     case FIELD_LOC_KIND_PHYSADDR:
689258
       retval = value_at_lazy (TYPE_FIELD_TYPE (type, fieldno),
689258
-			      TYPE_FIELD_STATIC_PHYSADDR (type, fieldno));
689258
+			      TYPE_FIELD_STATIC_PHYSADDR (type, fieldno)
689258
+			      + (TYPE_OBJFILE (type) == NULL ? 0 : ANOFFSET (TYPE_OBJFILE (type)->section_offsets, SECT_OFF_TEXT (TYPE_OBJFILE (type)))));
689258
       break;
689258
     case FIELD_LOC_KIND_PHYSNAME:
689258
     {