1 /* Caching of GDB/DWARF index files.
3 Copyright (C) 2018-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/>. */
20 #ifndef DWARF_INDEX_CACHE_H
21 #define DWARF_INDEX_CACHE_H
23 #include "dwarf2/index-common.h"
24 #include "gdbsupport/array-view.h"
30 /* Base of the classes used to hold the resources of the indices loaded from
31 the cache (e.g. mmapped files). */
33 struct index_cache_resource
35 virtual ~index_cache_resource () = 0;
38 /* Information to be captured in the main thread, and to be used by worker
39 threads during store (). */
41 struct index_cache_store_context
43 friend class index_cache
;
45 index_cache_store_context (const index_cache
&ic
, dwarf2_per_bfd
*per_bfd
);
48 /* Captured value of enabled (). */
51 /* Captured value of build id. */
52 std::string build_id_str
;
54 /* Captured value of dwz build id. */
55 std::optional
<std::string
> dwz_build_id_str
;
58 /* Class to manage the access to the DWARF index cache. */
62 friend struct index_cache_store_context
;
64 /* Change the directory used to save/load index files. */
65 void set_directory (std::string dir
);
67 /* Return true if the usage of the cache is enabled. */
73 /* Enable the cache. */
76 /* Disable the cache. */
79 /* Store an index for the specified object file in the cache. */
80 void store (dwarf2_per_bfd
*per_bfd
,
81 const index_cache_store_context
&);
83 /* Look for an index file matching BUILD_ID. If found, return the contents
84 as an array_view and store the underlying resources (allocated memory,
85 mapped file, etc) in RESOURCE. The returned array_view is valid as long
86 as RESOURCE is not destroyed.
88 If no matching index file is found, return an empty array view. */
89 gdb::array_view
<const gdb_byte
>
90 lookup_gdb_index (const bfd_build_id
*build_id
,
91 std::unique_ptr
<index_cache_resource
> *resource
);
93 /* Return the number of cache hits. */
94 unsigned int n_hits () const
97 /* Record a cache hit. */
104 /* Return the number of cache misses. */
105 unsigned int n_misses () const
106 { return m_n_misses
; }
108 /* Record a cache miss. */
117 /* Compute the absolute filename where the index of the objfile with build
118 id BUILD_ID will be stored. SUFFIX is appended at the end of the
120 std::string
make_index_filename (const bfd_build_id
*build_id
,
121 const char *suffix
) const;
123 /* The base directory where we are storing and looking up index files. */
126 /* Whether the cache is enabled. */
127 bool m_enabled
= false;
129 /* Number of cache hits and misses during this GDB session. */
130 unsigned int m_n_hits
= 0;
131 unsigned int m_n_misses
= 0;
134 /* The global instance of the index cache. */
135 extern index_cache global_index_cache
;
137 #endif /* DWARF_INDEX_CACHE_H */