diff options
author | Cary Coutant <ccoutant@google.com> | 2009-07-20 21:00:52 +0000 |
---|---|---|
committer | Doug Evans <devans@gcc.gnu.org> | 2009-07-20 21:00:52 +0000 |
commit | 07d9f9b861ea8826266632e0302c3b6552b2ba9e (patch) | |
tree | 95b35b12ab889a9a133383b49ea25675725084ec /include | |
parent | 47f6d7acfb9ba23a425a41457a7fac7e4de2e101 (diff) | |
download | gcc-07d9f9b861ea8826266632e0302c3b6552b2ba9e.zip gcc-07d9f9b861ea8826266632e0302c3b6552b2ba9e.tar.gz gcc-07d9f9b861ea8826266632e0302c3b6552b2ba9e.tar.bz2 |
Add some dwarf4 values.
* dwarf2.h (enum dwarf_tag): Add DW_TAG_type_unit.
(enum dwarf_form): Add DW_FORM_sec_offset, DW_FORM_exprloc,
DW_FORM_flag_present, DW_FORM_sig8.
(enum dwarf_attribute): Add DW_AT_signature.
From-SVN: r149836
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 8 | ||||
-rw-r--r-- | include/dwarf2.h | 11 |
2 files changed, 18 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 2c14069..894b7bb 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,11 @@ +2009-07-20 Doug Evans <dje@google.com> + + Add some dwarf4 values. + * dwarf2.h (enum dwarf_tag): Add DW_TAG_type_unit. + (enum dwarf_form): Add DW_FORM_sec_offset, DW_FORM_exprloc, + DW_FORM_flag_present, DW_FORM_sig8. + (enum dwarf_attribute): Add DW_AT_signature. + 2009-07-17 Jan Kratochvil <jan.kratochvil@redhat.com> * demangle.h diff --git a/include/dwarf2.h b/include/dwarf2.h index 7021104..295abf5c 100644 --- a/include/dwarf2.h +++ b/include/dwarf2.h @@ -194,6 +194,8 @@ enum dwarf_tag DW_TAG_imported_unit = 0x3d, DW_TAG_condition = 0x3f, DW_TAG_shared_type = 0x40, + /* DWARF 4. */ + DW_TAG_type_unit = 0x41, DW_TAG_lo_user = 0x4080, DW_TAG_hi_user = 0xffff, @@ -244,7 +246,12 @@ enum dwarf_form DW_FORM_ref4 = 0x13, DW_FORM_ref8 = 0x14, DW_FORM_ref_udata = 0x15, - DW_FORM_indirect = 0x16 + DW_FORM_indirect = 0x16, + /* DWARF 4. */ + DW_FORM_sec_offset = 0x17, + DW_FORM_exprloc = 0x18, + DW_FORM_flag_present = 0x19, + DW_FORM_sig8 = 0x20 }; /* Attribute names and codes. */ @@ -342,6 +349,8 @@ enum dwarf_attribute DW_AT_elemental = 0x66, DW_AT_pure = 0x67, DW_AT_recursive = 0x68, + /* DWARF 4. */ + DW_AT_signature = 0x69, DW_AT_lo_user = 0x2000, /* Implementation-defined range start. */ DW_AT_hi_user = 0x3ff0, /* Implementation-defined range end. */ |