From Craig Silverstein: Minimal --script implementation.
[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
ILT
43template<typename Stringpool_char>
44Stringpool_template<Stringpool_char>::~Stringpool_template()
14bfc3f5 45{
b8e6aad9 46 for (typename std::list<Stringdata*>::iterator p = this->strings_.begin();
14bfc3f5
ILT
47 p != this->strings_.end();
48 ++p)
49 delete[] reinterpret_cast<char*>(*p);
50}
51
b8e6aad9
ILT
52// Return the length of a string of arbitrary character type.
53
54template<typename Stringpool_char>
55size_t
56Stringpool_template<Stringpool_char>::string_length(const Stringpool_char* p)
57{
58 size_t len = 0;
59 for (; *p != 0; ++p)
60 ++len;
61 return len;
62}
63
64// Specialize string_length for char. Maybe we could just use
65// std::char_traits<>::length?
66
67template<>
68inline size_t
69Stringpool_template<char>::string_length(const char* p)
70{
71 return strlen(p);
72}
73
74// Equality comparison function.
75
76template<typename Stringpool_char>
77bool
78Stringpool_template<Stringpool_char>::Stringpool_eq::operator()(
79 const Stringpool_char* s1,
80 const Stringpool_char* s2) const
81{
82 while (*s1 != 0)
83 if (*s1++ != *s2++)
84 return false;
85 return *s2 == 0;
86}
87
88// Specialize equality comparison for char.
89
90template<>
91bool
92Stringpool_template<char>::Stringpool_eq::operator()(const char* s1,
93 const char* s2) const
94{
95 return strcmp(s1, s2) == 0;
96}
97
14bfc3f5
ILT
98// Hash function.
99
b8e6aad9 100template<typename Stringpool_char>
14bfc3f5 101size_t
b8e6aad9
ILT
102Stringpool_template<Stringpool_char>::Stringpool_hash::operator()(
103 const Stringpool_char* s) const
14bfc3f5
ILT
104{
105 // Fowler/Noll/Vo (FNV) hash (type FNV-1a).
106 if (sizeof(size_t) == 8)
107 {
b3168e9d 108 size_t result = static_cast<size_t>(14695981039346656037ULL);
b8e6aad9 109 while (*s != 0)
14bfc3f5 110 {
b8e6aad9
ILT
111 const char* p = reinterpret_cast<const char*>(s);
112 for (size_t i = 0; i < sizeof(Stringpool_char); ++i)
113 {
2fb69fac 114 result ^= (size_t) *p++;
b8e6aad9
ILT
115 result *= 1099511628211ULL;
116 }
117 ++s;
14bfc3f5
ILT
118 }
119 return result;
120 }
121 else
122 {
123 size_t result = 2166136261UL;
b8e6aad9 124 while (*s != 0)
14bfc3f5 125 {
b8e6aad9
ILT
126 const char* p = reinterpret_cast<const char*>(s);
127 for (size_t i = 0; i < sizeof(Stringpool_char); ++i)
128 {
129 result ^= (size_t) *p++;
130 result *= 16777619UL;
131 }
132 ++s;
14bfc3f5
ILT
133 }
134 return result;
135 }
136}
137
138// Add a string to the list of canonical strings. Return a pointer to
f0641a0b 139// the canonical string. If PKEY is not NULL, set *PKEY to the key.
14bfc3f5 140
b8e6aad9
ILT
141template<typename Stringpool_char>
142const Stringpool_char*
143Stringpool_template<Stringpool_char>::add_string(const Stringpool_char* s,
144 Key* pkey)
14bfc3f5 145{
a3ad94ed
ILT
146 // We are in trouble if we've already computed the string offsets.
147 gold_assert(this->strtab_size_ == 0);
148
f0641a0b 149 // The size we allocate for a new Stringdata.
14bfc3f5 150 const size_t buffer_size = 1000;
f0641a0b
ILT
151 // The amount we multiply the Stringdata index when calculating the
152 // key.
153 const size_t key_mult = 1024;
a3ad94ed 154 gold_assert(key_mult >= buffer_size);
f0641a0b 155
b8e6aad9 156 size_t len = (string_length(s) + 1) * sizeof(Stringpool_char);
14bfc3f5
ILT
157
158 size_t alc;
159 bool front = true;
b8e6aad9 160 if (len > buffer_size)
14bfc3f5 161 {
61ba1cf9 162 alc = sizeof(Stringdata) + len;
14bfc3f5
ILT
163 front = false;
164 }
165 else if (this->strings_.empty())
61ba1cf9 166 alc = sizeof(Stringdata) + buffer_size;
14bfc3f5
ILT
167 else
168 {
61ba1cf9 169 Stringdata *psd = this->strings_.front();
b8e6aad9 170 if (len > psd->alc - psd->len)
61ba1cf9 171 alc = sizeof(Stringdata) + buffer_size;
14bfc3f5
ILT
172 else
173 {
174 char* ret = psd->data + psd->len;
b8e6aad9 175 memcpy(ret, s, len);
f0641a0b
ILT
176
177 if (pkey != NULL)
178 *pkey = psd->index * key_mult + psd->len;
179
b8e6aad9 180 psd->len += len;
f0641a0b 181
b8e6aad9 182 return reinterpret_cast<const Stringpool_char*>(ret);
14bfc3f5
ILT
183 }
184 }
185
61ba1cf9
ILT
186 Stringdata *psd = reinterpret_cast<Stringdata*>(new char[alc]);
187 psd->alc = alc - sizeof(Stringdata);
b8e6aad9
ILT
188 memcpy(psd->data, s, len);
189 psd->len = len;
f0641a0b
ILT
190 psd->index = this->next_index_;
191 ++this->next_index_;
192
193 if (pkey != NULL)
194 *pkey = psd->index * key_mult;
195
14bfc3f5
ILT
196 if (front)
197 this->strings_.push_front(psd);
198 else
199 this->strings_.push_back(psd);
f0641a0b 200
b8e6aad9 201 return reinterpret_cast<const Stringpool_char*>(psd->data);
14bfc3f5
ILT
202}
203
204// Add a string to a string pool.
205
b8e6aad9
ILT
206template<typename Stringpool_char>
207const Stringpool_char*
cfd73a4e
ILT
208Stringpool_template<Stringpool_char>::add(const Stringpool_char* s, bool copy,
209 Key* pkey)
14bfc3f5
ILT
210{
211 // FIXME: This will look up the entry twice in the hash table. The
212 // problem is that we can't insert S before we canonicalize it. I
a2fb1b05 213 // don't think there is a way to handle this correctly with
61ba1cf9 214 // unordered_map, so this should be replaced with custom code to do
14bfc3f5
ILT
215 // what we need, which is to return the empty slot.
216
b8e6aad9 217 typename String_set_type::const_iterator p = this->string_set_.find(s);
14bfc3f5 218 if (p != this->string_set_.end())
f0641a0b
ILT
219 {
220 if (pkey != NULL)
221 *pkey = p->second.first;
222 return p->first;
223 }
14bfc3f5 224
f0641a0b 225 Key k;
cfd73a4e
ILT
226 const Stringpool_char* ret;
227 if (copy)
228 ret = this->add_string(s, &k);
229 else
230 {
231 ret = s;
232 k = this->next_uncopied_key_;
233 --this->next_uncopied_key_;
234 }
f0641a0b
ILT
235
236 const off_t ozero = 0;
b8e6aad9
ILT
237 std::pair<const Stringpool_char*, Val> element(ret,
238 std::make_pair(k, ozero));
239 std::pair<typename String_set_type::iterator, bool> ins =
f0641a0b 240 this->string_set_.insert(element);
a3ad94ed 241 gold_assert(ins.second);
f0641a0b
ILT
242
243 if (pkey != NULL)
244 *pkey = k;
245
14bfc3f5
ILT
246 return ret;
247}
248
249// Add a prefix of a string to a string pool.
250
b8e6aad9
ILT
251template<typename Stringpool_char>
252const Stringpool_char*
cfd73a4e
ILT
253Stringpool_template<Stringpool_char>::add_prefix(const Stringpool_char* s,
254 size_t len,
255 Key* pkey)
14bfc3f5
ILT
256{
257 // FIXME: This implementation should be rewritten when we rewrite
258 // the hash table to avoid copying.
b8e6aad9 259 std::basic_string<Stringpool_char> st(s, len);
cfd73a4e 260 return this->add(st.c_str(), true, pkey);
14bfc3f5
ILT
261}
262
b8e6aad9
ILT
263template<typename Stringpool_char>
264const Stringpool_char*
265Stringpool_template<Stringpool_char>::find(const Stringpool_char* s,
266 Key* pkey) const
61ba1cf9 267{
b8e6aad9 268 typename String_set_type::const_iterator p = this->string_set_.find(s);
61ba1cf9
ILT
269 if (p == this->string_set_.end())
270 return NULL;
f0641a0b
ILT
271
272 if (pkey != NULL)
273 *pkey = p->second.first;
274
61ba1cf9
ILT
275 return p->first;
276}
277
278// Comparison routine used when sorting into an ELF strtab. We want
279// to sort this so that when one string is a suffix of another, we
280// always see the shorter string immediately after the longer string.
281// For example, we want to see these strings in this order:
282// abcd
283// cd
284// d
285// When strings are not suffixes, we don't care what order they are
286// in, but we need to ensure that suffixes wind up next to each other.
287// So we do a reversed lexicographic sort on the reversed string.
288
b8e6aad9 289template<typename Stringpool_char>
61ba1cf9 290bool
b8e6aad9 291Stringpool_template<Stringpool_char>::Stringpool_sort_comparison::operator()(
614f30a2
ILT
292 const Stringpool_sort_info& sort_info1,
293 const Stringpool_sort_info& sort_info2) const
61ba1cf9 294{
614f30a2
ILT
295 const Stringpool_char* s1 = sort_info1.it->first;
296 const Stringpool_char* s2 = sort_info2.it->first;
297 const size_t len1 = sort_info1.string_length;
298 const size_t len2 = sort_info2.string_length;
299 const size_t minlen = len1 < len2 ? len1 : len2;
b8e6aad9
ILT
300 const Stringpool_char* p1 = s1 + len1 - 1;
301 const Stringpool_char* p2 = s2 + len2 - 1;
302 for (size_t i = minlen; i > 0; --i, --p1, --p2)
61ba1cf9
ILT
303 {
304 if (*p1 != *p2)
305 return *p1 > *p2;
306 }
307 return len1 > len2;
308}
309
310// Return whether s1 is a suffix of s2.
311
b8e6aad9 312template<typename Stringpool_char>
61ba1cf9 313bool
b8e6aad9 314Stringpool_template<Stringpool_char>::is_suffix(const Stringpool_char* s1,
614f30a2
ILT
315 size_t len1,
316 const Stringpool_char* s2,
317 size_t len2)
61ba1cf9 318{
61ba1cf9
ILT
319 if (len1 > len2)
320 return false;
b8e6aad9 321 return memcmp(s1, s2 + len2 - len1, len1 * sizeof(Stringpool_char)) == 0;
61ba1cf9
ILT
322}
323
324// Turn the stringpool into an ELF strtab: determine the offsets of
325// each string in the table.
326
b8e6aad9 327template<typename Stringpool_char>
61ba1cf9 328void
b8e6aad9 329Stringpool_template<Stringpool_char>::set_string_offsets()
61ba1cf9 330{
a3ad94ed
ILT
331 if (this->strtab_size_ != 0)
332 {
333 // We've already computed the offsets.
334 return;
335 }
336
b8e6aad9
ILT
337 const size_t charsize = sizeof(Stringpool_char);
338
339 // Offset 0 may be reserved for the empty string.
340 off_t offset = this->zero_null_ ? charsize : 0;
614f30a2 341
377caf49
ILT
342 // Sorting to find suffixes can take over 25% of the total CPU time
343 // used by the linker. Since it's merely an optimization to reduce
344 // the strtab size, and gives a relatively small benefit (it's
345 // typically rare for a symbol to be a suffix of another), we only
346 // take the time to sort when the user asks for heavy optimization.
347 if (parameters->optimization_level() < 2)
61ba1cf9 348 {
377caf49
ILT
349 for (typename String_set_type::iterator curr = this->string_set_.begin();
350 curr != this->string_set_.end();
351 curr++)
352 {
353 if (this->zero_null_ && curr->first[0] == 0)
354 curr->second.second = 0;
355 else
356 {
357 curr->second.second = offset;
358 offset += (string_length(curr->first) + 1) * charsize;
359 }
360 }
361 }
362 else
363 {
364 size_t count = this->string_set_.size();
365
366 std::vector<Stringpool_sort_info> v;
367 v.reserve(count);
368
369 for (typename String_set_type::iterator p = this->string_set_.begin();
370 p != this->string_set_.end();
371 ++p)
372 v.push_back(Stringpool_sort_info(p, string_length(p->first)));
373
374 std::sort(v.begin(), v.end(), Stringpool_sort_comparison());
375
376 for (typename std::vector<Stringpool_sort_info>::iterator last = v.end(),
377 curr = v.begin();
378 curr != v.end();
379 last = curr++)
380 {
381 if (this->zero_null_ && curr->it->first[0] == 0)
382 curr->it->second.second = 0;
383 else if (last != v.end()
384 && is_suffix(curr->it->first, curr->string_length,
385 last->it->first, last->string_length))
386 curr->it->second.second = (last->it->second.second
387 + ((last->string_length
388 - curr->string_length)
389 * charsize));
390 else
391 {
392 curr->it->second.second = offset;
393 offset += (curr->string_length + 1) * charsize;
394 }
395 }
61ba1cf9
ILT
396 }
397
398 this->strtab_size_ = offset;
399}
400
401// Get the offset of a string in the ELF strtab. The string must
402// exist.
403
b8e6aad9 404template<typename Stringpool_char>
61ba1cf9 405off_t
b8e6aad9
ILT
406Stringpool_template<Stringpool_char>::get_offset(const Stringpool_char* s)
407 const
61ba1cf9 408{
a3ad94ed 409 gold_assert(this->strtab_size_ != 0);
b8e6aad9 410 typename String_set_type::const_iterator p = this->string_set_.find(s);
61ba1cf9 411 if (p != this->string_set_.end())
f0641a0b 412 return p->second.second;
a3ad94ed 413 gold_unreachable();
61ba1cf9
ILT
414}
415
416// Write the ELF strtab into the output file at the specified offset.
417
b8e6aad9 418template<typename Stringpool_char>
61ba1cf9 419void
b8e6aad9 420Stringpool_template<Stringpool_char>::write(Output_file* of, off_t offset)
61ba1cf9 421{
a3ad94ed 422 gold_assert(this->strtab_size_ != 0);
61ba1cf9
ILT
423 unsigned char* viewu = of->get_output_view(offset, this->strtab_size_);
424 char* view = reinterpret_cast<char*>(viewu);
b8e6aad9
ILT
425 if (this->zero_null_)
426 view[0] = '\0';
427 for (typename String_set_type::const_iterator p = this->string_set_.begin();
61ba1cf9
ILT
428 p != this->string_set_.end();
429 ++p)
b8e6aad9
ILT
430 memcpy(view + p->second.second, p->first,
431 (string_length(p->first) + 1) * sizeof(Stringpool_char));
61ba1cf9
ILT
432 of->write_output_view(offset, this->strtab_size_, viewu);
433}
434
b8e6aad9
ILT
435// Instantiate the templates we need.
436
437template
438class Stringpool_template<char>;
439
440template
441class Stringpool_template<uint16_t>;
442
443template
444class Stringpool_template<uint32_t>;
445
14bfc3f5 446} // End namespace gold.
This page took 0.081827 seconds and 4 git commands to generate.