1 /* Caching of GDB/DWARF index files.
3 Copyright (C) 1994-2023 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21 #include "dwarf2/index-cache.h"
24 #include "cli/cli-cmds.h"
25 #include "cli/cli-decode.h"
27 #include "gdbsupport/scoped_mmap.h"
28 #include "gdbsupport/pathstuff.h"
29 #include "dwarf2/index-write.h"
30 #include "dwarf2/read.h"
31 #include "dwarf2/dwz.h"
33 #include "gdbsupport/selftest.h"
37 /* When set to true, show debug messages about the index cache. */
38 static bool debug_index_cache
= false;
40 #define index_cache_debug(FMT, ...) \
41 debug_prefixed_printf_cond_nofunc (debug_index_cache, "index-cache", \
44 /* The index cache directory, used for "set/show index-cache directory". */
45 static std::string index_cache_directory
;
47 /* See dwarf-index.cache.h. */
48 index_cache global_index_cache
;
50 /* set/show index-cache commands. */
51 static cmd_list_element
*set_index_cache_prefix_list
;
52 static cmd_list_element
*show_index_cache_prefix_list
;
54 /* Default destructor of index_cache_resource. */
55 index_cache_resource::~index_cache_resource () = default;
57 /* See dwarf-index-cache.h. */
60 index_cache::set_directory (std::string dir
)
62 gdb_assert (!dir
.empty ());
64 m_dir
= std::move (dir
);
66 index_cache_debug ("now using directory %s", m_dir
.c_str ());
69 /* See dwarf-index-cache.h. */
72 index_cache::enable ()
74 index_cache_debug ("enabling (%s)", m_dir
.c_str ());
79 /* See dwarf-index-cache.h. */
82 index_cache::disable ()
84 index_cache_debug ("disabling");
89 /* See dwarf-index-cache.h. */
92 index_cache::store (dwarf2_per_objfile
*per_objfile
)
94 objfile
*obj
= per_objfile
->objfile
;
99 /* If the objfile does not correspond to an actual file, skip it. */
100 if ((obj
->flags
& OBJF_NOT_FILENAME
) != 0)
103 /* Get build id of objfile. */
104 const bfd_build_id
*build_id
= build_id_bfd_get (obj
->obfd
.get ());
105 if (build_id
== nullptr)
107 index_cache_debug ("objfile %s has no build id",
112 std::string build_id_str
= build_id_to_string (build_id
);
114 /* Get build id of dwz file, if present. */
115 gdb::optional
<std::string
> dwz_build_id_str
;
116 const dwz_file
*dwz
= dwarf2_get_dwz_file (per_objfile
->per_bfd
);
117 const char *dwz_build_id_ptr
= NULL
;
121 const bfd_build_id
*dwz_build_id
= build_id_bfd_get (dwz
->dwz_bfd
.get ());
123 if (dwz_build_id
== nullptr)
125 index_cache_debug ("dwz objfile %s has no build id",
130 dwz_build_id_str
= build_id_to_string (dwz_build_id
);
131 dwz_build_id_ptr
= dwz_build_id_str
->c_str ();
136 warning (_("The index cache directory name is empty, skipping store."));
142 /* Try to create the containing directory. */
143 if (!mkdir_recursive (m_dir
.c_str ()))
145 warning (_("index cache: could not make cache directory: %s"),
146 safe_strerror (errno
));
150 index_cache_debug ("writing index cache for objfile %s",
153 /* Write the index itself to the directory, using the build id as the
155 write_dwarf_index (per_objfile
, m_dir
.c_str (),
156 build_id_str
.c_str (), dwz_build_id_ptr
,
157 dw_index_kind::GDB_INDEX
);
159 catch (const gdb_exception_error
&except
)
161 index_cache_debug ("couldn't store index cache for objfile %s: %s",
162 objfile_name (obj
), except
.what ());
168 /* Hold the resources for an mmapped index file. */
170 struct index_cache_resource_mmap final
: public index_cache_resource
172 /* Try to mmap FILENAME. Throw an exception on failure, including if the
173 file doesn't exist. */
174 index_cache_resource_mmap (const char *filename
)
175 : mapping (mmap_file (filename
))
181 /* See dwarf-index-cache.h. */
183 gdb::array_view
<const gdb_byte
>
184 index_cache::lookup_gdb_index (const bfd_build_id
*build_id
,
185 std::unique_ptr
<index_cache_resource
> *resource
)
192 warning (_("The index cache directory name is empty, skipping cache "
197 /* Compute where we would expect a gdb index file for this build id to be. */
198 std::string filename
= make_index_filename (build_id
, INDEX4_SUFFIX
);
202 index_cache_debug ("trying to read %s",
205 /* Try to map that file. */
206 index_cache_resource_mmap
*mmap_resource
207 = new index_cache_resource_mmap (filename
.c_str ());
209 /* Yay, it worked! Hand the resource to the caller. */
210 resource
->reset (mmap_resource
);
212 return gdb::array_view
<const gdb_byte
>
213 ((const gdb_byte
*) mmap_resource
->mapping
.get (),
214 mmap_resource
->mapping
.size ());
216 catch (const gdb_exception_error
&except
)
218 index_cache_debug ("couldn't read %s: %s",
219 filename
.c_str (), except
.what ());
225 #else /* !HAVE_SYS_MMAN_H */
227 /* See dwarf-index-cache.h. This is a no-op on unsupported systems. */
229 gdb::array_view
<const gdb_byte
>
230 index_cache::lookup_gdb_index (const bfd_build_id
*build_id
,
231 std::unique_ptr
<index_cache_resource
> *resource
)
238 /* See dwarf-index-cache.h. */
241 index_cache::make_index_filename (const bfd_build_id
*build_id
,
242 const char *suffix
) const
244 std::string build_id_str
= build_id_to_string (build_id
);
246 return m_dir
+ SLASH_STRING
+ build_id_str
+ suffix
;
249 /* True when we are executing "show index-cache". This is used to improve the
250 printout a little bit. */
251 static bool in_show_index_cache_command
= false;
253 /* "show index-cache" handler. */
256 show_index_cache_command (const char *arg
, int from_tty
)
258 /* Note that we are executing "show index-cache". */
259 auto restore_flag
= make_scoped_restore (&in_show_index_cache_command
, true);
261 /* Call all "show index-cache" subcommands. */
262 cmd_show_list (show_index_cache_prefix_list
, from_tty
);
266 (_("The index cache is currently %s.\n"),
267 global_index_cache
.enabled () ? _("enabled") : _("disabled"));
270 /* "set/show index-cache enabled" set callback. */
273 set_index_cache_enabled_command (bool value
)
276 global_index_cache
.enable ();
278 global_index_cache
.disable ();
281 /* "set/show index-cache enabled" get callback. */
284 get_index_cache_enabled_command ()
286 return global_index_cache
.enabled ();
289 /* "set/show index-cache enabled" show callback. */
292 show_index_cache_enabled_command (ui_file
*stream
, int from_tty
,
293 cmd_list_element
*cmd
, const char *value
)
295 gdb_printf (stream
, _("The index cache is %s.\n"), value
);
298 /* "set index-cache directory" handler. */
301 set_index_cache_directory_command (const char *arg
, int from_tty
,
302 cmd_list_element
*element
)
304 /* Make sure the index cache directory is absolute and tilde-expanded. */
305 index_cache_directory
= gdb_abspath (index_cache_directory
.c_str ());
306 global_index_cache
.set_directory (index_cache_directory
);
309 /* "show index-cache stats" handler. */
312 show_index_cache_stats_command (const char *arg
, int from_tty
)
314 const char *indent
= "";
316 /* If this command is invoked through "show index-cache", make the display a
318 if (in_show_index_cache_command
)
324 gdb_printf (_("%s Cache hits (this session): %u\n"),
325 indent
, global_index_cache
.n_hits ());
326 gdb_printf (_("%sCache misses (this session): %u\n"),
327 indent
, global_index_cache
.n_misses ());
330 void _initialize_index_cache ();
332 _initialize_index_cache ()
334 /* Set the default index cache directory. */
335 std::string cache_dir
= get_standard_cache_dir ();
336 if (!cache_dir
.empty ())
338 index_cache_directory
= cache_dir
;
339 global_index_cache
.set_directory (std::move (cache_dir
));
342 warning (_("Couldn't determine a path for the index cache directory."));
344 /* set index-cache */
345 add_basic_prefix_cmd ("index-cache", class_files
,
346 _("Set index-cache options."),
347 &set_index_cache_prefix_list
,
350 /* show index-cache */
351 add_prefix_cmd ("index-cache", class_files
, show_index_cache_command
,
352 _("Show index-cache options."), &show_index_cache_prefix_list
,
355 /* set/show index-cache enabled */
356 set_show_commands setshow_index_cache_enabled_cmds
357 = add_setshow_boolean_cmd ("enabled", class_files
,
358 _("Enable the index cache."),
359 _("Show whether the index cache is enabled."),
360 _("When on, enable the use of the index cache."),
361 set_index_cache_enabled_command
,
362 get_index_cache_enabled_command
,
363 show_index_cache_enabled_command
,
364 &set_index_cache_prefix_list
,
365 &show_index_cache_prefix_list
);
367 /* set index-cache on */
368 cmd_list_element
*set_index_cache_on_cmd
369 = add_alias_cmd ("on", setshow_index_cache_enabled_cmds
.set
, class_files
,
370 false, &set_index_cache_prefix_list
);
371 deprecate_cmd (set_index_cache_on_cmd
, "set index-cache enabled on");
372 set_index_cache_on_cmd
->default_args
= "on";
374 /* set index-cache off */
375 cmd_list_element
*set_index_cache_off_cmd
376 = add_alias_cmd ("off", setshow_index_cache_enabled_cmds
.set
, class_files
,
377 false, &set_index_cache_prefix_list
);
378 deprecate_cmd (set_index_cache_off_cmd
, "set index-cache enabled off");
379 set_index_cache_off_cmd
->default_args
= "off";
381 /* set index-cache directory */
382 add_setshow_filename_cmd ("directory", class_files
, &index_cache_directory
,
383 _("Set the directory of the index cache."),
384 _("Show the directory of the index cache."),
386 set_index_cache_directory_command
, NULL
,
387 &set_index_cache_prefix_list
,
388 &show_index_cache_prefix_list
);
390 /* show index-cache stats */
391 add_cmd ("stats", class_files
, show_index_cache_stats_command
,
392 _("Show some stats about the index cache."),
393 &show_index_cache_prefix_list
);
395 /* set debug index-cache */
396 add_setshow_boolean_cmd ("index-cache", class_maintenance
,
398 _("Set display of index-cache debug messages."),
399 _("Show display of index-cache debug messages."),
401 When non-zero, debugging output for the index cache is displayed."),
403 &setdebuglist
, &showdebuglist
);