*** empty log message ***
[deliverable/binutils-gdb.git] / gold / stringpool.cc
CommitLineData
14bfc3f5
ILT
1// stringpool.cc -- a string pool for gold
2
6cb15b7f
ILT
3// Copyright 2006, 2007 Free Software Foundation, Inc.
4// Written by Ian Lance Taylor <iant@google.com>.
5
6// This file is part of gold.
7
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.
12
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.
17
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.
22
14bfc3f5
ILT
23#include "gold.h"
24
14bfc3f5 25#include <cstring>
61ba1cf9
ILT
26#include <algorithm>
27#include <vector>
14bfc3f5 28
61ba1cf9 29#include "output.h"
377caf49 30#include "parameters.h"
14bfc3f5
ILT
31#include "stringpool.h"
32
33namespace gold
34{
35
b8e6aad9 36template<typename Stringpool_char>
a8b2552e 37Stringpool_template<Stringpool_char>::Stringpool_template()
b8e6aad9 38 : string_set_(), strings_(), strtab_size_(0), next_index_(1),
cfd73a4e 39 next_uncopied_key_(-1), zero_null_(true)
14bfc3f5
ILT
40{
41}
42
b8e6aad9 43template<typename Stringpool_char>
9a0910c3
ILT
44void
45Stringpool_template<Stringpool_char>::clear()
14bfc3f5 46{
b8e6aad9 47 for (typename std::list<Stringdata*>::iterator p = this->strings_.begin();
14bfc3f5
ILT
48 p != this->strings_.end();
49 ++p)
50 delete[] reinterpret_cast<char*>(*p);
9a0910c3
ILT
51 this->strings_.clear();
52 this->string_set_.clear();
53}
54
55template<typename Stringpool_char>
56Stringpool_template<Stringpool_char>::~Stringpool_template()
57{
58 this->clear();
14bfc3f5
ILT
59}
60
6d013333
ILT
61// Resize the internal hashtable with the expectation we'll get n new
62// elements. Note that the hashtable constructor takes a "number of
63// buckets you'd like," rather than "number of elements you'd like,"
64// but that's the best we can do.
65
66template<typename Stringpool_char>
67void
68Stringpool_template<Stringpool_char>::reserve(unsigned int n)
69{
70#if defined(HAVE_TR1_UNORDERED_MAP)
71 // rehash() implementation is broken in gcc 4.0.3's stl
72 //this->string_set_.rehash(this->string_set_.size() + n);
73 //return;
74#elif defined(HAVE_EXT_HASH_MAP)
75 this->string_set_.resize(this->string_set_.size() + n);
76 return;
77#endif
78
79 // This is the generic "reserve" code, if no #ifdef above triggers.
80 String_set_type new_string_set(this->string_set_.size() + n);
81 new_string_set.insert(this->string_set_.begin(), this->string_set_.end());
82 this->string_set_.swap(new_string_set);
83}
84
b8e6aad9
ILT
85// Return the length of a string of arbitrary character type.
86
87template<typename Stringpool_char>
88size_t
89Stringpool_template<Stringpool_char>::string_length(const Stringpool_char* p)
90{
91 size_t len = 0;
92 for (; *p != 0; ++p)
93 ++len;
94 return len;
95}
96
97// Specialize string_length for char. Maybe we could just use
98// std::char_traits<>::length?
99
100template<>
101inline size_t
102Stringpool_template<char>::string_length(const char* p)
103{
104 return strlen(p);
105}
106
987cc251 107// Compare two strings of arbitrary character type for equality.
b8e6aad9
ILT
108
109template<typename Stringpool_char>
110bool
987cc251
ILT
111Stringpool_template<Stringpool_char>::string_equal(const Stringpool_char* s1,
112 const Stringpool_char* s2)
b8e6aad9
ILT
113{
114 while (*s1 != 0)
115 if (*s1++ != *s2++)
116 return false;
117 return *s2 == 0;
118}
119
987cc251 120// Specialize string_equal for char.
b8e6aad9
ILT
121
122template<>
987cc251
ILT
123inline bool
124Stringpool_template<char>::string_equal(const char* s1, const char* s2)
b8e6aad9
ILT
125{
126 return strcmp(s1, s2) == 0;
127}
128
987cc251
ILT
129// Equality comparison function for the hash table.
130
131template<typename Stringpool_char>
132inline bool
133Stringpool_template<Stringpool_char>::Stringpool_eq::operator()(
134 const Hashkey& h1,
135 const Hashkey& h2) const
136{
137 return (h1.hash_code == h2.hash_code
138 && h1.length == h2.length
139 && memcmp(h1.string, h2.string,
140 h1.length * sizeof(Stringpool_char)) == 0);
141}
142
143// Hash function. The length is in characters, not bytes.
14bfc3f5 144
b8e6aad9 145template<typename Stringpool_char>
14bfc3f5 146size_t
987cc251
ILT
147Stringpool_template<Stringpool_char>::string_hash(const Stringpool_char* s,
148 size_t length)
14bfc3f5
ILT
149{
150 // Fowler/Noll/Vo (FNV) hash (type FNV-1a).
987cc251 151 const unsigned char* p = reinterpret_cast<const unsigned char*>(s);
730cdc88 152 if (sizeof(size_t) > 4)
14bfc3f5 153 {
b3168e9d 154 size_t result = static_cast<size_t>(14695981039346656037ULL);
987cc251 155 for (size_t i = 0; i < length * sizeof(Stringpool_char); ++i)
14bfc3f5 156 {
987cc251
ILT
157 result ^= static_cast<size_t>(*p++);
158 result *= 1099511628211ULL;
14bfc3f5
ILT
159 }
160 return result;
161 }
162 else
163 {
164 size_t result = 2166136261UL;
987cc251 165 for (size_t i = 0; i < length * sizeof(Stringpool_char); ++i)
14bfc3f5 166 {
987cc251
ILT
167 result ^= static_cast<size_t>(*p++);
168 result *= 16777619UL;
14bfc3f5
ILT
169 }
170 return result;
171 }
172}
173
987cc251
ILT
174// Add the string S to the list of canonical strings. Return a
175// pointer to the canonical string. If PKEY is not NULL, set *PKEY to
176// the key. LENGTH is the length of S in characters. Note that S may
177// not be NUL terminated.
14bfc3f5 178
b8e6aad9
ILT
179template<typename Stringpool_char>
180const Stringpool_char*
181Stringpool_template<Stringpool_char>::add_string(const Stringpool_char* s,
987cc251 182 size_t len,
b8e6aad9 183 Key* pkey)
14bfc3f5 184{
a3ad94ed
ILT
185 // We are in trouble if we've already computed the string offsets.
186 gold_assert(this->strtab_size_ == 0);
187
f0641a0b 188 // The size we allocate for a new Stringdata.
14bfc3f5 189 const size_t buffer_size = 1000;
f0641a0b
ILT
190 // The amount we multiply the Stringdata index when calculating the
191 // key.
192 const size_t key_mult = 1024;
a3ad94ed 193 gold_assert(key_mult >= buffer_size);
f0641a0b 194
987cc251
ILT
195 // Convert len to the number of bytes we need to allocate, including
196 // the null character.
197 len = (len + 1) * sizeof(Stringpool_char);
14bfc3f5
ILT
198
199 size_t alc;
200 bool front = true;
b8e6aad9 201 if (len > buffer_size)
14bfc3f5 202 {
61ba1cf9 203 alc = sizeof(Stringdata) + len;
14bfc3f5
ILT
204 front = false;
205 }
206 else if (this->strings_.empty())
61ba1cf9 207 alc = sizeof(Stringdata) + buffer_size;
14bfc3f5
ILT
208 else
209 {
61ba1cf9 210 Stringdata *psd = this->strings_.front();
b8e6aad9 211 if (len > psd->alc - psd->len)
61ba1cf9 212 alc = sizeof(Stringdata) + buffer_size;
14bfc3f5
ILT
213 else
214 {
215 char* ret = psd->data + psd->len;
987cc251
ILT
216 memcpy(ret, s, len - sizeof(Stringpool_char));
217 memset(ret + len - sizeof(Stringpool_char), 0,
218 sizeof(Stringpool_char));
f0641a0b
ILT
219
220 if (pkey != NULL)
221 *pkey = psd->index * key_mult + psd->len;
222
b8e6aad9 223 psd->len += len;
f0641a0b 224
b8e6aad9 225 return reinterpret_cast<const Stringpool_char*>(ret);
14bfc3f5
ILT
226 }
227 }
228
61ba1cf9
ILT
229 Stringdata *psd = reinterpret_cast<Stringdata*>(new char[alc]);
230 psd->alc = alc - sizeof(Stringdata);
987cc251
ILT
231 memcpy(psd->data, s, len - sizeof(Stringpool_char));
232 memset(psd->data + len - sizeof(Stringpool_char), 0,
233 sizeof(Stringpool_char));
b8e6aad9 234 psd->len = len;
f0641a0b
ILT
235 psd->index = this->next_index_;
236 ++this->next_index_;
237
238 if (pkey != NULL)
6d013333
ILT
239 {
240 *pkey = psd->index * key_mult;
241 // Ensure there was no overflow.
242 gold_assert(*pkey / key_mult == psd->index);
243 }
f0641a0b 244
14bfc3f5
ILT
245 if (front)
246 this->strings_.push_front(psd);
247 else
248 this->strings_.push_back(psd);
f0641a0b 249
b8e6aad9 250 return reinterpret_cast<const Stringpool_char*>(psd->data);
14bfc3f5
ILT
251}
252
253// Add a string to a string pool.
254
b8e6aad9
ILT
255template<typename Stringpool_char>
256const Stringpool_char*
cfd73a4e
ILT
257Stringpool_template<Stringpool_char>::add(const Stringpool_char* s, bool copy,
258 Key* pkey)
14bfc3f5 259{
987cc251 260 typedef std::pair<typename String_set_type::iterator, bool> Insert_type;
14bfc3f5 261
987cc251 262 if (!copy)
f0641a0b 263 {
987cc251
ILT
264 // When we don't need to copy the string, we can call insert
265 // directly.
14bfc3f5 266
987cc251
ILT
267 const Key k = this->next_uncopied_key_;
268 const off_t ozero = 0;
269 std::pair<Hashkey, Hashval> element(Hashkey(s),
270 std::make_pair(k, ozero));
f0641a0b 271
987cc251 272 Insert_type ins = this->string_set_.insert(element);
f0641a0b 273
987cc251
ILT
274 typename String_set_type::const_iterator p = ins.first;
275
276 if (ins.second)
277 {
278 // We just added the string. The key value has now been
279 // used.
280 --this->next_uncopied_key_;
281 }
282 else
283 {
284 gold_assert(k != p->second.first);
285 }
286
287 if (pkey != NULL)
288 *pkey = p->second.first;
289 return p->first.string;
290 }
f0641a0b 291
987cc251 292 return this->add_prefix(s, string_length(s), pkey);
14bfc3f5
ILT
293}
294
295// Add a prefix of a string to a string pool.
296
b8e6aad9
ILT
297template<typename Stringpool_char>
298const Stringpool_char*
cfd73a4e
ILT
299Stringpool_template<Stringpool_char>::add_prefix(const Stringpool_char* s,
300 size_t len,
301 Key* pkey)
14bfc3f5 302{
987cc251
ILT
303 // When adding an entry, this will look it up twice in the hash
304 // table. The problem is that we can't insert S before we
305 // canonicalize it by copying it into the canonical list. The hash
306 // code will only be computed once, so this isn't all that
307 // expensive.
308
309 Hashkey hk(s, len);
310 typename String_set_type::const_iterator p = this->string_set_.find(hk);
311 if (p != this->string_set_.end())
312 {
313 if (pkey != NULL)
314 *pkey = p->second.first;
315 return p->first.string;
316 }
317
318 Key k;
319 hk.string = this->add_string(s, len, &k);
320 // The contents of the string stay the same, so we don't need to
321 // adjust hk.hash_code or hk.length.
322
323 const off_t ozero = 0;
324 std::pair<Hashkey, Hashval> element(hk, std::make_pair(k, ozero));
325
326 typedef std::pair<typename String_set_type::iterator, bool> Insert_type;
327 Insert_type ins = this->string_set_.insert(element);
328 gold_assert(ins.second);
329
330 if (pkey != NULL)
331 *pkey = k;
332 return hk.string;
14bfc3f5
ILT
333}
334
b8e6aad9
ILT
335template<typename Stringpool_char>
336const Stringpool_char*
337Stringpool_template<Stringpool_char>::find(const Stringpool_char* s,
338 Key* pkey) const
61ba1cf9 339{
987cc251
ILT
340 Hashkey hk(s);
341 typename String_set_type::const_iterator p = this->string_set_.find(hk);
61ba1cf9
ILT
342 if (p == this->string_set_.end())
343 return NULL;
f0641a0b
ILT
344
345 if (pkey != NULL)
346 *pkey = p->second.first;
347
987cc251 348 return p->first.string;
61ba1cf9
ILT
349}
350
351// Comparison routine used when sorting into an ELF strtab. We want
352// to sort this so that when one string is a suffix of another, we
353// always see the shorter string immediately after the longer string.
354// For example, we want to see these strings in this order:
355// abcd
356// cd
357// d
358// When strings are not suffixes, we don't care what order they are
359// in, but we need to ensure that suffixes wind up next to each other.
360// So we do a reversed lexicographic sort on the reversed string.
361
b8e6aad9 362template<typename Stringpool_char>
61ba1cf9 363bool
b8e6aad9 364Stringpool_template<Stringpool_char>::Stringpool_sort_comparison::operator()(
614f30a2
ILT
365 const Stringpool_sort_info& sort_info1,
366 const Stringpool_sort_info& sort_info2) const
61ba1cf9 367{
987cc251
ILT
368 const Hashkey& h1(sort_info1->first);
369 const Hashkey& h2(sort_info2->first);
370 const Stringpool_char* s1 = h1.string;
371 const Stringpool_char* s2 = h2.string;
372 const size_t len1 = h1.length;
373 const size_t len2 = h2.length;
614f30a2 374 const size_t minlen = len1 < len2 ? len1 : len2;
b8e6aad9
ILT
375 const Stringpool_char* p1 = s1 + len1 - 1;
376 const Stringpool_char* p2 = s2 + len2 - 1;
377 for (size_t i = minlen; i > 0; --i, --p1, --p2)
61ba1cf9
ILT
378 {
379 if (*p1 != *p2)
380 return *p1 > *p2;
381 }
382 return len1 > len2;
383}
384
385// Return whether s1 is a suffix of s2.
386
b8e6aad9 387template<typename Stringpool_char>
61ba1cf9 388bool
b8e6aad9 389Stringpool_template<Stringpool_char>::is_suffix(const Stringpool_char* s1,
614f30a2
ILT
390 size_t len1,
391 const Stringpool_char* s2,
392 size_t len2)
61ba1cf9 393{
61ba1cf9
ILT
394 if (len1 > len2)
395 return false;
b8e6aad9 396 return memcmp(s1, s2 + len2 - len1, len1 * sizeof(Stringpool_char)) == 0;
61ba1cf9
ILT
397}
398
399// Turn the stringpool into an ELF strtab: determine the offsets of
400// each string in the table.
401
b8e6aad9 402template<typename Stringpool_char>
61ba1cf9 403void
b8e6aad9 404Stringpool_template<Stringpool_char>::set_string_offsets()
61ba1cf9 405{
a3ad94ed
ILT
406 if (this->strtab_size_ != 0)
407 {
408 // We've already computed the offsets.
409 return;
410 }
411
b8e6aad9
ILT
412 const size_t charsize = sizeof(Stringpool_char);
413
414 // Offset 0 may be reserved for the empty string.
415 off_t offset = this->zero_null_ ? charsize : 0;
614f30a2 416
377caf49
ILT
417 // Sorting to find suffixes can take over 25% of the total CPU time
418 // used by the linker. Since it's merely an optimization to reduce
419 // the strtab size, and gives a relatively small benefit (it's
420 // typically rare for a symbol to be a suffix of another), we only
421 // take the time to sort when the user asks for heavy optimization.
422 if (parameters->optimization_level() < 2)
61ba1cf9 423 {
377caf49
ILT
424 for (typename String_set_type::iterator curr = this->string_set_.begin();
425 curr != this->string_set_.end();
426 curr++)
427 {
987cc251 428 if (this->zero_null_ && curr->first.string[0] == 0)
377caf49
ILT
429 curr->second.second = 0;
430 else
431 {
432 curr->second.second = offset;
987cc251 433 offset += (curr->first.length + 1) * charsize;
377caf49
ILT
434 }
435 }
436 }
437 else
438 {
439 size_t count = this->string_set_.size();
440
441 std::vector<Stringpool_sort_info> v;
442 v.reserve(count);
443
444 for (typename String_set_type::iterator p = this->string_set_.begin();
445 p != this->string_set_.end();
446 ++p)
987cc251 447 v.push_back(Stringpool_sort_info(p));
377caf49
ILT
448
449 std::sort(v.begin(), v.end(), Stringpool_sort_comparison());
450
451 for (typename std::vector<Stringpool_sort_info>::iterator last = v.end(),
452 curr = v.begin();
453 curr != v.end();
454 last = curr++)
455 {
987cc251
ILT
456 if (this->zero_null_ && (*curr)->first.string[0] == 0)
457 (*curr)->second.second = 0;
377caf49 458 else if (last != v.end()
987cc251
ILT
459 && is_suffix((*curr)->first.string,
460 (*curr)->first.length,
461 (*last)->first.string,
462 (*last)->first.length))
463 (*curr)->second.second = ((*last)->second.second
464 + (((*last)->first.length
465 - (*curr)->first.length)
466 * charsize));
377caf49
ILT
467 else
468 {
987cc251
ILT
469 (*curr)->second.second = offset;
470 offset += ((*curr)->first.length + 1) * charsize;
377caf49
ILT
471 }
472 }
61ba1cf9
ILT
473 }
474
475 this->strtab_size_ = offset;
476}
477
478// Get the offset of a string in the ELF strtab. The string must
479// exist.
480
b8e6aad9 481template<typename Stringpool_char>
61ba1cf9 482off_t
b8e6aad9
ILT
483Stringpool_template<Stringpool_char>::get_offset(const Stringpool_char* s)
484 const
61ba1cf9 485{
a3ad94ed 486 gold_assert(this->strtab_size_ != 0);
b8e6aad9 487 typename String_set_type::const_iterator p = this->string_set_.find(s);
61ba1cf9 488 if (p != this->string_set_.end())
f0641a0b 489 return p->second.second;
a3ad94ed 490 gold_unreachable();
61ba1cf9
ILT
491}
492
9a0910c3 493// Write the ELF strtab into the buffer.
61ba1cf9 494
b8e6aad9 495template<typename Stringpool_char>
61ba1cf9 496void
96803768 497Stringpool_template<Stringpool_char>::write_to_buffer(unsigned char* buffer,
9a0910c3 498 size_t bufsize)
61ba1cf9 499{
a3ad94ed 500 gold_assert(this->strtab_size_ != 0);
ae3e2ab1
ILT
501 // Quiet the compiler in opt mode.
502 if (bufsize < static_cast<size_t>(this->strtab_size_))
503 gold_assert(bufsize >= static_cast<size_t>(this->strtab_size_));
b8e6aad9 504 if (this->zero_null_)
9a0910c3 505 buffer[0] = '\0';
b8e6aad9 506 for (typename String_set_type::const_iterator p = this->string_set_.begin();
61ba1cf9
ILT
507 p != this->string_set_.end();
508 ++p)
9a0910c3 509 {
987cc251 510 const int len = (p->first.length + 1) * sizeof(Stringpool_char);
9a0910c3 511 gold_assert(p->second.second + len <= this->strtab_size_);
987cc251 512 memcpy(buffer + p->second.second, p->first.string, len);
9a0910c3
ILT
513 }
514}
515
516// Write the ELF strtab into the output file at the specified offset.
517
518template<typename Stringpool_char>
519void
520Stringpool_template<Stringpool_char>::write(Output_file* of, off_t offset)
521{
522 gold_assert(this->strtab_size_ != 0);
523 unsigned char* view = of->get_output_view(offset, this->strtab_size_);
96803768 524 this->write_to_buffer(view, this->strtab_size_);
9a0910c3 525 of->write_output_view(offset, this->strtab_size_, view);
61ba1cf9
ILT
526}
527
ad8f37d1
ILT
528// Print statistical information to stderr. This is used for --stats.
529
530template<typename Stringpool_char>
531void
532Stringpool_template<Stringpool_char>::print_stats(const char* name) const
533{
534#if defined(HAVE_TR1_UNORDERED_MAP) || defined(HAVE_EXT_HASH_MAP)
535 fprintf(stderr, _("%s: %s entries: %zu; buckets: %zu\n"),
536 program_name, name, this->string_set_.size(),
537 this->string_set_.bucket_count());
538#else
539 fprintf(stderr, _("%s: %s entries: %zu\n"),
540 program_name, name, this->table_.size());
541#endif
542 fprintf(stderr, _("%s: %s Stringdata structures: %zu\n"),
543 program_name, name, this->strings_.size());
544}
545
b8e6aad9
ILT
546// Instantiate the templates we need.
547
548template
549class Stringpool_template<char>;
550
551template
552class Stringpool_template<uint16_t>;
553
554template
555class Stringpool_template<uint32_t>;
556
14bfc3f5 557} // End namespace gold.
This page took 0.1713 seconds and 4 git commands to generate.