diff options
author | ccoutant <ccoutant@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-01-26 22:58:11 +0000 |
---|---|---|
committer | ccoutant <ccoutant@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-01-26 22:58:11 +0000 |
commit | abbb0ba2b726a9a2fa2ccc01a58db448e8599c1e (patch) | |
tree | fedc2195ca005003059475f37073fdbe91f12ed5 /include | |
parent | 2a9672069bd8c9177ef8d41b3e486f5b22e072f1 (diff) | |
download | gcc-abbb0ba2b726a9a2fa2ccc01a58db448e8599c1e.tar.gz |
* dwarf2.h (enum dwarf_form): Add Fission extensions.
(enum dwarf_attribute): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@183588 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/dwarf2.h | 13 |
2 files changed, 17 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 4e4ca15832a..b9e81e31f40 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2012-01-26 Cary Coutant <ccoutant@google.com> + + * dwarf2.h (enum dwarf_form): Add Fission extensions. + (enum dwarf_attribute): Likewise. + 2012-01-06 Jason Merrill <jason@redhat.com> PR c++/6057 diff --git a/include/dwarf2.h b/include/dwarf2.h index 37cb83f4b23..8c0c9ed6dad 100644 --- a/include/dwarf2.h +++ b/include/dwarf2.h @@ -188,7 +188,11 @@ enum dwarf_form DW_FORM_sec_offset = 0x17, DW_FORM_exprloc = 0x18, DW_FORM_flag_present = 0x19, - DW_FORM_ref_sig8 = 0x20 + DW_FORM_ref_sig8 = 0x20, + /* Extensions for Fission. See http://gcc.gnu.org/wiki/DebugFission. */ + DW_FORM_GNU_ref_index = 0x1f00, + DW_FORM_GNU_addr_index = 0x1f01, + DW_FORM_GNU_str_index = 0x1f02 }; /* Attribute names and codes. */ @@ -368,6 +372,13 @@ enum dwarf_attribute DW_AT_GNU_all_source_call_sites = 0x2118, /* Section offset into .debug_macro section. */ DW_AT_GNU_macros = 0x2119, + /* Extensions for Fission. See http://gcc.gnu.org/wiki/DebugFission. */ + DW_AT_GNU_dwo_name = 0x2130, + DW_AT_GNU_dwo_id = 0x2131, + DW_AT_GNU_ref_base = 0x2132, + DW_AT_GNU_addr_base = 0x2133, + DW_AT_GNU_pubnames = 0x2134, + DW_AT_GNU_pubtypes = 0x2135, /* VMS extensions. */ DW_AT_VMS_rtnbeg_pd_address = 0x2201, /* GNAT extensions. */ |