aboutsummaryrefslogtreecommitdiff
path: root/gdb/dwarf2/line-header.c
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@polymtl.ca>2022-04-26 22:50:22 -0400
committerSimon Marchi <simon.marchi@polymtl.ca>2022-07-29 20:54:49 -0400
commit0aa306fed318f679c1db21974b64e29d236d51e5 (patch)
treeade6684b512c4e5dfa3f00b9a79ce0642c2a12e9 /gdb/dwarf2/line-header.c
parentddc01737d34f16074b2c9a92c5a808be5c91340f (diff)
downloadbinutils-0aa306fed318f679c1db21974b64e29d236d51e5.zip
binutils-0aa306fed318f679c1db21974b64e29d236d51e5.tar.gz
binutils-0aa306fed318f679c1db21974b64e29d236d51e5.tar.bz2
gdb/dwarf: pass a file_entry to line_header::file_file_name
In the following patch, there will be some callers of file_file_name that will already have access to the file_entry object for which they want the file name. It would be inefficient to have them pass an index, only for line_header::file_file_name to re-lookup the same file_entry object. Change line_header::file_file_name to accept a file_entry object reference, instead of an index to look up. I think this change makes sense in any case. Callers that have an index can first obtain a file_entry using line_header::file_name_at or line_header::file_names. When passing a file_entry object, we can assume that the file_entry's index is valid, unlike when passing an index. So, push the special case about an invalid index to the sole current caller of file_file_name, macro_start_file. I think that error belongs there anyway, since it specifically talks about "bad file number in macro information". This requires recording the file index in the file_entry structure, so add that. Change-Id: Ic6e44c407539d92b7863d7ba82405ade17f384ad
Diffstat (limited to 'gdb/dwarf2/line-header.c')
-rw-r--r--gdb/dwarf2/line-header.c47
1 files changed, 14 insertions, 33 deletions
diff --git a/gdb/dwarf2/line-header.c b/gdb/dwarf2/line-header.c
index 1337985..a1bd39d 100644
--- a/gdb/dwarf2/line-header.c
+++ b/gdb/dwarf2/line-header.c
@@ -48,47 +48,28 @@ line_header::add_file_name (const char *name,
unsigned int mod_time,
unsigned int length)
{
+ file_name_index index
+ = version >= 5 ? file_names_size (): file_names_size () + 1;
+
if (dwarf_line_debug >= 2)
- {
- size_t new_size;
- if (version >= 5)
- new_size = file_names_size ();
- else
- new_size = file_names_size () + 1;
- gdb_printf (gdb_stdlog, "Adding file %zu: %s\n",
- new_size, name);
- }
- m_file_names.emplace_back (name, d_index, mod_time, length);
+ gdb_printf (gdb_stdlog, "Adding file %d: %s\n", index, name);
+
+ m_file_names.emplace_back (name, index, d_index, mod_time, length);
}
std::string
-line_header::file_file_name (int file) const
+line_header::file_file_name (const file_entry &fe) const
{
- /* Is the file number a valid index into the line header's file name
- table? Remember that file numbers start with one, not zero. */
- if (is_valid_file_index (file))
- {
- const file_entry *fe = file_name_at (file);
+ gdb_assert (is_valid_file_index (fe.index));
- if (!IS_ABSOLUTE_PATH (fe->name))
- {
- const char *dir = fe->include_dir (this);
- if (dir != NULL)
- return path_join (dir, fe->name);
- }
+ if (IS_ABSOLUTE_PATH (fe.name))
+ return fe.name;
- return fe->name;
- }
- else
- {
- /* The compiler produced a bogus file number. We can at least
- record the macro definitions made in the file, even if we
- won't be able to find the file by name. */
- complaint (_("bad file number in macro information (%d)"),
- file);
+ const char *dir = fe.include_dir (this);
+ if (dir == nullptr)
+ return fe.name;
- return string_printf ("<bad macro file number %d>", file);
- }
+ return path_join (dir, fe.name);
}
static void