1 /* Routines for name->symbol lookups in GDB.
3 Copyright (C) 2003, 2007, 2008, 2009, 2010, 2011
4 Free Software Foundation, Inc.
9 This file is part of GDB.
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program. If not, see <http://www.gnu.org/licenses/>. */
26 #include "gdb_obstack.h"
29 #include "gdb_assert.h"
30 #include "dictionary.h"
32 /* This file implements dictionaries, which are tables that associate
33 symbols to names. They are represented by an opaque type 'struct
34 dictionary'. That type has various internal implementations, which
35 you can choose between depending on what properties you need
36 (e.g. fast lookup, order-preserving, expandable).
38 Each dictionary starts with a 'virtual function table' that
39 contains the functions that actually implement the various
40 operations that dictionaries provide. (Note, however, that, for
41 the sake of client code, we also provide some functions that can be
42 implemented generically in terms of the functions in the vtable.)
44 To add a new dictionary implementation <impl>, what you should do
47 * Add a new element DICT_<IMPL> to dict_type.
49 * Create a new structure dictionary_<impl>. If your new
50 implementation is a variant of an existing one, make sure that
51 their structs have the same initial data members. Define accessor
52 macros for your new data members.
54 * Implement all the functions in dict_vector as static functions,
55 whose name is the same as the corresponding member of dict_vector
56 plus _<impl>. You don't have to do this for those members where
57 you can reuse existing generic functions
58 (e.g. add_symbol_nonexpandable, free_obstack) or in the case where
59 your new implementation is a variant of an existing implementation
60 and where the variant doesn't affect the member function in
63 * Define a static const struct dict_vector dict_<impl>_vector.
65 * Define a function dict_create_<impl> to create these
66 gizmos. Add its declaration to dictionary.h.
68 To add a new operation <op> on all existing implementations, what
71 * Add a new member <op> to struct dict_vector.
73 * If there is useful generic behavior <op>, define a static
74 function <op>_something_informative that implements that behavior.
75 (E.g. add_symbol_nonexpandable, free_obstack.)
77 * For every implementation <impl> that should have its own specific
78 behavior for <op>, define a static function <op>_<impl>
81 * Modify all existing dict_vector_<impl>'s to include the appropriate
84 * Define a function dict_<op> that looks up <op> in the dict_vector
85 and calls the appropriate function. Add a declaration for
86 dict_<op> to dictionary.h. */
88 /* An enum representing the various implementations of dictionaries.
89 Used only for debugging. */
93 /* Symbols are stored in a fixed-size hash table. */
95 /* Symbols are stored in an expandable hash table. */
96 DICT_HASHED_EXPANDABLE,
97 /* Symbols are stored in a fixed-size array. */
99 /* Symbols are stored in an expandable array. */
100 DICT_LINEAR_EXPANDABLE
103 /* The virtual function table. */
107 /* The type of the dictionary. This is only here to make debugging
108 a bit easier; it's not actually used. */
110 /* The function to free a dictionary. */
111 void (*free) (struct dictionary *dict);
112 /* Add a symbol to a dictionary, if possible. */
113 void (*add_symbol) (struct dictionary *dict, struct symbol *sym);
114 /* Iterator functions. */
115 struct symbol *(*iterator_first) (const struct dictionary *dict,
116 struct dict_iterator *iterator);
117 struct symbol *(*iterator_next) (struct dict_iterator *iterator);
118 /* Functions to iterate over symbols with a given name. */
119 struct symbol *(*iter_match_first) (const struct dictionary *dict,
121 symbol_compare_ftype *equiv,
122 struct dict_iterator *iterator);
123 struct symbol *(*iter_match_next) (const char *name,
124 symbol_compare_ftype *equiv,
125 struct dict_iterator *iterator);
126 /* A size function, for maint print symtabs. */
127 int (*size) (const struct dictionary *dict);
130 /* Now comes the structs used to store the data for different
131 implementations. If two implementations have data in common, put
132 the common data at the top of their structs, ordered in the same
135 struct dictionary_hashed
138 struct symbol **buckets;
141 struct dictionary_hashed_expandable
143 /* How many buckets we currently have. */
145 struct symbol **buckets;
146 /* How many syms we currently have; we need this so we will know
147 when to add more buckets. */
151 struct dictionary_linear
154 struct symbol **syms;
157 struct dictionary_linear_expandable
159 /* How many symbols we currently have. */
161 struct symbol **syms;
162 /* How many symbols we can store before needing to reallocate. */
166 /* And now, the star of our show. */
170 const struct dict_vector *vector;
173 struct dictionary_hashed hashed;
174 struct dictionary_hashed_expandable hashed_expandable;
175 struct dictionary_linear linear;
176 struct dictionary_linear_expandable linear_expandable;
181 /* Accessor macros. */
183 #define DICT_VECTOR(d) (d)->vector
185 /* These can be used for DICT_HASHED_EXPANDABLE, too. */
187 #define DICT_HASHED_NBUCKETS(d) (d)->data.hashed.nbuckets
188 #define DICT_HASHED_BUCKETS(d) (d)->data.hashed.buckets
189 #define DICT_HASHED_BUCKET(d,i) DICT_HASHED_BUCKETS (d) [i]
191 #define DICT_HASHED_EXPANDABLE_NSYMS(d) (d)->data.hashed_expandable.nsyms
193 /* These can be used for DICT_LINEAR_EXPANDABLEs, too. */
195 #define DICT_LINEAR_NSYMS(d) (d)->data.linear.nsyms
196 #define DICT_LINEAR_SYMS(d) (d)->data.linear.syms
197 #define DICT_LINEAR_SYM(d,i) DICT_LINEAR_SYMS (d) [i]
199 #define DICT_LINEAR_EXPANDABLE_CAPACITY(d) \
200 (d)->data.linear_expandable.capacity
202 /* The initial size of a DICT_*_EXPANDABLE dictionary. */
204 #define DICT_EXPANDABLE_INITIAL_CAPACITY 10
206 /* This calculates the number of buckets we'll use in a hashtable,
207 given the number of symbols that it will contain. */
209 #define DICT_HASHTABLE_SIZE(n) ((n)/5 + 1)
211 /* Accessor macros for dict_iterators; they're here rather than
212 dictionary.h because code elsewhere should treat dict_iterators as
215 /* The dictionary that the iterator is associated to. */
216 #define DICT_ITERATOR_DICT(iter) (iter)->dict
217 /* For linear dictionaries, the index of the last symbol returned; for
218 hashed dictionaries, the bucket of the last symbol returned. */
219 #define DICT_ITERATOR_INDEX(iter) (iter)->index
220 /* For hashed dictionaries, this points to the last symbol returned;
221 otherwise, this is unused. */
222 #define DICT_ITERATOR_CURRENT(iter) (iter)->current
224 /* Declarations of functions for vectors. */
226 /* Functions that might work across a range of dictionary types. */
228 static void add_symbol_nonexpandable (struct dictionary *dict,
231 static void free_obstack (struct dictionary *dict);
233 /* Functions for DICT_HASHED and DICT_HASHED_EXPANDABLE
236 static struct symbol *iterator_first_hashed (const struct dictionary *dict,
237 struct dict_iterator *iterator);
239 static struct symbol *iterator_next_hashed (struct dict_iterator *iterator);
241 static struct symbol *iter_match_first_hashed (const struct dictionary *dict,
243 symbol_compare_ftype *compare,
244 struct dict_iterator *iterator);
246 static struct symbol *iter_match_next_hashed (const char *name,
247 symbol_compare_ftype *compare,
248 struct dict_iterator *iterator);
250 static unsigned int dict_hash (const char *string);
252 /* Functions only for DICT_HASHED. */
254 static int size_hashed (const struct dictionary *dict);
256 /* Functions only for DICT_HASHED_EXPANDABLE. */
258 static void free_hashed_expandable (struct dictionary *dict);
260 static void add_symbol_hashed_expandable (struct dictionary *dict,
263 static int size_hashed_expandable (const struct dictionary *dict);
265 /* Functions for DICT_LINEAR and DICT_LINEAR_EXPANDABLE
268 static struct symbol *iterator_first_linear (const struct dictionary *dict,
269 struct dict_iterator *iterator);
271 static struct symbol *iterator_next_linear (struct dict_iterator *iterator);
273 static struct symbol *iter_match_first_linear (const struct dictionary *dict,
275 symbol_compare_ftype *compare,
276 struct dict_iterator *iterator);
278 static struct symbol *iter_match_next_linear (const char *name,
279 symbol_compare_ftype *compare,
280 struct dict_iterator *iterator);
282 static int size_linear (const struct dictionary *dict);
284 /* Functions only for DICT_LINEAR_EXPANDABLE. */
286 static void free_linear_expandable (struct dictionary *dict);
288 static void add_symbol_linear_expandable (struct dictionary *dict,
291 /* Various vectors that we'll actually use. */
293 static const struct dict_vector dict_hashed_vector =
295 DICT_HASHED, /* type */
296 free_obstack, /* free */
297 add_symbol_nonexpandable, /* add_symbol */
298 iterator_first_hashed, /* iterator_first */
299 iterator_next_hashed, /* iterator_next */
300 iter_match_first_hashed, /* iter_name_first */
301 iter_match_next_hashed, /* iter_name_next */
302 size_hashed, /* size */
305 static const struct dict_vector dict_hashed_expandable_vector =
307 DICT_HASHED_EXPANDABLE, /* type */
308 free_hashed_expandable, /* free */
309 add_symbol_hashed_expandable, /* add_symbol */
310 iterator_first_hashed, /* iterator_first */
311 iterator_next_hashed, /* iterator_next */
312 iter_match_first_hashed, /* iter_name_first */
313 iter_match_next_hashed, /* iter_name_next */
314 size_hashed_expandable, /* size */
317 static const struct dict_vector dict_linear_vector =
319 DICT_LINEAR, /* type */
320 free_obstack, /* free */
321 add_symbol_nonexpandable, /* add_symbol */
322 iterator_first_linear, /* iterator_first */
323 iterator_next_linear, /* iterator_next */
324 iter_match_first_linear, /* iter_name_first */
325 iter_match_next_linear, /* iter_name_next */
326 size_linear, /* size */
329 static const struct dict_vector dict_linear_expandable_vector =
331 DICT_LINEAR_EXPANDABLE, /* type */
332 free_linear_expandable, /* free */
333 add_symbol_linear_expandable, /* add_symbol */
334 iterator_first_linear, /* iterator_first */
335 iterator_next_linear, /* iterator_next */
336 iter_match_first_linear, /* iter_name_first */
337 iter_match_next_linear, /* iter_name_next */
338 size_linear, /* size */
341 /* Declarations of helper functions (i.e. ones that don't go into
344 static struct symbol *iterator_hashed_advance (struct dict_iterator *iter);
346 static void insert_symbol_hashed (struct dictionary *dict,
349 static void expand_hashtable (struct dictionary *dict);
351 /* The creation functions. */
353 /* Create a dictionary implemented via a fixed-size hashtable. All
354 memory it uses is allocated on OBSTACK; the environment is
355 initialized from SYMBOL_LIST. */
358 dict_create_hashed (struct obstack *obstack,
359 const struct pending *symbol_list)
361 struct dictionary *retval;
362 int nsyms = 0, nbuckets, i;
363 struct symbol **buckets;
364 const struct pending *list_counter;
366 retval = obstack_alloc (obstack, sizeof (struct dictionary));
367 DICT_VECTOR (retval) = &dict_hashed_vector;
369 /* Calculate the number of symbols, and allocate space for them. */
370 for (list_counter = symbol_list;
371 list_counter != NULL;
372 list_counter = list_counter->next)
374 nsyms += list_counter->nsyms;
376 nbuckets = DICT_HASHTABLE_SIZE (nsyms);
377 DICT_HASHED_NBUCKETS (retval) = nbuckets;
378 buckets = obstack_alloc (obstack, nbuckets * sizeof (struct symbol *));
379 memset (buckets, 0, nbuckets * sizeof (struct symbol *));
380 DICT_HASHED_BUCKETS (retval) = buckets;
382 /* Now fill the buckets. */
383 for (list_counter = symbol_list;
384 list_counter != NULL;
385 list_counter = list_counter->next)
387 for (i = list_counter->nsyms - 1; i >= 0; --i)
389 insert_symbol_hashed (retval, list_counter->symbol[i]);
396 /* Create a dictionary implemented via a hashtable that grows as
397 necessary. The dictionary is initially empty; to add symbols to
398 it, call dict_add_symbol(). Call dict_free() when you're done with
401 extern struct dictionary *
402 dict_create_hashed_expandable (void)
404 struct dictionary *retval;
406 retval = xmalloc (sizeof (struct dictionary));
407 DICT_VECTOR (retval) = &dict_hashed_expandable_vector;
408 DICT_HASHED_NBUCKETS (retval) = DICT_EXPANDABLE_INITIAL_CAPACITY;
409 DICT_HASHED_BUCKETS (retval) = xcalloc (DICT_EXPANDABLE_INITIAL_CAPACITY,
410 sizeof (struct symbol *));
411 DICT_HASHED_EXPANDABLE_NSYMS (retval) = 0;
416 /* Create a dictionary implemented via a fixed-size array. All memory
417 it uses is allocated on OBSTACK; the environment is initialized
418 from the SYMBOL_LIST. The symbols are ordered in the same order
419 that they're found in SYMBOL_LIST. */
422 dict_create_linear (struct obstack *obstack,
423 const struct pending *symbol_list)
425 struct dictionary *retval;
427 struct symbol **syms;
428 const struct pending *list_counter;
430 retval = obstack_alloc (obstack, sizeof (struct dictionary));
431 DICT_VECTOR (retval) = &dict_linear_vector;
433 /* Calculate the number of symbols, and allocate space for them. */
434 for (list_counter = symbol_list;
435 list_counter != NULL;
436 list_counter = list_counter->next)
438 nsyms += list_counter->nsyms;
440 DICT_LINEAR_NSYMS (retval) = nsyms;
441 syms = obstack_alloc (obstack, nsyms * sizeof (struct symbol *));
442 DICT_LINEAR_SYMS (retval) = syms;
444 /* Now fill in the symbols. Start filling in from the back, so as
445 to preserve the original order of the symbols. */
446 for (list_counter = symbol_list, j = nsyms - 1;
447 list_counter != NULL;
448 list_counter = list_counter->next)
450 for (i = list_counter->nsyms - 1;
454 syms[j] = list_counter->symbol[i];
461 /* Create a dictionary implemented via an array that grows as
462 necessary. The dictionary is initially empty; to add symbols to
463 it, call dict_add_symbol(). Call dict_free() when you're done with
467 dict_create_linear_expandable (void)
469 struct dictionary *retval;
471 retval = xmalloc (sizeof (struct dictionary));
472 DICT_VECTOR (retval) = &dict_linear_expandable_vector;
473 DICT_LINEAR_NSYMS (retval) = 0;
474 DICT_LINEAR_EXPANDABLE_CAPACITY (retval)
475 = DICT_EXPANDABLE_INITIAL_CAPACITY;
476 DICT_LINEAR_SYMS (retval)
477 = xmalloc (DICT_LINEAR_EXPANDABLE_CAPACITY (retval)
478 * sizeof (struct symbol *));
483 /* The functions providing the dictionary interface. */
485 /* Free the memory used by a dictionary that's not on an obstack. (If
489 dict_free (struct dictionary *dict)
491 (DICT_VECTOR (dict))->free (dict);
494 /* Add SYM to DICT. DICT had better be expandable. */
497 dict_add_symbol (struct dictionary *dict, struct symbol *sym)
499 (DICT_VECTOR (dict))->add_symbol (dict, sym);
502 /* Initialize ITERATOR to point at the first symbol in DICT, and
503 return that first symbol, or NULL if DICT is empty. */
506 dict_iterator_first (const struct dictionary *dict,
507 struct dict_iterator *iterator)
509 return (DICT_VECTOR (dict))->iterator_first (dict, iterator);
512 /* Advance ITERATOR, and return the next symbol, or NULL if there are
516 dict_iterator_next (struct dict_iterator *iterator)
518 return (DICT_VECTOR (DICT_ITERATOR_DICT (iterator)))
519 ->iterator_next (iterator);
523 dict_iter_name_first (const struct dictionary *dict,
525 struct dict_iterator *iterator)
527 return dict_iter_match_first (dict, name, strcmp_iw, iterator);
531 dict_iter_name_next (const char *name, struct dict_iterator *iterator)
533 return dict_iter_match_next (name, strcmp_iw, iterator);
537 dict_iter_match_first (const struct dictionary *dict,
538 const char *name, symbol_compare_ftype *compare,
539 struct dict_iterator *iterator)
541 return (DICT_VECTOR (dict))->iter_match_first (dict, name,
546 dict_iter_match_next (const char *name, symbol_compare_ftype *compare,
547 struct dict_iterator *iterator)
549 return (DICT_VECTOR (DICT_ITERATOR_DICT (iterator)))
550 ->iter_match_next (name, compare, iterator);
554 dict_size (const struct dictionary *dict)
556 return (DICT_VECTOR (dict))->size (dict);
559 /* Now come functions (well, one function, currently) that are
560 implemented generically by means of the vtable. Typically, they're
563 /* Test to see if DICT is empty. */
566 dict_empty (struct dictionary *dict)
568 struct dict_iterator iter;
570 return (dict_iterator_first (dict, &iter) == NULL);
574 /* The functions implementing the dictionary interface. */
576 /* Generic functions, where appropriate. */
579 free_obstack (struct dictionary *dict)
585 add_symbol_nonexpandable (struct dictionary *dict, struct symbol *sym)
587 internal_error (__FILE__, __LINE__,
588 _("dict_add_symbol: non-expandable dictionary"));
591 /* Functions for DICT_HASHED and DICT_HASHED_EXPANDABLE. */
593 static struct symbol *
594 iterator_first_hashed (const struct dictionary *dict,
595 struct dict_iterator *iterator)
597 DICT_ITERATOR_DICT (iterator) = dict;
598 DICT_ITERATOR_INDEX (iterator) = -1;
599 return iterator_hashed_advance (iterator);
602 static struct symbol *
603 iterator_next_hashed (struct dict_iterator *iterator)
607 next = DICT_ITERATOR_CURRENT (iterator)->hash_next;
610 return iterator_hashed_advance (iterator);
613 DICT_ITERATOR_CURRENT (iterator) = next;
618 static struct symbol *
619 iterator_hashed_advance (struct dict_iterator *iterator)
621 const struct dictionary *dict = DICT_ITERATOR_DICT (iterator);
622 int nbuckets = DICT_HASHED_NBUCKETS (dict);
625 for (i = DICT_ITERATOR_INDEX (iterator) + 1; i < nbuckets; ++i)
627 struct symbol *sym = DICT_HASHED_BUCKET (dict, i);
631 DICT_ITERATOR_INDEX (iterator) = i;
632 DICT_ITERATOR_CURRENT (iterator) = sym;
640 static struct symbol *
641 iter_match_first_hashed (const struct dictionary *dict, const char *name,
642 symbol_compare_ftype *compare,
643 struct dict_iterator *iterator)
645 unsigned int hash_index = dict_hash (name) % DICT_HASHED_NBUCKETS (dict);
648 DICT_ITERATOR_DICT (iterator) = dict;
650 /* Loop through the symbols in the given bucket, breaking when SYM
651 first matches. If SYM never matches, it will be set to NULL;
652 either way, we have the right return value. */
654 for (sym = DICT_HASHED_BUCKET (dict, hash_index);
656 sym = sym->hash_next)
658 /* Warning: the order of arguments to compare matters! */
659 if (compare (SYMBOL_SEARCH_NAME (sym), name) == 0)
666 DICT_ITERATOR_CURRENT (iterator) = sym;
670 static struct symbol *
671 iter_match_next_hashed (const char *name, symbol_compare_ftype *compare,
672 struct dict_iterator *iterator)
676 for (next = DICT_ITERATOR_CURRENT (iterator)->hash_next;
678 next = next->hash_next)
680 if (compare (SYMBOL_SEARCH_NAME (next), name) == 0)
684 DICT_ITERATOR_CURRENT (iterator) = next;
689 /* Insert SYM into DICT. */
692 insert_symbol_hashed (struct dictionary *dict,
695 unsigned int hash_index;
696 struct symbol **buckets = DICT_HASHED_BUCKETS (dict);
699 dict_hash (SYMBOL_SEARCH_NAME (sym)) % DICT_HASHED_NBUCKETS (dict);
700 sym->hash_next = buckets[hash_index];
701 buckets[hash_index] = sym;
705 size_hashed (const struct dictionary *dict)
707 return DICT_HASHED_NBUCKETS (dict);
710 /* Functions only for DICT_HASHED_EXPANDABLE. */
713 free_hashed_expandable (struct dictionary *dict)
715 xfree (DICT_HASHED_BUCKETS (dict));
720 add_symbol_hashed_expandable (struct dictionary *dict,
723 int nsyms = ++DICT_HASHED_EXPANDABLE_NSYMS (dict);
725 if (DICT_HASHTABLE_SIZE (nsyms) > DICT_HASHED_NBUCKETS (dict))
726 expand_hashtable (dict);
728 insert_symbol_hashed (dict, sym);
729 DICT_HASHED_EXPANDABLE_NSYMS (dict) = nsyms;
733 size_hashed_expandable (const struct dictionary *dict)
735 return DICT_HASHED_EXPANDABLE_NSYMS (dict);
739 expand_hashtable (struct dictionary *dict)
741 int old_nbuckets = DICT_HASHED_NBUCKETS (dict);
742 struct symbol **old_buckets = DICT_HASHED_BUCKETS (dict);
743 int new_nbuckets = 2*old_nbuckets + 1;
744 struct symbol **new_buckets = xcalloc (new_nbuckets,
745 sizeof (struct symbol *));
748 DICT_HASHED_NBUCKETS (dict) = new_nbuckets;
749 DICT_HASHED_BUCKETS (dict) = new_buckets;
751 for (i = 0; i < old_nbuckets; ++i)
753 struct symbol *sym, *next_sym;
755 sym = old_buckets[i];
758 for (next_sym = sym->hash_next;
760 next_sym = sym->hash_next)
762 insert_symbol_hashed (dict, sym);
766 insert_symbol_hashed (dict, sym);
773 /* Produce an unsigned hash value from STRING0 that is consistent
774 with strcmp_iw, strcmp, and, at least on Ada symbols, wild_match.
775 That is, two identifiers equivalent according to any of those three
776 comparison operators hash to the same value. */
779 dict_hash (const char *string0)
781 /* The Ada-encoded version of a name P1.P2...Pn has either the form
782 P1__P2__...Pn<suffix> or _ada_P1__P2__...Pn<suffix> (where the Pi
783 are lower-cased identifiers). The <suffix> (which can be empty)
784 encodes additional information about the denoted entity. This
785 routine hashes such names to msymbol_hash_iw(Pn). It actually
786 does this for a superset of both valid Pi and of <suffix>, but
787 in other cases it simply returns msymbol_hash_iw(STRING0). */
795 if (strncmp (string, "_ada_", 5) == 0)
798 return msymbol_hash_iw (string0);
809 if (string0 == string)
810 return msymbol_hash_iw (string0);
815 return msymbol_hash_iw (string0);
817 if (string[1] == '_' && string != string0)
821 if ((c < 'a' || c > 'z') && c != 'O')
829 hash = hash * 67 + *string - 113;
837 /* Functions for DICT_LINEAR and DICT_LINEAR_EXPANDABLE. */
839 static struct symbol *
840 iterator_first_linear (const struct dictionary *dict,
841 struct dict_iterator *iterator)
843 DICT_ITERATOR_DICT (iterator) = dict;
844 DICT_ITERATOR_INDEX (iterator) = 0;
845 return DICT_LINEAR_NSYMS (dict) ? DICT_LINEAR_SYM (dict, 0) : NULL;
848 static struct symbol *
849 iterator_next_linear (struct dict_iterator *iterator)
851 const struct dictionary *dict = DICT_ITERATOR_DICT (iterator);
853 if (++DICT_ITERATOR_INDEX (iterator) >= DICT_LINEAR_NSYMS (dict))
856 return DICT_LINEAR_SYM (dict, DICT_ITERATOR_INDEX (iterator));
859 static struct symbol *
860 iter_match_first_linear (const struct dictionary *dict,
861 const char *name, symbol_compare_ftype *compare,
862 struct dict_iterator *iterator)
864 DICT_ITERATOR_DICT (iterator) = dict;
865 DICT_ITERATOR_INDEX (iterator) = -1;
867 return iter_match_next_linear (name, compare, iterator);
870 static struct symbol *
871 iter_match_next_linear (const char *name, symbol_compare_ftype *compare,
872 struct dict_iterator *iterator)
874 const struct dictionary *dict = DICT_ITERATOR_DICT (iterator);
875 int i, nsyms = DICT_LINEAR_NSYMS (dict);
876 struct symbol *sym, *retval = NULL;
878 for (i = DICT_ITERATOR_INDEX (iterator) + 1; i < nsyms; ++i)
880 sym = DICT_LINEAR_SYM (dict, i);
881 if (compare (SYMBOL_SEARCH_NAME (sym), name) == 0)
888 DICT_ITERATOR_INDEX (iterator) = i;
894 size_linear (const struct dictionary *dict)
896 return DICT_LINEAR_NSYMS (dict);
899 /* Functions only for DICT_LINEAR_EXPANDABLE. */
902 free_linear_expandable (struct dictionary *dict)
904 xfree (DICT_LINEAR_SYMS (dict));
910 add_symbol_linear_expandable (struct dictionary *dict,
913 int nsyms = ++DICT_LINEAR_NSYMS (dict);
915 /* Do we have enough room? If not, grow it. */
916 if (nsyms > DICT_LINEAR_EXPANDABLE_CAPACITY (dict))
918 DICT_LINEAR_EXPANDABLE_CAPACITY (dict) *= 2;
919 DICT_LINEAR_SYMS (dict)
920 = xrealloc (DICT_LINEAR_SYMS (dict),
921 DICT_LINEAR_EXPANDABLE_CAPACITY (dict)
922 * sizeof (struct symbol *));
925 DICT_LINEAR_SYM (dict, nsyms - 1) = sym;