Fix ehframe header handling for shared libraries.
[external/binutils.git] / gold / layout.cc
1 // layout.cc -- lay out output file sections for gold
2
3 // Copyright 2006, 2007 Free Software Foundation, Inc.
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
23 #include "gold.h"
24
25 #include <cstring>
26 #include <algorithm>
27 #include <iostream>
28 #include <utility>
29
30 #include "parameters.h"
31 #include "output.h"
32 #include "symtab.h"
33 #include "dynobj.h"
34 #include "ehframe.h"
35 #include "compressed_output.h"
36 #include "layout.h"
37
38 namespace gold
39 {
40
41 // Layout_task_runner methods.
42
43 // Lay out the sections.  This is called after all the input objects
44 // have been read.
45
46 void
47 Layout_task_runner::run(Workqueue* workqueue)
48 {
49   off_t file_size = this->layout_->finalize(this->input_objects_,
50                                             this->symtab_);
51
52   // Now we know the final size of the output file and we know where
53   // each piece of information goes.
54   Output_file* of = new Output_file(this->options_,
55                                     this->input_objects_->target());
56   of->open(file_size);
57
58   // Queue up the final set of tasks.
59   gold::queue_final_tasks(this->options_, this->input_objects_,
60                           this->symtab_, this->layout_, workqueue, of);
61 }
62
63 // Layout methods.
64
65 Layout::Layout(const General_options& options)
66   : options_(options), namepool_(), sympool_(), dynpool_(), signatures_(),
67     section_name_map_(), segment_list_(), section_list_(),
68     unattached_section_list_(), special_output_list_(),
69     section_headers_(NULL), tls_segment_(NULL), symtab_section_(NULL),
70     dynsym_section_(NULL), dynamic_section_(NULL), dynamic_data_(NULL),
71     eh_frame_section_(NULL), output_file_size_(-1),
72     input_requires_executable_stack_(false),
73     input_with_gnu_stack_note_(false),
74     input_without_gnu_stack_note_(false)
75 {
76   // Make space for more than enough segments for a typical file.
77   // This is just for efficiency--it's OK if we wind up needing more.
78   this->segment_list_.reserve(12);
79
80   // We expect two unattached Output_data objects: the file header and
81   // the segment headers.
82   this->special_output_list_.reserve(2);
83 }
84
85 // Hash a key we use to look up an output section mapping.
86
87 size_t
88 Layout::Hash_key::operator()(const Layout::Key& k) const
89 {
90  return k.first + k.second.first + k.second.second;
91 }
92
93 // Return whether PREFIX is a prefix of STR.
94
95 static inline bool
96 is_prefix_of(const char* prefix, const char* str)
97 {
98   return strncmp(prefix, str, strlen(prefix)) == 0;
99 }
100
101 // Returns whether the given section is in the list of
102 // debug-sections-used-by-some-version-of-gdb.  Currently,
103 // we've checked versions of gdb up to and including 6.7.1.
104
105 static const char* gdb_sections[] =
106 { ".debug_abbrev",
107   // ".debug_aranges",   // not used by gdb as of 6.7.1
108   ".debug_frame",
109   ".debug_info",
110   ".debug_line",
111   ".debug_loc",
112   ".debug_macinfo",
113   // ".debug_pubnames",  // not used by gdb as of 6.7.1
114   ".debug_ranges",
115   ".debug_str",
116 };
117
118 static inline bool
119 is_gdb_debug_section(const char* str)
120 {
121   // We can do this faster: binary search or a hashtable.  But why bother?
122   for (size_t i = 0; i < sizeof(gdb_sections)/sizeof(*gdb_sections); ++i)
123     if (strcmp(str, gdb_sections[i]) == 0)
124       return true;
125   return false;
126 }
127
128 // Whether to include this section in the link.
129
130 template<int size, bool big_endian>
131 bool
132 Layout::include_section(Sized_relobj<size, big_endian>*, const char* name,
133                         const elfcpp::Shdr<size, big_endian>& shdr)
134 {
135   // Some section types are never linked.  Some are only linked when
136   // doing a relocateable link.
137   switch (shdr.get_sh_type())
138     {
139     case elfcpp::SHT_NULL:
140     case elfcpp::SHT_SYMTAB:
141     case elfcpp::SHT_DYNSYM:
142     case elfcpp::SHT_STRTAB:
143     case elfcpp::SHT_HASH:
144     case elfcpp::SHT_DYNAMIC:
145     case elfcpp::SHT_SYMTAB_SHNDX:
146       return false;
147
148     case elfcpp::SHT_RELA:
149     case elfcpp::SHT_REL:
150     case elfcpp::SHT_GROUP:
151       return parameters->output_is_object();
152
153     case elfcpp::SHT_PROGBITS:
154       if (parameters->strip_debug()
155           && (shdr.get_sh_flags() & elfcpp::SHF_ALLOC) == 0)
156         {
157           // Debugging sections can only be recognized by name.
158           if (is_prefix_of(".debug", name)
159               || is_prefix_of(".gnu.linkonce.wi.", name)
160               || is_prefix_of(".line", name)
161               || is_prefix_of(".stab", name))
162             return false;
163         }
164       if (parameters->strip_debug_gdb()
165           && (shdr.get_sh_flags() & elfcpp::SHF_ALLOC) == 0)
166         {
167           // Debugging sections can only be recognized by name.
168           if (is_prefix_of(".debug", name)
169               && !is_gdb_debug_section(name))
170             return false;
171         }
172       return true;
173
174     default:
175       return true;
176     }
177 }
178
179 // Return an output section named NAME, or NULL if there is none.
180
181 Output_section*
182 Layout::find_output_section(const char* name) const
183 {
184   for (Section_name_map::const_iterator p = this->section_name_map_.begin();
185        p != this->section_name_map_.end();
186        ++p)
187     if (strcmp(p->second->name(), name) == 0)
188       return p->second;
189   return NULL;
190 }
191
192 // Return an output segment of type TYPE, with segment flags SET set
193 // and segment flags CLEAR clear.  Return NULL if there is none.
194
195 Output_segment*
196 Layout::find_output_segment(elfcpp::PT type, elfcpp::Elf_Word set,
197                             elfcpp::Elf_Word clear) const
198 {
199   for (Segment_list::const_iterator p = this->segment_list_.begin();
200        p != this->segment_list_.end();
201        ++p)
202     if (static_cast<elfcpp::PT>((*p)->type()) == type
203         && ((*p)->flags() & set) == set
204         && ((*p)->flags() & clear) == 0)
205       return *p;
206   return NULL;
207 }
208
209 // Return the output section to use for section NAME with type TYPE
210 // and section flags FLAGS.
211
212 Output_section*
213 Layout::get_output_section(const char* name, Stringpool::Key name_key,
214                            elfcpp::Elf_Word type, elfcpp::Elf_Xword flags)
215 {
216   // We should ignore some flags.
217   flags &= ~ (elfcpp::SHF_INFO_LINK
218               | elfcpp::SHF_LINK_ORDER
219               | elfcpp::SHF_GROUP
220               | elfcpp::SHF_MERGE
221               | elfcpp::SHF_STRINGS);
222
223   const Key key(name_key, std::make_pair(type, flags));
224   const std::pair<Key, Output_section*> v(key, NULL);
225   std::pair<Section_name_map::iterator, bool> ins(
226     this->section_name_map_.insert(v));
227
228   if (!ins.second)
229     return ins.first->second;
230   else
231     {
232       // This is the first time we've seen this name/type/flags
233       // combination.
234       Output_section* os = this->make_output_section(name, type, flags);
235       ins.first->second = os;
236       return os;
237     }
238 }
239
240 // Return the output section to use for input section SHNDX, with name
241 // NAME, with header HEADER, from object OBJECT.  RELOC_SHNDX is the
242 // index of a relocation section which applies to this section, or 0
243 // if none, or -1U if more than one.  RELOC_TYPE is the type of the
244 // relocation section if there is one.  Set *OFF to the offset of this
245 // input section without the output section.  Return NULL if the
246 // section should be discarded.  Set *OFF to -1 if the section
247 // contents should not be written directly to the output file, but
248 // will instead receive special handling.
249
250 template<int size, bool big_endian>
251 Output_section*
252 Layout::layout(Sized_relobj<size, big_endian>* object, unsigned int shndx,
253                const char* name, const elfcpp::Shdr<size, big_endian>& shdr,
254                unsigned int reloc_shndx, unsigned int, off_t* off)
255 {
256   if (!this->include_section(object, name, shdr))
257     return NULL;
258
259   // If we are not doing a relocateable link, choose the name to use
260   // for the output section.
261   size_t len = strlen(name);
262   if (!parameters->output_is_object())
263     name = Layout::output_section_name(name, &len);
264
265   // FIXME: Handle SHF_OS_NONCONFORMING here.
266
267   // Canonicalize the section name.
268   Stringpool::Key name_key;
269   name = this->namepool_.add_prefix(name, len, &name_key);
270
271   // Find the output section.  The output section is selected based on
272   // the section name, type, and flags.
273   Output_section* os = this->get_output_section(name, name_key,
274                                                 shdr.get_sh_type(),
275                                                 shdr.get_sh_flags());
276
277   // FIXME: Handle SHF_LINK_ORDER somewhere.
278
279   *off = os->add_input_section(object, shndx, name, shdr, reloc_shndx);
280
281   return os;
282 }
283
284 // Special GNU handling of sections name .eh_frame.  They will
285 // normally hold exception frame data as defined by the C++ ABI
286 // (http://codesourcery.com/cxx-abi/).
287
288 template<int size, bool big_endian>
289 Output_section*
290 Layout::layout_eh_frame(Sized_relobj<size, big_endian>* object,
291                         const unsigned char* symbols,
292                         off_t symbols_size,
293                         const unsigned char* symbol_names,
294                         off_t symbol_names_size,
295                         unsigned int shndx,
296                         const elfcpp::Shdr<size, big_endian>& shdr,
297                         unsigned int reloc_shndx, unsigned int reloc_type,
298                         off_t* off)
299 {
300   gold_assert(shdr.get_sh_type() == elfcpp::SHT_PROGBITS);
301   gold_assert(shdr.get_sh_flags() == elfcpp::SHF_ALLOC);
302
303   Stringpool::Key name_key;
304   const char* name = this->namepool_.add(".eh_frame", false, &name_key);
305
306   Output_section* os = this->get_output_section(name, name_key,
307                                                 elfcpp::SHT_PROGBITS,
308                                                 elfcpp::SHF_ALLOC);
309
310   if (this->eh_frame_section_ == NULL)
311     {
312       this->eh_frame_section_ = os;
313       this->eh_frame_data_ = new Eh_frame();
314       os->add_output_section_data(this->eh_frame_data_);
315
316       if (this->options_.create_eh_frame_hdr())
317         {
318           Stringpool::Key hdr_name_key;
319           const char* hdr_name = this->namepool_.add(".eh_frame_hdr",
320                                                      false,
321                                                      &hdr_name_key);
322           Output_section* hdr_os =
323             this->get_output_section(hdr_name, hdr_name_key,
324                                      elfcpp::SHT_PROGBITS,
325                                      elfcpp::SHF_ALLOC);
326
327           Eh_frame_hdr* hdr_posd = new Eh_frame_hdr(os, this->eh_frame_data_);
328           hdr_os->add_output_section_data(hdr_posd);
329
330           hdr_os->set_after_input_sections();
331
332           Output_segment* hdr_oseg =
333             new Output_segment(elfcpp::PT_GNU_EH_FRAME, elfcpp::PF_R);
334           this->segment_list_.push_back(hdr_oseg);
335           hdr_oseg->add_output_section(hdr_os, elfcpp::PF_R);
336
337           this->eh_frame_data_->set_eh_frame_hdr(hdr_posd);
338         }
339     }
340
341   gold_assert(this->eh_frame_section_ == os);
342
343   if (this->eh_frame_data_->add_ehframe_input_section(object,
344                                                       symbols,
345                                                       symbols_size,
346                                                       symbol_names,
347                                                       symbol_names_size,
348                                                       shndx,
349                                                       reloc_shndx,
350                                                       reloc_type))
351     *off = -1;
352   else
353     {
354       // We couldn't handle this .eh_frame section for some reason.
355       // Add it as a normal section.
356       *off = os->add_input_section(object, shndx, name, shdr, reloc_shndx);
357     }
358
359   return os;
360 }
361
362 // Add POSD to an output section using NAME, TYPE, and FLAGS.
363
364 void
365 Layout::add_output_section_data(const char* name, elfcpp::Elf_Word type,
366                                 elfcpp::Elf_Xword flags,
367                                 Output_section_data* posd)
368 {
369   // Canonicalize the name.
370   Stringpool::Key name_key;
371   name = this->namepool_.add(name, true, &name_key);
372
373   Output_section* os = this->get_output_section(name, name_key, type, flags);
374   os->add_output_section_data(posd);
375 }
376
377 // Map section flags to segment flags.
378
379 elfcpp::Elf_Word
380 Layout::section_flags_to_segment(elfcpp::Elf_Xword flags)
381 {
382   elfcpp::Elf_Word ret = elfcpp::PF_R;
383   if ((flags & elfcpp::SHF_WRITE) != 0)
384     ret |= elfcpp::PF_W;
385   if ((flags & elfcpp::SHF_EXECINSTR) != 0)
386     ret |= elfcpp::PF_X;
387   return ret;
388 }
389
390 // Sometimes we compress sections.  This is typically done for
391 // sections that are not part of normal program execution (such as
392 // .debug_* sections), and where the readers of these sections know
393 // how to deal with compressed sections.  (To make it easier for them,
394 // we will rename the ouput section in such cases from .foo to
395 // .foo.zlib.nnnn, where nnnn is the uncompressed size.)  This routine
396 // doesn't say for certain whether we'll compress -- it depends on
397 // commandline options as well -- just whether this section is a
398 // candidate for compression.
399
400 static bool
401 is_compressible_debug_section(const char* secname)
402 {
403   return (strncmp(secname, ".debug", sizeof(".debug") - 1) == 0);
404 }
405
406 // Make a new Output_section, and attach it to segments as
407 // appropriate.
408
409 Output_section*
410 Layout::make_output_section(const char* name, elfcpp::Elf_Word type,
411                             elfcpp::Elf_Xword flags)
412 {
413   Output_section* os;
414   if ((flags & elfcpp::SHF_ALLOC) == 0
415       && this->options_.compress_debug_sections()
416       && is_compressible_debug_section(name))
417     os = new Output_compressed_section(&this->options_, name, type, flags);
418   else
419     os = new Output_section(name, type, flags);
420
421   this->section_list_.push_back(os);
422
423   if ((flags & elfcpp::SHF_ALLOC) == 0)
424     this->unattached_section_list_.push_back(os);
425   else
426     {
427       // This output section goes into a PT_LOAD segment.
428
429       elfcpp::Elf_Word seg_flags = Layout::section_flags_to_segment(flags);
430
431       // The only thing we really care about for PT_LOAD segments is
432       // whether or not they are writable, so that is how we search
433       // for them.  People who need segments sorted on some other
434       // basis will have to wait until we implement a mechanism for
435       // them to describe the segments they want.
436
437       Segment_list::const_iterator p;
438       for (p = this->segment_list_.begin();
439            p != this->segment_list_.end();
440            ++p)
441         {
442           if ((*p)->type() == elfcpp::PT_LOAD
443               && ((*p)->flags() & elfcpp::PF_W) == (seg_flags & elfcpp::PF_W))
444             {
445               (*p)->add_output_section(os, seg_flags);
446               break;
447             }
448         }
449
450       if (p == this->segment_list_.end())
451         {
452           Output_segment* oseg = new Output_segment(elfcpp::PT_LOAD,
453                                                     seg_flags);
454           this->segment_list_.push_back(oseg);
455           oseg->add_output_section(os, seg_flags);
456         }
457
458       // If we see a loadable SHT_NOTE section, we create a PT_NOTE
459       // segment.
460       if (type == elfcpp::SHT_NOTE)
461         {
462           // See if we already have an equivalent PT_NOTE segment.
463           for (p = this->segment_list_.begin();
464                p != segment_list_.end();
465                ++p)
466             {
467               if ((*p)->type() == elfcpp::PT_NOTE
468                   && (((*p)->flags() & elfcpp::PF_W)
469                       == (seg_flags & elfcpp::PF_W)))
470                 {
471                   (*p)->add_output_section(os, seg_flags);
472                   break;
473                 }
474             }
475
476           if (p == this->segment_list_.end())
477             {
478               Output_segment* oseg = new Output_segment(elfcpp::PT_NOTE,
479                                                         seg_flags);
480               this->segment_list_.push_back(oseg);
481               oseg->add_output_section(os, seg_flags);
482             }
483         }
484
485       // If we see a loadable SHF_TLS section, we create a PT_TLS
486       // segment.  There can only be one such segment.
487       if ((flags & elfcpp::SHF_TLS) != 0)
488         {
489           if (this->tls_segment_ == NULL)
490             {
491               this->tls_segment_ = new Output_segment(elfcpp::PT_TLS,
492                                                       seg_flags);
493               this->segment_list_.push_back(this->tls_segment_);
494             }
495           this->tls_segment_->add_output_section(os, seg_flags);
496         }
497     }
498
499   return os;
500 }
501
502 // Handle the .note.GNU-stack section at layout time.  SEEN_GNU_STACK
503 // is whether we saw a .note.GNU-stack section in the object file.
504 // GNU_STACK_FLAGS is the section flags.  The flags give the
505 // protection required for stack memory.  We record this in an
506 // executable as a PT_GNU_STACK segment.  If an object file does not
507 // have a .note.GNU-stack segment, we must assume that it is an old
508 // object.  On some targets that will force an executable stack.
509
510 void
511 Layout::layout_gnu_stack(bool seen_gnu_stack, uint64_t gnu_stack_flags)
512 {
513   if (!seen_gnu_stack)
514     this->input_without_gnu_stack_note_ = true;
515   else
516     {
517       this->input_with_gnu_stack_note_ = true;
518       if ((gnu_stack_flags & elfcpp::SHF_EXECINSTR) != 0)
519         this->input_requires_executable_stack_ = true;
520     }
521 }
522
523 // Create the dynamic sections which are needed before we read the
524 // relocs.
525
526 void
527 Layout::create_initial_dynamic_sections(const Input_objects* input_objects,
528                                         Symbol_table* symtab)
529 {
530   if (parameters->doing_static_link())
531     return;
532
533   const char* dynamic_name = this->namepool_.add(".dynamic", false, NULL);
534   this->dynamic_section_ = this->make_output_section(dynamic_name,
535                                                      elfcpp::SHT_DYNAMIC,
536                                                      (elfcpp::SHF_ALLOC
537                                                       | elfcpp::SHF_WRITE));
538
539   symtab->define_in_output_data(input_objects->target(), "_DYNAMIC", NULL,
540                                 this->dynamic_section_, 0, 0,
541                                 elfcpp::STT_OBJECT, elfcpp::STB_LOCAL,
542                                 elfcpp::STV_HIDDEN, 0, false, false);
543
544   this->dynamic_data_ =  new Output_data_dynamic(&this->dynpool_);
545
546   this->dynamic_section_->add_output_section_data(this->dynamic_data_);
547 }
548
549 // For each output section whose name can be represented as C symbol,
550 // define __start and __stop symbols for the section.  This is a GNU
551 // extension.
552
553 void
554 Layout::define_section_symbols(Symbol_table* symtab, const Target* target)
555 {
556   for (Section_list::const_iterator p = this->section_list_.begin();
557        p != this->section_list_.end();
558        ++p)
559     {
560       const char* const name = (*p)->name();
561       if (name[strspn(name,
562                       ("0123456789"
563                        "ABCDEFGHIJKLMNOPWRSTUVWXYZ"
564                        "abcdefghijklmnopqrstuvwxyz"
565                        "_"))]
566           == '\0')
567         {
568           const std::string name_string(name);
569           const std::string start_name("__start_" + name_string);
570           const std::string stop_name("__stop_" + name_string);
571
572           symtab->define_in_output_data(target,
573                                         start_name.c_str(),
574                                         NULL, // version
575                                         *p,
576                                         0, // value
577                                         0, // symsize
578                                         elfcpp::STT_NOTYPE,
579                                         elfcpp::STB_GLOBAL,
580                                         elfcpp::STV_DEFAULT,
581                                         0, // nonvis
582                                         false, // offset_is_from_end
583                                         false); // only_if_ref
584
585           symtab->define_in_output_data(target,
586                                         stop_name.c_str(),
587                                         NULL, // version
588                                         *p,
589                                         0, // value
590                                         0, // symsize
591                                         elfcpp::STT_NOTYPE,
592                                         elfcpp::STB_GLOBAL,
593                                         elfcpp::STV_DEFAULT,
594                                         0, // nonvis
595                                         true, // offset_is_from_end
596                                         false); // only_if_ref
597         }
598     }
599 }
600
601 // Find the first read-only PT_LOAD segment, creating one if
602 // necessary.
603
604 Output_segment*
605 Layout::find_first_load_seg()
606 {
607   for (Segment_list::const_iterator p = this->segment_list_.begin();
608        p != this->segment_list_.end();
609        ++p)
610     {
611       if ((*p)->type() == elfcpp::PT_LOAD
612           && ((*p)->flags() & elfcpp::PF_R) != 0
613           && ((*p)->flags() & elfcpp::PF_W) == 0)
614         return *p;
615     }
616
617   Output_segment* load_seg = new Output_segment(elfcpp::PT_LOAD, elfcpp::PF_R);
618   this->segment_list_.push_back(load_seg);
619   return load_seg;
620 }
621
622 // Finalize the layout.  When this is called, we have created all the
623 // output sections and all the output segments which are based on
624 // input sections.  We have several things to do, and we have to do
625 // them in the right order, so that we get the right results correctly
626 // and efficiently.
627
628 // 1) Finalize the list of output segments and create the segment
629 // table header.
630
631 // 2) Finalize the dynamic symbol table and associated sections.
632
633 // 3) Determine the final file offset of all the output segments.
634
635 // 4) Determine the final file offset of all the SHF_ALLOC output
636 // sections.
637
638 // 5) Create the symbol table sections and the section name table
639 // section.
640
641 // 6) Finalize the symbol table: set symbol values to their final
642 // value and make a final determination of which symbols are going
643 // into the output symbol table.
644
645 // 7) Create the section table header.
646
647 // 8) Determine the final file offset of all the output sections which
648 // are not SHF_ALLOC, including the section table header.
649
650 // 9) Finalize the ELF file header.
651
652 // This function returns the size of the output file.
653
654 off_t
655 Layout::finalize(const Input_objects* input_objects, Symbol_table* symtab)
656 {
657   Target* const target = input_objects->target();
658
659   target->finalize_sections(this);
660
661   this->count_local_symbols(input_objects);
662
663   this->create_gold_note();
664   this->create_executable_stack_info(target);
665
666   Output_segment* phdr_seg = NULL;
667   if (!parameters->doing_static_link())
668     {
669       // There was a dynamic object in the link.  We need to create
670       // some information for the dynamic linker.
671
672       // Create the PT_PHDR segment which will hold the program
673       // headers.
674       phdr_seg = new Output_segment(elfcpp::PT_PHDR, elfcpp::PF_R);
675       this->segment_list_.push_back(phdr_seg);
676
677       // Create the dynamic symbol table, including the hash table.
678       Output_section* dynstr;
679       std::vector<Symbol*> dynamic_symbols;
680       unsigned int local_dynamic_count;
681       Versions versions;
682       this->create_dynamic_symtab(input_objects, target, symtab, &dynstr,
683                                   &local_dynamic_count, &dynamic_symbols,
684                                   &versions);
685
686       // Create the .interp section to hold the name of the
687       // interpreter, and put it in a PT_INTERP segment.
688       if (!parameters->output_is_shared())
689         this->create_interp(target);
690
691       // Finish the .dynamic section to hold the dynamic data, and put
692       // it in a PT_DYNAMIC segment.
693       this->finish_dynamic_section(input_objects, symtab);
694
695       // We should have added everything we need to the dynamic string
696       // table.
697       this->dynpool_.set_string_offsets();
698
699       // Create the version sections.  We can't do this until the
700       // dynamic string table is complete.
701       this->create_version_sections(&versions, symtab, local_dynamic_count,
702                                     dynamic_symbols, dynstr);
703     }
704
705   // FIXME: Handle PT_GNU_STACK.
706
707   Output_segment* load_seg = this->find_first_load_seg();
708
709   // Lay out the segment headers.
710   Output_segment_headers* segment_headers;
711   segment_headers = new Output_segment_headers(this->segment_list_);
712   load_seg->add_initial_output_data(segment_headers);
713   this->special_output_list_.push_back(segment_headers);
714   if (phdr_seg != NULL)
715     phdr_seg->add_initial_output_data(segment_headers);
716
717   // Lay out the file header.
718   Output_file_header* file_header;
719   file_header = new Output_file_header(target, symtab, segment_headers);
720   load_seg->add_initial_output_data(file_header);
721   this->special_output_list_.push_back(file_header);
722
723   // We set the output section indexes in set_segment_offsets and
724   // set_section_indexes.
725   unsigned int shndx = 1;
726
727   // Set the file offsets of all the segments, and all the sections
728   // they contain.
729   off_t off = this->set_segment_offsets(target, load_seg, &shndx);
730
731   // Create the symbol table sections.
732   this->create_symtab_sections(input_objects, symtab, &off);
733   if (!parameters->doing_static_link())
734     this->assign_local_dynsym_offsets(input_objects);
735
736   // Create the .shstrtab section.
737   Output_section* shstrtab_section = this->create_shstrtab();
738
739   // Set the file offsets of all the non-data sections which don't
740   // have to wait for the input sections.
741   off = this->set_section_offsets(off, BEFORE_INPUT_SECTIONS_PASS);
742
743   // Now that all sections have been created, set the section indexes.
744   shndx = this->set_section_indexes(shndx);
745
746   // Create the section table header.
747   this->create_shdrs(&off);
748
749   file_header->set_section_info(this->section_headers_, shstrtab_section);
750
751   // Now we know exactly where everything goes in the output file
752   // (except for non-allocated sections which require postprocessing).
753   Output_data::layout_complete();
754
755   this->output_file_size_ = off;
756
757   return off;
758 }
759
760 // Create a .note section for an executable or shared library.  This
761 // records the version of gold used to create the binary.
762
763 void
764 Layout::create_gold_note()
765 {
766   if (parameters->output_is_object())
767     return;
768
769   // Authorities all agree that the values in a .note field should
770   // be aligned on 4-byte boundaries for 32-bit binaries.  However,
771   // they differ on what the alignment is for 64-bit binaries.
772   // The GABI says unambiguously they take 8-byte alignment:
773   //    http://sco.com/developers/gabi/latest/ch5.pheader.html#note_section
774   // Other documentation says alignment should always be 4 bytes:
775   //    http://www.netbsd.org/docs/kernel/elf-notes.html#note-format
776   // GNU ld and GNU readelf both support the latter (at least as of
777   // version 2.16.91), and glibc always generates the latter for
778   // .note.ABI-tag (as of version 1.6), so that's the one we go with
779   // here.
780 #ifdef GABI_FORMAT_FOR_DOTNOTE_SECTION   // This is not defined by default.
781   const int size = parameters->get_size();
782 #else
783   const int size = 32;
784 #endif
785
786   // The contents of the .note section.
787   const char* name = "GNU";
788   std::string desc(std::string("gold ") + gold::get_version_string());
789   size_t namesz = strlen(name) + 1;
790   size_t aligned_namesz = align_address(namesz, size / 8);
791   size_t descsz = desc.length() + 1;
792   size_t aligned_descsz = align_address(descsz, size / 8);
793   const int note_type = 4;
794
795   size_t notesz = 3 * (size / 8) + aligned_namesz + aligned_descsz;
796
797   unsigned char buffer[128];
798   gold_assert(sizeof buffer >= notesz);
799   memset(buffer, 0, notesz);
800
801   bool is_big_endian = parameters->is_big_endian();
802
803   if (size == 32)
804     {
805       if (!is_big_endian)
806         {
807           elfcpp::Swap<32, false>::writeval(buffer, namesz);
808           elfcpp::Swap<32, false>::writeval(buffer + 4, descsz);
809           elfcpp::Swap<32, false>::writeval(buffer + 8, note_type);
810         }
811       else
812         {
813           elfcpp::Swap<32, true>::writeval(buffer, namesz);
814           elfcpp::Swap<32, true>::writeval(buffer + 4, descsz);
815           elfcpp::Swap<32, true>::writeval(buffer + 8, note_type);
816         }
817     }
818   else if (size == 64)
819     {
820       if (!is_big_endian)
821         {
822           elfcpp::Swap<64, false>::writeval(buffer, namesz);
823           elfcpp::Swap<64, false>::writeval(buffer + 8, descsz);
824           elfcpp::Swap<64, false>::writeval(buffer + 16, note_type);
825         }
826       else
827         {
828           elfcpp::Swap<64, true>::writeval(buffer, namesz);
829           elfcpp::Swap<64, true>::writeval(buffer + 8, descsz);
830           elfcpp::Swap<64, true>::writeval(buffer + 16, note_type);
831         }
832     }
833   else
834     gold_unreachable();
835
836   memcpy(buffer + 3 * (size / 8), name, namesz);
837   memcpy(buffer + 3 * (size / 8) + aligned_namesz, desc.data(), descsz);
838
839   const char* note_name = this->namepool_.add(".note", false, NULL);
840   Output_section* os = this->make_output_section(note_name,
841                                                  elfcpp::SHT_NOTE,
842                                                  0);
843   Output_section_data* posd = new Output_data_const(buffer, notesz,
844                                                     size / 8);
845   os->add_output_section_data(posd);
846 }
847
848 // Record whether the stack should be executable.  This can be set
849 // from the command line using the -z execstack or -z noexecstack
850 // options.  Otherwise, if any input file has a .note.GNU-stack
851 // section with the SHF_EXECINSTR flag set, the stack should be
852 // executable.  Otherwise, if at least one input file a
853 // .note.GNU-stack section, and some input file has no .note.GNU-stack
854 // section, we use the target default for whether the stack should be
855 // executable.  Otherwise, we don't generate a stack note.  When
856 // generating a object file, we create a .note.GNU-stack section with
857 // the appropriate marking.  When generating an executable or shared
858 // library, we create a PT_GNU_STACK segment.
859
860 void
861 Layout::create_executable_stack_info(const Target* target)
862 {
863   bool is_stack_executable;
864   if (this->options_.is_execstack_set())
865     is_stack_executable = this->options_.is_stack_executable();
866   else if (!this->input_with_gnu_stack_note_)
867     return;
868   else
869     {
870       if (this->input_requires_executable_stack_)
871         is_stack_executable = true;
872       else if (this->input_without_gnu_stack_note_)
873         is_stack_executable = target->is_default_stack_executable();
874       else
875         is_stack_executable = false;
876     }
877
878   if (parameters->output_is_object())
879     {
880       const char* name = this->namepool_.add(".note.GNU-stack", false, NULL);
881       elfcpp::Elf_Xword flags = 0;
882       if (is_stack_executable)
883         flags |= elfcpp::SHF_EXECINSTR;
884       this->make_output_section(name, elfcpp::SHT_PROGBITS, flags);
885     }
886   else
887     {
888       int flags = elfcpp::PF_R | elfcpp::PF_W;
889       if (is_stack_executable)
890         flags |= elfcpp::PF_X;
891       Output_segment* oseg = new Output_segment(elfcpp::PT_GNU_STACK, flags);
892       this->segment_list_.push_back(oseg);
893     }
894 }
895
896 // Return whether SEG1 should be before SEG2 in the output file.  This
897 // is based entirely on the segment type and flags.  When this is
898 // called the segment addresses has normally not yet been set.
899
900 bool
901 Layout::segment_precedes(const Output_segment* seg1,
902                          const Output_segment* seg2)
903 {
904   elfcpp::Elf_Word type1 = seg1->type();
905   elfcpp::Elf_Word type2 = seg2->type();
906
907   // The single PT_PHDR segment is required to precede any loadable
908   // segment.  We simply make it always first.
909   if (type1 == elfcpp::PT_PHDR)
910     {
911       gold_assert(type2 != elfcpp::PT_PHDR);
912       return true;
913     }
914   if (type2 == elfcpp::PT_PHDR)
915     return false;
916
917   // The single PT_INTERP segment is required to precede any loadable
918   // segment.  We simply make it always second.
919   if (type1 == elfcpp::PT_INTERP)
920     {
921       gold_assert(type2 != elfcpp::PT_INTERP);
922       return true;
923     }
924   if (type2 == elfcpp::PT_INTERP)
925     return false;
926
927   // We then put PT_LOAD segments before any other segments.
928   if (type1 == elfcpp::PT_LOAD && type2 != elfcpp::PT_LOAD)
929     return true;
930   if (type2 == elfcpp::PT_LOAD && type1 != elfcpp::PT_LOAD)
931     return false;
932
933   // We put the PT_TLS segment last, because that is where the dynamic
934   // linker expects to find it (this is just for efficiency; other
935   // positions would also work correctly).
936   if (type1 == elfcpp::PT_TLS && type2 != elfcpp::PT_TLS)
937     return false;
938   if (type2 == elfcpp::PT_TLS && type1 != elfcpp::PT_TLS)
939     return true;
940
941   const elfcpp::Elf_Word flags1 = seg1->flags();
942   const elfcpp::Elf_Word flags2 = seg2->flags();
943
944   // The order of non-PT_LOAD segments is unimportant.  We simply sort
945   // by the numeric segment type and flags values.  There should not
946   // be more than one segment with the same type and flags.
947   if (type1 != elfcpp::PT_LOAD)
948     {
949       if (type1 != type2)
950         return type1 < type2;
951       gold_assert(flags1 != flags2);
952       return flags1 < flags2;
953     }
954
955   // We sort PT_LOAD segments based on the flags.  Readonly segments
956   // come before writable segments.  Then executable segments come
957   // before non-executable segments.  Then the unlikely case of a
958   // non-readable segment comes before the normal case of a readable
959   // segment.  If there are multiple segments with the same type and
960   // flags, we require that the address be set, and we sort by
961   // virtual address and then physical address.
962   if ((flags1 & elfcpp::PF_W) != (flags2 & elfcpp::PF_W))
963     return (flags1 & elfcpp::PF_W) == 0;
964   if ((flags1 & elfcpp::PF_X) != (flags2 & elfcpp::PF_X))
965     return (flags1 & elfcpp::PF_X) != 0;
966   if ((flags1 & elfcpp::PF_R) != (flags2 & elfcpp::PF_R))
967     return (flags1 & elfcpp::PF_R) == 0;
968
969   uint64_t vaddr1 = seg1->vaddr();
970   uint64_t vaddr2 = seg2->vaddr();
971   if (vaddr1 != vaddr2)
972     return vaddr1 < vaddr2;
973
974   uint64_t paddr1 = seg1->paddr();
975   uint64_t paddr2 = seg2->paddr();
976   gold_assert(paddr1 != paddr2);
977   return paddr1 < paddr2;
978 }
979
980 // Set the file offsets of all the segments, and all the sections they
981 // contain.  They have all been created.  LOAD_SEG must be be laid out
982 // first.  Return the offset of the data to follow.
983
984 off_t
985 Layout::set_segment_offsets(const Target* target, Output_segment* load_seg,
986                             unsigned int *pshndx)
987 {
988   // Sort them into the final order.
989   std::sort(this->segment_list_.begin(), this->segment_list_.end(),
990             Layout::Compare_segments());
991
992   // Find the PT_LOAD segments, and set their addresses and offsets
993   // and their section's addresses and offsets.
994   uint64_t addr;
995   if (parameters->output_is_shared())
996     addr = 0;
997   else if (options_.user_set_text_segment_address())
998     addr = options_.text_segment_address();
999   else
1000     addr = target->default_text_segment_address();
1001   off_t off = 0;
1002   bool was_readonly = false;
1003   for (Segment_list::iterator p = this->segment_list_.begin();
1004        p != this->segment_list_.end();
1005        ++p)
1006     {
1007       if ((*p)->type() == elfcpp::PT_LOAD)
1008         {
1009           if (load_seg != NULL && load_seg != *p)
1010             gold_unreachable();
1011           load_seg = NULL;
1012
1013           // If the last segment was readonly, and this one is not,
1014           // then skip the address forward one page, maintaining the
1015           // same position within the page.  This lets us store both
1016           // segments overlapping on a single page in the file, but
1017           // the loader will put them on different pages in memory.
1018
1019           uint64_t orig_addr = addr;
1020           uint64_t orig_off = off;
1021
1022           uint64_t aligned_addr = addr;
1023           uint64_t abi_pagesize = target->abi_pagesize();
1024
1025           // FIXME: This should depend on the -n and -N options.
1026           (*p)->set_minimum_addralign(target->common_pagesize());
1027
1028           if (was_readonly && ((*p)->flags() & elfcpp::PF_W) != 0)
1029             {
1030               uint64_t align = (*p)->addralign();
1031
1032               addr = align_address(addr, align);
1033               aligned_addr = addr;
1034               if ((addr & (abi_pagesize - 1)) != 0)
1035                 addr = addr + abi_pagesize;
1036             }
1037
1038           unsigned int shndx_hold = *pshndx;
1039           off = orig_off + ((addr - orig_addr) & (abi_pagesize - 1));
1040           uint64_t new_addr = (*p)->set_section_addresses(addr, &off, pshndx);
1041
1042           // Now that we know the size of this segment, we may be able
1043           // to save a page in memory, at the cost of wasting some
1044           // file space, by instead aligning to the start of a new
1045           // page.  Here we use the real machine page size rather than
1046           // the ABI mandated page size.
1047
1048           if (aligned_addr != addr)
1049             {
1050               uint64_t common_pagesize = target->common_pagesize();
1051               uint64_t first_off = (common_pagesize
1052                                     - (aligned_addr
1053                                        & (common_pagesize - 1)));
1054               uint64_t last_off = new_addr & (common_pagesize - 1);
1055               if (first_off > 0
1056                   && last_off > 0
1057                   && ((aligned_addr & ~ (common_pagesize - 1))
1058                       != (new_addr & ~ (common_pagesize - 1)))
1059                   && first_off + last_off <= common_pagesize)
1060                 {
1061                   *pshndx = shndx_hold;
1062                   addr = align_address(aligned_addr, common_pagesize);
1063                   off = orig_off + ((addr - orig_addr) & (abi_pagesize - 1));
1064                   new_addr = (*p)->set_section_addresses(addr, &off, pshndx);
1065                 }
1066             }
1067
1068           addr = new_addr;
1069
1070           if (((*p)->flags() & elfcpp::PF_W) == 0)
1071             was_readonly = true;
1072         }
1073     }
1074
1075   // Handle the non-PT_LOAD segments, setting their offsets from their
1076   // section's offsets.
1077   for (Segment_list::iterator p = this->segment_list_.begin();
1078        p != this->segment_list_.end();
1079        ++p)
1080     {
1081       if ((*p)->type() != elfcpp::PT_LOAD)
1082         (*p)->set_offset();
1083     }
1084
1085   // Set the TLS offsets for each section in the PT_TLS segment.
1086   if (this->tls_segment_ != NULL)
1087     this->tls_segment_->set_tls_offsets();
1088
1089   return off;
1090 }
1091
1092 // Set the file offset of all the sections not associated with a
1093 // segment.
1094
1095 off_t
1096 Layout::set_section_offsets(off_t off, Layout::Section_offset_pass pass)
1097 {
1098   for (Section_list::iterator p = this->unattached_section_list_.begin();
1099        p != this->unattached_section_list_.end();
1100        ++p)
1101     {
1102       // The symtab section is handled in create_symtab_sections.
1103       if (*p == this->symtab_section_)
1104         continue;
1105
1106       if (pass == BEFORE_INPUT_SECTIONS_PASS
1107           && (*p)->requires_postprocessing())
1108         (*p)->create_postprocessing_buffer();
1109
1110       if (pass == BEFORE_INPUT_SECTIONS_PASS
1111           && (*p)->after_input_sections())
1112         continue;
1113       else if (pass == AFTER_INPUT_SECTIONS_PASS
1114                && (!(*p)->after_input_sections()
1115                    || (*p)->type() == elfcpp::SHT_STRTAB))
1116         continue;
1117       else if (pass == STRTAB_AFTER_INPUT_SECTIONS_PASS
1118                && (!(*p)->after_input_sections()
1119                    || (*p)->type() != elfcpp::SHT_STRTAB))
1120         continue;
1121
1122       off = align_address(off, (*p)->addralign());
1123       (*p)->set_file_offset(off);
1124       (*p)->finalize_data_size();
1125       off += (*p)->data_size();
1126
1127       // At this point the name must be set.
1128       if (pass != STRTAB_AFTER_INPUT_SECTIONS_PASS)
1129         this->namepool_.add((*p)->name(), false, NULL);
1130     }
1131   return off;
1132 }
1133
1134 // Set the section indexes of all the sections not associated with a
1135 // segment.
1136
1137 unsigned int
1138 Layout::set_section_indexes(unsigned int shndx)
1139 {
1140   for (Section_list::iterator p = this->unattached_section_list_.begin();
1141        p != this->unattached_section_list_.end();
1142        ++p)
1143     {
1144       (*p)->set_out_shndx(shndx);
1145       ++shndx;
1146     }
1147   return shndx;
1148 }
1149
1150 // Count the local symbols in the regular symbol table and the dynamic
1151 // symbol table, and build the respective string pools.
1152
1153 void
1154 Layout::count_local_symbols(const Input_objects* input_objects)
1155 {
1156   for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
1157        p != input_objects->relobj_end();
1158        ++p)
1159     {
1160       Task_lock_obj<Object> tlo(**p);
1161       (*p)->count_local_symbols(&this->sympool_, &this->dynpool_);
1162     }
1163 }
1164
1165 // Create the symbol table sections.  Here we also set the final
1166 // values of the symbols.  At this point all the loadable sections are
1167 // fully laid out.
1168
1169 void
1170 Layout::create_symtab_sections(const Input_objects* input_objects,
1171                                Symbol_table* symtab,
1172                                off_t* poff)
1173 {
1174   int symsize;
1175   unsigned int align;
1176   if (parameters->get_size() == 32)
1177     {
1178       symsize = elfcpp::Elf_sizes<32>::sym_size;
1179       align = 4;
1180     }
1181   else if (parameters->get_size() == 64)
1182     {
1183       symsize = elfcpp::Elf_sizes<64>::sym_size;
1184       align = 8;
1185     }
1186   else
1187     gold_unreachable();
1188
1189   off_t off = *poff;
1190   off = align_address(off, align);
1191   off_t startoff = off;
1192
1193   // Save space for the dummy symbol at the start of the section.  We
1194   // never bother to write this out--it will just be left as zero.
1195   off += symsize;
1196   unsigned int local_symbol_index = 1;
1197
1198   // Add STT_SECTION symbols for each Output section which needs one.
1199   for (Section_list::iterator p = this->section_list_.begin();
1200        p != this->section_list_.end();
1201        ++p)
1202     {
1203       if (!(*p)->needs_symtab_index())
1204         (*p)->set_symtab_index(-1U);
1205       else
1206         {
1207           (*p)->set_symtab_index(local_symbol_index);
1208           ++local_symbol_index;
1209           off += symsize;
1210         }
1211     }
1212
1213   for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
1214        p != input_objects->relobj_end();
1215        ++p)
1216     {
1217       unsigned int index = (*p)->finalize_local_symbols(local_symbol_index,
1218                                                         off);
1219       off += (index - local_symbol_index) * symsize;
1220       local_symbol_index = index;
1221     }
1222
1223   unsigned int local_symcount = local_symbol_index;
1224   gold_assert(local_symcount * symsize == off - startoff);
1225
1226   off_t dynoff;
1227   size_t dyn_global_index;
1228   size_t dyncount;
1229   if (this->dynsym_section_ == NULL)
1230     {
1231       dynoff = 0;
1232       dyn_global_index = 0;
1233       dyncount = 0;
1234     }
1235   else
1236     {
1237       dyn_global_index = this->dynsym_section_->info();
1238       off_t locsize = dyn_global_index * this->dynsym_section_->entsize();
1239       dynoff = this->dynsym_section_->offset() + locsize;
1240       dyncount = (this->dynsym_section_->data_size() - locsize) / symsize;
1241       gold_assert(static_cast<off_t>(dyncount * symsize)
1242                   == this->dynsym_section_->data_size() - locsize);
1243     }
1244
1245   off = symtab->finalize(local_symcount, off, dynoff, dyn_global_index,
1246                          dyncount, &this->sympool_);
1247
1248   if (!parameters->strip_all())
1249     {
1250       this->sympool_.set_string_offsets();
1251
1252       const char* symtab_name = this->namepool_.add(".symtab", false, NULL);
1253       Output_section* osymtab = this->make_output_section(symtab_name,
1254                                                           elfcpp::SHT_SYMTAB,
1255                                                           0);
1256       this->symtab_section_ = osymtab;
1257
1258       Output_section_data* pos = new Output_data_fixed_space(off - startoff,
1259                                                              align);
1260       osymtab->add_output_section_data(pos);
1261
1262       const char* strtab_name = this->namepool_.add(".strtab", false, NULL);
1263       Output_section* ostrtab = this->make_output_section(strtab_name,
1264                                                           elfcpp::SHT_STRTAB,
1265                                                           0);
1266
1267       Output_section_data* pstr = new Output_data_strtab(&this->sympool_);
1268       ostrtab->add_output_section_data(pstr);
1269
1270       osymtab->set_file_offset(startoff);
1271       osymtab->finalize_data_size();
1272       osymtab->set_link_section(ostrtab);
1273       osymtab->set_info(local_symcount);
1274       osymtab->set_entsize(symsize);
1275
1276       *poff = off;
1277     }
1278 }
1279
1280 // Create the .shstrtab section, which holds the names of the
1281 // sections.  At the time this is called, we have created all the
1282 // output sections except .shstrtab itself.
1283
1284 Output_section*
1285 Layout::create_shstrtab()
1286 {
1287   // FIXME: We don't need to create a .shstrtab section if we are
1288   // stripping everything.
1289
1290   const char* name = this->namepool_.add(".shstrtab", false, NULL);
1291
1292   Output_section* os = this->make_output_section(name, elfcpp::SHT_STRTAB, 0);
1293
1294   // We can't write out this section until we've set all the section
1295   // names, and we don't set the names of compressed output sections
1296   // until relocations are complete.
1297   os->set_after_input_sections();
1298
1299   Output_section_data* posd = new Output_data_strtab(&this->namepool_);
1300   os->add_output_section_data(posd);
1301
1302   return os;
1303 }
1304
1305 // Create the section headers.  SIZE is 32 or 64.  OFF is the file
1306 // offset.
1307
1308 void
1309 Layout::create_shdrs(off_t* poff)
1310 {
1311   Output_section_headers* oshdrs;
1312   oshdrs = new Output_section_headers(this,
1313                                       &this->segment_list_,
1314                                       &this->unattached_section_list_,
1315                                       &this->namepool_);
1316   off_t off = align_address(*poff, oshdrs->addralign());
1317   oshdrs->set_address_and_file_offset(0, off);
1318   off += oshdrs->data_size();
1319   *poff = off;
1320   this->section_headers_ = oshdrs;
1321 }
1322
1323 // Create the dynamic symbol table.
1324
1325 void
1326 Layout::create_dynamic_symtab(const Input_objects* input_objects,
1327                               const Target* target, Symbol_table* symtab,
1328                               Output_section **pdynstr,
1329                               unsigned int* plocal_dynamic_count,
1330                               std::vector<Symbol*>* pdynamic_symbols,
1331                               Versions* pversions)
1332 {
1333   // Count all the symbols in the dynamic symbol table, and set the
1334   // dynamic symbol indexes.
1335
1336   // Skip symbol 0, which is always all zeroes.
1337   unsigned int index = 1;
1338
1339   // Add STT_SECTION symbols for each Output section which needs one.
1340   for (Section_list::iterator p = this->section_list_.begin();
1341        p != this->section_list_.end();
1342        ++p)
1343     {
1344       if (!(*p)->needs_dynsym_index())
1345         (*p)->set_dynsym_index(-1U);
1346       else
1347         {
1348           (*p)->set_dynsym_index(index);
1349           ++index;
1350         }
1351     }
1352
1353   // Count the local symbols that need to go in the dynamic symbol table,
1354   // and set the dynamic symbol indexes.
1355   for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
1356        p != input_objects->relobj_end();
1357        ++p)
1358     {
1359       unsigned int new_index = (*p)->set_local_dynsym_indexes(index);
1360       index = new_index;
1361     }
1362
1363   unsigned int local_symcount = index;
1364   *plocal_dynamic_count = local_symcount;
1365
1366   // FIXME: We have to tell set_dynsym_indexes whether the
1367   // -E/--export-dynamic option was used.
1368   index = symtab->set_dynsym_indexes(target, index, pdynamic_symbols,
1369                                      &this->dynpool_, pversions);
1370
1371   int symsize;
1372   unsigned int align;
1373   const int size = parameters->get_size();
1374   if (size == 32)
1375     {
1376       symsize = elfcpp::Elf_sizes<32>::sym_size;
1377       align = 4;
1378     }
1379   else if (size == 64)
1380     {
1381       symsize = elfcpp::Elf_sizes<64>::sym_size;
1382       align = 8;
1383     }
1384   else
1385     gold_unreachable();
1386
1387   // Create the dynamic symbol table section.
1388
1389   const char* dynsym_name = this->namepool_.add(".dynsym", false, NULL);
1390   Output_section* dynsym = this->make_output_section(dynsym_name,
1391                                                      elfcpp::SHT_DYNSYM,
1392                                                      elfcpp::SHF_ALLOC);
1393
1394   Output_section_data* odata = new Output_data_fixed_space(index * symsize,
1395                                                            align);
1396   dynsym->add_output_section_data(odata);
1397
1398   dynsym->set_info(local_symcount);
1399   dynsym->set_entsize(symsize);
1400   dynsym->set_addralign(align);
1401
1402   this->dynsym_section_ = dynsym;
1403
1404   Output_data_dynamic* const odyn = this->dynamic_data_;
1405   odyn->add_section_address(elfcpp::DT_SYMTAB, dynsym);
1406   odyn->add_constant(elfcpp::DT_SYMENT, symsize);
1407
1408   // Create the dynamic string table section.
1409
1410   const char* dynstr_name = this->namepool_.add(".dynstr", false, NULL);
1411   Output_section* dynstr = this->make_output_section(dynstr_name,
1412                                                      elfcpp::SHT_STRTAB,
1413                                                      elfcpp::SHF_ALLOC);
1414
1415   Output_section_data* strdata = new Output_data_strtab(&this->dynpool_);
1416   dynstr->add_output_section_data(strdata);
1417
1418   dynsym->set_link_section(dynstr);
1419   this->dynamic_section_->set_link_section(dynstr);
1420
1421   odyn->add_section_address(elfcpp::DT_STRTAB, dynstr);
1422   odyn->add_section_size(elfcpp::DT_STRSZ, dynstr);
1423
1424   *pdynstr = dynstr;
1425
1426   // Create the hash tables.
1427
1428   // FIXME: We need an option to create a GNU hash table.
1429
1430   unsigned char* phash;
1431   unsigned int hashlen;
1432   Dynobj::create_elf_hash_table(*pdynamic_symbols, local_symcount,
1433                                 &phash, &hashlen);
1434
1435   const char* hash_name = this->namepool_.add(".hash", false, NULL);
1436   Output_section* hashsec = this->make_output_section(hash_name,
1437                                                       elfcpp::SHT_HASH,
1438                                                       elfcpp::SHF_ALLOC);
1439
1440   Output_section_data* hashdata = new Output_data_const_buffer(phash,
1441                                                                hashlen,
1442                                                                align);
1443   hashsec->add_output_section_data(hashdata);
1444
1445   hashsec->set_link_section(dynsym);
1446   hashsec->set_entsize(4);
1447
1448   odyn->add_section_address(elfcpp::DT_HASH, hashsec);
1449 }
1450
1451 // Assign offsets to each local portion of the dynamic symbol table.
1452
1453 void
1454 Layout::assign_local_dynsym_offsets(const Input_objects* input_objects)
1455 {
1456   Output_section* dynsym = this->dynsym_section_;
1457   gold_assert(dynsym != NULL);
1458
1459   off_t off = dynsym->offset();
1460
1461   // Skip the dummy symbol at the start of the section.
1462   off += dynsym->entsize();
1463
1464   for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
1465        p != input_objects->relobj_end();
1466        ++p)
1467     {
1468       unsigned int count = (*p)->set_local_dynsym_offset(off);
1469       off += count * dynsym->entsize();
1470     }
1471 }
1472
1473 // Create the version sections.
1474
1475 void
1476 Layout::create_version_sections(const Versions* versions,
1477                                 const Symbol_table* symtab,
1478                                 unsigned int local_symcount,
1479                                 const std::vector<Symbol*>& dynamic_symbols,
1480                                 const Output_section* dynstr)
1481 {
1482   if (!versions->any_defs() && !versions->any_needs())
1483     return;
1484
1485   if (parameters->get_size() == 32)
1486     {
1487       if (parameters->is_big_endian())
1488         {
1489 #ifdef HAVE_TARGET_32_BIG
1490           this->sized_create_version_sections
1491               SELECT_SIZE_ENDIAN_NAME(32, true)(
1492                   versions, symtab, local_symcount, dynamic_symbols, dynstr
1493                   SELECT_SIZE_ENDIAN(32, true));
1494 #else
1495           gold_unreachable();
1496 #endif
1497         }
1498       else
1499         {
1500 #ifdef HAVE_TARGET_32_LITTLE
1501           this->sized_create_version_sections
1502               SELECT_SIZE_ENDIAN_NAME(32, false)(
1503                   versions, symtab, local_symcount, dynamic_symbols, dynstr
1504                   SELECT_SIZE_ENDIAN(32, false));
1505 #else
1506           gold_unreachable();
1507 #endif
1508         }
1509     }
1510   else if (parameters->get_size() == 64)
1511     {
1512       if (parameters->is_big_endian())
1513         {
1514 #ifdef HAVE_TARGET_64_BIG
1515           this->sized_create_version_sections
1516               SELECT_SIZE_ENDIAN_NAME(64, true)(
1517                   versions, symtab, local_symcount, dynamic_symbols, dynstr
1518                   SELECT_SIZE_ENDIAN(64, true));
1519 #else
1520           gold_unreachable();
1521 #endif
1522         }
1523       else
1524         {
1525 #ifdef HAVE_TARGET_64_LITTLE
1526           this->sized_create_version_sections
1527               SELECT_SIZE_ENDIAN_NAME(64, false)(
1528                   versions, symtab, local_symcount, dynamic_symbols, dynstr
1529                   SELECT_SIZE_ENDIAN(64, false));
1530 #else
1531           gold_unreachable();
1532 #endif
1533         }
1534     }
1535   else
1536     gold_unreachable();
1537 }
1538
1539 // Create the version sections, sized version.
1540
1541 template<int size, bool big_endian>
1542 void
1543 Layout::sized_create_version_sections(
1544     const Versions* versions,
1545     const Symbol_table* symtab,
1546     unsigned int local_symcount,
1547     const std::vector<Symbol*>& dynamic_symbols,
1548     const Output_section* dynstr
1549     ACCEPT_SIZE_ENDIAN)
1550 {
1551   const char* vname = this->namepool_.add(".gnu.version", false, NULL);
1552   Output_section* vsec = this->make_output_section(vname,
1553                                                    elfcpp::SHT_GNU_versym,
1554                                                    elfcpp::SHF_ALLOC);
1555
1556   unsigned char* vbuf;
1557   unsigned int vsize;
1558   versions->symbol_section_contents SELECT_SIZE_ENDIAN_NAME(size, big_endian)(
1559       symtab, &this->dynpool_, local_symcount, dynamic_symbols, &vbuf, &vsize
1560       SELECT_SIZE_ENDIAN(size, big_endian));
1561
1562   Output_section_data* vdata = new Output_data_const_buffer(vbuf, vsize, 2);
1563
1564   vsec->add_output_section_data(vdata);
1565   vsec->set_entsize(2);
1566   vsec->set_link_section(this->dynsym_section_);
1567
1568   Output_data_dynamic* const odyn = this->dynamic_data_;
1569   odyn->add_section_address(elfcpp::DT_VERSYM, vsec);
1570
1571   if (versions->any_defs())
1572     {
1573       const char* vdname = this->namepool_.add(".gnu.version_d", false, NULL);
1574       Output_section *vdsec;
1575       vdsec = this->make_output_section(vdname, elfcpp::SHT_GNU_verdef,
1576                                         elfcpp::SHF_ALLOC);
1577
1578       unsigned char* vdbuf;
1579       unsigned int vdsize;
1580       unsigned int vdentries;
1581       versions->def_section_contents SELECT_SIZE_ENDIAN_NAME(size, big_endian)(
1582           &this->dynpool_, &vdbuf, &vdsize, &vdentries
1583           SELECT_SIZE_ENDIAN(size, big_endian));
1584
1585       Output_section_data* vddata = new Output_data_const_buffer(vdbuf,
1586                                                                  vdsize,
1587                                                                  4);
1588
1589       vdsec->add_output_section_data(vddata);
1590       vdsec->set_link_section(dynstr);
1591       vdsec->set_info(vdentries);
1592
1593       odyn->add_section_address(elfcpp::DT_VERDEF, vdsec);
1594       odyn->add_constant(elfcpp::DT_VERDEFNUM, vdentries);
1595     }
1596
1597   if (versions->any_needs())
1598     {
1599       const char* vnname = this->namepool_.add(".gnu.version_r", false, NULL);
1600       Output_section* vnsec;
1601       vnsec = this->make_output_section(vnname, elfcpp::SHT_GNU_verneed,
1602                                         elfcpp::SHF_ALLOC);
1603
1604       unsigned char* vnbuf;
1605       unsigned int vnsize;
1606       unsigned int vnentries;
1607       versions->need_section_contents SELECT_SIZE_ENDIAN_NAME(size, big_endian)
1608         (&this->dynpool_, &vnbuf, &vnsize, &vnentries
1609          SELECT_SIZE_ENDIAN(size, big_endian));
1610
1611       Output_section_data* vndata = new Output_data_const_buffer(vnbuf,
1612                                                                  vnsize,
1613                                                                  4);
1614
1615       vnsec->add_output_section_data(vndata);
1616       vnsec->set_link_section(dynstr);
1617       vnsec->set_info(vnentries);
1618
1619       odyn->add_section_address(elfcpp::DT_VERNEED, vnsec);
1620       odyn->add_constant(elfcpp::DT_VERNEEDNUM, vnentries);
1621     }
1622 }
1623
1624 // Create the .interp section and PT_INTERP segment.
1625
1626 void
1627 Layout::create_interp(const Target* target)
1628 {
1629   const char* interp = this->options_.dynamic_linker();
1630   if (interp == NULL)
1631     {
1632       interp = target->dynamic_linker();
1633       gold_assert(interp != NULL);
1634     }
1635
1636   size_t len = strlen(interp) + 1;
1637
1638   Output_section_data* odata = new Output_data_const(interp, len, 1);
1639
1640   const char* interp_name = this->namepool_.add(".interp", false, NULL);
1641   Output_section* osec = this->make_output_section(interp_name,
1642                                                    elfcpp::SHT_PROGBITS,
1643                                                    elfcpp::SHF_ALLOC);
1644   osec->add_output_section_data(odata);
1645
1646   Output_segment* oseg = new Output_segment(elfcpp::PT_INTERP, elfcpp::PF_R);
1647   this->segment_list_.push_back(oseg);
1648   oseg->add_initial_output_section(osec, elfcpp::PF_R);
1649 }
1650
1651 // Finish the .dynamic section and PT_DYNAMIC segment.
1652
1653 void
1654 Layout::finish_dynamic_section(const Input_objects* input_objects,
1655                                const Symbol_table* symtab)
1656 {
1657   Output_segment* oseg = new Output_segment(elfcpp::PT_DYNAMIC,
1658                                             elfcpp::PF_R | elfcpp::PF_W);
1659   this->segment_list_.push_back(oseg);
1660   oseg->add_initial_output_section(this->dynamic_section_,
1661                                    elfcpp::PF_R | elfcpp::PF_W);
1662
1663   Output_data_dynamic* const odyn = this->dynamic_data_;
1664
1665   for (Input_objects::Dynobj_iterator p = input_objects->dynobj_begin();
1666        p != input_objects->dynobj_end();
1667        ++p)
1668     {
1669       // FIXME: Handle --as-needed.
1670       odyn->add_string(elfcpp::DT_NEEDED, (*p)->soname());
1671     }
1672
1673   // FIXME: Support --init and --fini.
1674   Symbol* sym = symtab->lookup("_init");
1675   if (sym != NULL && sym->is_defined() && !sym->is_from_dynobj())
1676     odyn->add_symbol(elfcpp::DT_INIT, sym);
1677
1678   sym = symtab->lookup("_fini");
1679   if (sym != NULL && sym->is_defined() && !sym->is_from_dynobj())
1680     odyn->add_symbol(elfcpp::DT_FINI, sym);
1681
1682   // FIXME: Support DT_INIT_ARRAY and DT_FINI_ARRAY.
1683
1684   // Add a DT_RPATH entry if needed.
1685   const General_options::Dir_list& rpath(this->options_.rpath());
1686   if (!rpath.empty())
1687     {
1688       std::string rpath_val;
1689       for (General_options::Dir_list::const_iterator p = rpath.begin();
1690            p != rpath.end();
1691            ++p)
1692         {
1693           if (rpath_val.empty())
1694             rpath_val = p->name();
1695           else
1696             {
1697               // Eliminate duplicates.
1698               General_options::Dir_list::const_iterator q;
1699               for (q = rpath.begin(); q != p; ++q)
1700                 if (q->name() == p->name())
1701                   break;
1702               if (q == p)
1703                 {
1704                   rpath_val += ':';
1705                   rpath_val += p->name();
1706                 }
1707             }
1708         }
1709
1710       odyn->add_string(elfcpp::DT_RPATH, rpath_val);
1711     }
1712
1713   // Look for text segments that have dynamic relocations.
1714   bool have_textrel = false;
1715   for (Segment_list::const_iterator p = this->segment_list_.begin();
1716        p != this->segment_list_.end();
1717        ++p)
1718     {
1719       if (((*p)->flags() & elfcpp::PF_W) == 0
1720           && (*p)->dynamic_reloc_count() > 0)
1721         {
1722           have_textrel = true;
1723           break;
1724         }
1725     }
1726
1727   // Add a DT_FLAGS entry. We add it even if no flags are set so that
1728   // post-link tools can easily modify these flags if desired.
1729   unsigned int flags = 0;
1730   if (have_textrel)
1731     flags |= elfcpp::DF_TEXTREL;
1732   odyn->add_constant(elfcpp::DT_FLAGS, flags);
1733 }
1734
1735 // The mapping of .gnu.linkonce section names to real section names.
1736
1737 #define MAPPING_INIT(f, t) { f, sizeof(f) - 1, t, sizeof(t) - 1 }
1738 const Layout::Linkonce_mapping Layout::linkonce_mapping[] =
1739 {
1740   MAPPING_INIT("d.rel.ro", ".data.rel.ro"),     // Must be before "d".
1741   MAPPING_INIT("t", ".text"),
1742   MAPPING_INIT("r", ".rodata"),
1743   MAPPING_INIT("d", ".data"),
1744   MAPPING_INIT("b", ".bss"),
1745   MAPPING_INIT("s", ".sdata"),
1746   MAPPING_INIT("sb", ".sbss"),
1747   MAPPING_INIT("s2", ".sdata2"),
1748   MAPPING_INIT("sb2", ".sbss2"),
1749   MAPPING_INIT("wi", ".debug_info"),
1750   MAPPING_INIT("td", ".tdata"),
1751   MAPPING_INIT("tb", ".tbss"),
1752   MAPPING_INIT("lr", ".lrodata"),
1753   MAPPING_INIT("l", ".ldata"),
1754   MAPPING_INIT("lb", ".lbss"),
1755 };
1756 #undef MAPPING_INIT
1757
1758 const int Layout::linkonce_mapping_count =
1759   sizeof(Layout::linkonce_mapping) / sizeof(Layout::linkonce_mapping[0]);
1760
1761 // Return the name of the output section to use for a .gnu.linkonce
1762 // section.  This is based on the default ELF linker script of the old
1763 // GNU linker.  For example, we map a name like ".gnu.linkonce.t.foo"
1764 // to ".text".  Set *PLEN to the length of the name.  *PLEN is
1765 // initialized to the length of NAME.
1766
1767 const char*
1768 Layout::linkonce_output_name(const char* name, size_t *plen)
1769 {
1770   const char* s = name + sizeof(".gnu.linkonce") - 1;
1771   if (*s != '.')
1772     return name;
1773   ++s;
1774   const Linkonce_mapping* plm = linkonce_mapping;
1775   for (int i = 0; i < linkonce_mapping_count; ++i, ++plm)
1776     {
1777       if (strncmp(s, plm->from, plm->fromlen) == 0 && s[plm->fromlen] == '.')
1778         {
1779           *plen = plm->tolen;
1780           return plm->to;
1781         }
1782     }
1783   return name;
1784 }
1785
1786 // Choose the output section name to use given an input section name.
1787 // Set *PLEN to the length of the name.  *PLEN is initialized to the
1788 // length of NAME.
1789
1790 const char*
1791 Layout::output_section_name(const char* name, size_t* plen)
1792 {
1793   if (Layout::is_linkonce(name))
1794     {
1795       // .gnu.linkonce sections are laid out as though they were named
1796       // for the sections are placed into.
1797       return Layout::linkonce_output_name(name, plen);
1798     }
1799
1800   // gcc 4.3 generates the following sorts of section names when it
1801   // needs a section name specific to a function:
1802   //   .text.FN
1803   //   .rodata.FN
1804   //   .sdata2.FN
1805   //   .data.FN
1806   //   .data.rel.FN
1807   //   .data.rel.local.FN
1808   //   .data.rel.ro.FN
1809   //   .data.rel.ro.local.FN
1810   //   .sdata.FN
1811   //   .bss.FN
1812   //   .sbss.FN
1813   //   .tdata.FN
1814   //   .tbss.FN
1815
1816   // The GNU linker maps all of those to the part before the .FN,
1817   // except that .data.rel.local.FN is mapped to .data, and
1818   // .data.rel.ro.local.FN is mapped to .data.rel.ro.  The sections
1819   // beginning with .data.rel.ro.local are grouped together.
1820
1821   // For an anonymous namespace, the string FN can contain a '.'.
1822
1823   // Also of interest: .rodata.strN.N, .rodata.cstN, both of which the
1824   // GNU linker maps to .rodata.
1825
1826   // The .data.rel.ro sections enable a security feature triggered by
1827   // the -z relro option.  Section which need to be relocated at
1828   // program startup time but which may be readonly after startup are
1829   // grouped into .data.rel.ro.  They are then put into a PT_GNU_RELRO
1830   // segment.  The dynamic linker will make that segment writable,
1831   // perform relocations, and then make it read-only.  FIXME: We do
1832   // not yet implement this optimization.
1833
1834   // It is hard to handle this in a principled way.
1835
1836   // These are the rules we follow:
1837
1838   // If the section name has no initial '.', or no dot other than an
1839   // initial '.', we use the name unchanged (i.e., "mysection" and
1840   // ".text" are unchanged).
1841
1842   // If the name starts with ".data.rel.ro" we use ".data.rel.ro".
1843
1844   // Otherwise, we drop the second '.' and everything that comes after
1845   // it (i.e., ".text.XXX" becomes ".text").
1846
1847   const char* s = name;
1848   if (*s != '.')
1849     return name;
1850   ++s;
1851   const char* sdot = strchr(s, '.');
1852   if (sdot == NULL)
1853     return name;
1854
1855   const char* const data_rel_ro = ".data.rel.ro";
1856   if (strncmp(name, data_rel_ro, strlen(data_rel_ro)) == 0)
1857     {
1858       *plen = strlen(data_rel_ro);
1859       return data_rel_ro;
1860     }
1861
1862   *plen = sdot - name;
1863   return name;
1864 }
1865
1866 // Record the signature of a comdat section, and return whether to
1867 // include it in the link.  If GROUP is true, this is a regular
1868 // section group.  If GROUP is false, this is a group signature
1869 // derived from the name of a linkonce section.  We want linkonce
1870 // signatures and group signatures to block each other, but we don't
1871 // want a linkonce signature to block another linkonce signature.
1872
1873 bool
1874 Layout::add_comdat(const char* signature, bool group)
1875 {
1876   std::string sig(signature);
1877   std::pair<Signatures::iterator, bool> ins(
1878     this->signatures_.insert(std::make_pair(sig, group)));
1879
1880   if (ins.second)
1881     {
1882       // This is the first time we've seen this signature.
1883       return true;
1884     }
1885
1886   if (ins.first->second)
1887     {
1888       // We've already seen a real section group with this signature.
1889       return false;
1890     }
1891   else if (group)
1892     {
1893       // This is a real section group, and we've already seen a
1894       // linkonce section with this signature.  Record that we've seen
1895       // a section group, and don't include this section group.
1896       ins.first->second = true;
1897       return false;
1898     }
1899   else
1900     {
1901       // We've already seen a linkonce section and this is a linkonce
1902       // section.  These don't block each other--this may be the same
1903       // symbol name with different section types.
1904       return true;
1905     }
1906 }
1907
1908 // Write out the Output_sections.  Most won't have anything to write,
1909 // since most of the data will come from input sections which are
1910 // handled elsewhere.  But some Output_sections do have Output_data.
1911
1912 void
1913 Layout::write_output_sections(Output_file* of) const
1914 {
1915   for (Section_list::const_iterator p = this->section_list_.begin();
1916        p != this->section_list_.end();
1917        ++p)
1918     {
1919       if (!(*p)->after_input_sections())
1920         (*p)->write(of);
1921     }
1922 }
1923
1924 // Write out data not associated with a section or the symbol table.
1925
1926 void
1927 Layout::write_data(const Symbol_table* symtab, Output_file* of) const
1928 {
1929   if (!parameters->strip_all())
1930     {
1931       const Output_section* symtab_section = this->symtab_section_;
1932       for (Section_list::const_iterator p = this->section_list_.begin();
1933            p != this->section_list_.end();
1934            ++p)
1935         {
1936           if ((*p)->needs_symtab_index())
1937             {
1938               gold_assert(symtab_section != NULL);
1939               unsigned int index = (*p)->symtab_index();
1940               gold_assert(index > 0 && index != -1U);
1941               off_t off = (symtab_section->offset()
1942                            + index * symtab_section->entsize());
1943               symtab->write_section_symbol(*p, of, off);
1944             }
1945         }
1946     }
1947
1948   const Output_section* dynsym_section = this->dynsym_section_;
1949   for (Section_list::const_iterator p = this->section_list_.begin();
1950        p != this->section_list_.end();
1951        ++p)
1952     {
1953       if ((*p)->needs_dynsym_index())
1954         {
1955           gold_assert(dynsym_section != NULL);
1956           unsigned int index = (*p)->dynsym_index();
1957           gold_assert(index > 0 && index != -1U);
1958           off_t off = (dynsym_section->offset()
1959                        + index * dynsym_section->entsize());
1960           symtab->write_section_symbol(*p, of, off);
1961         }
1962     }
1963
1964   // Write out the Output_data which are not in an Output_section.
1965   for (Data_list::const_iterator p = this->special_output_list_.begin();
1966        p != this->special_output_list_.end();
1967        ++p)
1968     (*p)->write(of);
1969 }
1970
1971 // Write out the Output_sections which can only be written after the
1972 // input sections are complete.
1973
1974 void
1975 Layout::write_sections_after_input_sections(Output_file* of)
1976 {
1977   // Determine the final section offsets, and thus the final output
1978   // file size.  Note we finalize the .shstrab last, to allow the
1979   // after_input_section sections to modify their section-names before
1980   // writing.
1981   off_t off = this->output_file_size_;
1982   off = this->set_section_offsets(off, AFTER_INPUT_SECTIONS_PASS);
1983
1984   // Now that we've finalized the names, we can finalize the shstrab.
1985   off = this->set_section_offsets(off, STRTAB_AFTER_INPUT_SECTIONS_PASS);
1986
1987   if (off > this->output_file_size_)
1988     {
1989       of->resize(off);
1990       this->output_file_size_ = off;
1991     }
1992
1993   for (Section_list::const_iterator p = this->section_list_.begin();
1994        p != this->section_list_.end();
1995        ++p)
1996     {
1997       if ((*p)->after_input_sections())
1998         (*p)->write(of);
1999     }
2000
2001   for (Section_list::const_iterator p = this->unattached_section_list_.begin();
2002        p != this->unattached_section_list_.end();
2003        ++p)
2004     {
2005       if ((*p)->after_input_sections())
2006         (*p)->write(of);
2007     }
2008
2009   this->section_headers_->write(of);
2010 }
2011
2012 // Print statistical information to stderr.  This is used for --stats.
2013
2014 void
2015 Layout::print_stats() const
2016 {
2017   this->namepool_.print_stats("section name pool");
2018   this->sympool_.print_stats("output symbol name pool");
2019   this->dynpool_.print_stats("dynamic name pool");
2020 }
2021
2022 // Write_sections_task methods.
2023
2024 // We can always run this task.
2025
2026 Task::Is_runnable_type
2027 Write_sections_task::is_runnable(Workqueue*)
2028 {
2029   return IS_RUNNABLE;
2030 }
2031
2032 // We need to unlock both OUTPUT_SECTIONS_BLOCKER and FINAL_BLOCKER
2033 // when finished.
2034
2035 class Write_sections_task::Write_sections_locker : public Task_locker
2036 {
2037  public:
2038   Write_sections_locker(Task_token& output_sections_blocker,
2039                         Task_token& final_blocker,
2040                         Workqueue* workqueue)
2041     : output_sections_block_(output_sections_blocker, workqueue),
2042       final_block_(final_blocker, workqueue)
2043   { }
2044
2045  private:
2046   Task_block_token output_sections_block_;
2047   Task_block_token final_block_;
2048 };
2049
2050 Task_locker*
2051 Write_sections_task::locks(Workqueue* workqueue)
2052 {
2053   return new Write_sections_locker(*this->output_sections_blocker_,
2054                                    *this->final_blocker_,
2055                                    workqueue);
2056 }
2057
2058 // Run the task--write out the data.
2059
2060 void
2061 Write_sections_task::run(Workqueue*)
2062 {
2063   this->layout_->write_output_sections(this->of_);
2064 }
2065
2066 // Write_data_task methods.
2067
2068 // We can always run this task.
2069
2070 Task::Is_runnable_type
2071 Write_data_task::is_runnable(Workqueue*)
2072 {
2073   return IS_RUNNABLE;
2074 }
2075
2076 // We need to unlock FINAL_BLOCKER when finished.
2077
2078 Task_locker*
2079 Write_data_task::locks(Workqueue* workqueue)
2080 {
2081   return new Task_locker_block(*this->final_blocker_, workqueue);
2082 }
2083
2084 // Run the task--write out the data.
2085
2086 void
2087 Write_data_task::run(Workqueue*)
2088 {
2089   this->layout_->write_data(this->symtab_, this->of_);
2090 }
2091
2092 // Write_symbols_task methods.
2093
2094 // We can always run this task.
2095
2096 Task::Is_runnable_type
2097 Write_symbols_task::is_runnable(Workqueue*)
2098 {
2099   return IS_RUNNABLE;
2100 }
2101
2102 // We need to unlock FINAL_BLOCKER when finished.
2103
2104 Task_locker*
2105 Write_symbols_task::locks(Workqueue* workqueue)
2106 {
2107   return new Task_locker_block(*this->final_blocker_, workqueue);
2108 }
2109
2110 // Run the task--write out the symbols.
2111
2112 void
2113 Write_symbols_task::run(Workqueue*)
2114 {
2115   this->symtab_->write_globals(this->input_objects_, this->sympool_,
2116                                this->dynpool_, this->of_);
2117 }
2118
2119 // Write_after_input_sections_task methods.
2120
2121 // We can only run this task after the input sections have completed.
2122
2123 Task::Is_runnable_type
2124 Write_after_input_sections_task::is_runnable(Workqueue*)
2125 {
2126   if (this->input_sections_blocker_->is_blocked())
2127     return IS_BLOCKED;
2128   return IS_RUNNABLE;
2129 }
2130
2131 // We need to unlock FINAL_BLOCKER when finished.
2132
2133 Task_locker*
2134 Write_after_input_sections_task::locks(Workqueue* workqueue)
2135 {
2136   return new Task_locker_block(*this->final_blocker_, workqueue);
2137 }
2138
2139 // Run the task.
2140
2141 void
2142 Write_after_input_sections_task::run(Workqueue*)
2143 {
2144   this->layout_->write_sections_after_input_sections(this->of_);
2145 }
2146
2147 // Close_task_runner methods.
2148
2149 // Run the task--close the file.
2150
2151 void
2152 Close_task_runner::run(Workqueue*)
2153 {
2154   this->of_->close();
2155 }
2156
2157 // Instantiate the templates we need.  We could use the configure
2158 // script to restrict this to only the ones for implemented targets.
2159
2160 #ifdef HAVE_TARGET_32_LITTLE
2161 template
2162 Output_section*
2163 Layout::layout<32, false>(Sized_relobj<32, false>* object, unsigned int shndx,
2164                           const char* name,
2165                           const elfcpp::Shdr<32, false>& shdr,
2166                           unsigned int, unsigned int, off_t*);
2167 #endif
2168
2169 #ifdef HAVE_TARGET_32_BIG
2170 template
2171 Output_section*
2172 Layout::layout<32, true>(Sized_relobj<32, true>* object, unsigned int shndx,
2173                          const char* name,
2174                          const elfcpp::Shdr<32, true>& shdr,
2175                          unsigned int, unsigned int, off_t*);
2176 #endif
2177
2178 #ifdef HAVE_TARGET_64_LITTLE
2179 template
2180 Output_section*
2181 Layout::layout<64, false>(Sized_relobj<64, false>* object, unsigned int shndx,
2182                           const char* name,
2183                           const elfcpp::Shdr<64, false>& shdr,
2184                           unsigned int, unsigned int, off_t*);
2185 #endif
2186
2187 #ifdef HAVE_TARGET_64_BIG
2188 template
2189 Output_section*
2190 Layout::layout<64, true>(Sized_relobj<64, true>* object, unsigned int shndx,
2191                          const char* name,
2192                          const elfcpp::Shdr<64, true>& shdr,
2193                          unsigned int, unsigned int, off_t*);
2194 #endif
2195
2196 #ifdef HAVE_TARGET_32_LITTLE
2197 template
2198 Output_section*
2199 Layout::layout_eh_frame<32, false>(Sized_relobj<32, false>* object,
2200                                    const unsigned char* symbols,
2201                                    off_t symbols_size,
2202                                    const unsigned char* symbol_names,
2203                                    off_t symbol_names_size,
2204                                    unsigned int shndx,
2205                                    const elfcpp::Shdr<32, false>& shdr,
2206                                    unsigned int reloc_shndx,
2207                                    unsigned int reloc_type,
2208                                    off_t* off);
2209 #endif
2210
2211 #ifdef HAVE_TARGET_32_BIG
2212 template
2213 Output_section*
2214 Layout::layout_eh_frame<32, true>(Sized_relobj<32, true>* object,
2215                                    const unsigned char* symbols,
2216                                    off_t symbols_size,
2217                                   const unsigned char* symbol_names,
2218                                   off_t symbol_names_size,
2219                                   unsigned int shndx,
2220                                   const elfcpp::Shdr<32, true>& shdr,
2221                                   unsigned int reloc_shndx,
2222                                   unsigned int reloc_type,
2223                                   off_t* off);
2224 #endif
2225
2226 #ifdef HAVE_TARGET_64_LITTLE
2227 template
2228 Output_section*
2229 Layout::layout_eh_frame<64, false>(Sized_relobj<64, false>* object,
2230                                    const unsigned char* symbols,
2231                                    off_t symbols_size,
2232                                    const unsigned char* symbol_names,
2233                                    off_t symbol_names_size,
2234                                    unsigned int shndx,
2235                                    const elfcpp::Shdr<64, false>& shdr,
2236                                    unsigned int reloc_shndx,
2237                                    unsigned int reloc_type,
2238                                    off_t* off);
2239 #endif
2240
2241 #ifdef HAVE_TARGET_64_BIG
2242 template
2243 Output_section*
2244 Layout::layout_eh_frame<64, true>(Sized_relobj<64, true>* object,
2245                                    const unsigned char* symbols,
2246                                    off_t symbols_size,
2247                                   const unsigned char* symbol_names,
2248                                   off_t symbol_names_size,
2249                                   unsigned int shndx,
2250                                   const elfcpp::Shdr<64, true>& shdr,
2251                                   unsigned int reloc_shndx,
2252                                   unsigned int reloc_type,
2253                                   off_t* off);
2254 #endif
2255
2256 } // End namespace gold.