More dynamic object support, initial scripting support.
[deliverable/binutils-gdb.git] / gold / stringpool.cc
CommitLineData
14bfc3f5
ILT
1// stringpool.cc -- a string pool for gold
2
3#include "gold.h"
4
5#include <cassert>
6#include <cstring>
61ba1cf9
ILT
7#include <algorithm>
8#include <vector>
14bfc3f5 9
61ba1cf9 10#include "output.h"
14bfc3f5
ILT
11#include "stringpool.h"
12
13namespace gold
14{
15
16Stringpool::Stringpool()
f0641a0b 17 : string_set_(), strings_(), strtab_size_(0), next_index_(1)
14bfc3f5
ILT
18{
19}
20
21Stringpool::~Stringpool()
22{
61ba1cf9 23 for (std::list<Stringdata*>::iterator p = this->strings_.begin();
14bfc3f5
ILT
24 p != this->strings_.end();
25 ++p)
26 delete[] reinterpret_cast<char*>(*p);
27}
28
29// Hash function.
30
31size_t
32Stringpool::Stringpool_hash::operator()(const char* s) const
33{
34 // Fowler/Noll/Vo (FNV) hash (type FNV-1a).
35 if (sizeof(size_t) == 8)
36 {
b3168e9d 37 size_t result = static_cast<size_t>(14695981039346656037ULL);
14bfc3f5
ILT
38 while (*s != '\0')
39 {
40 result &= (size_t) *s++;
41 result *= 1099511628211ULL;
42 }
43 return result;
44 }
45 else
46 {
47 size_t result = 2166136261UL;
48 while (*s != '\0')
49 {
50 result ^= (size_t) *s++;
51 result *= 16777619UL;
52 }
53 return result;
54 }
55}
56
57// Add a string to the list of canonical strings. Return a pointer to
f0641a0b 58// the canonical string. If PKEY is not NULL, set *PKEY to the key.
14bfc3f5
ILT
59
60const char*
f0641a0b 61Stringpool::add_string(const char* s, Key* pkey)
14bfc3f5 62{
f0641a0b 63 // The size we allocate for a new Stringdata.
14bfc3f5 64 const size_t buffer_size = 1000;
f0641a0b
ILT
65 // The amount we multiply the Stringdata index when calculating the
66 // key.
67 const size_t key_mult = 1024;
68 assert(key_mult >= buffer_size);
69
14bfc3f5
ILT
70 size_t len = strlen(s);
71
72 size_t alc;
73 bool front = true;
74 if (len >= buffer_size)
75 {
61ba1cf9 76 alc = sizeof(Stringdata) + len;
14bfc3f5
ILT
77 front = false;
78 }
79 else if (this->strings_.empty())
61ba1cf9 80 alc = sizeof(Stringdata) + buffer_size;
14bfc3f5
ILT
81 else
82 {
61ba1cf9 83 Stringdata *psd = this->strings_.front();
14bfc3f5 84 if (len >= psd->alc - psd->len)
61ba1cf9 85 alc = sizeof(Stringdata) + buffer_size;
14bfc3f5
ILT
86 else
87 {
88 char* ret = psd->data + psd->len;
89 memcpy(ret, s, len + 1);
f0641a0b
ILT
90
91 if (pkey != NULL)
92 *pkey = psd->index * key_mult + psd->len;
93
14bfc3f5 94 psd->len += len + 1;
f0641a0b 95
14bfc3f5
ILT
96 return ret;
97 }
98 }
99
61ba1cf9
ILT
100 Stringdata *psd = reinterpret_cast<Stringdata*>(new char[alc]);
101 psd->alc = alc - sizeof(Stringdata);
14bfc3f5
ILT
102 memcpy(psd->data, s, len + 1);
103 psd->len = len + 1;
f0641a0b
ILT
104 psd->index = this->next_index_;
105 ++this->next_index_;
106
107 if (pkey != NULL)
108 *pkey = psd->index * key_mult;
109
14bfc3f5
ILT
110 if (front)
111 this->strings_.push_front(psd);
112 else
113 this->strings_.push_back(psd);
f0641a0b 114
14bfc3f5
ILT
115 return psd->data;
116}
117
118// Add a string to a string pool.
119
120const char*
f0641a0b 121Stringpool::add(const char* s, Key* pkey)
14bfc3f5
ILT
122{
123 // FIXME: This will look up the entry twice in the hash table. The
124 // problem is that we can't insert S before we canonicalize it. I
a2fb1b05 125 // don't think there is a way to handle this correctly with
61ba1cf9 126 // unordered_map, so this should be replaced with custom code to do
14bfc3f5
ILT
127 // what we need, which is to return the empty slot.
128
129 String_set_type::const_iterator p = this->string_set_.find(s);
130 if (p != this->string_set_.end())
f0641a0b
ILT
131 {
132 if (pkey != NULL)
133 *pkey = p->second.first;
134 return p->first;
135 }
14bfc3f5 136
f0641a0b
ILT
137 Key k;
138 const char* ret = this->add_string(s, &k);
139
140 const off_t ozero = 0;
141 std::pair<const char*, Val> element(ret, std::make_pair(k, ozero));
14bfc3f5 142 std::pair<String_set_type::iterator, bool> ins =
f0641a0b 143 this->string_set_.insert(element);
14bfc3f5 144 assert(ins.second);
f0641a0b
ILT
145
146 if (pkey != NULL)
147 *pkey = k;
148
14bfc3f5
ILT
149 return ret;
150}
151
152// Add a prefix of a string to a string pool.
153
154const char*
f0641a0b 155Stringpool::add(const char* s, size_t len, Key* pkey)
14bfc3f5
ILT
156{
157 // FIXME: This implementation should be rewritten when we rewrite
158 // the hash table to avoid copying.
159 std::string st(s, len);
f0641a0b 160 return this->add(st, pkey);
14bfc3f5
ILT
161}
162
61ba1cf9 163const char*
f0641a0b 164Stringpool::find(const char* s, Key* pkey) const
61ba1cf9
ILT
165{
166 String_set_type::const_iterator p = this->string_set_.find(s);
167 if (p == this->string_set_.end())
168 return NULL;
f0641a0b
ILT
169
170 if (pkey != NULL)
171 *pkey = p->second.first;
172
61ba1cf9
ILT
173 return p->first;
174}
175
176// Comparison routine used when sorting into an ELF strtab. We want
177// to sort this so that when one string is a suffix of another, we
178// always see the shorter string immediately after the longer string.
179// For example, we want to see these strings in this order:
180// abcd
181// cd
182// d
183// When strings are not suffixes, we don't care what order they are
184// in, but we need to ensure that suffixes wind up next to each other.
185// So we do a reversed lexicographic sort on the reversed string.
186
187bool
188Stringpool::Stringpool_sort_comparison::operator()(
189 String_set_type::iterator it1,
190 String_set_type::iterator it2) const
191{
192 const char* s1 = it1->first;
193 const char* s2 = it2->first;
194 int len1 = strlen(s1);
195 int len2 = strlen(s2);
196 int minlen = len1 < len2 ? len1 : len2;
197 const char* p1 = s1 + len1 - 1;
198 const char* p2 = s2 + len2 - 1;
199 for (int i = minlen - 1; i >= 0; --i, --p1, --p2)
200 {
201 if (*p1 != *p2)
202 return *p1 > *p2;
203 }
204 return len1 > len2;
205}
206
207// Return whether s1 is a suffix of s2.
208
209bool
210Stringpool::is_suffix(const char* s1, const char* s2)
211{
212 size_t len1 = strlen(s1);
213 size_t len2 = strlen(s2);
214 if (len1 > len2)
215 return false;
216 return strcmp(s1, s2 + len2 - len1) == 0;
217}
218
219// Turn the stringpool into an ELF strtab: determine the offsets of
220// each string in the table.
221
222void
223Stringpool::set_string_offsets()
224{
225 size_t count = this->string_set_.size();
226
227 std::vector<String_set_type::iterator> v;
228 v.reserve(count);
229
230 for (String_set_type::iterator p = this->string_set_.begin();
231 p != this->string_set_.end();
232 ++p)
233 v.push_back(p);
234
235 std::sort(v.begin(), v.end(), Stringpool_sort_comparison());
236
237 // Offset 0 is reserved for the empty string.
238 off_t offset = 1;
239 for (size_t i = 0; i < count; ++i)
240 {
241 if (v[i]->first[0] == '\0')
f0641a0b 242 v[i]->second.second = 0;
61ba1cf9 243 else if (i > 0 && Stringpool::is_suffix(v[i]->first, v[i - 1]->first))
f0641a0b
ILT
244 v[i]->second.second = (v[i - 1]->second.second
245 + strlen(v[i - 1]->first)
246 - strlen(v[i]->first));
61ba1cf9
ILT
247 else
248 {
f0641a0b 249 v[i]->second.second = offset;
61ba1cf9
ILT
250 offset += strlen(v[i]->first) + 1;
251 }
252 }
253
254 this->strtab_size_ = offset;
255}
256
257// Get the offset of a string in the ELF strtab. The string must
258// exist.
259
260off_t
261Stringpool::get_offset(const char* s) const
262{
263 String_set_type::const_iterator p = this->string_set_.find(s);
264 if (p != this->string_set_.end())
f0641a0b 265 return p->second.second;
61ba1cf9
ILT
266 abort();
267}
268
269// Write the ELF strtab into the output file at the specified offset.
270
271void
272Stringpool::write(Output_file* of, off_t offset)
273{
274 unsigned char* viewu = of->get_output_view(offset, this->strtab_size_);
275 char* view = reinterpret_cast<char*>(viewu);
276 view[0] = '\0';
277 for (String_set_type::const_iterator p = this->string_set_.begin();
278 p != this->string_set_.end();
279 ++p)
f0641a0b 280 strcpy(view + p->second.second, p->first);
61ba1cf9
ILT
281 of->write_output_view(offset, this->strtab_size_, viewu);
282}
283
14bfc3f5 284} // End namespace gold.
This page took 0.042902 seconds and 4 git commands to generate.