2010-09-15 Doug Kwan <dougkwan@google.com>
[deliverable/binutils-gdb.git] / gold / incremental.cc
CommitLineData
0e879927
ILT
1// inremental.cc -- incremental linking support for gold
2
09ec0418 3// Copyright 2009, 2010 Free Software Foundation, Inc.
0e879927
ILT
4// Written by Mikolaj Zalewski <mikolajz@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"
c549a694
ILT
24
25#include <cstdarg>
a81ee015 26#include "libiberty.h"
c549a694 27
0e879927 28#include "elfcpp.h"
3ce2c28e 29#include "output.h"
09ec0418 30#include "symtab.h"
3ce2c28e 31#include "incremental.h"
98fa85cb 32#include "archive.h"
44453f85 33#include "output.h"
c549a694 34#include "target-select.h"
0e70b911 35#include "target.h"
0e879927 36
0e879927
ILT
37namespace gold {
38
39// Version information. Will change frequently during the development, later
40// we could think about backward (and forward?) compatibility.
c4aa1e2d 41const unsigned int INCREMENTAL_LINK_VERSION = 1;
0e879927 42
09ec0418
CC
43// This class manages the .gnu_incremental_inputs section, which holds
44// the header information, a directory of input files, and separate
45// entries for each input file.
46
47template<int size, bool big_endian>
48class Output_section_incremental_inputs : public Output_section_data
49{
50 public:
51 Output_section_incremental_inputs(const Incremental_inputs* inputs,
52 const Symbol_table* symtab)
53 : Output_section_data(size / 8), inputs_(inputs), symtab_(symtab)
54 { }
55
56 protected:
57 // Set the final data size.
58 void
59 set_final_data_size();
60
61 // Write the data to the file.
62 void
63 do_write(Output_file*);
64
65 // Write to a map file.
66 void
67 do_print_to_mapfile(Mapfile* mapfile) const
68 { mapfile->print_output_data(this, _("** incremental_inputs")); }
69
70 private:
71 // Write the section header.
72 unsigned char*
73 write_header(unsigned char* pov, unsigned int input_file_count,
74 section_offset_type command_line_offset);
75
76 // Write the input file entries.
77 unsigned char*
78 write_input_files(unsigned char* oview, unsigned char* pov,
79 Stringpool* strtab);
80
81 // Write the supplemental information blocks.
82 unsigned char*
83 write_info_blocks(unsigned char* oview, unsigned char* pov,
84 Stringpool* strtab, unsigned int* global_syms,
85 unsigned int global_sym_count);
86
87 // Write the contents of the .gnu_incremental_symtab section.
88 void
89 write_symtab(unsigned char* pov, unsigned int* global_syms,
90 unsigned int global_sym_count);
91
0e70b911
CC
92 // Write the contents of the .gnu_incremental_got_plt section.
93 void
94 write_got_plt(unsigned char* pov, off_t view_size);
95
09ec0418
CC
96 // Typedefs for writing the data to the output sections.
97 typedef elfcpp::Swap<size, big_endian> Swap;
98 typedef elfcpp::Swap<16, big_endian> Swap16;
99 typedef elfcpp::Swap<32, big_endian> Swap32;
100 typedef elfcpp::Swap<64, big_endian> Swap64;
101
102 // Sizes of various structures.
103 static const int sizeof_addr = size / 8;
104 static const int header_size = 16;
105 static const int input_entry_size = 24;
106
107 // The Incremental_inputs object.
108 const Incremental_inputs* inputs_;
109
110 // The symbol table.
111 const Symbol_table* symtab_;
112};
113
c549a694
ILT
114// Inform the user why we don't do an incremental link. Not called in
115// the obvious case of missing output file. TODO: Is this helpful?
116
117void
118vexplain_no_incremental(const char* format, va_list args)
119{
120 char* buf = NULL;
121 if (vasprintf(&buf, format, args) < 0)
122 gold_nomem();
123 gold_info(_("the link might take longer: "
124 "cannot perform incremental link: %s"), buf);
125 free(buf);
126}
127
128void
129explain_no_incremental(const char* format, ...)
130{
131 va_list args;
132 va_start(args, format);
133 vexplain_no_incremental(format, args);
134 va_end(args);
135}
136
137// Report an error.
138
139void
140Incremental_binary::error(const char* format, ...) const
141{
142 va_list args;
143 va_start(args, format);
144 // Current code only checks if the file can be used for incremental linking,
145 // so errors shouldn't fail the build, but only result in a fallback to a
146 // full build.
147 // TODO: when we implement incremental editing of the file, we may need a
148 // flag that will cause errors to be treated seriously.
149 vexplain_no_incremental(format, args);
150 va_end(args);
151}
152
09ec0418
CC
153// Find the .gnu_incremental_inputs section and related sections.
154
c549a694
ILT
155template<int size, bool big_endian>
156bool
09ec0418
CC
157Sized_incremental_binary<size, big_endian>::do_find_incremental_inputs_sections(
158 unsigned int* p_inputs_shndx,
159 unsigned int* p_symtab_shndx,
160 unsigned int* p_relocs_shndx,
0e70b911 161 unsigned int* p_got_plt_shndx,
09ec0418 162 unsigned int* p_strtab_shndx)
c549a694 163{
09ec0418
CC
164 unsigned int inputs_shndx =
165 this->elf_file_.find_section_by_type(elfcpp::SHT_GNU_INCREMENTAL_INPUTS);
166 if (inputs_shndx == elfcpp::SHN_UNDEF) // Not found.
167 return false;
168
169 unsigned int symtab_shndx =
170 this->elf_file_.find_section_by_type(elfcpp::SHT_GNU_INCREMENTAL_SYMTAB);
171 if (symtab_shndx == elfcpp::SHN_UNDEF) // Not found.
172 return false;
173 if (this->elf_file_.section_link(symtab_shndx) != inputs_shndx)
c549a694 174 return false;
09ec0418
CC
175
176 unsigned int relocs_shndx =
177 this->elf_file_.find_section_by_type(elfcpp::SHT_GNU_INCREMENTAL_RELOCS);
178 if (relocs_shndx == elfcpp::SHN_UNDEF) // Not found.
179 return false;
180 if (this->elf_file_.section_link(relocs_shndx) != inputs_shndx)
181 return false;
182
0e70b911
CC
183 unsigned int got_plt_shndx =
184 this->elf_file_.find_section_by_type(elfcpp::SHT_GNU_INCREMENTAL_GOT_PLT);
185 if (got_plt_shndx == elfcpp::SHN_UNDEF) // Not found.
186 return false;
187 if (this->elf_file_.section_link(got_plt_shndx) != inputs_shndx)
188 return false;
189
09ec0418
CC
190 unsigned int strtab_shndx = this->elf_file_.section_link(inputs_shndx);
191 if (strtab_shndx == elfcpp::SHN_UNDEF
192 || strtab_shndx > this->elf_file_.shnum()
193 || this->elf_file_.section_type(strtab_shndx) != elfcpp::SHT_STRTAB)
194 return false;
195
196 if (p_inputs_shndx != NULL)
197 *p_inputs_shndx = inputs_shndx;
198 if (p_symtab_shndx != NULL)
199 *p_symtab_shndx = symtab_shndx;
200 if (p_relocs_shndx != NULL)
201 *p_relocs_shndx = relocs_shndx;
0e70b911
CC
202 if (p_got_plt_shndx != NULL)
203 *p_got_plt_shndx = got_plt_shndx;
09ec0418
CC
204 if (p_strtab_shndx != NULL)
205 *p_strtab_shndx = strtab_shndx;
c549a694
ILT
206 return true;
207}
208
09ec0418
CC
209// Determine whether an incremental link based on the existing output file
210// can be done.
211
c4aa1e2d
ILT
212template<int size, bool big_endian>
213bool
214Sized_incremental_binary<size, big_endian>::do_check_inputs(
215 Incremental_inputs* incremental_inputs)
216{
09ec0418
CC
217 unsigned int inputs_shndx;
218 unsigned int symtab_shndx;
219 unsigned int relocs_shndx;
0e70b911 220 unsigned int plt_got_shndx;
c4aa1e2d 221 unsigned int strtab_shndx;
c4aa1e2d 222
09ec0418 223 if (!do_find_incremental_inputs_sections(&inputs_shndx, &symtab_shndx,
0e70b911
CC
224 &relocs_shndx, &plt_got_shndx,
225 &strtab_shndx))
c4aa1e2d
ILT
226 {
227 explain_no_incremental(_("no incremental data from previous build"));
228 return false;
229 }
c4aa1e2d 230
09ec0418
CC
231 Location inputs_location(this->elf_file_.section_contents(inputs_shndx));
232 Location symtab_location(this->elf_file_.section_contents(symtab_shndx));
233 Location relocs_location(this->elf_file_.section_contents(relocs_shndx));
c4aa1e2d 234 Location strtab_location(this->elf_file_.section_contents(strtab_shndx));
09ec0418
CC
235
236 View inputs_view(view(inputs_location));
237 View symtab_view(view(symtab_location));
238 View relocs_view(view(relocs_location));
c4aa1e2d 239 View strtab_view(view(strtab_location));
09ec0418 240
c4aa1e2d 241 elfcpp::Elf_strtab strtab(strtab_view.data(), strtab_location.data_size);
c4aa1e2d 242
09ec0418
CC
243 Incremental_inputs_reader<size, big_endian>
244 incoming_inputs(inputs_view.data(), strtab);
c4aa1e2d 245
09ec0418 246 if (incoming_inputs.version() != INCREMENTAL_LINK_VERSION)
c4aa1e2d 247 {
09ec0418 248 explain_no_incremental(_("different version of incremental build data"));
c4aa1e2d
ILT
249 return false;
250 }
251
09ec0418 252 if (incremental_inputs->command_line() != incoming_inputs.command_line())
c4aa1e2d
ILT
253 {
254 explain_no_incremental(_("command line changed"));
255 return false;
256 }
257
258 // TODO: compare incremental_inputs->inputs() with entries in data_view.
09ec0418 259
c4aa1e2d
ILT
260 return true;
261}
262
c549a694
ILT
263namespace
264{
265
266// Create a Sized_incremental_binary object of the specified size and
267// endianness. Fails if the target architecture is not supported.
268
269template<int size, bool big_endian>
270Incremental_binary*
271make_sized_incremental_binary(Output_file* file,
272 const elfcpp::Ehdr<size, big_endian>& ehdr)
273{
274 Target* target = select_target(ehdr.get_e_machine(), size, big_endian,
275 ehdr.get_e_ident()[elfcpp::EI_OSABI],
276 ehdr.get_e_ident()[elfcpp::EI_ABIVERSION]);
277 if (target == NULL)
278 {
279 explain_no_incremental(_("unsupported ELF machine number %d"),
280 ehdr.get_e_machine());
281 return NULL;
282 }
283
3aec4f9c
RÁE
284 if (!parameters->target_valid())
285 set_parameters_target(target);
286 else if (target != &parameters->target())
287 gold_error(_("%s: incompatible target"), file->filename());
288
c549a694
ILT
289 return new Sized_incremental_binary<size, big_endian>(file, ehdr, target);
290}
291
292} // End of anonymous namespace.
293
09ec0418
CC
294// Create an Incremental_binary object for FILE. Returns NULL is this is not
295// possible, e.g. FILE is not an ELF file or has an unsupported target. FILE
c549a694
ILT
296// should be opened.
297
298Incremental_binary*
299open_incremental_binary(Output_file* file)
300{
301 off_t filesize = file->filesize();
302 int want = elfcpp::Elf_recognizer::max_header_size;
303 if (filesize < want)
304 want = filesize;
305
306 const unsigned char* p = file->get_input_view(0, want);
307 if (!elfcpp::Elf_recognizer::is_elf_file(p, want))
308 {
309 explain_no_incremental(_("output is not an ELF file."));
310 return NULL;
311 }
312
ac33a407
DK
313 int size = 0;
314 bool big_endian = false;
c549a694
ILT
315 std::string error;
316 if (!elfcpp::Elf_recognizer::is_valid_header(p, want, &size, &big_endian,
317 &error))
318 {
319 explain_no_incremental(error.c_str());
320 return NULL;
321 }
322
323 Incremental_binary* result = NULL;
324 if (size == 32)
325 {
326 if (big_endian)
327 {
328#ifdef HAVE_TARGET_32_BIG
329 result = make_sized_incremental_binary<32, true>(
330 file, elfcpp::Ehdr<32, true>(p));
331#else
332 explain_no_incremental(_("unsupported file: 32-bit, big-endian"));
333#endif
334 }
335 else
336 {
337#ifdef HAVE_TARGET_32_LITTLE
338 result = make_sized_incremental_binary<32, false>(
339 file, elfcpp::Ehdr<32, false>(p));
340#else
341 explain_no_incremental(_("unsupported file: 32-bit, little-endian"));
342#endif
343 }
344 }
345 else if (size == 64)
346 {
347 if (big_endian)
348 {
349#ifdef HAVE_TARGET_64_BIG
350 result = make_sized_incremental_binary<64, true>(
351 file, elfcpp::Ehdr<64, true>(p));
352#else
353 explain_no_incremental(_("unsupported file: 64-bit, big-endian"));
354#endif
355 }
356 else
357 {
358#ifdef HAVE_TARGET_64_LITTLE
359 result = make_sized_incremental_binary<64, false>(
360 file, elfcpp::Ehdr<64, false>(p));
361#else
362 explain_no_incremental(_("unsupported file: 64-bit, little-endian"));
363#endif
364 }
365 }
366 else
367 gold_unreachable();
368
369 return result;
370}
371
44453f85
ILT
372// Analyzes the output file to check if incremental linking is possible and
373// (to be done) what files need to be relinked.
374
375bool
376Incremental_checker::can_incrementally_link_output_file()
377{
378 Output_file output(this->output_name_);
379 if (!output.open_for_modification())
380 return false;
c549a694
ILT
381 Incremental_binary* binary = open_incremental_binary(&output);
382 if (binary == NULL)
383 return false;
c4aa1e2d 384 return binary->check_inputs(this->incremental_inputs_);
44453f85
ILT
385}
386
09ec0418
CC
387// Class Incremental_inputs.
388
3ce2c28e
ILT
389// Add the command line to the string table, setting
390// command_line_key_. In incremental builds, the command line is
391// stored in .gnu_incremental_inputs so that the next linker run can
392// check if the command line options didn't change.
393
394void
395Incremental_inputs::report_command_line(int argc, const char* const* argv)
396{
397 // Always store 'gold' as argv[0] to avoid a full relink if the user used a
398 // different path to the linker.
399 std::string args("gold");
400 // Copied from collect_argv in main.cc.
401 for (int i = 1; i < argc; ++i)
402 {
09ec0418 403 // Adding/removing these options should not result in a full relink.
b19b0c6d
ILT
404 if (strcmp(argv[i], "--incremental-changed") == 0
405 || strcmp(argv[i], "--incremental-unchanged") == 0
406 || strcmp(argv[i], "--incremental-unknown") == 0)
407 continue;
408
3ce2c28e
ILT
409 args.append(" '");
410 // Now append argv[i], but with all single-quotes escaped
411 const char* argpos = argv[i];
412 while (1)
413 {
414 const int len = strcspn(argpos, "'");
415 args.append(argpos, len);
416 if (argpos[len] == '\0')
417 break;
418 args.append("'\"'\"'");
419 argpos += len + 1;
420 }
421 args.append("'");
422 }
c4aa1e2d
ILT
423
424 this->command_line_ = args;
425 this->strtab_->add(this->command_line_.c_str(), false,
426 &this->command_line_key_);
3ce2c28e
ILT
427}
428
09ec0418
CC
429// Record the input archive file ARCHIVE. This is called by the
430// Add_archive_symbols task before determining which archive members
431// to include. We create the Incremental_archive_entry here and
432// attach it to the Archive, but we do not add it to the list of
433// input objects until report_archive_end is called.
072fe7ce
ILT
434
435void
09ec0418 436Incremental_inputs::report_archive_begin(Archive* arch)
072fe7ce 437{
09ec0418
CC
438 Stringpool::Key filename_key;
439 Timespec mtime = arch->file().get_mtime();
072fe7ce 440
09ec0418
CC
441 this->strtab_->add(arch->filename().c_str(), false, &filename_key);
442 Incremental_archive_entry* entry =
443 new Incremental_archive_entry(filename_key, arch, mtime);
444 arch->set_incremental_info(entry);
072fe7ce
ILT
445}
446
09ec0418
CC
447// Finish recording the input archive file ARCHIVE. This is called by the
448// Add_archive_symbols task after determining which archive members
449// to include.
072fe7ce
ILT
450
451void
09ec0418 452Incremental_inputs::report_archive_end(Archive* arch)
072fe7ce 453{
09ec0418
CC
454 Incremental_archive_entry* entry = arch->incremental_info();
455
456 gold_assert(entry != NULL);
457
458 // Collect unused global symbols.
459 for (Archive::Unused_symbol_iterator p = arch->unused_symbols_begin();
460 p != arch->unused_symbols_end();
461 ++p)
462 {
463 Stringpool::Key symbol_key;
464 this->strtab_->add(*p, true, &symbol_key);
465 entry->add_unused_global_symbol(symbol_key);
466 }
467 this->inputs_.push_back(entry);
072fe7ce
ILT
468}
469
09ec0418
CC
470// Record the input object file OBJ. If ARCH is not NULL, attach
471// the object file to the archive. This is called by the
472// Add_symbols task after finding out the type of the file.
072fe7ce
ILT
473
474void
09ec0418 475Incremental_inputs::report_object(Object* obj, Archive* arch)
072fe7ce 476{
09ec0418
CC
477 Stringpool::Key filename_key;
478 Timespec mtime = obj->input_file()->file().get_mtime();
479
480 this->strtab_->add(obj->name().c_str(), false, &filename_key);
481 Incremental_object_entry* obj_entry =
482 new Incremental_object_entry(filename_key, obj, mtime);
483 this->inputs_.push_back(obj_entry);
072fe7ce 484
09ec0418
CC
485 if (arch != NULL)
486 {
487 Incremental_archive_entry* arch_entry = arch->incremental_info();
488 gold_assert(arch_entry != NULL);
489 arch_entry->add_object(obj_entry);
490 }
491
492 this->current_object_ = obj;
493 this->current_object_entry_ = obj_entry;
072fe7ce
ILT
494}
495
09ec0418
CC
496// Record the input object file OBJ. If ARCH is not NULL, attach
497// the object file to the archive. This is called by the
498// Add_symbols task after finding out the type of the file.
072fe7ce
ILT
499
500void
09ec0418
CC
501Incremental_inputs::report_input_section(Object* obj, unsigned int shndx,
502 const char* name, off_t sh_size)
072fe7ce 503{
09ec0418 504 Stringpool::Key key = 0;
072fe7ce 505
09ec0418
CC
506 if (name != NULL)
507 this->strtab_->add(name, true, &key);
508
509 gold_assert(obj == this->current_object_);
510 this->current_object_entry_->add_input_section(shndx, key, sh_size);
511}
512
513// Record that the input argument INPUT is a script SCRIPT. This is
514// called by read_script after parsing the script and reading the list
515// of inputs added by this script.
516
517void
518Incremental_inputs::report_script(const std::string& filename,
519 Script_info* script, Timespec mtime)
520{
521 Stringpool::Key filename_key;
522
523 this->strtab_->add(filename.c_str(), false, &filename_key);
524 Incremental_script_entry* entry =
525 new Incremental_script_entry(filename_key, script, mtime);
526 this->inputs_.push_back(entry);
072fe7ce
ILT
527}
528
3ce2c28e
ILT
529// Finalize the incremental link information. Called from
530// Layout::finalize.
531
532void
533Incremental_inputs::finalize()
534{
09ec0418 535 // Finalize the string table.
3ce2c28e
ILT
536 this->strtab_->set_string_offsets();
537}
538
09ec0418 539// Create the .gnu_incremental_inputs, _symtab, and _relocs input sections.
3ce2c28e 540
09ec0418
CC
541void
542Incremental_inputs::create_data_sections(Symbol_table* symtab)
3ce2c28e
ILT
543{
544 switch (parameters->size_and_endianness())
545 {
546#ifdef HAVE_TARGET_32_LITTLE
547 case Parameters::TARGET_32_LITTLE:
09ec0418
CC
548 this->inputs_section_ =
549 new Output_section_incremental_inputs<32, false>(this, symtab);
550 break;
3ce2c28e
ILT
551#endif
552#ifdef HAVE_TARGET_32_BIG
553 case Parameters::TARGET_32_BIG:
09ec0418
CC
554 this->inputs_section_ =
555 new Output_section_incremental_inputs<32, true>(this, symtab);
556 break;
3ce2c28e
ILT
557#endif
558#ifdef HAVE_TARGET_64_LITTLE
559 case Parameters::TARGET_64_LITTLE:
09ec0418
CC
560 this->inputs_section_ =
561 new Output_section_incremental_inputs<64, false>(this, symtab);
562 break;
3ce2c28e
ILT
563#endif
564#ifdef HAVE_TARGET_64_BIG
565 case Parameters::TARGET_64_BIG:
09ec0418
CC
566 this->inputs_section_ =
567 new Output_section_incremental_inputs<64, true>(this, symtab);
568 break;
3ce2c28e
ILT
569#endif
570 default:
571 gold_unreachable();
072fe7ce 572 }
09ec0418
CC
573 this->symtab_section_ = new Output_data_space(4, "** incremental_symtab");
574 this->relocs_section_ = new Output_data_space(4, "** incremental_relocs");
0e70b911 575 this->got_plt_section_ = new Output_data_space(4, "** incremental_got_plt");
3ce2c28e
ILT
576}
577
09ec0418
CC
578// Return the sh_entsize value for the .gnu_incremental_relocs section.
579unsigned int
580Incremental_inputs::relocs_entsize() const
581{
582 return 8 + 2 * parameters->target().get_size() / 8;
583}
584
585// Class Output_section_incremental_inputs.
586
587// Finalize the offsets for each input section and supplemental info block,
588// and set the final data size of the incremental output sections.
3ce2c28e
ILT
589
590template<int size, bool big_endian>
09ec0418
CC
591void
592Output_section_incremental_inputs<size, big_endian>::set_final_data_size()
072fe7ce 593{
09ec0418
CC
594 const Incremental_inputs* inputs = this->inputs_;
595 const unsigned int sizeof_addr = size / 8;
596 const unsigned int rel_size = 8 + 2 * sizeof_addr;
597
598 // Offset of each input entry.
599 unsigned int input_offset = this->header_size;
600
601 // Offset of each supplemental info block.
602 unsigned int info_offset = this->header_size;
603 info_offset += this->input_entry_size * inputs->input_file_count();
604
605 // Count each input file and its supplemental information block.
606 for (Incremental_inputs::Input_list::const_iterator p =
607 inputs->input_files().begin();
608 p != inputs->input_files().end();
609 ++p)
072fe7ce 610 {
09ec0418
CC
611 // Set the offset of the input file entry.
612 (*p)->set_offset(input_offset);
613 input_offset += this->input_entry_size;
614
615 // Set the offset of the supplemental info block.
616 switch ((*p)->type())
617 {
618 case INCREMENTAL_INPUT_SCRIPT:
619 // No supplemental info for a script.
620 (*p)->set_info_offset(0);
621 break;
622 case INCREMENTAL_INPUT_OBJECT:
623 case INCREMENTAL_INPUT_ARCHIVE_MEMBER:
624 {
ca09d69a 625 Incremental_object_entry* entry = (*p)->object_entry();
09ec0418
CC
626 gold_assert(entry != NULL);
627 (*p)->set_info_offset(info_offset);
628 // Input section count + global symbol count.
629 info_offset += 8;
630 // Each input section.
631 info_offset += (entry->get_input_section_count()
632 * (8 + 2 * sizeof_addr));
633 // Each global symbol.
634 const Object::Symbols* syms = entry->object()->get_global_symbols();
635 info_offset += syms->size() * 16;
636 }
637 break;
638 case INCREMENTAL_INPUT_SHARED_LIBRARY:
639 {
ca09d69a 640 Incremental_object_entry* entry = (*p)->object_entry();
09ec0418
CC
641 gold_assert(entry != NULL);
642 (*p)->set_info_offset(info_offset);
643 // Global symbol count.
644 info_offset += 4;
645 // Each global symbol.
646 const Object::Symbols* syms = entry->object()->get_global_symbols();
647 unsigned int nsyms = syms != NULL ? syms->size() : 0;
648 info_offset += nsyms * 4;
649 }
650 break;
651 case INCREMENTAL_INPUT_ARCHIVE:
652 {
ca09d69a 653 Incremental_archive_entry* entry = (*p)->archive_entry();
09ec0418
CC
654 gold_assert(entry != NULL);
655 (*p)->set_info_offset(info_offset);
656 // Member count + unused global symbol count.
657 info_offset += 8;
658 // Each member.
659 info_offset += (entry->get_member_count() * 4);
660 // Each global symbol.
661 info_offset += (entry->get_unused_global_symbol_count() * 4);
662 }
663 break;
664 default:
665 gold_unreachable();
666 }
072fe7ce
ILT
667 }
668
09ec0418
CC
669 this->set_data_size(info_offset);
670
671 // Set the size of the .gnu_incremental_symtab section.
672 inputs->symtab_section()->set_current_data_size(this->symtab_->output_count()
673 * sizeof(unsigned int));
674
675 // Set the size of the .gnu_incremental_relocs section.
676 inputs->relocs_section()->set_current_data_size(inputs->get_reloc_count()
677 * rel_size);
0e70b911
CC
678
679 // Set the size of the .gnu_incremental_got_plt section.
680 Sized_target<size, big_endian>* target =
681 parameters->sized_target<size, big_endian>();
682 unsigned int got_count = target->got_entry_count();
683 unsigned int plt_count = target->plt_entry_count();
684 unsigned int got_plt_size = 8; // GOT entry count, PLT entry count.
685 got_plt_size = (got_plt_size + got_count + 3) & ~3; // GOT type array.
686 got_plt_size += got_count * 4 + plt_count * 4; // GOT array, PLT array.
687 inputs->got_plt_section()->set_current_data_size(got_plt_size);
09ec0418
CC
688}
689
690// Write the contents of the .gnu_incremental_inputs and
691// .gnu_incremental_symtab sections.
692
693template<int size, bool big_endian>
694void
695Output_section_incremental_inputs<size, big_endian>::do_write(Output_file* of)
696{
697 const Incremental_inputs* inputs = this->inputs_;
698 Stringpool* strtab = inputs->get_stringpool();
699
700 // Get a view into the .gnu_incremental_inputs section.
701 const off_t off = this->offset();
702 const off_t oview_size = this->data_size();
703 unsigned char* const oview = of->get_output_view(off, oview_size);
704 unsigned char* pov = oview;
705
706 // Get a view into the .gnu_incremental_symtab section.
707 const off_t symtab_off = inputs->symtab_section()->offset();
708 const off_t symtab_size = inputs->symtab_section()->data_size();
709 unsigned char* const symtab_view = of->get_output_view(symtab_off,
710 symtab_size);
711
712 // Allocate an array of linked list heads for the .gnu_incremental_symtab
713 // section. Each element corresponds to a global symbol in the output
714 // symbol table, and points to the head of the linked list that threads
715 // through the object file input entries. The value of each element
716 // is the section-relative offset to a global symbol entry in a
717 // supplemental information block.
718 unsigned int global_sym_count = this->symtab_->output_count();
719 unsigned int* global_syms = new unsigned int[global_sym_count];
720 memset(global_syms, 0, global_sym_count * sizeof(unsigned int));
721
722 // Write the section header.
723 Stringpool::Key command_line_key = inputs->command_line_key();
724 pov = this->write_header(pov, inputs->input_file_count(),
725 strtab->get_offset_from_key(command_line_key));
726
727 // Write the list of input files.
728 pov = this->write_input_files(oview, pov, strtab);
729
730 // Write the supplemental information blocks for each input file.
731 pov = this->write_info_blocks(oview, pov, strtab, global_syms,
732 global_sym_count);
733
734 gold_assert(pov - oview == oview_size);
735
736 // Write the .gnu_incremental_symtab section.
737 gold_assert(global_sym_count * 4 == symtab_size);
738 this->write_symtab(symtab_view, global_syms, global_sym_count);
739
740 delete[] global_syms;
741
0e70b911
CC
742 // Write the .gnu_incremental_got_plt section.
743 const off_t got_plt_off = inputs->got_plt_section()->offset();
744 const off_t got_plt_size = inputs->got_plt_section()->data_size();
745 unsigned char* const got_plt_view = of->get_output_view(got_plt_off,
746 got_plt_size);
747 this->write_got_plt(got_plt_view, got_plt_size);
748
09ec0418
CC
749 of->write_output_view(off, oview_size, oview);
750 of->write_output_view(symtab_off, symtab_size, symtab_view);
0e70b911 751 of->write_output_view(got_plt_off, got_plt_size, got_plt_view);
09ec0418
CC
752}
753
754// Write the section header: version, input file count, offset of command line
755// in the string table, and 4 bytes of padding.
756
757template<int size, bool big_endian>
758unsigned char*
759Output_section_incremental_inputs<size, big_endian>::write_header(
760 unsigned char* pov,
761 unsigned int input_file_count,
762 section_offset_type command_line_offset)
763{
764 Swap32::writeval(pov, INCREMENTAL_LINK_VERSION);
765 Swap32::writeval(pov + 4, input_file_count);
766 Swap32::writeval(pov + 8, command_line_offset);
767 Swap32::writeval(pov + 12, 0);
768 return pov + this->header_size;
769}
770
771// Write the input file entries.
772
773template<int size, bool big_endian>
774unsigned char*
775Output_section_incremental_inputs<size, big_endian>::write_input_files(
776 unsigned char* oview,
777 unsigned char* pov,
778 Stringpool* strtab)
779{
780 const Incremental_inputs* inputs = this->inputs_;
781
782 for (Incremental_inputs::Input_list::const_iterator p =
783 inputs->input_files().begin();
784 p != inputs->input_files().end();
785 ++p)
786 {
56f75c03 787 gold_assert(static_cast<unsigned int>(pov - oview) == (*p)->get_offset());
09ec0418
CC
788 section_offset_type filename_offset =
789 strtab->get_offset_from_key((*p)->get_filename_key());
790 const Timespec& mtime = (*p)->get_mtime();
791 Swap32::writeval(pov, filename_offset);
792 Swap32::writeval(pov + 4, (*p)->get_info_offset());
793 Swap64::writeval(pov + 8, mtime.seconds);
794 Swap32::writeval(pov + 16, mtime.nanoseconds);
795 Swap16::writeval(pov + 20, (*p)->type());
796 Swap16::writeval(pov + 22, 0);
797 pov += this->input_entry_size;
798 }
799 return pov;
800}
801
802// Write the supplemental information blocks.
803
804template<int size, bool big_endian>
805unsigned char*
806Output_section_incremental_inputs<size, big_endian>::write_info_blocks(
807 unsigned char* oview,
808 unsigned char* pov,
809 Stringpool* strtab,
810 unsigned int* global_syms,
811 unsigned int global_sym_count)
812{
813 const Incremental_inputs* inputs = this->inputs_;
814 unsigned int first_global_index = this->symtab_->first_global_index();
815
816 for (Incremental_inputs::Input_list::const_iterator p =
817 inputs->input_files().begin();
818 p != inputs->input_files().end();
819 ++p)
820 {
821 switch ((*p)->type())
822 {
823 case INCREMENTAL_INPUT_SCRIPT:
824 // No supplemental info for a script.
825 break;
826
827 case INCREMENTAL_INPUT_OBJECT:
828 case INCREMENTAL_INPUT_ARCHIVE_MEMBER:
829 {
56f75c03
ILT
830 gold_assert(static_cast<unsigned int>(pov - oview)
831 == (*p)->get_info_offset());
09ec0418
CC
832 Incremental_object_entry* entry = (*p)->object_entry();
833 gold_assert(entry != NULL);
834 const Object* obj = entry->object();
835 const Object::Symbols* syms = obj->get_global_symbols();
836 // Write the input section count and global symbol count.
837 unsigned int nsections = entry->get_input_section_count();
838 unsigned int nsyms = syms->size();
839 Swap32::writeval(pov, nsections);
840 Swap32::writeval(pov + 4, nsyms);
841 pov += 8;
842
843 // For each input section, write the name, output section index,
844 // offset within output section, and input section size.
845 for (unsigned int i = 0; i < nsections; i++)
846 {
847 Stringpool::Key key = entry->get_input_section_name_key(i);
848 off_t name_offset = 0;
849 if (key != 0)
850 name_offset = strtab->get_offset_from_key(key);
851 int out_shndx = 0;
852 off_t out_offset = 0;
853 off_t sh_size = 0;
854 Output_section* os = obj->output_section(i);
855 if (os != NULL)
856 {
857 out_shndx = os->out_shndx();
858 out_offset = obj->output_section_offset(i);
859 sh_size = entry->get_input_section_size(i);
860 }
861 Swap32::writeval(pov, name_offset);
862 Swap32::writeval(pov + 4, out_shndx);
863 Swap::writeval(pov + 8, out_offset);
864 Swap::writeval(pov + 8 + sizeof_addr, sh_size);
865 pov += 8 + 2 * sizeof_addr;
866 }
867
868 // For each global symbol, write its associated relocations,
869 // add it to the linked list of globals, then write the
870 // supplemental information: global symbol table index,
871 // linked list chain pointer, relocation count, and offset
872 // to the relocations.
873 for (unsigned int i = 0; i < nsyms; i++)
874 {
875 const Symbol* sym = (*syms)[i];
876 unsigned int symtab_index = sym->symtab_index();
877 unsigned int chain = 0;
878 unsigned int first_reloc = 0;
879 unsigned int nrelocs = obj->get_incremental_reloc_count(i);
880 if (nrelocs > 0)
881 {
882 gold_assert(symtab_index != -1U
883 && (symtab_index - first_global_index
884 < global_sym_count));
885 first_reloc = obj->get_incremental_reloc_base(i);
886 chain = global_syms[symtab_index - first_global_index];
887 global_syms[symtab_index - first_global_index] =
888 pov - oview;
889 }
890 Swap32::writeval(pov, symtab_index);
891 Swap32::writeval(pov + 4, chain);
892 Swap32::writeval(pov + 8, nrelocs);
893 Swap32::writeval(pov + 12, first_reloc * 3 * sizeof_addr);
894 pov += 16;
895 }
896 }
897 break;
898
899 case INCREMENTAL_INPUT_SHARED_LIBRARY:
900 {
56f75c03
ILT
901 gold_assert(static_cast<unsigned int>(pov - oview)
902 == (*p)->get_info_offset());
09ec0418
CC
903 Incremental_object_entry* entry = (*p)->object_entry();
904 gold_assert(entry != NULL);
905 const Object* obj = entry->object();
906 const Object::Symbols* syms = obj->get_global_symbols();
907
908 // Write the global symbol count.
909 unsigned int nsyms = syms != NULL ? syms->size() : 0;
910 Swap32::writeval(pov, nsyms);
911 pov += 4;
912
913 // For each global symbol, write the global symbol table index.
914 for (unsigned int i = 0; i < nsyms; i++)
915 {
916 const Symbol* sym = (*syms)[i];
917 Swap32::writeval(pov, sym->symtab_index());
918 pov += 4;
919 }
920 }
921 break;
922
923 case INCREMENTAL_INPUT_ARCHIVE:
924 {
56f75c03
ILT
925 gold_assert(static_cast<unsigned int>(pov - oview)
926 == (*p)->get_info_offset());
09ec0418
CC
927 Incremental_archive_entry* entry = (*p)->archive_entry();
928 gold_assert(entry != NULL);
929
930 // Write the member count and unused global symbol count.
931 unsigned int nmembers = entry->get_member_count();
932 unsigned int nsyms = entry->get_unused_global_symbol_count();
933 Swap32::writeval(pov, nmembers);
934 Swap32::writeval(pov + 4, nsyms);
935 pov += 8;
936
937 // For each member, write the offset to its input file entry.
938 for (unsigned int i = 0; i < nmembers; ++i)
939 {
940 Incremental_object_entry* member = entry->get_member(i);
941 Swap32::writeval(pov, member->get_offset());
942 pov += 4;
943 }
944
945 // For each global symbol, write the name offset.
946 for (unsigned int i = 0; i < nsyms; ++i)
947 {
948 Stringpool::Key key = entry->get_unused_global_symbol(i);
949 Swap32::writeval(pov, strtab->get_offset_from_key(key));
950 pov += 4;
951 }
952 }
953 break;
954
955 default:
956 gold_unreachable();
957 }
958 }
959 return pov;
960}
961
962// Write the contents of the .gnu_incremental_symtab section.
963
964template<int size, bool big_endian>
965void
966Output_section_incremental_inputs<size, big_endian>::write_symtab(
967 unsigned char* pov,
968 unsigned int* global_syms,
969 unsigned int global_sym_count)
970{
971 for (unsigned int i = 0; i < global_sym_count; ++i)
972 {
973 Swap32::writeval(pov, global_syms[i]);
974 pov += 4;
975 }
3ce2c28e
ILT
976}
977
0e70b911
CC
978// This struct holds the view information needed to write the
979// .gnu_incremental_got_plt section.
980
981struct Got_plt_view_info
982{
983 // Start of the GOT type array in the output view.
984 unsigned char* got_type_p;
985 // Start of the GOT descriptor array in the output view.
986 unsigned char* got_desc_p;
987 // Start of the PLT descriptor array in the output view.
988 unsigned char* plt_desc_p;
989 // Number of GOT entries.
990 unsigned int got_count;
991 // Number of PLT entries.
992 unsigned int plt_count;
993 // Offset of the first non-reserved PLT entry (this is a target-dependent value).
994 unsigned int first_plt_entry_offset;
995 // Size of a PLT entry (this is a target-dependent value).
996 unsigned int plt_entry_size;
997 // Value to write in the GOT descriptor array. For global symbols,
998 // this is the global symbol table index; for local symbols, it is
999 // the offset of the input file entry in the .gnu_incremental_inputs
1000 // section.
1001 unsigned int got_descriptor;
1002};
1003
1004// Functor class for processing a GOT offset list for local symbols.
1005// Writes the GOT type and symbol index into the GOT type and descriptor
1006// arrays in the output section.
1007
1008template<int size, bool big_endian>
1009class Local_got_offset_visitor
1010{
1011 public:
1012 Local_got_offset_visitor(struct Got_plt_view_info& info)
1013 : info_(info)
1014 { }
1015
1016 void
1017 operator()(unsigned int got_type, unsigned int got_offset)
1018 {
1019 unsigned int got_index = got_offset / this->got_entry_size_;
1020 gold_assert(got_index < this->info_.got_count);
1021 // We can only handle GOT entry types in the range 0..0x7e
1022 // because we use a byte array to store them, and we use the
1023 // high bit to flag a local symbol.
1024 gold_assert(got_type < 0x7f);
1025 this->info_.got_type_p[got_index] = got_type | 0x80;
1026 unsigned char* pov = this->info_.got_desc_p + got_index * 4;
1027 elfcpp::Swap<32, big_endian>::writeval(pov, this->info_.got_descriptor);
1028 }
1029
1030 private:
1031 static const unsigned int got_entry_size_ = size / 8;
1032 struct Got_plt_view_info& info_;
1033};
1034
1035// Functor class for processing a GOT offset list. Writes the GOT type
1036// and symbol index into the GOT type and descriptor arrays in the output
1037// section.
1038
1039template<int size, bool big_endian>
1040class Global_got_offset_visitor
1041{
1042 public:
1043 Global_got_offset_visitor(struct Got_plt_view_info& info)
1044 : info_(info)
1045 { }
1046
1047 void
1048 operator()(unsigned int got_type, unsigned int got_offset)
1049 {
1050 unsigned int got_index = got_offset / this->got_entry_size_;
1051 gold_assert(got_index < this->info_.got_count);
1052 // We can only handle GOT entry types in the range 0..0x7e
1053 // because we use a byte array to store them, and we use the
1054 // high bit to flag a local symbol.
1055 gold_assert(got_type < 0x7f);
1056 this->info_.got_type_p[got_index] = got_type;
1057 unsigned char* pov = this->info_.got_desc_p + got_index * 4;
1058 elfcpp::Swap<32, big_endian>::writeval(pov, this->info_.got_descriptor);
1059 }
1060
1061 private:
1062 static const unsigned int got_entry_size_ = size / 8;
1063 struct Got_plt_view_info& info_;
1064};
1065
1066// Functor class for processing the global symbol table. Processes the
1067// GOT offset list for the symbol, and writes the symbol table index
1068// into the PLT descriptor array in the output section.
1069
1070template<int size, bool big_endian>
1071class Global_symbol_visitor_got_plt
1072{
1073 public:
1074 Global_symbol_visitor_got_plt(struct Got_plt_view_info& info)
1075 : info_(info)
1076 { }
1077
1078 void
1079 operator()(const Sized_symbol<size>* sym)
1080 {
1081 typedef Global_got_offset_visitor<size, big_endian> Got_visitor;
1082 const Got_offset_list* got_offsets = sym->got_offset_list();
1083 if (got_offsets != NULL)
1084 {
1085 info_.got_descriptor = sym->symtab_index();
1086 got_offsets->for_all_got_offsets(Got_visitor(info_));
1087 }
1088 if (sym->has_plt_offset())
1089 {
1090 unsigned int plt_index =
1091 ((sym->plt_offset() - this->info_.first_plt_entry_offset)
1092 / this->info_.plt_entry_size);
1093 gold_assert(plt_index < this->info_.plt_count);
1094 unsigned char* pov = this->info_.plt_desc_p + plt_index * 4;
1095 elfcpp::Swap<32, big_endian>::writeval(pov, sym->symtab_index());
1096 }
1097 }
1098
1099 private:
1100 struct Got_plt_view_info& info_;
1101};
1102
1103// Write the contents of the .gnu_incremental_got_plt section.
1104
1105template<int size, bool big_endian>
1106void
1107Output_section_incremental_inputs<size, big_endian>::write_got_plt(
1108 unsigned char* pov,
1109 off_t view_size)
1110{
1111 Sized_target<size, big_endian>* target =
1112 parameters->sized_target<size, big_endian>();
1113
1114 // Set up the view information for the functors.
1115 struct Got_plt_view_info view_info;
1116 view_info.got_count = target->got_entry_count();
1117 view_info.plt_count = target->plt_entry_count();
1118 view_info.first_plt_entry_offset = target->first_plt_entry_offset();
1119 view_info.plt_entry_size = target->plt_entry_size();
1120 view_info.got_type_p = pov + 8;
1121 view_info.got_desc_p = (view_info.got_type_p
1122 + ((view_info.got_count + 3) & ~3));
1123 view_info.plt_desc_p = view_info.got_desc_p + view_info.got_count * 4;
1124
1125 gold_assert(pov + view_size ==
1126 view_info.plt_desc_p + view_info.plt_count * 4);
1127
1128 // Write the section header.
1129 Swap32::writeval(pov, view_info.got_count);
1130 Swap32::writeval(pov + 4, view_info.plt_count);
1131
1132 // Initialize the GOT type array to 0xff (reserved).
1133 memset(view_info.got_type_p, 0xff, view_info.got_count);
1134
1135 // Write the incremental GOT descriptors for local symbols.
1136 for (Incremental_inputs::Input_list::const_iterator p =
1137 this->inputs_->input_files().begin();
1138 p != this->inputs_->input_files().end();
1139 ++p)
1140 {
1141 if ((*p)->type() != INCREMENTAL_INPUT_OBJECT
1142 && (*p)->type() != INCREMENTAL_INPUT_ARCHIVE_MEMBER)
1143 continue;
1144 Incremental_object_entry* entry = (*p)->object_entry();
1145 gold_assert(entry != NULL);
1146 const Sized_relobj<size, big_endian>* obj =
1147 static_cast<Sized_relobj<size, big_endian>*>(entry->object());
1148 gold_assert(obj != NULL);
1149 unsigned int nsyms = obj->local_symbol_count();
1150 for (unsigned int i = 0; i < nsyms; i++)
1151 {
1152 const Got_offset_list* got_offsets = obj->local_got_offset_list(i);
1153 if (got_offsets != NULL)
1154 {
1155 typedef Local_got_offset_visitor<size, big_endian> Got_visitor;
1156 view_info.got_descriptor = (*p)->get_offset();
1157 got_offsets->for_all_got_offsets(Got_visitor(view_info));
1158 }
1159 }
1160 }
1161
1162 // Write the incremental GOT and PLT descriptors for global symbols.
1163 typedef Global_symbol_visitor_got_plt<size, big_endian> Symbol_visitor;
1164 symtab_->for_all_symbols<size, Symbol_visitor>(Symbol_visitor(view_info));
1165}
1166
c549a694
ILT
1167// Instantiate the templates we need.
1168
1169#ifdef HAVE_TARGET_32_LITTLE
1170template
1171class Sized_incremental_binary<32, false>;
1172#endif
1173
1174#ifdef HAVE_TARGET_32_BIG
1175template
1176class Sized_incremental_binary<32, true>;
1177#endif
1178
1179#ifdef HAVE_TARGET_64_LITTLE
1180template
1181class Sized_incremental_binary<64, false>;
1182#endif
1183
1184#ifdef HAVE_TARGET_64_BIG
1185template
1186class Sized_incremental_binary<64, true>;
1187#endif
1188
0e879927 1189} // End namespace gold.
This page took 0.132371 seconds and 4 git commands to generate.