1 // inremental.cc -- incremental linking support for gold
3 // Copyright (C) 2009-2019 Free Software Foundation, Inc.
4 // Written by Mikolaj Zalewski <mikolajz@google.com>.
6 // This file is part of gold.
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.
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.
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.
27 #include "libiberty.h"
33 #include "incremental.h"
36 #include "target-select.h"
43 // Version number for the .gnu_incremental_inputs section.
44 // Version 1 was the initial checkin.
45 // Version 2 adds some padding to ensure 8-byte alignment where necessary.
46 const unsigned int INCREMENTAL_LINK_VERSION
= 2;
48 // This class manages the .gnu_incremental_inputs section, which holds
49 // the header information, a directory of input files, and separate
50 // entries for each input file.
52 template<int size
, bool big_endian
>
53 class Output_section_incremental_inputs
: public Output_section_data
56 Output_section_incremental_inputs(const Incremental_inputs
* inputs
,
57 const Symbol_table
* symtab
)
58 : Output_section_data(size
/ 8), inputs_(inputs
), symtab_(symtab
)
62 // This is called to update the section size prior to assigning
63 // the address and file offset.
66 { this->set_final_data_size(); }
68 // Set the final data size.
70 set_final_data_size();
72 // Write the data to the file.
74 do_write(Output_file
*);
76 // Write to a map file.
78 do_print_to_mapfile(Mapfile
* mapfile
) const
79 { mapfile
->print_output_data(this, _("** incremental_inputs")); }
82 // Write the section header.
84 write_header(unsigned char* pov
, unsigned int input_file_count
,
85 section_offset_type command_line_offset
);
87 // Write the input file entries.
89 write_input_files(unsigned char* oview
, unsigned char* pov
,
92 // Write the supplemental information blocks.
94 write_info_blocks(unsigned char* oview
, unsigned char* pov
,
95 Stringpool
* strtab
, unsigned int* global_syms
,
96 unsigned int global_sym_count
);
98 // Write the contents of the .gnu_incremental_symtab section.
100 write_symtab(unsigned char* pov
, unsigned int* global_syms
,
101 unsigned int global_sym_count
);
103 // Write the contents of the .gnu_incremental_got_plt section.
105 write_got_plt(unsigned char* pov
, off_t view_size
);
107 // Typedefs for writing the data to the output sections.
108 typedef elfcpp::Swap
<size
, big_endian
> Swap
;
109 typedef elfcpp::Swap
<16, big_endian
> Swap16
;
110 typedef elfcpp::Swap
<32, big_endian
> Swap32
;
111 typedef elfcpp::Swap
<64, big_endian
> Swap64
;
113 // Sizes of various structures.
114 static const int sizeof_addr
= size
/ 8;
115 static const int header_size
=
116 Incremental_inputs_reader
<size
, big_endian
>::header_size
;
117 static const int input_entry_size
=
118 Incremental_inputs_reader
<size
, big_endian
>::input_entry_size
;
119 static const unsigned int object_info_size
=
120 Incremental_inputs_reader
<size
, big_endian
>::object_info_size
;
121 static const unsigned int input_section_entry_size
=
122 Incremental_inputs_reader
<size
, big_endian
>::input_section_entry_size
;
123 static const unsigned int global_sym_entry_size
=
124 Incremental_inputs_reader
<size
, big_endian
>::global_sym_entry_size
;
125 static const unsigned int incr_reloc_size
=
126 Incremental_relocs_reader
<size
, big_endian
>::reloc_size
;
128 // The Incremental_inputs object.
129 const Incremental_inputs
* inputs_
;
132 const Symbol_table
* symtab_
;
135 // Inform the user why we don't do an incremental link. Not called in
136 // the obvious case of missing output file. TODO: Is this helpful?
139 vexplain_no_incremental(const char* format
, va_list args
)
142 if (vasprintf(&buf
, format
, args
) < 0)
144 gold_info(_("the link might take longer: "
145 "cannot perform incremental link: %s"), buf
);
150 explain_no_incremental(const char* format
, ...)
153 va_start(args
, format
);
154 vexplain_no_incremental(format
, args
);
161 Incremental_binary::error(const char* format
, ...) const
164 va_start(args
, format
);
165 // Current code only checks if the file can be used for incremental linking,
166 // so errors shouldn't fail the build, but only result in a fallback to a
168 // TODO: when we implement incremental editing of the file, we may need a
169 // flag that will cause errors to be treated seriously.
170 vexplain_no_incremental(format
, args
);
174 // Return TRUE if a section of type SH_TYPE can be updated in place
175 // during an incremental update. We can update sections of type PROGBITS,
176 // NOBITS, INIT_ARRAY, FINI_ARRAY, PREINIT_ARRAY, NOTE, and
177 // (processor-specific) unwind sections. All others will be regenerated.
180 can_incremental_update(unsigned int sh_type
)
182 return (sh_type
== elfcpp::SHT_PROGBITS
183 || sh_type
== elfcpp::SHT_NOBITS
184 || sh_type
== elfcpp::SHT_INIT_ARRAY
185 || sh_type
== elfcpp::SHT_FINI_ARRAY
186 || sh_type
== elfcpp::SHT_PREINIT_ARRAY
187 || sh_type
== elfcpp::SHT_NOTE
188 || sh_type
== parameters
->target().unwind_section_type());
191 // Find the .gnu_incremental_inputs section and related sections.
193 template<int size
, bool big_endian
>
195 Sized_incremental_binary
<size
, big_endian
>::find_incremental_inputs_sections(
196 unsigned int* p_inputs_shndx
,
197 unsigned int* p_symtab_shndx
,
198 unsigned int* p_relocs_shndx
,
199 unsigned int* p_got_plt_shndx
,
200 unsigned int* p_strtab_shndx
)
202 unsigned int inputs_shndx
=
203 this->elf_file_
.find_section_by_type(elfcpp::SHT_GNU_INCREMENTAL_INPUTS
);
204 if (inputs_shndx
== elfcpp::SHN_UNDEF
) // Not found.
207 unsigned int symtab_shndx
=
208 this->elf_file_
.find_section_by_type(elfcpp::SHT_GNU_INCREMENTAL_SYMTAB
);
209 if (symtab_shndx
== elfcpp::SHN_UNDEF
) // Not found.
211 if (this->elf_file_
.section_link(symtab_shndx
) != inputs_shndx
)
214 unsigned int relocs_shndx
=
215 this->elf_file_
.find_section_by_type(elfcpp::SHT_GNU_INCREMENTAL_RELOCS
);
216 if (relocs_shndx
== elfcpp::SHN_UNDEF
) // Not found.
218 if (this->elf_file_
.section_link(relocs_shndx
) != inputs_shndx
)
221 unsigned int got_plt_shndx
=
222 this->elf_file_
.find_section_by_type(elfcpp::SHT_GNU_INCREMENTAL_GOT_PLT
);
223 if (got_plt_shndx
== elfcpp::SHN_UNDEF
) // Not found.
225 if (this->elf_file_
.section_link(got_plt_shndx
) != inputs_shndx
)
228 unsigned int strtab_shndx
= this->elf_file_
.section_link(inputs_shndx
);
229 if (strtab_shndx
== elfcpp::SHN_UNDEF
230 || strtab_shndx
> this->elf_file_
.shnum()
231 || this->elf_file_
.section_type(strtab_shndx
) != elfcpp::SHT_STRTAB
)
234 if (p_inputs_shndx
!= NULL
)
235 *p_inputs_shndx
= inputs_shndx
;
236 if (p_symtab_shndx
!= NULL
)
237 *p_symtab_shndx
= symtab_shndx
;
238 if (p_relocs_shndx
!= NULL
)
239 *p_relocs_shndx
= relocs_shndx
;
240 if (p_got_plt_shndx
!= NULL
)
241 *p_got_plt_shndx
= got_plt_shndx
;
242 if (p_strtab_shndx
!= NULL
)
243 *p_strtab_shndx
= strtab_shndx
;
247 // Set up the readers into the incremental info sections.
249 template<int size
, bool big_endian
>
251 Sized_incremental_binary
<size
, big_endian
>::setup_readers()
253 unsigned int inputs_shndx
;
254 unsigned int symtab_shndx
;
255 unsigned int relocs_shndx
;
256 unsigned int got_plt_shndx
;
257 unsigned int strtab_shndx
;
259 if (!this->find_incremental_inputs_sections(&inputs_shndx
, &symtab_shndx
,
260 &relocs_shndx
, &got_plt_shndx
,
264 Location
inputs_location(this->elf_file_
.section_contents(inputs_shndx
));
265 Location
symtab_location(this->elf_file_
.section_contents(symtab_shndx
));
266 Location
relocs_location(this->elf_file_
.section_contents(relocs_shndx
));
267 Location
got_plt_location(this->elf_file_
.section_contents(got_plt_shndx
));
268 Location
strtab_location(this->elf_file_
.section_contents(strtab_shndx
));
270 View inputs_view
= this->view(inputs_location
);
271 View symtab_view
= this->view(symtab_location
);
272 View relocs_view
= this->view(relocs_location
);
273 View got_plt_view
= this->view(got_plt_location
);
274 View strtab_view
= this->view(strtab_location
);
276 elfcpp::Elf_strtab
strtab(strtab_view
.data(), strtab_location
.data_size
);
278 this->inputs_reader_
=
279 Incremental_inputs_reader
<size
, big_endian
>(inputs_view
.data(), strtab
);
280 this->symtab_reader_
=
281 Incremental_symtab_reader
<big_endian
>(symtab_view
.data(),
282 symtab_location
.data_size
);
283 this->relocs_reader_
=
284 Incremental_relocs_reader
<size
, big_endian
>(relocs_view
.data(),
285 relocs_location
.data_size
);
286 this->got_plt_reader_
=
287 Incremental_got_plt_reader
<big_endian
>(got_plt_view
.data());
289 // Find the main symbol table.
290 unsigned int main_symtab_shndx
=
291 this->elf_file_
.find_section_by_type(elfcpp::SHT_SYMTAB
);
292 gold_assert(main_symtab_shndx
!= elfcpp::SHN_UNDEF
);
293 this->main_symtab_loc_
= this->elf_file_
.section_contents(main_symtab_shndx
);
295 // Find the main symbol string table.
296 unsigned int main_strtab_shndx
=
297 this->elf_file_
.section_link(main_symtab_shndx
);
298 gold_assert(main_strtab_shndx
!= elfcpp::SHN_UNDEF
299 && main_strtab_shndx
< this->elf_file_
.shnum());
300 this->main_strtab_loc_
= this->elf_file_
.section_contents(main_strtab_shndx
);
302 // Walk the list of input files (a) to setup an Input_reader for each
303 // input file, and (b) to record maps of files added from archive
304 // libraries and scripts.
305 Incremental_inputs_reader
<size
, big_endian
>& inputs
= this->inputs_reader_
;
306 unsigned int count
= inputs
.input_file_count();
307 this->input_objects_
.resize(count
);
308 this->input_entry_readers_
.reserve(count
);
309 this->library_map_
.resize(count
);
310 this->script_map_
.resize(count
);
311 for (unsigned int i
= 0; i
< count
; i
++)
313 Input_entry_reader input_file
= inputs
.input_file(i
);
314 #if __cplusplus >= 2001103L
315 this->input_entry_readers_
.emplace_back(input_file
);
317 this->input_entry_readers_
.push_back(Sized_input_reader(input_file
));
319 switch (input_file
.type())
321 case INCREMENTAL_INPUT_OBJECT
:
322 case INCREMENTAL_INPUT_ARCHIVE_MEMBER
:
323 case INCREMENTAL_INPUT_SHARED_LIBRARY
:
324 // No special treatment necessary.
326 case INCREMENTAL_INPUT_ARCHIVE
:
328 Incremental_library
* lib
=
329 new Incremental_library(input_file
.filename(), i
,
330 &this->input_entry_readers_
[i
]);
331 this->library_map_
[i
] = lib
;
332 unsigned int member_count
= input_file
.get_member_count();
333 for (unsigned int j
= 0; j
< member_count
; j
++)
335 int member_offset
= input_file
.get_member_offset(j
);
336 int member_index
= inputs
.input_file_index(member_offset
);
337 this->library_map_
[member_index
] = lib
;
341 case INCREMENTAL_INPUT_SCRIPT
:
343 Script_info
* script
= new Script_info(input_file
.filename(), i
);
344 this->script_map_
[i
] = script
;
345 unsigned int object_count
= input_file
.get_object_count();
346 for (unsigned int j
= 0; j
< object_count
; j
++)
348 int object_offset
= input_file
.get_object_offset(j
);
349 int object_index
= inputs
.input_file_index(object_offset
);
350 this->script_map_
[object_index
] = script
;
359 // Initialize the map of global symbols.
360 unsigned int nglobals
= this->symtab_reader_
.symbol_count();
361 this->symbol_map_
.resize(nglobals
);
363 this->has_incremental_info_
= true;
366 // Walk the list of input files given on the command line, and build
367 // a direct map of file index to the corresponding input argument.
370 check_input_args(std::vector
<const Input_argument
*>& input_args_map
,
371 Input_arguments::const_iterator begin
,
372 Input_arguments::const_iterator end
)
374 for (Input_arguments::const_iterator p
= begin
;
380 const Input_file_group
* group
= p
->group();
381 check_input_args(input_args_map
, group
->begin(), group
->end());
383 else if (p
->is_lib())
385 const Input_file_lib
* lib
= p
->lib();
386 check_input_args(input_args_map
, lib
->begin(), lib
->end());
390 gold_assert(p
->is_file());
391 unsigned int arg_serial
= p
->file().arg_serial();
394 gold_assert(arg_serial
<= input_args_map
.size());
395 gold_assert(input_args_map
[arg_serial
- 1] == 0);
396 input_args_map
[arg_serial
- 1] = &*p
;
402 // Determine whether an incremental link based on the existing output file
405 template<int size
, bool big_endian
>
407 Sized_incremental_binary
<size
, big_endian
>::do_check_inputs(
408 const Command_line
& cmdline
,
409 Incremental_inputs
* incremental_inputs
)
411 Incremental_inputs_reader
<size
, big_endian
>& inputs
= this->inputs_reader_
;
413 if (!this->has_incremental_info_
)
415 explain_no_incremental(_("no incremental data from previous build"));
419 if (inputs
.version() != INCREMENTAL_LINK_VERSION
)
421 explain_no_incremental(_("different version of incremental build data"));
425 if (incremental_inputs
->command_line() != inputs
.command_line())
427 gold_debug(DEBUG_INCREMENTAL
,
428 "old command line: %s",
429 inputs
.command_line());
430 gold_debug(DEBUG_INCREMENTAL
,
431 "new command line: %s",
432 incremental_inputs
->command_line().c_str());
433 explain_no_incremental(_("command line changed"));
437 // Walk the list of input files given on the command line, and build
438 // a direct map of argument serial numbers to the corresponding input
440 this->input_args_map_
.resize(cmdline
.number_of_input_files());
441 check_input_args(this->input_args_map_
, cmdline
.begin(), cmdline
.end());
443 // Walk the list of input files to check for conditions that prevent
444 // an incremental update link.
445 unsigned int count
= inputs
.input_file_count();
446 for (unsigned int i
= 0; i
< count
; i
++)
448 Input_entry_reader input_file
= inputs
.input_file(i
);
449 switch (input_file
.type())
451 case INCREMENTAL_INPUT_OBJECT
:
452 case INCREMENTAL_INPUT_ARCHIVE_MEMBER
:
453 case INCREMENTAL_INPUT_SHARED_LIBRARY
:
454 case INCREMENTAL_INPUT_ARCHIVE
:
455 // No special treatment necessary.
457 case INCREMENTAL_INPUT_SCRIPT
:
458 if (this->do_file_has_changed(i
))
460 explain_no_incremental(_("%s: script file changed"),
461 input_file
.filename());
473 // Return TRUE if input file N has changed since the last incremental link.
475 template<int size
, bool big_endian
>
477 Sized_incremental_binary
<size
, big_endian
>::do_file_has_changed(
478 unsigned int n
) const
480 Input_entry_reader input_file
= this->inputs_reader_
.input_file(n
);
481 Incremental_disposition disp
= INCREMENTAL_CHECK
;
483 // For files named in scripts, find the file that was actually named
484 // on the command line, so that we can get the incremental disposition
486 Script_info
* script
= this->get_script_info(n
);
488 n
= script
->input_file_index();
490 const Input_argument
* input_argument
= this->get_input_argument(n
);
491 if (input_argument
!= NULL
)
492 disp
= input_argument
->file().options().incremental_disposition();
494 // For files at the beginning of the command line (i.e., those added
495 // implicitly by gcc), check whether the --incremental-startup-unchanged
497 if (disp
== INCREMENTAL_STARTUP
)
498 disp
= parameters
->options().incremental_startup_disposition();
500 if (disp
!= INCREMENTAL_CHECK
)
501 return disp
== INCREMENTAL_CHANGED
;
503 const char* filename
= input_file
.filename();
504 Timespec old_mtime
= input_file
.get_mtime();
506 if (!get_mtime(filename
, &new_mtime
))
508 // If we can't open get the current modification time, assume it has
509 // changed. If the file doesn't exist, we'll issue an error when we
510 // try to open it later.
514 if (new_mtime
.seconds
> old_mtime
.seconds
)
516 if (new_mtime
.seconds
== old_mtime
.seconds
517 && new_mtime
.nanoseconds
> old_mtime
.nanoseconds
)
522 // Initialize the layout of the output file based on the existing
525 template<int size
, bool big_endian
>
527 Sized_incremental_binary
<size
, big_endian
>::do_init_layout(Layout
* layout
)
529 typedef elfcpp::Shdr
<size
, big_endian
> Shdr
;
530 const int shdr_size
= elfcpp::Elf_sizes
<size
>::shdr_size
;
532 // Get views of the section headers and the section string table.
533 const off_t shoff
= this->elf_file_
.shoff();
534 const unsigned int shnum
= this->elf_file_
.shnum();
535 const unsigned int shstrndx
= this->elf_file_
.shstrndx();
536 Location
shdrs_location(shoff
, shnum
* shdr_size
);
537 Location
shstrndx_location(this->elf_file_
.section_contents(shstrndx
));
538 View shdrs_view
= this->view(shdrs_location
);
539 View shstrndx_view
= this->view(shstrndx_location
);
540 elfcpp::Elf_strtab
shstrtab(shstrndx_view
.data(),
541 shstrndx_location
.data_size
);
543 layout
->set_incremental_base(this);
545 // Initialize the layout.
546 this->section_map_
.resize(shnum
);
547 const unsigned char* pshdr
= shdrs_view
.data() + shdr_size
;
548 for (unsigned int i
= 1; i
< shnum
; i
++)
552 if (!shstrtab
.get_c_string(shdr
.get_sh_name(), &name
))
554 gold_debug(DEBUG_INCREMENTAL
,
555 "Output section: %2d %08lx %08lx %08lx %3d %s",
557 static_cast<long>(shdr
.get_sh_addr()),
558 static_cast<long>(shdr
.get_sh_offset()),
559 static_cast<long>(shdr
.get_sh_size()),
560 shdr
.get_sh_type(), name
? name
: "<null>");
561 this->section_map_
[i
] = layout
->init_fixed_output_section(name
, shdr
);
566 // Mark regions of the input file that must be kept unchanged.
568 template<int size
, bool big_endian
>
570 Sized_incremental_binary
<size
, big_endian
>::do_reserve_layout(
571 unsigned int input_file_index
)
573 const int sym_size
= elfcpp::Elf_sizes
<size
>::sym_size
;
575 Input_entry_reader input_file
=
576 this->inputs_reader_
.input_file(input_file_index
);
578 if (input_file
.type() == INCREMENTAL_INPUT_SHARED_LIBRARY
)
580 // Reserve the BSS space used for COPY relocations.
581 unsigned int nsyms
= input_file
.get_global_symbol_count();
582 Incremental_binary::View
symtab_view(NULL
);
583 unsigned int symtab_count
;
584 elfcpp::Elf_strtab
strtab(NULL
, 0);
585 this->get_symtab_view(&symtab_view
, &symtab_count
, &strtab
);
586 for (unsigned int i
= 0; i
< nsyms
; ++i
)
590 unsigned int output_symndx
=
591 input_file
.get_output_symbol_index(i
, &is_def
, &is_copy
);
594 const unsigned char* sym_p
= (symtab_view
.data()
595 + output_symndx
* sym_size
);
596 elfcpp::Sym
<size
, big_endian
> gsym(sym_p
);
597 unsigned int shndx
= gsym
.get_st_shndx();
598 if (shndx
< 1 || shndx
>= this->section_map_
.size())
600 Output_section
* os
= this->section_map_
[shndx
];
601 off_t offset
= gsym
.get_st_value() - os
->address();
602 os
->reserve(offset
, gsym
.get_st_size());
603 gold_debug(DEBUG_INCREMENTAL
,
604 "Reserve for COPY reloc: %s, off %d, size %d",
606 static_cast<int>(offset
),
607 static_cast<int>(gsym
.get_st_size()));
613 unsigned int shnum
= input_file
.get_input_section_count();
614 for (unsigned int i
= 0; i
< shnum
; i
++)
616 typename
Input_entry_reader::Input_section_info sect
=
617 input_file
.get_input_section(i
);
618 if (sect
.output_shndx
== 0 || sect
.sh_offset
== -1)
620 Output_section
* os
= this->section_map_
[sect
.output_shndx
];
621 gold_assert(os
!= NULL
);
622 os
->reserve(sect
.sh_offset
, sect
.sh_size
);
626 // Process the GOT and PLT entries from the existing output file.
628 template<int size
, bool big_endian
>
630 Sized_incremental_binary
<size
, big_endian
>::do_process_got_plt(
631 Symbol_table
* symtab
,
634 Incremental_got_plt_reader
<big_endian
> got_plt_reader(this->got_plt_reader());
635 Sized_target
<size
, big_endian
>* target
=
636 parameters
->sized_target
<size
, big_endian
>();
638 // Get the number of symbols in the main symbol table and in the
639 // incremental symbol table. The difference between the two counts
640 // is the index of the first forced-local or global symbol in the
641 // main symbol table.
642 unsigned int symtab_count
=
643 this->main_symtab_loc_
.data_size
/ elfcpp::Elf_sizes
<size
>::sym_size
;
644 unsigned int isym_count
= this->symtab_reader_
.symbol_count();
645 unsigned int first_global
= symtab_count
- isym_count
;
647 // Tell the target how big the GOT and PLT sections are.
648 unsigned int got_count
= got_plt_reader
.get_got_entry_count();
649 unsigned int plt_count
= got_plt_reader
.get_plt_entry_count();
650 Output_data_got_base
* got
=
651 target
->init_got_plt_for_update(symtab
, layout
, got_count
, plt_count
);
653 // Read the GOT entries from the base file and build the outgoing GOT.
654 for (unsigned int i
= 0; i
< got_count
; ++i
)
656 unsigned int got_type
= got_plt_reader
.get_got_type(i
);
657 if ((got_type
& 0x7f) == 0x7f)
659 // This is the second entry of a pair.
660 got
->reserve_slot(i
);
663 unsigned int symndx
= got_plt_reader
.get_got_symndx(i
);
666 // This is an entry for a local symbol. Ignore this entry if
667 // the object file was replaced.
668 unsigned int input_index
= got_plt_reader
.get_got_input_index(i
);
669 gold_debug(DEBUG_INCREMENTAL
,
670 "GOT entry %d, type %02x: (local symbol)",
672 Sized_relobj_incr
<size
, big_endian
>* obj
=
673 this->input_object(input_index
);
675 target
->reserve_local_got_entry(i
, obj
, symndx
, got_type
& 0x7f);
679 // This is an entry for a global symbol. GOT_DESC is the symbol
681 // FIXME: This should really be a fatal error (corrupt input).
682 gold_assert(symndx
>= first_global
&& symndx
< symtab_count
);
683 Symbol
* sym
= this->global_symbol(symndx
- first_global
);
684 // Add the GOT entry only if the symbol is still referenced.
685 if (sym
!= NULL
&& sym
->in_reg())
687 gold_debug(DEBUG_INCREMENTAL
,
688 "GOT entry %d, type %02x: %s",
689 i
, got_type
, sym
->name());
690 target
->reserve_global_got_entry(i
, sym
, got_type
);
695 // Read the PLT entries from the base file and pass each to the target.
696 for (unsigned int i
= 0; i
< plt_count
; ++i
)
698 unsigned int plt_desc
= got_plt_reader
.get_plt_desc(i
);
699 // FIXME: This should really be a fatal error (corrupt input).
700 gold_assert(plt_desc
>= first_global
&& plt_desc
< symtab_count
);
701 Symbol
* sym
= this->global_symbol(plt_desc
- first_global
);
702 // Add the PLT entry only if the symbol is still referenced.
703 if (sym
!= NULL
&& sym
->in_reg())
705 gold_debug(DEBUG_INCREMENTAL
,
708 target
->register_global_plt_entry(symtab
, layout
, i
, sym
);
713 // Emit COPY relocations from the existing output file.
715 template<int size
, bool big_endian
>
717 Sized_incremental_binary
<size
, big_endian
>::do_emit_copy_relocs(
718 Symbol_table
* symtab
)
720 Sized_target
<size
, big_endian
>* target
=
721 parameters
->sized_target
<size
, big_endian
>();
723 for (typename
Copy_relocs::iterator p
= this->copy_relocs_
.begin();
724 p
!= this->copy_relocs_
.end();
727 if (!(*p
).symbol
->is_copied_from_dynobj())
728 target
->emit_copy_reloc(symtab
, (*p
).symbol
, (*p
).output_section
,
733 // Apply incremental relocations for symbols whose values have changed.
735 template<int size
, bool big_endian
>
737 Sized_incremental_binary
<size
, big_endian
>::do_apply_incremental_relocs(
738 const Symbol_table
* symtab
,
742 typedef typename
elfcpp::Elf_types
<size
>::Elf_Addr Address
;
743 typedef typename
elfcpp::Elf_types
<size
>::Elf_Swxword Addend
;
744 Incremental_symtab_reader
<big_endian
> isymtab(this->symtab_reader());
745 Incremental_relocs_reader
<size
, big_endian
> irelocs(this->relocs_reader());
746 unsigned int nglobals
= isymtab
.symbol_count();
747 const unsigned int incr_reloc_size
= irelocs
.reloc_size
;
749 Relocate_info
<size
, big_endian
> relinfo
;
750 relinfo
.symtab
= symtab
;
751 relinfo
.layout
= layout
;
752 relinfo
.object
= NULL
;
753 relinfo
.reloc_shndx
= 0;
754 relinfo
.reloc_shdr
= NULL
;
755 relinfo
.data_shndx
= 0;
756 relinfo
.data_shdr
= NULL
;
758 Sized_target
<size
, big_endian
>* target
=
759 parameters
->sized_target
<size
, big_endian
>();
761 for (unsigned int i
= 0; i
< nglobals
; i
++)
763 const Symbol
* gsym
= this->global_symbol(i
);
765 // If the symbol is not referenced from any unchanged input files,
766 // we do not need to reapply any of its relocations.
770 // If the symbol is defined in an unchanged file, we do not need to
771 // reapply any of its relocations.
772 if (gsym
->source() == Symbol::FROM_OBJECT
773 && gsym
->object()->is_incremental())
776 gold_debug(DEBUG_INCREMENTAL
,
777 "Applying incremental relocations for global symbol %s [%d]",
780 // Follow the linked list of input symbol table entries for this symbol.
781 // We don't bother to figure out whether the symbol table entry belongs
782 // to a changed or unchanged file because it's easier just to apply all
783 // the relocations -- although we might scribble over an area that has
784 // been reallocated, we do this before copying any new data into the
786 unsigned int offset
= isymtab
.get_list_head(i
);
789 Incremental_global_symbol_reader
<big_endian
> sym_info
=
790 this->inputs_reader().global_symbol_reader_at_offset(offset
);
791 unsigned int r_base
= sym_info
.reloc_offset();
792 unsigned int r_count
= sym_info
.reloc_count();
794 // Apply each relocation for this symbol table entry.
795 for (unsigned int j
= 0; j
< r_count
;
796 ++j
, r_base
+= incr_reloc_size
)
798 unsigned int r_type
= irelocs
.get_r_type(r_base
);
799 unsigned int r_shndx
= irelocs
.get_r_shndx(r_base
);
800 Address r_offset
= irelocs
.get_r_offset(r_base
);
801 Addend r_addend
= irelocs
.get_r_addend(r_base
);
802 Output_section
* os
= this->output_section(r_shndx
);
803 Address address
= os
->address();
804 off_t section_offset
= os
->offset();
805 size_t view_size
= os
->data_size();
806 unsigned char* const view
= of
->get_output_view(section_offset
,
809 gold_debug(DEBUG_INCREMENTAL
,
810 " %08lx: %s + %d: type %d addend %ld",
811 (long)(section_offset
+ r_offset
),
817 target
->apply_relocation(&relinfo
, r_offset
, r_type
, r_addend
,
818 gsym
, view
, address
, view_size
);
820 // FIXME: Do something more efficient if write_output_view
821 // ever becomes more than a no-op.
822 of
->write_output_view(section_offset
, view_size
, view
);
824 offset
= sym_info
.next_offset();
829 // Get a view of the main symbol table and the symbol string table.
831 template<int size
, bool big_endian
>
833 Sized_incremental_binary
<size
, big_endian
>::get_symtab_view(
836 elfcpp::Elf_strtab
* strtab
)
838 *symtab_view
= this->view(this->main_symtab_loc_
);
839 *nsyms
= this->main_symtab_loc_
.data_size
/ elfcpp::Elf_sizes
<size
>::sym_size
;
841 View
strtab_view(this->view(this->main_strtab_loc_
));
842 *strtab
= elfcpp::Elf_strtab(strtab_view
.data(),
843 this->main_strtab_loc_
.data_size
);
849 // Create a Sized_incremental_binary object of the specified size and
850 // endianness. Fails if the target architecture is not supported.
852 template<int size
, bool big_endian
>
854 make_sized_incremental_binary(Output_file
* file
,
855 const elfcpp::Ehdr
<size
, big_endian
>& ehdr
)
857 Target
* target
= select_target(NULL
, 0, // XXX
858 ehdr
.get_e_machine(), size
, big_endian
,
859 ehdr
.get_e_ident()[elfcpp::EI_OSABI
],
860 ehdr
.get_e_ident()[elfcpp::EI_ABIVERSION
]);
863 explain_no_incremental(_("unsupported ELF machine number %d"),
864 ehdr
.get_e_machine());
868 if (!parameters
->target_valid())
869 set_parameters_target(target
);
870 else if (target
!= ¶meters
->target())
871 gold_error(_("%s: incompatible target"), file
->filename());
873 return new Sized_incremental_binary
<size
, big_endian
>(file
, ehdr
, target
);
876 } // End of anonymous namespace.
878 // Create an Incremental_binary object for FILE. Returns NULL is this is not
879 // possible, e.g. FILE is not an ELF file or has an unsupported target. FILE
883 open_incremental_binary(Output_file
* file
)
885 off_t filesize
= file
->filesize();
886 int want
= elfcpp::Elf_recognizer::max_header_size
;
890 const unsigned char* p
= file
->get_input_view(0, want
);
891 if (!elfcpp::Elf_recognizer::is_elf_file(p
, want
))
893 explain_no_incremental(_("output is not an ELF file."));
898 bool big_endian
= false;
900 if (!elfcpp::Elf_recognizer::is_valid_header(p
, want
, &size
, &big_endian
,
903 explain_no_incremental(error
.c_str());
907 Incremental_binary
* result
= NULL
;
912 #ifdef HAVE_TARGET_32_BIG
913 result
= make_sized_incremental_binary
<32, true>(
914 file
, elfcpp::Ehdr
<32, true>(p
));
916 explain_no_incremental(_("unsupported file: 32-bit, big-endian"));
921 #ifdef HAVE_TARGET_32_LITTLE
922 result
= make_sized_incremental_binary
<32, false>(
923 file
, elfcpp::Ehdr
<32, false>(p
));
925 explain_no_incremental(_("unsupported file: 32-bit, little-endian"));
933 #ifdef HAVE_TARGET_64_BIG
934 result
= make_sized_incremental_binary
<64, true>(
935 file
, elfcpp::Ehdr
<64, true>(p
));
937 explain_no_incremental(_("unsupported file: 64-bit, big-endian"));
942 #ifdef HAVE_TARGET_64_LITTLE
943 result
= make_sized_incremental_binary
<64, false>(
944 file
, elfcpp::Ehdr
<64, false>(p
));
946 explain_no_incremental(_("unsupported file: 64-bit, little-endian"));
956 // Class Incremental_inputs.
958 // Add the command line to the string table, setting
959 // command_line_key_. In incremental builds, the command line is
960 // stored in .gnu_incremental_inputs so that the next linker run can
961 // check if the command line options didn't change.
964 Incremental_inputs::report_command_line(int argc
, const char* const* argv
)
966 // Always store 'gold' as argv[0] to avoid a full relink if the user used a
967 // different path to the linker.
968 std::string
args("gold");
969 // Copied from collect_argv in main.cc.
970 for (int i
= 1; i
< argc
; ++i
)
972 // Adding/removing these options should not result in a full relink.
973 if (strcmp(argv
[i
], "--incremental") == 0
974 || strcmp(argv
[i
], "--incremental-full") == 0
975 || strcmp(argv
[i
], "--incremental-update") == 0
976 || strcmp(argv
[i
], "--incremental-changed") == 0
977 || strcmp(argv
[i
], "--incremental-unchanged") == 0
978 || strcmp(argv
[i
], "--incremental-unknown") == 0
979 || strcmp(argv
[i
], "--incremental-startup-unchanged") == 0
980 || is_prefix_of("--incremental-base=", argv
[i
])
981 || is_prefix_of("--incremental-patch=", argv
[i
])
982 || is_prefix_of("--debug=", argv
[i
]))
984 if (strcmp(argv
[i
], "--incremental-base") == 0
985 || strcmp(argv
[i
], "--incremental-patch") == 0
986 || strcmp(argv
[i
], "--debug") == 0)
988 // When these options are used without the '=', skip the
989 // following parameter as well.
995 // Now append argv[i], but with all single-quotes escaped
996 const char* argpos
= argv
[i
];
999 const int len
= strcspn(argpos
, "'");
1000 args
.append(argpos
, len
);
1001 if (argpos
[len
] == '\0')
1003 args
.append("'\"'\"'");
1009 this->command_line_
= args
;
1010 this->strtab_
->add(this->command_line_
.c_str(), false,
1011 &this->command_line_key_
);
1014 // Record the input archive file ARCHIVE. This is called by the
1015 // Add_archive_symbols task before determining which archive members
1016 // to include. We create the Incremental_archive_entry here and
1017 // attach it to the Archive, but we do not add it to the list of
1018 // input objects until report_archive_end is called.
1021 Incremental_inputs::report_archive_begin(Library_base
* arch
,
1022 unsigned int arg_serial
,
1023 Script_info
* script_info
)
1025 Stringpool::Key filename_key
;
1026 Timespec mtime
= arch
->get_mtime();
1028 // For a file loaded from a script, don't record its argument serial number.
1029 if (script_info
!= NULL
)
1032 this->strtab_
->add(arch
->filename().c_str(), false, &filename_key
);
1033 Incremental_archive_entry
* entry
=
1034 new Incremental_archive_entry(filename_key
, arg_serial
, mtime
);
1035 arch
->set_incremental_info(entry
);
1037 if (script_info
!= NULL
)
1039 Incremental_script_entry
* script_entry
= script_info
->incremental_info();
1040 gold_assert(script_entry
!= NULL
);
1041 script_entry
->add_object(entry
);
1045 // Visitor class for processing the unused global symbols in a library.
1046 // An instance of this class is passed to the library's
1047 // for_all_unused_symbols() iterator, which will call the visit()
1048 // function for each global symbol defined in each unused library
1049 // member. We add those symbol names to the incremental info for the
1052 class Unused_symbol_visitor
: public Library_base::Symbol_visitor_base
1055 Unused_symbol_visitor(Incremental_archive_entry
* entry
, Stringpool
* strtab
)
1056 : entry_(entry
), strtab_(strtab
)
1060 visit(const char* sym
)
1062 Stringpool::Key symbol_key
;
1063 this->strtab_
->add(sym
, true, &symbol_key
);
1064 this->entry_
->add_unused_global_symbol(symbol_key
);
1068 Incremental_archive_entry
* entry_
;
1069 Stringpool
* strtab_
;
1072 // Finish recording the input archive file ARCHIVE. This is called by the
1073 // Add_archive_symbols task after determining which archive members
1077 Incremental_inputs::report_archive_end(Library_base
* arch
)
1079 Incremental_archive_entry
* entry
= arch
->incremental_info();
1081 gold_assert(entry
!= NULL
);
1082 this->inputs_
.push_back(entry
);
1084 // Collect unused global symbols.
1085 Unused_symbol_visitor
v(entry
, this->strtab_
);
1086 arch
->for_all_unused_symbols(&v
);
1089 // Record the input object file OBJ. If ARCH is not NULL, attach
1090 // the object file to the archive. This is called by the
1091 // Add_symbols task after finding out the type of the file.
1094 Incremental_inputs::report_object(Object
* obj
, unsigned int arg_serial
,
1095 Library_base
* arch
, Script_info
* script_info
)
1097 Stringpool::Key filename_key
;
1098 Timespec mtime
= obj
->get_mtime();
1100 // For a file loaded from a script, don't record its argument serial number.
1101 if (script_info
!= NULL
)
1104 this->strtab_
->add(obj
->name().c_str(), false, &filename_key
);
1106 Incremental_input_entry
* input_entry
;
1108 this->current_object_
= obj
;
1110 if (!obj
->is_dynamic())
1112 this->current_object_entry_
=
1113 new Incremental_object_entry(filename_key
, obj
, arg_serial
, mtime
);
1114 input_entry
= this->current_object_entry_
;
1117 Incremental_archive_entry
* arch_entry
= arch
->incremental_info();
1118 gold_assert(arch_entry
!= NULL
);
1119 arch_entry
->add_object(this->current_object_entry_
);
1124 this->current_object_entry_
= NULL
;
1125 Stringpool::Key soname_key
;
1126 Dynobj
* dynobj
= obj
->dynobj();
1127 gold_assert(dynobj
!= NULL
);
1128 this->strtab_
->add(dynobj
->soname(), false, &soname_key
);
1129 input_entry
= new Incremental_dynobj_entry(filename_key
, soname_key
, obj
,
1133 if (obj
->is_in_system_directory())
1134 input_entry
->set_is_in_system_directory();
1136 if (obj
->as_needed())
1137 input_entry
->set_as_needed();
1139 this->inputs_
.push_back(input_entry
);
1141 if (script_info
!= NULL
)
1143 Incremental_script_entry
* script_entry
= script_info
->incremental_info();
1144 gold_assert(script_entry
!= NULL
);
1145 script_entry
->add_object(input_entry
);
1149 // Record an input section SHNDX from object file OBJ.
1152 Incremental_inputs::report_input_section(Object
* obj
, unsigned int shndx
,
1153 const char* name
, off_t sh_size
)
1155 Stringpool::Key key
= 0;
1158 this->strtab_
->add(name
, true, &key
);
1160 gold_assert(obj
== this->current_object_
);
1161 gold_assert(this->current_object_entry_
!= NULL
);
1162 this->current_object_entry_
->add_input_section(shndx
, key
, sh_size
);
1165 // Record a kept COMDAT group belonging to object file OBJ.
1168 Incremental_inputs::report_comdat_group(Object
* obj
, const char* name
)
1170 Stringpool::Key key
= 0;
1173 this->strtab_
->add(name
, true, &key
);
1174 gold_assert(obj
== this->current_object_
);
1175 gold_assert(this->current_object_entry_
!= NULL
);
1176 this->current_object_entry_
->add_comdat_group(key
);
1179 // Record that the input argument INPUT is a script SCRIPT. This is
1180 // called by read_script after parsing the script and reading the list
1181 // of inputs added by this script.
1184 Incremental_inputs::report_script(Script_info
* script
,
1185 unsigned int arg_serial
,
1188 Stringpool::Key filename_key
;
1190 this->strtab_
->add(script
->filename().c_str(), false, &filename_key
);
1191 Incremental_script_entry
* entry
=
1192 new Incremental_script_entry(filename_key
, arg_serial
, script
, mtime
);
1193 this->inputs_
.push_back(entry
);
1194 script
->set_incremental_info(entry
);
1197 // Finalize the incremental link information. Called from
1198 // Layout::finalize.
1201 Incremental_inputs::finalize()
1203 // Finalize the string table.
1204 this->strtab_
->set_string_offsets();
1207 // Create the .gnu_incremental_inputs, _symtab, and _relocs input sections.
1210 Incremental_inputs::create_data_sections(Symbol_table
* symtab
)
1212 int reloc_align
= 4;
1214 switch (parameters
->size_and_endianness())
1216 #ifdef HAVE_TARGET_32_LITTLE
1217 case Parameters::TARGET_32_LITTLE
:
1218 this->inputs_section_
=
1219 new Output_section_incremental_inputs
<32, false>(this, symtab
);
1223 #ifdef HAVE_TARGET_32_BIG
1224 case Parameters::TARGET_32_BIG
:
1225 this->inputs_section_
=
1226 new Output_section_incremental_inputs
<32, true>(this, symtab
);
1230 #ifdef HAVE_TARGET_64_LITTLE
1231 case Parameters::TARGET_64_LITTLE
:
1232 this->inputs_section_
=
1233 new Output_section_incremental_inputs
<64, false>(this, symtab
);
1237 #ifdef HAVE_TARGET_64_BIG
1238 case Parameters::TARGET_64_BIG
:
1239 this->inputs_section_
=
1240 new Output_section_incremental_inputs
<64, true>(this, symtab
);
1247 this->symtab_section_
= new Output_data_space(4, "** incremental_symtab");
1248 this->relocs_section_
= new Output_data_space(reloc_align
,
1249 "** incremental_relocs");
1250 this->got_plt_section_
= new Output_data_space(4, "** incremental_got_plt");
1253 // Return the sh_entsize value for the .gnu_incremental_relocs section.
1255 Incremental_inputs::relocs_entsize() const
1257 return 8 + 2 * parameters
->target().get_size() / 8;
1260 // Class Output_section_incremental_inputs.
1262 // Finalize the offsets for each input section and supplemental info block,
1263 // and set the final data size of the incremental output sections.
1265 template<int size
, bool big_endian
>
1267 Output_section_incremental_inputs
<size
, big_endian
>::set_final_data_size()
1269 const Incremental_inputs
* inputs
= this->inputs_
;
1271 // Offset of each input entry.
1272 unsigned int input_offset
= this->header_size
;
1274 // Offset of each supplemental info block.
1275 unsigned int file_index
= 0;
1276 unsigned int info_offset
= this->header_size
;
1277 info_offset
+= this->input_entry_size
* inputs
->input_file_count();
1279 // Count each input file and its supplemental information block.
1280 for (Incremental_inputs::Input_list::const_iterator p
=
1281 inputs
->input_files().begin();
1282 p
!= inputs
->input_files().end();
1285 // Set the index and offset of the input file entry.
1286 (*p
)->set_offset(file_index
, input_offset
);
1288 input_offset
+= this->input_entry_size
;
1290 // Set the offset of the supplemental info block.
1291 switch ((*p
)->type())
1293 case INCREMENTAL_INPUT_SCRIPT
:
1295 Incremental_script_entry
*entry
= (*p
)->script_entry();
1296 gold_assert(entry
!= NULL
);
1297 (*p
)->set_info_offset(info_offset
);
1301 info_offset
+= (entry
->get_object_count() * 4);
1304 case INCREMENTAL_INPUT_OBJECT
:
1305 case INCREMENTAL_INPUT_ARCHIVE_MEMBER
:
1307 Incremental_object_entry
* entry
= (*p
)->object_entry();
1308 gold_assert(entry
!= NULL
);
1309 (*p
)->set_info_offset(info_offset
);
1310 // Input section count, global symbol count, local symbol offset,
1311 // local symbol count, first dynamic reloc, dynamic reloc count,
1312 // comdat group count.
1313 info_offset
+= this->object_info_size
;
1314 // Each input section.
1315 info_offset
+= (entry
->get_input_section_count()
1316 * this->input_section_entry_size
);
1317 // Each global symbol.
1318 const Object::Symbols
* syms
= entry
->object()->get_global_symbols();
1319 info_offset
+= syms
->size() * this->global_sym_entry_size
;
1320 // Each comdat group.
1321 info_offset
+= entry
->get_comdat_group_count() * 4;
1324 case INCREMENTAL_INPUT_SHARED_LIBRARY
:
1326 Incremental_dynobj_entry
* entry
= (*p
)->dynobj_entry();
1327 gold_assert(entry
!= NULL
);
1328 (*p
)->set_info_offset(info_offset
);
1329 // Global symbol count, soname index.
1331 // Each global symbol.
1332 const Object::Symbols
* syms
= entry
->object()->get_global_symbols();
1333 gold_assert(syms
!= NULL
);
1334 unsigned int nsyms
= syms
->size();
1335 unsigned int nsyms_out
= 0;
1336 for (unsigned int i
= 0; i
< nsyms
; ++i
)
1338 const Symbol
* sym
= (*syms
)[i
];
1341 if (sym
->is_forwarder())
1342 sym
= this->symtab_
->resolve_forwards(sym
);
1343 if (sym
->symtab_index() != -1U)
1346 info_offset
+= nsyms_out
* 4;
1349 case INCREMENTAL_INPUT_ARCHIVE
:
1351 Incremental_archive_entry
* entry
= (*p
)->archive_entry();
1352 gold_assert(entry
!= NULL
);
1353 (*p
)->set_info_offset(info_offset
);
1354 // Member count + unused global symbol count.
1357 info_offset
+= (entry
->get_member_count() * 4);
1358 // Each global symbol.
1359 info_offset
+= (entry
->get_unused_global_symbol_count() * 4);
1366 // Pad so each supplemental info block begins at an 8-byte boundary.
1367 if (info_offset
& 4)
1371 this->set_data_size(info_offset
);
1373 // Set the size of the .gnu_incremental_symtab section.
1374 inputs
->symtab_section()->set_current_data_size(this->symtab_
->output_count()
1375 * sizeof(unsigned int));
1377 // Set the size of the .gnu_incremental_relocs section.
1378 inputs
->relocs_section()->set_current_data_size(inputs
->get_reloc_count()
1379 * this->incr_reloc_size
);
1381 // Set the size of the .gnu_incremental_got_plt section.
1382 Sized_target
<size
, big_endian
>* target
=
1383 parameters
->sized_target
<size
, big_endian
>();
1384 unsigned int got_count
= target
->got_entry_count();
1385 unsigned int plt_count
= target
->plt_entry_count();
1386 unsigned int got_plt_size
= 8; // GOT entry count, PLT entry count.
1387 got_plt_size
= (got_plt_size
+ got_count
+ 3) & ~3; // GOT type array.
1388 got_plt_size
+= got_count
* 8 + plt_count
* 4; // GOT array, PLT array.
1389 inputs
->got_plt_section()->set_current_data_size(got_plt_size
);
1392 // Write the contents of the .gnu_incremental_inputs and
1393 // .gnu_incremental_symtab sections.
1395 template<int size
, bool big_endian
>
1397 Output_section_incremental_inputs
<size
, big_endian
>::do_write(Output_file
* of
)
1399 const Incremental_inputs
* inputs
= this->inputs_
;
1400 Stringpool
* strtab
= inputs
->get_stringpool();
1402 // Get a view into the .gnu_incremental_inputs section.
1403 const off_t off
= this->offset();
1404 const off_t oview_size
= this->data_size();
1405 unsigned char* const oview
= of
->get_output_view(off
, oview_size
);
1406 unsigned char* pov
= oview
;
1408 // Get a view into the .gnu_incremental_symtab section.
1409 const off_t symtab_off
= inputs
->symtab_section()->offset();
1410 const off_t symtab_size
= inputs
->symtab_section()->data_size();
1411 unsigned char* const symtab_view
= of
->get_output_view(symtab_off
,
1414 // Allocate an array of linked list heads for the .gnu_incremental_symtab
1415 // section. Each element corresponds to a global symbol in the output
1416 // symbol table, and points to the head of the linked list that threads
1417 // through the object file input entries. The value of each element
1418 // is the section-relative offset to a global symbol entry in a
1419 // supplemental information block.
1420 unsigned int global_sym_count
= this->symtab_
->output_count();
1421 unsigned int* global_syms
= new unsigned int[global_sym_count
];
1422 memset(global_syms
, 0, global_sym_count
* sizeof(unsigned int));
1424 // Write the section header.
1425 Stringpool::Key command_line_key
= inputs
->command_line_key();
1426 pov
= this->write_header(pov
, inputs
->input_file_count(),
1427 strtab
->get_offset_from_key(command_line_key
));
1429 // Write the list of input files.
1430 pov
= this->write_input_files(oview
, pov
, strtab
);
1432 // Write the supplemental information blocks for each input file.
1433 pov
= this->write_info_blocks(oview
, pov
, strtab
, global_syms
,
1436 gold_assert(pov
- oview
== oview_size
);
1438 // Write the .gnu_incremental_symtab section.
1439 gold_assert(static_cast<off_t
>(global_sym_count
) * 4 == symtab_size
);
1440 this->write_symtab(symtab_view
, global_syms
, global_sym_count
);
1442 delete[] global_syms
;
1444 // Write the .gnu_incremental_got_plt section.
1445 const off_t got_plt_off
= inputs
->got_plt_section()->offset();
1446 const off_t got_plt_size
= inputs
->got_plt_section()->data_size();
1447 unsigned char* const got_plt_view
= of
->get_output_view(got_plt_off
,
1449 this->write_got_plt(got_plt_view
, got_plt_size
);
1451 of
->write_output_view(off
, oview_size
, oview
);
1452 of
->write_output_view(symtab_off
, symtab_size
, symtab_view
);
1453 of
->write_output_view(got_plt_off
, got_plt_size
, got_plt_view
);
1456 // Write the section header: version, input file count, offset of command line
1457 // in the string table, and 4 bytes of padding.
1459 template<int size
, bool big_endian
>
1461 Output_section_incremental_inputs
<size
, big_endian
>::write_header(
1463 unsigned int input_file_count
,
1464 section_offset_type command_line_offset
)
1466 Swap32::writeval(pov
, INCREMENTAL_LINK_VERSION
);
1467 Swap32::writeval(pov
+ 4, input_file_count
);
1468 Swap32::writeval(pov
+ 8, command_line_offset
);
1469 Swap32::writeval(pov
+ 12, 0);
1470 gold_assert(this->header_size
== 16);
1471 return pov
+ this->header_size
;
1474 // Write the input file entries.
1476 template<int size
, bool big_endian
>
1478 Output_section_incremental_inputs
<size
, big_endian
>::write_input_files(
1479 unsigned char* oview
,
1483 const Incremental_inputs
* inputs
= this->inputs_
;
1485 for (Incremental_inputs::Input_list::const_iterator p
=
1486 inputs
->input_files().begin();
1487 p
!= inputs
->input_files().end();
1490 gold_assert(static_cast<unsigned int>(pov
- oview
) == (*p
)->get_offset());
1491 section_offset_type filename_offset
=
1492 strtab
->get_offset_from_key((*p
)->get_filename_key());
1493 const Timespec
& mtime
= (*p
)->get_mtime();
1494 unsigned int flags
= (*p
)->type();
1495 if ((*p
)->is_in_system_directory())
1496 flags
|= INCREMENTAL_INPUT_IN_SYSTEM_DIR
;
1497 if ((*p
)->as_needed())
1498 flags
|= INCREMENTAL_INPUT_AS_NEEDED
;
1499 Swap32::writeval(pov
, filename_offset
);
1500 Swap32::writeval(pov
+ 4, (*p
)->get_info_offset());
1501 Swap64::writeval(pov
+ 8, mtime
.seconds
);
1502 Swap32::writeval(pov
+ 16, mtime
.nanoseconds
);
1503 Swap16::writeval(pov
+ 20, flags
);
1504 Swap16::writeval(pov
+ 22, (*p
)->arg_serial());
1505 gold_assert(this->input_entry_size
== 24);
1506 pov
+= this->input_entry_size
;
1511 // Write the supplemental information blocks.
1513 template<int size
, bool big_endian
>
1515 Output_section_incremental_inputs
<size
, big_endian
>::write_info_blocks(
1516 unsigned char* oview
,
1519 unsigned int* global_syms
,
1520 unsigned int global_sym_count
)
1522 const Incremental_inputs
* inputs
= this->inputs_
;
1523 unsigned int first_global_index
= this->symtab_
->first_global_index();
1525 for (Incremental_inputs::Input_list::const_iterator p
=
1526 inputs
->input_files().begin();
1527 p
!= inputs
->input_files().end();
1530 switch ((*p
)->type())
1532 case INCREMENTAL_INPUT_SCRIPT
:
1534 gold_assert(static_cast<unsigned int>(pov
- oview
)
1535 == (*p
)->get_info_offset());
1536 Incremental_script_entry
* entry
= (*p
)->script_entry();
1537 gold_assert(entry
!= NULL
);
1539 // Write the object count.
1540 unsigned int nobjects
= entry
->get_object_count();
1541 Swap32::writeval(pov
, nobjects
);
1544 // For each object, write the offset to its input file entry.
1545 for (unsigned int i
= 0; i
< nobjects
; ++i
)
1547 Incremental_input_entry
* obj
= entry
->get_object(i
);
1548 Swap32::writeval(pov
, obj
->get_offset());
1554 case INCREMENTAL_INPUT_OBJECT
:
1555 case INCREMENTAL_INPUT_ARCHIVE_MEMBER
:
1557 gold_assert(static_cast<unsigned int>(pov
- oview
)
1558 == (*p
)->get_info_offset());
1559 Incremental_object_entry
* entry
= (*p
)->object_entry();
1560 gold_assert(entry
!= NULL
);
1561 const Object
* obj
= entry
->object();
1562 const Relobj
* relobj
= static_cast<const Relobj
*>(obj
);
1563 const Object::Symbols
* syms
= obj
->get_global_symbols();
1564 // Write the input section count and global symbol count.
1565 unsigned int nsections
= entry
->get_input_section_count();
1566 unsigned int nsyms
= syms
->size();
1567 off_t locals_offset
= relobj
->local_symbol_offset();
1568 unsigned int nlocals
= relobj
->output_local_symbol_count();
1569 unsigned int first_dynrel
= relobj
->first_dyn_reloc();
1570 unsigned int ndynrel
= relobj
->dyn_reloc_count();
1571 unsigned int ncomdat
= entry
->get_comdat_group_count();
1572 Swap32::writeval(pov
, nsections
);
1573 Swap32::writeval(pov
+ 4, nsyms
);
1574 Swap32::writeval(pov
+ 8, static_cast<unsigned int>(locals_offset
));
1575 Swap32::writeval(pov
+ 12, nlocals
);
1576 Swap32::writeval(pov
+ 16, first_dynrel
);
1577 Swap32::writeval(pov
+ 20, ndynrel
);
1578 Swap32::writeval(pov
+ 24, ncomdat
);
1579 Swap32::writeval(pov
+ 28, 0);
1580 gold_assert(this->object_info_size
== 32);
1581 pov
+= this->object_info_size
;
1583 // Build a temporary array to map input section indexes
1584 // from the original object file index to the index in the
1585 // incremental info table.
1586 unsigned int* index_map
= new unsigned int[obj
->shnum()];
1587 memset(index_map
, 0, obj
->shnum() * sizeof(unsigned int));
1589 // For each input section, write the name, output section index,
1590 // offset within output section, and input section size.
1591 for (unsigned int i
= 0; i
< nsections
; i
++)
1593 unsigned int shndx
= entry
->get_input_section_index(i
);
1594 index_map
[shndx
] = i
+ 1;
1595 Stringpool::Key key
= entry
->get_input_section_name_key(i
);
1596 off_t name_offset
= 0;
1598 name_offset
= strtab
->get_offset_from_key(key
);
1600 off_t out_offset
= 0;
1602 Output_section
* os
= obj
->output_section(shndx
);
1605 out_shndx
= os
->out_shndx();
1606 out_offset
= obj
->output_section_offset(shndx
);
1607 sh_size
= entry
->get_input_section_size(i
);
1609 Swap32::writeval(pov
, name_offset
);
1610 Swap32::writeval(pov
+ 4, out_shndx
);
1611 Swap::writeval(pov
+ 8, out_offset
);
1612 Swap::writeval(pov
+ 8 + sizeof_addr
, sh_size
);
1613 gold_assert(this->input_section_entry_size
1614 == 8 + 2 * sizeof_addr
);
1615 pov
+= this->input_section_entry_size
;
1618 // For each global symbol, write its associated relocations,
1619 // add it to the linked list of globals, then write the
1620 // supplemental information: global symbol table index,
1621 // input section index, linked list chain pointer, relocation
1622 // count, and offset to the relocations.
1623 for (unsigned int i
= 0; i
< nsyms
; i
++)
1625 const Symbol
* sym
= (*syms
)[i
];
1626 if (sym
->is_forwarder())
1627 sym
= this->symtab_
->resolve_forwards(sym
);
1628 unsigned int shndx
= 0;
1629 if (sym
->source() != Symbol::FROM_OBJECT
)
1631 // The symbol was defined by the linker (e.g., common).
1632 // We mark these symbols with a special SHNDX of -1,
1633 // but exclude linker-predefined symbols and symbols
1634 // copied from shared objects.
1635 if (!sym
->is_predefined()
1636 && !sym
->is_copied_from_dynobj())
1639 else if (sym
->object() == obj
&& sym
->is_defined())
1642 unsigned int orig_shndx
= sym
->shndx(&is_ordinary
);
1644 shndx
= index_map
[orig_shndx
];
1648 unsigned int symtab_index
= sym
->symtab_index();
1649 unsigned int chain
= 0;
1650 unsigned int first_reloc
= 0;
1651 unsigned int nrelocs
= obj
->get_incremental_reloc_count(i
);
1654 gold_assert(symtab_index
!= -1U
1655 && (symtab_index
- first_global_index
1656 < global_sym_count
));
1657 first_reloc
= obj
->get_incremental_reloc_base(i
);
1658 chain
= global_syms
[symtab_index
- first_global_index
];
1659 global_syms
[symtab_index
- first_global_index
] =
1662 Swap32::writeval(pov
, symtab_index
);
1663 Swap32::writeval(pov
+ 4, shndx
);
1664 Swap32::writeval(pov
+ 8, chain
);
1665 Swap32::writeval(pov
+ 12, nrelocs
);
1666 Swap32::writeval(pov
+ 16,
1667 first_reloc
* (8 + 2 * sizeof_addr
));
1668 gold_assert(this->global_sym_entry_size
== 20);
1669 pov
+= this->global_sym_entry_size
;
1672 // For each kept COMDAT group, write the group signature.
1673 for (unsigned int i
= 0; i
< ncomdat
; i
++)
1675 Stringpool::Key key
= entry
->get_comdat_signature_key(i
);
1676 off_t name_offset
= 0;
1678 name_offset
= strtab
->get_offset_from_key(key
);
1679 Swap32::writeval(pov
, name_offset
);
1687 case INCREMENTAL_INPUT_SHARED_LIBRARY
:
1689 gold_assert(static_cast<unsigned int>(pov
- oview
)
1690 == (*p
)->get_info_offset());
1691 Incremental_dynobj_entry
* entry
= (*p
)->dynobj_entry();
1692 gold_assert(entry
!= NULL
);
1693 Object
* obj
= entry
->object();
1694 Dynobj
* dynobj
= obj
->dynobj();
1695 gold_assert(dynobj
!= NULL
);
1696 const Object::Symbols
* syms
= obj
->get_global_symbols();
1698 // Write the soname string table index.
1699 section_offset_type soname_offset
=
1700 strtab
->get_offset_from_key(entry
->get_soname_key());
1701 Swap32::writeval(pov
, soname_offset
);
1704 // Skip the global symbol count for now.
1705 unsigned char* orig_pov
= pov
;
1708 // For each global symbol, write the global symbol table index.
1709 unsigned int nsyms
= syms
->size();
1710 unsigned int nsyms_out
= 0;
1711 for (unsigned int i
= 0; i
< nsyms
; i
++)
1713 const Symbol
* sym
= (*syms
)[i
];
1716 if (sym
->is_forwarder())
1717 sym
= this->symtab_
->resolve_forwards(sym
);
1718 if (sym
->symtab_index() == -1U)
1720 unsigned int flags
= 0;
1721 // If the symbol has hidden or internal visibility, we
1722 // mark it as defined in the shared object so we don't
1723 // try to resolve it during an incremental update.
1724 if (sym
->visibility() == elfcpp::STV_HIDDEN
1725 || sym
->visibility() == elfcpp::STV_INTERNAL
)
1726 flags
= INCREMENTAL_SHLIB_SYM_DEF
;
1727 else if (sym
->source() == Symbol::FROM_OBJECT
1728 && sym
->object() == obj
1729 && sym
->is_defined())
1730 flags
= INCREMENTAL_SHLIB_SYM_DEF
;
1731 else if (sym
->is_copied_from_dynobj()
1732 && this->symtab_
->get_copy_source(sym
) == dynobj
)
1733 flags
= INCREMENTAL_SHLIB_SYM_COPY
;
1734 flags
<<= INCREMENTAL_SHLIB_SYM_FLAGS_SHIFT
;
1735 Swap32::writeval(pov
, sym
->symtab_index() | flags
);
1740 // Now write the global symbol count.
1741 Swap32::writeval(orig_pov
, nsyms_out
);
1745 case INCREMENTAL_INPUT_ARCHIVE
:
1747 gold_assert(static_cast<unsigned int>(pov
- oview
)
1748 == (*p
)->get_info_offset());
1749 Incremental_archive_entry
* entry
= (*p
)->archive_entry();
1750 gold_assert(entry
!= NULL
);
1752 // Write the member count and unused global symbol count.
1753 unsigned int nmembers
= entry
->get_member_count();
1754 unsigned int nsyms
= entry
->get_unused_global_symbol_count();
1755 Swap32::writeval(pov
, nmembers
);
1756 Swap32::writeval(pov
+ 4, nsyms
);
1759 // For each member, write the offset to its input file entry.
1760 for (unsigned int i
= 0; i
< nmembers
; ++i
)
1762 Incremental_object_entry
* member
= entry
->get_member(i
);
1763 Swap32::writeval(pov
, member
->get_offset());
1767 // For each global symbol, write the name offset.
1768 for (unsigned int i
= 0; i
< nsyms
; ++i
)
1770 Stringpool::Key key
= entry
->get_unused_global_symbol(i
);
1771 Swap32::writeval(pov
, strtab
->get_offset_from_key(key
));
1781 // Pad the info block to a multiple of 8 bytes.
1782 if (static_cast<unsigned int>(pov
- oview
) & 4)
1784 Swap32::writeval(pov
, 0);
1791 // Write the contents of the .gnu_incremental_symtab section.
1793 template<int size
, bool big_endian
>
1795 Output_section_incremental_inputs
<size
, big_endian
>::write_symtab(
1797 unsigned int* global_syms
,
1798 unsigned int global_sym_count
)
1800 for (unsigned int i
= 0; i
< global_sym_count
; ++i
)
1802 Swap32::writeval(pov
, global_syms
[i
]);
1807 // This struct holds the view information needed to write the
1808 // .gnu_incremental_got_plt section.
1810 struct Got_plt_view_info
1812 // Start of the GOT type array in the output view.
1813 unsigned char* got_type_p
;
1814 // Start of the GOT descriptor array in the output view.
1815 unsigned char* got_desc_p
;
1816 // Start of the PLT descriptor array in the output view.
1817 unsigned char* plt_desc_p
;
1818 // Number of GOT entries.
1819 unsigned int got_count
;
1820 // Number of PLT entries.
1821 unsigned int plt_count
;
1822 // Offset of the first non-reserved PLT entry (this is a target-dependent value).
1823 unsigned int first_plt_entry_offset
;
1824 // Size of a PLT entry (this is a target-dependent value).
1825 unsigned int plt_entry_size
;
1826 // Size of a GOT entry (this is a target-dependent value).
1827 unsigned int got_entry_size
;
1828 // Symbol index to write in the GOT descriptor array. For global symbols,
1829 // this is the global symbol table index; for local symbols, it is the
1830 // local symbol table index.
1831 unsigned int sym_index
;
1832 // Input file index to write in the GOT descriptor array. For global
1833 // symbols, this is 0; for local symbols, it is the index of the input
1834 // file entry in the .gnu_incremental_inputs section.
1835 unsigned int input_index
;
1838 // Functor class for processing a GOT offset list for local symbols.
1839 // Writes the GOT type and symbol index into the GOT type and descriptor
1840 // arrays in the output section.
1842 template<int size
, bool big_endian
>
1843 class Local_got_offset_visitor
: public Got_offset_list::Visitor
1846 Local_got_offset_visitor(struct Got_plt_view_info
& info
)
1851 visit(unsigned int got_type
, unsigned int got_offset
)
1853 unsigned int got_index
= got_offset
/ this->info_
.got_entry_size
;
1854 gold_assert(got_index
< this->info_
.got_count
);
1855 // We can only handle GOT entry types in the range 0..0x7e
1856 // because we use a byte array to store them, and we use the
1857 // high bit to flag a local symbol.
1858 gold_assert(got_type
< 0x7f);
1859 this->info_
.got_type_p
[got_index
] = got_type
| 0x80;
1860 unsigned char* pov
= this->info_
.got_desc_p
+ got_index
* 8;
1861 elfcpp::Swap
<32, big_endian
>::writeval(pov
, this->info_
.sym_index
);
1862 elfcpp::Swap
<32, big_endian
>::writeval(pov
+ 4, this->info_
.input_index
);
1866 struct Got_plt_view_info
& info_
;
1869 // Functor class for processing a GOT offset list. Writes the GOT type
1870 // and symbol index into the GOT type and descriptor arrays in the output
1873 template<int size
, bool big_endian
>
1874 class Global_got_offset_visitor
: public Got_offset_list::Visitor
1877 Global_got_offset_visitor(struct Got_plt_view_info
& info
)
1882 visit(unsigned int got_type
, unsigned int got_offset
)
1884 unsigned int got_index
= got_offset
/ this->info_
.got_entry_size
;
1885 gold_assert(got_index
< this->info_
.got_count
);
1886 // We can only handle GOT entry types in the range 0..0x7e
1887 // because we use a byte array to store them, and we use the
1888 // high bit to flag a local symbol.
1889 gold_assert(got_type
< 0x7f);
1890 this->info_
.got_type_p
[got_index
] = got_type
;
1891 unsigned char* pov
= this->info_
.got_desc_p
+ got_index
* 8;
1892 elfcpp::Swap
<32, big_endian
>::writeval(pov
, this->info_
.sym_index
);
1893 elfcpp::Swap
<32, big_endian
>::writeval(pov
+ 4, 0);
1897 struct Got_plt_view_info
& info_
;
1900 // Functor class for processing the global symbol table. Processes the
1901 // GOT offset list for the symbol, and writes the symbol table index
1902 // into the PLT descriptor array in the output section.
1904 template<int size
, bool big_endian
>
1905 class Global_symbol_visitor_got_plt
1908 Global_symbol_visitor_got_plt(struct Got_plt_view_info
& info
)
1913 operator()(const Sized_symbol
<size
>* sym
)
1915 typedef Global_got_offset_visitor
<size
, big_endian
> Got_visitor
;
1916 const Got_offset_list
* got_offsets
= sym
->got_offset_list();
1917 if (got_offsets
!= NULL
)
1919 this->info_
.sym_index
= sym
->symtab_index();
1920 this->info_
.input_index
= 0;
1921 Got_visitor
v(this->info_
);
1922 got_offsets
->for_all_got_offsets(&v
);
1924 if (sym
->has_plt_offset())
1926 unsigned int plt_index
=
1927 ((sym
->plt_offset() - this->info_
.first_plt_entry_offset
)
1928 / this->info_
.plt_entry_size
);
1929 gold_assert(plt_index
< this->info_
.plt_count
);
1930 unsigned char* pov
= this->info_
.plt_desc_p
+ plt_index
* 4;
1931 elfcpp::Swap
<32, big_endian
>::writeval(pov
, sym
->symtab_index());
1936 struct Got_plt_view_info
& info_
;
1939 // Write the contents of the .gnu_incremental_got_plt section.
1941 template<int size
, bool big_endian
>
1943 Output_section_incremental_inputs
<size
, big_endian
>::write_got_plt(
1947 Sized_target
<size
, big_endian
>* target
=
1948 parameters
->sized_target
<size
, big_endian
>();
1950 // Set up the view information for the functors.
1951 struct Got_plt_view_info view_info
;
1952 view_info
.got_count
= target
->got_entry_count();
1953 view_info
.plt_count
= target
->plt_entry_count();
1954 view_info
.first_plt_entry_offset
= target
->first_plt_entry_offset();
1955 view_info
.plt_entry_size
= target
->plt_entry_size();
1956 view_info
.got_entry_size
= target
->got_entry_size();
1957 view_info
.got_type_p
= pov
+ 8;
1958 view_info
.got_desc_p
= (view_info
.got_type_p
1959 + ((view_info
.got_count
+ 3) & ~3));
1960 view_info
.plt_desc_p
= view_info
.got_desc_p
+ view_info
.got_count
* 8;
1962 gold_assert(pov
+ view_size
==
1963 view_info
.plt_desc_p
+ view_info
.plt_count
* 4);
1965 // Write the section header.
1966 Swap32::writeval(pov
, view_info
.got_count
);
1967 Swap32::writeval(pov
+ 4, view_info
.plt_count
);
1969 // Initialize the GOT type array to 0xff (reserved).
1970 memset(view_info
.got_type_p
, 0xff, view_info
.got_count
);
1972 // Write the incremental GOT descriptors for local symbols.
1973 typedef Local_got_offset_visitor
<size
, big_endian
> Got_visitor
;
1974 for (Incremental_inputs::Input_list::const_iterator p
=
1975 this->inputs_
->input_files().begin();
1976 p
!= this->inputs_
->input_files().end();
1979 if ((*p
)->type() != INCREMENTAL_INPUT_OBJECT
1980 && (*p
)->type() != INCREMENTAL_INPUT_ARCHIVE_MEMBER
)
1982 Incremental_object_entry
* entry
= (*p
)->object_entry();
1983 gold_assert(entry
!= NULL
);
1984 const Object
* obj
= entry
->object();
1985 gold_assert(obj
!= NULL
);
1986 view_info
.input_index
= (*p
)->get_file_index();
1987 Got_visitor
v(view_info
);
1988 obj
->for_all_local_got_entries(&v
);
1991 // Write the incremental GOT and PLT descriptors for global symbols.
1992 typedef Global_symbol_visitor_got_plt
<size
, big_endian
> Symbol_visitor
;
1993 symtab_
->for_all_symbols
<size
, Symbol_visitor
>(Symbol_visitor(view_info
));
1996 // Class Sized_relobj_incr. Most of these methods are not used for
1997 // Incremental objects, but are required to be implemented by the
1998 // base class Object.
2000 template<int size
, bool big_endian
>
2001 Sized_relobj_incr
<size
, big_endian
>::Sized_relobj_incr(
2002 const std::string
& name
,
2003 Sized_incremental_binary
<size
, big_endian
>* ibase
,
2004 unsigned int input_file_index
)
2005 : Sized_relobj
<size
, big_endian
>(name
, NULL
), ibase_(ibase
),
2006 input_file_index_(input_file_index
),
2007 input_reader_(ibase
->inputs_reader().input_file(input_file_index
)),
2008 local_symbol_count_(0), output_local_dynsym_count_(0),
2009 local_symbol_index_(0), local_symbol_offset_(0), local_dynsym_offset_(0),
2010 symbols_(), defined_count_(0), incr_reloc_offset_(-1U),
2011 incr_reloc_count_(0), incr_reloc_output_index_(0), incr_relocs_(NULL
),
2014 if (this->input_reader_
.is_in_system_directory())
2015 this->set_is_in_system_directory();
2016 const unsigned int shnum
= this->input_reader_
.get_input_section_count() + 1;
2017 this->set_shnum(shnum
);
2018 ibase
->set_input_object(input_file_index
, this);
2021 // Read the symbols.
2023 template<int size
, bool big_endian
>
2025 Sized_relobj_incr
<size
, big_endian
>::do_read_symbols(Read_symbols_data
*)
2030 // Lay out the input sections.
2032 template<int size
, bool big_endian
>
2034 Sized_relobj_incr
<size
, big_endian
>::do_layout(
2039 const unsigned int shnum
= this->shnum();
2040 Incremental_inputs
* incremental_inputs
= layout
->incremental_inputs();
2041 gold_assert(incremental_inputs
!= NULL
);
2042 Output_sections
& out_sections(this->output_sections());
2043 out_sections
.resize(shnum
);
2044 this->section_offsets().resize(shnum
);
2046 // Keep track of .debug_info and .debug_types sections.
2047 std::vector
<unsigned int> debug_info_sections
;
2048 std::vector
<unsigned int> debug_types_sections
;
2050 for (unsigned int i
= 1; i
< shnum
; i
++)
2052 typename
Input_entry_reader::Input_section_info sect
=
2053 this->input_reader_
.get_input_section(i
- 1);
2054 // Add the section to the incremental inputs layout.
2055 incremental_inputs
->report_input_section(this, i
, sect
.name
,
2057 if (sect
.output_shndx
== 0 || sect
.sh_offset
== -1)
2059 Output_section
* os
= this->ibase_
->output_section(sect
.output_shndx
);
2060 gold_assert(os
!= NULL
);
2061 out_sections
[i
] = os
;
2062 this->section_offsets()[i
] = static_cast<Address
>(sect
.sh_offset
);
2064 // When generating a .gdb_index section, we do additional
2065 // processing of .debug_info and .debug_types sections after all
2066 // the other sections.
2067 if (parameters
->options().gdb_index())
2069 const char* name
= os
->name();
2070 if (strcmp(name
, ".debug_info") == 0)
2071 debug_info_sections
.push_back(i
);
2072 else if (strcmp(name
, ".debug_types") == 0)
2073 debug_types_sections
.push_back(i
);
2077 // Process the COMDAT groups.
2078 unsigned int ncomdat
= this->input_reader_
.get_comdat_group_count();
2079 for (unsigned int i
= 0; i
< ncomdat
; i
++)
2081 const char* signature
= this->input_reader_
.get_comdat_group_signature(i
);
2082 if (signature
== NULL
|| signature
[0] == '\0')
2083 this->error(_("COMDAT group has no signature"));
2084 bool keep
= layout
->find_or_add_kept_section(signature
, this, i
, true,
2087 incremental_inputs
->report_comdat_group(this, signature
);
2089 this->error(_("COMDAT group %s included twice in incremental link"),
2093 // When building a .gdb_index section, scan the .debug_info and
2094 // .debug_types sections.
2095 for (std::vector
<unsigned int>::const_iterator p
2096 = debug_info_sections
.begin();
2097 p
!= debug_info_sections
.end();
2100 unsigned int i
= *p
;
2101 layout
->add_to_gdb_index(false, this, NULL
, 0, i
, 0, 0);
2103 for (std::vector
<unsigned int>::const_iterator p
2104 = debug_types_sections
.begin();
2105 p
!= debug_types_sections
.end();
2108 unsigned int i
= *p
;
2109 layout
->add_to_gdb_index(true, this, 0, 0, i
, 0, 0);
2113 // Layout sections whose layout was deferred while waiting for
2114 // input files from a plugin.
2115 template<int size
, bool big_endian
>
2117 Sized_relobj_incr
<size
, big_endian
>::do_layout_deferred_sections(Layout
*)
2121 // Add the symbols to the symbol table.
2123 template<int size
, bool big_endian
>
2125 Sized_relobj_incr
<size
, big_endian
>::do_add_symbols(
2126 Symbol_table
* symtab
,
2130 const int sym_size
= elfcpp::Elf_sizes
<size
>::sym_size
;
2131 unsigned char symbuf
[sym_size
];
2132 elfcpp::Sym
<size
, big_endian
> sym(symbuf
);
2133 elfcpp::Sym_write
<size
, big_endian
> osym(symbuf
);
2135 typedef typename
elfcpp::Elf_types
<size
>::Elf_WXword Elf_size_type
;
2137 unsigned int nsyms
= this->input_reader_
.get_global_symbol_count();
2138 this->symbols_
.resize(nsyms
);
2140 Incremental_binary::View
symtab_view(NULL
);
2141 unsigned int symtab_count
;
2142 elfcpp::Elf_strtab
strtab(NULL
, 0);
2143 this->ibase_
->get_symtab_view(&symtab_view
, &symtab_count
, &strtab
);
2145 Incremental_symtab_reader
<big_endian
> isymtab(this->ibase_
->symtab_reader());
2146 unsigned int isym_count
= isymtab
.symbol_count();
2147 unsigned int first_global
= symtab_count
- isym_count
;
2149 const unsigned char* sym_p
;
2150 for (unsigned int i
= 0; i
< nsyms
; ++i
)
2152 Incremental_global_symbol_reader
<big_endian
> info
=
2153 this->input_reader_
.get_global_symbol_reader(i
);
2154 unsigned int output_symndx
= info
.output_symndx();
2155 sym_p
= symtab_view
.data() + output_symndx
* sym_size
;
2156 elfcpp::Sym
<size
, big_endian
> gsym(sym_p
);
2158 if (!strtab
.get_c_string(gsym
.get_st_name(), &name
))
2161 typename
elfcpp::Elf_types
<size
>::Elf_Addr v
= gsym
.get_st_value();
2162 unsigned int shndx
= gsym
.get_st_shndx();
2163 elfcpp::STB st_bind
= gsym
.get_st_bind();
2164 elfcpp::STT st_type
= gsym
.get_st_type();
2166 // Local hidden symbols start out as globals, but get converted to
2167 // to local during output.
2168 if (st_bind
== elfcpp::STB_LOCAL
)
2169 st_bind
= elfcpp::STB_GLOBAL
;
2171 unsigned int input_shndx
= info
.shndx();
2172 if (input_shndx
== 0 || input_shndx
== -1U)
2174 shndx
= elfcpp::SHN_UNDEF
;
2177 else if (shndx
!= elfcpp::SHN_ABS
)
2179 // Find the input section and calculate the section-relative value.
2180 gold_assert(shndx
!= elfcpp::SHN_UNDEF
);
2181 Output_section
* os
= this->ibase_
->output_section(shndx
);
2182 gold_assert(os
!= NULL
&& os
->has_fixed_layout());
2183 typename
Input_entry_reader::Input_section_info sect
=
2184 this->input_reader_
.get_input_section(input_shndx
- 1);
2185 gold_assert(sect
.output_shndx
== shndx
);
2186 if (st_type
!= elfcpp::STT_TLS
)
2188 v
-= sect
.sh_offset
;
2189 shndx
= input_shndx
;
2192 osym
.put_st_name(0);
2193 osym
.put_st_value(v
);
2194 osym
.put_st_size(gsym
.get_st_size());
2195 osym
.put_st_info(st_bind
, st_type
);
2196 osym
.put_st_other(gsym
.get_st_other());
2197 osym
.put_st_shndx(shndx
);
2199 Symbol
* res
= symtab
->add_from_incrobj(this, name
, NULL
, &sym
);
2201 if (shndx
!= elfcpp::SHN_UNDEF
)
2202 ++this->defined_count_
;
2204 // If this is a linker-defined symbol that hasn't yet been defined,
2206 if (input_shndx
== -1U && !res
->is_defined())
2208 shndx
= gsym
.get_st_shndx();
2209 v
= gsym
.get_st_value();
2210 Elf_size_type symsize
= gsym
.get_st_size();
2211 if (shndx
== elfcpp::SHN_ABS
)
2213 symtab
->define_as_constant(name
, NULL
,
2214 Symbol_table::INCREMENTAL_BASE
,
2215 v
, symsize
, st_type
, st_bind
,
2216 gsym
.get_st_visibility(), 0,
2221 Output_section
* os
= this->ibase_
->output_section(shndx
);
2222 gold_assert(os
!= NULL
&& os
->has_fixed_layout());
2225 os
->reserve(v
, symsize
);
2226 symtab
->define_in_output_data(name
, NULL
,
2227 Symbol_table::INCREMENTAL_BASE
,
2228 os
, v
, symsize
, st_type
, st_bind
,
2229 gsym
.get_st_visibility(), 0,
2234 this->symbols_
[i
] = res
;
2235 this->ibase_
->add_global_symbol(output_symndx
- first_global
, res
);
2239 // Return TRUE if we should include this object from an archive library.
2241 template<int size
, bool big_endian
>
2242 Archive::Should_include
2243 Sized_relobj_incr
<size
, big_endian
>::do_should_include_member(
2252 // Iterate over global symbols, calling a visitor class V for each.
2254 template<int size
, bool big_endian
>
2256 Sized_relobj_incr
<size
, big_endian
>::do_for_all_global_symbols(
2258 Library_base::Symbol_visitor_base
*)
2260 // This routine is not used for incremental objects.
2263 // Get the size of a section.
2265 template<int size
, bool big_endian
>
2267 Sized_relobj_incr
<size
, big_endian
>::do_section_size(unsigned int)
2272 // Get the name of a section. This returns the name of the output
2273 // section, because we don't usually track the names of the input
2276 template<int size
, bool big_endian
>
2278 Sized_relobj_incr
<size
, big_endian
>::do_section_name(unsigned int shndx
) const
2280 const Output_sections
& out_sections(this->output_sections());
2281 const Output_section
* os
= out_sections
[shndx
];
2287 // Return a view of the contents of a section.
2289 template<int size
, bool big_endian
>
2290 const unsigned char*
2291 Sized_relobj_incr
<size
, big_endian
>::do_section_contents(
2293 section_size_type
* plen
,
2296 Output_sections
& out_sections(this->output_sections());
2297 Output_section
* os
= out_sections
[shndx
];
2298 gold_assert(os
!= NULL
);
2299 off_t section_offset
= os
->offset();
2300 typename
Input_entry_reader::Input_section_info sect
=
2301 this->input_reader_
.get_input_section(shndx
- 1);
2302 section_offset
+= sect
.sh_offset
;
2303 *plen
= sect
.sh_size
;
2304 return this->ibase_
->view(section_offset
, sect
.sh_size
).data();
2307 // Return section flags.
2309 template<int size
, bool big_endian
>
2311 Sized_relobj_incr
<size
, big_endian
>::do_section_flags(unsigned int)
2316 // Return section entsize.
2318 template<int size
, bool big_endian
>
2320 Sized_relobj_incr
<size
, big_endian
>::do_section_entsize(unsigned int)
2325 // Return section address.
2327 template<int size
, bool big_endian
>
2329 Sized_relobj_incr
<size
, big_endian
>::do_section_address(unsigned int)
2334 // Return section type.
2336 template<int size
, bool big_endian
>
2338 Sized_relobj_incr
<size
, big_endian
>::do_section_type(unsigned int)
2343 // Return the section link field.
2345 template<int size
, bool big_endian
>
2347 Sized_relobj_incr
<size
, big_endian
>::do_section_link(unsigned int)
2352 // Return the section link field.
2354 template<int size
, bool big_endian
>
2356 Sized_relobj_incr
<size
, big_endian
>::do_section_info(unsigned int)
2361 // Return the section alignment.
2363 template<int size
, bool big_endian
>
2365 Sized_relobj_incr
<size
, big_endian
>::do_section_addralign(unsigned int)
2370 // Return the Xindex structure to use.
2372 template<int size
, bool big_endian
>
2374 Sized_relobj_incr
<size
, big_endian
>::do_initialize_xindex()
2379 // Get symbol counts.
2381 template<int size
, bool big_endian
>
2383 Sized_relobj_incr
<size
, big_endian
>::do_get_global_symbol_counts(
2384 const Symbol_table
*,
2388 *defined
= this->defined_count_
;
2390 for (typename
Symbols::const_iterator p
= this->symbols_
.begin();
2391 p
!= this->symbols_
.end();
2394 && (*p
)->source() == Symbol::FROM_OBJECT
2395 && (*p
)->object() == this
2396 && (*p
)->is_defined())
2403 template<int size
, bool big_endian
>
2405 Sized_relobj_incr
<size
, big_endian
>::do_read_relocs(Read_relocs_data
*)
2409 // Process the relocs to find list of referenced sections. Used only
2410 // during garbage collection.
2412 template<int size
, bool big_endian
>
2414 Sized_relobj_incr
<size
, big_endian
>::do_gc_process_relocs(Symbol_table
*,
2421 // Scan the relocs and adjust the symbol table.
2423 template<int size
, bool big_endian
>
2425 Sized_relobj_incr
<size
, big_endian
>::do_scan_relocs(Symbol_table
*,
2429 // Count the incremental relocations for this object.
2430 unsigned int nsyms
= this->input_reader_
.get_global_symbol_count();
2431 this->allocate_incremental_reloc_counts();
2432 for (unsigned int i
= 0; i
< nsyms
; i
++)
2434 Incremental_global_symbol_reader
<big_endian
> sym
=
2435 this->input_reader_
.get_global_symbol_reader(i
);
2436 unsigned int reloc_count
= sym
.reloc_count();
2437 if (reloc_count
> 0 && this->incr_reloc_offset_
== -1U)
2438 this->incr_reloc_offset_
= sym
.reloc_offset();
2439 this->incr_reloc_count_
+= reloc_count
;
2440 for (unsigned int j
= 0; j
< reloc_count
; j
++)
2441 this->count_incremental_reloc(i
);
2443 this->incr_reloc_output_index_
=
2444 layout
->incremental_inputs()->get_reloc_count();
2445 this->finalize_incremental_relocs(layout
, false);
2447 // The incoming incremental relocations may not end up in the same
2448 // location after the incremental update, because the incremental info
2449 // is regenerated in each link. Because the new location may overlap
2450 // with other data in the updated output file, we need to copy the
2451 // relocations into a buffer so that we can still read them safely
2452 // after we start writing updates to the output file.
2453 if (this->incr_reloc_count_
> 0)
2455 const Incremental_relocs_reader
<size
, big_endian
>& relocs_reader
=
2456 this->ibase_
->relocs_reader();
2457 const unsigned int incr_reloc_size
= relocs_reader
.reloc_size
;
2458 unsigned int len
= this->incr_reloc_count_
* incr_reloc_size
;
2459 this->incr_relocs_
= new unsigned char[len
];
2460 memcpy(this->incr_relocs_
,
2461 relocs_reader
.data(this->incr_reloc_offset_
),
2466 // Count the local symbols.
2468 template<int size
, bool big_endian
>
2470 Sized_relobj_incr
<size
, big_endian
>::do_count_local_symbols(
2471 Stringpool_template
<char>* pool
,
2472 Stringpool_template
<char>*)
2474 const int sym_size
= elfcpp::Elf_sizes
<size
>::sym_size
;
2476 // Set the count of local symbols based on the incremental info.
2477 unsigned int nlocals
= this->input_reader_
.get_local_symbol_count();
2478 this->local_symbol_count_
= nlocals
;
2479 this->local_symbols_
.reserve(nlocals
);
2481 // Get views of the base file's symbol table and string table.
2482 Incremental_binary::View
symtab_view(NULL
);
2483 unsigned int symtab_count
;
2484 elfcpp::Elf_strtab
strtab(NULL
, 0);
2485 this->ibase_
->get_symtab_view(&symtab_view
, &symtab_count
, &strtab
);
2487 // Read the local symbols from the base file's symbol table.
2488 off_t off
= this->input_reader_
.get_local_symbol_offset();
2489 const unsigned char* symp
= symtab_view
.data() + off
;
2490 for (unsigned int i
= 0; i
< nlocals
; ++i
, symp
+= sym_size
)
2492 elfcpp::Sym
<size
, big_endian
> sym(symp
);
2494 if (!strtab
.get_c_string(sym
.get_st_name(), &name
))
2496 gold_debug(DEBUG_INCREMENTAL
, "Local symbol %d: %s", i
, name
);
2497 name
= pool
->add(name
, true, NULL
);
2498 this->local_symbols_
.push_back(Local_symbol(name
,
2507 // Finalize the local symbols.
2509 template<int size
, bool big_endian
>
2511 Sized_relobj_incr
<size
, big_endian
>::do_finalize_local_symbols(
2516 this->local_symbol_index_
= index
;
2517 this->local_symbol_offset_
= off
;
2518 return index
+ this->local_symbol_count_
;
2521 // Set the offset where local dynamic symbol information will be stored.
2523 template<int size
, bool big_endian
>
2525 Sized_relobj_incr
<size
, big_endian
>::do_set_local_dynsym_indexes(
2528 // FIXME: set local dynsym indexes.
2532 // Set the offset where local dynamic symbol information will be stored.
2534 template<int size
, bool big_endian
>
2536 Sized_relobj_incr
<size
, big_endian
>::do_set_local_dynsym_offset(off_t
)
2541 // Relocate the input sections and write out the local symbols.
2542 // We don't actually do any relocation here. For unchanged input files,
2543 // we reapply relocations only for symbols that have changed; that happens
2544 // in Layout_task_runner::run(). We do need to rewrite the incremental
2545 // relocations for this object.
2547 template<int size
, bool big_endian
>
2549 Sized_relobj_incr
<size
, big_endian
>::do_relocate(const Symbol_table
*,
2550 const Layout
* layout
,
2553 if (this->incr_reloc_count_
== 0)
2556 const unsigned int incr_reloc_size
=
2557 Incremental_relocs_reader
<size
, big_endian
>::reloc_size
;
2559 // Get a view for the .gnu_incremental_relocs section.
2560 Incremental_inputs
* inputs
= layout
->incremental_inputs();
2561 gold_assert(inputs
!= NULL
);
2562 const off_t relocs_off
= inputs
->relocs_section()->offset();
2563 const off_t relocs_size
= inputs
->relocs_section()->data_size();
2564 unsigned char* const view
= of
->get_output_view(relocs_off
, relocs_size
);
2566 // Copy the relocations from the buffer.
2567 off_t off
= this->incr_reloc_output_index_
* incr_reloc_size
;
2568 unsigned int len
= this->incr_reloc_count_
* incr_reloc_size
;
2569 memcpy(view
+ off
, this->incr_relocs_
, len
);
2571 // The output section table may have changed, so we need to map
2572 // the old section index to the new section index for each relocation.
2573 for (unsigned int i
= 0; i
< this->incr_reloc_count_
; ++i
)
2575 unsigned char* pov
= view
+ off
+ i
* incr_reloc_size
;
2576 unsigned int shndx
= elfcpp::Swap
<32, big_endian
>::readval(pov
+ 4);
2577 Output_section
* os
= this->ibase_
->output_section(shndx
);
2578 gold_assert(os
!= NULL
);
2579 shndx
= os
->out_shndx();
2580 elfcpp::Swap
<32, big_endian
>::writeval(pov
+ 4, shndx
);
2583 of
->write_output_view(off
, len
, view
);
2585 // Get views into the output file for the portions of the symbol table
2586 // and the dynamic symbol table that we will be writing.
2587 off_t symtab_off
= layout
->symtab_section()->offset();
2588 off_t output_size
= this->local_symbol_count_
* This::sym_size
;
2589 unsigned char* oview
= NULL
;
2590 if (output_size
> 0)
2591 oview
= of
->get_output_view(symtab_off
+ this->local_symbol_offset_
,
2594 off_t dyn_output_size
= this->output_local_dynsym_count_
* sym_size
;
2595 unsigned char* dyn_oview
= NULL
;
2596 if (dyn_output_size
> 0)
2597 dyn_oview
= of
->get_output_view(this->local_dynsym_offset_
,
2600 // Write the local symbols.
2601 unsigned char* ov
= oview
;
2602 unsigned char* dyn_ov
= dyn_oview
;
2603 const Stringpool
* sympool
= layout
->sympool();
2604 const Stringpool
* dynpool
= layout
->dynpool();
2605 Output_symtab_xindex
* symtab_xindex
= layout
->symtab_xindex();
2606 Output_symtab_xindex
* dynsym_xindex
= layout
->dynsym_xindex();
2607 for (unsigned int i
= 0; i
< this->local_symbol_count_
; ++i
)
2609 Local_symbol
& lsym(this->local_symbols_
[i
]);
2612 unsigned int st_shndx
= this->adjust_sym_shndx(i
, lsym
.st_shndx
,
2616 Output_section
* os
= this->ibase_
->output_section(st_shndx
);
2617 st_shndx
= os
->out_shndx();
2618 if (st_shndx
>= elfcpp::SHN_LORESERVE
)
2620 symtab_xindex
->add(this->local_symbol_index_
+ i
, st_shndx
);
2621 if (lsym
.needs_dynsym_entry
)
2622 dynsym_xindex
->add(lsym
.output_dynsym_index
, st_shndx
);
2623 st_shndx
= elfcpp::SHN_XINDEX
;
2627 // Write the symbol to the output symbol table.
2629 elfcpp::Sym_write
<size
, big_endian
> osym(ov
);
2630 osym
.put_st_name(sympool
->get_offset(lsym
.name
));
2631 osym
.put_st_value(lsym
.st_value
);
2632 osym
.put_st_size(lsym
.st_size
);
2633 osym
.put_st_info(elfcpp::STB_LOCAL
,
2634 static_cast<elfcpp::STT
>(lsym
.st_type
));
2635 osym
.put_st_other(0);
2636 osym
.put_st_shndx(st_shndx
);
2640 // Write the symbol to the output dynamic symbol table.
2641 if (lsym
.needs_dynsym_entry
)
2643 gold_assert(dyn_ov
< dyn_oview
+ dyn_output_size
);
2644 elfcpp::Sym_write
<size
, big_endian
> osym(dyn_ov
);
2645 osym
.put_st_name(dynpool
->get_offset(lsym
.name
));
2646 osym
.put_st_value(lsym
.st_value
);
2647 osym
.put_st_size(lsym
.st_size
);
2648 osym
.put_st_info(elfcpp::STB_LOCAL
,
2649 static_cast<elfcpp::STT
>(lsym
.st_type
));
2650 osym
.put_st_other(0);
2651 osym
.put_st_shndx(st_shndx
);
2656 if (output_size
> 0)
2658 gold_assert(ov
- oview
== output_size
);
2659 of
->write_output_view(symtab_off
+ this->local_symbol_offset_
,
2660 output_size
, oview
);
2663 if (dyn_output_size
> 0)
2665 gold_assert(dyn_ov
- dyn_oview
== dyn_output_size
);
2666 of
->write_output_view(this->local_dynsym_offset_
, dyn_output_size
,
2671 // Set the offset of a section.
2673 template<int size
, bool big_endian
>
2675 Sized_relobj_incr
<size
, big_endian
>::do_set_section_offset(unsigned int,
2680 // Class Sized_incr_dynobj. Most of these methods are not used for
2681 // Incremental objects, but are required to be implemented by the
2682 // base class Object.
2684 template<int size
, bool big_endian
>
2685 Sized_incr_dynobj
<size
, big_endian
>::Sized_incr_dynobj(
2686 const std::string
& name
,
2687 Sized_incremental_binary
<size
, big_endian
>* ibase
,
2688 unsigned int input_file_index
)
2689 : Dynobj(name
, NULL
), ibase_(ibase
),
2690 input_file_index_(input_file_index
),
2691 input_reader_(ibase
->inputs_reader().input_file(input_file_index
)),
2692 symbols_(), defined_count_(0)
2694 if (this->input_reader_
.is_in_system_directory())
2695 this->set_is_in_system_directory();
2696 if (this->input_reader_
.as_needed())
2697 this->set_as_needed();
2698 this->set_soname_string(this->input_reader_
.get_soname());
2702 // Read the symbols.
2704 template<int size
, bool big_endian
>
2706 Sized_incr_dynobj
<size
, big_endian
>::do_read_symbols(Read_symbols_data
*)
2711 // Lay out the input sections.
2713 template<int size
, bool big_endian
>
2715 Sized_incr_dynobj
<size
, big_endian
>::do_layout(
2722 // Add the symbols to the symbol table.
2724 template<int size
, bool big_endian
>
2726 Sized_incr_dynobj
<size
, big_endian
>::do_add_symbols(
2727 Symbol_table
* symtab
,
2731 const int sym_size
= elfcpp::Elf_sizes
<size
>::sym_size
;
2732 unsigned char symbuf
[sym_size
];
2733 elfcpp::Sym
<size
, big_endian
> sym(symbuf
);
2734 elfcpp::Sym_write
<size
, big_endian
> osym(symbuf
);
2736 unsigned int nsyms
= this->input_reader_
.get_global_symbol_count();
2737 this->symbols_
.resize(nsyms
);
2739 Incremental_binary::View
symtab_view(NULL
);
2740 unsigned int symtab_count
;
2741 elfcpp::Elf_strtab
strtab(NULL
, 0);
2742 this->ibase_
->get_symtab_view(&symtab_view
, &symtab_count
, &strtab
);
2744 Incremental_symtab_reader
<big_endian
> isymtab(this->ibase_
->symtab_reader());
2745 unsigned int isym_count
= isymtab
.symbol_count();
2746 unsigned int first_global
= symtab_count
- isym_count
;
2748 // We keep a set of symbols that we have generated COPY relocations
2749 // for, indexed by the symbol value. We do not need more than one
2750 // COPY relocation per address.
2751 typedef typename
std::set
<Address
> Copied_symbols
;
2752 Copied_symbols copied_symbols
;
2754 const unsigned char* sym_p
;
2755 for (unsigned int i
= 0; i
< nsyms
; ++i
)
2759 unsigned int output_symndx
=
2760 this->input_reader_
.get_output_symbol_index(i
, &is_def
, &is_copy
);
2761 sym_p
= symtab_view
.data() + output_symndx
* sym_size
;
2762 elfcpp::Sym
<size
, big_endian
> gsym(sym_p
);
2764 if (!strtab
.get_c_string(gsym
.get_st_name(), &name
))
2769 elfcpp::STB st_bind
= gsym
.get_st_bind();
2770 elfcpp::STT st_type
= gsym
.get_st_type();
2772 // Local hidden symbols start out as globals, but get converted to
2773 // to local during output.
2774 if (st_bind
== elfcpp::STB_LOCAL
)
2775 st_bind
= elfcpp::STB_GLOBAL
;
2779 shndx
= elfcpp::SHN_UNDEF
;
2784 // For a symbol defined in a shared object, the section index
2785 // is meaningless, as long as it's not SHN_UNDEF.
2787 v
= gsym
.get_st_value();
2788 ++this->defined_count_
;
2791 osym
.put_st_name(0);
2792 osym
.put_st_value(v
);
2793 osym
.put_st_size(gsym
.get_st_size());
2794 osym
.put_st_info(st_bind
, st_type
);
2795 osym
.put_st_other(gsym
.get_st_other());
2796 osym
.put_st_shndx(shndx
);
2798 Sized_symbol
<size
>* res
=
2799 symtab
->add_from_incrobj
<size
, big_endian
>(this, name
, NULL
, &sym
);
2800 this->symbols_
[i
] = res
;
2801 this->ibase_
->add_global_symbol(output_symndx
- first_global
,
2806 std::pair
<typename
Copied_symbols::iterator
, bool> ins
=
2807 copied_symbols
.insert(v
);
2810 unsigned int shndx
= gsym
.get_st_shndx();
2811 Output_section
* os
= this->ibase_
->output_section(shndx
);
2812 off_t offset
= v
- os
->address();
2813 this->ibase_
->add_copy_reloc(this->symbols_
[i
], os
, offset
);
2819 // Return TRUE if we should include this object from an archive library.
2821 template<int size
, bool big_endian
>
2822 Archive::Should_include
2823 Sized_incr_dynobj
<size
, big_endian
>::do_should_include_member(
2832 // Iterate over global symbols, calling a visitor class V for each.
2834 template<int size
, bool big_endian
>
2836 Sized_incr_dynobj
<size
, big_endian
>::do_for_all_global_symbols(
2838 Library_base::Symbol_visitor_base
*)
2840 // This routine is not used for dynamic libraries.
2843 // Iterate over local symbols, calling a visitor class V for each GOT offset
2844 // associated with a local symbol.
2846 template<int size
, bool big_endian
>
2848 Sized_incr_dynobj
<size
, big_endian
>::do_for_all_local_got_entries(
2849 Got_offset_list::Visitor
*) const
2853 // Get the size of a section.
2855 template<int size
, bool big_endian
>
2857 Sized_incr_dynobj
<size
, big_endian
>::do_section_size(unsigned int)
2862 // Get the name of a section.
2864 template<int size
, bool big_endian
>
2866 Sized_incr_dynobj
<size
, big_endian
>::do_section_name(unsigned int) const
2871 // Return a view of the contents of a section.
2873 template<int size
, bool big_endian
>
2874 const unsigned char*
2875 Sized_incr_dynobj
<size
, big_endian
>::do_section_contents(
2883 // Return section flags.
2885 template<int size
, bool big_endian
>
2887 Sized_incr_dynobj
<size
, big_endian
>::do_section_flags(unsigned int)
2892 // Return section entsize.
2894 template<int size
, bool big_endian
>
2896 Sized_incr_dynobj
<size
, big_endian
>::do_section_entsize(unsigned int)
2901 // Return section address.
2903 template<int size
, bool big_endian
>
2905 Sized_incr_dynobj
<size
, big_endian
>::do_section_address(unsigned int)
2910 // Return section type.
2912 template<int size
, bool big_endian
>
2914 Sized_incr_dynobj
<size
, big_endian
>::do_section_type(unsigned int)
2919 // Return the section link field.
2921 template<int size
, bool big_endian
>
2923 Sized_incr_dynobj
<size
, big_endian
>::do_section_link(unsigned int)
2928 // Return the section link field.
2930 template<int size
, bool big_endian
>
2932 Sized_incr_dynobj
<size
, big_endian
>::do_section_info(unsigned int)
2937 // Return the section alignment.
2939 template<int size
, bool big_endian
>
2941 Sized_incr_dynobj
<size
, big_endian
>::do_section_addralign(unsigned int)
2946 // Return the Xindex structure to use.
2948 template<int size
, bool big_endian
>
2950 Sized_incr_dynobj
<size
, big_endian
>::do_initialize_xindex()
2955 // Get symbol counts.
2957 template<int size
, bool big_endian
>
2959 Sized_incr_dynobj
<size
, big_endian
>::do_get_global_symbol_counts(
2960 const Symbol_table
*,
2964 *defined
= this->defined_count_
;
2966 for (typename
Symbols::const_iterator p
= this->symbols_
.begin();
2967 p
!= this->symbols_
.end();
2970 && (*p
)->source() == Symbol::FROM_OBJECT
2971 && (*p
)->object() == this
2972 && (*p
)->is_defined()
2973 && (*p
)->dynsym_index() != -1U)
2978 // Allocate an incremental object of the appropriate size and endianness.
2981 make_sized_incremental_object(
2982 Incremental_binary
* ibase
,
2983 unsigned int input_file_index
,
2984 Incremental_input_type input_type
,
2985 const Incremental_binary::Input_reader
* input_reader
)
2988 std::string
name(input_reader
->filename());
2990 switch (parameters
->size_and_endianness())
2992 #ifdef HAVE_TARGET_32_LITTLE
2993 case Parameters::TARGET_32_LITTLE
:
2995 Sized_incremental_binary
<32, false>* sized_ibase
=
2996 static_cast<Sized_incremental_binary
<32, false>*>(ibase
);
2997 if (input_type
== INCREMENTAL_INPUT_SHARED_LIBRARY
)
2998 obj
= new Sized_incr_dynobj
<32, false>(name
, sized_ibase
,
3001 obj
= new Sized_relobj_incr
<32, false>(name
, sized_ibase
,
3006 #ifdef HAVE_TARGET_32_BIG
3007 case Parameters::TARGET_32_BIG
:
3009 Sized_incremental_binary
<32, true>* sized_ibase
=
3010 static_cast<Sized_incremental_binary
<32, true>*>(ibase
);
3011 if (input_type
== INCREMENTAL_INPUT_SHARED_LIBRARY
)
3012 obj
= new Sized_incr_dynobj
<32, true>(name
, sized_ibase
,
3015 obj
= new Sized_relobj_incr
<32, true>(name
, sized_ibase
,
3020 #ifdef HAVE_TARGET_64_LITTLE
3021 case Parameters::TARGET_64_LITTLE
:
3023 Sized_incremental_binary
<64, false>* sized_ibase
=
3024 static_cast<Sized_incremental_binary
<64, false>*>(ibase
);
3025 if (input_type
== INCREMENTAL_INPUT_SHARED_LIBRARY
)
3026 obj
= new Sized_incr_dynobj
<64, false>(name
, sized_ibase
,
3029 obj
= new Sized_relobj_incr
<64, false>(name
, sized_ibase
,
3034 #ifdef HAVE_TARGET_64_BIG
3035 case Parameters::TARGET_64_BIG
:
3037 Sized_incremental_binary
<64, true>* sized_ibase
=
3038 static_cast<Sized_incremental_binary
<64, true>*>(ibase
);
3039 if (input_type
== INCREMENTAL_INPUT_SHARED_LIBRARY
)
3040 obj
= new Sized_incr_dynobj
<64, true>(name
, sized_ibase
,
3043 obj
= new Sized_relobj_incr
<64, true>(name
, sized_ibase
,
3052 gold_assert(obj
!= NULL
);
3056 // Copy the unused symbols from the incremental input info.
3057 // We need to do this because we may be overwriting the incremental
3058 // input info in the base file before we write the new incremental
3061 Incremental_library::copy_unused_symbols()
3063 unsigned int symcount
= this->input_reader_
->get_unused_symbol_count();
3064 this->unused_symbols_
.reserve(symcount
);
3065 for (unsigned int i
= 0; i
< symcount
; ++i
)
3067 std::string
name(this->input_reader_
->get_unused_symbol(i
));
3068 this->unused_symbols_
.push_back(name
);
3072 // Iterator for unused global symbols in the library.
3074 Incremental_library::do_for_all_unused_symbols(Symbol_visitor_base
* v
) const
3076 for (Symbol_list::const_iterator p
= this->unused_symbols_
.begin();
3077 p
!= this->unused_symbols_
.end();
3079 v
->visit(p
->c_str());
3082 // Instantiate the templates we need.
3084 #ifdef HAVE_TARGET_32_LITTLE
3086 class Sized_incremental_binary
<32, false>;
3089 class Sized_relobj_incr
<32, false>;
3092 class Sized_incr_dynobj
<32, false>;
3095 #ifdef HAVE_TARGET_32_BIG
3097 class Sized_incremental_binary
<32, true>;
3100 class Sized_relobj_incr
<32, true>;
3103 class Sized_incr_dynobj
<32, true>;
3106 #ifdef HAVE_TARGET_64_LITTLE
3108 class Sized_incremental_binary
<64, false>;
3111 class Sized_relobj_incr
<64, false>;
3114 class Sized_incr_dynobj
<64, false>;
3117 #ifdef HAVE_TARGET_64_BIG
3119 class Sized_incremental_binary
<64, true>;
3122 class Sized_relobj_incr
<64, true>;
3125 class Sized_incr_dynobj
<64, true>;
3128 } // End namespace gold.