diff options
author | Tom Tromey <tom@tromey.com> | 2020-03-26 09:28:08 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2020-03-26 09:28:19 -0600 |
commit | 86c0bb4c57111422b30da6b1b20256bd3a06778a (patch) | |
tree | f5f8e063e99150eb56000aa93825a3bc1791bbe6 | |
parent | 2ef46c2fbbd18c3f411ef294c2c6694a1308a5a5 (diff) | |
download | binutils-86c0bb4c57111422b30da6b1b20256bd3a06778a.zip binutils-86c0bb4c57111422b30da6b1b20256bd3a06778a.tar.gz binutils-86c0bb4c57111422b30da6b1b20256bd3a06778a.tar.bz2 |
Convert read_indirect_line_string to a method
This changes read_indirect_line_string to be a method on
dwarf2_per_objfile. This makes it a bit simpler to share between
files.
gdb/ChangeLog
2020-03-26 Tom Tromey <tom@tromey.com>
* dwarf2/read.h (struct dwarf2_per_objfile) <read_line_string>:
Declare method.
* dwarf2/read.c (read_attribute_value): Update.
(dwarf2_per_objfile::read_line_string): Rename from
read_indirect_line_string.
(read_formatted_entries): Update.
-rw-r--r-- | gdb/ChangeLog | 9 | ||||
-rw-r--r-- | gdb/dwarf2/read.c | 32 | ||||
-rw-r--r-- | gdb/dwarf2/read.h | 8 |
3 files changed, 29 insertions, 20 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 1472f66..5e25a9b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,14 @@ 2020-03-26 Tom Tromey <tom@tromey.com> + * dwarf2/read.h (struct dwarf2_per_objfile) <read_line_string>: + Declare method. + * dwarf2/read.c (read_attribute_value): Update. + (dwarf2_per_objfile::read_line_string): Rename from + read_indirect_line_string. + (read_formatted_entries): Update. + +2020-03-26 Tom Tromey <tom@tromey.com> + * dwarf2/macro.c (dwarf_decode_macro_bytes): Use objfile local variable. diff --git a/gdb/dwarf2/read.c b/gdb/dwarf2/read.c index e00151e..dbd5b6a 100644 --- a/gdb/dwarf2/read.c +++ b/gdb/dwarf2/read.c @@ -1251,10 +1251,6 @@ static const char *read_indirect_string (struct dwarf2_per_objfile *dwarf2_per_objfile, bfd *, const gdb_byte *, const struct comp_unit_head *, unsigned int *); -static const char *read_indirect_line_string - (struct dwarf2_per_objfile *dwarf2_per_objfile, bfd *, const gdb_byte *, - const struct comp_unit_head *, unsigned int *); - static const char *read_indirect_string_at_offset (struct dwarf2_per_objfile *dwarf2_per_objfile, LONGEST str_offset); @@ -18550,9 +18546,9 @@ read_attribute_value (const struct die_reader_specs *reader, case DW_FORM_line_strp: if (!cu->per_cu->is_dwz) { - DW_STRING (attr) = read_indirect_line_string (dwarf2_per_objfile, - abfd, info_ptr, - cu_header, &bytes_read); + DW_STRING (attr) + = dwarf2_per_objfile->read_line_string (info_ptr, cu_header, + &bytes_read); DW_STRING_IS_CANONICAL (attr) = 0; info_ptr += bytes_read; break; @@ -18786,21 +18782,17 @@ read_indirect_string (struct dwarf2_per_objfile *dwarf2_per_objfile, bfd *abfd, return read_indirect_string_at_offset (dwarf2_per_objfile, str_offset); } -/* Return pointer to string at .debug_line_str offset as read from BUF. - BUF is assumed to be in a compilation unit described by CU_HEADER. - Return *BYTES_READ_PTR count of bytes read from BUF. */ +/* See read.h. */ -static const char * -read_indirect_line_string (struct dwarf2_per_objfile *dwarf2_per_objfile, - bfd *abfd, const gdb_byte *buf, +const char * +dwarf2_per_objfile::read_line_string (const gdb_byte *buf, const struct comp_unit_head *cu_header, unsigned int *bytes_read_ptr) { + bfd *abfd = objfile->obfd; LONGEST str_offset = cu_header->read_offset (abfd, buf, bytes_read_ptr); - return dwarf2_per_objfile->line_str.read_string (dwarf2_per_objfile->objfile, - str_offset, - "DW_FORM_line_strp"); + return line_str.read_string (objfile, str_offset, "DW_FORM_line_strp"); } /* Given index ADDR_INDEX in .debug_addr, fetch the value. @@ -19284,10 +19276,10 @@ read_formatted_entries (struct dwarf2_per_objfile *dwarf2_per_objfile, break; case DW_FORM_line_strp: - string.emplace (read_indirect_line_string (dwarf2_per_objfile, - abfd, buf, - cu_header, - &bytes_read)); + string.emplace + (dwarf2_per_objfile->read_line_string (buf, + cu_header, + &bytes_read)); buf += bytes_read; break; diff --git a/gdb/dwarf2/read.h b/gdb/dwarf2/read.h index c5a8ecf..039113f 100644 --- a/gdb/dwarf2/read.h +++ b/gdb/dwarf2/read.h @@ -110,6 +110,14 @@ struct dwarf2_per_objfile /* Free all cached compilation units. */ void free_cached_comp_units (); + + /* Return pointer to string at .debug_line_str offset as read from BUF. + BUF is assumed to be in a compilation unit described by CU_HEADER. + Return *BYTES_READ_PTR count of bytes read from BUF. */ + const char *read_line_string (const gdb_byte *buf, + const struct comp_unit_head *cu_header, + unsigned int *bytes_read_ptr); + private: /* This function is mapped across the sections and remembers the offset and size of each of the debugging sections we are |