2006-08-19 00:29:20 +02:00
|
|
|
// stringpool.cc -- a string pool for gold
|
|
|
|
|
|
|
|
#include "gold.h"
|
|
|
|
|
|
|
|
#include <cstring>
|
2006-09-29 21:58:17 +02:00
|
|
|
#include <algorithm>
|
|
|
|
#include <vector>
|
2006-08-19 00:29:20 +02:00
|
|
|
|
2006-09-29 21:58:17 +02:00
|
|
|
#include "output.h"
|
2006-08-19 00:29:20 +02:00
|
|
|
#include "stringpool.h"
|
|
|
|
|
|
|
|
namespace gold
|
|
|
|
{
|
|
|
|
|
|
|
|
Stringpool::Stringpool()
|
2006-11-07 05:40:46 +01:00
|
|
|
: string_set_(), strings_(), strtab_size_(0), next_index_(1)
|
2006-08-19 00:29:20 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Stringpool::~Stringpool()
|
|
|
|
{
|
2006-09-29 21:58:17 +02:00
|
|
|
for (std::list<Stringdata*>::iterator p = this->strings_.begin();
|
2006-08-19 00:29:20 +02:00
|
|
|
p != this->strings_.end();
|
|
|
|
++p)
|
|
|
|
delete[] reinterpret_cast<char*>(*p);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Hash function.
|
|
|
|
|
|
|
|
size_t
|
|
|
|
Stringpool::Stringpool_hash::operator()(const char* s) const
|
|
|
|
{
|
|
|
|
// Fowler/Noll/Vo (FNV) hash (type FNV-1a).
|
|
|
|
if (sizeof(size_t) == 8)
|
|
|
|
{
|
2006-09-26 23:53:18 +02:00
|
|
|
size_t result = static_cast<size_t>(14695981039346656037ULL);
|
2006-08-19 00:29:20 +02:00
|
|
|
while (*s != '\0')
|
|
|
|
{
|
|
|
|
result &= (size_t) *s++;
|
|
|
|
result *= 1099511628211ULL;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
size_t result = 2166136261UL;
|
|
|
|
while (*s != '\0')
|
|
|
|
{
|
|
|
|
result ^= (size_t) *s++;
|
|
|
|
result *= 16777619UL;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add a string to the list of canonical strings. Return a pointer to
|
2006-11-07 05:40:46 +01:00
|
|
|
// the canonical string. If PKEY is not NULL, set *PKEY to the key.
|
2006-08-19 00:29:20 +02:00
|
|
|
|
|
|
|
const char*
|
2006-11-07 05:40:46 +01:00
|
|
|
Stringpool::add_string(const char* s, Key* pkey)
|
2006-08-19 00:29:20 +02:00
|
|
|
{
|
2006-11-29 18:56:40 +01:00
|
|
|
// We are in trouble if we've already computed the string offsets.
|
|
|
|
gold_assert(this->strtab_size_ == 0);
|
|
|
|
|
2006-11-07 05:40:46 +01:00
|
|
|
// The size we allocate for a new Stringdata.
|
2006-08-19 00:29:20 +02:00
|
|
|
const size_t buffer_size = 1000;
|
2006-11-07 05:40:46 +01:00
|
|
|
// The amount we multiply the Stringdata index when calculating the
|
|
|
|
// key.
|
|
|
|
const size_t key_mult = 1024;
|
2006-11-29 18:56:40 +01:00
|
|
|
gold_assert(key_mult >= buffer_size);
|
2006-11-07 05:40:46 +01:00
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
size_t len = strlen(s);
|
|
|
|
|
|
|
|
size_t alc;
|
|
|
|
bool front = true;
|
|
|
|
if (len >= buffer_size)
|
|
|
|
{
|
2006-09-29 21:58:17 +02:00
|
|
|
alc = sizeof(Stringdata) + len;
|
2006-08-19 00:29:20 +02:00
|
|
|
front = false;
|
|
|
|
}
|
|
|
|
else if (this->strings_.empty())
|
2006-09-29 21:58:17 +02:00
|
|
|
alc = sizeof(Stringdata) + buffer_size;
|
2006-08-19 00:29:20 +02:00
|
|
|
else
|
|
|
|
{
|
2006-09-29 21:58:17 +02:00
|
|
|
Stringdata *psd = this->strings_.front();
|
2006-08-19 00:29:20 +02:00
|
|
|
if (len >= psd->alc - psd->len)
|
2006-09-29 21:58:17 +02:00
|
|
|
alc = sizeof(Stringdata) + buffer_size;
|
2006-08-19 00:29:20 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
char* ret = psd->data + psd->len;
|
|
|
|
memcpy(ret, s, len + 1);
|
2006-11-07 05:40:46 +01:00
|
|
|
|
|
|
|
if (pkey != NULL)
|
|
|
|
*pkey = psd->index * key_mult + psd->len;
|
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
psd->len += len + 1;
|
2006-11-07 05:40:46 +01:00
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-29 21:58:17 +02:00
|
|
|
Stringdata *psd = reinterpret_cast<Stringdata*>(new char[alc]);
|
|
|
|
psd->alc = alc - sizeof(Stringdata);
|
2006-08-19 00:29:20 +02:00
|
|
|
memcpy(psd->data, s, len + 1);
|
|
|
|
psd->len = len + 1;
|
2006-11-07 05:40:46 +01:00
|
|
|
psd->index = this->next_index_;
|
|
|
|
++this->next_index_;
|
|
|
|
|
|
|
|
if (pkey != NULL)
|
|
|
|
*pkey = psd->index * key_mult;
|
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
if (front)
|
|
|
|
this->strings_.push_front(psd);
|
|
|
|
else
|
|
|
|
this->strings_.push_back(psd);
|
2006-11-07 05:40:46 +01:00
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
return psd->data;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add a string to a string pool.
|
|
|
|
|
|
|
|
const char*
|
2006-11-07 05:40:46 +01:00
|
|
|
Stringpool::add(const char* s, Key* pkey)
|
2006-08-19 00:29:20 +02:00
|
|
|
{
|
|
|
|
// FIXME: This will look up the entry twice in the hash table. The
|
|
|
|
// problem is that we can't insert S before we canonicalize it. I
|
2006-09-22 00:13:18 +02:00
|
|
|
// don't think there is a way to handle this correctly with
|
2006-09-29 21:58:17 +02:00
|
|
|
// unordered_map, so this should be replaced with custom code to do
|
2006-08-19 00:29:20 +02:00
|
|
|
// what we need, which is to return the empty slot.
|
|
|
|
|
|
|
|
String_set_type::const_iterator p = this->string_set_.find(s);
|
|
|
|
if (p != this->string_set_.end())
|
2006-11-07 05:40:46 +01:00
|
|
|
{
|
|
|
|
if (pkey != NULL)
|
|
|
|
*pkey = p->second.first;
|
|
|
|
return p->first;
|
|
|
|
}
|
2006-08-19 00:29:20 +02:00
|
|
|
|
2006-11-07 05:40:46 +01:00
|
|
|
Key k;
|
|
|
|
const char* ret = this->add_string(s, &k);
|
|
|
|
|
|
|
|
const off_t ozero = 0;
|
|
|
|
std::pair<const char*, Val> element(ret, std::make_pair(k, ozero));
|
2006-08-19 00:29:20 +02:00
|
|
|
std::pair<String_set_type::iterator, bool> ins =
|
2006-11-07 05:40:46 +01:00
|
|
|
this->string_set_.insert(element);
|
2006-11-29 18:56:40 +01:00
|
|
|
gold_assert(ins.second);
|
2006-11-07 05:40:46 +01:00
|
|
|
|
|
|
|
if (pkey != NULL)
|
|
|
|
*pkey = k;
|
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add a prefix of a string to a string pool.
|
|
|
|
|
|
|
|
const char*
|
2006-11-07 05:40:46 +01:00
|
|
|
Stringpool::add(const char* s, size_t len, Key* pkey)
|
2006-08-19 00:29:20 +02:00
|
|
|
{
|
|
|
|
// FIXME: This implementation should be rewritten when we rewrite
|
|
|
|
// the hash table to avoid copying.
|
|
|
|
std::string st(s, len);
|
2006-11-07 05:40:46 +01:00
|
|
|
return this->add(st, pkey);
|
2006-08-19 00:29:20 +02:00
|
|
|
}
|
|
|
|
|
2006-09-29 21:58:17 +02:00
|
|
|
const char*
|
2006-11-07 05:40:46 +01:00
|
|
|
Stringpool::find(const char* s, Key* pkey) const
|
2006-09-29 21:58:17 +02:00
|
|
|
{
|
|
|
|
String_set_type::const_iterator p = this->string_set_.find(s);
|
|
|
|
if (p == this->string_set_.end())
|
|
|
|
return NULL;
|
2006-11-07 05:40:46 +01:00
|
|
|
|
|
|
|
if (pkey != NULL)
|
|
|
|
*pkey = p->second.first;
|
|
|
|
|
2006-09-29 21:58:17 +02:00
|
|
|
return p->first;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Comparison routine used when sorting into an ELF strtab. We want
|
|
|
|
// to sort this so that when one string is a suffix of another, we
|
|
|
|
// always see the shorter string immediately after the longer string.
|
|
|
|
// For example, we want to see these strings in this order:
|
|
|
|
// abcd
|
|
|
|
// cd
|
|
|
|
// d
|
|
|
|
// When strings are not suffixes, we don't care what order they are
|
|
|
|
// in, but we need to ensure that suffixes wind up next to each other.
|
|
|
|
// So we do a reversed lexicographic sort on the reversed string.
|
|
|
|
|
|
|
|
bool
|
|
|
|
Stringpool::Stringpool_sort_comparison::operator()(
|
|
|
|
String_set_type::iterator it1,
|
|
|
|
String_set_type::iterator it2) const
|
|
|
|
{
|
|
|
|
const char* s1 = it1->first;
|
|
|
|
const char* s2 = it2->first;
|
|
|
|
int len1 = strlen(s1);
|
|
|
|
int len2 = strlen(s2);
|
|
|
|
int minlen = len1 < len2 ? len1 : len2;
|
|
|
|
const char* p1 = s1 + len1 - 1;
|
|
|
|
const char* p2 = s2 + len2 - 1;
|
|
|
|
for (int i = minlen - 1; i >= 0; --i, --p1, --p2)
|
|
|
|
{
|
|
|
|
if (*p1 != *p2)
|
|
|
|
return *p1 > *p2;
|
|
|
|
}
|
|
|
|
return len1 > len2;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return whether s1 is a suffix of s2.
|
|
|
|
|
|
|
|
bool
|
|
|
|
Stringpool::is_suffix(const char* s1, const char* s2)
|
|
|
|
{
|
|
|
|
size_t len1 = strlen(s1);
|
|
|
|
size_t len2 = strlen(s2);
|
|
|
|
if (len1 > len2)
|
|
|
|
return false;
|
|
|
|
return strcmp(s1, s2 + len2 - len1) == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Turn the stringpool into an ELF strtab: determine the offsets of
|
|
|
|
// each string in the table.
|
|
|
|
|
|
|
|
void
|
|
|
|
Stringpool::set_string_offsets()
|
|
|
|
{
|
2006-11-29 18:56:40 +01:00
|
|
|
if (this->strtab_size_ != 0)
|
|
|
|
{
|
|
|
|
// We've already computed the offsets.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-09-29 21:58:17 +02:00
|
|
|
size_t count = this->string_set_.size();
|
|
|
|
|
|
|
|
std::vector<String_set_type::iterator> v;
|
|
|
|
v.reserve(count);
|
|
|
|
|
|
|
|
for (String_set_type::iterator p = this->string_set_.begin();
|
|
|
|
p != this->string_set_.end();
|
|
|
|
++p)
|
|
|
|
v.push_back(p);
|
|
|
|
|
|
|
|
std::sort(v.begin(), v.end(), Stringpool_sort_comparison());
|
|
|
|
|
|
|
|
// Offset 0 is reserved for the empty string.
|
|
|
|
off_t offset = 1;
|
|
|
|
for (size_t i = 0; i < count; ++i)
|
|
|
|
{
|
|
|
|
if (v[i]->first[0] == '\0')
|
2006-11-07 05:40:46 +01:00
|
|
|
v[i]->second.second = 0;
|
2006-09-29 21:58:17 +02:00
|
|
|
else if (i > 0 && Stringpool::is_suffix(v[i]->first, v[i - 1]->first))
|
2006-11-07 05:40:46 +01:00
|
|
|
v[i]->second.second = (v[i - 1]->second.second
|
|
|
|
+ strlen(v[i - 1]->first)
|
|
|
|
- strlen(v[i]->first));
|
2006-09-29 21:58:17 +02:00
|
|
|
else
|
|
|
|
{
|
2006-11-07 05:40:46 +01:00
|
|
|
v[i]->second.second = offset;
|
2006-09-29 21:58:17 +02:00
|
|
|
offset += strlen(v[i]->first) + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this->strtab_size_ = offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the offset of a string in the ELF strtab. The string must
|
|
|
|
// exist.
|
|
|
|
|
|
|
|
off_t
|
|
|
|
Stringpool::get_offset(const char* s) const
|
|
|
|
{
|
2006-11-29 18:56:40 +01:00
|
|
|
gold_assert(this->strtab_size_ != 0);
|
2006-09-29 21:58:17 +02:00
|
|
|
String_set_type::const_iterator p = this->string_set_.find(s);
|
|
|
|
if (p != this->string_set_.end())
|
2006-11-07 05:40:46 +01:00
|
|
|
return p->second.second;
|
2006-11-29 18:56:40 +01:00
|
|
|
gold_unreachable();
|
2006-09-29 21:58:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Write the ELF strtab into the output file at the specified offset.
|
|
|
|
|
|
|
|
void
|
|
|
|
Stringpool::write(Output_file* of, off_t offset)
|
|
|
|
{
|
2006-11-29 18:56:40 +01:00
|
|
|
gold_assert(this->strtab_size_ != 0);
|
2006-09-29 21:58:17 +02:00
|
|
|
unsigned char* viewu = of->get_output_view(offset, this->strtab_size_);
|
|
|
|
char* view = reinterpret_cast<char*>(viewu);
|
|
|
|
view[0] = '\0';
|
|
|
|
for (String_set_type::const_iterator p = this->string_set_.begin();
|
|
|
|
p != this->string_set_.end();
|
|
|
|
++p)
|
2006-11-07 05:40:46 +01:00
|
|
|
strcpy(view + p->second.second, p->first);
|
2006-09-29 21:58:17 +02:00
|
|
|
of->write_output_view(offset, this->strtab_size_, viewu);
|
|
|
|
}
|
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
} // End namespace gold.
|