From 9f66ff1c8cd8f5512d49813abe48ddb9141474bf Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Sat, 8 Feb 2020 13:40:54 -0700 Subject: Move two more functions to dwarf2/leb.h This moves read_n_bytes and read_direct_string to be with the the low-level value-reading code. 2020-02-08 Tom Tromey * dwarf2/read.c (read_n_bytes, read_direct_string): Move to read.c. * dwarf2/leb.h (read_n_bytes, read_direct_string): Move from read.c. Change-Id: Id07bfa13d93c0ac1f47a385749a8f01f4755b818 --- gdb/ChangeLog | 7 +++++++ gdb/dwarf2/leb.h | 27 +++++++++++++++++++++++++++ gdb/dwarf2/read.c | 31 ------------------------------- 3 files changed, 34 insertions(+), 31 deletions(-) (limited to 'gdb') diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7755548..3be1756 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,12 @@ 2020-02-08 Tom Tromey + * dwarf2/read.c (read_n_bytes, read_direct_string): Move to + read.c. + * dwarf2/leb.h (read_n_bytes, read_direct_string): Move from + read.c. + +2020-02-08 Tom Tromey + * dwarf2/read.c (read_address): Move to comp-unit.c. (dwarf2_rnglists_process, dwarf2_ranges_process) (read_attribute_value, dwarf_decode_lines_1) diff --git a/gdb/dwarf2/leb.h b/gdb/dwarf2/leb.h index 9c30cbe..f312fc2 100644 --- a/gdb/dwarf2/leb.h +++ b/gdb/dwarf2/leb.h @@ -134,4 +134,31 @@ extern LONGEST read_initial_length (bfd *abfd, const gdb_byte *buf, extern LONGEST read_offset (bfd *abfd, const gdb_byte *buf, unsigned int offset_size); +static inline const gdb_byte * +read_n_bytes (bfd *abfd, const gdb_byte *buf, unsigned int size) +{ + /* If the size of a host char is 8 bits, we can return a pointer + to the buffer, otherwise we have to copy the data to a buffer + allocated on the temporary obstack. */ + gdb_assert (HOST_CHAR_BIT == 8); + return buf; +} + +static inline const char * +read_direct_string (bfd *abfd, const gdb_byte *buf, + unsigned int *bytes_read_ptr) +{ + /* If the size of a host char is 8 bits, we can return a pointer + to the string, otherwise we have to copy the string to a buffer + allocated on the temporary obstack. */ + gdb_assert (HOST_CHAR_BIT == 8); + if (*buf == '\0') + { + *bytes_read_ptr = 1; + return NULL; + } + *bytes_read_ptr = strlen ((const char *) buf) + 1; + return (const char *) buf; +} + #endif /* GDB_DWARF2_LEB_H */ diff --git a/gdb/dwarf2/read.c b/gdb/dwarf2/read.c index d340906..88be8d6 100644 --- a/gdb/dwarf2/read.c +++ b/gdb/dwarf2/read.c @@ -1246,10 +1246,6 @@ static sect_offset read_abbrev_offset (struct dwarf2_per_objfile *dwarf2_per_objfile, struct dwarf2_section_info *, sect_offset); -static const gdb_byte *read_n_bytes (bfd *, const gdb_byte *, unsigned int); - -static const char *read_direct_string (bfd *, const gdb_byte *, unsigned int *); - static const char *read_indirect_string (struct dwarf2_per_objfile *dwarf2_per_objfile, bfd *, const gdb_byte *, const struct comp_unit_head *, unsigned int *); @@ -18731,33 +18727,6 @@ read_checked_initial_length_and_offset (bfd *abfd, const gdb_byte *buf, return length; } -static const gdb_byte * -read_n_bytes (bfd *abfd, const gdb_byte *buf, unsigned int size) -{ - /* If the size of a host char is 8 bits, we can return a pointer - to the buffer, otherwise we have to copy the data to a buffer - allocated on the temporary obstack. */ - gdb_assert (HOST_CHAR_BIT == 8); - return buf; -} - -static const char * -read_direct_string (bfd *abfd, const gdb_byte *buf, - unsigned int *bytes_read_ptr) -{ - /* If the size of a host char is 8 bits, we can return a pointer - to the string, otherwise we have to copy the string to a buffer - allocated on the temporary obstack. */ - gdb_assert (HOST_CHAR_BIT == 8); - if (*buf == '\0') - { - *bytes_read_ptr = 1; - return NULL; - } - *bytes_read_ptr = strlen ((const char *) buf) + 1; - return (const char *) buf; -} - /* Return pointer to string at section SECT offset STR_OFFSET with error reporting strings FORM_NAME and SECT_NAME. */ -- cgit v1.1