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