gas/
[binutils.git] / gold / stringpool.cc
blob5b60259a208c73f7f89e8234c694f57e520c726f
1 // stringpool.cc -- a string pool for gold
3 #include "gold.h"
5 #include <cassert>
6 #include <cstring>
7 #include <algorithm>
8 #include <vector>
10 #include "output.h"
11 #include "stringpool.h"
13 namespace gold
16 Stringpool::Stringpool()
17 : string_set_(), strings_(), strtab_size_(0), next_index_(1)
21 Stringpool::~Stringpool()
23 for (std::list<Stringdata*>::iterator p = this->strings_.begin();
24 p != this->strings_.end();
25 ++p)
26 delete[] reinterpret_cast<char*>(*p);
29 // Hash function.
31 size_t
32 Stringpool::Stringpool_hash::operator()(const char* s) const
34 // Fowler/Noll/Vo (FNV) hash (type FNV-1a).
35 if (sizeof(size_t) == 8)
37 size_t result = static_cast<size_t>(14695981039346656037ULL);
38 while (*s != '\0')
40 result &= (size_t) *s++;
41 result *= 1099511628211ULL;
43 return result;
45 else
47 size_t result = 2166136261UL;
48 while (*s != '\0')
50 result ^= (size_t) *s++;
51 result *= 16777619UL;
53 return result;
57 // Add a string to the list of canonical strings. Return a pointer to
58 // the canonical string. If PKEY is not NULL, set *PKEY to the key.
60 const char*
61 Stringpool::add_string(const char* s, Key* pkey)
63 // The size we allocate for a new Stringdata.
64 const size_t buffer_size = 1000;
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);
70 size_t len = strlen(s);
72 size_t alc;
73 bool front = true;
74 if (len >= buffer_size)
76 alc = sizeof(Stringdata) + len;
77 front = false;
79 else if (this->strings_.empty())
80 alc = sizeof(Stringdata) + buffer_size;
81 else
83 Stringdata *psd = this->strings_.front();
84 if (len >= psd->alc - psd->len)
85 alc = sizeof(Stringdata) + buffer_size;
86 else
88 char* ret = psd->data + psd->len;
89 memcpy(ret, s, len + 1);
91 if (pkey != NULL)
92 *pkey = psd->index * key_mult + psd->len;
94 psd->len += len + 1;
96 return ret;
100 Stringdata *psd = reinterpret_cast<Stringdata*>(new char[alc]);
101 psd->alc = alc - sizeof(Stringdata);
102 memcpy(psd->data, s, len + 1);
103 psd->len = len + 1;
104 psd->index = this->next_index_;
105 ++this->next_index_;
107 if (pkey != NULL)
108 *pkey = psd->index * key_mult;
110 if (front)
111 this->strings_.push_front(psd);
112 else
113 this->strings_.push_back(psd);
115 return psd->data;
118 // Add a string to a string pool.
120 const char*
121 Stringpool::add(const char* s, Key* pkey)
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
125 // don't think there is a way to handle this correctly with
126 // unordered_map, so this should be replaced with custom code to do
127 // what we need, which is to return the empty slot.
129 String_set_type::const_iterator p = this->string_set_.find(s);
130 if (p != this->string_set_.end())
132 if (pkey != NULL)
133 *pkey = p->second.first;
134 return p->first;
137 Key k;
138 const char* ret = this->add_string(s, &k);
140 const off_t ozero = 0;
141 std::pair<const char*, Val> element(ret, std::make_pair(k, ozero));
142 std::pair<String_set_type::iterator, bool> ins =
143 this->string_set_.insert(element);
144 assert(ins.second);
146 if (pkey != NULL)
147 *pkey = k;
149 return ret;
152 // Add a prefix of a string to a string pool.
154 const char*
155 Stringpool::add(const char* s, size_t len, Key* pkey)
157 // FIXME: This implementation should be rewritten when we rewrite
158 // the hash table to avoid copying.
159 std::string st(s, len);
160 return this->add(st, pkey);
163 const char*
164 Stringpool::find(const char* s, Key* pkey) const
166 String_set_type::const_iterator p = this->string_set_.find(s);
167 if (p == this->string_set_.end())
168 return NULL;
170 if (pkey != NULL)
171 *pkey = p->second.first;
173 return p->first;
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.
187 bool
188 Stringpool::Stringpool_sort_comparison::operator()(
189 String_set_type::iterator it1,
190 String_set_type::iterator it2) const
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)
201 if (*p1 != *p2)
202 return *p1 > *p2;
204 return len1 > len2;
207 // Return whether s1 is a suffix of s2.
209 bool
210 Stringpool::is_suffix(const char* s1, const char* s2)
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;
219 // Turn the stringpool into an ELF strtab: determine the offsets of
220 // each string in the table.
222 void
223 Stringpool::set_string_offsets()
225 size_t count = this->string_set_.size();
227 std::vector<String_set_type::iterator> v;
228 v.reserve(count);
230 for (String_set_type::iterator p = this->string_set_.begin();
231 p != this->string_set_.end();
232 ++p)
233 v.push_back(p);
235 std::sort(v.begin(), v.end(), Stringpool_sort_comparison());
237 // Offset 0 is reserved for the empty string.
238 off_t offset = 1;
239 for (size_t i = 0; i < count; ++i)
241 if (v[i]->first[0] == '\0')
242 v[i]->second.second = 0;
243 else if (i > 0 && Stringpool::is_suffix(v[i]->first, v[i - 1]->first))
244 v[i]->second.second = (v[i - 1]->second.second
245 + strlen(v[i - 1]->first)
246 - strlen(v[i]->first));
247 else
249 v[i]->second.second = offset;
250 offset += strlen(v[i]->first) + 1;
254 this->strtab_size_ = offset;
257 // Get the offset of a string in the ELF strtab. The string must
258 // exist.
260 off_t
261 Stringpool::get_offset(const char* s) const
263 String_set_type::const_iterator p = this->string_set_.find(s);
264 if (p != this->string_set_.end())
265 return p->second.second;
266 abort();
269 // Write the ELF strtab into the output file at the specified offset.
271 void
272 Stringpool::write(Output_file* of, off_t offset)
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)
280 strcpy(view + p->second.second, p->first);
281 of->write_output_view(offset, this->strtab_size_, viewu);
284 } // End namespace gold.