2010-07-21 21:30:20 +00:00
|
|
|
Index: gdb-7.1.90.20100711/gdb/dwarf2read.c
|
2010-01-16 22:32:10 +00:00
|
|
|
===================================================================
|
2010-07-21 21:30:20 +00:00
|
|
|
--- gdb-7.1.90.20100711.orig/gdb/dwarf2read.c 2010-07-13 00:26:25.000000000 +0200
|
|
|
|
+++ gdb-7.1.90.20100711/gdb/dwarf2read.c 2010-07-13 00:34:00.000000000 +0200
|
|
|
|
@@ -5737,7 +5737,12 @@ read_common_block (struct die_info *die,
|
2010-01-12 22:15:57 +00:00
|
|
|
{
|
|
|
|
struct attribute *attr;
|
|
|
|
struct symbol *sym;
|
|
|
|
- CORE_ADDR base = (CORE_ADDR) 0;
|
|
|
|
+ struct objfile *objfile = cu->objfile;
|
|
|
|
+ CORE_ADDR baseaddr = ANOFFSET (objfile->section_offsets,
|
|
|
|
+ SECT_OFF_TEXT (objfile));
|
|
|
|
+ /* This is used only for DW_AT_data_member_location entries. */
|
|
|
|
+ CORE_ADDR base = 0;
|
|
|
|
+ int base_p = 0;
|
|
|
|
|
|
|
|
attr = dwarf2_attr (die, DW_AT_location, cu);
|
|
|
|
if (attr)
|
2010-07-21 21:30:20 +00:00
|
|
|
@@ -5746,6 +5751,7 @@ read_common_block (struct die_info *die,
|
2010-01-12 22:15:57 +00:00
|
|
|
if (attr_form_is_block (attr))
|
2010-01-16 22:32:10 +00:00
|
|
|
{
|
|
|
|
base = decode_locdesc (DW_BLOCK (attr), cu);
|
2010-01-12 22:15:57 +00:00
|
|
|
+ base_p = 1;
|
2010-01-16 22:32:10 +00:00
|
|
|
}
|
2010-01-12 22:15:57 +00:00
|
|
|
else if (attr_form_is_section_offset (attr))
|
2010-01-16 22:32:10 +00:00
|
|
|
{
|
2010-07-21 21:30:20 +00:00
|
|
|
@@ -5807,12 +5813,15 @@ read_common_block (struct die_info *die,
|
2010-01-12 22:15:57 +00:00
|
|
|
else
|
|
|
|
dwarf2_complex_location_expr_complaint ();
|
|
|
|
|
|
|
|
- SYMBOL_VALUE_ADDRESS (sym) = base + byte_offset;
|
|
|
|
+ if (!base_p)
|
|
|
|
+ dwarf2_invalid_attrib_class_complaint
|
|
|
|
+ ("DW_AT_data_member_location", "common block member");
|
|
|
|
+ SYMBOL_VALUE_ADDRESS (sym) = base + byte_offset + baseaddr;
|
|
|
|
add_symbol_to_list (sym, &global_symbols);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SYMBOL_CLASS (sym) == LOC_STATIC)
|
|
|
|
- SET_FIELD_PHYSADDR (*field, SYMBOL_VALUE_ADDRESS (sym));
|
|
|
|
+ SET_FIELD_PHYSADDR (*field, SYMBOL_VALUE_ADDRESS (sym) - baseaddr);
|
|
|
|
else
|
|
|
|
SET_FIELD_PHYSNAME (*field, SYMBOL_LINKAGE_NAME (sym));
|
|
|
|
FIELD_TYPE (*field) = SYMBOL_TYPE (sym);
|
2010-07-21 21:30:20 +00:00
|
|
|
@@ -5826,7 +5835,7 @@ read_common_block (struct die_info *die,
|
2010-01-12 22:15:57 +00:00
|
|
|
|
|
|
|
sym = new_symbol (die, type, cu);
|
|
|
|
/* SYMBOL_VALUE_ADDRESS never gets used as all its fields are static. */
|
|
|
|
- SYMBOL_VALUE_ADDRESS (sym) = base;
|
|
|
|
+ SYMBOL_VALUE_ADDRESS (sym) = base + baseaddr;
|
|
|
|
|
|
|
|
set_die_type (die, type, cu);
|
|
|
|
}
|
2010-07-21 21:30:20 +00:00
|
|
|
Index: gdb-7.1.90.20100711/gdb/gdbtypes.h
|
2010-01-16 22:32:10 +00:00
|
|
|
===================================================================
|
2010-07-21 21:30:20 +00:00
|
|
|
--- gdb-7.1.90.20100711.orig/gdb/gdbtypes.h 2010-07-12 23:07:34.000000000 +0200
|
|
|
|
+++ gdb-7.1.90.20100711/gdb/gdbtypes.h 2010-07-13 00:34:00.000000000 +0200
|
|
|
|
@@ -395,6 +395,7 @@ enum type_instance_flag_value
|
2010-01-16 22:32:10 +00:00
|
|
|
enum field_loc_kind
|
|
|
|
{
|
|
|
|
FIELD_LOC_KIND_BITPOS, /* bitpos */
|
|
|
|
+ /* This address is unrelocated by the objfile's ANOFFSET. */
|
|
|
|
FIELD_LOC_KIND_PHYSADDR, /* physaddr */
|
|
|
|
FIELD_LOC_KIND_PHYSNAME /* physname */
|
|
|
|
};
|
2010-07-21 21:30:20 +00:00
|
|
|
@@ -577,6 +578,7 @@ struct main_type
|
2010-01-16 22:32:10 +00:00
|
|
|
is the location (in the target) of the static field.
|
|
|
|
Otherwise, physname is the mangled label of the static field. */
|
|
|
|
|
|
|
|
+ /* This address is unrelocated by the objfile's ANOFFSET. */
|
|
|
|
CORE_ADDR physaddr;
|
|
|
|
char *physname;
|
|
|
|
}
|
2010-07-21 21:30:20 +00:00
|
|
|
@@ -1073,6 +1075,7 @@ extern void allocate_gnat_aux_type (stru
|
2010-01-12 22:15:57 +00:00
|
|
|
#define FIELD_LOC_KIND(thisfld) ((thisfld).loc_kind)
|
|
|
|
#define FIELD_BITPOS(thisfld) ((thisfld).loc.bitpos)
|
|
|
|
#define FIELD_STATIC_PHYSNAME(thisfld) ((thisfld).loc.physname)
|
|
|
|
+/* This address is unrelocated by the objfile's ANOFFSET. */
|
|
|
|
#define FIELD_STATIC_PHYSADDR(thisfld) ((thisfld).loc.physaddr)
|
|
|
|
#define SET_FIELD_BITPOS(thisfld, bitpos) \
|
2010-01-16 22:32:10 +00:00
|
|
|
(FIELD_LOC_KIND (thisfld) = FIELD_LOC_KIND_BITPOS, \
|
2010-07-21 21:30:20 +00:00
|
|
|
@@ -1080,6 +1083,7 @@ extern void allocate_gnat_aux_type (stru
|
2010-01-12 22:15:57 +00:00
|
|
|
#define SET_FIELD_PHYSNAME(thisfld, name) \
|
|
|
|
(FIELD_LOC_KIND (thisfld) = FIELD_LOC_KIND_PHYSNAME, \
|
|
|
|
FIELD_STATIC_PHYSNAME (thisfld) = (name))
|
|
|
|
+/* This address is unrelocated by the objfile's ANOFFSET. */
|
|
|
|
#define SET_FIELD_PHYSADDR(thisfld, addr) \
|
|
|
|
(FIELD_LOC_KIND (thisfld) = FIELD_LOC_KIND_PHYSADDR, \
|
|
|
|
FIELD_STATIC_PHYSADDR (thisfld) = (addr))
|
2010-07-21 21:30:20 +00:00
|
|
|
@@ -1092,6 +1096,7 @@ extern void allocate_gnat_aux_type (stru
|
2010-01-12 22:15:57 +00:00
|
|
|
#define TYPE_FIELD_LOC_KIND(thistype, n) FIELD_LOC_KIND (TYPE_FIELD (thistype, n))
|
|
|
|
#define TYPE_FIELD_BITPOS(thistype, n) FIELD_BITPOS (TYPE_FIELD (thistype, n))
|
|
|
|
#define TYPE_FIELD_STATIC_PHYSNAME(thistype, n) FIELD_STATIC_PHYSNAME (TYPE_FIELD (thistype, n))
|
|
|
|
+/* This address is unrelocated by the objfile's ANOFFSET. */
|
|
|
|
#define TYPE_FIELD_STATIC_PHYSADDR(thistype, n) FIELD_STATIC_PHYSADDR (TYPE_FIELD (thistype, n))
|
|
|
|
#define TYPE_FIELD_ARTIFICIAL(thistype, n) FIELD_ARTIFICIAL(TYPE_FIELD(thistype,n))
|
2010-01-16 22:32:10 +00:00
|
|
|
#define TYPE_FIELD_BITSIZE(thistype, n) FIELD_BITSIZE(TYPE_FIELD(thistype,n))
|
2010-07-21 21:30:20 +00:00
|
|
|
Index: gdb-7.1.90.20100711/gdb/jv-lang.c
|
2010-01-16 22:32:10 +00:00
|
|
|
===================================================================
|
2010-07-21 21:30:20 +00:00
|
|
|
--- gdb-7.1.90.20100711.orig/gdb/jv-lang.c 2010-05-17 19:18:39.000000000 +0200
|
|
|
|
+++ gdb-7.1.90.20100711/gdb/jv-lang.c 2010-07-13 00:34:00.000000000 +0200
|
|
|
|
@@ -409,7 +409,8 @@ java_link_class_type (struct gdbarch *gd
|
2010-01-12 22:15:57 +00:00
|
|
|
|
|
|
|
fields = NULL;
|
|
|
|
nfields--; /* First set up dummy "class" field. */
|
|
|
|
- SET_FIELD_PHYSADDR (TYPE_FIELD (type, nfields), value_address (clas));
|
|
|
|
+ SET_FIELD_PHYSADDR (TYPE_FIELD (type, nfields), value_address (clas)
|
|
|
|
+ - (TYPE_OBJFILE (type) == NULL ? 0 : ANOFFSET (TYPE_OBJFILE (type)->section_offsets, SECT_OFF_TEXT (TYPE_OBJFILE (type)))));
|
|
|
|
TYPE_FIELD_NAME (type, nfields) = "class";
|
|
|
|
TYPE_FIELD_TYPE (type, nfields) = value_type (clas);
|
|
|
|
SET_TYPE_FIELD_PRIVATE (type, nfields);
|
2010-07-21 21:30:20 +00:00
|
|
|
@@ -457,7 +458,8 @@ java_link_class_type (struct gdbarch *gd
|
2010-01-12 22:15:57 +00:00
|
|
|
SET_TYPE_FIELD_PROTECTED (type, i);
|
|
|
|
}
|
|
|
|
if (accflags & 0x0008) /* ACC_STATIC */
|
|
|
|
- SET_FIELD_PHYSADDR (TYPE_FIELD (type, i), boffset);
|
|
|
|
+ SET_FIELD_PHYSADDR (TYPE_FIELD (type, i), boffset
|
|
|
|
+ - (TYPE_OBJFILE (type) == NULL ? 0 : ANOFFSET (TYPE_OBJFILE (type)->section_offsets, SECT_OFF_TEXT (TYPE_OBJFILE (type)))));
|
|
|
|
else
|
|
|
|
TYPE_FIELD_BITPOS (type, i) = 8 * boffset;
|
|
|
|
if (accflags & 0x8000) /* FIELD_UNRESOLVED_FLAG */
|
2010-07-21 21:30:20 +00:00
|
|
|
Index: gdb-7.1.90.20100711/gdb/value.c
|
2010-01-16 22:32:10 +00:00
|
|
|
===================================================================
|
2010-07-21 21:30:20 +00:00
|
|
|
--- gdb-7.1.90.20100711.orig/gdb/value.c 2010-07-12 23:07:33.000000000 +0200
|
|
|
|
+++ gdb-7.1.90.20100711/gdb/value.c 2010-07-13 00:35:21.000000000 +0200
|
|
|
|
@@ -1943,7 +1943,8 @@ value_static_field (struct type *type, i
|
2010-01-12 22:15:57 +00:00
|
|
|
{
|
2010-07-21 21:30:20 +00:00
|
|
|
case FIELD_LOC_KIND_PHYSADDR:
|
|
|
|
retval = value_at_lazy (TYPE_FIELD_TYPE (type, fieldno),
|
|
|
|
- TYPE_FIELD_STATIC_PHYSADDR (type, fieldno));
|
|
|
|
+ TYPE_FIELD_STATIC_PHYSADDR (type, fieldno)
|
|
|
|
+ + (TYPE_OBJFILE (type) == NULL ? 0 : ANOFFSET (TYPE_OBJFILE (type)->section_offsets, SECT_OFF_TEXT (TYPE_OBJFILE (type)))));
|
|
|
|
break;
|
|
|
|
case FIELD_LOC_KIND_PHYSNAME:
|
2010-01-12 22:15:57 +00:00
|
|
|
{
|
2010-07-21 21:30:20 +00:00
|
|
|
@@ -1977,7 +1978,8 @@ value_static_field (struct type *type, i
|
2010-01-12 22:15:57 +00:00
|
|
|
}
|
|
|
|
if (retval && VALUE_LVAL (retval) == lval_memory)
|
|
|
|
SET_FIELD_PHYSADDR (TYPE_FIELD (type, fieldno),
|
|
|
|
- value_address (retval));
|
|
|
|
+ value_address (retval)
|
2010-07-21 21:30:20 +00:00
|
|
|
+ - (TYPE_OBJFILE (type) == NULL ? 0 : ANOFFSET (TYPE_OBJFILE (type)->section_offsets, SECT_OFF_TEXT (TYPE_OBJFILE (type)))));
|
|
|
|
break;
|
2010-01-12 22:15:57 +00:00
|
|
|
}
|
2010-07-21 21:30:20 +00:00
|
|
|
default:
|