2 Copyright 2001, 2002 Free Software Foundation, Inc.
3 Written by Jakub Jelinek <jakub@redhat.com>.
5 This file is part of BFD, the Binary File Descriptor library.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21 /* This file contains support for merging duplicate entities within sections,
22 as used in ELF SHF_MERGE. */
28 #include "libiberty.h"
30 struct sec_merge_sec_info
;
32 /* An entry in the section merge hash table. */
34 struct sec_merge_hash_entry
36 struct bfd_hash_entry root
;
37 /* Length of this entry. */
39 /* Start of this string needs to be aligned to
40 alignment octets (not 1 << align). */
41 unsigned int alignment
;
44 /* Index within the merged section. */
46 /* Entity size (if present in suffix hash tables). */
48 /* Entry this is a suffix of (if alignment is 0). */
49 struct sec_merge_hash_entry
*suffix
;
51 /* Which section is it in. */
52 struct sec_merge_sec_info
*secinfo
;
53 /* Next entity in the hash table. */
54 struct sec_merge_hash_entry
*next
;
57 /* The section merge hash table. */
61 struct bfd_hash_table table
;
62 /* Next available index. */
64 /* First entity in the SEC_MERGE sections of this type. */
65 struct sec_merge_hash_entry
*first
;
66 /* Last entity in the SEC_MERGE sections of this type. */
67 struct sec_merge_hash_entry
*last
;
70 /* Are entries fixed size or zero terminated strings? */
76 /* Chain of sec_merge_infos. */
77 struct sec_merge_info
*next
;
78 /* Chain of sec_merge_sec_infos. */
79 struct sec_merge_sec_info
*chain
;
80 /* A hash table used to hold section content. */
81 struct sec_merge_hash
*htab
;
84 struct sec_merge_sec_info
86 /* Chain of sec_merge_sec_infos. */
87 struct sec_merge_sec_info
*next
;
88 /* The corresponding section. */
90 /* Pointer to merge_info pointing to us. */
92 /* A hash table used to hold section content. */
93 struct sec_merge_hash
*htab
;
94 /* First string in this section. */
95 struct sec_merge_hash_entry
*first
;
96 /* Original section content. */
97 unsigned char contents
[1];
100 static struct bfd_hash_entry
*sec_merge_hash_newfunc
101 PARAMS ((struct bfd_hash_entry
*, struct bfd_hash_table
*, const char *));
102 static struct sec_merge_hash_entry
*sec_merge_hash_lookup
103 PARAMS ((struct sec_merge_hash
*, const char *, unsigned int, boolean
));
104 static struct sec_merge_hash
*sec_merge_init
105 PARAMS ((unsigned int, boolean
));
106 static struct sec_merge_hash_entry
*sec_merge_add
107 PARAMS ((struct sec_merge_hash
*, const char *, unsigned int,
108 struct sec_merge_sec_info
*));
109 static boolean sec_merge_emit
110 PARAMS ((bfd
*, struct sec_merge_hash_entry
*));
111 static int cmplengthentry
PARAMS ((const PTR
, const PTR
));
112 static int last4_eq
PARAMS ((const PTR
, const PTR
));
113 static int last_eq
PARAMS ((const PTR
, const PTR
));
114 static boolean record_section
115 PARAMS ((struct sec_merge_info
*, struct sec_merge_sec_info
*));
116 static void merge_strings
PARAMS ((struct sec_merge_info
*));
118 /* Routine to create an entry in a section merge hashtab. */
120 static struct bfd_hash_entry
*
121 sec_merge_hash_newfunc (entry
, table
, string
)
122 struct bfd_hash_entry
*entry
;
123 struct bfd_hash_table
*table
;
126 struct sec_merge_hash_entry
*ret
= (struct sec_merge_hash_entry
*) entry
;
128 /* Allocate the structure if it has not already been allocated by a
130 if (ret
== (struct sec_merge_hash_entry
*) NULL
)
131 ret
= ((struct sec_merge_hash_entry
*)
132 bfd_hash_allocate (table
, sizeof (struct sec_merge_hash_entry
)));
133 if (ret
== (struct sec_merge_hash_entry
*) NULL
)
136 /* Call the allocation method of the superclass. */
137 ret
= ((struct sec_merge_hash_entry
*)
138 bfd_hash_newfunc ((struct bfd_hash_entry
*) ret
, table
, string
));
142 /* Initialize the local fields. */
143 ret
->u
.suffix
= NULL
;
149 return (struct bfd_hash_entry
*) ret
;
152 /* Look up an entry in a section merge hash table. */
154 static struct sec_merge_hash_entry
*
155 sec_merge_hash_lookup (table
, string
, alignment
, create
)
156 struct sec_merge_hash
*table
;
158 unsigned int alignment
;
161 register const unsigned char *s
;
162 register unsigned long hash
;
163 register unsigned int c
;
164 struct sec_merge_hash_entry
*hashp
;
170 s
= (const unsigned char *) string
;
173 if (table
->entsize
== 1)
175 while ((c
= *s
++) != '\0')
177 hash
+= c
+ (c
<< 17);
181 hash
+= len
+ (len
<< 17);
187 for (i
= 0; i
< table
->entsize
; ++i
)
190 if (i
== table
->entsize
)
192 for (i
= 0; i
< table
->entsize
; ++i
)
195 hash
+= c
+ (c
<< 17);
200 hash
+= len
+ (len
<< 17);
201 len
*= table
->entsize
;
204 len
+= table
->entsize
;
208 for (i
= 0; i
< table
->entsize
; ++i
)
211 hash
+= c
+ (c
<< 17);
214 len
= table
->entsize
;
217 index
= hash
% table
->table
.size
;
218 for (hashp
= (struct sec_merge_hash_entry
*) table
->table
.table
[index
];
219 hashp
!= (struct sec_merge_hash_entry
*) NULL
;
220 hashp
= (struct sec_merge_hash_entry
*) hashp
->root
.next
)
222 if (hashp
->root
.hash
== hash
224 && memcmp (hashp
->root
.string
, string
, len
) == 0)
226 /* If the string we found does not have at least the required
227 alignment, we need to insert another copy. */
228 if (hashp
->alignment
< alignment
)
230 /* Mark the less aligned copy as deleted. */
232 hashp
->alignment
= 0;
240 return (struct sec_merge_hash_entry
*) NULL
;
242 hashp
= (struct sec_merge_hash_entry
*)
243 sec_merge_hash_newfunc ((struct bfd_hash_entry
*) NULL
,
244 (struct bfd_hash_table
*) table
, string
);
245 if (hashp
== (struct sec_merge_hash_entry
*) NULL
)
246 return (struct sec_merge_hash_entry
*) NULL
;
247 hashp
->root
.string
= string
;
248 hashp
->root
.hash
= hash
;
250 hashp
->alignment
= alignment
;
251 hashp
->root
.next
= table
->table
.table
[index
];
252 table
->table
.table
[index
] = (struct bfd_hash_entry
*) hashp
;
257 /* Create a new hash table. */
259 static struct sec_merge_hash
*
260 sec_merge_init (entsize
, strings
)
261 unsigned int entsize
;
264 struct sec_merge_hash
*table
;
265 bfd_size_type amt
= sizeof (struct sec_merge_hash
);
267 table
= (struct sec_merge_hash
*) bfd_malloc (amt
);
271 if (! bfd_hash_table_init (&table
->table
, sec_merge_hash_newfunc
))
280 table
->entsize
= entsize
;
281 table
->strings
= strings
;
286 /* Get the index of an entity in a hash table, adding it if it is not
289 static struct sec_merge_hash_entry
*
290 sec_merge_add (tab
, str
, alignment
, secinfo
)
291 struct sec_merge_hash
*tab
;
293 unsigned int alignment
;
294 struct sec_merge_sec_info
*secinfo
;
296 register struct sec_merge_hash_entry
*entry
;
298 entry
= sec_merge_hash_lookup (tab
, str
, alignment
, true);
302 if (entry
->secinfo
== NULL
)
305 entry
->secinfo
= secinfo
;
306 if (tab
->first
== NULL
)
309 tab
->last
->next
= entry
;
317 sec_merge_emit (abfd
, entry
)
319 struct sec_merge_hash_entry
*entry
;
321 struct sec_merge_sec_info
*secinfo
= entry
->secinfo
;
322 asection
*sec
= secinfo
->sec
;
324 bfd_size_type off
= 0;
325 int alignment_power
= bfd_get_section_alignment (abfd
, sec
->output_section
);
328 pad
= bfd_zmalloc ((bfd_size_type
) 1 << alignment_power
);
330 for (; entry
!= NULL
&& entry
->secinfo
== secinfo
; entry
= entry
->next
)
332 register const char *str
;
335 len
= off
& (entry
->alignment
- 1);
338 len
= entry
->alignment
- len
;
339 if (bfd_bwrite ((PTR
) pad
, (bfd_size_type
) len
, abfd
) != len
)
344 str
= entry
->root
.string
;
347 if (bfd_bwrite ((PTR
) str
, (bfd_size_type
) len
, abfd
) != len
)
356 return (boolean
) (entry
== NULL
|| entry
->secinfo
!= secinfo
);
359 /* This function is called for each input file from the add_symbols
360 pass of the linker. */
363 _bfd_merge_section (abfd
, psinfo
, sec
, psecinfo
)
369 struct sec_merge_info
*sinfo
;
370 struct sec_merge_sec_info
*secinfo
;
374 if (sec
->_raw_size
== 0
375 || (sec
->flags
& SEC_EXCLUDE
)
376 || (sec
->flags
& SEC_MERGE
) == 0
377 || sec
->entsize
== 0)
380 if ((sec
->flags
& SEC_RELOC
) != 0)
382 /* We aren't prepared to handle relocations in merged sections. */
386 align
= bfd_get_section_alignment (sec
->owner
, sec
);
387 if ((sec
->entsize
< (unsigned int)(1 << align
)
388 && ((sec
->entsize
& (sec
->entsize
- 1))
389 || !(sec
->flags
& SEC_STRINGS
)))
390 || (sec
->entsize
> (unsigned int)(1 << align
)
391 && (sec
->entsize
& ((1 << align
) - 1))))
393 /* Sanity check. If string character size is smaller than
394 alignment, then we require character size to be a power
395 of 2, otherwise character size must be integer multiple
396 of alignment. For non-string constants, alignment must
397 be smaller than or equal to entity size and entity size
398 must be integer multiple of alignment. */
402 for (sinfo
= (struct sec_merge_info
*) *psinfo
; sinfo
; sinfo
= sinfo
->next
)
403 if ((secinfo
= sinfo
->chain
)
404 && ! ((secinfo
->sec
->flags
^ sec
->flags
) & (SEC_MERGE
| SEC_STRINGS
))
405 && secinfo
->sec
->entsize
== sec
->entsize
406 && ! strcmp (secinfo
->sec
->name
, sec
->name
))
411 /* Initialize the information we need to keep track of. */
412 amt
= sizeof (struct sec_merge_info
);
413 sinfo
= (struct sec_merge_info
*) bfd_alloc (abfd
, amt
);
416 sinfo
->next
= (struct sec_merge_info
*) *psinfo
;
418 *psinfo
= (PTR
) sinfo
;
419 sinfo
->htab
= sec_merge_init (sec
->entsize
, (sec
->flags
& SEC_STRINGS
));
420 if (sinfo
->htab
== NULL
)
424 /* Read the section from abfd. */
426 amt
= sizeof (struct sec_merge_sec_info
) + sec
->_raw_size
- 1;
427 *psecinfo
= bfd_alloc (abfd
, amt
);
428 if (*psecinfo
== NULL
)
431 secinfo
= (struct sec_merge_sec_info
*)*psecinfo
;
434 secinfo
->next
= sinfo
->chain
->next
;
435 sinfo
->chain
->next
= secinfo
;
438 secinfo
->next
= secinfo
;
439 sinfo
->chain
= secinfo
;
441 secinfo
->psecinfo
= psecinfo
;
442 secinfo
->htab
= sinfo
->htab
;
443 secinfo
->first
= NULL
;
445 if (! bfd_get_section_contents (sec
->owner
, sec
, secinfo
->contents
,
446 (bfd_vma
) 0, sec
->_raw_size
))
456 /* Compare two sec_merge_hash_entry structures. This is called via qsort. */
459 cmplengthentry (a
, b
)
463 struct sec_merge_hash_entry
* A
= *(struct sec_merge_hash_entry
**) a
;
464 struct sec_merge_hash_entry
* B
= *(struct sec_merge_hash_entry
**) b
;
468 else if (A
->len
> B
->len
)
471 return memcmp (A
->root
.string
, B
->root
.string
, A
->len
);
479 struct sec_merge_hash_entry
* A
= (struct sec_merge_hash_entry
*) a
;
480 struct sec_merge_hash_entry
* B
= (struct sec_merge_hash_entry
*) b
;
482 if (memcmp (A
->root
.string
+ A
->len
- 5 * A
->u
.entsize
,
483 B
->root
.string
+ B
->len
- 5 * A
->u
.entsize
,
484 4 * A
->u
.entsize
) != 0)
485 /* This was a hashtable collision. */
488 if (A
->len
<= B
->len
)
489 /* B cannot be a suffix of A unless A is equal to B, which is guaranteed
490 not to be equal by the hash table. */
493 if (A
->alignment
< B
->alignment
494 || ((A
->len
- B
->len
) & (B
->alignment
- 1)))
495 /* The suffix is not sufficiently aligned. */
498 return memcmp (A
->root
.string
+ (A
->len
- B
->len
),
499 B
->root
.string
, B
->len
- 5 * A
->u
.entsize
) == 0;
507 struct sec_merge_hash_entry
* A
= (struct sec_merge_hash_entry
*) a
;
508 struct sec_merge_hash_entry
* B
= (struct sec_merge_hash_entry
*) b
;
510 if (B
->len
>= 5 * A
->u
.entsize
)
511 /* Longer strings are just pushed into the hash table,
512 they'll be used when looking up for very short strings. */
515 if (memcmp (A
->root
.string
+ A
->len
- 2 * A
->u
.entsize
,
516 B
->root
.string
+ B
->len
- 2 * A
->u
.entsize
,
518 /* This was a hashtable collision. */
521 if (A
->len
<= B
->len
)
522 /* B cannot be a suffix of A unless A is equal to B, which is guaranteed
523 not to be equal by the hash table. */
526 if (A
->alignment
< B
->alignment
527 || ((A
->len
- B
->len
) & (B
->alignment
- 1)))
528 /* The suffix is not sufficiently aligned. */
531 return memcmp (A
->root
.string
+ (A
->len
- B
->len
),
532 B
->root
.string
, B
->len
- 2 * A
->u
.entsize
) == 0;
535 /* Record one section into the hash table. */
537 record_section (sinfo
, secinfo
)
538 struct sec_merge_info
*sinfo
;
539 struct sec_merge_sec_info
*secinfo
;
541 asection
*sec
= secinfo
->sec
;
542 struct sec_merge_hash_entry
*entry
;
544 unsigned char *p
, *end
;
545 bfd_vma mask
, eltalign
;
546 unsigned int align
, i
;
548 align
= bfd_get_section_alignment (sec
->owner
, sec
);
549 end
= secinfo
->contents
+ sec
->_raw_size
;
551 mask
= ((bfd_vma
) 1 << align
) - 1;
552 if (sec
->flags
& SEC_STRINGS
)
554 for (p
= secinfo
->contents
; p
< end
; )
556 eltalign
= p
- secinfo
->contents
;
557 eltalign
= ((eltalign
^ (eltalign
- 1)) + 1) >> 1;
558 if (!eltalign
|| eltalign
> mask
)
560 entry
= sec_merge_add (sinfo
->htab
, p
, (unsigned) eltalign
, secinfo
);
564 if (sec
->entsize
== 1)
566 while (p
< end
&& *p
== 0)
568 if (!nul
&& !((p
- secinfo
->contents
) & mask
))
571 entry
= sec_merge_add (sinfo
->htab
, "",
572 (unsigned) mask
+ 1, secinfo
);
583 for (i
= 0; i
< sec
->entsize
; i
++)
586 if (i
!= sec
->entsize
)
588 if (!nul
&& !((p
- secinfo
->contents
) & mask
))
591 entry
= sec_merge_add (sinfo
->htab
, p
,
592 (unsigned) mask
+ 1, secinfo
);
603 for (p
= secinfo
->contents
; p
< end
; p
+= sec
->entsize
)
605 entry
= sec_merge_add (sinfo
->htab
, p
, 1, secinfo
);
614 for (secinfo
= sinfo
->chain
; secinfo
; secinfo
= secinfo
->next
)
615 *secinfo
->psecinfo
= NULL
;
619 /* This is a helper function for _bfd_merge_sections. It attempts to
620 merge strings matching suffixes of longer strings. */
622 merge_strings (sinfo
)
623 struct sec_merge_info
*sinfo
;
625 struct sec_merge_hash_entry
**array
, **a
, **end
, *e
;
626 struct sec_merge_sec_info
*secinfo
;
627 htab_t lasttab
= NULL
, last4tab
= NULL
;
628 bfd_size_type size
, amt
;
630 /* Now sort the strings by length, longest first. */
632 amt
= sinfo
->htab
->size
* sizeof (struct sec_merge_hash_entry
*);
633 array
= (struct sec_merge_hash_entry
**) bfd_malloc (amt
);
637 for (e
= sinfo
->htab
->first
, a
= array
; e
; e
= e
->next
)
641 sinfo
->htab
->size
= a
- array
;
643 qsort (array
, (size_t) sinfo
->htab
->size
,
644 sizeof (struct sec_merge_hash_entry
*), cmplengthentry
);
646 last4tab
= htab_create_alloc ((size_t) sinfo
->htab
->size
* 4,
647 NULL
, last4_eq
, NULL
, calloc
, free
);
648 lasttab
= htab_create_alloc ((size_t) sinfo
->htab
->size
* 4,
649 NULL
, last_eq
, NULL
, calloc
, free
);
650 if (lasttab
== NULL
|| last4tab
== NULL
)
653 /* Now insert the strings into hash tables (strings with last 4 characters
654 and strings with last character equal), look for longer strings which
656 for (a
= array
, end
= array
+ sinfo
->htab
->size
; a
< end
; a
++)
658 register hashval_t hash
;
661 const unsigned char *s
;
665 e
->u
.entsize
= sinfo
->htab
->entsize
;
666 if (e
->len
<= e
->u
.entsize
)
668 if (e
->len
> 4 * e
->u
.entsize
)
670 s
= (const unsigned char *) (e
->root
.string
+ e
->len
- e
->u
.entsize
);
672 for (i
= 0; i
< 4 * e
->u
.entsize
; i
++)
675 hash
+= c
+ (c
<< 17);
678 p
= htab_find_slot_with_hash (last4tab
, e
, hash
, INSERT
);
683 struct sec_merge_hash_entry
*ent
;
685 ent
= (struct sec_merge_hash_entry
*) *p
;
693 s
= (const unsigned char *) (e
->root
.string
+ e
->len
- e
->u
.entsize
);
695 for (i
= 0; i
< e
->u
.entsize
; i
++)
698 hash
+= c
+ (c
<< 17);
701 p
= htab_find_slot_with_hash (lasttab
, e
, hash
, INSERT
);
706 struct sec_merge_hash_entry
*ent
;
708 ent
= (struct sec_merge_hash_entry
*) *p
;
720 htab_delete (lasttab
);
722 htab_delete (last4tab
);
724 /* Now assign positions to the strings we want to keep. */
726 secinfo
= sinfo
->htab
->first
->secinfo
;
727 for (e
= sinfo
->htab
->first
; e
; e
= e
->next
)
729 if (e
->secinfo
!= secinfo
)
731 secinfo
->sec
->_cooked_size
= size
;
732 secinfo
= e
->secinfo
;
736 if (e
->secinfo
->first
== NULL
)
738 e
->secinfo
->first
= e
;
741 size
= (size
+ e
->alignment
- 1) & ~((bfd_vma
) e
->alignment
- 1);
746 secinfo
->sec
->_cooked_size
= size
;
748 /* And now adjust the rest, removing them from the chain (but not hashtable)
750 for (a
= &sinfo
->htab
->first
, e
= *a
; e
; e
= e
->next
)
758 e
->secinfo
= e
->u
.suffix
->secinfo
;
759 e
->alignment
= e
->u
.suffix
->alignment
;
760 e
->u
.index
= e
->u
.suffix
->u
.index
+ (e
->u
.suffix
->len
- e
->len
);
765 /* This function is called once after all SEC_MERGE sections are registered
766 with _bfd_merge_section. */
769 _bfd_merge_sections (abfd
, xsinfo
, remove_hook
)
770 bfd
*abfd ATTRIBUTE_UNUSED
;
772 void (*remove_hook
) PARAMS((bfd
*, asection
*));
774 struct sec_merge_info
*sinfo
;
776 for (sinfo
= (struct sec_merge_info
*) xsinfo
; sinfo
; sinfo
= sinfo
->next
)
778 struct sec_merge_sec_info
* secinfo
;
783 /* Move sinfo->chain to head of the chain, terminate it. */
784 secinfo
= sinfo
->chain
;
785 sinfo
->chain
= secinfo
->next
;
786 secinfo
->next
= NULL
;
788 /* Record the sections into the hash table. */
789 for (secinfo
= sinfo
->chain
; secinfo
; secinfo
= secinfo
->next
)
790 if (secinfo
->sec
->flags
& SEC_EXCLUDE
)
792 *secinfo
->psecinfo
= NULL
;
794 (*remove_hook
) (abfd
, secinfo
->sec
);
796 else if (! record_section (sinfo
, secinfo
))
802 if (sinfo
->htab
->first
== NULL
)
805 if (sinfo
->htab
->strings
)
806 merge_strings (sinfo
);
809 struct sec_merge_hash_entry
*e
;
810 bfd_size_type size
= 0;
812 /* Things are much simpler for non-strings.
813 Just assign them slots in the section. */
815 for (e
= sinfo
->htab
->first
; e
; e
= e
->next
)
817 if (e
->secinfo
->first
== NULL
)
820 secinfo
->sec
->_cooked_size
= size
;
821 e
->secinfo
->first
= e
;
824 size
= (size
+ e
->alignment
- 1)
825 & ~((bfd_vma
) e
->alignment
- 1);
828 secinfo
= e
->secinfo
;
830 secinfo
->sec
->_cooked_size
= size
;
833 /* Finally shrink all input sections which have not made it into
834 the hash table at all. */
835 for (secinfo
= sinfo
->chain
; secinfo
; secinfo
= secinfo
->next
)
836 if (secinfo
->first
== NULL
)
837 secinfo
->sec
->_cooked_size
= 0;
843 /* Write out the merged section. */
846 _bfd_write_merged_section (output_bfd
, sec
, psecinfo
)
851 struct sec_merge_sec_info
*secinfo
;
854 secinfo
= (struct sec_merge_sec_info
*) psecinfo
;
859 pos
= sec
->output_section
->filepos
+ sec
->output_offset
;
860 if (bfd_seek (output_bfd
, pos
, SEEK_SET
) != 0)
863 if (! sec_merge_emit (output_bfd
, secinfo
->first
))
869 /* Adjust an address in the SEC_MERGE section. Given OFFSET within
870 *PSEC, this returns the new offset in the adjusted SEC_MERGE
871 section and writes the new section back into *PSEC. */
874 _bfd_merged_section_offset (output_bfd
, psec
, psecinfo
, offset
, addend
)
875 bfd
*output_bfd ATTRIBUTE_UNUSED
;
878 bfd_vma offset
, addend
;
880 struct sec_merge_sec_info
*secinfo
;
881 struct sec_merge_hash_entry
*entry
;
883 asection
*sec
= *psec
;
885 secinfo
= (struct sec_merge_sec_info
*) psecinfo
;
887 if (offset
+ addend
>= sec
->_raw_size
)
889 if (offset
+ addend
> sec
->_raw_size
)
891 (*_bfd_error_handler
)
892 (_("%s: access beyond end of merged section (%ld + %ld)"),
893 bfd_get_filename (sec
->owner
), (long) offset
, (long) addend
);
895 return (secinfo
->first
? sec
->_cooked_size
: 0);
898 if (secinfo
->htab
->strings
)
900 if (sec
->entsize
== 1)
902 p
= secinfo
->contents
+ offset
+ addend
- 1;
903 while (p
>= secinfo
->contents
&& *p
)
909 p
= secinfo
->contents
910 + ((offset
+ addend
) / sec
->entsize
) * sec
->entsize
;
912 while (p
>= secinfo
->contents
)
916 for (i
= 0; i
< sec
->entsize
; ++i
)
919 if (i
== sec
->entsize
)
928 p
= secinfo
->contents
929 + ((offset
+ addend
) / sec
->entsize
) * sec
->entsize
;
931 entry
= sec_merge_hash_lookup (secinfo
->htab
, p
, 0, false);
934 if (! secinfo
->htab
->strings
)
936 /* This should only happen if somebody points into the padding
937 after a NUL character but before next entity. */
940 if (! secinfo
->htab
->first
)
942 entry
= secinfo
->htab
->first
;
943 p
= secinfo
->contents
944 + ((offset
+ addend
) / sec
->entsize
+ 1) * sec
->entsize
948 *psec
= entry
->secinfo
->sec
;
949 return entry
->u
.index
+ (secinfo
->contents
+ offset
- p
);