This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from aa49fc22c13 Revert earlier delta adding bfd_coff_get_internal_extra_pe_ [...] new 9fda78b6112 Introduce dwarf2/dwz.h new 0314b3901c9 Add dwz.c and dwz_file::read_string new bf80d710525 Change dwarf_decode_macro_bytes calling convention new 9eac9650ce7 Split dwarf_decode_macros into two overloads new 3d27bbdb4bc Move dwarf2_section_buffer_overflow_complaint to dwarf2/section.c new a0194fa8f23 Convert dwarf2_section_buffer_overflow_complaint to a method new 4f44ae6c69b Add dwarf2_section_info::read_string method new c90ec28ae44 Move code to new file dwarf2/macro.c new 8844c11b8bc Make some line_header methods const new 5a0e026fe12 Use a const line_header in macro reader new 4f9c1eda9ff Use a const dwarf2_section_info in macro reader new 2ef46c2fbbd Trivial fix in dwarf_decode_macro_bytes new 86c0bb4c571 Convert read_indirect_line_string to a method new 0df7ad3a675 Move more code to line-header.c new c2d50fd0b30 Move die_info to new header new 2b24b6e4a6d Remove dwarf2_cu::base_known new 052c8bb83a5 Change dwarf2_attr_no_follow to be a method new 436c571c6af Remove sibling_die new a39fdb411d4 Change two more functions to be methods on die_info new eeb647814fb Rewrite new die_info methods new 2b2558bfacb Move DWARF-constant stringifying code to new file new 0826b30a9fa Change two functions to be methods on struct attribute
The 22 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gdb/ChangeLog | 200 ++++++ gdb/Makefile.in | 3 + gdb/dwarf2/attribute.c | 37 + gdb/dwarf2/attribute.h | 12 + gdb/dwarf2/die.h | 103 +++ gdb/dwarf2/dwz.c | 40 ++ gdb/dwarf2/dwz.h | 65 ++ gdb/dwarf2/index-cache.c | 1 + gdb/dwarf2/index-write.c | 1 + gdb/dwarf2/line-header.c | 339 ++++++++- gdb/dwarf2/line-header.h | 32 +- gdb/dwarf2/macro.c | 868 +++++++++++++++++++++++ gdb/dwarf2/macro.h | 33 + gdb/dwarf2/read.c | 1717 ++++------------------------------------------ gdb/dwarf2/read.h | 39 +- gdb/dwarf2/section.c | 26 + gdb/dwarf2/section.h | 9 + gdb/dwarf2/stringify.c | 114 +++ gdb/dwarf2/stringify.h | 38 + 19 files changed, 2050 insertions(+), 1627 deletions(-) create mode 100644 gdb/dwarf2/die.h create mode 100644 gdb/dwarf2/dwz.c create mode 100644 gdb/dwarf2/dwz.h create mode 100644 gdb/dwarf2/macro.c create mode 100644 gdb/dwarf2/macro.h create mode 100644 gdb/dwarf2/stringify.c create mode 100644 gdb/dwarf2/stringify.h