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