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