1 /* hash.c -- hash table routines for BFD
2 Copyright 1993, 1994, 1995, 1997, 1999, 2001, 2002, 2003, 2004, 2005,
3 2006, 2007 Free Software Foundation, Inc.
4 Written by Steve Chamberlain <sac@cygnus.com>
6 This file is part of BFD, the Binary File Descriptor library.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 MA 02110-1301, USA. */
27 #include "libiberty.h"
34 BFD provides a simple set of hash table functions. Routines
35 are provided to initialize a hash table, to free a hash table,
36 to look up a string in a hash table and optionally create an
37 entry for it, and to traverse a hash table. There is
38 currently no routine to delete an string from a hash table.
40 The basic hash table does not permit any data to be stored
41 with a string. However, a hash table is designed to present a
42 base class from which other types of hash tables may be
43 derived. These derived types may store additional information
44 with the string. Hash tables were implemented in this way,
45 rather than simply providing a data pointer in a hash table
46 entry, because they were designed for use by the linker back
47 ends. The linker may create thousands of hash table entries,
48 and the overhead of allocating private data and storing and
49 following pointers becomes noticeable.
51 The basic hash table code is in <<hash.c>>.
54 @* Creating and Freeing a Hash Table::
55 @* Looking Up or Entering a String::
56 @* Traversing a Hash Table::
57 @* Deriving a New Hash Table Type::
61 Creating and Freeing a Hash Table, Looking Up or Entering a String, Hash Tables, Hash Tables
63 Creating and freeing a hash table
65 @findex bfd_hash_table_init
66 @findex bfd_hash_table_init_n
67 To create a hash table, create an instance of a <<struct
68 bfd_hash_table>> (defined in <<bfd.h>>) and call
69 <<bfd_hash_table_init>> (if you know approximately how many
70 entries you will need, the function <<bfd_hash_table_init_n>>,
71 which takes a @var{size} argument, may be used).
72 <<bfd_hash_table_init>> returns <<FALSE>> if some sort of
75 @findex bfd_hash_newfunc
76 The function <<bfd_hash_table_init>> take as an argument a
77 function to use to create new entries. For a basic hash
78 table, use the function <<bfd_hash_newfunc>>. @xref{Deriving
79 a New Hash Table Type}, for why you would want to use a
80 different value for this argument.
82 @findex bfd_hash_allocate
83 <<bfd_hash_table_init>> will create an objalloc which will be
84 used to allocate new entries. You may allocate memory on this
85 objalloc using <<bfd_hash_allocate>>.
87 @findex bfd_hash_table_free
88 Use <<bfd_hash_table_free>> to free up all the memory that has
89 been allocated for a hash table. This will not free up the
90 <<struct bfd_hash_table>> itself, which you must provide.
92 @findex bfd_hash_set_default_size
93 Use <<bfd_hash_set_default_size>> to set the default size of
97 Looking Up or Entering a String, Traversing a Hash Table, Creating and Freeing a Hash Table, Hash Tables
99 Looking up or entering a string
101 @findex bfd_hash_lookup
102 The function <<bfd_hash_lookup>> is used both to look up a
103 string in the hash table and to create a new entry.
105 If the @var{create} argument is <<FALSE>>, <<bfd_hash_lookup>>
106 will look up a string. If the string is found, it will
107 returns a pointer to a <<struct bfd_hash_entry>>. If the
108 string is not found in the table <<bfd_hash_lookup>> will
109 return <<NULL>>. You should not modify any of the fields in
110 the returns <<struct bfd_hash_entry>>.
112 If the @var{create} argument is <<TRUE>>, the string will be
113 entered into the hash table if it is not already there.
114 Either way a pointer to a <<struct bfd_hash_entry>> will be
115 returned, either to the existing structure or to a newly
116 created one. In this case, a <<NULL>> return means that an
119 If the @var{create} argument is <<TRUE>>, and a new entry is
120 created, the @var{copy} argument is used to decide whether to
121 copy the string onto the hash table objalloc or not. If
122 @var{copy} is passed as <<FALSE>>, you must be careful not to
123 deallocate or modify the string as long as the hash table
127 Traversing a Hash Table, Deriving a New Hash Table Type, Looking Up or Entering a String, Hash Tables
129 Traversing a hash table
131 @findex bfd_hash_traverse
132 The function <<bfd_hash_traverse>> may be used to traverse a
133 hash table, calling a function on each element. The traversal
134 is done in a random order.
136 <<bfd_hash_traverse>> takes as arguments a function and a
137 generic <<void *>> pointer. The function is called with a
138 hash table entry (a <<struct bfd_hash_entry *>>) and the
139 generic pointer passed to <<bfd_hash_traverse>>. The function
140 must return a <<boolean>> value, which indicates whether to
141 continue traversing the hash table. If the function returns
142 <<FALSE>>, <<bfd_hash_traverse>> will stop the traversal and
146 Deriving a New Hash Table Type, , Traversing a Hash Table, Hash Tables
148 Deriving a new hash table type
150 Many uses of hash tables want to store additional information
151 which each entry in the hash table. Some also find it
152 convenient to store additional information with the hash table
153 itself. This may be done using a derived hash table.
155 Since C is not an object oriented language, creating a derived
156 hash table requires sticking together some boilerplate
157 routines with a few differences specific to the type of hash
158 table you want to create.
160 An example of a derived hash table is the linker hash table.
161 The structures for this are defined in <<bfdlink.h>>. The
162 functions are in <<linker.c>>.
164 You may also derive a hash table from an already derived hash
165 table. For example, the a.out linker backend code uses a hash
166 table derived from the linker hash table.
169 @* Define the Derived Structures::
170 @* Write the Derived Creation Routine::
171 @* Write Other Derived Routines::
175 Define the Derived Structures, Write the Derived Creation Routine, Deriving a New Hash Table Type, Deriving a New Hash Table Type
177 Define the derived structures
179 You must define a structure for an entry in the hash table,
180 and a structure for the hash table itself.
182 The first field in the structure for an entry in the hash
183 table must be of the type used for an entry in the hash table
184 you are deriving from. If you are deriving from a basic hash
185 table this is <<struct bfd_hash_entry>>, which is defined in
186 <<bfd.h>>. The first field in the structure for the hash
187 table itself must be of the type of the hash table you are
188 deriving from itself. If you are deriving from a basic hash
189 table, this is <<struct bfd_hash_table>>.
191 For example, the linker hash table defines <<struct
192 bfd_link_hash_entry>> (in <<bfdlink.h>>). The first field,
193 <<root>>, is of type <<struct bfd_hash_entry>>. Similarly,
194 the first field in <<struct bfd_link_hash_table>>, <<table>>,
195 is of type <<struct bfd_hash_table>>.
198 Write the Derived Creation Routine, Write Other Derived Routines, Define the Derived Structures, Deriving a New Hash Table Type
200 Write the derived creation routine
202 You must write a routine which will create and initialize an
203 entry in the hash table. This routine is passed as the
204 function argument to <<bfd_hash_table_init>>.
206 In order to permit other hash tables to be derived from the
207 hash table you are creating, this routine must be written in a
210 The first argument to the creation routine is a pointer to a
211 hash table entry. This may be <<NULL>>, in which case the
212 routine should allocate the right amount of space. Otherwise
213 the space has already been allocated by a hash table type
214 derived from this one.
216 After allocating space, the creation routine must call the
217 creation routine of the hash table type it is derived from,
218 passing in a pointer to the space it just allocated. This
219 will initialize any fields used by the base hash table.
221 Finally the creation routine must initialize any local fields
222 for the new hash table type.
224 Here is a boilerplate example of a creation routine.
225 @var{function_name} is the name of the routine.
226 @var{entry_type} is the type of an entry in the hash table you
227 are creating. @var{base_newfunc} is the name of the creation
228 routine of the hash table type your hash table is derived
233 .struct bfd_hash_entry *
234 .@var{function_name} (struct bfd_hash_entry *entry,
235 . struct bfd_hash_table *table,
236 . const char *string)
238 . struct @var{entry_type} *ret = (@var{entry_type} *) entry;
240 . {* Allocate the structure if it has not already been allocated by a
244 . ret = bfd_hash_allocate (table, sizeof (* ret));
249 . {* Call the allocation method of the base class. *}
250 . ret = ((@var{entry_type} *)
251 . @var{base_newfunc} ((struct bfd_hash_entry *) ret, table, string));
253 . {* Initialize the local fields here. *}
255 . return (struct bfd_hash_entry *) ret;
259 The creation routine for the linker hash table, which is in
260 <<linker.c>>, looks just like this example.
261 @var{function_name} is <<_bfd_link_hash_newfunc>>.
262 @var{entry_type} is <<struct bfd_link_hash_entry>>.
263 @var{base_newfunc} is <<bfd_hash_newfunc>>, the creation
264 routine for a basic hash table.
266 <<_bfd_link_hash_newfunc>> also initializes the local fields
267 in a linker hash table entry: <<type>>, <<written>> and
271 Write Other Derived Routines, , Write the Derived Creation Routine, Deriving a New Hash Table Type
273 Write other derived routines
275 You will want to write other routines for your new hash table,
278 You will want an initialization routine which calls the
279 initialization routine of the hash table you are deriving from
280 and initializes any other local fields. For the linker hash
281 table, this is <<_bfd_link_hash_table_init>> in <<linker.c>>.
283 You will want a lookup routine which calls the lookup routine
284 of the hash table you are deriving from and casts the result.
285 The linker hash table uses <<bfd_link_hash_lookup>> in
286 <<linker.c>> (this actually takes an additional argument which
287 it uses to decide how to return the looked up value).
289 You may want a traversal routine. This should just call the
290 traversal routine of the hash table you are deriving from with
291 appropriate casts. The linker hash table uses
292 <<bfd_link_hash_traverse>> in <<linker.c>>.
294 These routines may simply be defined as macros. For example,
295 the a.out backend linker hash table, which is derived from the
296 linker hash table, uses macros for the lookup and traversal
297 routines. These are <<aout_link_hash_lookup>> and
298 <<aout_link_hash_traverse>> in aoutx.h.
301 /* The default number of entries to use when creating a hash table. */
302 #define DEFAULT_SIZE 4051
304 /* The following function returns a nearest prime number which is
305 greater than N, and near a power of two. Copied from libiberty.
306 Returns zero for ridiculously large N to signify an error. */
309 higher_prime_number (unsigned long n
)
311 /* These are primes that are near, but slightly smaller than, a
313 static const unsigned long primes
[] = {
315 (unsigned long) 2039,
316 (unsigned long) 32749,
317 (unsigned long) 65521,
318 (unsigned long) 131071,
319 (unsigned long) 262139,
320 (unsigned long) 524287,
321 (unsigned long) 1048573,
322 (unsigned long) 2097143,
323 (unsigned long) 4194301,
324 (unsigned long) 8388593,
325 (unsigned long) 16777213,
326 (unsigned long) 33554393,
327 (unsigned long) 67108859,
328 (unsigned long) 134217689,
329 (unsigned long) 268435399,
330 (unsigned long) 536870909,
331 (unsigned long) 1073741789,
332 (unsigned long) 2147483647,
334 ((unsigned long) 2147483647) + ((unsigned long) 2147483644),
337 const unsigned long *low
= &primes
[0];
338 const unsigned long *high
= &primes
[sizeof (primes
) / sizeof (primes
[0])];
342 const unsigned long *mid
= low
+ (high
- low
) / 2;
355 static size_t bfd_default_hash_table_size
= DEFAULT_SIZE
;
357 /* Create a new hash table, given a number of entries. */
360 bfd_hash_table_init_n (struct bfd_hash_table
*table
,
361 struct bfd_hash_entry
*(*newfunc
) (struct bfd_hash_entry
*,
362 struct bfd_hash_table
*,
364 unsigned int entsize
,
369 alloc
= size
* sizeof (struct bfd_hash_entry
*);
371 table
->memory
= (void *) objalloc_create ();
372 if (table
->memory
== NULL
)
374 bfd_set_error (bfd_error_no_memory
);
377 table
->table
= objalloc_alloc ((struct objalloc
*) table
->memory
, alloc
);
378 if (table
->table
== NULL
)
380 bfd_set_error (bfd_error_no_memory
);
383 memset ((void *) table
->table
, 0, alloc
);
385 table
->entsize
= entsize
;
388 table
->newfunc
= newfunc
;
392 /* Create a new hash table with the default number of entries. */
395 bfd_hash_table_init (struct bfd_hash_table
*table
,
396 struct bfd_hash_entry
*(*newfunc
) (struct bfd_hash_entry
*,
397 struct bfd_hash_table
*,
399 unsigned int entsize
)
401 return bfd_hash_table_init_n (table
, newfunc
, entsize
,
402 bfd_default_hash_table_size
);
405 /* Free a hash table. */
408 bfd_hash_table_free (struct bfd_hash_table
*table
)
410 objalloc_free (table
->memory
);
411 table
->memory
= NULL
;
414 /* Look up a string in a hash table. */
416 struct bfd_hash_entry
*
417 bfd_hash_lookup (struct bfd_hash_table
*table
,
422 const unsigned char *s
;
425 struct bfd_hash_entry
*hashp
;
431 s
= (const unsigned char *) string
;
432 while ((c
= *s
++) != '\0')
434 hash
+= c
+ (c
<< 17);
437 len
= (s
- (const unsigned char *) string
) - 1;
438 hash
+= len
+ (len
<< 17);
441 index
= hash
% table
->size
;
442 for (hashp
= table
->table
[index
];
446 if (hashp
->hash
== hash
447 && strcmp (hashp
->string
, string
) == 0)
454 hashp
= (*table
->newfunc
) (NULL
, table
, string
);
461 new = objalloc_alloc ((struct objalloc
*) table
->memory
, len
+ 1);
464 bfd_set_error (bfd_error_no_memory
);
467 memcpy (new, string
, len
+ 1);
470 hashp
->string
= string
;
472 hashp
->next
= table
->table
[index
];
473 table
->table
[index
] = hashp
;
476 if (!table
->frozen
&& table
->count
> table
->size
* 3 / 4)
478 unsigned long newsize
= higher_prime_number (table
->size
);
479 struct bfd_hash_entry
**newtable
;
481 unsigned long alloc
= newsize
* sizeof (struct bfd_hash_entry
*);
483 /* If we can't find a higher prime, or we can't possibly alloc
484 that much memory, don't try to grow the table. */
485 if (newsize
== 0 || alloc
/ sizeof (struct bfd_hash_entry
*) != newsize
)
491 newtable
= ((struct bfd_hash_entry
**)
492 objalloc_alloc ((struct objalloc
*) table
->memory
, alloc
));
493 memset ((PTR
) newtable
, 0, alloc
);
495 for (hi
= 0; hi
< table
->size
; hi
++)
496 while (table
->table
[hi
])
498 struct bfd_hash_entry
*chain
= table
->table
[hi
];
499 struct bfd_hash_entry
*chain_end
= chain
;
502 while (chain_end
->next
&& chain_end
->next
->hash
== chain
->hash
)
503 chain_end
= chain_end
->next
;
505 table
->table
[hi
] = chain_end
->next
;
506 index
= chain
->hash
% newsize
;
507 chain_end
->next
= newtable
[index
];
508 newtable
[index
] = chain
;
510 table
->table
= newtable
;
511 table
->size
= newsize
;
517 /* Replace an entry in a hash table. */
520 bfd_hash_replace (struct bfd_hash_table
*table
,
521 struct bfd_hash_entry
*old
,
522 struct bfd_hash_entry
*nw
)
525 struct bfd_hash_entry
**pph
;
527 index
= old
->hash
% table
->size
;
528 for (pph
= &table
->table
[index
];
542 /* Allocate space in a hash table. */
545 bfd_hash_allocate (struct bfd_hash_table
*table
,
550 ret
= objalloc_alloc ((struct objalloc
*) table
->memory
, size
);
551 if (ret
== NULL
&& size
!= 0)
552 bfd_set_error (bfd_error_no_memory
);
556 /* Base method for creating a new hash table entry. */
558 struct bfd_hash_entry
*
559 bfd_hash_newfunc (struct bfd_hash_entry
*entry
,
560 struct bfd_hash_table
*table
,
561 const char *string ATTRIBUTE_UNUSED
)
564 entry
= bfd_hash_allocate (table
, sizeof (* entry
));
568 /* Traverse a hash table. */
571 bfd_hash_traverse (struct bfd_hash_table
*table
,
572 bfd_boolean (*func
) (struct bfd_hash_entry
*, void *),
578 for (i
= 0; i
< table
->size
; i
++)
580 struct bfd_hash_entry
*p
;
582 for (p
= table
->table
[i
]; p
!= NULL
; p
= p
->next
)
583 if (! (*func
) (p
, info
))
591 bfd_hash_set_default_size (bfd_size_type hash_size
)
593 /* Extend this prime list if you want more granularity of hash table size. */
594 static const bfd_size_type hash_size_primes
[] =
596 251, 509, 1021, 2039, 4051, 8599, 16699, 32749
600 /* Work out best prime number near the hash_size. */
601 for (index
= 0; index
< ARRAY_SIZE (hash_size_primes
) - 1; ++index
)
602 if (hash_size
<= hash_size_primes
[index
])
605 bfd_default_hash_table_size
= hash_size_primes
[index
];
608 /* A few different object file formats (a.out, COFF, ELF) use a string
609 table. These functions support adding strings to a string table,
610 returning the byte offset, and writing out the table.
612 Possible improvements:
613 + look for strings matching trailing substrings of other strings
614 + better data structures? balanced trees?
615 + look at reducing memory use elsewhere -- maybe if we didn't have
616 to construct the entire symbol table at once, we could get by
617 with smaller amounts of VM? (What effect does that have on the
618 string table reductions?) */
620 /* An entry in the strtab hash table. */
622 struct strtab_hash_entry
624 struct bfd_hash_entry root
;
625 /* Index in string table. */
627 /* Next string in strtab. */
628 struct strtab_hash_entry
*next
;
631 /* The strtab hash table. */
633 struct bfd_strtab_hash
635 struct bfd_hash_table table
;
636 /* Size of strtab--also next available index. */
638 /* First string in strtab. */
639 struct strtab_hash_entry
*first
;
640 /* Last string in strtab. */
641 struct strtab_hash_entry
*last
;
642 /* Whether to precede strings with a two byte length, as in the
643 XCOFF .debug section. */
647 /* Routine to create an entry in a strtab. */
649 static struct bfd_hash_entry
*
650 strtab_hash_newfunc (struct bfd_hash_entry
*entry
,
651 struct bfd_hash_table
*table
,
654 struct strtab_hash_entry
*ret
= (struct strtab_hash_entry
*) entry
;
656 /* Allocate the structure if it has not already been allocated by a
659 ret
= bfd_hash_allocate (table
, sizeof (* ret
));
663 /* Call the allocation method of the superclass. */
664 ret
= (struct strtab_hash_entry
*)
665 bfd_hash_newfunc ((struct bfd_hash_entry
*) ret
, table
, string
);
669 /* Initialize the local fields. */
670 ret
->index
= (bfd_size_type
) -1;
674 return (struct bfd_hash_entry
*) ret
;
677 /* Look up an entry in an strtab. */
679 #define strtab_hash_lookup(t, string, create, copy) \
680 ((struct strtab_hash_entry *) \
681 bfd_hash_lookup (&(t)->table, (string), (create), (copy)))
683 /* Create a new strtab. */
685 struct bfd_strtab_hash
*
686 _bfd_stringtab_init (void)
688 struct bfd_strtab_hash
*table
;
689 bfd_size_type amt
= sizeof (* table
);
691 table
= bfd_malloc (amt
);
695 if (!bfd_hash_table_init (&table
->table
, strtab_hash_newfunc
,
696 sizeof (struct strtab_hash_entry
)))
705 table
->xcoff
= FALSE
;
710 /* Create a new strtab in which the strings are output in the format
711 used in the XCOFF .debug section: a two byte length precedes each
714 struct bfd_strtab_hash
*
715 _bfd_xcoff_stringtab_init (void)
717 struct bfd_strtab_hash
*ret
;
719 ret
= _bfd_stringtab_init ();
728 _bfd_stringtab_free (struct bfd_strtab_hash
*table
)
730 bfd_hash_table_free (&table
->table
);
734 /* Get the index of a string in a strtab, adding it if it is not
735 already present. If HASH is FALSE, we don't really use the hash
736 table, and we don't eliminate duplicate strings. */
739 _bfd_stringtab_add (struct bfd_strtab_hash
*tab
,
744 struct strtab_hash_entry
*entry
;
748 entry
= strtab_hash_lookup (tab
, str
, TRUE
, copy
);
750 return (bfd_size_type
) -1;
754 entry
= bfd_hash_allocate (&tab
->table
, sizeof (* entry
));
756 return (bfd_size_type
) -1;
758 entry
->root
.string
= str
;
763 n
= bfd_hash_allocate (&tab
->table
, strlen (str
) + 1);
765 return (bfd_size_type
) -1;
766 entry
->root
.string
= n
;
768 entry
->index
= (bfd_size_type
) -1;
772 if (entry
->index
== (bfd_size_type
) -1)
774 entry
->index
= tab
->size
;
775 tab
->size
+= strlen (str
) + 1;
781 if (tab
->first
== NULL
)
784 tab
->last
->next
= entry
;
791 /* Get the number of bytes in a strtab. */
794 _bfd_stringtab_size (struct bfd_strtab_hash
*tab
)
799 /* Write out a strtab. ABFD must already be at the right location in
803 _bfd_stringtab_emit (bfd
*abfd
, struct bfd_strtab_hash
*tab
)
806 struct strtab_hash_entry
*entry
;
810 for (entry
= tab
->first
; entry
!= NULL
; entry
= entry
->next
)
815 str
= entry
->root
.string
;
816 len
= strlen (str
) + 1;
822 /* The output length includes the null byte. */
823 bfd_put_16 (abfd
, (bfd_vma
) len
, buf
);
824 if (bfd_bwrite ((void *) buf
, (bfd_size_type
) 2, abfd
) != 2)
828 if (bfd_bwrite ((void *) str
, (bfd_size_type
) len
, abfd
) != len
)