* script-sections.cc (Output_section_definition::
[deliverable/binutils-gdb.git] / gold / gold.cc
CommitLineData
5a6f7e2d 1// gold.cc -- main linker functions
bae7f79e 2
6d03d481 3// Copyright 2006, 2007, 2008, 2009 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
bae7f79e
ILT
23#include "gold.h"
24
25#include <cstdlib>
26#include <cstdio>
27#include <cstring>
28#include <unistd.h>
fbfba508 29#include <algorithm>
75f2446e 30#include "libiberty.h"
bae7f79e
ILT
31
32#include "options.h"
494e05f4 33#include "debug.h"
bae7f79e
ILT
34#include "workqueue.h"
35#include "dirsearch.h"
36#include "readsyms.h"
14bfc3f5 37#include "symtab.h"
ead1e424 38#include "common.h"
54dc6425 39#include "object.h"
a2fb1b05 40#include "layout.h"
61ba1cf9 41#include "reloc.h"
ead1e424 42#include "defstd.h"
89fc3421 43#include "plugin.h"
bae7f79e
ILT
44
45namespace gold
46{
47
48const char* program_name;
49
50void
51gold_exit(bool status)
52{
483620e8
CC
53 if (parameters != NULL
54 && parameters->options_valid()
55 && parameters->options().has_plugins())
56 parameters->options().plugins()->cleanup();
2d684091 57 if (!status && parameters != NULL && parameters->options_valid())
8851ecca 58 unlink_if_ordinary(parameters->options().output_file_name());
bae7f79e
ILT
59 exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
60}
61
bae7f79e
ILT
62void
63gold_nomem()
64{
65 // We are out of memory, so try hard to print a reasonable message.
66 // Note that we don't try to translate this message, since the
67 // translation process itself will require memory.
55ba0940
ILT
68
69 // LEN only exists to avoid a pointless warning when write is
70 // declared with warn_use_result, as when compiling with
71 // -D_USE_FORTIFY on GNU/Linux. Casting to void does not appear to
72 // work, at least not with gcc 4.3.0.
73
74 ssize_t len = write(2, program_name, strlen(program_name));
75 if (len >= 0)
76 {
77 const char* const s = ": out of memory\n";
78 len = write(2, s, strlen(s));
79 }
bae7f79e
ILT
80 gold_exit(false);
81}
82
a3ad94ed
ILT
83// Handle an unreachable case.
84
bae7f79e 85void
a3ad94ed 86do_gold_unreachable(const char* filename, int lineno, const char* function)
bae7f79e 87{
27b7985a 88 fprintf(stderr, _("%s: internal error in %s, at %s:%d\n"),
a3ad94ed
ILT
89 program_name, function, filename, lineno);
90 gold_exit(false);
bae7f79e
ILT
91}
92
92e059d8
ILT
93// This class arranges to run the functions done in the middle of the
94// link. It is just a closure.
bae7f79e 95
92e059d8 96class Middle_runner : public Task_function_runner
bae7f79e 97{
92e059d8
ILT
98 public:
99 Middle_runner(const General_options& options,
100 const Input_objects* input_objects,
101 Symbol_table* symtab,
7d9e3d98 102 Layout* layout, Mapfile* mapfile)
92e059d8 103 : options_(options), input_objects_(input_objects), symtab_(symtab),
7d9e3d98 104 layout_(layout), mapfile_(mapfile)
92e059d8
ILT
105 { }
106
107 void
17a1d0a9 108 run(Workqueue*, const Task*);
92e059d8
ILT
109
110 private:
111 const General_options& options_;
112 const Input_objects* input_objects_;
113 Symbol_table* symtab_;
114 Layout* layout_;
7d9e3d98 115 Mapfile* mapfile_;
92e059d8 116};
bae7f79e 117
92e059d8 118void
17a1d0a9 119Middle_runner::run(Workqueue* workqueue, const Task* task)
92e059d8 120{
17a1d0a9 121 queue_middle_tasks(this->options_, task, this->input_objects_, this->symtab_,
7d9e3d98 122 this->layout_, workqueue, this->mapfile_);
92e059d8 123}
bae7f79e 124
6d03d481
ST
125// This class arranges the tasks to process the relocs for garbage collection.
126
127class Gc_runner : public Task_function_runner
128{
129 public:
130 Gc_runner(const General_options& options,
131 const Input_objects* input_objects,
132 Symbol_table* symtab,
133 Layout* layout, Mapfile* mapfile)
134 : options_(options), input_objects_(input_objects), symtab_(symtab),
135 layout_(layout), mapfile_(mapfile)
136 { }
137
138 void
139 run(Workqueue*, const Task*);
140
141 private:
142 const General_options& options_;
143 const Input_objects* input_objects_;
144 Symbol_table* symtab_;
145 Layout* layout_;
146 Mapfile* mapfile_;
147};
148
149void
150Gc_runner::run(Workqueue* workqueue, const Task* task)
151{
152 queue_middle_gc_tasks(this->options_, task, this->input_objects_,
153 this->symtab_, this->layout_, workqueue,
154 this->mapfile_);
155}
156
bae7f79e
ILT
157// Queue up the initial set of tasks for this link job.
158
159void
160queue_initial_tasks(const General_options& options,
17a1d0a9 161 Dirsearch& search_path,
ead1e424 162 const Command_line& cmdline,
54dc6425 163 Workqueue* workqueue, Input_objects* input_objects,
7d9e3d98 164 Symbol_table* symtab, Layout* layout, Mapfile* mapfile)
bae7f79e 165{
e5366891 166 if (cmdline.begin() == cmdline.end())
459c9f1c
ILT
167 {
168 if (options.printed_version())
169 gold_exit(true);
170 gold_fatal(_("no input files"));
171 }
e5366891 172
fe9a4c12
ILT
173 int thread_count = options.thread_count_initial();
174 if (thread_count == 0)
e5366891 175 thread_count = cmdline.number_of_input_files();
fe9a4c12
ILT
176 workqueue->set_thread_count(thread_count);
177
bae7f79e
ILT
178 // Read the input files. We have to add the symbols to the symbol
179 // table in order. We do this by creating a separate blocker for
180 // each input file. We associate the blocker with the following
181 // input file, to give us a convenient place to delete it.
182 Task_token* this_blocker = NULL;
ead1e424
ILT
183 for (Command_line::const_iterator p = cmdline.begin();
184 p != cmdline.end();
bae7f79e
ILT
185 ++p)
186 {
17a1d0a9 187 Task_token* next_blocker = new Task_token(true);
bae7f79e 188 next_blocker->add_blocker();
f1ed28fb 189 workqueue->queue(new Read_symbols(input_objects, symtab, layout,
15f8229b 190 &search_path, 0, mapfile, &*p, NULL,
7d9e3d98 191 this_blocker, next_blocker));
bae7f79e
ILT
192 this_blocker = next_blocker;
193 }
194
89fc3421
CC
195 if (options.has_plugins())
196 {
197 Task_token* next_blocker = new Task_token(true);
198 next_blocker->add_blocker();
199 workqueue->queue(new Plugin_hook(options, input_objects, symtab, layout,
200 &search_path, mapfile, this_blocker,
201 next_blocker));
202 this_blocker = next_blocker;
203 }
204
6d03d481
ST
205 if (parameters->options().relocatable()
206 && parameters->options().gc_sections())
207 gold_error(_("cannot mix -r with garbage collection"));
208
209 if (parameters->options().gc_sections())
210 {
211 workqueue->queue(new Task_function(new Gc_runner(options,
212 input_objects,
213 symtab,
214 layout,
215 mapfile),
216 this_blocker,
217 "Task_function Gc_runner"));
218 }
219 else
220 {
221 workqueue->queue(new Task_function(new Middle_runner(options,
222 input_objects,
223 symtab,
224 layout,
225 mapfile),
226 this_blocker,
227 "Task_function Middle_runner"));
228 }
229}
230
231// Queue up a set of tasks to be done before queueing the middle set
232// of tasks. This is only necessary when garbage collection
233// (--gc-sections) of unused sections is desired. The relocs are read
234// and processed here early to determine the garbage sections before the
235// relocs can be scanned in later tasks.
236
237void
238queue_middle_gc_tasks(const General_options& options,
239 const Task* ,
240 const Input_objects* input_objects,
241 Symbol_table* symtab,
242 Layout* layout,
243 Workqueue* workqueue,
244 Mapfile* mapfile)
245{
246 // Read_relocs for all the objects must be done and processed to find
247 // unused sections before any scanning of the relocs can take place.
248 Task_token* blocker = new Task_token(true);
249 Task_token* symtab_lock = new Task_token(false);
250 for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
251 p != input_objects->relobj_end();
252 ++p)
253 {
254 // We can read and process the relocations in any order.
255 blocker->add_blocker();
256 workqueue->queue(new Read_relocs(options, symtab, layout, *p,
257 symtab_lock, blocker));
258 }
259
260 Task_token* this_blocker = new Task_token(true);
92e059d8 261 workqueue->queue(new Task_function(new Middle_runner(options,
6d03d481
ST
262 input_objects,
263 symtab,
264 layout,
265 mapfile),
266 this_blocker,
267 "Task_function Middle_runner"));
bae7f79e
ILT
268}
269
92e059d8
ILT
270// Queue up the middle set of tasks. These are the tasks which run
271// after all the input objects have been found and all the symbols
272// have been read, but before we lay out the output file.
bae7f79e 273
92e059d8
ILT
274void
275queue_middle_tasks(const General_options& options,
17a1d0a9 276 const Task* task,
92e059d8
ILT
277 const Input_objects* input_objects,
278 Symbol_table* symtab,
279 Layout* layout,
7d9e3d98
ILT
280 Workqueue* workqueue,
281 Mapfile* mapfile)
61ba1cf9 282{
6d03d481
ST
283 // Add any symbols named with -u options to the symbol table.
284 symtab->add_undefined_symbols_from_command_line();
285
286 // If garbage collection was chosen, relocs have been read and processed
287 // at this point by pre_middle_tasks. Layout can then be done for all
288 // objects.
289 if (parameters->options().gc_sections())
290 {
291 // Find the start symbol if any.
292 Symbol* start_sym;
293 if (parameters->options().entry())
294 start_sym = symtab->lookup(parameters->options().entry());
295 else
296 start_sym = symtab->lookup("_start");
297 if (start_sym !=NULL)
298 {
299 bool is_ordinary;
300 unsigned int shndx = start_sym->shndx(&is_ordinary);
301 if (is_ordinary)
302 {
303 symtab->gc()->worklist().push(
304 Section_id(start_sym->object(), shndx));
305 }
306 }
307 // Symbols named with -u should not be considered garbage.
308 symtab->gc_mark_undef_symbols();
309 gold_assert(symtab->gc() != NULL);
310 // Do a transitive closure on all references to determine the worklist.
311 symtab->gc()->do_transitive_closure();
312 // Call do_layout again to determine the output_sections for all
313 // referenced input sections.
314 for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
315 p != input_objects->relobj_end();
316 ++p)
317 {
318 (*p)->layout(symtab, layout, NULL);
319 }
320 }
321 // Layout deferred objects due to plugins.
322 if (parameters->options().has_plugins())
323 {
324 Plugin_manager* plugins = parameters->options().plugins();
325 gold_assert(plugins != NULL);
326 plugins->layout_deferred_objects();
327 }
328 if (parameters->options().gc_sections())
329 {
330 for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
331 p != input_objects->relobj_end();
332 ++p)
333 {
334 // Update the value of output_section stored in rd.
335 Read_relocs_data *rd = (*p)->get_relocs_data();
336 for (Read_relocs_data::Relocs_list::iterator q = rd->relocs.begin();
337 q != rd->relocs.end();
338 ++q)
339 {
340 q->output_section = (*p)->output_section(q->data_shndx);
341 q->needs_special_offset_handling =
342 (*p)->is_output_section_offset_invalid(q->data_shndx);
343 }
344 }
345 }
346
fbfba508
ILT
347 // We have to support the case of not seeing any input objects, and
348 // generate an empty file. Existing builds depend on being able to
349 // pass an empty archive to the linker and get an empty object file
350 // out. In order to do this we need to use a default target.
2c0aeda4 351 if (input_objects->number_of_input_objects() == 0)
8851ecca 352 set_parameters_target(&parameters->default_target());
2c0aeda4 353
fe9a4c12
ILT
354 int thread_count = options.thread_count_middle();
355 if (thread_count == 0)
fbfba508 356 thread_count = std::max(2, input_objects->number_of_input_objects());
fe9a4c12
ILT
357 workqueue->set_thread_count(thread_count);
358
b3b74ddc 359 // Now we have seen all the input files.
436ca963 360 const bool doing_static_link = (!input_objects->any_dynamic()
8851ecca 361 && !parameters->options().shared());
4eff2974
ILT
362 set_parameters_doing_static_link(doing_static_link);
363 if (!doing_static_link && options.is_static())
364 {
365 // We print out just the first .so we see; there may be others.
4e1e25e0 366 gold_assert(input_objects->dynobj_begin() != input_objects->dynobj_end());
75f2446e
ILT
367 gold_error(_("cannot mix -static with dynamic object %s"),
368 (*input_objects->dynobj_begin())->name().c_str());
4eff2974 369 }
8851ecca 370 if (!doing_static_link && parameters->options().relocatable())
459c9f1c 371 gold_fatal(_("cannot mix -r with dynamic object %s"),
6a74a719 372 (*input_objects->dynobj_begin())->name().c_str());
516cb3d0 373 if (!doing_static_link
7cc619c3 374 && options.oformat_enum() != General_options::OBJECT_FORMAT_ELF)
516cb3d0
ILT
375 gold_fatal(_("cannot use non-ELF output format with dynamic object %s"),
376 (*input_objects->dynobj_begin())->name().c_str());
b3b74ddc 377
494e05f4
ILT
378 if (is_debugging_enabled(DEBUG_SCRIPT))
379 layout->script_options()->print(stderr);
380
e2827e5f
ILT
381 // For each dynamic object, record whether we've seen all the
382 // dynamic objects that it depends upon.
383 input_objects->check_dynamic_dependencies();
384
70e654ba
ILT
385 // See if any of the input definitions violate the One Definition Rule.
386 // TODO: if this is too slow, do this as a task, rather than inline.
17a1d0a9 387 symtab->detect_odr_violations(task, options.output_file_name());
70e654ba 388
919ed24c
ILT
389 // Create any output sections required by any linker script.
390 layout->create_script_sections();
391
a3ad94ed
ILT
392 // Define some sections and symbols needed for a dynamic link. This
393 // handles some cases we want to see before we read the relocs.
9b07f471 394 layout->create_initial_dynamic_sections(symtab);
a3ad94ed 395
a445fddf
ILT
396 // Define symbols from any linker scripts.
397 layout->define_script_symbols(symtab);
398
154e0e9a
ILT
399 // Attach sections to segments.
400 layout->attach_sections_to_segments();
401
8851ecca 402 if (!parameters->options().relocatable())
6a74a719
ILT
403 {
404 // Predefine standard symbols.
405 define_standard_symbols(symtab, layout);
ead1e424 406
6a74a719
ILT
407 // Define __start and __stop symbols for output sections where
408 // appropriate.
409 layout->define_section_symbols(symtab);
410 }
bfd58944 411
755ab8af
ILT
412 // Make sure we have symbols for any required group signatures.
413 layout->define_group_signatures(symtab);
414
17a1d0a9
ILT
415 Task_token* blocker = new Task_token(true);
416 Task_token* symtab_lock = new Task_token(false);
6d03d481
ST
417
418 // If doing garbage collection, the relocations have already been read.
419 // Otherwise, read and scan the relocations.
420 if (parameters->options().gc_sections())
92e059d8 421 {
6d03d481
ST
422 for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
423 p != input_objects->relobj_end();
424 ++p)
425 {
426 blocker->add_blocker();
427 workqueue->queue(new Scan_relocs(options, symtab, layout, *p,
428 (*p)->get_relocs_data(),symtab_lock, blocker));
429 }
430 }
431 else
432 {
433 // Read the relocations of the input files. We do this to find
434 // which symbols are used by relocations which require a GOT and/or
435 // a PLT entry, or a COPY reloc. When we implement garbage
436 // collection we will do it here by reading the relocations in a
437 // breadth first search by references.
438 //
439 // We could also read the relocations during the first pass, and
440 // mark symbols at that time. That is how the old GNU linker works.
441 // Doing that is more complex, since we may later decide to discard
442 // some of the sections, and thus change our minds about the types
443 // of references made to the symbols.
444 for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
445 p != input_objects->relobj_end();
446 ++p)
447 {
448 // We can read and process the relocations in any order. But we
449 // only want one task to write to the symbol table at a time.
450 // So we queue up a task for each object to read the
451 // relocations. That task will in turn queue a task to wait
452 // until it can write to the symbol table.
453 blocker->add_blocker();
454 workqueue->queue(new Read_relocs(options, symtab, layout, *p,
455 symtab_lock, blocker));
456 }
92e059d8
ILT
457 }
458
459 // Allocate common symbols. This requires write access to the
460 // symbol table, but is independent of the relocation processing.
0dfbdef4 461 if (parameters->options().define_common())
6a74a719
ILT
462 {
463 blocker->add_blocker();
7d9e3d98
ILT
464 workqueue->queue(new Allocate_commons_task(symtab, layout, mapfile,
465 symtab_lock, blocker));
6a74a719 466 }
92e059d8
ILT
467
468 // When all those tasks are complete, we can start laying out the
469 // output file.
8851ecca
ILT
470 // TODO(csilvers): figure out a more principled way to get the target
471 Target* target = const_cast<Target*>(&parameters->target());
92e059d8
ILT
472 workqueue->queue(new Task_function(new Layout_task_runner(options,
473 input_objects,
474 symtab,
8851ecca 475 target,
7d9e3d98
ILT
476 layout,
477 mapfile),
c7912668
ILT
478 blocker,
479 "Task_function Layout_task_runner"));
92e059d8 480}
61ba1cf9
ILT
481
482// Queue up the final set of tasks. This is called at the end of
483// Layout_task.
484
485void
486queue_final_tasks(const General_options& options,
487 const Input_objects* input_objects,
488 const Symbol_table* symtab,
27bc2bce 489 Layout* layout,
61ba1cf9
ILT
490 Workqueue* workqueue,
491 Output_file* of)
492{
fe9a4c12
ILT
493 int thread_count = options.thread_count_final();
494 if (thread_count == 0)
fbfba508 495 thread_count = std::max(2, input_objects->number_of_input_objects());
fe9a4c12
ILT
496 workqueue->set_thread_count(thread_count);
497
17a1d0a9
ILT
498 bool any_postprocessing_sections = layout->any_postprocessing_sections();
499
730cdc88
ILT
500 // Use a blocker to wait until all the input sections have been
501 // written out.
17a1d0a9
ILT
502 Task_token* input_sections_blocker = NULL;
503 if (!any_postprocessing_sections)
504 input_sections_blocker = new Task_token(true);
730cdc88
ILT
505
506 // Use a blocker to block any objects which have to wait for the
507 // output sections to complete before they can apply relocations.
17a1d0a9 508 Task_token* output_sections_blocker = new Task_token(true);
730cdc88 509
61ba1cf9 510 // Use a blocker to block the final cleanup task.
17a1d0a9 511 Task_token* final_blocker = new Task_token(true);
61ba1cf9
ILT
512
513 // Queue a task to write out the symbol table.
5fe2a0f5 514 final_blocker->add_blocker();
d491d34e
ILT
515 workqueue->queue(new Write_symbols_task(layout,
516 symtab,
5fe2a0f5
ILT
517 input_objects,
518 layout->sympool(),
519 layout->dynpool(),
520 of,
521 final_blocker));
61ba1cf9 522
730cdc88
ILT
523 // Queue a task to write out the output sections.
524 output_sections_blocker->add_blocker();
525 final_blocker->add_blocker();
526 workqueue->queue(new Write_sections_task(layout, of, output_sections_blocker,
527 final_blocker));
528
61ba1cf9
ILT
529 // Queue a task to write out everything else.
530 final_blocker->add_blocker();
9025d29d 531 workqueue->queue(new Write_data_task(layout, symtab, of, final_blocker));
61ba1cf9 532
17a1d0a9
ILT
533 // Queue a task for each input object to relocate the sections and
534 // write out the local symbols.
535 for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
536 p != input_objects->relobj_end();
537 ++p)
538 {
539 if (input_sections_blocker != NULL)
540 input_sections_blocker->add_blocker();
541 final_blocker->add_blocker();
542 workqueue->queue(new Relocate_task(options, symtab, layout, *p, of,
543 input_sections_blocker,
544 output_sections_blocker,
545 final_blocker));
546 }
547
730cdc88 548 // Queue a task to write out the output sections which depend on
17a1d0a9
ILT
549 // input sections. If there are any sections which require
550 // postprocessing, then we need to do this last, since it may resize
551 // the output file.
552 if (!any_postprocessing_sections)
553 {
554 final_blocker->add_blocker();
555 Task* t = new Write_after_input_sections_task(layout, of,
556 input_sections_blocker,
557 final_blocker);
558 workqueue->queue(t);
559 }
560 else
561 {
562 Task_token *new_final_blocker = new Task_token(true);
563 new_final_blocker->add_blocker();
564 Task* t = new Write_after_input_sections_task(layout, of,
565 final_blocker,
566 new_final_blocker);
567 workqueue->queue(t);
568 final_blocker = new_final_blocker;
569 }
730cdc88 570
61ba1cf9
ILT
571 // Queue a task to close the output file. This will be blocked by
572 // FINAL_BLOCKER.
516cb3d0
ILT
573 workqueue->queue(new Task_function(new Close_task_runner(&options, layout,
574 of),
c7912668
ILT
575 final_blocker,
576 "Task_function Close_task_runner"));
61ba1cf9
ILT
577}
578
579} // End namespace gold.
This page took 0.164155 seconds and 4 git commands to generate.