summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2008-09-24 23:21:04 +0000
committerRichard Henderson <rth@redhat.com>2008-09-24 23:21:04 +0000
commit90f4fd0ab8b91054913fc84807f53f9a1bbb1e0f (patch)
treeeb0c3bbe4ae90e6d80e87453eae4a4cbae50a4f3 /include
parentf86b0762ac9af3890a51e88de1070ad3db308dd2 (diff)
downloadgdb-90f4fd0ab8b91054913fc84807f53f9a1bbb1e0f.tar.gz
include/
* elf/dwarf2.h (DW_OP_GNU_encoded_addr): New. binutils/ * dwarf.c (size_of_encoded_value, get_encoded_value): Move up. (decode_location_expression): Add section parameter. Handle DW_OP_GNU_encoded_addr. (read_and_display_attr_value): Update decode_location_expression call. (display_debug_loc, display_debug_frames): Likewise. gas/ * dw2gencfi.c (DWARF2_ADDR_SIZE): Provide default. (struct cfi_insn_data): Add ea member. (CFI_val_encoded_addr, dot_cfi_val_encoded_addr): New. (output_cfi_insn): Handle CFI_val_encoded_addr. (select_cie_for_fde): Don't match CFI_val_encoded_addr. * doc/as.texinfo (.cfi_val_encoded_addr): Document.
Diffstat (limited to 'include')
-rw-r--r--include/ChangeLog4
-rw-r--r--include/elf/dwarf2.h1
2 files changed, 5 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index 2acaaf13647..e8d9a028cfc 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,7 @@
+2008-09-24 Richard Henderson <rth@redhat.com>
+
+ * elf/dwarf2.h (DW_OP_GNU_encoded_addr): New.
+
2008-09-22 Rafael Espindola <espindola@google.com>
* plugin-api.h (ld_plugin_status): Remove comma from the last item.
diff --git a/include/elf/dwarf2.h b/include/elf/dwarf2.h
index 648658da365..f8d010b53d7 100644
--- a/include/elf/dwarf2.h
+++ b/include/elf/dwarf2.h
@@ -544,6 +544,7 @@ enum dwarf_location_atom
/* GNU extensions. */
DW_OP_GNU_push_tls_address = 0xe0,
DW_OP_GNU_uninit = 0xf0,
+ DW_OP_GNU_encoded_addr = 0xf1,
/* HP extensions. */
DW_OP_HP_unknown = 0xe0, /* Ouch, the same as GNU_push_tls_address. */
DW_OP_HP_is_value = 0xe1,