]> git.pld-linux.org Git - packages/gdb.git/blame - gdb-archer-pie-addons.patch
- updated (performance fixes).
[packages/gdb.git] / gdb-archer-pie-addons.patch
CommitLineData
f412e1b4 1Index: gdb-7.4.50.20111218/gdb/dwarf2read.c
51a5ef0f 2===================================================================
f412e1b4
PS
3--- gdb-7.4.50.20111218.orig/gdb/dwarf2read.c 2011-12-19 01:31:24.000000000 +0100
4+++ gdb-7.4.50.20111218/gdb/dwarf2read.c 2011-12-19 01:33:25.263238972 +0100
5@@ -8347,7 +8347,12 @@ read_common_block (struct die_info *die,
ab050a48
BZ
6 {
7 struct attribute *attr;
8 struct symbol *sym;
9- CORE_ADDR base = (CORE_ADDR) 0;
10+ struct objfile *objfile = cu->objfile;
11+ CORE_ADDR baseaddr = ANOFFSET (objfile->section_offsets,
12+ SECT_OFF_TEXT (objfile));
13+ /* This is used only for DW_AT_data_member_location entries. */
14+ CORE_ADDR base = 0;
15+ int base_p = 0;
16
17 attr = dwarf2_attr (die, DW_AT_location, cu);
18 if (attr)
f412e1b4 19@@ -8356,6 +8361,7 @@ read_common_block (struct die_info *die,
ab050a48 20 if (attr_form_is_block (attr))
51a5ef0f
PS
21 {
22 base = decode_locdesc (DW_BLOCK (attr), cu);
ab050a48 23+ base_p = 1;
51a5ef0f 24 }
ab050a48 25 else if (attr_form_is_section_offset (attr))
51a5ef0f 26 {
f412e1b4 27@@ -8408,12 +8414,15 @@ read_common_block (struct die_info *die,
6ed6bacf
AM
28 if (sym != NULL
29 && handle_data_member_location (child_die, cu, &offset))
30 {
31- SYMBOL_VALUE_ADDRESS (sym) = base + offset;
ab050a48
BZ
32+ if (!base_p)
33+ dwarf2_invalid_attrib_class_complaint
34+ ("DW_AT_data_member_location", "common block member");
6ed6bacf 35+ SYMBOL_VALUE_ADDRESS (sym) = base + offset + baseaddr;
ab050a48
BZ
36 add_symbol_to_list (sym, &global_symbols);
37 }
38
39 if (SYMBOL_CLASS (sym) == LOC_STATIC)
40- SET_FIELD_PHYSADDR (*field, SYMBOL_VALUE_ADDRESS (sym));
41+ SET_FIELD_PHYSADDR (*field, SYMBOL_VALUE_ADDRESS (sym) - baseaddr);
42 else
43 SET_FIELD_PHYSNAME (*field, SYMBOL_LINKAGE_NAME (sym));
44 FIELD_TYPE (*field) = SYMBOL_TYPE (sym);
f412e1b4 45@@ -8427,7 +8436,7 @@ read_common_block (struct die_info *die,
ab050a48
BZ
46
47 sym = new_symbol (die, type, cu);
48 /* SYMBOL_VALUE_ADDRESS never gets used as all its fields are static. */
49- SYMBOL_VALUE_ADDRESS (sym) = base;
50+ SYMBOL_VALUE_ADDRESS (sym) = base + baseaddr;
51
52 set_die_type (die, type, cu);
53 }
f412e1b4 54Index: gdb-7.4.50.20111218/gdb/gdbtypes.h
51a5ef0f 55===================================================================
f412e1b4
PS
56--- gdb-7.4.50.20111218.orig/gdb/gdbtypes.h 2011-12-18 23:35:23.000000000 +0100
57+++ gdb-7.4.50.20111218/gdb/gdbtypes.h 2011-12-19 01:34:21.448025620 +0100
6ed6bacf 58@@ -396,6 +396,7 @@ enum type_instance_flag_value
51a5ef0f
PS
59 enum field_loc_kind
60 {
61 FIELD_LOC_KIND_BITPOS, /* bitpos */
62+ /* This address is unrelocated by the objfile's ANOFFSET. */
63 FIELD_LOC_KIND_PHYSADDR, /* physaddr */
f412e1b4
PS
64 FIELD_LOC_KIND_PHYSNAME, /* physname */
65 FIELD_LOC_KIND_DWARF_BLOCK /* dwarf_block */
66@@ -581,6 +582,7 @@ struct main_type
51a5ef0f 67 is the location (in the target) of the static field.
6ed6bacf 68 Otherwise, physname is the mangled label of the static field. */
51a5ef0f
PS
69
70+ /* This address is unrelocated by the objfile's ANOFFSET. */
71 CORE_ADDR physaddr;
f412e1b4
PS
72 const char *physname;
73
74@@ -1194,6 +1196,7 @@ extern void allocate_gnat_aux_type (stru
ab050a48
BZ
75 #define FIELD_LOC_KIND(thisfld) ((thisfld).loc_kind)
76 #define FIELD_BITPOS(thisfld) ((thisfld).loc.bitpos)
77 #define FIELD_STATIC_PHYSNAME(thisfld) ((thisfld).loc.physname)
78+/* This address is unrelocated by the objfile's ANOFFSET. */
79 #define FIELD_STATIC_PHYSADDR(thisfld) ((thisfld).loc.physaddr)
f412e1b4 80 #define FIELD_DWARF_BLOCK(thisfld) ((thisfld).loc.dwarf_block)
ab050a48 81 #define SET_FIELD_BITPOS(thisfld, bitpos) \
f412e1b4 82@@ -1202,6 +1205,7 @@ extern void allocate_gnat_aux_type (stru
ab050a48
BZ
83 #define SET_FIELD_PHYSNAME(thisfld, name) \
84 (FIELD_LOC_KIND (thisfld) = FIELD_LOC_KIND_PHYSNAME, \
85 FIELD_STATIC_PHYSNAME (thisfld) = (name))
86+/* This address is unrelocated by the objfile's ANOFFSET. */
87 #define SET_FIELD_PHYSADDR(thisfld, addr) \
88 (FIELD_LOC_KIND (thisfld) = FIELD_LOC_KIND_PHYSADDR, \
89 FIELD_STATIC_PHYSADDR (thisfld) = (addr))
f412e1b4 90@@ -1217,6 +1221,7 @@ extern void allocate_gnat_aux_type (stru
ab050a48
BZ
91 #define TYPE_FIELD_LOC_KIND(thistype, n) FIELD_LOC_KIND (TYPE_FIELD (thistype, n))
92 #define TYPE_FIELD_BITPOS(thistype, n) FIELD_BITPOS (TYPE_FIELD (thistype, n))
93 #define TYPE_FIELD_STATIC_PHYSNAME(thistype, n) FIELD_STATIC_PHYSNAME (TYPE_FIELD (thistype, n))
94+/* This address is unrelocated by the objfile's ANOFFSET. */
95 #define TYPE_FIELD_STATIC_PHYSADDR(thistype, n) FIELD_STATIC_PHYSADDR (TYPE_FIELD (thistype, n))
f412e1b4 96 #define TYPE_FIELD_DWARF_BLOCK(thistype, n) FIELD_DWARF_BLOCK (TYPE_FIELD (thistype, n))
ab050a48 97 #define TYPE_FIELD_ARTIFICIAL(thistype, n) FIELD_ARTIFICIAL(TYPE_FIELD(thistype,n))
f412e1b4 98Index: gdb-7.4.50.20111218/gdb/jv-lang.c
51a5ef0f 99===================================================================
f412e1b4
PS
100--- gdb-7.4.50.20111218.orig/gdb/jv-lang.c 2011-12-06 19:54:39.000000000 +0100
101+++ gdb-7.4.50.20111218/gdb/jv-lang.c 2011-12-19 01:33:25.280238908 +0100
102@@ -430,7 +430,8 @@ java_link_class_type (struct gdbarch *gd
ab050a48
BZ
103
104 fields = NULL;
6ed6bacf 105 nfields--; /* First set up dummy "class" field. */
ab050a48
BZ
106- SET_FIELD_PHYSADDR (TYPE_FIELD (type, nfields), value_address (clas));
107+ SET_FIELD_PHYSADDR (TYPE_FIELD (type, nfields), value_address (clas)
108+ - (TYPE_OBJFILE (type) == NULL ? 0 : ANOFFSET (TYPE_OBJFILE (type)->section_offsets, SECT_OFF_TEXT (TYPE_OBJFILE (type)))));
109 TYPE_FIELD_NAME (type, nfields) = "class";
110 TYPE_FIELD_TYPE (type, nfields) = value_type (clas);
111 SET_TYPE_FIELD_PRIVATE (type, nfields);
f412e1b4 112@@ -478,7 +479,8 @@ java_link_class_type (struct gdbarch *gd
ab050a48
BZ
113 SET_TYPE_FIELD_PROTECTED (type, i);
114 }
115 if (accflags & 0x0008) /* ACC_STATIC */
116- SET_FIELD_PHYSADDR (TYPE_FIELD (type, i), boffset);
117+ SET_FIELD_PHYSADDR (TYPE_FIELD (type, i), boffset
118+ - (TYPE_OBJFILE (type) == NULL ? 0 : ANOFFSET (TYPE_OBJFILE (type)->section_offsets, SECT_OFF_TEXT (TYPE_OBJFILE (type)))));
119 else
120 TYPE_FIELD_BITPOS (type, i) = 8 * boffset;
121 if (accflags & 0x8000) /* FIELD_UNRESOLVED_FLAG */
f412e1b4 122Index: gdb-7.4.50.20111218/gdb/value.c
51a5ef0f 123===================================================================
f412e1b4
PS
124--- gdb-7.4.50.20111218.orig/gdb/value.c 2011-12-18 23:35:23.000000000 +0100
125+++ gdb-7.4.50.20111218/gdb/value.c 2011-12-19 01:33:25.283238896 +0100
126@@ -2481,7 +2481,8 @@ value_static_field (struct type *type, i
ab050a48 127 {
51a5ef0f
PS
128 case FIELD_LOC_KIND_PHYSADDR:
129 retval = value_at_lazy (TYPE_FIELD_TYPE (type, fieldno),
130- TYPE_FIELD_STATIC_PHYSADDR (type, fieldno));
131+ TYPE_FIELD_STATIC_PHYSADDR (type, fieldno)
132+ + (TYPE_OBJFILE (type) == NULL ? 0 : ANOFFSET (TYPE_OBJFILE (type)->section_offsets, SECT_OFF_TEXT (TYPE_OBJFILE (type)))));
133 break;
134 case FIELD_LOC_KIND_PHYSNAME:
ab050a48 135 {
This page took 0.059197 seconds and 4 git commands to generate.