86fc8e6847c72722965a9c29748b03cef2fd2279
[platform/upstream/binutils.git] / gold / gold.cc
1 // gold.cc -- main linker functions
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 <cstdlib>
26 #include <cstdio>
27 #include <cstring>
28 #include <unistd.h>
29 #include "libiberty.h"
30
31 #include "options.h"
32 #include "workqueue.h"
33 #include "dirsearch.h"
34 #include "readsyms.h"
35 #include "symtab.h"
36 #include "common.h"
37 #include "object.h"
38 #include "layout.h"
39 #include "reloc.h"
40 #include "defstd.h"
41
42 namespace gold
43 {
44
45 const char* program_name;
46
47 void
48 gold_exit(bool status)
49 {
50   if (!status && parameters != NULL)
51     unlink_if_ordinary(parameters->output_file_name());
52   exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
53 }
54
55 void
56 gold_nomem()
57 {
58   // We are out of memory, so try hard to print a reasonable message.
59   // Note that we don't try to translate this message, since the
60   // translation process itself will require memory.
61   write(2, program_name, strlen(program_name));
62   const char* const s = ": out of memory\n";
63   write(2, s, strlen(s));
64   gold_exit(false);
65 }
66
67 // Handle an unreachable case.
68
69 void
70 do_gold_unreachable(const char* filename, int lineno, const char* function)
71 {
72   fprintf(stderr, _("%s: internal error in %s, at %s:%d\n"),
73           program_name, function, filename, lineno);
74   gold_exit(false);
75 }
76
77 // This class arranges to run the functions done in the middle of the
78 // link.  It is just a closure.
79
80 class Middle_runner : public Task_function_runner
81 {
82  public:
83   Middle_runner(const General_options& options,
84                 const Input_objects* input_objects,
85                 Symbol_table* symtab,
86                 Layout* layout)
87     : options_(options), input_objects_(input_objects), symtab_(symtab),
88       layout_(layout)
89   { }
90
91   void
92   run(Workqueue*);
93
94  private:
95   const General_options& options_;
96   const Input_objects* input_objects_;
97   Symbol_table* symtab_;
98   Layout* layout_;
99 };
100
101 void
102 Middle_runner::run(Workqueue* workqueue)
103 {
104   queue_middle_tasks(this->options_, this->input_objects_, this->symtab_,
105                      this->layout_, workqueue);
106 }
107
108 // Queue up the initial set of tasks for this link job.
109
110 void
111 queue_initial_tasks(const General_options& options,
112                     const Dirsearch& search_path,
113                     const Command_line& cmdline,
114                     Workqueue* workqueue, Input_objects* input_objects,
115                     Symbol_table* symtab, Layout* layout)
116 {
117   int thread_count = options.thread_count_initial();
118   if (thread_count == 0)
119     {
120       thread_count = cmdline.number_of_input_files();
121       if (thread_count == 0)
122         thread_count = 1;
123     }
124   workqueue->set_thread_count(thread_count);
125
126   if (cmdline.begin() == cmdline.end())
127     gold_fatal(_("no input files"));
128
129   // Read the input files.  We have to add the symbols to the symbol
130   // table in order.  We do this by creating a separate blocker for
131   // each input file.  We associate the blocker with the following
132   // input file, to give us a convenient place to delete it.
133   Task_token* this_blocker = NULL;
134   for (Command_line::const_iterator p = cmdline.begin();
135        p != cmdline.end();
136        ++p)
137     {
138       Task_token* next_blocker = new Task_token();
139       next_blocker->add_blocker();
140       workqueue->queue(new Read_symbols(options, input_objects, symtab, layout,
141                                         search_path, &*p, NULL, this_blocker,
142                                         next_blocker));
143       this_blocker = next_blocker;
144     }
145
146   workqueue->queue(new Task_function(new Middle_runner(options,
147                                                        input_objects,
148                                                        symtab,
149                                                        layout),
150                                      this_blocker));
151 }
152
153 // Queue up the middle set of tasks.  These are the tasks which run
154 // after all the input objects have been found and all the symbols
155 // have been read, but before we lay out the output file.
156
157 void
158 queue_middle_tasks(const General_options& options,
159                    const Input_objects* input_objects,
160                    Symbol_table* symtab,
161                    Layout* layout,
162                    Workqueue* workqueue)
163 {
164   int thread_count = options.thread_count_middle();
165   if (thread_count == 0)
166     {
167       thread_count = input_objects->number_of_input_objects();
168       if (thread_count == 0)
169         thread_count = 1;
170     }
171   workqueue->set_thread_count(thread_count);
172
173   // Now we have seen all the input files.
174   const bool doing_static_link = (!input_objects->any_dynamic()
175                                   && !parameters->output_is_shared());
176   set_parameters_doing_static_link(doing_static_link);
177   if (!doing_static_link && options.is_static())
178     {
179       // We print out just the first .so we see; there may be others.
180       gold_error(_("cannot mix -static with dynamic object %s"),
181                  (*input_objects->dynobj_begin())->name().c_str());
182     }
183
184   // Define some sections and symbols needed for a dynamic link.  This
185   // handles some cases we want to see before we read the relocs.
186   layout->create_initial_dynamic_sections(input_objects, symtab);
187
188   // Predefine standard symbols.  This should be fast, so we don't
189   // bother to create a task for it.
190   define_standard_symbols(symtab, layout, input_objects->target());
191
192   // Define __start and __stop symbols for output sections where
193   // appropriate.
194   layout->define_section_symbols(symtab, input_objects->target());
195
196   // Read the relocations of the input files.  We do this to find
197   // which symbols are used by relocations which require a GOT and/or
198   // a PLT entry, or a COPY reloc.  When we implement garbage
199   // collection we will do it here by reading the relocations in a
200   // breadth first search by references.
201   //
202   // We could also read the relocations during the first pass, and
203   // mark symbols at that time.  That is how the old GNU linker works.
204   // Doing that is more complex, since we may later decide to discard
205   // some of the sections, and thus change our minds about the types
206   // of references made to the symbols.
207   Task_token* blocker = new Task_token();
208   Task_token* symtab_lock = new Task_token();
209   for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
210        p != input_objects->relobj_end();
211        ++p)
212     {
213       // We can read and process the relocations in any order.  But we
214       // only want one task to write to the symbol table at a time.
215       // So we queue up a task for each object to read the
216       // relocations.  That task will in turn queue a task to wait
217       // until it can write to the symbol table.
218       blocker->add_blocker();
219       workqueue->queue(new Read_relocs(options, symtab, layout, *p,
220                                        symtab_lock, blocker));
221     }
222
223   // Allocate common symbols.  This requires write access to the
224   // symbol table, but is independent of the relocation processing.
225   blocker->add_blocker();
226   workqueue->queue(new Allocate_commons_task(options, symtab, layout,
227                                              symtab_lock, blocker));
228
229   // When all those tasks are complete, we can start laying out the
230   // output file.
231   workqueue->queue(new Task_function(new Layout_task_runner(options,
232                                                             input_objects,
233                                                             symtab,
234                                                             layout),
235                                      blocker));
236 }
237
238 // Queue up the final set of tasks.  This is called at the end of
239 // Layout_task.
240
241 void
242 queue_final_tasks(const General_options& options,
243                   const Input_objects* input_objects,
244                   const Symbol_table* symtab,
245                   const Layout* layout,
246                   Workqueue* workqueue,
247                   Output_file* of)
248 {
249   int thread_count = options.thread_count_final();
250   if (thread_count == 0)
251     {
252       thread_count = input_objects->number_of_input_objects();
253       if (thread_count == 0)
254         thread_count = 1;
255     }
256   workqueue->set_thread_count(thread_count);
257
258   // Use a blocker to block the final cleanup task.
259   Task_token* final_blocker = new Task_token();
260
261   // Queue a task for each input object to relocate the sections and
262   // write out the local symbols.
263   for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
264        p != input_objects->relobj_end();
265        ++p)
266     {
267       final_blocker->add_blocker();
268       workqueue->queue(new Relocate_task(options, symtab, layout, *p, of,
269                                          final_blocker));
270     }
271
272   // Queue a task to write out the symbol table.
273   final_blocker->add_blocker();
274   workqueue->queue(new Write_symbols_task(symtab,
275                                           input_objects->target(),
276                                           layout->sympool(),
277                                           layout->dynpool(),
278                                           of,
279                                           final_blocker));
280
281   // Queue a task to write out everything else.
282   final_blocker->add_blocker();
283   workqueue->queue(new Write_data_task(layout, symtab, of, final_blocker));
284
285   // Queue a task to close the output file.  This will be blocked by
286   // FINAL_BLOCKER.
287   workqueue->queue(new Task_function(new Close_task_runner(of),
288                                      final_blocker));
289 }
290
291 } // End namespace gold.