Commit | Line | Data |
---|---|---|
c906108c | 1 | /* Implement a cached obstack. |
c2d11a7d JM |
2 | Written by Fred Fish <fnf@cygnus.com> |
3 | Rewritten by Jim Blandy <jimb@cygnus.com> | |
2c7ef074 | 4 | |
42a4f53d | 5 | Copyright (C) 1999-2019 Free Software Foundation, Inc. |
c906108c | 6 | |
c5aa993b | 7 | This file is part of GDB. |
c906108c | 8 | |
c5aa993b JM |
9 | This program is free software; you can redistribute it and/or modify |
10 | it under the terms of the GNU General Public License as published by | |
a9762ec7 | 11 | the Free Software Foundation; either version 3 of the License, or |
c5aa993b | 12 | (at your option) any later version. |
c906108c | 13 | |
c5aa993b JM |
14 | This program is distributed in the hope that it will be useful, |
15 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 | GNU General Public License for more details. | |
c906108c | 18 | |
c5aa993b | 19 | You should have received a copy of the GNU General Public License |
a9762ec7 | 20 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
c906108c SS |
21 | |
22 | #include "defs.h" | |
d55e5aa6 | 23 | #include "gdb_obstack.h" |
4de283e4 | 24 | #include "bcache.h" |
c906108c | 25 | |
39ef2f62 CB |
26 | #include <algorithm> |
27 | ||
dfb65191 CB |
28 | namespace gdb { |
29 | ||
af5f3db6 AC |
30 | /* The type used to hold a single bcache string. The user data is |
31 | stored in d.data. Since it can be any type, it needs to have the | |
32 | same alignment as the most strict alignment of any type on the host | |
33 | machine. I don't know of any really correct way to do this in | |
34 | stock ANSI C, so just do it the same way obstack.h does. */ | |
35 | ||
36 | struct bstring | |
37 | { | |
49df298f | 38 | /* Hash chain. */ |
af5f3db6 | 39 | struct bstring *next; |
49df298f AC |
40 | /* Assume the data length is no more than 64k. */ |
41 | unsigned short length; | |
42 | /* The half hash hack. This contains the upper 16 bits of the hash | |
43 | value and is used as a pre-check when comparing two strings and | |
44 | avoids the need to do length or memcmp calls. It proves to be | |
45 | roughly 100% effective. */ | |
46 | unsigned short half_hash; | |
af5f3db6 AC |
47 | |
48 | union | |
49 | { | |
50 | char data[1]; | |
51 | double dummy; | |
52 | } | |
53 | d; | |
54 | }; | |
55 | ||
c2d11a7d JM |
56 | \f |
57 | /* Growing the bcache's hash table. */ | |
58 | ||
59 | /* If the average chain length grows beyond this, then we want to | |
60 | resize our hash table. */ | |
61 | #define CHAIN_LENGTH_THRESHOLD (5) | |
62 | ||
25629dfd TT |
63 | void |
64 | bcache::expand_hash_table () | |
c906108c | 65 | { |
c2d11a7d JM |
66 | /* A table of good hash table sizes. Whenever we grow, we pick the |
67 | next larger size from this table. sizes[i] is close to 1 << (i+10), | |
68 | so we roughly double the table size each time. After we fall off | |
69 | the end of this table, we just double. Don't laugh --- there have | |
70 | been executables sighted with a gigabyte of debug info. */ | |
71 | static unsigned long sizes[] = { | |
72 | 1021, 2053, 4099, 8191, 16381, 32771, | |
73 | 65537, 131071, 262144, 524287, 1048573, 2097143, | |
74 | 4194301, 8388617, 16777213, 33554467, 67108859, 134217757, | |
75 | 268435459, 536870923, 1073741827, 2147483659UL | |
76 | }; | |
745b8ca0 | 77 | unsigned int new_num_buckets; |
c2d11a7d | 78 | struct bstring **new_buckets; |
745b8ca0 | 79 | unsigned int i; |
c2d11a7d | 80 | |
2160782c AC |
81 | /* Count the stats. Every unique item needs to be re-hashed and |
82 | re-entered. */ | |
25629dfd TT |
83 | m_expand_count++; |
84 | m_expand_hash_count += m_unique_count; | |
2160782c | 85 | |
c2d11a7d | 86 | /* Find the next size. */ |
25629dfd | 87 | new_num_buckets = m_num_buckets * 2; |
c2d11a7d | 88 | for (i = 0; i < (sizeof (sizes) / sizeof (sizes[0])); i++) |
25629dfd | 89 | if (sizes[i] > m_num_buckets) |
c2d11a7d JM |
90 | { |
91 | new_num_buckets = sizes[i]; | |
92 | break; | |
93 | } | |
c2d11a7d JM |
94 | |
95 | /* Allocate the new table. */ | |
96 | { | |
97 | size_t new_size = new_num_buckets * sizeof (new_buckets[0]); | |
b6de9da4 | 98 | |
c2d11a7d JM |
99 | new_buckets = (struct bstring **) xmalloc (new_size); |
100 | memset (new_buckets, 0, new_size); | |
101 | ||
25629dfd TT |
102 | m_structure_size -= m_num_buckets * sizeof (m_bucket[0]); |
103 | m_structure_size += new_size; | |
c2d11a7d | 104 | } |
c906108c | 105 | |
c2d11a7d | 106 | /* Rehash all existing strings. */ |
25629dfd | 107 | for (i = 0; i < m_num_buckets; i++) |
c906108c | 108 | { |
c2d11a7d JM |
109 | struct bstring *s, *next; |
110 | ||
25629dfd | 111 | for (s = m_bucket[i]; s; s = next) |
c906108c | 112 | { |
c2d11a7d JM |
113 | struct bstring **new_bucket; |
114 | next = s->next; | |
115 | ||
25629dfd | 116 | new_bucket = &new_buckets[(m_hash_function (&s->d.data, s->length) |
c2d11a7d JM |
117 | % new_num_buckets)]; |
118 | s->next = *new_bucket; | |
119 | *new_bucket = s; | |
c906108c SS |
120 | } |
121 | } | |
c2d11a7d JM |
122 | |
123 | /* Plug in the new table. */ | |
25629dfd TT |
124 | xfree (m_bucket); |
125 | m_bucket = new_buckets; | |
126 | m_num_buckets = new_num_buckets; | |
c906108c SS |
127 | } |
128 | ||
c2d11a7d JM |
129 | \f |
130 | /* Looking up things in the bcache. */ | |
131 | ||
132 | /* The number of bytes needed to allocate a struct bstring whose data | |
133 | is N bytes long. */ | |
134 | #define BSTRING_SIZE(n) (offsetof (struct bstring, d.data) + (n)) | |
135 | ||
2e618c13 AR |
136 | /* Find a copy of the LENGTH bytes at ADDR in BCACHE. If BCACHE has |
137 | never seen those bytes before, add a copy of them to BCACHE. In | |
138 | either case, return a pointer to BCACHE's copy of that string. If | |
139 | optional ADDED is not NULL, return 1 in case of new entry or 0 if | |
140 | returning an old entry. */ | |
141 | ||
11d31d94 | 142 | const void * |
25629dfd | 143 | bcache::insert (const void *addr, int length, int *added) |
c906108c | 144 | { |
49df298f AC |
145 | unsigned long full_hash; |
146 | unsigned short half_hash; | |
c2d11a7d JM |
147 | int hash_index; |
148 | struct bstring *s; | |
c906108c | 149 | |
2e618c13 AR |
150 | if (added) |
151 | *added = 0; | |
152 | ||
e6ad058a TT |
153 | /* Lazily initialize the obstack. This can save quite a bit of |
154 | memory in some cases. */ | |
25629dfd | 155 | if (m_total_count == 0) |
e6ad058a TT |
156 | { |
157 | /* We could use obstack_specify_allocation here instead, but | |
158 | gdb_obstack.h specifies the allocation/deallocation | |
159 | functions. */ | |
25629dfd | 160 | obstack_init (&m_cache); |
e6ad058a TT |
161 | } |
162 | ||
c2d11a7d | 163 | /* If our average chain length is too high, expand the hash table. */ |
25629dfd TT |
164 | if (m_unique_count >= m_num_buckets * CHAIN_LENGTH_THRESHOLD) |
165 | expand_hash_table (); | |
c2d11a7d | 166 | |
25629dfd TT |
167 | m_total_count++; |
168 | m_total_size += length; | |
c2d11a7d | 169 | |
25629dfd | 170 | full_hash = m_hash_function (addr, length); |
cbd70537 | 171 | |
49df298f | 172 | half_hash = (full_hash >> 16); |
25629dfd | 173 | hash_index = full_hash % m_num_buckets; |
c2d11a7d | 174 | |
25629dfd | 175 | /* Search the hash m_bucket for a string identical to the caller's. |
49df298f AC |
176 | As a short-circuit first compare the upper part of each hash |
177 | values. */ | |
25629dfd | 178 | for (s = m_bucket[hash_index]; s; s = s->next) |
49df298f AC |
179 | { |
180 | if (s->half_hash == half_hash) | |
181 | { | |
182 | if (s->length == length | |
25629dfd | 183 | && m_compare_function (&s->d.data, addr, length)) |
49df298f AC |
184 | return &s->d.data; |
185 | else | |
25629dfd | 186 | m_half_hash_miss_count++; |
49df298f AC |
187 | } |
188 | } | |
c2d11a7d JM |
189 | |
190 | /* The user's string isn't in the list. Insert it after *ps. */ | |
191 | { | |
fe978cb0 | 192 | struct bstring *newobj |
25629dfd | 193 | = (struct bstring *) obstack_alloc (&m_cache, |
224c3ddb | 194 | BSTRING_SIZE (length)); |
b6de9da4 | 195 | |
fe978cb0 PA |
196 | memcpy (&newobj->d.data, addr, length); |
197 | newobj->length = length; | |
25629dfd | 198 | newobj->next = m_bucket[hash_index]; |
fe978cb0 | 199 | newobj->half_hash = half_hash; |
25629dfd | 200 | m_bucket[hash_index] = newobj; |
c2d11a7d | 201 | |
25629dfd TT |
202 | m_unique_count++; |
203 | m_unique_size += length; | |
204 | m_structure_size += BSTRING_SIZE (length); | |
c2d11a7d | 205 | |
2e618c13 AR |
206 | if (added) |
207 | *added = 1; | |
208 | ||
fe978cb0 | 209 | return &newobj->d.data; |
c2d11a7d | 210 | } |
c906108c | 211 | } |
c2d11a7d | 212 | \f |
cbd70537 SW |
213 | |
214 | /* Compare the byte string at ADDR1 of lenght LENGHT to the | |
215 | string at ADDR2. Return 1 if they are equal. */ | |
216 | ||
25629dfd TT |
217 | int |
218 | bcache::compare (const void *addr1, const void *addr2, int length) | |
cbd70537 SW |
219 | { |
220 | return memcmp (addr1, addr2, length) == 0; | |
221 | } | |
222 | ||
c2d11a7d | 223 | /* Free all the storage associated with BCACHE. */ |
25629dfd | 224 | bcache::~bcache () |
c906108c | 225 | { |
e6ad058a | 226 | /* Only free the obstack if we actually initialized it. */ |
25629dfd TT |
227 | if (m_total_count > 0) |
228 | obstack_free (&m_cache, 0); | |
229 | xfree (m_bucket); | |
c2d11a7d JM |
230 | } |
231 | ||
232 | ||
233 | \f | |
234 | /* Printing statistics. */ | |
235 | ||
c2d11a7d JM |
236 | static void |
237 | print_percentage (int portion, int total) | |
238 | { | |
239 | if (total == 0) | |
4a64f543 | 240 | /* i18n: Like "Percentage of duplicates, by count: (not applicable)". */ |
3d263c1d | 241 | printf_filtered (_("(not applicable)\n")); |
c906108c | 242 | else |
b2ba182e | 243 | printf_filtered ("%3d%%\n", (int) (portion * 100.0 / total)); |
c2d11a7d JM |
244 | } |
245 | ||
246 | ||
247 | /* Print statistics on BCACHE's memory usage and efficacity at | |
248 | eliminating duplication. NAME should describe the kind of data | |
249 | BCACHE holds. Statistics are printed using `printf_filtered' and | |
250 | its ilk. */ | |
251 | void | |
25629dfd | 252 | bcache::print_statistics (const char *type) |
c2d11a7d JM |
253 | { |
254 | int occupied_buckets; | |
255 | int max_chain_length; | |
256 | int median_chain_length; | |
2160782c AC |
257 | int max_entry_size; |
258 | int median_entry_size; | |
c2d11a7d | 259 | |
2160782c AC |
260 | /* Count the number of occupied buckets, tally the various string |
261 | lengths, and measure chain lengths. */ | |
c2d11a7d | 262 | { |
745b8ca0 | 263 | unsigned int b; |
25629dfd TT |
264 | int *chain_length = XCNEWVEC (int, m_num_buckets + 1); |
265 | int *entry_size = XCNEWVEC (int, m_unique_count + 1); | |
2160782c | 266 | int stringi = 0; |
c2d11a7d JM |
267 | |
268 | occupied_buckets = 0; | |
269 | ||
25629dfd | 270 | for (b = 0; b < m_num_buckets; b++) |
c2d11a7d | 271 | { |
25629dfd | 272 | struct bstring *s = m_bucket[b]; |
c2d11a7d JM |
273 | |
274 | chain_length[b] = 0; | |
275 | ||
276 | if (s) | |
277 | { | |
278 | occupied_buckets++; | |
279 | ||
280 | while (s) | |
281 | { | |
25629dfd | 282 | gdb_assert (b < m_num_buckets); |
c2d11a7d | 283 | chain_length[b]++; |
25629dfd | 284 | gdb_assert (stringi < m_unique_count); |
2160782c | 285 | entry_size[stringi++] = s->length; |
c2d11a7d JM |
286 | s = s->next; |
287 | } | |
288 | } | |
289 | } | |
290 | ||
4a64f543 MS |
291 | /* To compute the median, we need the set of chain lengths |
292 | sorted. */ | |
39ef2f62 CB |
293 | std::sort (chain_length, chain_length + m_num_buckets); |
294 | std::sort (entry_size, entry_size + m_unique_count); | |
c2d11a7d | 295 | |
25629dfd | 296 | if (m_num_buckets > 0) |
c2d11a7d | 297 | { |
25629dfd TT |
298 | max_chain_length = chain_length[m_num_buckets - 1]; |
299 | median_chain_length = chain_length[m_num_buckets / 2]; | |
c2d11a7d JM |
300 | } |
301 | else | |
302 | { | |
303 | max_chain_length = 0; | |
304 | median_chain_length = 0; | |
305 | } | |
25629dfd | 306 | if (m_unique_count > 0) |
2160782c | 307 | { |
25629dfd TT |
308 | max_entry_size = entry_size[m_unique_count - 1]; |
309 | median_entry_size = entry_size[m_unique_count / 2]; | |
2160782c AC |
310 | } |
311 | else | |
312 | { | |
313 | max_entry_size = 0; | |
314 | median_entry_size = 0; | |
315 | } | |
316 | ||
317 | xfree (chain_length); | |
318 | xfree (entry_size); | |
c2d11a7d JM |
319 | } |
320 | ||
25629dfd TT |
321 | printf_filtered (_(" M_Cached '%s' statistics:\n"), type); |
322 | printf_filtered (_(" Total object count: %ld\n"), m_total_count); | |
323 | printf_filtered (_(" Unique object count: %lu\n"), m_unique_count); | |
3d263c1d | 324 | printf_filtered (_(" Percentage of duplicates, by count: ")); |
25629dfd | 325 | print_percentage (m_total_count - m_unique_count, m_total_count); |
c2d11a7d JM |
326 | printf_filtered ("\n"); |
327 | ||
25629dfd TT |
328 | printf_filtered (_(" Total object size: %ld\n"), m_total_size); |
329 | printf_filtered (_(" Unique object size: %ld\n"), m_unique_size); | |
3d263c1d | 330 | printf_filtered (_(" Percentage of duplicates, by size: ")); |
25629dfd | 331 | print_percentage (m_total_size - m_unique_size, m_total_size); |
c2d11a7d JM |
332 | printf_filtered ("\n"); |
333 | ||
3d263c1d BI |
334 | printf_filtered (_(" Max entry size: %d\n"), max_entry_size); |
335 | printf_filtered (_(" Average entry size: ")); | |
25629dfd TT |
336 | if (m_unique_count > 0) |
337 | printf_filtered ("%ld\n", m_unique_size / m_unique_count); | |
2160782c | 338 | else |
4a64f543 | 339 | /* i18n: "Average entry size: (not applicable)". */ |
3d263c1d BI |
340 | printf_filtered (_("(not applicable)\n")); |
341 | printf_filtered (_(" Median entry size: %d\n"), median_entry_size); | |
2160782c AC |
342 | printf_filtered ("\n"); |
343 | ||
3e43a32a MS |
344 | printf_filtered (_(" \ |
345 | Total memory used by bcache, including overhead: %ld\n"), | |
25629dfd | 346 | m_structure_size); |
3d263c1d | 347 | printf_filtered (_(" Percentage memory overhead: ")); |
25629dfd | 348 | print_percentage (m_structure_size - m_unique_size, m_unique_size); |
3d263c1d | 349 | printf_filtered (_(" Net memory savings: ")); |
25629dfd | 350 | print_percentage (m_total_size - m_structure_size, m_total_size); |
c2d11a7d JM |
351 | printf_filtered ("\n"); |
352 | ||
4a64f543 | 353 | printf_filtered (_(" Hash table size: %3d\n"), |
25629dfd | 354 | m_num_buckets); |
3d263c1d | 355 | printf_filtered (_(" Hash table expands: %lu\n"), |
25629dfd | 356 | m_expand_count); |
3d263c1d | 357 | printf_filtered (_(" Hash table hashes: %lu\n"), |
25629dfd | 358 | m_total_count + m_expand_hash_count); |
3d263c1d | 359 | printf_filtered (_(" Half hash misses: %lu\n"), |
25629dfd | 360 | m_half_hash_miss_count); |
3d263c1d | 361 | printf_filtered (_(" Hash table population: ")); |
25629dfd | 362 | print_percentage (occupied_buckets, m_num_buckets); |
3d263c1d | 363 | printf_filtered (_(" Median hash chain length: %3d\n"), |
c2d11a7d | 364 | median_chain_length); |
3d263c1d | 365 | printf_filtered (_(" Average hash chain length: ")); |
25629dfd TT |
366 | if (m_num_buckets > 0) |
367 | printf_filtered ("%3lu\n", m_unique_count / m_num_buckets); | |
c906108c | 368 | else |
4a64f543 | 369 | /* i18n: "Average hash chain length: (not applicable)". */ |
3d263c1d | 370 | printf_filtered (_("(not applicable)\n")); |
4a64f543 MS |
371 | printf_filtered (_(" Maximum hash chain length: %3d\n"), |
372 | max_chain_length); | |
c2d11a7d | 373 | printf_filtered ("\n"); |
c906108c | 374 | } |
af5f3db6 AC |
375 | |
376 | int | |
25629dfd | 377 | bcache::memory_used () |
af5f3db6 | 378 | { |
25629dfd | 379 | if (m_total_count == 0) |
e6ad058a | 380 | return 0; |
25629dfd | 381 | return obstack_memory_used (&m_cache); |
af5f3db6 | 382 | } |
dfb65191 CB |
383 | |
384 | } /* namespace gdb */ |