* gnu-nat.h: Rename `current_inferior' to `gnu_current_inf' to
[deliverable/binutils-gdb.git] / gold / gold.cc
CommitLineData
5a6f7e2d 1// gold.cc -- main linker functions
bae7f79e 2
e5756efb 3// Copyright 2006, 2007, 2008 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{
2d684091 53 if (!status && parameters != NULL && parameters->options_valid())
8851ecca 54 unlink_if_ordinary(parameters->options().output_file_name());
bae7f79e
ILT
55 exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
56}
57
bae7f79e
ILT
58void
59gold_nomem()
60{
61 // We are out of memory, so try hard to print a reasonable message.
62 // Note that we don't try to translate this message, since the
63 // translation process itself will require memory.
55ba0940
ILT
64
65 // LEN only exists to avoid a pointless warning when write is
66 // declared with warn_use_result, as when compiling with
67 // -D_USE_FORTIFY on GNU/Linux. Casting to void does not appear to
68 // work, at least not with gcc 4.3.0.
69
70 ssize_t len = write(2, program_name, strlen(program_name));
71 if (len >= 0)
72 {
73 const char* const s = ": out of memory\n";
74 len = write(2, s, strlen(s));
75 }
bae7f79e
ILT
76 gold_exit(false);
77}
78
a3ad94ed
ILT
79// Handle an unreachable case.
80
bae7f79e 81void
a3ad94ed 82do_gold_unreachable(const char* filename, int lineno, const char* function)
bae7f79e 83{
27b7985a 84 fprintf(stderr, _("%s: internal error in %s, at %s:%d\n"),
a3ad94ed
ILT
85 program_name, function, filename, lineno);
86 gold_exit(false);
bae7f79e
ILT
87}
88
92e059d8
ILT
89// This class arranges to run the functions done in the middle of the
90// link. It is just a closure.
bae7f79e 91
92e059d8 92class Middle_runner : public Task_function_runner
bae7f79e 93{
92e059d8
ILT
94 public:
95 Middle_runner(const General_options& options,
96 const Input_objects* input_objects,
97 Symbol_table* symtab,
7d9e3d98 98 Layout* layout, Mapfile* mapfile)
92e059d8 99 : options_(options), input_objects_(input_objects), symtab_(symtab),
7d9e3d98 100 layout_(layout), mapfile_(mapfile)
92e059d8
ILT
101 { }
102
103 void
17a1d0a9 104 run(Workqueue*, const Task*);
92e059d8
ILT
105
106 private:
107 const General_options& options_;
108 const Input_objects* input_objects_;
109 Symbol_table* symtab_;
110 Layout* layout_;
7d9e3d98 111 Mapfile* mapfile_;
92e059d8 112};
bae7f79e 113
92e059d8 114void
17a1d0a9 115Middle_runner::run(Workqueue* workqueue, const Task* task)
92e059d8 116{
17a1d0a9 117 queue_middle_tasks(this->options_, task, this->input_objects_, this->symtab_,
7d9e3d98 118 this->layout_, workqueue, this->mapfile_);
92e059d8 119}
bae7f79e
ILT
120
121// Queue up the initial set of tasks for this link job.
122
123void
124queue_initial_tasks(const General_options& options,
17a1d0a9 125 Dirsearch& search_path,
ead1e424 126 const Command_line& cmdline,
54dc6425 127 Workqueue* workqueue, Input_objects* input_objects,
7d9e3d98 128 Symbol_table* symtab, Layout* layout, Mapfile* mapfile)
bae7f79e 129{
e5366891
ILT
130 if (cmdline.begin() == cmdline.end())
131 gold_fatal(_("no input files"));
132
fe9a4c12
ILT
133 int thread_count = options.thread_count_initial();
134 if (thread_count == 0)
e5366891 135 thread_count = cmdline.number_of_input_files();
fe9a4c12
ILT
136 workqueue->set_thread_count(thread_count);
137
bae7f79e
ILT
138 // Read the input files. We have to add the symbols to the symbol
139 // table in order. We do this by creating a separate blocker for
140 // each input file. We associate the blocker with the following
141 // input file, to give us a convenient place to delete it.
142 Task_token* this_blocker = NULL;
ead1e424
ILT
143 for (Command_line::const_iterator p = cmdline.begin();
144 p != cmdline.end();
bae7f79e
ILT
145 ++p)
146 {
17a1d0a9 147 Task_token* next_blocker = new Task_token(true);
bae7f79e 148 next_blocker->add_blocker();
12e14209 149 workqueue->queue(new Read_symbols(options, input_objects, symtab, layout,
7d9e3d98
ILT
150 &search_path, mapfile, &*p, NULL,
151 this_blocker, next_blocker));
bae7f79e
ILT
152 this_blocker = next_blocker;
153 }
154
89fc3421
CC
155 if (options.has_plugins())
156 {
157 Task_token* next_blocker = new Task_token(true);
158 next_blocker->add_blocker();
159 workqueue->queue(new Plugin_hook(options, input_objects, symtab, layout,
160 &search_path, mapfile, this_blocker,
161 next_blocker));
162 this_blocker = next_blocker;
163 }
164
92e059d8
ILT
165 workqueue->queue(new Task_function(new Middle_runner(options,
166 input_objects,
167 symtab,
7d9e3d98
ILT
168 layout,
169 mapfile),
c7912668
ILT
170 this_blocker,
171 "Task_function Middle_runner"));
bae7f79e
ILT
172}
173
92e059d8
ILT
174// Queue up the middle set of tasks. These are the tasks which run
175// after all the input objects have been found and all the symbols
176// have been read, but before we lay out the output file.
bae7f79e 177
92e059d8
ILT
178void
179queue_middle_tasks(const General_options& options,
17a1d0a9 180 const Task* task,
92e059d8
ILT
181 const Input_objects* input_objects,
182 Symbol_table* symtab,
183 Layout* layout,
7d9e3d98
ILT
184 Workqueue* workqueue,
185 Mapfile* mapfile)
61ba1cf9 186{
fbfba508
ILT
187 // We have to support the case of not seeing any input objects, and
188 // generate an empty file. Existing builds depend on being able to
189 // pass an empty archive to the linker and get an empty object file
190 // out. In order to do this we need to use a default target.
2c0aeda4 191 if (input_objects->number_of_input_objects() == 0)
8851ecca 192 set_parameters_target(&parameters->default_target());
2c0aeda4 193
fe9a4c12
ILT
194 int thread_count = options.thread_count_middle();
195 if (thread_count == 0)
fbfba508 196 thread_count = std::max(2, input_objects->number_of_input_objects());
fe9a4c12
ILT
197 workqueue->set_thread_count(thread_count);
198
b3b74ddc 199 // Now we have seen all the input files.
436ca963 200 const bool doing_static_link = (!input_objects->any_dynamic()
8851ecca 201 && !parameters->options().shared());
4eff2974
ILT
202 set_parameters_doing_static_link(doing_static_link);
203 if (!doing_static_link && options.is_static())
204 {
205 // We print out just the first .so we see; there may be others.
75f2446e
ILT
206 gold_error(_("cannot mix -static with dynamic object %s"),
207 (*input_objects->dynobj_begin())->name().c_str());
4eff2974 208 }
8851ecca 209 if (!doing_static_link && parameters->options().relocatable())
6a74a719
ILT
210 gold_error(_("cannot mix -r with dynamic object %s"),
211 (*input_objects->dynobj_begin())->name().c_str());
516cb3d0 212 if (!doing_static_link
7cc619c3 213 && options.oformat_enum() != General_options::OBJECT_FORMAT_ELF)
516cb3d0
ILT
214 gold_fatal(_("cannot use non-ELF output format with dynamic object %s"),
215 (*input_objects->dynobj_begin())->name().c_str());
b3b74ddc 216
494e05f4
ILT
217 if (is_debugging_enabled(DEBUG_SCRIPT))
218 layout->script_options()->print(stderr);
219
e2827e5f
ILT
220 // For each dynamic object, record whether we've seen all the
221 // dynamic objects that it depends upon.
222 input_objects->check_dynamic_dependencies();
223
70e654ba
ILT
224 // See if any of the input definitions violate the One Definition Rule.
225 // TODO: if this is too slow, do this as a task, rather than inline.
17a1d0a9 226 symtab->detect_odr_violations(task, options.output_file_name());
70e654ba 227
919ed24c
ILT
228 // Create any output sections required by any linker script.
229 layout->create_script_sections();
230
a3ad94ed
ILT
231 // Define some sections and symbols needed for a dynamic link. This
232 // handles some cases we want to see before we read the relocs.
9b07f471 233 layout->create_initial_dynamic_sections(symtab);
a3ad94ed 234
a445fddf
ILT
235 // Define symbols from any linker scripts.
236 layout->define_script_symbols(symtab);
237
f3e9c5c5
ILT
238 // Add any symbols named with -u options to the symbol table.
239 symtab->add_undefined_symbols_from_command_line();
240
154e0e9a
ILT
241 // Attach sections to segments.
242 layout->attach_sections_to_segments();
243
8851ecca 244 if (!parameters->options().relocatable())
6a74a719
ILT
245 {
246 // Predefine standard symbols.
247 define_standard_symbols(symtab, layout);
ead1e424 248
6a74a719
ILT
249 // Define __start and __stop symbols for output sections where
250 // appropriate.
251 layout->define_section_symbols(symtab);
252 }
bfd58944 253
755ab8af
ILT
254 // Make sure we have symbols for any required group signatures.
255 layout->define_group_signatures(symtab);
256
92e059d8
ILT
257 // Read the relocations of the input files. We do this to find
258 // which symbols are used by relocations which require a GOT and/or
259 // a PLT entry, or a COPY reloc. When we implement garbage
260 // collection we will do it here by reading the relocations in a
261 // breadth first search by references.
262 //
263 // We could also read the relocations during the first pass, and
264 // mark symbols at that time. That is how the old GNU linker works.
265 // Doing that is more complex, since we may later decide to discard
266 // some of the sections, and thus change our minds about the types
267 // of references made to the symbols.
17a1d0a9
ILT
268 Task_token* blocker = new Task_token(true);
269 Task_token* symtab_lock = new Task_token(false);
f6ce93d6
ILT
270 for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
271 p != input_objects->relobj_end();
92e059d8
ILT
272 ++p)
273 {
274 // We can read and process the relocations in any order. But we
275 // only want one task to write to the symbol table at a time.
276 // So we queue up a task for each object to read the
277 // relocations. That task will in turn queue a task to wait
278 // until it can write to the symbol table.
279 blocker->add_blocker();
ead1e424
ILT
280 workqueue->queue(new Read_relocs(options, symtab, layout, *p,
281 symtab_lock, blocker));
92e059d8
ILT
282 }
283
284 // Allocate common symbols. This requires write access to the
285 // symbol table, but is independent of the relocation processing.
0dfbdef4 286 if (parameters->options().define_common())
6a74a719
ILT
287 {
288 blocker->add_blocker();
7d9e3d98
ILT
289 workqueue->queue(new Allocate_commons_task(symtab, layout, mapfile,
290 symtab_lock, blocker));
6a74a719 291 }
92e059d8
ILT
292
293 // When all those tasks are complete, we can start laying out the
294 // output file.
8851ecca
ILT
295 // TODO(csilvers): figure out a more principled way to get the target
296 Target* target = const_cast<Target*>(&parameters->target());
92e059d8
ILT
297 workqueue->queue(new Task_function(new Layout_task_runner(options,
298 input_objects,
299 symtab,
8851ecca 300 target,
7d9e3d98
ILT
301 layout,
302 mapfile),
c7912668
ILT
303 blocker,
304 "Task_function Layout_task_runner"));
92e059d8 305}
61ba1cf9
ILT
306
307// Queue up the final set of tasks. This is called at the end of
308// Layout_task.
309
310void
311queue_final_tasks(const General_options& options,
312 const Input_objects* input_objects,
313 const Symbol_table* symtab,
27bc2bce 314 Layout* layout,
61ba1cf9
ILT
315 Workqueue* workqueue,
316 Output_file* of)
317{
fe9a4c12
ILT
318 int thread_count = options.thread_count_final();
319 if (thread_count == 0)
fbfba508 320 thread_count = std::max(2, input_objects->number_of_input_objects());
fe9a4c12
ILT
321 workqueue->set_thread_count(thread_count);
322
17a1d0a9
ILT
323 bool any_postprocessing_sections = layout->any_postprocessing_sections();
324
730cdc88
ILT
325 // Use a blocker to wait until all the input sections have been
326 // written out.
17a1d0a9
ILT
327 Task_token* input_sections_blocker = NULL;
328 if (!any_postprocessing_sections)
329 input_sections_blocker = new Task_token(true);
730cdc88
ILT
330
331 // Use a blocker to block any objects which have to wait for the
332 // output sections to complete before they can apply relocations.
17a1d0a9 333 Task_token* output_sections_blocker = new Task_token(true);
730cdc88 334
61ba1cf9 335 // Use a blocker to block the final cleanup task.
17a1d0a9 336 Task_token* final_blocker = new Task_token(true);
61ba1cf9
ILT
337
338 // Queue a task to write out the symbol table.
5fe2a0f5 339 final_blocker->add_blocker();
d491d34e
ILT
340 workqueue->queue(new Write_symbols_task(layout,
341 symtab,
5fe2a0f5
ILT
342 input_objects,
343 layout->sympool(),
344 layout->dynpool(),
345 of,
346 final_blocker));
61ba1cf9 347
730cdc88
ILT
348 // Queue a task to write out the output sections.
349 output_sections_blocker->add_blocker();
350 final_blocker->add_blocker();
351 workqueue->queue(new Write_sections_task(layout, of, output_sections_blocker,
352 final_blocker));
353
61ba1cf9
ILT
354 // Queue a task to write out everything else.
355 final_blocker->add_blocker();
9025d29d 356 workqueue->queue(new Write_data_task(layout, symtab, of, final_blocker));
61ba1cf9 357
17a1d0a9
ILT
358 // Queue a task for each input object to relocate the sections and
359 // write out the local symbols.
360 for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
361 p != input_objects->relobj_end();
362 ++p)
363 {
364 if (input_sections_blocker != NULL)
365 input_sections_blocker->add_blocker();
366 final_blocker->add_blocker();
367 workqueue->queue(new Relocate_task(options, symtab, layout, *p, of,
368 input_sections_blocker,
369 output_sections_blocker,
370 final_blocker));
371 }
372
730cdc88 373 // Queue a task to write out the output sections which depend on
17a1d0a9
ILT
374 // input sections. If there are any sections which require
375 // postprocessing, then we need to do this last, since it may resize
376 // the output file.
377 if (!any_postprocessing_sections)
378 {
379 final_blocker->add_blocker();
380 Task* t = new Write_after_input_sections_task(layout, of,
381 input_sections_blocker,
382 final_blocker);
383 workqueue->queue(t);
384 }
385 else
386 {
387 Task_token *new_final_blocker = new Task_token(true);
388 new_final_blocker->add_blocker();
389 Task* t = new Write_after_input_sections_task(layout, of,
390 final_blocker,
391 new_final_blocker);
392 workqueue->queue(t);
393 final_blocker = new_final_blocker;
394 }
730cdc88 395
61ba1cf9
ILT
396 // Queue a task to close the output file. This will be blocked by
397 // FINAL_BLOCKER.
516cb3d0
ILT
398 workqueue->queue(new Task_function(new Close_task_runner(&options, layout,
399 of),
c7912668
ILT
400 final_blocker,
401 "Task_function Close_task_runner"));
61ba1cf9
ILT
402}
403
404} // End namespace gold.
This page took 0.149604 seconds and 4 git commands to generate.