Add generated source files and fix thinko in aarch64-asm.c
[binutils-gdb.git] / gdb / dictionary.c
blob8e7eb420cc6fa1172cab675942624ef014da34ea
1 /* Routines for name->symbol lookups in GDB.
3 Copyright (C) 2003-2024 Free Software Foundation, Inc.
5 Contributed by David Carlton <carlton@bactrian.org> and by Kealia,
6 Inc.
8 This file is part of GDB.
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23 #include "defs.h"
24 #include <ctype.h>
25 #include "gdbsupport/gdb_obstack.h"
26 #include "symtab.h"
27 #include "buildsym.h"
28 #include "dictionary.h"
29 #include "gdbsupport/gdb-safe-ctype.h"
30 #include <unordered_map>
31 #include "language.h"
33 /* This file implements dictionaries, which are tables that associate
34 symbols to names. They are represented by an opaque type 'struct
35 dictionary'. That type has various internal implementations, which
36 you can choose between depending on what properties you need
37 (e.g. fast lookup, order-preserving, expandable).
39 Each dictionary starts with a 'virtual function table' that
40 contains the functions that actually implement the various
41 operations that dictionaries provide. (Note, however, that, for
42 the sake of client code, we also provide some functions that can be
43 implemented generically in terms of the functions in the vtable.)
45 To add a new dictionary implementation <impl>, what you should do
46 is:
48 * Add a new element DICT_<IMPL> to dict_type.
50 * Create a new structure dictionary_<impl>. If your new
51 implementation is a variant of an existing one, make sure that
52 their structs have the same initial data members. Define accessor
53 macros for your new data members.
55 * Implement all the functions in dict_vector as static functions,
56 whose name is the same as the corresponding member of dict_vector
57 plus _<impl>. You don't have to do this for those members where
58 you can reuse existing generic functions
59 (e.g. add_symbol_nonexpandable, free_obstack) or in the case where
60 your new implementation is a variant of an existing implementation
61 and where the variant doesn't affect the member function in
62 question.
64 * Define a static const struct dict_vector dict_<impl>_vector.
66 * Define a function dict_create_<impl> to create these
67 gizmos. Add its declaration to dictionary.h.
69 To add a new operation <op> on all existing implementations, what
70 you should do is:
72 * Add a new member <op> to struct dict_vector.
74 * If there is useful generic behavior <op>, define a static
75 function <op>_something_informative that implements that behavior.
76 (E.g. add_symbol_nonexpandable, free_obstack.)
78 * For every implementation <impl> that should have its own specific
79 behavior for <op>, define a static function <op>_<impl>
80 implementing it.
82 * Modify all existing dict_vector_<impl>'s to include the appropriate
83 member.
85 * Define a function dict_<op> that looks up <op> in the dict_vector
86 and calls the appropriate function. Add a declaration for
87 dict_<op> to dictionary.h. */
89 /* An enum representing the various implementations of dictionaries.
90 Used only for debugging. */
92 enum dict_type
94 /* Symbols are stored in a fixed-size hash table. */
95 DICT_HASHED,
96 /* Symbols are stored in an expandable hash table. */
97 DICT_HASHED_EXPANDABLE,
98 /* Symbols are stored in a fixed-size array. */
99 DICT_LINEAR,
100 /* Symbols are stored in an expandable array. */
101 DICT_LINEAR_EXPANDABLE
104 /* The virtual function table. */
106 struct dict_vector
108 /* The type of the dictionary. This is only here to make debugging
109 a bit easier; it's not actually used. */
110 enum dict_type type;
111 /* The function to free a dictionary. */
112 void (*free) (struct dictionary *dict);
113 /* Add a symbol to a dictionary, if possible. */
114 void (*add_symbol) (struct dictionary *dict, struct symbol *sym);
115 /* Iterator functions. */
116 struct symbol *(*iterator_first) (const struct dictionary *dict,
117 struct dict_iterator *iterator);
118 struct symbol *(*iterator_next) (struct dict_iterator *iterator);
119 /* Functions to iterate over symbols with a given name. */
120 struct symbol *(*iter_match_first) (const struct dictionary *dict,
121 const lookup_name_info &name,
122 struct dict_iterator *iterator);
123 struct symbol *(*iter_match_next) (const lookup_name_info &name,
124 struct dict_iterator *iterator);
125 /* A size function, for maint print symtabs. */
126 int (*size) (const struct dictionary *dict);
129 /* Now comes the structs used to store the data for different
130 implementations. If two implementations have data in common, put
131 the common data at the top of their structs, ordered in the same
132 way. */
134 struct dictionary_hashed
136 int nbuckets;
137 struct symbol **buckets;
140 struct dictionary_hashed_expandable
142 /* How many buckets we currently have. */
143 int nbuckets;
144 struct symbol **buckets;
145 /* How many syms we currently have; we need this so we will know
146 when to add more buckets. */
147 int nsyms;
150 struct dictionary_linear
152 int nsyms;
153 struct symbol **syms;
156 struct dictionary_linear_expandable
158 /* How many symbols we currently have. */
159 int nsyms;
160 struct symbol **syms;
161 /* How many symbols we can store before needing to reallocate. */
162 int capacity;
165 /* And now, the star of our show. */
167 struct dictionary
169 const struct language_defn *language;
170 const struct dict_vector *vector;
171 union
173 struct dictionary_hashed hashed;
174 struct dictionary_hashed_expandable hashed_expandable;
175 struct dictionary_linear linear;
176 struct dictionary_linear_expandable linear_expandable;
178 data;
181 /* Accessor macros. */
183 #define DICT_VECTOR(d) (d)->vector
184 #define DICT_LANGUAGE(d) (d)->language
186 /* These can be used for DICT_HASHED_EXPANDABLE, too. */
188 #define DICT_HASHED_NBUCKETS(d) (d)->data.hashed.nbuckets
189 #define DICT_HASHED_BUCKETS(d) (d)->data.hashed.buckets
190 #define DICT_HASHED_BUCKET(d,i) DICT_HASHED_BUCKETS (d) [i]
192 #define DICT_HASHED_EXPANDABLE_NSYMS(d) (d)->data.hashed_expandable.nsyms
194 /* These can be used for DICT_LINEAR_EXPANDABLEs, too. */
196 #define DICT_LINEAR_NSYMS(d) (d)->data.linear.nsyms
197 #define DICT_LINEAR_SYMS(d) (d)->data.linear.syms
198 #define DICT_LINEAR_SYM(d,i) DICT_LINEAR_SYMS (d) [i]
200 #define DICT_LINEAR_EXPANDABLE_CAPACITY(d) \
201 (d)->data.linear_expandable.capacity
203 /* The initial size of a DICT_*_EXPANDABLE dictionary. */
205 #define DICT_EXPANDABLE_INITIAL_CAPACITY 10
207 /* This calculates the number of buckets we'll use in a hashtable,
208 given the number of symbols that it will contain. */
210 #define DICT_HASHTABLE_SIZE(n) ((n)/5 + 1)
212 /* Accessor macros for dict_iterators; they're here rather than
213 dictionary.h because code elsewhere should treat dict_iterators as
214 opaque. */
216 /* The dictionary that the iterator is associated to. */
217 #define DICT_ITERATOR_DICT(iter) (iter)->dict
218 /* For linear dictionaries, the index of the last symbol returned; for
219 hashed dictionaries, the bucket of the last symbol returned. */
220 #define DICT_ITERATOR_INDEX(iter) (iter)->index
221 /* For hashed dictionaries, this points to the last symbol returned;
222 otherwise, this is unused. */
223 #define DICT_ITERATOR_CURRENT(iter) (iter)->current
225 /* Declarations of functions for vectors. */
227 /* Functions that might work across a range of dictionary types. */
229 static void add_symbol_nonexpandable (struct dictionary *dict,
230 struct symbol *sym);
232 static void free_obstack (struct dictionary *dict);
234 /* Functions for DICT_HASHED and DICT_HASHED_EXPANDABLE
235 dictionaries. */
237 static struct symbol *iterator_first_hashed (const struct dictionary *dict,
238 struct dict_iterator *iterator);
240 static struct symbol *iterator_next_hashed (struct dict_iterator *iterator);
242 static struct symbol *iter_match_first_hashed (const struct dictionary *dict,
243 const lookup_name_info &name,
244 struct dict_iterator *iterator);
246 static struct symbol *iter_match_next_hashed (const lookup_name_info &name,
247 struct dict_iterator *iterator);
249 /* Functions only for DICT_HASHED. */
251 static int size_hashed (const struct dictionary *dict);
253 /* Functions only for DICT_HASHED_EXPANDABLE. */
255 static void free_hashed_expandable (struct dictionary *dict);
257 static void add_symbol_hashed_expandable (struct dictionary *dict,
258 struct symbol *sym);
260 static int size_hashed_expandable (const struct dictionary *dict);
262 /* Functions for DICT_LINEAR and DICT_LINEAR_EXPANDABLE
263 dictionaries. */
265 static struct symbol *iterator_first_linear (const struct dictionary *dict,
266 struct dict_iterator *iterator);
268 static struct symbol *iterator_next_linear (struct dict_iterator *iterator);
270 static struct symbol *iter_match_first_linear (const struct dictionary *dict,
271 const lookup_name_info &name,
272 struct dict_iterator *iterator);
274 static struct symbol *iter_match_next_linear (const lookup_name_info &name,
275 struct dict_iterator *iterator);
277 static int size_linear (const struct dictionary *dict);
279 /* Functions only for DICT_LINEAR_EXPANDABLE. */
281 static void free_linear_expandable (struct dictionary *dict);
283 static void add_symbol_linear_expandable (struct dictionary *dict,
284 struct symbol *sym);
286 /* Various vectors that we'll actually use. */
288 static const struct dict_vector dict_hashed_vector =
290 DICT_HASHED, /* type */
291 free_obstack, /* free */
292 add_symbol_nonexpandable, /* add_symbol */
293 iterator_first_hashed, /* iterator_first */
294 iterator_next_hashed, /* iterator_next */
295 iter_match_first_hashed, /* iter_name_first */
296 iter_match_next_hashed, /* iter_name_next */
297 size_hashed, /* size */
300 static const struct dict_vector dict_hashed_expandable_vector =
302 DICT_HASHED_EXPANDABLE, /* type */
303 free_hashed_expandable, /* free */
304 add_symbol_hashed_expandable, /* add_symbol */
305 iterator_first_hashed, /* iterator_first */
306 iterator_next_hashed, /* iterator_next */
307 iter_match_first_hashed, /* iter_name_first */
308 iter_match_next_hashed, /* iter_name_next */
309 size_hashed_expandable, /* size */
312 static const struct dict_vector dict_linear_vector =
314 DICT_LINEAR, /* type */
315 free_obstack, /* free */
316 add_symbol_nonexpandable, /* add_symbol */
317 iterator_first_linear, /* iterator_first */
318 iterator_next_linear, /* iterator_next */
319 iter_match_first_linear, /* iter_name_first */
320 iter_match_next_linear, /* iter_name_next */
321 size_linear, /* size */
324 static const struct dict_vector dict_linear_expandable_vector =
326 DICT_LINEAR_EXPANDABLE, /* type */
327 free_linear_expandable, /* free */
328 add_symbol_linear_expandable, /* add_symbol */
329 iterator_first_linear, /* iterator_first */
330 iterator_next_linear, /* iterator_next */
331 iter_match_first_linear, /* iter_name_first */
332 iter_match_next_linear, /* iter_name_next */
333 size_linear, /* size */
336 /* Declarations of helper functions (i.e. ones that don't go into
337 vectors). */
339 static struct symbol *iterator_hashed_advance (struct dict_iterator *iter);
341 static void insert_symbol_hashed (struct dictionary *dict,
342 struct symbol *sym);
344 static void expand_hashtable (struct dictionary *dict);
346 /* The creation functions. */
348 /* Create a hashed dictionary of a given language. */
350 static struct dictionary *
351 dict_create_hashed (struct obstack *obstack,
352 enum language language,
353 const std::vector<symbol *> &symbol_list)
355 /* Allocate the dictionary. */
356 struct dictionary *retval = XOBNEW (obstack, struct dictionary);
357 DICT_VECTOR (retval) = &dict_hashed_vector;
358 DICT_LANGUAGE (retval) = language_def (language);
360 /* Allocate space for symbols. */
361 int nsyms = symbol_list.size ();
362 int nbuckets = DICT_HASHTABLE_SIZE (nsyms);
363 DICT_HASHED_NBUCKETS (retval) = nbuckets;
364 struct symbol **buckets = XOBNEWVEC (obstack, struct symbol *, nbuckets);
365 memset (buckets, 0, nbuckets * sizeof (struct symbol *));
366 DICT_HASHED_BUCKETS (retval) = buckets;
368 /* Now fill the buckets. */
369 for (const auto &sym : symbol_list)
370 insert_symbol_hashed (retval, sym);
372 return retval;
375 /* Create an expandable hashed dictionary of a given language. */
377 static struct dictionary *
378 dict_create_hashed_expandable (enum language language)
380 struct dictionary *retval = XNEW (struct dictionary);
382 DICT_VECTOR (retval) = &dict_hashed_expandable_vector;
383 DICT_LANGUAGE (retval) = language_def (language);
384 DICT_HASHED_NBUCKETS (retval) = DICT_EXPANDABLE_INITIAL_CAPACITY;
385 DICT_HASHED_BUCKETS (retval) = XCNEWVEC (struct symbol *,
386 DICT_EXPANDABLE_INITIAL_CAPACITY);
387 DICT_HASHED_EXPANDABLE_NSYMS (retval) = 0;
389 return retval;
392 /* Create a linear dictionary of a given language. */
394 static struct dictionary *
395 dict_create_linear (struct obstack *obstack,
396 enum language language,
397 const std::vector<symbol *> &symbol_list)
399 struct dictionary *retval = XOBNEW (obstack, struct dictionary);
400 DICT_VECTOR (retval) = &dict_linear_vector;
401 DICT_LANGUAGE (retval) = language_def (language);
403 /* Allocate space for symbols. */
404 int nsyms = symbol_list.size ();
405 DICT_LINEAR_NSYMS (retval) = nsyms;
406 struct symbol **syms = XOBNEWVEC (obstack, struct symbol *, nsyms);
407 DICT_LINEAR_SYMS (retval) = syms;
409 /* Now fill in the symbols. */
410 int idx = nsyms - 1;
411 for (const auto &sym : symbol_list)
412 syms[idx--] = sym;
414 return retval;
417 /* Create an expandable linear dictionary of a given language. */
419 static struct dictionary *
420 dict_create_linear_expandable (enum language language)
422 struct dictionary *retval = XNEW (struct dictionary);
424 DICT_VECTOR (retval) = &dict_linear_expandable_vector;
425 DICT_LANGUAGE (retval) = language_def (language);
426 DICT_LINEAR_NSYMS (retval) = 0;
427 DICT_LINEAR_EXPANDABLE_CAPACITY (retval) = DICT_EXPANDABLE_INITIAL_CAPACITY;
428 DICT_LINEAR_SYMS (retval)
429 = XNEWVEC (struct symbol *, DICT_LINEAR_EXPANDABLE_CAPACITY (retval));
431 return retval;
434 /* The functions providing the dictionary interface. */
436 /* Free the memory used by a dictionary that's not on an obstack. (If
437 any.) */
439 static void
440 dict_free (struct dictionary *dict)
442 (DICT_VECTOR (dict))->free (dict);
445 /* Add SYM to DICT. DICT had better be expandable. */
447 static void
448 dict_add_symbol (struct dictionary *dict, struct symbol *sym)
450 (DICT_VECTOR (dict))->add_symbol (dict, sym);
453 /* Utility to add a list of symbols to a dictionary.
454 DICT must be an expandable dictionary. */
456 static void
457 dict_add_pending (struct dictionary *dict,
458 const std::vector<symbol *> &symbol_list)
460 /* Preserve ordering by reversing the list. */
461 for (auto sym = symbol_list.rbegin (); sym != symbol_list.rend (); ++sym)
462 dict_add_symbol (dict, *sym);
465 /* Initialize ITERATOR to point at the first symbol in DICT, and
466 return that first symbol, or NULL if DICT is empty. */
468 static struct symbol *
469 dict_iterator_first (const struct dictionary *dict,
470 struct dict_iterator *iterator)
472 return (DICT_VECTOR (dict))->iterator_first (dict, iterator);
475 /* Advance ITERATOR, and return the next symbol, or NULL if there are
476 no more symbols. */
478 static struct symbol *
479 dict_iterator_next (struct dict_iterator *iterator)
481 return (DICT_VECTOR (DICT_ITERATOR_DICT (iterator)))
482 ->iterator_next (iterator);
485 static struct symbol *
486 dict_iter_match_first (const struct dictionary *dict,
487 const lookup_name_info &name,
488 struct dict_iterator *iterator)
490 return (DICT_VECTOR (dict))->iter_match_first (dict, name, iterator);
493 static struct symbol *
494 dict_iter_match_next (const lookup_name_info &name,
495 struct dict_iterator *iterator)
497 return (DICT_VECTOR (DICT_ITERATOR_DICT (iterator)))
498 ->iter_match_next (name, iterator);
501 static int
502 dict_size (const struct dictionary *dict)
504 return (DICT_VECTOR (dict))->size (dict);
507 /* Now come functions (well, one function, currently) that are
508 implemented generically by means of the vtable. Typically, they're
509 rarely used. */
512 /* The functions implementing the dictionary interface. */
514 /* Generic functions, where appropriate. */
516 static void
517 free_obstack (struct dictionary *dict)
519 /* Do nothing! */
522 static void
523 add_symbol_nonexpandable (struct dictionary *dict, struct symbol *sym)
525 internal_error (_("dict_add_symbol: non-expandable dictionary"));
528 /* Functions for DICT_HASHED and DICT_HASHED_EXPANDABLE. */
530 static struct symbol *
531 iterator_first_hashed (const struct dictionary *dict,
532 struct dict_iterator *iterator)
534 DICT_ITERATOR_DICT (iterator) = dict;
535 DICT_ITERATOR_INDEX (iterator) = -1;
536 return iterator_hashed_advance (iterator);
539 static struct symbol *
540 iterator_next_hashed (struct dict_iterator *iterator)
542 struct symbol *next;
544 next = DICT_ITERATOR_CURRENT (iterator)->hash_next;
546 if (next == NULL)
547 return iterator_hashed_advance (iterator);
548 else
550 DICT_ITERATOR_CURRENT (iterator) = next;
551 return next;
555 static struct symbol *
556 iterator_hashed_advance (struct dict_iterator *iterator)
558 const struct dictionary *dict = DICT_ITERATOR_DICT (iterator);
559 int nbuckets = DICT_HASHED_NBUCKETS (dict);
560 int i;
562 for (i = DICT_ITERATOR_INDEX (iterator) + 1; i < nbuckets; ++i)
564 struct symbol *sym = DICT_HASHED_BUCKET (dict, i);
566 if (sym != NULL)
568 DICT_ITERATOR_INDEX (iterator) = i;
569 DICT_ITERATOR_CURRENT (iterator) = sym;
570 return sym;
574 return NULL;
577 static struct symbol *
578 iter_match_first_hashed (const struct dictionary *dict,
579 const lookup_name_info &name,
580 struct dict_iterator *iterator)
582 const language_defn *lang = DICT_LANGUAGE (dict);
583 unsigned int hash_index = (name.search_name_hash (lang->la_language)
584 % DICT_HASHED_NBUCKETS (dict));
585 symbol_name_matcher_ftype *matches_name
586 = lang->get_symbol_name_matcher (name);
587 struct symbol *sym;
589 DICT_ITERATOR_DICT (iterator) = dict;
591 /* Loop through the symbols in the given bucket, breaking when SYM
592 first matches. If SYM never matches, it will be set to NULL;
593 either way, we have the right return value. */
595 for (sym = DICT_HASHED_BUCKET (dict, hash_index);
596 sym != NULL;
597 sym = sym->hash_next)
599 /* Warning: the order of arguments to compare matters! */
600 if (matches_name (sym->search_name (), name, NULL))
601 break;
604 DICT_ITERATOR_CURRENT (iterator) = sym;
605 return sym;
608 static struct symbol *
609 iter_match_next_hashed (const lookup_name_info &name,
610 struct dict_iterator *iterator)
612 const language_defn *lang = DICT_LANGUAGE (DICT_ITERATOR_DICT (iterator));
613 symbol_name_matcher_ftype *matches_name
614 = lang->get_symbol_name_matcher (name);
615 struct symbol *next;
617 for (next = DICT_ITERATOR_CURRENT (iterator)->hash_next;
618 next != NULL;
619 next = next->hash_next)
621 if (matches_name (next->search_name (), name, NULL))
622 break;
625 DICT_ITERATOR_CURRENT (iterator) = next;
627 return next;
630 /* Insert SYM into DICT. */
632 static void
633 insert_symbol_hashed (struct dictionary *dict,
634 struct symbol *sym)
636 unsigned int hash_index;
637 unsigned int hash;
638 struct symbol **buckets = DICT_HASHED_BUCKETS (dict);
640 /* We don't want to insert a symbol into a dictionary of a different
641 language. The two may not use the same hashing algorithm. */
642 gdb_assert (sym->language () == DICT_LANGUAGE (dict)->la_language);
644 hash = search_name_hash (sym->language (), sym->search_name ());
645 hash_index = hash % DICT_HASHED_NBUCKETS (dict);
646 sym->hash_next = buckets[hash_index];
647 buckets[hash_index] = sym;
650 static int
651 size_hashed (const struct dictionary *dict)
653 int nbuckets = DICT_HASHED_NBUCKETS (dict);
654 int total = 0;
656 for (int i = 0; i < nbuckets; ++i)
658 for (struct symbol *sym = DICT_HASHED_BUCKET (dict, i);
659 sym != nullptr;
660 sym = sym->hash_next)
661 total++;
664 return total;
667 /* Functions only for DICT_HASHED_EXPANDABLE. */
669 static void
670 free_hashed_expandable (struct dictionary *dict)
672 xfree (DICT_HASHED_BUCKETS (dict));
673 xfree (dict);
676 static void
677 add_symbol_hashed_expandable (struct dictionary *dict,
678 struct symbol *sym)
680 int nsyms = ++DICT_HASHED_EXPANDABLE_NSYMS (dict);
682 if (DICT_HASHTABLE_SIZE (nsyms) > DICT_HASHED_NBUCKETS (dict))
683 expand_hashtable (dict);
685 insert_symbol_hashed (dict, sym);
686 DICT_HASHED_EXPANDABLE_NSYMS (dict) = nsyms;
689 static int
690 size_hashed_expandable (const struct dictionary *dict)
692 return DICT_HASHED_EXPANDABLE_NSYMS (dict);
695 static void
696 expand_hashtable (struct dictionary *dict)
698 int old_nbuckets = DICT_HASHED_NBUCKETS (dict);
699 struct symbol **old_buckets = DICT_HASHED_BUCKETS (dict);
700 int new_nbuckets = 2 * old_nbuckets + 1;
701 struct symbol **new_buckets = XCNEWVEC (struct symbol *, new_nbuckets);
702 int i;
704 DICT_HASHED_NBUCKETS (dict) = new_nbuckets;
705 DICT_HASHED_BUCKETS (dict) = new_buckets;
707 for (i = 0; i < old_nbuckets; ++i)
709 struct symbol *sym, *next_sym;
711 sym = old_buckets[i];
712 if (sym != NULL)
714 for (next_sym = sym->hash_next;
715 next_sym != NULL;
716 next_sym = sym->hash_next)
718 insert_symbol_hashed (dict, sym);
719 sym = next_sym;
722 insert_symbol_hashed (dict, sym);
726 xfree (old_buckets);
729 /* See dictionary.h. */
731 unsigned int
732 language_defn::search_name_hash (const char *string0) const
734 /* The Ada-encoded version of a name P1.P2...Pn has either the form
735 P1__P2__...Pn<suffix> or _ada_P1__P2__...Pn<suffix> (where the Pi
736 are lower-cased identifiers). The <suffix> (which can be empty)
737 encodes additional information about the denoted entity. This
738 routine hashes such names to msymbol_hash_iw(Pn). It actually
739 does this for a superset of both valid Pi and of <suffix>, but
740 in other cases it simply returns msymbol_hash_iw(STRING0). */
742 const char *string;
743 unsigned int hash;
745 string = string0;
746 if (*string == '_')
748 if (startswith (string, "_ada_"))
749 string += 5;
750 else
751 return msymbol_hash_iw (string0);
754 hash = 0;
755 while (*string)
757 switch (*string)
759 case '$':
760 case '.':
761 case 'X':
762 if (string0 == string)
763 return msymbol_hash_iw (string0);
764 else
765 return hash;
766 case ' ':
767 case '(':
768 return msymbol_hash_iw (string0);
769 case '_':
770 if (string[1] == '_' && string != string0)
772 int c = string[2];
774 if (c == 'B' && string[3] == '_')
776 for (string += 4; ISDIGIT (*string); ++string)
778 continue;
781 if ((c < 'a' || c > 'z') && c != 'O')
782 return hash;
783 hash = 0;
784 string += 2;
785 continue;
787 break;
788 case 'T':
789 /* Ignore "TKB" suffixes.
791 These are used by Ada for subprograms implementing a task body.
792 For instance for a task T inside package Pck, the name of the
793 subprogram implementing T's body is `pck__tTKB'. We need to
794 ignore the "TKB" suffix because searches for this task body
795 subprogram are going to be performed using `pck__t' (the encoded
796 version of the natural name `pck.t'). */
797 if (strcmp (string, "TKB") == 0)
798 return hash;
799 break;
802 hash = SYMBOL_HASH_NEXT (hash, *string);
803 string += 1;
805 return hash;
808 /* Functions for DICT_LINEAR and DICT_LINEAR_EXPANDABLE. */
810 static struct symbol *
811 iterator_first_linear (const struct dictionary *dict,
812 struct dict_iterator *iterator)
814 DICT_ITERATOR_DICT (iterator) = dict;
815 DICT_ITERATOR_INDEX (iterator) = 0;
816 return DICT_LINEAR_NSYMS (dict) ? DICT_LINEAR_SYM (dict, 0) : NULL;
819 static struct symbol *
820 iterator_next_linear (struct dict_iterator *iterator)
822 const struct dictionary *dict = DICT_ITERATOR_DICT (iterator);
824 if (++DICT_ITERATOR_INDEX (iterator) >= DICT_LINEAR_NSYMS (dict))
825 return NULL;
826 else
827 return DICT_LINEAR_SYM (dict, DICT_ITERATOR_INDEX (iterator));
830 static struct symbol *
831 iter_match_first_linear (const struct dictionary *dict,
832 const lookup_name_info &name,
833 struct dict_iterator *iterator)
835 DICT_ITERATOR_DICT (iterator) = dict;
836 DICT_ITERATOR_INDEX (iterator) = -1;
838 return iter_match_next_linear (name, iterator);
841 static struct symbol *
842 iter_match_next_linear (const lookup_name_info &name,
843 struct dict_iterator *iterator)
845 const struct dictionary *dict = DICT_ITERATOR_DICT (iterator);
846 const language_defn *lang = DICT_LANGUAGE (dict);
847 symbol_name_matcher_ftype *matches_name
848 = lang->get_symbol_name_matcher (name);
850 int i, nsyms = DICT_LINEAR_NSYMS (dict);
851 struct symbol *sym, *retval = NULL;
853 for (i = DICT_ITERATOR_INDEX (iterator) + 1; i < nsyms; ++i)
855 sym = DICT_LINEAR_SYM (dict, i);
857 if (matches_name (sym->search_name (), name, NULL))
859 retval = sym;
860 break;
864 DICT_ITERATOR_INDEX (iterator) = i;
866 return retval;
869 static int
870 size_linear (const struct dictionary *dict)
872 return DICT_LINEAR_NSYMS (dict);
875 /* Functions only for DICT_LINEAR_EXPANDABLE. */
877 static void
878 free_linear_expandable (struct dictionary *dict)
880 xfree (DICT_LINEAR_SYMS (dict));
881 xfree (dict);
885 static void
886 add_symbol_linear_expandable (struct dictionary *dict,
887 struct symbol *sym)
889 int nsyms = ++DICT_LINEAR_NSYMS (dict);
891 /* Do we have enough room? If not, grow it. */
892 if (nsyms > DICT_LINEAR_EXPANDABLE_CAPACITY (dict))
894 DICT_LINEAR_EXPANDABLE_CAPACITY (dict) *= 2;
895 DICT_LINEAR_SYMS (dict)
896 = XRESIZEVEC (struct symbol *, DICT_LINEAR_SYMS (dict),
897 DICT_LINEAR_EXPANDABLE_CAPACITY (dict));
900 DICT_LINEAR_SYM (dict, nsyms - 1) = sym;
903 /* Multi-language dictionary support. */
905 /* The structure describing a multi-language dictionary. */
907 struct multidictionary
909 /* An array of dictionaries, one per language. All dictionaries
910 must be of the same type. This should be free'd for expandable
911 dictionary types. */
912 struct dictionary **dictionaries;
914 /* The number of language dictionaries currently allocated.
915 Only used for expandable dictionaries. */
916 unsigned short n_allocated_dictionaries;
919 /* A hasher for enum language. Injecting this into std is a convenience
920 when using unordered_map with C++11. */
922 namespace std
924 template<> struct hash<enum language>
926 typedef enum language argument_type;
927 typedef std::size_t result_type;
929 result_type operator() (const argument_type &l) const noexcept
931 return static_cast<result_type> (l);
934 } /* namespace std */
936 /* A helper function to collate symbols on the pending list by language. */
938 static std::unordered_map<enum language, std::vector<symbol *>>
939 collate_pending_symbols_by_language (const struct pending *symbol_list)
941 std::unordered_map<enum language, std::vector<symbol *>> nsyms;
943 for (const pending *list_counter = symbol_list;
944 list_counter != nullptr; list_counter = list_counter->next)
946 for (int i = list_counter->nsyms - 1; i >= 0; --i)
948 enum language language = list_counter->symbol[i]->language ();
949 nsyms[language].push_back (list_counter->symbol[i]);
953 return nsyms;
956 /* See dictionary.h. */
958 struct multidictionary *
959 mdict_create_hashed (struct obstack *obstack,
960 const struct pending *symbol_list)
962 struct multidictionary *retval
963 = XOBNEW (obstack, struct multidictionary);
964 std::unordered_map<enum language, std::vector<symbol *>> nsyms
965 = collate_pending_symbols_by_language (symbol_list);
967 /* Loop over all languages and create/populate dictionaries. */
968 retval->dictionaries
969 = XOBNEWVEC (obstack, struct dictionary *, nsyms.size ());
970 retval->n_allocated_dictionaries = nsyms.size ();
972 int idx = 0;
973 for (const auto &pair : nsyms)
975 enum language language = pair.first;
976 std::vector<symbol *> symlist = pair.second;
978 retval->dictionaries[idx++]
979 = dict_create_hashed (obstack, language, symlist);
982 return retval;
985 /* See dictionary.h. */
987 struct multidictionary *
988 mdict_create_hashed_expandable (enum language language)
990 struct multidictionary *retval = XNEW (struct multidictionary);
992 /* We have no symbol list to populate, but we create an empty
993 dictionary of the requested language to populate later. */
994 retval->n_allocated_dictionaries = 1;
995 retval->dictionaries = XNEW (struct dictionary *);
996 retval->dictionaries[0] = dict_create_hashed_expandable (language);
998 return retval;
1001 /* See dictionary.h. */
1003 struct multidictionary *
1004 mdict_create_linear (struct obstack *obstack,
1005 const struct pending *symbol_list)
1007 struct multidictionary *retval
1008 = XOBNEW (obstack, struct multidictionary);
1009 std::unordered_map<enum language, std::vector<symbol *>> nsyms
1010 = collate_pending_symbols_by_language (symbol_list);
1012 /* Loop over all languages and create/populate dictionaries. */
1013 retval->dictionaries
1014 = XOBNEWVEC (obstack, struct dictionary *, nsyms.size ());
1015 retval->n_allocated_dictionaries = nsyms.size ();
1017 int idx = 0;
1018 for (const auto &pair : nsyms)
1020 enum language language = pair.first;
1021 std::vector<symbol *> symlist = pair.second;
1023 retval->dictionaries[idx++]
1024 = dict_create_linear (obstack, language, symlist);
1027 return retval;
1030 /* See dictionary.h. */
1032 struct multidictionary *
1033 mdict_create_linear_expandable (enum language language)
1035 struct multidictionary *retval = XNEW (struct multidictionary);
1037 /* We have no symbol list to populate, but we create an empty
1038 dictionary to populate later. */
1039 retval->n_allocated_dictionaries = 1;
1040 retval->dictionaries = XNEW (struct dictionary *);
1041 retval->dictionaries[0] = dict_create_linear_expandable (language);
1043 return retval;
1046 /* See dictionary.h. */
1048 void
1049 mdict_free (struct multidictionary *mdict)
1051 /* Grab the type of dictionary being used. */
1052 enum dict_type type = mdict->dictionaries[0]->vector->type;
1054 /* Loop over all dictionaries and free them. */
1055 for (unsigned short idx = 0; idx < mdict->n_allocated_dictionaries; ++idx)
1056 dict_free (mdict->dictionaries[idx]);
1058 /* Free the dictionary list, if needed. */
1059 switch (type)
1061 case DICT_HASHED:
1062 case DICT_LINEAR:
1063 /* Memory was allocated on an obstack when created. */
1064 break;
1066 case DICT_HASHED_EXPANDABLE:
1067 case DICT_LINEAR_EXPANDABLE:
1068 xfree (mdict->dictionaries);
1069 break;
1073 /* Helper function to find the dictionary associated with LANGUAGE
1074 or NULL if there is no dictionary of that language. */
1076 static struct dictionary *
1077 find_language_dictionary (const struct multidictionary *mdict,
1078 enum language language)
1080 for (unsigned short idx = 0; idx < mdict->n_allocated_dictionaries; ++idx)
1082 if (DICT_LANGUAGE (mdict->dictionaries[idx])->la_language == language)
1083 return mdict->dictionaries[idx];
1086 return nullptr;
1089 /* Create a new language dictionary for LANGUAGE and add it to the
1090 multidictionary MDICT's list of dictionaries. If MDICT is not
1091 based on expandable dictionaries, this function throws an
1092 internal error. */
1094 static struct dictionary *
1095 create_new_language_dictionary (struct multidictionary *mdict,
1096 enum language language)
1098 struct dictionary *retval = nullptr;
1100 /* We use the first dictionary entry to decide what create function
1101 to call. Not optimal but sufficient. */
1102 gdb_assert (mdict->dictionaries[0] != nullptr);
1103 switch (mdict->dictionaries[0]->vector->type)
1105 case DICT_HASHED:
1106 case DICT_LINEAR:
1107 internal_error (_("create_new_language_dictionary: attempted to expand "
1108 "non-expandable multidictionary"));
1110 case DICT_HASHED_EXPANDABLE:
1111 retval = dict_create_hashed_expandable (language);
1112 break;
1114 case DICT_LINEAR_EXPANDABLE:
1115 retval = dict_create_linear_expandable (language);
1116 break;
1119 /* Grow the dictionary vector and save the new dictionary. */
1120 mdict->dictionaries
1121 = (struct dictionary **) xrealloc (mdict->dictionaries,
1122 (++mdict->n_allocated_dictionaries
1123 * sizeof (struct dictionary *)));
1124 mdict->dictionaries[mdict->n_allocated_dictionaries - 1] = retval;
1126 return retval;
1129 /* See dictionary.h. */
1131 void
1132 mdict_add_symbol (struct multidictionary *mdict, struct symbol *sym)
1134 struct dictionary *dict
1135 = find_language_dictionary (mdict, sym->language ());
1137 if (dict == nullptr)
1139 /* SYM is of a new language that we haven't previously seen.
1140 Create a new dictionary for it. */
1141 dict = create_new_language_dictionary (mdict, sym->language ());
1144 dict_add_symbol (dict, sym);
1147 /* See dictionary.h. */
1149 void
1150 mdict_add_pending (struct multidictionary *mdict,
1151 const struct pending *symbol_list)
1153 std::unordered_map<enum language, std::vector<symbol *>> nsyms
1154 = collate_pending_symbols_by_language (symbol_list);
1156 for (const auto &pair : nsyms)
1158 enum language language = pair.first;
1159 std::vector<symbol *> symlist = pair.second;
1160 struct dictionary *dict = find_language_dictionary (mdict, language);
1162 if (dict == nullptr)
1164 /* The language was not previously seen. Create a new dictionary
1165 for it. */
1166 dict = create_new_language_dictionary (mdict, language);
1169 dict_add_pending (dict, symlist);
1173 /* See dictionary.h. */
1175 struct symbol *
1176 mdict_iterator_first (const multidictionary *mdict,
1177 struct mdict_iterator *miterator)
1179 miterator->mdict = mdict;
1180 miterator->current_idx = 0;
1182 for (unsigned short idx = miterator->current_idx;
1183 idx < mdict->n_allocated_dictionaries; ++idx)
1185 struct symbol *result
1186 = dict_iterator_first (mdict->dictionaries[idx], &miterator->iterator);
1188 if (result != nullptr)
1190 miterator->current_idx = idx;
1191 return result;
1195 return nullptr;
1198 /* See dictionary.h. */
1200 struct symbol *
1201 mdict_iterator_next (struct mdict_iterator *miterator)
1203 struct symbol *result = dict_iterator_next (&miterator->iterator);
1205 if (result != nullptr)
1206 return result;
1208 /* The current dictionary had no matches -- move to the next
1209 dictionary, if any. */
1210 for (unsigned short idx = ++miterator->current_idx;
1211 idx < miterator->mdict->n_allocated_dictionaries; ++idx)
1213 result
1214 = dict_iterator_first (miterator->mdict->dictionaries[idx],
1215 &miterator->iterator);
1216 if (result != nullptr)
1218 miterator->current_idx = idx;
1219 return result;
1223 return nullptr;
1226 /* See dictionary.h. */
1228 struct symbol *
1229 mdict_iter_match_first (const struct multidictionary *mdict,
1230 const lookup_name_info &name,
1231 struct mdict_iterator *miterator)
1233 miterator->mdict = mdict;
1234 miterator->current_idx = 0;
1236 for (unsigned short idx = miterator->current_idx;
1237 idx < mdict->n_allocated_dictionaries; ++idx)
1239 struct symbol *result
1240 = dict_iter_match_first (mdict->dictionaries[idx], name,
1241 &miterator->iterator);
1243 if (result != nullptr)
1244 return result;
1247 return nullptr;
1250 /* See dictionary.h. */
1252 struct symbol *
1253 mdict_iter_match_next (const lookup_name_info &name,
1254 struct mdict_iterator *miterator)
1256 /* Search the current dictionary. */
1257 struct symbol *result = dict_iter_match_next (name, &miterator->iterator);
1259 if (result != nullptr)
1260 return result;
1262 /* The current dictionary had no matches -- move to the next
1263 dictionary, if any. */
1264 for (unsigned short idx = ++miterator->current_idx;
1265 idx < miterator->mdict->n_allocated_dictionaries; ++idx)
1267 result
1268 = dict_iter_match_first (miterator->mdict->dictionaries[idx],
1269 name, &miterator->iterator);
1270 if (result != nullptr)
1272 miterator->current_idx = idx;
1273 return result;
1277 return nullptr;
1280 /* See dictionary.h. */
1283 mdict_size (const struct multidictionary *mdict)
1285 int size = 0;
1287 for (unsigned short idx = 0; idx < mdict->n_allocated_dictionaries; ++idx)
1288 size += dict_size (mdict->dictionaries[idx]);
1290 return size;