Modify gold testsuite to disable plugins added by GCC driver.
[external/binutils.git] / gold / ChangeLog
1 2014-04-02  Cary Coutant  <ccoutant@google.com>
2
3         * configure.ac (HAVE_PUBNAMES): Use C instead of C++.
4         (HAVE_NO_USE_LINKER_PLUGIN): Check for -fno-use-linker-plugin.
5         * configure: Regenerate.
6         * testsuite/Makefile.am (OPT_NO_PLUGINS): New macro for
7         -fno-use-linker-plugin.
8         (LINK1, CXXLINK1): Add it to the link command.
9         * testsuite/Makefile.in: Regenerate.
10
11 2014-03-12  Alan Modra  <amodra@gmail.com>
12
13         * Makefile.in: Regenerate.
14
15 2014-03-10  Sasa Stankovic  <Sasa.Stankovic@imgtec.com>
16
17         * symtab.h (Symbol::set_nonvis): New function.
18
19 2014-03-10  Sasa Stankovic  <Sasa.Stankovic@imgtec.com>
20
21         * symtab.cc (Sized_symbol<32>::init_output_data):
22         Instantiate the template.
23         (Sized_symbol<64>::init_output_data): Likewise.
24
25 2014-03-10  Sasa Stankovic  <Sasa.Stankovic@imgtec.com>
26
27         * symtab.cc (Symbol_table::sized_write_globals): Allow a target to
28         adjust dynamic symbol value.
29         * target.h (Target::adjust_dyn_symbol): New function.
30         (Target::do_adjust_dyn_symbol): New function.
31
32 2014-03-10  Sasa Stankovic  <Sasa.Stankovic@imgtec.com>
33   
34         * output.cc (Output_data_dynamic::Dynamic_entry::write):
35         Get the value of DYNAMIC_CUSTOM dynamic entry.
36         * output.h (Output_data_dynamic::add_custom): New function.
37         (Dynamic_entry::Dynamic_entry): New constructor for DYNAMIC_CUSTOM
38         dynamic entry.
39         (enum Dynamic_entry::Classification): Add DYNAMIC_CUSTOM.
40         * target.h (Target::dynamic_tag_custom_value): New function.
41         (Target::do_dynamic_tag_custom_value): New function.
42
43 2014-03-10  Sasa Stankovic  <Sasa.Stankovic@imgtec.com>
44
45         * symtab.cc (Symbol_table::set_dynsym_indexes): Allow a target to set
46         dynsym indexes.
47         * target.h (Target::has_custom_set_dynsym_indexes): New function.
48         (Target::do_has_custom_set_dynsym_indexes): New function.
49         (Target::set_dynsym_indexes): New function.
50         (Target::do_set_dynsym_indexes): New function.
51
52 2014-03-07  Alan Modra  <amodra@gmail.com>
53
54         * powerpc.cc (Powerpc_relocate_functions::Overflow_check): Add
55         CHECK_UNSIGNED, CHECK_LOW_INSN, CHECK_HIGH_INSN.
56         (Powerpc_relocate_functions::has_overflow_unsigned): New function.
57         (Powerpc_relocate_functions::has_overflow_bitfield,
58         overflowed): Use the above.
59         (Target_powerpc::Relocate::relocate): Correct overflow checking
60         for a number of relocations.  Modify overflow test for 16-bit
61         fields in instructions to signed/unsigned according to whether
62         the field takes a signed or unsigned value.
63
64 2014-03-05  Alan Modra  <amodra@gmail.com>
65
66         Update copyright years.
67
68 2014-03-05  Alan Modra  <amodra@gmail.com>
69
70         * powerpc.cc (Target_powerpc::Scan::local, global): Support
71         R_PPC64_ADDR64_LOCAL.
72         (Target_powerpc::Relocate::relocate): Likewise.
73
74 2014-03-03  Alan Modra  <amodra@gmail.com>
75
76         * dwp.cc (print_version): Update copyright year to current.
77
78 2014-02-10  Alan Modra  <amodra@gmail.com>
79
80         * po/gold.pot: Regenerate.
81
82 2014-02-06  Cary Coutant  <ccoutant@google.com>
83
84         Fix problem where -u is ignored when a weak undef is seen.
85
86         * archive.cc (Library_base::should_include_member): Reorder
87         code to check for -u option if a weak undef has already been seen.
88         * testsuite/Makefile.am (weak_undef_test_2): New test case.
89         * testsuite/Makefile.in: Regenerate.
90         * testsuite/weak_undef_file3.cc: New file.
91         * testsuite/weak_undef_file4.cc: New file.
92         * testsuite/weak_undef_test_2.cc: New file.
93
94 2014-02-05  Cary Coutant  <ccoutant@google.com>
95
96         Fix issues with gold undefined symbol diagnostics.
97
98         PR binutils/15435
99         * errors.cc (Errors::undefined_symbol): Move undef vtable symbol
100         check to here.
101         * target-reloc.h (is_strong_undefined): New function.
102         (relocate_section): Move undef vtable symbol check from here.
103         Check for is_strong_undefined.
104
105 2014-02-05  Cary Coutant  <ccoutant@google.com>
106     
107         Fix problems with the --dynamic-list option.
108
109         PR gold/13577
110         * options.cc (General_options::parse_dynamic_list):
111         Set have_dynamic_list_.
112         (General_options::General_options): Initialize have_dynamic_list_.
113         (General_options::finalize): Turn off -Bsymbolic and
114         -Bsymbolic-functions if --dynamic-list provided.
115         * options.h (General_options::have_dynamic_list): New function.
116         (General_options::have_dynamic_list_): New data member.
117         * symtab.h (Symbol::is_preemptible): Handle --dynamic-list
118         correctly.
119    
120         PR gold/16530
121         * symtab.cc (Symbol_table::add_from_relobj): If symbol is named
122         in --dynamic-list, mark it.
123    
124         * testsuite/Makefile.am (gc_dynamic_list_test.sh): New test case.
125         (dynamic_list_2): New test case.
126         * testsuite/Makefile.in: Regenerate.
127         * testsuite/dynamic_list_2.cc: New file.
128         * testsuite/dynamic_list_2.t: New file.
129         * testsuite/dynamic_list_lib1.cc: New file.
130         * testsuite/dynamic_list_lib2.cc: New file.
131         * testsuite/gc_dynamic_list_test.c: New file.
132         * testsuite/gc_dynamic_list_test.sh: New file.
133         * testsuite/gc_dynamic_list_test.t: New file.
134
135 2014-01-28  Cary Coutant  <ccoutant@google.com>
136
137         Add .gdb_index version 7 support.
138
139         * gold/dwarf_reader.cc: include <utility> (for make_pair).
140         (Dwarf_abbrev_table::do_read_abbrevs): Check for compressed
141         debug sections.
142         (Dwarf_ranges_table::read_ranges_table): Likewise.
143         (Dwarf_pubnames_table::read_section): Check for GNU-style
144         sections, and for compressed debug sections.
145         (Dwarf_pubnames_table::read_header): Compute end address of table.
146         (Dwarf_pubnames_table::next_name): Return flag_byte.  Check
147         for end of list by offset, not by offset == 0.
148         (Dwarf_info_reader::do_read_string_table): Check for compressed
149         debug sections.
150         * gold/dwarf_reader.h (Dwarf_pubnames_table::Dwarf_pubnames_table):
151         Initialize new data members.
152         (Dwarf_pubnames_table::next_name): return flag_byte.
153         (Dwarf_pubnames_table::end_of_table_): New data member.
154         (Dwarf_pubnames_table::is_gnu_style_): New data member.
155         * gold/gdb-index.cc (gdb_index_version): Update to version 7.
156         (Gdb_index_info_reader::read_pubtable): Read flag_byte.
157         (Gdb_index_info_reader::read_pubnames_and_pubtypes): Don't
158         read skeleton type unit DIEs.
159         (Gdb_index::add_symbol): Add flag_byte; adjust all callers.
160         (Gdb_index::do_write): Write flag_byte.
161         * gold/gdb-index.h (Gdb_index::add_symbol): Add flags parameter.
162         (Gdb_index::Cu_vector): Store flags along with cu indexes.
163         * gold/testsuite/gdb_index_test_3.sh: Allow versions 4-7.
164         * gold/testsuite/gdb_index_test_comm.sh: Likewise.
165
166 2014-01-08  H.J. Lu  <hongjiu.lu@intel.com>
167
168         * version.cc (print_version): Update copyright year to 2014.
169
170 2013-12-19  Dimitry Andric  <dimitry@andric.com>
171
172         * stringpool.cc (Stringpool_template::reserve): Add
173         HAVE_UNORDERED_MAP case.
174         * stringpool.cc (Stringpool_template::print_stats): Likewise.
175
176 2013-12-18  Cary Coutant  <ccoutant@google.com>
177
178         * configure.ac: Check for <unordered_set> and <unordered_map>.
179         * config.in: Regenerate.
180         * configure: Regenerate.
181         * system.h: Use <unordered_set> and <unordered_map> if available.
182
183 2013-12-10  Roland McGrath  <mcgrathr@google.com>
184
185         * Makefile.am (install-exec-local): Prefix $(INSTALL_PROGRAM) uses
186         with $(INSTALL_PROGRAM_ENV).
187         * Makefile.in: Regenerate.
188
189 2013-11-22  Cary Coutant  <ccoutant@google.com>
190
191         * configure.ac: Add check for which library is needed for
192         dlopen.
193         * configure: Regenerate.
194
195 2013-11-22  Cary Coutant  <ccoutant@google.com>
196
197         * testsuite/Makefile.am (exception_x86_64_bnd_test): Use in-tree
198         assembler.
199         * testsuite/Makefile.in: Regenerate.
200
201 2013-11-17  H.J. Lu  <hongjiu.lu@intel.com>
202
203         * x86_64.cc (Target_x86_64<size>::Scan::get_reference_flags):
204         Handle R_X86_64_PC32_BND and R_X86_64_PLT32_BND just like
205         R_X86_64_PC32 and R_X86_64_PLT32, respectively.
206         (Target_x86_64<size>::Scan::local): Likewise.
207         (Target_x86_64<size>::Scan::global): Likewise.
208         (Target_x86_64<size>::Relocate::relocate): Likewise.
209         (Target_x86_64<size>::Relocatable_size_for_reloc::get_size_for_reloc):
210         Likewise.
211         (Target_x86_64<size>::Scan::check_non_pic(): Handle
212         R_X86_64_PC32_BND.
213
214         * testsuite/Makefile.am (check_PROGRAMS): Add
215         exception_x86_64_bnd_test.
216         (exception_x86_64_bnd_test_SOURCES): New macro.
217         (exception_x86_64_bnd_test_DEPENDENCIES): Likewise.
218         (exception_x86_64_bnd_test_LDFLAGS): Likewise.
219         (exception_x86_64_bnd_test_LDADD): Likewise.
220         (exception_x86_64_bnd_1.o): New rule.
221         (exception_x86_64_bnd_2.o): Likewise.
222         * testsuite/Makefile.in: Regenerated.
223
224 2013-11-15  Alan Modra  <amodra@gmail.com>
225
226         * powerpc.cc (Target_powerpc::glink_section): Provide non-const
227         accessor.
228         (Target_powerpc::Branch_info::make_stub): Make global entry stubs.
229         Only call ppc64_local_entry_offset for 64-bit.  Restrict
230         symval_for_branch lookup to ELFv1.
231         (Stub_table::add_plt_call_entry): Use unsigned int off.
232         (Output_data_glink::Address, invalid_address): New.
233         (Output_data_glink::add_eh_frame): Move out of line.  Add
234         support for ELFv2.
235         (Output_data_glink::add_global_entry, find_global_entry,
236         global_entry_address): New functions.
237         (Output_data_glink::global_entry_stubs_, end_branch_table_,
238         ge_size): New variables.
239         (Output_data_glink::set_final_data_size): Add global entry
240         stub sizing.
241         (Output_data_glink::do_write): Write global entry stubs.
242         (Target_powerpc::Scan::reloc_needs_plt_for_ifunc): Add target
243         parameter.  Return true for ELFv2.  Adjust callers.
244         (Target_powerpc::Scan::local, global): Restrict opd lookup to
245         ELFv1.  Similarly for ifunc and dynamic relocation processing
246         specific to ELFv1.  Recognize that symbols are defined on
247         their plt entries for ELFv2.
248         (Target_powerpc::symval_for_branch): Assert if called for
249         ELFv2 or ppc32.
250         (Target_powerpc::Relocate::relocate): Use global entry plt
251         stub for symbol value if such exists on ELFv2.
252         (Target_powerpc::Relocate::relocate): Don't call
253         symval_for_branch when ELFv2.  Do adjust for local entry
254         offset when ELFv2.
255         (Target_powerpc::do_dynsym_value): Set symbols to global entry
256         plt stub for ELFv2.
257         (Target_powerpc::do_plt_address_for_global): Similarly.
258
259 2013-11-14  Cary Coutant  <ccoutant@google.com>
260
261         Revert patch -- this did not fix the problem, and there is
262         no race there.
263
264         2013-11-14  Cary Coutant  <ccoutant@google.com>
265
266             PR gold/14860
267             * ehframe.cc (Eh_frame_hdr::Eh_frame_hdr): Initialize lock_.
268             (Ehframe_hdr::set_final_data_size): Allocate a Lock.
269             * ehframe.h (Eh_frame_hdr::record_fde): Hold the lock while
270             updating fde_offsets_.
271             (Eh_frame_hdr::lock_): New data member.
272
273 2013-11-14  Cary Coutant  <ccoutant@google.com>
274
275         * dwp.cc (Dwo_file_entry): New type.
276         (File_list): Use Dwo_file_entry.
277         (Dwo_file::verify): New function.
278         (Dwo_file::verify_dwo_list): New function.
279         (Dwo_file::sized_verify_dwo_list): New function.
280         (Dwo_name_info_reader::visit_compilation_unit): Add dwo_id to file
281         list.
282         (Dwp_options): New enum type.
283         (dwp_options): Add --verify-only.
284         (usage): Likewise.
285         (main): Likewise.
286         * dwp.h (gold_info): Add declaration.
287
288 2013-11-14  Cary Coutant  <ccoutant@google.com>
289
290         PR gold/14860
291         * ehframe.cc (Eh_frame_hdr::Eh_frame_hdr): Initialize lock_.
292         (Ehframe_hdr::set_final_data_size): Allocate a Lock.
293         * ehframe.h (Eh_frame_hdr::record_fde): Hold the lock while
294         updating fde_offsets_.
295         (Eh_frame_hdr::lock_): New data member.
296
297 2013-11-06  Cary Coutant  <ccoutant@google.com>
298
299         PR gold/15758
300         * object.cc (Sized_relobj_file::do_layout): Handle .eh_frame sections
301         before reloc sections.
302
303 2013-11-04  Alan Modra  <amodra@gmail.com>
304
305         * symtab.h (Symbol::Reference_flags): Add FUNC_DESC_ABI.
306         (Symbol::needs_dynamic_reloc): Test new flag.
307         * powerpc.cc (needs_dynamic_reloc, use_plt_offset): Delete.
308         (Target_powerpc::Scan::get_reference_flags): Add target param.
309         Return FUNC_DESC_ABI for 64-bit ELFv1.
310         (Target_powerpc::Branch_info::make_stub): Adjust get_reference_flags
311         call.
312         (Target_powerpc::Scan::global): Use Symbol::needs_dynamic_reloc.
313         (Target_powerpc::Relocate::relocate): Use Symbol::use_plt_offset.
314
315 2013-10-31  Cary Coutant  <ccoutant@google.com>
316
317         Restore support for dwp v2 DWARF package file format.
318
319         * dwarf_reader.cc (Dwarf_info_reader::visit_type_unit): Add
320         tu_length parameter.  Adjust all callers.
321         * dwarf_reader.h (Dwarf_info_reader::visit_type_unit): Likewise.
322         * dwp.cc: Include dwarf.h.
323         (Section_bounds): New struct type.
324         (Unit_set): New struct type.
325         (Dwo_file::Dwo_file): Initialize new data member.
326         (Dwo_file::read_compunit_index, Dwo_file::read_typeunit_index):
327         Combine and rename to...
328         (Dwo_file::read_unit_index): ...this.
329         (Dwo_file::sized_read_compunit_index)
330         (Dwo_file::sized_read_typeunit_index): Combine and rename to...
331         (Dwo_file::sized_read_unit_index): ...this.
332         (Dwo_file::copy_section): Remove section_name, is_str_offsets
333         parameters; add section_id parameter.
334         (Dwo_file::add_cu_set, Dwo_file::add_tu_set): Combine and rename to...
335         (Dwo_file::add_unit_set): ...this.
336         (Dwo_file::shndx_map_): Remove.
337         (Dwo_file::sect_offsets_): New data member.
338         (Dwp_output_file::Dwp_output_file): Initialize new data members.
339         (Dwp_output_file::add_section): Rename to...
340         (Dwp_output_file::add_contribution): ...this.
341         (Dwp_output_file::add_cu_set): Combine parameters into a struct.
342         (Dwp_output_file::add_tu_set): Likewise.
343         (Dwp_output_file::Contribution): New type.
344         (Dwp_output_file::Section::contributions): New data member.
345         (Dwp_output_file::Cu_or_tu_set): Remove.
346         (Dwp_output_file::Section::Section): New ctor.
347         (Dwp_output_file::Dwp_index::Shndx_pool): Remove.
348         (Dwp_output_file::Dwp_index::Section_table): New type.
349         (Dwp_output_file::Dwp_index::Dwp_index): Initialize new data members.
350         (Dwp_output_file::Dwp_index::enter_set): Change type of "set"
351         parameter.
352         (Dwp_output_file::Dwp_index::shndx_pool): Remove.
353         (Dwp_output_file::Dwp_index::shndx_pool_end): Remove.
354         (Dwp_output_file::Dwp_index::section_table): New member function.
355         (Dwp_output_file::Dwp_index::section_table_end): New member function.
356         (Dwp_output_file::Dwp_index::shndx_pool_size): Remove.
357         (Dwp_output_file::Dwp_index::section_table_rows): New member function.
358         (Dwp_output_file::Dwp_index::section_table_cols): New member function.
359         (Dwp_output_file::Dwp_index::shndx_pool_): Remove.
360         (Dwp_output_file::Dwp_index::section_table_): New data member.
361         (Dwp_output_file::Dwp_index::section_mask_): New data member.
362         (Dwp_output_file::add_output_section): New member function.
363         (Dwp_output_file::write_new_section): New member function.
364         (Dwp_output_file::write_contributions): New member function.
365         (Dwp_output_file::section_id_map_): New data member.
366         (class Dwo_id_info_reader): Remove.
367         (class Unit_reader): New class.
368         (get_dwarf_section_name): New function.
369         (Dwo_file::read_executable): Adjust initializations of class data.
370         (Dwo_file::read): Add support for v2 package file format.
371         (Dwo_file::read_unit_index): Likewise.
372         (Dwo_file::sized_read_unit_index): Likewise.
373         (Dwo_file::copy_section): Likewise.
374         (Dwo_file::add_unit_set): Likewise.
375         (Dwp_output_file::add_output_section): Likewise.
376         (Dwp_output_file::add_contribution): Likewise.
377         (Dwp_output_file::Dwp_index::find_or_add): Use row index to check
378         for empty slot.
379         (Dwp_output_file::Dwp_index::enter_set): Add support for v2 package
380         file format.
381         (Dwp_output_file::Dwp_index::grow): Use row index to check for empty
382         slot.
383         (Dwp_output_file::initialize): Remove unused function.
384         (Dwp_output_file::finalize): Add support for v2 package file format.
385         (Dwp_output_file::write_index): Likewise.
386         * gdb-index.cc (Gdb_index_info_reader::visit_type_unit): Adjust
387         function prototype.
388
389 2013-10-31  Cary Coutant  <ccoutant@google.com>
390
391         * configure.ac: Fix check for -fmerge-constants.
392         * configure.ac: Regenerate.
393
394 2013-10-30  Roland McGrath  <mcgrathr@google.com>
395
396         * x86_64.cc (Output_data_plt_x86_64_nacl::first_plt_entry):
397         Correct 9-byte nop sequence to match what the assembler generates.
398
399 2013-10-30  Alan Modra  <amodra@gmail.com>
400
401         * powerpc.cc (Powerpc_relobj::abiversion, set_abiversion,
402         ppc64_local_entry_offset, ppc64_local_entry_offset,
403         do_read_symbols): New functions.
404         (Powerpc_relobj::e_flags_, st_other_): New vars.
405         (Powerpc_relobj::Powerpc_relobj): Call set_abiversion.
406         (Powerpc_dynobj::abiversion, set_abiversion): New functions.
407         (Powerpc_relobj::e_flags_): New var.
408         (Target_powerpc::first_plt_entry_offset, plt_entry_size): Inline
409         and adjust for ELFv2.
410         (Target_powerpc::abiversion, set_abiversion, stk_toc): New functions.
411         (Powerpc_relobj::do_find_special_sections): Check no .opd in ELFv2.
412         (Powerpc_dynobj::do_find_special_sections): Likewise.
413         (Target_powerpc::do_define_standard_symbols): Define ".TOC.".
414         (Target_powerpc::Branch_info::make_stub): Adjust stub destination
415         to ELFv2 local entry.
416         (Target_powerpc::do_relax): No thread safe barriers needed for
417         ELFv2.
418         (Output_data_plt_powerpc::initial_plt_entry_size_,
419         plt_entry_size): Delete.  Replace all uses with
420         first_plt_entry_offset() and plt_entry_size().
421         (Output_data_plt_powerpc::Output_data_plt_powerpc): Remove
422         reserved_size parm.  Update callers.
423         (Output_data_plt_powerpc::entry_count): Update.
424         (Output_data_plt_powerpc::first_plt_entry_offset): Make private
425         and use Target_powerpc::first_plt_entry_offset().
426         (Output_data_plt_powerpc::get_plt_entry_size): Similarly and
427         rename to plt_entry_size.
428         (Output_data_plt_powerpc::add_ifunc_entry,
429         add_local_ifunc_entry): Adjust reloc for ELFv2.
430         (glink_eh_frame_fde_64): Rename to glink_eh_frame_fde_64v1.
431         (glink_eh_frame_fde_64v2): New.
432         (Stub_table::plt_call_size): Support ELFv2 sizing.
433         (Output_data_glink::add_eh_frame): Use the new FDE.
434         (Output_data_glink::set_final_data_size): Adjust for ELFv2 glink.
435         (Stub_table::do_write): Write ELFv2 stubs and glink.
436         (Target_powerpc::Relocate::relocate): Replaces nop after call
437         with ld 2,24(1) and adjust local offset destination for ELFv2.
438
439 2013-10-30  Alan Modra  <amodra@gmail.com>
440
441         * powerpc.cc (Target_powerpc::Scan::check_non_pic): Handle new relocs.
442         (Target_powerpc::Scan::global, local): Likewise.
443         (Target_powerpc::Relocate::relocate): Likewise.  Check for overflow
444         on all ppc64 @h and @ha relocs.
445
446 2013-10-14  Alan Modra  <amodra@gmail.com>
447
448         * output.h (Output_data_got::add_constant): Tidy.
449         (Output_data_got::add_constant_pair): New function.
450         * powerpc.cc (Output_data_got_powerpc): Override all Output_data_got
451         methods used so as to first call reserve_ent().
452
453 2013-10-11  Roland McGrath  <mcgrathr@google.com>
454
455         * powerpc.cc (Output_data_got_powerpc): Remove unused methods
456         add_got_entry and add_got_entry_pair.
457
458         * configure.ac (TLS_GNU2_DIALECT): Use -Werror in test.
459         (HAVE_PUBNAMES): Likewise.
460         * configure: Regenerate.
461
462         * testsuite/Makefile.am: Replace '-T foo' with '-Wl,-T,foo' throughout.
463         * testsuite/Makefile.in: Regenerate.
464
465         * target.h (Target::adjust_elf_header, Target::do_adjust_elf_header):
466         Remove const from declaration.
467         * target.cc (Sized_target::do_adjust_elf_header): Update definition.
468         * sparc.cc (Target_sparc::do_adjust_elf_header): Likewise.
469         * output.h (Output_file_header): Remove const from member target_
470         and corresponding constructor argument.
471         * output.cc (Output_file_header::Output_file_header): Update prototype.
472         (Output_file_header::do_sized_write): Use this->target_ in place
473         of parameters()->target().
474
475         * testsuite/undef_symbol.cc (Foo::get_a): New method.
476
477         * configure.ac (MERGE_CONSTANTS_FLAG): New check.
478         * configure: Regenerate.
479         * Makefile.in: Regenerate.
480         * testsuite/merge_string_literals_1.c: Renamed to have .cc suffix.
481         * testsuite/merge_string_literals_2.c: Likewise.
482         * testsuite/Makefile.am
483         (merge_string_literals_1.o, merge_string_literals_2.o): Update deps.
484         (AM_CFLAGS, AM_CXXFLAGS): Use $(MERGE_CONSTANTS_FLAG) in place of
485         literal -fmerge-constants.
486         * testsuite/Makefile.in: Regenerate.
487
488         * i386.cc (Target_i386): Remove unused member dynbss_.
489         * arm.cc (Target_arm): Likewise.
490         * powerpc.cc (Target_powerpc): Likewise.
491         * sparc.cc (Target_sparc): Likewise.
492         * tilegx.cc (Target_tilegx): Likewise.
493         * x86_64.cc (Target_x86_64): Likewise.
494         * dwarf_reader.h (Dwarf_info_reader): Remove unused members
495         type_signature_, type_offset_.
496         * plugin.h (Plugin_hook): Remove unused member layout_.
497         * readsyms.h (Add_symbols): Remove unused members dirpath_, dirindex_,
498         mapfile_.
499         (Read_member): Remove unused members input_objects_, symtab_,
500         mapfile_, layout_.
501         (Check_library): Remove unused member symtab_.
502         * archive.h (Lib_group): Remove unused member lib_.
503         * archive.cc (Lib_group::Lib_group): Update initializer.
504         * incremental.h (Incremental_binary): Remove unused member target_.
505         (Incremental_script_entry): Removed unused member script_.
506         * layout.h (Write_symbols_task): Remove unused member input_objects_.
507         * icf.h (Icf): Remove unused member num_tracked_relocs.
508
509         * gold-threads.h (Once): Conditionalize member was_run_lock_ on
510         [ENABLE_THREADS && __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4], matching
511         its only use.
512         * gold-threads.cc (Once::Once): Likewise conditionalize initializer.
513
514         * archive.h: Use struct rather than class for forward declaration
515         of Read_symbols_data.
516
517 2013-10-07  Cary Coutant  <ccoutant@google.com>
518
519         PR gold/16010
520         * testsuite/Makefile.am (icf_test): Fix dependencies.
521         (icf_safe_test): Likewise.
522         (icf_safe_so_test): Likewise.
523         (large_symbol_alignment): Add empty _LDADD rule.
524         * testsuite/Makefile.in: Regenerate.
525
526 2013-09-03  Pavel Chupin  <pavel.v.chupin@intel.com>
527
528         PR gold/15927
529         * x86_64.cc (Target_x86_64<size>::Scan::global): Use relative
530         relocation for R_X86_64_32 on x32.
531
532 2013-08-27  Roland McGrath  <mcgrathr@google.com>
533
534         * output.cc (Output_segment::set_section_addresses): Take new
535         Target* argument.  If target->isolate_execinstr() and the segment
536         is executable and starts at a target->abi_pagesize() boundary,
537         pad its end out to a target->abi_pagesize() boundary with code fill.
538         * output.h (Output_segment::set_section_addresses): Update decl.
539         * layout.h (Layout::check_output_data_for_reset_values): Take new
540         argument RELAX_OUTPUTS.
541         (Layout): New member relax_output_list_.
542         (Layout::add_relax_output): New method.
543         * layout.cc (Layout::Layout): Update constructor.
544         (Layout::reset_relax_output): New method.
545         (Layout::clean_up_after_relaxation): Call it.
546         (Layout::prepare_for_relaxation): Update caller.
547         (Layout::set_segment_offsets): Update callers of set_section_addresses.
548         Call reset_relax_output before re-processing segments for
549         isolate_execinstr case.
550         (Layout::write_data): Handle relax_output_list_.
551         (Layout::Relaxation_debug_check::check_output_data_for_reset_values):
552         Take new argument RELAX_OUTPUTS.  Assert it's an empty collection.
553
554 2013-08-23  Yuri Chornoivan  <yurchor@ukr.net>
555
556         PR binutils/15834
557         * object.h: Fix typos.
558
559 2013-08-16  Roland McGrath  <mcgrathr@google.com>
560
561         * i386.cc (Target_i386_nacl::do_code_fill): New virtual function.
562         * x86_64.cc (Target_x86_64_nacl::do_code_fill): New virtual function.
563
564 2013-08-07  Cary Coutant  <ccoutant@google.com>
565
566         Revert support for v2 DWP files:
567
568         2013-03-01  Cary Coutant  <ccoutant@google.com>
569
570             Add dwp support for v2 DWARF package file format.
571             * dwarf_reader.cc (Dwarf_info_reader::visit_type_unit): Add
572             tu_length parameter.  Adjust all callers.
573             * dwarf_reader.h (Dwarf_info_reader::visit_type_unit): Likewise.
574             * dwp.cc: Include dwarf.h.
575             (Section_bounds): New struct type.
576             (Unit_set): New struct type.
577             (Dwo_file::Dwo_file): Initialize new data member.
578             (Dwo_file::read_compunit_index, Dwo_file::read_typeunit_index):
579             Combine and rename to...
580             (Dwo_file::read_unit_index): ...this.
581             (Dwo_file::sized_read_compunit_index)
582             (Dwo_file::sized_read_typeunit_index): Combine and rename to...
583             (Dwo_file::sized_read_unit_index): ...this.
584             (Dwo_file::copy_section): Remove section_name, is_str_offsets
585             parameters; add section_id parameter.
586             (Dwo_file::add_cu_set, Dwo_file::add_tu_set): Combine and rename to...
587             (Dwo_file::add_unit_set): ...this.
588             (Dwo_file::shndx_map_): Remove.
589             (Dwo_file::sect_offsets_): New data member.
590             (Dwp_output_file::Dwp_output_file): Initialize new data members.
591             (Dwp_output_file::add_section): Rename to...
592             (Dwp_output_file::add_contribution): ...this.
593             (Dwp_output_file::add_cu_set): Combine parameters into a struct.
594             (Dwp_output_file::add_tu_set): Likewise.
595             (Dwp_output_file::Contribution): New type.
596             (Dwp_output_file::Section::contributions): New data member.
597             (Dwp_output_file::Cu_or_tu_set): Remove.
598             (Dwp_output_file::Section::Section): New ctor.
599             (Dwp_output_file::Dwp_index::Shndx_pool): Remove.
600             (Dwp_output_file::Dwp_index::Section_table): New type.
601             (Dwp_output_file::Dwp_index::Dwp_index): Initialize new data members.
602             (Dwp_output_file::Dwp_index::enter_set): Change type of "set"
603             parameter.
604             (Dwp_output_file::Dwp_index::shndx_pool): Remove.
605             (Dwp_output_file::Dwp_index::shndx_pool_end): Remove.
606             (Dwp_output_file::Dwp_index::section_table): New member function.
607             (Dwp_output_file::Dwp_index::section_table_end): New member function.
608             (Dwp_output_file::Dwp_index::shndx_pool_size): Remove.
609             (Dwp_output_file::Dwp_index::section_table_rows): New member function.
610             (Dwp_output_file::Dwp_index::section_table_cols): New member function.
611             (Dwp_output_file::Dwp_index::shndx_pool_): Remove.
612             (Dwp_output_file::Dwp_index::section_table_): New data member.
613             (Dwp_output_file::Dwp_index::section_mask_): New data member.
614             (Dwp_output_file::add_output_section): New member function.
615             (Dwp_output_file::write_new_section): New member function.
616             (Dwp_output_file::write_contributions): New member function.
617             (Dwp_output_file::section_id_map_): New data member.
618             (class Dwo_id_info_reader): Remove.
619             (class Unit_reader): New class.
620             (get_dwarf_section_name): New function.
621             (Dwo_file::read_executable): Adjust initializations of class data.
622             (Dwo_file::read): Add support for v2 package file format.
623             (Dwo_file::read_unit_index): Likewise.
624             (Dwo_file::sized_read_unit_index): Likewise.
625             (Dwo_file::copy_section): Likewise.
626             (Dwo_file::add_unit_set): Likewise.
627             (Dwp_output_file::add_output_section): Likewise.
628             (Dwp_output_file::add_contribution): Likewise.
629             (Dwp_output_file::Dwp_index::find_or_add): Use row index to check
630             for empty slot.
631             (Dwp_output_file::Dwp_index::enter_set): Add support for v2 package
632             file format.
633             (Dwp_output_file::Dwp_index::grow): Use row index to check for empty
634             slot.
635             (Dwp_output_file::initialize): Remove unused function.
636             (Dwp_output_file::finalize): Add support for v2 package file format.
637             (Dwp_output_file::write_index): Likewise.
638             * gdb-index.cc (Gdb_index_info_reader::visit_type_unit): Adjust
639             function prototype.
640
641 2013-07-31  Cary Coutant  <ccoutant@google.com>
642
643         * object.cc (Sized_relobj::do_output_section_address): New function.
644         (Sized_relobj): Instantiate explicitly.
645         * object.h (Object::output_section_address): New function.
646         (Object::do_output_section_address): New function.
647         (Sized_relobj::do_output_section_address): New function.
648         * powerpc.cc (Target_powerpc::symval_for_branch): Use it.
649
650 2013-07-30  Cary Coutant  <ccoutant@google.com>
651             Sasa Stankovic  <Sasa.Stankovic@imgtec.com>
652
653         * parameters.cc (Parameters::entry): Return target-specific entry
654         symbol name.
655         * target.h (Target::entry_symbol_name): New function.
656         (Target_info::entry_symbol_name): New data member.
657
658         * arm.cc (Target_arm::arm_info): Add entry_symbol_name.
659         * i386.cc (Target_i386::i386_info): Likewise.
660         (Target_i386_nacl::i386_nacl_info): Likewise.
661         * sparc.cc (Target_sparc::sparc_info): Likewise.
662         * tilegx.cc (Target_tilegx::tilegx_info): Likewise.
663         * x86_64.cc: (Target_x86_64::x86_64_info) Likewise.
664         (Target_x86_64_nacl::x86_64_nacl_info) Likewise.
665         * testsuite/testfile.cc (Target_test::test_target_info): Likewise.
666
667 2013-07-22  Sterling Augustine  <saugustine@google.com>
668
669         * dwarf_reader.cc (Dwarf_pubnames_table::read_section):
670         Convert parameter shndx to local variable. Add parameters symtab
671         and symtab_size.  Scan over section names.  Find relocation
672         section corresponding to current section.  Create and initialize
673         reloc_mapper_ and reloc_type_.
674         (Dwarf_pubnames_table::read_header):  Add assertion.  Change
675         unit_length to off_t.  Initialize member unit_length_.  Fill in field
676         cu_offset_.
677         * dwarf_reader.h (Dwarf_pubnames_table::Dwarf_pubnames_table):
678         Initialize new fields unit_length_ and cu_offset_.
679         (Dwarf_pubnames_table::read_section): Update prototype.
680         (Dwarf_pubnames_table::cu_offset): New member function.
681         (Dwarf_pubnames_table::subsection_size): Likewise.
682         (Dwarf_pubnames_table::cu_offset_, Dwarf_pubnames_table::unit_length):
683         New fields.
684         (Dwarf_info_reader::symtab, Dwarf_info_reader::symtab_size): Make
685         member functions public.
686         * gdb_index.cc (Gdb_index_info_reader::read_pubnames_and_pubtypes):
687         Update comment.  Rework logic.  Move repeated parts to...
688         (Gdb_index_info_reader::read_pubtable): ...here. New function.
689         (Gdb_index::Gdb_index): Initialize new fields, pubnames_table_,
690         pubtypes_table_, and stmt_list_offset.
691         (Gdb_index::map_pubtable_to_dies, Gdb_index::find_pubname_offset,
692         Gdb_index::find_pubtype_offset,
693         Gdb_index::map_pubnames_and_types_to_dies): Define new functions.
694         (Gdb_index::pubnames_read): Update prototype and rework logic.
695         * gdb_index.h (Gdb_index_info_reader, Dwarf_pubnames_table):
696         Forward declare.
697         (Gdb_index::map_pubtable_to_dies, Gdb_index::find_pubname_offset,
698         Gdb_index::find_pubtype_offset, Gdb_index::pubnames_table)
699         Gdb_index::pubtypes_table, Gdb_index::map_pubnames_and_types_to_dies,
700         Gdb_index::map_pubtable_to_dies):
701         Declare functions.
702         (Gdb_index::pubnames_read): Update declaration.
703         (Gdb_index::Pubname_offset_map): New type.
704         (Gdb_index::cu_pubname_map_, Gdb_index::cu_pubtype_map_,
705         Gdb_index::pubnames_table_, Gdb_index::pubtypes_table_,
706         Gdb_index::stmt_list_offset): Declare.
707         (Gdb_index::pubnames_shndx_, Gdb_index::pubnames_offet_,
708         Gdb_index::pubtypes_object_, Gdb_index::pubtypes_shndx_)
709         Gdb_index::pubtypes_offset_): Remove.
710
711 2013-07-19  Roland McGrath  <mcgrathr@google.com>
712
713         * options.h (General_options): Add -Trodata-segment option.
714         * parameters.cc (Parameters::check_rodata_segment): New function.
715         (Parameters::set_target_once): Call it.
716         * parameters.h (Parameters): Declare it (private member function).
717         * layout.cc (load_seg_unusable_for_headers): New function, broken
718         out of Layout::relaxation_loop_body.  If TARGET->isolate_execinstr()
719         then validate rodata segment rather than text segment.
720         (relaxation_loop_body): Call that.
721         (is_text_segment): New function.  Don't admit a non-executable
722         segment if TARGET->isolate_execinstr().
723         (set_segment_offsets): Call it.  Honor -Trodata-segment option.
724
725 2013-07-15  Shawn Landden  <shawnlandden@gmail.com>
726
727         PR gold/15070
728         * fileread.h (File_read::get_view): Clarify comment about ALIGNED.
729         * nacl.h (Sniff_file::View::View): Request aligned view.
730
731 2013-07-11  Cary Coutant  <ccoutant@google.com>
732
733         * powerpc.cc (Target_powerpc::write_branch_lookup_table): Use
734         correct BRLT entry size.
735
736 2013-07-03  Alan Modra  <amodra@gmail.com>
737
738         * powerpc.cc (Target_powerpc::Relocate::relocate): Update self-call
739         comment.
740
741 2013-07-01  Cary Coutant  <ccoutant@google.com>
742
743         * dwarf_reader.cc (Dwarf_ranges_table::read_ranges_table): Save
744         reloc_type_.
745         (Dwarf_ranges_table::read_range_list): Call lookup_reloc.
746         (Dwarf_ranges_table::lookup_reloc): New function.
747         * dwarf_reader.h (Dwarf_ranges_table::Dwarf_ranges_table): Initialize
748         reloc_type_.
749         (Dwarf_ranges_table::lookup_reloc): New function.
750         (Dwarf_ranges_table::reloc_type_): New data member.
751
752 2013-06-27  Jing Yu  <jingyu@google.com>
753
754         PR gold/15662
755         * powerpc.cc (Output_data_brlt_powerpc::reset_brlt_sizes): New
756         function.
757         (Output_data_brlt_powerpc::finalize_brlt_sizes): New function.
758         (Target_powerpc::do_relax): Call the above.
759
760 2013-06-27  Cary Coutant  <ccoutant@google.com>
761
762         * powerpc.cc (Target_powerpc::symval_for_branch): Don't assert
763         on garbage collected .opd section.
764
765 2013-06-27  Alan Modra  <amodra@gmail.com>
766
767         * powerpc.cc (Target_powerpc::do_gc_add_reference): Test dst_shndx
768         is non-zero.
769         (Target_powerpc::do_gc_mark_symbols): Likewise for sym->shndx().
770         (Target_powerpc::do_function_location): Likewise for loc->shndx.
771
772 2013-06-14  Cary Coutant  <ccoutant@google.com>
773
774         * resolve.cc (Symbol::override_base): Don't override st_type
775         from plugin placeholder symbols.
776         (Symbol_table::resolve): Likewise.
777         (Symbol_table::should_override): Don't complain about TLS mismatch
778         if the TO symbol is a plugin placeholder.
779         * testsuite/Makefile.am (plugin_test_tls): New test.
780         * testsuite/Makefile.in: Regenerate.
781         * testsuite/plugin_test_tls.sh: New test script.
782         * testsuite/two_file_test_2_tls.cc: New test source.
783         * testsuite/two_file_test_tls.cc: New test source.
784
785 2013-06-05  Alexander Ivchenko  <alexander.ivchenko@intel.com>
786
787         * layout.cc (Layout::set_segment_offsets): Taking care of the case when
788         the maximum segment alignment is larger than the page size.
789         * testsuite/Makefile.am (large_symbol_alignment): Test that Gold
790         correctly aligns the symbols with large alignemnt.
791         * testsuite/Makefile.in: Regenerate.
792         * testsuite/large_symbol_alignment.cc: New file.
793
794 2013-05-30  Alexander Ivchenko  <alexander.ivchenko@intel.com>
795             Sriraman Tallam  <tmsriram@google.com>
796
797         * options.h (sort_section): New option.
798         * output.h (Input_section_sort_section_prefix_special_ordering_compare):
799         Rename from Input_section_sort_section_name_special_ordering_compare.
800         (Input_section_sort_section_name_compare): New struct.
801         * output.cc (Output_section::Input_section_sort_section_name_compare::
802         operator()): New function.
803         (Output_section::sort_attached_input_sections): Use new sort function
804         for .text if --sort-section=name is specified.
805         * layout.cc (Layout::make_output_section):
806         Add sorting by name when --sort-section=name is specified.
807         * testsuite/Makefile.am (text_section_grouping): Test option
808         --sort-section=name.
809         * testsuite/Makefile.in: Regenerate.
810         * testsuite/section_sorting_name.cc: New file.
811         * testsuite/section_sorting_name.sh: New file.
812
813 2013-05-21  Cary Coutant  <ccoutant@google.com>
814
815         * symtab.h (Symbol::is_cxx_vtable): New function.
816         * target-reloc.h (relocate_section): Check for vtable symbol.
817         * testsuite/Makefile.am (missing_key_func.sh): New test case.
818         * testsuite/Makefile.in: Regenerate.
819         * testsuite/missing_key_func.cc: New test source.
820         * testsuite/missing_key_func.sh: New test script.
821
822 2013-05-21  Cary Coutant  <ccoutant@google.com>
823
824         * object.cc (Sized_relobj_file::get_symbol_location_info): Set
825         type of enclosing symbol.
826         (Relocate_info::location): Check symbol type when describing symbol.
827         * object.h (Symbol_location_info): Remove unused line_number;
828         add enclosing_symbol_type.
829         * testsuite/debug_msg.sh: Adjust expected output.
830
831 2013-05-13  Cary Coutant  <ccoutant@google.com>
832
833         * configure.ac: Export DEFAULT_TARGET.
834         * configure: Regenerate.
835         * Makefile.in: Regenerate.
836         * testsuite/Makefile.am: Add .EXPORT_ALL_VARIABLES.
837         * testsuite/Makefile.in: Regenerate.
838         * testsuite/debug_msg.sh: Delete duplicate tests.
839         Don't check undef_int error message match for powerpc where the
840         source file and line number aren't available.
841
842 2013-05-10  Roland McGrath  <mcgrathr@google.com>
843
844         * options.h (General_options): Add --rosegment-gap option.
845         * options.cc (finalize): --rosegment-gap implies --rosegment.
846         * layout.cc (set_segment_offsets): Let user option override
847         target->rosegment_gap().
848
849 2013-05-10  Roland McGrath  <mcgrathr@google.com>
850
851         * options.h (General_options): Remove leading space from help
852         messages for -nostdlib and --rosegment.
853
854 2013-05-03  Maciej W. Rozycki  <macro@codesourcery.com>
855
856         PR ld/15365
857         * layout.cc (Layout::finalize): Make __ehdr_start STV_HIDDEN.
858
859 2013-05-03  Alan Modra  <amodra@gmail.com>
860
861         * merge.cc (Output_merge_string::do_add_input_section): Correct
862         scan for number of strings.  Rename vars to avoid shadowing.
863         Include missing terminator in input_size_.
864
865 2013-05-01  H.J. Lu  <hongjiu.lu@intel.com>
866
867         * merge.cc (Output_merge_string<Char_type>::do_add_input_section):
868         Restore empty string handling.
869
870 2013-05-01  Cary Coutant  <ccoutant@google.com>
871
872         * stringpool.cc (Stringpool_template::new_key_offset): Fix
873         uninitialized warning.
874
875 2013-04-29  Alexander Ivchenko  <alexander.ivchenko@intel.com>
876
877         * output.cc (Output_section::add_merge_input_section): Allow
878         to merge sections if the alignment is more than character size.
879         * merge.h (Output_merge_string::Output_merge_string): Remove
880         assert.
881         * merge.cc (Output_merge_string<Char_type>::do_add_input_section): Count
882         only not-null strings. Check the alignment of strings.
883         * stringpool.h
884         (Stringpool_template<Stringpool_char>::Stringpool_template): Add
885         alignment as the argument.
886         (Stringpool_template<Stringpool_char>::addralign_): New class member.
887         * stringpool.cc (Stringpool_template<Stringpool_char>::new_key_offset):
888         Align non-zero length strings according to the addralign_.
889         (Stringpool_template<Stringpool_char>::set_string_offsets):
890         Updating offsets according to the given alignment.
891         * testsuite/Makefile.am (text_section_grouping): Test if string
892         literals are getting merged.
893         * testsuite/Makefile.in: Regenerate.
894         * testsuite/merge_string_literals_1.c: New file.
895         * testsuite/merge_string_literals_2.c: Ditto.
896         * testsuite/merge_string_literals.sh: Ditto.
897
898 2013-04-26  Ian Lance Taylor  <iant@google.com>
899
900         * target-reloc.h (relocate_section): If the reloc offset is out of
901         range, pass VIEW as NULL to relocate.relocate.
902         * arm.cc (Target_arm:Relocate::relocate): Check for a NULL view.
903         * i386.cc (Target_i386::Relocate::relocate): Likewise.
904         * powerpc.cc (Target_powerpc::Relocate::relocate): Likewise.
905         * sparc.cc (Target_sparc::Relocate::relocate): Likewise.
906         * tilegx.cc (Target_tilegx::Relocate::relocate): Likewise.
907         * x86_64.cc (Target_x86_64::Relocate::relocate): Likewise.
908
909 2013-04-26  Geoff Pike  <gpike@chromium.org>
910
911         * gold.cc (queue_final_tasks): invoke layout->queue_build_id_tasks().
912         * layout.cc (Hash_task): New class.
913         (Layout::queue_build_id_tasks): New function.
914         (Layout::write_build_id): Handle single-thread portion of build ID
915         computation.  (In some cases, all of it is single-threaded.)  Replace
916         {sha1,md5}_process_bytes with {sha1,md5}_buffer to get the same
917         functionality in fewer lines of code.
918         * layout.h (Layout::queue_build_id_tasks): New function declaration.
919         * options.h (General_options): make "--build-id" default to tree
920         rather than sha1.  Add two new options related to --build-id=tree:
921         --build-id-chunk-size-for-treehash and
922         --build-id-min-file-size-for-treehash.
923         * Makefile.am: add testing of --build-id=tree and related new options
924         (these tests will be invoked by "make check").
925         * Makefile.in: Regenerate.
926
927 2013-04-25  Alan Modra  <amodra@gmail.com>
928
929         * configure.tgt: Add powerpcle and powerpc64le.
930
931 2013-04-22  Alan Modra  <amodra@gmail.com>
932
933         PR gold/15355
934         * layout.cc (Layout::segment_precedes): Allow more than one
935         segment with the same type and flags.
936
937 2013-04-15  Cary Coutant  <ccoutant@google.com>
938
939         * layout.cc (Layout::set_relocatable_section_offsets): Don't
940         allocate space in file for BSS sections.
941
942 2013-04-15  Cary Coutant  <ccoutant@google.com>
943
944         * script-sections.cc (Orphan_output_section): Reset address
945         to zero after each orphaned section for relocatable links.
946
947 2013-04-15  Cary Coutant  <ccoutant@google.com>
948
949         * symtab.cc (Symbol_table::sized_write_globals): Subtract
950         section starting address for relocatable link.
951         * testsuite/Makefile.am (script_test_11): New test.
952         * testsuite/Makefile.in: Regenerate.
953         * testsuite/script_test_11.c: New source file.
954         * testsuite/script_test_11.t: New linker script.
955
956 2013-04-13  Alan Modra  <amodra@gmail.com>
957
958         * powerpc.cc (Stub_control::can_add_to_stub_group): Don't set
959         owner when sections are not adjacent and exceed group size.
960         (Target_powerpc::group_sections): Handle corner case.
961         (Target_powerpc::Branch_info::make_stub): Handle case where
962         stub table doesn't exist due to branches in non-exec sections.
963         (Target_powerpc::Relocate::relocate): Likewise.
964
965 2013-04-11  Alan Modra  <amodra@gmail.com>
966
967         PR gold/15354
968         * powerpc.cc (Target_powerpc::make_brlt_section): Name section
969         .branch_lt to match bfd ld.  Adjust comments throughout file.
970
971 2013-04-04  Ian Lance Taylor  <iant@google.com>
972
973         GCC PR c++/56840
974         * object.cc (do_layout_deferred_sections): Handle .eh_frame
975         sections before checking whether they are included in the link.
976
977 2013-03-29  Sriraman Tallam  <tmsriram@google.com>
978
979         * archive.cc (Archive::get_elf_object_for_member):  Create the elf
980         object before calling the plugin claim_file handler.  Pass the elf
981         object of the archive to the plugin. Delete the elf object if the
982         plugin claims the file.
983
984 2013-03-21  Alan Modra  <amodra@gmail.com>
985
986         * layout.cc (Layout::set_segment_offsets): Accept writable .text
987         segment when omagic.
988
989 2013-03-21  Alan Modra  <amodra@gmail.com>
990
991         * dwp.cc (Dwp_output_file::add_contribution): Avoid signed/unsigned
992         comparison warning.
993         * layout.cc (Layout::create_dynamic_symtab): Avoid "may be used
994         uninitialized" warning.
995
996 2013-03-20  Alan Modra  <amodra@gmail.com>
997
998         * symtab.h (Symbol::clear_version): New function.
999         * symtab.cc (Symbol_table::set_dynsym_indexes): Don't set object
1000         is_needed by weak references.  Clear version for symbols defined
1001         in as-needed objects that are not needed.
1002
1003 2013-03-15  Alan Modra  <amodra@gmail.com>
1004
1005         * powerpc.cc (Target_powerpc::Scan::reloc_needs_plt_for_ifunc): Make
1006         static and public.  Add report_err param.  Return false for data refs.
1007         (Target_powerpc::rela_dyn_section): New overloaded function.
1008         (Target_powerpc::plt_, iplt_): Elucidate.
1009         (Output_data_plt_powerpc::entry_count): Handle current_data_size()==0.
1010         (Output_data_plt_powerpc::do_write): Don't write .iplt.
1011         (Output_data_plt_powerpc::plt_entry_count): Don't add .iplt entries.
1012         (Target_powerpc::Scan::local, global): Adjust reloc_needs_plt_for_ifunc
1013         calls.  Put ifunc dynamic relocs in irela_dyn_section.  Only
1014         push_branch and make_plt_entry for ifunc syms when
1015         reloc_needs_plt_for_ifunc.
1016         (Target_powerpc::Relocate::relocate): Don't use plt entry value
1017         for ifunc unless reloc_needs_plt_for_ifunc.
1018
1019 2013-03-15  Alan Modra  <amodra@gmail.com>
1020
1021         * gc.h (gc_process_relocs): Don't look through function descriptors.
1022         * icf.cc (get_section_contents): Do so here instead.
1023
1024 2013-03-13  Alan Modra  <amodra@gmail.com>
1025
1026         * powerpc.cc (is_branch_reloc): Forward declare.
1027         (Target_powerpc::do_can_check_for_function_pointers): New predicate.
1028         (Target_powerpc::Scan::local_reloc_may_be_function_pointer): Return
1029         false for 64-bit, true for 32-bit non-branch relocs.
1030         (Target_powerpc::Scan::global_reloc_may_be_function_pointer): Likewise.
1031         * testsuite/Makefile.am (icf_test): Use linker map file instead of
1032         nm output.
1033         (icf_safe_test): Generate linker map file as well as nm output.
1034         (icf_safe_so_test): Likewise.
1035         * testsuite/Makefile.in: Regenerate.
1036         * testsuite/icf_test.sh: Parse linker map file to determine
1037         section folding.
1038         * testsuite/icf_safe_test.sh: Likewise.  Expect folding for PowerPC.
1039         * testsuite/icf_safe_so_test.sh: Likewise.
1040         (X86_32_or_ARM_specific_safe_fold): Merge into..
1041         (arch_specific_safe_fold): ..this.
1042         (X86_64_specific_safe_fold): Delete unused function.
1043
1044 2013-03-12  Alan Modra  <amodra@gmail.com>
1045
1046         * gc.h (gc_process_relocs): Look through function descriptors
1047         to determine shndx, symvalue and addend used by ICF.  Tidy
1048         variable duplication.
1049
1050 2013-03-11  Alan Modra  <amodra@gmail.com>
1051
1052         * gold.cc (queue_middle_tasks): Move detect_odr_violations..
1053         * layout.cc (Layout_task_runner::run): ..to here.
1054         * symtab.h (struct Symbol_location): Extract from..
1055         (class Symbol_table): ..here.
1056         * symtab.cc (Symbol_table::linenos_from_loc): Invoke function_location.
1057         * target.h (class Target): Add function_location and
1058         do_function_location functions.
1059         (class Sized_target): Add do_function_location.
1060         * object.h (class Sized_relobj_file): Move find_shdr..
1061         (class Object): ..to here.
1062         * object.cc: Likewise.  Update to suit.  Instantiate.
1063         (Sized_relobj_file::find_eh_frame): Update find_shdr call.
1064         * powerpc.cc (class Powerpc_dynobj): New.
1065         (Target_powerpc::do_function_location): New function.
1066         (Powerpc_relobj::do_find_special_sections): Update find_shdr call.
1067         (Powerpc_dynobj::do_read_symbols): New function.
1068         (Target_powerpc::do_make_elf_object): Make a Powerpc_dynobj.
1069
1070 2013-03-08  Ian Lance Taylor  <iant@google.com>
1071
1072         * options.cc (General_options::string_to_object_format): Accept
1073         "default".
1074
1075 2013-03-08  Alan Modra  <amodra@gmail.com>
1076
1077         * ehframe.h (Post_fdes) Make it a vector of Post_fde rather than
1078         pointer to Post_fde.
1079         (struct Post_fde): Move definition to here..
1080         * ehframe.cc (struct Post_fde): ..from here.
1081         (Cie::write): Don't alloc Post_fde.
1082         (Eh_frame::do_sized_write): Update.  Don't free Post_fde.
1083
1084 2013-03-07  Alan Modra  <amodra@gmail.com>
1085
1086         * testsuite/discard_locals_relocatable_test.c: Add a powerpc
1087         relocation referencing .LC0.
1088         * testsuite/discard_locals_test.sh: Remove FIXMEs.
1089
1090 2013-03-07  Alan Modra  <amodra@gmail.com>
1091
1092         * testsuite/ifunc-sel.h (ifunc_sel, ifunc_one): Mark
1093         always_inline.  Add assembly for powerpc to avoid GOT.
1094
1095 2013-03-07  Alan Modra  <amodra@gmail.com>
1096
1097         * testsuite/script_test_10.sh: Don't test .bss section
1098         header number.
1099
1100 2013-03-06  Alan Modra  <amodra@gmail.com>
1101
1102         * powerpc.cc (class Powerpc_relobj): Move some member functions.
1103         (Target_powerpc::symval_for_branch):  Add symtab param.  Update
1104         all callers.  Handle folded sections.
1105         (Target_powerpc::do_gc_add_reference): Don't cast dynamic object
1106         to Powerpc_relobj.
1107         (Global_symbol_visitor_opd::operator()): Likewise.
1108
1109 2013-03-04  Alan Modra  <amodra@gmail.com>
1110
1111         * testsuite/Makefile.am (final_layout_script.lds): Add .sbss.
1112         * testsuite/Makefile.in: Regenerate.
1113
1114 2013-03-01  Cary Coutant  <ccoutant@google.com>
1115
1116         Add dwp support for v2 DWARF package file format.
1117         * dwarf_reader.cc (Dwarf_info_reader::visit_type_unit): Add
1118         tu_length parameter.  Adjust all callers.
1119         * dwarf_reader.h (Dwarf_info_reader::visit_type_unit): Likewise.
1120         * dwp.cc: Include dwarf.h.
1121         (Section_bounds): New struct type.
1122         (Unit_set): New struct type.
1123         (Dwo_file::Dwo_file): Initialize new data member.
1124         (Dwo_file::read_compunit_index, Dwo_file::read_typeunit_index):
1125         Combine and rename to...
1126         (Dwo_file::read_unit_index): ...this.
1127         (Dwo_file::sized_read_compunit_index)
1128         (Dwo_file::sized_read_typeunit_index): Combine and rename to...
1129         (Dwo_file::sized_read_unit_index): ...this.
1130         (Dwo_file::copy_section): Remove section_name, is_str_offsets
1131         parameters; add section_id parameter.
1132         (Dwo_file::add_cu_set, Dwo_file::add_tu_set): Combine and rename to...
1133         (Dwo_file::add_unit_set): ...this.
1134         (Dwo_file::shndx_map_): Remove.
1135         (Dwo_file::sect_offsets_): New data member.
1136         (Dwp_output_file::Dwp_output_file): Initialize new data members.
1137         (Dwp_output_file::add_section): Rename to...
1138         (Dwp_output_file::add_contribution): ...this.
1139         (Dwp_output_file::add_cu_set): Combine parameters into a struct.
1140         (Dwp_output_file::add_tu_set): Likewise.
1141         (Dwp_output_file::Contribution): New type.
1142         (Dwp_output_file::Section::contributions): New data member.
1143         (Dwp_output_file::Cu_or_tu_set): Remove.
1144         (Dwp_output_file::Section::Section): New ctor.
1145         (Dwp_output_file::Dwp_index::Shndx_pool): Remove.
1146         (Dwp_output_file::Dwp_index::Section_table): New type.
1147         (Dwp_output_file::Dwp_index::Dwp_index): Initialize new data members.
1148         (Dwp_output_file::Dwp_index::enter_set): Change type of "set"
1149         parameter.
1150         (Dwp_output_file::Dwp_index::shndx_pool): Remove.
1151         (Dwp_output_file::Dwp_index::shndx_pool_end): Remove.
1152         (Dwp_output_file::Dwp_index::section_table): New member function.
1153         (Dwp_output_file::Dwp_index::section_table_end): New member function.
1154         (Dwp_output_file::Dwp_index::shndx_pool_size): Remove.
1155         (Dwp_output_file::Dwp_index::section_table_rows): New member function.
1156         (Dwp_output_file::Dwp_index::section_table_cols): New member function.
1157         (Dwp_output_file::Dwp_index::shndx_pool_): Remove.
1158         (Dwp_output_file::Dwp_index::section_table_): New data member.
1159         (Dwp_output_file::Dwp_index::section_mask_): New data member.
1160         (Dwp_output_file::add_output_section): New member function.
1161         (Dwp_output_file::write_new_section): New member function.
1162         (Dwp_output_file::write_contributions): New member function.
1163         (Dwp_output_file::section_id_map_): New data member.
1164         (class Dwo_id_info_reader): Remove.
1165         (class Unit_reader): New class.
1166         (get_dwarf_section_name): New function.
1167         (Dwo_file::read_executable): Adjust initializations of class data.
1168         (Dwo_file::read): Add support for v2 package file format.
1169         (Dwo_file::read_unit_index): Likewise.
1170         (Dwo_file::sized_read_unit_index): Likewise.
1171         (Dwo_file::copy_section): Likewise.
1172         (Dwo_file::add_unit_set): Likewise.
1173         (Dwp_output_file::add_output_section): Likewise.
1174         (Dwp_output_file::add_contribution): Likewise.
1175         (Dwp_output_file::Dwp_index::find_or_add): Use row index to check
1176         for empty slot.
1177         (Dwp_output_file::Dwp_index::enter_set): Add support for v2 package
1178         file format.
1179         (Dwp_output_file::Dwp_index::grow): Use row index to check for empty
1180         slot.
1181         (Dwp_output_file::initialize): Remove unused function.
1182         (Dwp_output_file::finalize): Add support for v2 package file format.
1183         (Dwp_output_file::write_index): Likewise.
1184         * gdb-index.cc (Gdb_index_info_reader::visit_type_unit): Adjust
1185         function prototype.
1186
1187 2013-03-01  Cary Coutant  <ccoutant@google.com>
1188
1189         * dwarf_reader.cc (Dwarf_info_reader::check_buffer): Move
1190         function into class definition in header file.
1191         (Dwarf_info_reader::warn_corrupt_debug_section): New function.
1192         * dwarf_reader.h (Dwarf_info_reader::warn_corrupt_debug_section):
1193         New function.
1194         (Dwarf_info_reader::check_buffer): Move here from .cc file.
1195
1196 2013-02-28  Alan Modra  <amodra@gmail.com>
1197
1198         * target.h (Target::plt_fde_location, do_plt_fde_location): Declare.
1199         * target.cc (Target::do_plt_fde_location): New function.
1200         * ehframe.h (class FDE): Add post_map field to u_.from_linker,
1201         accessor function, and constructor param.
1202         (struct Post_fde, Post_fdes): Declare.
1203         (Cie::write): Add post_fdes param.
1204         * ehframe.cc (Fde::write): Use plt_fde_location.
1205         (struct Post_fde): Define.
1206         (Cie::write): Stash FDEs added post merge mapping.
1207         (Eh_frame::add_ehframe_for_plt): Assert no new CIEs after mapping.
1208         Adjust Fde constructor call.  Bump final_data_size_ for post map FDEs.
1209         (Eh_frame::do_sized_write): Arrange to write post map FDES after
1210         other FDEs.
1211         * powerpc.cc (Target_powerpc::do_plt_fde_location): New function.
1212         (Target_powerpc::has_glink): New function.
1213         (Target_powerpc::do_relax): Add eh_frame info for stubs.
1214         (struct Eh_cie, eh_frame_cie, glink_eh_frame_fde_64,
1215         glink_eh_frame_fde_32, default_fde): New data.
1216         (Stub_table::eh_frame_added_): New var.
1217         (Stub_table::find_long_branch_entry, stub_address, stub_offset):
1218         Make const.
1219         (Stub_table::add_eh_frame): New function.
1220         (Output_data_glink::add_eh_frame): New function.
1221         (Target_powerpc::make_glink_section): Call add_eh_frame.
1222
1223 2013-02-15  Ian Lance Taylor  <iant@google.com>
1224
1225         * options.h (DEFINE_uint64_alias): Define.
1226         (class General_options): Add -Ttext-segment as an alias for
1227         -Ttext.
1228
1229 2013-02-15  Alan Modra  <amodra@gmail.com>
1230
1231         * powerpc.cc (Stub_table::plt_off): New function, extracted from..
1232         (Stub_table::do_write): ..here, two places.
1233         (Stub_table::plt_call_size): Use it here too.
1234
1235 2013-02-11  Ian Lance Taylor  <iant@google.com>
1236
1237         * descriptors.cc (Descriptors::close_all): New function.
1238         * descriptors.h (class Descriptors): Declare close_all.
1239         (close_all_descriptors): New inline function.
1240         * plugin.cc: Include "descriptors.h".
1241         (Plugin_manager::cleanup): Call close_all_descriptors.
1242
1243 2013-02-06  Alan Modra  <amodra@gmail.com>
1244
1245         * README: Update coding style link.
1246
1247 2013-01-28  Cary Coutant  <ccoutant@google.com>
1248
1249         * dwp.cc (File_list): New typedef.
1250         (Dwo_name_info_reader): New class.
1251         (Dwo_id_info_reader::Dwo_id_info_reader): Remove unused parameters.
1252         (Dwo_id_info_reader::visit_top_die): Remove unused member function.
1253         (Dwo_file::~Dwo_file): Delete input_file_ after obj_.
1254         (Dwo_file::read_executable): New function.
1255         (Dwo_file::read): Move common setup code to ...
1256         (Dwo_file::make_object): ... here.
1257         (dwp_options): Add --exec/-e.
1258         (usage): Likewise.
1259         (main): Likewise.
1260
1261 2013-01-24  Sriraman Tallam  <tmsriram@google.com>
1262
1263         * layout.cc (Layout::layout): Check for option text_reorder.
1264         (Layout::make_output_section): Ditto.
1265         * options.h (text_reorder): New option.
1266         * output.cc (Input_section_sort_compare): Remove special ordering
1267         of section names.
1268         (Output_section::
1269          Input_section_sort_section_name_special_ordering_compare::
1270          operator()): New function.
1271         (Output_section::sort_attached_input_sections): Use new sort function
1272         for .text.
1273         * output.h (Input_section_sort_section_name_special_ordering_compare):
1274         New struct.
1275         * testsuite/Makefile.am (text_section_grouping): Test option
1276         --no-text-reorder
1277         * testsuite/Makefile.in: Regenerate.
1278         * testsuite/text_section_grouping.sh: Check order of functions without
1279         default text reordering.
1280
1281 2013-01-18  Mike Frysinger  <vapier@gentoo.org>
1282
1283         * options.h (General_options): Change default to true for new_dtags.
1284
1285 2013-01-18  Mike Frysinger  <vapier@gentoo.org>
1286
1287         * layout.cc (Layout::finish_dynamic_section): Only add DT_RPATH
1288         when enable_new_dtags is false.  Only add DT_RUNPATH when
1289         enable_new_dtags is true.
1290
1291 2013-01-17  Serge Pavlov  <serge.v.pavlov@gmail.com>
1292
1293         * powerpc.cc (Stub_table::find_plt_call_entry): Make types
1294         used in declaration and definition consistent.
1295         (Target_powerpc::symval_for_branch): Ditto.
1296
1297 2013-01-16  Sriraman Tallam  <tmsriram@google.com>
1298
1299         * testsuite/plugin_final_layout.cc: Fix comment.
1300
1301 2013-01-16  Sriraman Tallam  <tmsriram@google.com>
1302
1303         * layout.cc (Layout::layout): Do not do default sorting for
1304         text sections when section ordering is specified.
1305         (make_output_section): Ditto.
1306         * testsuite/plugin_final_layout.cc: Name the function sections
1307         to catch reordering issues.
1308
1309 2013-01-15  Alan Modra  <amodra@gmail.com>
1310
1311         * powerpc.cc (Target_powerpc::do_relax): Default shared libs to
1312         plt-thread-safe.
1313
1314 2013-01-15  Alan Modra  <amodra@gmail.com>
1315
1316         * testsuite/Makefile.am (final_layout_script.lds): Handle .got section.
1317         * testsuite/Makefile.in: Regenerate.
1318
1319 2013-01-14  Alan Modra  <amodra@gmail.com>
1320
1321         * testsuite/Makefile.am (MOSTLYCLEANFILES): Add various output files.
1322         * testsuite/Makefile.in: Regenerate.
1323
1324 2013-01-11  Pavel Chupin  <pavel.v.chupin@intel.com>
1325
1326         PR bfd/14430
1327         Fix mingw gold build with plugins enabled
1328         * Makefile.am: Replace -ldl with @DLOPEN_LIBS@.
1329         * configure.ac: Export DLOPEN_LIBS and add headers check.
1330         * plugin.cc: Handle non-dlfcn case.
1331         * Makefile.in: Regenerate.
1332         * config.in: Regenerate.
1333         * configure: Regenerate.
1334         * testsuite/Makefile.in: Regenerate.
1335
1336 2013-01-09  Sriraman Tallam  <tmsriram@google.com>
1337
1338         * output.h (sort_attached_input_sections): Change to be public.
1339         * script-sections.cc
1340         (Output_section_definition::set_section_addresses): Sort
1341         attached input sections according to section order before linker
1342         script assigns section addresses.
1343         (Orphan_output_section::set_section_addresses): Sort
1344         attached input sections according to section order before linker
1345         script assigns section addresses.
1346         * Makefile.am (final_layout.sh): Use a simple linker script to
1347         check if section ordering still works.
1348         * Makefile.in: Regenerate.
1349
1350 2013-01-09  Ben Cheng  <bccheng@google.com>
1351
1352         * arm.cc (Target_arm::attributes_accept_div): New function.
1353         (Target_arm::attributes_forbid_div): New function.
1354         (Target_arm::merge_object_attributes): Merge the Tag_DIV_use
1355         attribute using the same new functions as what bfd/elf32_arm.c
1356         does.
1357
1358 2013-01-07  Cary Coutant  <ccoutant@google.com>
1359
1360         PR gold/14993
1361         * output.cc (Output_section::add_input_section): For incremental
1362         updates, don't track input sections that are allocated from patch
1363         space.
1364
1365 2013-01-07  H.J. Lu  <hongjiu.lu@intel.com>
1366             Ian Lance Taylor  <iant@google.com>
1367
1368         PR gold/14897
1369         * configure.ac (--enable-ld): Removed.
1370         (install_as_default): Set to yes only for --enable-gold=default
1371         or --disable-ld.
1372         * configure: Regenerated.
1373
1374 2013-01-07  H.J. Lu  <hongjiu.lu@intel.com>
1375
1376         * options.h (General_options): Add -fuse-ld= for GCC linker
1377         option compatibility.
1378
1379 2013-01-04  Cary Coutant  <ccoutant@google.com>
1380
1381         * configure.ac: Fix typo restoring CXXFLAGS.
1382         * configure: Regenerate.
1383
1384 2013-01-04  Cary Coutant  <ccoutant@google.com>
1385
1386         * testsuite/Makefile.am (CXXLINK_S): New macro.
1387         (debug_msg_so.err, debug_msg_ndebug.err): Use CXXLINK_S.
1388         * testsuite/Makefile.in: Regenerate.
1389
1390 2013-01-02  H.J. Lu  <hongjiu.lu@intel.com>
1391
1392         * version.cc (print_version): Update copyright year to 2013.
1393
1394 2012-12-20  Ian Lance Taylor  <iant@google.com>
1395
1396         * layout.cc (Layout::special_ordering_of_input_section): New
1397         function.
1398         (Layout::layout): If input section requires special ordering, must
1399         sort input sections.
1400         (Layout::make_output_section): May sort .text input sections.
1401         (Layout::is_section_name_prefix_grouped): Remove.
1402         * layout.h (class Layout): Declare
1403         special_ordering_of_input_section.  Don't declare
1404         is_section_name_prefix_grouped.
1405         * output.cc (Output_section::add_input_section): Revert last
1406         change.
1407         (Output_section::Input_section_sort::match_file_name): Don't crash
1408         if called on output section data.
1409         (Output_section::Input_section_sort_compare): Sort based on
1410         special ordering.
1411         (Output_section::Input_section_sort_section_order_index_compare):
1412         Revert last patch.
1413         (Output_section::sort_attached_input_sections): Likewise.
1414
1415 2012-12-18  Sriraman Tallam  <tmsriram@google.com>
1416
1417         * layout.cc (Layout::is_section_name_prefix_grouped): New function.
1418         * layout.h (Layout::is_section_name_prefix_grouped): New function.
1419         * output.cc (Output_section::add_input_section): Check if section
1420         name contains special prefix.  Keep input sections to sort such
1421         sections.
1422         (Output_section::Input_section_sort_section_order_index_compare
1423          ::operator()): Group sections according to prefixes.
1424         (Output_section::sort_attached_input_sections): Add condition to
1425         Input_section_entry constructor call.
1426         * testsuite/Makefile.am (text_section_grouping): New test.
1427         * testsuite/Makefile.in: Regenerate.
1428         * testsuite/text_section_grouping.cc: New file.
1429         * testsuite/text_section_grouping.sh: New file.
1430
1431 2012-12-17  Nick Clifton  <nickc@redhat.com>
1432
1433         * Makefile.am: Add copyright notice.
1434         * NEWS: Likewise.
1435         * README: Likewise.
1436         * configure.ac: Likewise.
1437         * ftruncate.c: Likewise.
1438         * Makefile.in: Regenerate.
1439
1440 2012-12-14  Cary Coutant  <ccoutant@google.com>
1441
1442         * testsuite/Makefile.am (exception_separate_shared_12_test): Add
1443         --no-as-needed flag.
1444         (exception_separate_shared_12_test): Likewise.
1445         (incremental_copy_test): Likewise.
1446         * testsuite/Makefile.in: Regenerate.
1447
1448 2012-12-14  Cary Coutant  <ccoutant@google.com>
1449
1450         * dwp.cc (Dwp_output_file::add_cu_set): Check for duplicate CUs.
1451         (Dwp_output_file::Dwp_index::enter_set): Add assert.
1452
1453 2012-12-12  Alan Modra  <amodra@gmail.com>
1454
1455         * powerpc.cc (class Track_tls): New.
1456         (class Relocate, class Scan): Inherit Track_tls.
1457         (Target_powerpc::Scan::local, global): Track tls optimization
1458         and avoid creating plt entry for __tls_get_addr if all uses
1459         are optimized away.
1460         (Target_powerpc::Relocate::relocate): Update to use Track_tls.
1461
1462 2012-12-12  Alan Modra  <amodra@gmail.com>
1463
1464         * options.h (General_options): Add --toc-sort/--no-toc-sort.
1465         Replace no_toc_optimize with toc_optimize.
1466         * output.h (Output_section::input_sections): Provide non-const variant.
1467         * powerpc.cc (Powerpc_relobj::has_small_toc_reloc_,
1468         set_has_small_toc_reloc, has_small_toc_reloc): New variable and
1469         accessors.
1470         (Target_powerpc::Scan::local, global): Call set_has_small_toc_reloc.
1471         (class Sort_toc_sections): New.
1472         (Target_powerpc::do_finalize_sections): Sort toc sections.
1473         (Target_powerpc::Relocate::relocate): Update toc_optimize test.
1474
1475 2012-12-10  Roland McGrath  <mcgrathr@google.com>
1476
1477         * testsuite/binary_unittest.cc (read_all): New function.
1478         (Sized_binary_test): Use it instead of ::read.
1479         * fileread.cc (do_read): Don't assume pread always reads the whole
1480         amount in a single call.
1481
1482 2012-12-10  Alan Modra  <amodra@gmail.com>
1483
1484         * powerpc.cc (Target_selector_powerpc::Target_selector_powerpc):
1485         Set EM_PPC64 or EM_PPC here.
1486         (Target_selector_powerpc::do_recognize): Delete.
1487
1488 2012-12-10  Alan Modra  <amodra@gmail.com>
1489
1490         * powerpc.cc (Powerpc_relobj::Powerpc_relobj): Init has14_ and
1491         stub_table_.
1492         (Target_powerpc::Branch_info::make_stub): Don't omit addend.
1493
1494 2012-12-07  Roland McGrath  <mcgrathr@google.com>
1495
1496         * testsuite/binary_unittest.cc (Sized_binary_test):
1497         Use open_descriptor rather than ::open.
1498
1499 2012-12-07  Alan Modra  <amodra@gmail.com>
1500
1501         * powerpc.cc (Stub_table::do_write): Delete redundant Address
1502         typedef and invalid_address constant.
1503         (Output_data_glink, Stub_table, Target_powerpc): Explicitly
1504         instantiate constants.
1505
1506 2012-12-06  Roland McGrath  <mcgrathr@google.com>
1507
1508         * configure.ac (HAVE_ZLIB): Use AM_ZLIB instead of AC_SEARCH_LIBS.
1509         Use $ac_cv_header_zlib_h = yes as the condition in AM_CONDITIONAL.
1510         * aclocal.m4: Regenerate.
1511         * configure: Regenerate.
1512         * Makefile.in: Regenerate.
1513         * testsuite/Makefile.in: Regenerate.
1514
1515 2012-12-07  Alan Modra  <amodra@gmail.com>
1516
1517         * options.h (General_options): Add no_toc_optimize.
1518         * powerpc.cc (ok_lo_toc_insn): New function.
1519         (Target_powerpc::Relocate::relocate): Optimize toc access sequences.
1520
1521 2012-12-06  Alan Modra  <amodra@gmail.com>
1522
1523         * options.h (General_options): Add plt_align, plt_static_chain,
1524         plt_thread_safe.  Update stub_group_size help text.
1525         * powerpc.cc (Target_powerpc::plt_thread_safe): New access function
1526         for new plt_thread_safe_ var.
1527         (use_plt_offset): Correct comments.
1528         (Target_powerpc::do_relax): Look for thread creation symbols to
1529         determine default plt_thread_safe value.  Clear plt call stubs
1530         as well as branch stubs each iteration.
1531         (add_2_2_11, add_12_12_11, bnectr_p4, cmpldi_2_0, xor_11_11_11): New
1532         insn constants.
1533         (l, hi, ha, write_insn): Move earlier.
1534         (Stub_table): Delete prev_size, add last_plt_size and last_branch_size.
1535         (Stub_table::clear_stubs): Rename from clear_long_branch_stubs, clear
1536         plt stubs too.
1537         (Stub_table::update_size): Adjust.
1538         (Stub_table::prev_size, set_prev_size): Delete.
1539         (Stub_table::stub_align): Let --plt-align affect result.
1540         (Stub_table::plt_call_size): Calculate sizes for various stubs.
1541         (Stub_table::branch_stub_size): Use last_plt_size in address calc.
1542         (Stub_table::add_plt_call_stub): Pass iterator to plt_call_size.
1543         (Stub_table::do_write): Support more stub variants.
1544
1545 2012-12-04  Alan Modra  <amodra@gmail.com>
1546
1547         * powerpc.cc (Powerpc_relobj::do_scan_relocs): Delete.
1548         (Target_powerpc::do_define_standard_symbols): New function.
1549
1550 2012-12-03  Alan Modra  <amodra@gmail.com>
1551
1552         * output.h: Formatting, whitespace.
1553
1554 2012-12-03  Alan Modra  <amodra@gmail.com>
1555
1556         * layout.h (Layout::get_executable_sections): Declare.
1557         * layout.cc (Layout::get_executable_sections): New function.
1558         * arm.cc (Target_arm::group_sections): Use it.
1559         (Arm_output_section::group_sections): Delete now redundant test.
1560         * output.cc (Output_reloc::Output_reloc): Add is_relative.
1561         param to handle relative relocs.
1562         * output.h (Output_reloc::Output_reloc <absolute reloc>): Likewise.
1563         (Output_data_reloc::add_absolute): Adjust.
1564         (Output_data_reloc::add_relative): New function.
1565         (Output_data::reset_data_size): New function.
1566         (Output_relaxed_input_section::set_relobj, set_shndx): New functions.
1567         (Output_section::set_addralign): New function.
1568         (Output_section::checkpoint_set_addralign): New function.
1569         (Output_section::clear_section_offsets_need_adjustment): New function.
1570         (Output_section::input_sections): Make public.
1571         * powerpc.cc (class Output_data_brlt_powerpc): New.
1572         (class Stub_table, class Stub_control): New.
1573         (Powerpc_relobj::has14_, set_has_14bit_branch, has_14bit_branch,
1574         stub_table_, set_stub_table, stub_table): New vectors and accessor
1575         functions.
1576         (Target_powerpc::do_may_relax, do_relax, push_branch,
1577         new_stub_table, stub_tables, brlt_section, group_sections,
1578         add_branch_lookup_table, find_branch_lookup_table,
1579         write_branch_lookup_table, make_brlt_section): New functions.
1580         (Target_powerpc::struct Sort_sections, class Branch_info): New.
1581         (Target_powerpc::brlt_section_, stub_tables_, branch_lookup_table_,
1582         branch_info_): New vars.
1583         (Target_powerpc::make_plt_entry, make_local_ifunc_plt_entry): Don't
1584         make call stubs here.
1585         (Output_data_glink): Remove all call stub handling from this class.
1586         (Target_powerpc::Scan::local, global): Save interesting branch
1587         relocs and relocs for ifunc.  Adjust calls to plt entry functions.
1588         (Target_powerpc::do_finalize_sections): Only make reg save/restore
1589         functions on final link.
1590         (Target_powerpc::Relocate::relocate): Adjust lookup of call stubs.
1591         Handle long branch destinations too.
1592         (Target_powerpc::do_dynsym_value, do_plt_address_for_global,
1593         do_plt_address_for_local): Adjust lookup of plt call stubs.
1594
1595 2012-11-30  Alan Modra  <amodra@gmail.com>
1596
1597         * powerpc.c (Target_powerpc::Scan::global): Don't emit relative
1598         relocs against protected symbols when building 32-bit shared libs.
1599
1600 2012-11-30  Alan Modra  <amodra@gmail.com>
1601
1602         * powerpc.cc (Target_powerpc::make_plt_section): Add symtab
1603         param.  Call got_section() to make .got.  Update all callers
1604         and their callers and so on.
1605
1606 2012-11-30  Alan Modra  <amodra@gmail.com>
1607
1608         * powerpc.cc (Powerpc_relobj::do_scan_relocs): Make STB_LOCAL
1609         _GLOBAL_OFFSET_TABLE_ rather than STB_WEAK.
1610         (Output_data_got_powerpc::make_header): Update _GLOBAL_OFFSET_TABLE_
1611         value if it already exists.
1612
1613 2012-11-19  H.J. Lu  <hongjiu.lu@intel.com>
1614
1615         PR gold/14858
1616         * x86_64.cc (Relocate::tls_ld_to_le): Support x32.
1617
1618 2012-11-14  Roland McGrath  <mcgrathr@google.com>
1619
1620         * arm.cc (Output_data_plt_arm_nacl::first_plt_entry): Use bic rather
1621         than bfc instruction for data sandboxing.
1622
1623 2012-11-08  Alan Modra  <amodra@gmail.com>
1624
1625         * po/POTFILES.in: Regenerate.
1626
1627 2012-11-05  Alan Modra  <amodra@gmail.com>
1628
1629         * configure.ac: Apply 2012-09-10 change to config.in here.
1630         * configure: Regenerate.
1631
1632 2012-11-05  Alan Modra  <amodra@gmail.com>
1633
1634         * powerpc.cc (Powerpc_relobj): Delete "Offset" typedef.
1635         (struct Opd_ent): Use "Address" rather than "Offset".
1636         (Output_data_got_powerpc::got_base_offset): Return Valtype.
1637         (Target_powerpc::got_section): Make public.
1638         (Target_powerpc::scan_relocs): Move code setting symbols..
1639         (Powerpc_relobj::do_scan_relocs): ..to here, new function.
1640         Create _SDA_BASE_ only when referenced.
1641
1642 2012-11-02  Roland McGrath  <mcgrathr@google.com>
1643
1644         * i386.cc (Target_i386::relocate_relocs): Remove extraneous typename
1645         from last change.
1646
1647 2012-11-01  Roland McGrath  <mcgrathr@google.com>
1648
1649         * target.h (Sized_target::relocate_relocs): Use Elf_Off
1650         for offset_in_output_section parameter.
1651         (Sized_target::relocate_special_relocatable): Likewise.
1652         * arm.cc (Target_arm::relocate_relocs): Likewise.
1653         (Target_arm::relocate_special_relocatable): Likewise.
1654         * i386.cc (Target_i386::relocate_relocs): Likewise.
1655         * powerpc.cc (Target_powerpc::relocate_relocs): Likewise.
1656         * sparc.cc (Target_sparc::relocate_relocs): Likewise.
1657         * target-reloc.h (relocate_relocs): Likewise.
1658         * testsuite/testfile.cc (Target_test): Likewise.
1659         * tilegx.cc (Target_tilegx::relocate_relocs): Likewise.
1660         * x86_64.cc (Target_x86_64::relocate_relocs): Likewise.
1661
1662         * system.h: Move inclusion of <clocale> to after <libintl.h> in
1663         [ENABLE_NLS] section, and separately at top of [!ENABLE_NLS] section.
1664
1665         * descriptors.cc (set_close_on_exec): Add ATTRIBUTE_UNUSED to the
1666         parameter, which is unused in the [!F_SETFD] case.
1667
1668         * dwarf_reader.cc (Sized_elf_reloc_mapper::symbol_section): Cast
1669         SYMNDX to off_t before comparing it to this->data_size().
1670         * output.cc (Output_symtab_xindex::endian_do_write): Likewise.
1671         * incremental.cc (Output_section_incremental_inputs::do_write):
1672         Cast GLOBAL_SYM_COUNT to off_t before comparing it to SYMTAB_SIZE.
1673
1674         * nacl.cc: Include "libiberty.h" for vasprintf declaration.
1675
1676 2012-10-30  Steve McIntyre  <steve.mcintyre@linaro.org>
1677
1678         * gold.cc (Target_arm::do_adjust_elf_header): Add the
1679         hard-float/soft-float ABI flag as appropriate for ET_DYN/ET_EXEC
1680         in EABI_VER5.
1681
1682 2012-10-29  Cary Coutant  <ccoutant@google.com>
1683
1684         * dwp.cc (usage): Add file and exit status parameters;
1685         add --help and --version options.
1686         (print_version): New function.
1687         (main): Add --help and --version options.
1688
1689 2012-10-25  H.J. Lu  <hongjiu.lu@intel.com>
1690
1691         * testsuite/Makefile.am (MOSTLYCLEANFILES): Add
1692         final_layout_sequence.txt.
1693         * testsuite/Makefile.in: Regenerated.
1694
1695 2012-10-25  H.J. Lu  <hongjiu.lu@intel.com>
1696
1697         * testsuite/Makefile.am (COMPILE1): New variable. Renamed from
1698         COMPILE generated by automake.
1699         (LINK1): Likewise.
1700         (CXXCOMPILE1): Likewise.
1701         (CXXLINK1): Likewise.
1702         (COMPILE): Strip out -Wp,-D_FORTIFY_SOURCE= from COMPILE1.
1703         (LINK): Likewise.
1704         (CXXCOMPILE): Likewise.
1705         (CXXLINK): Likewise.
1706         * testsuite/Makefile.in: Regenerated.
1707
1708 2012-10-25  H.J. Lu  <hongjiu.lu@intel.com>
1709
1710         * dwp.cc (Dwo_file::record_target_info): Issue a fatal error
1711         on bad fwrite return.
1712
1713 2012-10-25  H.J. Lu  <hongjiu.lu@intel.com>
1714
1715         * dwp.cc (Dwo_file::remap_str_offset): Use section_offset_type
1716         on val.
1717
1718 2012-10-23  Cary Coutant  <ccoutant@google.com>
1719
1720         * testsuite/Makefile.am (TEST_OBJCOPY): New macro.
1721         * testsuite/Makefile.in: Regenerate.
1722         * testsuite/dwp_test.h: New source file.
1723         * testsuite/dwp_test_1.cc: New source file.
1724         * testsuite/dwp_test_1.s: New source file.
1725         * testsuite/dwp_test_1.sh: New source file.
1726         * testsuite/dwp_test_1b.cc: New source file.
1727         * testsuite/dwp_test_1b.s: New source file.
1728         * testsuite/dwp_test_2.cc: New source file.
1729         * testsuite/dwp_test_2.s: New source file.
1730         * testsuite/dwp_test_2.sh: New source file.
1731         * testsuite/dwp_test_main.cc: New source file.
1732         * testsuite/dwp_test_main.s: New source file.
1733
1734 2012-10-23  Cary Coutant  <ccoutant@google.com>
1735
1736         * dwp.h: New header file.
1737         * dwp.cc: New source file.
1738         * gold.h: Move shared declarations to system.h.
1739         * system.h: New header file.
1740         * Makefile.am: Add dwp.
1741         * Makefile.in: Regenerate.
1742
1743 2012-10-23  Cary Coutant  <ccoutant@google.com>
1744
1745         * dwarf_reader.cc (Dwarf_ranges_table::read_range_list): Call
1746         Dwarf_info_reader::read_from_pointer.
1747         (Dwarf_pubnames_table::read_header): Likewise.
1748         (Dwarf_pubnames_table::next_name): Likewise.
1749         (Dwarf_die::read_attributes): Likewise.
1750         (Dwarf_die::skip_attributes): Likewise.
1751         (Dwarf_info_reader::read_from_pointer): New function template.
1752         * dwarf_reader.h (Dwarf_ranges_table): Add dwinfo_.
1753         (Dwarf_pubnames_table): Likewise.
1754         (Dwarf_info_reader::read_from_pointer): New function template.
1755         * gdb-index.cc (Gdb_index_info_reader): Adjust call to
1756         Dwarf_pubnames_table ctor.
1757
1758 2012-10-23  Cary Coutant  <ccoutant@google.com>
1759
1760         * dwarf_reader.cc (Dwarf_info_reader::do_parse): Use stored
1761         abbrev_shndx.
1762         * dwarf_reader.h (Dwarf_info_reader::Dwarf_info_reader): Initialize
1763         abbrev_shndx_.
1764         (Dwarf_info_reader::set_abbrev_shndx): New method.
1765         (Dwarf_info_reader::abbrev_shndx_): New data member.
1766
1767 2012-10-23  Cary Coutant  <ccoutant@google.com>
1768
1769         * dwarf_reader.cc (make_elf_reloc_mapper): Check size and endianness
1770         from object, not parameters.
1771         (Dwarf_info_reader::parse): Likewise.
1772         * object.h (Relobj::elfsize, Relobj::is_big_endian): New methods.
1773         (Relobj::do_elfsize, Relobj::do_is_big_endian): New methods.
1774         (Sized_relobj::do_elfsize, Sized_relobj::do_is_big_endian): New
1775         methods.
1776
1777 2012-10-23  Cary Coutant  <ccoutant@google.com>
1778
1779         * fileread.cc (Input_file::Input_file): New constructor.
1780         * fileread.h (class Input_file): Add new constructor.
1781
1782 2012-10-18  Alan Modra  <amodra@gmail.com>
1783
1784         PR gold/14727
1785         * object.cc (Relobj::is_section_name_included): Also match
1786         .sdata personality section.
1787
1788 2012-10-18  Alan Modra  <amodra@gmail.com>
1789
1790         * target-reloc.h (class Default_comdat_behavior): New, package up..
1791         (get_comdat_behaviour): ..this.
1792         (relocate_section): Add Relocate_comdat_behavior template arg,
1793         adjust code to suit.
1794         * arm.cc (Target_arm::relocate_section): Adjust to suit.
1795         (Target_arm::scan_reloc_section): Likewise.
1796         * i386.cc (Target_i386::relocate_section): Likewise.
1797         * sparc.cc (Target_sparc::relocate_section): Likewise.
1798         * tilegx.cc (Target_tilegx::relocate_section): Likewise.
1799         * x86_64.cc (Target_x86_64::relocate_section): Likewise.
1800         * powerpc.cc (class Relocate_comdat_behavior): New.
1801         (Target_powerpc::relocate_section): Don't zap opd relocs.  Supply
1802         gold::relocate_section with new template arg.
1803
1804 2012-10-18  Alan Modra  <amodra@gmail.com>
1805
1806         * powerpc.cc (Target_powerpc::Scan::local, global): Always emit
1807         dynamic relocs for GOT_TPREL got entries, without symbol if
1808         resolving locally.
1809         (Target_powerpc::do_gc_add_reference): Don't add for dynamic objects.
1810         (Target_powerpc::scan_relocs): Define _GLOBAL_OFFSET_TABLE_ early.
1811         (Target_powerpc::Relocate:relocate): REL32 reloc may be unaligned.
1812
1813 2012-10-17  Alan Modra  <amodra@gmail.com>
1814
1815         PR gold/14726
1816         * gold.cc (queue_middle_tasks): Call gc_mark_symbol on _init and _fini.
1817
1818 2012-10-16  Sriraman Tallam  <tmsriram@google.com>
1819
1820         * layout.cc (Layout::include_section): Keep sections marked
1821         SHF_EXCLUDE when doing relocatable links.
1822
1823 2012-10-16  Alan Modra  <amodra@gmail.com>
1824
1825         * powerpc.cc (Target_powerpc::define_save_restore_funcs): New func.
1826         (Target_powerpc::do_finalize_sections): Call it.
1827         (Output_data_save_res): New class and supporting functions.
1828         (Target_powerpc::symval_for_branch): Only look up .opd entry for
1829         normal symbols defined in object files.
1830
1831 2012-10-12  Alan Modra  <amodra@gmail.com>
1832
1833         * powerpc.cc (Powerpc_relobj::add_gc_mark, process_gc_mark): New.
1834         (struct Opd_ent): Make "discard" a bit field.  Add "gc_mark".
1835         (Target_powerpc::do_gc_mark_symbol): Delay marking function code
1836         section if scan_opd_relocs not yet called.
1837         (Target_powerpc::gc_process_relocs): Call process_gc_mark.
1838
1839 2012-10-12  Alan Modra  <amodra@gmail.com>
1840
1841         * powerpc.cc (Output_data_plt_powerpc::add_entry, add_ifunc_entry,
1842         add_local_ifunc_entry): Revert last change.
1843         (Target_powerpc::make_plt_entry, make_local_ifunc_plt_entry): Likewise.
1844
1845 2012-10-05  Alan Modra  <amodra@gmail.com>
1846
1847         * powerpc.cc (Target_powerpc::do_plt_address_for_local,
1848         do_plt_address_for_global): New functions.
1849         (Output_data_got_powerpc::do_write): Don't segfault when linking
1850         statically.
1851         (Output_data_plt_powerpc::add_entry, add_ifunc_entry,
1852         add_local_ifunc_entry): Return true on adding entry..
1853         (Target_powerpc::make_plt_entry): ..use to avoid unnecessary
1854         glink->add_entry call.  Remove unused symtab param.  Adjust calls.
1855         (Target_powerpc::make_local_ifunc_plt_entry): Likewise.
1856         (Target_powerpc::make_iplt_section): Remove symtab param.  Don't
1857         set up symbols here.
1858         (Target_powerpc::do_finalize_sections): Instead set up __rela_iplt
1859         syms here.  Do so even when no .iplt.  Don't segfault when linking
1860         statically.
1861         (Output_data_glink::add_entry, find_entry): Rearrange params.  Add
1862         new variants without reloc param.
1863         (Glink_sym_ent::Glink_sym_ent): Likewise.
1864         (Target_powerpc::Scan::reloc_needs_plt_for_ifunc): Accept any
1865         reloc when refs will resolve to plt call stub.
1866         (Target_powerpc::Scan::local): Correct ifunc handling.  Allow
1867         R_PPC_PLTREL24 to resolve locally.
1868         (Target_powerpc::Scan::global): Correct ifunc handling.
1869         (Target_powerpc::Relocate::relocate): Correct local sym glink
1870         lookup.  Don't destroy "value" when we have a plt call stub,
1871         and when checking plt call validity.
1872         (Target_powerpc::do_dynsym_value): Simplify.
1873
1874 2012-10-05  Alan Modra  <amodra@gmail.com>
1875
1876         * i386.cc (Output_data_plt_i386::address_for_global,
1877         address_for_local): Add plt offset to returned value.  Adjust uses.
1878         * sparc.cc (Output_data_plt_sparc::address_for_global,
1879         address_for_local): Likewise.
1880         * tilegx.cc (Output_data_plt_tilegx::address_for_global,
1881         address_for_local): Likewise.
1882         * x86_64.cc (Output_data_plt_x86_64::address_for_global,
1883         address_for_local): Likewise.
1884         * target.h (Target::plt_address_for_global, plt_address_for_local):
1885         Update comment.
1886         * output.cc (Output_reloc::symbol_value): Don't add plt offset here.
1887         (Output_data_got::Got_entry::write): Nor here.
1888         * output.h: Comment fix.
1889
1890 2012-10-02  Jiong Wang  <jiwang@tilera.com>
1891
1892         * tilegx.cc (Target_tilegx::do_finalize_sections): Adjust
1893         global_offset_table_ value for larget got.
1894         (Target_tilegx::Relocate::relocate): Handle adjusted got value.
1895
1896 2012-09-29  Alan Modra  <amodra@gmail.com>
1897
1898         * powerpc.cc (Target_powerpc::iplt_): New output section.
1899         (Target_powerpc::iplt_section, make_iplt_section,
1900         reloc_needs_plt_for_ifunc, make_local_ifunc_plt_entry): New functions.
1901         (Target_powerpc::make_plt_entry): Handle ifunc syms.
1902         Target_powerpc::plt_entry_count): Count iplt entries too.
1903         (Output_data_plt_powerpc::Output_data_plt_powerpc): Don't create
1904         reloc section in constructor.  New params.
1905         (Target_powerpc::make_plt_section): Create reloc section here instead.
1906         (Output_data_plt_powerpc::add_ifunc_entry, add_local_ifunc_entry): New
1907         functions.
1908         (Output_data_plt_powerpc::initial_plt_entry_size_, name_): New vars.
1909         (Output_data_glink::add_entry, find_entry): New functions to
1910         deal with local syms.
1911         (Glink_sym_ent): Add support for local syms.
1912         (Output_data_glink::do_write): Handle ifunc plt entries.
1913         (Target_powerpc::Scan::get_reference_flags): Handle more relocs.
1914         (Target_powerpc::Scan::local, global): Handle ifunc syms.
1915         (Target_powerpc::Relocate::relocate): Likewise.
1916         (Target_powerpc::do_dynsym_value): Use glink stub, not plt entry.
1917
1918 2012-09-25  Alan Modra  <amodra@gmail.com>
1919
1920         * object.h (Sized_relobj_file::adjust_local_symbol,
1921         do_adjust_local_symbol): New functions.
1922         * object.cc (Sized_relobj_file::do_count_local_symbols): Use the above.
1923         * powerpc.cc (Powerpc_relobj::do_adjust_local_symbol): New function.
1924         (Powerpc_relobj::scan_opd_relocs): Warn on unexpected opd relocs
1925         and irregular opd entry spacing.
1926         (Powerpc_relobj::do_read_relocs): Add opd size checks.
1927         (Global_symbol_visitor_opd): New functor.
1928         (Target_powerpc::do_finalize_sections): Omit global symbols defined
1929         on deleted opd entries.
1930
1931 2012-09-15  Jiong Wang  <jiwang@tilera.com>
1932
1933         * tilegx.cc: New file.
1934         * Makefile.am (TARGETSOURCES): Add tilegx.cc
1935         (ALL_TARGETOBJS): Add tilegx.$(OBJEXT)
1936         * configure.tgt: Add entries for tilegx*.
1937         * configure.ac: Likewise.
1938         * Makefile.in: Rebuild.
1939         * configure: Likewise.
1940         * testsuite/icf_safe_test.sh (arch_specific_safe_fold): Handle
1941         tilegx.
1942
1943 2012-09-13  Alan Modra  <amodra@gmail.com>
1944
1945         * target-reloc.h (scan_relocs): Call scan.local for relocs
1946         against symbols in discarded sections.  Pass is_discarded
1947         param.
1948         * arm.cc, * i386.cc, * sparc.cc, * x86_64.cc (Target_*::Scan::local):
1949         Add is_discarded param.
1950         * powerpc (Target_powerpc::Scan::local): Likewise.  Use
1951         is_discarded to flag opd entry as discarded.  Don't emit dyn
1952         relocs on such entries.
1953         (Target_powerpc::Scan::global): Similarly detect and handle
1954         such opd entries.
1955         (Powerpc_relobj): Replace opd_ent_shndx_ and opd_ent_off_ with
1956         opd_ent_.  Update all uses.
1957         (Powerpc_relobj::get_opd_discard, set_opd_discard): New functions.
1958         (Target_powerpc::relocate_section): Zero out discarded opd
1959         entry relocs.
1960
1961 2012-09-12  Ian Lance Taylor  <iant@google.com>
1962
1963         PR gold/14570
1964         * output.cc: Rename Output_data_got template parameter from size
1965         to got_size for all functions.  Compile all variants of
1966         Output_data_got.
1967         (Output_data_got::Got_entry::write): Correct use of size for
1968         symbol value.  Use local_is_tls rather than casting to
1969         Sized_relobj_file.
1970         * object.h (class Object): Add local_is_tls and do_local_is_tls.
1971         (class Sized_relobj_file): Add do_local_is_tls.
1972         * incremental.h (class Sized_relobj_incr): Add do_local_is_tls.
1973
1974 2012-09-11  Alan Modra  <amodra@gmail.com>
1975
1976         PR gold/14566
1977         * layout.cc (Layout::set_segment_offsets): When using
1978         common-page-size alignment, ensure we are on a new max-page-size
1979         page.
1980         * output.cc (Output_segment::set_section_addresses): Use
1981         abi_pagesize, not common_pagesize for relro boundary.
1982         (Output_segment::set_offset): Likewise.
1983
1984 2012-09-11  Alan Modra  <amodra@gmail.com>
1985
1986         * output.h (Output_data_got::add_global_tls, add_local_tls,
1987         add_local_tls_pair): New functions.
1988         (Output_data_got::add_local_pair_with_rel): Remove second
1989         reloc param.  Expand comment.
1990         (Output_data_got::Got_entry): Rename use_plt_offset_ to
1991         use_plt_or_tls_offset_, similarly for constructor param.
1992         (Output_data_got::Got_entry::write): Add got_index param.
1993         * output.cc (Output_data_got::add_global_tls, add_local_tls,
1994         add_local_tls_pair): New functions.
1995         (Output_data_got::Got_entry::write): Handle tls symbols
1996         with use_plt_or_tls_offset_ set specially.
1997         (Output_data_got::add_local_pair_with_rel): Only one reloc.
1998         (Output_data_got::do_write): Replace iterator with index, pass
1999         index to entry write function.
2000         * target.h (Target::tls_offset_for_local, tls_offset_for_global,
2001         do_tls_offset_for_local, do_tls_offset_for_global): New functions.
2002         * arm.cc (Target_arm::Scan::local): Update add_local_pair_with_rel
2003         call.
2004         * i386.cc (Target_i386::Scan::local): Likewise.
2005         * sparc.cc (Target_sparc::Scan::local): Likewise.
2006         * x86_64.cc (Target_x86_64::Scan::local): Likewise.
2007         * powerpc.cc (Target_powerpc::do_tls_offset_for_local,
2008         do_tls_offset_for_global): New functions.
2009         (Target_powerpc::Scan::local): Correct TLS relocations and got
2010         entry values.
2011         (Target_powerpc::Scan::global): Don't emit unnecessary
2012         dynamic relocations on TLS GOT entries.
2013
2014 2012-09-10  Matthias Klose  <doko@ubuntu.com>
2015
2016         * config.in: Disable sanity check for kfreebsd.
2017
2018 2012-09-10  Sterling Augustine  <saugustine@google.com>
2019
2020         * gdb-index.cc (Gdb_index::pubnames_read): New parameter.
2021         (Gdb_index::pubtypes_read): New parameter.
2022         (Gdb_index_info_reader::read_pubnames_and_pubtypes): Add parameters
2023         to calls.
2024         * gdb-index.h (Gdb_index): New fields pubnames_object_ and
2025         pubtypes_object_.
2026
2027 2012-09-09  Alan Modra  <amodra@gmail.com>
2028
2029         * target.h (Target::gc_mark_symbol, do_gc_mark_symbol): New functions.
2030         (Sized_target::gc_add_reference, do_gc_add_reference): New functions.
2031         * gc.h (gc_process_relocs): Call target gc_add_reference.
2032         * gold.cc (queue_middle_tasks): Use gc_mark_symbol on start sym.
2033         * symtab.cc (Symbol_table::gc_mark_undef_symbols): Use gc_mark_symbol.
2034         (Symbol_table::gc_mark_symbol): Call target gc_mark_symbol. Remove
2035         unnecessary cast.
2036         * powerpc.cc (Powerpc_relobj::get_opd_ent): Rearrange parameters
2037         to cater for when we don't need code offset.  Update use.
2038         (Powerpc_relobj::access_from_map_, opd_valid_): New vars.
2039         (Powerpc_relobj::access_from_map, add_reference, opd_valid,
2040         set_opd_valid): New functions.
2041         (Target_powerpc::do_gc_add_reference): New function.
2042         (Target_powerpc::gc_process_relocs): Call gc()->add_reference on
2043         stashed refs.
2044         (Target_powerpc::do_gc_mark_symbol): New function.
2045
2046 2012-09-06  Cary Coutant  <ccoutant@google.com>
2047
2048         * dwarf_reader.cc (Dwarf_die::read_attributes): Add
2049         DW_FORM_GNU_addr_index and DW_FORM_GNU_str_index.
2050         (Dwarf_die::skip_attributes): Likewise.
2051         * object.cc (Read_symbols_data::~Read_symbols_data): Update comment.
2052         * testsuite/gdb_index_test.cc (inline_func_1): New function.
2053         (main): Call it.
2054         * testsuite/gdb_index_test_comm.sh: Check index for inline function.
2055
2056 2012-09-05  H.J. Lu  <hongjiu.lu@intel.com>
2057
2058         * testsuite/script_test_3.t: Add .got.plt output section
2059         statement.
2060         * testsuite/script_test_4.t: Likewise.
2061
2062 2012-09-05  Alan Modra  <amodra@gmail.com>
2063
2064         * powerpc.cc (Powerpc_relocate_functions): Upcase enum values,
2065         update all uses and lose "enum" when using type.
2066
2067 2012-09-05  Alan Modra  <amodra@gmail.com>
2068
2069         * configure.ac (FN_PTRS_IN_SO_WITHOUT_PIC): False for powerpc.
2070         * configure: Regenerate.
2071         * testsuite/Makefile.am (final_layout.stdout): Pass --synthetic to nm.
2072         (plugin_final_layout.stdout): Likewise.
2073         (memory_test): Set page sizes to 0x1000.
2074         * testsuite/Makefile.in: Regenerate.
2075         * testsuite/discard_locals_test.sh: Add FIXME comment.
2076         * testsuite/justsyms_exec.c: Disable function test for powerpc64.
2077         * testsuite/pr14265.t: Add .got output section statement.
2078         * testsuite/script_test_2.t: Likewise.
2079         * testsuite/script_test_3.t: Likewise.
2080         * testsuite/script_test_4.t: Likewise.
2081         * testsuite/script_test_5.t: Likewise.
2082         * testsuite/script_test_6.t: Likewise.
2083         * testsuite/script_test_7.t: Likewise.
2084         * testsuite/script_test_9.t: Likewise.
2085
2086 2012-09-05  Alan Modra  <amodra@gmail.com>
2087
2088         * powerpc.cc (Powerpc_relobj::get_opd_ent): Make const.
2089         (Powerpc_relocate_functions::Status): New typedef.
2090         (Target_powerpc::Scan::get_reference_flags): Handle more relocs.
2091         (Target_powerpc::Scan::local): Handle REL64.
2092         (Target_powerpc::Scan::global): Likewise, and dynamic relocs
2093         for REL32 and REL64.
2094         (Target_powerpc::symval_for_branch): New function, extracted from..
2095         (Target_powerpc::Relocate::relocate): ..here.  Correct plt call
2096         checks.  Report overflow errors.
2097
2098 2012-09-05  Alan Modra  <amodra@gmail.com>
2099
2100         * object.h (Sized_relobj_file::emit_relocs): Delete.
2101         (Sized_relobj_file::emit_relocs_reltype): Delete.
2102         * reloc.cc (Sized_relobj_file::do_relocate_sections): Call target
2103         relocate_relocs for --emit-relocs.
2104         (Sized_relobj_file::emit_relocs, emit_relocs_reltype): Delete.
2105         * output.h: Update comment.
2106         (Output_segment::first_section): New function.
2107         (Output_segment::first_section_load_address): Use first_section.
2108         * output.cc (Output_segment::first_section): New function extracted..
2109         (Output_segment::first_section_load_address): ..from here.  Delete.
2110         * target-reloc.h (relocate_for_relocatable): Rename to relocate_relocs.
2111         * target.h (Sized_target::relocate_for_relocatable): Likewise.
2112         * arm.cc (Target_arm::relocate_for_relocatable): Likewise, and
2113         adjust call to target.h function.
2114         * i386.cc (Target_i386): Likewise.
2115         * sparc.cc (Target_sparc): Likewise.
2116         * x86_64.cc (Target_x86_64): Likewise.
2117         * powerpc.cc (Target_powerpc): Likewise.
2118         (Target_powerpc::Scan::local, global): Handle R_POWERPC_TLS.  Ensure
2119         first tls section has section symbol for optimised local dynamic
2120         output relocs.
2121         (Target_powerpc::Relocate::relocate): Correct local dynamic value.
2122         (Target_powerpc::relocate_relocs): Adjust relocs emitted for
2123         optimised tls code.
2124         * testsuite/testfile.cc (Target_test::relocate_for_relocatable):
2125         Rename to relocate_relocs.  Update error message.
2126
2127 2012-09-04  Andreas Schwab  <schwab@linux-m68k.org>
2128
2129         * powerpc.cc (do_make_elf_object): Allow ET_EXEC files with
2130         --just-symbols.
2131
2132 2012-08-31  Alan Modra  <amodra@gmail.com>
2133
2134         * powerpc.cc (Powerpc_relobj): Add and use Address typedef.
2135         (Powerpc_relobj::toc_base_offset): New stub function.
2136         (Target_powerpc): Add tp_offset, dtp_offset.  Rename
2137         got_mod_index_offset to tlsld_got_offset.  Update all refs.
2138         (Target_powerpc::Relocate::enum skip_tls): New.
2139         (Target_powerpc::call_tls_get_addr_): New var.
2140         (Target_powerpc::is_branch_reloc): Move to file scope.
2141         (Target_powerpc::relocate_tls, optimize_tls_reloc): Delete.
2142         (Target_powerpc::optimize_tls_gd, optimize_tls_ld, optimize_tls_ie):
2143         New functions.
2144         (Target_powerpc::enum Got_type): Delete old values, add new ones.
2145         (powerpc_info): Correct common_pagesize for ppc64.
2146         (at_tls_transform, needs_dynamic_reloc, use_plt_offset): New functions.
2147         (Powerpc_relocate_functions): Add overflow check enums and functions.
2148         Add non-shift version of rela, rela_ua.  Delete all rel public
2149         functions.  Delete addr16_lo.  Add addr64, addr64_u, addr32,
2150         addr32_u, addr24, addr16_u, addr16_hi2, addr16_ha2, addr16_hi3,
2151         addr16_ha3, addr14 functions.
2152         (Output_data_got_powerpc::add_constant_pair): New function.
2153         (Output_data_got_powerpc::got_base_offset): Likewise.
2154         (Output_data_got_powerpc::do_write): Correct 64-bit got header.
2155         (instruction constants): Sort, add some more.
2156         (Output_data_glink::do_write): Add and use Address typedef.  Use
2157         object->toc_base_offset() stub for 64-bit.
2158         (Target_powerpc::tlsld_got_offset): Use add_constant_pair.
2159         (Target_powerpc::Scan::get_reference_flags): Handle more relocs.
2160         (Target_powerpc::Scan::local, global): Emit relative dynamic reloc
2161         for R_PPC64_TOC.  Handle more relocs.  Generate got entries for TLS.
2162         Always treat .opd relocs as against locally defined symbol.
2163         Correct condition for RELATIVE relocs.
2164         (Target_powerpc::do_finalize_sections): Test for NULL sections.
2165         (Target_powerpc::Relocate::relocate): Use plt call stub as value
2166         for 32-bit syms with a plt entry.  Correct ppc64 toc base
2167         calculations.  Handle TLS relocs, and more.  Add overflow
2168         checking and adjust for Powerpc_relocate_functions changes.
2169         (Target_powerpc::relocate_for_relocatable): Handle zero r_sym.
2170         Reinstate --emit-relocs code with FIXME.
2171
2172 2012-08-30  Alan Modra  <amodra@gmail.com>
2173
2174         * layout.cc (Layout::set_segment_offsets): Set p_align to
2175         abi_pagesize, not common_pagesize.
2176         (Layout::relaxation_loop_body): Similarly use abi_pagesize
2177         to determine whether file header can go in segment.
2178
2179 2012-08-30  Alan Modra  <amodra@gmail.com>
2180
2181         * output.h (Output_reloc::Output_reloc <output section>): Add
2182         is_relative param.  Adjust calls.
2183         (Output_reloc::add_output_section_relative): New functions.
2184         * output.cc (Output_reloc::Output_reloc <output section>): Handle
2185         is_relative.
2186         (Output_reloc::symbol_value): Handle SECTION_CODE.
2187
2188 2012-08-24  Sriraman Tallam  <tmsriram@google.com>
2189
2190         * gold.cc (queue_middle_tasks): Call layout again when unique
2191         segments for sections is desired.
2192         * layout.cc (Layout::Layout): Initialize new members.
2193         (Layout::get_output_section_flags): New function.
2194         (Layout::choose_output_section): Call get_output_section_flags.
2195         (Layout::layout): Make output section for mapping to a unique segment.
2196         (Layout::insert_section_segment_map): New function.
2197         (Layout::attach_allocated_section_to_segment): Make unique segment for
2198         output sections marked so.
2199         (Layout::segment_precedes): Check for unique segments when sorting.
2200         * layout.h (Layout::Unique_segment_info): New struct.
2201         (Layout::Section_segment_map): New typedef.
2202         (Layout::insert_section_segment_map): New function.
2203         (Layout::get_output_section_flags): New function.
2204         (Layout::is_unique_segment_for_sections_specified): New function.
2205         (Layout::set_unique_segment_for_sections_specified): New function.
2206         (Layout::unique_segment_for_sections_specified_): New member.
2207         (Layout::section_segment_map_): New member.
2208         * object.cc (Sized_relobj_file<size, big_endian>::do_layout):
2209         Rename is_gc_pass_one to is_pass_one.
2210         Rename is_gc_pass_two to is_pass_two.
2211         Rename is_gc_or_icf to is_two_pass.
2212         Check for which pass based on whether symbols data is present.
2213         Make it two pass when unique segments for sections is desired.
2214         * output.cc (Output_section::Output_section): Initialize new
2215         members.
2216         * output.h (Output_section::is_unique_segment): New function.
2217         (Output_section::set_is_unique_segment): New function.
2218         (Output_section::is_unique_segment_): New member.
2219         (Output_section::extra_segment_flags): New function.
2220         (Output_section::set_extra_segment_flags): New function.
2221         (Output_section::extra_segment_flags_): New member.
2222         (Output_section::segment_alignment): New function.
2223         (Output_section::set_segment_alignment): New function.
2224         (Output_section::segment_alignment_): New member.
2225         (Output_segment::Output_segment): Initialize is_unique_segment_.
2226         (Output_segment::is_unique_segment): New function.
2227         (Output_segment::set_is_unique_segment): New function.
2228         (Output_segment::is_unique_segment_): New member.
2229         * plugin.cc (allow_unique_segment_for_sections): New function.
2230         (unique_segment_for_sections): New function.
2231         (Plugin::load): Add new functions to transfer vector.
2232         * Makefile.am (plugin_final_layout.readelf.stdout): Add readelf output.
2233         * Makefile.in: Regenerate.
2234         * testsuite/plugin_final_layout.sh: Check if unique segment
2235         functionality works.
2236         * testsuite/plugin_section_order.c (onload): Check if new interfaces
2237         are available.
2238         (allow_unique_segment_for_sections): New global.
2239         (unique_segment_for_sections): New global.
2240         (claim_file_hook): Call allow_unique_segment_for_sections.
2241         (all_symbols_read_hook): Call unique_segment_for_sections.
2242
2243 2012-08-22  Cary Coutant  <ccoutant@google.com>
2244
2245         * layout.cc (Layout::include_section): Don't assert on GROUP
2246         sections with --emit-relocs.
2247
2248 2012-08-21  Cary Coutant  <ccoutant@google.com>
2249
2250         * symtab.cc (Symbol_table::gc_mark_undef_symbols): Don't assert
2251         if --export-dynamic-symbol names an undef symbol.
2252
2253 2012-08-18  Alan Modra  <amodra@gmail.com>
2254
2255         * powerpc.cc: Formatting and white space.
2256         (Powerpc_relobj): Rename got2_section_ to special_.
2257         Add opd_ent_shndx_ and opd_ent_off_ vectors.
2258         (Powerpc_relobj::opd_shndx, init_opd, get_opd_ent, set_opd_ent,
2259         scan_opd_relocs, do_read_relocs, opd_ent_ndx): New functions.
2260         (Target_powerpc): Add Address typedef and invalid_address.  Use
2261         throughout.
2262         (Target_powerpc::is_branch_reloc): New function.
2263         (Powerpc_relocate_functions): Add Address typedef, use throughout.
2264         (Powerpc_relocate_functions:rela, rela_ua): Correct type used
2265         for dst_mask, value and addend.
2266         (Powerpc_relobj::do_find_special_sections): Find .opd for 64-bit.
2267         (ld_2_1, cror_15_15_15, cror_31_31_31): New insn constants.
2268         (Output_data_glink::do_write): Correct toc base.  Don't try to use
2269         uint16_t for 24-bit offset.  Use get_output_section_offset and
2270         check return.
2271         (Target_powerpc::Scan::local): Handle more relocs.
2272         (Target_powerpc::do_finalize_sections): Set up DT_PPC64_GLINK.
2273         (Target_powerpc::Relocate::relocate): Correct toc base calculation.
2274         Plug in toc restoring insn after plt calls.  Translate branches
2275         to function descriptor symbols to corresponding entry point.
2276         (Target_powerpc::relocate_for_relocatable): Check return from
2277         get_output_section_offset.
2278         * symtab.h: Comment typo.
2279
2280 2012-08-14  Ian Lance Taylor  <iant@google.com>
2281
2282         * x86_64.cc (Target_x86_64::Scan::global): Fix erroneous call to
2283         unsupported_relocal_local to call unsupported_reloc_global.
2284
2285 2012-08-14  Nick Clifton  <nickc@redhat.com>
2286
2287         PR ld/14265
2288         * script-sections.cc (Sections_element::output_section_name): Add
2289         keep return parameter.
2290         (Output_section_element::match_name): Add keep return parameter.
2291         Return the value of the keep_ member.
2292         * script-sections.h (class Output_section): Update
2293         output_section_name prototype.
2294         * layout.cc (Layout::keep_input_section): New public member
2295         function.
2296         (Layout::choose_output_section): Pass keep parameter to
2297         output_section_name.
2298         * layout.h (class Layout): Add keep_input_section.
2299         * object.cc (Sized_relobj_file::do_layout): Check for kept input
2300         sections.
2301         * testsuite/Makefile.am: Add a test.
2302         * testsuite/Makefile.in: Regenerate.
2303         * testsuite/pr14265.c: Source file for the test.
2304         * testsuite/pr14265.t: Linker script for the test.
2305         * testsuite/pr14265.sh: Shell script for the test.
2306
2307 2012-08-14  Alan Modra  <amodra@gmail.com>
2308
2309         * target.h (Target::output_section_name): New function.
2310         (Target::do_output_section_name): New function.
2311         * layout.cc (Layout::choose_output_section): Call the above.
2312         * powerpc.cc (Target_powerpc::do_output_section_name): New function.
2313
2314 2012-08-14  Alan Modra  <amodra@gmail.com>
2315
2316         * powerpc.cc: Update for renamed R_PPC_REL16 relocs.
2317         (Output_data_got_powerpc::do_write): Don't rely on base class lookup
2318         for replace_constant call.
2319         (Output_data_plt_powerpc::do_print_to_mapfile): New function.
2320         (Output_data_glink::do_print_to_mapfile): New function.
2321         (Target_powerpc::Scan::local): Ignore R_PPC64_TOCSAVE.
2322         (Target_powerpc::Relocate::relocate): Likewise.
2323
2324 2012-08-14  Alan Modra  <amodra@gmail.com>
2325
2326         * powerpc.cc (Powerpc_relobj::set_got2_shndx): Delete.
2327         (Powerpc_relobj::do_find_special_sections): Don't use set_got2_shndx.
2328         (Output_data_glink::add_entry,find_entry): Remove shndx param.
2329         (class Glink_sym_ent): Rename from struct Glink_sym_ent.  Remove
2330         all references to shndx_.  Handle special case for R_PPC_PLTREL24
2331         here.
2332         (class Glink_sym_ent_hash): Rename from struct Glink_sym_ent_hash.
2333         (Output_data_glink::do_write): Retrieve got2_shdnx from object.
2334         (Target_powerpc::make_plt_entry): Don't special case R_PPC_PLTREL24
2335         here.
2336         (Target_powerpc::Scan::global): Nor on make_plt_entry call.
2337         (Target_powerpc::Relocate::relocate): Nor on glink->find_entry call.
2338
2339 2012-08-12  Alan Modra  <amodra@gmail.com>
2340
2341         * powerpc.cc: Whitespace fixes.  Wrap overly long lines.
2342         (glink insn constants): Use uint32_t.
2343         (Output_data_glink::add_entry): Use insert, not [] operator.
2344
2345 2012-08-11  Alan Modra  <amodra@gmail.com>
2346
2347         * object.h (Sized_relobj_file::find_shdr): New function.
2348         (Sized_relobj_file::find_special_sections): New function.
2349         * object.cc (Sized_relobj_file::find_shdr): New function.
2350         (Sized_relobj_file::find_eh_frame): Use find_shdr.
2351         (Sized_relobj_file::find_special_sections): New function, split out..
2352         (Sized_relobj_file::do_read_symbols): ..from here.
2353         * output.h (Output_data_got::replace_constant): New function.
2354         (Output_data_got::num_entries): New function.
2355         (Output_data_got::last_got_offset,set_got_size): Use num_entries.
2356         (Output_data_got::got_offset): Protected rather than private.
2357         (Output_data_got::replace_got_entry): New function.
2358         * output.cc (Output_data_got::replace_got_entry): New function.
2359         * powerpc.cc (class Powerpc_relobj): New.
2360         (class Powerpc_relocate_functions): Delete all psymval variants or
2361         convert to value,addend type.  Delete pcrela, pcrela_unaligned.
2362         Implement _ha functions using corresponding _hi function.
2363         (Powerpc_relobj::find_special_sections): New function.
2364         (Target_powerpc::do_make_elf_object): New function.
2365         (class Output_data_got_powerpc): New.
2366         (class Output_data_glink): New.
2367         (class Powerpc_scan_relocatable_reloc): New.
2368         Many more changes througout file.
2369
2370 2012-08-09  Nick Clifton  <nickc@redhat.com>
2371
2372         * po/vi.po: Updated Vietnamese translation.
2373
2374 2012-08-07  Ian Lance Taylor  <iant@google.com>
2375
2376         * layout.cc (Layout::add_target_dynamic_tags): If
2377         dynrel_includes_plt but no dyn_rel, emit dynamic reloc tags for
2378         plt_rel.
2379
2380 2012-07-30  Nick Clifton  <nickc@redhat.com>
2381
2382         * po/gold.pot: Updated template.
2383         * po/es.po: Updated Spanish translation.
2384
2385 2012-07-18  Cary Coutant  <ccoutant@google.com>
2386
2387         PR gold/14344
2388         * configure.ac: Add check for -gpubnames support.
2389         * configure: Regenerate.
2390         * testsuite/Makefile.am (gdb_index_test_1): Add check for -gpubnames
2391         support; force -gno-pubnames.
2392         (gdb_index_test_2, gdb_index_test_3): Add check for -gpubnames
2393         support.
2394         (gdb_index_test_4): New test.
2395         * testsuite/Makefile.in: Regenerate.
2396         * testsuite/gdb_index_test_1.sh: Refactor code into common file.
2397         * testsuite/gdb_index_test_2.sh: Likewise.
2398         * testsuite/gdb_index_test_3.sh: Don't look for space after colon.
2399         * testsuite/gdb_index_test_4.sh: New script.
2400         * testsuite/gdb_index_test_comm.sh: New script with common code;
2401         don't look for space after colon.
2402
2403 2012-07-16  Sriraman Tallam  <tmsriram@google.com>
2404
2405         * gold.cc (queue_middle_tasks): Update function order only after
2406         deferred objects due to plugins are processed.
2407
2408 2012-07-11  Ian Lance Taylor  <iant@google.com>
2409
2410         * arm.cc (Arm_relocate_functions::abs16): Remove unused typedef.
2411         (Arm_exidx_cantunwind::do_fixed_endian_write): Likewise.
2412         (Target_arm::scan_reloc_for_stub): Likewise.
2413         * common.cc (Symbol_table::do_allocate_commons_list): Likewise.
2414         * dwarf_reader.cc (Dwarf_die::skip_attributes): Likewise.
2415         * ehframe.cc (Eh_frame::do_add_ehframe_input_section): Likewise.
2416         * incremental.cc (Sized_incr_dynobj::do_add_symbols): Likewise.
2417         * powerpc.cc (Target_powerpc::relocate_tls): Likewise.
2418
2419 2012-07-10  Dodji Seketeli  <dodji@redhat.com>
2420             Ian Lance Taylor  <iant@google.com>
2421
2422         PR gold/14309
2423         * configure.ac: Test whether std::tr1::hash<off_t> works.
2424         * gold.h: Add a specialization for std::tr1::hash<off_t> if
2425         needed.
2426         * output.h (class Output_fill): Add virtual destructor.
2427         * configure, config.in: Rebuild.
2428
2429 2012-06-22  Roland McGrath  <mcgrathr@google.com>
2430
2431         * layout.cc (finalize): Define __ehdr_start symbol if applicable.
2432
2433 2012-06-12  Rafael Ávila de Espíndola <respindola@mozilla.com>
2434
2435         * plugin.cc (Plugin::load): Handle position independent executables.
2436
2437 2012-06-06  Cary Coutant  <ccoutant@google.com>
2438
2439         * layout.cc (gdb_sections): Remove ".debug_" prefixes,
2440         add .debug_macro.
2441         (lines_only_debug_sections): Likewise.
2442         (gdb_fast_lookup_sections): New static array.
2443         (is_gdb_debug_section): Rename formal parameter.
2444         (is_lines_only_debug_section): Likewise.
2445         (is_gdb_fast_lookup_section): New function.
2446         (Layout::include_section): Check for ".zdebug_" prefix; pass
2447         section name suffix to is_gdb_debug_section, et al.; check for
2448         fast-lookup sections when building .gdb_index.
2449         * options.h (--strip-debug-gdb): Update GDB version number.
2450
2451 2012-06-06  Cary Coutant  <ccoutant@google.com>
2452
2453         * configure.ac: Add check for fallocate.
2454         * configure: Regenerate.
2455         * config.in: Regenerate.
2456
2457         * options.h (class General_options): Add --mmap-output-file and
2458         --posix-fallocate options.
2459         * output.cc: (posix_fallocate): Remove; replace with...
2460         (gold_fallocate): New function.
2461         (Output_file::map_no_anonymous): Call gold_fallocate.
2462         (Output_file::map): Check --mmap-output-file option.
2463
2464 2012-06-05  Jing Yu  <jingyu@google.com>
2465
2466         * gold.h (textdomain): Add do {} to empty while(0).
2467         (bindtextdomain): Likewise.
2468
2469 2012-06-04  Cary Coutant  <ccoutant@google.com>
2470
2471         * dynobj.cc (Sized_dynobj::do_get_global_symbol_counts): Call
2472         has_dynsym_index.
2473
2474 2012-05-25  Sriraman Tallam  <tmsriram@google.com>
2475
2476         * symtab.cc (Symbol_table::define_special_symbol):
2477         Initialize *poldsym to prevent uninitialized variable errors.
2478
2479 2012-05-23  Cary Coutant  <ccoutant@google.com>
2480
2481         * layout.cc (Layout::section_name_mapping): Add rules to handle
2482         exact match on .data.rel.ro.local or .data.rel.ro.
2483         (Layout::output_section_name): Check for exact matches.
2484
2485 2012-05-23  Cary Coutant  <ccoutant@google.com>
2486
2487         * layout.cc (Layout::section_name_mapping): Match .data.rel.ro.*
2488         more carefully.
2489
2490 2012-05-22  Cary Coutant  <ccoutant@google.com>
2491
2492         * symtab.cc (Symbol::should_add_dynsym_entry): Check for relocatable
2493         object before exporting symbol.
2494
2495 2012-05-21  H.J. Lu  <hongjiu.lu@intel.com>
2496
2497         * testsuite/tls_test.cc: Include "config.h" first.
2498         * testsuite/tls_test_c.c: Likewise.
2499
2500 2012-05-17  Daniel Richard G.  <skunk@iskunk.org>
2501             Nick Clifton  <nickc@redhat.com>
2502
2503         PR 14072
2504         * configure.in: Add check that sysdep.h has been included before
2505         any system header files.
2506         * configure: Regenerate.
2507         * config.in: Regenerate.
2508
2509 2012-05-14  Cary Coutant  <ccoutant@google.com>
2510
2511         * layout.cc (Layout::make_output_section): Mark .tdata section
2512         as RELRO.
2513         * testsuite/relro_test.cc: Add a TLS variable.
2514
2515 2012-05-10  H.J. Lu  <hongjiu.lu@intel.com>
2516
2517         PR gold/14091
2518         * x86_64.cc (Target_x86_64::Scan::local): For x32, generate
2519         R_X86_64_RELATIVE64 instead of R_X86_64_RELATIVE in case of
2520         R_X86_64_64.
2521
2522 2012-05-08  Cary Coutant  <ccoutant@google.com>
2523
2524         * layout.cc (gdb_sections): Update GDB version, add .debug_addr.
2525         (lines_only_debug_sections): Likewise.
2526
2527 2012-05-02  Roland McGrath  <mcgrathr@google.com>
2528
2529         * nacl.cc: New file.
2530         * nacl.h: New file.
2531         * Makefile.am (CCFILES, HFILES): Add them.
2532         * Makefile.in: Regenerate.
2533         * i386.cc (Output_data_plt_i386_nacl): New class.
2534         (Output_data_plt_i386_nacl_exec): New class.
2535         (Output_data_plt_i386_nacl_dyn): New class.
2536         (Target_i386_nacl): New class.
2537         (Target_selector_i386_nacl): New class.
2538         (target_selector_i386): Use it instead of Target_selector_i386.
2539         * x86_64.cc (Output_data_plt_x86_64_nacl): New class.
2540         (Target_x86_64_nacl): New class.
2541         (Target_selector_x86_64_nacl): New class.
2542         (target_selector_x86_64, target_selector_x32): Use it instead of
2543         Target_selector_x86_64.
2544         * arm.cc (Output_data_plt_arm_nacl): New class.
2545         (Target_arm_nacl): New class.
2546         (Target_selector_arm_nacl): New class.
2547         (target_selector_arm, target_selector_armbe): Use it instead of
2548         Target_selector_arm.
2549
2550         * target-select.cc (select_target): Take new Input_file* and off_t
2551         arguments, pass them on to recognize method of selector.
2552         * object.cc (make_elf_sized_object): Update caller.
2553         * parameters.cc (parameters_force_valid_target): Likewise.
2554         * incremental.cc (make_sized_incremental_binary): Likewise.
2555         * target-select.h: Update decl.
2556         (Target_selector::recognize): Take new Input_file* argument,
2557         pass it on to do_recognize.
2558         (Target_selector::do_recognize): Take new Input_file* argument.
2559         * freebsd.h (Target_selector_freebsd::do_recognize): Likewise.
2560         * powerpc.cc (Target_selector_powerpc::do_recognize): Likewise.
2561         * sparc.cc (Target_selector_sparc::do_recognize): Likewise.
2562         * testsuite/testfile.cc (Target_selector::do_recognize): Likewise.
2563
2564         * target.h (Target::Target_info): New members isolate_execinstr
2565         and rosegment_gap.
2566         (Target::isolate_execinstr, Target::rosegment_gap): New methods.
2567         * arm.cc (Target_arm::arm_info): Update initializer.
2568         * i386.cc (Target_i386::i386_info): Likewise.
2569         * powerpc.cc (Target_powerpc::powerpc_info): Likewise.
2570         * sparc.cc (Target_sparc::sparc_info): Likewise.
2571         * x86_64.cc (Target_x86_64::x86_64_info): Likewise.
2572         * testsuite/testfile.cc (Target_test::test_target_info): Likewise.
2573         * layout.cc (Layout::attach_allocated_section_to_segment):
2574         Take new const Target* argument.  If target->isolate_execinstr(), act
2575         like --rosegment.
2576         (Layout::find_first_load_seg): Take new const Target* argument;
2577         if target->isolate_execinstr(), reject PF_X segments.
2578         (Layout::relaxation_loop_body): Update caller.
2579         (Layout::set_segment_offsets): If target->isolate_execinstr(),
2580         reset file offset to zero when we hit LOAD_SEG, and then do a second
2581         loop over the segments before LOAD_SEG to reassign offsets after
2582         addresses have been determined.  Handle target->rosegment_gap().
2583         (Layout::attach_section_to_segment): Take new const Target* argument;
2584         pass it to attach_allocated_section_to_segment.
2585         (Layout::make_output_section): Update caller.
2586         (Layout::attach_sections_to_segments): Take new const Target* argument;
2587         pass it to attach_section_to_segment.
2588         * gold.cc (queue_middle_tasks): Update caller.
2589         * layout.h (Layout): Update method decls with new arguments.
2590
2591         * arm.cc (Target_arm::Target_arm): Take optional argument for the
2592         Target_info pointer to use.
2593         (Target_arm::do_make_data_plt): New virtual method.
2594         (Target_arm::make_data_plt): New method that calls it.
2595         (Target_arm::make_plt_entry): Use it.
2596         (Output_data_plt_arm::Output_data_plt_arm): Take additional argument
2597         for the section alignment.
2598         (Output_data_plt_arm::do_first_plt_entry_offset): New abstract virtual
2599         method.
2600         (Output_data_plt_arm::first_plt_entry_offset): Call it.
2601         (Output_data_plt_arm::do_get_plt_entry_size): New abstract virtual
2602         method.
2603         (Output_data_plt_arm::get_plt_entry_size): Call it.
2604         (Output_data_plt_arm::do_fill_plt_entry): New abstract virtual method.
2605         (Output_data_plt_arm::fill_plt_entry): New method that calls it.
2606         (Output_data_plt_arm::do_fill_first_plt_entry): New abstract virtual
2607         method.
2608         (Output_data_plt_arm::fill_first_plt_entry): New method that calls it.
2609         (Output_data_plt_arm::set_final_data_size): Use get_plt_entry_size
2610         method instead of sizeof(plt_entry).
2611         (Output_data_plt_arm::add_entry): Likewise.
2612         Use first_plt_entry_offset method instead of sizeof(first_plt_entry).
2613         (Target_arm::first_plt_entry_offset): Call method on this->plt_ rather
2614         than static method.
2615         (Target_arm::plt_entry_size): Likewise.
2616         (Output_data_plt_arm::first_plt_entry, Output_data_plt_arm::plt_entry):
2617         Move to ...
2618         (Output_data_plt_arm_standard): ... here, new class.
2619         (Output_data_plt_arm::do_write): Move guts of PLT filling to...
2620         (Output_data_plt_arm_standard::do_fill_first_plt_entry): ... here ...
2621         (Output_data_plt_arm_standard::do_fill_plt_entry): ... and here.
2622
2623         * x86_64.cc (Output_data_plt_x86_64::Output_data_plt_x86_64):
2624         Take additional argument for the PLT entry size.
2625         (Output_data_plt_x86_64::get_tlsdesc_plt_offset):
2626         Use get_plt_entry_size method rather than plt_entry_size variable.
2627         (Output_data_plt_x86_64::reserve_slot): Likewise.
2628         (Output_data_plt_x86_64::do_adjust_output_section): Likewise.
2629         (Output_data_plt_x86_64::add_entry): Likewise.
2630         (Output_data_plt_x86_64::add_local_ifunc_entry): Likewise.
2631         (Output_data_plt_x86_64::address_for_global): Likewise.
2632         (Output_data_plt_x86_64::address_for_local): Likewise.
2633         (Output_data_plt_x86_64::set_final_data_size): Likewise.
2634         (Output_data_plt_x86_64::first_plt_entry_offset): Likewise.
2635         Make method non-static.
2636         (Output_data_plt_x86_64::do_get_plt_entry_size): New abstract virtual
2637         method.
2638         (Output_data_plt_x86_64::get_plt_entry_size): Just call that.
2639         (Output_data_plt_x86_64::do_add_eh_frame): New abstract virtual method.
2640         (Output_data_plt_x86_64::add_eh_frame): New method to call it.
2641         (Output_data_plt_x86_64::do_fill_first_plt_entry): New abstract
2642         virtual method.
2643         (Output_data_plt_x86_64::fill_first_plt_entry): New method to call it.
2644         (Output_data_plt_x86_64::do_fill_plt_entry): New abstract
2645         virtual method.
2646         (Output_data_plt_x86_64::fill_plt_entry): New method to call it.
2647         (Output_data_plt_x86_64::do_fill_tlsdesc_entry): New abstract
2648         virtual method.
2649         (Output_data_plt_x86_64::fill_tlsdesc_entry): New method to call it.
2650         (Output_data_plt_x86_64::plt_entry_size)
2651         (Output_data_plt_x86_64::first_plt_entry)
2652         (Output_data_plt_x86_64::plt_entry)
2653         (Output_data_plt_x86_64::tlsdesc_plt_entry)
2654         (Output_data_plt_x86_64::plt_eh_frame_fde_size)
2655         (Output_data_plt_x86_64::plt_eh_frame_fde): Move to ...
2656         (Output_data_plt_x86_64_standard): ... here, new class.
2657         (Target_x86_64::Target_x86_64): Take optional argument for the
2658         Target_info pointer to use.
2659         (Target_x86_64::do_make_data_plt): New virtual method.
2660         (Target_x86_64::make_data_plt): New method to call it.
2661         (Target_x86_64::init_got_plt_for_update): Use that.
2662         Call this->plt_->add_eh_frame method here.
2663         (Output_data_plt_x86_64::init): Don't do add_eh_frame_for_plt here.
2664         (Target_x86_64::first_plt_entry_offset): Call method on this->plt_
2665         rather than static method.
2666         (Target_x86_64::plt_entry_size): Likewise.
2667         (Output_data_plt_x86_64::do_write): Use get_plt_entry_size method
2668         rather than plt_entry_size variable.  Move guts of PLT filling to...
2669         (Output_data_plt_x86_64_standard::do_fill_first_plt_entry): ... here ...
2670         (Output_data_plt_x86_64_standard::do_fill_plt_entry): ... and here ...
2671         (Output_data_plt_x86_64_standard::do_fill_tlsdesc_entry): ... and here.
2672
2673         * i386.cc (Output_data_plt_i386::Output_data_plt_i386): Take
2674         additional argument for the section alignment.
2675         Don't do add_eh_frame_for_plt here.
2676         (Output_data_plt_i386::first_plt_entry_offset): Make the method
2677         non-static.  Use get_plt_entry_size method rather than plt_entry_size
2678         variable.
2679         (Output_data_plt_i386::do_get_plt_entry_size): New abstract virtual
2680         method.
2681         (Output_data_plt_i386::get_plt_entry_size): Call it.
2682         (Output_data_plt_i386::do_add_eh_frame): New abstract virtual method.
2683         (Output_data_plt_i386::add_eh_frame): New method to call it.
2684         (Output_data_plt_i386::do_fill_first_plt_entry): New abstract virtual
2685         method.
2686         (Output_data_plt_i386::fill_first_plt_entry): New method to call it.
2687         (Output_data_plt_i386::do_fill_plt_entry): New abstract virtual
2688         method.
2689         (Output_data_plt_i386::fill_plt_entry): New method to call it.
2690         (Output_data_plt_i386::set_final_data_size): Use get_plt_entry_size
2691         method instead of plt_entry_size.
2692         (Output_data_plt_i386::plt_entry_size)
2693         (Output_data_plt_i386::plt_eh_frame_fde_size)
2694         (Output_data_plt_i386::plt_eh_frame_fde): Move to ...
2695         (Output_data_plt_i386_standard): ... here, new class.
2696         (Output_data_plt_i386_exec): New class.
2697         (Output_data_plt_i386::exec_first_plt_entry): Move to ...
2698         (Output_data_plt_i386_exec::first_plt_entry): ... here.
2699         (Output_data_plt_i386::exec_plt_entry): Move to ...
2700         (Output_data_plt_i386_exec::plt_entry): ... here.
2701         (Output_data_plt_i386_dyn): New class.
2702         (Output_data_plt_i386::first_plt_entry): Move to ...
2703         (Output_data_plt_i386_dyn::first_plt_entry): ... here.
2704         (Output_data_plt_i386::dyn_plt_entry): Move to ...
2705         (Output_data_plt_i386_dyn::plt_entry): ... here.
2706         (Target_i386::Target_i386): Take optional argument for the Target_info
2707         pointer to use.
2708         (Target_i386::do_make_data_plt): New virtual method.
2709         (Target_i386::make_data_plt): New method to call it.
2710         (Target_i386::make_plt_section): Use that.
2711         Call this->plt_->add_eh_frame method here.
2712         (Output_data_plt_i386::add_entry): Use get_plt_entry_size method
2713         rather than plt_entry_size variable.
2714         (Output_data_plt_i386::add_local_ifunc_entry): Likewise.
2715         (Output_data_plt_i386::address_for_local): Likewise.
2716         (Output_data_plt_i386::do_write): Likewise.
2717         Move guts of PLT filling to...
2718         (Output_data_plt_i386_exec::do_fill_first_plt_entry): ... here ...
2719         (Output_data_plt_i386_exec::do_fill_plt_entry): ... and here ...
2720         (Output_data_plt_i386_dyn::do_fill_first_plt_entry): ... and here ...
2721         (Output_data_plt_i386_dyn::do_fill_plt_entry): ... and here.
2722
2723 2012-05-01  Cary Coutant  <ccoutant@google.com>
2724
2725         * dwarf_reader.cc (Dwarf_die::read_attributes)
2726         (Dwarf_die::skip_attributes, Dwarf_die::int_attribute)
2727         (Dwarf_die::uint_attribute): Remove DW_FORM_null.
2728         * reduced_debug_output.cc
2729         (Output_reduced_debug_info_section::get_die_end): Remove
2730         DW_FORM_GNU_ref_index.  Add default case.
2731
2732 2012-04-26  Mark Wielaard  <mjw@redhat.com>
2733
2734         * dwarf_reader.cc (Dwarf_die::address_attribute): New function.
2735         * dwarf_reader.h (Dwarf_die::address_attribute): Likewise.
2736         * gdb-index.cc (Gdb_index_info_reader::record_cu_ranges): Handle
2737         DW_AT_high_pc as offset from DW_AT_low_pc.
2738
2739         * testsuite/Makefile.am (gdb_index_test_3.sh): New test case.
2740         * testsuite/Makefile.in: Regenerate.
2741         * testsuite/gdb_index_test_3.c: New test source file.
2742         * testsuite/gdb_index_test_3.sh: New test source file.
2743
2744 2012-04-25  Ian Lance Taylor  <iant@google.com>
2745
2746         * arm.cc (Target_arm::do_is_defined_by_abi): Make sym a const
2747         pointer.
2748         (Stub_addend_reader::operator()): Declare Arm_relocate_functions
2749         as a class, not a struct.
2750         (Target_arm::scan_span_for_cortex_a8_erratum): Likewise.
2751         (Target_arm::apply_cortex_a8_workaround): Likewise.
2752         * gc.h: Declare Reloc_types as a struct, not a class.
2753         * object.h: Declare Symbols_data as a struct.
2754         * reloc.h: Declare Read_relocs_data as a struct.
2755         * target.h: Declare Relocate_info as a struct.
2756
2757 2012-04-24  David S. Miller  <davem@davemloft.net>
2758
2759         * sparc.cc (Target_sparc::Relocate::relax_call): New function.
2760         (Target_sparc::Relocate::relocate): Call it for R_SPARC_WDISP30
2761         and R_SPARC_WPLT30.
2762
2763 2012-04-24  Cary Coutant  <ccoutant@google.com>
2764
2765         * incremental-dump.cc (find_input_containing_global): Replace
2766         magic number with symbolic constant.
2767         (dump_incremental_inputs): Update version number.
2768         * incremental.cc (Output_section_incremental_inputs): Update version
2769         number; import symbolic constants from Incremental_inputs_reader.
2770         (Incremental_inputs::create_data_sections): Align relocations
2771         section correctly for 64-bit targets.
2772         (Output_section_incremental_inputs::set_final_data_size): Use symbolic
2773         constants; add padding.
2774         (Output_section_incremental_inputs::write_header): Add assert for
2775         header_size.
2776         (Output_section_incremental_inputs::write_input_files): Add assert
2777         for input_entry_size.
2778         (Output_section_incremental_inputs::write_info_blocks): Add padding;
2779         add assert for object_info_size, input_section_entry_size,
2780         global_sym_entry_size.
2781         * incremental.h (Incremental_inputs_reader): Add symbolic constants
2782         for data structure sizes; use them.
2783         (Incremental_input_entry_reader): Import symbolic constants from
2784         Incremental_inputs_reader; use them.
2785
2786 2012-04-23  David S. Miller  <davem@davemloft.net>
2787
2788         * sparc.cc (class Target_sparc): Add elf_machine_, elf_flags_,
2789         and elf_flags_set_.
2790         (Target_sparc::Target_sparc): Initialize new fields.
2791         (Target_sparc::do_make_elf_object): New function.
2792         (Target_sparc::do_adjust_elf_header): New function.
2793
2794 2012-04-23  Cary Coutant  <ccoutant@google.com>
2795
2796         * gdb-index.cc (Gdb_index::do_write): Use Swap_aligned32 for writing
2797         CU range table of gdb index.
2798
2799 2012-04-20  David S. Miller  <davem@davemloft.net>
2800
2801         * target.cc (Sized_target::do_adjust_elf_header): Use big_endian
2802         instead of false.
2803
2804 2012-04-16  David S. Miller  <davem@davemloft.net>
2805
2806         * sparc.cc (Target_sparc::got_address): New function.
2807         (Sparc_relocate_functions::gdop_hix22): New function.
2808         (Sparc_relocate_functions::gdop_lox10): New function.
2809         (Target_sparc::Scan::local): Do not emit a GOT entry for GOTDATA
2810         relocs.
2811         (Target_sparc::Scan::local): Likewise if the global symbol is not
2812         preemptible and is not IFUNC.
2813         (Target_sparc::Relocate::relocate): Perform GOTDATA code
2814         transformations for local and non-preemptible non-IFUNC global
2815         symbols.
2816
2817         * gdb-index.cc (Gdb_index::do_write): Use Swap_unaligned when
2818         writing out 64-bit part of ranges.
2819
2820         * Makefile.am: Build IFUNC tests with -fPIC and -fPIE instead of
2821         -fpic and -fpie respectively.
2822         * Makefile.in: Regenerate.
2823
2824         * sparc.cc (class Target_sparc): Add rela_ifunc_.
2825         (Target_sparc::Target_sparc): Initialize new field.
2826         (Target_sparc::do_plt_section_for_global): New function.
2827         (Target_sparc::do_plt_section_for_local): New function.
2828         (Target_sparc::reloc_needs_plt_for_ifunc): New function.
2829         (Target_sparc::make_plt_section): New function, broken out of
2830         make_plt_entry.  Use ORDER_NON_RELRO_FIRST for ".plt".
2831         (Target_sparc::make_plt_entry): Call make_plt_section.
2832         (Target_sparc::make_local_ifunc_plt_entry): New function.
2833         (Target_sparc::rela_ifunc_section): New function.
2834         (Target_sparc::plt_section): Remove const.
2835         (Output_data_plt_sparc): Update declarations.  Define Global_ifunc
2836         and Local_ifunc types.  Add global_ifuncs_, local_ifuncs_, ifunc_rel_,
2837         and ifunc_count_ fields.
2838         (Output_data_plt_sparc::Output_data_plt_sparc): Initialize new fields.
2839         (Output_data_plt_sparc::add_entry): Handle IFUNC symbols.
2840         (Output_data_plt_sparc::add_local_ifunc_entry): New function.
2841         (Output_data_plt_sparc::rela_ifunc): New function.
2842         (Output_data_plt_sparc::emit_pending_ifunc_relocs): New function.
2843         (Output_data_plt_sparc::has_ifunc_section): New function.
2844         (Output_data_plt_sparc::entry_count): Include ifunc_count_.
2845         (Output_data_plt_sparc::address_for_global): New function.
2846         (Output_data_plt_sparc::address_for_local): New function.
2847         (Output_data_plt_sparc::plt_index_to_offset): New function.
2848         (Output_data_plt_sparc::set_final_data_size): Use plt_index_to_offset
2849         and entry_count.
2850         (Output_data_plt_sparc::do_write): Use first_plt_entry_offset and
2851         entry_count.
2852         (Target_sparc::Scan::get_reference_flags): Add R_SPARC_IRELATIVE and
2853         R_SPARC_JMP_IREL to switch.
2854         (Target_sparc::Scan::check_non_pic): Likewise.
2855         (Target_sparc::Scan::local): Handle IFUNC symbols.
2856         (Target_sparc::Scan::local): Likewise.
2857         (Target_sparc::Relocate::relocate): Likewise, use plt_address_for_global
2858         and plt_address_for_local.
2859         (Target_sparc::do_finalize_sections): Call emit_pending_ifunc_relocs.
2860         Define __rel_iplt_start and __rel_iplt_end if doing a static link.
2861
2862         * output.h (Output_reloc): Allow use_plt_offset for global relocs too.
2863         (class Output_data_reloc): Adjust calls to Output_reloc_type.
2864         (Output_data_reloc::add_global_relative): (RELA only) Add use_plt_offset.
2865         * output.cc (Output_reloc::Output_reloc): Add use_plt_offset flag for
2866         global relocs too.
2867         (Output_reloc::symbol_value): Respect use_plt_offset_ for global symbols.
2868         * powerpc.cc (Target_powerpc::Scan::global): Adjust add_global_relative
2869         calls.
2870         * sparc.cc (Target_sparc::Scan::global): Likewise.
2871         * x86_64.cc (Target_x86_64::Scan::global): Likewise.
2872
2873 2012-04-16  Cary Coutant  <ccoutant@google.com>
2874
2875         * archive.cc (Library_base::should_include_member): Check for
2876         --export-dynamic-symbol.
2877         * options.h (class General_options): Add --export-dynamic-symbol.
2878         * symtab.cc (Symbol::should_add_dynsym_entry): Check for
2879         --export-dynamic-symbol.
2880         (Symbol_table::gc_mark_undef_symbols): Likewise.
2881         (Symbol_table::do_add_undefined_symbols_from_command_line): Likewise.
2882
2883 2012-04-12  David S. Miller  <davem@davemloft.net>
2884
2885         * sparc.cc (Reloc::wdisp10): New relocation method.
2886         (Reloc::h34): Likewise.
2887         (Target_sparc::Scan::check_non_pic): Handle R_SPARC_H34.
2888         (Target_sparc::Scan::get_reference_flags): Handle R_SPARC_H34 and
2889         R_SPARC_WDISP10.
2890         (Target_sparc::Scan::local): Likewise.
2891         (Target_sparc::Scan::global): Likewise.
2892         (Target_sparc::Relocate::relocate): Likewise.
2893
2894 2012-04-09  Cary Coutant  <ccoutant@google.com>
2895
2896         * gdb-index.cc (Gdb_index_info_reader::record_cu_ranges): Allow
2897         low_pc == 0.
2898
2899 2012-04-06  Ian Lance Taylor  <iant@google.com>
2900
2901         * timer.cc: #include <unistd.h>.
2902
2903 2012-04-06  Roland McGrath  <mcgrathr@google.com>
2904
2905         * configure.in (AC_CHECK_HEADERS): Add locale.h.
2906         * config.in: Regenerate.
2907         * configure: Regenerate.
2908
2909 2012-04-05  Nick Clifton  <nickc@redhat.com>
2910
2911         * configure.ac (AC_CHECK_FUNCS): Add setlocale.
2912         (AM_LC_MESSAGES): Add.
2913         * aclocal.m4: Regenerate.
2914         * config.in: Regenerate.
2915         * configure: Regenerate.
2916
2917 2012-03-21  Cary Coutant  <ccoutant@google.com>
2918
2919         * Makefile.am: Add gdb-index.cc, gdb-index.h.
2920         * Makefile.in: Regenerate.
2921         * dwarf_reader.cc (Sized_elf_reloc_mapper::do_initialize): New function.
2922         (Sized_elf_reloc_mapper::symbol_section): New function.
2923         (Sized_elf_reloc_mapper::do_get_reloc_target): New function.
2924         (make_elf_reloc_mapper): New function.
2925         (Dwarf_abbrev_table::clear_abbrev_codes): New function.
2926         (Dwarf_abbrev_table::do_read_abbrevs): New function.
2927         (Dwarf_abbrev_table::do_get_abbrev): New function.
2928         (Dwarf_ranges_table::read_ranges_table): New function.
2929         (Dwarf_ranges_table::read_range_list): New function.
2930         (Dwarf_pubnames_table::read_section): New function.
2931         (Dwarf_pubnames_table::read_header): New function.
2932         (Dwarf_pubnames_table::next_name): New function.
2933         (Dwarf_die::Dwarf_die): New function.
2934         (Dwarf_die::read_attributes): New function.
2935         (Dwarf_die::skip_attributes): New function.
2936         (Dwarf_die::set_name): New function.
2937         (Dwarf_die::set_linkage_name): New function.
2938         (Dwarf_die::attribute): New function.
2939         (Dwarf_die::string_attribute): New function.
2940         (Dwarf_die::int_attribute): New function.
2941         (Dwarf_die::uint_attribute): New function.
2942         (Dwarf_die::ref_attribute): New function.
2943         (Dwarf_die::child_offset): New function.
2944         (Dwarf_die::sibling_offset): New function.
2945         (Dwarf_info_reader::check_buffer): New function.
2946         (Dwarf_info_reader::parse): New function.
2947         (Dwarf_info_reader::do_parse): New function.
2948         (Dwarf_info_reader::do_read_string_table): New function.
2949         (Dwarf_info_reader::lookup_reloc): New function.
2950         (Dwarf_info_reader::get_string): New function.
2951         (Dwarf_info_reader::visit_compilation_unit): New function.
2952         (Dwarf_info_reader::visit_type_unit): New function.
2953         (Sized_dwarf_line_info::Sized_dwarf_line_info): Use
2954         Sized_elf_reloc_mapper.
2955         (Sized_dwarf_line_info::symbol_section): Remove function.
2956         (Sized_dwarf_line_info::read_relocs): Use Sized_elf_reloc_mapper.
2957         (Sized_dwarf_line_info::read_line_mappings): Remove object
2958         parameter, adjust callers.
2959         (Sized_dwarf_line_info::format_file_lineno): Fix type of cast.
2960         * dwarf_reader.h: Include <sys/types.h>.
2961         (class Track_relocs): Remove forward declaration.
2962         (class Elf_reloc_mapper): New class.
2963         (class Sized_elf_reloc_mapper): New class.
2964         (class Dwarf_abbrev_table): New class.
2965         (class Dwarf_range_list): New class.
2966         (class Dwarf_ranges_table): New class.
2967         (class Dwarf_pubnames_table): New class.
2968         (class Dwarf_die): New class.
2969         (class Dwarf_info_reader): New class.
2970         (Sized_dwarf_line_info::read_line_mappings): Remove object parameter.
2971         (Sized_dwarf_line_info::symbol_section): Remove member function.
2972         * dynobj.h (Sized_dynobj::do_section_contents): Refactor code from
2973         base class.
2974         * gdb-index.cc: New source file.
2975         * gdb-index.h: New source file.
2976         * incremental.cc (Sized_relobj_incr::do_layout): Track .debug_info
2977         and .debug_types sections, call Layout::add_to_gdb_index.
2978         (Sized_relobj_incr::do_section_name): Implement.
2979         (Sized_relobj_incr::do_section_contents): Adjust parameter list and
2980         return type; Implement.
2981         (Sized_incr_dynobj::do_section_contents): Adjust parameter list and
2982         return type.
2983         * incremental.h (Sized_relobj_incr::do_section_contents): Adjust
2984         parameter list and return type.
2985         (Sized_incr_dynobj::do_section_contents): Likewise.
2986         * layout.cc: Include gdb-index.h.
2987         (Layout::Layout): Initialize gdb_index_data_.
2988         (Layout::init_fixed_output_section): Check for .gdb_index section.
2989         (Layout::add_to_gdb_index): New function. Instantiate.
2990         * layout.h: Add forward declaration for class Gdb_index.
2991         (Layout::add_to_gdb_index): New member function.
2992         (Layout::gdb_index_data_): New data member.
2993         * main.cc: Include gdb-index.h.
2994         (main): Print statistics for gdb index.
2995         * object.cc (Object::section_contents): Move code into
2996         do_section_contents.
2997         (need_decompressed_section): Check for sections needed when building
2998         gdb index.
2999         (build_compressed_section_map): Likewise.
3000         (Sized_relobj_file::do_read_symbols): Need local symbols when building
3001         gdb index.
3002         (Sized_relobj_file::do_layout): Track .debug_info and .debug_types
3003         sections; call Layout::add_to_gdb_index.
3004         (Sized_relobj_file::do_decompressed_section_contents): Call
3005         do_section_contents directly.
3006         * object.h (Object::do_section_contents): Adjust parameter list and
3007         return type.
3008         (Object::do_decompressed_section_contents): Call do_section_contents
3009         directly.
3010         (Sized_relobj_file::do_section_contents): Adjust parameter list and
3011         return type.
3012         * options.h (class General_options): Add --gdb-index option.
3013         * plugin.cc (Sized_pluginobj::do_section_contents): Adjust parameter
3014         list and return type.
3015         * plugin.h (Sized_pluginobj::do_section_contents): Likewise.
3016         * reloc.h (Track_relocs::checkpoint): New function.
3017         (Track_relocs::reset): New function.
3018
3019         * testsuite/Makefile.am (gdb_index_test_1.sh, gdb_index_test_2.sh):
3020         New test cases.
3021         * testsuite/Makefile.in: Regenerate.
3022         * testsuite/gdb_index_test.cc: New test source file.
3023         * testsuite/gdb_index_test_1.sh: New test source file.
3024         * testsuite/gdb_index_test_2.sh: New test source file.
3025
3026 2012-03-19  Doug Kwan  <dougkwan@google.com>
3027
3028         * arm.cc (Target_arm::do_define_standard_symbols): New method.
3029         (Target_arm::do_finalize_sections): Remove code which defines
3030         __exidx_start and __exidx_end.  Make symbol table parameter
3031         anonymous as it is not used.
3032         * gold.cc (queue_middle_tasks): Call target hook to define any
3033         target-specific symbols.
3034         * target.h (Target::define_standard_symbols): New method.
3035         (Target::do_define_standard_symbols): Same.
3036         * testsuite/Makefile.am (arm_exidx_test): Dump relocations also.
3037         * testsuite/Makefile.in: Regenerate.
3038         * testsuite/arm_exidx.s: Generate data relocations for __exidx_start
3039         and __exidx_end.
3040         * testsuite/arm_exidx_test.sh: Check that no unused dynamic
3041         relocations are generated for __exidx_start and __exidx_end.
3042
3043 2012-03-16  Doug Kwan  <dougkwan@google.com>
3044
3045         * testsuite/Makefile.am: Disable test initpri3b.
3046         * testsuite/Makefile.in: Regenerate.
3047
3048 2012-03-15  Doug Kwan  <dougkwan@google.com>
3049
3050         * arm.cc (Target_arm::got_section): Make .got section read-only
3051         if -z now is given.
3052
3053 2012-03-15  Ian Lance Taylor  <iant@google.com>
3054
3055         PR gold/13850
3056         * layout.cc (Layout::make_output_section): Correctly mark
3057         SHT_INIT_ARRAY, et. al., as relro.
3058
3059 2012-03-14  Doug Kwan  <dougkwan@google.com>
3060
3061         * gold/arm.cc (Target_arm::Scan::global): Generate R_ARM_GLOB_DAT
3062         dynamic relocations for protected symbols in shared objects.
3063
3064 2012-03-13  Ian Lance Taylor  <iant@google.com>
3065
3066         * resolve.cc (Symbol_table::resolve): When merging common symbols,
3067         keep the larger alignment.
3068
3069 2012-03-12  Cary Coutant  <ccoutant@google.com>
3070
3071         * dwarf_reader.cc (Sized_dwarf_line_info::process_one_opcode): Fix
3072         handling of DW_LNE_define_file.
3073
3074 2012-03-12  Cary Coutant  <ccoutant@google.com>
3075
3076         * reduced_debug_output.cc
3077         (Output_reduced_debug_info_section::get_die_end): Add new FORM
3078         codes to switch.
3079
3080 2012-02-29  Cary Coutant  <ccoutant@google.com>
3081
3082         * object.cc (need_decompressed_section): Add #ifdef ENABLE_THREADS.
3083
3084 2012-02-29  Cary Coutant  <ccoutant@google.com>
3085
3086         * dwarf_reader.cc (Sized_dwarf_line_info::Sized_dwarf_line_info):
3087         Call Object::decompressed_section_contents.
3088         * dwarf_reader.h (Sized_dwarf_line_info::~Sized_dwarf_line_info):
3089         New dtor.
3090         (Sized_dwarf_line_info::buffer_start_): New data member.
3091         * merge.cc (Output_merge_data::do_add_input_section): Call
3092         Object::decompressed_section_contents.
3093         (Output_merge_string::do_add_input_section): Likewise.
3094         * object.cc (need_decompressed_section): New function.
3095         (build_compressed_section_map): Decompress sections needed later.
3096         (Sized_relobj_file::do_decompressed_section_contents): New function.
3097         (Sized_relobj_file::do_discard_decompressed_sections): New function.
3098         * object.h (Object::decompressed_section_contents): New function.
3099         (Object::discard_decompressed_sections): New function.
3100         (Object::do_decompressed_section_contents): New function.
3101         (Object::do_discard_decompressed_sections): New function.
3102         (Compressed_section_info): New type.
3103         (Compressed_section_map): Include decompressed section contents.
3104         (Sized_relobj_file::do_decompressed_section_contents): New function.
3105         (Sized_relobj_file::do_discard_decompressed_sections): New function.
3106
3107 2012-02-16  Cary Coutant  <ccoutant@google.com>
3108
3109         * testsuite/Makefile.am (initpri2): Add --ctors-in-init-array option.
3110         * testsuite/Makefile.in: Regenerate.
3111
3112 2012-02-14  Cary Coutant  <ccoutant@google.com>
3113
3114         * options.cc (General_options::finalize): Disallow -pie and -static.
3115
3116 2012-02-03  Doug Kwan  <dougkwan@google.com>
3117
3118         * arm.cc (Arm_relocate_functions::abs8,
3119         Arm_relocate_functions::abs16): Use
3120         Bits::has_signed_unsigned_overflow32.
3121         (Arm_relocate_functions::thm_abs8): Correct range of
3122         overflow check.
3123         * reloc.h (Bits class): Change minimum number of bits from 0 to 1
3124         in assertions.
3125
3126 2012-02-02  Doug Kwan  <dougkwan@google.com>
3127
3128         * arm.cc (Reloc_stub::stub_type_for_reloc): Use PIC stubs in all
3129         position independent outputs, not just shared objects.
3130
3131 2012-01-30  H.J. Lu  <hongjiu.lu@intel.com>
3132
3133         * configure.ac: Check if -fpic -mtls-dialect=gnu2 works.
3134         * configure: Regenerated.
3135
3136 2012-01-27  Ian Lance Taylor  <iant@google.com>
3137
3138         * reloc.h (Bits): New class with static functions, copied from
3139         namespace utils in arm.cc.
3140         * arm.cc (namespace utils): Remove.  Rewrite all uses to use Bits
3141         instead.
3142
3143 2012-01-27  H.J. Lu  <hongjiu.lu@intel.com>
3144
3145         * incremental.cc (write_info_blocks): Correct relocation offset.
3146
3147 2012-01-27  H.J. Lu  <hongjiu.lu@intel.com>
3148
3149         * x86_64.cc (Relocate::tls_gd_to_ie): Support x32.
3150         (Relocate::tls_gd_to_le): Likewise.
3151
3152 2012-01-27  H.J. Lu  <hongjiu.lu@intel.com>
3153
3154         * x86_64.cc (Scan::global): Support x32 IFUNC function pointer.
3155
3156 2012-01-27  H.J. Lu  <hongjiu.lu@intel.com>
3157
3158         * configure.ac: Check if -mcmodel=medium works.
3159         * configure: Regenerated.
3160
3161 2012-01-24  Cary Coutant  <ccoutant@google.com>
3162
3163         * int_encoding.cc (read_unsigned_LEB_128): Replaced with inline
3164         definition and ...
3165         (read_unsigned_LEB_128_x): ... this new function.
3166         (read_signed_LEB_128): Replaced with inline definition and ...
3167         (read_signed_LEB_128_x): ... this new function.
3168         * int_encoding.h  (read_unsigned_LEB_128_x): New function.
3169         (read_unsigned_LEB_128): Add inline definition.
3170         (read_signed_LEB_128_x): New function.
3171         (read_signed_LEB_128): Add inline definition.
3172         * testsuite/Makefile.am (leb128_unittest): New unit test.
3173         * testsuite/Makefile.in: Regenerate.
3174         * testsuite/leb128_unittest.cc: New unit test.
3175
3176 2012-01-23  Ian Lance Taylor  <iant@google.com>
3177
3178         PR gold/13617
3179         * i386.cc (Target_i386::do_code_fill): When using a jmp
3180         instruction, pad with nop instructions.
3181         * x86_64.cc (Target_x86_64::do_code_fill): Likewise.
3182
3183 2012-01-22  H.J. Lu  <hongjiu.lu@intel.com>
3184
3185         * x86_64.cc (gc_process_relocs): Add typename on types used in
3186         template.
3187         (scan_relocs): Likewise.
3188         (relocate_section): Likewise.
3189         (apply_relocation): Likewise.
3190
3191 2012-01-10  H.J. Lu  <hongjiu.lu@intel.com>
3192
3193         * x86_64.cc (Scan::check_non_pic): Allow R_X86_64_32 for x32.
3194         (Scan::local): Use R_X86_64_RELATIVE relocation for R_X86_64_32
3195         under x32.
3196
3197 2012-01-09  H.J. Lu  <hongjiu.lu@intel.com>
3198
3199         * x86_64.cc: Initial support for x32.
3200
3201 2012-01-03  Cary Coutant  <ccoutant@google.com>
3202
3203         * gold/incremental.cc (Sized_incremental_binary::do_process_got_plt):
3204         Use abstract base class for GOT.
3205         * gold/output.h (class Output_data_got_base): New abstract base class.
3206         (class Output_data_got): Derive from new base class, adjust ctors.
3207         (Output_data_got::reserve_slot): Make virtual; rename to
3208         do_reserve_slot; Adjust callers.
3209         * gold/target.h (Sized_target::init_got_plt_for_update): Return
3210         pointer to abstract base class.
3211         * gold/x86_64.cc (Target_x86_64::init_got_plt_for_update): Likewise.
3212
3213 2011-12-18  Ian Lance Taylor  <iant@google.com>
3214
3215         * object.h (Relobj::local_symbol_value): New function.
3216         (Relobj::local_plt_offset): New function.
3217         (Relobj::local_has_got_offset): New function.
3218         (Relobj::local_got_offset): New function.
3219         (Relobj::set_local_got_offset): New function.
3220         (Relobj::do_local_symbol_value): New pure virtual function.
3221         (Relobj::do_local_plt_offset): Likewise.
3222         (Relobj::do_local_has_got_offset): Likewise.
3223         (Relobj::do_local_got_offset): Likewise.
3224         (Relobj::do_set_local_got_offset): Likewise.
3225         (Sized_relobj::do_local_has_got_offset): Rename from
3226         local_has_got_offset.
3227         (Sized_relobj::do_local_got_offset): Rename from local_got_offset.
3228         (Sized_relobj::do_set_local_got_offset): Rename from
3229         set_local_got_offset.
3230         (Sized_relobj_file::do_local_plt_offset): Rename from
3231         local_plt_offset.
3232         (Sized_relobj_file::do_local_symbol_value): New function.
3233         * object.cc (Sized_relobj_file::do_local_plt_offset): Rename from
3234         local_plt_offset.
3235         * output.cc (Output_data_got::Got_entry::write): Change object to
3236         Relobj.  Use local_symbol_value.
3237         (Output_data_got::add_global_with_rel): Change rel_dyn to
3238         Output_data_reloc_generic*.  Use add_global_generic.
3239         (Output_data_got::add_global_with_rela): Remove.  Change all
3240         callers to use add_global_with_rel.
3241         (Output_data_got::add_global_pair_with_rel): Change rel_dyn to
3242         Output_data_reloc_generic*.  Use add_global_generic.
3243         (Output_data_got::add_global_pair_with_rela): Remove.  Change all
3244         callers to use add_global_pair_with_rel.
3245         (Output_data_got::add_local): Change object to Relobj*.
3246         (Output_data_got::add_local_plt): Likewise.
3247         (Output_data_got::add_local_with_rel): Change object to Relobj*,
3248         change rel_dyn to Output_data_reloc_generic*.  Use
3249         add_local_generic.
3250         (Output_data_got::add_local_with_rela): Remove.  Change all
3251         callers to use all_local_with_rel.
3252         (Output_data_got::add_local_pair_with_rel): Change object to
3253         Relobj*, change rel_dyn to Output_data_reloc_generic*.  Use
3254         add_output_section_generic.
3255         (Output_data_got::add_local_pair_with_rela): Remove.  Change all
3256         callers to use add_local_pair_with_rel.
3257         (Output_data_got::reserve_local): Change object to Relobj*.
3258         * output.h: (class Output_data_reloc_generic): Add pure virtual
3259         declarations for add_global_generic, add_local_generic,
3260         add_output_section_generic.
3261         (class Output_data_reloc) [SHT_REL, SHT_RELA]: Implement new
3262         functions for Output_data_reloc_generic.  Update declarations for
3263         changes listed in output.cc.
3264         (class Output_data_got): Change template parameter to got_size.
3265         Don't define Rel_dyn or Rela_dyn.  Update declarations per above.
3266         * incremental.h (Sized_relobj_incr::do_local_symbol_value): New
3267         function.
3268         (Sized_relobj_incr::do_local_plt_offset): New function.
3269         * copy-relocs.cc (Copy_relocs::Copy_reloc_entry::emit): Call
3270         add_global_generic.
3271
3272 2011-12-17  Cary Coutant  <ccoutant@google.com>
3273
3274         * dwarf_reader.cc (Sized_dwarf_line_info::read_lines): Add casts.
3275         * resolve.cc (Symbol_table::resolve): Likewise.
3276         * i386.cc (Target_i386::do_code_fill): Use char constants for nop
3277         arrays.
3278         * x86_64.cc (Target_x86_64::do_code_fill): Likewise.
3279
3280 2011-12-16  Ian Lance Taylor  <iant@google.com>
3281
3282         * output.h (Output_data_reloc_generic::add): Only call
3283         add_dynamic_reloc if this is a dynamic reloc section.
3284
3285 2011-12-15  H.J. Lu  <hongjiu.lu@intel.com>
3286
3287         PR gold/13505
3288         * target-reloc.h (apply_relocation): Replace <64, false> with
3289         <size, big_endian>.
3290
3291 2011-11-25  Nick Clifton  <nickc@redhat.com>
3292
3293         * po/it.po: New Italian translation.
3294
3295 2011-11-17  Sterling Augustine  <saugustine@google.com>
3296
3297         * script.cc (script_include_directive): Implement.
3298         (read_script_file): New local variables name and search_path. Update
3299         comment. Call IS_ABSOLUTE_PATH and Dirsearch::find_file_in_dir_list.
3300         * dirsearch.h (Dirsearch::find_file_in_dir_list): Declare new method.
3301         * dirsearch.cc (Dirsearch::find_file_in_dir_list): Implement it.
3302
3303 2011-11-11  Sterling Augustine  <saugustine@google.com>
3304
3305         * yyscript.y (section_cmd): Add support for INCLUDE directive.
3306         (file_or_sections_cmd): Likewise.
3307
3308 2011-11-11  Doug Kwan  <dougkwan@google.com>
3309
3310         * arm.cc (Target_arm::do_make_elf_object): Allow executable also
3311         if --just-symbols is given.
3312
3313 2011-11-10  Doug Kwan  <dougkwan@google.com>
3314
3315         PR gold/13362
3316         * arm.cc (Target_arm::Relocate::relocate_tls): Do unaligned accesses
3317         when processing data relocs.
3318         * reloc.h (Relocate_functions::rel_unaligned): New method.
3319         (Relocate_functions::pcrel_unaligned): Ditto.
3320         (Relocate_functions::rel32_unaligned): Ditto.
3321         (Relocate_functions::pcrel32_unaligned): Ditto.
3322
3323 2011-11-09  Doug Kwan  <dougkwan@google.com>
3324
3325         PR gold/13362
3326         * arm.cc (Arm_scan_relocatable_relocs::Default_scan_relocatable_relocs):
3327         Use unaligned 4-byte relocs for static 32-bit data as required by EABI.
3328         * reloc.h (Relocatable_relocs::Reloc_strategy): New enum
3329         RELOC_ADJUST_FOR_SECTION_4_UNALIGNED.
3330         (Relocate_functions::rel_unaligned): New.
3331         (Relocate_functions::rel32_unaligned): New.
3332         * target-reloc.h (relocate_for_relocatable): Add code to handle
3333         RELOC_ADJUST_FOR_SECTION_4_UNALIGNED.
3334         * testsuite/Makefile.am (arm_unaligned_reloc_r.stdout,
3335         arm_unaligned_reloc_r): New targets.
3336         * testsuite/Makefile.in: Regenerate.
3337         * arm_unaligned_reloc.sh: Check unaligned relocs in relocatable
3338         linking.
3339
3340 2011-11-02  Ian Lance Taylor  <iant@google.com>
3341
3342         * configure.ac: Add --with-lib-path option.  Define LIB_PATH and
3343         NATIVE_LINKER.
3344         * Makefile.am (AM_CPPFLAGS): Define TOOLLIBDIR.
3345         * options.cc (General_options::finalize): Use library search path
3346         from configure script if specified.  If not native and no sysroot,
3347         only search TOOLLIBDIR.
3348         * options.h (Search_directory::Search_directory): Change name to
3349         const std::string&.
3350         (General_options::add_to_library_path_with_sysroot): Change arg to
3351         const std::string&.
3352         * configure, Makefile.in, config.in: Rebuild.
3353
3354 2011-11-02  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
3355
3356         * arm.cc (Target_arm::may_use_v5t_interworking): Check whether
3357         we are working around the ARM1176 Erratum.
3358         * options.h (General_options::fix_arm1176): Add option.
3359         * testsuite/Makefile.am: Add testcases, and keep current ones
3360         working.
3361         * testsuite/Makefile.in: Regenerate.
3362         * testsuite/arm_fix_1176.s: New file.
3363         * testsuite/arm_fix_1176.sh: Likewise.
3364
3365 2011-11-02  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
3366
3367         * arm.cc (Target_arm::Target_arm): Remove initialisation of
3368         may_use_blx_.
3369         (Target_arm::may_use_blx): Remove method.
3370         (Target_arm::set_may_use_blx): Likewise.
3371         (Target_arm::may_use_v4t_interworking): New method.
3372         (Target_arm::may_use_v5t_interworking): Likewise.
3373         (Target_arm::may_use_blx_): Remove member variable.
3374         (Arm_relocate_functions::arm_branch_common): Check for v5T
3375         interworking.
3376         (Arm_relocate_functions::thumb_branch_common): Likewise.
3377         (Reloc_stub::stub_type_for_reloc): Likewise.
3378         (Target_arm::do_finalize_sections): Correct interworking checks.
3379         * testsuite/Makefile.am: Add new tests.
3380         * testsuite/Makefile.in: Regenerate.
3381         * testsuite/arm_farcall_arm_arm.s: New test.
3382         * testsuite/arm_farcall_arm_arm.sh: Likewise.
3383         * testsuite/arm_farcall_arm_thumb.s: Likewise.
3384         * testsuite/arm_farcall_arm_thumb.sh: Likewise.
3385         * testsuite/arm_farcall_thumb_arm.s: Likewise.
3386         * testsuite/arm_farcall_thumb_arm.sh: Likewise.
3387         * testsuite/arm_farcall_thumb_thumb.s: Likewise.
3388         * testsuite/arm_farcall_thumb_thumb.sh: Likewise.
3389
3390 2011-10-31  Cary Coutant  <ccoutant@google.com>
3391
3392         PR gold/13023
3393         * expression.cc (Expression::eval_with_dot): Add
3394         is_section_dot_assignment parameter.
3395         (Expression::eval_maybe_dot): Likewise.  Adjust value when rhs is
3396         absolute and assigning to dot within a section.
3397         * script-sections.cc
3398         (Output_section_element_assignment::set_section_addresses): Pass
3399         dot_section to set_if_absolute.
3400         (Output_section_element_dot_assignment::finalize_symbols): Pass TRUE
3401         as is_section_dot_assignment flag to eval_with_dot.
3402         (Output_section_element_dot_assignment::set_section_addresses):
3403         Likewise.
3404         * script.cc (Symbol_assignment::set_if_absolute): Add dot_section
3405         parameter.  Also set value if relative to dot_section; set the
3406         symbol's output_section.
3407         * script.h (Expression::eval_with_dot): Add is_section_dot_assignment
3408         parameter.  Adjust all callers.
3409         (Expression::eval_maybe_dot): Likewise.
3410         (Symbol_assignment::set_if_absolute): Add dot_section parameter.
3411         Adjust all callers.
3412         * testsuite/script_test_2.t: Test assignment of an absolute value
3413         to dot within an output section element.
3414
3415 2011-10-31  Cary Coutant  <ccoutant@google.com>
3416
3417         * options.h (class General_options): Add --[no-]gnu-unique options.
3418         * symtab.cc (Symbol_table::sized_write_globals): Convert
3419         STB_GNU_UNIQUE to STB_GLOBAL if --no-gnu-unique.
3420
3421 2011-10-31  Cary Coutant  <ccoutant@google.com>
3422
3423         PR gold/13359
3424         * i386.cc (Target_i386::Relocate::relocate_tls): Remove
3425         unnecessary assertion.
3426         * x86_64.cc (Target_x86_64::Relocate::relocate_tls): Likewise.
3427
3428 2011-10-31 Sriraman Tallam  <tmsriram@google.com>
3429
3430         * symtab.h (Symbol_table::gc_mark_symbol_for_shlib): Rename to
3431         gc_mark_symbol.
3432         * symtab.cc (Symbol_table::gc_mark_symbol_for_shlib): Rename to
3433         gc_mark_symbol.
3434         Change to just keep the section associated with symbol.
3435         (Symbol_table::add_from_relobj): Mark symbols as not garbage when
3436         they are externally visible and --export-dynamic is turned on.
3437         (Symbol_table::gc_mark_dyn_syms): Call gc_mark_symbol.
3438
3439 2011-10-19  Ian Lance Taylor  <iant@google.com>
3440
3441         PR gold/13163
3442         * script-sections.cc
3443         (Output_section_element_dot_assignment::needs_output_section): New
3444         function.
3445
3446 2011-10-19  Ian Lance Taylor  <iant@google.com>
3447
3448         PR gold/13204
3449         * layout.cc (Layout::segment_precedes): Don't assert failure if a
3450         --section-start option was seen.
3451         * options.h (General_options::any_section_start): New function.
3452
3453 2011-10-18  David S. Miller  <davem@davemloft.net>
3454
3455         PR binutils/13301
3456         * sparc.cc (Target_sparc::Relocate::reloc_adjust_addr_): New
3457         member to track relocation locations that have moved during TLS
3458         reloc optimizations.
3459         (Target_sparc::Relocate::Relocate): Initialize to NULL.
3460         (Target_sparc::Relocate::relocate): Adjust view down by 4
3461         bytes if it matches reloc_adjust_addr_.
3462         (Target_sparc::Relocate::relocate_tls): Always move the
3463         __tls_get_addr call delay slot instruction forward 4 bytes when
3464         performing relaxation.
3465
3466 2011-10-18  Cary Coutant  <ccoutant@google.com>
3467
3468         * output.cc (posix_fallocate): Return 0 on success, errno on failure.
3469         (Output_file::map_no_anonymous): Check for non-zero
3470         return code from posix_fallocate.
3471
3472 2011-10-17  Cary Coutant  <ccoutant@google.com>
3473
3474         PR gold/13245
3475         * plugin.cc (is_visible_from_outside): Check for symbols
3476         referenced from dynamic objects.
3477         * resolve.cc (Symbol_table::resolve): Don't count references
3478         from dynamic objects as references from real ELF files.
3479         * testsuite/plugin_test_2.sh: Adjust expected result.
3480
3481 2011-10-17  Cary Coutant  <ccoutant@google.com>
3482
3483         * gold.cc: Include timer.h.
3484         (queue_middle_tasks): Stamp time.
3485         (queue_final_tasks): Likewise.
3486         * main.cc (main): Store timer in parameters.  Print timers
3487         for each pass.
3488         * parameters.cc (Parameters::Parameters): Initialize timer_.
3489         (Parameters::set_timer): New function.
3490         (set_parameters_timer): New function.
3491         * parameters.h (Parameters::set_timer): New function.
3492         (Parameters::timer): New function.
3493         (Parameters::timer_): New data member.
3494         (set_parameters_timer): New function.
3495         * timer.cc (Timer::stamp): New function.
3496         (Timer::get_pass_time): New function.
3497         * timer.h (Timer::stamp): New function.
3498         (Timer::get_pass_time): New function.
3499         (Timer::pass_times_): New data member.
3500
3501 2011-10-17  Cary Coutant  <ccoutant@google.com>
3502
3503         * readsyms.cc (Read_symbols::run): Don't queue an unblocker
3504         task for members of lib groups.
3505
3506 2011-10-17  Cary Coutant  <ccoutant@google.com>
3507
3508         PR gold/13288
3509         * fileread.cc (File_read::find_view): Add assert.
3510         (File_read::make_view): Move bounds check (replace with assert)...
3511         (File_read::find_or_make_view): ... to here.
3512
3513 2011-10-12  Cary Coutant  <ccoutant@google.com>
3514
3515         * output.cc (Output_file::open_base_file): Handle case where
3516         ::read returns less than requested size.
3517
3518 2011-10-10  Cary Coutant  <ccoutant@google.com>
3519
3520         * incremental.cc (Sized_relobj_incr::Sized_relobj_incr):
3521         Initialize defined_count_.
3522         (Sized_relobj_incr::do_add_symbols): Count defined symbols.
3523         (Sized_relobj_incr::do_get_global_symbol_counts): Rewrite.
3524         (Sized_incr_dynobj::Sized_incr_dynobj): Initialize defined_count_.
3525         (Sized_incr_dynobj::do_add_symbols): Count defined symbols.
3526         (Sized_incr_dynobj::do_get_global_symbol_counts): Rewrite.
3527         * incremental.h (Sized_relobj_incr::defined_count_): New data
3528         member.
3529         (Sized_incr_dynobj::defined_count_): New data member.
3530         * plugin.cc (Sized_pluginobj::do_get_global_symbol_counts):
3531         Return zeroes instead of internal error.
3532
3533 2011-10-10  Cary Coutant  <ccoutant@google.com>
3534
3535         PR gold/13249
3536         * output.cc (Output_reloc::Output_reloc): Add use_plt_offset flag.
3537         (Output_reloc::symbol_value): Return PLT offset if flag is set.
3538         * output.h (class Output_reloc): Add use_plt_offset flag.
3539         (Output_reloc::type_): Adjust size of bit field.
3540         (Output_reloc::use_plt_offset_): New bit field.
3541         (class Output_data_reloc): Adjust all calls to Output_reloc_type.
3542         (Output_data_reloc::add_local_relative): (RELA only) Add use_plt_offset
3543         flag.  Adjust all callers.
3544         * x86_64.cc (Target_x86_64::Scan::local): Check for IFUNC when
3545         creating RELATIVE relocations.
3546
3547 2011-10-10  Nick Clifton  <nickc@redhat.com>
3548
3549         * po/es.po: Updated Spanish translation.
3550         * po/fi.po: Updated Finnish translation.
3551
3552 2011-10-03   Diego Novillo  <dnovillo@google.com>
3553
3554         * options.cc (parse_uint): Fix dereference of RETVAL.
3555
3556 2011-09-29  Sriraman Tallam  <tmsriram@google.com>
3557
3558         * layout.h (section_order_map_): New member.
3559         (get_section_order_map): New member function.
3560         * output.cc (Output_section::add_input_section): Check for patterns
3561         only when --section-ordering-file is specified.
3562         * gold.cc (queue_middle_tasks): Delay updating order of sections till
3563         output_sections have been formed.
3564         * layout.cc (Layout_Layout): Initialize section_order_map_.
3565         * plugin.cc (update_section_order): Store order in order_map. Do not
3566         update the order.
3567         * testsuite/Makefile.am: Add test case for plugin_final_layout.
3568         * testsuite/Makefile.in: Regenerate.
3569         * testsuite/plugin_section_order.c: New file.
3570         * testsuite/plugin_final_layout.cc: New file.
3571         * testsuite/plugin_final_layout.sh: New file.
3572
3573 2011-09-29  Cary Coutant  <ccoutant@google.com>
3574
3575         * incremental.cc (Sized_incremental_binary::do_process_got_plt):
3576         Check for NULL.
3577         * symtab.cc (Symbol_table::add_from_relobj): Ignore version
3578         symbols during incremental update.
3579         (Symbol_table::add_from_dynobj): Likewise.
3580
3581 2011-09-27  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
3582             Ian Lance Taylor  <iant@google.com>
3583
3584         * symtab.cc (Symbol_table::define_special_symbol): Always
3585         canonicalize version string.
3586
3587 2011-09-26  Cary Coutant  <ccoutant@google.com>
3588
3589         * gold.cc (queue_initial_tasks): Move option checks ...
3590         * options.cc (General_options::finalize): ... to here. Disable
3591         some options; make others fatal.
3592
3593 2011-09-26  Cary Coutant  <ccoutant@google.com>
3594
3595         gcc PR lto/47247
3596         * plugin.cc (get_symbols_v2): New function.
3597         (Plugin::load): Add LDPT_GET_SYMBOLS_V2.
3598         (is_referenced_from_outside): New function.
3599         (Pluginobj::get_symbol_resolution_info): Add version parameter, return
3600         LDPR_PREVAILING_DEF_IRONLY_EXP when using new version.
3601         (get_symbols): Pass version parameter.
3602         (get_symbols_v2): New function.
3603         * plugin.h (Pluginobj::get_symbol_resolution_info): Add version
3604         parameter.
3605         * testsuite/plugin_test.c (get_symbols_v2): New static variable.
3606         (onload): Add LDPT_GET_SYMBOLS_V2.
3607         (all_symbols_read_hook): Use get_symbols_v2; check for
3608         LDPR_PREVAILING_DEF_IRONLY_EXP.
3609         * testsuite/plugin_test_3.sh: Update expected results.
3610
3611 2011-09-23  Simon Baldwin  <simonb@google.com>
3612
3613         * configure.ac: Add new --with-gold-ldadd and --with-gold-ldflags
3614         configuration options.
3615         * configure: Regenerate.
3616         * Makefile.am: Handle GOLD_LDADD and GOLD_LDFLAGS.
3617         * Makefile.in: Regenerate.
3618         * testsuite/Makefile.in: Regenerate.
3619
3620 2011-09-19  Sriraman Tallam  <tmsriram@google.com>
3621
3622         * plugin.h (should_defer_layout): Modify to check for any_claimed_.
3623
3624 2011-09-19  Cary Coutant  <ccoutant@google.com>
3625
3626         * incremental.cc (can_incremental_update): Fix typo in comment.
3627         * incremental.h (can_incremental_update): Likewise.
3628
3629 2011-09-18  Cary Coutant  <ccoutant@google.com>
3630
3631         * incremental.cc (can_incremental_update): New function.
3632         * incremental.h (can_incremental_update): New function.
3633         * layout.cc (Layout::init_fixed_output_section): Call it.
3634         (Layout::make_output_section): Don't allow patch space in .eh_frame.
3635         * object.cc (Sized_relobj_file::do_layout): Call
3636         can_incremental_update.
3637
3638 2011-09-13  Cary Coutant  <ccoutant@google.com>
3639
3640         * configure.ac: Check for glibc support for gnu_indirect_function
3641         support with static linking, setting automake conditional
3642         IFUNC_STATIC.
3643         * Makefile.in: Regenerate.
3644         * configure: Regenerate.
3645
3646         * testsuite/Makefile.am (ifuncmain1static, ifuncmain2static)
3647         (ifuncmain4static, ifuncmain5static, ifuncmain7static): Add check
3648         for IFUNC_STATIC.
3649         * testsuite/Makefile.in: Regenerate.
3650
3651 2011-09-13  Cary Coutant  <ccoutant@google.com>
3652
3653         * incremental.cc (Sized_relobj_incr::do_layout): Call
3654         report_comdat_group for kept comdat sections.
3655         * testsuite/Makefile.am (incremental_comdat_test_1): New test.
3656         * testsuite/Makefile.in: Regenerate.
3657         * testsuite/incr_comdat_test_1.cc: New source file.
3658         * testsuite/incr_comdat_test_2_v1.cc: New source file.
3659         * testsuite/incr_comdat_test_2_v2.cc: New source file.
3660         * testsuite/incr_comdat_test_2_v3.cc: New source file.
3661
3662 2011-09-13  Ian Lance Taylor  <iant@google.com>
3663
3664         * object.cc (Sized_relobj_file::do_layout): Remove unused local
3665         variable external_symbols_offset.
3666
3667 2011-09-12  Ian Lance Taylor  <iant@google.com>
3668
3669         * object.cc (Sized_relobj_file::do_layout): Remove assertion which
3670         triggered if object has no symbols.
3671
3672 2011-09-09  David S. Miller  <davem@davemloft.net>
3673
3674         * output.cc (Output_fill_debug_info::do_write): Use Swap_unaligned.
3675         (Output_fill_debug_line::do_write): Likewise.
3676
3677 2011-08-29  Cary Coutant  <ccoutant@google.com>
3678
3679         * output.cc: (Output_fill_debug_info::do_minimum_hole_size): Add
3680         casts to match formatting specs.
3681         (Output_fill_debug_line::do_minimum_hole_size): Likewise.
3682
3683 2011-08-26  Cary Coutant  <ccoutant@google.com>
3684
3685         * layout.cc (Free_list::allocate): Provide guarantee of minimum
3686         remaining hole size when allocating.
3687         (Layout::make_output_section): Set fill methods for debug sections.
3688         * layout.h (Free_list::Free_list_node): Move from private to
3689         public.
3690         (Free_list::set_min_hole_size): New function.
3691         (Free_list::begin, Free_list::end): New functions.
3692         (Free_list::min_hole_): New data member.
3693         * output.cc: Include dwarf.h.
3694         (Output_fill_debug_info::do_minimum_hole_size): New function.
3695         (Output_fill_debug_info::do_write): New function.
3696         (Output_fill_debug_line::do_minimum_hole_size): New function.
3697         (Output_fill_debug_line::do_write): New function.
3698         (Output_section::Output_section): Initialize new data member.
3699         (Output_section::set_final_data_size): Ensure patch space is larger
3700         than minimum hole size.
3701         (Output_section::do_write): Fill holes in debug sections.
3702         * output.h (Output_fill): New class.
3703         (Output_fill_debug_info): New class.
3704         (Output_fill_debug_line): New class.
3705         (Output_section::set_free_space_fill): New function.
3706         (Output_section::free_space_fill_): New data member.
3707         * testsuite/Makefile.am (incremental_test_3): Add
3708         --incremental-patch option.
3709         (incremental_test_4): Likewise.
3710         (incremental_test_5): Likewise.
3711         (incremental_test_6): Likewise.
3712         (incremental_copy_test): Likewise.
3713         (incremental_common_test_1): Likewise.
3714         * testsuite/Makefile.in: Regenerate.
3715
3716 2011-08-26  Nick Clifton  <nickc@redhat.com>
3717
3718         * po/es.po: Updated Spanish translation.
3719
3720 2011-08-01  Cary Coutant  <ccoutant@google.com>
3721
3722         * gold/testsuite/Makefile.am (justsyms_exec): New testcase.
3723         * gold/testsuite/Makefile.in: Regenerate.
3724         * gold/testsuite/justsyms_exec.c: New source file.
3725         * gold/testsuite/justsyms_lib.c: New source file.
3726
3727 2011-08-01  Cary Coutant  <ccoutant@google.com>
3728
3729         * layout.cc (Layout::set_segment_offsets): Don't realign text
3730         segment if -Ttext was specified.
3731         * object.cc (Sized_relobj_file::Sized_relobj_file): Store the ELF
3732         file type.
3733         * object.h (Sized_relobj_file::e_type): New function.
3734         (Sized_relobj_file::e_type_): New data member.
3735         * symtab.cc (Symbol_table::add_from_relobj): Don't add section
3736         base address for ET_EXEC files.
3737         * target.cc (Target::do_make_elf_object_implementation): Allow
3738         ET_EXEC files with --just-symbols option.
3739
3740 2011-07-28  Cary Coutant  <ccoutant@google.com>
3741
3742         * workqueue-internal.h (Workqueue_threader::should_cancel_thread):
3743         Add thread_number parameter.
3744         (Workqueue_threader_threadpool::should_cancel_thread): Likewise.
3745         * workqueue-threads.cc
3746         (Workqueue_threader_threadpool::should_cancel_thread): Cancel
3747         current thread if its thread number is greater than desired thread
3748         count.
3749         * workqueue.cc (Workqueue_threader_single::should_cancel_thread):
3750         Add thread_number parameter.
3751         (Workqueue::should_cancel_thread): Likewise.
3752         (Workqueue::find_runnable_or_wait): Pass thread_number to
3753         should_cancel_thread.
3754         * workqueue.h (Workqueue::should_cancel_thread): Add thread_number
3755         parameter.
3756
3757 2011-07-22  Sriraman Tallam  <tmsriram@google.com>
3758
3759         * symtab.cc (Symbol_table::add_from_relobj): Mark symbol as referenced
3760         only after checking if it cannot be forced local.
3761         * symtab.h (is_externally_visible): Check if the symbol is not forced
3762         local.
3763
3764 2011-07-15  Ian Lance Taylor  <iant@google.com>
3765
3766         * options.h (class General_options): Add --print-output-format.
3767         Move -EL next to -EB, for  better --help output.
3768         * target-select.cc: Include <cstdio>, "options.h", and
3769         "parameters.h".
3770         (Target_selector::do_target_bfd_name): New function.
3771         (print_output_format): New function.
3772         * target-select.h (class Target_selector): Update declarations.
3773         (Target_selector::target_bfd_name): New function.
3774         (print_output_format): Declare.
3775         * main.cc: Include "target-select.h".
3776         (main): Handle --print-output-format.
3777         * gold.cc: Include "target-select.h".
3778         (queue_initial_tasks): Handle --print-output-format when there are
3779         no input files.
3780         * parameters.cc (parameters_force_valid_target): Give a better
3781         error message if -EB/-EL does not match target.
3782         * freebsd.h (Target_selector_freebsd::do_target_bfd_name): New
3783         function.
3784
3785 2011-07-15  Ian Lance Taylor  <iant@google.com>
3786
3787         * i386.cc (class Output_data_plt_i386): Add layout_ field.
3788         (Output_data_plt_i386::Output_data_plt_i386): Initialize layout_.
3789         (Output_data_plt_i386::do_write): Write address of .dynamic
3790         section to first entry in .got.plt section.
3791         * x86_64.cc (class Output_data_plt_x86_64): Add layout_ field.
3792         (Output_data_plt_x86_64::Output_data_plt_x86_64) [both versions]:
3793         Initialize layout_.
3794         (Output_data_plt_x86_64::do_write): Write address of .dynamic
3795         section to first entry in .got.plt section.
3796         * layout.h (Layout::dynamic_section): New function.
3797
3798 2011-07-13  Sriraman Tallam  <tmsriram@google.com>
3799
3800         * archive.cc (Archive::get_elf_object_for_member): Add extra parameter
3801         to claim_file call.
3802         * layout.cc (Layout::Layout): Initialize section_ordering_specified_,
3803         input_section_position_, and input_section_glob_.
3804         (read_layout_from_file): Call function section_ordering_specified.
3805         * layout.h (is_section_ordering_specified): New function.
3806         (section_ordering_specified): New function.
3807         (section_ordering_specified_): New boolean member.
3808         * main.cc(main): Call load_plugins after layout object is defined.
3809         * output.cc (Output_section::add_input_section): Use
3810         function section_ordering_specified to check if section ordering is
3811         needed.
3812         * output.cc (Output_section::add_relaxed_input_section): Use
3813         function section_ordering_specified to check if section ordering is
3814         needed.
3815         (Output_section::update_section_layout): New function.
3816         (Output_section::sort_attached_input_sections): Check if input section
3817         must be reordered.
3818         * output.h (Output_section::update_section_layout): New function.
3819         * plugin.cc (get_section_count): New function.
3820         (get_section_type): New function.
3821         (get_section_name): New function.
3822         (get_section_contents): New function.
3823         (update_section_order): New function.
3824         (allow_section_ordering): New function.
3825         (Plugin::load): Add the new interfaces to the transfer vector.
3826         (Plugin_manager::load_plugins): New parameter.
3827         (Plugin_manager::all_symbols_read): New parameter.
3828         (Plugin_manager::claim_file): New parameter. Save the elf object for
3829         unclaimed objects.
3830         (Plugin_manager::get_elf_object): New function.
3831         (Plugin_manager::get_view): Change to directly use the bool to check
3832         if get_view is called from claim_file_hook.
3833         * plugin.h (input_objects): New function
3834         (Plugin__manager::load_plugins): New parameter.
3835         (Plugin_manager::claim_file): New parameter.
3836         (Plugin_manager::get_elf_object): New function.
3837         (Plugin_manager::in_claim_file_handler): New function.
3838         (Plugin_manager::in_claim_file_handler_): New member.
3839         (layout): New function.
3840         * readsyms.cc (Read_symbols::do_read_symbols): Call the claim_file
3841         handler with an extra parameter. Make the elf object before calling
3842         claim_file handler.
3843         * testsuite/plugin_test.c (get_section_count): New function pointer.
3844         (get_section_type): New function pointer.
3845         (get_section_name): New function pointer.
3846         (get_section_contents): New function pointer.
3847         (update_section_order): New function pointer.
3848         (allow_section_ordering): New function pointer.
3849         (onload): Check if the new interfaces exist.
3850
3851 2011-07-13  Ian Lance Taylor  <iant@google.com>
3852
3853         * i386.cc (Target_i386::got_section): If -z now, make .got.plt a
3854         relro section.
3855         * x86_64.cc (Target_x86_64::got_section): Likewise.
3856         * testsuite/Makefile.am (check_PROGRAMS): Add relro_now_test.
3857         (relro_now_test_SOURCES): New variable.
3858         (relro_now_test_DEPENDENCIES): New variable.
3859         (relro_now_test_LDFLAGS): New variable.
3860         (relro_now_test_LDADD): New variable.
3861         (relro_now_test.so): New target.
3862         * testsuite/Makefile.in: Rebuild.
3863
3864 2011-07-12  Ian Lance Taylor  <iant@google.com>
3865
3866         PR gold/12980
3867         * i386.cc (Target_i386::Scan::global): For a GOT reloc, use a
3868         GLOB_DAT relocation rather than a RELATIVE relocation for a
3869         protected symbol when creating a shared library.
3870         * x86_64.cc (Target_x86_64::Scan::global): Likewise.
3871         * testsuite/protected_1.cc (f2, get_f2_addr): New functions.
3872         * testsuite/protected_main_1.cc (main): Test that protected
3873         function has same address.
3874
3875 2011-07-11  Ian Lance Taylor  <iant@google.com>
3876
3877         PR gold/12979
3878         * options.h (class General_options): Add -Bgroup.
3879         * options.cc (General_options::finalize): If -Bgroup is set,
3880         default to --unresolved-symbols=report-all.
3881         * layout.cc (Layout::finish_dynamic_section): Implement -Bgroup.
3882         * target-reloc.h (issue_undefined_symbol_error): Handle
3883         --unresolved-symbols=report-all.
3884
3885 2011-07-08  Ian Lance Taylor  <iant@google.com>
3886
3887         PR gold/11985
3888         * layout.cc (Layout::create_initial_dynamic_sections): Don't crash
3889         if linker script discards key sections.
3890         (Layout::create_dynamic_symtab): Likewise.
3891         (Layout::assign_local_dynsym_offsets): Likewise.
3892         (Layout::sized_create_version_sections): Likewise.
3893         (Layout::create_interp): Likewise.
3894         (Layout::finish_dynamic_section): Likewise.
3895         (Layout::set_dynamic_symbol_size): Likewise.
3896
3897 2011-07-08  Ian Lance Taylor  <iant@google.com>
3898
3899         PR gold/12386
3900         * options.h (class General_options): Add --unresolved-symbols.
3901         * target-reloc.h (issue_undefined_symbol_error): Check
3902         --unresolved-symbols.  Add comments.
3903
3904 2011-07-08  Ian Lance Taylor  <iant@google.com>
3905
3906         * testsuite/odr_violation2.cc (Ordering::operator()): Make
3907         expression more complex.
3908
3909 2011-07-08  Ian Lance Taylor  <iant@google.com>
3910
3911         PR gold/11317
3912         * target-reloc.h (issue_undefined_symbol_error): New inline
3913         function, broken out of relocate_section.
3914         (relocate_section): Call issue_undefined_symbol_error.
3915         * i386.cc (Target_i386::Relocate::relocate_tls): Don't crash if
3916         there is no TLS segment if we are about to issue an undefined
3917         symbol error.
3918         * x86_64.cc (Target_x86_64::relocate_tls): Likewise.
3919
3920 2011-07-08  Ian Lance Taylor  <iant@google.com>
3921
3922         PR gold/12279
3923         * resolve.cc (Symbol_table::should_override): Add fromtype
3924         parameter.  Change all callers.  Give error when linking together
3925         TLS and non-TLS symbol.
3926         (Symbol_table::should_override_with_special): Add fromtype
3927         parameter.  Change all callers.
3928         * i386.cc (Target_i386::Relocate::relocate_tls): Don't crash if
3929         there is no TLS segment if we have reported some errors.
3930         * x86_64.cc (Target_x86_64::relocate_tls): Likewise.
3931
3932 2011-07-08  Ian Lance Taylor  <iant@google.com>
3933
3934         PR gold/12372
3935         * target.h (Target::plt_address_for_global): New function.
3936         (Target::plt_address_for_local): New function.
3937         (Target::plt_section_for_global): Remove.
3938         (Target::plt_section_for_local): Remove.
3939         (Target::do_plt_address_for_global): New virtual function.
3940         (Target::do_plt_address_for_local): New virtual function.
3941         (Target::do_plt_section_for_global): Remove.
3942         (Target::do_plt_section_for_local): Remove.
3943         (Target::register_global_plt_entry): Add Symbol_table and Layout
3944         parameters.
3945         * output.cc (Output_data_got::Got_entry::write): Use
3946         plt_address_for_global and plt_address_for_local.
3947         * layout.cc (Layout::add_target_dynamic_tags): Use size and
3948         address of output section.
3949         * i386.cc (class Output_data_plt_i386): Add irelative_rel_,
3950         got_irelative_, and irelative_count_ fields.  Update
3951         declarations.
3952         (Output_data_plt_i386::has_irelative_section): New function.
3953         (Output_data_plt_i386::entry_count): Add irelative_count_.
3954         (Output_data_plt_i386::set_final_data_size): Likewise.
3955         (class Target_i386): Add got_irelative_ and rel_irelative_
3956         fields.  Update declarations.
3957         (Target_i386::Target_i386): Initialize new fields.
3958         (Target_i386::do_plt_address_for_global): New function replacing
3959         do_plt_section_for_global.
3960         (Target_i386::do_plt_address_for_local): New function replacing
3961         do_plt_section_for_local.
3962         (Target_i386::got_section): Create got_irelative_.
3963         (Target_i386::rel_irelative_section): New function.
3964         (Output_data_plt_i386::Output_data_plt_i386): Initialize new
3965         fields.  Don't define __rel_iplt_{start,end}.
3966         (Output_data_plt_i386::add_entry): Add symtab and layout
3967         parameters.  Change all callers.  Use different PLT and GOT for
3968         IFUNC symbols.
3969         (Output_data_plt_i386::add_local_ifunc_entry): Add symtab and
3970         layout parameters.  Change all callers.  Use different PLT and
3971         GOT.
3972         (Output_data_plt_i386::rel_tls_desc): Fix formatting.
3973         (Output_data_plt_i386::rel_irelative): New function.
3974         (Output_data_plt_i386::address_for_global): New function.
3975         (Output_data_plt_i386::address_for_local): New function.
3976         (Output_data_plt_i386::do_write): Write out IRELATIVE area.  Use
3977         IRELATIVE GOT when changing IFUNC GOT entries.
3978         (Target_i386::Scan::global): Use IRELATIVE GOT for IRELATIVE
3979         reloc.
3980         (Target_i386::do_finalize_sections): Create the __rel_iplt symbols
3981         if we didn't create an IRELATIVE GOT.
3982         (Target_i386::Relocate::relocate): Use plt_address_for_global and
3983         plt_address_for_local.
3984         (Target_i386::do_dynsym_value): Use plt_address_for_global.
3985         * x86_64.cc (class Output_data_plt_x86_64): Add irelative_rel_,
3986         got_irelative_, and irelative_count_ fields.  Update
3987         declarations.
3988         (Output_data_plt_x86_64::Output_data_plt_x86_64) [both versions]:
3989         Initialize new fields.  Remove symtab parameter.  Change all
3990         callers.
3991         (Output_data_plt_x86_64::get_tlsdesc_plt_offset): Add
3992         irelative_count_.
3993         (Output_data_plt_x86_64::has_irelative_section): New function.
3994         (Output_data_plt_x86_64::entry_count): Add irelative_count_.
3995         (class Target_x86_64): Add got_irelative_ and rel_irelative_
3996         fields.  Update declarations.
3997         (Target_x86_64::Target_x86_64): Initialize new fields.
3998         (Target_x86_64::do_plt_address_for_global): New function replacing
3999         do_plt_section_for_global.
4000         (Target_x86_64::do_plt_address_for_local): New function replacing
4001         do_plt_section_for_local.
4002         (Target_x86_64::got_section): Create got_irelative_.
4003         (Target_x86_64::rela_irelative_section): New function.
4004         (Output_data_plt_x86_64::init): Remove symtab parameter.  Change
4005         all callers.  Don't create __rel_iplt_{start,end}.
4006         (Output_data_plt_x86_64::add_entry): Add symtab and layout
4007         parameters.  Change all callers.  Use different PLT and GOT for
4008         IFUNC symbols.
4009         (Output_data_plt_x86_64::add_local_ifunc_entry): Add symtab and
4010         layout parameters.  Change all callers.  Use different PLT and
4011         GOT.
4012         (Output_data_plt_x86_64::add_relocation): Add symtab and layout
4013         parameters.  Change all callers.  Use different PLT and GOT for
4014         IFUNC symbols.
4015         (Output_data_plt_x86_64::rela_tlsdesc): Fix formatting.
4016         (Output_data_plt_x86_64::rela_irelative): New function.
4017         (Output_data_plt_x86_64::address_for_global): New function.
4018         (Output_data_plt_x86_64::address_for_local): New function.
4019         (Output_data_plt_x86_64::set_final_data_size): Likewise.
4020         (Output_data_plt_x86_64::do_write): Write out IRELATIVE area.
4021         (Target_x86_64::init_got_plt_for_update): Create got_irelative_.
4022         (Target_x86_64::register_global_plt_entry): Add symtab and layout
4023         parameters.
4024         (Target_x86_64::Scan::global): Use IRELATIVE GOT for IRELATIVE
4025         reloc.
4026         (Target_x86_64::do_finalize_sections): Create the __rela_iplt
4027         symbols if we didn't create an IRELATIVE GOT.
4028         (Target_x86_64::Relocate::relocate): Use plt_address_for_global and
4029         plt_address_for_local.
4030         (Target_x86_64::do_dynsym_value): Use plt_address_for_global.
4031         * testsuite/ifuncvar1.c: New test file.
4032         * testsuite/ifuncvar2.c: New test file.
4033         * testsuite/ifuncvar3.c: New test file.
4034         * testsuite/Makefile.am (check_PROGRAMS): Add ifuncvar.
4035         (ifuncvar1_pic.o, ifuncvar2_pic.o, ifuncvar.so): New targets.
4036         (ifuncvar_SOURCES, ifuncvar_DEPENDENCIES): New variables.
4037         (ifuncvar_LDFLAGS, ifuncvar_LDADD): New variables.
4038         * testsuite/Makefile.in: Rebuild.
4039
4040 2011-07-07  Cary Coutant  <ccoutant@google.com>
4041
4042         * testsuite/Makefile.am (two_file_test_1_v1_ndebug.o): New target.
4043         (two_file_test_1_ndebug.o): Likewise.
4044         (two_file_test_1b_ndebug.o): Likewise.
4045         (two_file_test_2_ndebug.o): Likewise.
4046         (two_file_test_main_ndebug.o): Likewise.
4047         (incremental_test_2): Link with no-debug versions.
4048
4049 2011-07-06  Cary Coutant  <ccoutant@google.com>
4050
4051         * gold/incremental.cc
4052         (Output_section_incremental_inputs::write_info_blocks): Check for
4053         hidden and internal symbols.
4054
4055 2011-07-06  Cary Coutant  <ccoutant@google.com>
4056
4057         * incremental.cc (Sized_incremental_binary::do_file_has_changed):
4058         Check disposition for startup file.
4059         (Incremental_inputs::report_command_line): Ignore
4060         --incremental-startup-unchanged option.
4061         * options.cc (General_options::parse_incremental_startup_unchanged):
4062         New function.
4063         (General_options::General_options): Initialize new data member.
4064         * options.h (Incremental_disposition): Add INCREMENTAL_STARTUP.
4065         (General_options): Add --incremental-startup-unchanged option.
4066         (General_options::incremental_startup_disposition): New function.
4067         (General_options::incremental_startup_disposition_): New data member.
4068
4069 2011-07-06  Cary Coutant  <ccoutant@google.com>
4070
4071         * incremental.cc (Sized_incremental_binary::setup_readers): Pass
4072         input file index to Script_info ctor.
4073         (Sized_incremental_binary::do_file_has_changed): Find the
4074         command-line argument for files named in scripts.
4075         * incremental.h (Script_info::Script_info): New ctor
4076         with input file index.
4077         (Script_info::input_file_index): New function.
4078         (Script_info::input_file_index_): New data member.
4079         (Incremental_binary::get_library): Add const.
4080         (Incremental_binary::get_script_info): Add const.
4081         * readsyms.cc (Read_member::is_runnable): Check for this_blocker_.
4082         * testsuite/Makefile.am (incremental_test_5): New test case.
4083         (incremental_test_6): New test case.
4084         * testsuite/Makefile.in: Regenerate.
4085
4086 2011-07-06  Cary Coutant  <ccoutant@google.com>
4087
4088         * incremental.cc (Sized_incremental_binary::do_check_inputs): Add
4089         debug output when command lines differ.
4090
4091 2011-07-06  Cary Coutant  <ccoutant@google.com>
4092
4093         * incremental.cc (Incremental_inputs::report_command_line): Ignore
4094         --incremental-patch option.
4095         * layout.cc (Free_list::allocate): Extend allocation beyond original
4096         end if enabled.
4097         (Layout::make_output_section): Mark sections that should get
4098         patch space.
4099         * options.cc (parse_percent): New function.
4100         * options.h (parse_percent): New function.
4101         (DEFINE_percent): New macro.
4102         (General_options): Add --incremental-patch option.
4103         * output.cc (Output_section::Output_section): Initialize new data
4104         members.
4105         (Output_section::add_input_section): Print section name when out
4106         of patch space.
4107         (Output_section::add_output_section_data): Likewise.
4108         (Output_section::set_final_data_size): Add patch space when
4109         doing --incremental-full.
4110         (Output_section::do_reset_address_and_file_offset): Remove patch
4111         space.
4112         (Output_segment::set_section_list_addresses): Print debug output
4113         only if --incremental-update.
4114         * output.h (Output_section::set_is_patch_space_allowed): New function.
4115         (Output_section::is_patch_space_allowed_): New data member.
4116         (Output_section::patch_space_): New data member.
4117         * parameters.cc (Parameters::incremental_full): New function.
4118         * parameters.h (Parameters::incremental_full): New function
4119         * testsuite/Makefile.am (incremental_test_2): Add test for
4120         --incremental-patch option.
4121         * testsuite/Makefile.in: Regenerate.
4122         * testsuite/two_file_test_1_v1.cc (t1, t2, t3): Add comments.
4123         (t18): Remove function body.
4124
4125 2011-07-05  Doug Kwan  <dougkwan@google.com>
4126
4127         PR gold/12771
4128         * arm.cc (Arm_relocate_functions::abs8): Use int32_t for addend and
4129         Arm_Address type for relocation result.
4130         (Arm_relocate_functions::abs16): Use unaligned access.  Also fix
4131         overflow check.
4132         (Arm_relocate_functions::abs32): Use unaligned access.
4133         (Arm_relocate_functions::rel32): Ditto.
4134         (Arm_relocate_functions::prel31): Ditto.
4135         (Arm_exidix_cantunwind::do_fixed_endian_write): Ditto.
4136         * testsuite/Makefile.am: Add new test arm_unaligned_reloc for unaligned
4137         static data relocations.
4138         * testsuite/Makefile.in: Regnerate.
4139         * testsuite/arm_unaligned_reloc.{s,sh}: New files.
4140
4141 2011-07-05  Ian Lance Taylor  <iant@google.com>
4142
4143         PR gold/12392
4144         * i386.cc (Target_i386::do_finalize_sections): Define __rel_iplt
4145         symbols if necessary.
4146         * x86_64.cc (Target_x86_64::do_finalize_sections): Likewise.
4147
4148 2011-07-05  Ian Lance Taylor  <iant@google.com>
4149
4150         PR gold/12952
4151         * resolve.cc (Symbol::override_base_with_special): Simply override
4152         version with special symbol version, ignoring previous version.
4153
4154 2011-07-05  Ian Lance Taylor  <iant@google.com>
4155
4156         * object.cc (Sized_relobj_file::include_section_group): Add
4157         information to comment about signature location.
4158
4159 2011-07-02  Ian Lance Taylor  <iant@google.com>
4160
4161         PR gold/12957
4162         * options.h (class General_options): Add -f and -F.
4163         * options.cc (General_options::finalize): Fatal error if -f/-F
4164         are used without -shared.
4165         * layout.cc (Layout::finish_dynamic_section): Implement -f/-F.
4166
4167 2011-07-02  Ian Lance Taylor  <iant@google.com>
4168
4169         * dirsearch.cc (Dir_cache::read_files): Ignore ENOTDIR errors.
4170
4171 2011-07-01  Ian Lance Taylor  <iant@google.com>
4172
4173         PR gold/12525
4174         PR gold/12952
4175         * resolve.cc (Symbol::override_base_with_special): Don't override
4176         the version if the overriding symbol has a different name.
4177         * dynobj.cc (Versions::add_def): Add dynpool parameter.  Change
4178         all callers.  If we give an error about an undefined version,
4179         define the base version if necessary.
4180         * dynobj.h (class Versions): Update declaration.
4181         * testsuite/weak_alias_test_5.cc: New file.
4182         * testsuite/weak_alias_test.script: New file.
4183         * testsuite/weak_alias_test_main.cc: Check that versioned_symbol
4184         and versioned_alias have the right value, and call t2.
4185         * testsuite/Makefile.am (weak_alias_test_DEPENDENCIES): Add
4186         weak_alias_test_5.so.
4187         (weak_alias_test_LDADD): Likewise.
4188         (weak_alias_test_5_pic.o, weak_alias_test_5.so): New targets.
4189         * testsuite/Makefile.in: Rebuild.
4190
4191 2011-07-01  Ian Lance Taylor  <iant@google.com>
4192
4193         PR gold/12525
4194         * options.h (class General_options): Support -z notext.
4195         * testsuite/Makefile.am (two_file_shared_1_nonpic.so): Use
4196         -Wl,-z,notext.
4197         (two_file_shared_nonpic.so): Likewise.
4198         (two_file_shared_mixed.so): Likewise.
4199         (two_file_shared_mixed_1.so): Likewise.
4200         (weak_undef_lib_nonpic.so): Likewise.
4201         (alt/weak_undef_lib_nonpic.so): Likewise.
4202         (tls_test_shared_nonpic.so): Likewise.
4203         * testsuite/Makefile.in: Rebuild.
4204
4205 2011-07-01  Ian Lance Taylor  <iant@google.com>
4206
4207         PR gold/12525
4208         * configure.ac: Test whether static linking works, setting
4209         the automake conditional HAVE_STATIC.
4210         * testsuite/Makefile.am: Disable tests using -static if
4211         HAVE_STATIC is not true.
4212         * configure, testsuite/Makefile.in: Rebuild.
4213
4214 2011-07-01  Ian Lance Taylor  <iant@google.com>
4215
4216         PR gold/12525
4217         * ehframe.cc (Eh_frame_hdr::get_fde_pc): Handle DW_EH_PE_datarel.
4218         Assert if we see DW_EH_PE_indirect.
4219         * target.h (Target::ehframe_datarel_base): New function.
4220         (Target::do_ehframe_datarel_base): New target function.
4221         * i386.cc (Target_i386::do_ehframe_datarel_base): New function.
4222         * x86_64.cc (Target_x86_64::do_ehframe_datarel_base): New
4223         function.
4224
4225 2011-07-01  Ian Lance Taylor  <iant@google.com>
4226
4227         PR gold/12571
4228         * options.h (class General_options): Add
4229         --ld-generated-unwind-info.
4230         * ehframe.cc (Fde::write): Add address parameter.  Change all
4231         callers.  If associated with PLT, fill in address and size.
4232         (Cie::set_output_offset): Only add merge mapping if there is an
4233         object.
4234         (Cie::write): Add address parameter.  Change all callers.
4235         (Eh_frame::add_ehframe_for_plt): New function.
4236         * ehframe.h (class Fde): Update declarations.  Move shndx_ and
4237         input_offset_ fields into union u_, with new plt field.
4238         (Fde::Fde): Adjust for new union field.
4239         (Fde::Fde) [Output_data version]: New constructor.
4240         (Fde::add_mapping): Only add merge mapping if there is an object.
4241         (class Cie): Update declarations.
4242         (class Eh_frame): Declare add_ehframe_for_plt.
4243         * layout.cc (Layout::layout_eh_frame): Break out code into
4244         make_eh_frame_section, and call it.
4245         (Layout::make_eh_frame_section): New function.
4246         (Layout::add_eh_frame_for_plt): New function.
4247         * layout.h (class Layout): Update declarations.
4248         * merge.cc (Merge_map::add_mapping): Add assertion.
4249         * i386.cc: Include "dwarf.h".
4250         (class Output_data_plt_i386): Make first_plt_entry,
4251         dyn_first_plt_entry, exec_plt_entry, and dyn_plt_entry const.  Add
4252         plt_eh_frame_cie_size, plt_eh_frame_fde_size, plt_eh_frame_cie,
4253         and plt_eh_frame_fde.
4254         (Output_data_plt_i386::Output_data_plt_i386): Align to 16-byte
4255         boundary.  Call add_eh_frame_for_plt if appropriate.
4256         * x86_64.cc: Include "dwarf.h".
4257         (class Output_data_plt_x86_64): Align to 16-byte boundary.  Make
4258         first_plt_entry, plt_entry and tlsdesc_plt_entry const.  Add
4259         plt_eh_frame_cie_size, plt_eh_frame_fde_size, plt_eh_frame_cie,
4260         and plt_eh_frame_fde.
4261         (Output_data_plt_x86_64::init): Call add_eh_frame_for_plt if
4262         appropriate.
4263
4264 2011-06-29  Ian Lance Taylor  <iant@google.com>
4265
4266         PR gold/12629
4267         * object.cc (Sized_relobj_file::layout_section): Change shdr
4268         parameter to be const.
4269         (Sized_relobj_file::layout_eh_frame_section): New function, broken
4270         out of do_layout.
4271         (Sized_relobj_file::do_layout): Defer .eh_frame sections if
4272         appropriate.  Call layout_eh_frame_section.
4273         (Sized_relobj_file::do_layout_deferred_sections): Handle .eh_frame
4274         sections.
4275         * object.h (class Sized_relobj_file): Update declarations.
4276
4277 2011-06-29  Ian Lance Taylor  <iant@google.com>
4278
4279         PR gold/12652
4280         * script.cc (Token::integer_value): Accept trailing M/m/K/k
4281         modifier.
4282         (Lex::gather_token): Accept trailing M/m/K/k for integers.
4283
4284 2011-06-29  Ian Lance Taylor  <iant@google.com>
4285
4286         PR gold/12675
4287         * object.cc (Sized_relobj_file::check_eh_frame_flags): Check for
4288         SHT_X86_64_UNWIND.
4289         * layout.cc (Layout::layout_eh_frame): Likewise.
4290
4291 2011-06-29  Ian Lance Taylor  <iant@google.com>
4292
4293         PR gold/12695
4294         * layout.cc (Layout::symtab_section_shndx): New function.
4295         * layout.h (class Layout): Declare symtab_section_shndx.
4296         * output.cc (Output_section::write_header): Call it.
4297
4298 2011-06-29  Ian Lance Taylor  <iant@google.com>
4299
4300         PR gold/12818
4301         * symtab.cc (Symbol::should_add_dynsym_entry): Don't add undefined
4302         symbols which are not used in a relocation.
4303
4304 2011-06-28  Ian Lance Taylor  <iant@google.com>
4305
4306         PR gold/12898
4307         * layout.cc (Layout::segment_precedes): Don't crash if a linker
4308         script create indistinguishable segments.
4309         (Layout::set_segment_offsets): Use stable_sort when sorting
4310         segments.  Pass this to Compare_segments constructor.
4311         * layout.h (class Layout): Make segment_precedes non-static.
4312         (class Compare_segments): Change from struct to class.  Add
4313         layout_ field.  Add constructor.
4314         * script-sections.cc
4315         (Script_sections::attach_sections_using_phdrs_clause): Rename
4316         local orphan to is_orphan.  Don't report failure to put empty
4317         section in segment.  On attachment failure, report name of
4318         section, and attach to first PT_LOAD segment.
4319
4320 2011-06-28  Ian Lance Taylor  <iant@google.com>
4321
4322         PR gold/12934
4323         * target-select.cc (Target_selector::Target_selector): Add
4324         emulation parameter.  Change all callers.
4325         (select_target_by_bfd_name): Rename from select_target_by_name.
4326         Change all callers.
4327         (select_target_by_emulation): New function.
4328         (supported_emulation_names): New function.
4329         * target-select.h (class Target_selector): Add emulation_ field.
4330         Update declarations.
4331         (Target_selector::recognize_by_bfd_name): Rename from
4332         recognize_by_name.  Change all callers.
4333         (Target_selector::supported_bfd_names): Rename from
4334         supported_names.  Change all callers.
4335         (Target_selector::recognize_by_emulation): New function.
4336         (Target_selector::supported_emulations): New function.
4337         (Target_selector::emulation): New function.
4338         (Target_selector::do_recognize_by_bfd_name): Rename from
4339         do_recognize_by_name.  Change all callers.
4340         (Target_selector::do_supported_bfd_names): Rename from
4341         do_supported_names.  Change all callers.
4342         (Target_selector::do_recognize_by_emulation): New function.
4343         (Target_selector::do_supported_emulations): New function.
4344         (select_target_by_bfd_name): Change name in declaration.
4345         (select_target_by_emulation): Declare.
4346         (supported_emulation_names): Declare.
4347         * parameters.cc (parameters_force_valid_target): Try to find
4348         target based on emulation from -m option.
4349         * options.h (class General_options): Change doc string for -m.
4350         * options.cc (help): Print emulations.
4351         (General_options::parse_V): Likewise.
4352         * freebsd.h (Target_selector_freebsd::Target_selector_freebsd):
4353         Add emulation parameter.  Change all callers.
4354
4355 2011-06-28  Ian Lance Taylor  <iant@google.com>
4356
4357         * target.h (class Target): Add osabi_ field.
4358         (Target::osabi): New function.
4359         (Target::set_osabi): New function.
4360         (Target::Target): Initialize osabi_.
4361         (Target::do_adjust_elf_header): Make pure virtual.
4362         (Sized_target::do_adjust_elf_header): Declare.
4363         * target.cc (Sized_target::do_adjust_elf_header): New function.
4364         (class Sized_target): Instantiate all versions.
4365         * freebsd.h (class Target_freebsd): Remove.
4366         (Target_selector_freebsd::do_recognize): Call set_osabi on
4367         Target.
4368         (Target_selector_freebsd::do_recognize_by_name): Likewise.
4369         (Target_selector_freebsd::set_osabi): Remove.
4370         * i386.cc (class Target_i386): Inherit from Sized_target rather
4371         than Target_freebsd.
4372         * x86_64.cc (class Target_x86_64): Likewise.
4373
4374 2011-06-28  Ian Lance Taylor  <iant@google.com>
4375
4376         * target.h (Target::can_check_for_function_pointers): Rewrite.
4377         Make non-virtual.
4378         (Target::can_icf_inline_merge_sections): Likewise.
4379         (Target::section_may_have_icf_unsafe_poineters): Likewise.
4380         (Target::Target_info): Add can_icf_inline_merge_sections field.
4381         (Target::do_can_check_for_function_pointers): New virtual
4382         function.
4383         (Target::do_section_may_have_icf_unsafe_pointers): Likewise.
4384         * arm.cc (Target_arm::do_can_check_for_function_pointers): Rename
4385         from can_check_for_function_pointers, move in file.
4386         (Target_arm::do_section_may_have_icf_unsafe_pointers): Rename from
4387         section_may_have_icf_unsafe_poineters, move in file.
4388         (Target_arm::arm_info): Initialize can_icf_inline_merge_sections.
4389         * i386.cc (Target_i386::do_can_check_for_function_pointers):
4390         Rename from can_check_for_function_pointers, move in file.
4391         (Target_i386::can_icf_inline_merge_sections): Remove.
4392         (Target_i386::i386_info): Initialize
4393         can_icf_inline_merge_sections.
4394         * powerpc.cc (Target_powerpc::powerpc_info) [all versions]:
4395         Initialize can_icf_inline_merge_sections.
4396         * sparc.cc (Target_sparc::sparc_info) [both version]: Likewise.
4397         * x86_64.cc (Target_x86_64::do_can_check_for_function_pointers):
4398         Rename from can_check_for_function_pointers, move in file.
4399         (Target_x86_64::can_icf_inline_merge_sections): Remove.
4400         (Target_x86_64::x86_64_info): Initialize
4401         can_icf_inline_merge_sections.
4402         * testsuite/testfile.cc (Target_test::test_target_info):
4403         Likewise.
4404         * icf.cc (get_section_contents): Correct formatting.
4405
4406 2011-06-27  Ian Lance Taylor  <iant@google.com>
4407
4408         * symtab.cc (Symbol::versioned_name): New function.
4409         (Symbol_table::add_to_final_symtab): Use versioned_name when
4410         appropriate.
4411         (Symbol_table::sized_write_symbol): Likewise.
4412         * symtab.h (class Symbol): Declare versioned_name.
4413         * stringpool.h (class Stringpool_template): Add variant of add
4414         which takes a std::basic_string.
4415         * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_12.
4416         (ver_test_12_SOURCES, ver_test_12_DEPENDENCIES): New variables.
4417         (ver_test_12_LDFLAGS, ver_test_12_LDADD): New variables.
4418         (ver_test_12.o): New target.
4419         * testsuite/Makefile.in: Rebuild.
4420
4421 2011-06-27  Doug Kwan  <dougkwan@google.com>
4422
4423         * arm.cc (Arm_relocate_functions::thm_jump8,
4424         Arm_relocate_functions::thm_jump11): Use a wider signed
4425         type to compute offset.
4426         * testsuite/Makefile.am: Add new tests arm_thm_jump11 and
4427         arm_thm_jump8.
4428         * testsuite/Makefile.in: Regenerate.
4429         * testsuite/arm_branch_in_range.sh: Check test results of
4430         arm_thm_jump11 and arm_thm_jump8.
4431         * testsuite/arm_thm_jump11.s: New test source file.
4432         * testsuite/arm_thm_jump11.t: New linker script.
4433         * testsuite/arm_thm_jump8.s: New test source file.
4434         * testsuite/arm_thm_jump8.t: New linker script.
4435
4436 2011-06-24  Ian Lance Taylor  <iant@google.com>
4437
4438         * layout.cc: Include "object.h".
4439         (ctors_sections_in_init_array): New static variable.
4440         (Layout::is_ctors_in_init_array): New function.
4441         (Layout::layout): Add entry to ctors_sections_in_init_array if
4442         appropriate.
4443         * layout.h (class Layout): Declare is_ctors_in_init_array.
4444         * reloc.cc (Sized_relobj_file::do_relocate): Call reverse_words if
4445         is_ctors_reverse_view is set.
4446         (Sized_relobj_file::write_sections): Add layout parameter.  Change
4447         all callers.  Set is_ctors_reverse_view field of View_size.
4448         (Sized_relobj_file::reverse_words): New function.
4449         * object.h (Sized_relobj_file::View_size): Add
4450         is_ctors_reverse_view field.
4451         (class Sized_relobj_file): Update declarations.
4452         * testsuite/initpri3.c: New test.
4453         * testsuite/Makefile.am: (check_PROGRAMS): Add initpri3a and
4454         initpri3b.
4455         (initpri3a_SOURCES, initpri3a_DEPENDENCIES): New variables.
4456         (initpri3a_LDFLAGS, initpri3a_LDADD): New variables.
4457         (initpri3b_SOURCES, initpri3b_DEPENDENCIES): New variables.
4458         (initpri3b_LDFLAGS, initpri3b_LDADD): New variables.
4459         * testsuite/Makefile.in: Rebuild.
4460
4461 2011-06-24  Cary Coutant  <ccoutant@google.com>
4462
4463         * testsuite/Makefile.am: Add in-tree assembler to gcctestdir.
4464         (debug_msg_cdebug.o, odr_violation1_cdebug.o, odr_violation2_cdebug.o)
4465         (debug_msg_cdebug.err): New targets.
4466         * testsuite/Makefile.in: Regenerate.
4467         * testsuite/debug_msg.sh: Check output of link with compressed debug.
4468         Fix checks for link with shared library.
4469
4470 2011-06-24  Doug Kwan  <dougkwan@google.com>
4471
4472         * arm.cc (Arm_output_section::append_text_sections_to_list): Do not
4473         skip empty text sections.
4474         * testsuite/arm_exidx_test.s: Test handling of an empty text section.
4475
4476 2011-06-22  Ian Lance Taylor  <iant@google.com>
4477
4478         PR gold/12910
4479         * options.h (class General_options): Add --ctors-in-init-array.
4480         * layout.cc (Layout::get_output_section): Treat SHT_INIT_ARRAY and
4481         friends as SHT_PROGBITS for merging sections.
4482         (Layout::layout): Remove special handling of .init_array and
4483         friends.  Don't sort if doing relocatable link.  Sort for .ctors
4484         and .dtors if ctors_in_init_array.
4485         (Layout::make_output_section): Force correct section types for
4486         .init_array and friends.  Don't sort if doing relocatable link,
4487         Don't sort .ctors and .dtors if ctors_in_init_array.
4488         (Layout::section_name_mapping): Remove .ctors. and .dtorso.
4489         (Layout::output_section_name): Add relobj parameter.  Change all
4490         callers.  Handle .ctors. and .dtors. in code rather than table.
4491         Handle .ctors and .dtors if ctors_in_init_array.
4492         (Layout::match_file_name): New function, moved from output.cc.
4493         * layout.h (class Layout): Update declarations.
4494         * output.cc: Include "layout.h".
4495         (Input_section_sort_entry::get_priority): New function.
4496         (Input_section_sort_entry::match_file_name): Just call
4497         Layout::match_file_name.
4498         (Output_section::Input_section_sort_init_fini_compare::operator()):
4499         Handle .ctors and .dtors.  Sort by explicit priority rather than
4500         by name.
4501         * configure.ac: Remove CONSTRUCTOR_PRIORITY test and conditional.
4502         * testsuite/initpri2.c: New test.
4503         * testsuite/Makefile.am: Don't test CONSTRUCTOR_PRIORITY.
4504         (check_PROGRAMS): Add initpri2.
4505         (initpri2_SOURCES, initpri2_DEPENDENCIES): New variables.
4506         (initpri2_LDFLAGS, initpri2_LDADD): New variables.
4507         * configure, testsuite/Makefile.in: Rebuild.
4508
4509 2011-06-19  Ian Lance Taylor  <iant@google.com>
4510
4511         PR gold/12880
4512         * layout.cc (Layout::attach_allocated_section_to_segment): Add a
4513         .interp section to a PT_INTERP segment even if we have seen a
4514         --dynamic-linker option.  Don't do it if we have seen a PHDRS
4515         clause in a linker script.
4516         (Layout::finalize): Don't create a .interp section if we've
4517         already create a PT_INTERP segment.
4518         (Layout::create_interp): Always call choose_output_section (revert
4519         patch of 2011-06-17).  Don't create PT_INTERP segment.
4520         * script-sections.cc
4521         (Script_sections::create_note_and_tls_segments): Add a .interp
4522         section to a PT_INTERP segment even if we have seen a
4523         --dynamic-linker option.
4524
4525 2011-06-18  Ian Lance Taylor  <iant@google.com>
4526
4527         * layout.cc (Layout::finish_dynamic_section): Don't set DT_TEXTREL
4528         merely because a non-PT_LOAD segment has a dynamic reloc.
4529
4530 2011-06-18  Ian Lance Taylor  <iant@google.com>
4531
4532         * layout.cc (Layout::finish_dynamic_section): Don't create
4533         DT_FLAGS entry if not needed.
4534
4535 2011-06-18  Ian Lance Taylor  <iant@google.com>
4536
4537         PR gold/12745
4538         * layout.cc (Layout::layout_eh_frame): Correct handling of
4539         writable .eh_frame section.
4540
4541 2011-06-17  Ian Lance Taylor  <iant@google.com>
4542
4543         PR gold/12893
4544         * resolve.cc (Symbol_table::resolve): Don't give an error if a
4545         symbol is redefined with the exact same object and value.
4546
4547 2011-06-17  Ian Lance Taylor  <iant@google.com>
4548
4549         PR gold/12880
4550         * layout.h (class Layout): Add interp_segment_ field.
4551         * layout.cc (Layout::Layout): Initialize interp_segment_ field.
4552         (Layout::attach_allocated_section_to_segment): If making shared
4553         library, put .interp section in PT_INTERP segment.
4554         (Layout::finalize): Also call create_interp if -dynamic-linker
4555         option was used.
4556         (Layout::create_interp): Assert that there is no PT_INTERP
4557         segment.  If not using a SECTIONS clause, use make_output_section.
4558         (Layout::make_output_segment): Set interp_segment_ if PT_INTERP.
4559         * script-sections.cc
4560         (Script_sections::create_note_and_tls_segments): If making shared
4561         library, put .interp section in PT_INTERP segment.
4562
4563 2011-06-17  Ian Lance Taylor  <iant@google.com>
4564
4565         * object.cc (Sized_relobj_file::do_layout): Keep warning sections
4566         when making a shared library.
4567
4568 2011-06-17  Ian Lance Taylor  <iant@google.com>
4569
4570         * x86_64.cc (Target_x86_64::Scan::check_non_pic): Add gsym
4571         parameter.  Change all callers.  Don't issue warning about PC32
4572         against locally defined symbol.
4573
4574 2011-06-16  Ian Lance Taylor  <iant@google.com>
4575
4576         * symtab.cc (Warnings::issue_warning): Don't warn if relocation
4577         occurs in same object.
4578
4579 2011-06-14  Alan Modra  <amodra@gmail.com>
4580
4581         * po/POTFILES.in: Regenerate.
4582
4583 2011-06-09  Ian Lance Taylor  <iant@google.com>
4584
4585         * script-sections.cc
4586         (Orphan_output_section::set_section_addresses): For a relocatable
4587         link set address to 0.
4588
4589 2011-06-09  Cary Coutant  <ccoutant@google.com>
4590
4591         PR gold/12804
4592         * gold/gold.cc (queue_initial_tasks): Warn if --incremental is
4593         used with --compress-debug-sections.
4594         * gold/object.cc (Sized_relobj_file::do_layout): Report
4595         uncompressed size of compressed input sections.
4596
4597 2011-06-08  Cary Coutant  <ccoutant@google.com>
4598
4599         PR gold/12804
4600         * testsuite/two_file_test_2_v1.cc: Change initialization of
4601         v2 to keep it in .data.
4602
4603 2011-06-07  Cary Coutant  <ccoutant@google.com>
4604
4605         * common.cc (Symbol_table::do_allocate_commons_list): Call
4606         gold_fallback.
4607         * errors.cc (Errors::fatal): Adjust call to gold_exit.
4608         (Errors::fallback): New function.
4609         (gold_fallback): New function.
4610         * errors.h (Errors::fallback): New function.
4611         * gold.cc (gold_exit): Change status parameter to enum; adjust
4612         all callers.
4613         (queue_initial_tasks): Call gold_fallback.
4614         * gold.h: Include cstdlib.
4615         (Exit_status): New enum type.
4616         (gold_exit): Change status parameter to enum.
4617         (gold_fallback): New function.
4618         * layout.cc (Layout::set_section_offsets): Call gold_fallback.
4619         (Layout::create_symtab_sections): Likewise.
4620         (Layout::create_shdrs): Likewise.
4621         * main.cc (main): Adjust call to gold_exit.
4622         * output.cc (Output_data_got::add_got_entry): Call gold_fallback.
4623         (Output_data_got::add_got_entry_pair): Likewise.
4624         (Output_section::add_input_section): Likewise.
4625         (Output_section::add_output_section_data): Likewise.
4626         (Output_segment::set_section_list_addresses): Likewise.
4627         * x86_64.cc (Output_data_plt_x86_64::add_entry): Likewise.
4628
4629 2011-06-07  Cary Coutant  <ccoutant@google.com>
4630
4631         * layout.cc (Layout::set_segment_offsets): Don't adjust layout
4632         for incremental links.
4633         * output.cc (Output_segment::set_section_list_addresses): Remove
4634         FIXME and test for TLS or BSS.
4635
4636 2011-06-07  Cary Coutant  <ccoutant@google.com>
4637
4638         * testsuite/Makefile.am: Add incremental_copy_test,
4639         incremental_common_test_1.
4640         * testsuite/Makefile.in: Regenerate.
4641         * testsuite/common_test_1_v1.c: New source file.
4642         * testsuite/common_test_1_v2.c: New source file.
4643         * testsuite/copy_test_v1.cc: New source file.
4644
4645 2011-06-07  Cary Coutant  <ccoutant@google.com>
4646
4647         * common.cc (Symbol_table::do_allocate_commons_list): For incremental
4648         update, allocate common from bss section's free list.
4649         * incremental-dump.cc (dump_incremental_inputs): Print flag for
4650         linker-defined symbols.
4651         * incremental.cc (Sized_incremental_binary::do_process_got_plt):
4652         Skip GOT and PLT entries that are no longer referenced.
4653         (Output_section_incremental_inputs::write_info_blocks): Mark
4654         linker-defined symbols.
4655         (Sized_incr_relobj::do_add_symbols): Process linker-defined symbols.
4656         * output.cc (Output_section::allocate): New function.
4657         * output.h (Output_section::allocate): New function.
4658         * resolve.cc (Symbol_table::report_resolve_problem): Add case for
4659         linker-defined symbols.
4660         (Symbol::override_base_with_special): Copy is_predefined_ flag.
4661         * symtab.cc (Symbol::init_fields): Initialize is_predefined_ flag.
4662         (Symbol::init_base_output_data): Likewise.
4663         (Symbol::init_base_output_segment): Likewise.
4664         (Symbol::init_base_constant): Likewise.
4665         (Sized_symbol::init_output_data): Likewise.
4666         (Sized_symbol::init_output_segment): Likewise.
4667         (Sized_symbol::init_constant): Likewise.
4668         (Symbol_table::do_define_in_output_data): Likewise.
4669         (Symbol_table::do_define_in_output_segment): Likewise.
4670         (Symbol_table::do_define_as_constant): Likewise.
4671         * symtab.h (Symbol::is_predefined): New function.
4672         (Symbol::init_base_output_data): Add is_predefined parameter.
4673         (Symbol::init_base_output_segment): Likewise.
4674         (Symbol::init_base_constant): Likewise.
4675         (Symbol::is_predefined_): New data member.
4676         (Sized_symbol::init_output_data): Add is_predefined parameter.
4677         (Sized_symbol::init_output_segment): Likewise.
4678         (Sized_symbol::init_constant): Likewise.
4679         (enum Symbol_table::Defined): Add INCREMENTAL_BASE.
4680
4681 2011-06-07  Cary Coutant  <ccoutant@google.com>
4682
4683         * copy-relocs.cc (Copy_relocs::copy_reloc): Call make_copy_reloc
4684         instead of emit_copy_reloc.
4685         (Copy_relocs::emit_copy_reloc): Refactor.
4686         (Copy_relocs::make_copy_reloc): New function.
4687         (Copy_relocs::add_copy_reloc): Remove.
4688         * copy-relocs.h (Copy_relocs::emit_copy_reloc): Move to public
4689         section.
4690         (Copy_relocs::make_copy_reloc): New function.
4691         (Copy_relocs::add_copy_reloc): Remove.
4692         * gold.cc (queue_middle_tasks): Emit old COPY relocations from
4693         unchanged input files.
4694         * incremental-dump.cc (dump_incremental_inputs): Print "COPY" flag.
4695         * incremental.cc (Sized_incremental_binary::do_reserve_layout):
4696         Reserve BSS space for COPY relocations.
4697         (Sized_incremental_binary::do_emit_copy_relocs): New function.
4698         (Output_section_incremental_inputs::write_info_blocks): Record
4699         whether a symbol is copied from a shared object.
4700         (Sized_incr_dynobj::do_add_symbols): Record COPY relocations.
4701         * incremental.h (enum Incremental_shlib_symbol_flags): New type.
4702         (INCREMENTAL_SHLIB_SYM_FLAGS_SHIFT): New constant.
4703         (Incremental_input_entry_reader::get_output_symbol_index): Add
4704         is_copy parameter.
4705         (Incremental_binary::emit_copy_relocs): New function.
4706         (Incremental_binary::do_emit_copy_relocs): New function.
4707         (Sized_incremental_binary::Sized_incremental_binary): Initialize
4708         new data member.
4709         (Sized_incremental_binary::add_copy_reloc): New function.
4710         (Sized_incremental_binary::do_emit_copy_relocs): New function.
4711         (Sized_incremental_binary::Copy_reloc): New struct.
4712         (Sized_incremental_binary::Copy_relocs): New typedef.
4713         (Sized_incremental_binary::copy_relocs_): New data member.
4714         * symtab.cc (Symbol_table::add_from_incrobj): Change return type.
4715         * symtab.h (Symbol_table::add_from_incrobj): Change return type.
4716         * target.h (Sized_target::emit_copy_reloc): New function.
4717         * x86_64.cc (Target_x86_64::emit_copy_reloc): New function.
4718
4719 2011-06-02  Cary Coutant  <ccoutant@google.com>
4720
4721         PR gold/12163
4722         * gold/archive.cc (Archive::Archive): Initialize new data member.
4723         (Archive::include_all_members): Return if archive has already been
4724         included.
4725         * gold/archive.h (Archive::include_all_members_): New data member.
4726
4727 2011-06-02  Nick Clifton  <nickc@redhat.com>
4728
4729         * dynobj.h: Fix spelling mistake in comment.
4730         * output.cc: Likewise.
4731
4732 2011-05-31  Doug Kwan  <dougkwan@google.com>
4733             Asier Llano
4734
4735         PR gold/12826
4736         * arm.cc (Target_arm::tag_cpu_arch_combine): Fix handling of
4737         arch value that equals to elfcpp::MAX_TAG_CPU_ARCH.
4738         * testsuite/Makefile.am: (MOSTLYCLEANFILES): Clean up.  Remove
4739         redundant arm_exidx_test.so.
4740         * testsuite/Makefile.in: Regenerate.
4741         (check_SCRIPTS): Add pr12826.sh
4742         (check_DATA): Add pr12826.stdout
4743         (pr12826.stdout, pr12826.so, pr12826_1.o, pr12826_2.o): New rules.
4744         * testsuite/pr12826.sh: New file.
4745         * testsuite/pr12826_1.s: Ditto.
4746         * testsuite/pr12826_1.s: Ditto.
4747
4748 2011-05-30  Ian Lance Taylor  <iant@google.com>
4749
4750         * reloc.cc (Sized_relobj_file::do_read_relocs): Ignore empty reloc
4751         sections.
4752
4753 2011-05-29  Ian Lance Taylor  <iant@google.com>
4754
4755         PR gold/12804
4756         * testsuite/Makefile.am: Use different file name for two_file_test
4757         temporary file for each incremental test.
4758         * testsuite/Makefile.in: Rebuild.
4759
4760 2011-05-29  Ian Lance Taylor  <iant@google.com>
4761
4762         * binary.cc (Binary_to_elf::sized_convert): Don't crash if the
4763         binary input file is empty.
4764
4765 2011-05-27  Ian Lance Taylor  <iant@google.com>
4766
4767         * testsuite/Makefile.am (ver_test_2.so): Use -Wl,-R,.
4768         (ver_test_9.so): Likewise.
4769         * testsuite/Makefile.in: Rebuild.
4770
4771 2011-05-26 Cary Coutant  <ccoutant@google.com>
4772
4773         * incremental-dump.cc (dump_incremental_inputs): Print COMDAT groups.
4774         * incremental.cc (Incremental_inputs::report_input_section): Fix
4775         comment, indentation.
4776         (Incremental_inputs::report_comdat_group): New function.
4777         (Output_section_incremental_inputs::set_final_data_size): Adjust size
4778         of data for incremental input file entry.
4779         (Output_section_incremental_inputs::write_info_blocks): Write COMDAT
4780         group count, COMDAT group signatures.
4781         (Sized_incr_relobj::do_layout): Record kept COMDAT group info from
4782         an unchanged input file.
4783         * incremental.h (Incremental_object_entry::Incremental_object_entry):
4784         Initialize new data member.
4785         (Incremental_object_entry::add_comdat_group): New function.
4786         (Incremental_object_entry::get_comdat_group_count): New function.
4787         (Incremental_object_entry::get_comdat_signature_key): New function.
4788         (Incremental_object_entry::groups_): New data member.
4789         (Incremental_inputs::report_comdat_group): New function.
4790         (Incremental_input_entry_reader::get_symbol_offset): Adjust size of
4791         data for incremental input file entry.
4792         (Incremental_input_entry_reader::get_comdat_group_count): New function.
4793         (Incremental_input_entry_reader::get_input_section): Adjust size of
4794         data for incremental input file entry.
4795         (Incremental_input_entry_reader::get_global_symbol_reader): Likewise.
4796         (Incremental_input_entry_reader::get_comdat_group_signature): New
4797         function.
4798         * object.cc (Sized_relobj::include_section_group): Report kept
4799         COMDAT groups for incremental links.
4800
4801 2011-05-24  David Meyer  <pdox@google.com>
4802
4803         * dirsearch.cc (Dirsearch::find): Replace n1 and n2 parameters
4804         with name parameter.  Add found_name parameter.
4805         * fileread.cc (Input_file::find_file): Adjust code accordingly.
4806         * dirsearch.h (class Dirsearch): Update declaration.
4807
4808 2011-05-24  Ian Lance Taylor  <iant@google.com>
4809
4810         * archive.cc (Library_base::should_include_member): Pull in object
4811         from archive if it defines the entry symbol.
4812         * parameters.cc (Parameters::entry): New function.
4813         * parameters.h (class Parameters): Declare entry.
4814         * output.h (class Output_file_header): Remove entry_ field.
4815         * output.cc (Output_file_header::Output_file_header): Remove entry
4816         parameter.  Change all callers.
4817         (Output_file_header::entry): Use parameters->entry.
4818         * gold.cc (queue_middle_tasks): Likewise.
4819         * plugin.cc (Plugin_hook::run): Likewise.
4820
4821 2011-05-24 Cary Coutant  <ccoutant@google.com>
4822
4823         * gold.cc (queue_initial_tasks): Pass incremental base filename
4824         to Output_file::open_base_file; don't print error message.
4825         * incremental-dump.cc (main): Adjust call to
4826         Output_file::open_for_modification.
4827         * incremental-dump.cc (main): Likewise.
4828         * incremental.cc (Incremental_inputs::report_command_line):
4829         Ignore --incremental-base option when comparing command lines.
4830         Ignore parameter when given as separate argument.
4831         * options.h (class General_options): Add --incremental-base.
4832         * output.cc (Output_file::Output_file):
4833         (Output_file::open_base_file): Add base_name and writable parameters;
4834         read base file into new file; print error message here.
4835         (Output_file::map_no_anonymous): Add writable parameter; adjust all
4836         callers.
4837         * output.h (Output_file::open_for_modification): Rename to...
4838         (Output_file::open_base_file): ...this; add base_name and
4839         writable parameters; adjust all callers.
4840         (Output_file::map_no_anonymous): Add writable parameter; adjust all
4841         callers.
4842         * testsuite/Makefile.am (incremental_test_4): Test
4843         --incremental-base.
4844         * testsuite/Makefile.in: Regenerate.
4845
4846 2011-05-24 Cary Coutant  <ccoutant@google.com>
4847
4848         * testsuite/Makefile.am: Add incremental_test_2, incremental_test_3,
4849         incremental_test_4.
4850         * testsuite/Makefile.in: Regenerate.
4851         * testsuite/two_file_test_1_v1.cc: New test source file.
4852         * testsuite/two_file_test_1b_v1.cc: New test source file.
4853         * testsuite/two_file_test_2_v1.cc: New test source file.
4854
4855 2011-05-24 Cary Coutant  <ccoutant@google.com>
4856
4857         * dynobj.h (Dynobj::do_dynobj): New function.
4858         * incremental-dump.cc (dump_incremental_inputs): Print as_needed
4859         flag and soname for shared objects.
4860         * incremental.cc (Incremental_inputs::report_object): Make
4861         either Incremental_object_entry or Incremental_dynobj_entry; add
4862         soname to string table.
4863         (Incremental_inputs::report_input_section): Add assertion.
4864         (Output_section_incremental_inputs::set_final_data_size): Adjust
4865         type of input file entry for shared libraries; adjust size of
4866         shared library info entry.
4867         (Output_section_incremental_inputs::write_input_files): Write
4868         as_needed flag for shared libraries.
4869         (Output_section_incremental_inputs::write_info_blocks): Adjust type
4870         of input file entry for shared libraries; write soname.
4871         (Sized_incr_dynobj::Sized_incr_dynobj): Read as_needed flag and
4872         soname from incremental info.
4873         * incremental.h (enum Incremental_input_flags): Add
4874         INCREMENTAL_INPUT_AS_NEEDED.
4875         (Incremental_input_entry::Incremental_input_entry): Initialize new
4876         data member.
4877         (Incremental_input_entry::set_as_needed): New function.
4878         (Incremental_input_entry::as_needed): New function.
4879         (Incremental_input_entry::do_dynobj_entry): New function.
4880         (Incremental_input_entry::as_needed_): New data member.
4881         (Incremental_object_entry::Incremental_object_entry): Don't check
4882         for shared library.
4883         (Incremental_object_entry::do_type): Likewise.
4884         (class Incremental_dynobj_entry): New class.
4885         (Incremental_input_entry_reader::as_needed): New function.
4886         (Incremental_input_entry_reader::get_soname): New function.
4887         (Incremental_input_entry_reader::get_global_symbol_count): Rewrite.
4888         (Incremental_input_entry_reader::get_output_symbol_index): Adjust
4889         size of shared library info entry.
4890         * layout.cc (Layout::finish_dynamic_section): Don't test for
4891         incremental link when adding DT_NEEDED entries.
4892         * object.h (Object::Object): Initialize new data member.
4893         (Object::dynobj): New function.
4894         (Object::set_as_needed): New function.
4895         (Object::as_needed): New function.
4896         (Object::do_dynobj): New function.
4897         (Object::as_needed_): New data member.
4898
4899 2011-05-24 Cary Coutant  <ccoutant@google.com>
4900
4901         * incremental-dump.cc (dump_incremental_inputs): Print dynamic reloc
4902         info; adjust display of GOT entries.
4903         * incremental.cc (Sized_incremental_binary::setup_readers): Allocate
4904         vector of input objects; remove file_status_.
4905         (Sized_incremental_binary::do_reserve_layout): Remove file_status_.
4906         (Sized_incremental_binary::do_process_got_plt): Adjust calls to
4907         got_plt reader; call target hooks to reserve GOT entries.
4908         (Output_section_incremental_inputs::set_final_data_size): Adjust size
4909         of input file info header and GOT info entry.
4910         (Output_section_incremental_inputs::write_info_blocks): Write dynamic
4911         relocation info.
4912         (Got_plt_view_info::got_descriptor): Remove.
4913         (Got_plt_view_info::sym_index): New data member.
4914         (Got_plt_view_info::input_index): New data member.
4915         (Local_got_offset_visitor::visit): Write input file index.
4916         (Global_got_offset_visitor::visit): Write 0 for input file index.
4917         (Global_symbol_visitor_got_plt::operator()): Replace got_descriptor
4918         with sym_index and input_index.
4919         (Output_section_incremental_inputs::write_got_plt): Adjust size of
4920         incremental info GOT entry; replace got_descriptor with input_index.
4921         (Sized_relobj_incr::Sized_relobj_incr): Adjust initializers; record
4922         map from input file index to object.
4923         (Sized_relobj_incr::do_layout): Replace direct data member reference
4924         with accessor function.
4925         (Sized_relobj_incr::do_for_all_local_got_entries): Move to base class.
4926         * incremental.h (Incremental_input_entry_reader::get_symbol_offset):
4927         Adjust size of input file info header.
4928         (Incremental_input_entry_reader::get_first_dyn_reloc): New function.
4929         (Incremental_input_entry_reader::get_dyn_reloc_count): New function.
4930         (Incremental_input_entry_reader::get_input_section): Adjust size of
4931         input file info header.
4932         (Incremental_got_plt_reader::Incremental_got_plt_reader): Adjust size
4933         of incremental info GOT entry.
4934         (Incremental_got_plt_reader::get_got_desc): Remove.
4935         (Incremental_got_plt_reader::get_got_symndx): New function.
4936         (Incremental_got_plt_reader::get_got_input_index): New function.
4937         (Sized_incremental_binary::Sized_incremental_binary): Remove
4938         file_status_; add input_objects_.
4939         (Sized_incremental_binary::~Sized_incremental_binary): Remove.
4940         (Sized_incremental_binary::set_file_is_unchanged): Remove.
4941         (Sized_incremental_binary::file_is_unchanged): Remove.
4942         (Sized_incremental_binary::set_input_object): New function.
4943         (Sized_incremental_binary::input_object): New function.
4944         (Sized_incremental_binary::file_status_): Remove.
4945         (Sized_incremental_binary::input_objects_): New data member.
4946         (Sized_relobj_incr): Rename Sized_incr_relobj to this; adjust all
4947         references.
4948         (Sized_relobj_incr::invalid_address): Move to base class.
4949         (Sized_relobj_incr::is_output_section_offset_invalid): Move to base
4950         class.
4951         (Sized_relobj_incr::do_output_section_offset): Likewise.
4952         (Sized_relobj_incr::do_for_all_local_got_entries): Likewise.
4953         (Sized_relobj_incr::section_offsets_): Likewise.
4954         * object.cc (Sized_relobj::do_for_all_local_got_entries): New
4955         function.
4956         (Sized_relobj_file::Sized_relobj_file): Remove local_got_offsets_.
4957         (Sized_relobj_file::layout_section): Replace refs to section_offsets_
4958         with accessor function.
4959         (Sized_relobj_file::do_layout): Likewise.
4960         (Sized_relobj_file::do_layout_deferred_sections): Likewise.
4961         (Sized_relobj_file::do_for_all_local_got_entries): Move to base class.
4962         (Sized_relobj_file::compute_final_local_value): Replace refs to
4963         section_offsets_ with accessor function.
4964         (Sized_relobj_file::do_finalize_local_symbols): Likewise.
4965         * object.h (Relobj::Relobj): Initialize new data members.
4966         (Relobj::add_dyn_reloc): New function.
4967         (Relobj::first_dyn_reloc): New function.
4968         (Relobj::dyn_reloc_count): New function.
4969         (Relobj::first_dyn_reloc_): New data member.
4970         (Relobj::dyn_reloc_count_): New data member.
4971         (Sized_relobj): Rename Sized_relobj_base to this; adjust all
4972         references.
4973         (Sized_relobj::Address): New typedef.
4974         (Sized_relobj::invalid_address): Move here from child class.
4975         (Sized_relobj::Sized_relobj): Initialize new data members.
4976         (Sized_relobj::sized_relobj): New function.
4977         (Sized_relobj::is_output_section_offset_invalid): Move here from
4978         child class.
4979         (Sized_relobj::get_output_section_offset): Likewise.
4980         (Sized_relobj::local_has_got_offset): Likewise.
4981         (Sized_relobj::local_got_offset): Likewise.
4982         (Sized_relobj::set_local_got_offset): Likewise.
4983         (Sized_relobj::do_for_all_local_got_entries): Likewise.
4984         (Sized_relobj::clear_got_offsets): New function.
4985         (Sized_relobj::section_offsets): Move here from child class.
4986         (Sized_relobj::do_output_section_offset): Likewise.
4987         (Sized_relobj::do_set_section_offset): Likewise.
4988         (Sized_relobj::Local_got_offsets): Likewise.
4989         (Sized_relobj::local_got_offsets_): Likewise.
4990         (Sized_relobj::section_offsets_): Likewise.
4991         (Sized_relobj_file): Rename Sized_relobj to this; adjust all
4992         references.
4993         (Sized_relobj_file::is_output_section_offset_invalid): Move to base
4994         class.
4995         (Sized_relobj_file::sized_relobj): New function
4996         (Sized_relobj_file::local_has_got_offset): Move to base class.
4997         (Sized_relobj_file::local_got_offset): Likewise.
4998         (Sized_relobj_file::set_local_got_offset): Likewise.
4999         (Sized_relobj_file::get_output_section_offset): Likewise.
5000         (Sized_relobj_file::do_for_all_local_got_entries): Likewise.
5001         (Sized_relobj_file::do_output_section_offset): Likewise.
5002         (Sized_relobj_file::do_set_section_offset): Likewise.
5003         (Sized_relobj_file::Local_got_offsets): Likewise.
5004         (Sized_relobj_file::local_got_offsets_): Likewise.
5005         (Sized_relobj_file::section_offsets_): Likewise.
5006         * output.cc (Output_reloc::Output_reloc): Adjust type of relobj
5007         (all constructors).
5008         (set_needs_dynsym_index): Convert relobj to derived class pointer.
5009         (Output_reloc::get_symbol_index): Likewise.
5010         (Output_reloc::local_section_offset): Likewise.
5011         (Output_reloc::get_address): Likewise.
5012         (Output_reloc::symbol_value): Likewise.
5013         (Output_data_got::reserve_slot): Move to class definition.
5014         (Output_data_got::reserve_local): New function.
5015         (Output_data_got::reserve_slot_for_global): Remove.
5016         (Output_data_got::reserve_global): New function.
5017         * output.h (Output_reloc::Output_reloc): Adjust type of relobj
5018         (all constructors, two instantiations).
5019         (Output_reloc::get_relobj): New function (two instantiations).
5020         (Output_reloc::u1_.relobj, Output_reloc::u2_.relobj): Adjust type.
5021         (Output_data_reloc_base::add): Convert relobj to derived class pointer.
5022         (Output_data_reloc::add_global): Adjust type of relobj.
5023         (Output_data_reloc::add_global_relative): Likewise.
5024         (Output_data_reloc::add_symbolless_global_addend): Likewise.
5025         (Output_data_reloc::add_local): Likewise.
5026         (Output_data_reloc::add_local_relative): Likewise.
5027         (Output_data_reloc::add_symbolless_local_addend): Likewise.
5028         (Output_data_reloc::add_local_section): Likewise.
5029         (Output_data_reloc::add_output_section): Likewise.
5030         (Output_data_reloc::add_absolute): Likewise.
5031         (Output_data_reloc::add_target_specific): Likewise.
5032         (Output_data_got::reserve_slot): Move definition here.
5033         (Output_data_got::reserve_local): New function.
5034         (Output_data_got::reserve_global): New function.
5035         * reloc.cc (Sized_relobj_file::do_read_relocs): Replace refs to
5036         section_offsets_ with accessor function.
5037         (Sized_relobj_file::write_sections): Likewise.
5038         (Sized_relobj_file::do_relocate_sections): Likewise.
5039         * target.h (Sized_target::reserve_local_got_entry): New function.
5040         (Sized_target::reserve_global_got_entry): New function.
5041         * x86_64.cc (Target_x86_64::reserve_local_got_entry): New function.
5042         (Target_x86_64::reserve_global_got_entry): New function.
5043         (Target_x86_64::init_got_plt_for_update): Create rela_dyn section.
5044
5045 2011-05-23 Cary Coutant  <ccoutant@google.com>
5046
5047         * gold.cc (queue_middle_tasks): Process existing GOT/PLT entries.
5048         * incremental-dump.cc (dump_incremental_inputs): Mask high-order
5049         bit when checking got_type.
5050         * incremental.cc (Sized_incremental_binary::setup_readers):
5051         Store symbol table and string table locations; initialize bit vector
5052         of file status flags.
5053         (Sized_incremental_binary::do_reserve_layout): Set bit flag for
5054         unchanged files.
5055         (Sized_incremental_binary::do_process_got_plt): New function.
5056         (Sized_incremental_binary::get_symtab_view): Use stored locations.
5057         (Output_section_incremental_inputs::set_final_data_size): Record
5058         file index for each input file.
5059         (Output_section_incremental_inputs::write_got_plt): Store file index
5060         instead of input entry offset for each GOT entry.
5061         * incremental.h
5062         (Incremental_input_entry::Incremental_input_entry): Initialize new
5063         data member.
5064         (Incremental_input_entry::set_offset): Store file index.
5065         (Incremental_input_entry::get_file_index): New function.
5066         (Incremental_input_entry::file_index_): New data member.
5067         (Incremental_binary::process_got_plt): New function.
5068         (Incremental_binary::do_process_got_plt): New function.
5069         (Sized_incremental_binary::Sized_incremental_binary): Initialize new
5070         data members.
5071         (Sized_incremental_binary::~Sized_incremental_binary): New destructor.
5072         (Sized_incremental_binary::set_file_is_unchanged): New function.
5073         (Sized_incremental_binary::file_is_unchanged): New function.
5074         (Sized_incremental_binary::do_process_got_plt): New function.
5075         (Sized_incremental_binary::file_status_): New data member.
5076         (Sized_incremental_binary::main_symtab_loc_): New data member.
5077         (Sized_incremental_binary::main_strtab_loc_): New data member.
5078         * output.cc (Output_data_got::Got_entry::write): Add case
5079         RESERVED_CODE.
5080         (Output_data_got::add_global): Call add_got_entry.
5081         (Output_data_got::add_global_plt): Likewise.
5082         (Output_data_got::add_global_with_rel): Likewise.
5083         (Output_data_got::add_global_with_rela): Likewise.
5084         (Output_data_got::add_global_pair_with_rel): Call add_got_entry_pair.
5085         (Output_data_got::add_global_pair_with_rela): Likewise.
5086         (Output_data_got::add_local): Call add_got_entry.
5087         (Output_data_got::add_local_plt): Likewise.
5088         (Output_data_got::add_local_with_rel): Likewise.
5089         (Output_data_got::add_local_with_rela): Likewise.
5090         (Output_data_got::add_local_pair_with_rel): Call add_got_entry_pair.
5091         (Output_data_got::add_local_pair_with_rela): Likewise.
5092         (Output_data_got::reserve_slot): New function.
5093         (Output_data_got::reserve_slot_for_global): New function.
5094         (Output_data_got::add_got_entry): New function.
5095         (Output_data_got::add_got_entry_pair): New function.
5096         (Output_section::add_output_section_data): Edit FIXME.
5097         * output.h
5098         (Output_section_data_build::Output_section_data_build): New
5099         constructor with size parameter.
5100         (Output_data_space::Output_data_space): Likewise.
5101         (Output_data_got::Output_data_got): Initialize new data member; new
5102         constructor with size parameter.
5103         (Output_data_got::add_constant): Call add_got_entry.
5104         (Output_data_got::reserve_slot): New function.
5105         (Output_data_got::reserve_slot_for_global): New function.
5106         (class Output_data_got::Got_entry): Add RESERVED_CODE.
5107         (Output_data_got::add_got_entry): New function.
5108         (Output_data_got::add_got_entry_pair): New function.
5109         (Output_data_got::free_list_): New data member.
5110         * target.h (Sized_target::init_got_plt_for_update): New function.
5111         (Sized_target::register_global_plt_entry): New function.
5112         * x86_64.cc (Output_data_plt_x86_64::Output_data_plt_x86_64):
5113         Initialize new data member; call init; add constructor with PLT count.
5114         (Output_data_plt_x86_64::init): New function.
5115         (Output_data_plt_x86_64::add_relocation): New function.
5116         (Output_data_plt_x86_64::reserve_slot): New function.
5117         (Output_data_plt_x86_64::free_list_): New data member.
5118         (Target_x86_64::init_got_plt_for_update): New function.
5119         (Target_x86_64::register_global_plt_entry): New function.
5120         (Output_data_plt_x86_64::add_entry): Allocate from free list for
5121         incremental updates.
5122         (Output_data_plt_x86_64::add_relocation): New function.
5123         * testsuite/object_unittest.cc (Object_test): Set default options.
5124
5125 2011-05-16  Ian Lance Taylor  <iant@google.com>
5126
5127         * options.h (class General_options): Make -i a synonym for -r.
5128
5129 2011-05-16  Ian Lance Taylor  <iant@google.com>
5130
5131         * testsuite/tls_test_main.cc: Use semaphores instead of mutexes.
5132
5133 2011-05-10 Cary Coutant  <ccoutant@google.com>
5134
5135         * object.cc (Sized_relobj::do_count_local_symbols): Check for
5136         strip_all (-s).
5137
5138 2011-05-06  Ian Lance Taylor  <iant@google.com>
5139
5140         * layout.cc (Layout::layout): If the output section flags change,
5141         update the ordering.
5142
5143 2011-04-25 Cary Coutant  <ccoutant@google.com>
5144
5145         * incremental-dump.cc (dump_incremental_inputs): Print local
5146         symbol info for each input file.
5147         * incremental.cc
5148         (Output_section_incremental_inputs::set_final_data_size): Add local
5149         symbol info to input file entries in incremental info.
5150         (Output_section_incremental_inputs::write_info_blocks): Likewise.
5151         (Sized_incr_relobj::Sized_incr_relobj): Initialize new data members.
5152         (Sized_incr_relobj::do_add_symbols): Cosmetic change.
5153         (Sized_incr_relobj::do_count_local_symbols): Replace stub with
5154         implementation.
5155         (Sized_incr_relobj::do_finalize_local_symbols): Likewise.
5156         (Sized_incr_relobj::do_relocate): Write the local symbols.
5157         (Sized_incr_dynobj::do_add_symbols): Cosmetic change.
5158         * incremental.h (Incremental_inputs_reader::get_symbol_offset):
5159         Adjust size of input file header.
5160         (Incremental_inputs_reader::get_local_symbol_offset): New function.
5161         (Incremental_inputs_reader::get_local_symbol_count): New function.
5162         (Incremental_inputs_reader::get_input_section): Adjust size of input
5163         file header.
5164         (Incremental_inputs_reader::get_global_symbol_reader): Likewise.
5165         (Sized_incr_relobj::This): New typedef.
5166         (Sized_incr_relobj::sym_size): New const data member.
5167         (Sized_incr_relobj::Local_symbol): New struct.
5168         (Sized_incr_relobj::do_output_local_symbol_count): New function.
5169         (Sized_incr_relobj::do_local_symbol_offset): New function.
5170         (Sized_incr_relobj::local_symbol_count_): New data member.
5171         (Sized_incr_relobj::output_local_dynsym_count_): New data member.
5172         (Sized_incr_relobj::local_symbol_index_): New data member.
5173         (Sized_incr_relobj::local_symbol_offset_): New data member.
5174         (Sized_incr_relobj::local_dynsym_offset_): New data member.
5175         (Sized_incr_relobj::local_symbols_): New data member.
5176         * object.h (Relobj::output_local_symbol_count): New function.
5177         (Relobj::local_symbol_offset): New function.
5178         (Relobj::do_output_local_symbol_count): New function.
5179         (Relobj::do_local_symbol_offset): New function.
5180         (Sized_relobj::do_output_local_symbol_count): New function.
5181         (Sized_relobj::do_local_symbol_offset): New function.
5182
5183 2011-04-22  Vladimir Simonov  <sv@sw.ru>
5184
5185         * descriptors.cc (set_close_on_exec): New function.
5186         (Descriptors::open): Use set_close_on_exec.
5187         * output.cc (S_ISLNK): Define if not defined.
5188
5189 2011-04-22 Cary Coutant  <ccoutant@google.com>
5190
5191         * incremental.cc (Sized_incremental_binary::setup_readers): Allocate
5192         global symbol map.
5193         (Sized_incremental_binary::do_apply_incremental_relocs): New function.
5194         (Sized_incr_relobj::do_add_symbols): Add symbols to global symbol map.
5195         (Sized_incr_relobj::do_relocate): Remap section indices in incremental
5196         relocations.
5197         (Sized_incr_dynobj::do_add_symbols): Add symbols to global symbol map.
5198         (Sized_incr_dynobj::do_for_all_global_symbols): Remove FIXME.
5199         (Sized_incr_dynobj::do_for_all_local_got_entries): Likewise.
5200         * incremental.h
5201         (Incremental_inputs_reader::global_symbol_reader_at_offset): New
5202         function.
5203         (Incremental_binary::apply_incremental_relocs): New function.
5204         (Incremental_binary::do_apply_incremental_relocs): New function.
5205         (Sized_incremental_binary::Sized_incremental_binary): Initialize new
5206         data member.
5207         (Sized_incremental_binary::add_global_symbol): New function.
5208         (Sized_incremental_binary::global_symbol): New function.
5209         (Sized_incremental_binary::do_apply_incremental_relocs): New function.
5210         (Sized_incremental_binary::symbol_map_): New data member.
5211         * layout.cc (Layout_task_runner::run): Apply incremental relocations.
5212         * target.h (Sized_target::apply_relocation): New function.
5213         * target-reloc.h (apply_relocation): New function.
5214         * x86_64.cc (Target_x86_64::apply_relocation): New function.
5215
5216 2011-04-22  Doug Kwan  <dougkwan@google.com>
5217
5218         * arm.cc (Arm_output_section::Arm_output_section): Set SHF_LINK_ORDER
5219         flag of a SHT_ARM_EXIDX section.
5220         * testsuite/Makefile.am (arm_exidx_test): New test rules.
5221         * testsuite/Makefile.in: Regenerate.
5222         * testsuite/arm_exidx_test.s: New file.
5223         * testsuite/arm_exidx_test.sh: Same.
5224
5225 2011-04-20 Cary Coutant  <ccoutant@google.com>
5226
5227         PR gold/12689
5228         * archive.h (Incremental_archive_entry::Archive_member):
5229         Initialize arg_serial_ (second constructor).
5230
5231 2011-04-17  Ian Lance Taylor  <iant@google.com>
5232
5233         * object.cc (Relocate_info::location): Simplify location string.
5234         * errors.cc (Errors::error_at_location): Don't print program
5235         name.
5236         (Errors::warning_at_location): Likewise.
5237         (Errors::undefined_symbol): Likewise.
5238         * testsuite/debug_msg.sh: Update accordingly.
5239
5240 2011-04-14 Cary Coutant  <ccoutant@google.com>
5241
5242         * gold/layout.cc (Layout::symtab_section_offset): New function.
5243         * gold/layout.h (Layout::symtab_section_offset): New function.
5244         * gold/reloc.cc (Sized_relobj::do_relocate): Call it.
5245
5246 2011-04-12  Ian Lance Taylor  <iant@google.com>
5247
5248         * configure.ac: Check for sys/mman.h and mmap.  Check for mremap
5249         with MREMAP_MAYMOVE.
5250         * output.h (class Output_file): Add map_is_allocated_ field.
5251         * output.cc: Only #include <sys/mman.h> if it exists.  If mmap is
5252         not available, provide stubs.  If mremap is not available, #define
5253         it to gold_mremap.
5254         (MREMAP_MAYMOVE): Define if not defined.
5255         (Output_file::Output_file): Initialize map_is_allocated_.
5256         (Output_file::resize): Check map_is_allocated_.
5257         (Output_file::map_anonymous): If mmap fails, use malloc.
5258         (Output_file::unmap): Don't do anything for an anonymous map.
5259         * fileread.cc: Only #include <sys/mman.h> if it exists.  If mmap
5260         is not available, provide stubs.
5261         (File_read::View::~View): Use free rather than delete[].
5262         (File_read::make_view): Use malloc rather than new[].  If mmap
5263         fails, use malloc.
5264         (File_read::find_or_make_view): Use malloc rather than new[].
5265         * gold.h: Remove HAVE_REMAP code.
5266         * mremap.c: #include <errno.h>.  Only #include <sys/mman.h> if it
5267         exists.  Rename mremap to gold_mremap.  If mmap is not available
5268         don't do anything.
5269         * configure, config.in: Rebuild.
5270
5271 2011-04-11  Ian Lance Taylor  <iant@google.com>
5272
5273         * incremental.cc (Sized_incr_relobj::do_add_symbols): Always
5274         initialize local variable v.
5275
5276 2011-04-11  Cary Coutant  <ccoutant@google.com>
5277
5278         * archive.cc (Archive::include_member): Adjust call to
5279         report_object.
5280         (Add_archive_symbols::run): Track argument serial numbers.
5281         (Lib_group::include_member): Likewise.
5282         (Add_lib_group_symbols::run): Adjust call to report_archive_begin.
5283         * archive.h (Incremental_archive_entry::Archive_member):
5284         Initialize arg_serial_.
5285         (Archive_member::arg_serial_): New data member.
5286         * dynobj.cc (Dynobj::Dynobj): Allow input_file_ to be NULL.
5287         (Sized_dynobj::do_add_symbols): Track symbols when doing an
5288         incremental link.
5289         (Sized_dynobj::do_for_all_local_got_entries): New function.
5290         * dynobj.h: (Sized_dynobj::do_for_all_local_got_entries): New
5291         function.
5292         * fileread.cc (get_mtime): New function.
5293         * fileread.h (get_mtime): New function.
5294         * gold.cc (queue_initial_tasks): Check for incremental update.
5295         (process_incremental_input): New function.
5296         (queue_middle_tasks): Don't force valid target for incremental
5297         update.
5298         * incremental-dump.cc (find_input_containing_global): Adjust
5299         size of symbol info entry.
5300         (dump_incremental_inputs): Dump argument serial number and
5301         in_system_directory flag; bias shndx by 1; print symbol names
5302         when dumping per-file symbol lists; use new symbol info readers.
5303         * incremental.cc
5304         (Output_section_incremental_inputs:update_data_size): New function.
5305         (Sized_incremental_binary::setup_readers): Setup input readers
5306         for each input file; build maps for files added from libraries
5307         and scripts.
5308         (Sized_incremental_binary::check_input_args): New function.
5309         (Sized_incremental_binary::do_check_inputs): Build map of argument
5310         serial numbers to input arguments.
5311         (Sized_incremental_binary::do_file_has_changed): Rename
5312         do_file_is_unchanged to this; compare file modification times.
5313         (Sized_incremental_binary::do_init_layout): New function.
5314         (Sized_incremental_binary::do_reserve_layout): New function.
5315         (Sized_incremental_binary::do_get_input_reader): Remove.
5316         (Sized_incremental_binary::get_symtab_view): New function.
5317         (Incremental_checker::can_incrementally_link_output_file): Remove.
5318         (Incremental_inputs::report_command_line): Exclude --debug options.
5319         (Incremental_inputs::report_archive_begin): Add parameter; track
5320         argument serial numbers; don't put input file entry for archive
5321         before archive members.
5322         (Incremental_inputs::report_archive_end): Put input file entry
5323         for archive after archive members.
5324         (Incremental_inputs::report_object): Add parameter; track argument
5325         serial numbers and in_system_directory flag.
5326         (Incremental_inputs::report_script): Add parameter; track argument
5327         serial numbers.
5328         (Output_section_incremental_inputs::set_final_data_size): Adjust
5329         size of symbol info entry; check for forwarding symbols.
5330         (Output_section_incremental_inputs::write_input_files): Write
5331         in_system_directory flag and argument serial number.
5332         (Output_section_incremental_inputs::write_info_blocks): Map section
5333         indices between incremental info and original input file; store
5334         input section index for each symbol.
5335         (class Local_got_offset_visitor): Derive from Got_offset_list::Visitor;
5336         change operator() to visit().
5337         (class Global_got_offset_visitor): Likewise.
5338         (class Global_symbol_visitor_got_plt):
5339         (Output_section_incremental_inputs::write_got_plt): Use new visitor
5340         classes.
5341         (Sized_incr_relobj::Sized_incr_relobj): New constructor.
5342         (Sized_incr_relobj::do_read_symbols): New function.
5343         (Sized_incr_relobj::do_layout): New function.
5344         (Sized_incr_relobj::do_layout_deferred_sections): New function.
5345         (Sized_incr_relobj::do_add_symbols): New function.
5346         (Sized_incr_relobj::do_should_include_member): New function.
5347         (Sized_incr_relobj::do_for_all_global_symbols): New function.
5348         (Sized_incr_relobj::do_for_all_local_got_entries): New function.
5349         (Sized_incr_relobj::do_section_size): New function.
5350         (Sized_incr_relobj::do_section_name): New function.
5351         (Sized_incr_relobj::do_section_contents): New function.
5352         (Sized_incr_relobj::do_section_flags): New function.
5353         (Sized_incr_relobj::do_section_entsize): New function.
5354         (Sized_incr_relobj::do_section_address): New function.
5355         (Sized_incr_relobj::do_section_type): New function.
5356         (Sized_incr_relobj::do_section_link): New function.
5357         (Sized_incr_relobj::do_section_info): New function.
5358         (Sized_incr_relobj::do_section_addralign): New function.
5359         (Sized_incr_relobj::do_initialize_xindex): New function.
5360         (Sized_incr_relobj::do_get_global_symbol_counts): New function.
5361         (Sized_incr_relobj::do_read_relocs): New function.
5362         (Sized_incr_relobj::do_gc_process_relocs): New function.
5363         (Sized_incr_relobj::do_scan_relocs): New function.
5364         (Sized_incr_relobj::do_count_local_symbols): New function.
5365         (Sized_incr_relobj::do_finalize_local_symbols): New function.
5366         (Sized_incr_relobj::do_set_local_dynsym_indexes): New function.
5367         (Sized_incr_relobj::do_set_local_dynsym_offset): New function.
5368         (Sized_incr_relobj::do_relocate): New function.
5369         (Sized_incr_relobj::do_set_section_offset): New function.
5370         (Sized_incr_dynobj::Sized_incr_dynobj): New function.
5371         (Sized_incr_dynobj::do_read_symbols): New function.
5372         (Sized_incr_dynobj::do_layout): New function.
5373         (Sized_incr_dynobj::do_add_symbols): New function.
5374         (Sized_incr_dynobj::do_should_include_member): New function.
5375         (Sized_incr_dynobj::do_for_all_global_symbols): New function.
5376         (Sized_incr_dynobj::do_for_all_local_got_entries): New function.
5377         (Sized_incr_dynobj::do_section_size): New function.
5378         (Sized_incr_dynobj::do_section_name): New function.
5379         (Sized_incr_dynobj::do_section_contents): New function.
5380         (Sized_incr_dynobj::do_section_flags): New function.
5381         (Sized_incr_dynobj::do_section_entsize): New function.
5382         (Sized_incr_dynobj::do_section_address): New function.
5383         (Sized_incr_dynobj::do_section_type): New function.
5384         (Sized_incr_dynobj::do_section_link): New function.
5385         (Sized_incr_dynobj::do_section_info): New function.
5386         (Sized_incr_dynobj::do_section_addralign): New function.
5387         (Sized_incr_dynobj::do_initialize_xindex): New function.
5388         (Sized_incr_dynobj::do_get_global_symbol_counts): New function.
5389         (make_sized_incremental_object): New function.
5390         (Incremental_library::copy_unused_symbols): New function.
5391         (Incremental_library::do_for_all_unused_symbols): New function.
5392         * incremental.h (enum Incremental_input_flags): New type.
5393         (class Incremental_checker): Remove.
5394         (Incremental_input_entry::Incremental_input_entry): Add argument
5395         serial number.
5396         (Incremental_input_entry::arg_serial): New function.
5397         (Incremental_input_entry::set_is_in_system_directory): New function.
5398         (Incremental_input_entry::is_in_system_directory): New function.
5399         (Incremental_input_entry::arg_serial_): New data member.
5400         (Incremental_input_entry::is_in_system_directory_): New data member.
5401         (class Script_info): Move here from script.h.
5402         (Script_info::Script_info): Add filename parameter.
5403         (Script_info::filename): New function.
5404         (Script_info::filename_): New data member.
5405         (Incremental_script_entry::Incremental_script_entry): Add argument
5406         serial number.
5407         (Incremental_object_entry::Incremental_object_entry): Likewise.
5408         (Incremental_object_entry::add_input_section): Build list of input
5409         sections with map to original shndx.
5410         (Incremental_object_entry::get_input_section_index): New function.
5411         (Incremental_object_entry::shndx_): New data member.
5412         (Incremental_object_entry::name_key_): Rename; adjust all refs.
5413         (Incremental_object_entry::sh_size_): Rename; adjust all refs.
5414         (Incremental_archive_entry::Incremental_archive_entry): Add argument
5415         serial number.
5416         (Incremental_inputs::report_archive_begin): Likewise.
5417         (Incremental_inputs::report_object): Likewise.
5418         (Incremental_inputs::report_script): Likewise.
5419         (class Incremental_global_symbol_reader): New class.
5420         (Incremental_input_entry_reader::Incremental_input_entry_reader): Read
5421         and store flags and input file type.
5422         (Incremental_input_entry_reader::arg_serial): New function.
5423         (Incremental_input_entry_reader::type): Extract type from flags.
5424         (Incremental_input_entry_reader::is_in_system_directory): New function.
5425         (Incremental_input_entry_reader::get_input_section_count): Call
5426         accessor function for type.
5427         (Incremental_input_entry_reader::get_symbol_offset): Call accessor
5428         function for type; adjust size of global symbol entry.
5429         (Incremental_input_entry_reader::get_global_symbol_count): Call
5430         accessor function for type.
5431         (Incremental_input_entry_reader::get_object_count): Likewise.
5432         (Incremental_input_entry_reader::get_object_offset): Likewise.
5433         (Incremental_input_entry_reader::get_member_count): Likewise.
5434         (Incremental_input_entry_reader::get_unused_symbol_count): Likewise.
5435         (Incremental_input_entry_reader::get_member_offset): Likewise.
5436         (Incremental_input_entry_reader::get_unused_symbol): Likewise.
5437         (Incremental_input_entry_reader::Global_symbol_info): Remove.
5438         (Incremental_input_entry_reader::get_global_symbol_info): Remove.
5439         (Incremental_input_entry_reader::get_global_symbol_reader): New
5440         function.
5441         (Incremental_input_entry_reader::get_output_symbol_index): New
5442         function.
5443         (Incremental_input_entry_reader::type_): Remove.
5444         (Incremental_input_entry_reader::flags_): New data member.
5445         (Incremental_inputs_reader::input_file_offset): New function.
5446         (Incremental_inputs_reader::input_file_index): New function.
5447         (Incremental_inputs_reader::input_file): Call input_file_offset.
5448         (Incremental_inputs_reader::input_file_at_offset): New function.
5449         (Incremental_relocs_reader::get_r_type): Reformat.
5450         (Incremental_relocs_reader::get_r_shndx): Reformat.
5451         (Incremental_relocs_reader::get_r_offset): Reformat.
5452         (Incremental_relocs_reader::data): New function.
5453         (Incremental_binary::Incremental_binary): Initialize new data members.
5454         (Incremental_binary::check_inputs): Add cmdline parameter.
5455         (Incremental_binary::file_is_unchanged): Remove.
5456         (Input_reader::arg_serial): New function.
5457         (Input_reader::get_unused_symbol_count): New function.
5458         (Input_reader::get_unused_symbol): New function.
5459         (Input_reader::do_arg_serial): New function.
5460         (Input_reader::do_get_unused_symbol_count): New function.
5461         (Input_reader::do_get_unused_symbol): New function.
5462         (Incremental_binary::input_file_count): New function.
5463         (Incremental_binary::get_input_reader): Change signature to use
5464         index instead of filename.
5465         (Incremental_binary::file_has_changed): New function.
5466         (Incremental_binary::get_input_argument): New function.
5467         (Incremental_binary::get_library): New function.
5468         (Incremental_binary::get_script_info): New function.
5469         (Incremental_binary::init_layout): New function.
5470         (Incremental_binary::reserve_layout): New function.
5471         (Incremental_binary::output_file): New function.
5472         (Incremental_binary::do_check_inputs): New function.
5473         (Incremental_binary::do_file_is_unchanged): Remove.
5474         (Incremental_binary::do_file_has_changed): New function.
5475         (Incremental_binary::do_init_layout): New function.
5476         (Incremental_binary::do_reserve_layout): New function.
5477         (Incremental_binary::do_input_file_count): New function.
5478         (Incremental_binary::do_get_input_reader): Change signature.
5479         (Incremental_binary::input_args_map_): New data member.
5480         (Incremental_binary::library_map_): New data member.
5481         (Incremental_binary::script_map_): New data member.
5482         (Sized_incremental_binary::Sized_incremental_binary): Initialize
5483         new data members.
5484         (Sized_incremental_binary::output_section): New function.
5485         (Sized_incremental_binary::inputs_reader): Add const.
5486         (Sized_incremental_binary::symtab_reader): Add const.
5487         (Sized_incremental_binary::relocs_reader): Add const.
5488         (Sized_incremental_binary::got_plt_reader): Add const.
5489         (Sized_incremental_binary::get_symtab_view): New function.
5490         (Sized_incremental_binary::Inputs_reader): New typedef.
5491         (Sized_incremental_binary::Input_entry_reader): New typedef.
5492         (Sized_incremental_binary::do_check_inputs): Add cmdline parameter.
5493         (Sized_incremental_binary::do_file_is_unchanged): Remove.
5494         (Sized_incremental_binary::do_file_has_changed): New function.
5495         (Sized_incremental_binary::do_init_layout): New function.
5496         (Sized_incremental_binary::do_reserve_layout): New function.
5497         (Sized_input_reader::Inputs_reader): Remove.
5498         (Sized_input_reader::Input_entry_reader): Remove.
5499         (Sized_input_reader::do_arg_serial): New function.
5500         (Sized_input_reader::do_get_unused_symbol_count): New function.
5501         (Sized_input_reader::do_get_unused_symbol): New function.
5502         (Sized_incremental_binary::do_input_file_count): New function.
5503         (Sized_incremental_binary::do_get_input_reader): Change signature;
5504         use index instead of filename.
5505         (Sized_incremental_binary::section_map_): New data member.
5506         (Sized_incremental_binary::input_entry_readers_): New data member.
5507         (class Sized_incr_relobj): New class.
5508         (class Sized_incr_dynobj): New class.
5509         (make_sized_incremental_object): New function.
5510         (class Incremental_library): New class.
5511         * layout.cc (Free_list::num_lists): New static data member.
5512         (Free_list::num_nodes): New static data member.
5513         (Free_list::num_removes): New static data member.
5514         (Free_list::num_remove_visits): New static data member.
5515         (Free_list::num_allocates): New static data member.
5516         (Free_list::num_allocate_visits): New static data member.
5517         (Free_list::init): New function.
5518         (Free_list::remove): New function.
5519         (Free_list::allocate): New function.
5520         (Free_list::dump): New function.
5521         (Free_list::print_stats): New function.
5522         (Layout_task_runner::run): Resize output file for incremental updates.
5523         (Layout::Layout): Initialize new data members.
5524         (Layout::set_incremental_base): New function.
5525         (Layout::init_fixed_output_section): New function.
5526         (Layout::layout_eh_frame): Do not build .eh_frame_hdr section for
5527         incremental updates.
5528         (Layout::create_gold_note): Do not create gold note section for
5529         incremental updates.
5530         (Layout::set_segment_offsets): Do not recalculate RELRO alignment
5531         for incremental updates.
5532         (Layout::set_section_offsets): For incremental updates, allocate space
5533         from free list.
5534         (Layout::create_symtab_sections): Layout with offsets relative to
5535         start of section; for incremental updates, allocate space from free
5536         list.
5537         (Layout::create_shdrs): For incremental updates, allocate space from
5538         free list.
5539         (Layout::finish_dynamic_section): For incremental updates, do not
5540         check --as-needed (fixed in subsequent patch).
5541         * layout.h (class Free_list): New class.
5542         (Layout::set_incremental_base): New function.
5543         (Layout::incremental_base): New function.
5544         (Layout::init_fixed_output_section): New function.
5545         (Layout::allocate): New function.
5546         (Layout::incremental_base_): New data member.
5547         (Layout::free_list_): New data member.
5548         * main.cc (main): Print Free_list statistics.
5549         * object.cc (Relobj::finalize_incremental_relocs): Add
5550         clear_counts parameter; clear counts only when clear_counts is set.
5551         (Sized_relobj::Sized_relobj): Initialize new base class.
5552         (Sized_relobj::do_layout): Don't report special sections.
5553         (Sized_relobj::do_for_all_local_got_entries): New function.
5554         (Sized_relobj::write_local_symbols): Add symtab_off parameter; add
5555         symtab_off to all symbol table offsets.
5556         (Sized_relobj::do_get_global_symbol_counts): Add typename keyword.
5557         * object.h (class Got_offset_list): Move to top of file.
5558         (Object::Object): Allow case where input_file == NULL.
5559         (Object::~Object): Likewise.
5560         (Object::input_file): Assert that input_file != NULL.
5561         (Object::lock): Allow case where input_file == NULL.
5562         (Object::unlock): Likewise.
5563         (Object::is_locked): Likewise.
5564         (Object::token): Likewise.
5565         (Object::release): Likewise.
5566         (Object::is_incremental): New function.
5567         (Object::get_mtime): New function.
5568         (Object::for_all_local_got_entries): New function.
5569         (Object::clear_view_cache_marks): Allow case where input_file == NULL.
5570         (Object::set_is_in_system_directory): New function.
5571         (Object::is_in_system_directory): New function.
5572         (Object::do_is_incremental): New function.
5573         (Object::do_get_mtime): New function.
5574         (Object::do_for_all_local_got_entries): New function.
5575         (Object::is_in_system_directory_): New data member.
5576         (Relobj::finalize_incremental_relocs): Add clear_counts parameter.
5577         (class Sized_relobj_base): New class.
5578         (class Sized_relobj): Derive from Sized_relobj_base.
5579         (class Sized_relobj::Symbols): Redeclare from base class.
5580         (class Sized_relobj::local_got_offset_list): Remove.
5581         (class Sized_relobj::Output_sections): Redeclare from base class.
5582         (class Sized_relobj::do_for_all_local_got_entries): New function.
5583         (class Sized_relobj::write_local_symbols): Add offset parameter.
5584         (class Sized_relobj::local_symbol_offset_): Update comment.
5585         (class Sized_relobj::local_dynsym_offset_): Update comment.
5586         * options.cc (Input_arguments::add_file): Remove const.
5587         * options.h (Input_file_argument::Input_file_argument):
5588         Initialize arg_serial_ (all constructors).
5589         (Input_file_argument::set_arg_serial): New function.
5590         (Input_file_argument::arg_serial): New function.
5591         (Input_file_argument::arg_serial_): New data member.
5592         (Input_arguments::Input_arguments): Initialize file_count_.
5593         (Input_arguments::add_file): Remove const.
5594         (Input_arguments::number_of_input_files): New function.
5595         (Input_arguments::file_count_): New data member.
5596         (Command_line::number_of_input_files): Call
5597         Input_arguments::number_of_input_files.
5598         * output.cc (Output_segment_headers::Output_segment_headers):
5599         Set current size.
5600         (Output_section::Input_section::current_data_size): New function.
5601         (Output_section::Output_section): Initialize new data members.
5602         (Output_section::add_input_section): Don't do merge sections for
5603         an incremental link; allocate space from free list for an
5604         incremental update.
5605         (Output_section::add_output_section_data): Allocate space from
5606         free list for an incremental update.
5607         (Output_section::update_data_size): New function.
5608         (Output_section::set_fixed_layout): New function.
5609         (Output_section::reserve): New function.
5610         (Output_segment::set_section_addresses): Remove const.
5611         (Output_segment::set_section_list_addresses): Remove const; allocate
5612         space from free list for an incremental update.
5613         (Output_segment::set_offset): Adjust size of RELRO segment for an
5614         incremental update.
5615         * output.h (Output_data::current_data_size): Move here from
5616         child classes.
5617         (Output_data::pre_finalize_data_size): New function.
5618         (Output_data::update_data_size): New function.
5619         (Output_section_headers::update_data_size): new function.
5620         (Output_section_data_build::current_data_size): Move to Output_data.
5621         (Output_data_strtab::update_data_size): New function.
5622         (Output_section::current_data_size): Move to Output_data.
5623         (Output_section::set_fixed_layout): New function.
5624         (Output_section::has_fixed_layout): New function.
5625         (Output_section::reserve): New function.
5626         (Output_section::update_data_size): New function.
5627         (Output_section::has_fixed_layout_): New data member.
5628         (Output_section::free_list_): New data member.
5629         (Output_segment::set_section_addresses): Remove const.
5630         (Output_segment::set_section_list_addresses): Remove const.
5631         * plugin.cc (Sized_pluginobj::do_for_all_local_got_entries):
5632         New function.
5633         * plugin.h (Sized_pluginobj::do_for_all_local_got_entries):
5634         New function.
5635         * readsyms.cc (Read_symbols::do_read_symbols): Add library
5636         parameter when calling Add_symbols constructor; store argument
5637         serial number for members of a lib group.
5638         (Add_symbols::locks): Allow case where token == NULL.
5639         (Add_symbols::run): Report libraries denoted by --start-lib/--end-lib.
5640         (Read_member::~Read_member): New function.
5641         (Read_member::is_runnable): New function.
5642         (Read_member::locks): New function.
5643         (Read_member::run): New function.
5644         (Check_script::~Check_script): New function.
5645         (Check_script::is_runnable): New function.
5646         (Check_script::locks): New function.
5647         (Check_script::run): New function.
5648         (Check_library::~Check_library): New function.
5649         (Check_library::is_runnable): New function.
5650         (Check_library::locks): New function.
5651         (Check_library::run): New function.
5652         * readsyms.h (Add_symbols::Add_symbols): Add library parameter.
5653         (Add_symbols::library_): New data member.
5654         (class Read_member): New class.
5655         (class Check_script): New class.
5656         (class Check_library): New class.
5657         * reloc.cc (Read_relocs::is_runnable): Allow case where
5658         token == NULL.
5659         (Read_relocs::locks): Likewise.
5660         (Scan_relocs::locks): Likewise.
5661         (Relocate_task::locks): Likewise.
5662         (Sized_relobj::do_scan_relocs): Tell finalize_incremental_relocs
5663         to clear counters.
5664         (Sized_relobj::incremental_relocs_scan): Fix comment.
5665         (Sized_relobj::do_relocate): Pass output file offset to
5666         write_local_symbols.
5667         (Sized_relobj::incremental_relocs_write_reltype): Use reloc_size
5668         from class declaration.
5669         * script.cc (read_input_script): Allocate Script_info; pass
5670         argument serial number to report_script.
5671         * script.h (class Script_info): Move to incremental.h.
5672         * symtab.cc (Symbol_table::add_from_incrobj): New function.
5673         * symtab.h (Symbol_table::add_from_incrobj): New function.
5674         (Symbol_table::set_file_offset): New function.
5675
5676 2011-04-05  Cary Coutant  <ccoutant@google.com>
5677
5678         * incremental-dump.cc (dump_incremental_inputs): Change signature
5679         to take a Sized_incremental_binary; change caller.  Use readers
5680         in Sized_incremental_binary.
5681         * incremental.cc
5682         (Sized_incremental_binary::find_incremental_inputs_sections):
5683         Rename do_find_incremental_inputs_sections to this.
5684         (Sized_incremental_binary::setup_readers): New function.
5685         (Sized_incremental_binary::do_check_inputs): Check
5686         has_incremental_info_ flag; move setup code to setup_readers;
5687         use input readers.
5688         (Sized_incremental_binary::do_file_is_unchanged): New function.
5689         (Sized_incremental_binary::do_get_input_reader): New function.
5690         * incremental.h (class Incremental_binary): Move to end of file.
5691         (Incremental_binary::file_is_unchanged): New function.
5692         (Incremental_binary::do_file_is_unchanged): New function.
5693         (Incremental_binary::Input_reader): New class.
5694         (Incremental_binary::get_input_reader): New function.
5695         (class Sized_incremental_binary): Move to end of file.
5696         (Sized_incremental_binary::Sized_incremental_binary): Setup the
5697         input section reader classes.
5698         (Sized_incremental_binary::has_incremental_info): New function.
5699         (Sized_incremental_binary::inputs_reader): New function.
5700         (Sized_incremental_binary::symtab_reader): New function.
5701         (Sized_incremental_binary::relocs_reader): New function.
5702         (Sized_incremental_binary::got_plt_reader): New function.
5703         (Sized_incremental_binary::do_file_is_unchanged): New function.
5704         (Sized_incremental_binary::Sized_input_reader): New class.
5705         (Sized_incremental_binary::get_input_reader): New function.
5706         (Sized_incremental_binary::find_incremental_inputs_sections):
5707         Rename do_find_incremental_inputs_sections to this.
5708         (Sized_incremental_binary::setup_readers): New function.
5709         (Sized_incremental_binary::has_incremental_info_): New data member.
5710         (Sized_incremental_binary::inputs_reader_): New data member.
5711         (Sized_incremental_binary::symtab_reader_): New data member.
5712         (Sized_incremental_binary::relocs_reader_): New data member.
5713         (Sized_incremental_binary::got_plt_reader_): New data member.
5714         (Sized_incremental_binary::current_input_file_): New data member.
5715
5716 2011-04-05  Paul Pluzhnikov  <ppluzhnikov@google.com>
5717
5718         PR gold/12640
5719         * dwarf_reader.cc (Sized_dwarf_line_info): Fix vector bounds
5720         violation.
5721
5722 2011-03-30  Cary Coutant  <ccoutant@google.com>
5723
5724         * archive.cc (Archive::include_member): Adjust call to report_object.
5725         (Add_archive_symbols::run): Add script_info to call to
5726         report_archive_begin.
5727         (Lib_group::include_member): Adjust call to report_object.
5728         (Add_lib_group_symbols::run): Adjust call to report_object.
5729         * incremental-dump.cc (dump_incremental_inputs): Remove unnecessary
5730         blocks.  Add object count for script input files.
5731         * incremental.cc (Incremental_inputs::report_archive_begin): Add
5732         script_info parameter; change all callers.
5733         (Incremental_inputs::report_object): Add script_info parameter;
5734         change all callers.
5735         (Incremental_inputs::report_script): Store backpointer to
5736         incremental info entry.
5737         (Output_section_incremental_inputs::set_final_data_size): Record
5738         additional information for scripts.
5739         (Output_section_incremental_inputs::write_info_blocks): Likewise.
5740         * incremental.h (Incremental_script_entry::add_object): New function.
5741         (Incremental_script_entry::get_object_count): New function.
5742         (Incremental_script_entry::get_object): New function.
5743         (Incremental_script_entry::objects_): New data member; adjust
5744         constructor.
5745         (Incremental_inputs::report_archive_begin): Add script_info parameter.
5746         (Incremental_inputs::report_object): Add script_info parameter.
5747         (Incremental_inputs_reader::get_object_count): New function.
5748         (Incremental_inputs_reader::get_object_offset): New function.
5749         * options.cc (Input_arguments::add_file): Return reference to
5750         new input argument.
5751         * options.h (Input_argument::set_script_info): New function.
5752         (Input_argument::script_info): New function.
5753         (Input_argument::script_info_): New data member; adjust all
5754         constructors.
5755         (Input_file_group::add_file): Return reference to new input argument.
5756         (Input_file_lib::add_file): Likewise.
5757         (Input_arguments::add_file): Likewise.
5758         * readsyms.cc (Add_symbols::run): Adjust call to report_object.
5759         * script.cc (Parser_closure::Parser_closure): Add script_info
5760         parameter; adjust all callers.
5761         (Parser_closure::script_info): New function.
5762         (Parser_closure::script_info_): New data member.
5763         (read_input_script): Report scripts earlier to incremental info.
5764         (script_add_file): Set script_info in Input_argument.
5765         (script_add_library): Likewise.
5766         * script.h (Script_options::Script_info): Rewrite class.
5767
5768 2011-03-29  Cary Coutant  <ccoutant@google.com>
5769
5770         * archive.cc (Library_base::should_include_member): Move
5771         method here from class Archive.
5772         (Archive::Archive): Initialize base class.
5773         (Archive::should_include_member): Move to base class.
5774         (Archive::do_for_all_unused_symbols): New function.
5775         (Add_archive_symbols::run): Remove redundant access to
5776         incremental_inputs.
5777         (Lib_group::Lib_group): Initialize base class.
5778         (Lib_group::do_filename): New function.
5779         (Lib_group::include_member): Pass pointer to Lib_group to
5780         report_object.
5781         (Lib_group::do_for_all_unused_symbols): New function.
5782         (Add_lib_group_symbols::run): Report archive information for
5783         incremental links.
5784         * archive.h (class Library_base): New base class.
5785         (class Archive): Derive from Library_base.
5786         (Archive::filename): Move to base class.
5787         (Archive::set_incremental_info): Likewise.
5788         (Archive::incremental_info): Likewise.
5789         (Archive::Should_include): Likewise.
5790         (Archive::should_include_member): Likewise.
5791         (Archive::Armap_entry): Remove.
5792         (Archive::Unused_symbol_iterator): Remove.
5793         (Archive::unused_symbols_begin): Remove.
5794         (Archive::unused_symbols_end): Remove.
5795         (Archive::do_filename): New function.
5796         (Archive::do_get_mtime): New function.
5797         (Archive::do_for_all_unused_symbols): New function.
5798         (Archive::task_): Move to base class.
5799         (Archive::incremental_info_): Likewise.
5800         (class Lib_group): Derive from Library_base.
5801         (Lib_group::do_filename): New function.
5802         (Lib_group::do_get_mtime): New function.
5803         (Lib_group::do_for_all_unused_symbols): New function.
5804         (Lib_group::task_): Move to base class.
5805         * dynobj.cc (Sized_dynobj::do_for_all_global_symbols): New
5806         function.
5807         * dynobj.h (Sized_dynobj::do_for_all_global_symbols): New
5808         function.
5809         * incremental.cc (Incremental_inputs::report_archive_begin):
5810         Use Library_base; call library's get_mtime; add incremental inputs
5811         entry before members.
5812         (class Unused_symbol_visitor): New class.
5813         (Incremental_inputs::report_archive_end): Use Library_base; use
5814         visitor class to record unused symbols; don't add incremental inputs
5815         entry after members.
5816         (Incremental_inputs::report_object): Use Library_base.
5817         * incremental.h
5818         (Incremental_archive_entry::Incremental_archive_entry): Remove
5819         unused Archive parameter.
5820         (Incremental_inputs::report_archive_begin): Use Library_base.
5821         (Incremental_inputs::report_archive_end): Likewise.
5822         (Incremental_inputs::report_object): Likewise.
5823         * object.cc (Sized_relobj::do_for_all_global_symbols): New
5824         function.
5825         * object.h (Object::for_all_global_symbols): New function.
5826         (Object::do_for_all_global_symbols): New function.
5827         (Sized_relobj::do_for_all_global_symbols): New function.
5828         * plugin.cc (Sized_pluginobj::do_for_all_global_symbols):  New
5829         function.
5830         * plugin.h (Sized_pluginobj::do_for_all_global_symbols):  New
5831         function.
5832
5833 2011-03-27  Ian Lance Taylor  <iant@google.com>
5834
5835         * archive.cc (Archive::interpret_header): Return -1 if something
5836         goes wrong.  Change callers accordingly.
5837
5838 2011-03-25  Cary Coutant  <ccoutant@google.com>
5839
5840         * testsuite/Makefile.am (final_layout.stdout): Use -n option with nm.
5841         * testsuite/Makefile.in: Regenerate.
5842
5843 2011-03-23  Rafael Ávila de Espíndola <respindola@mozilla.com>
5844
5845         * plugin.cc (get_view): New.
5846         (Plugin::load): Pass get_view to the plugin.
5847         (Plugin_manager::get_view): New.
5848
5849 2011-03-21  Ian Lance Taylor  <iant@google.com>
5850
5851         * testsuite/final_layout.sh: Rewrite to not use dc.
5852         * testsuite/relro_test.sh: Fail if dc is not present.
5853
5854 2011-03-21  Sriraman Tallam  <tmsriram@google.com>
5855
5856         * testsuite/icf_safe_so_test.sh: Add #!/bin/sh to start.
5857         Change == to -eq.
5858         * testsuite/icf_string_merge_test.sh: Add #!/bin/sh to start.
5859         * testsuite/icf_safe_test.sh: Add #!/bin/sh to start.
5860         Change == to -eq.
5861         * testsuite/icf_sht_rel_addend_test.sh: Add #!/bin/sh to start.
5862         * testsuite/icf_preemptible_functions_test.sh: Add #!/bin/sh to start.
5863
5864 2011-03-14  Ian Lance Taylor  <iant@google.com>
5865
5866         * script-sections.cc (Sort_output_sections::script_compare):
5867         Rename from is_before, change return type.
5868         (Sort_output_sections::operator()): Adjust accordingly.
5869
5870 2011-03-11  Jeffrey Yasskin  <jyasskin@google.com>
5871
5872         PR gold/12572
5873         * testsuite/odr_violation2.cc: Add comment to make all error line
5874         numbers double digits.
5875         * testsuite/debug_msg.sh: Adjust expected errors.
5876
5877 2011-03-09  Jeffrey Yasskin  <jyasskin@google.com>
5878
5879         * dwarf_reader.cc (Sized_dwarf_line_info): Include all lines,
5880         but mark earlier ones as non-canonical
5881         (offset_to_iterator): Update search target and example
5882         (do_addr2line): Return extra lines in a vector*
5883         (format_file_lineno): Extract from do_addr2line
5884         (one_addr2line): Add vector* out-param
5885         * dwarf_reader.h (Offset_to_lineno_entry): New field recording
5886         when a lineno entry appeared last for its instruction
5887         (Dwarf_line_info): Add vector* out-param
5888         * object.cc (Relocate_info): Pass NULL for the vector* out-param
5889         * symtab.cc (Odr_violation_compare): Include the lineno in the
5890         comparison again.
5891         (linenos_from_loc): New. Combine the canonical line for an
5892         address with its other lines.
5893         (True_if_intersect): New. Helper functor to make
5894         std::set_intersection a query.
5895         (detect_odr_violations): Compare sets of lines instead of just
5896         one line for each function. This became less deterministic, but
5897         has fewer false positives.
5898         * symtab.h: Declarations.
5899         * testsuite/Makefile.am (odr_violation2.o): Compile with -O2 to
5900         mix an optimized and non-optimized object in the same binary
5901         (odr_violation2.so): Same.
5902         * testsuite/Makefile.in: Regenerate from Makefile.am.
5903         * testsuite/debug_msg.cc (main): Make OdrDerived classes.
5904         * testsuite/debug_msg.sh: Update line numbers and add
5905         assertions.
5906         * testsuite/odr_violation1.cc: Use OdrDerived, in a
5907         non-optimized context.
5908         * testsuite/odr_violation2.cc: Make sure Ordering::operator()
5909         isn't inlined, and use OdrDerived in an optimized context.
5910         * testsuite/odr_header1.h: Defines OdrDerived, where
5911         optimization will change the
5912         first-instruction-in-the-destructor's file and line number.
5913         * testsuite/odr_header2.h: Defines OdrBase.
5914
5915 2011-03-09  Ian Lance Taylor  <iant@google.com>
5916
5917         * fileread.cc (File_read::clear_views): Don't delete the whole
5918         file view.
5919
5920 2011-03-08  Ian Lance Taylor  <iant@google.com>
5921
5922         PR gold/12525
5923         * fileread.cc: #include <climits>.
5924         (GOLD_IOV_MAX): Define.
5925         (File_read::read_multiple): Limit number of entries by iov_max.
5926         * fileread.h (class File_read): Always set max_readv_entries to
5927         128.
5928
5929 2011-03-07  Ian Lance Taylor  <iant@google.com>
5930
5931         PR gold/12525
5932         * options.h (class General_options): Add -dy and -dn.
5933
5934 2011-03-02  Cary Coutant  <ccoutant@google.com>
5935
5936         * testsuite/script_test_9.t: Add TLS segment.
5937
5938 2011-03-02  Simon Baldwin  <simonb@google.com>
5939
5940         * configure.ac: Add check for gnu_indirect_function support in
5941         the toolchain building binutils.
5942         * configure: Rebuild.
5943
5944 2011-02-18  Rafael Ávila de Espíndola <respindola@mozilla.com>
5945
5946         * symtab.cc (Symbol::should_add_dynsym_entry) Return false for
5947         plugin only symbols.
5948         (Symbol_table::sized_finalize_symbol) Mark symbol only present
5949         in plugin files as not needed in the symbol table.
5950
5951 2011-02-11  Sriraman Tallam  <tmsriram@google.com>
5952
5953         * output.cc (Output_section::add_input_section): Delay fill
5954         generation for section ordering.
5955
5956 2011-02-09  Ian Lance Taylor  <iant@google.com>
5957
5958         PR gold/12316
5959         * object.h (class Sized_relobj): Remove clear_local_symbols.
5960         * reloc.cc (Sized_relobj::do_relocate): Don't call
5961         clear_local_symbols.
5962
5963 2011-02-08  Rafael Ávila de Espíndola <respindola@mozilla.com>
5964
5965         * plugin.cc (is_visible_from_outside): Return true for symbols
5966         in the -u option.
5967
5968 2011-02-04  Jeffrey Yasskin  <jyasskin@google.com>
5969
5970         * symtab.cc (Odr_violation_compare::operator()): Sort by just the
5971         filename.
5972
5973 2011-02-02  Sriraman Tallam  <tmsriram@google.com>
5974
5975         * icf.h (is_section_foldable_candidate): Change type of parameter
5976         to std::string.
5977         * icf.cc (Icf::find_identical_sections): Change type of local variable
5978         section_name to be std::string.
5979         (is_function_ctor_or_dtor): Change type of parameter to std::string.
5980
5981 2011-01-25  Ian Lance Taylor  <iant@google.com>
5982
5983         * script.cc (script_add_extern): Rewrite to use
5984         add_symbol_reference.
5985
5986 2011-01-25  Doug Kwan  <dougkwan@google.com>
5987
5988         * icf.cc (get_section_contents): Always lock section's object.
5989
5990 2011-01-24  Ian Lance Taylor  <iant@google.com>
5991
5992         * options.h (class General_options): Accept
5993         --no-detect-odr-violations.
5994
5995 2011-01-24  Ian Lance Taylor  <iant@google.com>
5996
5997         * version.cc (version_string): Bump to 1.11.
5998
5999 2011-01-24  Ian Lance Taylor  <iant@google.com>
6000
6001         * plugin.cc (class Plugin_rescan): Define new class.
6002         (Plugin_manager::claim_file): Set any_claimed_.
6003         (Plugin_manager::save_archive): New function.
6004         (Plugin_manager::save_input_group): New function.
6005         (Plugin_manager::all_symbols_read): Create Plugin_rescan task if
6006         necessary.
6007         (Plugin_manager::new_undefined_symbol): New function.
6008         (Plugin_manager::rescan): New function.
6009         (Plugin_manager::rescannable_defines): New function.
6010         (Plugin_manager::add_input_file): Set any_added_.
6011         * plugin.h (class Plugin_manager): define new fields rescannable_,
6012         undefined_symbols_, any_claimed_, and any_added_.  Declare
6013         Plugin_rescan as friend.  Declare new functions.
6014         (Plugin_manager::Rescannable): Define type.
6015         (Plugin_manager::Rescannable_list): Define type.
6016         (Plugin_manager::Undefined_symbol_list): Define type.
6017         (Plugin_manager::Plugin_manager): Initialize new fields.
6018         * archive.cc (Archive::defines_symbol): New function.
6019         (Add_archive_symbols::run): Pass archive to plugins if any.
6020         * archive.h (class Archive): Declare defines_symbol.
6021         * readsyms.cc (Input_group::~Input_group): New function.
6022         (Finish_group::run): Pass input_group to plugins if any.
6023         * readsyms.h (class Input_group): Declare destructor.
6024         * symtab.cc (add_from_object): Pass undefined symbol to plugins if
6025         any.
6026
6027 2011-01-10  Ian Lance Taylor  <iant@google.com>
6028
6029         * layout.cc (Layout::layout_eh_frame): Mark a writable .eh_frame
6030         section as relro.
6031         (Layout::set_segment_offsets): Reset increase_relro before calling
6032         set_section_addresses a second time.
6033
6034 2011-01-04  Cary Coutant  <ccoutant@google.com>
6035
6036         * script-sections.cc (Sort_output_sections::operator()): Sort TLS
6037         sections before NOBITS sections.
6038
6039 2011-01-01  H.J. Lu  <hongjiu.lu@intel.com>
6040
6041         * version.cc (print_version): Update copyright to 2011.
6042
6043 2010-12-23  Cary Coutant  <ccoutant@google.com>
6044
6045         * output.h (Output_data_reloc::add_output_section): Pass OD instead
6046         of OS to this->add.  Add OD parameter to second form of the function.
6047
6048 2010-12-20  Ian Lance Taylor  <iant@google.com>
6049
6050         * dwarf_reader.cc (Sized_dwarf_line_info::read_lines): Only keep
6051         second of two consecutive entries with same offset.
6052
6053 2010-12-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6054
6055         * testsuite/Makefile.am (ifuncmain2static_LDADD)
6056         (ifuncmain2_LDADD, ifuncmain4static_LDADD, ifuncmain4_LDADD)
6057         (ifuncmain7static_LDADD, ifuncmain7_LDADD): New empty variables,
6058         to avoid unneeded links against $(LDADD).
6059         * testsuite/Makefile.in: Regenerate.
6060
6061 2010-12-15  Ian Lance Taylor  <iant@google.com>
6062
6063         PR gold/12324
6064         * x86_64.cc (Target_x86_64::Scan::check_non_pic): Give an error
6065         for R_X86_64_32 and R_X86_64_PC32.
6066         * testsuite/Makefile.am (ver_matching_def.so): Depend on and use
6067         ver_matching_def_pic.o.
6068         (ver_matching_def_pic.o): New target.
6069
6070 2010-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6071
6072         * fileread.cc (file_counts_lock, file_counts_initialize_lock)
6073         (total_mapped_bytes, current_mapped_bytes, maximum_mapped_bytes):
6074         Move definition before File_read::View member definitions.
6075         (File_read::View::~View): Initialize and hold lock before
6076         updating current_mapped_bytes.
6077
6078 2010-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6079
6080         * dwarf_reader.cc: Remove outdated comment.
6081         * gold-threads.cc: Fix typo in error message.
6082         * archive.cc: Fix typos in comments.
6083         * archive.h: Likewise.
6084         * arm-reloc-property.cc: Likewise.
6085         * arm-reloc-property.h: Likewise.
6086         * arm-reloc.def: Likewise.
6087         * arm.cc: Likewise.
6088         * attributes.h: Likewise.
6089         * cref.cc: Likewise.
6090         * ehframe.cc: Likewise.
6091         * fileread.h: Likewise.
6092         * gold.h: Likewise.
6093         * i386.cc: Likewise.
6094         * icf.cc: Likewise.
6095         * incremental.h: Likewise.
6096         * int_encoding.cc: Likewise.
6097         * layout.h: Likewise.
6098         * main.cc: Likewise.
6099         * merge.h: Likewise.
6100         * object.cc: Likewise.
6101         * object.h: Likewise.
6102         * options.cc: Likewise.
6103         * readsyms.cc: Likewise.
6104         * reduced_debug_output.cc: Likewise.
6105         * reloc.cc: Likewise.
6106         * script-sections.cc: Likewise.
6107         * sparc.cc: Likewise.
6108         * symtab.h: Likewise.
6109         * target-reloc.h: Likewise.
6110         * target.cc: Likewise.
6111         * target.h: Likewise.
6112         * timer.cc: Likewise.
6113         * timer.h: Likewise.
6114         * x86_64.cc: Likewise.
6115
6116 2010-12-09  Cary Coutant  <ccoutant@google.com>
6117
6118         * layout.cc (Layout::layout_gnu_stack): Add warnings for executable
6119         stack.
6120         * layout.h (Layout::layout_gnu_stack): Add pointer to Object
6121         parameter; change all callers.
6122         * object.cc (Sized_relobj::do_layout): Adjust call to layout_gnu_stack.
6123         * options.h (warn_execstack): New option.
6124
6125 2010-12-07  Doug Kwan  <dougkwan@google.com>
6126
6127         * arm.cc (Target_arm::Scan::get_reference_flags): Treat R_ARM_PREL31
6128         like function call relocations.
6129
6130 2010-12-07  Ian Lance Taylor  <iant@google.com>
6131
6132         * archive.cc (Archive::get_elf_object_for_member): Permit
6133         punconfigured to be NULL.
6134         (Archive::read_symbols): Pass NULL to get_elf_object_for_member.
6135         (Archive::include_member): Pass NULL to get_elf_object_for_member
6136         if we searched for the archive and this is the first included
6137         object.
6138
6139 2010-12-01  Ian Lance Taylor  <iant@google.com>
6140
6141         * dwarf_reader.h (class Sized_dwarf_line_info): Add
6142         track_relocs_type_ field.
6143         * dwarf_reader.cc (Sized_dwarf_line_info::Sized_dwarf_line_info):
6144         Set track_relocs_type_.
6145         (Sized_dwarf_line_info::process_one_opcode): Ignore the section
6146         contents when using RELA relocs.
6147         (Sized_dwarf_line_info::read_relocs): Add the reloc addend to
6148         reloc_map_.
6149         * reloc.cc (Track_relocs::next_addend): New function.
6150         * reloc.h (class Track_relocs): Declare next_addend.
6151
6152 2010-12-01  Ian Lance Taylor  <iant@google.com>
6153
6154         * testsuite/icf_virtual_function_folding_test.cc (class Bar): Add
6155         virtual destructor.
6156
6157 2010-12-01  Ian Lance Taylor  <iant@google.com>
6158
6159         * README: Update compilers known to work and fail.
6160
6161 2010-11-23  Matthias Klose  <doko@ubuntu.com>
6162
6163         * configure.in: For --enable-gold, handle value `default' instead of
6164         `both*'.  Always install ld as ld.bfd, install as ld if gold is
6165         not the default.
6166         * configure: Regenerate.
6167
6168 2010-11-18  Doug Kwan  <dougkwan@google.com>
6169
6170         * expression.cc (BINARY_EXPRESSION): Initialize left_alignment
6171         and right_alignment to be zero.  Store result alignment only if it is
6172         greater than existing alignment.
6173
6174 2010-11-16  Cary Coutant  <ccoutant@google.com>
6175
6176         PR gold/12220
6177         * dwarf_reader.cc (Sized_dwarf_line_info::Sized_dwarf_line_info):
6178         Check for ".zdebug_line".
6179
6180 2010-11-16  Doug Kwan  <dougkwan@google.com>
6181             Cary Coutant  <ccoutant@google.com>
6182
6183         * output.h (Output_segment::set_section_addresses): Pass increase_relro
6184         by reference; adjust all callers.
6185         * output.cc (Output_segment::set_section_addresses): Adjust references
6186         to increase_relro. Add padding to *increase_relro when ORDER_RELRO_LAST
6187         list is empty.
6188         (Output_segment::set_offset): Assert if PT_GNU_RELRO segment does not
6189         end at page boundary.
6190
6191 2010-11-16  Cary Coutant  <ccoutant@google.com>
6192
6193         PR gold/12220
6194         * layout.cc (Layout::choose_output_section): Transform names of
6195         compressed sections even when using a script with a SECTIONS clause.
6196         (Layout::output_section_name): Remove code to transform
6197         compressed debug section names.
6198         * output.cc (Output_section::add_input_section): Use uncompressed
6199         section size when tracking input sections.
6200
6201 2010-11-11  Richard Sandiford  <richard.sandiford@linaro.org>
6202
6203         * symtab.h (Symbol::NON_PIC_REF): Remove.
6204         (Symbol::RELATIVE_REF, Symbol::TLS_REF): New Reference_flags.
6205         (Symbol::FUNCTION_CALL): Renumber.  Reword comment.
6206         (Symbol::needs_dynamic_reloc): Don't check NON_PIC_REF.
6207         (Symbol::use_plt_offset): Take a flags argument and pass it
6208         directly to needs_dynamic_reloc.  Restrict check for undefined
6209         weak symbols to function calls.
6210         * arm.cc (Target_arm::Scan::get_reference_flags): New function.
6211         (Target_arm::Scan::global): Use it.
6212         (Target_arm::Scan::scan_reloc_for_stub): Likewise.
6213         (Target_arm::Relocate::relocate): Likewise.
6214         (Target_arm::Relocate::should_apply_static_reloc): Replace flags
6215         parameter with an r_type parameter.  Use get_reference_flags
6216         to get the flags.
6217         (Target_arm::Relocate::relocate): Update accordingly.
6218         * i386.cc (Target_i386::Scan::get_reference_flags): New function.
6219         (Target_i386::Scan::reloc_needs_plt_for_ifunc): Use it.
6220         (Target_i386::Scan::global): Likewise.
6221         (Target_i386::Relocate::relocate): Likewise.
6222         (Target_i386::Relocate::should_apply_static_reloc): Replace flags
6223         parameter with an r_type parameter.  Use get_reference_flags
6224         to get the flags.
6225         (Target_i386::Relocate::relocate): Update accordingly.
6226         * powerpc.cc (Target_powerpc::Scan::get_reference_flags): New function.
6227         (Target_powerpc::Scan::global): Use it.
6228         (Target_powerpc::Scan::scan_reloc_for_stub): Likewise.
6229         (Target_powerpc::Relocate::relocate): Likewise.
6230         * sparc.cc (Target_sparc::Scan::get_reference_flags): New function.
6231         (Target_sparc::Scan::global): Use it.
6232         (Target_sparc::Scan::scan_reloc_for_stub): Likewise.
6233         (Target_sparc::Relocate::relocate): Likewise.
6234         * x86_64.cc (Target_x86_64::Scan::get_reference_flags): New function.
6235         (Target_x86_64::Scan::reloc_needs_plt_for_ifunc): Use it.
6236         (Target_x86_64::Scan::global): Likewise.
6237         (Target_x86_64::Relocate::relocate): Likewise.
6238
6239 2010-11-08  Doug Kwan  <dougkwan@google.com>
6240             Cary Coutant  <ccoutant@google.com>
6241
6242         * arm.cc (Arm_exidx_merge_section::build_contents): New method.
6243         (Arm_exidx_merge_section::section_contents_): New data member.
6244         (Arm_input_section::Arm_input_section): Initialize original_contents_.
6245         (Arm_input_section::~Arm_input_section): De-allocate memory.
6246         (Arm_input_section::original_contents_): New data member.
6247         (Arm_exidx_fixup::process_exidx_section): Pass EXIDX section contents
6248         in parameters instead of calling Object::section_contents without
6249         locking.
6250         (Arm_output_section::group_section): New parameter TASK.  Pass it
6251         to callees that need locking objects.
6252         (Arm_output_section::fix_exidx_coverage): New parameter TASK.  Use it
6253         to lock EXIDX input sections.  Fix a formatting issue.  Call
6254         Arm_exidx_merged_section::build_contents to create merged section
6255         contents.
6256         (Arm_output_section::create_stub_group): New parameter TASK.  Use it
6257         to lock object of stub table owner.
6258         (Arm_exidx_input_section::Arm_exidx_input_section): Add new parameter
6259         TEXT_SIZE to initialize data member TEXT_SIZE_.
6260         (Arm_exidx_input_section::addralign): Fix typo in comment.
6261         (Arm_exidx_input_section::text_size): New method.
6262         (Target_arm::do_relax): New parameter TASK.  Pass it to callees
6263         that require locking objects.  Lock objects before scanning for stubs
6264         and updating local symbols.
6265         (Arm_input_section<big_endian>::init): Copy contents of original
6266         input section.
6267         (Arm_input_section<big_endian>::do_write): Use saved contents of
6268         original input section instead of calling Object::section_contents
6269         without locking.
6270         (Arm_exidx_cantunwind::do_fixed_endian_write): Find out text section
6271         size without calling Object::section_size().
6272         (Arm_exidx_merged_section::Arm_exidx_merged_section): Add sanity check
6273         for size.  Allocate a buffer for merged EXIDX entries.
6274         (Arm_exidx_merged_section::build_contents): New method.
6275         (Arm_exidx_merged_section::do_write): Move merge section contents
6276         building code to Arm_exidx_merged_section::build_contetns.  Write
6277         out contetns in buffer instead of building it on the fly.
6278         (Arm_relobj::make_exidx_input_section): Also pass text section size
6279         to Arm_exidx_input_section constructor.
6280         (Arm_relobj::do_read_symbols): Fix memory leak.  Fix a formatting issue.
6281         (Arm_dynobj::do_read_symbols): Fix memory leak.
6282         * layout.cc (Layout::finalize): Pass TASK to Target::relax().
6283         * target.h: (class Task): Add forward declaration.
6284         (Target::relax): Add new parameter TASK and pass it to
6285         Target::do_relax().
6286         (Target::do_relax):: New parameter TASK.  Fix a formatting issue.
6287
6288 2010-11-05  Cary Coutant  <ccoutant@google.com>
6289
6290         PR gold/10708
6291         * copy-relocs.cc (Copy_relocs::emit_copy_reloc): Hold a lock on the
6292         object when reading from the file.
6293         * gold.cc (queue_middle_tasks): Hold a lock on the object when doing
6294         second layout pass.
6295         * icf.cc (preprocess_for_unique_sections): Hold a lock on the object
6296         when reading section contents.
6297         (get_section_contents): Likewise.
6298         (icf::find_identical_sections): Likewise.
6299         * mapfile.cc (Mapfile::print_discarded_sections): Hold a lock on the
6300         object when reading from the file.
6301         * plugin.cc (Plugin_manager::layout_deferred_objects): Hold a lock on
6302         the object when doing deferred section layout.
6303
6304 2010-11-03  Nick Clifton  <nickc@redhat.com>
6305
6306         PR gold/12001
6307         * script.h (class Symbol_assignment: name): New member.  Returns
6308         the name of the symbol.
6309         * scrfipt.cc (Script_options::is_pending_assignment): New member.
6310         Returns true if the given symbol name is on the list of
6311         assignments wating to be processed.
6312         * archive.cc (should_incldue_member): If the symbol is undefined,
6313         check to see if it is on the list of symbols pending assignment.
6314
6315 2010-11-03  Ryan Mansfield  <rmansfield@qnx.com>
6316
6317         * script-sections.cc (Script_sections::find_memory_region): Check
6318         for a NULL output section pointer.
6319
6320 2010-10-29  Doug Kwan  <dougkwan@google.com>
6321
6322         * arm.cc (Arm_outout_section::fix_exidx_coverage): Adjust call to
6323         Output_section::add_relaxed_input_section.
6324         * output.cc (Output_section::add_relaxed_input_section): Add new
6325         arguments LAYOUT and NAME.  Set section order index.
6326         (Output_section::convert_input_sections_in_list_to_relaxed_sections):
6327         Copy section order index.
6328         * output.h (Output_section::add_relaxed_input_section): Add new
6329         arguments LAYOUT and NAME.
6330
6331 2010-10-29  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
6332
6333         * testsuite/Makefile.am: Move gcctestdir/ld rule to
6334         NATIVE_OR_CROSS_LINKER.
6335         * testsuite/Makefile.in: Regenerate.
6336
6337 2010-10-20  Doug Kwan  <dougkwan@google.com>
6338
6339         * arm.cc (Arm_relobj::do_read_symbols): Warn about ARM EXIDX sections
6340         without SHF_LINK_ORDER flags.
6341         * layout.cc (Layout::choose_output_section): Do not filter
6342         SHF_LINK_ORDER flag in a relocatable link.
6343
6344 2010-10-17  Cary Coutant  <ccoutant@google.com>
6345
6346         * output.h (Output_segment::set_section_addresses): Change function
6347         signature.  Update all callers.
6348         * output.cc (Output_segment::is_first_section_relro): Ignore TLS
6349         sections.
6350         (Output_segment::set_section_addresses): Align after last TLS
6351         section.  Add padding before last relro section instead of after.
6352
6353 2010-10-17  Doug Kwan  <dougkwan@google.com>
6354
6355         * gold/arm.cc (Target_arm::got_section): Use correct order and set
6356         GOT output section to be writable.
6357
6358 2010-10-14  Cary Coutant  <ccoutant@google.com>
6359
6360         * debug.h (DEBUG_INCREMENTAL): New flag.
6361         (debug_string_to_enum): Add DEBUG_INCREMENTAL).
6362         * gold.cc (queue_initial_tasks): Check parameters for incremental link
6363         mode.
6364         * incremental.cc (report_command_line): Ignore all forms of
6365         --incremental.
6366         * layout.cc (Layout::Layout): Check parameters for incremental link
6367         mode.
6368         * options.cc (General_options::parse_incremental): New function.
6369         (General_options::parse_no_incremental): New function.
6370         (General_options::parse_incremental_full): New function.
6371         (General_options::parse_incremental_update): New function.
6372         (General_options::incremental_mode_): New data member.
6373         (General_options::finalize): Check incremental_mode_.
6374         * options.h (General_options): Update help text for --incremental.
6375         Add --no-incremental, --incremental-full, --incremental-update.
6376         (General_options::Incremental_mode): New enum type.
6377         (General_options::incremental_mode): New function.
6378         (General_options::incremental_mode_): New data member.
6379         * parameters.cc (Parameters::incremental_mode_): New data member.
6380         (Parameters::set_options): Set incremental_mode_.
6381         (Parameters::set_incremental_full): New function.
6382         (Parameters::incremental): New function.
6383         (Parameters::incremental_update): New function.
6384         (set_parameters_incremental_full): New function.
6385         * parameters.h (Parameters::set_incremental_full): New function.
6386         (Parameters::incremental): New function.
6387         (Parameters::incremental_update): New function.
6388         (Parameters::incremental_mode_): New data member.
6389         (set_parameters_incremental_full): New function.
6390         * plugin.cc (Plugin_manager::add_input_file): Check parameters for
6391         incremental link mode.
6392         * reloc.cc (Sized_relobj::do_read_relocs): Likewise.
6393         (Sized_relobj::do_relocate_sections): Likewise.
6394         * testsuite/Makefile.am (incremental_test): Use --incremental-full
6395         option.
6396         * testsuite/Makefile.in: Regenerate.
6397         * testsuite/incremental_test.sh: Filter all forms of --incremental.
6398
6399 2010-10-12  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
6400
6401         * script-sections.h (class Script_sections): Make
6402         Sections_elements typedef public.
6403         * script-sections.cc (class Sort_output_sections): Add elements_
6404         field.  Add constructor which sets it; change all callers.
6405         (Sort_output_sections::is_before): New function.
6406         (Sort_output_sections::operator()): Call is_before.
6407         * configure.ac (NATIVE_OR_CROSS_LINKER): New automake
6408         conditional.
6409         * testsuite/script_test_10.sh: New test. Test script section
6410         order.
6411         * testsuite/script_test_10.t: Likewise.
6412         * testsuite/script_test_10.s: Likewise.
6413         * testsuite/Makefile.am: Wrap the cross linker tests and the
6414         common tests into NATIVE_OR_CROSS_LINKER.
6415         (check_SCRIPTS): Add script_test_10.sh.
6416         (check_DATA): Add script_test_10.stdout.
6417         (script_test_10.o, script_test_10): New targets.
6418         (script_test_10.stdout): New target.
6419         * configure, testsuite/Makefile.in: Regenerate.
6420
6421 2010-10-12  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
6422
6423         * arm.cc (Target_arm::Scan::local): Report the unsupported reloc
6424         error for the deprecated relocations.
6425         (Target_arm::Scan::global): Likewise.
6426         (Target_arm::Relocate::relocate): Likewise.
6427
6428 2010-10-12  Richard Sandiford  <richard.sandiford@linaro.org>
6429
6430         * fileread.cc (Input_file::find_file): Initialize *found_name
6431         and *namep when using the fallback search for case 4.
6432
6433 2010-10-11  Cary Coutant  <ccoutant@google.com>
6434
6435         * options.h (class General_options): Redefine -z lazy as an alias for
6436         the negation of -z now.
6437
6438 2010-10-11  Ian Lance Taylor  <iant@google.com>
6439
6440         * resolve.cc (symbol_to_bits): Report the value of the unsupported
6441         binding.
6442
6443 2010-10-06  Nick Clifton  <nickc@redhat.com>
6444
6445         * script-sections.cc(class Memory_region): Remove
6446         current_lma_offset_ field.  Rename current_vma_offset_ to
6447         current_offset_.  Add last_section_ field.
6448         (Memory_region::get_current_vma_address): Rename to
6449         get_current_address.
6450         (Memory_region::get_current_lma_address): Delete.
6451         (Memory_region::increment_vma_offset): Rename to
6452         increment_offset.
6453         (Memory_region::increment_lma_offset): Delete.
6454         (Memory_region::attributes_compatible): New method.  Returns
6455         true if the provided section is compatible with the region.
6456         (Memory_region::get_last_section): New method.  Returns the last
6457         section to use the region.
6458         (Memory_region::set_last_section): New method.  Stores the last
6459         section to use the region.
6460         (Script_sections::block_in_region): New method.  Returns true if
6461         a block of memory is contained within a region.
6462         (Script_sections::find_memory_region): New method.  Locates a
6463         memory region to be used to set a VMA or LMA address.
6464         (Output_section_definition::set_section_addresses): Add code to
6465         check for addresses set by memory regions.
6466         (Output_segment::set_section_addresses): Remove memory region
6467         walking code.
6468         (Script_sections::create_segment): Add a warning if a header
6469         segment is created outside of any region.
6470         * script-sections.h (class Script_sections): Add prototypes for
6471         find_memory_region and block_in_region methods.
6472         * testsuite/memory_test.s: Use .long instead of .word.
6473         * testsuite/memory_test.t: Add some more output sections.
6474         * testsuite/memory_test.sh: Update expected output.
6475
6476 2010-10-02  Doug Kwan  <dougkwan@google.com>
6477
6478         * symtab.cc (Symbol_table::Symbol_table_hash::operator()): Move
6479         defintion to symtab.h
6480         * symtab.h (Symbol_table::Symbol_table_hash::operator()): Change
6481         declaration to defintion.
6482
6483 2010-10-01  Nick Clifton  <nickc@redhat.com>
6484
6485         * expression.cc (eval): Replace dummy argument with NULL.
6486         (eval_maybe_dot): Check for a NULL result section pointer.
6487         (Symbol_expression::value): Likewise.
6488         (Dot_expression::value): Likewise.
6489         (BINARY_EXPRESSION): Likewise.
6490         (Max_expression::value): Likewise.
6491         (Min_expression::value): Likewise.
6492         (Absolute_expression::value): Likewise.
6493         (Addr_expression::value_from_output_section): Likewise.
6494         (Loaddddr_expression::value_from_output_section): Likewise.
6495         (Segment_start_expression::value): Likewise.
6496         * script-sections.cc
6497         (Sections_elememt_dot_assignment::finalize_symbols): Replace dummy
6498         argument with NULL.
6499         (Sections_elememt_dot_assignment::set_section_addresses):
6500         Likewise.
6501         (Output_data_expression::do_write_to_buffer): Likewise.
6502         (Output_section_definition::finalize_symbols): Likewise.
6503         (Output_section_definition::set_section_addresses): Likewise.
6504
6505 2010-09-30  Doug Kwan  <dougkwan@google.com>
6506
6507         * gold/testsuite/arm_branch_out_of_range.sh: Fix broken tests.
6508
6509 2010-09-28  Sriraman Tallam  <tmsriram@google.com>
6510
6511         * target.h (Target::can_icf_inline_merge_sections): New virtual
6512         function.
6513         * x86_64.cc (Target__x86_64::can_icf_inline_merge_sections): New
6514         virtual function.
6515         * i386.cc (Target_i386::can_icf_inline_merge_sections): New
6516         virtual function.
6517         * icf.cc (get_section_contents): Inline merge sections only when
6518         target allows it.
6519
6520 2010-09-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6521
6522         * configure: Regenerate.
6523
6524 2010-09-17  Ian Lance Taylor  <iant@google.com>
6525
6526         * testsuite/memory_test.sh: Adjust for change of 2010-09-10.
6527         * testsuite/Makefile.am (memory_test.o): New target.
6528         (memory_test): Depend on memory_test.o, gcctestdir/ld, and
6529         memory_test.t.
6530         * testsuite/Makefile.in: Rebuild.
6531
6532 2010-09-17  Doug Kwan  <dougkwan@google.com>
6533
6534         * arm.cc (Target_arm::Relocate::relocate): Ignore symbol type and
6535         defintion if relocation uses GOT entries of the symbol.
6536         * testsuite/icf_safe_test.sh: Fix test.
6537         * testsuite/icf_safe_so_test.sh: Fix test.
6538
6539 2010-09-16  Cary Coutant  <ccoutant@google.com>
6540
6541         * script_sections.cc (class Memory_region): Remove "NULL" from
6542         vector initializations.
6543
6544 2010-09-15  Cary Coutant  <ccoutant@google.com>
6545
6546         * incremental.cc (Output_section_incremental_inputs::write_info_blocks):
6547         Resolve forwarding symbols.
6548
6549 2010-09-15  Doug Kwan  <dougkwan@google.com>
6550
6551         * gold/testsuite/script_test_3.t: Add ARM special sections.
6552         * gold/testsuite/script_test_4.t: Same.
6553         * gold/testsuite/script_test_5.t: Same.
6554         * gold/testsuite/script_test_6.t: Same.
6555         * gold/testsuite/script_test_7.t: Same.
6556         * gold/testsuite/script_test_7.t: Same.
6557         * gold/testsuite/thumb_blx_out_of_range.s: Fix instruction alignment.
6558
6559 2010-09-14  Cary Coutant  <ccoutant@google.com>
6560
6561         * x86_64.cc (Target_x86_64::saw_tls_block_reloc_): Remove member.
6562         (Target_x86_64::Relocate::relocate_tls): Replace check for
6563         saw_tls_block_reloc_ with test for executable section.
6564
6565 2010-09-12  Cary Coutant  <ccoutant@google.com>
6566
6567         * symtab.h (Symbol::needs_dynamic_reloc): Non-PIC calls from
6568         position-independent executables to shared libraries need dynamic
6569         relocations.
6570         (Symbol::may_need_copy_reloc): Do not generate COPY relocs in
6571         position-independent executables.
6572         * testsuite/Makefile.am (two_file_mixed_pie_test): New test.
6573         * testsuite/Makefile.in: Regenerate.
6574
6575 2010-09-10  Nick Clifton  <nickc@redhat.com>
6576
6577         PR gold/11997
6578         * testsuite/memory_test.t: Discard any sections that are not
6579         needed.
6580
6581 2010-09-09  H.J. Lu  <hongjiu.lu@intel.com>
6582
6583         PR gold/11996
6584         * object.cc (Sized_relobj::do_finalize_local_symbols): Remove
6585         "This::" to work around a bug in gcc 4.2.
6586
6587         * testsuite/ifuncmain7.c (foo_ifunc): Add __attribute__ ((used)).
6588
6589 2010-09-09  Rafael Espindola  <espindola@google.com>
6590
6591         * layout.cc (Layout::attach_allocated_section_to_segment): Don't put
6592         sections with different PF_X flags in the same segment.
6593         (Layout::find_first_load_seg): Search all segments to find the first
6594         one.
6595         * options.h (rosegment): New.
6596
6597 2010-09-08  Rafael Espindola  <espindola@google.com>
6598
6599         * layout.cc (Layout::set_segment_offsets): Always advance to a new page.
6600
6601 2010-09-08  Doug Kwan  <dougkwan@google.com>
6602
6603         * arm.cc (Arm_exidx_cantunwind::do_print_to_mapfile): New method.
6604         (Arm_relobj::do_relocate_sections): Add new parameter for output
6605         file to match the parent.
6606         (Target_arm::scan_reloc_section_for_stubs): Use would-be final values
6607         of local symbols instead of input values.  Update code to track
6608         changes in gold::relocate_section.
6609         * object.cc (Sized_relobj::compute_final_local_value): New methods.
6610         (Sized_relobj::compute_final_local_value_internal): New methods.
6611         (Sized_relobj::do_finalize_local_symbols): Move code from loop
6612         body into private version of Sized_relobj::compute_final_local_value.
6613         Call the inline method.
6614         * object.h (Symbol_value::Symbol_value): Define destructor.  Free
6615         merged symbol value if there is one.
6616         (Symbol_value::has_output_value): New method defintiion.
6617         (Sized_relobj::Compute_final_local_value_status): New enum type.
6618         (Sized_relobj::compute_final_local_value): New methods.
6619         (Sized_relobj::compute_final_local_value_internal): New methods.
6620         * Makefile.am (check_SCRIPTS): Add arm_branch_out_of_range.sh
6621         and arm_cortex_a8.sh.
6622         (thumb_bl_out_of_range_local, arm_cortex_a8_b_cond, arm_cortex_a8_bl,
6623         arm_cortex_a8_blx, arm_cortex_a8_local, arm_corte_a8_local_reloc):
6624         New tests.
6625         * Makefile.in: Regenerate.
6626         * testsuite/arm_bl_out_of_range.s: Update test.
6627         * testsuite/thumb_bl_out_of_range.s: Ditto.
6628         * testsuite/thumb_blx_out_of_range.s: Ditto.
6629         * testsuite/arm_branch_out_of_range.sh: New file.
6630         * testsuite/arm_cortex_a8.sh: Ditto.
6631         * testsuite/arm_cortex_a8_b.s: Ditto.
6632         * testsuite/arm_cortex_a8_b_cond.s: Ditto.
6633         * testsuite/arm_cortex_a8_b_local.s: Ditto.
6634         * testsuite/arm_cortex_a8_bl.s: Ditto.
6635         * testsuite/arm_cortex_a8_blx.s: Ditto.
6636         * testsuite/arm_cortex_a8_local.s: Ditto.
6637         * testsuite/arm_cortex_a8_local_reloc.s: Ditto.
6638         * testsuite/thumb_bl_out_of_range_local.s: Ditto.
6639
6640 2010-09-08  Rafael Espindola  <espindola@google.com>
6641
6642         * Makefile.am (memory_test.stdout): Run readelf with -W.
6643         * Makefile.in: Regenerate.
6644         * testsuite/memory_test.sh: Make the regexps accept both 32 and
6645         64 bit output.
6646
6647 2010-09-08  Rafael Espindola  <espindola@google.com>
6648
6649         * script-sections.cc (Script_sections::add_memory_region): Convert
6650         field precision to int.
6651         * script.cc (script_set_section_region, script_set_section_region):
6652         Convert field precision to int.
6653
6654 2010-09-08  Rafael Espindola  <espindola@google.com>
6655
6656         * arm.cc (do_finalize_sections): Create the __exidx_start and
6657         __exdix_end symbols even when the section is missing.
6658
6659 2010-09-08  Nick Clifton  <nickc@redhat.com>
6660
6661         * README: Remove claim that MEMORY is not supported.
6662         * expression.cc (script_exp_function_origin)
6663         (script_exp_function_length): Move from here to ...
6664         * script.cc: ... here.
6665         (script_set_section_region, script_add_memory)
6666         (script_parse_memory_attr, script_include_directive): New
6667         functions.
6668         * script-sections.cc
6669         (class Memory_region): New class.
6670         (class Output_section_definition): Add set_memory_region,
6671         set_section_vma, set_section_lma and get_section_name methods.
6672         (class Script_Sections): Add add_memory_region,
6673         find_memory_region, find_memory_region_origin,
6674         find_memory_region_length and set_memory_region methods.
6675         Have set_section_addresses method walk the list of set memory
6676         regions.
6677         Extend the print methos to display memory regions.
6678         * script-sections.h: Add prototypes for new methods.
6679         Add enum for MEMORY region attributes.
6680         * yyscript.y: Add support for parsing MEMORY regions.
6681         * script-c.h: Add prototypes for new functions.
6682         * testsuite/Makefile.am: Add test of MEMORY region functionality.
6683         * testsuite/Makefile.in: Regenerate.
6684         * testsuite/memory_test.sh: New script.
6685         * testsuite/memory_test.s: New assembler source file.
6686         * testsuite/memory_test.t: New linker script.
6687
6688 2010-08-27  Doug Kwan  <dougkwan@google.com>
6689
6690         * gold/resolve.cc (Symbol_table::should_override): Let a weak
6691         reference override an existing dynamic weak reference.
6692         * testsuite/Makefile.am: Add new test dyn_weak_ref.
6693         * testsuite/Makefile.in: Regenerate.
6694         * testsuite/dyn_weak_ref.sh: New file.
6695         * testsuite/dyn_weak_ref_1.c: Ditto.
6696         * testsuite/dyn_weak_ref_2.c: Ditto.
6697
6698 2010-08-27  Ian Lance Taylor  <iant@google.com>
6699
6700         * incremental.h (class Incremental_input_entry): Add virtual
6701         destructor.
6702
6703 2010-08-27  Ian Lance Taylor  <iant@google.com>
6704
6705         * testsuite/start_lib_test_3.c: Mark t3 as used.
6706
6707 2010-08-27  Nick Clifton  <nickc@redhat.com>
6708
6709         * options.cc (version_script): Fix small typo in previous
6710         whitespace tidyup.
6711
6712 2010-08-25  Nick Clifton  <nickc@redhat.com>
6713
6714         * archive.cc: Formatting fixes: Remove whitespace between
6715         typename and following asterisk.  Remove whitespace between
6716         function name and opening parenthesis.
6717         * archive.h: Likewise.
6718         * arm.cc: Likewise.
6719         * attributes.cc: Likewise.
6720         * attributes.h: Likewise.
6721         * common.cc: Likewise.
6722         * copy-relocs.cc: Likewise.
6723         * dirsearch.h: Likewise.
6724         * dynobj.cc: Likewise.
6725         * ehframe.cc: Likewise.
6726         * ehframe.h: Likewise.
6727         * expression.cc: Likewise.
6728         * fileread.cc: Likewise.
6729         * fileread.h: Likewise.
6730         * gc.h: Likewise.
6731         * gold-threads.cc: Likewise.
6732         * gold.cc: Likewise.
6733         * i386.cc: Likewise.
6734         * icf.h: Likewise.
6735         * incremental-dump.cc: Likewise.
6736         * incremental.cc: Likewise.
6737         * layout.cc: Likewise.
6738         * layout.h: Likewise.
6739         * main.cc: Likewise.
6740         * merge.cc: Likewise.
6741         * merge.h: Likewise.
6742         * object.cc: Likewise.
6743         * object.h: Likewise.
6744         * options.cc: Likewise.
6745         * options.h: Likewise.
6746         * output.cc: Likewise.
6747         * output.h: Likewise.
6748         * plugin.cc: Likewise.
6749         * plugin.h: Likewise.
6750         * powerpc.cc: Likewise.
6751         * reloc.cc: Likewise.
6752         * script-c.h: Likewise.
6753         * script-sections.cc: Likewise.
6754         * script.cc: Likewise.
6755         * stringpool.cc: Likewise.
6756         * symtab.cc: Likewise.
6757         * symtab.h: Likewise.
6758         * target.cc: Likewise.
6759         * timer.cc: Likewise.
6760         * timer.h: Likewise.
6761         * version.cc: Likewise.
6762         * x86_64.cc: Likewise.
6763
6764 2010-08-24  Nick Clifton  <nickc@redhat.com>
6765
6766         PR 11899
6767         * layout.cc (segment_precedes): Sort segments by their physical
6768         addresses, if they have been set.
6769
6770 2010-08-23  Cary Coutant  <ccoutant@google.com>
6771
6772         * archive.cc (Lib_group::add_symbols): Lock object before deleting its
6773         symbols data.
6774         (Lib_group::include_member): Unlock object after deleting its
6775         symbols data.
6776         * testsuite/start_lib_test_3.c: Remove all global symbols to trigger
6777         the bug fixed here.
6778
6779 2010-08-19  Neil Vachharajani  <nvachhar@google.com>
6780             Cary Coutant  <ccoutant@google.com>
6781
6782         * gold/archive.h (Add_lib_group_symbols): Add readsyms_blocker_, adjust
6783         constructor, and set_blocker.
6784         * gold/archive.cc (Add_lib_group_symbols::is_runnable): Also check
6785         readsyms_blocker_.
6786         * gold/readsyms.cc (Read_symbols::do_lib_group): Also pass
6787         this->this_blocker_ to Add_lib_group_symbols::set_blocker.
6788         * testsuite/Makefile.am (start_lib_test): New test case.
6789         * testsuite/Makefile.in: Regenerate.
6790         * testsuite/start_lib_test_main.c: New file.
6791         * testsuite/start_lib_test_1.c: New file.
6792         * testsuite/start_lib_test_2.c: New file.
6793         * testsuite/start_lib_test_3.c: New file.
6794
6795 2010-08-19  Ian Lance Taylor  <iant@google.com>
6796
6797         * Makefile.in: Rebuild with automake 1.11.1.
6798         * aclocal.m4: Likewise.
6799         * testsuite/Makefile.in: Likewise.
6800
6801 2010-08-19  Ian Lance Taylor  <iant@google.com>
6802
6803         PR 10893
6804         * i386.cc (class Output_data_plt_i386): Update declarations.
6805         Define Global_ifunc and Local_ifunc types.  Add global_ifuncs_ and
6806         local_ifuncs_ fields.
6807         (Target_i386::do_plt_section_for_global): New function.
6808         (Target_i386::do_plt_section_for_local): New function.
6809         (Output_data_plt_i386::Output_data_plt_i386): Add symtab
6810         parameter; change all callers.  Initialize global_ifuncs_ and
6811         local_ifuncs_.  If doing a static link define __rel_iplt_start and
6812         __rel_iplt_end.
6813         (Output_data_plt_i386::add_entry): Handle IFUNC symbols.
6814         (Output_data_plt_i386::add_local_ifunc_entry): New function.
6815         (Output_data_plt_i386::do_write): Fix GOT entries for IFUNC
6816         symbols.
6817         (Target_i386::make_plt_section): New function, broken out of
6818         make_plt_entry.  Set sh_info field of .rel.plt to point to .plt.
6819         (Target_i386::make_plt_entry): Call make_plt_section.
6820         (Target_i386::make_local_ifunc_plt_entry): New function.
6821         (Target_i386::Scan::reloc_needs_iplt_for_ifunc): New function.
6822         (Target_i386::Scan::local): Handle IFUNC symbols.  Add
6823         R_386_IRELATIVE to switch.
6824         (Target_i386::Scan::global): Likewise.
6825         (Target_i386::Relocate::relocate): Likewise.
6826         (Target_i386::Relocatable_size_for_reloc): Add R_386_IRELATIVE to
6827         switch.
6828         * x86_64.cc (class Output_data_plt_x86_64): Update declarations.
6829         (Target_x86_64::do_plt_section_for_global): New function.
6830         (Target_x86_64::do_plt_section_for_local): New function.
6831         (Output_data_plt_x86_64::Output_data_plt_x86_64): Add symtab
6832         parameter; change all callers.  If doing a static link define
6833         __rela_iplt_start and __rela_iplt_end.
6834         (Output_data_plt_x86_64::add_entry): Handle IFUNC symbols.
6835         (Output_data_plt_x86_64::add_local_ifunc_entry): New function.
6836         (Target_x86_64::make_plt_section): Set sh_info field of .rel.plt
6837         to point to .plt.
6838         (Target_x86_64::make_local_ifunc_plt_entry): New function.
6839         (Target_x86_64::Scan::check_non_pic): Add R_X86_64_IRELATIVE to
6840         switch.
6841         (Target_x86_64::Scan::reloc_needs_iplt_for_ifunc): New function.
6842         (Target_x86_64::Scan::local): Handle IFUNC symbols.  Add
6843         R_X86_64_IRELATIVE to switch.
6844         (Target_x86_64::Scan::global): Likewise.
6845         (Target_x86_64::Relocate::relocate): Likewise.
6846         (Target_x86_64::Relocatable_size_for_reloc): Add R_X86_64_IRELATIVE to
6847         switch.
6848         * target.h (class Target): Add plt_section_for_global and
6849         plt_section_for_local functions.  Add do_plt_section_for_global
6850         and do_plt_section_for_local virtual functions.
6851         * symtab.h (Symbol::needs_plt_entry): Handle IFUNC symbol.  Add
6852         clarifying comments.
6853         (Symbol::use_plt_offset): Handle IFUNC symbol.
6854         * object.cc (Sized_relobj::Sized_relobj): Initialize
6855         local_plt_offsets_.
6856         (Sized_relobj::local_has_plt_offset): New function.
6857         (Sized_relobj::local_plt_offset): New function.
6858         (Sized_relobj::set_local_plt_offset): New function.
6859         (Sized_relobj::do_count): Handle IFUNC symbol.
6860         * object.h (class Symbol_value): Add is_ifunc_symbol_ field.  Take
6861         a bit away from input_shndx_ field.  Add set_is_func_symbol and
6862         is_ifunc_symbol functions.
6863         (class Sized_relobj): Update declarations.  Remove Tls_got_entry
6864         and Local_tls_got_offsets.  Define Local_plt_offsets.  Add
6865         local_plt_offsets_ field.
6866         (Sized_relobj::clear_local_symbols): Clear local_plt_offsets_.
6867         * output.h (class Output_section_data): Add non-const
6868         output_section function.
6869         (class Output_data_got): Update declarations.
6870         (class Output_data_got::Got_entry): Add use_plt_offset_ field.
6871         Add use_plt_offset parameter to global and local constructors.
6872         Change all callers.  Change local_sym_index_ field to 31 bits.
6873         Change GSYM_CODE and CONSTANT_CODE accordingly.
6874         * output.cc (Output_data_reloc_base::do_adjust_output_section): If
6875         doing a static link don't set sh_link field.
6876         (Output_data_got::Got_entry::write): Use PLT offset if
6877         appropriate.
6878         (Output_data_got::add_global_plt): New function.
6879         (Output_data_got::add_local_plt): New function.
6880         * target-reloc.h (relocate_section): Handle IFUNC symbol.
6881         * defstd.cc (in_section): Remove entries for __rel_iplt_start,
6882         __rel_iplt_end, __rela_iplt_start, and __rela_iplt_end.
6883         * configure.ac: Set IFUNC automake conditional for glibc >= 2.11.
6884         * testsuite/Makefile.am: Add a bunch of IFUNC tests, all within
6885         IFUNC conditional.
6886         * testsuite/ifunc-sel.h: New file.
6887         * testsuite/ifuncmain1.c: New file.
6888         * testsuite/ifuncmain1vis.c: New file.
6889         * testsuite/ifuncmod1.c: New file.
6890         * testsuite/ifuncdep2.c: New file.
6891         * testsuite/ifuncmain2.c: New file.
6892         * testsuite/ifuncmain3.c: New file.
6893         * testsuite/ifuncmod3.c: New file.
6894         * testsuite/ifuncmain4.c: New file.
6895         * testsuite/ifuncmain5.c: New file.
6896         * testsuite/ifuncmod5.c: New file.
6897         * testsuite/ifuncmain6pie.c: New file.
6898         * testsuite/ifuncmod6.c: New file.
6899         * testsuite/ifuncmain7.c: New file.
6900         * configure, testsuite/Makefile.in: Rebuild.
6901
6902 2010-08-18  Ian Lance Taylor  <iant@google.com>
6903
6904         * incremental.cc
6905         (Output_section_incremental_inputs::write_input_files): Add cast
6906         to avoid signed/unsigned comparison warning.
6907         (Output_section_incremental_inputs::write_info_blocks): Likewise.
6908
6909 2010-08-12  Cary Coutant  <ccoutant@google.com>
6910
6911         * common.cc (Sort_commons::operator()): Remove unnecessary code.
6912
6913 2010-08-13  Ian Lance Taylor  <iant@google.com>
6914
6915         * testsuite/incremental_test_1.c: Add prototype to avoid warning.
6916
6917 2010-08-12  Cary Coutant  <ccoutant@google.com>
6918             Doug Kwan  <dougkwan@google.com>
6919
6920         * resolve.cc (Symbol_table::should_override): When a weak dynamic
6921         defintion overrides non-weak undef, remember that the original undef
6922         is not weak.
6923         * symtab.cc (Symbol_table::sized_write_global): For undef without
6924         an original weak binding, set binding to global in output.
6925         * testsuite/Makefile.am: Add new test strong_ref_weak_def.
6926         * testsuite/Makefile.in: Regenerate.
6927         * testsuite/strong_ref_weak_def.sh: New file.
6928         * testsuite/strong_ref_weak_def_1.c: Ditto.
6929         * testsuite/strong_ref_weak_def_2.c: Ditto.
6930
6931 2010-08-12  Cary Coutant  <ccoutant@google.com>
6932
6933         * testsuite/incremental_test.sh: Rewrite.
6934         * testsuite/incremental_test_1.c: Rewrite.
6935         * testsuite/incremental_test_2.c: Rewrite.
6936
6937 2010-08-12  Cary Coutant  <ccoutant@google.com>
6938
6939         * arm.cc (Target_arm::got_size): Add const.
6940         (Target_arm::got_entry_count): New function.
6941         (Target_arm::plt_entry_count): New function.
6942         (Target_arm::first_plt_entry_offset): New function.
6943         (Target_arm::plt_entry_size): New function.
6944         (Output_data_plt_arm::entry_count): New function.
6945         (Output_data_plt_arm::first_plt_entry_offset): New function.
6946         (Output_data_plt_arm::get_plt_entry_size): New function.
6947         * i386.cc (Target_i386::got_size): Add const.
6948         (Target_i386::got_entry_count): New function.
6949         (Target_i386::plt_entry_count): New function.
6950         (Target_i386::first_plt_entry_offset): New function.
6951         (Target_i386::plt_entry_size): New function.
6952         (Output_data_plt_i386::entry_count): New function.
6953         (Output_data_plt_i386::first_plt_entry_offset): New function.
6954         (Output_data_plt_i386::get_plt_entry_size): New function.
6955         * incremental-dump.cc (dump_incremental_inputs): Adjust call to
6956         find_incremental_inputs_sections.  Dump incremental_got_plt section.
6957         * incremental.cc: Include target.h.
6958         (Sized_incremental_binary::do_find_incremental_inputs_sections): Add
6959         parameter.  Adjust all callers.  Find incremental_got_plt section.
6960         (Incremental_inputs::create_data_sections): Create incremental_got_plt
6961         section.
6962         (Output_section_incremental_inputs::set_final_data_size): Calculate
6963         size of incremental_got_plt section.
6964         (Output_section_incremental_inputs::do_write): Write the
6965         incremental_got_plt section.
6966         (Got_plt_view_info): New struct.
6967         (Local_got_offset_visitor): New class.
6968         (Global_got_offset_visitor): New class.
6969         (Global_symbol_visitor_got_plt): New class.
6970         (Output_section_incremental_inputs::write_got_plt): New function.
6971         * incremental.h (Incremental_binary::find_incremental_inputs_sections):
6972         Add parameter.  Adjust all callers.
6973         (Incremental_binary::do_find_incremental_inputs_sections): Likewise.
6974         (Incremental_inputs::got_plt_section): New function.
6975         (Incremental_inputs::got_plt_section_): New data member.
6976         (Incremental_got_plt_reader): New class.
6977         * layout.cc (Layout::create_incremental_info_sections): Add the
6978         incremental_got_plt section.
6979         * object.h (Got_offset_list::get_list): New function.
6980         (Got offset_list::for_all_got_offsets): New function.
6981         (Sized_relobj::local_got_offset_list): New function.
6982         * powerpc.cc (Target_powerpc::got_size): Add const.
6983         (Target_powerpc::got_entry_count): New function.
6984         (Target_powerpc::plt_entry_count): New function.
6985         (Target_powerpc::first_plt_entry_offset): New function.
6986         (Target_powerpc::plt_entry_size): New function.
6987         (Output_data_plt_powerpc::entry_count): New function.
6988         (Output_data_plt_powerpc::first_plt_entry_offset): New function.
6989         (Output_data_plt_powerpc::get_plt_entry_size): New function.
6990         * sparc.cc (Target_sparc::got_size): Add const.
6991         (Target_sparc::got_entry_count): New function.
6992         (Target_sparc::plt_entry_count): New function.
6993         (Target_sparc::first_plt_entry_offset): New function.
6994         (Target_sparc::plt_entry_size): New function.
6995         (Output_data_plt_sparc::entry_count): New function.
6996         (Output_data_plt_sparc::first_plt_entry_offset): New function.
6997         (Output_data_plt_sparc::get_plt_entry_size): New function.
6998         * symtab.h (Symbol::got_offset_list): New function.
6999         (Symbol_table::for_all_symbols): New function.
7000         * target.h (Sized_target::got_entry_count): New function.
7001         (Sized_target::plt_entry_count): New function.
7002         (Sized_target::plt_entry_size): New function.
7003         * x86_64.cc (Target_x86_64::got_size): Add const.
7004         (Target_x86_64::got_entry_count): New function.
7005         (Target_x86_64::plt_entry_count): New function.
7006         (Target_x86_64::first_plt_entry_offset): New function.
7007         (Target_x86_64::plt_entry_size): New function.
7008         (Output_data_plt_x86_64::entry_count): New function.
7009         (Output_data_plt_x86_64::first_plt_entry_offset): New function.
7010         (Output_data_plt_x86_64::get_plt_entry_size): New function.
7011
7012 2010-08-12  Cary Coutant  <ccoutant@google.com>
7013
7014         * archive.cc: Include incremental.h.
7015         (Archive::Archive): Initialize incremental_info_.
7016         (Archive::include_member): Record archive members in incremental info.
7017         (Add_archive_symbols::run): Record begin and end of an archive in
7018         incremental info.
7019         (Lib_group::include_member): Record objects in incremental info.
7020         * archive.h (Incremental_archive_entry): Forward declaration.
7021         (Archive::set_incremental_info): New member function.
7022         (Archive::incremental_info): New member function.
7023         (Archive::Unused_symbol_iterator): New class.
7024         (Archive::unused_symbols_begin): New member function.
7025         (Archive::unused_symbols_end): New member function.
7026         (Archive::incremental_info_): New data member.
7027         * incremental-dump.cc (find_input_containing_global): New function.
7028         (dump_incremental_inputs): Dump new incremental info sections.
7029         * incremental.cc: Include symtab.h.
7030         (Output_section_incremental_inputs): New class.
7031         (Sized_incremental_binary::do_find_incremental_inputs_sections): Support
7032         new incremental info sections.
7033         (Sized_incremental_binary::do_check_inputs): Likewise.
7034         (Incremental_inputs::report_archive): Remove.
7035         (Incremental_inputs::report_archive_begin): New function.
7036         (Incremental_inputs::report_archive_end): New function.
7037         (Incremental_inputs::report_object): New function.
7038         (Incremental_inputs::finalize_inputs): Remove.
7039         (Incremental_inputs::report_input_section): New function.
7040         (Incremental_inputs::report_script): Rewrite.
7041         (Incremental_inputs::finalize): Do nothing but finalize string table.
7042         (Incremental_inputs::create_incremental_inputs_section_data): Remove.
7043         (Incremental_inputs::sized_create_inputs_section_data): Remove.
7044         (Incremental_inputs::create_data_sections): New function.
7045         (Incremental_inputs::relocs_entsize): New function.
7046         (Output_section_incremental_inputs::set_final_data_size): New function.
7047         (Output_section_incremental_inputs::do_write): New function.
7048         (Output_section_incremental_inputs::write_header): New function.
7049         (Output_section_incremental_inputs::write_input_files): New function.
7050         (Output_section_incremental_inputs::write_info_blocks): New function.
7051         (Output_section_incremental_inputs::write_symtab): New function.
7052         * incremental.h (Incremental_script_entry): Forward declaration.
7053         (Incremental_object_entry): Forward declaration.
7054         (Incremental_archive_entry): Forward declaration.
7055         (Incremental_inputs): Forward declaration.
7056         (Incremental_inputs_header_data): Remove.
7057         (Incremental_inputs_header): Remove.
7058         (Incremental_inputs_header_write): Remove.
7059         (Incremental_inputs_entry_data): Remove.
7060         (Incremental_inputs_entry): Remove.
7061         (Incremental_inputs_entry_write): Remove.
7062         (enum Incremental_input_type): Add INCREMENTAL_INPUT_ARCHIVE_MEMBER.
7063         (Incremental_binary::find_incremental_inputs_sections): Add parameters.
7064         (Incremental_binary::do_find_incremental_inputs_sections): Likewise.
7065         (Sized_ncremental_binary::do_find_incremental_inputs_sections):
7066         Likewise.
7067         (Incremental_input_entry): New class.
7068         (Incremental_script_entry): New class.
7069         (Incremental_object_entry): New class.
7070         (Incremental_archive_entry): New class.
7071         (Incremental_inputs::Incremental_inputs): Initialize new data members.
7072         (Incremental_inputs::report_inputs): Remove.
7073         (Incremental_inputs::report_archive): Remove.
7074         (Incremental_inputs::report_archive_begin): New function.
7075         (Incremental_inputs::report_archive_end): New function.
7076         (Incremental_inputs::report_object): Change prototype.
7077         (Incremental_inputs::report_input_section): New function.
7078         (Incremental_inputs::report_script): Change prototype.
7079         (Incremental_inputs::get_reloc_count): New function.
7080         (Incremental_inputs::set_reloc_count): New function.
7081         (Incremental_inputs::create_data_sections): New function.
7082         (Incremental_inputs::create_incremental_inputs_section_data): Remove.
7083         (Incremental_inputs::inputs_section): New function.
7084         (Incremental_inputs::symtab_section): New function.
7085         (Incremental_inputs::relocs_section): New function.
7086         (Incremental_inputs::get_stringpool): Add const.
7087         (Incremental_inputs::command_line): Add const.
7088         (Incremental_inputs::inputs): Remove.
7089         (Incremental_inputs::command_line_key): New function.
7090         (Incremental_inputs::input_file_count): New function.
7091         (Incremental_inputs::input_files): New function.
7092         (Incremental_inputs::relocs_entsize): New function.
7093         (Incremental_inputs::sized_create_inputs_section_data): Remove.
7094         (Incremental_inputs::finalize_inputs): Remove.
7095         (Incremental_inputs::Input_info): Remove.
7096         (Incremental_inputs::lock_): Remove.
7097         (Incremental_inputs::inputs_): Change type.
7098         (Incremental_inputs::inputs_map_): Remove.
7099         (Incremental_inputs::current_object_entry_): New data member.
7100         (Incremental_inputs::inputs_section_): New data member.
7101         (Incremental_inputs::symtab_section_): New data member.
7102         (Incremental_inputs::relocs_section_): New data member.
7103         (Incremental_inputs::reloc_count_): New data member.
7104         (Incremental_inputs_reader): New class.
7105         (Incremental_symtab_reader): New class.
7106         (Incremental_relocs_reader): New class.
7107         * layout.cc (Layout::finalize): Move finalization of incremental info
7108         and creation of incremental info sections to follow finalization of
7109         symbol table.  Set offsets for postprocessing sections.
7110         (Layout::create_incremental_info_sections): Call
7111         Incremental_inputs::create_data_sections.  Add incremental symtab
7112         and relocs sections.  Set sh_entsize and sh_link fields.  Arrange for
7113         sections to layout after input sections.
7114         * layout.h (struct Timespec): Forward declaration.
7115         (Layout::incremental_inputs): Add const.
7116         (Layout::create_incremental_info_sections): Add parameter.
7117         * main.cc (main): Remove call to Incremental_inputs::report_inputs.
7118         * object.cc: Include incremental.h.
7119         (Relobj::finalize_incremental_relocs): New function.
7120         (Sized_relobj::do_layout): Record input sections in incremental info.
7121         * object.h (Object::output_section): New function.
7122         (Object::output_section_offset): Moved from Relobj.
7123         (Object::get_incremental_reloc_base): New function.
7124         (Object::get_incremental_reloc_count): New function.
7125         (Object::do_output_section): New function.
7126         (Object::do_output_section_offset): Moved from Relobj.
7127         (Object::do_get_incremental_reloc_base): New function.
7128         (Object::do_get_incremental_reloc_count): New function.
7129         (Object::Object): Initialize new data members.
7130         (Relobj::output_section): Renamed do_output_section and moved to
7131         protected.
7132         (Relobj::output_section_offset): Moved to Object.
7133         (Relobj::do_get_incremental_reloc_base): New function.
7134         (Relobj::do_get_incremental_reloc_count): New function.
7135         (Relobj::allocate_incremental_reloc_counts): New function.
7136         (Relobj::count_incremental_reloc): New function.
7137         (Relobj::finalize_incremental_relocs): New function.
7138         (Relobj::next_incremental_reloc_index): New function.
7139         (Relobj::reloc_counts_): New data member.
7140         (Relobj::reloc_bases_): New data member.
7141         (Sized_relobj::do_relocate_sections): Add parameter.  Change caller.
7142         (Sized_relobj::relocate_sections): Add parameter.  Change all callers.
7143         (Sized_relobj::incremental_relocs_scan): New function.
7144         (Sized_relobj::incremental_relocs_scan_reltype): New function.
7145         (Sized_relobj::incremental_relocs_write): New function.
7146         (Sized_relobj::incremental_relocs_write_reltype): New function.
7147         * plugin.cc (Plugin_manager::add_input_file): Rewrite test for
7148         incremental link.
7149         * readsyms.cc (Read_symbols::do_read_symbols): Move reporting of
7150         archives and object files elsewhere.
7151         (Add_symbols::run): Report object files here.
7152         (Finish_group::run): Report end of archive at end of group.
7153         * reloc.cc: Include layout.h, incremental.h.
7154         (Sized_relobj::do_read_relocs): Need relocations for incremental link.
7155         (Sized_relobj::do_scan_relocs): Record relocations for incremental link.
7156         (Sized_relobj::incremental_relocs_scan): New function.
7157         (Sized_relobj::incremental_relocs_scan_reltype): New function.
7158         (Sized_relobj::do_relocate_sections): Write incremental relocations.
7159         (Sized_relobj::incremental_relocs_write): New function.
7160         (Sized_relobj::incremental_relocs_write_reltype): New function.
7161         * script.cc (read_input_script): Rewrite test for incremental link.
7162         Change call to Incremental_inputs::report_script.
7163         * symtab.h (Symbol_table::first_global_index): New function.
7164         (Symbol_table::output_count): New function.
7165
7166 2010-08-12  Doug Kwan  <dougkwan@google.com>
7167
7168         * arm.cc (Target_arm::merge_object_attributes): Check command line
7169         options --no-wchar-size-warning and --no-enum-size-warning.
7170         * options.h (General_options): Add ld-compatible options
7171         --no-enum-size-warning and --no-wchar-size-warning.
7172
7173 2010-08-04  Ian Lance Taylor  <iant@google.com>
7174
7175         * x86_64.cc (Target_x86_64::Scan::local): Use
7176         R_X86_64_GNU_VTINHERIT instead of R_386_GNU_VTINHERIT and
7177         R_X86_64_GNU_VTENTRY instead of R_386_GNU_VTENTRY.
7178         (Target_x86_64::Scan::global): Likewise.
7179         (Target_x86_64::Relocate::relocate): Likewise.
7180         (Target_x86_64::Relocatable_size_for_reloc::get_size_for_reloc):
7181         Likewise.
7182
7183 2010-08-03  Cary Coutant  <ccoutant@google.com>
7184
7185         * merge.cc (Output_merge_string::do_add_input_section): Count strings
7186         to reserve space in merged_strings vector. Keep total input size
7187         for stats.
7188         (Output_merge_string::do_print_merge_stats): Print total input size.
7189         * merge.h (Output_merge_string): Add input_size_ field.
7190         * stringpool.cc (Stringpool_template::string_length): Move
7191         implementations out of Stringpool_template class and place in
7192         stringpool.h.
7193         * stringpool.h (string_length): Move out of Stringpool_template.
7194
7195 2010-08-03  Ian Lance Taylor  <iant@google.com>
7196
7197         PR 11712
7198         * layout.cc (relaxation_loop_body): If address of load segment is
7199         set, adjust address to include headers if possible.
7200
7201 2010-08-03  Ian Lance Taylor  <iant@google.com>
7202
7203         * version.cc (version_string): Bump to 1.10.
7204
7205 2010-08-03  Ian Lance Taylor  <iant@google.com>
7206
7207         PR 11805
7208         * layout.h (enum Output_section_order): Define.
7209         (class Layout): Update declarations.
7210         * layout.cc (Layout::get_output_section): Add order parameter.
7211         Remove is_interp, is_dynamic_linker_section, is_last_relro, and
7212         is_first_non_relro parameters.  Change all callers.
7213         (Layout::choose_output_section): Likewise.
7214         (Layout::add_output_section_data): Likewise.
7215         (Layout::make_output_section): Likewise.  Set order.
7216         (Layout::default_section_order): New function.
7217         (Layout::layout_eh_frame): Call add_output_section_to_nonload.
7218         * output.cc (Output_section::Output_section): Initialize order_.
7219         Don't initialize deleted fields.
7220         (Output_segment::Output_segment): Don't initialize deleted
7221         fields.
7222         (Output_segment::add_output_section_to_load): New function
7223         replacing add_output_section.  Change all callers to call this or
7224         add_output_section_to_nonload.
7225         (Output_segment::add_output_section_to_nonload): New function.
7226         (Output_segment::remove_output_section): Rewrite.
7227         (Output_segment::add_initial_output_data): Likewise.
7228         (Output_segment::has_any_data_sections): Likewise.
7229         (Output_segment::is_first_section_relro): Likewise.
7230         (Output_segment::maximum_alignment): Likewise.
7231         (Output_segment::has_dynamic_reloc): New function replacing
7232         dynamic_reloc_count.  Change all callers.
7233         (Output_segment::has_dynamic_reloc_list): New function replacing
7234         dynamic_reloc_count_list.  Change all callers.
7235         (Output_segment::set_section_addresses): Rewrite.
7236         (Output_segment::set_offset): Rewrite.
7237         (Output_segment::find_first_and_last_list): Remove.
7238         (Output_segment::set_tls_offsets): Rewrite.
7239         (Output_segment::first_section_load_address): Likewise.
7240         (Output_segment::output_section_count): Likewise.
7241         (Output_segment::section_with_lowest_load_address): Likewise.
7242         (Output_segment::write_section_headers): Likewise.
7243         (Output_segment::print_sections_to_map): Likewise.
7244         * output.h (class Output_data): Remove dynamic_reloc_count_
7245         field.  Add has_dynamic_reloc_ field.  Make bools into bitfields.
7246         (Output_data::add_dynamic_reloc): Rewrite.
7247         (Output_data::has_dynamic_reloc): New function.
7248         (Output_data::dynamic_reloc_count): Remove.
7249         (class Output_section): Add order_ field.  Remvoe is_relro_local_,
7250         is_last_relro_, is_first_non_relro_, is_interp_,
7251         is_dynamic_linker_section_ fields.  Add order and set_order
7252         functions.  Remove is_relro_local, set_is_relro_local,
7253         is_last_relro, set_is_last_relro, is_first_non_relro,
7254         set_is_first_non_relro functions, is_interp, set_is_interp,
7255         is_dynamic_linker_section, and set_is_dynamic_linker_section
7256         functions.
7257         (class Output_segment): Change Output_data_list from std::list to
7258         std:;vector.  Add output_lists_ field.  Remove output_data_ and
7259         output_bss_ fields.  Update declarations.
7260
7261 2010-08-02  Ian Lance Taylor  <iant@google.com>
7262
7263         * arm.cc (Target_arm::gc_process_relocs): Use typename.
7264         * powerpc.cc (Target_powerpc::gc_process_relocs): Likewise.
7265         * sparc.cc (Target_sparc::gc_process_relocs): Likewise.
7266
7267 2010-08-02  Ian Lance Taylor  <iant@google.com>
7268
7269         PR 11855
7270         * script.cc (Script_options::Script_options): Initialize
7271         symbol_definitions_ and symbol_references_.
7272         (Script_options::add_symbol_assignment): Update
7273         symbol_definitions_ and symbol_references_.
7274         (Script_options::add_symbol_reference): New function.
7275         (script_symbol): New function.
7276         * script.h (class Script_options): Add symbol_definitions_ and
7277         symbol_references_ fields.
7278         (Script_options::referenced_const_iterator): New type.
7279         (Script_options::referenced_begin): New function.
7280         (Script_options::referenced_end): New function.
7281         (Script_options::is_referenced): New function.
7282         (Script_options::any_unreferenced): New function.
7283         * script-c.h (script_symbol): Declare.
7284         * yyscript.y (exp): Call script_symbol.
7285         * symtab.cc: Include "script.h".
7286         (Symbol_table::gc_mark_undef_symbols): Add layout parameter.
7287         Change all callers.  Check symbols referenced by scripts.
7288         (Symbol_table::add_undefined_symbols_from_command_line): Add
7289         layout parameter.  Change all callers.
7290         (Symbol_table::do_add_undefined_symbols_from_command_line):
7291         Likewise.  Break out loop body.  Check symbols referenced by
7292         scripts.
7293         (Symbol_table::add_undefined_symbol_from_command_line): New
7294         function broken out of
7295         do_add_undefined_symbols_from_command_line.
7296         * symtab.h (class Symbol_table): Update declarations.
7297         * archive.cc: Include "layout.h".
7298         (Archive::should_include_member): Add layout parameter.  Change
7299         all callers.  Check for symbol mentioned in expression.
7300         * archive.h (class Archive): Update declaration.
7301         * object.cc (Sized_relobj::do_should_include_member): Add layout
7302         parameter.
7303         * object.h (Object::should_include_member): Add layout parameter.
7304         Change all callers.
7305         (Object::do_should_include_member): Add layout parameter.
7306         (class Sized_relobj): Update declaration.
7307         * dynobj.cc (Sized_dynobj::do_should_include_member): Add layout
7308         parameter.
7309         * dynobj.h (class Sized_dynobj): Update declaration.
7310         * plugin.cc (Sized_pluginobj::do_should_include_member): Add
7311         layout parameter.
7312         * plugin.h (class Sized_pluginobj): Update declaration.
7313
7314 2010-08-02  Ian Lance Taylor  <iant@google.com>
7315
7316         PR 11866
7317         * output.cc (Output_segment::set_offset): Search for the first and
7318         last sections rather than assuming that the list is in order.
7319         (Output_segment::find_first_and_last_list): New function.
7320         * output.h (class Output_segment): Update declarations.
7321         * testsuite/Makefile.am (check_PROGRAMS): Add relro_strip_test.
7322         (relro_strip_test_SOURCES): New variable.
7323         (relro_strip_test_DEPENDENCIES): New variable.
7324         (relro_strip_test_LDFLAGS): New variable.
7325         (relro_strip_test_LDADD): New variable.
7326         (relro_strip_test.so): New target.
7327
7328 2010-08-02  Ian Lance Taylor  <iant@google.com>
7329
7330         * i386.cc (class Target_i386): Add got_tlsdesc_ field.
7331         (Target_i386::Target_i386):: Initialize got_tlsdesc_.
7332         (Target_i386::got_tlsdesc_section): New function.
7333         (Target_i386::got_section): Create space for GOT entries for
7334         TLSDESC relocations.
7335         (Target_i386::Scan::local): Use TLSDESC GOT for unoptimized
7336         R_386_TLS_GOTDESC.
7337         (Target_i386::Scan::global): Likewise.
7338         (Target_i386::Relocate::relocate_tls): Adjust GOT offset when
7339         using TLSDESC GOT.
7340         * x86_64.cc (class Target_x86_64): Add got_tlsdesc_ field.
7341         (Target_x86_64::Target_x86_64):: Initialize got_tlsdesc_.
7342         (Target_x86_64::got_tlsdesc_section): New function.
7343         (Target_x86_64::got_section): Create space for GOT entries for
7344         TLSDESC relocations.
7345         (Target_x86_64::Scan::local): Use TLSDESC GOT for unoptimized
7346         R_386_TLS_GOTDESC.
7347         (Target_x86_64::Scan::global): Likewise.
7348         (Target_x86_64::Relocate::relocate_tls): Adjust GOT offset when
7349         using TLSDESC GOT.
7350
7351 2010-08-02  Ian Lance Taylor  <iant@google.com>
7352
7353         * testsuite/final_layout.sh: Use dc to convert from hex to
7354         decimal.
7355
7356 2010-07-29  Sriraman Tallam  <tmsriram@google.com>
7357
7358         * arm.cc (Target_arm<big_endian>::gc_process_relocs): Add template
7359         paramter to the call to gold::gc_process_relocs.
7360         * i386.cc (Target_i386<big_endian>::gc_process_relocs): Add template
7361         paramter to the call to gold::gc_process_relocs.
7362         * x86_64.cc (Target_x86_64<big_endian>::gc_process_relocs): Add template
7363         parameter to the call to gold::gc_process_relocs.
7364         * powerpc.cc (Target_powerpc<big_endian>::gc_process_relocs): Add
7365         template parameter to the call to gold::gc_process_relocs.
7366         * sparc.cc (Target_sparc<big_endian>::gc_process_relocs): Add template
7367         paramter to the call to gold::gc_process_relocs.
7368         * gc.h (get_embedded_addend_size): New function.
7369         (gc_process_relocs): Save the size of the reloc for use by ICF.
7370         * icf.cc (get_section_contents): Get the addend from the text section
7371         for SHT_REL relocation sections.
7372         * icf.h (Icf::Reloc_addend_size_info): New typedef.
7373         (Icf::Reloc_info): Add new member reloc_addend_size_info.
7374         * int_encoding.h (read_from_pointer): New overloaded function.
7375         * testsuite/Makefile.am (icf_sht_rel_addend_test): New test.
7376         * testsuite/icf_sht_rel_addend_test.sh: New file.
7377         * testsuite/icf_sht_rel_addend_test_1.cc: New file.
7378         * testsuite/icf_sht_rel_addend_test_2.cc: New file.
7379
7380 2010-07-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7381
7382         * configure.ac (AM_INIT_AUTOMAKE): Use parallel-tests option.
7383         * Makefile.in: Regenerate.
7384         * testsuite/Makefile.in: Regenerate.
7385
7386 2010-07-27  Jeffrey Yasskin  <jyasskin@google.com>
7387
7388         * testsuite/debug_msg.sh: Test mixed weak/strong symbol behavior.
7389         * gold/testsuite/debug_msg.cc: Likewise.
7390         * gold/testsuite/odr_violation1.cc
7391         * gold/testsuite/odr_violation2.cc
7392
7393 2010-07-21  Cary Coutant  <ccoutant@google.com>
7394
7395         * merge.h (Output_merge_string::Merged_string): Remove object, shndx,
7396         string, and length fields.
7397         (Output_merge_string::Merged_strings_list): New type.
7398         (Output_merge_string::Merged_strings_lists): New typedef.
7399         (Output_merge_string): Replace merged_strings_ with
7400         merged_strings_lists_.
7401         * merge.cc (Output_merge_string::do_add_input_section): Allocate new
7402         Merged_strings_list per input object and section.  Don't store pointer
7403         to the string.  Don't store length with each merged string entry.
7404         (Output_merge_string::finalize_merged_data): Loop over list of merged
7405         strings lists.  Recompute length of each merged string.
7406
7407 2010-07-15  Cary Coutant  <ccoutant@google.com>
7408
7409         * plugin.cc (Plugin_finish::run): Don't call cleanup handlers from
7410         here.
7411
7412 2010-07-14  Ian Lance Taylor  <iant@google.com>
7413
7414         * descriptors.cc (Descriptors::open): Report correct name in error
7415         message.
7416
7417 2010-07-13  Doug Kwan  <dougkwan@google.com>
7418
7419         * arm.cc (Arm_input_section::Arm_input_section): For a
7420         SHT_ARM_EXIDX section, always keeps the input sections.
7421         (Arm_input_section::set_exidx_section_link): New method.
7422         (Arm_exidx_input_section::Arm_exidx_input_section): Initialize
7423         has_errors_ to false.
7424         (Arm_exidx_input_section::has_errors,
7425         Arm_exidx_input_section::set_has_errors): New methods.
7426         (Arm_exidx_input_section::has_errors_): New data member.
7427         (Arm_relobj::get_exidx_shndx_list): New method.
7428         (Arm_output_section::append_text_sections_to_list): Do not skip
7429         section without SHF_EXECINSTR.
7430         (Arm_output_section::fix_exidx_coverage): Skip input sections with
7431         errors.
7432         (Arm_relobj::make_exidx_input_section): Add new parameter for text
7433         section header.  Make error messages more verbose.  Check for
7434         a non-executable section linked to an EXIDX section.
7435         (Arm_relobj::do_read_symbols): Remove error checking, which has been
7436         moved to Arm_relobj::make_exidx_input_section.  Add an assertion to
7437         check that there is no deferred EXIDX section if we exit early.
7438         Instead of not making an EXIDX section in case of an error, make one
7439         and set the has_errors flag of it.
7440         (Target_arm::do_finalize_sections): Fix up links of EXIDX sections
7441         in a relocatable link.
7442         (Target_arm::do_relax): Look for the EXIDX output section instead of
7443         assuming that it is called .ARM.exidx.
7444         (Target_arm::fix_exidx_coverage): Add a new parameter for input
7445         section list.  Do not check for SHF_EXECINSTR section flags but
7446         skip any input section with errors.
7447         * output.cc (Output_section::Output_section): Initialize
7448         always_keeps_input_sections_ to false.
7449         (Output_section::add_input_section): Check for
7450         always_keeps_input_sections_.
7451         *  output.h (Output_section::always_keeps_input_sections,
7452         Output_section::set_always_keeps_input_sections): New methods.
7453         (Output_section::always_keeps_input_sections): New data member.
7454
7455 2010-07-13  Rafael Espindola  <espindola@google.com>
7456
7457         * fileread.cc (try_extra_search_path, find_file): Move to Input_file.
7458         * fileread.h (Input_file): Add try_extra_search_path and find_file.
7459
7460 2010-07-13  Philip Herron  <herron.philip@googlemail.com>
7461             Ian Lance Taylor  <iant@google.com>
7462
7463         * output.h (Output_section_lookup_maps::add_merge_section):
7464         Correct check of whether value was inserted.
7465         (Output_section_lookup_maps::add_merge_input_section): Likewise.
7466         (Output_section_lookup_maps::add_relaxed_input_section):
7467         Likewise.
7468         * arm.cc (Target_arm::got_section): Remove used local os.
7469         * i386.cc (Target_i386::got_section): Likewise.
7470         * x86_64.cc (Target_x86_64::got_section): Likewise.
7471         * sparc.cc (Target_sparc::got_section): Likewise.
7472         (Target_sparc::relocate): Remove unused local have_got_offset.
7473         * powerpc.cc (Target_powerpc::relocate): Likewise.
7474
7475 2010-07-13  Ian Lance Taylor  <iant@google.com>
7476
7477         * compressed_output.cc (zlib_decompress): Fix signature in
7478         !HAVE_ZLIB_H case.
7479
7480         * archive.cc (Archive::include_member): Unlock an external member
7481         of a thin archive.  Don't bother to delete an object we know is
7482         NULL.
7483
7484 2010-07-12  Cary Coutant  <ccoutant@google.com>
7485
7486         * compressed_output.cc (zlib_decompress): New function.
7487         (get_uncompressed_size): New function.
7488         (decompress_input_section): New function.
7489         * compressed_output.h (get_uncompressed_size): New function.
7490         (decompress_input_section): New function.
7491         * dwarf_reader.cc (Sized_dwarf_line_info::Sized_dwarf_line_info)
7492         Handle compressed debug sections.
7493         * layout.cc (is_compressed_debug_section): New function.
7494         (Layout::output_section_name): Map compressed section names to
7495         canonical names.
7496         * layout.h (is_compressed_debug_section): New function.
7497         (is_debug_info_section): Recognize compressed debug sections.
7498         * merge.cc: Include compressed_output.h.
7499         (Output_merge_data::do_add_input_section): Handle compressed
7500         debug sections.
7501         (Output_merge_string::do_add_input_section): Handle compressed
7502         debug sections.
7503         * object.cc: Include compressed_output.h.
7504         (Sized_relobj::Sized_relobj): Initialize new data members.
7505         (build_compressed_section_map): New function.
7506         (Sized_relobj::do_read_symbols): Handle compressed debug sections.
7507         * object.h (Object::section_is_compressed): New method.
7508         (Object::do_section_is_compressed): New method.
7509         (Sized_relobj::Compressed_section_map): New type.
7510         (Sized_relobj::do_section_is_compressed): New method.
7511         (Sized_relobj::compressed_sections_): New data member.
7512         * output.cc (Output_section::add_input_section): Handle compressed
7513         debug sections.
7514         * reloc.cc: Include compressed_output.h.
7515         (Sized_relobj::write_sections): Handle compressed debug sections.
7516
7517 2010-07-08  Cary Coutant  <ccoutant@google.com>
7518
7519         * resolve.cc (Symbol_table::resolve): Remember whether undef was
7520         weak when resolving to a dynamic def.
7521         (Symbol_table::should_override): Add adjust_dyndef flag; set it
7522         for weak undef/dynamic def cases. Adjust callers.
7523         * symtab.cc (Symbol::init_fields): Initialize undef_binding_set_ and
7524         undef_binding_weak_.
7525         (Symbol_table::sized_write_globals): Adjust symbol binding.
7526         (Symbol_table::sized_write_symbol): Add binding parameter.
7527         * symtab.h (Symbol::set_undef_binding): New method.
7528         (Symbol::is_undef_binding_weak): New method.
7529         (Symbol::undef_binding_set_, Symbol::undef_binding_weak_): New members.
7530         (Symbol_table::should_override): Add new parameter.
7531         (Symbol_table::sized_write_symbol): Add new parameter.
7532
7533         * testsuite/weak_undef_file1.cc: Add new test case.
7534         * testsuite/weak_undef_file2.cc: Fix header comment.
7535         * testsuite/weak_undef_test.cc: Add new test case.
7536
7537 2010-06-29  Doug Kwan  <dougkwan@google.com>
7538
7539         * arm-reloc-property.cc (Arm_reloc_property::Arm_reloc_property):
7540         Initialize USE_SYMBOL_.
7541         * arm-reloc-property.h (Arm_reloc_property::uses_symbol): New method
7542         definition.
7543         (Arm_reloc_property::uses_symbol_): New data member declaration.
7544         * arm.cc (Target_arm::Relocate::relocate): Exit early if relocation
7545         uses symbol value and symbol is undefined but not weakly undefined.
7546
7547 2010-06-28  Rafael Espindola  <espindola@google.com>
7548
7549         * plugin.cc (Plugin::load): Use dlerror.
7550
7551 2010-06-26  Jeffrey Yaskin  <jyasskin@google.com>
7552
7553         * symtab.cc (detect_odr_violations): When reporting an ODR
7554         violation, report an object where the symbol is defined.
7555
7556 2010-06-25  Doug Kwan  <dougkwan@google.com>
7557
7558         * arm.cc (Target_arm::can_check_for_functions_pointers): Return true.
7559         (Target_arm::section_may_have_icf_unsafe_pointers): New method
7560         definition.
7561         (Target_arm::Scan::local_reloc_may_be_function_pointer,
7562         Target_arm::Scan::global_reloc_may_be_function_pointer): Implement
7563         target hook to detect function points.
7564         (Target_arm::Scan::possible_function_pointer_reloc): New method.
7565         * icf.h (Icf::check_section_for_function_pointers): Change type of
7566         parameter SECTION_NAME to const reference to std::string.  Use
7567         target hook to determine if section may have unsafe pointers.
7568         * target.h (Target::section_may_have_icf_unsafe_pointers): New
7569         method definition.
7570
7571 2010-06-21  Rafael Espindola  <espindola@google.com>
7572
7573         * fileread.cc (Input_file::find_fie): New
7574         (Input_file::open): Use Input_file::find_fie.
7575         * fileread.h (Input_file::find_fie): New
7576         * plugin.cc (set_extra_library_path): New.
7577         (Plugin::load): Add set_extra_library_path to the transfer vector.
7578         (Plugin_manager::set_extra_library_path): New.
7579         (Plugin_manager::add_input_file): Use the extra search path if set.
7580         (set_extra_library_path(): New.
7581         * plugin.h (Plugin_manager): Add set_extra_library_path and
7582         extra_search_path_.
7583
7584 2010-06-19  Cary Coutant  <ccoutant@google.com>
7585
7586         * layout.cc (gdb_sections): Add .debug_types.
7587         (lines_only_debug_sections): Likewise.
7588
7589 2010-06-18  Rafael Espindola  <espindola@google.com>
7590
7591         * plugin.cc (add_input_file,add_input_library)
7592         (Plugin_manager::add_input_file): Make filename arguments const.
7593         * plugin.h (Plugin_manager::add_input_file): Make filename arguments
7594         const.
7595
7596 2010-06-16  Doug Kwan  <dougkwan@google.com>
7597
7598         * arm.cc (Target_arm::do_finalize_sections): Do not emit an
7599         .ARM.attributes section if we have not merged any input
7600         attributes sections.
7601
7602 2010-06-15  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
7603
7604         * arm.cc: Allow combining objects with no EABI version
7605         information.
7606
7607 2010-06-15  Rafael Espindola  <espindola@google.com>
7608
7609         * plugin.cc (Plugin_hook::run): Set in_real_elf for the start symbol.
7610
7611 2010-06-15  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
7612
7613         * fileread.cc: Only #include <sys/uio.h> if HAVE_READV.
7614         (struct iovec): Correct !HAVE_READV definition.
7615
7616 2010-06-10  Cary Coutant  <ccoutant@google.com>
7617
7618         * object.cc (Sized_relobj::do_layout): Defer layout for reloc sections.
7619         (Sized_relobj::do_layout_deferred_sections): Do layout for deferred
7620         reloc sections.
7621         * object.h (Sized_relobj::deferred_layout_relocs_): New data member.
7622
7623         PR 11683
7624         * symtab.h (Symbol::is_placeholder): New member function.
7625         * target-reloc.h (relocate_section): Check for placeholder symbols.
7626
7627         * testsuite/Makefile.am (plugin_test_8): New test.
7628         (plugin_test_9): New test.
7629         * testsuite/Makefile.in: Regenerate.
7630
7631 2010-06-09  Nick Clifton  <nickc@redhat.com>
7632
7633         * yyscript.y (input_list_element): Allow strings prefixed with
7634         the '-' character.  Treat these as libraries.
7635         * script.cc (script_add_library): New function.  Adds a library
7636         specified by "-l<name>" found in an input script.
7637         * script-c.h: Add prototype for script_add_library.
7638
7639 2010-06-07  Doug Kwan  <dougkwan@google.com>
7640
7641         * arm.cc (Target_arm::do_relax): Reserve more space for stubs.
7642         Restrict stub-group size to be within long conditional branch
7643         range when working around cortex-A8 erratum.
7644
7645 2010-06-07  Damien Diederen  <dd@crosstwine.com>
7646
7647         * gold-threads.cc (Lock_impl_threads::Lock_impl_threads): Correct
7648         #ifdef typo.
7649
7650 2010-06-03  Sriraman Tallam  <tmsriram@google.com>
7651
7652         PR gold/11658
7653         * output.cc
7654         (Output_section::Input_section_sort_entry::compare_section_ordering):
7655         Change to return non-zero correctly.
7656         (Output_section::Input_section_sort_section_order_index_compare
7657         ::operator()): Change to fix ambiguity in comparisons.
7658
7659 2010-06-01  Sriraman Tallam  <tmsriram@google.com>
7660
7661         * gold.h (is_wildcard_string): New function.
7662         * layout.cc (Layout::layout): Pass this pointer to add_input_section.
7663         (Layout::layout_eh_frame): Ditto.
7664         (Layout::find_section_order_index): New method.
7665         (Layout::read_layout_from_file): New method.
7666         * layout.h (Layout::find_section_order_index): New method.
7667         (Layout::read_layout_from_file): New method.
7668         (Layout::input_section_position_): New private member.
7669         (Layout::input_section_glob_): New private member.
7670         * main.cc (main): Call read_layout_from_file here.
7671         * options.h (--section-ordering-file): New option.
7672         * output.cc (Output_section::input_section_order_specified_): New
7673         member.
7674         (Output_section::Output_section): Initialize new member.
7675         (Output_section::add_input_section): Add new parameter.
7676         Keep input sections when --section-ordering-file is used.
7677         (Output_section::set_final_data_size): Sort input sections when
7678         section ordering file is specified.
7679         (Output_section::Input_section_sort_entry): Add new parameter.
7680         Check sorting type.
7681         (Output_section::Input_section_sort_entry::compare_section_ordering):
7682         New method.
7683         (Output_section::Input_section_sort_compare::operator()): Change to
7684         consider section_order_index.
7685         (Output_section::Input_section_sort_init_fini_compare::operator()):
7686         Change to consider section_order_index.
7687         (Output_section::Input_section_sort_section_order_index_compare
7688         ::operator()): New method.
7689         (Output_section::sort_attached_input_sections): Change to sort
7690         according to section order when specified.
7691         (Output_section::add_input_section<32, true>): Add new parameter.
7692         (Output_section::add_input_section<64, true>): Add new parameter.
7693         (Output_section::add_input_section<32, false>): Add new parameter.
7694         (Output_section::add_input_section<64, false>): Add new parameter.
7695         * output.h (Output_section::add_input_section): Add new parameter.
7696         (Output_section::input_section_order_specified): New
7697         method.
7698         (Output_section::set_input_section_order_specified): New method.
7699         (Input_section::Input_section): Initialize section_order_index_.
7700         (Input_section::section_order_index): New method.
7701         (Input_section::set_section_order_index): New method.
7702         (Input_section::section_order_index_): New member.
7703         (Input_section::Input_section_sort_section_order_index_compare): New
7704         struct.
7705         (Output_section::input_section_order_specified_): New member.
7706         * script-sections.cc (is_wildcard_string): Delete and move modified
7707         method to gold.h.
7708         (Output_section_element_input::Output_section_element_input): Modify
7709         call to is_wildcard_string.
7710         (Output_section_element_input::Input_section_pattern
7711         ::Input_section_pattern): Ditto.
7712         (Output_section_element_input::Output_section_element_input): Ditto.
7713         * testsuite/Makefile.am (final_layout): New test case.
7714         * testsuite/Makefile.in: Regenerate.
7715         * testsuite/final_layout.cc: New file.
7716         * testsuite/final_layout.sh: New file.
7717
7718 2010-06-01  Rafael Espindola  <espindola@google.com>
7719
7720         * plugin.cc (Plugin::load): Pass the output name to the plugin.
7721
7722 2010-06-01  Rafael Espindola  <espindola@google.com>
7723
7724         * plugin.cc (Sized_pluginobj::::do_add_symbols): Correctly set the
7725         visibility of symbols.
7726
7727 2010-05-27  Doug Kwan  <dougkwan@google.com>
7728
7729         * object.cc (Sized_relobj::do_finalize_local_symbols): Use offset
7730         from start of output section instead of address for a local symbol
7731         in a merged or relaxed section when doing a relocatable link.
7732
7733 2010-05-26  Rafael Espindola  <espindola@google.com>
7734
7735         PR 11604
7736         * gold/object.cc(Sized_relobj::do_layout_deferred_sections): Avoid
7737         adding sections the garbage collector removed.
7738         * gold/testsuite/Makefile.am: Add test.
7739         * gold/testsuite/Makefile.in: Regenerate.
7740         * gold/testsuite/plugin_test_7.sh: New.
7741         * gold/testsuite/plugin_test_7_1.c: New.
7742         * gold/testsuite/plugin_test_7_2.c: New.
7743
7744 2010-05-26  Rafael Espindola  <espindola@google.com>
7745
7746         * script-sections.cc (Output_section_definition::set_section_addresses):
7747         Check for --section-start.
7748
7749 2010-05-26  Doug Kwan  <dougkwan@google.com>
7750
7751         * arm.cc (Arm_scan_relocatable_relocs): New class.
7752         (Target_arm::relocate_special_relocatable): New method.
7753         (Arm_relocate_functions::arm_branch_common): Handle relocatable link.
7754         (Arm_relocate_functions::thumb_branch_common): Same.
7755         (Target_arm::scan_relocatable_relocs): Use Arm_scan_relocatable_relocs
7756         instead of Default_scan_relocatable_relocs.
7757         * target-reloc.h (relocate_for_relocatable): Let target handle
7758         relocation strategy Relocatable_relocs::RELOC_SPECIAL.
7759         * target.h (Sized_target::relocate_special_relocatable): New method.
7760
7761 2010-05-25  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
7762
7763         * timer.cc: Only #include <sys/times.h> if HAVE_TIMES is defined.
7764
7765 2010-05-23  Doug Kwan  <dougkwan@google.com>
7766
7767         * arm.cc (Arm_input_section::do_output_offset): Use convert_types
7768         instead of a cast.
7769         (Target_arm::apply_cortex_a8_workaround): Rewrite a conditional branch
7770         with a direct branch, not a conditional branch, to a stub.
7771         * merge.cc (Output_merge_base::record_input_section): New method
7772         defintion.
7773         (Output_merge_data::do_add_input_section): Record input section if
7774         keeps-input-sections flag is set.
7775         (Output_merge_string::do_add_input_section): Ditto.
7776         * merge.h (Output_merge_base::Output_merge_base): Initialize new data
7777         members KEEPS_INPUT_SECTIONS_, FIRST_RELOBJ_, FIRST_SHNDX_ and
7778         INPUT_SECTIONS_.
7779         (Output_merge_base::keeps_input_sections,
7780         Output_merge_base::set_keeps_input_sections,
7781         Output_merge_base::first_relobj, Output_merge_base::first_shndx): New
7782         method definitions.
7783         (Output_merge_base::Input_sections): New type declaration.
7784         (Output_merge_base::input_sections_begin,
7785         Output_merge_base::input_sections_end,
7786         Output_merge_base::do_set_keeps_input_sections): New method definitions.
7787         (Output_merge_base::bool keeps_input_sections_,
7788         Output_merge_base::first_relobj_, Output_merge_base::first_shndx_,
7789         Output_merge_base::input_sections_): New data members.
7790         (Output_merge_data::do_set_keeps_input_sections): New method
7791         defintion.
7792         (Output_merge_string::do_set_keeps_input_sections): Ditto.
7793         * output.cc (Output_section::Input_section::relobj): Move method
7794         defintion from class declaration to here and handle merge sections.
7795         (Output_section::Input_section::shndx): Ditto.
7796         (Output_section::Output_section): Remove initializations of removed
7797         data members and initialize new data member LOOKUP_MAPS_.
7798         (Output_section::add_input_section): Set keeps-input-sections flag
7799         for a newly created merge output section as appropriate.  Adjust code
7800         to use Output_section_lookup_maps class.
7801         (Output_section::add_relaxed_input_section): Adjst code for lookup
7802         maps code refactoring.
7803         (Output_section::add_merge_input_section): Add a new parameter
7804         KEEPS_INPUT_SECTION.  Adjust code to use Output_section_lookup_maps
7805         class.  If adding input section to a newly created merge output
7806         section fails, remove the new merge section.
7807         (Output_section::convert_input_sections_in_list_to_relaxed_input_sections):
7808         Adjust code for use of the Output_section_lookup_maps class.
7809         (Output_section::find_merge_section): Ditto.
7810         (Output_section::build_lookup_maps): New method defintion.
7811         (Output_section::find_relaxed_input_section): Adjust code to use
7812         Output_section_lookup_maps class.
7813         (Output_section::get_input_sections): Export merge sections.  Adjust
7814         code to use Output_section_lookup_maps class.
7815         (Output_section:::add_script_input_section): Adjust code to use
7816         Output_section_lookup_maps class.  Update lookup maps for merge
7817         sections also.
7818         (Output_section::discard_states): Use Output_section_lookup_maps.
7819         (Output_section::restore_states): Same.
7820         * output.h (Merge_section_properties): Move class defintion out of
7821         Output_section.
7822         (Output_section_lookup_maps): New class.
7823         (Output_section::Input_section::is_merge_section): New method
7824         defintion.
7825         (Output_section::Input_section::relobj): Move defintion out of class
7826         defintion.  Declare method only.
7827         (Output_section::Input_section::shndx): Ditto.
7828         (Output_section::Input_section::output_merge_base): New method defintion.
7829         (Output_section::Input_section::u2_.pomb): New union field.
7830         (Output_section::Merge_section_by_properties_map,
7831         Output_section::Output_section_data_by_input_section_map,
7832         Output_section::Ouptut_relaxed_input_section_by_input_section_map):
7833         Remove types.
7834         (Output_section::add_merge_input_section): Add new parameter
7835         KEEPS_INPUT_SECTIONS.
7836         (Output_section::build_lookup_maps): New method declaration.
7837         (Output_section::merge_section_map_,
7838         Output_section::merge_section_by_properties_map_,
7839         Output_section::relaxed_input_section_map_,
7840         Output_section::is_relaxed_input_section_map_valid_): Remove data
7841         members.
7842         (Output_section::lookup_maps_): New data member.
7843
7844 2010-05-21  Doug Kwan  <dougkwan@google.com>
7845
7846         PR gold/11619
7847         * arm.cc (Arm_input_section::do_output_offset): Add a cast to
7848         avoid a compilation error.
7849
7850 2010-05-19  Rafael Espindola  <espindola@google.com>
7851
7852         * script-sections.cc (Output_section_definition::allocate_to_segment):
7853         Update the phdrs_list even when the output section is NULL.
7854         * testsuite/Makefile.am: Add test.
7855         * testsuite/Makefile.in: Regenerate.
7856         * testsuite/script_test_9.cc: New.
7857         * testsuite/script_test_9.sh: New.
7858         * testsuite/script_test_9.t: New.
7859
7860 2010-05-19  Doug Kwan  <dougkwan@google.com>
7861
7862         * arm.cc (Arm_input_section::original_size): New method.
7863         (Arm_input_section::do_addralign): Add a cast.
7864         (Arm_input_section::do_output_offset): Remove static cast.
7865         (Arm_input_section::original_addralign,
7866          Arm_input_section::original_size_): Change type to uint32_t.
7867         (Arm_input_section::init): Add safe casts for section alignment
7868         and size.
7869         (Arm_input_section::set_final_data_size): Do not set address and
7870         offset of stub table.
7871         (Arm_output_section::fix_exidx_coverage): Change use of of
7872         Output_section::Simple_input_section to that of
7873         Output_section::Input_section.
7874         (Target_arm::do_relax): Set addresses and file offsets of Stub_tables
7875         except for the first pass.
7876         * output.cc (Output_section::get_input_sections): Change type of
7877         input_sections to std::list<Input_section>.
7878         (Output_section::add_script_input_section): Rename from
7879         Output_section::add_simple_input_section.  Change type of SIS
7880         parameter from Simple_input_section to Input_section.
7881         * output.h (Output_section::Simple_input_section): Remove class.
7882         (Output_section::Input_section): Change class visibility to public.
7883         (Output_section::Input_section::addralign): Use stored alignments
7884         for special input sections if set.
7885         (Output_section::Input_section::set_addralign): New method.
7886         (Output_section::get_input_sections): Change parameter type from
7887         list of Simple_input_section to list of Input_section.
7888         (Output_section::add_script_input_section): Rename from
7889         Output_section::add_simple_input_section. Change first parameter's
7890         type from Simple_input_section to Input_section and remove the
7891         second and third parameters.
7892         * script-sections.cc (Input_section::Input_section_list): Change
7893         type to list of Output_section::Input_section/
7894         (Input_section_info::Input_section_info): Change parameter type of
7895         INPUT_SECTION to Output_section::Input_section.
7896         (Input_section_info::input_section): Change return type.
7897         (Input_section_info::input_section_): Change type to
7898         Output_section::Input_section.
7899         (Output_section_element_input::set_section_addresses): Adjust code
7900         to use Output_section::Input_section instead of
7901         Output_section::Simple_input_section.  Adjust code for renaming
7902         of Output_section::add_simple_input_section.
7903         (Orphan_output_section::set_section_addresses): Ditto.
7904
7905 2010-05-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7906
7907         * gold.h (Unordered_multimap, Unordered_map): Fix defines for
7908         when neither HAVE_TR1_UNORDERED_MAP nor HAVE_EXT_HASH_MAP are set.
7909
7910 2010-05-18  Rafael Espindola  <espindola@google.com>
7911
7912         * options.cc (General_options::finalize): Handle -nostdlib.
7913         * options.h (nostdlib): New option.
7914         * script.cc (script_add_search_dir): Handle -nostdlib.
7915
7916 2010-05-12  Doug Kwan  <dougkwan@google.com>
7917
7918         * arm.cc (Target_arm::do_finalize_sections): Create an empty
7919         attributes section only if there no attributes section after merging.
7920         (Target_arm::merge_object_attributes): Move value of
7921         Tag_MPextension_use_legacy to that of Tag_MPextension_use.
7922         Handle Tag_DIV_use and Tag_MPextension_use_legacy.
7923         * testsuite/Makefile.am (check_SCRIPTS): Add arm_attr_merge.sh
7924         (check_DATA): Add arm_attr_merge_6.stdout, arm_attr_merge_6r_stdout
7925         and arm_attr_merge_7.stdout.
7926         (arm_attr_merge_6.stdout, arm_attr_merge_6 arm_attr_merge_6a.o
7927         arm_attr_merge_6b.o, arm_attr_merge_6r.stdout, arm_attr_merge_6r,
7928         arm_attr_merge_7.stdout, arm_attr_merge_7, arm_attr_merge_7a.o,
7929         arm_attr_merge_7b.o): New rules.
7930         (MOSTLYCLEANFILES): Add arm_attr_merge_6, arm_attr_merge_6r and
7931         arm_attr_merge_7
7932         * testsuite/Makefile.in: Regenerate.
7933         * testsuite/arm_attr_merge.sh: New file.
7934         * testsuite/arm_attr_merge_[67][ab].s: Same.
7935
7936 2010-05-05  Nick Clifton  <nickc@redhat.com>
7937
7938         * po/es.po: Updated Spanish translation.
7939
7940 2010-04-27  H.J. Lu  <hongjiu.lu@intel.com>
7941
7942         * Makefile.am (install-exec-local): Properly install gold as
7943         default cross linker.
7944         * Makefile.in: Regenerated.
7945
7946 2010-04-27  H.J. Lu  <hongjiu.lu@intel.com>
7947             Nick Clifton  <nickc@redhat.com>
7948
7949         * configure.ac (install_as_default): Define and set to false
7950         unless --enable-gold or --enable-gold=both/gold has been
7951         specified.
7952         * configure: Regenerate.
7953
7954         * Makefile.am (install-exec-local): Install the executable as
7955         'ld.gold'.  If install_as_default is true then also install it as
7956         'ld'.
7957         * Makefile.in: Regenerated.
7958
7959 2010-04-24  Ian Lance Taylor  <iant@google.com>
7960
7961         * layout.cc (Layout::layout_reloc): In relocatable link don't
7962         combine reloc sections for grouped sections.
7963
7964 2010-04-23  Sriraman Tallam  <tmsriram@google.com>
7965
7966         * gc.h (gc_process_relocs): Pass information on relocs pointing to
7967         sections that are not ordinary to icf.
7968         * icf.cc (get_section_contents): Handle relocation pointing to section
7969         with no object or shndx information.
7970         * testsuite/Makefile.am: Remove icf_virtual_function_folding_test.sh
7971         * testsuite/Makefile.in: Regenerate.
7972         * testsuite/icf_virtual_function_folding_test.cc: Remove printf.
7973         * testsuite/icf_virtual_function_folding_test.sh: Delete file.
7974
7975 2010-04-22  Ian Lance Taylor  <iant@google.com>
7976
7977         * expression.cc (Expression::Expression_eval_info): Add
7978         result_alignment_pointer field.
7979         (Expression::eval_with_dot): Add result_alignment_pointer
7980         parameter.  Change all callers.
7981         (Expression::eval_maybe_dot): Likewise.
7982         (class Binary_expression): Add alignment_pointer parameter to
7983         left_value and right_value.  Change all callers.
7984         (BINARY_EXPRESSION): Set result alignment.
7985         (class Trinary_expression): Add alignment_pointer parameter to
7986         arg2_value and arg3_value.  Change all callers.
7987         (Trinary_cond::value): Set result alignment.
7988         (Max_expression::value, Min_expression::value): Likewise.
7989         (Align_expression::value): Likewise.
7990         * script-sections.cc (class Sections_element): Add dot_alignment
7991         parameter to set_section_addresses virtual function.  Update
7992         instantiations.
7993         (class Output_section_element): Likewise.
7994         (Script_sections::create_segments): Add dot_alignment parameter.
7995         Change all callers.
7996         (Script_sections::create_segments_from_phdrs_clause): Likewise.
7997         (Script_sections::set_phdrs_clause_addresses): Likewise.
7998         * script-sections.h: Update declarations.
7999         * script.h: Update declarations.
8000         * output.h (Output_segment::set_minimum_p_align): Don't decrease
8001         min_p_align.
8002         * testsuite/script_test_3.t: Set large alignment.
8003         * testsuite/script_test_3.sh: Make sure that at least one LOAD
8004         segment has expected alignment.
8005
8006 2010-04-22  Nick Clifton  <nickc@redhat.com>
8007
8008         * po/gold.pot: Updated by the Translation project.
8009         * po/vi.po: Updated Vietnamese translation.
8010
8011 2010-04-22  H.J. Lu  <hongjiu.lu@intel.com>
8012
8013         * testsuite/Makefile.am (check_PROGRAMS): Add
8014         icf_virtual_function_folding_test.
8015         * testsuite/Makefile.in: Regenerated.
8016
8017 2010-04-15  Andrew Haley  <aph@redhat.com>
8018
8019         * options.h (merge_exidx_entries): New option.
8020         * arm.cc (class Arm_exidx_fixup): Add new arg, merge_exidx_entries.
8021         (class Arm_exidx_fixup::merge_exidx_entries_): New member.
8022         (Output_section::fix_exidx_coverage): Add new arg, merge_exidx_entries.
8023         (Target_arm::merge_exidx_entries): New function.
8024         (process_exidx_entry): Don't merge if merge_exidx_entries_ is false.
8025         (Arm_output_section::fix_exidx_coverage): Pass merge_exidx_entries
8026         to Arm_exidx_fixup constructor.
8027         Add new arg, merge_exidx_entries.
8028         (Target_arm::fix_exidx_coverage): pass merge_exidx_entries to
8029         Arm_output_section::fix_exidx_coverage.
8030
8031 2010-04-18  Sriraman Tallam  <tmsriram@google.com>
8032
8033         * icf.cc (get_section_contents): Check for preemptible functions.
8034         Ignore addend when appropriate.
8035         * symtab.cc (should_add_dynsym_entry): Add new parameter.  Check for
8036         section folded.
8037         (add_from_relobj): Check for section folded.
8038         (set_dynsym_indexes): Fix call to should_add_dynsym_entry.
8039         * symtab.h (should_add_dynsym_entry): Add new parameter.
8040         * target-reloc.h (scan_relocs): Check for section folded.
8041         * x86_64.cc (Target_x86_64::Scan::possible_function_pointer_reloc):
8042         Check reloc types for function pointers in shared objects.
8043         * testsuite/Makefile.am (icf_virtual_function_folding_test): New test
8044         case.
8045         (icf_preemptible_functions_test): New test case.
8046         (icf_string_merge_test): New test case.
8047         * testsuite.Makefile.in: Regenerate.
8048         * testsuite/icf_safe_so_test.sh: Change to not fold foo_glob and
8049         bar_glob.  Refactor code.
8050         * testsuite/icf_preemptible_functions_test.cc: New file.
8051         * testsuite/icf_preemptible_functions_test.sh: New file.
8052         * testsuite/icf_string_merge_test.cc: New file.
8053         * testsuite/icf_string_merge_test.sh: New file.
8054         * testsuite/icf_virtual_function_folding_test.cc: New file.
8055         * testsuite/icf_virtual_function_folding_test.sh: New file.
8056
8057 2010-04-14  Doug Kwan  <dougkwan@google.com>
8058
8059         * arm.cc (Arm_output_section::fix_exidx_coverage): Mark object
8060         for local symbol recounting if we remove a section due to ICF.
8061         * gold.cc (queue_middle_gc_tasks): Create a dummy blocker if
8062         there are no regular objects in input.
8063
8064 2010-04-13  Doug Kwan  <dougkwan@google.com>
8065
8066         * arm.cc (Arm_input_section::set_final_data_size): Compute
8067         accurate final data size instead of using current data size.
8068
8069 2010-04-09  Doug Kwan  <dougkwan@google.com>
8070
8071         * layout.cc (Layout::choose_output_section): Handle script section
8072         types.
8073         (Layout::make_output_section_for_script): Add section type parameter.
8074         Handle script section types.
8075         * layout.h (Layout::make_output_section_for_script): Add section
8076         type parameter.
8077         * output.cc (Output_section::Output_section): Initialize data member
8078         is_noload_.
8079         (Output_section::do_reset_address_and_file_offset): Do not set address
8080         to 0 if section is a NOLOAD section.
8081         * output.h (Output_section::is_noload): New method.
8082         (Output_section::set_is_noload): Ditto.
8083         (Output_section::is_noload_): New data member.
8084         * script-c.h (Script_section_type): New enum type.
8085         (struct Parser_output_section_header): Add new file section_type.
8086         * script-sections.cc (Sections_element::output_section_name): Add
8087         parameter for returning script section type.
8088         (Output_section_definition::output_section_name): Ditto.
8089         (Output_section_definition::section_type)P; New method.
8090         (Output_section_definiton::script_section_type_name): Ditto.
8091         (Output_section_definition::script_section_type_): New data member.
8092         (Output_section_definition::Output_section_definition): Initialize
8093         data member Output_section_definition::script_section_type_.
8094         (Output_section_definition::create_sections): Pass script section type
8095         to Layout::make_output_section_for_script.
8096         (Output_section_definition::output_section_name): Return script
8097         section type to caller.
8098         (Output_section_definition::set_section_address): Do not advance
8099         dot value and load address if section type is NOLOAD.  Set address
8100         of NOLOAD sections regardless of section flags.
8101         (Output_section_definition::print): Print section type if it is
8102         not SCRIPT_SECTION_TYPE_NONE.
8103         (Output_section_definition::section_type): New method.
8104         (Output_section_definition::script_section_type_name): Ditto.
8105         (Script_sections::output_section_name): Add new parameter
8106         PSECTION_TYPE for returning script section type.  Pass it to
8107         section elements.  Handle discard sections.
8108         (Sort_output_sections::operator()): Handle NOLOAD sections.
8109         * script-sections.h (Script_sections::Section_type): New enum type.
8110         (Script_sections::output_section_name): Add a new parameter for
8111         returning script section type.
8112         * script.cc (script_keyword_parsecodes): Add keywords COPY, DSECT,
8113         INFO and NOLOAD.
8114         * yyscript.y (union): Add new field SECTION_TYPE.
8115         (COPY, DSECT, INFO, NOLOAD): New tokens.
8116         (opt_address_and_section_type): Change type to output_section_header.
8117         (section_type): New non-terminal
8118         (section_header): Handle section type.
8119         (opt_address_and_section_type): Return section type value.
8120
8121 2010-04-09  H.J. Lu  <hongjiu.lu@intel.com>
8122
8123         * testsuite/plugin_common_test_1.c (foo): Add prototype.
8124         * testsuite/plugin_common_test_2.c (foo): Likewise.
8125
8126 2010-04-08  Doug Kwan  <dougkwan@google.com>
8127
8128         * merge.cc (Output_merge_data::set_final_data_size): Handle empty
8129         Output_merge_data.
8130         * output.cc (Output_section::add_merge_input_section): Simplify
8131         code and return status of Output_merge_base::add_input_section.
8132         Update merge section map only if Output_merge_base::add_input_section
8133         returns true.
8134
8135 2010-04-07  Doug Kwan  <dougkwan@google.com>
8136
8137         * arm.cc (Arm_relobj::scan_section_for_cortex_a8_erratum): Warn
8138         if section is marked as containing instructions but has no mapping
8139         symbols.
8140         (Arm_relobj::do_count_local_symbols): Call adjust_sym_shndx to get
8141         correct section index.
8142         (Arm_relobj::find_linked_text_section): Ditto.
8143
8144 2010-04-07  Cary Coutant  <ccoutant@google.com>
8145
8146         * archive.cc (include_member): Destroy Read_symbols_data object before
8147         releasing file.
8148         * object.cc (Read_symbols_data::~Read_symbols_data) New destructor.
8149         * object.h (Read_symbols_data::Read_symbols_data) New constructor.
8150         (Read_symbols_data::~Read_symbols_data) New destructor.
8151         (Section_relocs::Section_relocs) New constructor.
8152         (Section_relocs::~Section_relocs) New destructor.
8153         (Read_relocs_data::Read_relocs_data) New constructor.
8154         (Read_relocs_data::~Read_relocs_data) New destructor.
8155         * testsuite/binary_unittest.cc (Sized_binary_test): Set sd member
8156         pointers to NULL after deleting.
8157
8158 2010-04-07  Doug Kwan  <dougkwan@google.com>
8159
8160         * arm.cc: Replace "endianity" with "endianness" in comments.
8161         (Arm_exidx_cantunwind): Ditto.
8162         (Arm_relobj::Arm_relobj): Initialize merge_flags_and_attribures.
8163         (Arm_relobj::merge_flags_and_attributes): New method.
8164         (Arm_relobj::merge_flags_and_attributes_): New data member.
8165         (Arm_exidx_cantunwind::do_fixed_endian_write): Fix formatting.
8166         (Arm_relobj::scan_sections_for_stubs): Ditto.
8167         (Arm_relobj::do_read_symbols): Check to see if we really want to
8168         merge processor-specific flags and attributes.  Exit early if
8169         an object is empty except for section names and the undefined symbol.
8170         (Target_arm::do_finalize_sections): Move check for ELF format to
8171         Arm_relobj::do_read_symbols.  Merge processor specific flags and
8172         attributes from a regular object only when we have determined that
8173         it is aapropriate.  Do not create an .ARM.attributes section in
8174         output if there is no regular input object.
8175         (Target_arm::merge_processor_specific_flags): Check
8176         --warn-mismatch before printing any error.
8177         (Target_arm::merge_object_attributes): Ditto.
8178         * gold.cc (queue_middle_tasks): Handle the case in which there is
8179         no regular object in input.
8180         * options.cc (General_options::parse_EB): New method.
8181         (General_options::parse_EL): Same.
8182         (General_options::General_options): Initialize endianness_.
8183         * options.h (-EB, -EL, -no-pipeline-knowledge, -p, --warn-mismatch):
8184         New options.
8185         (General_options::Endianness): New enum.
8186         (General_options::endianness): New method.
8187         (General_options::endianness_): New data member.
8188         * parameters.cc (Parameters::set_options): Check target endianness.
8189         (Parameters::set_target_once): Ditto.
8190         (Parameters::check_target_endianness): New method.
8191         (parameters_force_valid_target): If either -EL or -EB is specified,
8192         use it to define endianness of default target.
8193         * parameters.h (Parameters::check_target_endianness): New method
8194         declaration.
8195         * target.h (class Target): Change "endianity" to "endianness"
8196         in comments.
8197
8198 2010-04-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8199
8200         * configure.ac (AM_INIT_AUTOMAKE): Add option no-dist.
8201         * configure: Regenerate.
8202         * Makefile.in: Regenerate.
8203         * testsuite/Makefile.in: Regenerate.
8204
8205 2010-04-06  Cary Coutant  <ccoutant@google.com>
8206
8207         gcc PR lto/42757
8208         * plugin.cc (Pluginobj::get_symbol_resolution_info): Check for
8209         prevailing definitions of common symbols.
8210         * testsuite/plugin_test_6.sh: New test case.
8211         * testsuite/plugin_common_test_1.c: New test case.
8212         * testsuite/plugin_common_test_2.c: New test case.
8213         * testsuite/Makefile.am (plugin_test_6): New test case.
8214         * testsuite/Makefile.in: Regenerate.
8215
8216 2010-04-06  Nick Clifton  <nickc@redhat.com>
8217
8218         * po/vi.po: New Vietnamese translation.
8219
8220 2010-03-30  Doug Kwan  <dougkwan@google.com>
8221
8222         * arm.cc (Target_arm::using_thumb_only): Handle v6-M
8223
8224 2010-03-25  Doug Kwan  <dougkwan@google.com>
8225
8226         * gold/arm.cc (Arm_exidx_fixup::update_offset_map): Rearrange code
8227         to avoid a conversion warning on a 32-bit host.
8228
8229 2010-03-24  Ian Lance Taylor  <iant@google.com>
8230
8231         * testsuite/script_test_3.t: Add a TLS segment.
8232         * testsuite/Makefile.am (check_PROGRAMS): Add
8233         tls_phdrs_script_test.
8234         (tls_phdrs_script_test_SOURCES): Define.
8235         (tls_phdrs_script_test_DEPENDENCIES): Define.
8236         (tls_phdrs_script_test_LDFLAGS): Define.
8237         (tls_phdrs_script_test_LDADD): Define.
8238         * testsuite/Makefile.in: Rebuild.
8239
8240 2010-03-23  Cary Coutant  <ccoutant@google.com>
8241
8242         * fileread.cc (find_or_make_view): Fix comment.
8243
8244 2010-03-23  Ian Lance Taylor  <iant@google.com>
8245
8246         * script-sections.cc (class Orphan_section_placement): Define
8247         PLACE_TLS and PLACE_TLS_BSS.
8248         (Orphan_section_placement::Orphan_section_placement): Initialize
8249         new places.
8250         (Orphan_section_placement::find_place): Handle SHF_TLS sections.
8251         * testsuite/Makefile.am (check_PROGRAMS): Add tls_script_test.
8252         (tls_script_test_SOURCES): Define.
8253         (tls_script_test_DEPENDENCIES): Define.
8254         (tls_script_test_LDFLAGS): Define.
8255         (tls_script_test_LDADD): Define.
8256         * testsuite/Makefile.in: Rebuild.
8257
8258 2010-03-22  Doug Kwan  <dougkwan@google.com>
8259
8260         * arm.cc (Arm_relocate_functions::abs8,
8261         Arm_relocate_functions::abs16): Use correct check for overflow
8262         specified in the ARM ELF specs.
8263         (Arm_relocate_functions): thumb_branch_common.  Handle bit 1 of branch
8264         target of a BLX instruction specially.
8265         (Reloc_stub::stub_type_for_reloc): Ditto.
8266         (Relocate::relocate): Use symbolic names instead of numeric relocation
8267         codes to report error.
8268         (Target_arm::do_relox): Reduce default stub-group size for Cortex-A8
8269         workaround.
8270         * testsuite/Makefile.am (check_DATA): add thumb_blx_in_range.stdout,
8271         thumb_blx_out_of_range.stdout, thumb2_blx_in_range.stdout and
8272         thumb2_blx_out_of_range.stdout
8273         (thumb_bl_out_of_range, thumb_bl_out_of_range.o,
8274         thumb2_bl_out_of_range, thumb2_bl_out_of_range.o): Fix dependenices.
8275         (thumb_blx_in_range.stdout, thumb_blx_in_range, thumb_blx_in_range.o,
8276         thumb_blx_out_of_range.stdout, thumb_blx_out_of_range,
8277         thumb_blx_out_of_range.o, thumb2_blx_in_range.stdout,
8278         thumb2_blx_in_range, thumb2_blx_in_range.o,
8279         thumb2_blx_out_of_range.stdout, thumb2_blx_out_of_range,
8280         thumb2_blx_out_of_range.o): New rules.
8281         (MOSTLYCLEANFILES): Add thumb_blx_in_range, thumb_blx_out_of_range,
8282         thumb2_blx_in_range and thumb2_blx_out_of_range.
8283         * testsuite/Makefile.in: Regenerate.
8284         * arm_branch_in_range.sh: Add tests for THUMB BLX.
8285         * testsuite/thumb_blx_in_range.s: New file.
8286         * testsuite/thumb_blx_out_of_range.s: New file.
8287
8288 2010-03-22  Rafael Espindola  <espindola@google.com>
8289
8290         * archive.cc (Should_include): Move to archive.h.
8291         (should_include_member): Make it a member of Archive.
8292         (Lib_group): New.
8293         (Add_lib_group_symbols): New.
8294         * archive.h: Include options.h.
8295         (Archive_member): Moved from Archive.
8296         (Should_include): Moved from archive.cc.
8297         (Lib_group): New.
8298         (Add_lib_group_symbols): New.
8299         * dynobj.cc (do_should_include_member): New.
8300         * dynobj.h (do_should_include_member): New.
8301         * gold.cc (queue_initial_tasks): Update call to queue.
8302         * main.cc (main): Print lib group stats.
8303         * object.cc (do_should_include_member): New.
8304         * object.h: Include archive.h.
8305         (Object::should_include_member): New.
8306         (Object::do_should_include_member): New.
8307         (Sized_relobj::do_should_include_member): New.
8308         * options.cc (General_options::parse_start_lib): New.
8309         (General_options::parse_end_lib): New.
8310         (Input_arguments::add_file): Handle lib groups.
8311         (Input_arguments::start_group): Check we are not in a lib.
8312         (Input_arguments::start_lib): New.
8313         (Input_arguments::end_lib): New.
8314         * options.h (General_options): Add start_lib and end_lib.
8315         (Input_argument::lib_): New.
8316         (Input_argument::lib): New.
8317         (Input_argument::is_lib): New.
8318         (Input_file_lib): New.
8319         (Input_arguments::in_lib_): New.
8320         (Input_arguments::in_lib): New.
8321         (Input_arguments::start_lib): New.
8322         (Input_arguments::end_lib_): New.
8323         * plugin.cc (Pluginobj::get_symbol_resolution_info): Mark symbols
8324         in unused members as preempted.
8325         (Sized_pluginobj::do_should_include_member): New.
8326         * plugin.h (Sized_pluginobj::do_should_include_member): New.
8327         * readsyms.cc (Read_symbols::locks): If we are just reading a member,
8328         return the blocker.
8329         (Read_symbols::do_whole_lib_group): New.
8330         (Read_symbols::do_lib_group): New.
8331         (Read_symbols::do_read_symbols): Handle lib groups.
8332         (Read_symbols::get_name): Handle lib groups.
8333         * readsyms.h (Read_symbols): Add an archive member pointer.
8334         (Read_symbols::do_whole_lib_group): New.
8335         (Read_symbols::do_lib_group): New.
8336         (Read_symbols::member_): New.
8337         * script.cc (read_input_script): Update call to queue_soon.
8338
8339 2010-03-19  Doug Kwan  <dougkwan@google.com>
8340
8341         * arm.cc (Stub_table::Stub_table): Initialize new data members
8342         Stub_table::reloc_stubs_size_ and Stub_table::reloc_stubs_addralign_.
8343         (Stub_table::add_reloc_stub): Assign stub offset and update
8344         Stub_table::reloc_stubs_size_ and Stub_table::reloc_stubs_addralign_.
8345         (Stub_table::reloc_stubs_size_, Stub_table::reloc_stubs_addralign_):
8346         New data members.
8347         (Stub_table::update_data_size_and_addralign): Use
8348         Stub_table::reloc_stubs_size_ and Stub_table::reloc_stubs_addralign_
8349         instead of going over all reloc stubs.
8350         (Stub_table::finalize_stubs): Do not assign reloc stub offsets.
8351         * stringpool.cc (Stringpool_template::Stringpool_template): Initialize
8352         Stringpool_template::offset_ to size of Stringpool_char.
8353         (Stringpool_template::new_key_offset): Remove code to initialize
8354         Stringpool_template::offset_.
8355         * stringpool.h (Stringpool_template::set_no_zero_null): Set
8356         Stringpool_template::offset_ to zero.
8357
8358 2010-03-15  Doug Kwan  <dougkwan@google.com>
8359
8360         * stringpool.cc (Stringpool_template::Stringpool_template): Initialize
8361         offset_.
8362         (Stringpool_template::new_key_offset): New method.
8363         (Stringpool_template::add_string): Assign offsets when adding new
8364         strings.
8365         (Stringpool_template::set_string_offsets): Do not set string offsets
8366         when not optimizing.
8367         * stringpool.h (Chunked_vector::Chunked_vector): Initialize data
8368         member size_.
8369         (Chunked_vector::clear): Clear size_.
8370         (Chunked_vector::reserve): Call reserve method of all Element_vectors.
8371         (Chunked_vector::size): Return size_.
8372         (Chunked_vector::push_back): Use size_ to find insert position.
8373         (Chunked_vector::size_): New data member.
8374         (Stringpool_template::set_no_zero_null): Assert string set is empty.
8375         (Stringpool_template::new_key_offset): New method declaration.
8376         (Stringpool_template::offset_): New data member.
8377
8378 2010-03-15   Rafael Espindola  <espindola@google.com>
8379
8380         * readsyms.cc (Read_symbols::do_read_symbols): Update calls to
8381         Add_symbols' constructor.
8382         * readsyms.h (Add_symbols): Remove the input_group member.
8383
8384 2010-03-10  Ian Lance Taylor  <iant@google.com>
8385
8386         * reloc.cc (Sized_relobj::split_stack_adjust_reltype): Call the
8387         target to ask whether a reference to a symbol requires a stack
8388         split.
8389         * target.h (Target::is_call_to_non_split): New function.
8390         (Target::do_is_call_to_non_split): Declare virtual function.
8391         * target.cc: Include "symtab.h".
8392         (Target::do_is_call_to_non_split): New function.
8393         * i386.cc (Target_i386::do_is_call_to_non_split): New function.
8394
8395 2010-03-10  Cary Coutant  <ccoutant@google.com>
8396
8397         * fileread.cc (File_read::~File_read): Don't delete whole_file_view_.
8398         (File_read::open[1]): Remove initial mapping of whole_file_view_.
8399         (File_read::open[2]): Add whole_file_view_ to list of views.
8400         (File_read::make_view): Remove test of whole_file_view_.
8401         (File_read::find_or_make_view): Create whole_file_view_ if
8402         necessary.
8403         (File_read::clear_views): Replace bool parameter with enum;
8404         adjust all callers.  Don't delete views with permanent data;
8405         do delete cached views and views from archives if
8406         --no-keep-files-mapped is set.  Set whole_file_view_ to NULL
8407         if clearing the corresponding view.
8408         * fileread.h (File_read::Clear_views_mode): New enum.
8409         (File_read::View::is_permanent_view): New method.
8410         (File_read::clear_views): Replace bool parameter
8411         with enum; adjust all callers.
8412         * options.h (General_options): Change keep_files_mapped option;
8413         add map_whole_files.
8414         * readsyms.cc (Add_symbols::run): Delete sd_ object before
8415         releasing the file.
8416         * reloc.cc (Scan_relocs::run): Delete rd_ object before releasing
8417         the file.
8418
8419 2010-03-10  David S. Miller  <davem@davemloft.net>
8420
8421         * sparc.cc (Target_sparc::Scan::local): Accept R_SPARC_WPLT30.
8422
8423 2010-03-09  Sriraman Tallam  <tmsriram@google.com>
8424
8425         * icf.cc (get_section_contents): Add '@' marker after processing the
8426         merge reloc.
8427
8428 2010-03-08  Doug Kwan  <dougkwan@google.com>
8429
8430         * gold/arm.cc (Arm_exidx_fixup::update_offset_map): Fix build breakage
8431         due to a conversion warning.
8432         (Arm_relobj::update_output_local_symbol_count): Check for local
8433         symbol with unset output index.
8434
8435 2010-03-05  Ian Lance Taylor  <iant@google.com>
8436
8437         * options.h (class General_options): Add --spare-dynamic-tags.
8438         * output.cc (Output_data_dynamic::set_final_data_size): Implement
8439         --spare-dynamic-tags.
8440
8441 2010-03-05  Ian Lance Taylor  <iant@google.com>
8442
8443         * incremental.cc: Include "libiberty.h".
8444
8445 2010-03-05  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
8446
8447         * dynobj.h (Verdef::Verdef): Add is_info arg, is_info member
8448         function, is_info_ member.
8449         * dynobj.cc (Verdef::write): Set VER_FLG_INFO if this->is_info_.
8450         (Versions::Versions): Update caller.
8451         (Versions::define_base_version): Likewise.
8452         (Versions::add_def): Likewise.
8453
8454 2010-03-03  Sriraman Tallam  <tmsriram@google.com>
8455
8456         * i386.cc (Target_i386::can_check_for_function_pointers): New function.
8457         (Scan::possible_function_pointer_reloc): New function.
8458         (Scan::local_reloc_may_be_function_pointer): Change to call
8459         possible_function_pointer_reloc.
8460         (Scan::global_reloc_may_be_function_pointer): Ditto.
8461         * icf.h (Icf::check_section_for_function_pointers): Change to reject
8462         relocations in ".data.rel.ro._ZTV" section.
8463         * testsuite/icf_safe_so_test.sh: Change to pass i386.
8464         * testsuite/icf_safe_so_test.cc: Ditto.
8465         * testsuite/icf_safe_test.cc: Ditto.
8466         * testsuite/icf_safe_test.sh: Ditto.
8467
8468 2010-03-03  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
8469             Ian Lance Taylor  <iant@google.com>
8470
8471         * target-reloc.h (relocate_section): Check the symbol table index
8472         for -1U before setting the local symbol index.
8473         (scan_relocatable_relocs): If copying the relocation, record that
8474         the local symbol is required.
8475         * object.h (Symbol_value::is_output_symtab_index_set): New
8476         function.
8477         (Symbol_value::may_be_discarded_from_output_symtab): New
8478         function.
8479         (Symbol_value::has_output_symtab_entry): New function.
8480         (Symbol_value::needs_output_symtab_entry): Remove.
8481         (Symbol_value::output_symtab_index): Make sure the symbol index is
8482         set.
8483         (Symbol_value::set_output_symtab_index): Make sure the symbol
8484         index is not set.  Make sure the new index is valid.
8485         (Symbol_value::set_must_have_output_symtab_entry): New function.
8486         (Symbol_value::has_output_dynsym_entry): New function.
8487         (Symbol_value::set_output_dynsym_index): Make sure the new index
8488         is valid.
8489         (Sized_relobj::set_must_have_output_symtab_entry): New function.
8490         * object.cc (Sized_relobj::do_count_local_symbols): Only discard a
8491         local symbol if permitted.
8492         (Sized_relobj::do_finalize_local_symbols): Call
8493         is_output_symtab_index_set rather than needs_output_symtab_entry.
8494         (Sized_relobj::write_local_symbols): Call has_output_symtab_entry
8495         rather than needs_output_symtab_entry.  Call
8496         has_output_dynsym_entry rather than needs_output_dynsym_entry.
8497         * arm.cc (Arm_relobj::update_output_local_symbol_count): Call
8498         is_output_symtab_index_set rather than needs_output_symtab_entry.
8499         * testsuite/discard_locals_relocatable_test.c: New file.
8500         * testsuite/discard_locals_test.sh: Test -r.
8501         * testsuite/Makefile.am (check_DATA): Add
8502         discard_locals_relocatable_test1.syms,
8503         discard_local_relocatable_test2.syms.
8504         (MOSTLYCLEANFILES): Likewise.  Also add
8505         discard_locals_relocatable_test1.lout and
8506         discard_locals_relocatable_test2.out.
8507         (discard_locals_relocatable_test1.syms): New target.
8508         (discard_locals_relocatable_test.o): New target.
8509         (discard_locals_relocatable_test1.out): New target.
8510         (discard_locals_relocatable_test2.syms): New target.
8511         (discard_locals_relocatable_test2.out): New target.
8512         (various): Add missing ../ld-new dependencies.
8513         * testsuite/Makefile.in: Rebuild.
8514
8515 2010-03-03  Nick Clifton  <nickc@redhat.com>
8516
8517         * po/fi.po: New Finnish translation.
8518
8519 2010-03-01  Doug Kwan  <dougkwan@google.com>
8520
8521         * layout.cc (Layout::Layout): Force section types of .init_array*,
8522         .preinit_array* and .fini_array* sections.
8523         * output.cc (Output_section::Input_section_sort_entry::has_priority):
8524         Fix check of return value of std::string::find.().
8525         (Output_section::Input_section_sort_compare::operator()): Remove
8526         comment about .init_array.
8527         (Output_section::Input_section_sort_init_fini_compare::operator()):
8528         New method.
8529         (Output_section::sort_attached_input_sections): Handle .init_array
8530         and .fini_array specially.
8531         * output.h (Output_section::Inut_section_sort_compare): Update
8532         comment.
8533         (Output_section::Input_section_sort_init_fini_compare): New struct.
8534
8535 2010-02-26  Doug Kwan  <dougkwan@google.com>
8536
8537         * arm.cc (Target_arm::Relocate::reloc_is_non_pic): Treat
8538         R_ARM_PREL31 and R_ARM_SBREL31 as position independent.
8539         * testsuite/debug_msg.sh: Avoid matching source line number for
8540         use of global variable undef_int.
8541
8542 2010-02-26  Doug Kwan  <dougkwan@google.com>
8543
8544         * arm.cc (Target_arm::scan_reloc_for_stub): Move code handling
8545         R_ARM_V4BX to Target_arm::scan_reloc_section_for_stubs.
8546         (Target_arm::scan_reloc_section_for_stubs): Instead of calling
8547         scan_reloc_for_stub, do all processing of R_ARM_V4BX here.
8548         * options.cc (General_options::General_options): Initialize member
8549         fix_v4bx_.
8550         * testsuite/Makefile.am (check_SCRIPTS): Add arm_fix_v4bx.sh
8551         (check_DATA): Add arm_fix_v4bx.stdout, arm_fix_v4bx_interworking.stdout
8552         and rm_no_fix_v4bx.stdout
8553         (arm_fix_v4bx.stdout, arm_fix_v4bx, arm_fix_v4bx.o,
8554         arm_fix_v4bx_interworking.stdout, arm_fix_v4bx_interworking,
8555         arm_no_fix_v4bx.stdout, arm_no_fix_v4bx): New make rules.
8556         (MOSTLYCLEANFILES): Add arm_fix_v4bx, arm_fix_v4bx_interworking
8557         and arm_no_fix_v4bx.
8558         * Makefile.in: Regenerate.
8559         * testsuite/arm_fix_v4bx.s: New file.
8560         * testsuite/arm_fix_v4bx.sh: Ditto.
8561
8562 2010-02-24  Doug Kwan  <dougkwan@google.com>
8563
8564         * arm.cc (Target_arm::got_section): Make the .got section the first
8565         non RELRO section in the data segment.
8566         * testsuite/script_test_5.sh: Fix match patterns to avoid matching
8567         suffixes of section names.
8568
8569 2010-02-24  Doug Kwan  <dougkwan@google.com>
8570
8571         * arm.cc (Target_arm::do_finalize_sections): Skip processor specific
8572         flags and attributes merging if an input file is a binary file.
8573         * fileread.cc (Input_file::open): Record format of original file.
8574         * fileread.h (Input_file::Format): New enum type.
8575         (Input_file::Input_file): Initialize data member format_.
8576         (Input_file::format): New method definition.
8577         (Input_file::format_):: New data member.
8578
8579 2010-02-24  Doug Kwan  <dougkwan@google.com>
8580
8581         * arm.cc (Arm_output_data_got): New class.
8582         (ARM_TCB_SIZE): New constant
8583         (Target_arm): Use Arm_output_data_got instead of Output_data_got.
8584         (Arm_output_section::fix_exidx_coverage): Add a parameter for layout.
8585         If user uses a script with a SECTIONS clause, issue only a warning
8586         for a misplaced EXIDX input section.  Otherwise, issue an error.
8587         (Arm_relobj::do_gc_process_relocs): Exit early if we are not doing
8588         garbage collection.
8589         (Target_arm::got_mode_index_entry): Handle static linking.
8590         (Target_arm::Scan::local): Ditto.
8591         (Target_arm::Scan::global): Ditto.
8592         (Target_arm::Relocate::relocate_tls): Handle static linking.  Fix
8593         all incorrectly implemented relocations.
8594         (Target_arm::fix_exidx_coverage): Pass layout to
8595         Arm_output_section::fix_exidx_coverage.
8596         * layout.cc (Layout::section_name_mapping): Remove trailing dots
8597         from ".ARM.exidx." and ".ARM.extab.".
8598
8599 2010-02-23  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
8600
8601         * arm.cc (Target_arm::do_finalize_sections): Create attribute
8602         section if it does not already exist.
8603         * attributes.cc (Attributes_section_data::Attributes_section_data):
8604         Don't crash if size is zero.
8605
8606 2010-02-23  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
8607             Ian Lance Taylor  <iant@google.com>
8608
8609         * gold.cc (queue_middle_tasks): If no input files were opened,
8610         exit.
8611         * workqueue.h (Task_function::Task_function): Assert that there is
8612         a blocker.
8613
8614 2010-02-22  Doug Kwan  <dougkwan@google.com>
8615
8616         * gold-threads.h (Once::~Once): Explicitly define virtual destructor.
8617         * icf.cc (get_section_contents): Cast snprintf arguments to long long
8618         types to avoid warnings due to different uint64_t implementations
8619         on different hosts.
8620
8621 2010-02-21  Doug Kwan  <dougkwan@google.com>
8622
8623         * arm.cc (Arm_relocate_functions::arm_branch_common): Fix bug in
8624         handling of the maximum backward branch offset.
8625         (Arm_relocate_functions::thumb_branch_common): Ditto.
8626         * testsuite/Makefile.am (check_SCRIPTS): Add arm_branch_in_range.sh.
8627         (check_DATA): Add arm_bl_in_range.stdout, arm_bl_out_of_range.stdout
8628         thumb_bl_in_range.stdout, thumb_bl_out_of_range.stdout,
8629         thumb2_bl_in_range.stdout and thumb2_bl_out_of_range.stdout.
8630         (arm_bl_in_range.stdout, arm_bl_in_range, arm_bl_in_range.o,
8631         arm_bl_out_of_range.stdout, arm_bl_out_of_range,
8632         arm_bl_out_of_range.o, thumb_bl_in_range.stdout, thumb_bl_in_range,
8633         thumb_bl_in_range.o, thumb_bl_out_of_range.stdout,
8634         thumb_bl_out_of_range thumb_bl_out_of_range.o,
8635         thumb2_bl_in_range.stdout, thumb2_bl_in_range, thumb2_bl_in_range.o
8636         thumb2_bl_out_of_range.stdout, thumb2_bl_out_of_range,
8637         thumb2_bl_out_of_range.o): New rules.
8638         (MOSTLYCLEANFILES): Add arm_bl_in_range, arm_bl_out_of_range,
8639         thumb_bl_in_range, thumb_bl_out_of_range, thumb2_bl_in_range and
8640         thumb2_bl_out_of_range
8641         * testsuite/Makefile.in: Regenerate.
8642         * testsuite/arm_bl_in_range.s: New file.
8643         * testsuite/arm_bl_out_of_range.s: Ditto.
8644         * testsuite/arm_branch_in_range.sh: Ditto.
8645         * testsuite/arm_branch_range.t: Ditto.
8646         * testsuite/thumb2_branch_range.t: Ditto.
8647         * testsuite/thumb_bl_in_range.s: Ditto.
8648         * testsuite/thumb_bl_out_of_range.s: Ditto.
8649         * testsuite/thumb_branch_range.t: Ditto.
8650
8651 2010-02-20  Sriraman Tallam  <tmsriram@google.com>
8652
8653         * gc.h (gc_process_relocs): Change vectors to point to the new list.
8654         Add reloc offset information.
8655         * icf.cc (get_section_contents): Change iterators to point to the new
8656         vectors. Add reloc offset information to the contents.
8657         * icf.h (Icf::Sections_reachable_info): New typedef.
8658         (Icf::Sections_reachable_list): New typedef.
8659         (Icf::Offset_info): New typedef.
8660         (Icf::Reloc_info): New struct typedef.
8661         (Icf::Reloc_info_list): New typedef.
8662         (Icf::symbol_reloc_list): Delete method.
8663         (Icf::addend_reloc_list): Delete method.
8664         (Icf::section_reloc_list): Delete method.
8665         (Icf::reloc_info_list): New method.
8666         (Icf::reloc_info_list_): New member.
8667
8668 2010-02-19  Doug Kwan  <dougkwan@google.com>
8669
8670         * arm-reloc.def: Mark R_ARM_TLS_GD32, R_ARM_TLS_LDM32,
8671         R_ARM_TLS_LDO32, R_ARM_TLS_IE32 and R_ARM_TLS_LE32 are implemented.
8672         * arm.cc (Arm_relocation_functions): New forward declaration.
8673         (Target_arm::Target_arm): Initialize new data members
8674         got_mod_index_offset_ and tls_base_symbol_defined_.
8675         (Target_arm::Relocate::relocate_tls): New method.
8676         (Target_arm::optimize_tls_reloc, Target_arm::define_tls_base_symbol,
8677          Target_arm::got_mod_index_entry, Target_arm::rel_tls_desc_section):
8678         New methods.
8679         (Target_arm::Got_type): Add GOT_TYPE_TLS_NOFFSET, GOT_TYPE_OFFSET,
8680         GOT_TYPE_TLS_PAIR and GOT_TYPE_TLS_DESC.
8681         (Target_arm::got_mod_index_offset_,
8682         Target_arm::tls_base_symbol_defined_): New data members.
8683         (Target_arm::Scan::local, Target::Scan::global,
8684         Target_arm::Relocate::relocate): Handle 32-bit initial TLS
8685         relocations.
8686
8687 2010-02-18  Doug Kwan  <dougkwan@google.com>
8688
8689         * arm.cc (Arm_relobj::find_linked_text_section): New method.
8690         (Arm_relobj::make_exidx_input_section): Pass section index of linked
8691         text section as a parameter becuase some broken tools may not set
8692         the link in section header.
8693         (Target_arm::has_got_section): New method.
8694         (Target_arm::scan_section_for_cortex_a8_stubs): Treat an input section
8695         without any mapping symbol as data only.  Remove warning.
8696         (Arm_relobj::do_read_synbols): If an EXIDX input section has no
8697         link in its section header, try to discover the link by inspecting the
8698         REL31 relocation at the beginning of the section.
8699         (Target_arm::Scan::check_non_pic): Report name of offending relocation
8700         in error message.
8701         (Target_arm::Scan::global): Treat any reference to the symbol
8702         _GLOBAL_OFFSET_TABLE_ as a GOT access.
8703
8704 2010-02-12  Sriraman Tallam  <tmsriram@google.com>
8705
8706         * arm.cc (Scan::local_reloc_may_be_function_pointer): New function.
8707         (Scan::global_reloc_may_be_function_pointer): New function.
8708         * sparc.cc (Scan::local_reloc_may_be_function_pointer): New function.
8709         (Scan::global_reloc_may_be_function_pointer): New function.
8710         * powerpc.cc (Scan::local_reloc_may_be_function_pointer): New function.
8711         (Scan::global_reloc_may_be_function_pointer): New function.
8712         * i386.cc (Scan::local_reloc_may_be_function_pointer): New function.
8713         (Scan::global_reloc_may_be_function_pointer): New function.
8714         * x86_64.cc (Scan::local_reloc_may_be_function_pointer): New function.
8715         (Scan::global_reloc_may_be_function_pointer): New function.
8716         (Scan::possible_function_pointer_reloc): New function.
8717         (Target_x86_64::can_check_for_function_pointers): New function.
8718         * gc.h (gc_process_relocs): Scan relocation types to determine if
8719         function pointers were taken for targets that support it.
8720         * icf.cc (Icf::find_identical_sections): Include functions for
8721         folding in safe ICF whose pointer is not taken.
8722         * icf.h (Secn_fptr_taken_set): New typedef.
8723         (fptr_section_id_): New member.
8724         (section_has_function_pointers): New function.
8725         (set_section_has_function_pointers): New function.
8726         (check_section_for_function_pointers): New function.
8727         * options.h: Fix comment for safe ICF option.
8728         * target.h (can_check_for_function_pointers): New function.
8729         * testsuite/Makefile.am: Add icf_safe_so_test test case.
8730         Modify icf_safe_test for X86-64.
8731         * testsuite/Makefile.in: Regenerate.
8732         * testsuite/icf_safe_so_test.cc: New file.
8733         * testsuite/icf_safe_so_test.sh: New file.
8734         * testsuite/icf_safe_test.cc (kept_func_3): New function.
8735         (main): Change to take pointer to function kept_func_3.
8736         * testsuite/icf_safe_test.sh (arch_specific_safe_fold): Check if safe
8737         folding is done correctly for X86-64.
8738
8739 2010-02-12  David S. Miller  <davem@davemloft.net>
8740
8741         * output.h (Output_reloc<SHT_REL>::Output_reloc): Add
8742         is_symbolless parameter.
8743         (Output_reloc<SHT_REL>::is_symbolless): New.
8744         (Output_reloc<SHT_REL>::is_symbolless_): New.
8745         (Output_reloc<SHT_REL>::type_): Decrease to 29 bits.
8746         (Output_reloc<SHT_RELA>::Output_reloc): Add is_symbolless parameter.
8747         (Output_reloc<SHT_RELA>::is_symbolless): New.
8748         (Output_data_reloc::add_global): Handle is_symbolless.
8749         (Output_data_reloc::add_global_relative): Likewise.
8750         (Output_data_reloc::add_local): Likewise.
8751         (Output_data_reloc::add_local_relative): Likewise.
8752         (Output_data_reloc::add_symbolless_global_addend): New.
8753         (Output_data_reloc::add_symbolless_local_addend): New.
8754         * output.cc (Output_reloc<SHT_REL>::Output_reloc): Handle
8755         is_symbolless.
8756         (Output_reloc::set_needs_dynsym_index): Test ->is_symbolless_
8757         instead of ->is_relative_
8758         (Output_reloc::write): Likewise.
8759         (Output_reloc::get_symbol_index): Return 0 when ->is_symbolless_
8760         (Output_reloc::write_rel): Simplify.
8761
8762         * sparc.cc (Target_sparc::Scan::local): Use
8763         ->add_symbolless_local_addend as needed.
8764         (Target_sparc::Scan::global): Use ->add_symbolless_global_addend as
8765         needed.  Also, emit appropriate unaligned vs. aligned dynamic reloc
8766         based upon relocation offset.
8767
8768 2010-02-11  Doug Kwan  <dougkwan@google.com>
8769
8770         * arm.cc (Target_arm::Scan::local): Fix bugs in relocation handling.
8771         (Target_arm::Scan::global): Ditto.  Also remove a comment before the
8772         beginning of function.
8773         (Target_arm::Relocate::relocate): Remove error messages for MOVW_ABS
8774         and MOVT_ABS relocations.  Those are non issued in scanning.  Fix
8775         parameter is_32bit in calls to should_apply_static_reloc.
8776         * testsuite/Makefile.am (check_SCRIPTS): Add arm_abs_global.sh.
8777         (check_DATA): Add arm_abs_global.stdout.
8778         (arm_abs_lib.o, libarm_abs.so, arm_abs_global.o, arm_abs_global,
8779         arm_abs_global.stdout): New rules.
8780         (MOSTLLYCLEANFILES): Add arm_abs_global
8781         * Makefile.in: Regenerate.
8782         * testsuite/arm_abs_global.s: New file.
8783         * testsuite/arm_abs_global.sh: Ditto.
8784         * testsuite/arm_abs_lib.s: Ditto.
8785
8786 2010-02-11  Ian Lance Taylor  <iant@google.com>
8787
8788         * gold.cc (queue_middle_gc_tasks): Use a separate blocker for each
8789         Read_relocs task.
8790         (queue_middle_tasks): Likewise, and also for Scan_relocs.  Run
8791         Allocate_commons_task first.
8792         * reloc.cc (Read_relocs::run): Pass next_blocker_ down to next
8793         task, rather than symtab_lock_.
8794         (Gc_process_relocs::~Gc_process_relocs): New function.
8795         (Gc_process_relocs::is_runnable): Check this_blocker_.
8796         (Gc_process_relocs::locks): Use next_blocker_ rather than
8797         blocker_.
8798         (Scan_relocs::~Scan_relocs): New function.
8799         (Scan_relocs::is_runnable): Check this_blocker_ rather than
8800         symtab_lock_.
8801         (Scan_relocs::locks): Drop symtab_lock_ and blocker_.  Add
8802         next_blocker_.
8803         * reloc.h (class Read_relocs): Drop symtab_lock_ and blocker_
8804         fields.  Add this_blocker_ and next_blocker_ fields.  Adjust
8805         constructor accordingly.
8806         (class Gc_process_relocs): Likewise.
8807         (class Scan_relocs): Likewise.
8808         * common.h (class Allocate_commons_task): Remove symtab_lock_
8809         field, and corresponding constructor parameter.
8810         * common.cc (Allocate_commons_tasK::is_runnable): Remove use of
8811         symtab_lock_.
8812         (Allocate_commons_task::locks): Likewise.
8813
8814 2010-02-11  Ian Lance Taylor  <iant@google.com>
8815
8816         * gold-threads.h (class Once): Define.
8817         (class Initialize_lock): Rewrite as child of Once.
8818         * gold-threads.cc (class Once_initialize): Define.
8819         (once_pointer_control): New static variable.
8820         (once_pointer, once_arg): New static variables.
8821         (c_run_once): New static function.
8822         (Once::Once, Once::run_once, Once::internal_run): New functions.
8823         (class Initialize_lock_once): Remove.
8824         (initialize_lock_control): Remove.
8825         (initialize_lock_pointer): Remove.
8826         (initialize_lock_once): Remove.
8827         (Initialize_lock::Initialize_lock): Move to gold-threads.h.
8828         (Initialize_lock::initialize): Rewrite.
8829         (Initialize_lock::do_run_once): New function.
8830         * archive.cc (Archive::interpret_header): Only clear name if it is
8831         not already empty.
8832         * fileread.cc: Include "gold-threads.h"
8833         (file_counts_lock): New static variable.
8834         (file_counts_initialize_lock): Likewise.
8835         (File_read::release): Only increment counts when using --stats.
8836         Use a lock around the increment.
8837         * parameters.cc (class Set_parameters_target_once): Define.
8838         (set_parameters_target_once): New static variable.
8839         (Parameters::Parameters): Move here from parameters.h.
8840         (Parameters::set_target): Rewrite.
8841         (Parameters::set_target_once): New function.
8842         (Parameters::clear_target): Move here and rewrite.
8843         * parameters.h (class Parameters): Update declarations.  Add
8844         set_parameters_target_once_ field.
8845         (Parameters::Parameters): Move to parameters.cc.
8846         (Parameters::clear_target): Likewise.
8847         * readsyms.cc (Read_symbols::do_group): Create a Start_group
8848         task.
8849         (Start_group::~Start_group): New function.
8850         (Start_group::is_runnable): New function.
8851         (Start_group::locks, Start_group::run): New functions.
8852         (Finish_group::run): Change saw_undefined to size_t.
8853         * readsyms.h (class Start_group): Define.
8854         (class Finish_group): Change saw_undefined_ field to size_t.
8855         (Finish_group::Finish_group): Remove saw_undefined and
8856         this_blocker parameters.  Change all callers.
8857         (Finish_group::set_saw_undefined): New function.
8858         (Finish_group::set_blocker): New function.
8859         * symtab.h (class Symbol_table): Change saw_undefined to return
8860         size_t.  Change saw_undefined_ field to size_t.
8861         * target-select.cc (Set_target_once::do_run_once): New function.
8862         (Target_selector::Target_selector): Initialize set_target_once_
8863         field.  Don't initialize lock_ and initialize_lock_ fields.
8864         (Target_selector::instantiate_target): Rewrite.
8865         (Target_selector::set_target): New function.
8866         * target-select.h (class Set_target_once): Define.
8867         (class Target_selector): Update declarations.  Make
8868         Set_target_once a friend.  Remove lock_ and initialize_lock_
8869         fields.  Add set_target_once_ field.
8870
8871 2010-02-10  Ian Lance Taylor  <iant@google.com>
8872
8873         * dirsearch.cc (Dirsearch::initialize): Add all blockers before
8874         queueing any tasks.
8875         * gold.cc (queue_middle_gc_tasks): Likewise.  Fix final blocker.
8876         (queue_middle_tasks): Add all blockers before queueing any tasks.
8877         (queue_final_tasks): Likewise.
8878         * token.h (Task_token::add_blockers): New function.
8879         * object.h (Input_objects::number_of_relobjs): New function.
8880
8881 2010-02-10  Ian Lance Taylor  <iant@google.com>
8882
8883         * i386.cc (Relocate::relocate_tls): A local symbol is final if not
8884         shared, not if not position independent.
8885         * x86_64.cc (Relocate::relocate_tls): Likewise.
8886         * testsuite/Makefile.am (check_PROGRAMS): Add tls_pie_pic_test.
8887         (tls_pie_pic_test): New target.
8888         * testsuite/Makefile.in: Rebuild.
8889
8890         * testsuite/Makefile.am (check_PROGRAMS): Add tls_pie_test.
8891         (tls_test_main_pie.o, tls_test_pie.o): New targets.
8892         (tls_test_file2_pie.o, tls_test_c_pie.o, tls_pie_test): Likewise.
8893         * testsuite/Makefile.in: Rebuild.
8894
8895 2010-02-09  David S. Miller  <davem@davemloft.net>
8896
8897         * sparc.cc (Target_sparc::Scan::local): Do not emit relocs other than
8898         R_SPARC_RELATIVE using ->add_local_relative().
8899         (Target_sparc::Scan::global): Likewise for ->add_global_relative().
8900
8901         * output.h (Output_data_dynamic::add_section_size): New method
8902         that takes two Output_data objects.
8903         (Output_data_dynamic::Dynamic_entry): Create storage for secondary
8904         entry param.  Handle it in initializers.
8905         * output.cc (Output_data_dynamic::Dynamic_entry::write): For
8906         DYNAMIC_SECTION_SIZE, add in second object size if non-NULL.
8907         * layout.h (Layout::add_target_dynamic_tags): Add dynrel_includes_plt
8908         arg.
8909         * layout.cc (Layout::add_target_dynamic_tags): If dynrel_includes_plt,
8910         and .rela.plt exists, set DT_REL{,A}SZ to sum of .rela.dyn and .rela.plt
8911         * arm.cc (Target_arm::do_finalize_sections): Update to pass false
8912         for dynrel_includes_plt.
8913         * i386.cc (Target_i386::do_finalize_sections): Likewise.
8914         * x86_64.cc (Target_x86_64::do_finalize_sections): Likewise.
8915         * sparc.cc (Target_sparc::make_plt_entry): Force .rela.dyn to be output
8916         before .rela.plt
8917         (Target_sparc::do_finalize_sections): Update to pass true for
8918         dynrel_includes_plt.
8919         * powerpc.cc (Target_powerpc::make_plt_entry): Force .rela.dyn to be
8920         output before .rela.plt
8921         (Target_powerpc::do_finalize_sections): Update to pass true for
8922         dynrel_includes_plt when 32-bit.
8923
8924 2010-02-08  Doug Kwan  <dougkwan@google.com>
8925
8926         * arm.cc (Arm_relobj::simple_input_section_output_address): New
8927         method.
8928         (Arm_relobj::section_needs_cortex_a8_stub_scanning,
8929         Arm_relobj::scan_section_for_cortex_a8_stubs,
8930         Arm_relobj::do_relocation_section): Instead of calling
8931         Output_section::output_address, use faster
8932         Arm_relobj::simple_input_section_output_address.
8933
8934 2010-02-08  David S. Miller  <davem@davemloft.net>
8935
8936         * sparc.cc (Target_sparc::Relocate::relocate): If relocation offset is
8937         unaligned for R_SPARC_16, R_SPARC_32, or R_SPARC_64, use the unaligned
8938         relocation helper function.
8939
8940         * sparc.cc (Target_sparc::Scan::local): Handle R_SPARC_GOTDATA_OP*
8941         just like R_SPARC_GOT{10,13,22}.
8942         (Target_sparc::Scan::local): Likewise.
8943         (Target_sparc::Relocate:relocate): Likewise.
8944
8945 2010-02-06  Ian Lance Taylor  <iant@google.com>
8946
8947         * configure.ac: Rewrite targetobjs duplicate removal code to use
8948         only shell constructs.
8949         * configure: Rebuild.
8950
8951 2010-02-05  Doug Kwan  <dougkwan@google.com>
8952
8953         PR 11247
8954         * arm.cc (Arm_relobj::section_is_scannable): New method.
8955         (Arm_relobj::section_needs_reloc_stub_scanning): Use it.
8956         (Arm_relobj::section_needs_cortex_a8_stub_scanning): Same.
8957
8958 2010-02-04  Doug Kwan  <dougkwan@google.com>
8959
8960         PR 11247
8961         * arm-reloc-property.cc (cstdio): Include.
8962         * configure.ac (targetobjs): Remove duplicates.
8963         * configure: Regenerate.
8964         * resolve.cc (Symbol_table::resolve): Explicit instantiate both
8965         big and little endian version for a given address size.
8966
8967 2010-02-03  Doug Kwan  <dougkwan@google.com>
8968
8969         * arm-reloc-property.cc
8970         (Arm_reloc_property_table::reloc_name_in_error_message): New method
8971         definition.
8972         * arm-reloc-property.h
8973         (Arm_reloc_property_table::get_implemented_static_reloc_property):
8974         New method definition.
8975         (Arm_reloc_property_table::reloc_name_in_error_message): New method
8976         declaration.
8977         * arm-reloc.def (THM_MOVT_ABS, THM_MOVT_PREL, THM_MOVT_BREL): Change
8978         overflow to N.
8979         (GOT_PREL): Change implemented to Y.
8980         * arm.cc (Target_arm::reloc_uses_thumb_bit): Remove method.
8981         (Target_arm::Relocate::reloc_needs_sym_origin): Remove method.
8982         (Arm_relocate_functions::movw_abs_nc): Remove method.
8983         (Arm_relocate_functions::movt_abs): Ditto.
8984         (Arm_relocate_functions::thm_movw_abs_nc): Ditto.
8985         (Arm_relocate_functions::thm_movt_abs): Ditto.
8986         (Arm_relocate_functions::movw_rel_nc): Ditto.
8987         (Arm_relocate_functions::movw_rel): Ditto.
8988         (Arm_relocate_functions::movt_rel): Ditto.
8989         (Arm_relocate_functions:thm_movw_rel_nc): Ditto.
8990         (Arm_relocate_functions:thm_movw_rel): Ditto.
8991         (Arm_relocate_functions:thm_movt_rel): Ditto.
8992         (Arm_relocate_functions::movw, Arm_relocate_functions::movt,
8993         (Arm_relocate_functions::thm_movw, Arm_relocate_functions::thm_movt):
8994         New method definitions.
8995         (Arm_relocation_functions::arm_grp_alu): Add assertion for group index.
8996         (Arm_relocation_functions::arm_grp_ldr): Ditto.
8997         (Arm_relocation_functions::arm_grp_ldrs): Ditto.
8998         (Arm_relocation_functions::arm_grp_ldc): Ditto.
8999         (Target_arm::Relocate::relocate): Check for non-static or
9000         unimplemented relocation code and exit early.  Change calls to
9001         Target_arm::reloc_uses_thumb_bit and
9002         Target_arm::Reloc::reloc_needs_sym_origin to use relocation property
9003         instead.  Refactor code to handle similar relocations to increase
9004         code sharing.  Remove check for unsupported relocation code in switch
9005         statement.
9006         (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc): Use
9007         relocation property table to find out size.  Change error message to
9008         print out the name of a relocation code instead of the numeric value.
9009         (Target_arm::scan_reloc_for_stub): Use relocation property table
9010         instead of calling Target_arm::reloc_uses_thumb_bit().
9011
9012 2010-02-02  Doug Kwan  <dougkwan@google.com>
9013
9014         * arm.cc (Target_arm::relocate_section): Do view adjustment for all
9015         types of relaxed input section.
9016
9017 2010-02-02  Doug Kwan  <dougkwan@google.com>
9018
9019         * Makefile.am (HFILES): Add arm-reloc-property.h.
9020         (DEFFILES): New.
9021         (TARGETSOURCES): Add arm-reloc-property.cc
9022         (ALL_TARGETOBJS): Add arm-reloc-property.$(OBJEXT)
9023         (libgold_a_SOURCES): $(DEFFILES)
9024         * Makefile.in: Regenerate.
9025         * arm-reloc-property.cc: New file.
9026         * arm-reloc-property.h: New file.
9027         * arm-reloc.def: New file.
9028         * arm.cc: Update comments.
9029         (arm-reloc-property.h): New included header.
9030         (arm_reloc_property_table): New global variable.
9031         (Target_arm::do_select_as_default_target): New method definition.
9032         * configure.tgt (armeb*-*-*,armbe*-*-*,arm*-*-*): Add
9033         arm-reloc-property to targ_extra_obj.
9034         * parameters.cc (set_parameters_target): Call
9035         Target::select_as_default_target().
9036         * target.h (Target::select_as_default_target): New method definition.
9037         (Target::do_select_as_default_target): Same.
9038
9039 2010-02-01  Doug Kwan  <dougkwan@google.com>
9040
9041         * arm.cc (Arm_exidx_fixup::Arm_exidx_fixup): Initialize
9042         first_output_text_section_.
9043         (Arm_exidx_fixup::first_output_text_section): New method definition.
9044         (Arm_exidx_fixup::first_output_text_section_): New data member.
9045         (Arm_exidx_fixup::process_exidx_section): Record the first text
9046         output section seen.
9047         (Arm_output_section::fix_exidx_coverage): Set correct linked section
9048         and entsize in output section header.
9049
9050 2010-01-29  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
9051
9052         * gold/arm.cc: Added support for the ARM relocations: R_ARM_THM_PC8,
9053         R_ARM_THM_PC12, R_ARM_THM_ALU_PREL_11_0.
9054         (Arm_relocate_functions::thm_alu11): New Method.
9055         (Arm_relocate_functions::thm_pc8): New Method.
9056         (Arm_relocate_functions::thm_pc12): New Method.
9057         (Target_arm::Scan::local): Handle the relocations.
9058         (Target_arm::Scan::global): Likewise.
9059         (Target_arm::Relocate::relocate): Likewise.
9060         (Target_arm:Relocatable_size_for_reloc::get_size_for_reloc): Likewise.
9061
9062 2010-01-29  Doug Kwan  <dougkwan@google.com>
9063
9064         * arm.cc (Target_arm::Scan::global): General PLTs for the same set
9065         of relocation types as ld.
9066
9067 2010-01-29  Doug Kwan  <dougkwan@google.com>
9068
9069         * arm.cc (Arm_relocate_functions::arm_branch_common) Change visibility
9070         to public.
9071         (Arm_relocate_functions::thumb_branch_common): Ditto.
9072         (Arm_relocate_functions::thm_call, Arm_relocate_functions::thm_jump24,
9073         Arm_relocate_functions::thm_xpc22, Arm_relocate_functions::plt32,
9074         Arm_relocate_functions::xpc25, Arm_relocate_functions::call,
9075         Arm_relocate_functions::jump24): Remove.
9076         (Target_arm::Relocate::relocate): Adjust code to call
9077         Arm_relocation_functions::arm_branch_common and
9078         Arm_relocation_functions::thumb_branch_common instead of their removed
9079         wrappers.  Merge switch-cases together to reduce source code size.
9080
9081 2010-01-29  Doug Kwan  <dougkwan@google.com>
9082
9083         * arm.cc (Arm_relobj::Arm_relobj): Initialize new data member
9084         output_local_symbol_count_needs_update_.
9085         (Arm_relobj::output_local_symbol_count_needs_update,
9086          Arm_relobj::set_output_local_symbol_count_needs_update,
9087          Arm_relobj::update_output_local_symbol_count): New methods.
9088         (Arm_relobj::output_local_symbol_count_needs_update_): New data
9089         member.
9090         (Arm_exidx_cantunwind::do_fixed_endian_write): Write address
9091         of pointed function as in a R_ARM_PREL31 relocation.
9092         (Arm_output_section<big_endian>::fix_exidx_coverage): Mark objects
9093         for output local symbol count updating.
9094         (Target_arm::do_relax): Update output local symbol counts in objects
9095         if necessary.
9096         * object.h (Sized_relobj::set_output_local_symbol_count): New method.
9097
9098 2010-01-29  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
9099
9100         * arm.cc: Added support for the ARM relocations:
9101         R_ARM_MOVW_BREL_NC, R_ARM_MOVT_BREL, R_ARM_MOVW_BREL,
9102         R_ARM_THM_MOVW_BREL_NC, R_ARM_THM_MOVT_BREL, R_ARM_THM_MOVW_BREL.
9103         (Arm_relocate_functions::movw_rel_nc): Renamed (was
9104         movw_prel_nc).
9105         (Arm_relocate_functions::movw_rel): New method.
9106         (Arm_relocate_functions::movt_rel): Renamed (was movt_prel).
9107         (Arm_relocate_functions::thm_movw_rel_nc): Renamed (was
9108         thm_movw_prel_nc).
9109         (Arm_relocate_functions::thm_movw_rel): New method.
9110         (Arm_relocate_functions::thm_movt_rel): Renamed (was
9111         thm_movt_prel).
9112         (Target_arm::Scan::local): Handle MOVW_BREL/MOVT_BREL
9113         relocations.
9114         (Target_arm::Scan::global): Likewise.
9115         (Target_arm::Relocate::relocate): Likewise.
9116         (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc):
9117         Likewise.
9118
9119 2010-01-27  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
9120
9121         * arm.cc: Added support for ARM group relocations.
9122         (Target_arm::reloc_needs_sym_origin): New method.
9123         (Arm_relocate_functions::calc_grp_kn): New method.
9124         (Arm_relocate_functions::calc_grp_residual): New method.
9125         (Arm_relocate_functions::calc_grp_gn): New method.
9126         (Arm_relocate_functions::arm_grp_alu): New Method.
9127         (Arm_relocate_functions::arm_grp_ldr): New Method.
9128         (Arm_relocate_functions::arm_grp_ldrs): New Method.
9129         (Arm_relocate_functions::arm_grp_ldc): New Method.
9130         (Target_arm::Scan::local): Handle the ARM group relocations.
9131         (Target_arm::Scan::global): Likewise.
9132         (Target_arm::Relocate::relocate): Likewise.
9133         (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc):
9134         Likewise.
9135
9136 2010-01-26  Doug Kwan  <dougkwan@google.com>
9137
9138         * arm.cc (set): Include.
9139         (class Arm_exidx_fixup): Change type of last_input_section_ to const
9140         pointer type.
9141         (Arm_output_section::Text_section_list): New type.
9142         (Arm_output_section::append_text_sections_to_list): New method.
9143         (Arm_output_section::fix_exidx_coverage): Ditto.
9144         (Arm_relobj::Arm_relobj): Initialize exidx_section_map_.
9145         (Arm_relobj::convert_input_section_to_relaxed_section): Use
9146         Relobj::set_section_offset() instead of
9147         Sized_relobj::invalidate_section_offset().
9148         (Arm_relobj::section_needs_reloc_stub_scanning): Add an extra
9149         parameter for section headers. Ignore relocation sections for
9150         unallocated sections and EXIDX sections.
9151         (Target_arm::fix_exidx_coverage): New method.
9152         (Target_arm::output_section_address_less_than): New type.
9153         (Arm_exidx_fixup::add_exidx_cantunwind_as_needed): Use index of the
9154         linked text section instead of the EXIDX section.
9155         (Arm_output_section::create_stub_group): Add an assertion to check
9156         that this is not an EXIDX output section.
9157         (Arm_output_section::append_text_sections_to_list): New method.
9158         (Arm_output_section::fix_exidx_coverage): Ditto.
9159         (Arm_relobj::scan_sections_for_stubs): Adjust call to
9160         Arm_relobj::section_needs_reloc_stub_scanning.
9161         (Target_arm::do_relax): Fix EXIDX output section coverage in the
9162         first pass.
9163         (Target_arm::fix_exidx_coverage): New method.
9164         * object.h (Relobj::set_output_section): New method.
9165         (Sized_relobj::invalidate_section_offset): Remove method.
9166         (Sized_relobj::do_invalidate_section_offset): Remove method.
9167         (Sized_relobj::do_set_section_offset): Handle offset value -1.
9168
9169 2010-01-25  Doug Kwan  <dougkwan@google.com>
9170
9171         * arm.cc (Arm_exidx_merged_section::do_output_offset):
9172         Fix warning due to signed and unsigned comparison on a 32-bit host.
9173
9174 2010-01-22  Doug Kwan  <dougkwan@google.com>
9175
9176         * arm.cc (Target_arm::do_relax): Record an output section for section
9177         offset adjustment it contains any stub table that has changed.
9178         * layout.cc (Layout::clean_up_after_relaxation): Adjust section
9179         offsets in an output section if necessary.
9180         * output.cc (Output_section::Output_section): Initialize
9181         section_offsets_need_adjustments_.
9182         (Output_section::add_input_section_for_script): Renamed to
9183         Output_section::add_simple_input_section.
9184         (Output_section::save_states): Add a comment.
9185         (Output_section::discard_states): New method defintion.
9186         (Output_section::adjust_section_offsets): Same.
9187         * output.h (Output_section::add_input_section_for_script): Renamed to
9188         Output_section::add_simple_input_section.
9189         (Output_section::discard_states): New method declaration.
9190         (Output_section::adjust_section_offsets): Same.
9191         (Output_section::section_offsets_need_adjustment,
9192         Output_section::set_section_offsets_need_adjustment): New method
9193         definitions.
9194         (Output_section::section_offsets_need_adjustment_): New data member.
9195         * script-sections.cc
9196         (Output_section_element_input::set_section_address): Adjust code for
9197         renaming of Output_section::add_input_section_for_script.
9198         (Orphan_output_section::set_section_address): Same.
9199
9200 2010-01-22  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
9201
9202         * gold/arm.cc (Target_arm): Updated fix_v4bx method and usage of
9203         Fix_v4bx enum values .
9204         * gold/options.h (General_options): New option definitions.
9205         (General_options::fix_v4bx): New method.
9206         (General_options::Fix_v4bx): New enum.
9207         * gold/options.cc (General_options::parse_fix_v4bx): New method.
9208         (General_options::parse_fix_v4bx_interworking): New method.
9209
9210 2010-01-22  Doug Kwan  <dougkwan@google.com>
9211
9212         * arm.cc (Arm_exidx_fixup): New class.
9213
9214 2010-01-21  Doug Kwan  <dougkwan@google.com>
9215
9216         * arm.cc (Arm_exidx_cantunwind, Arm_exidx_merged_section): New
9217         classes.
9218         (Arm_exidx_section_offset_map): New type.
9219
9220 2010-01-21  Doug Kwan  <dougkwan@google.com>
9221
9222         * arm.cc (Arm_exidx_input_section): New class.
9223         (Arm_relobj::exidx_input_section_by_link,
9224         Arm_relobj::exidx_input_section_by_shndx,
9225         Arm_relobj::make_exidx_input_section): New methods.
9226         (read_arm_attributes_section): Remove.
9227         (Arm_relobj::do_read_symbols): Look for ARM.exidx sections and record
9228         information about them.
9229         (Arm_dynobj::do_read_symbols): Move code in read_arm_attributes_section
9230         to here.
9231
9232 2010-01-20  Doug Kwan  <dougkwan@google.com>
9233
9234         * arm.cc (Target_arm::Arm_input_section_map): Change key type from
9235         Input_section_specifier to Section_id.
9236         (Target_arm::new_arm_input_section: Adjust code for change of key
9237         type.
9238         (Target_arm::find_arm_input_section): Ditto.
9239         * gc.h (object.h): Include for Section_id nand Section_id_hash.
9240         (Section_id): Remove.
9241         (Garbage_collection::Section_id_hash): Remove.
9242         * icf.h (object.h): Include for Section_id nand Section_id_hash.
9243         (Section_id): Remove.
9244         (Icf::Section_id_hash): Remove.
9245         * object.h (Section_id, Const_section_id, Section_id_hash,
9246         Const_section_id_hash): New type definitions.
9247         * output.cc (Output_section::add_relaxed_input_section): Change to
9248         use Const_section_id instead of Input_section_specifier as key type.
9249         (Output_section::add_merge_input_section): Ditto.
9250         (Output_section::build_relaxation_map): Change to use Section_id
9251         instead of Input_section_specifier as key type.
9252         (Output_section::convert_input_sections_in_list_to_relaxed_sections):
9253         Ditto.
9254         (Output_section::convert_input_sections_to_relaxed_sections): Change
9255         to use Const_section_id instead of Input_section_specifier as key type.
9256         (Output_section::find_merge_section): Ditto.
9257         (Output_section::find_relaxed_input_section): Ditto.
9258         * output.h (Input_section_specifier): Remove class.
9259         (Output_section::Output_section_data_by_input_section_map): Change
9260         key type to Const_section_id.
9261         (Output_section::Output_relaxed_input_section_by_input_section_map):
9262         Ditto.
9263         (Output_section::Relaxation_map): Change key type to Section_id.
9264
9265 2010-01-20  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
9266
9267         * gold/arm.cc: Added support for R_ARM_V4BX relocation
9268         (class Arm_v4bx_stub): New class.
9269         (DEF_STUBS): Updated definition to support v4_veneer_bx.
9270         (Stub_factory::make_arm_v4bx_stub): New method.
9271         (Stub_factory::elf32_arm_stub_v4_veneer_bx): New veneer template.
9272         (Stub_table::empty): Handle v4bx stubs.
9273         (Stub_table::add_arm_v4bx_stub): New method.
9274         (Stub_table::find_arm_v4bx_stub): New method.
9275         (Arm_relocate_functions::v4bx): New method.
9276         (Target_arm::fix_v4bx): New method.
9277         (Target_arm::Target_arm): Handle R_ARM_V4BX.
9278         (Stub_table::relocate_stubs): Likewise.
9279         (Stub_table::do_write): Likewise.
9280         (Stub_table::update_data_size_and_addralign): Likewise.
9281         (Stub_table::finalize_stubs):  Likewise.
9282         (Target_arm::Scan::local): Likewise.
9283         (Target_arm::Scan::global): Likewise.
9284         (Target_arm::do_finalize_sections): Likewise.
9285         (Target_arm::Relocate::relocate): Likewise.
9286         (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc):
9287         Likewise.
9288         (Target_arm::scan_reloc_for_stub): Likewise.
9289         (Target_arm::scan_reloc_section_for_stubs): Likewise.
9290
9291 2010-01-19  Ian Lance Taylor  <iant@google.com>
9292
9293         * output.cc (Output_section_headers::do_sized_write): Write large
9294         segment count to sh_info field.
9295         (Output_file_header::do_sized_write): For large segment count,
9296         write PN_XNUM to e_phnum field.
9297
9298 2010-01-15  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
9299
9300         * arm.cc (Arm_relocate_functions::thm_jump6): New function.
9301         (Arm_relocate_functions::thm_jump8): New function.
9302         (Arm_relocate_functions::thm_jump11): New function.
9303         (Target_arm::Scan::local): Handle R_ARM_THM_JUMP6, R_ARM_THM_JUMP8,
9304         R_ARM_THM_JUMP11.
9305         (Target_arm::Scan::global): Likewise.
9306         (Target_arm::Relocate::relocate): Likewise.
9307         (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc):
9308         Likewise.
9309
9310 2010-01-14  Doug Kwan  <dougkwan@google.com>
9311
9312         * arm.cc (map, utility): Include headers.
9313         (Target_arm::apply_cortex_a8_workaround): New method.
9314         (Arm_relobj::do_relocate_sections): Apply any Cortex-A8 workaround.
9315         (Target_arm::Scan::local): Handle R_ARM_THM_JUMP24, R_ARM_THM_JUMP19.
9316         (Target_arm::Scan::global): R_ARM_THM_JUMP19.
9317         (Target_arm::do_finalize_sections): Set fix_cortex_a8_ according to
9318         the --[no-]fix-cortex-a8 command line options.
9319         (Target_arm::Relocate::relocate): Handle R_ARM_JUMP19.
9320         (Target_arm::relocate_stub): Use addend in instruction template.
9321         * options.h (DEFINE_bool): Set the user-set flag.
9322         (General_options): Add --[no-]-fix-cortex options.
9323         * output.cc (Output_section::convert_input_sections_to_relaxed_sections)
9324         : Update fast look-up map after conversion.
9325
9326 2010-01-14  Sriraman Tallam  <tmsriram@google.com>
9327
9328         * object.cc (Sized_relobj::do_layout): Change to call layout_gnu_stack
9329         in the first pass of do_layout.
9330
9331 2010-01-13  Doug Kwan  <dougkwan@google.com>
9332
9333         * arm.cc (Arm_relobj::section_needs_reloc_stub_scanning,
9334         Arm_relobj::scan_sections_for_stubs): Rearrange code to avoid an
9335         apparent compiler problem of not folding static constant integral
9336         data members of elfcpp::Elf_sizes<32>.
9337
9338 2010-01-13  Doug Kwan  <dougkwan@google.com>
9339
9340         * arm.cc (Arm_relobj::section_needs_reloc_stub_scanning,
9341         Arm_relobj::section_needs_cortex_a8_stub_scanning,
9342         Arm_relobj::scan_section_for_cortex_a8_erratum,
9343         Arm_relobj::scan_span_for_cortex_a8_erratum): New methods.
9344         (Arm_relobj::scan_sections_for_stubs): Move code deciding what
9345         sections to scan for relocation stubs into a new method
9346         Arm_relobj::section_needs_reloc_stub_scanning.  Handle both
9347         relocation and Cortex-A8 stub scanning.
9348         (Target_arm::do_relax): Force stubs to be after stubbed sections
9349         if fixing the Cortex-A8 erratum.  Remove all Cortex-A8 stubs at
9350         the beginning of a new relaxation pass.  Update a comment.
9351         (Target_arm::scan_span_for_cortex_a8_erratum): New method definition.
9352
9353 2010-01-12  Ian Lance Taylor  <iant@google.com>
9354
9355         * target-reloc.h (visibility_error): New inline function.
9356         (relocate_section): Call visibility_error.
9357         * testsuite/Makefile.am (check_DATA): Add protected_3.err.
9358         (MOSTLYCLEANFILES): Likewise.
9359         (protected_4_pic.o, protected_3.err): New targets.
9360         * testsuite/protected_4.cc: New file.
9361
9362 2010-01-12  Doug Kwan  <dougkwan@google.com>
9363
9364         * arm.cc (Cortex_a8_reloc): New class.
9365         (Target_arm::Target_arm): Initialize new data members fix_cortex_a8_
9366         and cortex_a8_relocs_info_.
9367         (Target_arm::fix_cortex_a8): New method definition.
9368         (Target_arm::Cortex_a8_relocs_info): New type.
9369         (Target_arm::fix_cortex_a8_, Target_arm::cortex_a8_relocs_info_):
9370         New data member declarations.
9371         (Target_arm::scan_reloc_for_stub): Record information about
9372         relocations for THUMB branches that might be exempted from the
9373         Cortex-A8 workaround.
9374         (Target_arm::do_relax): Clear all Cortex-A8 relocation information
9375         at the beginning of a relaxation pass.
9376
9377 2010-01-12  Doug Kwan  <dougkwan@google.com>
9378
9379         * arm.cc (Arm_relobj::mapping_symbols_info_): New data member.
9380         (Arm_relobj::Mapping_symbol_position,
9381          Arm_reloj::Mapping_symbol_position_less,
9382          Arm_relobj::Mapping_symbols_info): New types.
9383         (Target_arm::is_mapping_symbol_name): New method definition.
9384         (Arm_relobj::do_count_local_symbols): Save information about mapping
9385         symbols.
9386
9387 2010-01-11  Doug Kwan  <dougkwan@google.com>
9388
9389         * arm.cc (Arm_relocate_functions::thumb32_branch_offset,
9390         Arm_relocate_functions::thumb32_branch_upper,
9391         Arm_relocate_functions::thumb32_branch_lower,
9392         Arm_relocate_functions::thumb32_cond_branch_offset,
9393         Arm_relocate_functions::thumb32_cond_branch_upper,
9394         Arm_relocate_functions::thumb32_cond_branch_lower,
9395         Arm_relocate_functions::thm_jump19): New methods to handle THUMB
9396         branch offset encoding.
9397         (Arm_relocate_functions::thumb_branch_common): Use new branch
9398         offset encoding methods to avoid code duplication.
9399         (Stub_template::Stub_template) Handle THUMB16_SPECIAL_TYPE.
9400         (Stub_addend_reader::operator()): Use new branch encoding method
9401         to avoid code duplication.
9402
9403 2010-01-11  Doug Kwan  <dougkwan@google.com>
9404
9405         * arm.cc (Arm_relobj::do_gc_process_relocs): New method.
9406         (Target_arm::do_finalize_sections): Define special EXIDX section
9407         symbols only if referenced.
9408         * gc.h (Garbage_collection::add_reference): New method.
9409         (gc_process_relocs): Use Garbage_collection::add_reference to avoid
9410         code duplication.
9411
9412 2010-01-11  Ian Lance Taylor  <iant@google.com>
9413
9414         * script.cc (Version_script_info::build_expression_list_lookup):
9415         Change complaing about duplicate wildcard match from error to
9416         warning.
9417
9418         * script.cc (class Lazy_demangler): Recreate--revert part of patch
9419         of 2009-12-30.
9420         (Version_script_info::Version_script_info): Initialize globs_,
9421         default_version_, default_is_global_, and exact_.  Don't
9422         initialize globals_ or locals_.
9423         (Version_script_info::build_lookup_tables): Build local symbols
9424         first.
9425         (Version_script_info::unquote): New function.
9426         (Version_script_info::add_exact_match): New function.
9427         (Version_script_info::build_expression_list_lookup): Remove lookup
9428         parameter.  Add is_global parameter.  Change all callers.  Handle
9429         wildcard pattern specially.  Unquote pattern.  Call
9430         add_exact_match.
9431         (Version_script_info::get_name_to_match): New function.
9432         (Version_script_info::get_symbol_version): New function.
9433         (Version_script_info::get_symbol_version_helper): Remove.
9434         (Version_script_info::check_unmatched_names): Call unquote.
9435         * script.h (class Version_script_info): Change get_symbol_version
9436         to be non-inline and add is_global parameter; change all callers.
9437         Rewrite symbol_is_local.  Update declarations.  Define struct
9438         Version_tree_match, Exact, Globs.  Don't define struct Lookup.
9439         Remove globals_ and locals_ members.  Add exact_, globs_,
9440         default_version_, is_global_.
9441         (Version_script_info::Glob): Remove pattern, add expression and
9442         is_global.  Update constructor.  Change all callers.
9443         * dynobj.cc (Versions::finalize): Mark the version symbol as the
9444         default version.
9445         (Versions::symbol_section_contents): If a symbol is undefined, or
9446         defined in a dynamic object, set the version index to
9447         VER_NDX_LOCAL.
9448         * symtab.cc (Symbol_table::add_from_relobj): Don't call
9449         symbol_is_local.
9450         (Symbol_table::add_from_pluginobj): Likewise.
9451         * testsuite/ver_matching_test.sh: blaza1 and blaza go into V2.
9452
9453 2010-01-11  Doug Kwan  <dougkwan@google.com>
9454
9455         * Makefile.am (incremental_dump_DEPENDENCIES): Add libintl dependency.
9456         (incremental_dump_LDADD): Add linking option for libintl.
9457         * Makefile.in: Regenerate.
9458
9459 2010-01-11  H.J. Lu  <hongjiu.lu@intel.com>
9460
9461         PR gold/11144
9462         * testsuite/Makefile.am (dynamic_list.stdout): Use --dyn-syms
9463         instead of -Ds.
9464         * testsuite/Makefile.in: Regenerated.
9465
9466 2010-01-10  Doug Kwan  <dougkwan@google.com>
9467
9468         * options.h (DEFINE_var): Use parentheses around argument varname__
9469         in macro body to avoid any unintended subsequent substitutions.
9470
9471 2010-01-10  Ian Lance Taylor  <iant@google.com>
9472
9473         * resolve.cc (Symbol_table::resolve): Add symbols to list of ODR
9474         candidates before doing symbol resolution.
9475
9476         * resolve.cc (Symbol_table::resolve): Add symbols to the list of
9477         ODR candidates if only one is weak.
9478
9479 2010-01-08  Ian Lance Taylor  <iant@google.com>
9480
9481         * script.cc (Version_script_info::build_expression_list_lookup):
9482         Don't warn about ambiguous version, just record the ambiguity.
9483         (Version_script_info::get_symbol_version_helper): Give error if
9484         version is ambiguous.
9485
9486 2010-01-08  Doug Kwan  <dougkwan@google.com>
9487
9488         * arm.cc (Stub_table::Stub_table): Initalize cortex_a8_stubs_,
9489         prev_data_size_ and prev_addralign_.  Remove initializer for
9490         deleted data member has_been_changed_.
9491         (Stub_table::empty): Look at both reloc_stubs_ and cortex_a8_stubs_
9492         to determine if the table is empty.
9493         (Stub_table::has_been_changed, Stub_table_set_has_been_changed):
9494         Remove.
9495         (Stub_table::add_reloc_stub): Define method in class definition
9496         instead of just declaring it there.
9497         (Stub_table::add_cortex_a8_stub): New method definition.
9498         (Stub_table::update_data_size_and_addralign): Ditto.
9499         (Stub_table::finalize_stubs): Ditto.
9500         (Stub_table::apply_cortex_a8_workaround_to_address_range): Ditto.
9501         (Stub_table::do_addralign_): Return address alignment in the
9502         (Stub_table::do_reset_address_and_file_offset): Define method in
9503         class definition instead of declaring it there.  Set current data
9504         size to be the data size of the previous pass.
9505         (Stub_table::set_final_data_size): Use current data size as the
9506         final data size.
9507         (Stub_table::relocate_stub): Change parameter type of stub from
9508         Reloc_stub pointer to Stub pointer.
9509         (Stub_table::addralign_, Stub_table::has_been_changed_): Remove.
9510         (Stub_table::Cortex_a8_stub_list): New typedef.
9511         (Stub_table::cortex_a8_stubs_, Stub_table::prev_data_size_,
9512          Stub_table::prev_addralign_): New data member.
9513         (Arm_relobj::Arm_relobj): Initialize data member
9514         section_has_cortex_a8_workaround_.
9515         (Arm_relobj::section_has_cortex_a8_workaround,
9516          Arm_relobj::mark_section_for_cortex_a8_workaround): New method
9517          definitions.
9518         (Arm_relobj::section_has_cortex_a8_workaround_): New data member
9519         declarations.
9520         (Target_arm::relocate_stub): Change parameter type of stub from
9521         Reloc_stub pointer to Stub pointer.
9522         (Insn_template::size, Insn_template::alignment): Handle
9523         THUMB16_SPECIAL_TYPE.
9524         (Stub_table::remove_all_cortex_a8_stubs, Stub_table::finalize_stubs,
9525          Stub_table::update_data_size_and_addralign,
9526          Stub_table::apply_cortex_a8_workaround_to_address_range): New method
9527         definitions.
9528         (Stub_table::relocate_stubs): Handle Cortex-A8 stubs.
9529         (Stub_table::do_write): Ditto.
9530         (Target_arm::do_relax): Adjust code for changes in Stub_table.
9531
9532 2010-01-08  Ian Lance Taylor  <iant@google.com>
9533
9534         PR 11108
9535         * symtab.h (class Symbol): Remove fields is_target_special_ and
9536         has_plt_offset_.  Add field is_defined_in_discarded_section_.
9537         (Symbol::is_defined_in_discarded_section): New function.
9538         (Symbol::set_is_defined_in_discarded_section): New function.
9539         (Symbol::has_plt_offset): Rewrite.
9540         (Symbol::set_plt_offset): Verify that new offset is not -1U.
9541         * symtab.cc (Symbol::init_fields): Initialize plt_offset_ to -1U.
9542         Don't initialize is_target_special_ or has_plt_offset_.
9543         Initialize is_defined_in_discarded_section_.
9544         (Symbol_table::add_from_relobj): If appropriate, set
9545         is_defined_in_discarded_section.
9546         * resolve.cc (Symbol::override_base_with_special): Don't test
9547         is_target_special_.  Change has_plt_offset_ to has_plt_offset().
9548         * target-reloc.h (relocate_section): Do special handling for
9549         symbols defined in discarded sections for global symbols as well
9550         as local symbols.
9551
9552 2010-01-08  Ian Lance Taylor  <iant@google.com>
9553
9554         * dynobj.cc (big_endian>::find_dynsym_sections): Set pi to NULL in
9555         the SHT_SYMTAB case.
9556
9557 2010-01-08  Ian Lance Taylor  <iant@google.com>
9558
9559         * object.cc (Sized_relobj::do_layout): Don't get confused if
9560         layout_eh_frame returns NULL.
9561
9562 2010-01-08  Ian Lance Taylor  <iant@google.com>
9563
9564         PR 11084
9565         * dynobj.cc (Sized_dynobj::find_dynsym_sections): If there is no
9566         dynamic symbol table, use the normal symbol table.
9567         (Sized_dynobj::do_read_symbols): Remove assertion about type of
9568         symbol table.
9569
9570 2010-01-08  Ian Lance Taylor  <iant@google.com>
9571
9572         PR 11072
9573         * layout.cc (Layout::include_section): Remove .gnu_debuglink
9574         sections.
9575
9576 2010-01-08  H.J. Lu  <hongjiu.lu@intel.com>
9577
9578         * version.cc (print_version): Change to "Copyright 2010".
9579
9580 2010-01-08  Ian Lance Taylor  <iant@google.com>
9581
9582         PR 10287
9583         PR 11063
9584         * i386.cc (class Target_i386): Change return type of plt_section
9585         to be non-const.
9586         (class Output_data_plt_i386): Add tls_desc_rel_ field.
9587         (Output_data_plt_i386::Output_data_plt_i386): Initialize
9588         tls_desc_rel_ field.
9589         (Output_data_plt_i386::rel_tls_desc): New function.
9590         (Target_i386::rel_tls_desc_section): New function.
9591         (Target_i386::Scan::local): Rewrite R_386_TLS_GOTDESC handling.
9592         (Target_i386::Scan::global): For R_386_TLS_GOTDESC put
9593         R_386_TLS_DESC reloc in rel_tls_desc_section.
9594         * x86_64.cc (class Target_x86_64): Add tlsdesc_reloc_info_ field.
9595         Define struct Tlsdesc_info.
9596         (Target_x86_64::Target_x86_64): Initialize tlsdesc_reloc_info_.
9597         (Target_x86_64::do_reloc_symbol_index): New function.
9598         (Target_x86_64::add_tlsdesc_info): New function.
9599         (class Output_data_plt_x86_64): Add tlsdesc_rel_ field.
9600         (Output_data_plt_x86_64::Output_data_plt_x86_64): Initialize
9601         tlsdesc_rel_ field.
9602         (Output_data_plt_x86_64::rela_plt): Rename from rel_plt.  Change
9603         all callers.
9604         (Output_data_plt_x86_64::rela_tlsdesc): New function.
9605         (Target_x86_64::rela_tlsdesc_section): New function.
9606         (Target_x86_64::Scan::local): Rewrite R_X86_64_GOTPC32_TLSDESC
9607         handling.
9608         (Target_x86_64::Scan::global): For R_X86_64_GOTPC32_TLSDESC put
9609         (Target_x86_64::do_reloc_addend): New function.
9610         R_X86_64_TLSDESC reloc in rela_tlsdesc_section.
9611         * output.h (class Output_reloc) [SHT_REL]: Add new constructor
9612         declarations.  Define TARGET_CODE.  Add arg field to u1_ union.
9613         (Output_reloc::type): New function.
9614         (Output_reloc::is_local_section_symbol): Check for TARGET_CODE.
9615         (Output_reloc::is_target_specific): New function.
9616         (Output_reloc::target_arg): New function.
9617         (class Output_reloc) [SHT_RELA]: Add four new constructors for
9618         absolute relocs and target specific relocs.
9619         (class Output_data_reloc) [SHT_REL]: Add add_absolute and
9620         add_target_specific.
9621         (class Output_data_reloc) [SHT_RELA]: Likewise.
9622         * output.cc (Output_reloc::Output_reloc): Add four new versions
9623         for absolute relocs and target specific relocs.
9624         (Output_reloc::set_needs_dynsym_index): Add TARGET_CODE case.
9625         (Output_reloc::get_symbol_index): Likewise.
9626         (Output_reloc::local_section_offset): Check that local_sym_index_
9627         is not TARGET_CODE or 0.
9628         (Output_reloc::symbol_value): Likewise.
9629         (Output_reloc::write) [SHT_RELA]: Call target for target specific
9630         reloc.
9631         * target.h (class Target): Add reloc_symbol_index and reloc_addend
9632         functions.  Add do_reloc_symbol_index and do_reloc_addend virtual
9633         functions.
9634         * layout.cc (add_target_dynamic_tags): Use output section for
9635         DT_PLTRELSZ and DT_JMPREL.
9636
9637 2010-01-07  Ian Lance Taylor  <iant@google.com>
9638
9639         PR 11061
9640         * output.h (class Output_reloc) [SHT_RELA]: Add is_relative
9641         function.
9642         (class Output_data_reloc_generic): Define.
9643         (class Output_data_reloc_base): Change base class to
9644         Output_data_reloc_generic.  Change add() method to call
9645         bump_relative_reloc_count for a relative reloc.  Remove
9646         sort_relocs_ field.
9647         * output.cc (Output_data_reloc_base::do_write): Change sort_reloc_
9648         to sort_relocs().
9649         * layout.cc (Layout::add_target_dynamic_tags): Change dyn_rel to
9650         Output_data_reloc_generic*.  Add DT_RELCOUNT/DT_RELACOUNT tag if
9651         appropriate.
9652         * layout.h (class Layout): Update declaration.
9653
9654 2010-01-07  Ian Lance Taylor  <iant@google.com>
9655
9656         * output.h (class Output_data): Add const version of
9657         output_section and do_output_section.
9658         (class Output_section_data): Add const version of
9659         do_output_section.
9660         (class Output_section): Likewise.
9661         * layout.cc (Layout::add_target_dynamic_tags): New function.
9662         * layout.h (class Layout): Update declarations.
9663         * arm.cc (Target_arm::do_finalize_sections): Use
9664         add_target_dynamic_tags.
9665         * i386.cc (Target_i386::do_finalize_sections): Likewise.
9666         * powerpc.cc (Target_powerpc::do_finalize_sections): Likewise.
9667         * sparc.cc (Target_sparc::do_finalize_sections): Likewise.
9668         * x86_64.cc (Target_x86_64::do_finalize_sections): Likewise.
9669
9670 2010-01-07  Ian Lance Taylor  <iant@google.com>
9671
9672         PR 11042
9673         * copy-relocs.cc (Copy_relocs::emit_copy_reloc): Mark the dynamic
9674         object as needed.
9675
9676 2010-01-07  Dmitry Gorbachev  <d.g.gorbachev@gmail.com>
9677             Ian Lance Taylor  <iant@google.com>
9678
9679         PR 11019
9680         * object.cc: Instantiate Xindex::initialize_symtab_xindex and
9681         Xindex::read_symtab_xindex.
9682
9683 2010-01-07  Doug Kwan  <dougkwan@google.com>
9684
9685         * arm.cc (Insn_template::Type): New enum value THUMB16_SPECIAL_TYPE.
9686         (Insn_template::thumb16_bcond_insn): New method declaration.
9687         (Insn_template): Fix spelling.
9688         (Stub::thumb16_special): New method declaration.
9689         (Stub::do_write): Define virtual method which was previously pure
9690         virtual.
9691         (Stub::do_thumb16_special): New method declaration.
9692         (Stub::do_fixed_endian_write): New template member.
9693         (Reloc_stub::do_write): Remove.
9694         (Reloc_stub::do_fixed_endian_write): Remove.
9695         (Cortex_a8_stub): New class definition.
9696         (Stub_factory::make_cortex_a8_stub): New method definition.
9697         (Stub_factory::Stub_factory): Add missing static storage class
9698         qualifier for elf32_arm_stub_a8_veneer_blx.
9699
9700 2010-01-07  Ian Lance Taylor  <iant@google.com>
9701
9702         PR 10980
9703         * options.h (class General_options): Add --warn-unresolved-symbols
9704         and --error-unresolved-symbols.
9705         * errors.cc (Errors::undefined_symbol): Implement
9706         --warn-unresolved-symbols.
9707
9708         * options.h (class General_options): Add -z text and -z textoff.
9709         * layout.cc (Layout::finish_dynamic_section): Implement -z text.
9710
9711 2010-01-06  Sriraman Tallam  <tmsriram@google.com>
9712
9713         * gc.h (Garbage_collection::Cident_section_map): New typedef.
9714         (Garbage_collection::cident_sections): New function.
9715         (Garbage_collection::add_cident_section): New function.
9716         (Garbage_collection::cident_sections_): New member.
9717         (gc_process_relocs): Add references to sections whose names are C
9718         identifiers.
9719         * gold.h (cident_section_start_prefix): New constant.
9720         (cident_section_stop_prefix): New constant.
9721         (is_cident): New function.
9722         * layout.cc (Layout::define_section_symbols): Replace string constants
9723         with the newly defined constants.
9724         * object.cc (Sized_relobj::do_layout): Track sections whose names are
9725         C identifiers.
9726         * testsuite/Makefile.am: Add gc_orphan_section_test.
9727         * testsuite/Makefile.in: Regenerate.
9728         * testsuite/gc_orphan_section_test.cc: New file.
9729         * testsuite/gc_orphan_section_test.sh: New file.
9730
9731 2010-01-06  Ian Lance Taylor  <iant@google.com>
9732
9733         PR 10980
9734         * options.h (class General_options): Add --warn-shared-textrel.
9735         * layout.cc (Layout::finish_dynamic_section): Implement
9736         --warn-shared-textrel.
9737
9738         PR 10980
9739         * options.h (class General_options): Add --warn-multiple-gp.
9740
9741 2010-01-06  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
9742
9743         * Makefile.am (incremental_dump_DEPENDENCIES): Remove
9744         $(THREADSLIB) and $(LIBDL).
9745         * Makefile.in: Rebuild.
9746
9747 2010-01-06  Ian Lance Taylor  <iant@google.com>
9748
9749         PR 10980
9750         * options.cc (General_options::parse_section_start): New function.
9751         (General_options::section_start): New function.
9752         (General_options::General_options): Initialize all members.
9753         * options.h: Include <map>
9754         (class General_options): Add --section-start.  Add section_starts_
9755         member.
9756         * layout.cc (Layout::attach_allocated_section_to_segment): If
9757         --section-start was used, set the address of the segment.  Remove
9758         local sort_sections.
9759         (Layout::relaxation_loop_body): If the address of the load segment
9760         has been set by --section-start, don't use it.
9761         * output.h (Output_segment::update_flags_for_output_section): New
9762         function.
9763         * output.cc (Output_segment::add_output_section): Call
9764         update_flags_for_output_section.
9765
9766 2010-01-05  Ian Lance Taylor  <iant@google.com>
9767
9768         PR 10980
9769         * options.h (class General_options): Add --undefined-version.
9770         * script.cc (struct Version_expression): Add was_matched_by_symbol
9771         field.
9772         (Version_script_info::matched_symbol): New function.
9773         (Version_script_info::get_symbol_version_helper): Call
9774         matched_symbol.
9775         (Version_script_info::check_unmatched_names): New function.
9776         * script.h (class Version_script_info): Update declarations.
9777         * gold.cc (queue_middle_tasks): Handle --no-undefined-version.
9778
9779         * options.h (class General_options): Use DEFINE_bool_alias for
9780         allow_multiple_definition.
9781         * resolve.cc (Symbol_table::should_override): Don't test
9782         allow_multiple_definition.
9783
9784         PR 10980
9785         * options.h (class General_options): Add --cref.
9786         * main.cc (main): Print cref table if --cref.  Don't close mapfile
9787         until after printing cref table.
9788         * cref.cc: Include "symtab.h".
9789         (class Cref_inputs): Define Cref_table_compare and Cref_table.
9790         (Cref_table_compare::operator()): New function.
9791         (Cref_inputs::gather_cref): New function.
9792         (filecol): New static const.
9793         (Cref_inputs::print_cref): New function.
9794         (Cref::print_cref): New function.
9795         * cref.h: Include <cstdio>.
9796         (class Cref): Update declarations.
9797         * mapfile.h (Mapfile::file): New function.
9798         * object.h (class Object): Define Symbols.  Declare virtual
9799         do_get_global_symbols.
9800         (Object::get_global_symbols): New function.
9801         * object.cc (Input_objects::add_object): Pass object to cref_ if
9802         --cref.
9803         (Input_objects::archive_start): Likewise.
9804         (Input_objects::archive_stop): Likewise.
9805         (Input_objects::print_cref): New function.
9806         * dynobj.h (Sized_dynobj::do_get_global_symbols): New function.
9807         * dynobj.cc (big_endian>::do_add_symbols): Create symbols_ if
9808         --cref.
9809         * plugin.cc (Sized_pluginobj::do_get_global_symbols): New
9810         function.
9811         * plugin.h (class Sized_pluginobj): Update declarations.
9812
9813 2010-01-05  Ian Lance Taylor  <iant@google.com>
9814
9815         * symtab.cc (Symbol_table::add_from_object): Rename def parameter
9816         to is_default_version.  Rename insdef to insdefault.
9817         (Symbol_table::add_from_relobj): Rename def to is_default_version
9818         and local to is_forced_local.
9819         (Symbol_table::add_from_pluginobj): Likewise.
9820         (Symbol_table::add_from_dynobj): Likewise.
9821         (Symbol_table::define_special_symbol): Rename insdef to
9822         insdefault.
9823
9824 2010-01-04  Ian Lance Taylor  <iant@google.com>
9825
9826         PR 10980
9827         * options.h (class General_options): Add
9828         --allow-multiple-definition and -z muldefs.
9829         * resolve.cc (Symbol_table::should_override): Don't warn about a
9830         multiple symbol definition if --allow-multiple-definition or -z
9831         muldefs.
9832
9833         PR 10980
9834         * options.h (class General_options): Add --add-needed and
9835         --copy-dt-needed-entries.  Tweak --as-needed help entry.
9836         * object.cc (Input_objects::check_dynamic_dependencies): Give an
9837         error if --copy-dt-needed-entries aka --add-needed is used and
9838         would cause a change in behaviour.
9839
9840         PR 10980
9841         * options.h (class General_options): Add -G as a short version of
9842         --shared.  Add no-op options -assert, -g, and -i.
9843
9844 2010-01-04  Sriraman Tallam  <tmsriram@google.com>
9845
9846         * gc.h (gc_process_relocs): Call is_section_foldable_candidate to
9847         check for .text or .gnu.linkonce.t sections.
9848         * icf.cc (Icf::find_identical_sections): Ditto.
9849         Change the detection for mangled function name within the section
9850         name.
9851         * icf.h (is_section_foldable_candidate): New function.
9852
9853 2009-12-30  Ian Lance Taylor  <iant@google.com>
9854
9855         PR 10980
9856         * options.h (class General_options): Permit two dashes with
9857         --retain-symbols-file.
9858
9859 2009-12-30  Ian Lance Taylor  <iant@google.com>
9860
9861         PR 10979
9862         * layout.cc (Layout::relaxation_loop_body): If -Ttext was used,
9863         don't put the file header and segment headers in the text
9864         segment.
9865
9866         PR 10979
9867         * common.cc (Sort_commons::operator()): Stabilize sort when both
9868         entries are NULL.
9869         (Symbol_table::do_allocate_commons_list): When allocating common
9870         symbols, skip a symbol which is no longer common.
9871         * symtab.h (Symbol::is_common): Test whether the symbol comes from
9872         an object before checking its type.
9873         * testsuite/common_test_2.c: New file.
9874         * testsuite/common_test_3.c: New file.
9875         * testsuite/Makefile.am (check_PROGRAMS): Add common_test_2.
9876         (common_test_2_SOURCES, common_test_2_DEPENDENCIES): Define.
9877         (common_test_2_LDFLAGS, common_test_2_LDADD): Define.
9878         (common_test_2_pic.o, common_test_2.so): New targets.
9879         (common_test_3_pic.o, common_test_3.so): New targets.
9880         * testsuite/Makefile.in: Rebuild.
9881
9882         PR 10979
9883         * script.cc (read_input_script): If we see a new SECTIONS clause,
9884         and we have added an input section, give an error.
9885         * layout.h (class Layout): Add have_added_input_section function.
9886         Add have_added_input_section_ field.
9887         * layout.cc (Layout::Layout): Initialize
9888         have_added_input_section_.
9889         (Layout::layout): Set have_added_input_section_.
9890         (Layout::layout_eh_frame): Likewise.
9891
9892 2009-12-30  Ian Lance Taylor  <iant@google.com>
9893
9894         PR 10931
9895         * options.h (class General_options): Add --sort-common option.
9896         * symtab.h (class Symbol_table): Define Sort_commons_order enum.
9897         * common.cc (Sort_common): Add sort_order parameter to
9898         constructor.  Add sort_order_ field.
9899         (Sort_commons::operator): Check sort_order_.
9900         (Symbol_table::allocate_commons): Determine the sort order.
9901         (Symbol_table::do_allocate_commons): Add sort_order parameter.
9902         Change all callers.
9903         (Symbol_table::do_allocate_commons_list): Likewise.
9904
9905 2009-12-30  Ian Lance Taylor  <iant@google.com>
9906
9907         PR 10916
9908         * symtab.cc (Symbol_table::add_from_relobj): When not exporting
9909         symbols from this object, don't change the visibility of an
9910         undefined symbol.
9911         * testsuite/exclude_libs_test_1.c (lib1_ref): New function.
9912
9913 2009-12-30  Ian Lance Taylor  <iant@google.com>
9914
9915         PR 10861
9916         * script.h (class Version_script_info): Define Language enum.
9917         Update declarations.  Define Glob, Exact, and Lookup types.  Add
9918         new fields globals_, locals_, and is_finalized_.
9919         * script.cc: Various formatting fixes.
9920         (class Parser_closure): Change language_stack_ from a vector of
9921         std::string to one of Version_script_info::Language.  Adjust all
9922         uses accordingly.
9923         (class Lazy_demangler): Remove.
9924         (struct Version_expression): Change language from std::string to
9925         Version_script_info::Language.
9926         (Version_script_info::Version_script_info): New function.
9927         (Version_script_info::~Version_script_info): Don't call clear.
9928         (Version_script_info::finalize): New function.
9929         (Version_script_info::build_lookup_tables): New function.
9930         (Version_script_info::build_expression_list_lookup): New
9931         function.
9932         (Version_script_info::get_symbol_version_helper): Rewrite to use
9933         lookup tables.
9934         (Version_script_info::print_expression_list): Adjust to use
9935         Version_script_info::Language.
9936         (script_push_lex_into_version_mode): Check that the version script
9937         has not been finalized.
9938         (version_script_push_lang): Change language string to
9939         Version_script_info::Language.
9940         * options.cc (Command_line::version_script): New function.
9941         * options.h (class General_options): Add finalize_dynamic_list
9942         function.  Change version_script from declaration to definition.
9943         * testsuite/ver_test_4.script: Remove duplicate def of t2_2.
9944         * testsuite/version_script.map: Remove duplicate def of foo.
9945         * testsuite/Makefile.am (ver_matching_def.so): Depend upon
9946         version_script.map.
9947         * testsuite/Makefile.in: Rebuild.
9948
9949 2009-12-30  Ian Lance Taylor  <iant@google.com>
9950
9951         PR 10843
9952         * target-reloc.h (relocate_for_relocatable): When copying a reloc,
9953         if the input symbol index is 0, make the output symbol index 0.
9954
9955 2009-12-30  Ian Lance Taylor  <iant@google.com>
9956
9957         PR 10670
9958         * options.h (class General_options): Add -x/--discard-all.
9959         * object.cc (Sized_relobj::do_count_local_symbols): Handle
9960         --discard-all.  If the local symbol needs a dynamic entry, check
9961         that before handling --discard-locals.
9962
9963 2009-12-30  Ian Lance Taylor  <iant@google.com>
9964
9965         PR 10450
9966         * output.cc (Output_segment::Output_segment): If PT_TLS, set the
9967         flags to PF_R.
9968         (Output_segment::add_output_section): Don't change the flags if
9969         the type is PT_TLS.
9970
9971         PR 10450
9972         * dynobj.cc (Dynobj::create_gnu_hash_table): Add symbols to the
9973         GNU hash table if they need a dynamic value.  Otherwise, don't add
9974         them if they are defined in a dynamic object or are forced local.
9975
9976 2009-12-29  Ian Lance Taylor  <iant@google.com>
9977
9978         PR 10450
9979         * layout.cc (Layout::create_dynamic_symtab): Only set entsize of
9980         .gnu.hash table for a 32-bit target.
9981
9982         PR 10450
9983         * symtab.h (Symbol::needs_dynsym_entry): A symbol in both a
9984         regular and a dynamic object only needs a dynamic symbol table
9985         entry if it is externally visible.
9986
9987         PR 10450
9988         * i386.cc (class Target_i386): Initialize global_offset_table_ in
9989         constructor.  Add global_offset_table_ field.
9990         (Target_i386::got_section): Set global_offset_table_.
9991         (Target_i386::do_finalize_sections): Set global_offset_table_
9992         size.
9993         * x86_64.cc (class Target_x86_64): Initialize global_offset_table_
9994         in constructor.  Add global_offset_table_ field.
9995         (Target_x86_64::got_section): Set global_offset_table_.
9996         (Target_x86_64::do_finalize_sections): Set global_offset_table_
9997         size.
9998
9999         * layout.cc (Layout::Layout): Initialize increase_relro_.
10000         (Layout::get_output_section): Add is_relro, is_last_relro, and
10001         is_first_non_relro parameters.  Change all callers.
10002         (Layout::choose_output_section): Likewise.
10003         (Layout::add_output_section_data): Likewise.
10004         (Layout::make_output_section): Likewise.
10005         (Layout::set_segment_offsets): Clear increase_relro when using a
10006         linker script.
10007         * layout.h (class Layout): Add increase_relro method.  Add
10008         increase_relro_ field.  Update declarations.
10009         * output.cc (Output_section::Output_section): Initialize
10010         is_last_relro_ and is_first_non_relro_.
10011         (Output_segment::add_output_section): Group relro sections is
10012         do_sort is true.  Handle is_last_relro and is_first_non_relro.
10013         (Output_segment::maximum_alignment): Remove relro handling.
10014         (Output_segment::set_section_addresses): Add increase_relro
10015         parameter.  Change all callers.  Add initial alignment to align
10016         relro sections on separate page.  Remove old relro handling.
10017         (Output_segment::set_section_list_addresses): Remove in_relro
10018         parameter.  Change all callers.
10019         (Output_segment::set_offset): Add increase parameter.  Change all
10020         callers.  Remove old relro handling.
10021         * output.h (class Output_section): Add new methods: is_last_relro,
10022         set_is_last_relro, is_first_non_relro, set_is_first_non_relro.
10023         Add is_last_relro_ and is_first_non_relro_ fields.
10024         * i386.cc (Target_i386::got_section): Don't call set_is_relro.
10025         Create separate .got.plt section.  Call increase_relro.
10026         * x86_64.cc (Target_x86_64::got_section): Likewise.
10027         * testsuite/relro_script_test.t: Add .got.plt.
10028
10029         PR 10450
10030         * layout.cc (Layout::Layout): Initialize dynamic_symbol_ field.
10031         (Layout::create_initial_dynamic_sections): Set dynamic_symbol_.
10032         (Layout::finalize): Call set_dynamic_symbol_size.
10033         (Layout::set_dynamic_symbol_size): New function.
10034         * layout.h (class Layout): Add dynamic_symbol_ field.  Declare
10035         set_dynamic_symbol_size.
10036
10037         PR 10450
10038         * output.h (class Output_section): Add is_entsize_zero_ field.
10039         * output.cc (Output_section::Output_section): Initialize
10040         is_entsize_zero_.
10041         (Output_section::set_entsize): If two different entsizes are
10042         requested, force it to zero.
10043         (Output_section::add_input_section): Set flags for .debug_str
10044         before updating section flags.  Set entsize.
10045         (Output_section::update_flags_for_input_section): Set SHF_MERGE
10046         and SHF_STRING if all input sections have those flags.
10047
10048 2009-12-29   Rafael Espindola  <espindola@google.com>
10049
10050         * main.cc (main): Fix the sys time reporting.
10051         * workqueue.cc (Workqueue::find_and_run_task): Fix the sys time
10052         reporting.
10053
10054 2009-12-29  Sriraman Tallam  <tmsriram@google.com>
10055
10056         * options.cc (General_options::parse_version): Allow -v to exit
10057         without an error if there is nothing to link.
10058
10059 2009-12-29  Ian Lance Taylor  <iant@google.com>
10060
10061         * configure.ac: Set the MCMODEL_MEDIUM conditional to false if
10062         using a version of gcc before 4.1.
10063         * configure: Rebuild.
10064
10065 2009-12-28  Chris Demetriou  <cgd@google.com>
10066
10067         * attributes.cc (Output_attributes_section_data::do_write): Use
10068         std::vector::front rather than std::vector::data.
10069
10070 2009-12-28  Ian Lance Taylor  <iant@google.com>
10071
10072         * symtab.h (class Symbol_table): Add enum Defined.
10073         * resolve.cc (Symbol_table::should_override): Add defined
10074         parameter.  Change all callers.  Test whether object is NULL
10075         before calling a method on it.
10076         (Symbol_table::report_resolve_problem): Add defined parameter.
10077         Change all callers.
10078         (Symbol_table::should_override_with_special): Likewise.
10079         * symtab.cc (Symbol_table::define_in_output_data): Add defined
10080         parameter.  Change all callers.
10081         (Symbol_table::do_define_in_output_data): Likewise.
10082         (Symbol_table::define_in_output_segment): Likewise.
10083         (Symbol_table::do_define_in_output_segment): Likewise.
10084         (Symbol_table::define_as_constant): Likewise.
10085         (Symbol_table::do_define_as_constant): Likewise.
10086         * script.h (class Symbol_assignment): Add is_defsym parameter to
10087         constructor; change all callers.
10088         * script.cc (Script_options::add_symbol_assignment): Add is_defsym
10089         parameter.  Change all callers.  Add is_defsym_ field.
10090         (class Parser_closure): Add parsing_defsym parameter to
10091         constructor; change all callers.  Add parsing_defsym accessor
10092         function.  Add parsing_defsym_ field.
10093
10094 2009-12-28  Ian Lance Taylor  <iant@google.com>
10095
10096         * gold.cc (queue_middle_tasks): Fix formatting.
10097         * object.cc (Relobj::is_section_name_included): Likewise.
10098
10099 2009-12-23  Ian Lance Taylor  <iant@google.com>
10100
10101         * i386.cc (Target_i386::do_calls_non_split): Recognize
10102         -fsplit-stack prologue for a function with a static chain.
10103         * x86_64.cc (Target_x86_64::do_calls_non_split): Recognize
10104         -fsplit-stack prologue when using %r11.
10105
10106 2009-12-21  Sriraman Tallam  <tmsriram@google.com>
10107
10108         * options.cc (General_options::parse_version): Make -v continue and do
10109         the link like GNU ld does.
10110
10111 2009-12-17  Rafael Avila de Espindola  <espindola@google.com>
10112
10113         * Makefile.am (CCFILES): Add timer.cc.
10114         (HFILES): Add timer.h.
10115         * configure.ac: Check for sysconf and times.
10116         * main.cc: include timer.h.
10117         (main): Use Timer instead of get_run_time.
10118         * timer.cc: New.
10119         * timer.h: New.
10120         * workqueue.cc: include timer.h.
10121         (Workqueue::find_and_run_task):
10122         Report user, sys and wall time.
10123         * Makefile.in: Regenerate.
10124         * config.in: Regenerate.
10125         * configure: Regenerate.
10126
10127 2009-12-16  Doug Kwan  <dougkwan@google.com>
10128
10129         * arm.cc (Arm_relobj::scan_sections_for_stubs): Exclude ICF-eliminated
10130         sections.
10131         * object.cc (Sized_relobj::do_finalize_local_symbols): Handle
10132         relaxed input sections.
10133         * output.cc (Output_section::find_relaxed_input_section): Change
10134         return type to Output_relaxed_input_section pointer.  Adjust code
10135         for new type of relaxed_input_section_map_.
10136         * output.h (Output_section::find_relaxed_input_section): Change
10137         return type to Output_relaxed_input_section pointer.
10138         (Output_section::Output_relaxed_input_section_by_input_section_map):
10139         New type.
10140         (Output_section::relaxed_input_section_map_): Change type to
10141         Output_section::Output_relaxed_input_section_by_input_section_map.
10142         * symtab.cc (Symbol_table::compute_final_value): Handle relaxed
10143         input section.
10144
10145 2009-12-15  Ian Lance Taylor  <iant@google.com>
10146
10147         * layout.cc (Layout::create_shstrtab): Only write out after input
10148         sections if we are compressing debug sections.
10149
10150 2009-12-15  Ian Lance Taylor  <iant@google.com>
10151
10152         * archive.cc (Archive::add_symbols): Only look up a symbol without
10153         a version if there is, in fact, a version.
10154
10155 2009-12-14  Ian Lance Taylor  <iant@google.com>
10156
10157         Revert -Wshadow changes, all changes from:
10158         2009-12-11  Doug Kwan  <dougkwan@google.com>
10159         2009-12-11  Nick Clifton  <nickc@redhat.com>
10160         * configure.ac: Remove -Wshadow when setting WARN_CXXFLAGS.
10161
10162 2009-12-11  Doug Kwan  <dougkwan@google.com>
10163
10164         * arm.cc (Target_arm::do_finalize_sections): Fix build breakage
10165         due to -Wshadow.
10166         * attributes.cc (Object_attribute::size): Ditto.
10167         (Attributes_section_data::size): Ditto.
10168         (Attributes_section_data::Attributes_section_data): Ditto.
10169         (Output_attributes_section_data::do_write): Ditto.
10170         * attributes.h (Object_attribute::set_type): Ditto.
10171         * testsuite/tls_test_main.cc (safe_lock, safe_unlock): Ditto.
10172
10173 2009-12-11  Nick Clifton  <nickc@redhat.com>
10174
10175         * archive.cc: Fix shadowed variable warnings.
10176         * arm.cc: Likewise.
10177         * compressed_output.cc: Likewise.
10178         * compressed_output.h: Likewise.
10179         * configure: Likewise.
10180         * dwarf_reader.cc: Likewise.
10181         * dynobj.cc: Likewise.
10182         * dynobj.h: Likewise.
10183         * ehframe.cc: Likewise.
10184         * ehframe.h: Likewise.
10185         * errors.cc: Likewise.
10186         * expression.cc: Likewise.
10187         * fileread.cc: Likewise.
10188         * fileread.h: Likewise.
10189         * freebsd.h: Likewise.
10190         * i386.cc: Likewise.
10191         * icf.cc: Likewise.
10192         * incremental.h: Likewise.
10193         * layout.cc: Likewise.
10194         * layout.h: Likewise.
10195         * mapfile.cc: Likewise.
10196         * merge.cc: Likewise.
10197         * merge.h: Likewise.
10198         * object.cc: Likewise.
10199         * object.h: Likewise.
10200         * options.h: Likewise.
10201         * output.cc: Likewise.
10202         * output.h: Likewise.
10203         * parameters.cc: Likewise.
10204         * plugin.cc: Likewise.
10205         * powerpc.cc: Likewise.
10206         * reduced_debug_output.cc: Likewise.
10207         * reduced_debug_output.h: Likewise.
10208         * reloc.cc: Likewise.
10209         * reloc.h: Likewise.
10210         * resolve.cc: Likewise.
10211         * script-sections.cc: Likewise.
10212         * script.cc: Likewise.
10213         * script.h: Likewise.
10214         * sparc.cc: Likewise.
10215         * symtab.cc: Likewise.
10216         * symtab.h: Likewise.
10217         * target-select.cc: Likewise.
10218         * target-select.h: Likewise.
10219         * token.h: Likewise.
10220         * workqueue.cc: Likewise.
10221         * workqueue.h: Likewise.
10222         * x86_64.cc: Likewise.
10223
10224 2009-12-10  Doug Kwan  <dougkwan@google.com>
10225
10226         * arm.cc (attributes.h): New include.
10227         (Arm_relobj::Arm_relobj): Initialize attributes_section_data_.
10228         (Arm_relobj::~Arm_relobj): Delete object pointed by
10229         attributes_section_data_.
10230         (Arm_relobj::attributes_section_data): New method definition.
10231         (Arm_relobj::attributes_section_data_): New data member declaration.
10232         (Arm_dynobj::Arm_dynobj): Initialize attributes_section_data_.
10233         (Arm_dynobj::~Arm_dynobj): Delete object pointed by
10234         attributes_section_data_.
10235         (Arm_dynobj::attributes_section_data): New method definition.
10236         (Arm_dynobj::attributes_section_data_): New data member declaration.
10237         (Target_arm::Target_arm): Initialize attributes_section_data_.  Change
10238         initialization value of may_use_blx_ to false.
10239         (Target_arm::using_thumb2, Target_arm::using_thumb_only,
10240         Target_arm::may_use_arm_nop, Target_arm::may_use_thumb2_nop): Use
10241         object attributes to compute results instead of hard-coding.
10242         (Target_arm::do_attribute_arg_type, Target_arm::do_attributes_order,
10243         Target_arm::get_secondary_compatible_arch,
10244         Target_arm::set_secondary_compatible_arch
10245         Target_arm::tag_cpu_arch_combine, Target_arm::aeabi_enum_name,
10246         Target_arm::tag_cpu_name_value, Target_arm::merge_object_attributes):
10247         New method declarations.
10248         (Target_arm::get_aeabi_object_attribute): New method definition.
10249         (Target_arm::attributes_section_data_): New data member declaration.
10250         (read_arm_attributes_section): New template definition.
10251         (Arm_relobj::do_read_symbols): Read attributes section if it exists.
10252         (Arm_dynobj::do_read_symbols): Ditto.
10253         (Target_arm::do_finalize_sections): Merge attributes sections from
10254         input.  Check for BLX use after attributes section merging.
10255         Fix __exidx_start and __exidx_end visibility.  Create an
10256         .ARM.attributes section if necessary.
10257         (Target_arm::get_secondary_compatible_arch,
10258         Target_arm::set_secondary_compatible_arch,
10259         Target_arm::tag_cpu_arch_combine, Target_arm::aeabi_enum_name,
10260         Target_arm::tag_cpu_name_value, Target_arm::merge_object_attributes,
10261         Target_arm::do_attribute_arg_type, Target_arm::do_attributes_order):
10262         New method definitions.
10263
10264 2009-12-09  Ian Lance Taylor  <iant@google.com>
10265
10266         * plugin.cc (Plugin::load): Don't cast from void* to a function
10267         pointer.
10268
10269 2009-12-09  Ian Lance Taylor  <iant@google.com>
10270
10271         * dynobj.cc (Sized_dynobj::do_read_symbols): Clear version
10272         information fields.
10273
10274 2009-12-09  H.J. Lu  <hongjiu.lu@intel.com>
10275
10276         * testsuite/Makefile.am (two_file_shared_1_pic_2_test_DEPENDENCIES):
10277         Replace two_file_shared_1.so with two_file_shared_2.so.
10278         * testsuite/Makefile.in: Regenerated.
10279
10280 2009-12-08  Doug Kwan  <dougkwan@google.com>
10281
10282         * Makefile.am (CCFILES): Add attributes.cc and int_encoding.cc.
10283         (HFILES): Add attributes.h and int_encoding.h.
10284         * Makefile.in: Regenerate.
10285         * dwarf_reader.cc (read_unsigned_LEB_128, read_signed_LEB_128): Move
10286         function definitions to int_encoding.cc
10287         * dwarf_reader.h (read_unsigned_LEB_128, read_signed_LEB_128): Move
10288         prototypes to int_encoding.h
10289         * reduced_debug_output.cc (int_encoding.h): New include.
10290         (write_unsigned_LEB_128, get_length_as_unsigned_LEB_128): Move
10291         function definitions to int_encoding.cc
10292         (insert_into_vector, read_from_pointer): Move template definitions to
10293         int_encoding.h
10294         * attributes.cc: New file.
10295         * attributes.h: New file.
10296         * int_encoding.cc: New file.
10297         * int_encoding.h: New file.
10298
10299 2009-12-07  Rafael Avila de Espindola  <espindola@google.com>
10300
10301         PR gold/11055
10302         * incremental-dump.cc (dump_incremental_inputs): New.
10303         (main): Use dump_incremental_inputs.
10304
10305 2009-12-07  H.J. Lu  <hongjiu.lu@intel.com>
10306
10307         PR gold/10893
10308         * i386.cc (Target_i386::Scan::globa): Use is_func instead of
10309         checking elfcpp::STT_FUNC.
10310         (Target_i386::Relocate::relocate): Likewise.
10311         * x86_64.cc (Target_x86_64::Scan::global): Likewise.
10312
10313         * symtab.cc (Symbol_table::sized_write_symbol): Turn IFUNC
10314         symbols from shared libraries into normal FUNC symbols.
10315
10316         * symtab.h (Symbol): Add is_func and use it.
10317
10318 2009-12-05  Doug Kwan  <dougkwan@google.com>
10319
10320         * arm.cc (Target_arm::arm_info): Initialize new fields
10321         attributes_section and attributes_vendor.
10322         * i386.cc (Target_i386::i386_info): Same.
10323         * object.cc (Sized_relobj::do_layout): Skip attribute section.
10324         * gold/powerpc.cc (Target_powerpc::powerpc_info): Initialize new
10325         fields attributes_section and attributes_vendor.
10326         * sparc.cc (Target_sparc::sparc_info): Same.
10327         * target.h (Target::attributes_section, Target::attributes_vendor,
10328         Target::is_attributes_section, Target::attribute_arg_type,
10329         Target::attributes_order): New method definitions.
10330         (Target::Target_info::attributes_section,
10331         Target::Target_info::attributes_vendor): New fields.
10332         (Target::do_attribute_arg_type, Target::do_attributes_order): New
10333         virtual method definitions.
10334         * x86_64.cc (Target_x86_64::x86_64_info): Initialize new fields
10335         attributes_section and attributes_vendor.
10336         * testsuite/testfile.cc (Target_test::test_target_info): Same.
10337
10338 2009-12-05  Doug Kwan  <dougkwan@google.com>
10339
10340         * arm.cc: Update comments about interworking and stub generation.
10341         (Target_arm::Relocate::reloc_is_non_pic): Update list of relocations
10342         considered as non-PIC.
10343         (Arm_relocate_functions::base_abs): Fix formatting.
10344         (Arm_relocate_functions::got_prel): Fix comment.  Change interface
10345         of function to use GOT entry address instead of offset.
10346         (Target_arm::Scan::global): Issue an error if a symbol would need a
10347         PLT does not get one because it is untyped.  Remove code to create
10348         dynamic symbols for relative branches.
10349         (Target_arm::Relocate::relocate: Use 0 instead of false since function
10350         takes unsigned integer instead of boolean.
10351
10352 2009-12-05  H.J. Lu  <hongjiu.lu@intel.com>
10353
10354         * testsuite/Makefile.am (constructor_test_LDADD): New. Empty.
10355         (two_file_test_LDADD): Likewise.
10356         (common_test_1_LDADD): Likewise.
10357         (exception_test_LDADD) Likewise.
10358         (weak_test_LDADD): Likewise.
10359         (many_sections_test_LDADD): Likewise.
10360         (initpri1_LDADD): Likewise.
10361         (script_test_1_LDADD): Likewise.
10362         (script_test_2_LDADD): Likewise.
10363         (justsyms_LDADD): Likewise.
10364         (binary_test_LDADD): Likewise.
10365         (large_LDADD): Likewise.
10366         * testsuite/Makefile.in: Regenerated.
10367
10368 2009-12-04  H.J. Lu  <hongjiu.lu@intel.com>
10369
10370         * resolve.cc (symbol_to_bits): Treat STB_GNU_UNIQUE as STB_GLOBAL.
10371         (Symbol_table::override_with_special): Likewise.
10372         (Symbol_table::add_from_object): Likewise.
10373
10374 2009-12-04  Rafael Avila de Espindola  <espindola@google.com>
10375
10376         * incremental.cc (Incremental_inputs::sized_create_inputs_section_data):
10377         Don't set the data_offset twice.
10378
10379 2009-12-04  Rafael Avila de Espindola  <espindola@google.com>
10380
10381         * testsuite/Makefile.in: Regenerate.
10382
10383 2009-12-03  Doug Kwan  <dougkwan@google.com>
10384
10385         * arm.cc: Remove comment about missing .ARM.exidx section symbols.
10386         (Target_arm::do_finalize_sections): Add parameter for symbol table
10387         pointer.  Add __exidx_start and __exidx_end symbols as appropriate.
10388         * i386.cc (Target_i386::do_finalize_sections): Add an additional
10389         parameter for symbol table pointer.
10390         * layout.cc (Layout::finalize): Call Target::finalize_sections with
10391         an additional parameter for a pointer to symbol table.
10392         * powerpc.cc (Target_powerpc::do_finalize_sections): Add an additional
10393         parameter for a symbol table pointer.
10394         * sparc.cc (Target_sparc::do_finalize_sections): Ditto.
10395         * target.h (Target::finalize_sections, Target::do_finalize_sections):
10396         Ditto.
10397         * x86_64.cc (Target_x86_64::do_finalize_sections): Add an additional
10398         parameter for a symbol table pointer.
10399
10400 2009-12-03  Rafael Avila de Espindola  <espindola@google.com>
10401
10402         * incremental.cc (Incremental_inputs_header)
10403         (Incremental_inputs_header_write, Incremental_inputs_entry)
10404         (Incremental_inputs_entry_write): Move ...
10405         * incremental.h (Incremental_inputs_header)
10406         (Incremental_inputs_header_write, Incremental_inputs_entry)
10407         (Incremental_inputs_entry_write): here.
10408
10409 2009-12-02  Rafael Avila de Espindola  <espindola@google.com>
10410
10411         * incremental.cc (make_sized_incremental_binary): Set the target.
10412         Error if it is incompatible.
10413         * output.h (Output_file): Add filename method.
10414
10415 2009-12-02  Rafael Avila de Espindola  <espindola@google.com>
10416
10417         * incremental.cc (Incremental_inputs_entry): Remove unused argument
10418         from the get_* methods.
10419
10420 2009-12-02  Rafael Avila de Espindola  <espindola@google.com>
10421
10422         * incremental-dump.cc (main): Check that the offeset of a script is 0.
10423         * incremental.cc (Incremental_inputs::sized_create_inputs_section_data):
10424         Write 0 for the data_offset of scripts.
10425
10426 2009-12-02  Rafael Avila de Espindola  <espindola@google.com>
10427
10428         * testsuite/Makefile.am: Add the incremental_test.sh test.
10429         * testsuite/incremental_test.sh: New.
10430         * testsuite/incremental_test_1.c: New.
10431         * testsuite/incremental_test_2.c: New.
10432
10433 2009-12-01  Rafael Avila de Espindola  <espindola@google.com>
10434
10435         * incremental-dump.cc (main): Fix typos.
10436
10437 2009-11-27  Rafael Avila de Espindola  <espindola@google.com>
10438
10439         PR gold/11025
10440         * incremental-dump.cc (main): Use llu to print 64 bit values.
10441
10442 2009-11-26  Per Øyvind Karlsen <peroyvind@mandriva.org>
10443             H.J. Lu  <hongjiu.lu@intel.com>
10444
10445         * Makefile.am (incremental_dump_DEPENDENCIES): Add $(THREADSLIB)
10446         $(LIBDL).
10447         (incremental_dump_LDADD): Likewise.
10448         * Makefile.in: Regenerated.
10449
10450 2009-11-25  Doug Kwan  <dougkwan@google.com>
10451
10452         Revert:
10453
10454         2009-11-25  Doug Kwan  <dougkwan@google.com>
10455
10456                 * arm.cc (Target_arm::Target_arm): Move method definition
10457                 outside of class definition.  Add code to handle
10458                 --target1-rel, --target1-abs and --target2= options.
10459                 (Target_arm::get_reloc_reloc_type): Change method to be
10460                 non-static and const.
10461                 (Target_arm::target1_is_rel_, Target_arm::target2_reloc_):
10462                 New data member declaration.
10463                 (Target_arm::Scan::local, Target_arm::Scan::global,
10464                 Target_arm::Relocate::relocate,
10465                 Target_arm::Relocatable_size_for_reloc::get_size_for_reloc):
10466                 Adjust call to Target_arm::get_real_reloc_type.
10467                 (Target_arm::get_real_reloc_type): Use command line options
10468                 to determine real types of R_ARM_TARGET1 and R_ARM_TARGET2.
10469                 * options.h (--target1-rel, --target1-abs, --target2): New
10470                 ARM-only options.
10471
10472 2009-11-25  Doug Kwan  <dougkwan@google.com>
10473
10474         * arm.cc (Target_arm::Target_arm): Move method definition outside of
10475         class definition.  Add code to handle --target1-rel, --target1-abs
10476         and --target2= options.
10477         (Target_arm::get_reloc_reloc_type): Change method to be non-static
10478         and const.
10479         (Target_arm::target1_is_rel_, Target_arm::target2_reloc_): New data
10480         member declaration.
10481         (Target_arm::Scan::local, Target_arm::Scan::global,
10482         Target_arm::Relocate::relocate,
10483         Target_arm::Relocatable_size_for_reloc::get_size_for_reloc): Adjust
10484         call to Target_arm::get_real_reloc_type.
10485         (Target_arm::get_real_reloc_type): Use command line options to
10486         determine real types of R_ARM_TARGET1 and R_ARM_TARGET2.
10487         * options.h (--target1-rel, --target1-abs, --target2): New ARM-only
10488         options.
10489
10490 2009-11-25  Doug Kwan  <dougkwan@google.com>
10491
10492         * arm.cc (Target_arm::may_use_thumb2_nop): New method definition.
10493         (Arm_relocate_functions::thumb_branch_common): New metod declaration.
10494         (Arm_relocate_functions::abs12, Arm_relocate_functions::abs16): Fix
10495         formatting.
10496         (Arm_relocate_functions::thm_call): Replace body with a call to
10497         Arm_relocate_functions::thumb_branch_common.
10498         (Arm_relocate_functions::thm_jump24,
10499         Arm_relocate_functions::thm_xpc22): New method definitions.
10500         (Arm_relocate_functions::thumb_branch_common): New method definition.
10501         (Reloc_stub::stbu_type_for_reloc): Fix incorrect uses of bit-wise-or
10502         operator.
10503         (Target_arm::Relocate::relocate): Adjust call to thm_call.
10504         Add code to handle R_ARM_THM_XPC22 and R_ARM_THM_JUMP24.
10505
10506 2009-11-24  Rafael Avila de Espindola  <espindola@google.com>
10507
10508         * Makefile.am: Build incremental-dump
10509         * Makefile.in: Regenerate.
10510         * incremental-dump.cc: New.
10511         * incremental.cc (Incremental_inputs_header_data,
10512         Incremental_inputs_entry_data): Move to incremental.h
10513         * incremental.h: (Incremental_inputs_header_data,
10514         Incremental_inputs_entry_data): Move from incremental.cc
10515
10516 2009-11-24  Rafael Avila de Espindola  <espindola@google.com>
10517
10518         * incremental.cc (Incremental_inputs_header,
10519         Incremental_inputs_header_write, Incremental_inputs_entry,
10520         Incremental_inputs_entry_write): Add a typedef with the data type.
10521
10522 2009-11-24  Rafael Avila de Espindola  <espindola@google.com>
10523
10524         * incremental.cc (Incremental_inputs_header,
10525         Incremental_inputs_header_write, Incremental_inputs_entry,
10526         Incremental_inputs_entry_write): Update comment about which
10527         type has the filed descriptions.
10528
10529 2009-11-15  Doug Kwan  <dougkwan@google.com>
10530
10531         * arm.cc (Target_arm::may_use_arm_nop): New method definition.
10532         (Arm_relocate_functions::arm_branch_common): Change method defintion
10533         in class definition to a method declaration and update list of formal
10534         parameters.
10535         (Arm_relocate_functions::plt32, Arm_relocate_functions::call,
10536         Arm_relocation_functions::jump24): Adjust call to
10537         Arm_relocate_functions::arm_branch_common.  Update list of formal
10538         parameters.
10539         (Arm_relocate_functions::xpc25): New method definition.
10540         (Arm_relocate_functions::arm_branch_common): Move method defintion
10541         out from class definition.  Use stubs for mode-switching and extending
10542         branch ranges.
10543         (Target_arm::Relocate::relocate): Handle weakly-undefined symbols
10544         specially.  Change code to enable use of stubs in ARM branches.
10545
10546 2009-11-10  Doug Kwan  <dougkwan@google.com>
10547
10548         * arm.cc (Arm_relobj::do_relocate_sections): Remove options parameter
10549         in method declaration.
10550         (Target_arm::relocate_stub): New method declaration.
10551         (Target_arm::default_target): Change to return a pointer instead of
10552         a const reference.
10553         (Reloc_stub::stub_type_for_reloc): Adjust for the change in
10554         Target_arm::default_target.
10555         (Arm_Relobj::do_relocate_sections): Remove options paramater in
10556         method definition.
10557         (Target_arm::relocate_section): Adjust view.
10558         (Target_arm::relocate_stub): New method definition.
10559
10560 2009-11-10  Doug Kwan  <dougkwan@google.com>
10561
10562         * i386.cc (Target_i386::do_calls_non_split): Add a cast to avoid
10563         a format warning.
10564         * incremental.cc (open_incremental_binary): Initialized local
10565         variables to avoid warnings.
10566         * object.cc (make_elf_object): Ditto.
10567         * x86_64.cc (Target_x86_64::do_calls_non_split): Add a cast to avoid
10568         a format warning.
10569
10570 009-11-09  H.J. Lu  <hongjiu.lu@intel.com>
10571
10572         PR gold/10930
10573         * testsuite/plugin_test.c: Include "config.h".
10574
10575 2009-11-09  Doug Kwan  <dougkwan@google.com>
10576
10577         * arm.cc (Target_arm::fake_relnum_for_stubs): New constant.
10578         (arm_symbol_value): Remove.
10579         (Arm_relocate_functions::arm_branch_common,
10580         Arm_relocate_functions::abs8, Arm_relocate_functions::thm_abs5,
10581         Arm_relocate_functions::abs12, Arm_relocate_functions::abs16,
10582         Arm_relocate_functions::abs32, Arm_relocate_functions::rel32,
10583         Arm_relocate_functions::thm_call, Arm_relocate_functions::plt32,
10584         Arm_relocate_functions::call, Arm_relocate_functions::jump24,
10585         Arm_relocate_functions::prel31, Arm_relocate_functions::mov_abs_nc,
10586         Arm_relocate_functions::movt_abs, Arm_relocate_functions::movw_abs_nc,
10587         Arm_relocate_functions::thm_mobw_abs_nc,
10588         Arm_relocate_functions::thm_mov_abs,
10589         Arm_relocate_functions::movw_prel_nc,
10590         Arm_relocate_functions::thm_movt_abs,
10591         Arm_relocate_functions::movt_prel,
10592         Arm_relocate_functions::thm_movw_prel_nc,
10593         Arm_relocate_functions::thm_movt_prel): Adjust callers of the above.
10594         (Target_arm::Relocate::relocate): Only decompose address into two
10595         parts if relocation type uses the thumb-bit and pass the actual
10596         bit instead of a flag indicating that the thumb-bit is used.  Adjust
10597         calls to methods in Arm_relocate_functions for this change.
10598
10599 2009-11-08  Ian Lance Taylor  <iant@google.com>
10600
10601         PR 10925
10602         * reloc.cc: Instantiate
10603         Sized_relobj::initialize_input_to_output_maps and
10604         Sized_relobj:free_input_to_output_maps.
10605
10606 2009-11-06  Ian Lance Taylor  <iant@google.com>
10607
10608         PR 10876
10609         * defstd.cc (in_segment): Set only_if_ref true for "end".
10610
10611 2009-11-06  Doug Kwan  <dougkwan@google.com>
10612
10613         * arm.cc (class Reloc_stub): Correct a comment.
10614         (Target_arm::Target_arm): Initialize arm_input_section_map_.
10615         (Target_arm::scan_section_for_stubs): New method declaration.
10616         (Target_arm::do_make_elf_object, Target_arm::do_make_output_section):
10617         Change methods from private to protected.
10618         (Target_arm::do_may_relax): New method definition.
10619         (Target_arm::do_relax, Target_arm::group_sections,
10620         Target_arm::scan_reloc_for_stub,
10621         Target_arm::scan_reloc_section_for_stubs): New method declarations.
10622         (Target_arm::arm_input_section_map_): New data member declaration.
10623         (Target_arm::scan_reloc_for_stub,
10624         Target_arm::scan_reloc_section_for_stubs,
10625         Target_arm::scan_section_for_stubs, Target_arm::group_sections,
10626         Target_arm::do_relax): New method definitions.
10627
10628 2009-11-06  Mikolaj Zalewski  <mikolaj@google.com>
10629
10630         * configure.ac: Check for (struct stat)::st_mtim
10631         * fileread.cc (File_read::get_mtime): Use st_mtim if available.
10632         * config.in: Regenerate.
10633         * configure: Regenerate.
10634
10635 2009-11-05  Ian Lance Taylor  <iant@google.com>
10636
10637         PR 10910
10638         * output.cc (Output_segment::add_output_section): Add missing
10639         return statement.
10640
10641 2009-11-04  Ian Lance Taylor  <iant@google.com>
10642
10643         PR 10880
10644         * object.h (class Object): Add is_needed and set_is_needed
10645         methods.  Add is_needed_ field.  Make bool fields into bitfields.
10646         * symtab.cc (Symbol_table::set_dynsym_indexes): If a symbol is
10647         defined in a dynamic object and referenced by a regular object,
10648         set is_needed for the dynamic object.
10649         * layout.cc (Layout::finish_dynamic_section): Don't add DT_NEEDED
10650         if the file is marked with as_needed and it is not needed.
10651
10652 2009-11-04  Ian Lance Taylor  <iant@google.com>
10653
10654         PR 10887
10655         * arm.cc (Target_arm::do_finalize_sections): Don't add dynamic
10656         tags if data is discarded by linker script.
10657         * i386.cc (Target_i386::do_finalize_sections): Likewise.
10658         * powerpc.cc (Target_powerpc::do_finalize_sections): Likewise.
10659         * sparc.cc (Target_sparc::do_finalize_sections): Likewise.
10660         * x86_64.cc (Target_x86_64::do_finalize_sections): Likewise.
10661
10662 2009-11-04  Ian Lance Taylor  <iant@google.com>
10663
10664         * layout.cc (Layout::get_output_section): Add is_interp and
10665         is_dynamic_linker_section parameters.  Change all callers.
10666         (Layout::choose_output_section): Likewise.
10667         (Layout::make_output_section): Likewise.
10668         (Layout::add_output_section_data): Add is_dynamic_linker_section
10669         parameter.  Change all callers.
10670         * layout.h (class Layout): Update declarations.
10671         * output.h (class Output_section): Add is_interp, set_is_interp,
10672         is_dynamic_linker_section, set_is_dynamic_linker_section methods.
10673         Add is_interp_, is_dynamic_linker_section_ fields.  Change
10674         generate_code_fills_at_write_ to a bitfield.
10675         * output.cc (Output_section::Output_sections): Initialize new
10676         fields.
10677         (Output_segment::add_output_section): Add do_sort parameter.
10678         Change all callers.
10679
10680 2009-11-03  Ian Lance Taylor  <iant@google.com>
10681
10682         PR 10860
10683         * options.h (class General_options): Add --warn-common.
10684         * resolve.cc (Symbol_table::resolve): Handle --warn-common when
10685         merging two common symbols.
10686         (Symbol_table::should_override): Handle --warn-common when merging
10687         a common symbol with a defined symbol.  Use report_resolve_problem
10688         for multiple definitions.
10689         (Symbol_table::report_resolve_problem): New function.
10690         * symtab.h (class Symbol_table): Declare report_resolve_problem.
10691
10692 2009-11-03  Doug Kwan  <dougkwan@google.com>
10693
10694         * arm.cc (Target_arm::Target_arm): Initialize stub_tables_ and
10695         stub_factory_.
10696         (Target_arm::stub_factory): New method definition.
10697         (Target_arm::new_arm_input_section,
10698         Target_arm::find_arm_input_section, Target_arm::new_stub_table,
10699         Target_arm::reloc_uses_thumb_bit): New method declarations.
10700         (Target_arm::Stub_table_list, Target_arm::Arm_input_section_map):
10701         New type definitions.
10702         (Target_arm::stub_tables_, Target_arm::stub_factory_): New data
10703         member declarations.
10704         (Target_arm::reloc_uses_thumb_bit, Target_arm::new_arm_input_section,
10705         Target_arm::find_arm_input_section, Target_arm::new_stub_table):
10706         New method definitions.
10707
10708 2009-11-03  Ian Lance Taylor  <iant@google.com>
10709
10710         * options.h (class General_options): Add --warn_constructors.
10711
10712 2009-11-03  Ian Lance Taylor  <iant@google.com>
10713
10714         PR 10893
10715         * defstd.cc (in_section): Add entries for __rel_iplt_start,
10716         __rel_iplt_end, __rela_iplt_start, __rela_iplt_end, and __stack.
10717
10718 2009-11-03  Ian Lance Taylor  <iant@google.com>
10719
10720         PR 10895
10721         * po/Make-in ($(srcdir)/$(PACKAGE).pot): Pass -C and
10722         --msgid-bugs-address.
10723         (install-pdf): New target.
10724         (install-data_yes): Look up one directory to find mkinstalldirs.
10725
10726 2009-11-03  H.J. Lu  <hongjiu.lu@intel.com>
10727
10728         * po/Make-in (.po.gmo): Don't generate .gmo files in source
10729         tree.
10730
10731 2009-10-30  Doug Kwan  <dougkwan@google.com>
10732
10733         * arm.cc (Stub_addend_reader): Fix bug in previouls check-in.
10734
10735 2009-10-30  Doug Kwan  <dougkwan@google.com>
10736
10737         * arm.cc (Stub_addend_reader): New struct template definition
10738         and partial specializations.
10739         (Stub_addend_reader::operator()): New method definition for a
10740         partially specialized template.
10741
10742 2009-10-30  Doug Kwan  <dougkwan@google.com>
10743
10744         * arm.cc (Arm_relobj::processor_specific_flags): New method
10745         definition.
10746         (Arm_relobj::do_read_symbols): New method declaration.
10747         (Arm_relobj::processor_specific_flags_): New data member declaration.
10748         (Arm_dynobj): New class definition.
10749         (Target_arm::do_finalize_sections): Add input_objects parameter.
10750         (Target_arm::do_adjust_elf_header): New method declaration.
10751         (Target_arm::are_eabi_versions_compatible,
10752         (Target_arm::merge_processor_specific_flags): New method declaration.
10753         (Target_arm::do_make_elf_object): New overloaded method definitions
10754         and declaration.
10755         (Arm_relobj::do_read_symbols): New method definition.
10756         (Arm_dynobj::do_read_symbols): Ditto.
10757         (Target_arm::do_finalize_sections): Add input_objects parameters.
10758         Merge processor-specific flags from all input objects.
10759         (Target_arm::are_eabi_versions_compatible,
10760         Target_arm::merge_processor_specific_flags,
10761         Target_arm::do_adjust_elf_header, Target_arm::do_make_elf_object):
10762         New method definitions.
10763         * i386.cc (Target_i386::do_finalize_sections): Add unnamed
10764         Input_objects pointer type parameter.
10765         * layout.cc (Layout::finalize): Pass input objects to target's.
10766         finalize_sections function.
10767         * output.cc (Output_file_header::do_sized_write): Set ELF file
10768         header's processor-specific flags.
10769         * powerpc.cc (Target_powerpc::do_finalize_sections): Add unnamed
10770         Input_objects pointer type parameter.
10771         * sparc.cc (Target_sparc::do_finalize_sections): Same.
10772         * target.h (Input_objects): New forward class declaration.
10773         (Target::processor_specific_flags,
10774         Target::are_processor_specific_flags_sect): New method definitions.
10775         (Target::finalize_sections): Add input_objects parameter.
10776         (Target::Target): Initialize processor_specific_flags_ and
10777         are_processor_specific_flags_set_.
10778         (Target::do_finalize_sections): Add unnamed Input_objects pointer type
10779         parameter.
10780         (Target::set_processor_specific_flags): New method definition.
10781         (Target::processor_specific_flags_,
10782         Target::are_processor_specific_flags_set_): New data member
10783         declarations.
10784         * x86_64.cc (Target_x86_64::do_finalize_sections): Add unnamed
10785         Input_objects pointer type parameter.
10786
10787 2009-10-30  Doug Kwan  <dougkwan@google.com>
10788
10789         * arm.cc: Use Arm_address instead of elfcpp::Elf_types<32>::Elf_Addr.
10790
10791 2009-10-28  Ian Lance Taylor  <iant@google.com>
10792
10793         * object.h (class Relobj): Drop options parameter from
10794         gc_process_relocs, scan_relocs, relocate, do_gc_process_relocs,
10795         do_scan_relocs, do_relocate.  Change all callers.
10796         (class Sized_relobj): Drop options parameters from
10797         do_gc_process_relocs, do_scan_relocs, do_relocate,
10798         do_relocate_sections, relocate_sections, emit_relocs_scan,
10799         emit_relocs_scan_reltype.  Change all callers.
10800         (struct Relocate_info): Remove options field and all references to
10801         it.
10802         * reloc.h (class Read_relocs): Remove options constructor
10803         parameter and options_ field.  Change all callers.
10804         (class Gc_process_relocs, class Scan_relocs): Likewise.
10805         (class Relocate_task): Likewise.
10806         * target-reloc.h (scan_relocs): Remove options parameter.  Change
10807         all callers.
10808         (scan_relocatable_relocs): Likewise.
10809         * target.h (class Sized_target): Remove options parameter from
10810         gc_process_relocs, scan_relocs, scan_relocatable_relocs.  Change
10811         all callers.
10812         * gc.h (gc_process_relocs): Remove options parameter.  Change all
10813         callers.
10814         * arm.cc: Update functions to remove options parameters.
10815         * i386.cc: Likewise.
10816         * powerpc.cc: Likewise.
10817         * sparc.cc: Likewise.
10818         * x86_64.cc: Likewise.
10819         * testsuite/testfile.cc: Likewise.
10820
10821 2009-10-28  Doug Kwan  <dougkwan@google.com>
10822
10823         * arm.cc (Arm_relobj): New class definition.
10824         (Arm_relobj::scan_sections_for_stubs,
10825         Arm_relobj::do_count_local_symbols, Arm_relobj::do_relocate_sections):
10826         New method definitions.
10827
10828 2009-10-28  Cary Coutant  <ccoutant@google.com>
10829
10830         * plugin.h (Plugin::Plugin): Initialize cleanup_done_.
10831         (Plugin::cleanup_done_): New member.
10832         (Plugin_manager::Plugin_manager): Remove cleanup_done_.
10833         (Plugin_manager::cleanup_done_): Remove.
10834         (Plugin_manager::add_input_file): Edit error message.
10835         * plugin.cc (Plugin::cleanup): Test and set cleanup_done_.
10836         (Plugin_manager::cleanup): Remove use of cleanup_done_.
10837
10838 2009-10-27  Mikolaj Zalewski  <mikolajz@google.com>
10839
10840         * fileread.cc: (File_read::View::~View): Use the new
10841         data_ownership_ filed.
10842         (File_read::~File_read): Dispose the new whole_file_view_.
10843         (File_read::open): Mmap the whole file if needed.
10844         (File_read::open): Use whole_file_view_ instead of contents_.
10845         (File_read::find_view): Use whole_file_view_ if applicable.
10846         (File_read::do_read): Use whole_file_view_ instead of contents_.
10847         (File_read::make_view): Use whole_file_view_ instead of contents_,
10848         update File_read::View::View call.
10849         (File_read::find_or_make_view): Update File_read::View::View
10850         call.
10851         * fileread.h: (File_read::File_read): Initialize whole_file_view_,
10852         remove contents_
10853         (File_read::View::Data_ownership): New enum.
10854         (File_read::View::View): Replace bool mapped_ with Data_ownership
10855         argument.
10856         (File_read::View::mapped_): Remove (replaced by data_ownership_).
10857         (File_read::View::data_ownership_): New field.
10858         (File_read::contents_): Remove (replaced by whole_file_view_).
10859         (File_read::whole_file_view_): New field.
10860         * options.h (class General_options): Add --keep-files-mapped.
10861
10862 2009-10-27  Cary Coutant  <ccoutant@google.com>
10863
10864         * symtab.cc (add_from_pluginobj): Pass correct value for is_ordinary.
10865         * testsuite/Makefile.am (plugin_test_5): New test case.
10866         * testsuite/Makefile.in: Regenerate.
10867
10868 2009-10-25  Doug Kwan  <dougkwan@google.com>
10869
10870         * object.h (Sized_relobj::View_size, Sized_relobj::Views): Change
10871         from private to protected to allow access by child class.
10872         (Sized_relobj::do_relocate_sections): New method declaration.
10873         (Sized_relobj::relocate_sections): Virtualize.
10874         * reloc.cc (Sized_relobj::do_relocate_sections): Rename from
10875         Sized_relobj::relocate_sections.  Instantiate template explicitly
10876         for different target sizes and endianity.
10877
10878 2009-10-24  Doug Kwan  <dougkwan@google.com>
10879
10880         * arm.cc (Arm_output_section, Arm_relobj): Forward class declarations.
10881         (Arm_input_section::as_arm_input_section): New method.
10882         (Arm_output_section): New class definition.
10883         (Arm_output_section::create_stub_group,
10884         Arm_output_section::group_sections): New method definitions.
10885
10886 2009-10-22  Doug Kwan  <dougkwan@google.com>
10887
10888         * arm.cc (Arm_input_section): New class definition.
10889         (Arm_input_section::init, Arm_input_section:do_write,
10890         Arm_input_section::set_final_data_size,
10891         Arm_input_section::do_reset_address_and_file_offset): New method
10892         definitions.
10893
10894 2009-10-21  Doug Kwan  <dougkwan@google.com>
10895
10896         * arm.cc (Stub_table, Arm_input_section): New forward class
10897         declarations.
10898         (Stub_table): New class defintion.
10899         (Stub_table::add_reloc_stub, Stub_table::relocate_stubs
10900         Stub_table::do_reset_address_and_file_offset, Stub_table::do_write):
10901         New method definition.
10902
10903 2009-10-21  Doug Kwan  <dougkwan@google.com>
10904
10905         * arm.cc: Update copyright comments.
10906         (Target_arm): New forward class template declaration.
10907         (Arm_address): New type.
10908         (ARM_MAX_FWD_BRANCH_OFFSET, ARM_MAX_BWD_BRANCH_OFFSET,
10909         THM_MAX_FWD_BRANCH_OFFSET, THM_MAX_BWD_BRANCH_OFFSET,
10910         THM2_MAX_FWD_BRANCH_OFFSET, THM2_MAX_BWD_BRANCH_OFFSET): New
10911         constants.
10912         (Insn_template): Same.
10913         (DEF_STUBS): New macro.
10914         (Stub_type): New enum type.
10915         (Stub_template): New class definition.
10916         (Stub): Same.
10917         (Reloc_stub): Same.
10918         (Stub_factory): Same.
10919         (Target_arm::Target_arm): Initialize may_use_blx_ and
10920         should_force_pic_veneer_.
10921         (Target_arm::may_use_blx, Target_arm::set_may_use_blx,
10922         Target_arm::should_force_pic_veneer,
10923         Target_arm::set_should_force_pic_veneer, Target_arm::using_thumb2,
10924         Target_arm::using_thumb_only, Target_arm:;default_target): New
10925         method defintions.
10926         (Target_arm::may_use_blx_, Target_arm::should_force_pic_veneer_):
10927         New data member declarations.
10928         (Insn_template::size, Insn_template::alignment): New method defintions.
10929         (Stub_template::Stub_template): New method definition.
10930         (Reloc_stub::Key::name, Reloc_stub::stub_type_for_reloc,
10931         Reloc_stub::do_fixed_endian_write, Reloc_stub::do_write): Same.
10932         (Stub_factory::Stub_factory): New method definition.
10933         * gold.h (string_hash): New template.
10934         * output.h (Input_section_specifier::hash_value): Use
10935         gold::string_hash.
10936         (Input_section_specifier::string_hash): Remove.
10937         * stringpool.cc (Stringpool_template::string_hash): Use
10938         gold::string_hash.
10939
10940 2009-10-20  Doug Kwan  <dougkwan@google.com>
10941
10942         * object.cc (Sized_relobj::do_finalize_local_symbols): Handle section
10943         symbols of relaxed input sections.
10944         * output.h (Output_section::find_relaxed_input_section): Make
10945         method public.
10946
10947 2009-10-16  Doug Kwan  <dougkwan@google.com>
10948
10949         * dynobj.cc (Versions::Versions): Initialize version_script_.
10950         Only insert base version symbol definition for a shared object
10951         if version script defines any version versions.
10952         (Versions::define_base_version): New method definition.
10953         (Versions::add_def): Check that base version is not needed.
10954         (Versions::add_need): Define base version lazily.
10955         * dynobj.h (Versions::define_base_version): New method declaration.
10956         (Versions::needs_base_version_): New data member declaration.
10957         * testsuite/Makefile.am (check_SCRIPTS): Add no_version_test.sh
10958         (check_DATA): Add no_version_test.stdout.
10959         (libno_version_test.so, no_version_test.o no_version_test.stdout):
10960         New make rules.
10961         * testsuite/Makefile.in: Regenerate.
10962         * testsuite/no_version_test.c: New file.
10963         * testsuite/no_version_test.sh: Ditto.
10964
10965 2009-10-16  Doug Kwan  <dougkwan@google.com>
10966
10967         * expression.cc (class Segment_start_expression): New class definition.
10968         (Segment_start_expression::value): New method definition.
10969         (script_exp_function_segment_start): Return a new
10970         Segment_start_expression.
10971         * gold/script-c.h (script_saw_segment_start_expression): New function
10972         prototype.
10973         * script-sections.cc (Script_sections::Script_sections): Initialize
10974         SAW_SEGMENT_START_EXPRESSION_ to false.
10975         (Script_sections::set_section_addresses): Use -Ttext, -Tdata
10976         and -Tbbs options to specify section addresses if given in
10977         command line and no SEGMENT_START expression is seen in a script.
10978         * script-sections.h (Script_sections::saw_segment_start_expression,
10979         Script_sections::set_saw_segment_start_expression): New method
10980         definition.
10981         (Script_sections::saw_segment_start_expression_): New data member
10982         declaration.
10983         * script.cc (script_saw_segment_start_expression): New function.
10984         * yyscript.y (SEGMENT_START): Call script_saw_segment_start_expression.
10985         * testsuite/Makefile.am (check_SCRIPTS): Add script_test_6.sh,
10986         script_test_7.sh and script_test_8.sh.
10987         (check_DATA): Add script_test_6.stdout, script_test_7.stdout and
10988         script_test_8.stdout.
10989         (MOSTLYCLEANFILES): Add script_test_6, script_test_7 and script_test_8.
10990         (script_test_6, script_test_6.stdout, script_test_7,
10991         script_test_7.stdout, script_test_8, script_test_8.stdout): New rules.
10992         * Makefile.in: Regenerate.
10993         * testsuite/script_test_6.sh: New file.
10994         * testsuite/script_test_6.t: Same.
10995         * testsuite/script_test_7.sh: Same.
10996         * testsuite/script_test_7.t: Same.
10997         * testsuite/script_test_8.sh: Same.
10998
10999 2009-10-16  Doug Kwan  <dougkwan@google.com>
11000
11001         * output.cc (Output_segment::set_section_list_address): Cast
11002         expressions to unsigned long long type to avoid format warnings.
11003
11004 2009-10-15  Ian Lance Taylor  <iant@google.com>
11005
11006         * script.cc (Script_options::add_symbol_assignment): Always add a
11007         dot assignment to script_sections_.
11008         * script-sections.cc (Script_sections::add_dot_assignment):
11009         Initialize if necessary.
11010
11011         * layout.cc (Layout::relaxation_loop_body): Don't crash if we see
11012         program headers with no load segment if there is a linker script.
11013
11014         * layout.cc (Layout::set_segment_offsets): Align the file offset
11015         to the segment aligment for -N or -n with no load segment.
11016         * output.cc (Output_segment::add_output_section): Don't crash if
11017         the first section is a TLS section.
11018         (Output_segment::set_section_list_addresses): Print an error
11019         message if the address moves backward in a linker script.
11020         * script-sections.cc
11021         (Output_section_element_input::set_section_addresses): Don't
11022         increase *dot_value for a SHF_TLS/SHT_NOBITS section.
11023         (Orphan_output_section::set_section_addresses): Likewise.
11024
11025 2009-10-15  Doug Kwan  <dougkwan@google.com>
11026
11027         * layout.cc (Layout::finish_dynamic_section): Generate tags
11028         DT_FINI_ARRAY, DT_FINI_ARRAYSZ, DT_INIT_ARRAY, DT_INIT_ARRAYSZ,
11029         DT_PREINIT_ARRAY, DT_PREINIT_ARRAYSZ as needed. If -Bsymbolic is
11030         used, add DT_SYMBOLIC and set DF_SYMBOLIC in DT_FLAGS.
11031
11032 2009-10-14  Ian Lance Taylor  <iant@google.com>
11033
11034         * object.h (class Relocate_info): Add reloc_shdr and data_shdr
11035         fields.
11036         * object.cc (Sized_relobj::relocate_sections): Set reloc_shdr and
11037         data_shdr fields of relinfo.
11038         * i386.cc (class Target_i386::Relocate): Remove ldo_addrs_ field.
11039         (Target_i386::Relocate::relocate_tls): Don't call fix_up_ldo.  For
11040         R_386_TLS_LDO_32, adjust based on section flags.
11041         (Target_i386::Relocate::fix_up_ldo): Remove.
11042
11043 2009-10-13  Ian Lance Taylor  <iant@google.com>
11044
11045         Add support for -pie.
11046         * options.h (class General_options): Add -pie and
11047         --pic-executable.
11048         (General_options::output_is_position_independent): Test -pie.
11049         (General_options::output_is_executable): Return true if not shared
11050         and not relocatable.
11051         (General_options::output_is_pie): Remove.
11052         * options.cc (General_options::finalize): Reject incompatible uses
11053         of -pie.
11054         * gold.cc (queue_middle_tasks): A -pie link is not static.
11055         * symtab.h (Symbol::needs_plt_entry): Return false if -pie.
11056         * symtab.cc (Symbol::final_value_is_known): Return false if
11057         output_is_position_independent.
11058         * layout.cc (Layout::set_segment_offsets): Start at address 0 if
11059         output_is_position_independent.
11060         * output.cc (Output_file_header::do_sized_write): Use ET_DYN if
11061         output_is_position_independent.
11062         * i386.cc (Output_data_plt_i386::do_write): Use the PIC PLT if
11063         output_is_position_independent.
11064         * testsuite/Makefile.am (check_PROGRAMS): Add basic_pie_test and
11065         two_file_pie_test.
11066         (basic_pie_test.o, basic_pie_test): New targets.
11067         (two_file_test_1_pie.o, two_file_test_1b_pie.o): New targets.
11068         (two_file_test_2_pie.o, two_file_test_main_pie.o): New targets.
11069         (two_file_pie_test): New target.
11070         * testsuite/Makefile.in: Rebuild.
11071         * README: Remove note saying that -pie is not supported.
11072
11073 2009-10-13  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
11074
11075         * options.h (class General_options): Add -init and -fini.
11076         * layout.cc (Layout::finish_dynamic_section): Emit
11077         given init and fini functions.
11078
11079 2009-10-13  Sriraman Tallam  <tmsriram@google.com>
11080
11081         * gc.h (gc_process_relocs): Check if icf is enabled using new
11082         function.
11083         * gold.cc (queue_initial_tasks): Likewise.
11084         (queue_middle_tasks): Likewise.
11085         * object.cc (do_layout): Likewise.
11086         * symtab.cc (is_section_folded): Likewise.
11087         * main.cc (main): Likewise.
11088         * reloc.cc (Read_relocs::run): Likewise.
11089         (Sized_relobj::do_scan_relocs): Likewise.
11090         * icf.cc (is_function_ctor_or_dtor): New function.
11091         (Icf::find_identical_sections): Check if function is ctor or dtor when
11092         safe icf is chosen.
11093         * options.h (General_options::icf): Change option to be an enum.
11094         (Icf_status): New enum.
11095         (icf_enabled): New method.
11096         (icf_safe_folding): New method.
11097         (set_icf_status): New method.
11098         (icf_status_): New variable.
11099         * (options.cc) (General_options::finalize): Set icf_status_.
11100         * testsuite/Makefile.am: Add commands to build icf_safe_test. Modify
11101         icf_test and icf_keep_unique_test to use the --icf enum flag.
11102         * testsuite/icf_safe_test.sh: New file.
11103         * testsuite/icf_safe_test.cc: New file.
11104
11105 2009-10-12  Sriraman Tallam  <tmsriram@google.com>
11106
11107         * symtab.h: Check for GOLD_SYMTAB_H before header includes. Remove
11108         includes to gc.h and icf.h.
11109         * arm.cc: Include gc.h.
11110         * gold.cc: Likewise.
11111         * i386.cc: Likewise.
11112         * powerpc.cc: Likewise.
11113         * sparc.cc: Likewise.
11114         * x86_64.cc: Likewise.
11115         * gc.h: Include icf.h.
11116
11117 2009-10-11  Ian Lance Taylor  <iant@google.com>
11118
11119         * plugin.cc: Include "gold.h" before other header files.
11120
11121 2009-10-10  Chris Demetriou  <cgd@google.com>
11122
11123         * options.h (Input_file_argument::Input_file_type): New enum.
11124         (Input_file_argument::is_lib_): Replace with...
11125         (Input_file_argument::type_): New member.
11126         (Input_file_argument::Input_file_argument): Take Input_file_type
11127         'type' rather than boolean 'is_lib' as second argument.
11128         (Input_file_argument::is_lib): Use type_.
11129         (Input_file_argument::is_searched_file): New function.
11130         (Input_file_argument::may_need_search): Handle is_searched_file.
11131         * options.cc (General_options::parse_library): Support -l:filename.
11132         (General_options::parse_just_symbols): Update for Input_file_argument
11133         changes.
11134         (Command_line::process): Likewise.
11135         * archive.cc (Archive::get_file_and_offset): Likewise.
11136         * plugin.cc (Plugin_manager::release_input_file): Likewise.
11137         * script.cc (read_script_file, script_add_file): Likewise.
11138         * fileread.cc (Input_file::Input_file): Likewise.
11139         (Input_file::will_search_for): Handle is_searched_file.
11140         (Input_file::open): Likewise.
11141         * readsyms.cc (Read_symbols::get_name): Likewise.
11142         * testsuite/Makefile.am (searched_file_test): New test.
11143         * testsuite/Makefile.in: Regenerate.
11144         * testsuite/searched_file_test.cc: New file.
11145         * testsuite/searched_file_test_lib.cc: New file.
11146
11147 2009-10-09  Andrew Pinski  <andrew_pinski@playstation.sony.com>
11148             Ian Lance Taylor  <iant@google.com>
11149
11150         * descriptor.cc: Include <cstdio> and "binary-io.h".
11151         (Descriptors::open): Open the files in binary mode always.
11152         * script.cc (Lex::get_token): Treat \r as whitespace.
11153
11154 2009-10-09  Ian Lance Taylor  <iant@google.com>
11155
11156         * testsuite/retain_symbols_file_test.sh: Don't test for __tcf_0.
11157
11158 2009-10-09  Andrew Pinski  <andrew_pinski@playstation.sony.com>
11159             Ian Lance Taylor  <iant@google.com>
11160
11161         * configure.ac: Check for readv function also.
11162         * fileread.cc (readv): Define if not HAVE_READV.
11163         * fileread.h (File_read:: max_readv_entries): Set to 1 if readv
11164         does not exist.
11165         * config.in: Regenerate.
11166         * configure: Regenerate.
11167
11168 2009-10-09  Doug Kwan  <dougkwan@google.com>
11169
11170         * layout.cc (Layout::make_output_section): Call target hook to make
11171         ordinary output section.
11172         (Layout::finalize): Adjust parameter list of call the
11173         Target::may_relax().
11174         * layout.h (class Layout::section_list): New method.
11175         * merge.h (Output_merge_base::entsize): Change visibility to public.
11176         (Output_merge_base::is_string, Output_merge_base::do_is_string):
11177         New methods.
11178         (Output_merge_string::do_is_string): New method.
11179         * object.cc (Sized_relobj::do_setup): renamed from
11180         Sized_relobj::set_up.
11181         * object.h (Sized_relobj::adjust_shndx,
11182         Sized_relobj::initializ_input_to_output_maps,
11183         Sized_relobj::free_input_to_output_maps): Change visibilities to
11184         protected.
11185         (Sized_relobj::setup): Virtualize.
11186         (Sized_relobj::do_setup): New method declaration.
11187         (Sized_relobj::invalidate_section_offset,
11188         Sized_relobj::do_invalidate_section_offset): New method decfinitions.
11189         (Sized_relobj::elf_file, Sized_relobj::local_values): New methods.
11190         * options.cc (parse_int): New function.
11191         * options.h (parse_int): New declaration.
11192         (DEFINE_int): New macro.
11193         (stub_group_size): New option.
11194         * output.cc (Output_section::Output_section): Initialize memebers
11195         merge_section_map_, merge_section_by_properties_map_,
11196         relaxed_input_section_map_, is_relaxed_input_section_map_valid_.
11197         (Output_section::add_input_section): Handled deferred code-fill
11198         generation and remove an old comment.
11199         (Output_section::add_relaxed_input_section): New method definition.
11200         (Output_section::add_merge_input_section): Use merge section by
11201         properties map to speed to search.  Update merge section maps
11202         as appropriate.
11203         (Output_section::build_relaxation_map): New method definition.
11204         (Output_section::convert_input_sections_in_list_to_relaxed_sections):
11205         Same.
11206         (Output_section::relax_input_section): Renamed to
11207         Output_section::convert_input_sections_to_relaxed_sections and change
11208         interface to take a vector of pointers to relaxed sections.
11209         (Output_section::find_merge_section,
11210         Output_section::find_relaxed_input_section): New method definitions.
11211         (Output_section::is_input_address_mapped,
11212         Output_section::output_offset, Output_section::output_address):
11213         Use output section data maps to speed up searching.
11214         (Output_section::find_starting_output_address): Add comments.
11215         (Output_section::do_write,
11216         Output_section::write_to_postprocessing_buffer): Do code-fill
11217         generation as appropriate.
11218         (Output_section::get_input_sections): Invalidate relaxed input section
11219         map.
11220         (Output_section::restore_states): Adjust type of checkpoint .
11221         Invalidate relaxed input section map.
11222         * output.h (Output_merge_base): New class declaration.
11223         (Input_section_specifier): New class defintion.
11224         (class Output_relaxed_input_section) Change base class to
11225         Output_section_data_build.
11226         (Output_relaxed_input_section::Output_relaxed_input_section): Adjust
11227         base class initializer.
11228         (Output_section::add_relaxed_input_section): New method declaration.
11229         (Output_section::Input_section): Change visibility to protected.
11230         (Output_section::Input_section::relobj,
11231         Output_section::Input_section::shndx): Handle relaxed input sections.
11232         Output_section::input_sections) Change visibility to protected.  Also
11233         define overload to return a non-const pointer.
11234         (Output_section::Merge_section_properties): New class defintion.
11235         (Output_section::Merge_section_by_properties_map,
11236         Output_section::Output_section_data_by_input_section_map,
11237         Output_section::Relaxation_map): New types.
11238         (Output_section::relax_input_section): Rename method to
11239         Output_section::convert_input_sections_to_relaxed_sections and change
11240         interface to take a vector of relaxed section pointers.
11241         (Output_section::find_merge_section,
11242         Output_section::find_relaxed_input_section,
11243         Output_section::build_relaxation_map,
11244         Output_section::convert_input_sections_in_list_to_relaxed_sections):
11245         New method declarations.
11246         (Output_section::merge_section_map_
11247         Output_section::merge_section_by_properties_map_,
11248         Output_section::relaxed_input_section_map_,
11249         Output_section::is_relaxed_input_section_map_valid_,
11250         Output_section::generate_code_fills_at_write_): New data members.
11251         * script-sections.cc
11252         (Output_section_element_input::set_section_addresses): Call
11253         current_data_size and addralign methods of relaxed input sections.
11254         (Orphan_output_section::set_section_addresses): Call current_data_size
11255         and addralign methods of relaxed input sections.
11256         * symtab.cc (Symbol_table::compute_final_value): Extract template
11257         from the body of Symbol_table::sized_finalize_symbol.
11258         (Symbol_table::sized_finalized_symbol): Call
11259         Symbol_table::compute_final_value.
11260         * symtab.h (Symbol_table::Compute_final_value_status): New enum type.
11261         (Symbol_table::compute_final_value): New templated method declaration.
11262         * target.cc (Target::do_make_output_section): New method defintion.
11263         * target.h (Target::make_output_section): New method declaration.
11264         (Target::relax): Add more parameters for input objects, symbol table
11265         and layout.  Adjust call to do_relax.
11266         (Target::do_make_output_section): New method declaration.
11267         (Target::do_relax): Add parameters for input objects, symbol table
11268         and layout.
11269
11270 2009-10-09  Andrew Pinski  <andrew_pinski@playstation.sony.com>
11271
11272         * pread.c: Include stdio.h.
11273
11274 2009-10-09  Andrew Pinski  <andrew_pinski@playstation.sony.com>
11275
11276         * plugin.cc: Don't include dlfcn.h when ENABLE_PLUGINS is not
11277         defined.
11278
11279 2009-10-09  Andrew Pinski  <andrew_pinski@playstation.sony.com>
11280
11281         * dwarf_reader.cc (Sized_dwarf_line_info::Sized_dwarf_line_info):
11282         Change read_shndx type to unsigned int.
11283         (Sized_dwarf_line_info::read_lines): Change shndx type to unsigned
11284         int.
11285         (Sized_dwarf_line_info::read_line_mappings): Likewise.
11286         * dwarf_reader.h (Sized_dwarf_line_info::Sized_dwarf_line_info):
11287         Change read_shndx type to unsigned int.
11288         (Sized_dwarf_line_info::read_lines): Change shndx type to unsigned
11289         int.
11290         (Sized_dwarf_line_info::read_line_mappings): Likewise.
11291         * layout.cc (Layout::create_symtab_sections): Cast the result of
11292         local_symcount * symsize to off_t in the gold_assert.
11293
11294 2009-10-09  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
11295
11296         * arm.cc (Target_arm::relocate::reloc_is_non_pic): Return true for
11297         R_ARM_THM_ABS5, R_ARM_ABS8, R_ARM_ABS12, R_ARM_ABS16,
11298         R_ARM_BASE_ABS.
11299         (Arm_relocate_functions::abs8): Remove has_thumb_bit parameter.
11300         (Arm_relocate_functions::thm_abs5): New function.
11301         (Arm_relocate_functions::abs12): New function.
11302         (Arm_relocate_functions::abs16): New function.
11303         (Arm_relocate_functions::base_abs): New function.
11304         (Scan::check_non_pic): Handle R_ARM_ABS32_NOI.
11305         (Scan::local): Remove special handling of R_ARM_ABS8.  Handle
11306         R_ARM_ABS32_NOI, R_ARM_THM_ABS5, R_ARM_ABS12, R_ARM_ABS16, and
11307         R_ARM_BASE_ABS.
11308         (Scan::global): Likewise.
11309         (Relocate::relocate): Handle R_ARM_ABS12, R_ARM_ABS16,
11310         R_ARM_ABS32_NOI, R_ARM_THM_ABS5, and R_ARM_BASE_ABS.
11311         (Relocatable_size_for_reloc::get_size_for_reloc): Handle
11312         R_ARM_ABS16, R_ARM_THM_ABS5, R_ARM_ABS32_NOI, R_ARM_ABS12, and
11313         R_ARM_BASE_ABS.
11314
11315 2009-10-09  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
11316
11317         * arm.cc (Arm_relocate_functions::movw_prel_nc): New function.
11318         (Arm_relocate_functions::movt_prel): New function.
11319         (Arm_relocate_functions::thm_movw_prel_nc): New function.
11320         (Arm_relocate_functions::thm_movt_prel): New function.
11321         (Scan::local): Handle R_ARM_MOVW_PREL_NC, R_ARM_MOVT_PREL,
11322         R_ARM_THM_MOVW_PREL_NC, and R_ARM_THM_MOVT_PREL.
11323         (Scan::global, Relocate::relocate): Likewise.
11324         (Relocatable_size_for_reloc::get_size_for_reloc): Likewise.
11325
11326 2009-10-09  Mikolaj Zalewski  <mikolajz@google.com>
11327
11328         * gold.cc: (queue_initial_tasks): Pass incremental_inputs to
11329         Incremental_checker.
11330         * incremental.cc: (INCREMENTAL_LINK_VERSION): Change type to
11331         unsigned int.
11332         (class Incremental_inputs_header): New class.
11333         (Incremental_inputs_header_writer): Edit comment.
11334         (Incremental_inputs_entry): New class.
11335         (Incremental_inputs_entry_writer): Edit comment.
11336         (Sized_incremental_binary::do_find_incremental_inputs_section):
11337         Add *strtab_shndx parameter, fill it.
11338         (Sized_incremental_binary::do_check_inputs): New method.
11339         (Incremental_checker::can_incrementally_link_output_file): Use
11340         Sized_incremental_binary::check_inputs.
11341         (Incremental_inputs::report_command_line): Save command line in
11342         command_line_.
11343         * incremental.h:
11344         (Incremental_binary::find_incremental_inputs_section): New
11345         method.
11346         (Incremental_binary::do_find_incremental_inputs_section): Add
11347         strtab_shndx parameter.
11348         (Incremental_binary::do_check_inputs): New pure virtual method.
11349         (Sized_incremental_binary::do_check_inputs): Declare.
11350         (Incremental_checker::Incremental_checker): Add incremental_inputs
11351         parameter, use it to initialize incremental_inputs_.
11352         (Incremental_checker::incremental_inputs_): New field.
11353         (Incremental_checker::command_line): New method.
11354         (Incremental_checker::inputs): New method.
11355         (Incremental_checker::command_line_): New field.
11356
11357 2009-10-09  Mikolaj Zalewski  <mikolajz@google.com>
11358
11359         * incremental.cc: Include <cstdarg> and "target-select.h".
11360         (vexplain_no_incremental): New function.
11361         (explain_no_incremental): New function.
11362         (Incremental_binary::error): New method.
11363         (Sized_incremental_binary::do_find_incremental_inputs_section): New
11364         method.
11365         (make_sized_incremental_binary): New function.
11366         (open_incremental_binary): New function.
11367         (can_incrementally_link_file): Add checks if output is ELF and has
11368         inputs section.
11369         * incremental.h: Include "elfcpp_file.h" and "output.h".
11370         (Incremental_binary): New class.
11371         (Sized_incremental_binary): New class.
11372         (open_incremental_binary): Declare.
11373         * object.cc (is_elf_object): Use
11374         elfcpp::Elf_recognizer::is_elf_file.
11375         (make_elf_object): Use elfcpp::Elf_recognizer::is_valid_header.
11376         * output.h (Output_file::filesize): New method.
11377
11378 2009-10-07  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
11379
11380         * arm.cc (Arm_relocate_functions::extract_arm_movw_movt_addend):
11381         New function.
11382         (Arm_relocate_functions::insert_val_arm_movw_movt): New function.
11383         (Arm_relocate_functions::extract_thumb_movw_movt_addend): New
11384         function.
11385         (Arm_relocate_functions::insert_val_thumb_movw_movt): New
11386         function.
11387         (Arm_relocate_functions::movw_abs_nc): New function.
11388         (Arm_relocate_functions::movt_abs): New function.
11389         (Arm_relocate_functions::thm_movw_abs_nc): New function.
11390         (Arm_relocate_functions::thm_movt_abs): New function.
11391         (Scan::local): Handle R_ARM_MOVW_ABS_NC, R_ARM_MOVT_ABS,
11392         R_ARM_THM_MOVW_ABS_NC, R_ARM_THM_MOVT_ABS.
11393         (Scan::global): Likewise.
11394         (Relocate::relocate): Likewise.
11395         (Relocatable_size_for_reloc::get_size_for_reloc): Likewise.
11396
11397 2009-10-07  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
11398
11399         * arm.cc (Arm_relocate_functions::got_prel) New function.
11400         (Scan::local, Scan::global): Handle R_ARM_GOT_PREL.
11401         (Relocate::relocate): Likewise.
11402         (Relocatable_size_for_reloc::get_size_for_reloc): Likewise.
11403
11404 2009-10-06  Ian Lance Taylor  <iant@google.com>
11405
11406         * options.h (class General_options): Define
11407         split_stack_adjust_size parameter.
11408         * object.h (class Object): Add uses_split_stack_ and
11409         has_no_split_stack_ fields.  Add uses_split_stack and
11410         has_no_split_stack accessor functions.  Declare
11411         handle_split_stack_section.
11412         (class Reloc_symbol_changes): Define.
11413         (class Sized_relobj): Define Function_offsets.  Declare
11414         split_stack_adjust, split_stack_adjust_reltype, and
11415         find_functions.
11416         * object.cc (Object::handle_split_stack_section): New function.
11417         (Sized_relobj::do_layout): Call handle_split_stack_section.
11418         * dynobj.cc (Sized_dynobj::do_layout): Call
11419         handle_split_stack_section.
11420         * reloc.cc (Sized_relobj::relocate_sections): Call
11421         split_stack_adjust for executable sections in split_stack
11422         objects.  Pass reloc_map to relocate_section.
11423         (Sized_relobj::split_stack_adjust): New function.
11424         (Sized_relobj::split_stack_adjust_reltype): New function.
11425         (Sized_relobj::find_functions): New function.
11426         * target-reloc.h: Include "object.h".
11427         (relocate_section): Add reloc_symbol_changes parameter.  Change
11428         all callers.
11429         * target.h (class Target): Add calls_non_split method.  Declare
11430         do_calls_non_split virtual method.  Declare match_view and
11431         set_view_to_nop.
11432         * target.cc: Include "elfcpp.h".
11433         (Target::do_calls_non_split): New function.
11434         (Target::match_view): New function.
11435         (Target::set_view_to_nop): New function.
11436         * gold.cc (queue_middle_tasks): Give an error if mixing
11437         split-stack and non-split-stack objects with -r.
11438         * i386.cc (Target_i386::relocate_section): Add
11439         reloc_symbol_changes parameter.
11440         (Target_i386::do_calls_non_split): New function.
11441         * x86_64.cc (Target_x86_64::relocate_section): Add
11442         reloc_symbol_changes parameter.
11443         (Target_x86_64::do_calls_non_split): New function.
11444         * arm.cc (Target_arm::relocate_section): Add reloc_symbol_changes
11445         parameter.
11446         * powerpc.cc (Target_powerpc::relocate_section): Add
11447         reloc_symbol_changes parameter.
11448         * sparc.cc (Target_sparc::relocate_section): Add
11449         reloc_symbol_changes parameter.
11450         * configure.ac: Call AM_CONDITIONAL for the default target.
11451         * configure: Rebuild.
11452         * testsuite/Makefile.am (TEST_AS): New variable.
11453         (check_SCRIPTS): Add split_i386.sh and split_x86_64.sh.
11454         (check_DATA): Add split_i386 and split_x86_64 files.
11455         (SPLIT_DEFSYMS): Define.
11456         (split_i386_[1234n].o): New targets.
11457         (split_i386_[124]): New targets.
11458         (split_i386_[1234r].stdout): New targets.
11459         (split_x86_64_[1234n].o): New targets.
11460         (split_x86_64_[124]): New targets.
11461         (split_x86_64_[1234r].stdout): New targets.
11462         (MOSTLYCLEANFILES): Add new executables.
11463         * testsuite/split_i386.sh: New file.
11464         * testsuite/split_x86_64.sh: New file.
11465         * testsuite/split_i386_1.s: New file.
11466         * testsuite/split_i386_2.s: New file.
11467         * testsuite/split_i386_3.s: New file.
11468         * testsuite/split_i386_4.s: New file.
11469         * testsuite/split_i386_n.s: New file.
11470         * testsuite/split_x86_64_1.s: New file.
11471         * testsuite/split_x86_64_2.s: New file.
11472         * testsuite/split_x86_64_3.s: New file.
11473         * testsuite/split_x86_64_4.s: New file.
11474         * testsuite/split_x86_64_n.s: New file.
11475         * testsuite/testfile.cc (Target_test): Update relocation_section
11476         function.
11477         * testsuite/Makefile.in: Rebuild.
11478
11479 2009-10-06  Ian Lance Taylor  <iant@google.com>
11480
11481         * i386.cc (class Target_i386::Relocate): Add ldo_addrs_ field.
11482         (Target_i386::Relocate::relocate_tls): Call fix_up_ldo before
11483         changing local_dynamic_type_ from LOCAL_DYNAMIC_NONE.  When
11484         handling R_386_TLS_LDO_32, if local_dynamic_type_ is NONE, push
11485         the address on ldo_addrs_.
11486         (Target_i386::Relocate::fix_up_ldo): New function.
11487
11488 2009-10-06   Rafael Espindola  <espindola@google.com>
11489
11490         * plugin.cc (add_input_library): New.
11491         (Plugin::load): Add add_input_library to tv.
11492         (Plugin_manager::add_input_file): Add the is_lib argument.
11493         (add_input_file): Update call to Plugin_manager::add_input_file.
11494         (add_input_library): New.
11495         * plugin.h (Plugin_manager::add_input_file): Add the is_lib argument.
11496
11497 2009-09-30  Doug Kwan  <dougkwan@google.com>
11498
11499         * arm.cc (Target_arm::may_need_copy_reloc): Check for THUMB function
11500         symbol and call Symbol::may_need_copy_reloc to determine if
11501         a copy reloc is needed.
11502         * copy-relocs.cc (Copy_relocs::need_copy_reloc): Return false if -z
11503         nocopyreloc is given in command line.
11504         (Copy_relocs::emit_copy_reloc): Assert that -z nocopyreloc is not
11505         given in command line.
11506         * i386.cc (Target_i386::may_need_copy_reloc): Remove.
11507         (Target_i386::Scan::global): Use Symbol::may_need_copy_reloc instead
11508         of the removed Target_i386::may_need_copy_reloc.
11509         * options.h (copyreloc): New option with default value false.
11510         * powerpc.cc (Target_powerpc::may_need_copy_reloc): Remove.
11511         (Target_powerpc::Scan::global): Use Symbol::may_need_copy_reloc
11512         instead of the removed Target_powerpc::may_need_copy_reloc.
11513         * sparc.cc (Target_powerpc::may_need_copy_reloc): Remove.
11514         (Target_sparc::Scan::global): Use Symbol::may_need_copy_reloc
11515         instead of the removed Target_sparc::may_need_copy_reloc.
11516         * symtab.h (Symbol::may_need_copy_reloc): New method definition.
11517         * x86_64.cc (Target_powerpc::may_need_copy_reloc): Remove.
11518         (Target_x86_64::Scan::global): Use Symbol::may_need_copy_reloc
11519         instead of the removed Target_x86_64::may_need_copy_reloc.
11520
11521 2009-09-30  Ian Lance Taylor  <iant@google.com>
11522
11523         * object.h (class Object): Remove target_ field, and target,
11524         sized_target, and set_target methods.
11525         (Object::sized_target): Remove.
11526         (class Sized_relobj): Update declarations.  Remove sized_target.
11527         * object.cc (Sized_relobj::setup): Remove target parameter.
11528         Change all callers.
11529         (Input_objects::add_object): Don't do anything with the target.
11530         (make_elf_sized_object): Add punconfigured parameter.  Change all
11531         callers.  Set or test parameter target.
11532         * dynobj.cc (Sized_dynobj::target): Remove target parameter.
11533         Change all callers.
11534         * parameters.cc (Parameters::set_target): Change parameter type to
11535         be non-const.
11536         (Parameters::default_target): Remove.
11537         (set_parameters_target): Change parameter type to be non-const.
11538         (parameters_force_valid_target): New function.
11539         (parameters_clear_target): New function.
11540         * parameters.h (class Parameters): Update declarations.  Remove
11541         default_target method.  Add sized_target and clear_target
11542         methods.  Change target_ to be non-const.
11543         (set_parameters_target): Update declaration.
11544         (parameters_force_valid_target): Declare.
11545         (parameters_clear_target): Declare.
11546         * readsyms.cc (Read_symbols::do_read_symbols): Pass punconfigured
11547         as NULL if we aren't searching.
11548         (Add_symbols::run): Don't check for compatible target.
11549         * fileread.cc (Input_file::open_binary): Call
11550         parameters_force_valid_target.
11551         * gold.cc (queue_middle_tasks): Likewise.
11552         * plugin.cc (make_sized_plugin_object): Likewise.  Don't call
11553         set_target on object.
11554         * dynobj.h (class Sized_dynobj): Update declarations.
11555         * archive.cc (Archive::get_elf_object_for_member): Return NULL if
11556         make_elf_object returns NULL.
11557         (Archive::include_member): Don't check whether object target is
11558         compatible.
11559         * output.cc (Output_section::add_input_section): Get target from
11560         parameters.
11561         (Output_section::relax_input_section): Likewise.
11562         * reloc.cc (Sized_relobj::do_gc_process_relocs): Get target from
11563         parameters.
11564         (Sized_relobj::do_scan_relocs): Likewise.
11565         (Sized_relobj::relocate_sections): Likewise.
11566         * resolve.cc (Symbol_table::resolve): Likewise.
11567         * symtab.cc (Symbol_table::wrap_symbol): Likewise.  Remove object
11568         parameter.  Change all callers.
11569         (Symbol_table::add_from_object): Get target from parameters.
11570         (Symbol_table::add_from_relobj): Don't check object target.
11571         (Symbol_table::add_from_dynobj): Likewise.
11572         (Symbol_table::define_special_symbol): Get target from
11573         parameters.
11574         * symtab.h (class Symbol_table): Update declaration.
11575         * testsuite/binary_unittest.cc (gold_testsuite): Remove target
11576         parameter.  Change all callers.  Clear parameter target.
11577         (Binary_test): Test target here.
11578         * testsuite/object_unittest.cc (gold_testsuite): Remove
11579         target_test_pointer parameter.  Change all callers.
11580         (Object_test): Test target here.
11581
11582 2009-09-26  Ian Lance Taylor  <iant@google.com>
11583
11584         * testsuite/initpri1.c: Don't try to use constructor priorities if
11585         compiling with gcc before 4.3.
11586
11587 2009-09-22  Mikolaj Zalewski  <mikolajz@google.com>
11588
11589         * testsuite/retain_symbols_file_test.sh (check_present): Change
11590         output file name to retain_symbols_file_test.stdout.
11591         (check_absent): Likewise.
11592
11593 2009-09-18  Craig Silverstein  <csilvers@google.com>
11594
11595         * object.cc (Sized_relobj::do_count): Test should_retain_symbol map.
11596         * options.cc: Include <cerrno> and <fstream>.
11597         (General_options::finalize): Parse -retain-symbols-file tag.
11598         * options.h: New flag.
11599         (General_options): New method should_retain_symbol, new
11600         variable symbols_to_retain.
11601         * symtab.cc (Symbol_table::sized_finalize_symbol): Test
11602         should_retain_symbol map.
11603         * testsuite/Makefile.am (retain_symbols_file_test): New test.
11604         * testsuite/Makefile.in: Regenerate.
11605         * testsuite/retain_symbols_file_test.sh: New file.
11606
11607 2009-09-18  Nick Clifton  <nickc@redhat.com>
11608
11609         * po/es.po: Updated Spanish translation.
11610
11611 2009-09-17  Doug Kwan  <dougkwan@google.com>
11612
11613         * debug.h (DEBUG_RELAXATION): New constant.
11614         (DEBUG_ALL): Add DEBUG_RELAXATION.
11615         (debug_string_to_enum): Add relaxation debug option.
11616         * layout.cc
11617         (Layout::Relaxation_debug_check::check_output_data_for_reset_values,
11618         Layout::Relaxation_debug_check::read_sections,
11619         Layout::Relaxation_debug_check::read_sections): New method definitions.
11620         (Layout::Layout): Initialize data members
11621         record_output_section_data_from_scrips_,
11622         script_output_section_data_list_ and relaxation_debug_check_.
11623         (Layout::save_segments, Layout::restore_segments,
11624         Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
11625         Layout::relaxation_loop_body): New method definitions.
11626         (Layout::finalize): Support relaxation.  Move section layout code to
11627         Layout::relaxation_loop_body.
11628         (Layout::set_asection_address_from_script): Move code for orphan
11629         section placement out.
11630         (Layout::place_orphan_sections_in_script): New method definition.
11631         * layout.h (Output_segment_headers, Output_file_header):
11632         New forward class declarations.
11633         (Layout::~Layout): Define.
11634         (Layout::new_output_section_data_from_script): New method definition.
11635         (Layout::place_orphan_sections_in_script): New method declaration.
11636         (Layout::Segment_states): New type declaration.
11637         (Layout::save_segments, Layout::restore_segments,
11638         Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
11639         Layout::relaxation_loop_body): New method declarations.
11640         (Layout::Output_section_data_list): New type declaration.
11641         (Layout::Relaxation_debug_check): New class definition.
11642         (Layout::record_output_section_data_from_script_,
11643         Layout::script_output_section_data_list_, Layout::segment_states_,
11644         Layout::relaxation_debug_check_): New data members.
11645         * output.cc: (Output_section_headers::do_size): New method definition.
11646         (Output_section_headers::Output_section_headers): Move size
11647         computation to Output_section_headers::do_size.
11648         (Output_segment_headers::do_size): New method definition.
11649         (Output_file_header::Output_file_header): Move size computation to
11650         Output_file_header::do_size and call it.
11651         (Output_file_header::do_size): New method definition.
11652         (Output_data_group::Output_data_group): Adjust call to
11653         Output_section_data.
11654         (Output_data_dynamic::set_final_data_size): Add DT_NULL tag only once.
11655         (Output_symtab_xindex::do_write): Add array bound check.
11656         (Output_section::Input_section::print_to_mapfile): Handle
11657         RELAXED_INPUT_SECTION_CODE.
11658         (Output_section::Output_section): Initialize data member checkpoint_.
11659         (Output_section::~Output_section): Delete checkpoint object pointed
11660         by checkpoint_.
11661         (Output_section::add_input_section): Always add an Input_section if
11662         relaxing.
11663         (Output_section::add_merge_input_section): Add assert.
11664         (Output_section::relax_input_section): New method definition.
11665         (Output_section::set_final_data_size): Set load address to zero for
11666         an unallocated section.
11667         (Output_section::do_address_and_file_offset_have_reset_values):
11668         New method definition.
11669         (Output_section::Input_section_sort_enty::Input_section_sort_enty):
11670         Handle relaxed input section.
11671         (Output_section::sort_attached_input_sections): Checkpoint input
11672         section list lazily.
11673         (Output_section::get_input_sections): Change type of input_sections to
11674         list of Simple_input_section pointers.  Checkpoint input section list
11675         lazily.  Also handle relaxed input sections.
11676         (Output_section::add_input_section_for_script): Take a reference to
11677         a Simple_input_section object instead of Relobj pointer and section
11678         index as parameter.  Handle relaxed input sections.
11679         (Output_section::save_states, Output_section::restore_states): New
11680         method definitions.
11681         * output.h (Output_data::Output_data): Initialize is_data_size_fixed_.
11682         (Output_data::is_data_size_fixed): New method definition.
11683         (Output_data::reset_addresss_and_file_offset): Do not reset data size
11684         if it is fixed.
11685         (Output_data::address_and_file_offset_have_reset_values): New method
11686         definition.
11687         (Output_data::do_address_and_file_offset_have_reset_values): New method
11688         definition.
11689         (Output_data::set_data_size): Check that data size is not fixed.
11690         (Output_data::fix_data_size): New method definition.
11691         (Output_data::is_data_size_fixed_): New data member.
11692         (Output_section_headers::set_final_data_size): New method definition.
11693         (Output_section_headers::do_size): New method declaration.
11694         (Output_segment_headers::set_final_data_size): New method definition.
11695         (Output_segment_headers::do_size): New method declaration.
11696         (Output_file_header::set_final_data_size)::New method definition.
11697         (Output_file_header::do_size)::New method declaration.
11698         (Output_section_data::Output_section_data): Add new parameter
11699         is_data_size_fixed and use it to fix data size.
11700         (Output_data_const::Output_data_const): Adjust call to base class
11701         constructor and fix data size.
11702         (Output_data_const_buffer::Output_data_const_buffer): Adjust call to
11703         base class constructor and fix data size.
11704         (Output_data_fixed_space::Output_data_fixed_space): Adjust call to
11705         base class constructor and fix data size.
11706         (Output_data_zero_fill::Output_data_zero_fill): Adjust call to base
11707         class constructor and fix data size.
11708         (Output_data_group::set_final_data_size): New method definition.
11709         (Output_data_dynamic::Dynamic_entry::tag): New method definition.
11710         (Output_symtab_xindex::Output_symtab_xindex): Adjust call to base
11711         class constructor and fix data size.
11712         (Output_relaxed_input_section): New class definition.
11713         (Output_section::Simple_input_section): New class definition.
11714         (Output_section::get_input_sections): Adjust parameter list.
11715         (Output_section::add_input_section_for_script): Same.
11716         (Output_section::save_states, Output_section::restore_states,
11717         Output_section::do_address_and_file_offset_have_reset_values,
11718         (Output_section::Input_section::Input_section): Handle
11719         RELAXED_INPUT_SECTION_CODE.  Add new overload for
11720         Output_relaxed_input_section.
11721         (Output_section::Input_section::is_input_section,
11722         Output_section::Input_section::set_output_section): Handle relaxed
11723         input section.
11724         (Output_section::Input_section::is_relaxed_input_section,
11725         Output_section::Input_section::output_section_data,
11726         Output_section::Input_section::relaxed_input_section): New method
11727         definitions.
11728         (Output_section::Input_section::RELAXED_INPUT_SECTION_CODE): New enum
11729         value.
11730         (Output_section::Input_section::u1_): Update comments.
11731         (Output_section::Input_section::u2_): Add new union member poris.
11732         (Output_section::Checkpoint_output_section): New classs definition.
11733         (Output_section::relax_input_section): New method declaration.
11734         (Output_section::checkpoint_): New data member.
11735         (Output_segment): Update comments.
11736         (Output_segment::Output_segment): Un-privatize copy constructor.
11737         (Output_segment::operator=): Un-privatize.
11738         * script-sections.cc (Output_section_element::Input_section_list):
11739         Change element type to Output_section::Simple_input_section.
11740         (Output_section_element_dot_assignment::set_section_addresses):
11741         Register output section data for relaxation clean up.
11742         (Output_data_exression::Output_data_expression): Adjust call to base
11743         constructor to fix data size.
11744         (Output_section_element_data::set_section_addresses): Register
11745         Output_data_expression object for relaxation clean up.
11746         (struct Input_section_info): Replace Relobj pointer and section index
11747         pair with Output_section::Simple_input_section and Convert struct to a
11748         class.
11749         (Input_section_sorter::operator()): Adjust access to
11750         Input_section_info data member to use accessors.
11751         (Output_section_element_input::set_section_addresses): Use layout
11752         parameter.  Adjust code to use Output_section::Simple_input_section
11753         and Input_secction_info classes.  Register filler for relaxation
11754         clean up.
11755         (Orphan_output_section::set_section_addresses): Replace Relobj pointer
11756         and section index pair with Output_section::Simple_input_section
11757         class.  Adjust code accordingly.
11758         (Phdrs_element::release_segment): New method definition.
11759         (Script_sections::attach_sections_using_phdrs_clause): Do not modify
11760         segment list.
11761         (Script_sections::release_segments): New method definition.
11762         * gold/script-sections.h (Script_sections::release_segments): New
11763         method declaration.
11764         * gold/target.h (Target::may_relax, Target::relax,
11765         Target::do_may_relax, Target::do_relax): New method definitions.
11766
11767 2009-09-17  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
11768
11769         * arm.cc (has_signed_unsigned_overflow): New function.
11770         (Arm_relocate_functions::abs8): New function.
11771         (Target_arm::Scan::local): Handle R_ARM_ABS8.
11772         (Target_arm::Scan::global): Likewise.
11773         (Target_arm::relocate::relocate): Likewise.
11774         (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc):
11775         Likewise.
11776
11777 2009-09-16  Cary Coutant  <ccoutant@google.com>
11778
11779         * testsuite/Makefile.am (MOSTLYCLEANFILES): Add more generated files.
11780         * testsuite/Makefile.in: Regenerate.
11781
11782 2009-09-11  Nick Clifton  <nickc@redhat.com>
11783
11784         * po/gold.pot: Updated by the Translation project.
11785
11786 2009-09-08  Cary Coutant  <ccoutant@google.com>
11787
11788         * output.cc (Output_file::open): Add execute permission to empty file.
11789         * testsuite/Makefile.am (permission_test): New test.
11790         * testsuite/Makefile.in: Regenerate.
11791
11792 2009-09-02  Ian Lance Taylor  <iant@google.com>
11793
11794         * output.cc (Output_file::resize): Call map_no_anonymous rather
11795         than map.
11796
11797 2009-09-01  Mikolaj Zalewski  <mikolajz@google.com>
11798
11799         * gold.cc: Include "incremental.h".
11800         (queue_initial_tasks): Call Incremental_checker methods.
11801         * incremental.cc: Include "output.h".
11802         (Incremental_checker::can_incrementally_link_output_file): New
11803         method.
11804         * incremental.h (Incremental_checker): New class.
11805
11806         * output.cc (Output_file::open_for_modification): New method.
11807         (Output_file::map_anonymous): Changed return type to bool.  Record
11808         map in base_ field.
11809         (Output_file::map_no_anonymous): New method, broken out of map.
11810         (Output_file::map): Use map_no_anonymous and map_anonymous.
11811         * output.h (class Output_file): Update declarations.
11812
11813 2009-08-24  Cary Coutant  <ccoutant@google.com>
11814
11815         * options.h (Command_line::Pre_options): New class.
11816         (Command_line::pre_options): New member.
11817         * options.cc (gold::options::ready_to_register): New variable.
11818         (One_option::register_option): Do nothing if not registering options.
11819         Assert if same short option registered twice.
11820         (General_options::General_options): Turn off option registration when
11821         done constructing.
11822         (Command_line::Pre_options::Pre_options): New constructor.
11823
11824 2009-08-24  Cary Coutant  <ccoutant@google.com>
11825
11826         * options.h (General_options::no_keep_memory): Remove incorrect
11827         short option.
11828
11829 2009-08-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11830
11831         * Makefile.am (am__skiplex, am__skipyacc): New.
11832         * Makefile.in: Regenerate.
11833
11834 2009-08-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11835
11836         * Makefile.am (AM_CPPFLAGS): Renamed from ...
11837         (INCLUDES): ... this.
11838         * testsuite/Makefile.am (AUTOMAKE_OPTIONS): Add -Wno-portability.
11839         (AM_CPPFLAGS): Renamed from ...
11840         (INCLUDE): ... this.
11841         * Makefile.in, testsuite/Makefile.in: Regenerate.
11842
11843         * Makefile.in: Regenerate.
11844         * aclocal.m4: Likewise.
11845         * config.in: Likewise.
11846         * configure: Likewise.
11847         * testsuite/Makefile.in: Likewise.
11848
11849         * Makefile.am (AUTOMAKE_OPTIONS): Add foreign.
11850         * testsuite/Makefile.am (AUTOMAKE_OPTIONS): Add foreign.
11851         * Makefile.in: Regenerate.
11852         * testsuite/Makefile.in: Regenerate.
11853
11854 2009-08-19  Cary Coutant  <ccoutant@google.com>
11855
11856         * resolve.cc (Symbol_table::resolve): Don't complain about defined
11857         symbols in shared libraries overridden by hidden or internal symbols
11858         in the main program.
11859
11860 2009-08-19  Chris Demetriou  <cgd@google.com>
11861
11862         * testsuite/debug_msg.sh: Match .* rather than ${srcdir} when
11863         checking source file names in error messages.
11864
11865 2009-08-18  Doug Kwan  <dougkwan@google.com>
11866
11867         * dynobj.cc (Sized_dynobj::setup): Take a Target object instead of
11868         an elcpp::Ehdr as parameter.  Adjust call to set_target.
11869         * dynobj.h (Sized_dynobj::setup): Take a Target object instead of
11870         an elfcpp::Ehdr as parameter.
11871         * object.cc (Object::set_target): Remove the version that looks up
11872         a target and sets it.
11873         (Sized_relobj::setup): Take a Target object instead of
11874         an elfcpp::Ehdr as parameter.  Adjust call to set_target.
11875         (make_elf_sized_object): Find target and ask target to
11876         make an ELF object.
11877         * object.h: (Object::set_target): Remove the version that looks up
11878         a target and sets it.
11879         (Sized_relobj::setup): Take a Target object instead of
11880         an elfcpp:Ehdr as parameter.
11881         * target.cc: Include dynobj.h.
11882         (Target::do_make_elf_object_implementation): New.
11883         (Target::do_make_elf_object): New.
11884         * target.h (Target::make_elf_object): New template declaration.
11885         (Target::do_make_elf_object): New method declarations.
11886         (Target::do_make_elf_object_implementation): New template declaration.
11887
11888 2009-08-14  Ian Lance Taylor  <iant@google.com>
11889
11890         * gold.h (FUNCTION_NAME): Define.
11891         (gold_unreachable): Use FUNCTION_NAME.
11892
11893 2009-08-12  Sriraman Tallam  <tmsriram@google.com>
11894
11895         * icf.cc (Icf::find_identical_sections): Issue a warning when a
11896         symbol in the --keep-unique list is not found.
11897
11898 2009-08-12  Sriraman Tallam  <tmsriram@google.com>
11899
11900         * icf.cc (Icf::find_identical_sections): Unfold symbols that have
11901         been maked as --keep-unique.
11902         (Icf::unfold_section): New function.
11903         * icf.h (Icf::unfold_section): New function.
11904         * options.h (General_options::keep_unique): New option.
11905         * testsuite/Makefile.am: Add commands to build icf_keep_unique_test.
11906         * testsuite/Makefile.in: Regenerate.
11907         * testsuite/icf_keep_unique_test.sh: New file.
11908         * testsuite/icf_keep_unique_test.cc: New file.
11909
11910 2009-08-12  Cary Coutant  <ccoutant@google.com>
11911
11912         PR 10471
11913         * resolve.cc (Symbol_table::resolve): Check for references from
11914         dynamic objects to hidden and internal symbols.
11915         * testsuite/Makefile.am (hidden_test.sh): New test.
11916         * testsuite/Makefile.in: Regenerate.
11917         * testsuite/hidden_test.sh: New script.
11918         * testsuite/hidden_test_1.c: New test source.
11919         * testsuite/hidden_test_main.c: New test source.
11920
11921 2009-08-11  Doug Kwan  <dougkwan@google.com>
11922
11923         * arm.cc: Update comments.
11924         (Target_arm::do_finalize_sections): Add a special PT_ARM_EXIDX
11925         segment to locate the .ARM.exidx section if present.
11926
11927 2009-08-09  Doug Kwan  <dougkwan@google.com>
11928
11929         * dynobj.h (Sized_dynobj::do_section_entsize): Revert the previous
11930         patch.
11931
11932 2009-08-07  Sriraman Tallam  <tmsriram@google.com>
11933         * dynobj.h (Sized_dynobj::do_section_entsize): Add return to avoid
11934         compiler warnings.
11935
11936 2009-08-06  Sriraman Tallam  <tmsriram@google.com>
11937
11938         * x86_64.cc (Target_x86_64::Relocate::relocate_tls): Check for a
11939         valid tls_segment only for non-debug-section relocations.
11940         * testsuite/Makefile.am: Add gc_tls_test.
11941         * testsuite/Makefile.in: Regenerate.
11942         * testsuite/gc_tls_test.cc: New file.
11943         * testsuite/gc_tls_test.sh: New file.
11944
11945 2009-08-05  Sriraman Tallam  <tmsriram@google.com>
11946
11947         * icf.cc: New file.
11948         * icf.h: New file.
11949         * Makefile.am (CCFILES): Add icf.cc.
11950         (HFILES): Add icf.h
11951         * Makefile.in: Regenerate.
11952         * dynobj.h (Sized_dynobj::do_section_entsize): New function.
11953         * gc.h (gc_process_relocs): Populate lists used by icf to contain
11954         section, symbol and addend information for the relocs.
11955         * gold.cc (queue_middle_tasks): Call identical code folding.
11956         * gold.h: Add defines for multimap.
11957         * layout.cc (Layout::create_symtab_sections): Add symtab as parameter
11958         to the call of finalize_local_symbols.
11959         * main.cc (main): Create object of class Icf.
11960         * object.cc (Sized_relobj::do_layout): Allow this function to be
11961         called twice during icf.
11962         (Sized_relobj::do_finalize_local_symbols): Fold symbols corresponding
11963         to sections marked as identical by icf.
11964         (Sized_relobj::do_section_flags): Get section_flags from Symbols_data
11965         when available.
11966         (Sized_relobj::do_section_entsize): New function.
11967         * object.h (Object::section_entsize): New function.
11968         (Object::do_section_entsize): New pure virtual function.
11969         (Relobj::finalize_local_symbols): Add new parameter.
11970         (Relobj::do_section_entsize): New function.
11971         * options.h (General_options::icf): New option.
11972         (General_options::icf_iterations): New option.
11973         (General_options::print_icf_sections): New option.
11974         * plugin.cc (Sized_pluginobj::do_section_entsize): New function.
11975         * plugin.h (Sized_pluginobj::do_section_entsize): New function.
11976         * reloc.cc (Read_relocs::run): Delay scanning relocs when doing
11977         icf.
11978         * symtab.cc (Symbol_table::is_section_folded): New function.
11979         (Symbol_table::sized_finalize_symbol):  Fold symbols corresponding
11980         to sections marked as identical by icf.
11981         * symtab.h (Symbol_table::set_icf): New function.
11982         (Symbol_table::icf): New function.
11983         (Symbol_table::is_section_folded): New function.
11984         (Symbol_table::icf_): New data member.
11985         * target-reloc.h (relocate_section): Ignore sections folded by icf.
11986         * testsuite/Makefile.am: Add commands to build icf_test.
11987         * testsuite/Makefile.in: Regenerate.
11988         * testsuite/icf_test.sh: New file.
11989         * testsuite/icf_test.cc: New file.
11990
11991 2009-07-24  Chris Demetriou  <cgd@google.com>
11992
11993         * layout.cc (is_compressible_debug_section): Fix incorrect
11994         comment about compressed section names.
11995
11996 2009-07-20  Ian Lance Taylor  <ian@airs.com>
11997
11998         PR 10419
11999         * x86_64.cc (Target_x86_64::do_code_fill): Correct nop sequences.
12000
12001 2009-07-16  Ian Lance Taylor  <iant@google.com>
12002
12003         PR 10400
12004         * layout.h: #include <map>.
12005         (class Kept_section): Change from struct to class.  Add accessors
12006         and setters.  Add section size to Comdat_group mapping.  Change
12007         Comdat_group to std::map.  Add is_comdat_ field.  Add
12008         linkonce_size field in union.
12009         (class Layout): Update declaration of find_or_add_kept_section.
12010         Don't declare find_kept_object.
12011         * layout.cc (Layout::find_or_add_kept_section): Remove candidate
12012         parameter.  Add object, shndx, is_comdat, and is_group_name
12013         parameters.  Change all callers.  Adjust for new Kept_section.
12014         (Layout::find_kept_object): Remove.
12015         * object.cc (Sized_relobj::include_section_group): Update use of
12016         Kept_section.  Rename secnum to shndx.  Only record
12017         Kept_comdat_section if sections are the same size.
12018         (Sized_relobj::include_linkonce_section): Update use of
12019         Kept_section.  Only record Kept_comdat_section if sections are the
12020         same size.  Set size of linkonce section.
12021         (Sized_relobj::map_to_kept_section): Update call to
12022         get_kept_comdat_section.
12023         * object.h (class Sized_relobj): Rename fields in
12024         Kept_comdat_section to drop trailing underscores; change object
12025         field to Relobj*.  Change Kept_comdat_section_table to store
12026         struct rather than pointer.
12027         (Sized_relobj::set_kept_comdat_section): Remove kept parameter.
12028         Add kept_object and kept_shndx parameters.  Change all callers.
12029         (Sized_relobj::get_kept_comdat_section): Change return type to
12030         bool.  Add kept_object and kept_shndx parameters.  Change all
12031         callers.
12032         * plugin.cc (Pluginobj::include_comdat_group): Update call to
12033         Layout::find_or_add_kept_section.
12034
12035 2009-07-09  Ian Lance Taylor  <iant@google.com>
12036
12037         * merge.cc (Object_merge_map::initialize_input_to_output_map):
12038         Reserve space in the hash table.
12039
12040 2009-07-06  Mikolaj Zalewski  <mikolajz@google.com>
12041
12042         * fileread.cc (File_read::get_mtime): New method.
12043         * fileread.h (Timespec): New structure.
12044         (File_read::get_mtime): New method.
12045         * incremental.cc (Incremental_inputs_entry_data::timestamp_usec):
12046         Renamed from timestamp_nsec.
12047         (Incremental_inputs_entry_write::timestamp_sec): Fix argument to
12048         Elf_Xword.
12049         (Incremental_inputs_entry_write::timestamp_usec): Renamed from
12050         timestamp_nsec.
12051         (Incremental_inputs::report_archive): Save mtime; style fix.
12052         (Incremental_inputs::report_obejct): Save mtime; style fix.
12053         (Incremental_inputs::report_script): Save mtime; style fix.
12054         (Incremental_inputs::finalize_inputs): Style fix.
12055         (Incremental_inputs::finalize): Style fix.
12056         (Incremental_inputs::create_input_section_data): Store inputs
12057         mtime.
12058         * incremental.h (Incremental_inputs::report_script): Add mtime
12059         argument.
12060         (Incremental_inputs::Input_info::Input_info): Intialize only one
12061         union member.
12062         (Incremental_inputs::Input_info::archive): Move to nameless
12063         union.
12064         (Incremental_inputs::Input_info::obejct): Move to nameless union.
12065         (Incremental_inputs::Input_info::script): Move to nameless union.
12066         (Incremental_inputs::mtime): New field.
12067         * script.cc (read_input_script): Pass file mtime to
12068         Incremental_input.
12069         * script.h (Script_info::inputs): Style fix.
12070
12071 2009-07-01  Ian Lance Taylor  <ian@airs.com>
12072
12073         * freebsd.h (Target_freebsd::do_adjust_elf_header): Use size
12074         instead of 32.
12075
12076 2009-06-24  Ian Lance Taylor  <iant@google.com>
12077
12078         PR 10156
12079         * layout.cc (Layout::choose_output_section): If we find an
12080         existing section, update the flags.
12081         (Layout::create_notes): New function, broken out of
12082         Layout::finalize.
12083         (Layout::finalize): Don't create note sections.
12084         (Layout::create_note): Don't crash if linker script discards
12085         section.
12086         (Layout::create_gold_note): Likewise.
12087         (Layout::create_build_id): Likewise.  Don't set
12088         after_input_sections on the section.
12089         (Layout::create_executable_stack_info): Remove target parameter.
12090         Change caller.
12091         * layout.h (class Layout): Declare create_notes.  Update
12092         declaration of create_executable_stack_info.
12093         * gold.cc (queue_middle_tasks): Call create_notes.
12094         * output.cc (Output_section::update_flags_for_input_section): Move
12095         here from output.h.  If SHF_ALLOC flag is newly set, mark address
12096         invalid.
12097         * output.h (Output_data::mark_address_invalid): New function.
12098         (class Output_section): Only declare, not define,
12099         update_flags_for_input_section.  Remove set_flags.
12100
12101 2009-06-24  Ian Lance Taylor  <iant@google.com>
12102
12103         * script-sections.cc (Output_section_definition::
12104         set_section_addresses): Rename shadowing local load_address to
12105         laddr.
12106
12107 2009-06-24  Ian Lance Taylor  <iant@google.com>
12108
12109         PR 10244
12110         * reloc.cc (relocate_sections): Skip empty relocation sections.
12111
12112 2009-06-23  Ian Lance Taylor  <iant@google.com>
12113
12114         PR 10156
12115         * layout.cc (Layout::create_note): Use choose_output_section
12116         rather than make_output_section.
12117
12118 2009-06-23  Ian Lance Taylor  <iant@google.com>
12119
12120         PR 10237
12121         * options.cc (General_options::parse_V): Set printed_version_.
12122         (General_options::General_options): Initialize printed_version_.
12123         * options.h (class General_options): Add printed_version_ field.
12124         * gold.cc (queue_initial_tasks): If there are no input files,
12125         don't give a fatal error if we printed the version information.
12126         (queue_middle_tasks): If using -r with a shared object, give a
12127         fatal error rather than an ordinary error.
12128
12129 2009-06-23  Ian Lance Taylor  <iant@google.com>
12130
12131         PR 10219
12132         * layout.cc (Layout::Layout): Initialize have_stabstr_section_.
12133         (Layout::make_output_section): Set have_stabstr_section_ if we see
12134         a .stab*str section.
12135         (Layout::finalize): Call link_stabs_sections.
12136         (Layout::link_stabs_sections): New file.
12137         * layout.h (class Layout): Add have_stabstr_section_ field.
12138         Declare link_stabs_sections.
12139
12140 2009-06-23  Doug Kwan  <dougkwan@google.com>
12141
12142         * Makefile.am (libgold_a_LIBADD): New.
12143         (ld_new_DEPENDENCIES, ld_new_LDADD): Remove LIBOBJS
12144         * Makefile.in: Regenerate.
12145         * config.in (HAVE_DECL_MEMMEM, HAVE_DECL_STRNDUP): New.
12146         * configure: Regenerate.
12147         * configure.ac (AC_CHECK_DECLS): Add strndup and memmem.
12148         * fileread.cc: Include sys/state.h
12149         * gold.h: Declare memmem and strndup if found missing.
12150         * gold_reloc.h: Include byteswap.h if HAVE_BYTESWAP_H is defined.
12151
12152 2009-06-23  Ian Lance Taylor  <iant@google.com>
12153
12154         * configure.ac: Call AC_CHECK_DECLS using C, not C++.
12155         * configure: Rebuild.
12156
12157 2009-06-23  Ian Lance Taylor  <iant@google.com>
12158
12159         PR 10147
12160         * object.cc (Object::section_contents): Don't try to get a view if
12161         the section has length zero.
12162         (Object::handle_gnu_warning_section): If the section is empty, use
12163         the name of the section as the warning.
12164
12165 2009-06-23  Ian Lance Taylor  <iant@google.com>
12166
12167         PR 10133
12168         * stringpool.h (class Stringpool_template): Add optimize_ field.
12169         (Stringpool_template::set_optimize): New function.
12170         * stringpool.cc (Stringpool_template::Stringpool_template):
12171         Initialize optimize_ field.
12172         (Stringpool_template::set_string_offsets): Test local optimize
12173         fild rather than parameter.
12174         * layout.cc (Layout::Layout): Call set_optimize on the section
12175         name stringpool.
12176
12177 2009-06-22  Ian Lance Taylor  <iant@google.com>
12178
12179         PR 10030
12180         * yyscript.y: Parse TARGET.
12181         * script.cc (script_set_target): New function.
12182         * script-c.h (script_set_target): Declare.
12183         * options.cc (General_options::string_to_object_format): Rename
12184         from string_to_object_format in anonymous namespace.  Change
12185         callers.
12186         * options.h (class General_options): Declare
12187         string_to_object_format.
12188
12189 2009-06-22  Ian Lance Taylor  <iant@google.com>
12190
12191         * script-sections.cc (Script_sections::create_segments): Don't put
12192         program headers in a PT_LOAD segment if -n or -N.
12193
12194 2009-06-22  Ian Lance Taylor  <iant@google.com>
12195
12196         PR 10141
12197         * options.h (class General_options): Add -z lazy and -z now.  Sort
12198         -z options into alphabetical order.
12199         * layout.cc (Layout::finish_dynamic_section): Handle -z now.
12200
12201 2009-06-21  Ian Lance Taylor  <iant@google.com>
12202
12203         * layout.cc (Layout::make_output_section): Call
12204         Target::new_output_section.
12205         (Layout::attach_allocated_section_to_segment): Put large section
12206         sections in a separate load segment with the large segment flag
12207         set.
12208         (Layout::segment_precedes): Sort large data segments after other
12209         load segments.
12210         (align_file_offset): New static function.
12211         (Layout::set_segment_offsets): Use align_file_offset.
12212         * output.h (class Output_section): Add is_small_section_ and
12213         is_large_section_ fields.
12214         (Output_section::is_small_section): New function.
12215         (Output_section::set_is_small_section):  New function.
12216         (Output_section::is_large_section): New function.
12217         (Output_section::set_is_large_section): New function.
12218         (Output_section::is_large_data_section): New function.
12219         (class Output_segment): Add is_large_data_segment_ field.
12220         (Output_segment::is_large_data_segment): New function.
12221         (Output_segment::set_is_large_data_segment): New function.
12222         * output.cc (Output_section::Output_section): Initialize new
12223         fields.
12224         (Output_segment::Output_segment): Likewise.
12225         (Output_segment::add_output_section): Add assertion that large
12226         data sections always go in large data segments.  Force small data
12227         sections to the end of the list of data sections.  Force small BSS
12228         sections to the start of the list of BSS sections.  For large BSS
12229         sections to the end of the list of BSS sections.
12230         * symtab.h (class Symbol): Declare is_common_shndx.
12231         (Symbol::is_defined): Check Symbol::is_common_shndx.
12232         (Symbol::is_common): Likewise.
12233         (class Symbol_table): Define enum Commons_section_type.  Update
12234         declarations.  Add small_commons_ and large_commons_ fields.
12235         * symtab.cc (Symbol::is_common_shndx): New function.
12236         (Symbol_table::Symbol_table): Initialize new fields.
12237         (Symbol_table::add_from_object): Put small and large common
12238         symbols in the right list.
12239         (Symbol_table::sized_finalized_symbol): Check
12240         Symbol::is_common_shndx.
12241         (Symbol_table::sized_write_globals): Likewise.
12242         * common.cc (Symbol_table::do_allocate_commons): Allocate new
12243         common symbol lists.  Don't call do_allocate_commons_list if the
12244         list is empty.
12245         (Symbol_table::do_allocate_commons_list): Remove is_tls
12246         parameter.  Add comons_section_type parameter.  Change all
12247         callers.  Handle small and large common symbols.
12248         * object.cc (Sized_relobj::do_finalize_local_symbols): Check
12249         Symbol::is_common_shndx.
12250         * resolve.cc (symbol_to_bits): Likewise.
12251         * target.h (Target::small_common_shndx): New function.
12252         (Target::small_common_section_flags): New function.
12253         (Target::large_common_shndx): New function.
12254         (Target::large_common_section_flags): New function.
12255         (Target::new_output_section): New function.
12256         (Target::Target_info): Add small_common_shndx, large_common_shndx,
12257         small_common_section_flags, and large_common_section_flags
12258         fields.
12259         (Target::do_new_output_section): New virtual function.
12260         * arm.cc (Target_arm::arm_info): Initialize new fields.
12261         * i386.cc (Target_i386::i386_info): Likewise.
12262         * powerpc.cc (Target_powerpc::powerpc_info) [all versions]:
12263         Likewise.
12264         * sparc.c (Target_sparc::sparc_info) [all versions]: Likewise.
12265         * x86_64.cc (Target_x86_64::x86_64_info): Likewise.
12266         (Target_x86_64::do_new_output_section): New function.
12267         * configure.ac: Define conditional MCMODEL_MEDIUM.
12268         * testsuite/Makefile.am (check_PROGRAMS): Add large.
12269         (large_SOURCES, large_CFLAGS, large_DEPENDENCIES): Define.
12270         (large_LDFLAGS): Define.
12271         * testsuite/large.c: New file.
12272         * testsuite/testfile.cc (Target_test::test_target_info):
12273         Initialize new fields.
12274         * configure, testsuite/Makefile.in: Rebuild.
12275
12276 2009-06-05  Doug Kwan  <dougkwan@google.com>
12277
12278         * Makefile.am (CCFILES): Add target.cc.
12279         * Makefile.in: Regenerate.
12280         * i386.cc (class Target_i386): Define new virtual method to
12281         override do_is_local_label_name in parent.
12282         * object.cc (Sized_relobj::do_count_local_symbols): Discard
12283         local symbols if --discard-locals or -X is given.
12284         * options.h (class General_options): Declare new options
12285         '--discard-locals' and '-X' for discarding locals.
12286         * target.h (class Target): Define new methods is_local_label_name.
12287         Declare new virtual method do_is_local_label_name.
12288         * target.cc: New file.
12289         * testsuite/Makefile.am (check_PROGRAMS): Add discard_locals_test.
12290         (check_SCRIPTS): Add discard_locals_test.sh.
12291         (check_DATA): Add discard_local_tests.syms.
12292         (discard_locals_test_SOURCES, discard_locals_test_LDFLAGS): Define.
12293         (discard_local_tests.syms, discard_locals_test.o): New make rules.
12294         * testsuite/Makefile.in: Regenerate.
12295         * testsuite/discard_locals_test.c: New file.
12296         * testsuite/discard_locals_test.sh: Same.
12297
12298 2009-06-05  Doug Kwan  <dougkwan@google.com>
12299
12300         * object.cc (Sized_relobj::Sized_relobj): Initialize
12301         discarded_eh_frame_shndx_ to -1U.
12302         (Sized_relobj::do_layout): Record index of a discard .eh_frame
12303         section.
12304         (Sized_relobj::do_count_local_symbols): Skip local symbols in
12305         a discarded .eh_frame section.
12306         (Sized_relobj::do_finalize_local_symbols): Ditto.
12307         * object.h (class Sized_relobj): Declare new member
12308         discarded_eh_frame_shndx_.
12309         * testsuite/Makefile.am (check_PROGRAMS): Add local_labels_test.
12310         (local_labels_test.o, local_labels_test): New rules.
12311         * testsuite/Makefile.in: Regenerate.
12312
12313 2009-06-04  Doug Kwan  <dougkwan@google.com>
12314
12315         * layout.cc (Layout::section_name_mapping): Add mapping for
12316         special ARM sections.
12317
12318 2009-06-03  Doug Kwan  <dougkwan@google.com>
12319
12320         * arm.cc (utils::sign_extend): Reverse test in gold_assert.
12321         (utils::has_overflow): Same.
12322
12323 2009-06-03  Ian Lance Taylor  <iant@google.com>
12324
12325         * layout.cc (Layout::section_name_mapping): New array, replacing
12326         Layout::linkonce_mapping.
12327         (Layout::section_name_mapping_count): New variable, replacing
12328         Layout::linkonce_mapping_count.
12329         (Layout::linkonce_output_name): Remove.
12330         (Layout::output_section_name): Rewrite.
12331         * layout.h (class Layout): Rename Linkonce_mapping to
12332         Section_name_mapping, linkonce_mapping to section_name_mapping,
12333         linkonce_mapping_count to section_name_mapping_count.  Don't
12334         declare linkonce_output_name.
12335
12336 2009-06-03  Doug Kwan  <dougkwan@google.com>
12337
12338         * gold/arm.cc (namespace utils): New.
12339         (Target_arm::reloc_is_non_pic): Define new method.
12340         (class Arm_relocate_functions): New.
12341         (Target_arm::Relocate::relocate): Handle relocation types used by
12342         Android.
12343
12344 2009-06-03  Ian Lance Taylor  <iant@google.com>
12345
12346         * arm.cc (Target_arm::scan::global): Use || instead of |.
12347
12348 2009-06-02  Doug Kwan  <dougkwan@google.com>
12349
12350         * gold/arm.cc (Target_arm::Scan::Scan):  Initialize
12351         issued_non_pic_error_.
12352         (class Target_arm::Scan): Declare new method check_non_pic.
12353         Define new method symbol_needs_plt_entry.
12354         Declare new data member issued_non_pic_error_.
12355         (class Target_arm::Relocate): Declare new method
12356         should_apply_static_reloc.
12357         (Target_arm::may_need_copy_reloc): Handle STT_ARM_TFUNC.
12358         (Target_arm::Scan::check_non_pic): Define new method.
12359         (Target_arm::Scan::local): Handle a small subset of reloc types used
12360         by Android.
12361         (Target_arm::Scan::local): Same.
12362         (Target_arm::Relocate::should_apply_statci_reloc): Define new method.
12363
12364 2009-05-31  Mikolaj Zalewski  <mikolajz@google.com>
12365
12366         * incremental.cc (Incremental_inputs::report_command_line): Filter
12367         out --incremental-* options.
12368
12369 2009-05-29  Doug Kwan  <dougkwan@google.com>
12370
12371         * gold/arm.cc (Output_data_plt_arm): Forward declaration for new
12372         template class.
12373         (class Target_arm): Update comment.
12374         (Target_arm::Target_arm): Initialize new data members GOT_,
12375         PLT_, GOT_PLT_, REL_DYN_, COPY_RELOCS_ and DYNBSS_.
12376         Declare new methods Target_arm::got_section, Target_arm::make_plt_entry
12377         and Target_arm::rel_dyn_section.
12378         Declare new_enum Target_arm::Got_type.
12379         Declare new data members GOT_, PLT_, GOT_PLT_, REL_DYN_, COPY_RELOCS_
12380         and DYNBSS_.
12381         Update commments for member do_dynsym_value.
12382         (Target_arm::got_size, Target_arm::plt_section,
12383         Target_arm::may_need_copy_reloc and Target_arm::copy_reloc): Define
12384         new methods inside class defintion.
12385         (Target_arm::got_section): Define new method.
12386         (Target_arm::rel_dyn_section): Same.
12387         (Output_data_plt_arm): New template class.
12388         (Output_data_plt_arm::Output_data_plt_arm): Define constructor.
12389         (Output_data_plt_arm:do_adjust_output_section): Define new method.
12390         (Output_data_plt_arm::add_entry): Same.
12391         (Output_data_plt_arm::first_plt_entry): Define new
12392         static data member for PLT instruction template.
12393         (Output_data_plt_arm::plt_entry): Same.
12394         (Output_data_plt_arm::do_write): Define new method.
12395         (Target_arm::make_plt_entry): Same.
12396         (Target_arm::do_finalize_sections): Same.
12397         (Target_arm::do_dynsym_value): Same.
12398
12399 2009-05-28  Doug Kwan  <dougkwan@google.com>
12400
12401         * Makefile.am (TARGETSOURCES): Add arm.cc.
12402         (ALL_TARGETOBJECTS): Add arm.$(OBJEXT)
12403         * Makefile.in: Regenerate.
12404         * arm.cc: New file.
12405         * configure.tgt: Add armbe*-*-*, armeb*-*-* and arm*-*-* targets.
12406
12407 2009-05-26  Doug Kwan  <dougkwan@google.com>
12408
12409         * options.cc (General_options::parse_exclude_libs).  Fix a comment.
12410         (General_options::check_excluded_libs): Strip off directories in
12411         archive name before matching like GNU ld does.
12412         * testsuite/Makefile.am (MOSTLYCLEANFILES,
12413         exclude_libs_test_DEPENDENCIES): Add alt/libexclude_libs_test_3.a
12414         (exclude_libs_test_LDFLAGS): Add linker option
12415         -Wl,--exclude-libs,libexclude_libs_test_3
12416         (exclude_libs_test_LADD): Add alt/libexclude_libs_test_3.a as
12417         an explicit archive without using -l.
12418         (alt/libexclude_libs_test_3.a): New make rule.
12419         * testsuite/Makefile.in: Regenerate.
12420         * testsuite/exclude_libs_test.c : Declare lib3_default().
12421         (main): Call it.
12422         * exclude_libs_test.sh: Add tests for alt/exclude_libs_test_3.a.
12423         * exclude_libs_test_3.c: New file.
12424
12425 2009-05-26  Nick Clifton  <nickc@redhat.com>
12426
12427         * po/id.po: New Indonesian translation.
12428         * po/gold.pot: Updated template file.
12429
12430 2009-05-22  Sriraman Tallam  <tmsriram@google.com>
12431
12432         * testsuite/Makefile.am: Add -ffunction-sections to compile
12433         gc_comdat_test files.  Add -Wl,--gc-sections to build
12434         gc_comdat_test.
12435         * testsuite/Makefile.in: Regenerate.
12436         * testsuite/gc_comdat_test.sh: Fix the condition around grep.
12437
12438 2009-05-21  Sriraman Tallam  <tmsriram@google.com>
12439
12440         * object.cc (Sized_relobj::map_to_kept_section): Return NULL if the
12441         kept comdat section was garbage collected.
12442         * testsuite/Makefile.am: Add test gc_comdat_test.sh.
12443         * testsuite/Makefile.in: Regenerate.
12444         * testsuite/gc_comdat_test.sh: New file.
12445         * testsuite/gc_comdat_test_1.cc: New file.
12446         * testsuite/gc_comdat_test_2.cc: New file.
12447
12448 2009-05-19  Doug Kwan  <dougkwan@google.com>
12449
12450         * archive.cc (Archive::Archive): Move constructor from archive.h
12451         to here.  Initialize no_export_.
12452         (Archive::get_elf_object_for_member): Set no_export flag of object.
12453         * archive.h (Archive::Archive): Move constructor body to
12454         archive.cc.
12455         (Archive::no_export): New method.
12456         (Archive::no_export_): New field.
12457         * object.h (Object::Object): Initialize no_export_ to false.
12458         (Object::no_export, Object::set_no_export): New methods.
12459         (Object::no_export_): New field.
12460         * options.cc (General_options::parse_exclude_libs): New method.
12461         (General_options::check_excluded_libs) Same.
12462         * options.h (exclude_libs): New option.
12463         (General_options::check_excluded_libs): New method declaration.
12464         (General_options::excluded_libs_): New field.
12465         * symtab.cc (Symbol_table::add_from_relobj): Hide symbols with
12466         default or protected visibility if an object has no-export flag set.
12467         testsuite/Makefile.am (check_PROGRAMS): Add exclude_libs_test.
12468         (check_SCRIPTS): Add exclude_libs_test.sh.
12469         (check_DATA): Add exclude_libs_test.syms.
12470         (MOSTLYCLEANFILES): Add exclude_libs_test.syms,
12471         libexclude_libs_test_1.a and libexclude_libs_test_2.a.
12472         (exclude_libs_test_SOURCES, exclude_libs_test_DEPENDENCIES,
12473         exclude_libs_test_LDFLAGS and exclude_libs_test_LDADD): Define.
12474         (exclude_libs_test.syms, libexclude_libs_test_1.a,
12475         libexclude_libs_test_2.a): New rules.
12476         * testsuite/Makefile.in: Regenerate.
12477         * testsuite/exclude_libs_test.c: New file.
12478         * testsuite/exclude_libs_test.sh: Ditto.
12479         * testsuite/exclude_libs_test_1.c: Ditto.
12480         * testsuite/exclude_libs_test_2.c: Ditto.
12481
12482 2009-05-15  Ian Lance Taylor  <iant@google.com>
12483
12484         * configure.ac: Check for declarations for cases where libiberty.h
12485         checks HAVE_DECL_xxx.
12486         * configure, config.in: Rebuild.
12487
12488 2009-05-15  Mikolaj Zalewski  <mikolajz@google.com>
12489
12490         * gold.h (Incremental_argument_list): Remove (invalid) forward
12491         declaration.
12492         * incremental.cc (Incremental_inputs::report_achive): New method.
12493         (Incremental_inputs::report_object): New method.
12494         (Incremental_inputs::report_script): New method.
12495         (Incremental_inputs::finalize_inputs): New method.
12496         (Incremental_inputs::finalize): Call finalize_inputs().
12497         (Incremental_inputs::sized_create_incremental_inputs_section_data):
12498         Create inputs entries.
12499         * incremental.h (Incremental_input_type): New enum.
12500         (Incremental_inputs::Incremental_input): Initialize new fields.
12501         (Incremental_inputs::report_inputs): New method.
12502         (Incremental_inputs::report_achive): New method.
12503         (Incremental_inputs::report_object): New method.
12504         (Incremental_inputs::report_script): New method.
12505         (Incremental_inputs::finalize_inputs): New method.
12506         (Incremental_inputs::Input_info): New struct.
12507         (Incremental_inputs::Input_info_map): New typedef.
12508         (Incremental_inputs::lock_): New field.
12509         (Incremental_inputs::Inputs_): New field.
12510         (Incremental_inputs::Inputs_map): New field.
12511         * main.cc (main): Call Incremental_input::report_inputs.
12512         * options.h (Input_argument_list): Typedef moved from
12513         Input_arguments.
12514         (Input_file_group::Files): Remove, use ::Input_argument_list.
12515         (Input_file_group::Input_argument_list): Remove, use
12516         ::Input_argument_list.
12517         * plugin.cc (Plugin_manager::add_input_file): Add error in
12518         incremental build.
12519         * read_syms.cc (do_read_syms): Call Incremental_input::report_*
12520         functions.
12521         * script.cc (read_input_script): Call
12522         Incremental_input::report_script.
12523         * script.h (Script_info): New class.
12524
12525 2009-04-27  Ian Lance Taylor  <iant@google.com>
12526
12527         * x86_64.cc (do_adjust_output_section): Set entsize to
12528         plt_entry_size.
12529
12530 2009-04-23  Elliott Hughes  <enh@google.com>
12531
12532         * output.cc (Output_file::close): After short writes, continue
12533         writing from the correct offset in the buffer being written.
12534
12535 2009-04-23  Chris Demetriou  <cgd@google.com>
12536
12537         * configure.ac (HAVE_TR1_UNORDERED_MAP_REHASH): New define.
12538         * configure: Regenerate.
12539         * config.in: Regenerate.
12540         * gold.h: Avoid std::tr1::unordered_map and std::tr1::unordered_set
12541         if HAVE_TR1_UNORDERED_MAP_REHASH is not defined.
12542
12543 2009-04-21  Mikolaj Zalewski  <mikolajz@google.com>
12544
12545         * incremental.cc (Incremental_inputs_header_data): Renamed from
12546         Incremental_input_header_data.
12547         (Incremental_inputs_header_data::data_size): New field.
12548         (Incremental_inputs_header_data::put_input_file_count): Renamed
12549         from input_file_count.
12550         (Incremental_inputs_header_data::put_command_line_offset): Renamed
12551         from command_line_offset.
12552         (Incremental_inputs_header_data::put_reserved): Renamed from
12553         put_reserved.
12554         (Incremental_inputs_entry_data): Renamed from
12555         Incremental_input_entry_data.
12556         (Incremental_inputs_entry_data::data_size): New field.
12557         (Incremental_inputs::report_command_line): New method.
12558         (Incremental_inputs::finalize): New method.
12559         (Incremental_inputs::create_incremental_inputs_data): New method.
12560         (Incremental_inputs::sized_create_incremental_inputs_data): New method.
12561         * incremental.h: New file.
12562         * layout.cc (Layout::Layout): Handle new incremental_inputs_.
12563         (Layout::finalize): Create incremental inputs section in
12564         incremental builds.
12565         (Layout::create_incremental_info_sections): New method.
12566         * layout.h (Layout::incremental_inputs): New method.
12567         (Layout::create_incremental_info_sections): New method.
12568         (Layout::incremental_inputs_): New field.
12569         * main.cc (main): Notify Incremental_input of the command line.
12570
12571 2009-04-01  Ian Lance Taylor  <iant@google.com>
12572             Mikolaj Zalewski  <mikolajz@google.com>
12573
12574         * gold.h (reserve_unordered_map): Define, three versions, one for
12575         each version of Unordered_map.
12576         * layout.cc (Layout::Layout): Remove options parameter.  Add
12577         number_of_input_files parameter.  Don't initialize options_.
12578         Initialize number_of_input_files_ and resized_signatures_.  Move
12579         sections_are_attached_.
12580         (Layout::layout_group): Reserve space for group_signatures_.
12581         (Layout::find_or_add_kept_section): Change name parameter to be a
12582         reference.  Resize signatures_ map when it gets large enough.
12583         (Layout::layout_eh_frame): Use parameters->options() instead of
12584         this->options_.
12585         (Layout::make_output_section): Likewise.
12586         (Layout::attach_allocated_section_to_segment): Likewise.
12587         (Layout::finalize, Layout::create_executable_stack): Likewise.
12588         (Layout::set_segment_offsets, Layout::create_interp): Likewise.
12589         (Layout::finish_dynamic_section, Layout::write_binary): Likewise.
12590         * layout.h (class Layout): Update declarations.  Remove options_
12591         field.  Add number_of_input_files_ and resized_signatures_
12592         fields.  Move sections_are_attached_ field.
12593         * main.cc (main): Pass number of input files to Layout
12594         constructor.  Don't pass options.
12595
12596 2009-03-30  Ian Lance Taylor  <iant@google.com>
12597
12598         * ffsll.c (ffsll): Correct implementation.
12599
12600 2009-03-27  Ian Lance Taylor  <iant@google.com>
12601
12602         * ffsll.c: New file.
12603         * configure.ac: Call AC_REPLACE_FUNCS on ffsll.
12604         * gold.h (ffsll): Declare if HAVE_FFSLL is not defined.
12605         * ftruncate.c (ftruncate): Declare before definition.
12606         * mremap.c (mremap): Likewise.
12607         * pread.c (pread): Likewise.
12608         * configure, Makefile.in, config.in: Rebuild.
12609
12610         * mremap.c: New file.
12611         * configure.ac: Call AC_REPLACE_FUNCS on mremap.
12612         * gold.h (MREMAP_MAYMOVE): Define if HAVE_MREMAP is not defined.
12613         (mremap): Declare if HAVE_MREMAP is not defined.
12614         * configure, Makefile.in, config.in: Rebuild.
12615
12616 2009-03-27  Cary Coutant  <ccoutant@google.com>
12617
12618         * powerpc.cc (Target_powerpc::check_non_pic): Assert that output is
12619         position independent.
12620         * sparc.cc (Target_sparc::check_non_pic): Likewise.
12621         * x86_64.cc (Target_x86_64::check_non_pic): Likewise.
12622
12623 2009-03-24  Cary Coutant  <ccoutant@google.com>
12624
12625         * symtab.h (needs_plt_entry): Check for unsatisfied reference from
12626         an executable.
12627         (needs_dynamic_reloc): Likewise.
12628
12629 2009-03-24  Ian Lance Taylor  <iant@google.com>
12630
12631         * yyscript.y (file_cmd): Recognize EXTERN.
12632         (extern_name_list, extern_name_list_body): New nonterminals.
12633         * script.cc (script_add_extern): Define.
12634         * script-c.h (script_add_extern): Declare.
12635
12636 2009-03-24  Rafael Avila de Espindola  <espindola@google.com>
12637
12638         * object.cc (is_elf_object): Define.
12639         * object.h (is_elf_object): Declare.
12640         * archive.cc (Archive::get_elf_object_for_member): Call
12641         is_elf_object.
12642         * readsyms.cc (Read_symbols::do_read_symbols): Likewise.
12643
12644 2009-03-24  Elliott Hughes  <enh@google.com>
12645
12646         * output.cc (Output_file::map_anonymous): Define.
12647         (Output_file::map): Use map_anonymous.  If the regular mmap fails,
12648         try an anonymous one.  Report the size if the mmap fails.
12649         * output.h (class Output_file): Declare map_anonymous.
12650
12651 2009-03-24  Ian Lance Taylor  <iant@google.com>
12652
12653         * target-select.cc (instantiate_target): Don't acquire the lock if
12654         the instantiated_target_ field has already been set.
12655
12656 2009-03-23  Ian Lance Taylor  <iant@google.com>
12657
12658         * gold-threads.h (class Initialize_lock): Define.
12659         * gold-threads.cc (class Initialize_lock_once): Define.
12660         (initialize_lock_control): New static variable.
12661         (initialize_lock_pointer): New static variable.
12662         (initialize_lock_once): New static function.
12663         (Initialize_lock::Initialize_lock): Define.
12664         (Initialize_lock::initialize): Define.
12665         * target-select.h: Include "gold-threads.h".
12666         (class Target_selector): Add lock_ and initialize_lock_ fields.
12667         Don't define instantiate_target, just declare it.
12668         * target-select.cc (Target_selector::Target_selector): Initialize
12669         new fields.
12670         (Target_selector::instantiate_target): Define.
12671         * descriptors.h: Include "gold-threads.h".
12672         (class Descriptors): Add initialize_lock_ field.
12673         * descriptors.cc (Descriptors::Descriptors): Initialize new
12674         field.
12675         (Descriptors::open): Use initialize_lock_ field
12676         * errors.h (class Errors): Add initialize_lock_ field.
12677         * errors.cc (Errors::Errors): Initialize new field.
12678         (Errors::initialize_lock): Use initialize_lock_ field.
12679         * powerpc.cc (class Target_selector_powerpc): Remove
12680         instantiated_target_ field.  In do_recognize call
12681         instantiate_target rather than do_instantiate_target.  In
12682         do_instantiate_target just allocate a new target.
12683         * sparc.cc (class Target_selector_sparc): Likewise.
12684
12685         * freebsd.h: New file.
12686         * i386.cc: Include "freebsd.h".
12687         (Target_i386): Derive from Target_freebsd rather than
12688         Sized_target.
12689         (Target_selector_i386): Derive from Target_selector_freebsd rather
12690         than Target_selector.
12691         * x86_64.cc: Include "freebsd.h".
12692         (Target_x86_64): Derive from Target_freebsd rather than
12693         Sized_target.
12694         (Target_selector_x86_64): Derive from Target_selector_freebsd
12695         rather than Target_selector.
12696         * target.h (class Target): Add adjust_elf_header and
12697         do_adjust_elf_header.
12698         * output.cc (Output_file_header:: do_sized_write): Call target
12699         adjust_elf_header routine.
12700         * configure.tgt: Set targ_osabi.
12701         * configure.ac: Define GOLD_DEFAULT_OSABI.
12702         * parameters.cc (Parameters::default_target): Pass
12703         GOLD_DEFAULT_OSABI to select_target.
12704         * target-select.h (class Target_selector): Make instantiate_target
12705         protected rather than private.
12706         * Makefile.am (HFILES): Add freebsd.h.
12707         * configure, Makefile.in, config.in: Rebuild.
12708
12709         * merge.cc (do_add_input_section): Correct pend value.  Change
12710         message about last entry not being null terminated from error to
12711         warning.
12712
12713 2009-03-20  Mikolaj Zalewski  <mikolajz@google.com>
12714
12715         * incremental.cc: New file.
12716         * Makefile.am (CCFILES): Add incremental.cc.
12717         * Makefile.in: Rebuild.
12718
12719 2009-03-19  Paul Pluzhnikov  <ppluzhnikov@google.com>
12720
12721         * layout.cc (Layout::output_section_name): Preserve names
12722         of '.note.' sections.
12723
12724 2009-03-19  Ian Lance Taylor  <iant@google.com>
12725
12726         * descriptors.cc (Descriptors::open): Check that the options are
12727         valid before using them.
12728
12729 2009-03-18  Ian Lance Taylor  <iant@google.com>
12730
12731         * script-sections.h: Include <list>.
12732         (class Script_sections): Change Sections_elements from std::vector
12733         to std::list.  Typedef public Elements_iterator.  Add
12734         orphan_section_placement_, data_segment_align_start_, and
12735         saw_data_segment_align_ fields.  Remove data_segment_align_index_
12736         field.
12737         * script-sections.cc (class Orphan_section_placement): New class.
12738         (class Sections_element): Add virtual functions is_relro and
12739         orphan_section_init.  Remove virtual function place_orphan_here.
12740         (class Output_section_definition): Add is_relro and
12741         orphan_section_init.  Remove place_orphan_here.
12742         (class Orphan_output_section): Likewise.
12743         (Script_sections::Script_sections): Update for field changes.
12744         (Script_sections::data_segment_align): Set saw_data_segment_align_
12745         and data_segment_align_start_, not data_segment_align_index.
12746         (Script_sections::data_segment_relro_end): Check
12747         saw_data_segment_align_.  Use data_segment_align_start_ rather
12748         than data_segment_align_index_.
12749         (Script_sections::place_orphan): Rewrite to use
12750         Orphan_section_placement.
12751
12752 2009-03-17  Ian Lance Taylor  <iant@google.com>
12753
12754         * archive.cc (Archive::add_symbols): Check for a version attached
12755         to the symbol name in the archive map.
12756         * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_11.
12757         (ver_test_11_SOURCES, ver_test_11_DEPENDENCIES): Define.
12758         (ver_test_11_LDFLAGS, ver_test_11_LDADD): Define.
12759         (ver_test_11.a): New target.
12760         * testsuite/Makefile.in: Rebuild.
12761
12762         * configure.ac: Check for chsize and posix_fallocate.  Replace
12763         ftruncate.
12764         * ftruncate.c: New file, from gnulib.
12765         * output.cc (posix_fallocate): Define dummy version if not
12766         HAVE_POSIX_FALLOCATE.
12767         (Output_file::map): Call posix_fallocate rather than lseek and
12768         write.
12769         * gold.h (ftruncate): Declare if not HAVE_FTRUNCATE.
12770         * configure, Makefile.in, config.in: Rebuild.
12771
12772 2009-03-17  Paul Pluzhnikov  <ppluzhnikov@google.com>
12773
12774         * layout.h (Layout::create_note): Add section_name parameter.
12775         * layout.cc (Layout::create_note): Likewise.
12776         (Layout::create_build_id, Layout::create_gold_note): Fix callers.
12777
12778 2009-03-17  Ian Lance Taylor  <iant@google.com>
12779
12780         * descriptors.cc: Include "options.h".
12781         (FD_CLOEXEC, O_CLOEXEC): Define if not defined.
12782         (Descriptors::open): Always use O_CLOEXEC when opening a new
12783         descriptor.  If we have a plugin, and O_CLOEXEC was not defined,
12784         then set FD_CLOEXEC.
12785
12786         * sparc.cc (class Target_sparc): Add has_got_section.
12787         (Target_sparc::Scan::global): If we see _GLOBAL_OFFSET_TABLE_,
12788         make sure we have a GOT section.
12789
12790         * sparc.cc (optimize_tls_reloc): Recognize R_SPARC_TLS_IE_ADD.
12791         (Target_sparc::Scan::local): Likewise.
12792         (Target_sparc::Scan::global): Likewise.
12793         (Target_sparc::Relocate::relocate): Likewise.
12794         (Target_sparc::Relocate::relocate_tls): Likewise.
12795
12796         * symtab.cc (Symbol_table::define_default_version): New function,
12797         broken out of add_from_object.
12798         (Symbol_table::add_from_object): Call define_default_version.
12799         (Symbol_table::define_special_symbol): Add resolve_oldsym
12800         parameter.  Change all callers.  If the version for a symbol comes
12801         from a version script, resolve it with the symbol with the same
12802         name with no version.  Also add the symbol without a version if
12803         appropriate.
12804         (do_define_in_output_data): If resolving with oldsym, don't delete
12805         sym.
12806         (do_define_in_output_segment): Likewise.
12807         (do_define_as_constant): Likewise.
12808         * symtab.h (class Symbol_table): Update declarations.
12809
12810 2009-03-13  Ian Lance Taylor  <iant@google.com>
12811
12812         * readsyms.cc (Read_symbols::incompatible_warning): New function.
12813         (Read_symbols::requeue): New function.
12814         (Read_symbols::do_read_symbols): If make_elf_object fails because
12815         the target type is not configured, and the file was searched for,
12816         issue a warning and retry with the next directory.
12817         (Add_symbols::run): If the file has an incompatible format, and
12818         it was searched for, requeue the Read_symbols task.  On error,
12819         release the object.
12820         * readsyms.h (class Read_symbols): Add dirindex_ field.  Add
12821         dirindex parameter to constructor.  Change all callers.  Declare
12822         incompatible_warning and requeue.
12823         (class Add_symbols): Add dirpath_, dirindex_, mapfile_,
12824         input_argument_ and input_group_ fields.  Add them to
12825         constructor.  Change all callers.
12826         (class Read_script): Add dirindex_ field.  Add it to constructor.
12827         Change all callers.
12828         * archive.cc (Archive::setup): Remove input_objects parameter.
12829         Change all callers.
12830         (Archive::get_file_and_offset): Likewise.
12831         (Archive::read_all_symbols): Likewise.
12832         (Archive::read_symbols): Likewise.
12833         (Archive::get_elf_object_for_member): Remove input_objects
12834         parameter.  Add punconfigured parameter.  Change all callers.
12835         (Archive::add_symbols): Change return type to bool.  Check return
12836         value of include_member.
12837         (Archive::include_all_members): Likewise.
12838         (Archive::include_member): Change return type to bool.  Return
12839         false if first included object has incompatible target.  Set
12840         included_member_ field.
12841         (Add_archive_symbols::run): If add_symbols returns false, requeue
12842         Read_symbols task.
12843         * archive.h (class Archive): Add included_member_ field.
12844         Initialize it in constructor.  Add input_file and searched_for
12845         methods.  Update declarations.
12846         (class Add_archive_symbols): Add dirpath_, dirindex_, and
12847         input_argument_ fields.  Add them to constructor.  Change all
12848         callers.
12849         * script.cc: Include "target-select.h".
12850         (class Parser_closure): Add skip_on_incompatible_target_ and
12851         found_incompatible_target_ fields.  Add
12852         skip_on_incompatible_target parameter to constructor.  Change all
12853         callers.  Add methods skip_on_incompatible_target,
12854         clear_skip_on_incompatible_target, found_incompatible_target, and
12855         set_found_incompatible_target.
12856         (read_input_script): Add dirindex parameter.  Change all callers.
12857         If parser finds an incompatible target, requeue Read_symbols
12858         task.
12859         (script_set_symbol): Clear skip_on_incompatible_target in
12860         closure.
12861         (script_add_assertion, script_parse_option): Likewise.
12862         (script_start_sections, script_add_phdr): Likewise.
12863         (script_check_output_format): New function.
12864         * script.h (read_input_script): Update declaration.
12865         * script-c.h (script_check_output_format): Declare.
12866         * yyscript.y (file_cmd): Handle OUTPUT_FORMAT.
12867         (ignore_cmd): Remove OUTPUT_FORMAT.
12868         * fileread.cc (Input_file::Input_file): Add explicit this.
12869         (Input_file::will_search_for): New function.
12870         (Input_file::open): Add pindex parameter.  Change all callers.
12871         * fileread.h (class Input_file): Add input_file_argument method.
12872         Declare will_search_for.  Update declarations.
12873         * object.cc (make_elf_object): Add punconfigured parameter.
12874         Change all callers.
12875         * object.h (class Object): Make input_file public.  Add
12876         searched_for method.
12877         (make_elf_object): Update declaration.
12878         * dirsearch.cc (Dirsearch::find): Add pindex parameter.  Use it to
12879         restart search.
12880         * dirsearch.h (class Dirsearch): Update declaration.
12881         * options.h (class General_options): Add --warn-search-mismatch.
12882         * parameters.cc (Parameters::is_compatible_target): New function.
12883         * parameters.h (class Parameters): Declare is_compatible_target.
12884         * workqueue.cc (Workqueue::add_blocker): New function.
12885         * workqueue.h (class Workqueue): Declare add_blocker.
12886
12887         * fileread.cc (Input_file::open): Remove options parameter.
12888         Change all callers.
12889         (Input_file::open_binary): Likewise.
12890         * script.cc (read_input_script): Likewise.
12891         * readsyms.h (class Read_symbols): Remove options_ field.  Remove
12892         options parameter from constructor.  Change all callers.
12893         (class Read_script): Likewise.
12894         * fileread.h (class Input_file): Update declarations.
12895         * script.h (read_input_script): Update declaration.
12896
12897 2009-03-10  Nick Clifton  <nickc@redhat.com>
12898
12899         * po/es.po: New Spanish translation.
12900
12901 2009-03-06  Cary Coutant  <ccoutant@google.com>
12902
12903         * options.cc (parse_short_option): Keep dash_z from registering itself.
12904
12905 2009-03-03  Ian Lance Taylor  <iant@google.com>
12906
12907         PR 9918
12908         * target-reloc.h (relocate_section): Pass output_section to
12909         relocate.
12910         * i386.cc (Target_i386::should_apply_static_reloc): Add
12911         output_section parameter.  Change all callers.
12912         (Target_i386::Relocate::relocate): Add output_section parameter.
12913         * x86_64.cc (Target_x86_64::Relocate::relocate): Likewise.
12914         * sparc.cc (Target_sparc::Relocate::relocate): Likewise.
12915         * powerpc.cc (Target_powerpc::Relocate::relocate): Likewise.
12916         * testsuite/two_file_shared.sh: New script.
12917         * testsuite/Makefile.am (check_SCRIPTS): Add two_file_shared.sh.
12918         (check_DATA): Add two_file_shared.dbg.
12919         (two_file_shared.dbg): New target.
12920         * testsuite/Makefile.in: Rebuild.
12921
12922 2009-03-01  Ian Lance Taylor  <iant@google.com>
12923
12924         * configure.ac: Check for byteswap.h.
12925         * configure: Rebuild.
12926         * config.in: Rebuild.
12927
12928 2009-03-01  Mikolaj Zalewski  <mikolajz@google.com>
12929
12930         * layout.cc (Layout::find_or_add_kept_section): New function.
12931         (Layout::add_comdat): Removed.
12932         * layout.h (struct Kept_section): Move out of class Layout.
12933         Remove trailing underscores from field names.  Add group_sections
12934         field.  Rename group_ field to is_group.  Change all uses.
12935         (class Layout): Declare find_or_add_kept_section, not add_comdat.
12936         * object.cc (Sized_relobj::Sized_relobj): Don't initialize
12937         comdat_groups_ field.
12938         (Sized_relobj::include_section_group): Use
12939         find_or_add_kept_section and Kept_section::group_sections.
12940         (Sized_relobj::include_linkonce_section): Likewise.
12941         * object.cc (class Sized_relobj): Don't define Comdat_group or
12942         Comdat_group_table.  Remove find_comdat_group and
12943         add_comdat_group.  Remove comdat_groups_ field.
12944         * plugin.cc (include_comdat_group): Use
12945         Layout::find_or_add_kept_section.
12946
12947 2009-02-28  Ian Lance Taylor  <iant@google.com>
12948
12949         * README: --gc-sections and map files are now supported.  Document
12950         some build requirements.
12951
12952         PR 6992
12953         * symtab.cc (Symbol_table::sized_write_section_symbol): In a
12954         relocatable link set the value of the section symbol to zero.
12955         * object.cc (Sized_relobj::do_finalize_local_symbols): In a
12956         relocatable link don't include the section address in the local
12957         symbol value.
12958
12959 2009-02-27  Ian Lance Taylor  <iant@google.com>
12960
12961         PR 6811
12962         * options.h (class Search_directory): Add is_system_directory.
12963         (class General_options): Declare is_in_system_directory.
12964         * options.cc (get_relative_sysroot): Make static.
12965         (get_default_sysroot): Make static.
12966         (General_optoins::is_in_system_directory): New function.
12967         * fileread.cc (Input_file::is_in_system_directory): New function.
12968         * fileread.h (class Input_file): Declare is_in_system_directory.
12969         * object.h (class Object): Add is_in_system_directory.
12970         (class Input_objects): Remove system_library_directory_ field.
12971         * object.cc (Input_objects::add_object): Don't set
12972         system_library_directory_.
12973         (input_objects::found_in_system_library_directory): Remove.
12974         * symtab.cc (Symbol_table::write_globals): Remove input_objects
12975         parameter.  Change all callers.
12976         (Symbol_table::sized_write_globals): Likewise.
12977         (Symbol_table::warn_about_undefined_dynobj_symbol): Likewise.
12978         Call Object::is_in_system_directory.
12979         * symtab.h (class Symbol_table): Update declarations.
12980
12981         PR 5990
12982         * descriptors.h (Open_descriptor): Add is_on_stack field.
12983         * descriptors.cc (Descriptors::open): If the descriptor is on the
12984         top of the stack, remove it.  Initialize is_on_stack field.
12985         (Descriptors::release): Only add pod to stack if it is not on the
12986         stack already.
12987         (Descriptors::close_some_descriptor): Clear stack_next and
12988         is_on_stack fields.
12989
12990         PR 7091
12991         * output.cc (Output_section::find_starting_output_address): Rename
12992         from starting_output_address; add PADDR parameter; change return
12993         type.
12994         * output.h (class Output_section): Declare
12995         find_starting_output_address instead of starting_output_address.
12996         * object.cc (Sized_relobj::do_finalize_local_symbols): Handle a
12997         section symbol for which we can't find a merge section.
12998
12999         PR 9836
13000         * symtab.cc (Symbol_table::add_from_object): If the visibility is
13001         hidden or internal, force the symbol to be local.
13002         * resolve.cc (Symbol::override_visibility): Define.
13003         (Symbol::override_base): Use override_visibility.
13004         (Symbol_table::resolve): Likewise.
13005         (Symbol::override_base_with_special): Likewise.
13006         (Symbol_table::override_with_special): If the visibility is hidden
13007         or internal, force the symbol to be local.
13008         * symtab.h (class Symbol): Add set_visibility and
13009         override_visibility.
13010         * testsuite/ver_test_1.sh: New file.
13011         * testsuite/Makefile.am (check_SCRIPTS): Add ver_test_1.sh.
13012         (check_DATA): Add ver_test_1.syms.
13013         (ver_test_1.syms): New target.
13014         * testsuite/Makefile.in: Rebuild.
13015
13016 2009-02-25  Cary Coutant  <ccoutant@google.com>
13017
13018         * layout.cc (Layout::choose_output_section): Don't rename sections
13019         when using a linker script that has a SECTIONS clause.
13020         * Makefile.in: Regenerate.
13021
13022         * testsuite/Makefile.am (script_test_5.sh): New test case.
13023         * testsuite/Makefile.in: Regenerate.
13024         * testsuite/script_test_5.cc: New file.
13025         * testsuite/script_test_5.sh: New file.
13026         * testsuite/script_test_5.t: New file.
13027
13028 2009-02-13  Rafael Avila de Espindola  <espindola@google.com>
13029
13030         * archive.cc (Archive::include_member): Update calls to add_symbols.
13031         * dynobj.cc (Sized_dynobj<size, big_endian>::make_version_map): Add
13032         the Layout argument.
13033         * dynobj.h (do_add_symbols): Add the Layout argument.
13034         * object.cc (Sized_relobj<size, big_endian>::do_add_symbols): Add the
13035         Layout argument.
13036         * object.h (Object::add_symbols): Add the Layout argument.
13037         (Object::do_add_symbols): Add the Layout argument.
13038         (Sized_relobj::do_add_symbols): Add the Layout argument.
13039         * plugin.cc (Sized_pluginobj<size, big_endian>::do_add_symbols):
13040         Unify the two versions.
13041         (Add_plugin_symbols): Remove.
13042         * plugin.h (Pluginobj::add_symbols, Pluginobj::do_add_symbols): Remove.
13043         (Sized_pluginobj::do_add_symbols): Unify the two versions.
13044         (Add_plugin_symbols): Remove.
13045         * readsyms.cc (Read_symbols::do_read_symbols): Update call to
13046         Add_symbols. Use Add_symbols instead of Add_plugin_symbols.
13047         (Add_symbols::run): Make it work with Pulginobj.
13048
13049 2009-02-06  Ian Lance Taylor  <iant@google.com>
13050
13051         * object.cc (Sized_relobj::do_layout): Make info message start
13052         with lower case letter.
13053
13054 2009-02-06  Mikolaj Zalewski  <mikolajz@google.com>
13055
13056         * binary.cc: Fix file comment.
13057
13058         * options.h (enum Incremental_disposition): Define.
13059         (class General_options): Add new options: --incremental,
13060         --incremental_changed, --incremental_unchanged,
13061         --incremental_unknown.  Add incremental_disposition_ and
13062         implicit_incremental_ fields.
13063         (General_options::incremental_disposition): New function.
13064         (class Position_dependent_options): Add incremental_disposition
13065         option.
13066         (Position_dependent_options::copy_from_options): Set incremental
13067         dispositions.
13068         * options.cc (General_options::parse_incremental_changed): New
13069         function.
13070         (General_options::parse_incremental_unchanged): New function.
13071         (General_options::parse_incremental_unknown): New function.
13072         (General_options::General_options): Initialize new fields
13073         incremental_disposition_ and implicit_incremental_.
13074         (General_options::finalize): Check for uasge of --incremental-*
13075         without --incremental.
13076
13077 2009-02-06  Chris Demetriou  <cgd@google.com>
13078
13079         * gold.h (gold_undefined_symbol): Change to take only a Symbol
13080         pointer and to report location as the file name associated with
13081         the symbol.
13082         (gold_undefined_symbol_at_location): New function to replace the
13083         old gold_undefined_symbol functionality.
13084         * target-reloc.h (relocate_section): Update to use
13085         gold_undefined_symbol_at_location.
13086         * symtab.cc (Symbol_table::warn_about_undefined_dynobj_symbol):
13087         Call gold_undefined_symbol function rather than gold_error.
13088         * errors.h (Errors::undefined_symbol): Take location as a
13089         string, rather than calculating it from a relocation.
13090         * errors.cc (Errors::fatal): Print "fatal error:" before the
13091         formatted message.
13092         (Errors::error, Errors::error_at_location): Print "error: "
13093         before the formatted message.
13094         (Errors::undefined_symbol): Take location as a string, rather
13095         than calculating it from a relocation.
13096         (gold_undefined_symbol_at_location): New function akin to
13097         old gold_undefined_symbol, calculates location from relocation.
13098         (gold_undefined_symbol): Change to take only a Symbol pointer
13099         and to report location as the file name associated with the symbol.
13100         * testsuite/debug_msg.sh: Update for changed error messages.
13101         * testsuite/undef_symbol.sh: Likewise.
13102
13103 2009-02-04  Duncan Sands  <baldrick@free.fr>
13104
13105         PR 9812
13106         * reduced_debug_output.h
13107         (Output_reduced_debug_abbrev_section::failed): Use format for
13108         gold_warning.
13109         (Output_reduced_debug_info_section::faild): Likewise.
13110
13111 2009-01-31  Mikolaj Zalewski  <mikolajz@google.com>
13112
13113         * script.cc (Lazy_demangler): New class.
13114         (Version_script_info::get_symbol_version_helper): Demangle a
13115         symbol only once.
13116
13117 2009-01-29  Cary Coutant  <ccoutant@google.com>
13118
13119         * i386.cc (Target_i386::Relocate::relocate): Recognize non-PIC calls
13120         to __tls_get_addr.
13121         * x86_64.cc (Target_x86_64::Relocate::relocate): Likewise.
13122
13123 2009-01-28  Ian Lance Taylor  <iant@google.com>
13124
13125         * version.cc (version_string): Bump to 1.9.
13126
13127         * gold.h: Include <cstring> and <stdint.h>.
13128         * version.cc: Include <cstdio>.
13129         * object.cc (Sized_relobj::do_layout): Initialize gc_sd to avoid a
13130         warning.
13131         * reduced_debug_output.cc (insert_into_vector): Rename from
13132         Insert_into_vector; change all callers.  Use Swap_unaligned to
13133         avoid aliasing issue; remove union since it is unnecessary.
13134
13135 2009-01-27  Sriraman Tallam  <tmsriram@google.com>
13136
13137         * Makefile.am (CCFILES): Add gc.cc.
13138         (HFILES): Add gc.h.
13139         * Makefile.in: Regenerate.
13140         * gold.cc (Gc_runner): New class.
13141         (queue_initial_tasks): Call garbage collection related tasks
13142         when corresponding options are invoked.
13143         (queue_middle_gc_tasks): New function.
13144         (queue_middle_tasks): Reorder tasks to allow relocs to be read and
13145         processed early before laying out sections during garbage collection.
13146         * gold.h (queue_middle_gc_tasks): New function.
13147         (is_prefix_of): Move from "layout.cc".
13148         * i386.cc (Target_i386::gc_process_relocs): New function.
13149         * layout.cc (is_prefix_of): Remove. Move to "gold.h"
13150         * main.cc (main): Create object of class "Garbage_collection".
13151         * object.cc (Relobj::copy_symbols_data): New function.
13152         (Relobj::is_section_name_included): New function.
13153         (Sized_relobj::do_layout): Allow this function to be called twice
13154         during garbage collection and defer layout of section during the
13155         first call.
13156         * object.h (Relobj::get_symbols_data): New function.
13157         (Relobj::is_section_name_included): New function.
13158         (Relobj::copy_symbols_data): New function.
13159         (Relobj::set_symbols_data): New function.
13160         (Relobj::get_relocs_data): New function.
13161         (Relobj::set_relocs_data): New function.
13162         (Relobj::is_output_section_offset_invalid): New pure virtual function.
13163         (Relobj::gc_process_relocs): New function.
13164         (Relobj::do_gc_process_relocs): New pure virtual function.
13165         (Relobj::sd_): New data member.
13166         (Sized_relobj::is_output_section_offset_invalid): New function.
13167         (Sized_relobj::do_gc_process_relocs): New function.
13168         * options.h (General_options::gc_sections): Modify to not be a no-op.
13169         (General_options::print_gc_sections): New option.
13170         * plugin.cc (Plugin_finish::run): Remove function call to
13171         Plugin_manager::layout_deferred_objects.  Move it to "gold.cc".
13172         * powerpc.cc (Target_powerpc::gc_process_relocs): New function.
13173         * reloc.cc (Read_relocs::run): Add task to process relocs and
13174         determine unreferenced sections when doing garbage collection.
13175         (Gc_process_relocs): New class.
13176         (Sized_relobj::do_gc_process_relocs): New function.
13177         (Sized_relobj::do_scan_relocs): Don't try to scan the relocs for
13178         sections that are garbage collected.
13179         * reloc.h (Gc_process_relocs): New class.
13180         * sparc.cc (Target_sparc::gc_process_relocs): New function.
13181         * symtab.cc (Symbol::should_add_dynsym_entry): Do not add entries for
13182         symbols whose corresponding sections are garbage collected.
13183         (Symbol_table::Symbol_table): Add new parameter for the garbage
13184         collection object.
13185         (Symbol_table::gc_mark_undef_symbols): New function.
13186         (Symbol_table::gc_mark_symbol_for_shlib): New function.
13187         (Symbol_table::gc_mark_dyn_syms): New function.
13188         (Symbol_table::resolve): Do not treat symbols seen in dynamic objects
13189         as garbage.
13190         (Symbol_table::add_from_object): Likewise.
13191         (Symbol_table::add_from_relobj): When building shared objects, do not
13192         treat externally visible symbols as garbage.
13193         (Symbol_table::sized_finalize_symbol): Do not check dynamic symbol
13194         table information for static and relocatable links.
13195         * symtab.h (Symbol_table::set_gc): New function.
13196         (Symbol_table::gc): New function.
13197         (Symbol_table::gc_mark_undef_symbols): New function.
13198         (Symbol_table::gc_mark_symbol_for_shlib): New function.
13199         (Symbol_table::gc_mark_dyn_syms): New function.
13200         (Symbol_table::gc_): New data member.
13201         * target.h (Sized_target::gc_process_relocs): New pure virtual
13202         function.
13203         * x86_64.cc (Target_x86_64::gc_process_relocs): New function.
13204         * testsuite/testfile.cc (Target_test::gc_process_relocs): New function.
13205
13206 2009-01-20  Chris Faylor <me.sourceware@sourceware.org>
13207
13208         * options.h (General_options::gc_sections): Define as a no-op for now.
13209         (General_options::no_keep_memory): Ditto.
13210         (General_options::Bshareable): Define.
13211         * options.cc (General_options::finalize): Honor -Bshareable.
13212
13213 2009-01-20  Andreas Schwab  <schwab@suse.de>
13214
13215         * powerpc.cc (Powerpc_relocate_functions::rel16_ha): Don't try to
13216         read the value in the contents, since we don't use it.  Use the
13217         template endianness when writing.
13218         (Relocate::relocate): Use it for R_PPC_REL16_HA.
13219
13220 2009-01-19  Andreas Schwab  <schwab@suse.de>
13221
13222         * configure.tgt (powerpc64-*): Fix targ_obj.
13223
13224 2009-01-15  Ian Lance Taylor  <iant@google.com>
13225
13226         * object.cc (Sized_relobj::write_local_symbols): Don't write out
13227         local symbols when stripping all symbols.
13228
13229 2009-01-14  Cary Coutant  <ccoutant@google.com>
13230
13231         * output.cc (Output_reloc): Add explicit instantiations.
13232
13233 2009-01-14  Cary Coutant  <ccoutant@google.com>
13234
13235         * archive.cc (Archive::get_elf_object_for_member): Remove call
13236         to File_read::claim_for_plugin.
13237         * descriptors.cc (Descriptors::open): Remove reference to
13238         is_claimed.
13239         (Descriptors::claim_for_plugin): Remove.
13240         * descriptors.h (Descriptors::claim_for_plugin): Remove.
13241         (Descriptors::is_claimed): Remove.
13242         (claim_descriptor_for_plugin): Remove.
13243         * fileread.cc (File_read::claim_for_plugin): Remove.
13244         * fileread.h (File_read::claim_for_plugin): Remove.
13245         (File_read::descriptor): Reopen descriptor if necessary.
13246         * plugin.cc  (Plugin::load): Add two new APIs to transfer vector.
13247         (Plugin_manager::all_symbols_read): Add task parameter. Change
13248         all callers.
13249         (Plugin_manager::get_input_file): New function.
13250         (Plugin_manager::release_input_file): New function.
13251         (Pluginobj::Pluginobj): Add filesize parameter and initialize
13252         corresponding data member.
13253         (Sized_pluginobj::Sized_pluginobj): Add filesize parameter
13254         and pass to base constructor. Change all callers.
13255         (get_input_file, release_input_file): New functions.
13256         (make_sized_plugin_object): Add filesize parameter. Change all callers.
13257         * plugin.h (Plugin_manager::Plugin_manager): Initialize task_ member.
13258         (Plugin_manager::all_symbols_read): Add task parameter.
13259         (Plugin_manager::get_input_file): New function.
13260         (Plugin_manager::release_input_file): New function.
13261         (Plugin_manager::task_): New data member.
13262         (Pluginobj::Pluginobj): Add filesize parameter.
13263         (Pluginobj::filename): New function.
13264         (Pluginobj::descriptor): New function.
13265         (Pluginobj::filesize): New function.
13266         (Pluginobj::filesize_): New data member.
13267         (Sized_pluginobj::Sized_pluginobj): Add filesize parameter.
13268         * readsyms.cc (Read_symbols::do_read_symbols): Remove call to
13269         File_read::claim_for_plugin; use Object::unlock to unlock the file.
13270
13271         * testsuite/Makefile.am (plugin_test_4): New test case for plugins
13272         with archive libraries.
13273         * testsuite/Makefile.in: Regenerate.
13274         * testsuite/plugin_test.c (struct sym_info): New type.
13275         (get_input_file, release_input_file): New static variables.
13276         (onload): Capture new transfer vector entries.
13277         (claim_file_hook): Stop reading at end of file according to filesize.
13278         Factor out parsing of readelf output into separate function.
13279         (all_symbols_read_hook): Exercise get_input_file and release_input_file
13280         APIs and get the source file name from the symbol table.  Convert
13281         source file name to corresponding object file name.  Print info
13282         message when adding new input files.
13283         (parse_readelf_line): New function.
13284         * testsuite/plugin_test_1.sh: Add checks for new info messages.
13285         * testsuite/plugin_test_2.sh: Likewise.
13286         * testsuite/plugin_test_3.sh: Likewise.
13287         * testsuite/plugin_test_4.sh: New test case.
13288
13289 2009-01-07  Ian Lance Taylor  <iant@google.com>
13290
13291         * version.cc (version_string): Bump to 1.8.
13292
13293 2008-12-23  Cary Coutant  <ccoutant@google.com>
13294
13295         * gold.cc (gold_exit): Call plugin cleanup handlers on exit.
13296         * plugin.cc (Plugin_manager::finish): Rename as
13297         layout_deferred_objects.  Move cleanup to separate function.
13298         (Plugin_manager::cleanup): New function.
13299         (Plugin_finish::run): Call layout_deferred_objects and cleanup
13300         separately.
13301         * plugin.h (Plugin_manager::finish): Rename as
13302         layout_deferred_objects.
13303         (Plugin_manager::cleanup): New function.
13304         (Plugin_manager::cleanup_done): New field.
13305
13306 2008-12-23  Cary Coutant  <ccoutant@google.com>
13307
13308         * plugin.cc (is_visible_from_outside): New function.
13309         (Pluginobj::get_symbol_resolution_info): Call is_visible_from_outside
13310         so we don't return "IR only" status for exported symbols or -r links.
13311
13312         * testsuite/Makefile.am (plugin_test_3): New test case.
13313         * testsuite/Makefile.in: Regenerate.
13314         * testsuite/plugin_test_3.sh: New file.
13315
13316 2008-12-22  Cary Coutant  <ccoutant@google.com>
13317
13318         * object.cc (Sized_relobj::layout_section): New function.
13319         (Sized_relobj::do_layout): Defer layout of input sections until after
13320         plugin has provided replacement files.
13321         (Sized_relobj::do_layout_deferred_sections): New function.
13322         * object.h (Relobj::set_section_offset): Remove virtual keyword.
13323         (Relobj::layout_deferred_sections): New function.
13324         (Relobj::do_layout_deferred_sections): New function.
13325         (Sized_relobj::do_layout_deferred_sections): New function.
13326         (Sized_relobj::layout_section): New function.
13327         (Sized_relobj::Deferred_layout): New structure.
13328         (Sized_relobj::deferred_layout_): New field.
13329         * plugin.cc (Plugin_manager::finish): Renamed, was cleanup.
13330         Change all callers.  Layout deferred sections.
13331         (class Plugin_finish): Renamed, was Plugin_cleanup.  Change all
13332         references.
13333         (Plugin_hook::run): Move code from do_plugin_hook inline.
13334         (Plugin_hook::do_plugin_hook): Remove.
13335         * plugin.h (Plugin_manager::Plugin_manager): Add missing initializers.
13336         (Plugin_manager::finish): Renamed, was cleanup.
13337         (Plugin_manager::should_defer_layout): New function.
13338         (Plugin_manager::add_deferred_layout_object): New function.
13339         (Plugin_manager::Deferred_layout_list): New type.
13340         (Plugin_manager::deferred_layout_objects_): New field.
13341         (Plugin_hook::do_plugin_hook): Remove.
13342
13343 2008-12-17  Ian Lance Taylor  <iant@google.com>
13344
13345         * options.h (class General_options): Add --no case for
13346         --export-dynamic.
13347
13348 2008-12-16  Cary Coutant  <ccoutant@google.com>
13349
13350         * plugin.cc (Plugin::load): Move LDPT_MESSAGE to front of transfer
13351         vector.
13352         (Plugin_manager::claim_file): Create plugin object even if
13353         plugin did not call the add_symbols callback.
13354         (Plugin_obj::get_symbol_resolution_info): Guard against plugin
13355         asking for more symbols than were added.
13356         * testsuite/Makefile.am (plugin_test_1): Add test case with
13357         no global symbols.
13358         (empty.syms): New target.
13359         * testsuite/Makefile.in: Regenerate.
13360         * testsuite/plugin_test.c (claim_file_hook): Add new debug
13361         message. Don't call add_symbols if no globals.
13362         (all_symbols_read_hook): Don't provide replacement for empty
13363         claimed file.
13364
13365 2008-12-12  Ian Lance Taylor  <iant@google.com>
13366
13367         * target-reloc.h (Default_scan_relocatable_relocs): Only discard
13368         r_type == 0 for a local symbol with r_sym == 0.
13369         (scan_relocatable_relocs): Pass r_sym to
13370         local_non_section_strategy.
13371         * reloc.cc (Emit_relocs_strategy::local_non_section_strategy): Add
13372         r_sym parameter.
13373
13374         * configure.ac: Update test for TLS descriptors: they are
13375         supported as of glibc 2.9.
13376         * configure: Rebuild.
13377
13378 2008-12-11  Ian Lance Taylor  <iant@google.com>
13379
13380         PR 7091
13381         * target-reloc.h (Default_scan_relocatable_relocs): For each
13382         function, map r_type == 0 to RELOC_DISCARD.
13383
13384 2008-12-10  Cary Coutant  <ccoutant@google.com>
13385
13386         * layout.cc (Layout::add_comdat): Allow COMDAT group from a replacement
13387         object to override a kept COMDAT group from a plugin object.
13388
13389 2008-12-09  Ian Lance Taylor  <iant@google.com>
13390
13391         PR 7088
13392         * yyscript.y (file_cmd): Handle INPUT.
13393
13394         * testsuite/initpri1.c: Change all declarations to be full
13395         prototypes by adding void, to avoid compiler warnings.
13396
13397 2008-12-05  Rafael Avila de Espindola  <espindola@google.com>
13398
13399         * options.cc (General_options::parse_plugin_opt): New.
13400         (General_options::add_plugin): The argument now is just the filename.
13401         (General_options::add_plugin_option): New.
13402         * options.h (plugin_opt): New.
13403         (add_plugin): Change argument name.
13404         (add_plugin_option): New.
13405         * plugin.cc (Plugin::load): Don't parse the plugin option.
13406         * plugin.h (Plugin::Plugin): Rename argument. Init filename_.
13407         (Plugin::add_option): New.
13408         (Plugin::args_): Change type.
13409         (Plugin::filename_): New.
13410         (Plugin_manager::add_plugin_option): New.
13411         * testsuite/Makefile.am (plugin_test_1): Use new syntax.
13412         * testsuite/Makefile.in: Regenerate.
13413
13414 2008-12-05  Cary Coutant  <ccoutant@google.com>
13415
13416         * layout.cc (Layout::include_section): Check for SHF_EXCLUDE.
13417         Handle --strip-lto-sections option.
13418         * options.h (strip_lto_sections): New option.
13419
13420 2008-12-01  Cary Coutant  <ccoutant@google.com>
13421
13422         * plugin.cc (ld_plugin_message): Change format parameter to const.
13423         Fix mismatch between new[] and delete.
13424
13425 2008-11-14  Cary Coutant  <ccoutant@google.com>
13426
13427         * reloc.cc (Sized_relobj::do_read_relocs): Use constant invalid_address
13428         instead of -1U.
13429
13430 2008-11-05  Craig Silverstein  <csilvers@google.com>
13431
13432         * options.cc (General_options::parse_dynamic_list): New function.
13433         * options.h (General_options): New flags dynamic_list,
13434         dynamic_list_data, dynamic_list_cpp_new, and
13435         dynamic_list_cpp_typeinfo.  New variable dynamic_list_.
13436         (General_options::in_dynamic_list): New function.
13437         * script.cc (Lex::Mode): New enum DYNAMIC_LIST.
13438         (Lex::can_start_name): Add support for DYNAMIC_LIST mode.
13439         (Lex::can_continue_name): Likewise.
13440         (yylex): Likewise.
13441         (read_script_file): New parameter script_options.
13442         (read_dynamic_list): New function.
13443         (Script_options::define_dynamic_list): New function.
13444         (dynamic_list_keyword_parsecodes): New variable.
13445         (dynamic_list_keywords): New variable.
13446         * script.h (Script_options::define_dynamic_list): New function
13447         prototype.
13448         (read_dynamic_list): New function prototype.
13449         * symtab.cc (strprefix): New macro.
13450         (Symbol::should_add_dynsym_entry): Support dynamic_list,
13451         dynamic_list_data, dynamic_list_cpp_new, and
13452         dynamic_list_cpp_typeinfo.
13453         * yyscript.y (PARSING_DYNAMIC_LIST): New token.
13454         (dynamic_list_expr): New rule.
13455         (dynamic_list_nodes): Likewise.
13456         (dynamic_list_node): Likewise.
13457         * testsuite/Makefile.am (dynamic_list): New test.
13458         * testsuite/Makefile.in: Regenerated.
13459         * testsuite/dynamic_list.t: New file.
13460         * testsuite/dynamic_list.sh: New file.
13461
13462 2008-11-05  Craig Silverstein  <csilvers@google.com>
13463
13464         * testsuite/tls_test_c.c: Add prototype for t11 and t11_last.
13465         * testsuite/tls_test_c.c (t11): Add explicit "void" to prototype.
13466         (t11_last): Likewise.
13467         * testsuite/ver_test_6.c (main): Likewise.
13468
13469 2008-10-07  Cary Coutant  <ccoutant@google.com>
13470
13471         * options.c (General_options::finalize): Add check for -static and
13472         -shared.
13473         * gold.cc (queue_middle_tasks): Assert that list of dynamic objects
13474         is not empty.
13475
13476 2008-10-02  Cary Coutant  <ccoutant@google.com>
13477
13478         * plugin.cc (make_sized_plugin_object): Fix conditional
13479         compilation to work when not all targets are enabled.
13480
13481 2008-09-29  Cary Coutant  <ccoutant@google.com>
13482
13483         * archive.cc (Archive::get_file_and_offset): Use filename instead
13484         of name to get library path.
13485         (Archive::include_member): Unlock external member of a thin archive.
13486
13487         * testsuite/Makefile.am (TEST_AR): New variable.
13488         (thin_archive_test_1): New test.
13489         (thin_archive_test_2): New test.
13490         * testsuite/Makefile.in: Regenerate.
13491         * testsuite/thin_archive_main.cc: New file.
13492         * testsuite/thin_archive_test_1.cc: New file.
13493         * testsuite/thin_archive_test_2.cc: New file.
13494         * testsuite/thin_archive_test_3.cc: New file.
13495         * testsuite/thin_archive_test_4.cc: New file.
13496
13497 2008-09-29  Cary Coutant  <ccoutant@google.com>
13498
13499         * mapfile.cc (Mapfile::print_input_section): Change -1U to -1ULL.
13500         * object.cc (Sized_relobj::do_layout): Use constant invalid_address
13501         instead of -1U.
13502         (Sized_relobj::do_finalize_local_symbols): Likewise.
13503         (Sized_relobj::map_to_kept_section): Likewise.
13504         * object.h (Sized_relobj::invalid_address): New constant.
13505         (Sized_relobj::do_output_section_offset): Check for invalid_address
13506         and return -1ULL.
13507         * output.cc (Output_reloc::local_section_offset): Use constant
13508         invalid_address instead of -1U.
13509         (Output_reloc::get_address): Likewise.
13510         (Output_section::output_address): Change -1U to -1ULL.
13511         * output.h (Output_reloc::invalid_address): New constant.
13512         * reloc.cc (Sized_relobj::write_sections): Use constant
13513         invalid_address instead of -1U.
13514         (Sized_relobj::relocate_sections): Likewise.
13515         * symtab.cc (Symbol_table::sized_finalize_symbol): Handle symbol
13516         values for merge sections.
13517         * target-reloc.h (relocate_for_relocatable): Use constant
13518         invalid_address instead of -1U.
13519
13520 2008-09-19  Cary Coutant  <ccoutant@google.com>
13521
13522         Add plugin functionality for link-time optimization (LTO).
13523         * configure.ac (plugins): Add --enable-plugins option.
13524         * configure: Regenerate.
13525         * config.in: Regenerate.
13526         * Makefile.am (LIBDL): New variable.
13527         (CCFILES): Add plugin.cc.
13528         (HFILES): Add plugin.h.
13529         (ldadd_var): Add LIBDL.
13530         * Makefile.in: Regenerate.
13531
13532         * archive.cc: Include "plugin.h".
13533         (Archive::setup): Don't preread archive symbols when using a plugin.
13534         (Archive::get_file_and_offset): Add memsize parameter.  Change callers.
13535         (Archive::get_elf_object_for_member): Call plugin hooks for claiming
13536         files.
13537         (Archive::include_member): Add symbols from plugin objects.
13538         * archive.h (Archive::get_file_and_offset): Add memsize parameter.
13539         * descriptors.cc (Descriptors::open): Check for file descriptors
13540         abandoned by plugins.
13541         (Descriptors::claim_for_plugin): New function.
13542         * descriptors.h (Descriptors::claim_for_plugin): New function.
13543         (Open_descriptor::is_claimed): New field.
13544         (claim_descriptor_for_plugin): New function.
13545         * fileread.cc (File_read::claim_for_plugin): New function.
13546         * fileread.h (File_read::claim_for_plugin): New function.
13547         (File_read::descriptor): New function.
13548         * gold.cc: Include "plugin.h".
13549         (queue_initial_tasks): Add task to call plugin hooks for generating
13550         new object files.
13551         * main.cc: Include "plugin.h".
13552         (main): Load plugin libraries.
13553         * object.h (Pluginobj): Declare.
13554         (Object::pluginobj): New function.
13555         (Object::do_pluginobj): New function.
13556         (Object::set_target): New function.
13557         * options.cc: Include "plugin.h".
13558         (General_options::parse_plugin): New function.
13559         (General_options::General_options): Initialize plugins_ field.
13560         (General_options::add_plugin): New function.
13561         * options.h (Plugin_manager): Declare.
13562         (General_options): Add --plugin option.
13563         (General_options::has_plugins): New function.
13564         (General_options::plugins): New function.
13565         (General_options::add_plugin): New function.
13566         (General_options::plugins_): New field.
13567         * plugin.cc: New file.
13568         * plugin.h: New file.
13569         * readsyms.cc: Include "plugin.h".
13570         (Read_symbols::do_read_symbols): Check for archive before checking
13571         for ELF file.  Call plugin hooks to claim files.
13572         * resolve.cc (Symbol_table::resolve): Record when symbol is referenced
13573         from a real object file; force override when processing replacement
13574         files.
13575         * symtab.cc (Symbol::init_fields): Initialize in_real_elf_ field.
13576         (Symbol::init_base_object): Likewise.
13577         (Symbol::init_base_output_data): Likewise.
13578         (Symbol::init_base_output_segment): Likewise.
13579         (Symbol::init_base_constant): Likewise.
13580         (Symbol::init_base_undefined): Likewise.
13581         (Symbol::output_section): Assert that object is not a plugin.
13582         (Symbol_table::add_from_pluginobj): New function.
13583         (Symbol_table::sized_finalize_symbol): Treat symbols from plugins as
13584         undefined.
13585         (Symbol_table::sized_write_globals): Likewise.
13586         (Symbol_table::add_from_pluginobj): Instantiate template.
13587         * symtab.h (Sized_pluginobj): Declare.
13588         (Symbol::in_real_elf): New function.
13589         (Symbol::set_in_real_elf): New function.
13590         (Symbol::in_real_elf_): New field.
13591         (Symbol_table::add_from_pluginobj): New function.
13592
13593         * testsuite/Makefile.am (AM_CFLAGS): New variable.
13594         (LIBDL): New variable.
13595         (LDADD): Add LIBDL.
13596         (check_PROGRAMS): Add plugin_test_1 and plugin_test_2.
13597         (check_SCRIPTS): Add plugin_test_1.sh and plugin_test_2.sh.
13598         (check_DATA): Add plugin_test_1.err and plugin_test_2.err.
13599         (MOSTLYCLEANFILES): Likewise.
13600         * testsuite/Makefile.in: Regenerate.
13601         * testsuite/plugin_test.c: New file.
13602         * testsuite/plugin_test_1.sh: New file.
13603         * testsuite/plugin_test_2.sh: New file.
13604
13605 2008-09-16  Ian Lance Taylor  <iant@google.com>
13606
13607         * target-reloc.h (relocate_section): Check whether a symbol is
13608         defined by the ABI before reporting an undefined symbol error.
13609         * target.h (Target::is_defined_by_abi): Make parameter const.
13610         (Target::do_is_defined_by_abi): Likewise.
13611         * i386.cc (Target_i386::do_is_defined_by_abi): Likewise.
13612         * powerpc.cc (Target_powerpc::do_is_defined_by_abi): Likewise.
13613         * sparc.cc (Target_sparc::do_is_defined_by_abi): Likewise.
13614         * x86_64.cc (Target_x86_64::do_is_defined_by_abi): Likewise.
13615         * testsuite/Makefile.am (tls_test_shared.so): Add -Wl,-z,defs.
13616         * testsuite/Makefile.in: Rebuild.
13617
13618         * fileread.cc (make_view): Add casts to avoid warning.
13619
13620 2008-09-16  Alexandre Oliva  <aoliva@redhat.com>
13621
13622         * i386.cc (Target_i386::define_tls_base_symbol): Update comments.
13623         * x86_64.cc (Target_x86_64::define_tls_base_symbol): Likewise.
13624
13625 2008-09-16  Alexandre Oliva  <aoliva@redhat.com>
13626
13627         * options.h (General_options::output_is_executable): New.
13628         (General_options::output_is_pie): New.
13629         * i386.cc (Target_i386::define_tls_base_symbol): Use SEGMENT_START
13630         for shared libraries.
13631         * x86_64.cc (Target_x86_64::define_tls_base_symbol): Likewise.
13632
13633 2008-09-11  Chris Demetriou  <cgd@google.com>
13634
13635         * options.h (origin): New -z option.
13636         * layout.cc (Layout:finish_dynamic_section): If "-z origin"
13637         is specified, set DF_ORIGIN in DT_FLAGS and set DF_1_ORIGIN
13638         in DT_FLAGS_1.
13639
13640 2008-09-05  Cary Coutant  <ccoutant@google.com>
13641
13642         * fileread.cc (File_read::make_view): Add check for attempt to map
13643         beyond end of file.
13644
13645 2008-09-05  Cary Coutant  <ccoutant@google.com>
13646
13647         * symtab.cc (Symbol_table::add_from_dynobj): Fix typos in
13648         explicit instantiations.
13649
13650 2008-08-28  Kris Van Hees  <kris.van.hees@oracle.com>
13651
13652         PR gold/6858
13653         * options.cc (General_options::finalize): Allow undefined symbols
13654         in shlibs if linking -shared.
13655
13656         PR gold/6859
13657         * symtab.cc (Symbol::init_base_undefined): Mark explicitly undefined
13658         symbols as not needing a dynsym entry.
13659
13660 2008-08-20  Craig Silverstein  <csilvers@google.com>
13661
13662         * fileread.cc (File_read::open): Do not lock the file unless it
13663         was successfully opened.
13664
13665 2008-08-14  Cary Coutant  <ccoutant@google.com>
13666
13667         * x86_64.cc (Target_x86_64::Relocate::relocat_tls):
13668         Use addend for DTPOFF32, DTPOFF64, and TPOFF32 relocs.
13669         * testsuite/tls_test.cc (struct int128): 128-bit struct
13670         for testing TLS relocs with non-zero addend.
13671         (v12): New TLS variable.
13672         (t12): New test.
13673         (t_last): Add check for v12.
13674         * testsuite/tls_test.h (t12): New function.
13675         * testsuite/tls_test_main.cc (thread_routine): Call new test.
13676
13677 2008-08-13  Ian Lance Taylor  <iant@google.com>
13678
13679         * layout.cc (Layout::attach_allocated_section_to_segment): Don't
13680         set tls_segment_ or relro_segment_.
13681         (Layout::make_output_segment): Set tls_segment_ and relro_segment_
13682         when appropriate.
13683         * output.h (Output_section::clear_is_relro): New function.
13684         * output.cc (Output_segment::add_output_section): Handle SHF_TLS
13685         sections specially even when output_data_ is empty.
13686         (Output_segment::maximum_alignment): When first section is relro,
13687         only force alignment for PT_LOAD segments.
13688         * script.cc (script_data_segment_align): New function.
13689         (script_data_segment_relro_end): New function.
13690         * script-c.h (script_data_segment_align): Declare.
13691         (script_data_segment_relro_end): Declare.
13692         * script-sections.h (class Script_sections): Declare
13693         data_segment_align and data_segment_relro_end.  Add fields
13694         segment_align_index_ and saw_relro_end_.
13695         * script-sections.cc (class Sections_element): Add set_is_relro
13696         virtual function.  Add new bool* parameter to place_orphan_here.
13697         Add get_output_section virtual function.
13698         (class Output_section_definition): Add set_is_relro.  Add new
13699         bool* parameter to place_orphan_here.  Add get_output_section.
13700         Add is_relro_ field.
13701         (Output_section_definition::Output_section_definition): Initialize
13702         evaluated_address_, evaluated_load_address, evaluated_addralign_,
13703         and is_relro_ fields.
13704         (Output_section_definition::place_orphan_here): Add is_relro
13705         parameter.
13706         (Output_section_definition::set_section_addresses): Set relro for
13707         output section.
13708         (Output_section_definition::alternate_constraint): Likewise.
13709         (class Orphan_output_section): Add new bool* parameter to
13710         place_orphan_here.  Add get_output_section.
13711         (Orphan_output_section::place_orphan_here): Add is_relro
13712         parameter.
13713         (Script_sections::Script_sections): Initialize
13714         data_segment_align_index_ and saw_relro_end_.
13715         (Script_sections::data_segment_align): New function.
13716         (Script_sections::data_segment_relro_end): New function.
13717         (Script_sections::place_orphan): Set or clear is_relro.
13718         (Script_sections::set_section_addresses): Force alignment of first
13719         TLS section.
13720         * yyscript.y (exp): Call script_data_segment_align and
13721         script_data_segment_relro_end.
13722         * testsuite/relro_script_test.t: New file.
13723         * testsuite/relro_test.cc (using_script): Declare.
13724         (t1, t2): Test using_script.
13725         * testsuite/Makefile.am (check_PROGRAMS): Add relro_script_test.
13726         (relro_script_test_SOURCES): Define.
13727         (relro_script_test_DEPENDENCIES): Define.
13728         (relro_script_test_LDFLAGS): Define.
13729         (relro_script_test_LDADD): Define.
13730         (relro_script_test.so): New target.
13731         * testsuite/Makefile.in: Rebuild.
13732
13733 2008-08-06  Cary Coutant <ccoutant@google.com>
13734
13735         * archive.cc (Archive::total_archives, Archive::total_members)
13736         (Archive::total_members_loaded): New variables.
13737         (Archive::setup): Add parameter.  Add option to preread
13738         archive symbols.
13739         (Archive::read_armap): Add counter.
13740         (Archive::get_file_and_offset): New function.
13741         (Archive::get_elf_object_for_member): New function.
13742         (Archive::read_all_symbols): New function.
13743         (Archive::read_symbols): New function.
13744         (Archive::add_symbols): Add counters.
13745         (Archive::include_all_members): Use armap to find members if it's
13746         already built.
13747         (Archive::include_member): Skip reading symbols if already read.
13748         Factored code into Archive::get_file_and_offset and
13749         Archive::get_elf_object_for_member.  Changed call to
13750         Mapfile::report_include_archive_member.
13751         (Archive::print_stats): New function.
13752         * archive.h: Declare Object and Read_symbols_data classes.
13753         (Archive::Archive): Add initializers for new members.
13754         (Archive::setup): Add parameter.
13755         (Archive::print_stats): New function.
13756         (Archive::total_archives, Archive::total_members)
13757         (Archive::total_members_loaded): New variables.
13758         (Archive::get_file_and_offset): New function.
13759         (Archive::get_elf_object_for_member): New function.
13760         (Archive::read_all_symbols): New function.
13761         (Archive::read_symbols): New function.
13762         (Archive::Archive_member): New class.
13763         (Archive::members_): New member.
13764         (Archive::num_members_): New member.
13765         * main.cc: Include archive.h.
13766         (main): Call Archive::print_stats.
13767         * mapfile.cc (Mapfile::report_include_archive_member): Delete
13768         archive parameter; member_name is now the fully-decorated name.
13769         * mapfile.h (Mapfile::report_include_archive_member): Likewise.
13770         * options.h: (General_options): Add --preread-archive-symbols option.
13771         * readsyms.cc (Read_symbols::do_read_symbols): Change call to
13772         Archive::setup.
13773
13774 2008-08-04  Ian Lance Taylor  <iant@google.com>
13775
13776         * symtab.h (Symbol::use_plt_offset): New function.
13777         * i386.cc (Relocate::relocate): Call Symbol::use_plt_offset.
13778         * powerpc.cc (Relocate::relocate): Likewise.
13779         * sparc.cc (Relocate::relocate): Likewise.
13780         * x86_64.cc (Relocate::relocate): Likewise.
13781         * testsuite/weak_plt.sh: New test.
13782         * testsuite/weak_plt_main.cc: New test.
13783         * testsuite/weak_plt_shared.cc: New test.
13784         * testsuite/Makefile.am (check_SCRIPTS): Add weak_plt.sh.
13785         (check_PROGRAMS): Add weak_plt.
13786         (check_DATA): Add weak_plt_shared.so.
13787         (weak_plt_main_pic.o, weak_plt): New targets.
13788         (weak_plt_shared_pic.o, weak_plt_shared.so): New targets.
13789         * testsuite/Makefile.in: Rebuild.
13790
13791         * testsuite/Makefile.am (weak_alias_test_1.so): Depend upon
13792         gcctestdir/ld.
13793         (weak_alias_test_2.so, weak_alias_test_4.so): Likewise.
13794         * testsuite/Makefile.in: Rebuild.
13795
13796 2008-08-04  Alan Modra  <amodra@bigpond.net.au>
13797
13798         * Makefile.am (POTFILES.in): Set LC_ALL=C.
13799         * Makefile.in: Regenerate.
13800         * po/POTFILES.in: Regenerate.
13801
13802 2008-07-29  Ian Lance Taylor  <iant@google.com>
13803
13804         * script.cc (Script_options::finalize_symbols): Finalize SECTIONS
13805         symbols before other symbols.
13806         * testsuite/script_test_2.cc (test_addr): Declare.
13807         (test_addr_alias): Declare.
13808         (main): Check that test_addr and test_addr_alias have the right
13809         values.
13810         * testsuite/script_test_2.t: Define test_addr_alias and
13811         test_addr.
13812
13813 2008-07-24  Ian Lance Taylor  <iant@google.com>
13814
13815         PR 5990
13816         * descriptors.cc: New file.
13817         * descriptors.h: New file.
13818         * gold-threads.h (class Hold_optional_lock): New class.
13819         * fileread.cc: Include "descriptors.h".
13820         (File_read::~File_read): Release descriptor rather than closing
13821         it.
13822         (File_read::open) [file]: Call open_descriptor rather than open.
13823         Set is_descriptor_opened_.
13824         (File_read::open) [memory]: Assert that descriptor is not open.
13825         (File_read::reopen_descriptor): New function.
13826         (File_read::release): Release descriptor.
13827         (File_read::do_read): Make non-const.  Reopen descriptor.
13828         (File_read::read): Make non-const.
13829         (File_read::make_view): Reopen descriptor.
13830         (File_read::do_readv): Likewise.
13831         * fileread.h (class File_read): Add is_descriptor_opened_ field.
13832         Update declarations.
13833         * layout.cc: Include "descriptors.h".
13834         (Layout::create_build_id): Use open_descriptor rather than open.
13835         * output.cc: Include "descriptors.h".
13836         (Output_file::open): Use open_descriptor rather than open.
13837         * archive.cc (Archive::const_iterator): Change Archive to be
13838         non-const.
13839         (Archive::begin, Archive::end): Make non-const.
13840         (Archive::count_members): Likewise.
13841         * archive.h (class Archive): Update declarations.
13842         * object.h (Object::read): Make non-const.
13843         * Makefile.am (CCFILES): Add descriptors.cc.
13844         (HFILES): Add descriptors.h.
13845         * Makefile.in: Rebuild.
13846
13847         PR 6716
13848         * gold.h: Always include <clocale>.  Add Solaris workarounds
13849         following code in binutils/sysdep.h.
13850
13851         PR 6048
13852         * ehframe.cc (Eh_frame::add_ehframe_input_section): Check whether
13853         this->eh_frame_hdr_ is NULL before using it.
13854
13855         * dynobj.cc (Versions::Versions): Update comment.
13856
13857         * dynobj.cc (Versions::Versions): If there is an soname, use it as
13858         the base version name.
13859
13860         * stringpool.cc (Stringpool_template::add_with_length): Set key to
13861         array size plus one.
13862         (Stringpool_template::set_string_offsets): Subtract one from key
13863         before using it as an array index.
13864         (Stringpool_template::get_offset_with_length): Likewise.
13865         (Stringpool_template::write_to_buffer): Likewise.
13866         * stringpool.h (Stringpool_template::get_offset_from_key):
13867         Likewise.
13868
13869 2008-07-23  Ian Lance Taylor  <iant@google.com>
13870
13871         PR 6658
13872         * object.h (Merged_symbol_value::value): Do our best to handle a
13873         negative addend.
13874
13875         PR 6647
13876         * script.cc (Version_script_info::get_versions): Don't add empty
13877         version tag to return value.
13878         (Version_script_info::get_symbol_version_helper): Change return
13879         type to bool.  Add pversion parameter.  Change all callers.
13880         (script_register_vers_node): Don't require a non-NULL tag.
13881         * script.h (class Version_script_info): Update declarations.
13882         (Version_script_info::get_symbol_version): Change return type to
13883         bool.  Add version parameter.  Change all callers.
13884         * symtab.cc (Sized_symbol::add_from_relobj): Rework version
13885         handling.  Handle an empty version from a version script.
13886         (Symbol_table::define_special_symbol): Likewise.
13887         * testsuite/ver_test_10.script: New file.
13888         * testsuite/ver_test_10.sh: New file.
13889         * testsuite/Makefile.am (check_SCRIPTS): Add ver_test_10.sh.
13890         (check_DATA): Add ver_test_10.syms.
13891         (ver_test_10.syms, ver_test_10.so): New target.
13892         * testsuite/Makefile.in: Rebuild.
13893
13894 2008-07-23  Simon Baldwin  <simonb@google.com>
13895
13896         * symtab.cc (Symbol_table::sized_write_symbol): Only set st_size
13897         to zero for undefined symbols from dynamic libraries.
13898
13899 2008-07-23  Ian Lance Taylor  <iant@google.com>
13900
13901         * symtab.cc (Symbol_table::resolve): Remove version parameter.
13902         Change all callers.
13903         * symtab.h (class Symbol_table): Update declaration.
13904         * testsuite/ver_test_9.cc: New file.
13905         * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_9.
13906         (ver_test_9_SOURCES, ver_test_9_DEPENDENCIES): Define.
13907         (ver_test_9_LDFLAGS, ver_test_9_LDADD): Define.
13908         (ver_test_9.so, ver_test_9.o): New targets.
13909         * testsuite/Makefile.in: Rebuild.
13910
13911 2008-07-22  Ian Lance Taylor  <iant@google.com>
13912
13913         * options.h (class General_options): Define --check-sections.
13914         * layout.cc (Layout::set_segment_offsets): Handle
13915         --check-sections.
13916
13917         * options.h (class General_options): Define -n/--nmagic and
13918         -N/--omagic.
13919         * options.cc (General_options::finalize): For -n/--nmagic or
13920         -N/--omagic, set -static.
13921         * layout.cc (Layout::attach_allocated_section_to_segment): If
13922         -N/--omagic, don't put read-only and read-write sections in
13923         different segments.
13924         (Layout::find_first_load_seg): If -N/--omagic, don't insist on
13925         finding a read-only segment.
13926         (Layout::set_segment_offsets): If -N/--omagic or -n/--nmagic,
13927         don't set the minimum segment alignment to the common page size,
13928         and don't set the file offset to the address modulo the page size.
13929         * script-sections.cc (Script_sections::create_segments): If
13930         -n/--omagic, don't put read-only and read-write sections in
13931         different segments.
13932
13933         * cref.cc: New file.
13934         * cref.h: New file.
13935         * options.h (class General_options): Add --print-symbol-counts.
13936         * main.cc (main): Issue defined symbol report if requested.
13937         * archive.cc (Archive::interpret_header): Make into a const member
13938         function.
13939         (Archive::add_symbols): Call Input_objects::archive_start and
13940         archive_stop.
13941         (Archive::const_iterator): Define new class.
13942         (Archive::begin, Archive::end): New functions.
13943         (Archive::include_all_members): Rewrite to use iterator.
13944         (Archive::count_members): New function.
13945         * archive.h (class Archive): Update declarations.
13946         (Archive::filename): New function.
13947         * object.cc: Include "cref.h".
13948         (Sized_relobj::Sized_relobj): Initialize defined_count_.
13949         (Sized_relobj::do_get_global_symbol_counts): New function.
13950         (Input_objects::add_object): Add object to cross-referencer.
13951         (Input_objects::archive_start): New function.
13952         (Input_objects::archive_stop): New function.
13953         (Input_objects::print_symbol_counts): New function.
13954         * object.h: Declare Cref and Archive.
13955         (Object::get_global_symbol_counts): New function.
13956         (Object::do_get_global_symbol_counts): New pure virtual function.
13957         (class Sized_relobj): Add defined_count_ field.  Update
13958         declarations.
13959         (class Input_objects): Add cref_ field.  Update constructor.
13960         Update declarations.
13961         * dynobj.cc (Sized_dynobj::Sized_dynobj): Initialize symbols_ and
13962         defined_count_.
13963         (Sized_dynobj::do_add_symbols): Allocate symbols_ if printing
13964         symbol counts.
13965         (Sized_dynobj::do_get_global_symbol_counts): New function.
13966         * dynobj.h (class Sized_dynobj): Add fields symbols_ and
13967         defined_count_.  Update declarations.  Define Symbols typedef.
13968         * symtab.cc (Symbol_table::add_from_relobj): Add defined
13969         parameter.  Change all callers.
13970         (Symbol_table::add_from_dynobj): Add sympointers and defined
13971         parameters.  Change all callers.
13972         * symtab.h (class Symbol_table): Update declarations.
13973         * Makefile.am (CCFILES): Add cref.cc.
13974         (HFILES): Add cref.h.
13975         * Makefile.in: Rebuild.
13976
13977 2008-07-22  Simon Baldwin  <simonb@google.com>
13978
13979         * symtab.cc (Symbol_table::sized_write_symbol): Set symbol size
13980         to zero when writing undefined symbols.
13981
13982 2008-07-22  Ian Lance Taylor  <iant@google.com>
13983
13984         * output.cc (Output_section::add_input_section): Don't try to
13985         merge empty merge sections.
13986
13987 2008-07-21  Craig Silverstein  <csilvers@google.com>
13988
13989         * symtab.cc (Symbol_table::warn_about_undefined_dynobj_symbol):
13990         Include symbol version in error message.
13991
13992 2008-07-20  Chris Demetriou  <cgd@google.com>
13993
13994         * configure.ac (gold_cv_c_random_seed): New configured variable.
13995         (RANDOM_SEED_CFLAGS): New substituted variable.
13996         * Makefile.am (AM_CFLAGS, AM_CXXFLAGS): Add $(RANDOM_SEED_CFLAGS).
13997         * configure: Rebuild.
13998         * Makefile.in: Likewise.
13999         * testsuite/Makefile.in: Likewise.
14000
14001 2008-07-18  Ian Lance Taylor  <iant@google.com>
14002
14003         * symtab.cc (Symbol_table::add_from_object): Rewrite the case
14004         where we see NAME/NULL and NAME/VERSION  as separate symbols.
14005         * testsuite/ver_test_main.cc (main): Call t4.
14006         (t4, t4_2a): Define.
14007         * testsuite/ver_test_2.cc (t4_2): Define.
14008         * testsuite/ver_test_2.script: Put t4_2a in VER2.
14009         * testsuite/ver_test_4.cc (t4_2a): Define.
14010         * testsuite/ver_test_4.script: Put t4_2a in VER2.
14011         * testsuite/ver_test.h (t4, t4_2, t4_2a): Declare.
14012
14013 2008-07-17  Ian Lance Taylor  <iant@google.com>
14014
14015         * dynobj.cc (Versions::add_def): If we give an error about a
14016         missing version, go ahead and create the version anyhow.
14017
14018 2008-07-10  Ian Lance Taylor  <iant@google.com>
14019
14020         Handle output sections with more than 0x7fffffff bytes.
14021         * object.h (class Relobj): Change map_to_output_ to
14022         output_sections_, and just keep a section pointer.  Change all
14023         uses.  Move comdat group support to Sized_relobj.
14024         (Relobj::is_section_specially_mapped): Remove.
14025         (Relobj::output_section): Remove poff parameter.  Change all
14026         callers.
14027         (Relobj::output_section_offset): New function.
14028         (Relobj::set_section_offset): Rewrite.
14029         (Relobj::map_to_output): Remove.
14030         (Relobj::output_sections): New function.
14031         (Relobj::do_output_section_offset): New pure virtual function.
14032         (Relobj::do_set_section_offset): Likewise.
14033         (class Sized_relobj): Add section_offsets_ field.  Add comdat
14034         group support from Relobj.  Update declarations.
14035         (Sized_relobj::get_output_section_offset): New function.
14036         (Sized_relobj::do_output_section_offset): New function.
14037         (Sized_relobj::do_set_section_offset): New function.
14038         * object.cc (Relobj::output_section_address): Remove.
14039         (Sized_relobj::Sized_relobj): Initialize new fields.
14040         (Sized_relobj::include_section_group): Cast find_kept_object to
14041         Sized_relobj.
14042         (Sized_relobj::include_linkonce_section): Likewise.
14043         (Sized_relobj::do_layout): Use separate arrays for output section
14044         and output offset.
14045         (Sized_relobj::do_count_local_symbols): Change map_to_output to
14046         output_sections.
14047         (Sized_relobj::do_finalize_local_symbols): Change map_to_output to
14048         output_sections and section_offsets.
14049         (Sized_relobj::write_local_symbols): Likewise.
14050         (map_to_kept_section): Compute output address directly.
14051         * reloc.cc (Sized_relobj::do_read_relocs): Change map_to_output to
14052         output_sections and section_offsets.
14053         (Sized_relobj::write_sections): Likewise.
14054         (Sized_relobj::relocate_sections): Likewise.
14055         * symtab.cc (sized_finalize_symbol): Use output_section_offset.
14056         * output.h (class Output_reloc): Update declarations.  Change
14057         u2_.relobj to Sized_relobj*.
14058         (class Output_data_reloc): Change add functions to use
14059         Sized_relobj*.
14060         * output.cc (Output_reloc::Output_reloc): Change relobj to
14061         Sized_relobj*.
14062         (Output_reloc::local_section_offset): Change return type to
14063         Elf_Addr.  Use get_output_section_offset.
14064         (Output_reloc::get_address): Likewise.
14065         (Output_section::is_input_address_mapped): Don't call
14066         is_section_specially_mapped.
14067         (Output_section::output_offset): Likewise.
14068         (Output_section::output_address): Likewise.
14069         (Output_section::starting_output_address): Likewise.
14070         * copy-relocs.cc (Copy_relocs::copy_reloc): Change object
14071         parameter to Sized_relobj*.
14072         (Copy_relocs::need_copy_reloc): Likewise.
14073         (Copy_relocs::save): Likewise.
14074         * copy-relocs.h (class Copy_relocs): Update declarations.
14075         (class Copy_relocs::Copy_reloc_entry): Change constructor to use
14076         Sized_relobj*.  Change relobj_ field to Sized_relobj*.
14077         * target-reloc.h (relocate_for_relocatable): Change
14078         offset_in_output_section type to Elf_Addr.  Change code that uses
14079         it as well.
14080         * layout.cc (Layout::layout): Always set *off.
14081         * mapfile.cc (Mapfile::print_input_section): Use
14082         output_section_offset.
14083         * i386.cc (Target_i386::copy_reloc): Change object parameter to
14084         Sized_relobj*.
14085         * powerpc.cc (Target_powerpc::copy_reloc): Likewise.
14086         * sparc.cc (Target_sparc::copy_reloc): Likewise.
14087         * x86_64.cc (Target_x86_64::copy_reloc): Likewise.
14088
14089 2008-07-03  Ian Lance Taylor  <iant@google.com>
14090
14091         * layout.cc (Layout::include_section): Do not discard unrecognized
14092         SHT_STRTAB sections.
14093
14094 2008-06-30  Craig Silverstein  <csilvers@cs.stanford.edu>
14095
14096         * script.cc (Lex::can_continue_name): Make '?' allowable in
14097         version-script names.
14098         * testsuite/version_script.map: Change glob pattern to use '?'
14099
14100 2008-06-30  Manish Singh  <yosh@gimp.org>
14101
14102         PR 6585
14103         * symtab.cc (Symbol_table::add_undefined_symbols_from_command_line):
14104         Correct typo.
14105
14106 2008-06-30  Ian Lance Taylor  <iant@google.com>
14107
14108         PR 6660
14109         PR 6682
14110         * powerpc.cc (Powerpc_relocate_functions::addr16_ha) [both
14111         versions]: Don't try to read the value in the contents, since we
14112         don't use it.  Use the template endianness when writing.
14113
14114 2008-06-25  Cary Coutant  <ccoutant@google.com>
14115
14116         * fileread.cc (File_read::make_view): Assert on zero-length view.
14117         * object.cc (Sized_relobj::do_read_symbols): Don't try to read
14118         symbol table when there are no symbols to read.
14119
14120 2008-06-23  Craig Silverstein  <csilvers@google.com>
14121
14122         * version.cc (version_string): Bump to 1.7
14123
14124 2008-06-18  Craig Silverstein  <csilvers@google.com>
14125
14126         * powerpc.cc (Powerpc_relocate_functions::addr16_ha): cast
14127         constant 0xFFFF to type Valtype.
14128         (Powerpc_relocate_functions::rel16_ha): Likewise.
14129
14130 2008-06-17  Ian Lance Taylor  <iant@google.com>
14131
14132         * output.h (Output_section::Input_section): Initialize p2align_ to
14133         zero for Output_section_data constructors.
14134         (Output_section::Input_section::addralign): If not an input
14135         section, return the alignment of the Output_section_data.
14136         * testsuite/copy_test.cc: New file.
14137         * testsuite/copy_test_1.cc: New file.
14138         * testsuite/copy_test_2.cc: New file.
14139         * testsuite/Makefile.am (check_PROGRAMS): Add copy_test.
14140         (copy_test_SOURCES, copy_test_DEPENDENCIES): New variables.
14141         (copy_test_LDFLAGS, copy_test_LDADD): New variables.
14142         (copy_test_1_pic.o, copy_test_1.so): New targets.
14143         (copy_test_2_pic.o, copy_test_2.so): New targets.
14144         * testsuite/Makefile.in: Rebuild.
14145
14146         * script-sections.cc (Script_sections::place_orphan): Initialize
14147         local variable exact.
14148
14149 2008-06-13  David Edelsohn  <edelsohn@gnu.org>
14150
14151         * powerpc.cc (Output_data_plt_powerpc::do_write): 8 + 4 = 0xC.
14152
14153 2008-06-12  David Edelsohn  <edelsohn@gnu.org>
14154             David S. Miller  <davem@davemloft.net>
14155
14156         * powerpc.cc: New file.
14157         * Makefile.am (TARGETSOURCES): Add powerpc.cc
14158         (ALL_TARGETOBJS): Add powerpc.$(OBJEXT)
14159         * configure.tgt: Add entries for powerpc-* and powerpc64-*.
14160         * Makefile.in: Rebuild.
14161
14162 2008-06-09  Ian Lance Taylor  <iant@google.com>
14163
14164         * testsuite/relro_test.cc: Include <cstdio>, <cstdlib>, and
14165         <exception>.
14166         (throwing, orig_terminate): New static variables.
14167         (terminate_handler): New static function.
14168         (t2): Set terminate handler.
14169
14170 2008-06-05  Kris Van Hees  <kris.van.hees@oracle.com>
14171
14172         PR 6584
14173         * binary.cc (Binary_to_elf::sized_convert): Fix .data
14174         alignment.
14175
14176 2008-05-30  Cary Coutant  <ccoutant@google.com>
14177
14178         * archive.cc (Archive::include_all_members) Correct to step
14179         over symbol table and extended name table in thin archives.
14180
14181 2008-05-29  Kris Van Hees  <kris.van.hees@oracle.com>
14182
14183         PR 6407
14184         * target-reloc.h (relocate_for_relocatable): Fix new_offset
14185         calculation.
14186
14187 2008-05-28  Caleb Howe  <cshowe@google.com>
14188
14189         * reduced_debug_output.cc: New file.
14190         * reduced_debug_output.h: New file.
14191         * options.h (class General_options): Add --strip-debug-non-line.
14192         * options.cc (General_options::finalize): Add strip_debug_non_line
14193         to the strip heirarchy.
14194         * layout.h (class Layout): Add debug_abbrev_ and debug_info_
14195         fields.
14196         * layout.cc: Include "reduced_debug_output.h".
14197         (Layout::Layout): Initialize new fields.
14198         (line_only_debug_sections): New static array.
14199         (is_lines_only_debug_sections): New static inline function.
14200         (Layout::include_section): Handle --strip-debug-non-line.
14201         (Layout::make_output_section): If --strip-debug-non-line, build
14202         new output sections for .debug_abbrev and .debug_info.
14203         * dwarf_reader.cc (read_unsigned_LEB_128): Move to namespace
14204         gold.  Warn about possible overflow.
14205         (read_signed_LEB_128): Likewise.
14206         * dwarf_reader.h: (read_unsigned_LEB_128): Declare.
14207         (read_signed_LEB_128): Declare.
14208         * Makefile.am (CCFILES): Add reduced_debug_output.cc.
14209         (HFILES): Add reduced_debug_output.h.
14210         * Makefile.in: Rebuild.
14211
14212 2008-05-21  Ian Lance Taylor  <iant@google.com>
14213
14214         * mapfile.cc: New file.
14215         * mapfile.h: New file.
14216         * options.h (class General_options): Add -M/--print-map and -Map.
14217         * options.cc (General_options::finalize): Make -M equivalent to
14218         -Map -.
14219         * main.cc: Include <cstdio> and "mapfile.h".
14220         (main): Open mapfile if requested.
14221         * gold.cc (class Middle_runner): Add mapfile_ field.  Update
14222         constructor.  Change caller.
14223         (queue_initial_tasks): Add mapfile parameter.  Change caller.
14224         (queue_middle_tasks): Likewise.
14225         * gold.h (queue_initial_tasks, queue_middle_tasks): Update
14226         declarations.
14227         * archive.cc: Include "mapfile.h".
14228         (Archive::add_symbols): Add mapfile parameter.  Change all
14229         callers.  Pass mapfile, symbol, and reason to include_member.
14230         (Archive::include_all_members): Add mapfile parameter.  Change all
14231         callers.
14232         (Archive::include_member): Add mapfile, sym, and why parameters.
14233         Change all callers.  Report inclusion to map file.
14234         * archive.h: Include "fileread.h".
14235         (class Archive): Update declarations.
14236         (Archive::file): New const method.
14237         (class Add_archive_symbols): Add mapfile_ field.  Update
14238         constructor.  Change all callers.
14239         * readsyms.h (class Read_symbols): Likewise.
14240         (class Finish_group): Likewise.
14241         (class Read_script): Likewise.
14242         * common.cc: Include "mapfile.h".
14243         (Symbol_table::allocate_commons): Add mapfile parameter.  Change
14244         all callers.
14245         (Symbol_table::do_allocate_commons): Likewise.
14246         (Symbol_table::do_allocate_commons_list): Likewise.  Report common
14247         symbol allocation to mapfile.
14248         * common.h (class Allocate_commons_task): Add mapfile_ field.
14249         Update constructor.  Change all callers.
14250         * symtab.h (class Symbol_table): Update declarations.
14251         * layout.cc: Include "mapfile.h".
14252         (Layout_task_runner::run): Print information to mapfile.
14253         (Layout::create_gold_note): Change Output_data_fixed_space to
14254         Output_data_zero_fill.
14255         (Layout::create_build_id): Likewise.
14256         (Layout::print_to_mapfile): New function.
14257         * layout.h (class Layout_task_runner): Add mapfile_ field.  Update
14258         constructor.  Change caller.
14259         (class Layout): Declare print_to_mapfile.
14260         * output.cc (Output_section::Input_section::print_to_mapfile): New
14261         function.
14262         (Output_section::add_input_section): If producing a map, always
14263         add to input_sections_ list.
14264         (Output_section::do_print_to_mapfile): New function.
14265         (Output_segment::print_sections_to_mapfile): New function.
14266         (Output_segment::print_section_list_to_mapfile): New function.
14267         * output.h: Include "mapfile.h".
14268         (Output_data::print_to_mapfile): New function.
14269         (Output_data::do_print_to_mapfile): New virtual function.
14270         (Output_segment_headers::do_print_to_mapfile): New function.
14271         (Output_file_header::do_print_to_mapfile): New function.
14272         (Output_data_const::do_print_to_mapfile): New function.
14273         (class Output_data_const_buffer): Add map_name_ field.  Update
14274         constructor.  Change all callers.  Add do_print_to_mapfile
14275         function.
14276         (class Output_data_fixed_space): Likewise.
14277         (class Output_data_space): Likewise.
14278         (class Output_data_zero_fill): New class.
14279         (Output_data_strtab::do_print_to_mapfile): New function.
14280         (Output_data_reloc_base::do_print_to_mapfile): New function.
14281         (Output_relocatable_relocs::do_print_to_mapfile): New function.
14282         (Output_data_group::do_print_to_mapfile): New function.
14283         (Output_data_got::do_print_to_mapfile): New function.
14284         (Output_data_dynamic::do_print_to_mapfile): New function.
14285         (Output_symtab_xindex::do_print_to_mapfile): New function.
14286         (class Output_section): Declare do_print_to_mapflie.  Declare
14287         print_to_mapfile in Input_section.
14288         (class Output_segment): Declare new functions.
14289         * object.h (Sized_relobj::symbol_count): New function.
14290         * script-sections.cc
14291         (Output_section_element_dot_assignment::set_section_addresses):
14292         Change Output_data_fixed_space to Output_data_zero_fill.
14293         (Output_data_expression::do_print_to_mapfile): New function.
14294         * script.cc (read_input_script): Add mapfile parameter.  Change
14295         all callers.
14296         * script.h (read_input_script): Update declaration.
14297         * ehframe.h (Eh_frame_hdr::do_print_to_mapfile): New function.
14298         (Eh_frame::do_print_to_mapfile): New function.
14299         * merge.h (Output_merge_data::do_print_to_mapfile): New function.
14300         (Output_merge_string::do_print_to_mapfile): New function.
14301         * i386.cc (Output_data_plt_i386::do_print_to_mapfile): New
14302         function.
14303         * sparc.cc (Output_data_plt_sparc::do_print_to_mapfile): New
14304         function.
14305         * x86_64.cc (Output_data_plt_x86_64::do_print_to_mapfile): New
14306         function.
14307         * Makefile.am (CCFILES): Add mapfile.cc.
14308         (HFILES): Add mapfile.h.
14309         * Makefile.in: Rebuild.
14310
14311 2008-05-19  Ian Lance Taylor  <iant@google.com>
14312
14313         * options.h (class General_options): Add -z relro.
14314         * layout.cc (Layout::Layout): Initialize relro_segment_.
14315         (Layout::add_output_section_data): Return the output section.
14316         (Layout::make_output_section): Rcognize relro sections and mark
14317         them appropriately.
14318         (Layout::attach_allocated_section_to_segment): Put relro sections
14319         in a PT_GNU_RELRO segment.
14320         (Layout::create_initial_dynamic_sections): Mark the .dynamic
14321         section as relro.
14322         (Layout::segment_precedes): Sort PT_GNU_RELRO segments after
14323         PT_TLS segments.
14324         (Layout::linkonce_mapping): Map d.rel.ro.local to
14325         .data.rel.ro.local.
14326         (Layout::output_section_name): Us .data.rel.ro.local for any
14327         section which begins with that.
14328         * layout.h (class Layout): Update add_output_section_data
14329         declaration.  Add relro_segment_ field.
14330         * output.cc (Output_section::Output_section): Initialize is_relro_
14331         and is_relro_local_ fields.
14332         (Output_segment::add_output_section): Group relro sections.
14333         (Output_segment::is_first_section_relro): New function.
14334         (Output_segment::maximum_alignment): If there is a relro section,
14335         align the segment to the common page size.
14336         (Output_segment::set_section_addresses): Track whether we are
14337         looking at relro sections.  If the last section is a relro
14338         section, align to the common page size.
14339         (Output_segment::set_section_list_addresses): Add in_relro
14340         parameter.  Change all callers.  Align to the page size when
14341         moving from relro to non-relro section.
14342         (Output_segment::set_offset): Align memsz of a PT_GNU_RELRO
14343         segment.
14344         * output.h (class Output_section): Add is_relro_ and
14345         is_relro_local_ fields.
14346         (Output_section::is_relro): New function.
14347         (Output_section::set_is_relro): New function.
14348         (Output_section::is_relro_local): New function.
14349         (Output_section::set_is_relro_local): New function.
14350         (class Output_segment): Update declarations.
14351         * i386.cc (Target_i386::got_section): Mark .got section as relro.
14352         * sparc.cc (Target_sparc::got_section): Likewise.
14353         * x86_64.cc (Target_x86_64::got_section): Likewise.
14354         * testsuite/relro_test_main.cc: New file.
14355         * testsuite/relro_test.cc: New file.
14356         * testsuite/Makefile.am (check_PROGRAMS): Add relro_test.
14357         (relro_test_SOURCES, relro_test_DEPENDENCIES): New variables.
14358         (relro_test_LDFLAGS, relro_test_LDADD): New variables.
14359         (relro_test.so, relro_test_pic.o): New targets.
14360         * testsuite/Makefile.in: Rebuild.
14361
14362 2008-05-16  Ian Lance Taylor  <iant@google.com>
14363
14364         * output.cc (Output_segment::add_output_section): Remove front
14365         parameter.
14366         * output.h (class Output_segment): Remove
14367         add_initial_output_section and overloaded add_output_section.
14368         Update declaration of remaining add_output_section.
14369         * layout.cc (Layout::create_interp): Call add_output_section
14370         rather than add_initial_output_section.
14371         (Layout::finish_dynamic_section): Likewise.
14372
14373         * i386.cc (Target_i386::Relocate::relocate_tls): Set dynamic type
14374         for TLS_GOTDESC and TLS_DESC_CALL.  Only optimize TLS_LDO_32 if we
14375         know the dynamic type.
14376         * x86_64.cc (Target_x86_64::Relocate): Add saw_tls_block_reloc_
14377         field.  Initialize it in constructor.
14378         (Target_x86_64::Relocate::relocate_tls): Record that we saw a TLS
14379         block reloc for TLSGD, GOTPC32_TLSDESC, TLSDESC_CALL, and TLSLD.
14380         Only optimize DTPOFF32 and DTPOFF64 if we have seen a TLS block
14381         reloc.
14382
14383         * output.cc (Output_reloc::get_address): Change return type to
14384         Elf_Addr.
14385         * output.h (class Output_reloc): Update get_address declaration.
14386         * x86_64.cc (Output_data_plt_x86_64::do_write): Use 64-bit types
14387         for section addresses.
14388
14389 2008-05-09  Ian Lance Taylor  <iant@google.com>
14390
14391         PR 6493
14392         * gold.cc (gold_nomem): Use return value of write.
14393
14394 2008-05-08  Ian Lance Taylor  <iant@google.com>
14395
14396         * symtab.c (Symbol::init_base_output_data): Add version
14397         parameter.  Change all callers.
14398         (Symbol::init_base_output_segment): Likewise.
14399         (Symbol::init_base_constant): Likewise.
14400         (Symbol::init_base_undefined): Likewise.
14401         (Sized_symbol::init_output_data): Likewise.
14402         (Sized_symbol::init_output_segment): Likewise.
14403         (Sized_symbol::init_constant): Likewise.
14404         (Sized_symbol::init_undefined): Likewise.
14405         (Symbol_table::do_define_in_output_data): If the new symbol has a
14406         version, mark it as the default.
14407         (Symbol_table::do_define_in_output_segment): Likewise.
14408         (Symbol_table::do_define_as_constant): Likewise.
14409         * symtab.h (class Symbol): Update declarations.
14410         (class Sized_symbol): Likewise.
14411         * resolve.cc (Symbol::override_version): New function.
14412         (Symbol::override_base): Call override_version.
14413         (Symbol::override_base_with_special): Likewise.
14414         * testsuite/ver_script_8.script: New file.
14415         * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_8.
14416         (ver_test_8_SOURCES, ver_test_8_DEPENDENCIES): Define.
14417         (ver_test_8_LDFLAGS, ver_test_8_LDADD): Define.
14418         (ver_test_8_1.so, ver_test_8_2.so): New targets.
14419
14420 2008-05-06  Ian Lance Taylor  <iant@google.com>
14421
14422         PR 6049
14423         * options.h (DEFINE_set): Add VARNAME_begin and VARNAME_end
14424         functions.
14425         (class General_options): Remove existing --undefined, and add
14426         --no-undefined instead.  Add new --undefined as synonym for -u.
14427         * archive.cc (Archive::add_symbols): Check whether symbol was
14428         named with -u.
14429         * gold.cc (queue_middle_tasks): Add -u symbols to symbol table.
14430         * symtab.h (class Symbol): Rename CONSTANT to IS_CONSTANT; change
14431         all uses.  Add IS_UNDEFINED.  Update declarations to split
14432         different versions of init_base.  Declare init_base_undefined.
14433         (Symbol::is_defined): Handle IS_UNDEFINED.
14434         (Symbol::is_undefined): Likewise.
14435         (Symbol::is_weak_undefined): Call is_undefined.
14436         (Symbol::is_absolute): Handle IS_CONSTANT.
14437         (class Sized_symbol): Update declarations to split different
14438         versions of init.  Declare init_undefined.
14439         (class Symbol_table): Declare new functions.
14440         * symtab.cc (Symbol::init_base_object): Rename from init_base.
14441         Change all callers.
14442         (Symbol::init_base_output_data): Likewise.
14443         (Symbol::init_base_output_segment): Likewise.
14444         (Symbol::init_base_constant): Likewise.
14445         (Symbol::init_base_undefined): New function.
14446         (Sized_symbol::init_object): Rename from init.  Change all
14447         callers.
14448         (Sized_symbol::init_output_data): Likewise.
14449         (Sized_symbol::init_output_segment): Likewise.
14450         (Sized_symbol::init_constant): Likewise.
14451         (Sized_symbol::init_undefined): New function.
14452         (Symbol_table::add_undefined_symbols_from_command_line): New
14453         function.
14454         (Symbol_table::do_add_undefined_symbols_from_command_line): New
14455         function.
14456         (Symbol::final_value_is_known): Handle IS_UNDEFINED.
14457         (Symbol::output_section): Likewise.
14458         (Symbol::set_output_section): Likewise.
14459         (Symbol_table::sized_finalize_symbol): Likewise.
14460         (Symbol_table::sized_write_globals): Likewise.
14461         * resolve.cc (Symbol_table::should_override): Likewise.
14462         (Symbol::override_base_with_special): Likewise.
14463
14464         * symtab.cc (Symbol_table::add_from_dynobj): If we see a protected
14465         symbol, change it to have default visibility.
14466         * testsuite/protected_1.cc: New file.
14467         * testsuite/protected_2.cc: New file.
14468         * testsuite/protected_3.cc: New file.
14469         * testsuite/protected_main_1.cc: New file.
14470         * testsuite/protected_main_2.cc: New file.
14471         * testsuite/protected_main_3.cc: New file.
14472         * testsuite/Makefile.am (check_PROGRAMS): Add protected_1.
14473         (protected_1_SOURCES, protected_1_DEPENDENCIES): Define.
14474         (protected_1_LDFLAGS, protected_1_LDADD): Define.
14475         (protected_1.so): New target.
14476         (protected_1_pic.o, protected_2_pic.o): New targets.
14477         (protected_3_pic.o): New target.
14478         (check_PROGRAMS): Add protected_2.
14479         (protected_2_SOURCES, protected_2_DEPENDENCIES): Define.
14480         (protected_2_LDFLAGS, protected_2_LDADD): Define.
14481         * testsuite/Makefile.in: Rebuild.
14482
14483         * options.h (DEFINE_var): Add set_user_set_##varname__.
14484         (DEFINE_bool_alias): New macro.
14485         (class General_options): Define -Bstatic using DEFINE_bool_alias
14486         rather than DEFINE_special.  Add --undefined as an alias for -z
14487         defs.
14488         * options.cc (General_options::parse_Bstatic): Remove.
14489
14490         * options.h (class General_options): Add --fatal-warnings.
14491         * main.cc (main): Implement --fatal-warnings.
14492         * errors.h (Errors::warning_count): New function.
14493
14494         * options.h (class General_options): Add -Bsymbolic-functions.
14495         * symtab.h (Symbol::is_preemptible): Check for
14496         -Bsymbolic-functions.
14497
14498 2008-05-05  Ian Lance Taylor  <iant@google.com>
14499
14500         * options.h (DEFINE_bool): For DASH_Z, create the negative option
14501         as noVARNAME rather than no-VARNAME.
14502         (class General_options): Add option -z combreloc.
14503         * output.h (class Output_reloc) [SHT_REL]: Declare compare and
14504         get_address.
14505         (Output_reloc::sort_before) [SHT_REL]: New function.
14506         (Output_reloc::sort_before) [SHT_RELA]: New function.
14507         (class Output_data_reloc_base): Add sort_relocs_ field.  Define
14508         Sort_relocs_comparison.
14509         (Output_data_reloc_base::Output_data_reloc_base): Add sort_relocs
14510         parameter.  Change all callers.
14511         (Output_data_reloc::Output_data_reloc) [both versions]: Add
14512         sort_relocs parameter.  Change all callers.
14513         * output.cc (Output_reloc::get_address): New function, broken out
14514         of write_rel.
14515         (Output_reloc::write_rel): Call it.
14516         (Output_reloc::compare): New function.
14517         (Output_data_reloc_base::do_write): Optionally sort relocs.
14518
14519         * configure.ac: If targ_extra_obj is set, link it in.
14520         * configure.tgt: Initialize all variables.
14521         (x86_64*): Set targ_extra_obj and targ_extra_size.
14522         * configure: Rebuild.
14523
14524         * object.cc (Sized_relobj::include_section_group): Adjust section
14525         indexes read from group data.  Build vector to pass to
14526         layout_group.
14527         * layout.cc (Layout::layout_group): Add flags and shndxes
14528         parameters.  Remove contents parameter.  Change caller.  Update
14529         explicit instantiations.
14530         * layout.h (class Layout): Update layout_group declaration.
14531         * output.cc (Output_data_group::Output_data_group): Add flags and
14532         input_shndxes parameters.  Remove contents parameter.  Change
14533         caller.
14534         (Output_data_group::do_write): Change input_sections_ to
14535         input_shndxes_.
14536         * output.h (class Output_data_group): Update constructor
14537         declaration.  Rename input_sections_ to input_shndxes_.
14538         * testsuite/many_sections_test.cc: Add template.
14539
14540 2008-04-30  Cary Coutant  <ccoutant@google.com>
14541
14542         * target-reloc.h (relocate_section): Fix dead-pointer bug.
14543
14544         * layout.cc (Layout::include_section): Refactored check for debug
14545         info section.
14546         (Layout::add_comdat): Add new parameters.  Change type
14547         of signature parameter.  Add object and shndx to signatures table.
14548         (Layout::find_kept_object): New function.
14549         * layout.h: Include <cstring>.
14550         (Layout::is_debug_info_section): New function.
14551         (Layout::add_comdat): Add new parameters.
14552         (Layout::find_kept_object): New function.
14553         (Layout::Kept_section): New struct.
14554         (Layout::Signatures): Change type of map range.
14555         * object.cc (Relobj::output_section_address): New function.
14556         (Sized_relobj::include_section_group): Add new parameters.  Change
14557         calls to Layout::add_comdat.  Change to build table of kept comdat
14558         groups and table mapping discarded sections to kept sections.
14559         (Sized_relobj::include_linkonce_section): Likewise.  Add new parameter.
14560         (Sized_relobj::do_layout): Change calls to include_section_group and
14561         include_linkonce_section.
14562         (Sized_relobj::do_finalize_local_symbols): Do not set local symbol
14563         value to zero when section is discarded.
14564         (Sized_relobj::map_to_kept_section): New function.
14565         * object.h (Relobj::output_section_address): New function.
14566         (Relobj::Comdat_group): New type.
14567         (Relobj::find_comdat_group): New function.
14568         (Relobj::Comdat_group_table): New type.
14569         (Relobj::Kept_comdat_section): New type.
14570         (Relobj::Kept_comdat_section_table): New type.
14571         (Relobj::add_comdat_group): New function.
14572         (Relobj::set_kept_comdat_section): New function.
14573         (Relobj::get_kept_comdat_section): New function.
14574         (Relobj::comdat_groups_): New field.
14575         (Relobj::kept_comdat_sections_): New field.
14576         (Symbol_value::input_value): Update comment.
14577         (Sized_relobj::map_to_kept_section) New function.
14578         (Sized_relobj::include_linkonce_section): Add new parameter.
14579         * target-reloc.h (Comdat_behavior): New type.
14580         (get_comdat_behavior): New function.
14581         (relocate_section): Add code to map a discarded section to the
14582         corresponding kept section when applying a relocation.
14583
14584 2008-04-30  Craig Silverstein  <csilvers@google.com>
14585
14586         * dwarf_reader.cc (next_generation_count): New static var.
14587         (Addr2line_cache_entry): New struct.
14588         (addr2line_cache): New static var.
14589         (Dwarf_line_info::one_addr2line): Added caching.
14590         (Dwarf_line_info::clear_addr2line_cache): New function.
14591         * dwarf_reader.h (Dwarf_line_info::one_addr2line): Add
14592         cache-size parameter.
14593         (Dwarf_line_info::one_addr2line_cache): New function.
14594         * symtab.cc (Symbol_table::detect_odr_violations): Pass
14595         new cache-size argument to one_addr2line(), and clear cache.
14596
14597 2008-04-28  Cary Coutant  <ccoutant@google.com>
14598
14599         * i386.cc (Relocate::relocate): Fix typos for R_386_PC16 and
14600         R_386_PC8 relocations.
14601
14602 2008-04-23  Ian Lance Taylor  <iant@google.com>
14603
14604         * object.cc (Sized_relobj::include_section_group): Check for
14605         invalid section group.
14606
14607         * object.cc (make_elf_object): Correct test for 64-bit ELF file
14608         header size.
14609
14610         * readsyms.cc (Read_symbols::do_read_symbols): Use get_view rather
14611         than read for file header.
14612         * archive.cc (Archive::include_member): Likewise.
14613
14614 2008-04-23  Paolo Bonzini  <bonzini@gnu.org>
14615
14616         * aclocal.m4: Regenerate.
14617         * configure: Regenerate.
14618
14619 2008-04-19  Ian Lance Taylor  <iant@google.com>
14620
14621         * version.cc (version_string): Bump to 1.6.
14622
14623         * testsuite/Makefile.am (many_sections_r_test): New target.
14624         (many_sections_r_test_SOURCES): Remove.
14625         (many_sections_r_test_DEPENDENCIES): Remove.
14626         (many_sections_r_test_LDFLAGS): Remove.
14627         (many_sections_r_test_LDADD): Remove.
14628
14629         * object.cc (Sized_relobj::do_add_symbols): Always pass
14630         local_symbol_count_ to add_from_relobj.
14631
14632         * testsuite/Makefile.am (many_sections_check.h): Only check one in
14633         every thousand variables.
14634         * testsuite/Makefile.in: Rebuild.
14635
14636         * object.cc (Xindex::initialize_symtab_xindex): New function.
14637         (Xindex::read_symtab_xindex): New function.
14638         (Xindex::sym_xindex_to_shndx): New function.
14639         (Sized_relobj::find_symtab): Pick up SHT_SYMTAB_SHNDX section if
14640         available.
14641         (Sized_relobj::do_initialize_xindex): New function.
14642         (Sized_relobj::do_read_symbols): Adjust section links.
14643         (Sized_relobj::symbol_section_and_value): Add is_ordinary
14644         parameter.  Change all callers.
14645         (Sized_relobj::include_section_group): Adjust section links and
14646         symbol section indexes.
14647         (Sized_relobj::do_layout): Adjust section links.
14648         (Sized_relobj::do_count_local_symbols): Adjust section links and
14649         symbol section indexes.
14650         (Sized_relobj::do_finalize_local_symbols): Distinguish between
14651         ordinary and special symbols.
14652         (Sized_relobj::write_local_symbols): Add symtab_xindex and
14653         dynsym_xindex parameters.  Change all callers.  Adjust section
14654         links.  Use SHN_XINDEX when needed.
14655         (Sized_relobj::get_symbol_location_info): Adjust section links.
14656         Don't get fooled by special symbols.
14657         * object.h (class Xindex): Define.
14658         (class Object): Add xindex_ parameter.  Declare virtual functoin
14659         do_initialize_xindex.
14660         (Object::adjust_sym_shndx): New function.
14661         (Object::set_xindex): New protected function.
14662         (class Symbol_value): Add is_ordinary_shndx_ field.
14663         (Symbol_value::Symbol_value): Initialize is_ordinary_shndx_.
14664         (Symbol_value::value): Assert ordinary section.
14665         (Symbol_value::initialize_input_to_output_map): Likewise.
14666         (Symbol_value::set_input_shndx): Add is_ordinary parameter.
14667         Change all callers.
14668         (Symbol_value::input_shndx): Add is_ordinary parameter.  Change
14669         all callers.
14670         (class Sized_relobj): Update declarations.
14671         (Sized_relobj::local_symbol_input_shndx): Add is_ordinary
14672         parameter.  Change all callers.
14673         (Sized_relobj::adjust_shndx): New function.
14674         * dynobj.cc (Sized_dynobj::Sized_dynobj): Initialize dynsym_shndx_
14675         field.
14676         (Sized_dynobj::find_dynsym_sections): Remove pdynsym_shndx
14677         parameter.  Change all callers.  Pick up SHT_DYNSYM_SHNDX section
14678         for SHT_DYNSYM section if available.  Set dynsym_shndx_ field.
14679         (Sized_dynobj::read_dynsym_section): Adjust section links.
14680         (Sized_dynobj::read_dynamic): Likewise.
14681         (Sized_dynobj::do_read_symbols): Use dynsym_shndx_ field.  Adjust
14682         section links.
14683         (Sized_dynobj::do_initialize_xindex): New function.
14684         * dynobj.h (class Sized_dynobj): Add dynsym_shndx_ field.  Declare
14685         do_initialize_xindex.
14686         (Sized_dynobj::adjust_shndx): New function.
14687         * layout.cc (Layout::Layout): Initialize symtab_xindex_ and
14688         dynsym_xindex_ fields.
14689         (Layout::finalize): Add a call to set_section_indexes before
14690         creating the symtab sections.
14691         (Layout::set_section_indexes): Don't do anything if the section
14692         already has a section index.
14693         (Layout::create_symtab_sections): Add shnum parameter.  Change
14694         caller.  Create .symtab_shndx section if needed.
14695         (Layout::create_shdrs): Add shstrtab_section parameter.  Change
14696         caller.
14697         (Layout::allocated_output_section_count): New function.
14698         (Layout::create_dynamic_symtab): Create .dynsym_shndx section if
14699         needed.
14700         * layout.h (class Layout): Add symtab_xindex_ and dynsym_xindex_
14701         fields.  Update declarations.
14702         (Layout::symtab_xindex): New function.
14703         (Layout::dynsym_xindex): New function.
14704         (class Write_symbols_task): Add layout_ field.
14705         (Write_symbols_task::Write_symbols_task): Add layout parameter.
14706         Change caller.
14707         * output.cc (Output_section_headers::Output_section_headers): Add
14708         shstrtab_section parameter.  Change all callers.
14709         (Output_section_headers::do_sized_write): Store overflow values
14710         for section count and section string table section index in
14711         section header zero.
14712         (Output_file_header::do_sized_write): Check for overflow of
14713         section count and section string table section index.
14714         (Output_symtab_xindex::do_write): New function.
14715         (Output_symtab_xindex::endian_do_write): New function.
14716         * output.h (class Output_section_headers): Add shstrtab_section_.
14717         Update declarations.
14718         (class Output_symtab_xindex): Define.
14719         (Output_section::has_out_shndx): New function.
14720         * symtab.cc (Symbol::init_fields): Initialize is_ordinary_shndx_
14721         field.
14722         (Symbol::init_base): Add st_shndx and is_ordinary parameters.
14723         Change all callers.
14724         (Sized_symbol::init): Likewise.
14725         (Symbol::output_section): Check for ordinary symbol.
14726         (Symbol_table::add_from_object): Remove orig_sym parameter.  Add
14727         st_shndx, is_ordinary, and orig_st_shndx parameters.  Change all
14728         callers.
14729         (Symbol_table::add_from_relobj): Add symndx_offset parameter.
14730         Change all callers.  Simplify handling of symbols from sections
14731         not included in the link.
14732         (Symbol_table::add_from_dynobj): Handle ordinary symbol
14733         distinction.
14734         (Weak_alias_sorter::operator()): Assert that symbols are
14735         ordinary.
14736         (Symbol_table::sized_finalize_symbol): Handle ordinary symbol
14737         distinction.
14738         (Symbol_table::write_globals): Add symtab_xindex and dynsym_xindex
14739         parameters.  Change all callers.
14740         (Symbol_table::sized_write_globals): Likewise.  Handle ordinary
14741         symbol distinction.  Use SHN_XINDEX when needed.
14742         (Symbol_table::write_section_symbol): Add symtab_xindex
14743         parameter.  Change all callers.
14744         (Symbol_table::sized_write_section_symbol): Likewise.  Use
14745         SHN_XINDEX when needed.
14746         * symtab.h (class Symbol): Add is_ordinary_shndx_ field.  Update
14747         declarations.
14748         (Symbol::shndx): Add is_ordinary parameter.  Change all callers.
14749         (Symbol::is_defined): Check is_ordinary.
14750         (Symbol::is_undefined, Symbol::is_weak_undefined): Likewise.
14751         (Symbol::is_absolute, Symbol::is_common): Likewise.
14752         (class Sized_symbol): Update declarations.
14753         (class Symbol_table): Update declarations.
14754         * resolve.cc (Symbol::override_base): Add st_shndx and is_ordinary
14755         parameters.  Change all callers.
14756         (Sized_symbol::override): Likewise.
14757         (Symbol_table::override): Likewise.
14758         (symbol_to_bits): Add is_ordinary parameter.  Change all callers.
14759         (Symbol_table::resolve): Remove orig_sym parameter.  Add st_shndx,
14760         is_ordinary, and orig_st_shndx parameters.  Change all callers.
14761         * copy-relocs.cc (Copy_relocs::emit_copy_reloc): Require symbol
14762         to be in an ordinary section.
14763         * dwarf_reader.cc (Sized_dwarf_line_info::symbol_section): Add
14764         object and is_ordinary parameters.  Change all callers.
14765         (Sized_dwarf_line_info::read_relocs): Add object parameter.
14766         Change all callers.  Don't add undefined or non-ordinary symbols
14767         to reloc_map_.
14768         (Sized_dwarf_line_info::read_line_mappings): Add object parameter.
14769         Change all callers.
14770         * dwarf_reader.h (class Sized_dwarf_line_info): Update
14771         declarations.
14772         * ehframe.cc (Eh_frame::read_fde): Check for ordinary symbol.
14773         * reloc.cc (Sized_relobj::do_read_relocs): Adjust section links.
14774         (Sized_relobj::relocate_sections): Likewise.
14775         * target-reloc.h (scan_relocs): Adjust section symbol index.
14776         (scan_relocatable_relocs): Likewise.
14777         * i386.cc (Scan::local): Check for ordinary symbols.
14778         * sparc.cc (Scan::local): Likewise.
14779         * x86_64.cc (Scan::local): Likewise.
14780         * testsuite/binary_unittest.cc (Sized_binary_test): Update calls
14781         to symbol_section_and_value.
14782         * testsuite/many_sections_test.cc: New file.
14783         * testsuite/Makefile.am (BUILT_SOURCES): Define.
14784         (check_PROGRAMS): Add many_sections_test.
14785         (many_sections_test_SOURCES): Define.
14786         (many_sections_test_DEPENDENCIES): Define.
14787         (many_sections_test_LDFLAGS): Define.
14788         (BUILT_SOURCES): Add many_sections_define.h.
14789         (many_sections_define.h): New target.
14790         (BUILT_SOURCES): Add many_sections_check.h.
14791         (many_sections_check.h): New target.
14792         (check_PROGRAMS): Add many_sections_r_test.
14793         (many_sections_r_test_SOURCES): Define.
14794         (many_sections_r_test_DEPENDENCIES): Define.
14795         (many_sections_r_test_LDFLAGS): Define.
14796         (many_sections_r_test_LDADD): Define.
14797         (many_sections_r_test.o): New target.
14798         * testsuite/Makefile.in: Rebuild.
14799
14800 2008-04-17  Cary Coutant  <ccoutant@google.com>
14801
14802         * errors.cc (Errors::info): New function.
14803         (gold_info): New function.
14804         * errors.h (Errors::info): New function.
14805         * gold.h (gold_info): New function.
14806         * object.cc (Input_objects::add_object): Print trace output.
14807         * options.cc (options::parse_set): New function.
14808         (General_options::parse_wrap): Deleted.
14809         (General_options::General_options): Deleted initializer.
14810         * options.h (options::String_set): New typedef.
14811         (options::parse_set): New function.
14812         (DEFINE_set): New macro.
14813         (General_options::wrap): Changed to use DEFINE_set. Changed
14814         callers of any_wrap_symbols and is_wrap_symbol.
14815         (General_options::trace, General_options::trace_symbol):
14816         New options.
14817         (General_options::any_wrap_symbols, General_options::is_wrap_symbol)
14818         (General_options::wrap_symbols_): Deleted.
14819         * symtab.cc (Symbol_table::add_from_object): Print trace output.
14820
14821 2008-04-17  David S. Miller  <davem@davemloft.net>
14822
14823         * options.cc (General_options::parse_V): New function.
14824         * options.h: Add entries for -V and -Qy.
14825
14826 2008-04-17  Ian Lance Taylor  <iant@google.com>
14827
14828         * common.cc (Symbol_table::allocate_commons): Remove options
14829         parameter.  Change caller.
14830         (Symbol_table::do_allocate_commons): Remove options parameter.
14831         Change caller.  Just call do_allocate_commons_list twice.
14832         (Symbol_table::do_allocate_commons_list): New function, broken out
14833         of do_allocate_commons.
14834         * common.h (class Allocate_commons_task): Remove options_ field.
14835         Update constructor.
14836         * symtab.cc (Symbol_table::Symbol_table): Initialize
14837         tls_commons_.
14838         (Symbol_table::add_from_object): Put TLS common symbols on
14839         tls_commons_ list.
14840         (Symbol_table::sized_finalize_symbol): Handle STT_TLS symbols
14841         which are IN_OUTPUT_DATA.
14842         * symtab.h (class Symbol_table): Add tls_commons_ field.  Update
14843         allocate_commons and do_allocate_commons declarations.  Declare
14844         do_allocate_commons_list.
14845         * gold.cc (queue_middle_tasks): Update creation of
14846         Allocate_commons_task to not pass options.
14847         * testsuite/Makefile.am (INCLUDES): Add -I.. .
14848         (TLS_TEST_C_FLAGS): New variable.
14849         (tls_test_c_pic.o): New target.
14850         (tls_test_shared.so): Link in tls_test_c_pic.o.
14851         (tls_test_c_pic_ie.o): New target.
14852         (tls_test_ie_shared.so): Link in tls_test_c_pic_ie.o.
14853         (tls_test_DEPENDENCIES, tls_test_LDADD): Add tls_test_c.o.
14854         (tls_test_c.o): New target.
14855         (tls_pic_test_DEPENDENCIES): Add tls_test_c_pic.o.
14856         (tls_pic_test_LDADD): Likewise.
14857         (tls_shared_gd_to_ie_test_DEPENDENCIES): Add tls_test_c_pic.o.
14858         (tls_shared_gd_to_ie_test_LDADD): Likewise.
14859         (tls_test_c_gnu2.o): New target.
14860         (tls_shared_gnu2_gd_to_ie_test_DEPENDENCIES): Add
14861         tls_test_c_gnu2.o.
14862         (tls_shared_gnu2_gd_to_ie_test_LDADD): Likewise.
14863         (tls_test_gnu2_shared.so): Link in tls_test_c_gnu2.o.
14864         (tls_test_shared_nonpic.so): Link in tls_test_c.o.
14865         * testsuite/tls_test.cc: Include "config.h".
14866         (t_last): Call t11_last.
14867         * testsuite/tls_test.h (t11, t11_last): Declare.
14868         * testsuite/tls_test_c.c: New file.
14869         * testsuite/tls_test_main.cc (thread_routine): Call t11.
14870         * configure.ac: Check for OpenMP support.
14871         * configure, config.in, Makefile.in: Rebuild.
14872         * testsuite/Makefile.in: Rebuild.
14873
14874 2008-04-16  Cary Coutant  <ccoutant@google.com>
14875
14876         * i386.cc (Target_i386::define_tls_base_symbol): New function.
14877         (Target_i386::tls_base_symbol_defined_): New field.
14878         (Target_i386::Scan::local): Define _TLS_MODULE_BASE_ symbol.
14879         (Target_i386::Scan::global): Likewise.
14880         * symtab.cc (sized_finalize_symbol): Add check for TLS symbol.
14881         * x86_64.cc (Target_x86_64::define_tls_base_symbol): New function.
14882         (Target_x86_64::tls_base_symbol_defined_): New field.
14883         (Target_x86_64::Scan::local): Define _TLS_MODULE_BASE_ symbol.
14884         (Target_x86_64::Scan::global): Likewise.
14885
14886 2008-04-16  Cary Coutant  <ccoutant@google.com>
14887
14888         * symtab.h (Symbol::is_strong_undefined): Removed unused function.
14889         (Symbol::needs_plt_entry): Allow weak undefined symbols.
14890         (Symbol::needs_dynamic_reloc): Allow weak undefined symbols when
14891         building shared libraries.
14892         * testsuite/Makefile.am (weak_undef_nonpic_test): New target.
14893         (weak_undef_file1_nonpic.o, weak_undef_file2_nonpic.o)
14894         (weak_undef_lib_nonpic.so, alt/weak_undef_lib_nonpic.so): New targets.
14895         * testsuite/Makefile.in: Rebuild.
14896         * testsuite/weak_undef.h: New file.
14897         * testsuite/weak_undef_file1.cc: Add extra test cases.
14898         * testsuite/weak_undef_file2.cc: Likewise.
14899         * testsuite/weak_undef_test.cc: Likewise.
14900
14901 2008-04-16  David S. Miller  <davem@davemloft.net>
14902
14903         * sparc.cc (Target_sparc::Scan): Change from struct to class.
14904         Add issued_non_pic_error_ field.  Declare check_non_pic.
14905         (Target_sparc::Scan::check_non_pic): New function.
14906         (Target_sparc::Scan::local): Call check_non_pic as appropriate.
14907         (Target_sparc::Scan::global): Likewise.
14908
14909         * configure.ac (FN_PTRS_IN_SO_WITHOUT_PIC): Add sparc64.
14910         * configure: Rebuild.
14911
14912         * options.h (DEFINE_enable): New macro.
14913         (new_dtags): New enable option.
14914         (initfirst, interpose, loadfltr, nodefaultlib,
14915         nodelete, nodlopen, nodump): New -z options.
14916         * layout.cc (Layout:finish_dynamic_section): If new
14917         dtags enabled, emit DT_RUNPATH.  Also, emit a
14918         DT_FLAGS_1 containing any specified -z flags.
14919
14920 2008-04-16  Ian Lance Taylor  <iant@google.com>
14921
14922         * copy-relocs.cc: New file.
14923         * copy-relocs.h: New file.
14924         * reloc.cc: Remove Copy_relocs code.
14925         * reloc.h: Likewise.
14926         * reloc-types.h (struct Reloc_types) [both versions]: Add
14927         get_reloc_addend_noerror.
14928         * output.h (class Output_data_reloc<elfcpp::SHT_REL>): Add
14929         variants of add_global which take an addend which must be zero.
14930         * i386.cc: Include "copy-relocs.h".
14931         (class Target_i386): Change type of copy_relocs_ to variable,
14932         update initializer.
14933         (Target_i386::copy_reloc): Rewrite to pass to Copy_relocs class.
14934         Change all callers.
14935         (Target_i386::do_finalize_sections): Change handling of
14936         copy_relocs_.
14937         * sparc.cc: Include "copy-relocs.h".
14938         (class Target_sparc): Change type of copy_relocs_ to variable,
14939         update initializer.
14940         (Target_sparc::copy_reloc): Rewrite to pass to Copy_relocs class.
14941         Change all callers.
14942         (Target_sparc::do_finalize_sections): Change handling of
14943         copy_relocs_.
14944         * x86_64.cc: Include "copy-relocs.h".
14945         (class Target_x86_64): Change type of copy_relocs_ to variable,
14946         update initializer.
14947         (Target_x86_64::copy_reloc): Rewrite to pass to Copy_relocs
14948         class.  Change all callers.
14949         (Target_x86_64::do_finalize_sections): Change handling of
14950         copy_relocs_.
14951         * Makefile.am (CCFILES): Add copy-relocs.cc.
14952         (HFILES): Add copy-relocs.h.
14953
14954         * Makefile.in, aclocal.m4, testsuite/Makefile.in: Rebuild.
14955
14956         * testsuite/script_test_4.sh: Permit leading zeroes.
14957
14958 2008-04-15  Ian Lance Taylor  <iant@google.com>
14959
14960         * script-sections.cc (Script_sections::create_segments): Use
14961         header_size_adjustment even when there is enough room for the
14962         headers.
14963         * testsuite/script_test_4.sh: New file.
14964         * testsuite/script_test_4.t: New file.
14965         * testsuite/Makefile.am (check_SCRIPTS): Add script_test_4.sh.
14966         (check_DATA): Add script_test_4.stdout.
14967         (MOSTLYCLEANFILES): Likewise.
14968         (script_test_4): New target.
14969         (script_test_4.stdout): New target.
14970         * testsuite/Makefile.in: Rebuild.
14971
14972         * sparc.cc: Add definitions for Output_data_plt_sparc class
14973         constants.
14974
14975 2008-04-14  David S. Miller  <davem@davemloft.net>
14976
14977         * sparc.cc: New file.
14978         * Makefile.am (TARGETSOURCES): Add sparc.cc
14979         (ALL_TARGETOBJS): Add sparc.$(OBJEXT)
14980         * configure.tgt: Document targ_extra_size and
14981         targ_extra_big_endian.  Add entries for sparc-* and
14982         sparc64-*.
14983         * configure.ac: Handle targ_extra_size and
14984         targ_extra_big_endian.
14985         * Makefile.in: Rebuild.
14986         * configure: Likewise.
14987         * po/POTFILES.in: Likewise.
14988         * po/gold.pot: Likewise.
14989
14990 2008-04-14  Ian Lance Taylor  <iant@google.com>
14991
14992         * layout.cc (Layout::Layout): Initialize sections_are_attached_.
14993         (Layout::get_output_section): Ignore SHF_WRITE and SHF_EXECINSTR
14994         in the name/type/flags to section mapping.  Don't call
14995         allocate_output_section.
14996         (Layout::choose_output_section): Change parameter from adjust_name
14997         to is_input_section.  Don't permit input sections after sections
14998         are attached to segments.  Don't call allocate_output_section.
14999         (Layout::layout_eh_frame): Call update_flags_for_input_section,
15000         not write_enable_output_section.
15001         (Layout::make_output_section): Don't push to
15002         unattached_section_list_ nor call attach_to_segment.  Call
15003         attach_section_to_segment if sections are attached.
15004         (Layout::attach_sections_to_segments): New function.
15005         (Layout::attach_section_to_segment): New function.
15006         (Layout::attach_allocated_section_to_segment): Rename from
15007         attach_to_segment.  Remove flags parameter.
15008         (Layout::allocate_output_section): Remove function.
15009         (Layout::write_enable_output_section): Remove function.
15010         * layout.h (class Layout): Update for above changes.  Add new
15011         field sections_are_attached_.
15012         * output.h (Output_section::update_flags_for_input_section): New
15013         function.
15014         * output.cc (Output_section::add_input_section): Call
15015         update_flags_for_input_section.
15016         * gold.cc (queue_middle_tasks): Call attach_sections_to_segments.
15017
15018 2008-04-11  Cary Coutant  <ccoutant@google.com>
15019
15020         * i386.cc (Target_i386::got_mod_index_entry): Restore code previously
15021         thought unnecessary.
15022         * x86_64.cc (Target_x86_64::got_mod_index_entry): Likewise.
15023
15024 2008-04-11  Ian Lance Taylor  <iant@google.com>
15025
15026         * output.h (class Output_section_data): Remove inline definition
15027         of set_addralign.
15028         * output.cc (Output_section_data::set_addralign): New function.
15029
15030 2008-04-11  Cary Coutant  <ccoutant@google.com>
15031
15032         Add support for TLS descriptors for i386 and x86_64.
15033         * i386.cc (Target_i386::Relocate::tls_desc_gd_to_ie): New function.
15034         (Target_i386::Relocate::tls_desc_gd_to_le): New function.
15035         (Target_i386::Got_type): Add GOT_TYPE_TLS_NOFFSET and
15036         GOT_TYPE_TLS_DESC.
15037         (Target_i386::got_mod_index_entry): Remove unnecessary code.
15038         (Target_i386::Scan::local): Implement R_386_TLS_GOTDESC and
15039         R_386_TLS_DESC_CALL relocations.  Fix problem with initial-exec
15040         relocations.
15041         (Target_i386::Scan::global): Fix problem with GD-to-IE relaxation.
15042         Implement R_386_TLS_GOTDESC and R_386_TLS_DESC_CALL relocations;
15043         Fix problem with initial-exec relocations.
15044         (Target_i386::Relocate::relocate_tls): Likewise.
15045         (Target_i386::Relocate::tls_gd_to_ie): Fix problem with GD-to-IE
15046         relaxation.
15047         * output.cc (Output_data_dynamic::Dynamic_entry::write): Add
15048         support for section-plus-offset dynamic table entries.
15049         * output.h (Output_data_dynamic::add_section_plus_offset): New function.
15050         (Output_data_dynamic::Dynamic_entry): Add support for
15051         section-plus-offset dynamic table entries.
15052         (Output_data_dynamic::Classification): Likewise.
15053         (Output_data_dynamic::classification_): Renamed offset_.
15054         * x86_64.cc (Target_x86_64::Relocate::tls_desc_gd_to_ie): New function.
15055         (Target_x86_64::Relocate::tls_desc_gd_to_le): New function.
15056         (Target_x86_64::make_plt_section): New function.
15057         (Target_x86_64::reserve_tlsdesc_entries): New function.
15058         (Output_data_plt_x86_64::Output_data_plt_x86_64): Add new parameter.
15059         (Output_data_plt_x86_64::reserve_tlsdesc_entry): New function.
15060         (Output_data_plt_x86_64::has_tlsdesc_entry): New function.
15061         (Output_data_plt_x86_64::get_tlsdesc_got_offset): New function.
15062         (Output_data_plt_x86_64::get_tlsdesc_plt_offset): New function.
15063         (Output_data_plt_x86_64::tlsdesc_plt_entry): New field.
15064         (Output_data_plt_x86_64::set_final_data_size): Move out of line;
15065         add extra PLT entry for TLS descriptors.
15066         (Output_data_plt_x86_64::got_): New field.
15067         (Output_data_plt_x86_64::tlsdesc_got_offset_): New field.
15068         (Output_data_plt_x86_64::Output_data_plt_x86_64): Initialize new
15069         fields.
15070         (Output_data_plt_x86_64::do_write): Write extra PLT entry for TLS
15071         descriptors.
15072         (Target_x86_64::make_plt_entry): Factor out make_plt_section.
15073         (Target_x86_64::got_mod_index_entry): Remove unnecessary code.
15074         (Target_x86_64::Scan::local): Implement R_386_TLS_GOTDESC and
15075         R_386_TLS_DESC_CALL relocations.
15076         (Target_x86_64::Scan::global): Likewise.
15077         (Target_x86_64::do_finalize_sections): Add dynamic table entries
15078         for TLS descriptors.
15079         (Relocate::relocate_tls): Fix problem with GD-to-IE relaxation.
15080         Implement R_386_TLS_GOTDESC and R_386_TLS_DESC_CALL relocations.
15081         (Target_x86_64::Relocate::tls_gd_to_ie): Fix problem with
15082         GD-to-IE relaxation.
15083         * configure.ac: Export new conditional variables TLS_GNU2_DIALECT
15084         and TLS_DESCRIPTORS.
15085         * Makefile.in: Rebuild.
15086         * configure: Rebuild.
15087         * testsuite/Makefile.am (tls_shared_gd_to_ie_test): New target.
15088         (tls_test_shared2.so): New target.
15089         (tls_shared_gd_to_ie_test_SOURCES): New variable.
15090         (tls_shared_gd_to_ie_test_DEPENDENCIES): New variable.
15091         (tls_shared_gd_to_ie_test_LDFLAGS): New variable.
15092         (tls_shared_gd_to_ie_test_LDADD): New variable.
15093         (tls_shared_gnu2_gd_to_ie_test): New target.
15094         (tls_test_gnu2.o, tls_test_file2_gnu2.o, tls_test_gnu2_shared2.so):
15095         New targets.
15096         (tls_shared_gnu2_gd_to_ie_test_SOURCES): New variable.
15097         (ls_shared_gnu2_gd_to_ie_test_DEPENDENCIES): New variable.
15098         (tls_shared_gnu2_gd_to_ie_test_LDFLAGS): New variable.
15099         (tls_shared_gnu2_gd_to_ie_test_LDADD): New variable.
15100         (tls_shared_gnu2_test): New target.
15101         (tls_test_gnu2_shared.so): New target.
15102         (tls_shared_gnu2_test_SOURCES): New variable.
15103         (tls_shared_gnu2_test_DEPENDENCIES): New variable.
15104         (tls_shared_gnu2_test_LDFLAGS): New variable.
15105         (tls_shared_gnu2_test_LDADD): New variable.
15106         * testsuite/Makefile.in: Rebuild.
15107         * testsuite/Makefile.
15108
15109 2008-04-11  Ian Lance Taylor  <iant@google.com>
15110
15111         * testsuite/Makefile.am (justsyms_2r.o): Add dependency on
15112         justsyms.t.
15113         * testsuite/Makefile.in: Rebuild.
15114
15115         * testsuite/script_test_2a.cc (script_test_string_a): Make 8 bytes
15116         long.
15117         * testsuite/script_test_2.cc (main): Adjust test.
15118
15119 2008-04-11  David S. Miller  <davem@davemloft.net>
15120             Ian Lance Taylor  <iant@google.com>
15121
15122         * options.h (General_options): Add entries for '-Y' and
15123         '-relax'.
15124         * options.cc (General_options:finalize): If -Y was used, add those
15125         entries to the library path instead of the default "/lib" and
15126         "/usr/lib".
15127
15128 2008-04-11  David S. Miller  <davem@davemloft.net>
15129
15130         * testsuite/justsyms.t: Start at 0x100.
15131         * testsuite/justsyms_1.cc: Adjust justsyms_string assertion.
15132         * testsuite/script_test_2b.cc (script_test_string_b): Make 8 bytes
15133         long.
15134         * testsuite/script_test_2.cc: Adjust string and section length
15135         checks.
15136
15137 2008-04-09  Ian Lance Taylor  <iant@google.com>
15138
15139         PR gold/5996
15140         * script-sections.cc (Sections_element::allocate_to_segment): Add
15141         orphan parameter.
15142         (Output_section_definition::allocate_to_segment): Likewise.
15143         (Orphan_output_section::allocate_to_segment): Likewise.
15144         (Script_sections::attach_sections_using_phdrs_clause): Don't
15145         propagate non-PT_LOAD segments to orphan sections.
15146         * testsuite/Makefile.am (script_test_3.stdout): Generate using
15147         readelf rather than objdump.
15148         * testsuite/script_test_3.sh: Adjust accordingly.  Test that
15149         .interp section and PT_INTERP segment are the same size.
15150         * testsuite/Makefile.in: Rebuild.
15151
15152         * symtab.cc (Symbol_table::add_from_dynobj): Only look for weak
15153         aliases for symbols defined in the same object.
15154         * testsuite/Makefile.am (check_PROGRAMS): Add weak_alias_test.
15155         (weak_alias_test_SOURCES): New variable.
15156         (weak_alias_test_DEPENDENCIES): New variable.
15157         (weak_alias_test_LDFLAGS): New variable.
15158         (weak_alias_test_LDADD): New variable.
15159         (weak_alias_test_1_pic.o, weak_alias_test_1.so): New targets.
15160         (weak_alias_test_2_pic.o, weak_alias_test_2.so): New targets.
15161         (weak_alias_test_3.o): New target.
15162         (weak_alias_test_4_pic.o, weak_alias_test_4.so): New targets.
15163         * testsuite/weak_alias_test_main.cc: New file.
15164         * testsuite/weak_alias_test_1.cc: New file.
15165         * testsuite/weak_alias_test_2.cc: New file.
15166         * testsuite/weak_alias_test_3.cc: New file.
15167
15168 2008-04-08  Ian Lance Taylor  <iant@google.com>
15169
15170         * options.h (class General_options): Add --noinhibit-exec option.
15171         * main.cc (main): Check --noinhibit-exec.
15172
15173         * options.h (class General_options): Define --wrap as a special
15174         option.  Add wrap_symbols_ field.
15175         (General_options::any_wrap_symbols): New function.
15176         (General_options::is_wrap_symbol): New function.
15177         * options.cc (General_options::parse_wrap): New function.
15178         (General_options::General_options): Initialize wrap_symbols_.
15179         * symtab.cc (Symbol_table::wrap_symbol): New function.
15180         (Symbol_table::add_from_object): Handle --wrap.
15181         * symtab.h (class Symbol_table): Declare wrap_symbol.
15182         * target.h (Target::wrap_char): New function.
15183         (Target::Target_info): Add wrap_char field.
15184         * i386.cc (Target_i386::i386_info): Initialize wrap_char.
15185         * x86_64.cc (Target_x86_64::x86_64_info): Likewise.
15186         * testsuite/testfile.cc (Target_test::test_target_info):
15187         Likewise.
15188
15189         * errors.cc (Errors::undefined_symbol): Mention symbol version if
15190         there is one.
15191
15192         * layout.h (class Layout): Add added_eh_frame_data_ field.
15193         * layout.cc (Layout::Layout): Initialize new field.
15194         (Layout::layout_eh_frame): Don't add eh_frame_data_ to .eh_frame
15195         output section until we find a section we merged successfully.
15196         * object.cc (Sized_relobj::check_eh_frame_flags): Don't require
15197         that the size be non-zero.
15198
15199         * merge.cc (Object_merge_map::get_output_offset): Remove inline
15200         qualifier.
15201
15202 2008-04-08  Craig Silverstein  <csilvers@google.com>
15203
15204         * configure.ac: Export new conditional variable HAVE_ZLIB.
15205         * testsuite/Makefile.am (flagstest_o_specialfile): Condition
15206         on HAVE_ZLIB.
15207         (flagstest_o_specialfile_and_compress_debug_sections): Likewise.
15208         * configure, Makefile.in, testsuite/Makefile.in: Rebuild.
15209
15210 2008-04-07  Ian Lance Taylor  <iant@google.com>
15211
15212         * version.cc (version_string): Set to "1.5".
15213
15214         * x86_64.cc (Target_x86_64::Scan): Change from struct to class.
15215         Add issued_non_pic_error_ field.  Declare check_non_pic.
15216         (Target_x86_64::Scan::check_non_pic): New function.
15217         (Target_x86_64::Scan::local): Call check_non_pic as appropriate.
15218         (Target_x86_64::Scan::global): Likewise.
15219
15220         * output.cc (Output_reloc<SHT_REL>::local_section_offset): Add
15221         addend parameter.  Change caller.  Handle merge sections.
15222         (Output_reloc<SHT_REL>::symbol_value): Change parameter type from
15223         Address to Addend.  Don't add in the result of
15224         local_section_offset, pass down the addend and use the returned
15225         value.
15226         * output.h (class Output_reloc<SHT_REL>): Add Addend typedef.
15227         Update declarations of local_section_offset and symbol_value.
15228         * testsuite/two_file_test_1.cc (t18): New function.
15229         * testsuite/two_file_test_2.cc (f18): New function.
15230         * testsuite/two_file_test_main.cc (main): Call t18.
15231         * testsuite/two_file_test.h (t18, f18): Declare.
15232
15233         * configure.ac: Don't test for objdump, c++filt, or readelf.
15234         * testsuite/Makefile.am: Remove READELF and OBJDUMP_AND_CPPFILT
15235         conditionals.
15236         (TEST_READELF): New variable.
15237         (TEST_OBJDUMP, TEST_CXXFILT, TEST_STRIP): New variables.
15238         (check_PROGRAMS): Add two_file_strip_test.
15239         (two_file_strip_test): New target.
15240         (check_PROGRAMS): Add two_file_same_shared_strip_test.
15241         (two_file_same_shared_strip_test_SOURCES): New variable.
15242         (two_file_same_shared_strip_test_DEPENDENCIES): New variable.
15243         (two_file_same_shared_strip_test_LDFLAGS): New variable.
15244         (two_file_same_shared_strip_test_LDADD): New variable.
15245         (two_file_shared_strip.so): New target.
15246         (ver_test_2.syms, ver_test_4.syms): Use TEST_READELF.
15247         (ver_test_5.syms, ver_test_7.syms): Likewise.
15248         (ver_matching_test.stdout): Use TEST_OBJDUMP and TEST_CXXFILT.
15249         (strip_test_3.stdout): Use TEST_OBJDUMP.
15250         * configure, Makefile.in, testsuite/Makefile.in: Rebuild.
15251
15252 2008-04-04  Cary Coutant  <ccoutant@google.com>
15253
15254         * symtab.h (Symbol::is_weak_undefined): New function.
15255         (Symbol::is_strong_undefined): New function.
15256         (Symbol::is_absolute): New function.
15257         (Symbol::needs_plt_entry): Exclude weak undefined symbols.
15258         (Symbol::needs_dynamic_reloc): Exclude weak undefined and
15259         absolute symbols.
15260         * testsuite/Makefile.am (check_PROGRAMS): Add weak_undef_test.
15261         (weak_undef_test): New target.
15262         * testsuite/Makefile.in: Rebuild.
15263         * testsuite/weak_undef_file1.cc: New file.
15264         * testsuite/weak_undef_file2.cc: New file.
15265         * testsuite/weak_undef_test.cc: New file.
15266
15267 2008-04-03  Craig Silverstein  <csilvers@google.com>
15268
15269         * compressed_output.h (class Output_compressed_section): Use
15270         unsigned buffer.
15271         * compressed_output.cc (zlib_compress): Use unsigned buffers,
15272         add zlib header.
15273         (zlib_compressed_suffix): Removed.
15274         (Output_compressed_section::set_final_data_size): Use unsigned
15275         buffers.
15276         * testsuite/Makefile.am (flagstest_compress_debug_sections):
15277         Fix linker invocation.
15278         (flagstest_o_specialfile_and_compress_debug_sections):
15279         Likewise.
15280         * testsuite/Makefile.in: Regenerated.
15281
15282 2008-04-02  David S. Miller  <davem@davemloft.net>
15283
15284         *  dwarf_reader.cc (Sized_dwarf_line_info::read_header_prolog,
15285         Sized_dwarf_line_info::process_one_opcode): Use Swap_unaligned.
15286
15287 2008-04-02  Craig Silverstein  <csilvers@google.com>
15288
15289         * TODO: New file.
15290
15291 2008-04-02  Ian Lance Taylor  <iant@google.com>
15292
15293         * fileread.cc (File_read::find_view): Add byteshift and vshifted
15294         parameters.  Update for new key type to views_.  Change all
15295         callers.
15296         (File_read::read): Adjust for byteshift in returned view.
15297         (File_read::add_view): New function, broken out of
15298         find_and_make_view.
15299         (File_read::make_view): New function, broken out of
15300         find_and_make_view.
15301         (File_read::find_or_make_view): Add offset and aligned
15302         parameters.  Rewrite accordingly.  Change all callers.
15303         (File_read::get_view): Add offset and aligned parameters.  Adjust
15304         for byteshift in return value.
15305         (File_read::get_lasting_view): Likewise.
15306         * fileread.h (class File_read): Update declarations.
15307         (class File_read::View): Add byteshift_ field.  Add byteshift to
15308         constructor.  Add byteshift method.
15309         * archive.h (Archive::clear_uncached_views): New function.
15310         (Archive::get_view): Add aligned parameter.  Change all callers.
15311         * object.h (Object::get_view): Add aligned parameter.  Change all
15312         callers.
15313         (Object::get_lasting_view): Likewise.
15314
15315         * fileread.cc (File_read::release): Don't call clear_views if
15316         there are multiple objects.
15317         * fileread.h (File_read::clear_uncached_views): New function.
15318         * archive.cc (Add_archive_symbols::run): Call clear_uncached_views
15319         on the archive.
15320
15321 2008-03-31  Cary Coutant  <ccoutant@google.com>
15322
15323         Add thin archive support.
15324         * archive.cc (Archive::armagt): New const.
15325         (Archive::setup): Remove task parameter and calls to unlock.
15326         (Archive::unlock_nested_archives): New function.
15327         (Archive::read_header): Add nested_off parameter. Change
15328         all callers.
15329         (Archive::interpret_header): Likewise.
15330         (Archive::include_all_members): Change to handle thin
15331         archives.
15332         (Archive::include_member): Likewise.
15333         * archive.h (Archive::Archive): Add new parameters and
15334         initializers.
15335         (Archive::armagt): New const.
15336         (Archive::setup): Remove task parameter.
15337         (Archive::unlock_nested_archives): New function.
15338         (Archive::read_header): Add nested_off parameter.
15339         (Archive::interpret_header): Likewise.
15340         (Archive::Nested_archive_table): New typedef.
15341         (Archive::is_thin_archive_): New field.
15342         (Archive::nested_archives_): New field.
15343         (Archive::options_): New field.
15344         (Archive::dirpath_): New field.
15345         (Archive::task_): New field.
15346         * readsyms.cc (Read_symbols::do_read_symbols): Add check
15347         for thin archives.  Pass additional parameters to
15348         Archive::Archive.  Unlock the archive file after calling
15349         Archive::setup.
15350
15351 2008-03-29  Ian Lance Taylor  <iant@google.com>
15352
15353         * symtab.cc (Symbol_table::do_define_as_constant): Don't force a
15354         version symbol to be local.
15355         * testsuite/ver_test_4.sh: New file.
15356         * testsuite/Makefile.am (check_SCRIPTS): Add ver_test_4.sh.
15357         (check_DATA): Add ver_test_4.syms.
15358         (ver_test_4.syms): New target.
15359         * testsuite/Makefile.in: Rebuild.
15360
15361         * output.cc
15362         (Output_section::Input_section_sort_entry::has_priority): New
15363         function.
15364         (Output_section::Input_section_sort_entry::match_file_name): New
15365         function.
15366         (Output_section::Input_section_sort_entry::match_section_name):
15367         Remove.
15368         (Output_section::Input_section_sort_entry::match_section_name_prefix):
15369         Remove.
15370         (Output_section::Input_section_sort_entry::match_section_file):
15371         Remove.
15372         (Output_section::Input_section_sort_compare::operator()): Rewrite
15373         using new Input_section_sort_entry functions.  Sort crtbegin and
15374         crtend first.  Sort sections with no priority before sections with
15375         a priority.
15376         * testsuite/initpri1.c (d3): Check j != 4.
15377         (cd5): New constructor/destructor function.
15378         (main): Check j != 2.
15379
15380         * symtab.cc (Symbol_table::add_from_object): If we don't use the
15381         new symbol when resolving, don't call set_is_default.
15382         * testsuite/ver_test_7.cc: New file.
15383         * testsuite/ver_test_7.sh: New file.
15384         * testsuite/Makefile.am (ver_test_7.so): New target.
15385         (ver_test_7.o): New target.
15386         (check_SCRIPTS): Add ver_test_7.sh.
15387         (check_DATA): Add ver_test_7.syms.
15388         (ver_test_7.syms): New target.
15389
15390 2008-03-28  Ian Lance Taylor  <iant@google.com>
15391
15392         * layout.cc (Layout::layout): If we see an input section with a
15393         name that needs sorting, set the must_sort flag for the output
15394         section.
15395         (Layout::make_output_section): If the name of the output section
15396         indicates that it might require sorting, set the may_sort flag.
15397         * output.h (Output_section::may_sort_attached_input_sections): New
15398         function.
15399         (Output_section::set_may_sort_attached_input_sections): New
15400         function.
15401         (Output_section::must_sort_attached_input_sections): New
15402         function.
15403         (Output_section::set_must_sort_attached_input_sections): New
15404         function.
15405         (class Output_section): Declare Input_section_sort_entry.  Define
15406         Input_section_sort_compare.  Declare
15407         sort_attached_input_sections.  Add new fields:
15408         may_sort_attached_input_sections_,
15409         must_sort_attached_input_sections_,
15410         attached_input_sections_are_sorted_.
15411         * output.cc (Output_section::Output_section): Initialize new
15412         fields.
15413         (Output_section::add_input_section): Add an entry to
15414         input_sections_ if may_sort or must_sort are true.
15415         (Output_section::set_final_data_size): Call
15416         sort_attached_input_sections if necessary.
15417         (Output_section::Input_section_sort_entry): Define new class.
15418         (Output_section::Input_section_sort_compare::operator()): New
15419         function.
15420         (Output_section::sort_attached_input_sections): New function.
15421         * configure.ac: Check whether the compiler supports constructor
15422         priorities.  Define a CONSTRUCTOR_PRIORITY automake conditional.
15423         * testsuite/initpri1.c: New file.
15424         * testsuite/Makefile.am (check_PROGRAMS): Add initpri1 if
15425         CONSTRUCTOR_PRIORITY.
15426         (initpri1_SOURCES, initpri1_DEPENDENCIES): New variables.
15427         (initpri1_LDFLAGS): New variable.
15428         * configure, Makefile.in, testsuite/Makefile.in: Rebuild.
15429
15430 2008-03-27  Ian Lance Taylor  <iant@google.com>
15431
15432         * common.cc (Sort_commons::operator): Correct sorting algorithm.
15433         * testsuite/common_test_1.c: New file.
15434         * testsuite/Makefile.am (check_PROGRAMS): Add common_test_1.
15435         (common_test_1_SOURCES): New variable.
15436         (common_test_1_DEPENDENCIES): New variable.
15437         (common_test_1_LDFLAGS): New variable.
15438
15439         * symtab.cc (Symbol_table::add_from_object): Handle saw_undefined_
15440         and commons_ correctly when NAME/VERSION does not override
15441         NAME/NULL.
15442         * testsuite/ver_test_6.c: New file.
15443         * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_6
15444         (ver_test_6_SOURCES, ver_test_6_DEPENDENCIES): New variables.
15445         (ver_test_6_LDFLAGS, ver_test_6_LDADD): New variables.
15446
15447 2008-03-26  Ian Lance Taylor  <iant@google.com>
15448
15449         * symtab.cc (Symbol_table::add_from_relobj): Don't set the version
15450         of an undefined symbol from a version script.
15451         * testsuite/Makefile.am (ver_test_5.so): New target.
15452         (ver_test_5.o): New target.
15453         (check_SCRIPTS): Add ver_test_5.sh.
15454         (check_DATA): Add ver_test_5.syms.
15455         (ver_test_5.syms): New target.
15456         * testsuite/ver_test_5.cc: New file.
15457         * testsuite/ver_test_5.script: New file.
15458         * testsuite/ver_test_5.sh: New file.
15459         * Makefile.in, testsuite/Makefile.in: Rebuild.
15460
15461         PR gold/5986
15462         Fix problems building gold with gcc 4.3.0.
15463         * gold.h (TEMPLATE_ATTRIBUTE_PRINTF_4): Define.
15464         (gold_error_at_location, gold_warning_at_location): Use it.
15465         * configure.ac: Check whether we can compile and use a template
15466         function with a printf attribute.
15467         * x86_64.cc (Target_x86_64::do_code_fill): Swap out a 32-bit value
15468         when jumping over bytes.
15469         * object.cc: Instantiate Object::read_section_data.
15470         * debug.h: Include <cstring>
15471         * dwarf_reader.cc: Include <algorithm>
15472         * main.cc: Include <cstring>.
15473         * options.cc: Include <cstring>.
15474         * output.cc: Include <cstring>.
15475         * script.cc: Include <cstring>.
15476         * script.h: Include <string>.
15477         * symtab.cc: Include <cstring> and <algorithm>.
15478         * target-select.cc: Include <cstring>.
15479         * version.cc: Include <string>.
15480         * testsuite/testmain.cc: Include <cstdlib>.
15481         * configure, config.in: Rebuild.
15482
15483 2008-03-25  Ian Lance Taylor  <iant@google.com>
15484
15485         * options.cc: Include "../bfd/bfdver.h".
15486         (options::help): Print bug reporting address.
15487
15488         * version.cc (print_version): Adjust output for current value of
15489         BFD_VERSION_STRING.
15490
15491         * NEWS: New file.
15492
15493         * options.cc (options::help): Print list of supported targets.
15494         * target-select.h: Include <vector>.
15495         (class Target_selector): Make machine_, size_, and is_big_endian_
15496         fields const.  Add bfd_name_ and instantiated_target_ fields.
15497         (Target_selector::Target_selector): Add bfd_name parameter.
15498         (Target_selector::recognize): Make non-virtual, call
15499         do_recognize.
15500         (Target_selector::recognize_by_name): Make non-virtual, call
15501         do_recognize_by_name.
15502         (Target_selector::supported_names): New function.
15503         (Target_selector::bfd_name): New function.
15504         (Target_selector::do_instantiate_target): New pure virtual
15505         function.
15506         (Target_selector::do_recognize): New virtual function.
15507         (Target_selector::do_recognize_by_name): New virtual function.
15508         (Target_selector::instantiate_target): New private function.
15509         (supported_target_names): Declare.
15510         * target-select.cc (Target_selector::Target_selector): Update for
15511         new parameter and fields.
15512         (select_target_by_name): Check that the name matches before
15513         calling recognize_by_name.
15514         (supported_target_names): New function.
15515         * i386.cc (class Target_selector_i386): Update Target_selector
15516         constructor call.  Remove recognize and recognize_by_name.  Add
15517         do_instantiate_target.
15518         * x86_64.cc (class Target_selector_x86_64): Likewise.
15519         * testsuite/testfile.cc (class Target_selector_test): Update for
15520         changes to Target_selector.
15521
15522         * README: Rewrite, with some notes on unsupported features.
15523
15524 2008-03-24  Cary Coutant  <ccoutant@google.com>
15525
15526         * i386.cc (Target_i386::Got_type): New enum declaration.
15527         (Target_i386::Scan::local): Updated callers of Output_data_got
15528         member functions.
15529         (Target_i386::Scan::global): Likewise.
15530         (Target_i386::Relocate::relocate): Likewise.
15531         (Target_i386::Relocate::relocate_tls): Likewise.
15532         * object.h (Got_offset_list): New class.
15533         (Sized_relobj::local_has_got_offset): Added got_type parameter.
15534         (Sized_relobj::local_got_offset): Likewise.
15535         (Sized_relobj::set_local_got_offset): Likewise.
15536         (Sized_relobj::local_has_tls_got_offset): Removed.
15537         (Sized_relobj::local_tls_got_offset): Removed.
15538         (Sized_relobj::set_local_tls_got_offset): Removed.
15539         (Sized_relobj::Local_got_offsets): Changed to store a list of offsets.
15540         * output.cc (Output_data_got::add_global): Added got_type parameter.
15541         (Output_data_got::add_global_with_rel): Likewise.
15542         (Output_data_got::add_global_with_rela): Likewise.
15543         (Output_data_got::add_global_pair_with_rel): New function.
15544         (Output_data_got::add_global_pair_with_rela): New function.
15545         (Output_data_got::add_local): Added got_type parameter.
15546         (Output_data_got::add_local_with_rel): Likewise.
15547         (Output_data_got::add_local_with_rela): Likewise.
15548         (Output_data_got::add_local_pair_with_rel): New function.
15549         (Output_data_got::add_local_pair_with_rela): New function.
15550         (Output_data_got::add_global_tls): Removed.
15551         (Output_data_got::add_global_tls_with_rel): Removed.
15552         (Output_data_got::add_global_tls_with_rela): Removed.
15553         (Output_data_got::add_local_tls): Removed.
15554         (Output_data_got::add_local_tls_with_rel): Removed.
15555         (Output_data_got::add_local_tls_with_rela): Removed.
15556         * output.h (Output_data_got::add_global): Added got_type parameter.
15557         (Output_data_got::add_global_with_rel): Likewise.
15558         (Output_data_got::add_global_with_rela): Likewise.
15559         (Output_data_got::add_global_pair_with_rel): New function.
15560         (Output_data_got::add_global_pair_with_rela): New function.
15561         (Output_data_got::add_local): Added got_type parameter.
15562         (Output_data_got::add_local_with_rel): Likewise.
15563         (Output_data_got::add_local_with_rela): Likewise.
15564         (Output_data_got::add_local_pair_with_rel): New function.
15565         (Output_data_got::add_local_pair_with_rela): New function.
15566         (Output_data_got::add_global_tls): Removed.
15567         (Output_data_got::add_global_tls_with_rel): Removed.
15568         (Output_data_got::add_global_tls_with_rela): Removed.
15569         (Output_data_got::add_local_tls): Removed.
15570         (Output_data_got::add_local_tls_with_rel): Removed.
15571         (Output_data_got::add_local_tls_with_rela): Removed.
15572         * resolve.cc (Symbol::override_base_with_special): Removed
15573         reference to has_got_offset_ field.
15574         * symtab.cc (Symbol::init_fields): Replaced initialization
15575         of got_offset_ with got_offsets_.  Removed initialization
15576         of has_got_offset_
15577         * symtab.h (Symbol::has_got_offset): Aded got_type parameter.
15578         (Symbol::got_offset): Likewise.
15579         (Symbol::set_got_offset): Likewise.
15580         (Symbol::has_tls_got_offset): Removed.
15581         (Symbol::tls_got_offset): Removed.
15582         (Symbol::set_tls_got_offset): Removed.
15583         (Symbol::got_offset_): Removed.
15584         (Symbol::tls_mod_got_offset_): Removed.
15585         (Symbol::tls_pair_got_offset_): Removed.
15586         (Symbol::got_offsets_): New field.
15587         (Symbol::has_got_offset): Removed.
15588         (Symbol::has_tls_mod_got_offset): Removed.
15589         (Symbol::has_tls_pair_got_offset): Removed.
15590         * x86_64.cc (Target_x86_64::Got_type): New enum declaration.
15591         (Target_x86_64::Scan::local): Updated callers of Output_data_got
15592         member functions.
15593         (Target_x86_64::Scan::global): Likewise.
15594         (Target_x86_64::Relocate::relocate): Likewise.
15595         (Target_x86_64::Relocate::relocate_tls): Likewise.
15596
15597 2008-03-25  Ben Elliston  <bje@au.ibm.com>
15598
15599         * yyscript.y: Fix spelling error in comment.
15600
15601 2008-03-24  Ian Lance Taylor  <iant@google.com>
15602
15603         * options.h (class General_options): Define build_id option.
15604         * layout.h (class Layout): Declare write_build_id, create_note,
15605         create_build_id.  Add build_id_note_ member.
15606         * layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
15607         "libiberty.h", "md5.h", "sha1.h".
15608         (Layout::Layout): Initialize eh_frame_data_,
15609         eh_frame_hdr_section_, and build_id_note_.
15610         (Layout::finalize): Call create_build_id.
15611         (Layout::create_note): New function, broken out of
15612         Layout::create_gold_note.
15613         (Layout::create_gold_note): Call create_note.
15614         (Layout::create_build_id): New function.
15615         (Layout::write_build_id): New function.
15616         (Close_task_runner::run): Call write_build_id.
15617
15618         * x86_64.cc: Correct license to GPLv3.
15619
15620 2008-03-23  Ian Lance Taylor  <iant@google.com>
15621
15622         * options.cc: Include "demangle.h".
15623         (parse_optional_string): New function.
15624         (parse_long_option): Handle takes_optional_argument.
15625         (parse_short_option): Update dash_z initializer.  Handle
15626         takes_optional_argument.
15627         (General_options::General_options): Initialize do_demangle_.
15628         (General_options::finalize): Set do_demangle_.  Handle demangling
15629         style.
15630         * options.h (parse_optional_string): Declare.
15631         (struct One_option): Add optional_arg field.  Update constructor.
15632         Update call constructor calls.  Add takes_optional_argument
15633         function.
15634         (DEFINE_var): Add optional_arg__ parameter.  Change all callers.
15635         (DEFINE_optional_string): Define.
15636         (General_options::demangle): Change from DEFINE_bool to
15637         DEFINE_optional_string.
15638         (General_options::no_demangle): New function.
15639         (General_options::do_demangle): New function.
15640         (General_options::set_do_demangle): New function.
15641         (General_options::execstack_status_): Move definition to end of
15642         class definition.
15643         (General_options::static_): Likewise.
15644         (General_options::do_demangle_): New field.
15645         * object.cc (big_endian>::get_symbol_location_info): Call
15646         Options::do_demangle, not Options::demangle.
15647         * symtab.cc (demangle): Likewise.
15648
15649 2008-03-22  Ian Lance Taylor  <iant@google.com>
15650
15651         * gold.h: Include <cstddef> and <sys/types.h>
15652         * options.h: Include <cstring>.
15653
15654 2008-03-21  Ian Lance Taylor  <iant@google.com>
15655
15656         * Added source code to GNU binutils.
15657 \f
15658 Copyright (C) 2008-2014 Free Software Foundation, Inc.
15659
15660 Copying and distribution of this file, with or without modification,
15661 are permitted in any medium without royalty provided the copyright
15662 notice and this notice are preserved.
15663
15664 Local Variables:
15665 mode: change-log
15666 left-margin: 8
15667 fill-column: 74
15668 version-control: never
15669 End: