1 // inremental.cc -- incremental linking support for gold
3 // Copyright (C) 2009-2023 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
,
860 ehdr
.get_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
, uint64_t)
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
);
1863 // FIXME: the uint64_t addend should be written here if powerpc64
1864 // sym+addend got entries are to be supported, with similar changes
1865 // to Global_got_offset_visitor and support to read them back in
1866 // do_process_got_plt.
1867 // FIXME: don't we need this for section symbol plus addend anyway?
1868 // (See 2015-12-03 commit 7ef8ae7c5f35)
1872 struct Got_plt_view_info
& info_
;
1875 // Functor class for processing a GOT offset list. Writes the GOT type
1876 // and symbol index into the GOT type and descriptor arrays in the output
1879 template<int size
, bool big_endian
>
1880 class Global_got_offset_visitor
: public Got_offset_list::Visitor
1883 Global_got_offset_visitor(struct Got_plt_view_info
& info
)
1888 visit(unsigned int got_type
, unsigned int got_offset
, uint64_t)
1890 unsigned int got_index
= got_offset
/ this->info_
.got_entry_size
;
1891 gold_assert(got_index
< this->info_
.got_count
);
1892 // We can only handle GOT entry types in the range 0..0x7e
1893 // because we use a byte array to store them, and we use the
1894 // high bit to flag a local symbol.
1895 gold_assert(got_type
< 0x7f);
1896 this->info_
.got_type_p
[got_index
] = got_type
;
1897 unsigned char* pov
= this->info_
.got_desc_p
+ got_index
* 8;
1898 elfcpp::Swap
<32, big_endian
>::writeval(pov
, this->info_
.sym_index
);
1899 elfcpp::Swap
<32, big_endian
>::writeval(pov
+ 4, 0);
1903 struct Got_plt_view_info
& info_
;
1906 // Functor class for processing the global symbol table. Processes the
1907 // GOT offset list for the symbol, and writes the symbol table index
1908 // into the PLT descriptor array in the output section.
1910 template<int size
, bool big_endian
>
1911 class Global_symbol_visitor_got_plt
1914 Global_symbol_visitor_got_plt(struct Got_plt_view_info
& info
)
1919 operator()(const Sized_symbol
<size
>* sym
)
1921 typedef Global_got_offset_visitor
<size
, big_endian
> Got_visitor
;
1922 const Got_offset_list
* got_offsets
= sym
->got_offset_list();
1923 if (got_offsets
!= NULL
)
1925 this->info_
.sym_index
= sym
->symtab_index();
1926 this->info_
.input_index
= 0;
1927 Got_visitor
v(this->info_
);
1928 got_offsets
->for_all_got_offsets(&v
);
1930 if (sym
->has_plt_offset())
1932 unsigned int plt_index
=
1933 ((sym
->plt_offset() - this->info_
.first_plt_entry_offset
)
1934 / this->info_
.plt_entry_size
);
1935 gold_assert(plt_index
< this->info_
.plt_count
);
1936 unsigned char* pov
= this->info_
.plt_desc_p
+ plt_index
* 4;
1937 elfcpp::Swap
<32, big_endian
>::writeval(pov
, sym
->symtab_index());
1942 struct Got_plt_view_info
& info_
;
1945 // Write the contents of the .gnu_incremental_got_plt section.
1947 template<int size
, bool big_endian
>
1949 Output_section_incremental_inputs
<size
, big_endian
>::write_got_plt(
1953 Sized_target
<size
, big_endian
>* target
=
1954 parameters
->sized_target
<size
, big_endian
>();
1956 // Set up the view information for the functors.
1957 struct Got_plt_view_info view_info
;
1958 view_info
.got_count
= target
->got_entry_count();
1959 view_info
.plt_count
= target
->plt_entry_count();
1960 view_info
.first_plt_entry_offset
= target
->first_plt_entry_offset();
1961 view_info
.plt_entry_size
= target
->plt_entry_size();
1962 view_info
.got_entry_size
= target
->got_entry_size();
1963 view_info
.got_type_p
= pov
+ 8;
1964 view_info
.got_desc_p
= (view_info
.got_type_p
1965 + ((view_info
.got_count
+ 3) & ~3));
1966 view_info
.plt_desc_p
= view_info
.got_desc_p
+ view_info
.got_count
* 8;
1968 gold_assert(pov
+ view_size
==
1969 view_info
.plt_desc_p
+ view_info
.plt_count
* 4);
1971 // Write the section header.
1972 Swap32::writeval(pov
, view_info
.got_count
);
1973 Swap32::writeval(pov
+ 4, view_info
.plt_count
);
1975 // Initialize the GOT type array to 0xff (reserved).
1976 memset(view_info
.got_type_p
, 0xff, view_info
.got_count
);
1978 // Write the incremental GOT descriptors for local symbols.
1979 typedef Local_got_offset_visitor
<size
, big_endian
> Got_visitor
;
1980 for (Incremental_inputs::Input_list::const_iterator p
=
1981 this->inputs_
->input_files().begin();
1982 p
!= this->inputs_
->input_files().end();
1985 if ((*p
)->type() != INCREMENTAL_INPUT_OBJECT
1986 && (*p
)->type() != INCREMENTAL_INPUT_ARCHIVE_MEMBER
)
1988 Incremental_object_entry
* entry
= (*p
)->object_entry();
1989 gold_assert(entry
!= NULL
);
1990 const Object
* obj
= entry
->object();
1991 gold_assert(obj
!= NULL
);
1992 view_info
.input_index
= (*p
)->get_file_index();
1993 Got_visitor
v(view_info
);
1994 obj
->for_all_local_got_entries(&v
);
1997 // Write the incremental GOT and PLT descriptors for global symbols.
1998 typedef Global_symbol_visitor_got_plt
<size
, big_endian
> Symbol_visitor
;
1999 symtab_
->for_all_symbols
<size
, Symbol_visitor
>(Symbol_visitor(view_info
));
2002 // Class Sized_relobj_incr. Most of these methods are not used for
2003 // Incremental objects, but are required to be implemented by the
2004 // base class Object.
2006 template<int size
, bool big_endian
>
2007 Sized_relobj_incr
<size
, big_endian
>::Sized_relobj_incr(
2008 const std::string
& name
,
2009 Sized_incremental_binary
<size
, big_endian
>* ibase
,
2010 unsigned int input_file_index
)
2011 : Sized_relobj
<size
, big_endian
>(name
, NULL
), ibase_(ibase
),
2012 input_file_index_(input_file_index
),
2013 input_reader_(ibase
->inputs_reader().input_file(input_file_index
)),
2014 local_symbol_count_(0), output_local_dynsym_count_(0),
2015 local_symbol_index_(0), local_symbol_offset_(0), local_dynsym_offset_(0),
2016 symbols_(), defined_count_(0), incr_reloc_offset_(-1U),
2017 incr_reloc_count_(0), incr_reloc_output_index_(0), incr_relocs_(NULL
),
2020 if (this->input_reader_
.is_in_system_directory())
2021 this->set_is_in_system_directory();
2022 const unsigned int shnum
= this->input_reader_
.get_input_section_count() + 1;
2023 this->set_shnum(shnum
);
2024 ibase
->set_input_object(input_file_index
, this);
2027 // Read the symbols.
2029 template<int size
, bool big_endian
>
2031 Sized_relobj_incr
<size
, big_endian
>::do_read_symbols(Read_symbols_data
*)
2036 // Lay out the input sections.
2038 template<int size
, bool big_endian
>
2040 Sized_relobj_incr
<size
, big_endian
>::do_layout(
2045 const unsigned int shnum
= this->shnum();
2046 Incremental_inputs
* incremental_inputs
= layout
->incremental_inputs();
2047 gold_assert(incremental_inputs
!= NULL
);
2048 Output_sections
& out_sections(this->output_sections());
2049 out_sections
.resize(shnum
);
2050 this->section_offsets().resize(shnum
);
2052 // Keep track of .debug_info and .debug_types sections.
2053 std::vector
<unsigned int> debug_info_sections
;
2054 std::vector
<unsigned int> debug_types_sections
;
2056 for (unsigned int i
= 1; i
< shnum
; i
++)
2058 typename
Input_entry_reader::Input_section_info sect
=
2059 this->input_reader_
.get_input_section(i
- 1);
2060 // Add the section to the incremental inputs layout.
2061 incremental_inputs
->report_input_section(this, i
, sect
.name
,
2063 if (sect
.output_shndx
== 0 || sect
.sh_offset
== -1)
2065 Output_section
* os
= this->ibase_
->output_section(sect
.output_shndx
);
2066 gold_assert(os
!= NULL
);
2067 out_sections
[i
] = os
;
2068 this->section_offsets()[i
] = static_cast<Address
>(sect
.sh_offset
);
2070 // When generating a .gdb_index section, we do additional
2071 // processing of .debug_info and .debug_types sections after all
2072 // the other sections.
2073 if (parameters
->options().gdb_index())
2075 const char* name
= os
->name();
2076 if (strcmp(name
, ".debug_info") == 0)
2077 debug_info_sections
.push_back(i
);
2078 else if (strcmp(name
, ".debug_types") == 0)
2079 debug_types_sections
.push_back(i
);
2083 // Process the COMDAT groups.
2084 unsigned int ncomdat
= this->input_reader_
.get_comdat_group_count();
2085 for (unsigned int i
= 0; i
< ncomdat
; i
++)
2087 const char* signature
= this->input_reader_
.get_comdat_group_signature(i
);
2088 if (signature
== NULL
|| signature
[0] == '\0')
2089 this->error(_("COMDAT group has no signature"));
2090 bool keep
= layout
->find_or_add_kept_section(signature
, this, i
, true,
2093 incremental_inputs
->report_comdat_group(this, signature
);
2095 this->error(_("COMDAT group %s included twice in incremental link"),
2099 // When building a .gdb_index section, scan the .debug_info and
2100 // .debug_types sections.
2101 for (std::vector
<unsigned int>::const_iterator p
2102 = debug_info_sections
.begin();
2103 p
!= debug_info_sections
.end();
2106 unsigned int i
= *p
;
2107 layout
->add_to_gdb_index(false, this, NULL
, 0, i
, 0, 0);
2109 for (std::vector
<unsigned int>::const_iterator p
2110 = debug_types_sections
.begin();
2111 p
!= debug_types_sections
.end();
2114 unsigned int i
= *p
;
2115 layout
->add_to_gdb_index(true, this, 0, 0, i
, 0, 0);
2119 // Layout sections whose layout was deferred while waiting for
2120 // input files from a plugin.
2121 template<int size
, bool big_endian
>
2123 Sized_relobj_incr
<size
, big_endian
>::do_layout_deferred_sections(Layout
*)
2127 // Add the symbols to the symbol table.
2129 template<int size
, bool big_endian
>
2131 Sized_relobj_incr
<size
, big_endian
>::do_add_symbols(
2132 Symbol_table
* symtab
,
2136 const int sym_size
= elfcpp::Elf_sizes
<size
>::sym_size
;
2137 unsigned char symbuf
[sym_size
];
2138 elfcpp::Sym_write
<size
, big_endian
> osym(symbuf
);
2140 typedef typename
elfcpp::Elf_types
<size
>::Elf_WXword Elf_size_type
;
2142 unsigned int nsyms
= this->input_reader_
.get_global_symbol_count();
2143 this->symbols_
.resize(nsyms
);
2145 Incremental_binary::View
symtab_view(NULL
);
2146 unsigned int symtab_count
;
2147 elfcpp::Elf_strtab
strtab(NULL
, 0);
2148 this->ibase_
->get_symtab_view(&symtab_view
, &symtab_count
, &strtab
);
2150 Incremental_symtab_reader
<big_endian
> isymtab(this->ibase_
->symtab_reader());
2151 unsigned int isym_count
= isymtab
.symbol_count();
2152 unsigned int first_global
= symtab_count
- isym_count
;
2154 const unsigned char* sym_p
;
2155 for (unsigned int i
= 0; i
< nsyms
; ++i
)
2157 Incremental_global_symbol_reader
<big_endian
> info
=
2158 this->input_reader_
.get_global_symbol_reader(i
);
2159 unsigned int output_symndx
= info
.output_symndx();
2160 sym_p
= symtab_view
.data() + output_symndx
* sym_size
;
2161 elfcpp::Sym
<size
, big_endian
> gsym(sym_p
);
2163 if (!strtab
.get_c_string(gsym
.get_st_name(), &name
))
2166 typename
elfcpp::Elf_types
<size
>::Elf_Addr v
= gsym
.get_st_value();
2167 unsigned int shndx
= gsym
.get_st_shndx();
2168 elfcpp::STB st_bind
= gsym
.get_st_bind();
2169 elfcpp::STT st_type
= gsym
.get_st_type();
2171 // Local hidden symbols start out as globals, but get converted to
2172 // to local during output.
2173 if (st_bind
== elfcpp::STB_LOCAL
)
2174 st_bind
= elfcpp::STB_GLOBAL
;
2176 unsigned int input_shndx
= info
.shndx();
2177 if (input_shndx
== 0 || input_shndx
== -1U)
2179 shndx
= elfcpp::SHN_UNDEF
;
2182 else if (shndx
!= elfcpp::SHN_ABS
)
2184 // Find the input section and calculate the section-relative value.
2185 gold_assert(shndx
!= elfcpp::SHN_UNDEF
);
2186 Output_section
* os
= this->ibase_
->output_section(shndx
);
2187 gold_assert(os
!= NULL
&& os
->has_fixed_layout());
2188 typename
Input_entry_reader::Input_section_info sect
=
2189 this->input_reader_
.get_input_section(input_shndx
- 1);
2190 gold_assert(sect
.output_shndx
== shndx
);
2191 if (st_type
!= elfcpp::STT_TLS
)
2193 v
-= sect
.sh_offset
;
2194 shndx
= input_shndx
;
2197 osym
.put_st_name(0);
2198 osym
.put_st_value(v
);
2199 osym
.put_st_size(gsym
.get_st_size());
2200 osym
.put_st_info(st_bind
, st_type
);
2201 osym
.put_st_other(gsym
.get_st_other());
2202 osym
.put_st_shndx(shndx
);
2204 elfcpp::Sym
<size
, big_endian
> sym(symbuf
);
2205 Symbol
* res
= symtab
->add_from_incrobj(this, name
, NULL
, &sym
);
2207 if (shndx
!= elfcpp::SHN_UNDEF
)
2208 ++this->defined_count_
;
2210 // If this is a linker-defined symbol that hasn't yet been defined,
2212 if (input_shndx
== -1U && !res
->is_defined())
2214 shndx
= gsym
.get_st_shndx();
2215 v
= gsym
.get_st_value();
2216 Elf_size_type symsize
= gsym
.get_st_size();
2217 if (shndx
== elfcpp::SHN_ABS
)
2219 symtab
->define_as_constant(name
, NULL
,
2220 Symbol_table::INCREMENTAL_BASE
,
2221 v
, symsize
, st_type
, st_bind
,
2222 gsym
.get_st_visibility(), 0,
2227 Output_section
* os
= this->ibase_
->output_section(shndx
);
2228 gold_assert(os
!= NULL
&& os
->has_fixed_layout());
2231 os
->reserve(v
, symsize
);
2232 symtab
->define_in_output_data(name
, NULL
,
2233 Symbol_table::INCREMENTAL_BASE
,
2234 os
, v
, symsize
, st_type
, st_bind
,
2235 gsym
.get_st_visibility(), 0,
2240 this->symbols_
[i
] = res
;
2241 this->ibase_
->add_global_symbol(output_symndx
- first_global
, res
);
2245 // Return TRUE if we should include this object from an archive library.
2247 template<int size
, bool big_endian
>
2248 Archive::Should_include
2249 Sized_relobj_incr
<size
, big_endian
>::do_should_include_member(
2258 // Iterate over global symbols, calling a visitor class V for each.
2260 template<int size
, bool big_endian
>
2262 Sized_relobj_incr
<size
, big_endian
>::do_for_all_global_symbols(
2264 Library_base::Symbol_visitor_base
*)
2266 // This routine is not used for incremental objects.
2269 // Get the size of a section.
2271 template<int size
, bool big_endian
>
2273 Sized_relobj_incr
<size
, big_endian
>::do_section_size(unsigned int)
2278 // Get the name of a section. This returns the name of the output
2279 // section, because we don't usually track the names of the input
2282 template<int size
, bool big_endian
>
2284 Sized_relobj_incr
<size
, big_endian
>::do_section_name(unsigned int shndx
) const
2286 const Output_sections
& out_sections(this->output_sections());
2287 const Output_section
* os
= out_sections
[shndx
];
2289 return std::string();
2293 // Return a view of the contents of a section.
2295 template<int size
, bool big_endian
>
2296 const unsigned char*
2297 Sized_relobj_incr
<size
, big_endian
>::do_section_contents(
2299 section_size_type
* plen
,
2302 Output_sections
& out_sections(this->output_sections());
2303 Output_section
* os
= out_sections
[shndx
];
2304 gold_assert(os
!= NULL
);
2305 off_t section_offset
= os
->offset();
2306 typename
Input_entry_reader::Input_section_info sect
=
2307 this->input_reader_
.get_input_section(shndx
- 1);
2308 section_offset
+= sect
.sh_offset
;
2309 *plen
= sect
.sh_size
;
2310 return this->ibase_
->view(section_offset
, sect
.sh_size
).data();
2313 // Return section flags.
2315 template<int size
, bool big_endian
>
2317 Sized_relobj_incr
<size
, big_endian
>::do_section_flags(unsigned int)
2322 // Return section entsize.
2324 template<int size
, bool big_endian
>
2326 Sized_relobj_incr
<size
, big_endian
>::do_section_entsize(unsigned int)
2331 // Return section address.
2333 template<int size
, bool big_endian
>
2335 Sized_relobj_incr
<size
, big_endian
>::do_section_address(unsigned int)
2340 // Return section type.
2342 template<int size
, bool big_endian
>
2344 Sized_relobj_incr
<size
, big_endian
>::do_section_type(unsigned int)
2349 // Return the section link field.
2351 template<int size
, bool big_endian
>
2353 Sized_relobj_incr
<size
, big_endian
>::do_section_link(unsigned int)
2358 // Return the section link field.
2360 template<int size
, bool big_endian
>
2362 Sized_relobj_incr
<size
, big_endian
>::do_section_info(unsigned int)
2367 // Return the section alignment.
2369 template<int size
, bool big_endian
>
2371 Sized_relobj_incr
<size
, big_endian
>::do_section_addralign(unsigned int)
2376 // Return the Xindex structure to use.
2378 template<int size
, bool big_endian
>
2380 Sized_relobj_incr
<size
, big_endian
>::do_initialize_xindex()
2385 // Get symbol counts.
2387 template<int size
, bool big_endian
>
2389 Sized_relobj_incr
<size
, big_endian
>::do_get_global_symbol_counts(
2390 const Symbol_table
*,
2394 *defined
= this->defined_count_
;
2396 for (typename
Symbols::const_iterator p
= this->symbols_
.begin();
2397 p
!= this->symbols_
.end();
2400 && (*p
)->source() == Symbol::FROM_OBJECT
2401 && (*p
)->object() == this
2402 && (*p
)->is_defined())
2409 template<int size
, bool big_endian
>
2411 Sized_relobj_incr
<size
, big_endian
>::do_read_relocs(Read_relocs_data
*)
2415 // Process the relocs to find list of referenced sections. Used only
2416 // during garbage collection.
2418 template<int size
, bool big_endian
>
2420 Sized_relobj_incr
<size
, big_endian
>::do_gc_process_relocs(Symbol_table
*,
2427 // Scan the relocs and adjust the symbol table.
2429 template<int size
, bool big_endian
>
2431 Sized_relobj_incr
<size
, big_endian
>::do_scan_relocs(Symbol_table
*,
2435 // Count the incremental relocations for this object.
2436 unsigned int nsyms
= this->input_reader_
.get_global_symbol_count();
2437 this->allocate_incremental_reloc_counts();
2438 for (unsigned int i
= 0; i
< nsyms
; i
++)
2440 Incremental_global_symbol_reader
<big_endian
> sym
=
2441 this->input_reader_
.get_global_symbol_reader(i
);
2442 unsigned int reloc_count
= sym
.reloc_count();
2443 if (reloc_count
> 0 && this->incr_reloc_offset_
== -1U)
2444 this->incr_reloc_offset_
= sym
.reloc_offset();
2445 this->incr_reloc_count_
+= reloc_count
;
2446 for (unsigned int j
= 0; j
< reloc_count
; j
++)
2447 this->count_incremental_reloc(i
);
2449 this->incr_reloc_output_index_
=
2450 layout
->incremental_inputs()->get_reloc_count();
2451 this->finalize_incremental_relocs(layout
, false);
2453 // The incoming incremental relocations may not end up in the same
2454 // location after the incremental update, because the incremental info
2455 // is regenerated in each link. Because the new location may overlap
2456 // with other data in the updated output file, we need to copy the
2457 // relocations into a buffer so that we can still read them safely
2458 // after we start writing updates to the output file.
2459 if (this->incr_reloc_count_
> 0)
2461 const Incremental_relocs_reader
<size
, big_endian
>& relocs_reader
=
2462 this->ibase_
->relocs_reader();
2463 const unsigned int incr_reloc_size
= relocs_reader
.reloc_size
;
2464 unsigned int len
= this->incr_reloc_count_
* incr_reloc_size
;
2465 this->incr_relocs_
= new unsigned char[len
];
2466 memcpy(this->incr_relocs_
,
2467 relocs_reader
.data(this->incr_reloc_offset_
),
2472 // Count the local symbols.
2474 template<int size
, bool big_endian
>
2476 Sized_relobj_incr
<size
, big_endian
>::do_count_local_symbols(
2477 Stringpool_template
<char>* pool
,
2478 Stringpool_template
<char>*)
2480 const int sym_size
= elfcpp::Elf_sizes
<size
>::sym_size
;
2482 // Set the count of local symbols based on the incremental info.
2483 unsigned int nlocals
= this->input_reader_
.get_local_symbol_count();
2484 this->local_symbol_count_
= nlocals
;
2485 this->local_symbols_
.reserve(nlocals
);
2487 // Get views of the base file's symbol table and string table.
2488 Incremental_binary::View
symtab_view(NULL
);
2489 unsigned int symtab_count
;
2490 elfcpp::Elf_strtab
strtab(NULL
, 0);
2491 this->ibase_
->get_symtab_view(&symtab_view
, &symtab_count
, &strtab
);
2493 // Read the local symbols from the base file's symbol table.
2494 off_t off
= this->input_reader_
.get_local_symbol_offset();
2495 const unsigned char* symp
= symtab_view
.data() + off
;
2496 for (unsigned int i
= 0; i
< nlocals
; ++i
, symp
+= sym_size
)
2498 elfcpp::Sym
<size
, big_endian
> sym(symp
);
2500 if (!strtab
.get_c_string(sym
.get_st_name(), &name
))
2502 gold_debug(DEBUG_INCREMENTAL
, "Local symbol %d: %s", i
, name
);
2503 name
= pool
->add(name
, true, NULL
);
2504 this->local_symbols_
.push_back(Local_symbol(name
,
2513 // Finalize the local symbols.
2515 template<int size
, bool big_endian
>
2517 Sized_relobj_incr
<size
, big_endian
>::do_finalize_local_symbols(
2522 this->local_symbol_index_
= index
;
2523 this->local_symbol_offset_
= off
;
2524 return index
+ this->local_symbol_count_
;
2527 // Set the offset where local dynamic symbol information will be stored.
2529 template<int size
, bool big_endian
>
2531 Sized_relobj_incr
<size
, big_endian
>::do_set_local_dynsym_indexes(
2534 // FIXME: set local dynsym indexes.
2538 // Set the offset where local dynamic symbol information will be stored.
2540 template<int size
, bool big_endian
>
2542 Sized_relobj_incr
<size
, big_endian
>::do_set_local_dynsym_offset(off_t
)
2547 // Relocate the input sections and write out the local symbols.
2548 // We don't actually do any relocation here. For unchanged input files,
2549 // we reapply relocations only for symbols that have changed; that happens
2550 // in Layout_task_runner::run(). We do need to rewrite the incremental
2551 // relocations for this object.
2553 template<int size
, bool big_endian
>
2555 Sized_relobj_incr
<size
, big_endian
>::do_relocate(const Symbol_table
*,
2556 const Layout
* layout
,
2559 if (this->incr_reloc_count_
== 0)
2562 const unsigned int incr_reloc_size
=
2563 Incremental_relocs_reader
<size
, big_endian
>::reloc_size
;
2565 // Get a view for the .gnu_incremental_relocs section.
2566 Incremental_inputs
* inputs
= layout
->incremental_inputs();
2567 gold_assert(inputs
!= NULL
);
2568 const off_t relocs_off
= inputs
->relocs_section()->offset();
2569 const off_t relocs_size
= inputs
->relocs_section()->data_size();
2570 unsigned char* const view
= of
->get_output_view(relocs_off
, relocs_size
);
2572 // Copy the relocations from the buffer.
2573 off_t off
= this->incr_reloc_output_index_
* incr_reloc_size
;
2574 unsigned int len
= this->incr_reloc_count_
* incr_reloc_size
;
2575 memcpy(view
+ off
, this->incr_relocs_
, len
);
2577 // The output section table may have changed, so we need to map
2578 // the old section index to the new section index for each relocation.
2579 for (unsigned int i
= 0; i
< this->incr_reloc_count_
; ++i
)
2581 unsigned char* pov
= view
+ off
+ i
* incr_reloc_size
;
2582 unsigned int shndx
= elfcpp::Swap
<32, big_endian
>::readval(pov
+ 4);
2583 Output_section
* os
= this->ibase_
->output_section(shndx
);
2584 gold_assert(os
!= NULL
);
2585 shndx
= os
->out_shndx();
2586 elfcpp::Swap
<32, big_endian
>::writeval(pov
+ 4, shndx
);
2589 of
->write_output_view(off
, len
, view
);
2591 // Get views into the output file for the portions of the symbol table
2592 // and the dynamic symbol table that we will be writing.
2593 off_t symtab_off
= layout
->symtab_section()->offset();
2594 off_t output_size
= this->local_symbol_count_
* This::sym_size
;
2595 unsigned char* oview
= NULL
;
2596 if (output_size
> 0)
2597 oview
= of
->get_output_view(symtab_off
+ this->local_symbol_offset_
,
2600 off_t dyn_output_size
= this->output_local_dynsym_count_
* sym_size
;
2601 unsigned char* dyn_oview
= NULL
;
2602 if (dyn_output_size
> 0)
2603 dyn_oview
= of
->get_output_view(this->local_dynsym_offset_
,
2606 // Write the local symbols.
2607 unsigned char* ov
= oview
;
2608 unsigned char* dyn_ov
= dyn_oview
;
2609 const Stringpool
* sympool
= layout
->sympool();
2610 const Stringpool
* dynpool
= layout
->dynpool();
2611 Output_symtab_xindex
* symtab_xindex
= layout
->symtab_xindex();
2612 Output_symtab_xindex
* dynsym_xindex
= layout
->dynsym_xindex();
2613 for (unsigned int i
= 0; i
< this->local_symbol_count_
; ++i
)
2615 Local_symbol
& lsym(this->local_symbols_
[i
]);
2618 unsigned int st_shndx
= this->adjust_sym_shndx(i
, lsym
.st_shndx
,
2622 Output_section
* os
= this->ibase_
->output_section(st_shndx
);
2623 st_shndx
= os
->out_shndx();
2624 if (st_shndx
>= elfcpp::SHN_LORESERVE
)
2626 symtab_xindex
->add(this->local_symbol_index_
+ i
, st_shndx
);
2627 if (lsym
.needs_dynsym_entry
)
2628 dynsym_xindex
->add(lsym
.output_dynsym_index
, st_shndx
);
2629 st_shndx
= elfcpp::SHN_XINDEX
;
2633 // Write the symbol to the output symbol table.
2635 elfcpp::Sym_write
<size
, big_endian
> osym(ov
);
2636 osym
.put_st_name(sympool
->get_offset(lsym
.name
));
2637 osym
.put_st_value(lsym
.st_value
);
2638 osym
.put_st_size(lsym
.st_size
);
2639 osym
.put_st_info(elfcpp::STB_LOCAL
,
2640 static_cast<elfcpp::STT
>(lsym
.st_type
));
2641 osym
.put_st_other(0);
2642 osym
.put_st_shndx(st_shndx
);
2646 // Write the symbol to the output dynamic symbol table.
2647 if (lsym
.needs_dynsym_entry
)
2649 gold_assert(dyn_ov
< dyn_oview
+ dyn_output_size
);
2650 elfcpp::Sym_write
<size
, big_endian
> osym(dyn_ov
);
2651 osym
.put_st_name(dynpool
->get_offset(lsym
.name
));
2652 osym
.put_st_value(lsym
.st_value
);
2653 osym
.put_st_size(lsym
.st_size
);
2654 osym
.put_st_info(elfcpp::STB_LOCAL
,
2655 static_cast<elfcpp::STT
>(lsym
.st_type
));
2656 osym
.put_st_other(0);
2657 osym
.put_st_shndx(st_shndx
);
2662 if (output_size
> 0)
2664 gold_assert(ov
- oview
== output_size
);
2665 of
->write_output_view(symtab_off
+ this->local_symbol_offset_
,
2666 output_size
, oview
);
2669 if (dyn_output_size
> 0)
2671 gold_assert(dyn_ov
- dyn_oview
== dyn_output_size
);
2672 of
->write_output_view(this->local_dynsym_offset_
, dyn_output_size
,
2677 // Set the offset of a section.
2679 template<int size
, bool big_endian
>
2681 Sized_relobj_incr
<size
, big_endian
>::do_set_section_offset(unsigned int,
2686 // Class Sized_incr_dynobj. Most of these methods are not used for
2687 // Incremental objects, but are required to be implemented by the
2688 // base class Object.
2690 template<int size
, bool big_endian
>
2691 Sized_incr_dynobj
<size
, big_endian
>::Sized_incr_dynobj(
2692 const std::string
& name
,
2693 Sized_incremental_binary
<size
, big_endian
>* ibase
,
2694 unsigned int input_file_index
)
2695 : Dynobj(name
, NULL
), ibase_(ibase
),
2696 input_file_index_(input_file_index
),
2697 input_reader_(ibase
->inputs_reader().input_file(input_file_index
)),
2698 symbols_(), defined_count_(0)
2700 if (this->input_reader_
.is_in_system_directory())
2701 this->set_is_in_system_directory();
2702 if (this->input_reader_
.as_needed())
2703 this->set_as_needed();
2704 this->set_soname_string(this->input_reader_
.get_soname());
2708 // Read the symbols.
2710 template<int size
, bool big_endian
>
2712 Sized_incr_dynobj
<size
, big_endian
>::do_read_symbols(Read_symbols_data
*)
2717 // Lay out the input sections.
2719 template<int size
, bool big_endian
>
2721 Sized_incr_dynobj
<size
, big_endian
>::do_layout(
2728 // Add the symbols to the symbol table.
2730 template<int size
, bool big_endian
>
2732 Sized_incr_dynobj
<size
, big_endian
>::do_add_symbols(
2733 Symbol_table
* symtab
,
2737 const int sym_size
= elfcpp::Elf_sizes
<size
>::sym_size
;
2738 unsigned char symbuf
[sym_size
];
2739 elfcpp::Sym_write
<size
, big_endian
> osym(symbuf
);
2741 unsigned int nsyms
= this->input_reader_
.get_global_symbol_count();
2742 this->symbols_
.resize(nsyms
);
2744 Incremental_binary::View
symtab_view(NULL
);
2745 unsigned int symtab_count
;
2746 elfcpp::Elf_strtab
strtab(NULL
, 0);
2747 this->ibase_
->get_symtab_view(&symtab_view
, &symtab_count
, &strtab
);
2749 Incremental_symtab_reader
<big_endian
> isymtab(this->ibase_
->symtab_reader());
2750 unsigned int isym_count
= isymtab
.symbol_count();
2751 unsigned int first_global
= symtab_count
- isym_count
;
2753 // We keep a set of symbols that we have generated COPY relocations
2754 // for, indexed by the symbol value. We do not need more than one
2755 // COPY relocation per address.
2756 typedef typename
std::set
<Address
> Copied_symbols
;
2757 Copied_symbols copied_symbols
;
2759 const unsigned char* sym_p
;
2760 for (unsigned int i
= 0; i
< nsyms
; ++i
)
2764 unsigned int output_symndx
=
2765 this->input_reader_
.get_output_symbol_index(i
, &is_def
, &is_copy
);
2766 sym_p
= symtab_view
.data() + output_symndx
* sym_size
;
2767 elfcpp::Sym
<size
, big_endian
> gsym(sym_p
);
2769 if (!strtab
.get_c_string(gsym
.get_st_name(), &name
))
2774 elfcpp::STB st_bind
= gsym
.get_st_bind();
2775 elfcpp::STT st_type
= gsym
.get_st_type();
2777 // Local hidden symbols start out as globals, but get converted to
2778 // to local during output.
2779 if (st_bind
== elfcpp::STB_LOCAL
)
2780 st_bind
= elfcpp::STB_GLOBAL
;
2784 shndx
= elfcpp::SHN_UNDEF
;
2789 // For a symbol defined in a shared object, the section index
2790 // is meaningless, as long as it's not SHN_UNDEF.
2792 v
= gsym
.get_st_value();
2793 ++this->defined_count_
;
2796 osym
.put_st_name(0);
2797 osym
.put_st_value(v
);
2798 osym
.put_st_size(gsym
.get_st_size());
2799 osym
.put_st_info(st_bind
, st_type
);
2800 osym
.put_st_other(gsym
.get_st_other());
2801 osym
.put_st_shndx(shndx
);
2803 elfcpp::Sym
<size
, big_endian
> sym(symbuf
);
2804 Sized_symbol
<size
>* res
=
2805 symtab
->add_from_incrobj
<size
, big_endian
>(this, name
, NULL
, &sym
);
2806 this->symbols_
[i
] = res
;
2807 this->ibase_
->add_global_symbol(output_symndx
- first_global
,
2812 std::pair
<typename
Copied_symbols::iterator
, bool> ins
=
2813 copied_symbols
.insert(v
);
2816 unsigned int shndx
= gsym
.get_st_shndx();
2817 Output_section
* os
= this->ibase_
->output_section(shndx
);
2818 off_t offset
= v
- os
->address();
2819 this->ibase_
->add_copy_reloc(this->symbols_
[i
], os
, offset
);
2825 // Return TRUE if we should include this object from an archive library.
2827 template<int size
, bool big_endian
>
2828 Archive::Should_include
2829 Sized_incr_dynobj
<size
, big_endian
>::do_should_include_member(
2838 // Iterate over global symbols, calling a visitor class V for each.
2840 template<int size
, bool big_endian
>
2842 Sized_incr_dynobj
<size
, big_endian
>::do_for_all_global_symbols(
2844 Library_base::Symbol_visitor_base
*)
2846 // This routine is not used for dynamic libraries.
2849 // Iterate over local symbols, calling a visitor class V for each GOT offset
2850 // associated with a local symbol.
2852 template<int size
, bool big_endian
>
2854 Sized_incr_dynobj
<size
, big_endian
>::do_for_all_local_got_entries(
2855 Got_offset_list::Visitor
*) const
2859 // Get the size of a section.
2861 template<int size
, bool big_endian
>
2863 Sized_incr_dynobj
<size
, big_endian
>::do_section_size(unsigned int)
2868 // Get the name of a section.
2870 template<int size
, bool big_endian
>
2872 Sized_incr_dynobj
<size
, big_endian
>::do_section_name(unsigned int) const
2877 // Return a view of the contents of a section.
2879 template<int size
, bool big_endian
>
2880 const unsigned char*
2881 Sized_incr_dynobj
<size
, big_endian
>::do_section_contents(
2889 // Return section flags.
2891 template<int size
, bool big_endian
>
2893 Sized_incr_dynobj
<size
, big_endian
>::do_section_flags(unsigned int)
2898 // Return section entsize.
2900 template<int size
, bool big_endian
>
2902 Sized_incr_dynobj
<size
, big_endian
>::do_section_entsize(unsigned int)
2907 // Return section address.
2909 template<int size
, bool big_endian
>
2911 Sized_incr_dynobj
<size
, big_endian
>::do_section_address(unsigned int)
2916 // Return section type.
2918 template<int size
, bool big_endian
>
2920 Sized_incr_dynobj
<size
, big_endian
>::do_section_type(unsigned int)
2925 // Return the section link field.
2927 template<int size
, bool big_endian
>
2929 Sized_incr_dynobj
<size
, big_endian
>::do_section_link(unsigned int)
2934 // Return the section link field.
2936 template<int size
, bool big_endian
>
2938 Sized_incr_dynobj
<size
, big_endian
>::do_section_info(unsigned int)
2943 // Return the section alignment.
2945 template<int size
, bool big_endian
>
2947 Sized_incr_dynobj
<size
, big_endian
>::do_section_addralign(unsigned int)
2952 // Return the Xindex structure to use.
2954 template<int size
, bool big_endian
>
2956 Sized_incr_dynobj
<size
, big_endian
>::do_initialize_xindex()
2961 // Get symbol counts.
2963 template<int size
, bool big_endian
>
2965 Sized_incr_dynobj
<size
, big_endian
>::do_get_global_symbol_counts(
2966 const Symbol_table
*,
2970 *defined
= this->defined_count_
;
2972 for (typename
Symbols::const_iterator p
= this->symbols_
.begin();
2973 p
!= this->symbols_
.end();
2976 && (*p
)->source() == Symbol::FROM_OBJECT
2977 && (*p
)->object() == this
2978 && (*p
)->is_defined()
2979 && (*p
)->dynsym_index() != -1U)
2984 // Allocate an incremental object of the appropriate size and endianness.
2987 make_sized_incremental_object(
2988 Incremental_binary
* ibase
,
2989 unsigned int input_file_index
,
2990 Incremental_input_type input_type
,
2991 const Incremental_binary::Input_reader
* input_reader
)
2994 std::string
name(input_reader
->filename());
2996 switch (parameters
->size_and_endianness())
2998 #ifdef HAVE_TARGET_32_LITTLE
2999 case Parameters::TARGET_32_LITTLE
:
3001 Sized_incremental_binary
<32, false>* sized_ibase
=
3002 static_cast<Sized_incremental_binary
<32, false>*>(ibase
);
3003 if (input_type
== INCREMENTAL_INPUT_SHARED_LIBRARY
)
3004 obj
= new Sized_incr_dynobj
<32, false>(name
, sized_ibase
,
3007 obj
= new Sized_relobj_incr
<32, false>(name
, sized_ibase
,
3012 #ifdef HAVE_TARGET_32_BIG
3013 case Parameters::TARGET_32_BIG
:
3015 Sized_incremental_binary
<32, true>* sized_ibase
=
3016 static_cast<Sized_incremental_binary
<32, true>*>(ibase
);
3017 if (input_type
== INCREMENTAL_INPUT_SHARED_LIBRARY
)
3018 obj
= new Sized_incr_dynobj
<32, true>(name
, sized_ibase
,
3021 obj
= new Sized_relobj_incr
<32, true>(name
, sized_ibase
,
3026 #ifdef HAVE_TARGET_64_LITTLE
3027 case Parameters::TARGET_64_LITTLE
:
3029 Sized_incremental_binary
<64, false>* sized_ibase
=
3030 static_cast<Sized_incremental_binary
<64, false>*>(ibase
);
3031 if (input_type
== INCREMENTAL_INPUT_SHARED_LIBRARY
)
3032 obj
= new Sized_incr_dynobj
<64, false>(name
, sized_ibase
,
3035 obj
= new Sized_relobj_incr
<64, false>(name
, sized_ibase
,
3040 #ifdef HAVE_TARGET_64_BIG
3041 case Parameters::TARGET_64_BIG
:
3043 Sized_incremental_binary
<64, true>* sized_ibase
=
3044 static_cast<Sized_incremental_binary
<64, true>*>(ibase
);
3045 if (input_type
== INCREMENTAL_INPUT_SHARED_LIBRARY
)
3046 obj
= new Sized_incr_dynobj
<64, true>(name
, sized_ibase
,
3049 obj
= new Sized_relobj_incr
<64, true>(name
, sized_ibase
,
3058 gold_assert(obj
!= NULL
);
3062 // Copy the unused symbols from the incremental input info.
3063 // We need to do this because we may be overwriting the incremental
3064 // input info in the base file before we write the new incremental
3067 Incremental_library::copy_unused_symbols()
3069 unsigned int symcount
= this->input_reader_
->get_unused_symbol_count();
3070 this->unused_symbols_
.reserve(symcount
);
3071 for (unsigned int i
= 0; i
< symcount
; ++i
)
3073 std::string
name(this->input_reader_
->get_unused_symbol(i
));
3074 this->unused_symbols_
.push_back(name
);
3078 // Iterator for unused global symbols in the library.
3080 Incremental_library::do_for_all_unused_symbols(Symbol_visitor_base
* v
) const
3082 for (Symbol_list::const_iterator p
= this->unused_symbols_
.begin();
3083 p
!= this->unused_symbols_
.end();
3085 v
->visit(p
->c_str());
3088 // Instantiate the templates we need.
3090 #ifdef HAVE_TARGET_32_LITTLE
3092 class Sized_incremental_binary
<32, false>;
3095 class Sized_relobj_incr
<32, false>;
3098 class Sized_incr_dynobj
<32, false>;
3101 #ifdef HAVE_TARGET_32_BIG
3103 class Sized_incremental_binary
<32, true>;
3106 class Sized_relobj_incr
<32, true>;
3109 class Sized_incr_dynobj
<32, true>;
3112 #ifdef HAVE_TARGET_64_LITTLE
3114 class Sized_incremental_binary
<64, false>;
3117 class Sized_relobj_incr
<64, false>;
3120 class Sized_incr_dynobj
<64, false>;
3123 #ifdef HAVE_TARGET_64_BIG
3125 class Sized_incremental_binary
<64, true>;
3128 class Sized_relobj_incr
<64, true>;
3131 class Sized_incr_dynobj
<64, true>;
3134 } // End namespace gold.