Fix group signature handling for relocatable link, add bootstrap
[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>
75f2446e 29#include "libiberty.h"
bae7f79e
ILT
30
31#include "options.h"
494e05f4 32#include "debug.h"
bae7f79e
ILT
33#include "workqueue.h"
34#include "dirsearch.h"
35#include "readsyms.h"
14bfc3f5 36#include "symtab.h"
ead1e424 37#include "common.h"
54dc6425 38#include "object.h"
a2fb1b05 39#include "layout.h"
61ba1cf9 40#include "reloc.h"
ead1e424 41#include "defstd.h"
bae7f79e
ILT
42
43namespace gold
44{
45
46const char* program_name;
47
48void
49gold_exit(bool status)
50{
2d684091 51 if (!status && parameters != NULL && parameters->options_valid())
75f2446e 52 unlink_if_ordinary(parameters->output_file_name());
bae7f79e
ILT
53 exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
54}
55
bae7f79e
ILT
56void
57gold_nomem()
58{
59 // We are out of memory, so try hard to print a reasonable message.
60 // Note that we don't try to translate this message, since the
61 // translation process itself will require memory.
62 write(2, program_name, strlen(program_name));
63 const char* const s = ": out of memory\n";
64 write(2, s, strlen(s));
65 gold_exit(false);
66}
67
a3ad94ed
ILT
68// Handle an unreachable case.
69
bae7f79e 70void
a3ad94ed 71do_gold_unreachable(const char* filename, int lineno, const char* function)
bae7f79e 72{
27b7985a 73 fprintf(stderr, _("%s: internal error in %s, at %s:%d\n"),
a3ad94ed
ILT
74 program_name, function, filename, lineno);
75 gold_exit(false);
bae7f79e
ILT
76}
77
92e059d8
ILT
78// This class arranges to run the functions done in the middle of the
79// link. It is just a closure.
bae7f79e 80
92e059d8 81class Middle_runner : public Task_function_runner
bae7f79e 82{
92e059d8
ILT
83 public:
84 Middle_runner(const General_options& options,
85 const Input_objects* input_objects,
86 Symbol_table* symtab,
87 Layout* layout)
88 : options_(options), input_objects_(input_objects), symtab_(symtab),
89 layout_(layout)
90 { }
91
92 void
17a1d0a9 93 run(Workqueue*, const Task*);
92e059d8
ILT
94
95 private:
96 const General_options& options_;
97 const Input_objects* input_objects_;
98 Symbol_table* symtab_;
99 Layout* layout_;
100};
bae7f79e 101
92e059d8 102void
17a1d0a9 103Middle_runner::run(Workqueue* workqueue, const Task* task)
92e059d8 104{
17a1d0a9 105 queue_middle_tasks(this->options_, task, this->input_objects_, this->symtab_,
92e059d8
ILT
106 this->layout_, workqueue);
107}
bae7f79e
ILT
108
109// Queue up the initial set of tasks for this link job.
110
111void
112queue_initial_tasks(const General_options& options,
17a1d0a9 113 Dirsearch& search_path,
ead1e424 114 const Command_line& cmdline,
54dc6425 115 Workqueue* workqueue, Input_objects* input_objects,
12e14209 116 Symbol_table* symtab, Layout* layout)
bae7f79e 117{
e5366891
ILT
118 if (cmdline.begin() == cmdline.end())
119 gold_fatal(_("no input files"));
120
fe9a4c12
ILT
121 int thread_count = options.thread_count_initial();
122 if (thread_count == 0)
e5366891 123 thread_count = cmdline.number_of_input_files();
fe9a4c12
ILT
124 workqueue->set_thread_count(thread_count);
125
bae7f79e
ILT
126 // Read the input files. We have to add the symbols to the symbol
127 // table in order. We do this by creating a separate blocker for
128 // each input file. We associate the blocker with the following
129 // input file, to give us a convenient place to delete it.
130 Task_token* this_blocker = NULL;
ead1e424
ILT
131 for (Command_line::const_iterator p = cmdline.begin();
132 p != cmdline.end();
bae7f79e
ILT
133 ++p)
134 {
17a1d0a9 135 Task_token* next_blocker = new Task_token(true);
bae7f79e 136 next_blocker->add_blocker();
12e14209 137 workqueue->queue(new Read_symbols(options, input_objects, symtab, layout,
17a1d0a9 138 &search_path, &*p, NULL, this_blocker,
a2fb1b05 139 next_blocker));
bae7f79e
ILT
140 this_blocker = next_blocker;
141 }
142
92e059d8
ILT
143 workqueue->queue(new Task_function(new Middle_runner(options,
144 input_objects,
145 symtab,
146 layout),
c7912668
ILT
147 this_blocker,
148 "Task_function Middle_runner"));
bae7f79e
ILT
149}
150
92e059d8
ILT
151// Queue up the middle set of tasks. These are the tasks which run
152// after all the input objects have been found and all the symbols
153// have been read, but before we lay out the output file.
bae7f79e 154
92e059d8
ILT
155void
156queue_middle_tasks(const General_options& options,
17a1d0a9 157 const Task* task,
92e059d8
ILT
158 const Input_objects* input_objects,
159 Symbol_table* symtab,
160 Layout* layout,
161 Workqueue* workqueue)
61ba1cf9 162{
2c0aeda4
ILT
163 if (input_objects->number_of_input_objects() == 0)
164 {
165 // We had some input files, but we weren't able to open any of
166 // them.
167 gold_fatal(_("no input files"));
168 }
169
fe9a4c12
ILT
170 int thread_count = options.thread_count_middle();
171 if (thread_count == 0)
e5366891 172 thread_count = input_objects->number_of_input_objects();
fe9a4c12
ILT
173 workqueue->set_thread_count(thread_count);
174
b3b74ddc 175 // Now we have seen all the input files.
436ca963
ILT
176 const bool doing_static_link = (!input_objects->any_dynamic()
177 && !parameters->output_is_shared());
4eff2974
ILT
178 set_parameters_doing_static_link(doing_static_link);
179 if (!doing_static_link && options.is_static())
180 {
181 // We print out just the first .so we see; there may be others.
75f2446e
ILT
182 gold_error(_("cannot mix -static with dynamic object %s"),
183 (*input_objects->dynobj_begin())->name().c_str());
4eff2974 184 }
6a74a719
ILT
185 if (!doing_static_link && parameters->output_is_object())
186 gold_error(_("cannot mix -r with dynamic object %s"),
187 (*input_objects->dynobj_begin())->name().c_str());
b3b74ddc 188
494e05f4
ILT
189 if (is_debugging_enabled(DEBUG_SCRIPT))
190 layout->script_options()->print(stderr);
191
e2827e5f
ILT
192 // For each dynamic object, record whether we've seen all the
193 // dynamic objects that it depends upon.
194 input_objects->check_dynamic_dependencies();
195
70e654ba
ILT
196 // See if any of the input definitions violate the One Definition Rule.
197 // TODO: if this is too slow, do this as a task, rather than inline.
17a1d0a9 198 symtab->detect_odr_violations(task, options.output_file_name());
70e654ba 199
a3ad94ed
ILT
200 // Define some sections and symbols needed for a dynamic link. This
201 // handles some cases we want to see before we read the relocs.
9b07f471 202 layout->create_initial_dynamic_sections(symtab);
a3ad94ed 203
a445fddf
ILT
204 // Define symbols from any linker scripts.
205 layout->define_script_symbols(symtab);
206
6a74a719
ILT
207 if (!parameters->output_is_object())
208 {
209 // Predefine standard symbols.
210 define_standard_symbols(symtab, layout);
ead1e424 211
6a74a719
ILT
212 // Define __start and __stop symbols for output sections where
213 // appropriate.
214 layout->define_section_symbols(symtab);
215 }
bfd58944 216
755ab8af
ILT
217 // Make sure we have symbols for any required group signatures.
218 layout->define_group_signatures(symtab);
219
92e059d8
ILT
220 // Read the relocations of the input files. We do this to find
221 // which symbols are used by relocations which require a GOT and/or
222 // a PLT entry, or a COPY reloc. When we implement garbage
223 // collection we will do it here by reading the relocations in a
224 // breadth first search by references.
225 //
226 // We could also read the relocations during the first pass, and
227 // mark symbols at that time. That is how the old GNU linker works.
228 // Doing that is more complex, since we may later decide to discard
229 // some of the sections, and thus change our minds about the types
230 // of references made to the symbols.
17a1d0a9
ILT
231 Task_token* blocker = new Task_token(true);
232 Task_token* symtab_lock = new Task_token(false);
f6ce93d6
ILT
233 for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
234 p != input_objects->relobj_end();
92e059d8
ILT
235 ++p)
236 {
237 // We can read and process the relocations in any order. But we
238 // only want one task to write to the symbol table at a time.
239 // So we queue up a task for each object to read the
240 // relocations. That task will in turn queue a task to wait
241 // until it can write to the symbol table.
242 blocker->add_blocker();
ead1e424
ILT
243 workqueue->queue(new Read_relocs(options, symtab, layout, *p,
244 symtab_lock, blocker));
92e059d8
ILT
245 }
246
247 // Allocate common symbols. This requires write access to the
248 // symbol table, but is independent of the relocation processing.
6a74a719
ILT
249 // FIXME: We should have an option to do this even for a relocatable
250 // link.
251 if (!parameters->output_is_object())
252 {
253 blocker->add_blocker();
254 workqueue->queue(new Allocate_commons_task(options, symtab, layout,
255 symtab_lock, blocker));
256 }
92e059d8
ILT
257
258 // When all those tasks are complete, we can start laying out the
259 // output file.
260 workqueue->queue(new Task_function(new Layout_task_runner(options,
261 input_objects,
262 symtab,
263 layout),
c7912668
ILT
264 blocker,
265 "Task_function Layout_task_runner"));
92e059d8 266}
61ba1cf9
ILT
267
268// Queue up the final set of tasks. This is called at the end of
269// Layout_task.
270
271void
272queue_final_tasks(const General_options& options,
273 const Input_objects* input_objects,
274 const Symbol_table* symtab,
27bc2bce 275 Layout* layout,
61ba1cf9
ILT
276 Workqueue* workqueue,
277 Output_file* of)
278{
fe9a4c12
ILT
279 int thread_count = options.thread_count_final();
280 if (thread_count == 0)
e5366891 281 thread_count = input_objects->number_of_input_objects();
fe9a4c12
ILT
282 workqueue->set_thread_count(thread_count);
283
17a1d0a9
ILT
284 bool any_postprocessing_sections = layout->any_postprocessing_sections();
285
730cdc88
ILT
286 // Use a blocker to wait until all the input sections have been
287 // written out.
17a1d0a9
ILT
288 Task_token* input_sections_blocker = NULL;
289 if (!any_postprocessing_sections)
290 input_sections_blocker = new Task_token(true);
730cdc88
ILT
291
292 // Use a blocker to block any objects which have to wait for the
293 // output sections to complete before they can apply relocations.
17a1d0a9 294 Task_token* output_sections_blocker = new Task_token(true);
730cdc88 295
61ba1cf9 296 // Use a blocker to block the final cleanup task.
17a1d0a9 297 Task_token* final_blocker = new Task_token(true);
61ba1cf9
ILT
298
299 // Queue a task to write out the symbol table.
116724f3
ILT
300 if (!options.strip_all())
301 {
302 final_blocker->add_blocker();
303 workqueue->queue(new Write_symbols_task(symtab,
304 input_objects,
305 layout->sympool(),
306 layout->dynpool(),
307 of,
308 final_blocker));
309 }
61ba1cf9 310
730cdc88
ILT
311 // Queue a task to write out the output sections.
312 output_sections_blocker->add_blocker();
313 final_blocker->add_blocker();
314 workqueue->queue(new Write_sections_task(layout, of, output_sections_blocker,
315 final_blocker));
316
61ba1cf9
ILT
317 // Queue a task to write out everything else.
318 final_blocker->add_blocker();
9025d29d 319 workqueue->queue(new Write_data_task(layout, symtab, of, final_blocker));
61ba1cf9 320
17a1d0a9
ILT
321 // Queue a task for each input object to relocate the sections and
322 // write out the local symbols.
323 for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
324 p != input_objects->relobj_end();
325 ++p)
326 {
327 if (input_sections_blocker != NULL)
328 input_sections_blocker->add_blocker();
329 final_blocker->add_blocker();
330 workqueue->queue(new Relocate_task(options, symtab, layout, *p, of,
331 input_sections_blocker,
332 output_sections_blocker,
333 final_blocker));
334 }
335
730cdc88 336 // Queue a task to write out the output sections which depend on
17a1d0a9
ILT
337 // input sections. If there are any sections which require
338 // postprocessing, then we need to do this last, since it may resize
339 // the output file.
340 if (!any_postprocessing_sections)
341 {
342 final_blocker->add_blocker();
343 Task* t = new Write_after_input_sections_task(layout, of,
344 input_sections_blocker,
345 final_blocker);
346 workqueue->queue(t);
347 }
348 else
349 {
350 Task_token *new_final_blocker = new Task_token(true);
351 new_final_blocker->add_blocker();
352 Task* t = new Write_after_input_sections_task(layout, of,
353 final_blocker,
354 new_final_blocker);
355 workqueue->queue(t);
356 final_blocker = new_final_blocker;
357 }
730cdc88 358
61ba1cf9
ILT
359 // Queue a task to close the output file. This will be blocked by
360 // FINAL_BLOCKER.
92e059d8 361 workqueue->queue(new Task_function(new Close_task_runner(of),
c7912668
ILT
362 final_blocker,
363 "Task_function Close_task_runner"));
61ba1cf9
ILT
364}
365
366} // End namespace gold.
This page took 0.093034 seconds and 4 git commands to generate.