Commit | Line | Data |
---|---|---|
b8e6aad9 ILT |
1 | // merge.cc -- handle section merging for gold |
2 | ||
2571583a | 3 | // Copyright (C) 2006-2017 Free Software Foundation, Inc. |
6cb15b7f ILT |
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 | ||
b8e6aad9 ILT |
23 | #include "gold.h" |
24 | ||
25 | #include <cstdlib> | |
87f95776 | 26 | #include <algorithm> |
b8e6aad9 ILT |
27 | |
28 | #include "merge.h" | |
a2e47362 | 29 | #include "compressed_output.h" |
b8e6aad9 ILT |
30 | |
31 | namespace gold | |
32 | { | |
33 | ||
a9a60db6 | 34 | // Class Object_merge_map. |
4625f782 ILT |
35 | |
36 | // Destructor. | |
37 | ||
38 | Object_merge_map::~Object_merge_map() | |
b8e6aad9 | 39 | { |
4625f782 ILT |
40 | for (Section_merge_maps::iterator p = this->section_merge_maps_.begin(); |
41 | p != this->section_merge_maps_.end(); | |
42 | ++p) | |
43 | delete p->second; | |
44 | } | |
45 | ||
46 | // Get the Input_merge_map to use for an input section, or NULL. | |
47 | ||
67f95b96 RÁE |
48 | const Object_merge_map::Input_merge_map* |
49 | Object_merge_map::get_input_merge_map(unsigned int shndx) const | |
4625f782 ILT |
50 | { |
51 | gold_assert(shndx != -1U); | |
400f8944 RÁE |
52 | const Section_merge_maps &maps = this->section_merge_maps_; |
53 | for (Section_merge_maps::const_iterator i = maps.begin(), e = maps.end(); | |
54 | i != e; ++i) | |
55 | { | |
56 | if (i->first == shndx) | |
57 | return i->second; | |
58 | } | |
4625f782 ILT |
59 | return NULL; |
60 | } | |
61 | ||
62 | // Get or create the Input_merge_map to use for an input section. | |
63 | ||
64 | Object_merge_map::Input_merge_map* | |
dbe40a88 RÁE |
65 | Object_merge_map::get_or_make_input_merge_map( |
66 | const Output_section_data* output_data, unsigned int shndx) { | |
4625f782 ILT |
67 | Input_merge_map* map = this->get_input_merge_map(shndx); |
68 | if (map != NULL) | |
69 | { | |
70 | // For a given input section in a given object, every mapping | |
1e983657 | 71 | // must be done with the same Merge_map. |
dbe40a88 | 72 | gold_assert(map->output_data == output_data); |
4625f782 ILT |
73 | return map; |
74 | } | |
75 | ||
4625f782 | 76 | Input_merge_map* new_map = new Input_merge_map; |
dbe40a88 | 77 | new_map->output_data = output_data; |
400f8944 RÁE |
78 | Section_merge_maps &maps = this->section_merge_maps_; |
79 | maps.push_back(std::make_pair(shndx, new_map)); | |
4625f782 ILT |
80 | return new_map; |
81 | } | |
82 | ||
83 | // Add a mapping. | |
84 | ||
85 | void | |
dbe40a88 RÁE |
86 | Object_merge_map::add_mapping(const Output_section_data* output_data, |
87 | unsigned int shndx, | |
8383303e ILT |
88 | section_offset_type input_offset, |
89 | section_size_type length, | |
90 | section_offset_type output_offset) | |
4625f782 | 91 | { |
dbe40a88 | 92 | Input_merge_map* map = this->get_or_make_input_merge_map(output_data, shndx); |
0916f9e7 RÁE |
93 | map->add_mapping(input_offset, length, output_offset); |
94 | } | |
4625f782 | 95 | |
0916f9e7 RÁE |
96 | void |
97 | Object_merge_map::Input_merge_map::add_mapping( | |
98 | section_offset_type input_offset, section_size_type length, | |
99 | section_offset_type output_offset) { | |
4625f782 | 100 | // Try to merge the new entry in the last one we saw. |
0916f9e7 | 101 | if (!this->entries.empty()) |
4625f782 | 102 | { |
0916f9e7 | 103 | Input_merge_entry& entry(this->entries.back()); |
4625f782 | 104 | |
8383303e ILT |
105 | // Use section_size_type to avoid signed/unsigned warnings. |
106 | section_size_type input_offset_u = input_offset; | |
107 | section_size_type output_offset_u = output_offset; | |
108 | ||
4625f782 ILT |
109 | // If this entry is not in order, we need to sort the vector |
110 | // before looking anything up. | |
8383303e | 111 | if (input_offset_u < entry.input_offset + entry.length) |
4625f782 | 112 | { |
8383303e ILT |
113 | gold_assert(input_offset < entry.input_offset); |
114 | gold_assert(input_offset_u + length | |
115 | <= static_cast<section_size_type>(entry.input_offset)); | |
0916f9e7 | 116 | this->sorted = false; |
4625f782 | 117 | } |
8383303e | 118 | else if (entry.input_offset + entry.length == input_offset_u |
4625f782 ILT |
119 | && (output_offset == -1 |
120 | ? entry.output_offset == -1 | |
8383303e | 121 | : entry.output_offset + entry.length == output_offset_u)) |
4625f782 ILT |
122 | { |
123 | entry.length += length; | |
124 | return; | |
125 | } | |
126 | } | |
127 | ||
128 | Input_merge_entry entry; | |
129 | entry.input_offset = input_offset; | |
130 | entry.length = length; | |
131 | entry.output_offset = output_offset; | |
0916f9e7 | 132 | this->entries.push_back(entry); |
4625f782 ILT |
133 | } |
134 | ||
135 | // Get the output offset for an input address. | |
136 | ||
780e49c5 | 137 | bool |
dbe40a88 | 138 | Object_merge_map::get_output_offset(unsigned int shndx, |
8383303e | 139 | section_offset_type input_offset, |
ca09d69a | 140 | section_offset_type* output_offset) |
4625f782 ILT |
141 | { |
142 | Input_merge_map* map = this->get_input_merge_map(shndx); | |
dbe40a88 | 143 | if (map == NULL) |
4625f782 ILT |
144 | return false; |
145 | ||
146 | if (!map->sorted) | |
147 | { | |
148 | std::sort(map->entries.begin(), map->entries.end(), | |
149 | Input_merge_compare()); | |
150 | map->sorted = true; | |
151 | } | |
152 | ||
153 | Input_merge_entry entry; | |
154 | entry.input_offset = input_offset; | |
155 | std::vector<Input_merge_entry>::const_iterator p = | |
45a4fb1a | 156 | std::upper_bound(map->entries.begin(), map->entries.end(), |
4625f782 | 157 | entry, Input_merge_compare()); |
45a4fb1a RÁE |
158 | if (p == map->entries.begin()) |
159 | return false; | |
160 | --p; | |
161 | gold_assert(p->input_offset <= input_offset); | |
4625f782 | 162 | |
8383303e ILT |
163 | if (input_offset - p->input_offset |
164 | >= static_cast<section_offset_type>(p->length)) | |
4625f782 ILT |
165 | return false; |
166 | ||
167 | *output_offset = p->output_offset; | |
168 | if (*output_offset != -1) | |
169 | *output_offset += (input_offset - p->input_offset); | |
170 | return true; | |
b8e6aad9 ILT |
171 | } |
172 | ||
a9a60db6 ILT |
173 | // Return whether this is the merge map for section SHNDX. |
174 | ||
67f95b96 RÁE |
175 | const Output_section_data* |
176 | Object_merge_map::find_merge_section(unsigned int shndx) const { | |
177 | const Object_merge_map::Input_merge_map* map = | |
178 | this->get_input_merge_map(shndx); | |
179 | if (map == NULL) | |
180 | return NULL; | |
181 | return map->output_data; | |
a9a60db6 ILT |
182 | } |
183 | ||
184 | // Initialize a mapping from input offsets to output addresses. | |
185 | ||
186 | template<int size> | |
187 | void | |
188 | Object_merge_map::initialize_input_to_output_map( | |
189 | unsigned int shndx, | |
190 | typename elfcpp::Elf_types<size>::Elf_Addr starting_address, | |
191 | Unordered_map<section_offset_type, | |
192 | typename elfcpp::Elf_types<size>::Elf_Addr>* initialize_map) | |
193 | { | |
194 | Input_merge_map* map = this->get_input_merge_map(shndx); | |
195 | gold_assert(map != NULL); | |
196 | ||
37c3b7b0 ILT |
197 | gold_assert(initialize_map->empty()); |
198 | // We know how many entries we are going to add. | |
199 | // reserve_unordered_map takes an expected count of buckets, not a | |
200 | // count of elements, so double it to try to reduce collisions. | |
201 | reserve_unordered_map(initialize_map, map->entries.size() * 2); | |
202 | ||
a9a60db6 ILT |
203 | for (Input_merge_map::Entries::const_iterator p = map->entries.begin(); |
204 | p != map->entries.end(); | |
205 | ++p) | |
206 | { | |
207 | section_offset_type output_offset = p->output_offset; | |
208 | if (output_offset != -1) | |
209 | output_offset += starting_address; | |
210 | else | |
211 | { | |
212 | // If we see a relocation against an address we have chosen | |
213 | // to discard, we relocate to zero. FIXME: We could also | |
214 | // issue a warning in this case; that would require | |
215 | // reporting this somehow and checking it in the routines in | |
216 | // reloc.h. | |
217 | output_offset = 0; | |
218 | } | |
219 | initialize_map->insert(std::make_pair(p->input_offset, output_offset)); | |
220 | } | |
221 | } | |
222 | ||
730cdc88 ILT |
223 | // Class Output_merge_base. |
224 | ||
225 | // Return the output offset for an input offset. The input address is | |
226 | // at offset OFFSET in section SHNDX in OBJECT. If we know the | |
227 | // offset, set *POUTPUT and return true. Otherwise return false. | |
228 | ||
229 | bool | |
230 | Output_merge_base::do_output_offset(const Relobj* object, | |
231 | unsigned int shndx, | |
2ea97941 | 232 | section_offset_type offset, |
8383303e | 233 | section_offset_type* poutput) const |
730cdc88 | 234 | { |
dbe40a88 | 235 | return object->merge_output_offset(shndx, offset, poutput); |
a9a60db6 ILT |
236 | } |
237 | ||
0439c796 DK |
238 | // Record a merged input section for script processing. |
239 | ||
240 | void | |
241 | Output_merge_base::record_input_section(Relobj* relobj, unsigned int shndx) | |
242 | { | |
243 | gold_assert(this->keeps_input_sections_ && relobj != NULL); | |
244 | // If this is the first input section, record it. We need do this because | |
245 | // this->input_sections_ is unordered. | |
246 | if (this->first_relobj_ == NULL) | |
247 | { | |
248 | this->first_relobj_ = relobj; | |
249 | this->first_shndx_ = shndx; | |
250 | } | |
251 | ||
252 | std::pair<Input_sections::iterator, bool> result = | |
253 | this->input_sections_.insert(Section_id(relobj, shndx)); | |
254 | // We should insert a merge section once only. | |
255 | gold_assert(result.second); | |
256 | } | |
257 | ||
730cdc88 ILT |
258 | // Class Output_merge_data. |
259 | ||
b8e6aad9 ILT |
260 | // Compute the hash code for a fixed-size constant. |
261 | ||
262 | size_t | |
263 | Output_merge_data::Merge_data_hash::operator()(Merge_data_key k) const | |
264 | { | |
265 | const unsigned char* p = this->pomd_->constant(k); | |
8383303e ILT |
266 | section_size_type entsize = |
267 | convert_to_section_size_type(this->pomd_->entsize()); | |
b8e6aad9 ILT |
268 | |
269 | // Fowler/Noll/Vo (FNV) hash (type FNV-1a). | |
270 | if (sizeof(size_t) == 8) | |
271 | { | |
272 | size_t result = static_cast<size_t>(14695981039346656037ULL); | |
8383303e | 273 | for (section_size_type i = 0; i < entsize; ++i) |
b8e6aad9 ILT |
274 | { |
275 | result &= (size_t) *p++; | |
276 | result *= 1099511628211ULL; | |
277 | } | |
278 | return result; | |
279 | } | |
280 | else | |
281 | { | |
282 | size_t result = 2166136261UL; | |
8383303e | 283 | for (section_size_type i = 0; i < entsize; ++i) |
b8e6aad9 ILT |
284 | { |
285 | result ^= (size_t) *p++; | |
286 | result *= 16777619UL; | |
287 | } | |
288 | return result; | |
289 | } | |
290 | } | |
291 | ||
292 | // Return whether one hash table key equals another. | |
293 | ||
294 | bool | |
295 | Output_merge_data::Merge_data_eq::operator()(Merge_data_key k1, | |
296 | Merge_data_key k2) const | |
297 | { | |
298 | const unsigned char* p1 = this->pomd_->constant(k1); | |
299 | const unsigned char* p2 = this->pomd_->constant(k2); | |
300 | return memcmp(p1, p2, this->pomd_->entsize()) == 0; | |
301 | } | |
302 | ||
303 | // Add a constant to the end of the section contents. | |
304 | ||
305 | void | |
306 | Output_merge_data::add_constant(const unsigned char* p) | |
307 | { | |
2ea97941 ILT |
308 | section_size_type entsize = convert_to_section_size_type(this->entsize()); |
309 | section_size_type addralign = | |
8383303e | 310 | convert_to_section_size_type(this->addralign()); |
2ea97941 | 311 | section_size_type addsize = std::max(entsize, addralign); |
87f95776 | 312 | if (this->len_ + addsize > this->alc_) |
b8e6aad9 ILT |
313 | { |
314 | if (this->alc_ == 0) | |
87f95776 | 315 | this->alc_ = 128 * addsize; |
b8e6aad9 ILT |
316 | else |
317 | this->alc_ *= 2; | |
318 | this->p_ = static_cast<unsigned char*>(realloc(this->p_, this->alc_)); | |
319 | if (this->p_ == NULL) | |
75f2446e | 320 | gold_nomem(); |
b8e6aad9 ILT |
321 | } |
322 | ||
2ea97941 ILT |
323 | memcpy(this->p_ + this->len_, p, entsize); |
324 | if (addsize > entsize) | |
325 | memset(this->p_ + this->len_ + entsize, 0, addsize - entsize); | |
87f95776 | 326 | this->len_ += addsize; |
b8e6aad9 ILT |
327 | } |
328 | ||
329 | // Add the input section SHNDX in OBJECT to a merged output section | |
330 | // which holds fixed length constants. Return whether we were able to | |
331 | // handle the section; if not, it will be linked as usual without | |
332 | // constant merging. | |
333 | ||
334 | bool | |
335 | Output_merge_data::do_add_input_section(Relobj* object, unsigned int shndx) | |
336 | { | |
8383303e | 337 | section_size_type len; |
5dd8762a CC |
338 | bool is_new; |
339 | const unsigned char* p = object->decompressed_section_contents(shndx, &len, | |
340 | &is_new); | |
a2e47362 | 341 | |
2ea97941 | 342 | section_size_type entsize = convert_to_section_size_type(this->entsize()); |
b8e6aad9 | 343 | |
2ea97941 | 344 | if (len % entsize != 0) |
a2e47362 | 345 | { |
5dd8762a CC |
346 | if (is_new) |
347 | delete[] p; | |
a2e47362 CC |
348 | return false; |
349 | } | |
b8e6aad9 | 350 | |
2ea97941 | 351 | this->input_count_ += len / entsize; |
38c5e8b4 | 352 | |
0916f9e7 RÁE |
353 | Object_merge_map* merge_map = object->get_or_create_merge_map(); |
354 | Object_merge_map::Input_merge_map* input_merge_map = | |
355 | merge_map->get_or_make_input_merge_map(this, shndx); | |
356 | ||
2ea97941 | 357 | for (section_size_type i = 0; i < len; i += entsize, p += entsize) |
b8e6aad9 ILT |
358 | { |
359 | // Add the constant to the section contents. If we find that it | |
360 | // is already in the hash table, we will remove it again. | |
361 | Merge_data_key k = this->len_; | |
362 | this->add_constant(p); | |
363 | ||
364 | std::pair<Merge_data_hashtable::iterator, bool> ins = | |
365 | this->hashtable_.insert(k); | |
366 | ||
367 | if (!ins.second) | |
368 | { | |
369 | // Key was already present. Remove the copy we just added. | |
2ea97941 | 370 | this->len_ -= entsize; |
b8e6aad9 ILT |
371 | k = *ins.first; |
372 | } | |
373 | ||
374 | // Record the offset of this constant in the output section. | |
0916f9e7 | 375 | input_merge_map->add_mapping(i, entsize, k); |
b8e6aad9 ILT |
376 | } |
377 | ||
0439c796 DK |
378 | // For script processing, we keep the input sections. |
379 | if (this->keeps_input_sections()) | |
380 | record_input_section(object, shndx); | |
381 | ||
5dd8762a CC |
382 | if (is_new) |
383 | delete[] p; | |
a2e47362 | 384 | |
b8e6aad9 ILT |
385 | return true; |
386 | } | |
387 | ||
388 | // Set the final data size in a merged output section with fixed size | |
389 | // constants. | |
390 | ||
391 | void | |
27bc2bce | 392 | Output_merge_data::set_final_data_size() |
b8e6aad9 ILT |
393 | { |
394 | // Release the memory we don't need. | |
395 | this->p_ = static_cast<unsigned char*>(realloc(this->p_, this->len_)); | |
6bf924b0 DK |
396 | // An Output_merge_data object may be empty and realloc is allowed |
397 | // to return a NULL pointer in this case. An Output_merge_data is empty | |
398 | // if all its input sections have sizes that are not multiples of entsize. | |
399 | gold_assert(this->p_ != NULL || this->len_ == 0); | |
b8e6aad9 ILT |
400 | this->set_data_size(this->len_); |
401 | } | |
402 | ||
403 | // Write the data of a merged output section with fixed size constants | |
404 | // to the file. | |
405 | ||
406 | void | |
407 | Output_merge_data::do_write(Output_file* of) | |
408 | { | |
409 | of->write(this->offset(), this->p_, this->len_); | |
410 | } | |
411 | ||
96803768 ILT |
412 | // Write the data to a buffer. |
413 | ||
414 | void | |
415 | Output_merge_data::do_write_to_buffer(unsigned char* buffer) | |
416 | { | |
417 | memcpy(buffer, this->p_, this->len_); | |
418 | } | |
419 | ||
38c5e8b4 ILT |
420 | // Print merge stats to stderr. |
421 | ||
422 | void | |
423 | Output_merge_data::do_print_merge_stats(const char* section_name) | |
424 | { | |
425 | fprintf(stderr, | |
426 | _("%s: %s merged constants size: %lu; input: %zu; output: %zu\n"), | |
427 | program_name, section_name, | |
428 | static_cast<unsigned long>(this->entsize()), | |
429 | this->input_count_, this->hashtable_.size()); | |
430 | } | |
431 | ||
730cdc88 ILT |
432 | // Class Output_merge_string. |
433 | ||
b8e6aad9 ILT |
434 | // Add an input section to a merged string section. |
435 | ||
436 | template<typename Char_type> | |
437 | bool | |
438 | Output_merge_string<Char_type>::do_add_input_section(Relobj* object, | |
439 | unsigned int shndx) | |
440 | { | |
f31ae5b8 | 441 | section_size_type sec_len; |
5dd8762a CC |
442 | bool is_new; |
443 | const unsigned char* pdata = object->decompressed_section_contents(shndx, | |
f31ae5b8 | 444 | &sec_len, |
5dd8762a | 445 | &is_new); |
a2e47362 | 446 | |
b8e6aad9 | 447 | const Char_type* p = reinterpret_cast<const Char_type*>(pdata); |
f31ae5b8 | 448 | const Char_type* pend = p + sec_len / sizeof(Char_type); |
fef830db | 449 | const Char_type* pend0 = pend; |
b8e6aad9 | 450 | |
f31ae5b8 | 451 | if (sec_len % sizeof(Char_type) != 0) |
b8e6aad9 | 452 | { |
75f2446e ILT |
453 | object->error(_("mergeable string section length not multiple of " |
454 | "character size")); | |
5dd8762a CC |
455 | if (is_new) |
456 | delete[] pdata; | |
75f2446e | 457 | return false; |
b8e6aad9 | 458 | } |
b8e6aad9 | 459 | |
fef830db CC |
460 | if (pend[-1] != 0) |
461 | { | |
462 | gold_warning(_("%s: last entry in mergeable string section '%s' " | |
463 | "not null terminated"), | |
464 | object->name().c_str(), | |
465 | object->section_name(shndx).c_str()); | |
466 | // Find the end of the last NULL-terminated string in the buffer. | |
467 | while (pend0 > p && pend0[-1] != 0) | |
468 | --pend0; | |
469 | } | |
38c5e8b4 | 470 | |
76897331 CC |
471 | Merged_strings_list* merged_strings_list = |
472 | new Merged_strings_list(object, shndx); | |
473 | this->merged_strings_lists_.push_back(merged_strings_list); | |
474 | Merged_strings& merged_strings = merged_strings_list->merged_strings; | |
475 | ||
e31908b6 | 476 | // Count the number of non-null strings in the section and size the list. |
fef830db | 477 | size_t count = 0; |
f31ae5b8 AM |
478 | const Char_type* pt = p; |
479 | while (pt < pend0) | |
480 | { | |
481 | size_t len = string_length(pt); | |
482 | if (len != 0) | |
483 | ++count; | |
484 | pt += len + 1; | |
485 | } | |
fef830db CC |
486 | if (pend0 < pend) |
487 | ++count; | |
488 | merged_strings.reserve(count + 1); | |
489 | ||
fa1bd4fb | 490 | // The index I is in bytes, not characters. |
8383303e | 491 | section_size_type i = 0; |
e31908b6 CC |
492 | |
493 | // We assume here that the beginning of the section is correctly | |
494 | // aligned, so each string within the section must retain the same | |
495 | // modulo. | |
496 | uintptr_t init_align_modulo = (reinterpret_cast<uintptr_t>(pdata) | |
497 | & (this->addralign() - 1)); | |
498 | bool has_misaligned_strings = false; | |
499 | ||
b39b8b9d | 500 | while (p < pend) |
b8e6aad9 | 501 | { |
b39b8b9d | 502 | size_t len = p < pend0 ? string_length(p) : pend - p; |
fef830db | 503 | |
d3a7cd45 L |
504 | // Within merge input section each string must be aligned. |
505 | if (len != 0 | |
506 | && ((reinterpret_cast<uintptr_t>(p) & (this->addralign() - 1)) | |
507 | != init_align_modulo)) | |
508 | has_misaligned_strings = true; | |
fef830db | 509 | |
d3a7cd45 L |
510 | Stringpool::Key key; |
511 | this->stringpool_.add_with_length(p, len, true, &key); | |
fef830db | 512 | |
d3a7cd45 | 513 | merged_strings.push_back(Merged_string(i, key)); |
fef830db CC |
514 | p += len + 1; |
515 | i += (len + 1) * sizeof(Char_type); | |
516 | } | |
b8e6aad9 | 517 | |
76897331 CC |
518 | // Record the last offset in the input section so that we can |
519 | // compute the length of the last string. | |
520 | merged_strings.push_back(Merged_string(i, 0)); | |
521 | ||
38c5e8b4 | 522 | this->input_count_ += count; |
f31ae5b8 | 523 | this->input_size_ += i; |
38c5e8b4 | 524 | |
e31908b6 CC |
525 | if (has_misaligned_strings) |
526 | gold_warning(_("%s: section %s contains incorrectly aligned strings;" | |
527 | " the alignment of those strings won't be preserved"), | |
528 | object->name().c_str(), | |
529 | object->section_name(shndx).c_str()); | |
530 | ||
0439c796 DK |
531 | // For script processing, we keep the input sections. |
532 | if (this->keeps_input_sections()) | |
533 | record_input_section(object, shndx); | |
534 | ||
5dd8762a CC |
535 | if (is_new) |
536 | delete[] pdata; | |
a2e47362 | 537 | |
b8e6aad9 ILT |
538 | return true; |
539 | } | |
540 | ||
9a0910c3 ILT |
541 | // Finalize the mappings from the input sections to the output |
542 | // section, and return the final data size. | |
b8e6aad9 ILT |
543 | |
544 | template<typename Char_type> | |
8383303e | 545 | section_size_type |
9a0910c3 | 546 | Output_merge_string<Char_type>::finalize_merged_data() |
b8e6aad9 ILT |
547 | { |
548 | this->stringpool_.set_string_offsets(); | |
549 | ||
76897331 CC |
550 | for (typename Merged_strings_lists::const_iterator l = |
551 | this->merged_strings_lists_.begin(); | |
552 | l != this->merged_strings_lists_.end(); | |
553 | ++l) | |
c0873094 | 554 | { |
76897331 CC |
555 | section_offset_type last_input_offset = 0; |
556 | section_offset_type last_output_offset = 0; | |
0916f9e7 RÁE |
557 | Relobj *object = (*l)->object; |
558 | Object_merge_map* merge_map = object->get_or_create_merge_map(); | |
559 | Object_merge_map::Input_merge_map* input_merge_map = | |
560 | merge_map->get_or_make_input_merge_map(this, (*l)->shndx); | |
561 | ||
76897331 CC |
562 | for (typename Merged_strings::const_iterator p = |
563 | (*l)->merged_strings.begin(); | |
564 | p != (*l)->merged_strings.end(); | |
565 | ++p) | |
566 | { | |
567 | section_size_type length = p->offset - last_input_offset; | |
568 | if (length > 0) | |
0916f9e7 RÁE |
569 | input_merge_map->add_mapping(last_input_offset, length, |
570 | last_output_offset); | |
76897331 CC |
571 | last_input_offset = p->offset; |
572 | if (p->stringpool_key != 0) | |
573 | last_output_offset = | |
574 | this->stringpool_.get_offset_from_key(p->stringpool_key); | |
575 | } | |
576 | delete *l; | |
c0873094 | 577 | } |
b8e6aad9 | 578 | |
1d6531cf ILT |
579 | // Save some memory. This also ensures that this function will work |
580 | // if called twice, as may happen if Layout::set_segment_offsets | |
581 | // finds a better alignment. | |
76897331 | 582 | this->merged_strings_lists_.clear(); |
9a0910c3 ILT |
583 | |
584 | return this->stringpool_.get_strtab_size(); | |
585 | } | |
586 | ||
587 | template<typename Char_type> | |
588 | void | |
589 | Output_merge_string<Char_type>::set_final_data_size() | |
590 | { | |
591 | const off_t final_data_size = this->finalize_merged_data(); | |
592 | this->set_data_size(final_data_size); | |
b8e6aad9 ILT |
593 | } |
594 | ||
595 | // Write out a merged string section. | |
596 | ||
597 | template<typename Char_type> | |
598 | void | |
599 | Output_merge_string<Char_type>::do_write(Output_file* of) | |
600 | { | |
601 | this->stringpool_.write(of, this->offset()); | |
602 | } | |
603 | ||
96803768 ILT |
604 | // Write a merged string section to a buffer. |
605 | ||
606 | template<typename Char_type> | |
607 | void | |
608 | Output_merge_string<Char_type>::do_write_to_buffer(unsigned char* buffer) | |
609 | { | |
610 | this->stringpool_.write_to_buffer(buffer, this->data_size()); | |
611 | } | |
612 | ||
38c5e8b4 ILT |
613 | // Return the name of the types of string to use with |
614 | // do_print_merge_stats. | |
615 | ||
616 | template<typename Char_type> | |
617 | const char* | |
618 | Output_merge_string<Char_type>::string_name() | |
619 | { | |
620 | gold_unreachable(); | |
621 | return NULL; | |
622 | } | |
623 | ||
624 | template<> | |
625 | const char* | |
626 | Output_merge_string<char>::string_name() | |
627 | { | |
628 | return "strings"; | |
629 | } | |
630 | ||
631 | template<> | |
632 | const char* | |
633 | Output_merge_string<uint16_t>::string_name() | |
634 | { | |
635 | return "16-bit strings"; | |
636 | } | |
637 | ||
638 | template<> | |
639 | const char* | |
640 | Output_merge_string<uint32_t>::string_name() | |
641 | { | |
642 | return "32-bit strings"; | |
643 | } | |
644 | ||
645 | // Print merge stats to stderr. | |
646 | ||
647 | template<typename Char_type> | |
648 | void | |
649 | Output_merge_string<Char_type>::do_print_merge_stats(const char* section_name) | |
650 | { | |
651 | char buf[200]; | |
652 | snprintf(buf, sizeof buf, "%s merged %s", section_name, this->string_name()); | |
fef830db CC |
653 | fprintf(stderr, _("%s: %s input bytes: %zu\n"), |
654 | program_name, buf, this->input_size_); | |
655 | fprintf(stderr, _("%s: %s input strings: %zu\n"), | |
38c5e8b4 ILT |
656 | program_name, buf, this->input_count_); |
657 | this->stringpool_.print_stats(buf); | |
658 | } | |
659 | ||
b8e6aad9 ILT |
660 | // Instantiate the templates we need. |
661 | ||
662 | template | |
663 | class Output_merge_string<char>; | |
664 | ||
665 | template | |
666 | class Output_merge_string<uint16_t>; | |
667 | ||
668 | template | |
669 | class Output_merge_string<uint32_t>; | |
670 | ||
a9a60db6 ILT |
671 | #if defined(HAVE_TARGET_32_LITTLE) || defined(HAVE_TARGET_32_BIG) |
672 | template | |
673 | void | |
674 | Object_merge_map::initialize_input_to_output_map<32>( | |
675 | unsigned int shndx, | |
676 | elfcpp::Elf_types<32>::Elf_Addr starting_address, | |
677 | Unordered_map<section_offset_type, elfcpp::Elf_types<32>::Elf_Addr>*); | |
678 | #endif | |
679 | ||
680 | #if defined(HAVE_TARGET_64_LITTLE) || defined(HAVE_TARGET_64_BIG) | |
681 | template | |
682 | void | |
683 | Object_merge_map::initialize_input_to_output_map<64>( | |
684 | unsigned int shndx, | |
685 | elfcpp::Elf_types<64>::Elf_Addr starting_address, | |
686 | Unordered_map<section_offset_type, elfcpp::Elf_types<64>::Elf_Addr>*); | |
687 | #endif | |
688 | ||
b8e6aad9 | 689 | } // End namespace gold. |