Make GOT entry size target-dependent
[deliverable/binutils-gdb.git] / gold / ChangeLog
1 2015-10-29 H.J. Lu <hongjiu.lu@intel.com>
2
3 PR gold/19184
4 * incremental.cc (Got_plt_view_info): Add got_entry_size.
5 (Local_got_offset_visitor::visit): Replace got_entry_size_
6 with info_.got_entry_size.
7 (Local_got_offset_visitor::got_entry_size_): Removed.
8 (Global_got_offset_visitor::visit): Replace got_entry_size_
9 with info_.got_entry_size.
10 (Global_got_offset_visitor::got_entry_size_): Removed.
11 (Output_section_incremental_inputs::write_got_plt): Initialize
12 view_info.got_entry_size.
13 * target.h (Sized_target::got_entry_size): New virtual function.
14 * x86_64.cc (Target_x86_64::got_entry_size): New function.
15
16 2015-10-28 Marcin Kościelnicki <koriakin@0x04.net>
17
18 * testsuite/binary_test.cc: Add __attribute__((aligned(1))).
19 * testsuite/script_test_12a.c: Likewise.
20 * testsuite/script_test_1a.cc: Likewise.
21 * testsuite/script_test_2.cc: Likewise.
22
23 2015-10-28 Marcin Kościelnicki <koriakin@0x04.net>
24
25 * testsuite/debug_msg.sh: Accept more fuzz in line numbers.
26
27 2015-10-28 Marcin Kościelnicki <koriakin@0x04.net>
28
29 PR gold/18959
30 * stringpool.cc (Stringpool_template::new_key_offset): Align all
31 strings, even zero-length.
32 (Stringpool_template::set_string_offsets): Likewise.
33
34 2015-10-28 Marcin Kościelnicki <koriakin@0x04.net>
35
36 * s390.cc: New file.
37 * Makefile.am (TARGETSOURCES): Add s390.cc.
38 (ALL_TARGETOBJS): Add s390.o.
39 * Makefile.in: Regenerate.
40 * configure.ac: Add s390 support.
41 * configure: Regenerate.
42 * configure.tgt: Add s390-*-* and s390x-*-*.
43 * testsuite/icf_safe_test.sh (arch_specific_safe_fold): Add s390
44 support.
45
46 2015-10-28 Marcin Kościelnicki <koriakin@0x04.net>
47
48 * archive.cc (Archive::sym64name): New const.
49 (Archive::setup): Add support for SYM64 armap.
50 (Archive::read_armap): Likewise.
51 (Archive::interpret_header): Likewise.
52 (Archive::const_iterator::read_next_header): Likewise.
53 * archive.h (Archive::sym64name): New const.
54 (Archive::read_armap): Add mapsize template parameter.
55
56 2015-10-28 Marcin Kościelnicki <koriakin@0x04.net>
57
58 * dynobj.cc (Dynobj::create_elf_hash_table): Create hash table with
59 target-specific entry size.
60 (Dynobj::sized_create_elf_hash_table): Add size template parameter.
61 * dynobj.h (Dynobj::sized_create_elf_hash_table): Likewise.
62 * layout.cc (Layout::create_dynamic_symtab): Set entsize to
63 hash_entry_size.
64 * target.h (Target::hash_entry_size): New method.
65 (Target::Target_info::hash_entry_size): New data member.
66
67 * aarch64.cc (Target_aarch64::aarch64_info): Add hash_entry_size.
68 * arm.cc (Target_arm::arm_info): Likewise.
69 (Target_arm_nacl::arm_nacl_info): Likewise.
70 * i386.cc (Target_i386::i386_info): Likewise.
71 (Target_i386_nacl::i386_nacl_info): Likewise.
72 (Target_iamcu::iamcu_info): Likewise.
73 * mips.cc (Target_mips::mips_info): Likewise.
74 (Target_mips_nacl::mips_nacl_info): Likewise.
75 * powerpc.cc (Target_powerpc::powerpc_info): Likewise.
76 * sparc.cc (Target_sparc::sparc_info): Likewise.
77 * tilegx.cc (Target_tilegx::tilegx_info): Likewise.
78 * x86_64.cc (Target_x86_64::x86_64_info): Likewise.
79 (Target_x86_64_nacl::x86_64_nacl_info): Likewise.
80 * testsuite/testfile.cc (Target_test::test_target_info): Likewise.
81
82 2015-10-28 H.J. Lu <hongjiu.lu@intel.com>
83
84 PR gold/19177
85 * i386.cc (Target_i386::Relocate::relocate): Check R_386_GOT32
86 and R_386_GOT32X relocations without base register.
87
88 2015-10.27 Han Shen <shenhan@google.com>
89
90 PR gold/19042 - unsupported reloc 311/312.
91
92 * aarch64.cc (Target_aarch64::Scan::local): Add support for
93 reloc 311/312.
94
95 2015-10-22 H.J. Lu <hongjiu.lu@intel.com>
96
97 * x86_64.cc (Target_x86_64<size>::Scan::get_reference_flags):
98 Treat R_X86_64_GOTPCRELX and R_X86_64_REX_GOTPCRELX the same
99 as R_X86_64_GOTPCREL.
100 (Target_x86_64<size>::Scan::local): Likewise.
101 (Target_x86_64<size>::Scan::possible_function_pointer_reloc):
102 Likewise.
103 (Target_x86_64<size>::Scan::global): Likewise.
104 (Target_x86_64<size>::Relocate::relocate): Likewise.
105 (Target_x86_64<size>::Relocatable_size_for_reloc::get_size_for_reloc):
106 Likewise.
107
108 2015-10-22 H.J. Lu <hongjiu.lu@intel.com>
109
110 * i386.cc (Target_i386::Scan::get_reference_flags(): Treat
111 R_386_GOT32X the same as R_386_GOT32.
112 (Target_i386::Scan::local): Likewise.
113 (Target_i386::Scan::possible_function_pointer_reloc): Likewise.
114 (Target_i386::Scan::global): Likewise.
115 (Target_i386::Relocate::relocate): Likewise.
116 (Target_i386::Relocatable_size_for_reloc::get_size_for_reloc):
117 Likewise.
118
119 2015-10-20 H.J. Lu <hongjiu.lu@intel.com>
120
121 * testsuite/Makefile.am (x86_64_mov_to_lea11): Replace
122 x86_64_mov_to_lea1.o with x86_64_mov_to_lea2.o.
123 (x86_64_mov_to_lea12): Replace x86_64_mov_to_lea2.o with
124 x86_64_mov_to_lea1.o.
125 * testsuite/Makefile.in: Regenerated.
126
127 2015-10-16 H.J. Lu <hongjiu.lu@intel.com>
128
129 PR gold/19119
130 * options.h (General_options): Remove "obsolete" from -m.
131 * parameters.cc (set_parameters_target): Check if input target
132 is compatible with output emulation set by "-m emulation".
133
134 2015-10-13 H.J. Lu <hongjiu.lu@intel.com>
135
136 PR gold/19118
137 * i386.cc (Target_iamcu): New class.
138 (Target_selector_iamcu): Likewise.
139 (Target_iamcu::iamcu_info): New variable.
140 (target_selector_iamcu): Likewise.
141
142 2015-10-07 Andreas Schwab <schwab@suse.de>
143
144 * aarch64.cc (aarch64_info): Set abi_pagesize to 64K.
145
146 2015-10-06 Cary Coutant <ccoutant@gmail.com>
147
148 PR gold/18855
149 * sparc.cc (Sparc_relocate_functions::gdop_hix22): Remove addend
150 parameter.
151 (Sparc_relocate_functions::gdop_lox10): Likewise.
152 (Target_sparc::Relocate::relocate): Use addend when computing
153 symbol value for R_SPARC_GOTDATA_OP*.
154
155 2015-09-07 Cary Coutant <ccoutant@gmail.com>
156
157 PR gold/18930
158 PR gold/18886
159 * resolve.cc (Symbol::override_base): Don't convert IFUNC symbols here.
160 * symtab.cc (Symbol_table::add_from_dynobj): Convert them here instead.
161
162 2015-09-02 H.J. Lu <hongjiu.lu@intel.com>
163
164 PR gold/18886
165 * resolve.cc (Symbol::override_base): Turn IFUNC symbols from
166 shared libraries into normal FUNC symbols.
167 * symtab.cc (Symbol_table::sized_write_symbol): Assert IFUNC
168 symbols aren't from shared libraries.
169
170 2015-09-02 Alan Modra <amodra@gmail.com>
171
172 PR 18878
173 * powerpc.cc (Target_powerpc): Add savres_section_ and accessor.
174 (Target_powerpc::Branch_info::make_stub): Determine whether long
175 branch stub is for save/restore function.
176 (Branch_stub_ent): Add save_res_, and extra parm to constructor.
177 (Stub_table): Add need_save_res_.
178 (Stub_table:clear_stubs): Clear need_save_res_.
179 (Stub_table:set_address_and_size): Add save/restore section size.
180 (Stub_table::add_long_branch_entry): Add save_res param. Set
181 need_save_res_, but don't add space for save/restore stubs.
182 (Stub_table::find_long_branch_entry): Return offset to local copy
183 of save/restore func.
184 (Stub_table::do_write): Don't output save/restore stubs. Instead
185 copy the save/restore functions.
186 (Output_data_save_res:contents): New accessor.
187 (Target_powerpc::define_save_restore_funcs): Set savres_section_.
188
189 2015-08-25 Cary Coutant <ccoutant@gmail.com>
190
191 PR gold/18847
192 * script-sections.cc (Memory_region::set_address): New method.
193 (Script_sections::find_memory_region): Add explicit_only parameter.
194 (Output_section_definition::set_section_addresses): Handle case where
195 script specifies both address and vma region.
196 * script-sections.h (Script_sections::find_memory_region): Add
197 explicit_only parameter.
198
199 2015-08-25 Cary Coutant <ccoutant@gmail.com>
200
201 PR gold/18859
202 * object.cc (Input_objects::add_object): Store objects in a map,
203 indexed by soname; update as-needed flag when necessary.
204 * object.h (Object::clear_as_needed): New method.
205 (Input_objects::so_names_): Change from set to map.
206
207 2015-08-25 Cary Coutant <ccoutant@gmail.com>
208
209 PR gold/14746
210 * expression.cc (Expression::Expression_eval_info): Add
211 is_valid_pointer field.
212 (Expression::eval_maybe_dot): Add is_valid_pointer parameter.
213 Adjust all callers.
214 (Addr_expression::value_from_output_section): Check whether address
215 is valid.
216 * script.cc (Symbol_assignment::set_if_absolute): Defer assignment
217 if evaluation failed due to address that is not yet valid.
218 * script.h: (Expression::eval_maybe_dot): Add is_valid_pointer
219 parameter.
220
221 2015-08-25 Cary Coutant <ccoutant@gmail.com>
222
223 PR gold/18866
224 PR gold/18703
225 * symtab.cc (Symbol_table): Reorder conditions to avoid internal error.
226
227 2015-08-20 Alan Modra <amodra@gmail.com>
228
229 PR gold/18846
230 * target-reloc.h (relocate_relocs <RELOC_ADJUST_FOR_SECTION_RELA>):
231 Subtract os->address() from addend.
232 * powerpc.cc (relocate_relocs): Likewise.
233
234 2015-08-12 Simon Dardis <simon.dardis@imgtec.com>
235
236 * mips.cc (plt0_entry_o32, plt0_entry_n32, plt0_entry_n64,
237 lazy_stub_normal_1, lazy_stub_normal_1_n64,
238 lazy_stub_normal_2, lazy_stub_normal_2_n64, lazy_stub_big,
239 lazy_stub_big_n64, lazy_stub_micromips32_normal_1_n64,
240 lazy_stub_micromips32_normal_2_n64, lazy_stub_micromips32_big,
241 lazy_stub_micromips32_big_n64): Update to use 'or' for move instead
242 of 'addu/daddu'.
243
244 2015-07-27 H.J. Lu <hongjiu.lu@intel.com>
245
246 * configure: Regenerated.
247
248 2015-07-26 Doug Kwan <dougkwan@google.com>
249
250 * testsuite/arm_unaligned_reloc.{s,sh}: Make test less sensitive to
251 disassembler output format.
252
253 2015-07-23 Ian Coolidge <icoolidge@google.com>
254 Plumb --pic-veneer option for gold.
255
256 * arm.cc (Reloc_stub::stub_type_for_reloc): Plumb to stub
257 generation.
258 * options.h (General_options): Add --pic-veneer option.
259
260 2015-07-22 H.J. Lu <hongjiu.lu@intel.com>
261
262 PR gold/18663
263 * testsuite/Makefile.am (script_test_1_SOURCES): Set to
264 script_test_1a.cc script_test_1b.cc.
265 (script_test_11_r.o): Replace script_test_11.o with
266 script_test_11a.o script_test_11b.o.
267 (script_test_11.o): Removed.
268 (script_test_11a.o): New.
269 (script_test_11b.o): Likewise.
270 * testsuite/Makefile.in: Regenerated.
271 * testsuite/script_test_1.h: New file.
272 * testsuite/script_test_1b.cc: Likewise.
273 * testsuite/script_test_11.h: Likewise.
274 * testsuite/script_test_11b.c: Likewise.
275 * testsuite/script_test_1.cc: Renamed to ...
276 * testsuite/script_test_1a.cc: This.
277 Include "script_test_1.h".
278 (main): Call check_int and check_ptr.
279 * testsuite/script_test_11.c: Renamed to ...
280 * testsuite/script_test_11a.c: This.
281 Include "script_test_11.h".
282 (main): Call ptr_equal.
283
284 2015-07-22 H.J. Lu <hongjiu.lu@intel.com>
285
286 PR gold/18628
287 * testsuite/ifuncdep2.c (global): Change protected to hidden.
288 * testsuite/ifuncmod1.c (global): Likewise.
289 * testsuite/ifuncmod5.c (global): Likewise.
290
291 2015-07-22 Alan Modra <amodra@gmail.com>
292
293 * aarch64.cc (try_fix_erratum_843419_optimized): Warning fix.
294
295 2015-07-21 Cary Coutant <ccoutant@gmail.com>
296
297 PR gold/18548
298 * symtab.cc (Symbol_table::do_define_in_output_data): Check for
299 forced local symbol even when oldsym != NULL.
300 (Symbol_table::do_define_in_output_segment): Likewise.
301 (Symbol_table::do_define_as_constant): Likewise.
302
303 2015-07-21 Cary Coutant <ccoutant@gmail.com>
304
305 PR gold/18698
306 * archive.cc (Library_base::should_include_member): Don't use entry
307 point for relocatable links, or if target is not yet valid.
308 * parameters.cc (Parameters::entry): Check target_valid().
309
310 2015-07-20 Han Shen <shenhan@google.com>
311
312 Optimize erratum 843419 fix.
313
314 * aarch64.cc (AArch64_insn_utilities::is_adr): New method.
315 (AArch64_insn_utilities::aarch64_adr_encode_imm): New method.
316 (AArch64_insn_utilities::aarch64_adrp_decode_imm): New method.
317 (E843419_stub): New sub-class of Erratum_stub.
318 (AArch64_relobj::try_fix_erratum_843419_optimized): New method.
319 (AArch64_relobj::section_needs_reloc_stub_scanning): Try optimized fix.
320 (AArch64_relobj::create_erratum_stub): Add 1 argument.
321 (Target_aarch64::scan_erratum_843419_span): Pass in adrp insn offset.
322
323 2015-07-20 Han Shen <shenhan@google.com>
324
325 Fix arm elf header flags wrt hardfp bit.
326
327 * arm.cc (Target_arm::do_adjust_elf_header): Set flags into view.
328
329 2015-07-20 H.J. Lu <hongjiu.lu@intel.com>
330
331 PR gold/18689
332 * layout.cc (Layout::layout): Clear the SHF_COMPRESSED flag bit
333 from input group section for relocatable link.
334 * testsuite/Makefile.am (check_SCRIPTS): Add pr18689.sh.
335 (check_DATA): Add pr18689.stdout.
336 (MOSTLYCLEANFILES): Add pr18689a.o pr18689b.o.
337 (pr18689.stdout): New rule.
338 (pr18689a.o): Likewise.
339 (pr18689b.o): Likewise.
340 (pr18689.o): Likewise.
341 * testsuite/pr18689.c: New file.
342 * testsuite/pr18689.sh: Likewise.
343 * testsuite/Makefile.in: Regenerated.
344
345 2015-07-20 Yiran Wang <yiran@google.com>
346 Cary Coutant <ccoutant@gmail.com>
347
348 PR gold/15574
349 * resolve.cc (Symbol_table): Remove warning about references
350 from shared objects to hidden symbols.
351 * testsuite/Makefile.am (hidden_test): Add hidden_test.syms.
352 * testsuite/Makefile.in: Regenerate.
353 * testsuite/hidden_test.sh: Check dynamic symbol table; update
354 expected error messages.
355
356 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
357
358 * compressed_output.cc (Output_compressed_section::set_final_data_size):
359 Make --compress-debug-sections=zlib the same as
360 --compress-debug-sections=zlib-gabi.
361 * testsuite/Makefile.am (flagstest_compress_debug_sections.check):
362 Expect ".debug_.*" with the SHF_COMPRESSED bit, instead of
363 ".zdebug_".
364 * testsuite/Makefile.in: Regenerated.
365
366 2015-07-12 H.J. Lu <hongjiu.lu@intel.com>
367
368 PR gold/18322
369 * compressed_output.cc (zlib_compress): Add argument for
370 compression header size. Set header size to compression header
371 size if it isn't 0. Don't write out the zlib header here.
372 (Output_compressed_section::set_final_data_size): Support
373 zlib-gnu and zlib-gabi compressions. Pass compression header
374 size to zlib_compress and write out compression header. Set
375 the SHF_COMPRESSED bit for zlib-gabi compression. Otherwise
376 clear the SHF_COMPRESSED bit
377 * options.h (compress_debug_sections): Add zlib-gnu and
378 zlib-gabi.
379 * output.h (Output_section::set_flags): New.
380 * testsuite/Makefile.am (check_PROGRAMS): Add
381 flagstest_compress_debug_sections_none,
382 flagstest_compress_debug_sections_gnu and
383 flagstest_compress_debug_sections_gabi.
384 (check_DATA): Add flagstest_compress_debug_sections_none.stdout.
385 flagstest_compress_debug_sections.stdout,
386 flagstest_compress_debug_sections.cmp,
387 flagstest_compress_debug_sections.check,
388 flagstest_compress_debug_sections_gnu.stdout,
389 flagstest_compress_debug_sections_gnu.cmp,
390 flagstest_compress_debug_sections_gnu.check,
391 flagstest_compress_debug_sections_gabi.stdout,
392 flagstest_compress_debug_sections_gabi.cmp and
393 flagstest_compress_debug_sections_gabi.check.
394 (flagstest_compress_debug_sections_none): New.
395 (flagstest_compress_debug_sections_none.stdout): Likewise.
396 (flagstest_compress_debug_sections.stdout): Likewise.
397 (flagstest_compress_debug_sections.check): Likewise.
398 (flagstest_compress_debug_sections.cmp): Likewise.
399 (flagstest_compress_debug_sections_gnu): Likewise.
400 (flagstest_compress_debug_sections_gnu.stdout): Likewise.
401 (flagstest_compress_debug_sections_gnu.check): Likewise.
402 (flagstest_compress_debug_sections_gnu.cmp): Likewise.
403 (flagstest_compress_debug_sections_gabi): Likewise.
404 (flagstest_compress_debug_sections_gabi.stdout): Likewise.
405 (flagstest_compress_debug_sections_gnu.check): Likewise.
406 (flagstest_compress_debug_sections_gnu.cmp): Likewise.
407 * testsuite/Makefile.in: Regenerated.
408
409 2015-07-12 H.J. Lu <hongjiu.lu@intel.com>
410
411 PR gold/18321
412 * compressed_output.h (decompress_input_section): Add arguments
413 for ELF class, big endian and sh_flags.
414 * compressed_output.cc (decompress_input_section): Likewise.
415 Support the SHF_COMPRESSED section.
416 * dynobj.h (Dynobj): Add elfsize and is_big_endian member
417 functions.
418 * plugin.h (Pluginobj): Likewise.
419 * layout.cc (Layout::get_output_section_flags): Also clear the
420 SHF_COMPRESSED bit.
421 * object.h (Compressed_section_info): Add flag to store sh_flags.
422 (Object): Add pure virtual elfsize and is_big_endian member
423 functions.
424 * object.cc (need_decompressed_section): Don't skip the ".zdebug"
425 prefix here.
426 (build_compressed_section_map): Check SHF_COMPRESSED for
427 uncompressed size. Store sh_flags in Compressed_section_info.
428 Pass size, big_endian and sh_flags to decompress_input_section.
429 Skip the ".debug"/".zdebug" prefix when passing section name to
430 need_decompressed_section.
431 (Sized_relobj_file<size, big_endian>::do_find_special_section):
432 Don't check ".zdebug_*" sections.
433 (Object::decompressed_section_contents): Pass ELF class, big
434 endian and sh_flags to decompress_input_section.
435 * reloc.cc (Sized_relobj_file<size, big_endian>::write_sections):
436 Likewise.
437 * testsuite/Makefile.am (check_DATA): Add
438 debug_msg_cdebug_gabi.err and gdb_index_test_2_gabi.stdout.
439 (MOSTLYCLEANFILES): Add debug_msg_cdebug_gabi.err and
440 gdb_index_test_2_gabi.stdout.
441 (debug_msg_cdebug_gabi.o): New.
442 (odr_violation1_cdebug_gabi.o): Likewise.
443 (odr_violation2_cdebug_gabi.o): Likewise.
444 (debug_msg_cdebug_gabi.err): Likewise.
445 (check_SCRIPTS): Add gdb_index_test_2_gabi.sh.
446 (gdb_index_test_cdebug_gabi.o): Likewise.
447 (gdb_index_test_2_gabi): Likewise.
448 (gdb_index_test_2_gabi.stdout): Likewise.
449 * testsuite/gdb_index_test_2_gabi.sh: New file.
450 * testsuite/Makefile.in: Regenerated.
451
452 2015-07-09 Han Shen <shenhan@google.com>
453
454 Use "gold_info" instead of "gold_warning" for erratum fix.
455
456 * aarch64.cc (Target_aarch64::scan_erratum_843419_span): Use
457 'gold_info'.
458 (Target_aarch64::scan_erratum_835769_span): USe 'gold_info'.
459
460 2015-07-09 Han Shen <shenhan@google.com>
461
462 Drop missing symbol warning for arm/aarch64.
463
464 * aarch64.cc (AArch64_relobj::scan_errata): Drop missing symbol warning.
465 * arm.cc (Arm_relobj::scan_section_for_cortex_a8_erratum): Drop missing
466 symbol warning.
467
468 2015-07-07 Han Shen <shenhan@google.com>
469
470 Make gold aarch64 accept long form of mapping symbols.
471
472 * aarch64.cc (AArch64_relobj::do_count_local_symbols): Make legal
473 of mapping symbols.
474
475 2015-06-29 Doug Kwan <dougkwan@google.com>
476
477 * testsuite/arm_bl_out_of_range.s: Align stub table so that it appears
478 at address expected by test.
479 * testsuite/arm_cortex_a8_b.s: Ditto.
480 * testsuite/arm_cortex_a8_b_cond.s: Ditto.
481 * testsuite/arm_cortex_a8_bl.s: Ditto.
482 * testsuite/arm_cortex_a8_blx.s: Ditto.
483 * testsuite/arm_cortex_a8_local.s: Ditto.
484 * testsuite/arm_fix_v4bx.s: Ditto.
485 * testsuite/arm_unaligned_reloc.s: Ditto.
486 * testsuite/thumb_bl_out_of_range.s: Ditto.
487 * testsuite/thumb_bl_out_of_range_local.s: Ditto.
488 * testsuite/thumb_blx_out_of_range.s: Ditto.
489
490 2015-06-29 Han Shen <shenhan@google.com>
491
492 Patch for erratum 843419 internal error.
493
494 * aarch64.cc (Erratum_stub::Insn_utilities): New typedef.
495 (Erratum_stub::update_erratum_insn): New method.
496 (Stub_table::relocate_stubs): Modified to place relocated insn.
497 (AArch64_relobj::fix_errata): Modified gold_assert.
498
499 2015-06-12 Han Shen <shenhan@google.com>
500
501 Fix erratum 835769.
502
503 * aarch64.cc (AArch64_insn_utilities::BYTES_PER_INSN): Move
504 defintion outside class definition.
505 (AArch64_insn_utilities::AARCH64_ZR): New static constant.
506 (AArch64_insn_utilities::aarch64_op31): New member.
507 (AArch64_insn_utilities::aarch64_ra): New member.
508 (AArch64_insn_utilities::aarch64_mac): New member.
509 (AArch64_insn_utilities::aarch64_mlxl): New member.
510 (ST_E_835769): New global enum member.
511 (Stub_table::relocate_stubs): Add 835769 handler.
512 (Stub_template_repertoire::Stub_template_repertoire): Install new
513 stub type.
514 (AArch64_relobj::scan_errata): This func is renamed from
515 scan_erratum_843419.
516 (AArch64_relobj::do_count_local_symbols): Add 835769 handler.
517 (AArch64_relobj::do_relocate_sections): Add 835769 handler.
518 (AArch64_relobj::scan_sections_for_stubs): Add 835769 handler.
519 (Target_aarch64::scan_erratum_835769_span): New method.
520 (Target_aarch64::create_erratum_stub): New method.
521 (Target_aarch64::is_erratum_835769_sequence): New method.
522 (Target_aarch64::scan_erratum_843419_sequence): Move part of the
523 code into create_erratum_stub.
524 * options.h (fix_cortex_a53_835769): New option.
525
526 2015-06-11 Cary Coutant <ccoutant@gmail.com>
527
528 * aarch64.cc (Erratum_stub::STUB_ADDR_ALIGN): Move initialization
529 outside class body.
530 (Reloc_stub::STUB_ADDR_ALIGN): Likewise.
531
532 2015-06-11 Cary Coutant <ccoutant@gmail.com>
533
534 PR gold/17731
535 * layout.cc (corresponding_uncompressed_section_name): New function.
536 (Layout::choose_output_section): Call it.
537 * layout.h (corresponding_uncompressed_section_name): New function.
538 * script-sections.cc (Input_section_info::set_section_name): Check
539 for compressed debug section (.zdebug style).
540
541 2015-06-11 Jing Yu <jingyu@google.com>
542
543 * testsuite/Makefile.am: Add -O0 for script_test_12 test.
544 * testsuite/Makefile.in: Regenerate.
545
546 2015-06-11 Davide Italiano <dccitaliano@gmail.com>
547
548 * gold.h (is_cident): Correct typo.
549
550 2015-06-10 Han Shen <shenhan@google.com>
551 Patch for erratum-843419 (2 of 2 - fix erratum occurrences).
552
553 Now fixing for 843419 is fully functional.
554
555 The first part of the erratum fix CL is here -
556 https://sourceware.org/ml/binutils/2015-04/msg00229.html
557
558 * aarch64.cc(global enum): New constants representing stub types.
559 (Stub_template): New POD struct.
560 (Stub_template_repertoire): New class.
561 (Stub_base): New class.
562 (Erratum_stub): New class.
563 (Reloc_stub): Refactored to be a subclass of Stub_base.
564 (Reloc_stub::Stub_type): Removed.
565 (Reloc_stub::offset): Moved to Stub_base.
566 (Reloc_stub::set_offset): Moved to Stub_base.
567 (Reloc_stub::destination_address): Moved to Stub_base.
568 (Reloc_stub::set_destination_address): Moved to Stub_base.
569 (Reloc_stub::reset_destination_address): Moved to Stub_base.
570 (Reloc_stub::stub_type): Renamed and moved to Stub_base.
571 (Reloc_stub::stub_size): Renamed and moved to Stub_base.
572 (Reloc_stub::stub_insns): Renamed and moved to Stub_base.
573 (Reloc_stub::write): Moved to Stub_base.
574 (Reloc_stub::invalid_offset): Moved to Stub_base.
575 (Reloc_stub::invalid_address): Moved to Stub_base.
576 (Reloc_stub::stub_type_): Renamed and moved to Stub_base.
577 (Reloc_stub::stub_insns_): Moved to Stub_base.
578 (Reloc_stub::offset_): Moved to Stub_base.
579 (Reloc_stub::destination_address_): Moved to Stub_base.
580 (Stub_table::The_aarch64_relobj): New typedef.
581 (Stub_table::The_erratum_stub): New typedef.
582 (Stub_table::The_erratum_stub_less): New typedef.
583 (Stub_table::The_erratum_stub_set): New typedef.
584 (Stub_table::The_erratum_stub_set_iter): New typedef.
585 (Stub_table::empty): Added emptiness testing for erratum stubs.
586 (Stub_table::add_erratum_stub): New method to add an erratum stub.
587 (Stub_table::find_erratum_stub): New method.
588 (Stub_table::find_erratum_stubs_for_input_section): New method.
589 (Stub_table::erratum_stub_address): New method.
590 (Stub_table::update_date_size_changed_p): Modified to handle erratum stubs.
591 (Stub_table::do_addralign): Modified to handle erratum stubs.
592 (Stub_table::erratum_stubs_): New member.
593 (Stub_table::erratum_stub_size_): New member.
594 (Stub_table::relocate_stubs): Modified to handle erratum stubs.
595 (Stub_table::do_write): Modified to handle erratum stubs.
596 (AArch64_relobj::The_erratum_stub): New typedef.
597 (AArch64_relobj::Erratum_stub_set_iter): New typedef.
598 (AArch64_relobj::fix_errata): New method.
599 (Target_aarch64::The_reloc_stub_type): Removed.
600 (Target_aarch64::The_erratum_stub): New typede.
601 (AArch64_relocate_functions::construct_b): New method.
602
603 2015-06-08 Nick Clifton <nickc@redhat.com>
604
605 * po/fr.po: New French Translation.
606
607 2015-06-07 Cary Coutant <ccoutant@gmail.com>
608
609 PR gold/18288
610 * resolve.cc (symbol_to_bits): Remove type parameter; adjust all
611 callers. Don't use STT_COMMON to check for common symbols.
612 (Symbol_table::resolve): Warn if relocatable object has STT_COMMON
613 symbol that's not in a common section.
614 * symtab.h (Symbol::is_common): Don't use STT_COMMON to check for
615 common symbols.
616
617 2015-06-04 Cary Coutant <ccoutant@gmail.com>
618
619 PR gold/18200
620 * Makefile.am (diststuff): Add target.
621 * Makefile.in: Regenerate.
622
623 2015-06-04 Cary Coutant <ccoutant@gmail.com>
624
625 PR gold/17498
626 * object.cc (Sized_relobj_file::do_count_local_symbols): Discard
627 temporary locals in merge sections.
628 * options.cc (General_options::parse_discard_all): New method.
629 (General_options::parse_discard_locals): New method.
630 (General_options::parse_discard_none): New method.
631 (General_options::General_options): Initialize discard_locals_.
632 * options.h (--discard-all): Convert to special option.
633 (--discard-locals): Likewise.
634 (--discard-none): New option.
635 (General_options::discard_all): New method.
636 (General_options::discard_locals): New method.
637 (General_options::discard_sec_merge): New method.
638 (General_options::Discard_locals): New enum.
639 (General_options::discard_locals_): New data member.
640
641 2015-06-03 Cary Coutant <cary@google.com>
642
643 * script-sections.cc (Script_sections::Script_sections): Initialize
644 segments_created_.
645 (Script_sections::create_note_and_tls_segments): Set flag when
646 segments are created.
647 (Script_sections::expected_segment_count): Count PT_INTERP.
648 (Script_sections::attach_sections_using_phdrs_clause): Set flag when
649 segments are created.
650 * script-sections.h (Script_sections::segments_created_): New data
651 member.
652
653 2015-06-03 Cary Coutant <ccoutant@gmail.com>
654
655 PR gold/15370
656 * script-sections.cc
657 (Output_section_element_input::set_section_addresses): When there
658 are several patterns with no sort spec, put all sections in the same
659 bin.
660 * testsuite/Makefile.am (script_test_12): New testcase.
661 (script_test_12i): New testcase.
662 * testsuite/Makefile.in: Regenerate.
663 * testsuite/script_test_12.t: New test linker script.
664 * testsuite/script_test_12i.t: New test linker script.
665 * testsuite/script_test_12a.c: New test source file.
666 * testsuite/script_test_12b.c: New test source file.
667
668 2015-06-02 Cary Coutant <ccoutant@gmail.com>
669
670 * nacl.h (Sniff_file): Switch parameters to get_view to get an
671 aligned view.
672
673 2015-06-03 Cary Coutant <ccoutant@gmail.com>
674
675 PR gold/17819
676 * gold.cc (queue_final_tasks): When --build-id=tree, queue a
677 separate task to schedule the build id computation.
678 * layout.cc (Hash_task::Hash_task): Remove build_id_blocker,
679 add Output_file and offset.
680 (Hash_task::run): Get and release the input views.
681 (Hash_task::is_runnable): Always return NULL (always runnable).
682 (Layout::queue_build_id_tasks): Remove.
683 (Layout::write_build_id): Add array_of_hashes and size_of_hashes
684 parameters; use them instead of class members.
685 (Build_id_task_runner::run): New function.
686 (Close_task_runner::run): Pass array_of_hashes and size_of_hashes
687 to write_build_id.
688 * layout.h (Layout::queue_build_id_tasks): Remove.
689 (Layout::write_build_id): Add array_of_hashes and size_of_hashes
690 parameters.
691 (Layout::array_of_hashes_): Remove.
692 (Layout::size_of_array_of_hashes_): Remove.
693 (Layout::input_view_): Remove.
694 (Build_id_task_runner): New class.
695 (Close_task_runner::Close_task_runner): Add array_of_hashes and
696 size_of_hashes parameters.
697 (Close_task_runner::array_of_hashes_): New data member.
698 (Close_task_runner::size_of_hashes_): New data member.
699 * testsuite/Makefile.am
700 (flagstest_compress_debug_sections_and_build_id_tree): New test.
701 * testsuite/Makefile.in: Regenerate.
702
703 2015-06-01 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
704
705 * merge.cc (get_input_merge_map): Update for data structure change.
706 (get_or_make_input_merge_map): Update for data structure change.
707 * merge.h (Object_merge_map): Use a std::vector<std::pair>> instead of
708 a std::map. Remove first_shnum_, first_map_, second_shnum_, second_map_.
709
710 2015-05-16 Alan Modra <amodra@gmail.com>
711
712 * reloc.cc (Sized_relobj_file::find_functions): Use function_location.
713 * powerpc.cc (Target_powerpc::do_calls_non_split): New function.
714 (addi_12_1, addis_2_12, addis_12_1, cmpld_7_12_0): New constants.
715 (lis_0): Rename from lis_0_0.
716
717 2015-04-29 Cary Coutant <cary@google.com>
718 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
719
720 * gc.h (Garbage_collection::is_section_garbage): Change Object*
721 to Relobj*.
722 (Garbage_collection::add_reference): Likewise.
723 (Garbage_collection::gc_process_relocs): Likewise. Don't push
724 object/shndx pair onto *secvec for dynamic objects. Don't follow
725 relocations pointing to dynamic objects for GC.
726 * icf.cc (Icf::find_identical_sections): Change Object* to Relobj*.
727 (Icf::unfold_section): Likewise.
728 (Icf::is_section_folded): Likewise.
729 (Icf::get_folded_section): Likewise.
730 * icf.h: (Icf::get_folded_section): Likewise.
731 (Icf::unfold_section): Likewise.
732 (Icf::is_section_folded): Likewise.
733 (Icf::section_has_function_pointers): Likewise.
734 (Icf::set_section_has_function_pointers): Likewise.
735 * object.h (Section_id): Likewise.
736 (Const_section_id): Likewise.
737 * output.cc (Output_section::update_section_layout): Likewise.
738 * output.h: (Output_section_lookup_maps::find_relaxed_input_section):
739 Likewise.
740 * plugin.cc (update_section_order): Likewise.
741 (unique_segment_for_sections): Likewise.
742 * powerpc.cc (Powerpc_relobj::add_reference): Likewise.
743 (Target_powerpc::do_gc_add_reference): Likewise.
744 (Target_powerpc::gc_process_relocs): Likewise.
745 (Target_powerpc::do_gc_add_reference): Likewise.
746 * symtab.cc (Symbol_table::is_section_folded): Likewise.
747 (Symbol_table::gc_mark_symbol): Likewise.
748 * symtab.h: (Symbol_table::is_section_folded): Likewise.
749 * target.h: (Sized_target::gc_add_reference): Likewise.
750 (Sized_target::do_gc_add_reference): Likewise.
751
752 2015-04-29 Nick Clifton <nickc@redhat.com>
753
754 * po/fi.po: Updated Finnish translation.
755
756 2015-04-28 Alan Modra <amodra@gmail.com>
757
758 * powerpc.cc (Target_powerpc::do_dynsym_value): Use Address rather
759 than unsigned int for find_global_entry result temp. Compare
760 against invalid_address.
761 (Target_powerpc::do_plt_address_for_global): Likewise.
762 (Target_powerpc::Relocate::relocate): Likewise. Don't assert
763 on plt call stub existence for debug info. Do assert for plt
764 and global entry stub existence if an alloc section.
765
766 2015-04-28 Alan Modra <amodra@gmail.com>
767
768 * powerpc.cc (Target_powerpc::Relocate::relocate): Don't assert
769 on missing global entry stub due to bogus debug info.
770
771 2015-04-27 Han Shen <shenhan@google.com>
772
773 * options.h (--fix-cortex-a53-843419): Rename option.
774 * aarch64.cc (AArch64_relobj::do_count_local_symbols): Use renamed
775 option.
776 (AArch64_relobj::scan_sections_for_stubs): Use renamed option.
777
778 2015-04-27 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
779
780 PR gold/18327
781 * output.cc (Output_section::is_input_address_mapped): Assume a missing
782 entry is mapped.
783 * testsuite/Makefile.am: Add the eh_test test.
784 * testsuite/Makefile.in: Regenerate.
785 * testsuite/eh_test_a.cc: New test.
786 * testsuite/eh_test_b.cc: New test.
787
788 2015-04-23 Sriraman Tallam <tmsriram@google.com>
789
790 * options.h (--weak-unresolved-symbols): New option.
791 * symtab.cc (Symbol_table::sized_write_globals): Change symbol
792 binding to weak with new option.
793 * symtab.h (is_weak_undefined): Check for new option.
794 (is_strong_undefined): Check for new option.
795 * testsuite/Makefile.am (weak_unresolved_symbols_test): New test.
796 * testsuite/Makefile.in: Regenerate.
797 * testsuite/weak_unresolved_symbols_test.cc: New file.
798
799 2015-04-20 Ian Coolidge <icoolidge@google.com>
800
801 * symtab.cc (Symbol::should_add_dynsym_entry): Return true for
802 GNU_UNIQUE.
803
804 2015-04-17 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
805
806 * gc.cc (Garbage_collection::do_transitive_closure): Use back and
807 push_back.
808 * gc.h (Garbage_collection): Use a std::vector instead of a std::queue.
809 * object.cc (Sized_relobj_file::do_layout): Use push_back.
810 * powerpc.cc (process_gc_mark): Use push_back.
811 (Target_powerpc::do_gc_mark_symbol): Use push_back.
812 * symtab.cc (Symbol_table::gc_mark_symbol): Use push_back.
813
814 2015-04-16 Han Shen <shenhan@google.com>
815
816 * aarch64.cc (AArch64_insn_utilities): New utility class.
817 (AArch64_relobj::Mapping_symbol_position): New struct.
818 (AArch64_relobj::Mapping_symbol_info): New typedef.
819 (AArch64_relobj::do_count_local_symbols): New function overriding
820 parent's implementation.
821 (AArch64_relobj::mapping_symbol_info_): New member
822 (AArch64_relobj::scan_erratum_843419): New method.
823 (Target_aarch64::scan_erratum_843419_span): New method.
824 (Target_aarch64::is_erratum_843419_sequence): New method.
825 * options.h (fix_cortex_a53): New option.
826
827 2015-04-09 Cary Coutant <ccoutant@google.com>
828
829 * symtab.cc (Symbol::final_value_is_known): Check for TLS symbol
830 in a PIE link.
831 * testsuite/Makefile.am (tls_pie_test.sh): New test.
832 * testsuite/Makefile.in: Regenerate.
833 * testsuite/tls_pie_test.sh: New.
834
835 2015-04-09 Cary Coutant <ccoutant@google.com>
836
837 * debug.h (DEBUG_LOCATION): New.
838 (DEBUG_ALL): Include DEBUG_LOCATION.
839 (debug_string_to_enum): Add DEBUG_LOCATION.
840 * dwarf_reader.cc (Sized_dwarf_line_info::read_lines): Fix debug
841 output to print correct context.
842 (Sized_dwarf_line_info::do_addr2line): Add debug output. Return
843 up to 4 more locations at the beginning of the function.
844 * symtab.cc (Symbol_table::detect_odr_violations): Get canonical
845 result before sorting list of line numbers.
846 * testsuite/debug_msg.sh: Allow range of line numbers for
847 canonical results on optimized code.
848
849 2015-04-07 HC Yen <hc.yen@mediatek.com>
850
851 Add AArch32 support for gold linker.
852 gold/
853 * arm.cc: Add V8 arch combine table.
854
855 2015-04-06 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
856
857 * aarch64.cc (do_reloc_addend): Fix signature to match the parent one.
858
859 2015-04-06 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
860
861 * gc.cc (Garbage_collection::do_transitive_closure): Avoid a call
862 to find by using the return value of insert.
863
864 2015-04-06 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
865
866 * gc.cc (Garbage_collection::do_transitive_closure): Avoid a copy
867 constructor call.
868
869 2015-04-06 Ilya Tocar <ilya.tocar@intel.com>
870
871 PR gold/17641
872 * x86_64.cc (Target_x86_64::can_convert_mov_to_lea): New.
873 (Target_x86_64::Scan::local): Don't create GOT entry, when we
874 can convert mov to lea.
875 (Target_x86_64::Scan::global): Ditto.
876 (Target_x86_64::Relocate::relocate): Convert mov foo@GOTPCREL(%rip),
877 %reg to lea foo(%rip), %reg if possible.
878 * testsuite/Makefile.am (x86_64_mov_to_lea): New test.
879 * testsuite/x86_64_mov_to_lea1.s: New.
880 * testsuite/x86_64_mov_to_lea2.s: Ditto.
881 * testsuite/x86_64_mov_to_lea3.s: Ditto.
882 * testsuite/x86_64_mov_to_lea4.s: Ditto.
883 * testsuite/x86_64_mov_to_lea.sh: Ditto.
884
885 2015-04-02 H.J. Lu <hongjiu.lu@intel.com>
886
887 * configure: Regenerated.
888
889 2015-04-01 Ilya Tocar <ilya.tocar@intel.com>
890
891 PR gold/17640
892 * i386.cc (Target_i386::can_convert_mov_to_lea): New.
893 (Target_i386::Scan::local): Don't create GOT entry, when we
894 can convert GOT to GOTOFF.
895 (Target_i386::Scan::global): Ditto.
896 (Target_i386::Relocate::relocate): Convert mov foo@GOT(%reg), %reg to
897 lea foo@GOTOFF(%reg), %reg if possible.
898 * testsuite/Makefile.am (i386_mov_to_lea): New test.
899 * testsuite/i386_mov_to_lea1.s: New.
900 * testsuite/i386_mov_to_lea2.s: Ditto.
901 * testsuite/i386_mov_to_lea3.s: Ditto.
902 * testsuite/i386_mov_to_lea4.s: Ditto.
903 * testsuite/i386_mov_to_lea5.s: Ditto.
904 * testsuite/i386_mov_to_lea.sh: Ditto.
905
906 2015-04-01 H.J. Lu <hongjiu.lu@intel.com>
907
908 * Makefile.am (ZLIB): New.
909 (ZLIBINC): Likewise.
910 (AM_CFLAGS): Add $(ZLIBINC).
911 (AM_CXXFLAGS): Likewise.
912 (ldadd_varldadd_var): Add $(ZLIB).
913 (incremental_dump_LDADD): Likewise.
914 (dwp_LDADD): Likewise.
915 * compressed_output.cc: Don't check HAVE_ZLIB_H to include
916 <zlib.h>.
917 (zlib_compress): Don't check HAVE_ZLIB_H.
918 (zlib_decompress): Likewise.
919 * options.h (compress_debug_sections): Likewise.
920 * configure.ac (AM_CONDITIONAL): Removed.
921 * testsuite/Makefile.am (ZLIB): New.
922 (LDADD): Add $(ZLIB).
923 Don't check HAVE_ZLIB.
924 * Makefile.in: Regenerated.
925 * config.in: Likewise.
926 * configure: Likewise.
927 * testsuite/Makefile.in: Likewise.
928
929 2015-03-30 Jing Yu <jingyu@google.com>
930
931 * aarch64-reloc.def: New TLSLD_ADD_DTPREL_HI12,
932 TLSLD_ADD_DTPREL_LO12_NC.
933 * aarch64.cc (Target_aarch64::define_tls_base_symbol): Always let
934 _TLS_MODULE_BASE_ point to the start of tls segment.
935 (Target_aarch64::optimize_tls_reloc): Add cases for
936 R_AARCH64_TLSLD_ADD_DTPREL_HI12 and
937 R_AARCH64_TLSLD_ADD_DTPREL_LO12_NC.
938 (Target_aarch64::Scan::local): Likewise.
939 (Target_aarch64::Scan::global): Likewise.
940 (Target_aarch64::Relocate::relocate): Likewise.
941 (Target_aarch64::Relocate::relocate_tls): Likewise. And remove
942 subtracting tls segment size from symbol value for TLSLD_*_DTPREL
943 relocations.
944
945 2015-03-27 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
946
947 * merge.cc (Object_merge_map::add_mapping): call
948 Object_merge_map::Input_merge_map::add_mapping.
949 (Object_merge_map::Input_merge_map::add_mapping): New.
950 (Output_merge_data::do_add_input_section): Call
951 get_or_make_input_merge_map before a loop.
952 (Output_merge_string<Char_type>::finalize_merged_data): Call
953 get_or_make_input_merge_map before a loop.
954 * merge.h (Object_merge_map): Make Input_merge_map public.
955 * object.cc (Relobj::add_merge_mapping): Use get_or_create_merge_map.
956 (Relobj::get_or_create_merge_map): New.
957 * object.h (Relobj::get_or_create_merge_map): New.
958
959 2015-03-24 Alan Modra <amodra@gmail.com>
960
961 PR 18147
962 * powerpc.cc (Target_powerpc::Relocate::relocate): Don't report
963 relocation errors for branches to strong undefined symbols.
964
965 2015-03-23 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
966
967 * merge.cc (Object_merge_map::get_input_merge_map): Make it const.
968 (Object_merge_map::is_merge_section_for): Remove.
969 (Object_merge_map::find_merge_section): New.
970 * merge.h (Object_merge_map::is_merge_section_for): Remove.
971 (Object_merge_map::find_merge_section): New.
972 (Object_merge_map::get_input_merge_map): Add a const version.
973 * object.cc (Relobj::is_merge_section_for): Remove.
974 (Relobj::find_merge_section): New.
975 * object.h (Relobj::is_merge_section_for): Remove.
976 (Relobj::find_merge_section): New.
977 * output.cc
978 (Output_section::Input_section::is_merge_section_for): Remove.
979 (Output_section::add_merge_input_section): Don't call
980 add_merge_input_section.
981 (Output_section::find_merge_section): Return const. Use
982 object->find_merge_section.
983 (Output_section::build_lookup_maps): Don't build a map for
984 merge sections.
985 (Output_section::is_input_address_mapped): Return false if
986 section is not found.
987 (Output_section::find_starting_output_address): Use
988 find_merge_section instead of is_merge_section_for.
989 (Output_section::add_script_input_section): Don't build a map for
990 merge sections.
991 * output.h (Output_section_lookup_maps::merge_sections_by_id_): Remove.
992 (Output_section_lookup_maps::find_merge_section): Remove.
993 (Output_section_lookup_maps::add_merge_input_section) Remove.
994 (Output_section::find_merge_section): Return const.
995
996 2015-03-22 Cary Coutant <cary@google.com>
997
998 PR gold/18106
999 * i386.cc (Target_i386::Relocate::tls_gd_to_ie): Fix support for
1000 non-SIB form of lea, with nop after the call.
1001
1002 2015-03-21 Cary Coutant <cary@google.com>
1003
1004 PR gold/14217
1005 * output.cc (Output_segment::is_first_section_relro): Don't ignore
1006 .tdata section.
1007 (Output_segment::set_section_addresses): Don't align size of relro
1008 segment for .tbss.
1009
1010 2015-03-21 Cary Coutant <cary@google.com>
1011
1012 PR gold/18010
1013 * stringpool.cc (Stringpool_template): Don't optimize if section
1014 alignment is greater than sizeof(char).
1015
1016 2015-03-21 Cary Coutant <cary@google.com>
1017
1018 PR gold/18048
1019 * script-c.h (script_include_directive): Add first_token parameter.
1020 * script.cc (script_include_directive): Add first_token parameter, and
1021 pass it to read_script_file.
1022 * yyscript.y (PARSING_SECTIONS_BLOCK, PARSING_SECTION_CMDS)
1023 (PARSING_MEMORY_DEF): New tokens.
1024 (top): Add new productions for INCLUDE files.
1025 (file_cmd): Replace file_or_sections_cmd with copy of its productions.
1026 Pass PARSING_LINKER_SCRIPT to script_include_directive.
1027 (section_block_cmd): Likewise; pass PARSING_SECTIONS_BLOCK.
1028 (section_cmd): Pass PARSING_SECTION_CMDS.
1029 (file_or_sections_cmd): Remove.
1030 (memory_def): Pass PARSING_MEMORY_DEF.
1031 * testsuite/Makefile.am (memory_test_2): New test.
1032 * testsuite/Makefile.in: Regenerate.
1033 * testsuite/memory_test_inc.t: New script file.
1034 * testsuite/memory_test_inc_1.t.src: New script file.
1035 * testsuite/memory_test_inc_2.t.src: New script file.
1036 * testsuite/memory_test_inc_3.t.src: New script file.
1037
1038 2015-03-21 Cary Coutant <cary@google.com>
1039
1040 * dwp.cc (Sized_relobj_dwo::do_section_contents): Delete.
1041 (Sized_relobj_dwo::setup): Build compressed section map.
1042 (Sized_relobj_dwo::do_decompressed_section_contents): Delete.
1043 * dynobj.cc (Sized_dynobj::base_read_symbols): Build compressed
1044 section map.
1045 * object.cc (Sized_relobj_file::Sized_relobj_file): Remove
1046 compressed_sections_ field.
1047 (build_compressed_section_map): Take Object instead of
1048 Sized_relobj_file parameter; add decompress_if_needed parameter.
1049 (Sized_relobj_file::do_find_special_sections): Store compressed
1050 section map in parent Object.
1051 (Sized_relobj_file::do_decompressed_section_contents): Move
1052 implementation to Object::decompressed_section_contents.
1053 (Sized_relobj_file::do_discard_decompressed_sections): Move
1054 implementation to Object::discard_decompressed_sections.
1055 * object.h (build_compressed_section_map): Declare.
1056 (Object::Object): Add compressed_sections_ field.
1057 (Object::section_is_compressed): Move implementation here.
1058 (Object::decompressed_section_contents): De-virtualize.
1059 (Object::discard_decompressed_sections): De-virtualize.
1060 (Object::do_section_is_compressed): Delete.
1061 (Object::do_decompressed_section_contents): Delete.
1062 (Object::set_compressed_sections): New method.
1063 (Object::compressed_sections): New method.
1064 (Object::compressed_sections_): New data member.
1065 (Compressed_section_info, Compressed_section_map): Move to top of file.
1066 (Sized_relobj_file::do_section_is_compressed): Delete.
1067 (Sized_relobj_file::do_decompressed_section_contents): Delete.
1068 (Sized_relobj_file::do_discard_decompressed_sections): Delete.
1069 (Sized_relobj_file::compressed_sections_): Move to Object class.
1070
1071 2015-03-21 Cary Coutant <ccoutant@google.com>
1072
1073 PR gold/18152
1074 * gold.cc (queue_middle_tasks): Finalize .eh_frame after laying out
1075 deferred objects.
1076
1077 2015-03-11 Cary Coutant <ccoutant@google.com>
1078
1079 * options.cc (General_options::finalize): Don't allow -z relro
1080 with incremental linking.
1081 * testsuite/Makefile.am (incremental_test): Add -z norelro.
1082 (incremental_test_2): Likewise.
1083 (incremental_test_3): Likewise.
1084 (incremental_test_4): Likewise.
1085 (incremental_test_5): Likewise.
1086 (incremental_test_6): Likewise.
1087 (incremental_copy_test): Likewise.
1088 (incremental_common_test_1): Likewise.
1089 (incremental_comdat_test_1): Likewise.
1090 * testsuite/Makefile.in: Regenerate.
1091
1092 2015-03-09 Cary Coutant <ccoutant@google.com>
1093
1094 PR gold/14675
1095 * ehframe.cc (Eh_frame::add_ehframe_input_section): Change return type;
1096 return enum indicating whether .eh_frame section is empty, optimizable,
1097 unrecognized, or an end marker. Adjust explicit instantiations.
1098 * ehframe.h (Eh_frame::Eh_frame_section_disposition): New enum type.
1099 (Eh_frame::add_ehframe_input_section): Change return type.
1100 * gold.cc (queue_middle_tasks): Call Layout::finalize_eh_frame_section.
1101 * layout.cc (Layout::layout_eh_frame): Don't add optimized sections
1102 to the .eh_frame output section until we see the end marker.
1103 (Layout::finalize_eh_frame_section): New.
1104 * layout.h: (Layout::finalize_eh_frame_section): New.
1105
1106 2015-03-05 H.J. Lu <hongjiu.lu@intel.com>
1107
1108 * output.cc (Relobj::initialize_input_to_output_map<size>):
1109 Remove typename on elfcpp::Elf_types<size>::Elf_Addr.
1110
1111 2015-03-04 Cary Coutant <ccoutant@google.com>
1112
1113 * parameters.cc (Parameters::set_target_once): Call
1114 Target::select_as_default_target just once from here...
1115 (set_parameters_target): ...instead of from here.
1116
1117 2015-03-04 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
1118
1119 * ehframe.cc (Cie::set_output_offset): Pass in and use a
1120 Output_section_data instead of a Merge_map.
1121 (Eh_frame::Eh_frame): Don't initialize merge_map_.
1122 (Eh_frame::read_cie): Use add_merge_mapping instead of
1123 Merge_map::add_mapping.
1124 (Eh_frame::read_fde): Ditto.
1125 (Eh_frame::set_final_data_size): Use this instead of this->merge_map_.
1126 (Eh_frame::do_output_offset): Use merge_output_offset istead of
1127 merge_map_->get_output_offset.
1128 (Eh_frame::do_is_merge_section_for): Delete.
1129 * ehframe.h (Fde::add_mapping): Pass in and use a Output_section_data
1130 instead of a Merge_map.
1131 (Cie::set_output_offset): Pass in a Output_section_data instead of a
1132 Merge_map.
1133 (Eh_frame::do_is_merge_section_for): Delete.
1134 (Eh_frame::merge_map_): Delete.
1135 * merge.cc (Object_merge_map::get_or_make_input_merge_map): Pass in
1136 and use a Output_section_data instead of a Merge_map.
1137 (Object_merge_map::add_mapping): Ditto.
1138 (Object_merge_map::get_output_offset): Remove the merge_map argument.
1139 (Object_merge_map::is_merge_section_for): Pass in and use a
1140 Output_section_data instead of a Merge_map.
1141 (Merge_map): Delete.
1142 (Output_merge_base::do_output_offset): Use merge_output_offset instead
1143 of merge_map_.get_output_offset.
1144 (Output_merge_base::do_is_merge_section_for): Delete.
1145 (Output_merge_data::do_add_input_section): Use
1146 object->add_merge_mapping instead of add_mapping.
1147 (Output_merge_string<Char_type>::finalize_merged_data): Ditto.
1148 * merge.h (Merge_map): Delete forward declaration.
1149 (Object_merge_map::add_mapping): Pass in and use a Output_section_data
1150 instead of a Merge_map.
1151 (Object_merge_map::get_output_offset): Remove the merge_map argument.
1152 (Object_merge_map::is_merge_section_for): Pass in and use a
1153 Output_section_data instead of a Merge_map.
1154 (Input_merge_map::Object_merge_map::merge_map): Replace with
1155 output_data.
1156 (Object_merge_map::get_or_make_input_merge_map): Pass in and use a
1157 Output_section_data instead of a Merge_map.
1158 (Merge_map): Delete.
1159 (Output_merge_base::Output_merge_base): Don't initialize merge_map_.
1160 (Output_merge_base::do_is_merge_section_for): Delete.
1161 (Output_merge_base::add_mapping): Delete.
1162 (Output_merge_base::merge_map_): Delete.
1163 * object.cc (Relobj::initialize_input_to_output_map): New.
1164 (Relobj::initialize_input_to_output_map): New.
1165 (Relobj::merge_output_offset): New.
1166 (Relobj::is_merge_section_for): New.
1167 (Relobj::initialize_input_to_output_map): Instantiate for 32 and 64
1168 bits.
1169 * object.h (Relobj::merge_map): Delete.
1170 (initialize_input_to_output_map): New.
1171 (set_merge_map): Delete.
1172 (add_merge_mapping): New.
1173 (merge_output_offset): New.
1174 (is_merge_section_for): New.
1175 * output.cc (Output_section::Input_section::is_merge_section_for):
1176 Use object->is_merge_section_for.
1177 * output.h (Output_section_data::is_merge_section_for): Delete.
1178 (Output_section_data::do_is_merge_section_for): Delete.
1179 * reloc.cc (Merged_symbol_value<size>::initialize_input_to_output_map):
1180 Use object->initialize_input_to_output_map.
1181 (Merged_symbol_value<size>::value_from_output_section): Use
1182 object->merge_output_offset.
1183
1184 2015-03-02 Peter Collingbourne <pcc@google.com>
1185 Cary Coutant <ccoutant@google.com>
1186
1187 * output.cc (Output_section::add_merge_input_section): Do not
1188 attempt to merge sections with an entsize of 0.
1189
1190 2015-03-02 Khem Raj <raj.khem@gmail.com>
1191
1192 * attributes.h (class Output_attributes_section_data ): Add
1193 do_print_to_mapfile function.
1194
1195 2015-02-24 Alan Modra <amodra@gmail.com>
1196
1197 PR 18010
1198 * powerpc.cc (Powerpc_relocate_functions::addr16_ds): Always
1199 complain if value is not a multiple of four.
1200 (Target_powerpc::Relocate::relocate): Correct handling of
1201 R_POWERPC_GOT_TPREL16 and R_POWERPC_GOT_TPREL16_LO for ppc64.
1202
1203 2015-02-21 H.J. Lu <hongjiu.lu@intel.com>
1204
1205 * configure.ac (default_size): Set to 32 for x32.
1206 * configure: Regenerated.
1207
1208 2015-02-18 Alan Modra <amodra@gmail.com>
1209
1210 PR 17954
1211 * powerpc.cc (Global_symbol_visitor_opd::operator()): Set default
1212 visibility.
1213
1214 2015-02-17 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
1215
1216 * gc.h (Garbage_collection::add_reference): Don't use find.
1217
1218 2015-02-17 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
1219
1220 * object.cc (write_local_symbols): avoid std::vector copy.
1221
1222 2015-02-17 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
1223
1224 * merge.cc (get_output_offset): Use upper_bound instead of lower_bound.
1225
1226 2015-02-09 Mark Wielaard <mjw@redhat.com>
1227
1228 * gdb-index.cc (Gdb_index_info_reader::visit_top_die): Recognize
1229 DW_LANG_Fortran03 and DW_LANG_Fortran08.
1230
1231 2015-02-16 Cary Coutant <ccoutant@google.com>
1232
1233 PR gold/13577
1234 PR gold/16992
1235 * layout.cc (Layout::finish_dynamic_section): Don't set DT_SYMBOLIC or
1236 DF_SYMBOLIC if --dynamic-list option is used.
1237 * options.cc (General_options::finalize): --dynamic-list is not
1238 mutually exclusive with -Bsymbolic.
1239 * symtab.h (Symbol::is_preemptible): Don't exclude dynamic symbols not
1240 listed in --dynamic-list.
1241 * testsuite/Makefile.am (dynamic_list_lib2.so): Add
1242 -Bsymbolic-functions.
1243 * testsuite/Makefile.in: Regenerate.
1244
1245 2015-02-16 Cary Coutant <ccoutant@google.com>
1246
1247 PR gold/17971
1248 * incremental.cc: Remove redundant include of "output.h".
1249
1250 2015-02-12 Jing Yu <jingyu@google.com>
1251
1252 * aarch64-reloc.def (TLSLE_MOVW_TPREL_G2, TLSLE_MOVW_TPREL_G1,
1253 TLSLE_MOVW_TPREL_G1_NC, TLSLE_MOVW_TPREL_G0, TLSLE_MOVW_TPREL_G0_NC,):
1254 New relocation.
1255 * aarch64.cc (Target_aarch64::Scan::local): Add cases for new
1256 TLSLE_MOVW_* relocations.
1257 (Target_aarch64::Scan::global): Likewise.
1258 (Target_aarch64::Relocate::relocate): Likewise.
1259 (Target_aarch64::Relocate::relocate_tls): Add cases and handlings
1260 for new TLSLE_MOVW_* relocations.
1261
1262 2015-02-11 Will Newton <will.newton@linaro.org>
1263
1264 PR gold/13321
1265 * arm.cc (Target_arm::make_plt_section): Create an ARM
1266 state mapping symbol at the start of the PLT.
1267
1268 2015-02-09 H.J. Lu <hongjiu.lu@intel.com>
1269
1270 * testsuite/Makefile.am (two_file_shared_2_pic_1_test_DEPENDENCIES):
1271 Replace two_file_shared_2.so with two_file_shared_1.so.
1272 * testsuite/Makefile.in: Regenerated.
1273
1274 2015-02-09 Alan Modra <amodra@gmail.com>
1275
1276 * testsuite/Makefile.am (MOSTLYCLEANFILES): Add libweak_undef_2.a,
1277 plugin_test_thin.a and defsym_test.
1278 * testsuite/Makefile.in: Regenerate.
1279
1280 2015-02-04 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
1281
1282 * merge.cc (do_add_input_section): Combine loop epilogue into main loop
1283 body.
1284
1285 2015-02-04 Peter Collingbourne <pcc@google.com>
1286
1287 * plugin.cc (Pluginobj::get_symbol_resolution_info): Resolve
1288 forwarding symbols when computing symbol resolution info for plugins.
1289 * plugin.h (Plugin_manager::symtab): New method.
1290 (Pluginobj::get_symbol_resolution_info): Add symtab parameter.
1291
1292 2015-02-03 Cary Coutant <ccoutant@google.com>
1293 Peter Collingbourne <pcc@google.com>
1294
1295 PR gold/15660
1296 * archive.cc (Thin_archive_object_unlocker): New class.
1297 (Archive::include_member): Unlock external members of thin archives.
1298 * testsuite/Makefile.am (plugin_test_1): Rename .syms files.
1299 (plugin_test_2): Likewise.
1300 (plugin_test_3): Likewise.
1301 (plugin_test_4): Likewise.
1302 (plugin_test_5): Likewise.
1303 (plugin_test_6): Likewise.
1304 (plugin_test_7): Likewise.
1305 (plugin_test_8): Likewise.
1306 (plugin_test_9): Likewise.
1307 (plugin_test_10): Likewise.
1308 (plugin_test_11): New test case.
1309 * testsuite/Makefile.in: Regenerate.
1310 * testsuite/plugin_test.c (claim_file_hook): Check for parallel .syms
1311 file to decide whether to claim file.
1312 (all_symbols_read_hook): Likewise.
1313 * testsuite/plugin_test_1.sh: Adjust expected output.
1314 * testsuite/plugin_test_2.sh: Likewise.
1315 * testsuite/plugin_test_3.sh: Likewise.
1316 * testsuite/plugin_test_6.sh: Likewise.
1317 * testsuite/plugin_test_tls.sh: Likewise.
1318 * testsuite/plugin_test_11.sh: New testcase.
1319
1320 2015-02-03 Cary Coutant <ccoutant@google.com>
1321
1322 * descriptors.cc (Descriptors::open): Set artificially-low limit for
1323 file descriptors when debugging enabled. Add debug output.
1324 (Descriptors::release): Add debug output.
1325 (Descriptors::close_some_descriptor): Likewise.
1326 (Descriptors::close_all): Likewise.
1327 * fileread.cc (File_read::lock): Likewise.
1328 (File_read::unlock): Likewise.
1329
1330 2015-02-02 Cary Coutant <ccoutant@google.com>
1331
1332 * x86_64.cc (Target_x86_64::Relocate::relocate_tls): Check for
1333 executable output file.
1334
1335 2015-01-22 Han Shen <shenhan@google.com>
1336
1337 * arm.cc (Target_arm::Target_arm): Add initialization for new members.
1338 (Target_arm::do_plt_address_for_global): New method.
1339 (Target_arm::do_plt_address_for_local): New method.
1340 (Target_arm::rel_irelative_section): New method.
1341 (Target_arm::make_data_plt): Add more parameters for plt ctor.
1342 (Target_arm::do_make_data_plt): Add more parameters for plt ctor.
1343 (Target_arm::Scan::symbol_needs_plt_entry): Add ifunc support.
1344 (Target_arm::Scan::reloc_needs_plt_for_ifunc): Add ifunc support.
1345 (Target_arm::Scan::check_non_pic): Add ifunc support.
1346 (Target_arm::Scan::local): Add ifunc support.
1347 (Target_arm::Scan::global): Add ifunc support.
1348 (Target_arm::make_plt_section): New method.
1349 (Target_arm::make_plt_entry): Change to call to make_plt_section.
1350 (Target_arm::make_local_ifunc_plt_entry): New method.
1351 (Target_arm::got_irelative_): New member.
1352 (Target_arm::rel_irelative_): New member.
1353 (Target_arm::got_section): Add creation for got_irelative_.
1354 (Target_arm::rel_dyn_section): Add creation for rel_irelative_.
1355 (Target_arm::Relocate::relocate): Properly set local ifunc address.
1356 (Target_arm::do_dynsym_value): Properly set global ifunc address.
1357 (Target_arm::scan_reloc_for_stub): Properly set global ifunc address.
1358 (Output_data_plt_arm::IRelative_data): New type.
1359 (Output_data_plt_arm::Output_data_plt_arm): Add more parameters.
1360 (Output_data_plt_arm::add_entry): Add more parameters.
1361 (Output_data_plt_arm::add_relocation): New method.
1362 (Output_data_plt_arm::add_local_ifunc_entry): New method.
1363 (Output_data_plt_arm::rel_irelative): New method.
1364 (Output_data_plt_arm::entry_count): Modified.
1365 (Output_data_plt_arm::address_for_global): New method.
1366 (Output_data_plt_arm::address_for_local): New method.
1367 gold/
1368 (Output_data_plt_arm::set_final_data_size): Add irelative_count_.
1369 (Output_data_plt_arm::insert_irelative_data): New method.
1370 (Output_data_plt_arm::irelative_rel_): New member.
1371 (Output_data_plt_arm::got_): New member.
1372 (Output_data_plt_arm::got_irelative_): New member.
1373 (Output_data_plt_arm::irelative_count_): New member.
1374 (Output_data_plt_arm::IRelative_data_vec): New typedef.
1375 (Output_data_plt_arm::irelative_data_vec_): New member.
1376 (Output_data_plt_arm::do_write): Write out irelative entries.
1377 (Output_data_plt_arm_standard::Output_data_plt_arm_standard): Add
1378 more parameters to ctor.
1379 (Output_data_plt_arm_nacl::Output_data_plt_arm_nacl): Add
1380 more parameters to ctor.
1381 * output.h (Output_data_reloc::add_local_relative): New method.
1382 * aarch64.cc (Output_data_plt_aarch64): Fixed typo in comment.
1383
1384 2015-01-29 Alan Modra <amodra@gmail.com>
1385
1386 * powerpc.cc (Target_powerpc::Relocate::relocate): Correct GOT_TLSLD
1387 and GOT_TLSGD to LE optimization.
1388
1389 2015-01-28 Cary Coutant <ccoutant@google.com>
1390
1391 * x86_64.cc (Target_x86_64::Scan::global): Allow IE-to-LE optimization
1392 for undef TLS symbols.
1393 (Target_x86_64::Relocate::relocate_tls): Likewise.
1394 (Target_x86_64::Relocate::tls_ie_to_le): Likewise.
1395
1396 2015-01-25 Cary Coutant <ccoutant@google.com>
1397
1398 * output.cc (Output_segment::set_section_addresses): Fix calculation
1399 of size of relro segment.
1400
1401 2015-01-22 Alan Modra <amodra@gmail.com>
1402
1403 * powerpc.cc (Target_powerpc::Scan::local <got relocs>): Correct
1404 condition for need of ifunc plt entry.
1405 (Target_powerpc::Scan::global <got relocs>): Likewise.
1406
1407 2015-01-14 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
1408
1409 * mips.cc (reloc_high): Add r_sym.
1410 (Mips_relocate_functions::relhi16): Add r_sym parameter. Pass r_sym to
1411 reloc_high constructor.
1412 (Mips_relocate_functions::relgot16_local): Likewise.
1413 (Mips_relocate_functions::rello16): Add r_sym parameter. Use r_sym and
1414 r_type to decide whether LO16 matches HI16.
1415 (Target_mips::Relocate::relocate): Pass r_sym to calls to relhi16,
1416 rello16 and relgot16_local.
1417
1418 2015-01-09 Cary Coutant <ccoutant@google.com>
1419
1420 * layout.cc (Layout::set_segment_offsets): Don't align start of segment
1421 unless alignment is larger than page size.
1422
1423 2015-01-06 H.J. Lu <hongjiu.lu@intel.com>
1424 Cary Coutant <ccoutant@google.com>
1425
1426 PR gold/17729
1427 * configure.ac (DEFAULT_TARGET_X86_64): Don't set for x32.
1428 (DEFAULT_TARGET_X32): Set for x32.
1429 * x86_64.cc (cmp_insn_32): New.
1430 (lea_r10_insn_32): Likewise.
1431 (lea_r11_insn_32): Likewise.
1432 (cmp_insn_64): Likewise.
1433 (lea_r10_insn_64): Likewise.
1434 (lea_r11_insn_64): Likewise.
1435 (Target_x86_64<size>::do_calls_non_split): Handle x32.
1436 * testsuite/Makefile.am (check_SCRIPTS): Add split_x32.sh.
1437 (check_DATA): Add split_x32 files.
1438 (split_x32_[1234n].o): New targets.
1439 (split_x32_[124]): New targets.
1440 (split_x32_[1234r].stdout): New targets.
1441 * testsuite/split_x32.sh: New file.
1442 * testsuite/split_x32_1.s: Likewise.
1443 * testsuite/split_x32_2.s: Likewise.
1444 * testsuite/split_x32_3.s: Likewise.
1445 * testsuite/split_x32_4.s: Likewise.
1446 * testsuite/split_x32_n.s: Likewise.
1447 * configure: Regenerated.
1448 * testsuite/Makefile.in: Likewise.
1449
1450 2015-01-06 H.J. Lu <hongjiu.lu@intel.com>
1451
1452 PR gold/17809
1453 * x86_64.cc (Target_x86_64<size>::Relocate::tls_ie_to_le): Handle
1454 x32.
1455
1456 2015-01-02 Alan Modra <amodra@gmail.com>
1457
1458 * version.cc (print_version): Just print current year.
1459 * dwp.cc (print_version): Likewise.
1460
1461 2015-01-01 Alan Modra <amodra@gmail.com>
1462
1463 Update year range in copyright notice of all files.
1464
1465 2014-12-25 Alan Modra <amodra@gmail.com>
1466
1467 * arm.cc (Target_arm::do_adjust_elf_header): Provide namespace on
1468 new enums.
1469 (Target_arm::merge_object_attributes, ): Likewise.
1470
1471 2014-12-25 Thomas Preud'homme <thomas.preudhomme@arm.com>
1472
1473 * arm.cc (Target_arm::do_adjust_elf_header): Set e_flags in ELF header
1474 as hard float only when Tag_ABI_VFP_args is 1, using new enum value
1475 AEABI_VFP_args_vfp to check that.
1476 (Target_arm::merge_object_attributes): Handle new Tag_ABI_VFP_args
1477 value and replace hardcoded values by enum values.
1478
1479 2014-12-22 Cary Coutant <ccoutant@google.com>
1480
1481 * powerpc.cc (Target_powerpc::relocate): Fix overflow check.
1482
1483 2014-12-20 H.J. Lu <hongjiu.lu@intel.com>
1484
1485 PR gold/14608
1486 * testsuite/debug_msg.cc (SometimesInlineFunction): Changed
1487 to "return i * i * 3;".
1488
1489 2014-12-16 Cary Coutant <ccoutant@google.com>
1490
1491 * mapfile.cc (Mapfile::print_input_section): Print uncompressed sizes.
1492 (Mapfile::print_output_data): Use current_data_size() to avoid
1493 assert for sections requiring postprocessing; if address is not valid,
1494 print 0.
1495 (Mapfile::print_output_section): Use current_data_size(); print note
1496 that addresses and sizes are before compression.
1497
1498 2014-12-14 H.J. Lu <hongjiu.lu@intel.com>
1499
1500 * aarch64.cc (AArch64_relocate_functions::maybe_apply_stub):
1501 Cast current_group_size to unsigned long when reporting error.
1502
1503 2014-12-10 Jing Yu <jingyu@google.com>
1504
1505 * aarch64.cc (Target_aarch64): Add new variable stub_group_size_.
1506 (AArch64_relocate_functions::maybe_apply_stub): Add new parameter.
1507 Update error message.
1508 (Target_aarch64::do_relax): Use absolute value of option
1509 stub_group_size. Replace local variable with class member
1510 stub_group_size_.
1511
1512 2014-12-04 Alan Modra <amodra@gmail.com>
1513
1514 * powerpc.cc (Target_powerpc::Branch_info::make_stub): Ignore
1515 addend of PLTREL24 reloc when not generating a plt stub. Make
1516 max_branch_offset an "Address".
1517 (Stub_table::can_reach_stub): Make max_branch_offset an "Address".
1518 (Target_powerpc::Relocate::relocate): Likewise.
1519
1520 2014-12-04 Alan Modra <amodra@gmail.com>
1521
1522 PR 17670
1523 * symtab.cc (Symbol::set_undefined): Remove assertion.
1524 * powerpc.cc (Target_powerpc::symval_for_branch): Don't assert
1525 on symbols defined in discarded sections, instead return false.
1526 Rearrange params, update all callers.
1527 (Target_powerpc::Branch_info::make_stub): Don't make stubs for
1528 branches to syms in discarded sections.
1529 (Global_symbol_visitor_opd::operator()): Set discarded opd syms
1530 undefined and flag as discarded.
1531 (Target_powerpc::Relocate::relocate): Localize variable.
1532
1533 2014-12-03 H.J. Lu <hongjiu.lu@intel.com>
1534
1535 PR gold/17675
1536 * testsuite/Makefile.am (pie_copyrelocs_test_CXXFLAGS): New.
1537 * testsuite/Makefile.in: Regenerated.
1538
1539 2014-12-03 Alan Modra <amodra@gmail.com>
1540
1541 PR 17566
1542 * powerpc.cc (Target_powerpc::Scan::local): Use add_local_section
1543 when adding dynamic relocations against section symbols.
1544
1545 2014-12-01 Dimitry Ivanov <dimitry@google.com>
1546
1547 * layout.cc (Layout::finish_dynamic_section): When '-z global'
1548 is specified set DF_1_GLOBAL in DT_FLAGS_1 flags.
1549 * options.h (General_options): New -z option (global).
1550
1551 2014-12-01 Cary Coutant <ccoutant@google.com>
1552
1553 PR gold/17578
1554 * layout.cc (Layout::layout_gnu_stack): Don't warn when -z execstack
1555 is given.
1556 (Layout::create_executable_stack_info): Warn when -z noexecstack is
1557 given but some inputs require executable stack.
1558
1559 2014-11-26 Cary Coutant <ccoutant@google.com>
1560
1561 * layout.cc (gdb_sections): Keep .debug_gdb_scripts and
1562 .debug_str_offsets; strip .debug_gnu_pubnames and
1563 .debug_gnu_pubtypes.
1564 (lines_only_debug_sections): Strip all four new sections.
1565
1566 2014-11-26 Jing Yu <jingyu@google.com>
1567
1568 * aarch64.cc (Relocate::tls_desc_gd_to_ie): Set ldr target
1569 register to be x0 when to relax TLSDESC_LD64_LO12.
1570
1571 2014-11-26 Alan Modra <amodra@gmail.com>
1572
1573 * powerpc.cc (struct Stub_table_owner): New.
1574 (Powerpc_relobj): Rename stub_table_ to stub_table_index_, an
1575 unsigned int vector. Update all references.
1576 (powerpc_relobj::set_stub_table): Take an unsigned int param
1577 rather than a Stub_table. Update callers.
1578 (Powerpc_relobj::clear_stub_table): New function.
1579 (Target_powerpc): Add relax_failed_, relax_fail_count_ and
1580 stub_group_size_ vars.
1581 (Target_powerpc::new_stub_table): Delete.
1582 (max_branch_delta): New function, extracted from..
1583 (Target_powerpc::Relocate::relocate): ..here..
1584 (Target_powerpc::Branch_info::make_stub): ..and here. Return
1585 status on whether stub created successfully.
1586 (Stub_control::Stub_control): Add "no_size_errors" param. Move
1587 default sizing to..
1588 (Target_powerpc::do_relax): ..here. Init stub_group_size_ and
1589 reduce on relax failure.
1590 (Target_powerpc::group_sections): Add "no_size_errors" param.
1591 Use stub_group_size_. Set up group info in a temp vector,
1592 before building Stub_table vector. Account for input sections
1593 possibly already converted to relaxed sections.
1594 (Stub_table::init): Delete. Merge into..
1595 (Stub_table::Stub_table): ..here.
1596 (Stub_table::can_reach_stub): New function.
1597 (Stub_table::add_plt_call_entry): Add "from" parameter and
1598 return true iff stub could be reached.
1599 (Stub_table::add_long_branch_entry): Similarly. Add "r_type"
1600 param too.
1601 (Stub_table::clear_stubs): Add "all" param.
1602
1603 2014-11-26 Alan Modra <amodra@gmail.com>
1604
1605 * powerpc.cc (Stub_control::set_output_and_owner): New function.
1606 (Target_powerpc::group_sections): Use it.
1607
1608 2014-11-25 Cary Coutant <ccoutant@google.com>
1609
1610 * binary.cc (Binary_to_elf::sized_convert): Add size to _start symbol.
1611 (Binary_to_elf::write_symbol): Add st_size parameter.
1612 * binary.h (Binary_to_elf::write_symbol): Add st_size parameter.
1613
1614 2014-11-25 Cary Coutant <ccoutant@google.com>
1615
1616 PR gold/17639
1617 * object.cc (Sized_relobj_file): Initialize is_deferred_layout_.
1618 (Sized_relobj_file::do_layout): Handle deferred sections properly
1619 during GC pass 1. Don't add reloc sections to deferred list twice.
1620 * object.h (Sized_relobj_file::is_deferred_layout): New function.
1621 (Sized_relobj_file::is_deferred_layout_): New data member.
1622
1623 2014-11-21 H.J. Lu <hongjiu.lu@intel.com>
1624
1625 PR gold/17619
1626 * x86_64.cc (Output_data_plt_x86_64_standard<size>::do_fill_plt_entry):
1627 Check PC-relative offset overflow in PLT entry.
1628
1629 2014-11-21 Alan Modra <amodra@gmail.com>
1630
1631 * powerpc.cc (Target_powerpc::Relocate::relocate): Correct test
1632 for undefined weaks.
1633
1634 2014-11-20 Alan Modra <amodra@gmail.com>
1635
1636 * powerpc.cc (Stub_control::Stub_control): Init stub14_group_size_
1637 from --stub-group-size parameter divided by 1024.
1638 (Powerpc_relocate_functions::rela, rela_ua): Add fieldsize
1639 template parameter. Update all uses.
1640 (Target_powerpc::Relocate::relocate): Rename has_plt_value to
1641 has_stub_value. Set for long branches. Don't report overflow for
1642 branch to undefined weak symbols. Print info message on
1643 overflowing branch to stub.
1644
1645 2014-11-20 Alan Modra <amodra@gmail.com>
1646
1647 * powerpc.cc (Target_powerpc::do_relax): Add __go_go to thread_starters.
1648
1649 2014-11-13 H.J. Lu <hongjiu.lu@intel.com>
1650
1651 * x86_64.cc (Target_x86_64<size>::Scan::global): Don't make PLT
1652 entry for R_X86_64_GOTPLT64.
1653 (Target_x86_64<size>::Relocate::relocate): Update comments for
1654 R_X86_64_GOTPLT64.
1655
1656 2014-11-06 Evgeniy Dushistov <dushistov@mail.ru>
1657
1658 * plugin.cc: use lock to searialize calls of Plugin_manager::claim_file
1659 * plugin.h: add lock definition
1660
1661 2014-10-29 Han Shen <shenhan@google.com>
1662 Jing Yu <jingyu@google.com>
1663
1664 * aarch64-reloc.def: Add LD_PREL_LO12, ADR_PREL_LO21,
1665 TLSLD_ADR_PAGE21, TLSLD_ADD_LO12_NC, TLSLD_MOVW_DTPREL_G1,
1666 TLSLD_MOVW_DTPREL_G0_NC. Change property of TLS relocations to
1667 Symbol::TLS_REF.
1668 * aarch64.cc (Target_aarch64::do_can_check_for_function_pointers): New
1669 method.
1670 (Target_aarch64::reloc_needs_plt_for_ifunc): New method.
1671 (Target_aarch64::tls_ld_to_le): New method.
1672 (Target_aarch64::aarch64_info): Enable can_icf_inline_merge_sections
1673 for 64bit targets.
1674 (Output_data_plt_aarch64::irelative_rel_): New data member.
1675 (Output_data_plt_aarch64::add_entry): Add irelative entries to plt.
1676 (Output_data_plt_aarch64::add_local_ifunc_entry): New method.
1677 (Output_data_plt_aarch64::add_relocation): New method.
1678 (Output_data_plt_aarch64::do_write): Add gold_assert on got_irelative
1679 offset. Add got_irelative size to got size.
1680 (AArch64_relocate_functions): Typedef AArch64_valtype. Replace long
1681 type string with the new typename.
1682 (AArch64_relocate_functions::update_adr): Replace parameter x with
1683 immed.
1684 (AArch64_relocate_functions::update_movnz): Correct wrong val mask.
1685 (AArch64_relocate_functions::reloc_common): New method.
1686 (AArch64_relocate_funcsions::rela_general): Extract common part out
1687 into reloc_common method.
1688 (AArch64_relocate_functions::rela_general): Likewise.
1689 (AArch64_relocate_functions::pcrela_general): Likewise.
1690 (AArch64_relocate_functions::adr): New method.
1691 (AArch64_relocate_functions::adrp): Calculate immed before calling
1692 update_adr.
1693 (AArch64_relocate_functions::adrp): Likewise.
1694 (AArch64_relocate_functions::movnz): Cast x to SignedW type when
1695 comparing x to 0. Calculate immed from ~x when x < 0.
1696 (Target_aarch64::optimize_tls_reloc): Add new cases for
1697 TLSLD_ADR_PAGE21, TLSLD_ADD_LO12_NC, TLSLD_MOVW_DTPREL_G1,
1698 TLSLD_MOVW_DTPREL_G0_NC.
1699 (Target_aarch64::possible_function_pointer_reloc): Implement this
1700 method.
1701 (Target_aarch64::Scan::local_reloc_may_be_function_pointer): Update
1702 comment.
1703 (Target_aarch64::Scan::local): Add codes to handle STT_GNU_IFUNC
1704 symbol. Add cases for TLSLD_ADR_PAGE21, TLSLD_ADD_LO12_NC,
1705 TLSLD_MOVW_DTPREL_G1, TLSLD_MOVW_DTPREL_G0_NC.
1706 (Target_aarch64::Scan::global): Add codes to handle STT_GNU_IFUNC
1707 symbol. Add cases for TLSLD_ADR_PAGE21, TLSLD_ADD_LO12_NC,
1708 TLSLD_MOVW_DTPREL_G1, TLSLD_MOVW_DTPREL_G0_NC.
1709 (Target_aarch64::make_plt_entry): Call add_entry with two more
1710 parameters.
1711 (Target_aarch64::make_local_ifunc_plt_entry): New method.
1712 (Target_aarch64::Relocate::relocate): Add cases for LD_PREL_LO19,
1713 ADR_PREL_LO21, TLSLD_ADR_PAGE21, TLSLD_ADD_LO12_NC,
1714 TLSLD_MOVW_DTPREL_G1, TLSLD_MOVW_DTPREL_G0_NC.
1715 (Target_aarch64::Relocate::relocate_tls): Add cases for
1716 TLSLD_ADR_PAGE21, TLSLD_ADD_LO12_NC, TLSLD_MOVW_DTPREL_G1,
1717 TLSLD_MOVW_DTPREL_G0_NC.
1718 * testsuite/icf_safe_so_test.cc: Correct test comment.
1719 * testsuite/icf_safe_test.sh: Add AArch64 arch.
1720
1721 2014-10-22 Alan Modra <amodra@gmail.com>
1722
1723 * powerpc.cc (do_relax): Add gcc-4.9 libgomp functions to
1724 thread_starter.
1725
1726 2014-10-18 Andreas Schwab <schwab@linux-m68k.org>
1727
1728 * configure.tgt (targ_extra_obj) [aarch64*-*]: Define.
1729
1730 2014-10-17 Cary Coutant <ccoutant@google.com>
1731
1732 * aarch64.cc (AArch64_relocate_functions::maybe_apply_stub):
1733 Add "typename" keyword.
1734
1735 2014-10-15 Han Shen <shenhan@google.com>
1736 Jing Yu <jingyu@google.com>
1737
1738 Patch for gold aarch64 backend to support relaxation.
1739 * aarch64-reloc.def: Change format.
1740 * aarch64.cc (class Reloc_stub): New class.
1741 (class Stub_table): New class.
1742 (class AArch64_relobj): New class.
1743 (class AArch64_input_section): New class.
1744 (class AArch64_output_section): New class.
1745 (Target_aarch64::new_stub_table): New method.
1746 (Target_aarch64::new_aarch64_input_section): New method.
1747 (Target_aarch64::find_aarch64_input_section): New method.
1748 (Target_aarch64::scan_section_for_stubs): New method.
1749 (Target_aarch64::scan_reloc_section_for_stubs): New method.
1750 (Target_aarch64::relocate_stub): New method.
1751 (Target_aarch64::current_target): New method.
1752 (Target_aarch64::do_make_elf_object): New method.
1753 (Target_aarch64::do_may_relax): New method.
1754 (Target_aarch64::do_relax): New method.
1755 (Target_aarch64::group_sections): New method.
1756 (Target_aarch64::scan_reloc_for_stub): New method.
1757 (Target_aarch64::do_make_output_section): New method.
1758 (Target_aarch64::stub_tables_): New data member.
1759 (Target_aarch64::aarch64_input_section_map_): New data member.
1760 (AArch64_relocate_functions::maybe_apply_stub): New method.
1761
1762 2014-09-30 Cary Coutant <ccoutant@google.com>
1763
1764 PR gold/17432
1765 * resolve.cc (Symbol_table::resolve): Fix local shadowing error.
1766
1767 2014-09-30 Kito Cheng <kito@0xlab.org>
1768
1769 PR gold/13597
1770 * layout.cc (Layout::create_dynamic_symtab): Build gnu-style
1771 hash table before sysv-style hash table.
1772
1773 2014-09-29 Sriraman Tallam <tmsriram@google.com>
1774
1775 * options.h (--pic-executable): Add negative to alias to -no-pie.
1776
1777 2014-09-26 Cary Coutant <ccoutant@google.com>
1778
1779 PR gold/16773
1780 * object.cc (Sized_relobj_file): Compute value of section symbols
1781 for TLS sections the same as TLS symbols.
1782
1783 2014-09-25 Cary Coutant <ccoutant@google.com>
1784
1785 PR gold/17432
1786 * resolve.cc (Symbol_table::resolve): Override common placeholder
1787 symbols, but adjust sizes.
1788 * symtab.cc (Symbol_table::add_from_object): Don't add placeholder
1789 symbols to common lists.
1790
1791 2014-09-24 Alan Modra <amodra@gmail.com>
1792
1793 * po/POTFILES.in: Regenerate.
1794
1795 2014-09-23 Taiju Tsuiki <tzik@google.com>
1796 Cary Coutant <ccoutant@google.com>
1797
1798 PR gold/14860
1799 * gold.cc (queue_final_tasks): Add Write_sections_task as a blocker
1800 on input_sections_blocker.
1801 * layout.cc (Write_sections_task::locks): Unblock
1802 input_sections_blocker_.
1803 * layout.h (Write_sections_task::Write_sections_task): Add
1804 input_sections_blocker.
1805 * testsuite/Makefile.am (exception_x86_64_bnd_test): Add gcctestdir/ld
1806 to DEPENDENCIES.
1807 * testsuite/Makefile.in: Regenerate.
1808
1809 2014-09-18 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
1810
1811 * testsuite/Makefile.am (plugin_test_10): New test.
1812 * testsuite/Makefile.in: Regenerate
1813 * testsuite/plugin_common_test_2.c (c1): Align to 8.
1814 * testsuite/plugin_test_10.sh: New file.
1815
1816 2014-09-17 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
1817
1818 * plugin.cc (Sized_pluginobj::do_add_symbols): Ignore isym->size.
1819 * resolve.cc (Symbol_table::resolve): Don't override common symbols
1820 during the replacement phase.
1821
1822 2014-09-17 Han Shen <shenhan@google.com>
1823 Jing Yu <jingyu@google.com>
1824
1825 * aarch64-reloc.def: Add TLSGD_ADR_PAGE21, TLSGD_ADD_LO12_NC,
1826 TLSDESC_ADR_PAGE21, TLSDESC_LD64_LO12, TLSDESC_ADD_LO12, TLSDESC_CALL.
1827 * aarch64.cc (Target_aarch64): Add data members
1828 got_irelative_, got_tlsdesc_, rela_irelative_, got_mod_index_offset_,
1829 tlsdesc_reloc_info_, tls_base_symbol_defined_. Initialize them in
1830 constructor.
1831 (Target_aarch64::do_reloc_symbol_index): New method.
1832 (Target_aarch64::do_reloc_addend): New method.
1833 (Target_aarch64::add_tlsdesc_info): New method.
1834 (Target_aarch64::do_dynsym_value): New method.
1835 (Target_aarch64::do_make_data_plt): Add new parameters: got,
1836 got_irelative. Pass them to Output_data_plt_aarch64_standard.
1837 (Target_aarch64::make_data_plt): Add new parameters: got,
1838 got_irelative. Pass them to do_make_data_plt.
1839 (Target_aarch64::Relocate): Add skip_call_tls_get_addr_ variable.
1840 (Target_aarch64::Relocate:tls_gd_to_le): New method.
1841 (Target_aarch64::Relocate:tls_ie_to_le): New method.
1842 (Target_aarch64::Relocate:tls_desc_gd_to_le): New method.
1843 (Target_aarch64::Relocate:tls_desc_gd_to_ie): New method.
1844 (Target_aarch64::got_tlsdesc_section): New method.
1845 (Target_aarch64::make_local_ifunc_plt_entry): New method.
1846 (Target_aarch64::define_tls_base_symbol): New method.
1847 (Target_aarch64::reserve_tlsdesc_entries): New method.
1848 (Target_aarch64::got_mod_index_entry): New method.
1849 (Target_aarch64::rela_tlsdesc_section): New method.
1850 (Target_aarch64::rela_irelative_section): New method.
1851 (Target_aarch64::Tlsdesc_info): New struct.
1852 (Target_aarch64::got_section): Create .got.plt space for IRELATIVE
1853 relocations and tlsdesc relocations.
1854 (Target_aarch64::optimize_tls_reloc): Implement method.
1855 (Output_data_plt_aarch64): Add member variables: tlsdesc_rel_, got_,
1856 got_irelative_, irelative_count_, tlsdesc_got_offset_. Initialize them
1857 in constructor.
1858 (Output_data_plt_aarch64::reserve_tlsdesc_entry): New method.
1859 (Output_data_plt_aarch64::has_tlsdesc_entry): New method.
1860 (Output_data_plt_aarch64::get_tlsdesc_got_offset): New method.
1861 (Output_data_plt_aarch64::get_tlsdesc_plt_offset): New method.
1862 (Output_data_plt_aarch64::rela_tlsdesc): New method.
1863 (Output_data_plt_aarch64::rela_irelative): New method.
1864 (Output_data_plt_aarch64::entry_count): Count IRELATIVE relocations.
1865 (Output_data_plt_aarch64::first_plt_entry_offset): Add const attribute.
1866 (Output_data_plt_aarch64::get_plt_tlsdesc_entry_size): New method.
1867 (Output_data_plt_aarch64::fill_tlsdesc_entry): New method.
1868 (Output_data_plt_aarch64::do_get_plt_tlsdesc_entry_size): New method.
1869 (Output_data_plt_aarch64::do_fill_tlsdesc_entry): New method.
1870 (Output_data_plt_aarch64_standard): New member variables:
1871 plt_tlsdesc_entry_size, tlsdesc_plt_entry.
1872 (Output_data_plt_aarch64_standard::Output_data_plt_aarch64_standard):
1873 New parameter: got, got_irelative.
1874 (Output_data_plt_aarch64_standard::do_get_plt_entry_size): New method.
1875 (Output_data_plt_aarch64_standard::do_fill_tlsdesc_entry): New method.
1876 (Output_data_plt_aarch64::do_write): Replace got_address with
1877 gotplt_address. Add irelative_count_ to count. Write tlsdesc entry.
1878 (AArch64_relocate_functions::update_movnz): New method.
1879 (AArch64_relocate_functions): Correct format.
1880 (AArch64_relocate_functions::movnz): New method.
1881 (Target_aarch64::Scan::local): Correct format. Move r_sym, got to
1882 before the switch. Add new cases to switch.
1883 Check ie_to_le relaxation on tlsie relocations. Add code handling
1884 tlsgd tlsdesc cases.
1885 (Target_aarch64::Scan::global): Move arp to front. Do copy_reloc when
1886 needed. Add new cases to switch. Insert dynamic RELATIVE relocation
1887 when needed. Add code handling tlsgd, tlsie, tlsdesc cases.
1888 Call reloc_name_in_error_message to print unsupported reloc.
1889 (Target_aarch64::make_plt_section): Pass got_ and got_irelative_ to
1890 make_data_plt.
1891 (Target_aarch64::do_finalize_sections): Emit relocs to save COPY
1892 relocs. Fill in some more dynamic tags.
1893 (Target_aarch64::Relocate::relocate): Handle tlsgd, tlsdesc relocs.
1894 Skip call tls_get_addr when tlsgd is relaxed.
1895 (Target_aarch64::Relocate::relocate_tls): Correct format. Add code
1896 handling tlsgd, tlsdesc relocs, and tls gd->le, ie->le, tlsdesc->le,
1897 tlsdesc->ie relaxation.
1898
1899 2014-09-03 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
1900
1901 * mips.cc (Target_mips_nacl): New class.
1902 (Target_selector_mips_nacl): New class.
1903 (target_selector_mips32): Rename from target_selector_mips32be and use
1904 Target_selector_mips_nacl instead of Target_selector_mips.
1905 (target_selector_mips32el): Rename from target_selector_mips32 and use
1906 Target_selector_mips_nacl instead of Target_selector_mips.
1907 (target_selector_mips64): Rename from target_selector_mips64be and use
1908 Target_selector_mips_nacl instead of Target_selector_mips.
1909 (target_selector_mips64el): Rename from target_selector_mips64 and use
1910 Target_selector_mips_nacl instead of Target_selector_mips.
1911 (Target_mips::mips_info): Add const attribute.
1912
1913 2014-09-02 Cary Coutant <ccoutant@google.com>
1914
1915 * dwp.cc (Sized_relobj_dwo::do_section_name): Add const attribute.
1916 * dynobj.h (Sized_dynobj::do_section_name): Likewise.
1917 * incremental.cc (Sized_relobj_incr::do_section_name): Likewise.
1918 (Sized_incr_dynobj::do_section_name): Likewise.
1919 * incremental.h (Sized_relobj_incr::do_section_name): Likewise.
1920 (Sized_incr_dynobj::do_section_name): Likewise.
1921 * object.h (Object::section_name): Likewise.
1922 (Object::do_section_name): Likewise.
1923 (Sized_relobj_file::do_section_name): Likewise.
1924 * plugin.cc (Sized_pluginobj::do_section_name): Likewise.
1925 * plugin.h (Sized_pluginobj::do_section_name): Likewise.
1926
1927 2014-09-02 Cary Coutant <ccoutant@google.com>
1928
1929 PR gold/17005
1930 * ehframe.cc (Fde::write): Add output_offset parameter.
1931 (Cie::write): Likewise.
1932 (Eh_frame::set_final_data_size): Account for offset within output
1933 section.
1934 (Eh_frame::do_sized_write): Likewise.
1935 * ehframe.h (Fde::write): Add output_offset parameter.
1936 (Cie::write): Likewise.
1937 * output.cc (Output_section::Input_section_sort_entry): Remove
1938 section_has_name_; add output_section_name parameter. Use
1939 output section name for non-input sections.
1940 (Output_section::Input_section_sort_entry::section_has_name): Remove.
1941 (Output_section::Input_section_sort_entry::section_has_name_): Remove.
1942 (Output_section::Input_section_sort_compare): Remove logic for
1943 sections without names.
1944 (Output_section::Input_section_sort_init_fini_compare): Likewise.
1945 (Output_section::Input_section_sort_section_prefix_special_ordering_compare):
1946 Likewise.
1947 (Output_section::Input_section_sort_section_name_compare): Likewise.
1948
1949 2014-08-29 Han Shen <shenhan@google.com>
1950 Jing Yu <jingyu@google.com>
1951
1952 * aarch64-reloc-property.cc
1953 (AArch64_reloc_property_table::reloc_name_in_error_message): Fix bug in
1954 reference reloc property in the table.
1955 * aarch64-reloc.def: Add TLSLE reloc types and fix some errors in
1956 3 other entries.
1957 * aarch64.cc: (Output_data_got_aarch64::add_static_reloc):
1958 2 new overloaded methods.
1959 (Output_data_got_aarch64::do_write): Add code to write out
1960 static relocs.
1961 (class Output_data_got_aarch64::Static_reloc): New class to wrap
1962 static relocs.
1963 (Output_data_got_aarch64::static_relocs): New vector to
1964 hold static relocs.
1965 (Target_aarch64::TCB_SIZE): New const static memeber.
1966 (Target_aarch64::tcb_size): New method.
1967 (Target_aarch64::Relocate::relocate): Add code handling new reloc types.
1968 (Target_aarch64::Relocate::relocate_tls): New method.
1969 (Target_aarch64::Scan::local): Add code handling new reloc types.
1970 (Target_aarch64::Scan::global): Add code handling new reloc types.
1971
1972 2014-08-13 Sriraman Tallam <tmsriram@google.com>
1973
1974 * options.h (-no-pie): Add option.
1975
1976 2014-08-08 Jing Yu <jingyu@google.com>
1977 Han Shen <shenhan@google.com>
1978
1979 * Makefile.am (HFILES): Add aarch64-reloc-property.h.
1980 (DEFFILES): add aarch64-reloc.def.
1981 (TARGETSOURCES): Add aarch64-reloc-property.cc.
1982 (ALL_TARGETOBJS): Add aarch64-reloc-property.$(OBJEXT).
1983 * Makefile.in: Regenerate.
1984 * aarch64-reloc-property.cc: New file.
1985 * aarch64-reloc-property.h: New file.
1986 * aarch64-reloc.def: New file.
1987 * aarch64.cc: Include aarch64-reloc-property.h. Replace spaces
1988 with tab to make the format consistent.
1989 (Output_data_got_aarch64::symbol_table_): New method.
1990 (Target_aarch64::do_plt_address_for_global): New method.
1991 (Target_aarch64::do_plt_address_for_local): New method.
1992 (Target_aarch64::do_select_as_default_target): New method.
1993 (Target_aarch64::do_make_data_plt): New method.
1994 (Target_aarch64::make_data_plt): New method.
1995 (Output_data_plt_aarch64::has_irelative_section): New method.
1996 (Output_data_plt_aarch64::address_for_global): New method.
1997 (Output_data_plt_aarch64::address_for_local): New method.
1998 (Output_data_plt_aarch64::irelative_rel_): New parameter.
1999 (Output_data_plt_aarch64::add_entry): Implement contents.
2000 (Output_data_plt_aarch64::set_final_data_size): Fix typo.
2001 (Output_data_plt_aarch64::do_write): Remove useless got_base. Set
2002 the got_pov entry to plt0.
2003 (Output_data_plt_aarch64_standard::do_fill_first_plt_entry):
2004 Implement contents.
2005 (Output_data_plt_aarch64_standard::do_fill_plt_entry): Implement.
2006 (AArch64_howto): New struct.
2007 (aarch64_howto[]): New static const array.
2008 (AArch64_relocate_functions): New class.
2009 (Target_aarch64::Scan::get_reference_flags): Remove method.
2010 (Target_aarch64::Scan::local): Implement to support a few relocations.
2011 (Target_aarch64::Scan::global): Implement to support a few relocations.
2012 (Target_aarch64::make_plt_section): Implement contents.
2013 (Target_aarch64::make_plt_entry): Implement contents.
2014 (Target_aarch64::do_finalize_sections): Implement contents.
2015 (Target_aarch64::Relocate::relocate): Implement a few relocations.
2016 (Target_aarch64::relocate_section): Implement contents.
2017
2018 2014-08-06 Alan Modra <amodra@gmail.com>
2019
2020 * testsuite/defsym_test.sh: Allow ppc64le localentry annotation.
2021
2022 2014-08-06 Alan Modra <amodra@gmail.com>
2023
2024 PR 13227
2025 * symtab.cc (Symbol_table::add_from_relobj): Warn on __gnu_lto_slim.
2026
2027 2014-07-21 Sriraman Tallam <tmsriram@google.com>
2028
2029 * object.cc (Relobj::is_section_name_included): Add
2030 ".rodata.nptl_version" to not garbage collect this section.
2031
2032 2014-07-08 Cary Coutant <ccoutant@google.com>
2033
2034 * expression.cc (struct Expression::Expression_eval_info): Add
2035 new fields type_pointer, vis_pointer, and nonvis_pointer.
2036 (Expression::eval_maybe_dot): Add type_pointer, vis_pointer, and
2037 nonvis_pointer parameters. Adjust all calls.
2038 (Symbol_expression::value): Update type, visibility, and nonvis bits
2039 in caller.
2040 * script.cc (Symbol_assignment::sized_finalize): Update type,
2041 visibility, and remaining st_other bits for new symbol.
2042 * script.h: (Expression::eval_maybe_dot): Add type_pointer,
2043 vis_pointer, and nonvis_pointer parameters.
2044 * symtab.h (Symbol::set_type): New method.
2045
2046 * testsuite/Makefile.am (defsym_test): New test.
2047 * testsuite/Makefile.in: Regenerate.
2048 * testsuite/defsym_test.c: New file.
2049 * testsuite/defsym_test.sh: New file.
2050
2051 2014-07-08 Cary Coutant <ccoutant@google.com>
2052
2053 PR gold/15639
2054 * dynobj.h (Sized_dynobj::base_read_symbols): New method.
2055 * dynobj.cc (Sized_dynobj::do_read_symbols): Move body to...
2056 (Sized_dynobj::base_read_symbols): ...new method.
2057 * object.h (Sized_relobj_file::base_read_symbols): New method.
2058 * object.cc (Sized_relobj_file::do_read_symbols): Move body to...
2059 (Sized_relobj_file::base_read_symbols): ...new method.
2060 * arm.cc (Arm_relobj::do_read_symbols): Call base_read_symbols.
2061 * mips.cc: (Mips_relobj::do_read_symbols): Likewise.
2062 * powerpc.cc (Powerpc_dynobj::do_read_symbols): Likewise.
2063
2064 2014-07-04 Alan Modra <amodra@gmail.com>
2065
2066 * po/POTFILES.in: Regenerate.
2067
2068 2014-07-02 Jing Yu <jingyu@google.com>
2069
2070 * aarch64.cc: New file
2071 * Makefile.am (TARGETSOURCES): Add aarch64.cc
2072 (ALL_TARGETOBJS): Add aarch64.$(OBJEXT)
2073 * Makefile.in: Regenerate.
2074 * configure.tgt: Add entries for aarch64*.
2075 * configure.ac: Likewise.
2076 * configure: Likewise.
2077
2078 2014-06-27 Alan Modra <amodra@gmail.com>
2079
2080 * symtab.cc (Symbol::should_add_dynsym_entry): Don't make inline.
2081
2082 2014-06-24 Cary Coutant <ccoutant@google.com>
2083
2084 * dwp.cc (Dwo_file::read): Allow files with no .debug_types
2085 sections.
2086 (Dwo_file::sized_read_unit_index): Likewise.
2087
2088 2014-06-23 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
2089
2090 * mips.cc: New file.
2091 * Makefile.am (TARGETSOURCES): Add mips.cc
2092 (ALL_TARGETOBJS): Add mips.$(OBJEXT)
2093 * configure.tgt: Add entries for mips*.
2094 * configure.ac: Likewise.
2095 * Makefile.in: Regenerate.
2096 * configure: Likewise.
2097
2098 2014-06-09 Cary Coutant <ccoutant@google.com>
2099
2100 * dwarf_reader.cc (Dwarf_pubnames_table::read_header): Check that
2101 unit_length is within section bounds.
2102
2103 2014-06-09 Cary Coutant <ccoutant@google.com>
2104
2105 PR gold/16980
2106 * layout.cc (Layout::print_to_mapfile): Print unattached sections in
2107 map.
2108
2109 2014-06-07 Alan Modra <amodra@gmail.com>
2110
2111 * powerpc.cc (relocate): Treat field of cmpli insn as a bitfield.
2112
2113 2014-06-06 Cary Coutant <ccoutant@google.com>
2114
2115 * dwarf_reader.h (Dwarf_pubnames_table): Remove output_section_offset_.
2116 * dwarf_reader.cc (Dwarf_pubnames_table::read_section): Likewise.
2117 (Dwarf_pubnames_table::read_header): Likewise.
2118 * layout.cc (gdb_fast_lookup_sections): Add .debug_gnu_pubnames and
2119 .debug_gnu_pubtypes.
2120
2121 2014-06-05 Joel Brobecker <brobecker@adacore.com>
2122
2123 * Makefile.am (CONFIG_STATUS_DEPENDENCIES): New.
2124 * Makefile.in, configure: Regenerate.
2125
2126 2014-06-03 Alan Modra <amodra@gmail.com>
2127
2128 * powerpc.cc (addis_12_2): Define.
2129 (Stub_table::do_write): Support fusion on ELFv2 stubs.
2130
2131 2014-06-03 Alan Modra <amodra@gmail.com>
2132
2133 * testsuite/plugin_test.c (parse_readelf_line): Skip non-visibility
2134 st_other output.
2135
2136 2014-06-02 Alan Modra <amodra@gmail.com>
2137
2138 * powerpc.cc (Target_powerpc::local_reloc_may_be_function_pointer):
2139 Only ignore relocs on ELFv1.
2140 (Target_powerpc::global_reloc_may_be_function_pointer): Likewise.
2141
2142 2014-05-30 Cary Coutant <ccoutant@google.com>
2143
2144 * testsuite/Makefile.am (ehdr_start_test_4): Fix typo in -B option.
2145 * testsuite/Makefile.in: Regenerate.
2146 * testsuite/ehdr_start_test_4.sh: Look for "U" instead of "w".
2147
2148 2014-05-27 H.J. Lu <hongjiu.lu@intel.com>
2149
2150 PR gold/16945
2151 * x86_64.cc (Target_x86_64::Relocate::relocate): Use signed int
2152 for got_offset. Properly get GOT address for R_X86_64_PLTOFF64.
2153
2154 2014-05-15 Alan Modra <amodra@gmail.com>
2155
2156 * powerpc.cc (do_plt_fde_location): Handle zero length .glink.
2157 Compare FDE contents with DW_CFA_nop rather than 0.
2158
2159 2014-05-13 Sriraman Tallam <tmsriram@google.com>
2160
2161 * symtab.h (may_need_copy_reloc): Remove check for position independent
2162 code.
2163 * x86_64.cc (Target_x86_64<size>::Scan::global): Add check for no
2164 position independence before pc absolute may_need_copy_reloc call.
2165 Add check for executable output befor pc relative may_need_copy_reloc
2166 call.
2167 * i386.cc: Ditto.
2168 * arm.cc: Ditto.
2169 * sparc.cc: Ditto.
2170 * tilegx.cc: Ditto.
2171 * powerpc.cc: Add check for no position independence before
2172 may_need_copy_reloc calls.
2173 * testsuite/pie_copyrelocs_test.cc: New file.
2174 * testsuite/pie_copyrelocs_shared_test.cc: New file.
2175 * Makefile.am (pie_copyrelocs_test): New test.
2176 * Makefile.in: Regenerate.
2177
2178 2014-05-08 Martin Liška <mliska@suse.cz>
2179
2180 * output.cc (Sized_relobj_file::do_layout): Fix typo in info message.
2181
2182 2014-05-06 Cary Coutant <ccoutant@google.com>
2183
2184 PR gold/16900
2185 * i386.cc (Output_data_got_plt_i386): New class.
2186 (Output_data_plt_i386::Output_data_plt_i386): Change type of got_plt
2187 parameter. Change all callers.
2188 (Output_data_plt_i386::layout_): Remove.
2189 (Output_data_plt_i386::got_plt_): Change type.
2190 (Target_i386::got_plt_): Change type. Change all references.
2191 (Target_i386::got_section): Create instance of new class.
2192 (Output_data_got_plt_i386::do_write): New function.
2193 * x86_64.cc (Output_data_got_plt_x86_64): New class.
2194 (Output_data_plt_x86_64::Output_data_plt_x86_64): Change type of got_plt
2195 parameter. Change all callers.
2196 (Output_data_plt_x86_64::layout_): Remove.
2197 (Output_data_plt_x86_64::got_plt_): Change type.
2198 (Target_x86_64::got_plt_): Change type. Change all references.
2199 (Target_x86_64::got_section): Create instance of new class.
2200 (Output_data_got_plt_x86_64::do_write): New function.
2201 (Output_data_plt_x86_64::do_write): Don't write reserved words in GOT.
2202 (Target_x86_64<size>::init_got_plt_for_update): Create instance of new
2203 class.
2204
2205 2014-05-05 Cary Coutant <ccoutant@google.com>
2206
2207 * gdb-index.cc (Gdb_index_info_reader): Don't complain about language
2208 if we have pubnames/pubtypes.
2209
2210 2014-05-02 Cary Coutant <ccoutant@google.com>
2211
2212 * defstd.cc (in_segment): Define __ehdr_start here...
2213 * layout.cc (Layout::finalize): ...Instead of here. Set the
2214 output segment when known.
2215 * resolve.cc (Symbol::override_base_with_special): Remember
2216 the original binding.
2217 * symtab.cc (Symbol::set_output_segment): New function.
2218 (Symbol::set_undefined): New function.
2219 * symtab.h (Symbol::is_weak_undefined): Check original undef
2220 binding.
2221 (Symbol::is_strong_undefined): New function.
2222 (Symbol::set_output_segment): New function.
2223 (Symbol::set_undefined): New function.
2224 * target-reloc.h (is_strong_undefined): Remove.
2225 (issue_undefined_symbol_error): Call Symbol::is_weak_undefined.
2226 Check for hidden undefs.
2227 (relocate_section): Call Symbol::is_strong_undefined.
2228
2229 * testsuite/Makefile.am (ehdr_start_test_1)
2230 (ehdr_start_test_2, ehdr_start_test_3)
2231 (ehdr_start_test_4, ehdr_start_test_5): New test cases.
2232 * testsuite/Makefile.in: Regenerate.
2233 * testsuite/ehdr_start_def.cc: New source file.
2234 * testsuite/ehdr_start_test.cc: New source file.
2235 * testsuite/ehdr_start_test.t: New linker script.
2236 * testsuite/ehdr_start_test_4.sh: New shell script.
2237
2238 2014-04-23 Cary Coutant <ccoutant@google.com>
2239
2240 PR gold/16870
2241 * x86_64.cc (Target_x86_64::Relocate::relocate): Add missing break.
2242
2243 2014-04-15 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
2244
2245 * layout.cc (Layout::include_section): Allow a target to decide
2246 whether to include a section.
2247 * target.h (Target::should_include_section): New function.
2248 (Target::do_should_include_section): New function.
2249
2250 2014-04-15 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
2251
2252 * copy-relocs.cc (Copy_relocs::Copy_reloc_entry::emit): Remove and
2253 inline into ...
2254 (Copy_relocs::emit): ... here.
2255 * copy-relocs.h (Copy_reloc_entry): Change from class to struct.
2256 (Copy_reloc_entry::make_copy_reloc): Change from private to protected.
2257 (Copy_reloc_entry::entries_): Change from private to protected.
2258
2259 2014-04-02 Sriraman Tallam <tmsriram@google.com>
2260
2261 * icf.cc (get_section_contents): Replace copies of reloc
2262 vectors with const references.
2263
2264 2014-04-02 Cary Coutant <ccoutant@google.com>
2265
2266 * configure.ac (HAVE_PUBNAMES): Use C instead of C++.
2267 (HAVE_NO_USE_LINKER_PLUGIN): Check for -fno-use-linker-plugin.
2268 * configure: Regenerate.
2269 * testsuite/Makefile.am (OPT_NO_PLUGINS): New macro for
2270 -fno-use-linker-plugin.
2271 (LINK1, CXXLINK1): Add it to the link command.
2272 * testsuite/Makefile.in: Regenerate.
2273
2274 2014-03-12 Alan Modra <amodra@gmail.com>
2275
2276 * Makefile.in: Regenerate.
2277
2278 2014-03-10 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
2279
2280 * symtab.h (Symbol::set_nonvis): New function.
2281
2282 2014-03-10 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
2283
2284 * symtab.cc (Sized_symbol<32>::init_output_data):
2285 Instantiate the template.
2286 (Sized_symbol<64>::init_output_data): Likewise.
2287
2288 2014-03-10 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
2289
2290 * symtab.cc (Symbol_table::sized_write_globals): Allow a target to
2291 adjust dynamic symbol value.
2292 * target.h (Target::adjust_dyn_symbol): New function.
2293 (Target::do_adjust_dyn_symbol): New function.
2294
2295 2014-03-10 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
2296
2297 * output.cc (Output_data_dynamic::Dynamic_entry::write):
2298 Get the value of DYNAMIC_CUSTOM dynamic entry.
2299 * output.h (Output_data_dynamic::add_custom): New function.
2300 (Dynamic_entry::Dynamic_entry): New constructor for DYNAMIC_CUSTOM
2301 dynamic entry.
2302 (enum Dynamic_entry::Classification): Add DYNAMIC_CUSTOM.
2303 * target.h (Target::dynamic_tag_custom_value): New function.
2304 (Target::do_dynamic_tag_custom_value): New function.
2305
2306 2014-03-10 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
2307
2308 * symtab.cc (Symbol_table::set_dynsym_indexes): Allow a target to set
2309 dynsym indexes.
2310 * target.h (Target::has_custom_set_dynsym_indexes): New function.
2311 (Target::do_has_custom_set_dynsym_indexes): New function.
2312 (Target::set_dynsym_indexes): New function.
2313 (Target::do_set_dynsym_indexes): New function.
2314
2315 2014-03-07 Alan Modra <amodra@gmail.com>
2316
2317 * powerpc.cc (Powerpc_relocate_functions::Overflow_check): Add
2318 CHECK_UNSIGNED, CHECK_LOW_INSN, CHECK_HIGH_INSN.
2319 (Powerpc_relocate_functions::has_overflow_unsigned): New function.
2320 (Powerpc_relocate_functions::has_overflow_bitfield,
2321 overflowed): Use the above.
2322 (Target_powerpc::Relocate::relocate): Correct overflow checking
2323 for a number of relocations. Modify overflow test for 16-bit
2324 fields in instructions to signed/unsigned according to whether
2325 the field takes a signed or unsigned value.
2326
2327 2014-03-05 Alan Modra <amodra@gmail.com>
2328
2329 Update copyright years.
2330
2331 2014-03-05 Alan Modra <amodra@gmail.com>
2332
2333 * powerpc.cc (Target_powerpc::Scan::local, global): Support
2334 R_PPC64_ADDR64_LOCAL.
2335 (Target_powerpc::Relocate::relocate): Likewise.
2336
2337 2014-03-03 Alan Modra <amodra@gmail.com>
2338
2339 * dwp.cc (print_version): Update copyright year to current.
2340
2341 2014-02-10 Alan Modra <amodra@gmail.com>
2342
2343 * po/gold.pot: Regenerate.
2344
2345 2014-02-06 Cary Coutant <ccoutant@google.com>
2346
2347 Fix problem where -u is ignored when a weak undef is seen.
2348
2349 * archive.cc (Library_base::should_include_member): Reorder
2350 code to check for -u option if a weak undef has already been seen.
2351 * testsuite/Makefile.am (weak_undef_test_2): New test case.
2352 * testsuite/Makefile.in: Regenerate.
2353 * testsuite/weak_undef_file3.cc: New file.
2354 * testsuite/weak_undef_file4.cc: New file.
2355 * testsuite/weak_undef_test_2.cc: New file.
2356
2357 2014-02-05 Cary Coutant <ccoutant@google.com>
2358
2359 Fix issues with gold undefined symbol diagnostics.
2360
2361 PR binutils/15435
2362 * errors.cc (Errors::undefined_symbol): Move undef vtable symbol
2363 check to here.
2364 * target-reloc.h (is_strong_undefined): New function.
2365 (relocate_section): Move undef vtable symbol check from here.
2366 Check for is_strong_undefined.
2367
2368 2014-02-05 Cary Coutant <ccoutant@google.com>
2369
2370 Fix problems with the --dynamic-list option.
2371
2372 PR gold/13577
2373 * options.cc (General_options::parse_dynamic_list):
2374 Set have_dynamic_list_.
2375 (General_options::General_options): Initialize have_dynamic_list_.
2376 (General_options::finalize): Turn off -Bsymbolic and
2377 -Bsymbolic-functions if --dynamic-list provided.
2378 * options.h (General_options::have_dynamic_list): New function.
2379 (General_options::have_dynamic_list_): New data member.
2380 * symtab.h (Symbol::is_preemptible): Handle --dynamic-list
2381 correctly.
2382
2383 PR gold/16530
2384 * symtab.cc (Symbol_table::add_from_relobj): If symbol is named
2385 in --dynamic-list, mark it.
2386
2387 * testsuite/Makefile.am (gc_dynamic_list_test.sh): New test case.
2388 (dynamic_list_2): New test case.
2389 * testsuite/Makefile.in: Regenerate.
2390 * testsuite/dynamic_list_2.cc: New file.
2391 * testsuite/dynamic_list_2.t: New file.
2392 * testsuite/dynamic_list_lib1.cc: New file.
2393 * testsuite/dynamic_list_lib2.cc: New file.
2394 * testsuite/gc_dynamic_list_test.c: New file.
2395 * testsuite/gc_dynamic_list_test.sh: New file.
2396 * testsuite/gc_dynamic_list_test.t: New file.
2397
2398 2014-01-28 Cary Coutant <ccoutant@google.com>
2399
2400 Add .gdb_index version 7 support.
2401
2402 * gold/dwarf_reader.cc: include <utility> (for make_pair).
2403 (Dwarf_abbrev_table::do_read_abbrevs): Check for compressed
2404 debug sections.
2405 (Dwarf_ranges_table::read_ranges_table): Likewise.
2406 (Dwarf_pubnames_table::read_section): Check for GNU-style
2407 sections, and for compressed debug sections.
2408 (Dwarf_pubnames_table::read_header): Compute end address of table.
2409 (Dwarf_pubnames_table::next_name): Return flag_byte. Check
2410 for end of list by offset, not by offset == 0.
2411 (Dwarf_info_reader::do_read_string_table): Check for compressed
2412 debug sections.
2413 * gold/dwarf_reader.h (Dwarf_pubnames_table::Dwarf_pubnames_table):
2414 Initialize new data members.
2415 (Dwarf_pubnames_table::next_name): return flag_byte.
2416 (Dwarf_pubnames_table::end_of_table_): New data member.
2417 (Dwarf_pubnames_table::is_gnu_style_): New data member.
2418 * gold/gdb-index.cc (gdb_index_version): Update to version 7.
2419 (Gdb_index_info_reader::read_pubtable): Read flag_byte.
2420 (Gdb_index_info_reader::read_pubnames_and_pubtypes): Don't
2421 read skeleton type unit DIEs.
2422 (Gdb_index::add_symbol): Add flag_byte; adjust all callers.
2423 (Gdb_index::do_write): Write flag_byte.
2424 * gold/gdb-index.h (Gdb_index::add_symbol): Add flags parameter.
2425 (Gdb_index::Cu_vector): Store flags along with cu indexes.
2426 * gold/testsuite/gdb_index_test_3.sh: Allow versions 4-7.
2427 * gold/testsuite/gdb_index_test_comm.sh: Likewise.
2428
2429 2014-01-08 H.J. Lu <hongjiu.lu@intel.com>
2430
2431 * version.cc (print_version): Update copyright year to 2014.
2432
2433 2013-12-19 Dimitry Andric <dimitry@andric.com>
2434
2435 * stringpool.cc (Stringpool_template::reserve): Add
2436 HAVE_UNORDERED_MAP case.
2437 * stringpool.cc (Stringpool_template::print_stats): Likewise.
2438
2439 2013-12-18 Cary Coutant <ccoutant@google.com>
2440
2441 * configure.ac: Check for <unordered_set> and <unordered_map>.
2442 * config.in: Regenerate.
2443 * configure: Regenerate.
2444 * system.h: Use <unordered_set> and <unordered_map> if available.
2445
2446 2013-12-10 Roland McGrath <mcgrathr@google.com>
2447
2448 * Makefile.am (install-exec-local): Prefix $(INSTALL_PROGRAM) uses
2449 with $(INSTALL_PROGRAM_ENV).
2450 * Makefile.in: Regenerate.
2451
2452 2013-11-22 Cary Coutant <ccoutant@google.com>
2453
2454 * configure.ac: Add check for which library is needed for
2455 dlopen.
2456 * configure: Regenerate.
2457
2458 2013-11-22 Cary Coutant <ccoutant@google.com>
2459
2460 * testsuite/Makefile.am (exception_x86_64_bnd_test): Use in-tree
2461 assembler.
2462 * testsuite/Makefile.in: Regenerate.
2463
2464 2013-11-17 H.J. Lu <hongjiu.lu@intel.com>
2465
2466 * x86_64.cc (Target_x86_64<size>::Scan::get_reference_flags):
2467 Handle R_X86_64_PC32_BND and R_X86_64_PLT32_BND just like
2468 R_X86_64_PC32 and R_X86_64_PLT32, respectively.
2469 (Target_x86_64<size>::Scan::local): Likewise.
2470 (Target_x86_64<size>::Scan::global): Likewise.
2471 (Target_x86_64<size>::Relocate::relocate): Likewise.
2472 (Target_x86_64<size>::Relocatable_size_for_reloc::get_size_for_reloc):
2473 Likewise.
2474 (Target_x86_64<size>::Scan::check_non_pic(): Handle
2475 R_X86_64_PC32_BND.
2476
2477 * testsuite/Makefile.am (check_PROGRAMS): Add
2478 exception_x86_64_bnd_test.
2479 (exception_x86_64_bnd_test_SOURCES): New macro.
2480 (exception_x86_64_bnd_test_DEPENDENCIES): Likewise.
2481 (exception_x86_64_bnd_test_LDFLAGS): Likewise.
2482 (exception_x86_64_bnd_test_LDADD): Likewise.
2483 (exception_x86_64_bnd_1.o): New rule.
2484 (exception_x86_64_bnd_2.o): Likewise.
2485 * testsuite/Makefile.in: Regenerated.
2486
2487 2013-11-15 Alan Modra <amodra@gmail.com>
2488
2489 * powerpc.cc (Target_powerpc::glink_section): Provide non-const
2490 accessor.
2491 (Target_powerpc::Branch_info::make_stub): Make global entry stubs.
2492 Only call ppc64_local_entry_offset for 64-bit. Restrict
2493 symval_for_branch lookup to ELFv1.
2494 (Stub_table::add_plt_call_entry): Use unsigned int off.
2495 (Output_data_glink::Address, invalid_address): New.
2496 (Output_data_glink::add_eh_frame): Move out of line. Add
2497 support for ELFv2.
2498 (Output_data_glink::add_global_entry, find_global_entry,
2499 global_entry_address): New functions.
2500 (Output_data_glink::global_entry_stubs_, end_branch_table_,
2501 ge_size): New variables.
2502 (Output_data_glink::set_final_data_size): Add global entry
2503 stub sizing.
2504 (Output_data_glink::do_write): Write global entry stubs.
2505 (Target_powerpc::Scan::reloc_needs_plt_for_ifunc): Add target
2506 parameter. Return true for ELFv2. Adjust callers.
2507 (Target_powerpc::Scan::local, global): Restrict opd lookup to
2508 ELFv1. Similarly for ifunc and dynamic relocation processing
2509 specific to ELFv1. Recognize that symbols are defined on
2510 their plt entries for ELFv2.
2511 (Target_powerpc::symval_for_branch): Assert if called for
2512 ELFv2 or ppc32.
2513 (Target_powerpc::Relocate::relocate): Use global entry plt
2514 stub for symbol value if such exists on ELFv2.
2515 (Target_powerpc::Relocate::relocate): Don't call
2516 symval_for_branch when ELFv2. Do adjust for local entry
2517 offset when ELFv2.
2518 (Target_powerpc::do_dynsym_value): Set symbols to global entry
2519 plt stub for ELFv2.
2520 (Target_powerpc::do_plt_address_for_global): Similarly.
2521
2522 2013-11-14 Cary Coutant <ccoutant@google.com>
2523
2524 Revert patch -- this did not fix the problem, and there is
2525 no race there.
2526
2527 2013-11-14 Cary Coutant <ccoutant@google.com>
2528
2529 PR gold/14860
2530 * ehframe.cc (Eh_frame_hdr::Eh_frame_hdr): Initialize lock_.
2531 (Ehframe_hdr::set_final_data_size): Allocate a Lock.
2532 * ehframe.h (Eh_frame_hdr::record_fde): Hold the lock while
2533 updating fde_offsets_.
2534 (Eh_frame_hdr::lock_): New data member.
2535
2536 2013-11-14 Cary Coutant <ccoutant@google.com>
2537
2538 * dwp.cc (Dwo_file_entry): New type.
2539 (File_list): Use Dwo_file_entry.
2540 (Dwo_file::verify): New function.
2541 (Dwo_file::verify_dwo_list): New function.
2542 (Dwo_file::sized_verify_dwo_list): New function.
2543 (Dwo_name_info_reader::visit_compilation_unit): Add dwo_id to file
2544 list.
2545 (Dwp_options): New enum type.
2546 (dwp_options): Add --verify-only.
2547 (usage): Likewise.
2548 (main): Likewise.
2549 * dwp.h (gold_info): Add declaration.
2550
2551 2013-11-14 Cary Coutant <ccoutant@google.com>
2552
2553 PR gold/14860
2554 * ehframe.cc (Eh_frame_hdr::Eh_frame_hdr): Initialize lock_.
2555 (Ehframe_hdr::set_final_data_size): Allocate a Lock.
2556 * ehframe.h (Eh_frame_hdr::record_fde): Hold the lock while
2557 updating fde_offsets_.
2558 (Eh_frame_hdr::lock_): New data member.
2559
2560 2013-11-06 Cary Coutant <ccoutant@google.com>
2561
2562 PR gold/15758
2563 * object.cc (Sized_relobj_file::do_layout): Handle .eh_frame sections
2564 before reloc sections.
2565
2566 2013-11-04 Alan Modra <amodra@gmail.com>
2567
2568 * symtab.h (Symbol::Reference_flags): Add FUNC_DESC_ABI.
2569 (Symbol::needs_dynamic_reloc): Test new flag.
2570 * powerpc.cc (needs_dynamic_reloc, use_plt_offset): Delete.
2571 (Target_powerpc::Scan::get_reference_flags): Add target param.
2572 Return FUNC_DESC_ABI for 64-bit ELFv1.
2573 (Target_powerpc::Branch_info::make_stub): Adjust get_reference_flags
2574 call.
2575 (Target_powerpc::Scan::global): Use Symbol::needs_dynamic_reloc.
2576 (Target_powerpc::Relocate::relocate): Use Symbol::use_plt_offset.
2577
2578 2013-10-31 Cary Coutant <ccoutant@google.com>
2579
2580 Restore support for dwp v2 DWARF package file format.
2581
2582 * dwarf_reader.cc (Dwarf_info_reader::visit_type_unit): Add
2583 tu_length parameter. Adjust all callers.
2584 * dwarf_reader.h (Dwarf_info_reader::visit_type_unit): Likewise.
2585 * dwp.cc: Include dwarf.h.
2586 (Section_bounds): New struct type.
2587 (Unit_set): New struct type.
2588 (Dwo_file::Dwo_file): Initialize new data member.
2589 (Dwo_file::read_compunit_index, Dwo_file::read_typeunit_index):
2590 Combine and rename to...
2591 (Dwo_file::read_unit_index): ...this.
2592 (Dwo_file::sized_read_compunit_index)
2593 (Dwo_file::sized_read_typeunit_index): Combine and rename to...
2594 (Dwo_file::sized_read_unit_index): ...this.
2595 (Dwo_file::copy_section): Remove section_name, is_str_offsets
2596 parameters; add section_id parameter.
2597 (Dwo_file::add_cu_set, Dwo_file::add_tu_set): Combine and rename to...
2598 (Dwo_file::add_unit_set): ...this.
2599 (Dwo_file::shndx_map_): Remove.
2600 (Dwo_file::sect_offsets_): New data member.
2601 (Dwp_output_file::Dwp_output_file): Initialize new data members.
2602 (Dwp_output_file::add_section): Rename to...
2603 (Dwp_output_file::add_contribution): ...this.
2604 (Dwp_output_file::add_cu_set): Combine parameters into a struct.
2605 (Dwp_output_file::add_tu_set): Likewise.
2606 (Dwp_output_file::Contribution): New type.
2607 (Dwp_output_file::Section::contributions): New data member.
2608 (Dwp_output_file::Cu_or_tu_set): Remove.
2609 (Dwp_output_file::Section::Section): New ctor.
2610 (Dwp_output_file::Dwp_index::Shndx_pool): Remove.
2611 (Dwp_output_file::Dwp_index::Section_table): New type.
2612 (Dwp_output_file::Dwp_index::Dwp_index): Initialize new data members.
2613 (Dwp_output_file::Dwp_index::enter_set): Change type of "set"
2614 parameter.
2615 (Dwp_output_file::Dwp_index::shndx_pool): Remove.
2616 (Dwp_output_file::Dwp_index::shndx_pool_end): Remove.
2617 (Dwp_output_file::Dwp_index::section_table): New member function.
2618 (Dwp_output_file::Dwp_index::section_table_end): New member function.
2619 (Dwp_output_file::Dwp_index::shndx_pool_size): Remove.
2620 (Dwp_output_file::Dwp_index::section_table_rows): New member function.
2621 (Dwp_output_file::Dwp_index::section_table_cols): New member function.
2622 (Dwp_output_file::Dwp_index::shndx_pool_): Remove.
2623 (Dwp_output_file::Dwp_index::section_table_): New data member.
2624 (Dwp_output_file::Dwp_index::section_mask_): New data member.
2625 (Dwp_output_file::add_output_section): New member function.
2626 (Dwp_output_file::write_new_section): New member function.
2627 (Dwp_output_file::write_contributions): New member function.
2628 (Dwp_output_file::section_id_map_): New data member.
2629 (class Dwo_id_info_reader): Remove.
2630 (class Unit_reader): New class.
2631 (get_dwarf_section_name): New function.
2632 (Dwo_file::read_executable): Adjust initializations of class data.
2633 (Dwo_file::read): Add support for v2 package file format.
2634 (Dwo_file::read_unit_index): Likewise.
2635 (Dwo_file::sized_read_unit_index): Likewise.
2636 (Dwo_file::copy_section): Likewise.
2637 (Dwo_file::add_unit_set): Likewise.
2638 (Dwp_output_file::add_output_section): Likewise.
2639 (Dwp_output_file::add_contribution): Likewise.
2640 (Dwp_output_file::Dwp_index::find_or_add): Use row index to check
2641 for empty slot.
2642 (Dwp_output_file::Dwp_index::enter_set): Add support for v2 package
2643 file format.
2644 (Dwp_output_file::Dwp_index::grow): Use row index to check for empty
2645 slot.
2646 (Dwp_output_file::initialize): Remove unused function.
2647 (Dwp_output_file::finalize): Add support for v2 package file format.
2648 (Dwp_output_file::write_index): Likewise.
2649 * gdb-index.cc (Gdb_index_info_reader::visit_type_unit): Adjust
2650 function prototype.
2651
2652 2013-10-31 Cary Coutant <ccoutant@google.com>
2653
2654 * configure.ac: Fix check for -fmerge-constants.
2655 * configure.ac: Regenerate.
2656
2657 2013-10-30 Roland McGrath <mcgrathr@google.com>
2658
2659 * x86_64.cc (Output_data_plt_x86_64_nacl::first_plt_entry):
2660 Correct 9-byte nop sequence to match what the assembler generates.
2661
2662 2013-10-30 Alan Modra <amodra@gmail.com>
2663
2664 * powerpc.cc (Powerpc_relobj::abiversion, set_abiversion,
2665 ppc64_local_entry_offset, ppc64_local_entry_offset,
2666 do_read_symbols): New functions.
2667 (Powerpc_relobj::e_flags_, st_other_): New vars.
2668 (Powerpc_relobj::Powerpc_relobj): Call set_abiversion.
2669 (Powerpc_dynobj::abiversion, set_abiversion): New functions.
2670 (Powerpc_relobj::e_flags_): New var.
2671 (Target_powerpc::first_plt_entry_offset, plt_entry_size): Inline
2672 and adjust for ELFv2.
2673 (Target_powerpc::abiversion, set_abiversion, stk_toc): New functions.
2674 (Powerpc_relobj::do_find_special_sections): Check no .opd in ELFv2.
2675 (Powerpc_dynobj::do_find_special_sections): Likewise.
2676 (Target_powerpc::do_define_standard_symbols): Define ".TOC.".
2677 (Target_powerpc::Branch_info::make_stub): Adjust stub destination
2678 to ELFv2 local entry.
2679 (Target_powerpc::do_relax): No thread safe barriers needed for
2680 ELFv2.
2681 (Output_data_plt_powerpc::initial_plt_entry_size_,
2682 plt_entry_size): Delete. Replace all uses with
2683 first_plt_entry_offset() and plt_entry_size().
2684 (Output_data_plt_powerpc::Output_data_plt_powerpc): Remove
2685 reserved_size parm. Update callers.
2686 (Output_data_plt_powerpc::entry_count): Update.
2687 (Output_data_plt_powerpc::first_plt_entry_offset): Make private
2688 and use Target_powerpc::first_plt_entry_offset().
2689 (Output_data_plt_powerpc::get_plt_entry_size): Similarly and
2690 rename to plt_entry_size.
2691 (Output_data_plt_powerpc::add_ifunc_entry,
2692 add_local_ifunc_entry): Adjust reloc for ELFv2.
2693 (glink_eh_frame_fde_64): Rename to glink_eh_frame_fde_64v1.
2694 (glink_eh_frame_fde_64v2): New.
2695 (Stub_table::plt_call_size): Support ELFv2 sizing.
2696 (Output_data_glink::add_eh_frame): Use the new FDE.
2697 (Output_data_glink::set_final_data_size): Adjust for ELFv2 glink.
2698 (Stub_table::do_write): Write ELFv2 stubs and glink.
2699 (Target_powerpc::Relocate::relocate): Replaces nop after call
2700 with ld 2,24(1) and adjust local offset destination for ELFv2.
2701
2702 2013-10-30 Alan Modra <amodra@gmail.com>
2703
2704 * powerpc.cc (Target_powerpc::Scan::check_non_pic): Handle new relocs.
2705 (Target_powerpc::Scan::global, local): Likewise.
2706 (Target_powerpc::Relocate::relocate): Likewise. Check for overflow
2707 on all ppc64 @h and @ha relocs.
2708
2709 2013-10-14 Alan Modra <amodra@gmail.com>
2710
2711 * output.h (Output_data_got::add_constant): Tidy.
2712 (Output_data_got::add_constant_pair): New function.
2713 * powerpc.cc (Output_data_got_powerpc): Override all Output_data_got
2714 methods used so as to first call reserve_ent().
2715
2716 2013-10-11 Roland McGrath <mcgrathr@google.com>
2717
2718 * powerpc.cc (Output_data_got_powerpc): Remove unused methods
2719 add_got_entry and add_got_entry_pair.
2720
2721 * configure.ac (TLS_GNU2_DIALECT): Use -Werror in test.
2722 (HAVE_PUBNAMES): Likewise.
2723 * configure: Regenerate.
2724
2725 * testsuite/Makefile.am: Replace '-T foo' with '-Wl,-T,foo' throughout.
2726 * testsuite/Makefile.in: Regenerate.
2727
2728 * target.h (Target::adjust_elf_header, Target::do_adjust_elf_header):
2729 Remove const from declaration.
2730 * target.cc (Sized_target::do_adjust_elf_header): Update definition.
2731 * sparc.cc (Target_sparc::do_adjust_elf_header): Likewise.
2732 * output.h (Output_file_header): Remove const from member target_
2733 and corresponding constructor argument.
2734 * output.cc (Output_file_header::Output_file_header): Update prototype.
2735 (Output_file_header::do_sized_write): Use this->target_ in place
2736 of parameters()->target().
2737
2738 * testsuite/undef_symbol.cc (Foo::get_a): New method.
2739
2740 * configure.ac (MERGE_CONSTANTS_FLAG): New check.
2741 * configure: Regenerate.
2742 * Makefile.in: Regenerate.
2743 * testsuite/merge_string_literals_1.c: Renamed to have .cc suffix.
2744 * testsuite/merge_string_literals_2.c: Likewise.
2745 * testsuite/Makefile.am
2746 (merge_string_literals_1.o, merge_string_literals_2.o): Update deps.
2747 (AM_CFLAGS, AM_CXXFLAGS): Use $(MERGE_CONSTANTS_FLAG) in place of
2748 literal -fmerge-constants.
2749 * testsuite/Makefile.in: Regenerate.
2750
2751 * i386.cc (Target_i386): Remove unused member dynbss_.
2752 * arm.cc (Target_arm): Likewise.
2753 * powerpc.cc (Target_powerpc): Likewise.
2754 * sparc.cc (Target_sparc): Likewise.
2755 * tilegx.cc (Target_tilegx): Likewise.
2756 * x86_64.cc (Target_x86_64): Likewise.
2757 * dwarf_reader.h (Dwarf_info_reader): Remove unused members
2758 type_signature_, type_offset_.
2759 * plugin.h (Plugin_hook): Remove unused member layout_.
2760 * readsyms.h (Add_symbols): Remove unused members dirpath_, dirindex_,
2761 mapfile_.
2762 (Read_member): Remove unused members input_objects_, symtab_,
2763 mapfile_, layout_.
2764 (Check_library): Remove unused member symtab_.
2765 * archive.h (Lib_group): Remove unused member lib_.
2766 * archive.cc (Lib_group::Lib_group): Update initializer.
2767 * incremental.h (Incremental_binary): Remove unused member target_.
2768 (Incremental_script_entry): Removed unused member script_.
2769 * layout.h (Write_symbols_task): Remove unused member input_objects_.
2770 * icf.h (Icf): Remove unused member num_tracked_relocs.
2771
2772 * gold-threads.h (Once): Conditionalize member was_run_lock_ on
2773 [ENABLE_THREADS && __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4], matching
2774 its only use.
2775 * gold-threads.cc (Once::Once): Likewise conditionalize initializer.
2776
2777 * archive.h: Use struct rather than class for forward declaration
2778 of Read_symbols_data.
2779
2780 2013-10-07 Cary Coutant <ccoutant@google.com>
2781
2782 PR gold/16010
2783 * testsuite/Makefile.am (icf_test): Fix dependencies.
2784 (icf_safe_test): Likewise.
2785 (icf_safe_so_test): Likewise.
2786 (large_symbol_alignment): Add empty _LDADD rule.
2787 * testsuite/Makefile.in: Regenerate.
2788
2789 2013-09-03 Pavel Chupin <pavel.v.chupin@intel.com>
2790
2791 PR gold/15927
2792 * x86_64.cc (Target_x86_64<size>::Scan::global): Use relative
2793 relocation for R_X86_64_32 on x32.
2794
2795 2013-08-27 Roland McGrath <mcgrathr@google.com>
2796
2797 * output.cc (Output_segment::set_section_addresses): Take new
2798 Target* argument. If target->isolate_execinstr() and the segment
2799 is executable and starts at a target->abi_pagesize() boundary,
2800 pad its end out to a target->abi_pagesize() boundary with code fill.
2801 * output.h (Output_segment::set_section_addresses): Update decl.
2802 * layout.h (Layout::check_output_data_for_reset_values): Take new
2803 argument RELAX_OUTPUTS.
2804 (Layout): New member relax_output_list_.
2805 (Layout::add_relax_output): New method.
2806 * layout.cc (Layout::Layout): Update constructor.
2807 (Layout::reset_relax_output): New method.
2808 (Layout::clean_up_after_relaxation): Call it.
2809 (Layout::prepare_for_relaxation): Update caller.
2810 (Layout::set_segment_offsets): Update callers of set_section_addresses.
2811 Call reset_relax_output before re-processing segments for
2812 isolate_execinstr case.
2813 (Layout::write_data): Handle relax_output_list_.
2814 (Layout::Relaxation_debug_check::check_output_data_for_reset_values):
2815 Take new argument RELAX_OUTPUTS. Assert it's an empty collection.
2816
2817 2013-08-23 Yuri Chornoivan <yurchor@ukr.net>
2818
2819 PR binutils/15834
2820 * object.h: Fix typos.
2821
2822 2013-08-16 Roland McGrath <mcgrathr@google.com>
2823
2824 * i386.cc (Target_i386_nacl::do_code_fill): New virtual function.
2825 * x86_64.cc (Target_x86_64_nacl::do_code_fill): New virtual function.
2826
2827 2013-08-07 Cary Coutant <ccoutant@google.com>
2828
2829 Revert support for v2 DWP files:
2830
2831 2013-03-01 Cary Coutant <ccoutant@google.com>
2832
2833 Add dwp support for v2 DWARF package file format.
2834 * dwarf_reader.cc (Dwarf_info_reader::visit_type_unit): Add
2835 tu_length parameter. Adjust all callers.
2836 * dwarf_reader.h (Dwarf_info_reader::visit_type_unit): Likewise.
2837 * dwp.cc: Include dwarf.h.
2838 (Section_bounds): New struct type.
2839 (Unit_set): New struct type.
2840 (Dwo_file::Dwo_file): Initialize new data member.
2841 (Dwo_file::read_compunit_index, Dwo_file::read_typeunit_index):
2842 Combine and rename to...
2843 (Dwo_file::read_unit_index): ...this.
2844 (Dwo_file::sized_read_compunit_index)
2845 (Dwo_file::sized_read_typeunit_index): Combine and rename to...
2846 (Dwo_file::sized_read_unit_index): ...this.
2847 (Dwo_file::copy_section): Remove section_name, is_str_offsets
2848 parameters; add section_id parameter.
2849 (Dwo_file::add_cu_set, Dwo_file::add_tu_set): Combine and rename to...
2850 (Dwo_file::add_unit_set): ...this.
2851 (Dwo_file::shndx_map_): Remove.
2852 (Dwo_file::sect_offsets_): New data member.
2853 (Dwp_output_file::Dwp_output_file): Initialize new data members.
2854 (Dwp_output_file::add_section): Rename to...
2855 (Dwp_output_file::add_contribution): ...this.
2856 (Dwp_output_file::add_cu_set): Combine parameters into a struct.
2857 (Dwp_output_file::add_tu_set): Likewise.
2858 (Dwp_output_file::Contribution): New type.
2859 (Dwp_output_file::Section::contributions): New data member.
2860 (Dwp_output_file::Cu_or_tu_set): Remove.
2861 (Dwp_output_file::Section::Section): New ctor.
2862 (Dwp_output_file::Dwp_index::Shndx_pool): Remove.
2863 (Dwp_output_file::Dwp_index::Section_table): New type.
2864 (Dwp_output_file::Dwp_index::Dwp_index): Initialize new data members.
2865 (Dwp_output_file::Dwp_index::enter_set): Change type of "set"
2866 parameter.
2867 (Dwp_output_file::Dwp_index::shndx_pool): Remove.
2868 (Dwp_output_file::Dwp_index::shndx_pool_end): Remove.
2869 (Dwp_output_file::Dwp_index::section_table): New member function.
2870 (Dwp_output_file::Dwp_index::section_table_end): New member function.
2871 (Dwp_output_file::Dwp_index::shndx_pool_size): Remove.
2872 (Dwp_output_file::Dwp_index::section_table_rows): New member function.
2873 (Dwp_output_file::Dwp_index::section_table_cols): New member function.
2874 (Dwp_output_file::Dwp_index::shndx_pool_): Remove.
2875 (Dwp_output_file::Dwp_index::section_table_): New data member.
2876 (Dwp_output_file::Dwp_index::section_mask_): New data member.
2877 (Dwp_output_file::add_output_section): New member function.
2878 (Dwp_output_file::write_new_section): New member function.
2879 (Dwp_output_file::write_contributions): New member function.
2880 (Dwp_output_file::section_id_map_): New data member.
2881 (class Dwo_id_info_reader): Remove.
2882 (class Unit_reader): New class.
2883 (get_dwarf_section_name): New function.
2884 (Dwo_file::read_executable): Adjust initializations of class data.
2885 (Dwo_file::read): Add support for v2 package file format.
2886 (Dwo_file::read_unit_index): Likewise.
2887 (Dwo_file::sized_read_unit_index): Likewise.
2888 (Dwo_file::copy_section): Likewise.
2889 (Dwo_file::add_unit_set): Likewise.
2890 (Dwp_output_file::add_output_section): Likewise.
2891 (Dwp_output_file::add_contribution): Likewise.
2892 (Dwp_output_file::Dwp_index::find_or_add): Use row index to check
2893 for empty slot.
2894 (Dwp_output_file::Dwp_index::enter_set): Add support for v2 package
2895 file format.
2896 (Dwp_output_file::Dwp_index::grow): Use row index to check for empty
2897 slot.
2898 (Dwp_output_file::initialize): Remove unused function.
2899 (Dwp_output_file::finalize): Add support for v2 package file format.
2900 (Dwp_output_file::write_index): Likewise.
2901 * gdb-index.cc (Gdb_index_info_reader::visit_type_unit): Adjust
2902 function prototype.
2903
2904 2013-07-31 Cary Coutant <ccoutant@google.com>
2905
2906 * object.cc (Sized_relobj::do_output_section_address): New function.
2907 (Sized_relobj): Instantiate explicitly.
2908 * object.h (Object::output_section_address): New function.
2909 (Object::do_output_section_address): New function.
2910 (Sized_relobj::do_output_section_address): New function.
2911 * powerpc.cc (Target_powerpc::symval_for_branch): Use it.
2912
2913 2013-07-30 Cary Coutant <ccoutant@google.com>
2914 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
2915
2916 * parameters.cc (Parameters::entry): Return target-specific entry
2917 symbol name.
2918 * target.h (Target::entry_symbol_name): New function.
2919 (Target_info::entry_symbol_name): New data member.
2920
2921 * arm.cc (Target_arm::arm_info): Add entry_symbol_name.
2922 * i386.cc (Target_i386::i386_info): Likewise.
2923 (Target_i386_nacl::i386_nacl_info): Likewise.
2924 * sparc.cc (Target_sparc::sparc_info): Likewise.
2925 * tilegx.cc (Target_tilegx::tilegx_info): Likewise.
2926 * x86_64.cc: (Target_x86_64::x86_64_info) Likewise.
2927 (Target_x86_64_nacl::x86_64_nacl_info) Likewise.
2928 * testsuite/testfile.cc (Target_test::test_target_info): Likewise.
2929
2930 2013-07-22 Sterling Augustine <saugustine@google.com>
2931
2932 * dwarf_reader.cc (Dwarf_pubnames_table::read_section):
2933 Convert parameter shndx to local variable. Add parameters symtab
2934 and symtab_size. Scan over section names. Find relocation
2935 section corresponding to current section. Create and initialize
2936 reloc_mapper_ and reloc_type_.
2937 (Dwarf_pubnames_table::read_header): Add assertion. Change
2938 unit_length to off_t. Initialize member unit_length_. Fill in field
2939 cu_offset_.
2940 * dwarf_reader.h (Dwarf_pubnames_table::Dwarf_pubnames_table):
2941 Initialize new fields unit_length_ and cu_offset_.
2942 (Dwarf_pubnames_table::read_section): Update prototype.
2943 (Dwarf_pubnames_table::cu_offset): New member function.
2944 (Dwarf_pubnames_table::subsection_size): Likewise.
2945 (Dwarf_pubnames_table::cu_offset_, Dwarf_pubnames_table::unit_length):
2946 New fields.
2947 (Dwarf_info_reader::symtab, Dwarf_info_reader::symtab_size): Make
2948 member functions public.
2949 * gdb_index.cc (Gdb_index_info_reader::read_pubnames_and_pubtypes):
2950 Update comment. Rework logic. Move repeated parts to...
2951 (Gdb_index_info_reader::read_pubtable): ...here. New function.
2952 (Gdb_index::Gdb_index): Initialize new fields, pubnames_table_,
2953 pubtypes_table_, and stmt_list_offset.
2954 (Gdb_index::map_pubtable_to_dies, Gdb_index::find_pubname_offset,
2955 Gdb_index::find_pubtype_offset,
2956 Gdb_index::map_pubnames_and_types_to_dies): Define new functions.
2957 (Gdb_index::pubnames_read): Update prototype and rework logic.
2958 * gdb_index.h (Gdb_index_info_reader, Dwarf_pubnames_table):
2959 Forward declare.
2960 (Gdb_index::map_pubtable_to_dies, Gdb_index::find_pubname_offset,
2961 Gdb_index::find_pubtype_offset, Gdb_index::pubnames_table)
2962 Gdb_index::pubtypes_table, Gdb_index::map_pubnames_and_types_to_dies,
2963 Gdb_index::map_pubtable_to_dies):
2964 Declare functions.
2965 (Gdb_index::pubnames_read): Update declaration.
2966 (Gdb_index::Pubname_offset_map): New type.
2967 (Gdb_index::cu_pubname_map_, Gdb_index::cu_pubtype_map_,
2968 Gdb_index::pubnames_table_, Gdb_index::pubtypes_table_,
2969 Gdb_index::stmt_list_offset): Declare.
2970 (Gdb_index::pubnames_shndx_, Gdb_index::pubnames_offet_,
2971 Gdb_index::pubtypes_object_, Gdb_index::pubtypes_shndx_)
2972 Gdb_index::pubtypes_offset_): Remove.
2973
2974 2013-07-19 Roland McGrath <mcgrathr@google.com>
2975
2976 * options.h (General_options): Add -Trodata-segment option.
2977 * parameters.cc (Parameters::check_rodata_segment): New function.
2978 (Parameters::set_target_once): Call it.
2979 * parameters.h (Parameters): Declare it (private member function).
2980 * layout.cc (load_seg_unusable_for_headers): New function, broken
2981 out of Layout::relaxation_loop_body. If TARGET->isolate_execinstr()
2982 then validate rodata segment rather than text segment.
2983 (relaxation_loop_body): Call that.
2984 (is_text_segment): New function. Don't admit a non-executable
2985 segment if TARGET->isolate_execinstr().
2986 (set_segment_offsets): Call it. Honor -Trodata-segment option.
2987
2988 2013-07-15 Shawn Landden <shawnlandden@gmail.com>
2989
2990 PR gold/15070
2991 * fileread.h (File_read::get_view): Clarify comment about ALIGNED.
2992 * nacl.h (Sniff_file::View::View): Request aligned view.
2993
2994 2013-07-11 Cary Coutant <ccoutant@google.com>
2995
2996 * powerpc.cc (Target_powerpc::write_branch_lookup_table): Use
2997 correct BRLT entry size.
2998
2999 2013-07-03 Alan Modra <amodra@gmail.com>
3000
3001 * powerpc.cc (Target_powerpc::Relocate::relocate): Update self-call
3002 comment.
3003
3004 2013-07-01 Cary Coutant <ccoutant@google.com>
3005
3006 * dwarf_reader.cc (Dwarf_ranges_table::read_ranges_table): Save
3007 reloc_type_.
3008 (Dwarf_ranges_table::read_range_list): Call lookup_reloc.
3009 (Dwarf_ranges_table::lookup_reloc): New function.
3010 * dwarf_reader.h (Dwarf_ranges_table::Dwarf_ranges_table): Initialize
3011 reloc_type_.
3012 (Dwarf_ranges_table::lookup_reloc): New function.
3013 (Dwarf_ranges_table::reloc_type_): New data member.
3014
3015 2013-06-27 Jing Yu <jingyu@google.com>
3016
3017 PR gold/15662
3018 * powerpc.cc (Output_data_brlt_powerpc::reset_brlt_sizes): New
3019 function.
3020 (Output_data_brlt_powerpc::finalize_brlt_sizes): New function.
3021 (Target_powerpc::do_relax): Call the above.
3022
3023 2013-06-27 Cary Coutant <ccoutant@google.com>
3024
3025 * powerpc.cc (Target_powerpc::symval_for_branch): Don't assert
3026 on garbage collected .opd section.
3027
3028 2013-06-27 Alan Modra <amodra@gmail.com>
3029
3030 * powerpc.cc (Target_powerpc::do_gc_add_reference): Test dst_shndx
3031 is non-zero.
3032 (Target_powerpc::do_gc_mark_symbols): Likewise for sym->shndx().
3033 (Target_powerpc::do_function_location): Likewise for loc->shndx.
3034
3035 2013-06-14 Cary Coutant <ccoutant@google.com>
3036
3037 * resolve.cc (Symbol::override_base): Don't override st_type
3038 from plugin placeholder symbols.
3039 (Symbol_table::resolve): Likewise.
3040 (Symbol_table::should_override): Don't complain about TLS mismatch
3041 if the TO symbol is a plugin placeholder.
3042 * testsuite/Makefile.am (plugin_test_tls): New test.
3043 * testsuite/Makefile.in: Regenerate.
3044 * testsuite/plugin_test_tls.sh: New test script.
3045 * testsuite/two_file_test_2_tls.cc: New test source.
3046 * testsuite/two_file_test_tls.cc: New test source.
3047
3048 2013-06-05 Alexander Ivchenko <alexander.ivchenko@intel.com>
3049
3050 * layout.cc (Layout::set_segment_offsets): Taking care of the case when
3051 the maximum segment alignment is larger than the page size.
3052 * testsuite/Makefile.am (large_symbol_alignment): Test that Gold
3053 correctly aligns the symbols with large alignemnt.
3054 * testsuite/Makefile.in: Regenerate.
3055 * testsuite/large_symbol_alignment.cc: New file.
3056
3057 2013-05-30 Alexander Ivchenko <alexander.ivchenko@intel.com>
3058 Sriraman Tallam <tmsriram@google.com>
3059
3060 * options.h (sort_section): New option.
3061 * output.h (Input_section_sort_section_prefix_special_ordering_compare):
3062 Rename from Input_section_sort_section_name_special_ordering_compare.
3063 (Input_section_sort_section_name_compare): New struct.
3064 * output.cc (Output_section::Input_section_sort_section_name_compare::
3065 operator()): New function.
3066 (Output_section::sort_attached_input_sections): Use new sort function
3067 for .text if --sort-section=name is specified.
3068 * layout.cc (Layout::make_output_section):
3069 Add sorting by name when --sort-section=name is specified.
3070 * testsuite/Makefile.am (text_section_grouping): Test option
3071 --sort-section=name.
3072 * testsuite/Makefile.in: Regenerate.
3073 * testsuite/section_sorting_name.cc: New file.
3074 * testsuite/section_sorting_name.sh: New file.
3075
3076 2013-05-21 Cary Coutant <ccoutant@google.com>
3077
3078 * symtab.h (Symbol::is_cxx_vtable): New function.
3079 * target-reloc.h (relocate_section): Check for vtable symbol.
3080 * testsuite/Makefile.am (missing_key_func.sh): New test case.
3081 * testsuite/Makefile.in: Regenerate.
3082 * testsuite/missing_key_func.cc: New test source.
3083 * testsuite/missing_key_func.sh: New test script.
3084
3085 2013-05-21 Cary Coutant <ccoutant@google.com>
3086
3087 * object.cc (Sized_relobj_file::get_symbol_location_info): Set
3088 type of enclosing symbol.
3089 (Relocate_info::location): Check symbol type when describing symbol.
3090 * object.h (Symbol_location_info): Remove unused line_number;
3091 add enclosing_symbol_type.
3092 * testsuite/debug_msg.sh: Adjust expected output.
3093
3094 2013-05-13 Cary Coutant <ccoutant@google.com>
3095
3096 * configure.ac: Export DEFAULT_TARGET.
3097 * configure: Regenerate.
3098 * Makefile.in: Regenerate.
3099 * testsuite/Makefile.am: Add .EXPORT_ALL_VARIABLES.
3100 * testsuite/Makefile.in: Regenerate.
3101 * testsuite/debug_msg.sh: Delete duplicate tests.
3102 Don't check undef_int error message match for powerpc where the
3103 source file and line number aren't available.
3104
3105 2013-05-10 Roland McGrath <mcgrathr@google.com>
3106
3107 * options.h (General_options): Add --rosegment-gap option.
3108 * options.cc (finalize): --rosegment-gap implies --rosegment.
3109 * layout.cc (set_segment_offsets): Let user option override
3110 target->rosegment_gap().
3111
3112 2013-05-10 Roland McGrath <mcgrathr@google.com>
3113
3114 * options.h (General_options): Remove leading space from help
3115 messages for -nostdlib and --rosegment.
3116
3117 2013-05-03 Maciej W. Rozycki <macro@codesourcery.com>
3118
3119 PR ld/15365
3120 * layout.cc (Layout::finalize): Make __ehdr_start STV_HIDDEN.
3121
3122 2013-05-03 Alan Modra <amodra@gmail.com>
3123
3124 * merge.cc (Output_merge_string::do_add_input_section): Correct
3125 scan for number of strings. Rename vars to avoid shadowing.
3126 Include missing terminator in input_size_.
3127
3128 2013-05-01 H.J. Lu <hongjiu.lu@intel.com>
3129
3130 * merge.cc (Output_merge_string<Char_type>::do_add_input_section):
3131 Restore empty string handling.
3132
3133 2013-05-01 Cary Coutant <ccoutant@google.com>
3134
3135 * stringpool.cc (Stringpool_template::new_key_offset): Fix
3136 uninitialized warning.
3137
3138 2013-04-29 Alexander Ivchenko <alexander.ivchenko@intel.com>
3139
3140 * output.cc (Output_section::add_merge_input_section): Allow
3141 to merge sections if the alignment is more than character size.
3142 * merge.h (Output_merge_string::Output_merge_string): Remove
3143 assert.
3144 * merge.cc (Output_merge_string<Char_type>::do_add_input_section): Count
3145 only not-null strings. Check the alignment of strings.
3146 * stringpool.h
3147 (Stringpool_template<Stringpool_char>::Stringpool_template): Add
3148 alignment as the argument.
3149 (Stringpool_template<Stringpool_char>::addralign_): New class member.
3150 * stringpool.cc (Stringpool_template<Stringpool_char>::new_key_offset):
3151 Align non-zero length strings according to the addralign_.
3152 (Stringpool_template<Stringpool_char>::set_string_offsets):
3153 Updating offsets according to the given alignment.
3154 * testsuite/Makefile.am (text_section_grouping): Test if string
3155 literals are getting merged.
3156 * testsuite/Makefile.in: Regenerate.
3157 * testsuite/merge_string_literals_1.c: New file.
3158 * testsuite/merge_string_literals_2.c: Ditto.
3159 * testsuite/merge_string_literals.sh: Ditto.
3160
3161 2013-04-26 Ian Lance Taylor <iant@google.com>
3162
3163 * target-reloc.h (relocate_section): If the reloc offset is out of
3164 range, pass VIEW as NULL to relocate.relocate.
3165 * arm.cc (Target_arm:Relocate::relocate): Check for a NULL view.
3166 * i386.cc (Target_i386::Relocate::relocate): Likewise.
3167 * powerpc.cc (Target_powerpc::Relocate::relocate): Likewise.
3168 * sparc.cc (Target_sparc::Relocate::relocate): Likewise.
3169 * tilegx.cc (Target_tilegx::Relocate::relocate): Likewise.
3170 * x86_64.cc (Target_x86_64::Relocate::relocate): Likewise.
3171
3172 2013-04-26 Geoff Pike <gpike@chromium.org>
3173
3174 * gold.cc (queue_final_tasks): invoke layout->queue_build_id_tasks().
3175 * layout.cc (Hash_task): New class.
3176 (Layout::queue_build_id_tasks): New function.
3177 (Layout::write_build_id): Handle single-thread portion of build ID
3178 computation. (In some cases, all of it is single-threaded.) Replace
3179 {sha1,md5}_process_bytes with {sha1,md5}_buffer to get the same
3180 functionality in fewer lines of code.
3181 * layout.h (Layout::queue_build_id_tasks): New function declaration.
3182 * options.h (General_options): make "--build-id" default to tree
3183 rather than sha1. Add two new options related to --build-id=tree:
3184 --build-id-chunk-size-for-treehash and
3185 --build-id-min-file-size-for-treehash.
3186 * Makefile.am: add testing of --build-id=tree and related new options
3187 (these tests will be invoked by "make check").
3188 * Makefile.in: Regenerate.
3189
3190 2013-04-25 Alan Modra <amodra@gmail.com>
3191
3192 * configure.tgt: Add powerpcle and powerpc64le.
3193
3194 2013-04-22 Alan Modra <amodra@gmail.com>
3195
3196 PR gold/15355
3197 * layout.cc (Layout::segment_precedes): Allow more than one
3198 segment with the same type and flags.
3199
3200 2013-04-15 Cary Coutant <ccoutant@google.com>
3201
3202 * layout.cc (Layout::set_relocatable_section_offsets): Don't
3203 allocate space in file for BSS sections.
3204
3205 2013-04-15 Cary Coutant <ccoutant@google.com>
3206
3207 * script-sections.cc (Orphan_output_section): Reset address
3208 to zero after each orphaned section for relocatable links.
3209
3210 2013-04-15 Cary Coutant <ccoutant@google.com>
3211
3212 * symtab.cc (Symbol_table::sized_write_globals): Subtract
3213 section starting address for relocatable link.
3214 * testsuite/Makefile.am (script_test_11): New test.
3215 * testsuite/Makefile.in: Regenerate.
3216 * testsuite/script_test_11.c: New source file.
3217 * testsuite/script_test_11.t: New linker script.
3218
3219 2013-04-13 Alan Modra <amodra@gmail.com>
3220
3221 * powerpc.cc (Stub_control::can_add_to_stub_group): Don't set
3222 owner when sections are not adjacent and exceed group size.
3223 (Target_powerpc::group_sections): Handle corner case.
3224 (Target_powerpc::Branch_info::make_stub): Handle case where
3225 stub table doesn't exist due to branches in non-exec sections.
3226 (Target_powerpc::Relocate::relocate): Likewise.
3227
3228 2013-04-11 Alan Modra <amodra@gmail.com>
3229
3230 PR gold/15354
3231 * powerpc.cc (Target_powerpc::make_brlt_section): Name section
3232 .branch_lt to match bfd ld. Adjust comments throughout file.
3233
3234 2013-04-04 Ian Lance Taylor <iant@google.com>
3235
3236 GCC PR c++/56840
3237 * object.cc (do_layout_deferred_sections): Handle .eh_frame
3238 sections before checking whether they are included in the link.
3239
3240 2013-03-29 Sriraman Tallam <tmsriram@google.com>
3241
3242 * archive.cc (Archive::get_elf_object_for_member): Create the elf
3243 object before calling the plugin claim_file handler. Pass the elf
3244 object of the archive to the plugin. Delete the elf object if the
3245 plugin claims the file.
3246
3247 2013-03-21 Alan Modra <amodra@gmail.com>
3248
3249 * layout.cc (Layout::set_segment_offsets): Accept writable .text
3250 segment when omagic.
3251
3252 2013-03-21 Alan Modra <amodra@gmail.com>
3253
3254 * dwp.cc (Dwp_output_file::add_contribution): Avoid signed/unsigned
3255 comparison warning.
3256 * layout.cc (Layout::create_dynamic_symtab): Avoid "may be used
3257 uninitialized" warning.
3258
3259 2013-03-20 Alan Modra <amodra@gmail.com>
3260
3261 * symtab.h (Symbol::clear_version): New function.
3262 * symtab.cc (Symbol_table::set_dynsym_indexes): Don't set object
3263 is_needed by weak references. Clear version for symbols defined
3264 in as-needed objects that are not needed.
3265
3266 2013-03-15 Alan Modra <amodra@gmail.com>
3267
3268 * powerpc.cc (Target_powerpc::Scan::reloc_needs_plt_for_ifunc): Make
3269 static and public. Add report_err param. Return false for data refs.
3270 (Target_powerpc::rela_dyn_section): New overloaded function.
3271 (Target_powerpc::plt_, iplt_): Elucidate.
3272 (Output_data_plt_powerpc::entry_count): Handle current_data_size()==0.
3273 (Output_data_plt_powerpc::do_write): Don't write .iplt.
3274 (Output_data_plt_powerpc::plt_entry_count): Don't add .iplt entries.
3275 (Target_powerpc::Scan::local, global): Adjust reloc_needs_plt_for_ifunc
3276 calls. Put ifunc dynamic relocs in irela_dyn_section. Only
3277 push_branch and make_plt_entry for ifunc syms when
3278 reloc_needs_plt_for_ifunc.
3279 (Target_powerpc::Relocate::relocate): Don't use plt entry value
3280 for ifunc unless reloc_needs_plt_for_ifunc.
3281
3282 2013-03-15 Alan Modra <amodra@gmail.com>
3283
3284 * gc.h (gc_process_relocs): Don't look through function descriptors.
3285 * icf.cc (get_section_contents): Do so here instead.
3286
3287 2013-03-13 Alan Modra <amodra@gmail.com>
3288
3289 * powerpc.cc (is_branch_reloc): Forward declare.
3290 (Target_powerpc::do_can_check_for_function_pointers): New predicate.
3291 (Target_powerpc::Scan::local_reloc_may_be_function_pointer): Return
3292 false for 64-bit, true for 32-bit non-branch relocs.
3293 (Target_powerpc::Scan::global_reloc_may_be_function_pointer): Likewise.
3294 * testsuite/Makefile.am (icf_test): Use linker map file instead of
3295 nm output.
3296 (icf_safe_test): Generate linker map file as well as nm output.
3297 (icf_safe_so_test): Likewise.
3298 * testsuite/Makefile.in: Regenerate.
3299 * testsuite/icf_test.sh: Parse linker map file to determine
3300 section folding.
3301 * testsuite/icf_safe_test.sh: Likewise. Expect folding for PowerPC.
3302 * testsuite/icf_safe_so_test.sh: Likewise.
3303 (X86_32_or_ARM_specific_safe_fold): Merge into..
3304 (arch_specific_safe_fold): ..this.
3305 (X86_64_specific_safe_fold): Delete unused function.
3306
3307 2013-03-12 Alan Modra <amodra@gmail.com>
3308
3309 * gc.h (gc_process_relocs): Look through function descriptors
3310 to determine shndx, symvalue and addend used by ICF. Tidy
3311 variable duplication.
3312
3313 2013-03-11 Alan Modra <amodra@gmail.com>
3314
3315 * gold.cc (queue_middle_tasks): Move detect_odr_violations..
3316 * layout.cc (Layout_task_runner::run): ..to here.
3317 * symtab.h (struct Symbol_location): Extract from..
3318 (class Symbol_table): ..here.
3319 * symtab.cc (Symbol_table::linenos_from_loc): Invoke function_location.
3320 * target.h (class Target): Add function_location and
3321 do_function_location functions.
3322 (class Sized_target): Add do_function_location.
3323 * object.h (class Sized_relobj_file): Move find_shdr..
3324 (class Object): ..to here.
3325 * object.cc: Likewise. Update to suit. Instantiate.
3326 (Sized_relobj_file::find_eh_frame): Update find_shdr call.
3327 * powerpc.cc (class Powerpc_dynobj): New.
3328 (Target_powerpc::do_function_location): New function.
3329 (Powerpc_relobj::do_find_special_sections): Update find_shdr call.
3330 (Powerpc_dynobj::do_read_symbols): New function.
3331 (Target_powerpc::do_make_elf_object): Make a Powerpc_dynobj.
3332
3333 2013-03-08 Ian Lance Taylor <iant@google.com>
3334
3335 * options.cc (General_options::string_to_object_format): Accept
3336 "default".
3337
3338 2013-03-08 Alan Modra <amodra@gmail.com>
3339
3340 * ehframe.h (Post_fdes) Make it a vector of Post_fde rather than
3341 pointer to Post_fde.
3342 (struct Post_fde): Move definition to here..
3343 * ehframe.cc (struct Post_fde): ..from here.
3344 (Cie::write): Don't alloc Post_fde.
3345 (Eh_frame::do_sized_write): Update. Don't free Post_fde.
3346
3347 2013-03-07 Alan Modra <amodra@gmail.com>
3348
3349 * testsuite/discard_locals_relocatable_test.c: Add a powerpc
3350 relocation referencing .LC0.
3351 * testsuite/discard_locals_test.sh: Remove FIXMEs.
3352
3353 2013-03-07 Alan Modra <amodra@gmail.com>
3354
3355 * testsuite/ifunc-sel.h (ifunc_sel, ifunc_one): Mark
3356 always_inline. Add assembly for powerpc to avoid GOT.
3357
3358 2013-03-07 Alan Modra <amodra@gmail.com>
3359
3360 * testsuite/script_test_10.sh: Don't test .bss section
3361 header number.
3362
3363 2013-03-06 Alan Modra <amodra@gmail.com>
3364
3365 * powerpc.cc (class Powerpc_relobj): Move some member functions.
3366 (Target_powerpc::symval_for_branch): Add symtab param. Update
3367 all callers. Handle folded sections.
3368 (Target_powerpc::do_gc_add_reference): Don't cast dynamic object
3369 to Powerpc_relobj.
3370 (Global_symbol_visitor_opd::operator()): Likewise.
3371
3372 2013-03-04 Alan Modra <amodra@gmail.com>
3373
3374 * testsuite/Makefile.am (final_layout_script.lds): Add .sbss.
3375 * testsuite/Makefile.in: Regenerate.
3376
3377 2013-03-01 Cary Coutant <ccoutant@google.com>
3378
3379 Add dwp support for v2 DWARF package file format.
3380 * dwarf_reader.cc (Dwarf_info_reader::visit_type_unit): Add
3381 tu_length parameter. Adjust all callers.
3382 * dwarf_reader.h (Dwarf_info_reader::visit_type_unit): Likewise.
3383 * dwp.cc: Include dwarf.h.
3384 (Section_bounds): New struct type.
3385 (Unit_set): New struct type.
3386 (Dwo_file::Dwo_file): Initialize new data member.
3387 (Dwo_file::read_compunit_index, Dwo_file::read_typeunit_index):
3388 Combine and rename to...
3389 (Dwo_file::read_unit_index): ...this.
3390 (Dwo_file::sized_read_compunit_index)
3391 (Dwo_file::sized_read_typeunit_index): Combine and rename to...
3392 (Dwo_file::sized_read_unit_index): ...this.
3393 (Dwo_file::copy_section): Remove section_name, is_str_offsets
3394 parameters; add section_id parameter.
3395 (Dwo_file::add_cu_set, Dwo_file::add_tu_set): Combine and rename to...
3396 (Dwo_file::add_unit_set): ...this.
3397 (Dwo_file::shndx_map_): Remove.
3398 (Dwo_file::sect_offsets_): New data member.
3399 (Dwp_output_file::Dwp_output_file): Initialize new data members.
3400 (Dwp_output_file::add_section): Rename to...
3401 (Dwp_output_file::add_contribution): ...this.
3402 (Dwp_output_file::add_cu_set): Combine parameters into a struct.
3403 (Dwp_output_file::add_tu_set): Likewise.
3404 (Dwp_output_file::Contribution): New type.
3405 (Dwp_output_file::Section::contributions): New data member.
3406 (Dwp_output_file::Cu_or_tu_set): Remove.
3407 (Dwp_output_file::Section::Section): New ctor.
3408 (Dwp_output_file::Dwp_index::Shndx_pool): Remove.
3409 (Dwp_output_file::Dwp_index::Section_table): New type.
3410 (Dwp_output_file::Dwp_index::Dwp_index): Initialize new data members.
3411 (Dwp_output_file::Dwp_index::enter_set): Change type of "set"
3412 parameter.
3413 (Dwp_output_file::Dwp_index::shndx_pool): Remove.
3414 (Dwp_output_file::Dwp_index::shndx_pool_end): Remove.
3415 (Dwp_output_file::Dwp_index::section_table): New member function.
3416 (Dwp_output_file::Dwp_index::section_table_end): New member function.
3417 (Dwp_output_file::Dwp_index::shndx_pool_size): Remove.
3418 (Dwp_output_file::Dwp_index::section_table_rows): New member function.
3419 (Dwp_output_file::Dwp_index::section_table_cols): New member function.
3420 (Dwp_output_file::Dwp_index::shndx_pool_): Remove.
3421 (Dwp_output_file::Dwp_index::section_table_): New data member.
3422 (Dwp_output_file::Dwp_index::section_mask_): New data member.
3423 (Dwp_output_file::add_output_section): New member function.
3424 (Dwp_output_file::write_new_section): New member function.
3425 (Dwp_output_file::write_contributions): New member function.
3426 (Dwp_output_file::section_id_map_): New data member.
3427 (class Dwo_id_info_reader): Remove.
3428 (class Unit_reader): New class.
3429 (get_dwarf_section_name): New function.
3430 (Dwo_file::read_executable): Adjust initializations of class data.
3431 (Dwo_file::read): Add support for v2 package file format.
3432 (Dwo_file::read_unit_index): Likewise.
3433 (Dwo_file::sized_read_unit_index): Likewise.
3434 (Dwo_file::copy_section): Likewise.
3435 (Dwo_file::add_unit_set): Likewise.
3436 (Dwp_output_file::add_output_section): Likewise.
3437 (Dwp_output_file::add_contribution): Likewise.
3438 (Dwp_output_file::Dwp_index::find_or_add): Use row index to check
3439 for empty slot.
3440 (Dwp_output_file::Dwp_index::enter_set): Add support for v2 package
3441 file format.
3442 (Dwp_output_file::Dwp_index::grow): Use row index to check for empty
3443 slot.
3444 (Dwp_output_file::initialize): Remove unused function.
3445 (Dwp_output_file::finalize): Add support for v2 package file format.
3446 (Dwp_output_file::write_index): Likewise.
3447 * gdb-index.cc (Gdb_index_info_reader::visit_type_unit): Adjust
3448 function prototype.
3449
3450 2013-03-01 Cary Coutant <ccoutant@google.com>
3451
3452 * dwarf_reader.cc (Dwarf_info_reader::check_buffer): Move
3453 function into class definition in header file.
3454 (Dwarf_info_reader::warn_corrupt_debug_section): New function.
3455 * dwarf_reader.h (Dwarf_info_reader::warn_corrupt_debug_section):
3456 New function.
3457 (Dwarf_info_reader::check_buffer): Move here from .cc file.
3458
3459 2013-02-28 Alan Modra <amodra@gmail.com>
3460
3461 * target.h (Target::plt_fde_location, do_plt_fde_location): Declare.
3462 * target.cc (Target::do_plt_fde_location): New function.
3463 * ehframe.h (class FDE): Add post_map field to u_.from_linker,
3464 accessor function, and constructor param.
3465 (struct Post_fde, Post_fdes): Declare.
3466 (Cie::write): Add post_fdes param.
3467 * ehframe.cc (Fde::write): Use plt_fde_location.
3468 (struct Post_fde): Define.
3469 (Cie::write): Stash FDEs added post merge mapping.
3470 (Eh_frame::add_ehframe_for_plt): Assert no new CIEs after mapping.
3471 Adjust Fde constructor call. Bump final_data_size_ for post map FDEs.
3472 (Eh_frame::do_sized_write): Arrange to write post map FDES after
3473 other FDEs.
3474 * powerpc.cc (Target_powerpc::do_plt_fde_location): New function.
3475 (Target_powerpc::has_glink): New function.
3476 (Target_powerpc::do_relax): Add eh_frame info for stubs.
3477 (struct Eh_cie, eh_frame_cie, glink_eh_frame_fde_64,
3478 glink_eh_frame_fde_32, default_fde): New data.
3479 (Stub_table::eh_frame_added_): New var.
3480 (Stub_table::find_long_branch_entry, stub_address, stub_offset):
3481 Make const.
3482 (Stub_table::add_eh_frame): New function.
3483 (Output_data_glink::add_eh_frame): New function.
3484 (Target_powerpc::make_glink_section): Call add_eh_frame.
3485
3486 2013-02-15 Ian Lance Taylor <iant@google.com>
3487
3488 * options.h (DEFINE_uint64_alias): Define.
3489 (class General_options): Add -Ttext-segment as an alias for
3490 -Ttext.
3491
3492 2013-02-15 Alan Modra <amodra@gmail.com>
3493
3494 * powerpc.cc (Stub_table::plt_off): New function, extracted from..
3495 (Stub_table::do_write): ..here, two places.
3496 (Stub_table::plt_call_size): Use it here too.
3497
3498 2013-02-11 Ian Lance Taylor <iant@google.com>
3499
3500 * descriptors.cc (Descriptors::close_all): New function.
3501 * descriptors.h (class Descriptors): Declare close_all.
3502 (close_all_descriptors): New inline function.
3503 * plugin.cc: Include "descriptors.h".
3504 (Plugin_manager::cleanup): Call close_all_descriptors.
3505
3506 2013-02-06 Alan Modra <amodra@gmail.com>
3507
3508 * README: Update coding style link.
3509
3510 2013-01-28 Cary Coutant <ccoutant@google.com>
3511
3512 * dwp.cc (File_list): New typedef.
3513 (Dwo_name_info_reader): New class.
3514 (Dwo_id_info_reader::Dwo_id_info_reader): Remove unused parameters.
3515 (Dwo_id_info_reader::visit_top_die): Remove unused member function.
3516 (Dwo_file::~Dwo_file): Delete input_file_ after obj_.
3517 (Dwo_file::read_executable): New function.
3518 (Dwo_file::read): Move common setup code to ...
3519 (Dwo_file::make_object): ... here.
3520 (dwp_options): Add --exec/-e.
3521 (usage): Likewise.
3522 (main): Likewise.
3523
3524 2013-01-24 Sriraman Tallam <tmsriram@google.com>
3525
3526 * layout.cc (Layout::layout): Check for option text_reorder.
3527 (Layout::make_output_section): Ditto.
3528 * options.h (text_reorder): New option.
3529 * output.cc (Input_section_sort_compare): Remove special ordering
3530 of section names.
3531 (Output_section::
3532 Input_section_sort_section_name_special_ordering_compare::
3533 operator()): New function.
3534 (Output_section::sort_attached_input_sections): Use new sort function
3535 for .text.
3536 * output.h (Input_section_sort_section_name_special_ordering_compare):
3537 New struct.
3538 * testsuite/Makefile.am (text_section_grouping): Test option
3539 --no-text-reorder
3540 * testsuite/Makefile.in: Regenerate.
3541 * testsuite/text_section_grouping.sh: Check order of functions without
3542 default text reordering.
3543
3544 2013-01-18 Mike Frysinger <vapier@gentoo.org>
3545
3546 * options.h (General_options): Change default to true for new_dtags.
3547
3548 2013-01-18 Mike Frysinger <vapier@gentoo.org>
3549
3550 * layout.cc (Layout::finish_dynamic_section): Only add DT_RPATH
3551 when enable_new_dtags is false. Only add DT_RUNPATH when
3552 enable_new_dtags is true.
3553
3554 2013-01-17 Serge Pavlov <serge.v.pavlov@gmail.com>
3555
3556 * powerpc.cc (Stub_table::find_plt_call_entry): Make types
3557 used in declaration and definition consistent.
3558 (Target_powerpc::symval_for_branch): Ditto.
3559
3560 2013-01-16 Sriraman Tallam <tmsriram@google.com>
3561
3562 * testsuite/plugin_final_layout.cc: Fix comment.
3563
3564 2013-01-16 Sriraman Tallam <tmsriram@google.com>
3565
3566 * layout.cc (Layout::layout): Do not do default sorting for
3567 text sections when section ordering is specified.
3568 (make_output_section): Ditto.
3569 * testsuite/plugin_final_layout.cc: Name the function sections
3570 to catch reordering issues.
3571
3572 2013-01-15 Alan Modra <amodra@gmail.com>
3573
3574 * powerpc.cc (Target_powerpc::do_relax): Default shared libs to
3575 plt-thread-safe.
3576
3577 2013-01-15 Alan Modra <amodra@gmail.com>
3578
3579 * testsuite/Makefile.am (final_layout_script.lds): Handle .got section.
3580 * testsuite/Makefile.in: Regenerate.
3581
3582 2013-01-14 Alan Modra <amodra@gmail.com>
3583
3584 * testsuite/Makefile.am (MOSTLYCLEANFILES): Add various output files.
3585 * testsuite/Makefile.in: Regenerate.
3586
3587 2013-01-11 Pavel Chupin <pavel.v.chupin@intel.com>
3588
3589 PR bfd/14430
3590 Fix mingw gold build with plugins enabled
3591 * Makefile.am: Replace -ldl with @DLOPEN_LIBS@.
3592 * configure.ac: Export DLOPEN_LIBS and add headers check.
3593 * plugin.cc: Handle non-dlfcn case.
3594 * Makefile.in: Regenerate.
3595 * config.in: Regenerate.
3596 * configure: Regenerate.
3597 * testsuite/Makefile.in: Regenerate.
3598
3599 2013-01-09 Sriraman Tallam <tmsriram@google.com>
3600
3601 * output.h (sort_attached_input_sections): Change to be public.
3602 * script-sections.cc
3603 (Output_section_definition::set_section_addresses): Sort
3604 attached input sections according to section order before linker
3605 script assigns section addresses.
3606 (Orphan_output_section::set_section_addresses): Sort
3607 attached input sections according to section order before linker
3608 script assigns section addresses.
3609 * Makefile.am (final_layout.sh): Use a simple linker script to
3610 check if section ordering still works.
3611 * Makefile.in: Regenerate.
3612
3613 2013-01-09 Ben Cheng <bccheng@google.com>
3614
3615 * arm.cc (Target_arm::attributes_accept_div): New function.
3616 (Target_arm::attributes_forbid_div): New function.
3617 (Target_arm::merge_object_attributes): Merge the Tag_DIV_use
3618 attribute using the same new functions as what bfd/elf32_arm.c
3619 does.
3620
3621 2013-01-07 Cary Coutant <ccoutant@google.com>
3622
3623 PR gold/14993
3624 * output.cc (Output_section::add_input_section): For incremental
3625 updates, don't track input sections that are allocated from patch
3626 space.
3627
3628 2013-01-07 H.J. Lu <hongjiu.lu@intel.com>
3629 Ian Lance Taylor <iant@google.com>
3630
3631 PR gold/14897
3632 * configure.ac (--enable-ld): Removed.
3633 (install_as_default): Set to yes only for --enable-gold=default
3634 or --disable-ld.
3635 * configure: Regenerated.
3636
3637 2013-01-07 H.J. Lu <hongjiu.lu@intel.com>
3638
3639 * options.h (General_options): Add -fuse-ld= for GCC linker
3640 option compatibility.
3641
3642 2013-01-04 Cary Coutant <ccoutant@google.com>
3643
3644 * configure.ac: Fix typo restoring CXXFLAGS.
3645 * configure: Regenerate.
3646
3647 2013-01-04 Cary Coutant <ccoutant@google.com>
3648
3649 * testsuite/Makefile.am (CXXLINK_S): New macro.
3650 (debug_msg_so.err, debug_msg_ndebug.err): Use CXXLINK_S.
3651 * testsuite/Makefile.in: Regenerate.
3652
3653 2013-01-02 H.J. Lu <hongjiu.lu@intel.com>
3654
3655 * version.cc (print_version): Update copyright year to 2013.
3656
3657 2012-12-20 Ian Lance Taylor <iant@google.com>
3658
3659 * layout.cc (Layout::special_ordering_of_input_section): New
3660 function.
3661 (Layout::layout): If input section requires special ordering, must
3662 sort input sections.
3663 (Layout::make_output_section): May sort .text input sections.
3664 (Layout::is_section_name_prefix_grouped): Remove.
3665 * layout.h (class Layout): Declare
3666 special_ordering_of_input_section. Don't declare
3667 is_section_name_prefix_grouped.
3668 * output.cc (Output_section::add_input_section): Revert last
3669 change.
3670 (Output_section::Input_section_sort::match_file_name): Don't crash
3671 if called on output section data.
3672 (Output_section::Input_section_sort_compare): Sort based on
3673 special ordering.
3674 (Output_section::Input_section_sort_section_order_index_compare):
3675 Revert last patch.
3676 (Output_section::sort_attached_input_sections): Likewise.
3677
3678 2012-12-18 Sriraman Tallam <tmsriram@google.com>
3679
3680 * layout.cc (Layout::is_section_name_prefix_grouped): New function.
3681 * layout.h (Layout::is_section_name_prefix_grouped): New function.
3682 * output.cc (Output_section::add_input_section): Check if section
3683 name contains special prefix. Keep input sections to sort such
3684 sections.
3685 (Output_section::Input_section_sort_section_order_index_compare
3686 ::operator()): Group sections according to prefixes.
3687 (Output_section::sort_attached_input_sections): Add condition to
3688 Input_section_entry constructor call.
3689 * testsuite/Makefile.am (text_section_grouping): New test.
3690 * testsuite/Makefile.in: Regenerate.
3691 * testsuite/text_section_grouping.cc: New file.
3692 * testsuite/text_section_grouping.sh: New file.
3693
3694 2012-12-17 Nick Clifton <nickc@redhat.com>
3695
3696 * Makefile.am: Add copyright notice.
3697 * NEWS: Likewise.
3698 * README: Likewise.
3699 * configure.ac: Likewise.
3700 * ftruncate.c: Likewise.
3701 * Makefile.in: Regenerate.
3702
3703 2012-12-14 Cary Coutant <ccoutant@google.com>
3704
3705 * testsuite/Makefile.am (exception_separate_shared_12_test): Add
3706 --no-as-needed flag.
3707 (exception_separate_shared_12_test): Likewise.
3708 (incremental_copy_test): Likewise.
3709 * testsuite/Makefile.in: Regenerate.
3710
3711 2012-12-14 Cary Coutant <ccoutant@google.com>
3712
3713 * dwp.cc (Dwp_output_file::add_cu_set): Check for duplicate CUs.
3714 (Dwp_output_file::Dwp_index::enter_set): Add assert.
3715
3716 2012-12-12 Alan Modra <amodra@gmail.com>
3717
3718 * powerpc.cc (class Track_tls): New.
3719 (class Relocate, class Scan): Inherit Track_tls.
3720 (Target_powerpc::Scan::local, global): Track tls optimization
3721 and avoid creating plt entry for __tls_get_addr if all uses
3722 are optimized away.
3723 (Target_powerpc::Relocate::relocate): Update to use Track_tls.
3724
3725 2012-12-12 Alan Modra <amodra@gmail.com>
3726
3727 * options.h (General_options): Add --toc-sort/--no-toc-sort.
3728 Replace no_toc_optimize with toc_optimize.
3729 * output.h (Output_section::input_sections): Provide non-const variant.
3730 * powerpc.cc (Powerpc_relobj::has_small_toc_reloc_,
3731 set_has_small_toc_reloc, has_small_toc_reloc): New variable and
3732 accessors.
3733 (Target_powerpc::Scan::local, global): Call set_has_small_toc_reloc.
3734 (class Sort_toc_sections): New.
3735 (Target_powerpc::do_finalize_sections): Sort toc sections.
3736 (Target_powerpc::Relocate::relocate): Update toc_optimize test.
3737
3738 2012-12-10 Roland McGrath <mcgrathr@google.com>
3739
3740 * testsuite/binary_unittest.cc (read_all): New function.
3741 (Sized_binary_test): Use it instead of ::read.
3742 * fileread.cc (do_read): Don't assume pread always reads the whole
3743 amount in a single call.
3744
3745 2012-12-10 Alan Modra <amodra@gmail.com>
3746
3747 * powerpc.cc (Target_selector_powerpc::Target_selector_powerpc):
3748 Set EM_PPC64 or EM_PPC here.
3749 (Target_selector_powerpc::do_recognize): Delete.
3750
3751 2012-12-10 Alan Modra <amodra@gmail.com>
3752
3753 * powerpc.cc (Powerpc_relobj::Powerpc_relobj): Init has14_ and
3754 stub_table_.
3755 (Target_powerpc::Branch_info::make_stub): Don't omit addend.
3756
3757 2012-12-07 Roland McGrath <mcgrathr@google.com>
3758
3759 * testsuite/binary_unittest.cc (Sized_binary_test):
3760 Use open_descriptor rather than ::open.
3761
3762 2012-12-07 Alan Modra <amodra@gmail.com>
3763
3764 * powerpc.cc (Stub_table::do_write): Delete redundant Address
3765 typedef and invalid_address constant.
3766 (Output_data_glink, Stub_table, Target_powerpc): Explicitly
3767 instantiate constants.
3768
3769 2012-12-06 Roland McGrath <mcgrathr@google.com>
3770
3771 * configure.ac (HAVE_ZLIB): Use AM_ZLIB instead of AC_SEARCH_LIBS.
3772 Use $ac_cv_header_zlib_h = yes as the condition in AM_CONDITIONAL.
3773 * aclocal.m4: Regenerate.
3774 * configure: Regenerate.
3775 * Makefile.in: Regenerate.
3776 * testsuite/Makefile.in: Regenerate.
3777
3778 2012-12-07 Alan Modra <amodra@gmail.com>
3779
3780 * options.h (General_options): Add no_toc_optimize.
3781 * powerpc.cc (ok_lo_toc_insn): New function.
3782 (Target_powerpc::Relocate::relocate): Optimize toc access sequences.
3783
3784 2012-12-06 Alan Modra <amodra@gmail.com>
3785
3786 * options.h (General_options): Add plt_align, plt_static_chain,
3787 plt_thread_safe. Update stub_group_size help text.
3788 * powerpc.cc (Target_powerpc::plt_thread_safe): New access function
3789 for new plt_thread_safe_ var.
3790 (use_plt_offset): Correct comments.
3791 (Target_powerpc::do_relax): Look for thread creation symbols to
3792 determine default plt_thread_safe value. Clear plt call stubs
3793 as well as branch stubs each iteration.
3794 (add_2_2_11, add_12_12_11, bnectr_p4, cmpldi_2_0, xor_11_11_11): New
3795 insn constants.
3796 (l, hi, ha, write_insn): Move earlier.
3797 (Stub_table): Delete prev_size, add last_plt_size and last_branch_size.
3798 (Stub_table::clear_stubs): Rename from clear_long_branch_stubs, clear
3799 plt stubs too.
3800 (Stub_table::update_size): Adjust.
3801 (Stub_table::prev_size, set_prev_size): Delete.
3802 (Stub_table::stub_align): Let --plt-align affect result.
3803 (Stub_table::plt_call_size): Calculate sizes for various stubs.
3804 (Stub_table::branch_stub_size): Use last_plt_size in address calc.
3805 (Stub_table::add_plt_call_stub): Pass iterator to plt_call_size.
3806 (Stub_table::do_write): Support more stub variants.
3807
3808 2012-12-04 Alan Modra <amodra@gmail.com>
3809
3810 * powerpc.cc (Powerpc_relobj::do_scan_relocs): Delete.
3811 (Target_powerpc::do_define_standard_symbols): New function.
3812
3813 2012-12-03 Alan Modra <amodra@gmail.com>
3814
3815 * output.h: Formatting, whitespace.
3816
3817 2012-12-03 Alan Modra <amodra@gmail.com>
3818
3819 * layout.h (Layout::get_executable_sections): Declare.
3820 * layout.cc (Layout::get_executable_sections): New function.
3821 * arm.cc (Target_arm::group_sections): Use it.
3822 (Arm_output_section::group_sections): Delete now redundant test.
3823 * output.cc (Output_reloc::Output_reloc): Add is_relative.
3824 param to handle relative relocs.
3825 * output.h (Output_reloc::Output_reloc <absolute reloc>): Likewise.
3826 (Output_data_reloc::add_absolute): Adjust.
3827 (Output_data_reloc::add_relative): New function.
3828 (Output_data::reset_data_size): New function.
3829 (Output_relaxed_input_section::set_relobj, set_shndx): New functions.
3830 (Output_section::set_addralign): New function.
3831 (Output_section::checkpoint_set_addralign): New function.
3832 (Output_section::clear_section_offsets_need_adjustment): New function.
3833 (Output_section::input_sections): Make public.
3834 * powerpc.cc (class Output_data_brlt_powerpc): New.
3835 (class Stub_table, class Stub_control): New.
3836 (Powerpc_relobj::has14_, set_has_14bit_branch, has_14bit_branch,
3837 stub_table_, set_stub_table, stub_table): New vectors and accessor
3838 functions.
3839 (Target_powerpc::do_may_relax, do_relax, push_branch,
3840 new_stub_table, stub_tables, brlt_section, group_sections,
3841 add_branch_lookup_table, find_branch_lookup_table,
3842 write_branch_lookup_table, make_brlt_section): New functions.
3843 (Target_powerpc::struct Sort_sections, class Branch_info): New.
3844 (Target_powerpc::brlt_section_, stub_tables_, branch_lookup_table_,
3845 branch_info_): New vars.
3846 (Target_powerpc::make_plt_entry, make_local_ifunc_plt_entry): Don't
3847 make call stubs here.
3848 (Output_data_glink): Remove all call stub handling from this class.
3849 (Target_powerpc::Scan::local, global): Save interesting branch
3850 relocs and relocs for ifunc. Adjust calls to plt entry functions.
3851 (Target_powerpc::do_finalize_sections): Only make reg save/restore
3852 functions on final link.
3853 (Target_powerpc::Relocate::relocate): Adjust lookup of call stubs.
3854 Handle long branch destinations too.
3855 (Target_powerpc::do_dynsym_value, do_plt_address_for_global,
3856 do_plt_address_for_local): Adjust lookup of plt call stubs.
3857
3858 2012-11-30 Alan Modra <amodra@gmail.com>
3859
3860 * powerpc.c (Target_powerpc::Scan::global): Don't emit relative
3861 relocs against protected symbols when building 32-bit shared libs.
3862
3863 2012-11-30 Alan Modra <amodra@gmail.com>
3864
3865 * powerpc.cc (Target_powerpc::make_plt_section): Add symtab
3866 param. Call got_section() to make .got. Update all callers
3867 and their callers and so on.
3868
3869 2012-11-30 Alan Modra <amodra@gmail.com>
3870
3871 * powerpc.cc (Powerpc_relobj::do_scan_relocs): Make STB_LOCAL
3872 _GLOBAL_OFFSET_TABLE_ rather than STB_WEAK.
3873 (Output_data_got_powerpc::make_header): Update _GLOBAL_OFFSET_TABLE_
3874 value if it already exists.
3875
3876 2012-11-19 H.J. Lu <hongjiu.lu@intel.com>
3877
3878 PR gold/14858
3879 * x86_64.cc (Relocate::tls_ld_to_le): Support x32.
3880
3881 2012-11-14 Roland McGrath <mcgrathr@google.com>
3882
3883 * arm.cc (Output_data_plt_arm_nacl::first_plt_entry): Use bic rather
3884 than bfc instruction for data sandboxing.
3885
3886 2012-11-08 Alan Modra <amodra@gmail.com>
3887
3888 * po/POTFILES.in: Regenerate.
3889
3890 2012-11-05 Alan Modra <amodra@gmail.com>
3891
3892 * configure.ac: Apply 2012-09-10 change to config.in here.
3893 * configure: Regenerate.
3894
3895 2012-11-05 Alan Modra <amodra@gmail.com>
3896
3897 * powerpc.cc (Powerpc_relobj): Delete "Offset" typedef.
3898 (struct Opd_ent): Use "Address" rather than "Offset".
3899 (Output_data_got_powerpc::got_base_offset): Return Valtype.
3900 (Target_powerpc::got_section): Make public.
3901 (Target_powerpc::scan_relocs): Move code setting symbols..
3902 (Powerpc_relobj::do_scan_relocs): ..to here, new function.
3903 Create _SDA_BASE_ only when referenced.
3904
3905 2012-11-02 Roland McGrath <mcgrathr@google.com>
3906
3907 * i386.cc (Target_i386::relocate_relocs): Remove extraneous typename
3908 from last change.
3909
3910 2012-11-01 Roland McGrath <mcgrathr@google.com>
3911
3912 * target.h (Sized_target::relocate_relocs): Use Elf_Off
3913 for offset_in_output_section parameter.
3914 (Sized_target::relocate_special_relocatable): Likewise.
3915 * arm.cc (Target_arm::relocate_relocs): Likewise.
3916 (Target_arm::relocate_special_relocatable): Likewise.
3917 * i386.cc (Target_i386::relocate_relocs): Likewise.
3918 * powerpc.cc (Target_powerpc::relocate_relocs): Likewise.
3919 * sparc.cc (Target_sparc::relocate_relocs): Likewise.
3920 * target-reloc.h (relocate_relocs): Likewise.
3921 * testsuite/testfile.cc (Target_test): Likewise.
3922 * tilegx.cc (Target_tilegx::relocate_relocs): Likewise.
3923 * x86_64.cc (Target_x86_64::relocate_relocs): Likewise.
3924
3925 * system.h: Move inclusion of <clocale> to after <libintl.h> in
3926 [ENABLE_NLS] section, and separately at top of [!ENABLE_NLS] section.
3927
3928 * descriptors.cc (set_close_on_exec): Add ATTRIBUTE_UNUSED to the
3929 parameter, which is unused in the [!F_SETFD] case.
3930
3931 * dwarf_reader.cc (Sized_elf_reloc_mapper::symbol_section): Cast
3932 SYMNDX to off_t before comparing it to this->data_size().
3933 * output.cc (Output_symtab_xindex::endian_do_write): Likewise.
3934 * incremental.cc (Output_section_incremental_inputs::do_write):
3935 Cast GLOBAL_SYM_COUNT to off_t before comparing it to SYMTAB_SIZE.
3936
3937 * nacl.cc: Include "libiberty.h" for vasprintf declaration.
3938
3939 2012-10-30 Steve McIntyre <steve.mcintyre@linaro.org>
3940
3941 * gold.cc (Target_arm::do_adjust_elf_header): Add the
3942 hard-float/soft-float ABI flag as appropriate for ET_DYN/ET_EXEC
3943 in EABI_VER5.
3944
3945 2012-10-29 Cary Coutant <ccoutant@google.com>
3946
3947 * dwp.cc (usage): Add file and exit status parameters;
3948 add --help and --version options.
3949 (print_version): New function.
3950 (main): Add --help and --version options.
3951
3952 2012-10-25 H.J. Lu <hongjiu.lu@intel.com>
3953
3954 * testsuite/Makefile.am (MOSTLYCLEANFILES): Add
3955 final_layout_sequence.txt.
3956 * testsuite/Makefile.in: Regenerated.
3957
3958 2012-10-25 H.J. Lu <hongjiu.lu@intel.com>
3959
3960 * testsuite/Makefile.am (COMPILE1): New variable. Renamed from
3961 COMPILE generated by automake.
3962 (LINK1): Likewise.
3963 (CXXCOMPILE1): Likewise.
3964 (CXXLINK1): Likewise.
3965 (COMPILE): Strip out -Wp,-D_FORTIFY_SOURCE= from COMPILE1.
3966 (LINK): Likewise.
3967 (CXXCOMPILE): Likewise.
3968 (CXXLINK): Likewise.
3969 * testsuite/Makefile.in: Regenerated.
3970
3971 2012-10-25 H.J. Lu <hongjiu.lu@intel.com>
3972
3973 * dwp.cc (Dwo_file::record_target_info): Issue a fatal error
3974 on bad fwrite return.
3975
3976 2012-10-25 H.J. Lu <hongjiu.lu@intel.com>
3977
3978 * dwp.cc (Dwo_file::remap_str_offset): Use section_offset_type
3979 on val.
3980
3981 2012-10-23 Cary Coutant <ccoutant@google.com>
3982
3983 * testsuite/Makefile.am (TEST_OBJCOPY): New macro.
3984 * testsuite/Makefile.in: Regenerate.
3985 * testsuite/dwp_test.h: New source file.
3986 * testsuite/dwp_test_1.cc: New source file.
3987 * testsuite/dwp_test_1.s: New source file.
3988 * testsuite/dwp_test_1.sh: New source file.
3989 * testsuite/dwp_test_1b.cc: New source file.
3990 * testsuite/dwp_test_1b.s: New source file.
3991 * testsuite/dwp_test_2.cc: New source file.
3992 * testsuite/dwp_test_2.s: New source file.
3993 * testsuite/dwp_test_2.sh: New source file.
3994 * testsuite/dwp_test_main.cc: New source file.
3995 * testsuite/dwp_test_main.s: New source file.
3996
3997 2012-10-23 Cary Coutant <ccoutant@google.com>
3998
3999 * dwp.h: New header file.
4000 * dwp.cc: New source file.
4001 * gold.h: Move shared declarations to system.h.
4002 * system.h: New header file.
4003 * Makefile.am: Add dwp.
4004 * Makefile.in: Regenerate.
4005
4006 2012-10-23 Cary Coutant <ccoutant@google.com>
4007
4008 * dwarf_reader.cc (Dwarf_ranges_table::read_range_list): Call
4009 Dwarf_info_reader::read_from_pointer.
4010 (Dwarf_pubnames_table::read_header): Likewise.
4011 (Dwarf_pubnames_table::next_name): Likewise.
4012 (Dwarf_die::read_attributes): Likewise.
4013 (Dwarf_die::skip_attributes): Likewise.
4014 (Dwarf_info_reader::read_from_pointer): New function template.
4015 * dwarf_reader.h (Dwarf_ranges_table): Add dwinfo_.
4016 (Dwarf_pubnames_table): Likewise.
4017 (Dwarf_info_reader::read_from_pointer): New function template.
4018 * gdb-index.cc (Gdb_index_info_reader): Adjust call to
4019 Dwarf_pubnames_table ctor.
4020
4021 2012-10-23 Cary Coutant <ccoutant@google.com>
4022
4023 * dwarf_reader.cc (Dwarf_info_reader::do_parse): Use stored
4024 abbrev_shndx.
4025 * dwarf_reader.h (Dwarf_info_reader::Dwarf_info_reader): Initialize
4026 abbrev_shndx_.
4027 (Dwarf_info_reader::set_abbrev_shndx): New method.
4028 (Dwarf_info_reader::abbrev_shndx_): New data member.
4029
4030 2012-10-23 Cary Coutant <ccoutant@google.com>
4031
4032 * dwarf_reader.cc (make_elf_reloc_mapper): Check size and endianness
4033 from object, not parameters.
4034 (Dwarf_info_reader::parse): Likewise.
4035 * object.h (Relobj::elfsize, Relobj::is_big_endian): New methods.
4036 (Relobj::do_elfsize, Relobj::do_is_big_endian): New methods.
4037 (Sized_relobj::do_elfsize, Sized_relobj::do_is_big_endian): New
4038 methods.
4039
4040 2012-10-23 Cary Coutant <ccoutant@google.com>
4041
4042 * fileread.cc (Input_file::Input_file): New constructor.
4043 * fileread.h (class Input_file): Add new constructor.
4044
4045 2012-10-18 Alan Modra <amodra@gmail.com>
4046
4047 PR gold/14727
4048 * object.cc (Relobj::is_section_name_included): Also match
4049 .sdata personality section.
4050
4051 2012-10-18 Alan Modra <amodra@gmail.com>
4052
4053 * target-reloc.h (class Default_comdat_behavior): New, package up..
4054 (get_comdat_behaviour): ..this.
4055 (relocate_section): Add Relocate_comdat_behavior template arg,
4056 adjust code to suit.
4057 * arm.cc (Target_arm::relocate_section): Adjust to suit.
4058 (Target_arm::scan_reloc_section): Likewise.
4059 * i386.cc (Target_i386::relocate_section): Likewise.
4060 * sparc.cc (Target_sparc::relocate_section): Likewise.
4061 * tilegx.cc (Target_tilegx::relocate_section): Likewise.
4062 * x86_64.cc (Target_x86_64::relocate_section): Likewise.
4063 * powerpc.cc (class Relocate_comdat_behavior): New.
4064 (Target_powerpc::relocate_section): Don't zap opd relocs. Supply
4065 gold::relocate_section with new template arg.
4066
4067 2012-10-18 Alan Modra <amodra@gmail.com>
4068
4069 * powerpc.cc (Target_powerpc::Scan::local, global): Always emit
4070 dynamic relocs for GOT_TPREL got entries, without symbol if
4071 resolving locally.
4072 (Target_powerpc::do_gc_add_reference): Don't add for dynamic objects.
4073 (Target_powerpc::scan_relocs): Define _GLOBAL_OFFSET_TABLE_ early.
4074 (Target_powerpc::Relocate:relocate): REL32 reloc may be unaligned.
4075
4076 2012-10-17 Alan Modra <amodra@gmail.com>
4077
4078 PR gold/14726
4079 * gold.cc (queue_middle_tasks): Call gc_mark_symbol on _init and _fini.
4080
4081 2012-10-16 Sriraman Tallam <tmsriram@google.com>
4082
4083 * layout.cc (Layout::include_section): Keep sections marked
4084 SHF_EXCLUDE when doing relocatable links.
4085
4086 2012-10-16 Alan Modra <amodra@gmail.com>
4087
4088 * powerpc.cc (Target_powerpc::define_save_restore_funcs): New func.
4089 (Target_powerpc::do_finalize_sections): Call it.
4090 (Output_data_save_res): New class and supporting functions.
4091 (Target_powerpc::symval_for_branch): Only look up .opd entry for
4092 normal symbols defined in object files.
4093
4094 2012-10-12 Alan Modra <amodra@gmail.com>
4095
4096 * powerpc.cc (Powerpc_relobj::add_gc_mark, process_gc_mark): New.
4097 (struct Opd_ent): Make "discard" a bit field. Add "gc_mark".
4098 (Target_powerpc::do_gc_mark_symbol): Delay marking function code
4099 section if scan_opd_relocs not yet called.
4100 (Target_powerpc::gc_process_relocs): Call process_gc_mark.
4101
4102 2012-10-12 Alan Modra <amodra@gmail.com>
4103
4104 * powerpc.cc (Output_data_plt_powerpc::add_entry, add_ifunc_entry,
4105 add_local_ifunc_entry): Revert last change.
4106 (Target_powerpc::make_plt_entry, make_local_ifunc_plt_entry): Likewise.
4107
4108 2012-10-05 Alan Modra <amodra@gmail.com>
4109
4110 * powerpc.cc (Target_powerpc::do_plt_address_for_local,
4111 do_plt_address_for_global): New functions.
4112 (Output_data_got_powerpc::do_write): Don't segfault when linking
4113 statically.
4114 (Output_data_plt_powerpc::add_entry, add_ifunc_entry,
4115 add_local_ifunc_entry): Return true on adding entry..
4116 (Target_powerpc::make_plt_entry): ..use to avoid unnecessary
4117 glink->add_entry call. Remove unused symtab param. Adjust calls.
4118 (Target_powerpc::make_local_ifunc_plt_entry): Likewise.
4119 (Target_powerpc::make_iplt_section): Remove symtab param. Don't
4120 set up symbols here.
4121 (Target_powerpc::do_finalize_sections): Instead set up __rela_iplt
4122 syms here. Do so even when no .iplt. Don't segfault when linking
4123 statically.
4124 (Output_data_glink::add_entry, find_entry): Rearrange params. Add
4125 new variants without reloc param.
4126 (Glink_sym_ent::Glink_sym_ent): Likewise.
4127 (Target_powerpc::Scan::reloc_needs_plt_for_ifunc): Accept any
4128 reloc when refs will resolve to plt call stub.
4129 (Target_powerpc::Scan::local): Correct ifunc handling. Allow
4130 R_PPC_PLTREL24 to resolve locally.
4131 (Target_powerpc::Scan::global): Correct ifunc handling.
4132 (Target_powerpc::Relocate::relocate): Correct local sym glink
4133 lookup. Don't destroy "value" when we have a plt call stub,
4134 and when checking plt call validity.
4135 (Target_powerpc::do_dynsym_value): Simplify.
4136
4137 2012-10-05 Alan Modra <amodra@gmail.com>
4138
4139 * i386.cc (Output_data_plt_i386::address_for_global,
4140 address_for_local): Add plt offset to returned value. Adjust uses.
4141 * sparc.cc (Output_data_plt_sparc::address_for_global,
4142 address_for_local): Likewise.
4143 * tilegx.cc (Output_data_plt_tilegx::address_for_global,
4144 address_for_local): Likewise.
4145 * x86_64.cc (Output_data_plt_x86_64::address_for_global,
4146 address_for_local): Likewise.
4147 * target.h (Target::plt_address_for_global, plt_address_for_local):
4148 Update comment.
4149 * output.cc (Output_reloc::symbol_value): Don't add plt offset here.
4150 (Output_data_got::Got_entry::write): Nor here.
4151 * output.h: Comment fix.
4152
4153 2012-10-02 Jiong Wang <jiwang@tilera.com>
4154
4155 * tilegx.cc (Target_tilegx::do_finalize_sections): Adjust
4156 global_offset_table_ value for larget got.
4157 (Target_tilegx::Relocate::relocate): Handle adjusted got value.
4158
4159 2012-09-29 Alan Modra <amodra@gmail.com>
4160
4161 * powerpc.cc (Target_powerpc::iplt_): New output section.
4162 (Target_powerpc::iplt_section, make_iplt_section,
4163 reloc_needs_plt_for_ifunc, make_local_ifunc_plt_entry): New functions.
4164 (Target_powerpc::make_plt_entry): Handle ifunc syms.
4165 Target_powerpc::plt_entry_count): Count iplt entries too.
4166 (Output_data_plt_powerpc::Output_data_plt_powerpc): Don't create
4167 reloc section in constructor. New params.
4168 (Target_powerpc::make_plt_section): Create reloc section here instead.
4169 (Output_data_plt_powerpc::add_ifunc_entry, add_local_ifunc_entry): New
4170 functions.
4171 (Output_data_plt_powerpc::initial_plt_entry_size_, name_): New vars.
4172 (Output_data_glink::add_entry, find_entry): New functions to
4173 deal with local syms.
4174 (Glink_sym_ent): Add support for local syms.
4175 (Output_data_glink::do_write): Handle ifunc plt entries.
4176 (Target_powerpc::Scan::get_reference_flags): Handle more relocs.
4177 (Target_powerpc::Scan::local, global): Handle ifunc syms.
4178 (Target_powerpc::Relocate::relocate): Likewise.
4179 (Target_powerpc::do_dynsym_value): Use glink stub, not plt entry.
4180
4181 2012-09-25 Alan Modra <amodra@gmail.com>
4182
4183 * object.h (Sized_relobj_file::adjust_local_symbol,
4184 do_adjust_local_symbol): New functions.
4185 * object.cc (Sized_relobj_file::do_count_local_symbols): Use the above.
4186 * powerpc.cc (Powerpc_relobj::do_adjust_local_symbol): New function.
4187 (Powerpc_relobj::scan_opd_relocs): Warn on unexpected opd relocs
4188 and irregular opd entry spacing.
4189 (Powerpc_relobj::do_read_relocs): Add opd size checks.
4190 (Global_symbol_visitor_opd): New functor.
4191 (Target_powerpc::do_finalize_sections): Omit global symbols defined
4192 on deleted opd entries.
4193
4194 2012-09-15 Jiong Wang <jiwang@tilera.com>
4195
4196 * tilegx.cc: New file.
4197 * Makefile.am (TARGETSOURCES): Add tilegx.cc
4198 (ALL_TARGETOBJS): Add tilegx.$(OBJEXT)
4199 * configure.tgt: Add entries for tilegx*.
4200 * configure.ac: Likewise.
4201 * Makefile.in: Rebuild.
4202 * configure: Likewise.
4203 * testsuite/icf_safe_test.sh (arch_specific_safe_fold): Handle
4204 tilegx.
4205
4206 2012-09-13 Alan Modra <amodra@gmail.com>
4207
4208 * target-reloc.h (scan_relocs): Call scan.local for relocs
4209 against symbols in discarded sections. Pass is_discarded
4210 param.
4211 * arm.cc, * i386.cc, * sparc.cc, * x86_64.cc (Target_*::Scan::local):
4212 Add is_discarded param.
4213 * powerpc (Target_powerpc::Scan::local): Likewise. Use
4214 is_discarded to flag opd entry as discarded. Don't emit dyn
4215 relocs on such entries.
4216 (Target_powerpc::Scan::global): Similarly detect and handle
4217 such opd entries.
4218 (Powerpc_relobj): Replace opd_ent_shndx_ and opd_ent_off_ with
4219 opd_ent_. Update all uses.
4220 (Powerpc_relobj::get_opd_discard, set_opd_discard): New functions.
4221 (Target_powerpc::relocate_section): Zero out discarded opd
4222 entry relocs.
4223
4224 2012-09-12 Ian Lance Taylor <iant@google.com>
4225
4226 PR gold/14570
4227 * output.cc: Rename Output_data_got template parameter from size
4228 to got_size for all functions. Compile all variants of
4229 Output_data_got.
4230 (Output_data_got::Got_entry::write): Correct use of size for
4231 symbol value. Use local_is_tls rather than casting to
4232 Sized_relobj_file.
4233 * object.h (class Object): Add local_is_tls and do_local_is_tls.
4234 (class Sized_relobj_file): Add do_local_is_tls.
4235 * incremental.h (class Sized_relobj_incr): Add do_local_is_tls.
4236
4237 2012-09-11 Alan Modra <amodra@gmail.com>
4238
4239 PR gold/14566
4240 * layout.cc (Layout::set_segment_offsets): When using
4241 common-page-size alignment, ensure we are on a new max-page-size
4242 page.
4243 * output.cc (Output_segment::set_section_addresses): Use
4244 abi_pagesize, not common_pagesize for relro boundary.
4245 (Output_segment::set_offset): Likewise.
4246
4247 2012-09-11 Alan Modra <amodra@gmail.com>
4248
4249 * output.h (Output_data_got::add_global_tls, add_local_tls,
4250 add_local_tls_pair): New functions.
4251 (Output_data_got::add_local_pair_with_rel): Remove second
4252 reloc param. Expand comment.
4253 (Output_data_got::Got_entry): Rename use_plt_offset_ to
4254 use_plt_or_tls_offset_, similarly for constructor param.
4255 (Output_data_got::Got_entry::write): Add got_index param.
4256 * output.cc (Output_data_got::add_global_tls, add_local_tls,
4257 add_local_tls_pair): New functions.
4258 (Output_data_got::Got_entry::write): Handle tls symbols
4259 with use_plt_or_tls_offset_ set specially.
4260 (Output_data_got::add_local_pair_with_rel): Only one reloc.
4261 (Output_data_got::do_write): Replace iterator with index, pass
4262 index to entry write function.
4263 * target.h (Target::tls_offset_for_local, tls_offset_for_global,
4264 do_tls_offset_for_local, do_tls_offset_for_global): New functions.
4265 * arm.cc (Target_arm::Scan::local): Update add_local_pair_with_rel
4266 call.
4267 * i386.cc (Target_i386::Scan::local): Likewise.
4268 * sparc.cc (Target_sparc::Scan::local): Likewise.
4269 * x86_64.cc (Target_x86_64::Scan::local): Likewise.
4270 * powerpc.cc (Target_powerpc::do_tls_offset_for_local,
4271 do_tls_offset_for_global): New functions.
4272 (Target_powerpc::Scan::local): Correct TLS relocations and got
4273 entry values.
4274 (Target_powerpc::Scan::global): Don't emit unnecessary
4275 dynamic relocations on TLS GOT entries.
4276
4277 2012-09-10 Matthias Klose <doko@ubuntu.com>
4278
4279 * config.in: Disable sanity check for kfreebsd.
4280
4281 2012-09-10 Sterling Augustine <saugustine@google.com>
4282
4283 * gdb-index.cc (Gdb_index::pubnames_read): New parameter.
4284 (Gdb_index::pubtypes_read): New parameter.
4285 (Gdb_index_info_reader::read_pubnames_and_pubtypes): Add parameters
4286 to calls.
4287 * gdb-index.h (Gdb_index): New fields pubnames_object_ and
4288 pubtypes_object_.
4289
4290 2012-09-09 Alan Modra <amodra@gmail.com>
4291
4292 * target.h (Target::gc_mark_symbol, do_gc_mark_symbol): New functions.
4293 (Sized_target::gc_add_reference, do_gc_add_reference): New functions.
4294 * gc.h (gc_process_relocs): Call target gc_add_reference.
4295 * gold.cc (queue_middle_tasks): Use gc_mark_symbol on start sym.
4296 * symtab.cc (Symbol_table::gc_mark_undef_symbols): Use gc_mark_symbol.
4297 (Symbol_table::gc_mark_symbol): Call target gc_mark_symbol. Remove
4298 unnecessary cast.
4299 * powerpc.cc (Powerpc_relobj::get_opd_ent): Rearrange parameters
4300 to cater for when we don't need code offset. Update use.
4301 (Powerpc_relobj::access_from_map_, opd_valid_): New vars.
4302 (Powerpc_relobj::access_from_map, add_reference, opd_valid,
4303 set_opd_valid): New functions.
4304 (Target_powerpc::do_gc_add_reference): New function.
4305 (Target_powerpc::gc_process_relocs): Call gc()->add_reference on
4306 stashed refs.
4307 (Target_powerpc::do_gc_mark_symbol): New function.
4308
4309 2012-09-06 Cary Coutant <ccoutant@google.com>
4310
4311 * dwarf_reader.cc (Dwarf_die::read_attributes): Add
4312 DW_FORM_GNU_addr_index and DW_FORM_GNU_str_index.
4313 (Dwarf_die::skip_attributes): Likewise.
4314 * object.cc (Read_symbols_data::~Read_symbols_data): Update comment.
4315 * testsuite/gdb_index_test.cc (inline_func_1): New function.
4316 (main): Call it.
4317 * testsuite/gdb_index_test_comm.sh: Check index for inline function.
4318
4319 2012-09-05 H.J. Lu <hongjiu.lu@intel.com>
4320
4321 * testsuite/script_test_3.t: Add .got.plt output section
4322 statement.
4323 * testsuite/script_test_4.t: Likewise.
4324
4325 2012-09-05 Alan Modra <amodra@gmail.com>
4326
4327 * powerpc.cc (Powerpc_relocate_functions): Upcase enum values,
4328 update all uses and lose "enum" when using type.
4329
4330 2012-09-05 Alan Modra <amodra@gmail.com>
4331
4332 * configure.ac (FN_PTRS_IN_SO_WITHOUT_PIC): False for powerpc.
4333 * configure: Regenerate.
4334 * testsuite/Makefile.am (final_layout.stdout): Pass --synthetic to nm.
4335 (plugin_final_layout.stdout): Likewise.
4336 (memory_test): Set page sizes to 0x1000.
4337 * testsuite/Makefile.in: Regenerate.
4338 * testsuite/discard_locals_test.sh: Add FIXME comment.
4339 * testsuite/justsyms_exec.c: Disable function test for powerpc64.
4340 * testsuite/pr14265.t: Add .got output section statement.
4341 * testsuite/script_test_2.t: Likewise.
4342 * testsuite/script_test_3.t: Likewise.
4343 * testsuite/script_test_4.t: Likewise.
4344 * testsuite/script_test_5.t: Likewise.
4345 * testsuite/script_test_6.t: Likewise.
4346 * testsuite/script_test_7.t: Likewise.
4347 * testsuite/script_test_9.t: Likewise.
4348
4349 2012-09-05 Alan Modra <amodra@gmail.com>
4350
4351 * powerpc.cc (Powerpc_relobj::get_opd_ent): Make const.
4352 (Powerpc_relocate_functions::Status): New typedef.
4353 (Target_powerpc::Scan::get_reference_flags): Handle more relocs.
4354 (Target_powerpc::Scan::local): Handle REL64.
4355 (Target_powerpc::Scan::global): Likewise, and dynamic relocs
4356 for REL32 and REL64.
4357 (Target_powerpc::symval_for_branch): New function, extracted from..
4358 (Target_powerpc::Relocate::relocate): ..here. Correct plt call
4359 checks. Report overflow errors.
4360
4361 2012-09-05 Alan Modra <amodra@gmail.com>
4362
4363 * object.h (Sized_relobj_file::emit_relocs): Delete.
4364 (Sized_relobj_file::emit_relocs_reltype): Delete.
4365 * reloc.cc (Sized_relobj_file::do_relocate_sections): Call target
4366 relocate_relocs for --emit-relocs.
4367 (Sized_relobj_file::emit_relocs, emit_relocs_reltype): Delete.
4368 * output.h: Update comment.
4369 (Output_segment::first_section): New function.
4370 (Output_segment::first_section_load_address): Use first_section.
4371 * output.cc (Output_segment::first_section): New function extracted..
4372 (Output_segment::first_section_load_address): ..from here. Delete.
4373 * target-reloc.h (relocate_for_relocatable): Rename to relocate_relocs.
4374 * target.h (Sized_target::relocate_for_relocatable): Likewise.
4375 * arm.cc (Target_arm::relocate_for_relocatable): Likewise, and
4376 adjust call to target.h function.
4377 * i386.cc (Target_i386): Likewise.
4378 * sparc.cc (Target_sparc): Likewise.
4379 * x86_64.cc (Target_x86_64): Likewise.
4380 * powerpc.cc (Target_powerpc): Likewise.
4381 (Target_powerpc::Scan::local, global): Handle R_POWERPC_TLS. Ensure
4382 first tls section has section symbol for optimised local dynamic
4383 output relocs.
4384 (Target_powerpc::Relocate::relocate): Correct local dynamic value.
4385 (Target_powerpc::relocate_relocs): Adjust relocs emitted for
4386 optimised tls code.
4387 * testsuite/testfile.cc (Target_test::relocate_for_relocatable):
4388 Rename to relocate_relocs. Update error message.
4389
4390 2012-09-04 Andreas Schwab <schwab@linux-m68k.org>
4391
4392 * powerpc.cc (do_make_elf_object): Allow ET_EXEC files with
4393 --just-symbols.
4394
4395 2012-08-31 Alan Modra <amodra@gmail.com>
4396
4397 * powerpc.cc (Powerpc_relobj): Add and use Address typedef.
4398 (Powerpc_relobj::toc_base_offset): New stub function.
4399 (Target_powerpc): Add tp_offset, dtp_offset. Rename
4400 got_mod_index_offset to tlsld_got_offset. Update all refs.
4401 (Target_powerpc::Relocate::enum skip_tls): New.
4402 (Target_powerpc::call_tls_get_addr_): New var.
4403 (Target_powerpc::is_branch_reloc): Move to file scope.
4404 (Target_powerpc::relocate_tls, optimize_tls_reloc): Delete.
4405 (Target_powerpc::optimize_tls_gd, optimize_tls_ld, optimize_tls_ie):
4406 New functions.
4407 (Target_powerpc::enum Got_type): Delete old values, add new ones.
4408 (powerpc_info): Correct common_pagesize for ppc64.
4409 (at_tls_transform, needs_dynamic_reloc, use_plt_offset): New functions.
4410 (Powerpc_relocate_functions): Add overflow check enums and functions.
4411 Add non-shift version of rela, rela_ua. Delete all rel public
4412 functions. Delete addr16_lo. Add addr64, addr64_u, addr32,
4413 addr32_u, addr24, addr16_u, addr16_hi2, addr16_ha2, addr16_hi3,
4414 addr16_ha3, addr14 functions.
4415 (Output_data_got_powerpc::add_constant_pair): New function.
4416 (Output_data_got_powerpc::got_base_offset): Likewise.
4417 (Output_data_got_powerpc::do_write): Correct 64-bit got header.
4418 (instruction constants): Sort, add some more.
4419 (Output_data_glink::do_write): Add and use Address typedef. Use
4420 object->toc_base_offset() stub for 64-bit.
4421 (Target_powerpc::tlsld_got_offset): Use add_constant_pair.
4422 (Target_powerpc::Scan::get_reference_flags): Handle more relocs.
4423 (Target_powerpc::Scan::local, global): Emit relative dynamic reloc
4424 for R_PPC64_TOC. Handle more relocs. Generate got entries for TLS.
4425 Always treat .opd relocs as against locally defined symbol.
4426 Correct condition for RELATIVE relocs.
4427 (Target_powerpc::do_finalize_sections): Test for NULL sections.
4428 (Target_powerpc::Relocate::relocate): Use plt call stub as value
4429 for 32-bit syms with a plt entry. Correct ppc64 toc base
4430 calculations. Handle TLS relocs, and more. Add overflow
4431 checking and adjust for Powerpc_relocate_functions changes.
4432 (Target_powerpc::relocate_for_relocatable): Handle zero r_sym.
4433 Reinstate --emit-relocs code with FIXME.
4434
4435 2012-08-30 Alan Modra <amodra@gmail.com>
4436
4437 * layout.cc (Layout::set_segment_offsets): Set p_align to
4438 abi_pagesize, not common_pagesize.
4439 (Layout::relaxation_loop_body): Similarly use abi_pagesize
4440 to determine whether file header can go in segment.
4441
4442 2012-08-30 Alan Modra <amodra@gmail.com>
4443
4444 * output.h (Output_reloc::Output_reloc <output section>): Add
4445 is_relative param. Adjust calls.
4446 (Output_reloc::add_output_section_relative): New functions.
4447 * output.cc (Output_reloc::Output_reloc <output section>): Handle
4448 is_relative.
4449 (Output_reloc::symbol_value): Handle SECTION_CODE.
4450
4451 2012-08-24 Sriraman Tallam <tmsriram@google.com>
4452
4453 * gold.cc (queue_middle_tasks): Call layout again when unique
4454 segments for sections is desired.
4455 * layout.cc (Layout::Layout): Initialize new members.
4456 (Layout::get_output_section_flags): New function.
4457 (Layout::choose_output_section): Call get_output_section_flags.
4458 (Layout::layout): Make output section for mapping to a unique segment.
4459 (Layout::insert_section_segment_map): New function.
4460 (Layout::attach_allocated_section_to_segment): Make unique segment for
4461 output sections marked so.
4462 (Layout::segment_precedes): Check for unique segments when sorting.
4463 * layout.h (Layout::Unique_segment_info): New struct.
4464 (Layout::Section_segment_map): New typedef.
4465 (Layout::insert_section_segment_map): New function.
4466 (Layout::get_output_section_flags): New function.
4467 (Layout::is_unique_segment_for_sections_specified): New function.
4468 (Layout::set_unique_segment_for_sections_specified): New function.
4469 (Layout::unique_segment_for_sections_specified_): New member.
4470 (Layout::section_segment_map_): New member.
4471 * object.cc (Sized_relobj_file<size, big_endian>::do_layout):
4472 Rename is_gc_pass_one to is_pass_one.
4473 Rename is_gc_pass_two to is_pass_two.
4474 Rename is_gc_or_icf to is_two_pass.
4475 Check for which pass based on whether symbols data is present.
4476 Make it two pass when unique segments for sections is desired.
4477 * output.cc (Output_section::Output_section): Initialize new
4478 members.
4479 * output.h (Output_section::is_unique_segment): New function.
4480 (Output_section::set_is_unique_segment): New function.
4481 (Output_section::is_unique_segment_): New member.
4482 (Output_section::extra_segment_flags): New function.
4483 (Output_section::set_extra_segment_flags): New function.
4484 (Output_section::extra_segment_flags_): New member.
4485 (Output_section::segment_alignment): New function.
4486 (Output_section::set_segment_alignment): New function.
4487 (Output_section::segment_alignment_): New member.
4488 (Output_segment::Output_segment): Initialize is_unique_segment_.
4489 (Output_segment::is_unique_segment): New function.
4490 (Output_segment::set_is_unique_segment): New function.
4491 (Output_segment::is_unique_segment_): New member.
4492 * plugin.cc (allow_unique_segment_for_sections): New function.
4493 (unique_segment_for_sections): New function.
4494 (Plugin::load): Add new functions to transfer vector.
4495 * Makefile.am (plugin_final_layout.readelf.stdout): Add readelf output.
4496 * Makefile.in: Regenerate.
4497 * testsuite/plugin_final_layout.sh: Check if unique segment
4498 functionality works.
4499 * testsuite/plugin_section_order.c (onload): Check if new interfaces
4500 are available.
4501 (allow_unique_segment_for_sections): New global.
4502 (unique_segment_for_sections): New global.
4503 (claim_file_hook): Call allow_unique_segment_for_sections.
4504 (all_symbols_read_hook): Call unique_segment_for_sections.
4505
4506 2012-08-22 Cary Coutant <ccoutant@google.com>
4507
4508 * layout.cc (Layout::include_section): Don't assert on GROUP
4509 sections with --emit-relocs.
4510
4511 2012-08-21 Cary Coutant <ccoutant@google.com>
4512
4513 * symtab.cc (Symbol_table::gc_mark_undef_symbols): Don't assert
4514 if --export-dynamic-symbol names an undef symbol.
4515
4516 2012-08-18 Alan Modra <amodra@gmail.com>
4517
4518 * powerpc.cc: Formatting and white space.
4519 (Powerpc_relobj): Rename got2_section_ to special_.
4520 Add opd_ent_shndx_ and opd_ent_off_ vectors.
4521 (Powerpc_relobj::opd_shndx, init_opd, get_opd_ent, set_opd_ent,
4522 scan_opd_relocs, do_read_relocs, opd_ent_ndx): New functions.
4523 (Target_powerpc): Add Address typedef and invalid_address. Use
4524 throughout.
4525 (Target_powerpc::is_branch_reloc): New function.
4526 (Powerpc_relocate_functions): Add Address typedef, use throughout.
4527 (Powerpc_relocate_functions:rela, rela_ua): Correct type used
4528 for dst_mask, value and addend.
4529 (Powerpc_relobj::do_find_special_sections): Find .opd for 64-bit.
4530 (ld_2_1, cror_15_15_15, cror_31_31_31): New insn constants.
4531 (Output_data_glink::do_write): Correct toc base. Don't try to use
4532 uint16_t for 24-bit offset. Use get_output_section_offset and
4533 check return.
4534 (Target_powerpc::Scan::local): Handle more relocs.
4535 (Target_powerpc::do_finalize_sections): Set up DT_PPC64_GLINK.
4536 (Target_powerpc::Relocate::relocate): Correct toc base calculation.
4537 Plug in toc restoring insn after plt calls. Translate branches
4538 to function descriptor symbols to corresponding entry point.
4539 (Target_powerpc::relocate_for_relocatable): Check return from
4540 get_output_section_offset.
4541 * symtab.h: Comment typo.
4542
4543 2012-08-14 Ian Lance Taylor <iant@google.com>
4544
4545 * x86_64.cc (Target_x86_64::Scan::global): Fix erroneous call to
4546 unsupported_relocal_local to call unsupported_reloc_global.
4547
4548 2012-08-14 Nick Clifton <nickc@redhat.com>
4549
4550 PR ld/14265
4551 * script-sections.cc (Sections_element::output_section_name): Add
4552 keep return parameter.
4553 (Output_section_element::match_name): Add keep return parameter.
4554 Return the value of the keep_ member.
4555 * script-sections.h (class Output_section): Update
4556 output_section_name prototype.
4557 * layout.cc (Layout::keep_input_section): New public member
4558 function.
4559 (Layout::choose_output_section): Pass keep parameter to
4560 output_section_name.
4561 * layout.h (class Layout): Add keep_input_section.
4562 * object.cc (Sized_relobj_file::do_layout): Check for kept input
4563 sections.
4564 * testsuite/Makefile.am: Add a test.
4565 * testsuite/Makefile.in: Regenerate.
4566 * testsuite/pr14265.c: Source file for the test.
4567 * testsuite/pr14265.t: Linker script for the test.
4568 * testsuite/pr14265.sh: Shell script for the test.
4569
4570 2012-08-14 Alan Modra <amodra@gmail.com>
4571
4572 * target.h (Target::output_section_name): New function.
4573 (Target::do_output_section_name): New function.
4574 * layout.cc (Layout::choose_output_section): Call the above.
4575 * powerpc.cc (Target_powerpc::do_output_section_name): New function.
4576
4577 2012-08-14 Alan Modra <amodra@gmail.com>
4578
4579 * powerpc.cc: Update for renamed R_PPC_REL16 relocs.
4580 (Output_data_got_powerpc::do_write): Don't rely on base class lookup
4581 for replace_constant call.
4582 (Output_data_plt_powerpc::do_print_to_mapfile): New function.
4583 (Output_data_glink::do_print_to_mapfile): New function.
4584 (Target_powerpc::Scan::local): Ignore R_PPC64_TOCSAVE.
4585 (Target_powerpc::Relocate::relocate): Likewise.
4586
4587 2012-08-14 Alan Modra <amodra@gmail.com>
4588
4589 * powerpc.cc (Powerpc_relobj::set_got2_shndx): Delete.
4590 (Powerpc_relobj::do_find_special_sections): Don't use set_got2_shndx.
4591 (Output_data_glink::add_entry,find_entry): Remove shndx param.
4592 (class Glink_sym_ent): Rename from struct Glink_sym_ent. Remove
4593 all references to shndx_. Handle special case for R_PPC_PLTREL24
4594 here.
4595 (class Glink_sym_ent_hash): Rename from struct Glink_sym_ent_hash.
4596 (Output_data_glink::do_write): Retrieve got2_shdnx from object.
4597 (Target_powerpc::make_plt_entry): Don't special case R_PPC_PLTREL24
4598 here.
4599 (Target_powerpc::Scan::global): Nor on make_plt_entry call.
4600 (Target_powerpc::Relocate::relocate): Nor on glink->find_entry call.
4601
4602 2012-08-12 Alan Modra <amodra@gmail.com>
4603
4604 * powerpc.cc: Whitespace fixes. Wrap overly long lines.
4605 (glink insn constants): Use uint32_t.
4606 (Output_data_glink::add_entry): Use insert, not [] operator.
4607
4608 2012-08-11 Alan Modra <amodra@gmail.com>
4609
4610 * object.h (Sized_relobj_file::find_shdr): New function.
4611 (Sized_relobj_file::find_special_sections): New function.
4612 * object.cc (Sized_relobj_file::find_shdr): New function.
4613 (Sized_relobj_file::find_eh_frame): Use find_shdr.
4614 (Sized_relobj_file::find_special_sections): New function, split out..
4615 (Sized_relobj_file::do_read_symbols): ..from here.
4616 * output.h (Output_data_got::replace_constant): New function.
4617 (Output_data_got::num_entries): New function.
4618 (Output_data_got::last_got_offset,set_got_size): Use num_entries.
4619 (Output_data_got::got_offset): Protected rather than private.
4620 (Output_data_got::replace_got_entry): New function.
4621 * output.cc (Output_data_got::replace_got_entry): New function.
4622 * powerpc.cc (class Powerpc_relobj): New.
4623 (class Powerpc_relocate_functions): Delete all psymval variants or
4624 convert to value,addend type. Delete pcrela, pcrela_unaligned.
4625 Implement _ha functions using corresponding _hi function.
4626 (Powerpc_relobj::find_special_sections): New function.
4627 (Target_powerpc::do_make_elf_object): New function.
4628 (class Output_data_got_powerpc): New.
4629 (class Output_data_glink): New.
4630 (class Powerpc_scan_relocatable_reloc): New.
4631 Many more changes througout file.
4632
4633 2012-08-09 Nick Clifton <nickc@redhat.com>
4634
4635 * po/vi.po: Updated Vietnamese translation.
4636
4637 2012-08-07 Ian Lance Taylor <iant@google.com>
4638
4639 * layout.cc (Layout::add_target_dynamic_tags): If
4640 dynrel_includes_plt but no dyn_rel, emit dynamic reloc tags for
4641 plt_rel.
4642
4643 2012-07-30 Nick Clifton <nickc@redhat.com>
4644
4645 * po/gold.pot: Updated template.
4646 * po/es.po: Updated Spanish translation.
4647
4648 2012-07-18 Cary Coutant <ccoutant@google.com>
4649
4650 PR gold/14344
4651 * configure.ac: Add check for -gpubnames support.
4652 * configure: Regenerate.
4653 * testsuite/Makefile.am (gdb_index_test_1): Add check for -gpubnames
4654 support; force -gno-pubnames.
4655 (gdb_index_test_2, gdb_index_test_3): Add check for -gpubnames
4656 support.
4657 (gdb_index_test_4): New test.
4658 * testsuite/Makefile.in: Regenerate.
4659 * testsuite/gdb_index_test_1.sh: Refactor code into common file.
4660 * testsuite/gdb_index_test_2.sh: Likewise.
4661 * testsuite/gdb_index_test_3.sh: Don't look for space after colon.
4662 * testsuite/gdb_index_test_4.sh: New script.
4663 * testsuite/gdb_index_test_comm.sh: New script with common code;
4664 don't look for space after colon.
4665
4666 2012-07-16 Sriraman Tallam <tmsriram@google.com>
4667
4668 * gold.cc (queue_middle_tasks): Update function order only after
4669 deferred objects due to plugins are processed.
4670
4671 2012-07-11 Ian Lance Taylor <iant@google.com>
4672
4673 * arm.cc (Arm_relocate_functions::abs16): Remove unused typedef.
4674 (Arm_exidx_cantunwind::do_fixed_endian_write): Likewise.
4675 (Target_arm::scan_reloc_for_stub): Likewise.
4676 * common.cc (Symbol_table::do_allocate_commons_list): Likewise.
4677 * dwarf_reader.cc (Dwarf_die::skip_attributes): Likewise.
4678 * ehframe.cc (Eh_frame::do_add_ehframe_input_section): Likewise.
4679 * incremental.cc (Sized_incr_dynobj::do_add_symbols): Likewise.
4680 * powerpc.cc (Target_powerpc::relocate_tls): Likewise.
4681
4682 2012-07-10 Dodji Seketeli <dodji@redhat.com>
4683 Ian Lance Taylor <iant@google.com>
4684
4685 PR gold/14309
4686 * configure.ac: Test whether std::tr1::hash<off_t> works.
4687 * gold.h: Add a specialization for std::tr1::hash<off_t> if
4688 needed.
4689 * output.h (class Output_fill): Add virtual destructor.
4690 * configure, config.in: Rebuild.
4691
4692 2012-06-22 Roland McGrath <mcgrathr@google.com>
4693
4694 * layout.cc (finalize): Define __ehdr_start symbol if applicable.
4695
4696 2012-06-12 Rafael Ávila de Espíndola <respindola@mozilla.com>
4697
4698 * plugin.cc (Plugin::load): Handle position independent executables.
4699
4700 2012-06-06 Cary Coutant <ccoutant@google.com>
4701
4702 * layout.cc (gdb_sections): Remove ".debug_" prefixes,
4703 add .debug_macro.
4704 (lines_only_debug_sections): Likewise.
4705 (gdb_fast_lookup_sections): New static array.
4706 (is_gdb_debug_section): Rename formal parameter.
4707 (is_lines_only_debug_section): Likewise.
4708 (is_gdb_fast_lookup_section): New function.
4709 (Layout::include_section): Check for ".zdebug_" prefix; pass
4710 section name suffix to is_gdb_debug_section, et al.; check for
4711 fast-lookup sections when building .gdb_index.
4712 * options.h (--strip-debug-gdb): Update GDB version number.
4713
4714 2012-06-06 Cary Coutant <ccoutant@google.com>
4715
4716 * configure.ac: Add check for fallocate.
4717 * configure: Regenerate.
4718 * config.in: Regenerate.
4719
4720 * options.h (class General_options): Add --mmap-output-file and
4721 --posix-fallocate options.
4722 * output.cc: (posix_fallocate): Remove; replace with...
4723 (gold_fallocate): New function.
4724 (Output_file::map_no_anonymous): Call gold_fallocate.
4725 (Output_file::map): Check --mmap-output-file option.
4726
4727 2012-06-05 Jing Yu <jingyu@google.com>
4728
4729 * gold.h (textdomain): Add do {} to empty while(0).
4730 (bindtextdomain): Likewise.
4731
4732 2012-06-04 Cary Coutant <ccoutant@google.com>
4733
4734 * dynobj.cc (Sized_dynobj::do_get_global_symbol_counts): Call
4735 has_dynsym_index.
4736
4737 2012-05-25 Sriraman Tallam <tmsriram@google.com>
4738
4739 * symtab.cc (Symbol_table::define_special_symbol):
4740 Initialize *poldsym to prevent uninitialized variable errors.
4741
4742 2012-05-23 Cary Coutant <ccoutant@google.com>
4743
4744 * layout.cc (Layout::section_name_mapping): Add rules to handle
4745 exact match on .data.rel.ro.local or .data.rel.ro.
4746 (Layout::output_section_name): Check for exact matches.
4747
4748 2012-05-23 Cary Coutant <ccoutant@google.com>
4749
4750 * layout.cc (Layout::section_name_mapping): Match .data.rel.ro.*
4751 more carefully.
4752
4753 2012-05-22 Cary Coutant <ccoutant@google.com>
4754
4755 * symtab.cc (Symbol::should_add_dynsym_entry): Check for relocatable
4756 object before exporting symbol.
4757
4758 2012-05-21 H.J. Lu <hongjiu.lu@intel.com>
4759
4760 * testsuite/tls_test.cc: Include "config.h" first.
4761 * testsuite/tls_test_c.c: Likewise.
4762
4763 2012-05-17 Daniel Richard G. <skunk@iskunk.org>
4764 Nick Clifton <nickc@redhat.com>
4765
4766 PR 14072
4767 * configure.in: Add check that sysdep.h has been included before
4768 any system header files.
4769 * configure: Regenerate.
4770 * config.in: Regenerate.
4771
4772 2012-05-14 Cary Coutant <ccoutant@google.com>
4773
4774 * layout.cc (Layout::make_output_section): Mark .tdata section
4775 as RELRO.
4776 * testsuite/relro_test.cc: Add a TLS variable.
4777
4778 2012-05-10 H.J. Lu <hongjiu.lu@intel.com>
4779
4780 PR gold/14091
4781 * x86_64.cc (Target_x86_64::Scan::local): For x32, generate
4782 R_X86_64_RELATIVE64 instead of R_X86_64_RELATIVE in case of
4783 R_X86_64_64.
4784
4785 2012-05-08 Cary Coutant <ccoutant@google.com>
4786
4787 * layout.cc (gdb_sections): Update GDB version, add .debug_addr.
4788 (lines_only_debug_sections): Likewise.
4789
4790 2012-05-02 Roland McGrath <mcgrathr@google.com>
4791
4792 * nacl.cc: New file.
4793 * nacl.h: New file.
4794 * Makefile.am (CCFILES, HFILES): Add them.
4795 * Makefile.in: Regenerate.
4796 * i386.cc (Output_data_plt_i386_nacl): New class.
4797 (Output_data_plt_i386_nacl_exec): New class.
4798 (Output_data_plt_i386_nacl_dyn): New class.
4799 (Target_i386_nacl): New class.
4800 (Target_selector_i386_nacl): New class.
4801 (target_selector_i386): Use it instead of Target_selector_i386.
4802 * x86_64.cc (Output_data_plt_x86_64_nacl): New class.
4803 (Target_x86_64_nacl): New class.
4804 (Target_selector_x86_64_nacl): New class.
4805 (target_selector_x86_64, target_selector_x32): Use it instead of
4806 Target_selector_x86_64.
4807 * arm.cc (Output_data_plt_arm_nacl): New class.
4808 (Target_arm_nacl): New class.
4809 (Target_selector_arm_nacl): New class.
4810 (target_selector_arm, target_selector_armbe): Use it instead of
4811 Target_selector_arm.
4812
4813 * target-select.cc (select_target): Take new Input_file* and off_t
4814 arguments, pass them on to recognize method of selector.
4815 * object.cc (make_elf_sized_object): Update caller.
4816 * parameters.cc (parameters_force_valid_target): Likewise.
4817 * incremental.cc (make_sized_incremental_binary): Likewise.
4818 * target-select.h: Update decl.
4819 (Target_selector::recognize): Take new Input_file* argument,
4820 pass it on to do_recognize.
4821 (Target_selector::do_recognize): Take new Input_file* argument.
4822 * freebsd.h (Target_selector_freebsd::do_recognize): Likewise.
4823 * powerpc.cc (Target_selector_powerpc::do_recognize): Likewise.
4824 * sparc.cc (Target_selector_sparc::do_recognize): Likewise.
4825 * testsuite/testfile.cc (Target_selector::do_recognize): Likewise.
4826
4827 * target.h (Target::Target_info): New members isolate_execinstr
4828 and rosegment_gap.
4829 (Target::isolate_execinstr, Target::rosegment_gap): New methods.
4830 * arm.cc (Target_arm::arm_info): Update initializer.
4831 * i386.cc (Target_i386::i386_info): Likewise.
4832 * powerpc.cc (Target_powerpc::powerpc_info): Likewise.
4833 * sparc.cc (Target_sparc::sparc_info): Likewise.
4834 * x86_64.cc (Target_x86_64::x86_64_info): Likewise.
4835 * testsuite/testfile.cc (Target_test::test_target_info): Likewise.
4836 * layout.cc (Layout::attach_allocated_section_to_segment):
4837 Take new const Target* argument. If target->isolate_execinstr(), act
4838 like --rosegment.
4839 (Layout::find_first_load_seg): Take new const Target* argument;
4840 if target->isolate_execinstr(), reject PF_X segments.
4841 (Layout::relaxation_loop_body): Update caller.
4842 (Layout::set_segment_offsets): If target->isolate_execinstr(),
4843 reset file offset to zero when we hit LOAD_SEG, and then do a second
4844 loop over the segments before LOAD_SEG to reassign offsets after
4845 addresses have been determined. Handle target->rosegment_gap().
4846 (Layout::attach_section_to_segment): Take new const Target* argument;
4847 pass it to attach_allocated_section_to_segment.
4848 (Layout::make_output_section): Update caller.
4849 (Layout::attach_sections_to_segments): Take new const Target* argument;
4850 pass it to attach_section_to_segment.
4851 * gold.cc (queue_middle_tasks): Update caller.
4852 * layout.h (Layout): Update method decls with new arguments.
4853
4854 * arm.cc (Target_arm::Target_arm): Take optional argument for the
4855 Target_info pointer to use.
4856 (Target_arm::do_make_data_plt): New virtual method.
4857 (Target_arm::make_data_plt): New method that calls it.
4858 (Target_arm::make_plt_entry): Use it.
4859 (Output_data_plt_arm::Output_data_plt_arm): Take additional argument
4860 for the section alignment.
4861 (Output_data_plt_arm::do_first_plt_entry_offset): New abstract virtual
4862 method.
4863 (Output_data_plt_arm::first_plt_entry_offset): Call it.
4864 (Output_data_plt_arm::do_get_plt_entry_size): New abstract virtual
4865 method.
4866 (Output_data_plt_arm::get_plt_entry_size): Call it.
4867 (Output_data_plt_arm::do_fill_plt_entry): New abstract virtual method.
4868 (Output_data_plt_arm::fill_plt_entry): New method that calls it.
4869 (Output_data_plt_arm::do_fill_first_plt_entry): New abstract virtual
4870 method.
4871 (Output_data_plt_arm::fill_first_plt_entry): New method that calls it.
4872 (Output_data_plt_arm::set_final_data_size): Use get_plt_entry_size
4873 method instead of sizeof(plt_entry).
4874 (Output_data_plt_arm::add_entry): Likewise.
4875 Use first_plt_entry_offset method instead of sizeof(first_plt_entry).
4876 (Target_arm::first_plt_entry_offset): Call method on this->plt_ rather
4877 than static method.
4878 (Target_arm::plt_entry_size): Likewise.
4879 (Output_data_plt_arm::first_plt_entry, Output_data_plt_arm::plt_entry):
4880 Move to ...
4881 (Output_data_plt_arm_standard): ... here, new class.
4882 (Output_data_plt_arm::do_write): Move guts of PLT filling to...
4883 (Output_data_plt_arm_standard::do_fill_first_plt_entry): ... here ...
4884 (Output_data_plt_arm_standard::do_fill_plt_entry): ... and here.
4885
4886 * x86_64.cc (Output_data_plt_x86_64::Output_data_plt_x86_64):
4887 Take additional argument for the PLT entry size.
4888 (Output_data_plt_x86_64::get_tlsdesc_plt_offset):
4889 Use get_plt_entry_size method rather than plt_entry_size variable.
4890 (Output_data_plt_x86_64::reserve_slot): Likewise.
4891 (Output_data_plt_x86_64::do_adjust_output_section): Likewise.
4892 (Output_data_plt_x86_64::add_entry): Likewise.
4893 (Output_data_plt_x86_64::add_local_ifunc_entry): Likewise.
4894 (Output_data_plt_x86_64::address_for_global): Likewise.
4895 (Output_data_plt_x86_64::address_for_local): Likewise.
4896 (Output_data_plt_x86_64::set_final_data_size): Likewise.
4897 (Output_data_plt_x86_64::first_plt_entry_offset): Likewise.
4898 Make method non-static.
4899 (Output_data_plt_x86_64::do_get_plt_entry_size): New abstract virtual
4900 method.
4901 (Output_data_plt_x86_64::get_plt_entry_size): Just call that.
4902 (Output_data_plt_x86_64::do_add_eh_frame): New abstract virtual method.
4903 (Output_data_plt_x86_64::add_eh_frame): New method to call it.
4904 (Output_data_plt_x86_64::do_fill_first_plt_entry): New abstract
4905 virtual method.
4906 (Output_data_plt_x86_64::fill_first_plt_entry): New method to call it.
4907 (Output_data_plt_x86_64::do_fill_plt_entry): New abstract
4908 virtual method.
4909 (Output_data_plt_x86_64::fill_plt_entry): New method to call it.
4910 (Output_data_plt_x86_64::do_fill_tlsdesc_entry): New abstract
4911 virtual method.
4912 (Output_data_plt_x86_64::fill_tlsdesc_entry): New method to call it.
4913 (Output_data_plt_x86_64::plt_entry_size)
4914 (Output_data_plt_x86_64::first_plt_entry)
4915 (Output_data_plt_x86_64::plt_entry)
4916 (Output_data_plt_x86_64::tlsdesc_plt_entry)
4917 (Output_data_plt_x86_64::plt_eh_frame_fde_size)
4918 (Output_data_plt_x86_64::plt_eh_frame_fde): Move to ...
4919 (Output_data_plt_x86_64_standard): ... here, new class.
4920 (Target_x86_64::Target_x86_64): Take optional argument for the
4921 Target_info pointer to use.
4922 (Target_x86_64::do_make_data_plt): New virtual method.
4923 (Target_x86_64::make_data_plt): New method to call it.
4924 (Target_x86_64::init_got_plt_for_update): Use that.
4925 Call this->plt_->add_eh_frame method here.
4926 (Output_data_plt_x86_64::init): Don't do add_eh_frame_for_plt here.
4927 (Target_x86_64::first_plt_entry_offset): Call method on this->plt_
4928 rather than static method.
4929 (Target_x86_64::plt_entry_size): Likewise.
4930 (Output_data_plt_x86_64::do_write): Use get_plt_entry_size method
4931 rather than plt_entry_size variable. Move guts of PLT filling to...
4932 (Output_data_plt_x86_64_standard::do_fill_first_plt_entry): ... here ...
4933 (Output_data_plt_x86_64_standard::do_fill_plt_entry): ... and here ...
4934 (Output_data_plt_x86_64_standard::do_fill_tlsdesc_entry): ... and here.
4935
4936 * i386.cc (Output_data_plt_i386::Output_data_plt_i386): Take
4937 additional argument for the section alignment.
4938 Don't do add_eh_frame_for_plt here.
4939 (Output_data_plt_i386::first_plt_entry_offset): Make the method
4940 non-static. Use get_plt_entry_size method rather than plt_entry_size
4941 variable.
4942 (Output_data_plt_i386::do_get_plt_entry_size): New abstract virtual
4943 method.
4944 (Output_data_plt_i386::get_plt_entry_size): Call it.
4945 (Output_data_plt_i386::do_add_eh_frame): New abstract virtual method.
4946 (Output_data_plt_i386::add_eh_frame): New method to call it.
4947 (Output_data_plt_i386::do_fill_first_plt_entry): New abstract virtual
4948 method.
4949 (Output_data_plt_i386::fill_first_plt_entry): New method to call it.
4950 (Output_data_plt_i386::do_fill_plt_entry): New abstract virtual
4951 method.
4952 (Output_data_plt_i386::fill_plt_entry): New method to call it.
4953 (Output_data_plt_i386::set_final_data_size): Use get_plt_entry_size
4954 method instead of plt_entry_size.
4955 (Output_data_plt_i386::plt_entry_size)
4956 (Output_data_plt_i386::plt_eh_frame_fde_size)
4957 (Output_data_plt_i386::plt_eh_frame_fde): Move to ...
4958 (Output_data_plt_i386_standard): ... here, new class.
4959 (Output_data_plt_i386_exec): New class.
4960 (Output_data_plt_i386::exec_first_plt_entry): Move to ...
4961 (Output_data_plt_i386_exec::first_plt_entry): ... here.
4962 (Output_data_plt_i386::exec_plt_entry): Move to ...
4963 (Output_data_plt_i386_exec::plt_entry): ... here.
4964 (Output_data_plt_i386_dyn): New class.
4965 (Output_data_plt_i386::first_plt_entry): Move to ...
4966 (Output_data_plt_i386_dyn::first_plt_entry): ... here.
4967 (Output_data_plt_i386::dyn_plt_entry): Move to ...
4968 (Output_data_plt_i386_dyn::plt_entry): ... here.
4969 (Target_i386::Target_i386): Take optional argument for the Target_info
4970 pointer to use.
4971 (Target_i386::do_make_data_plt): New virtual method.
4972 (Target_i386::make_data_plt): New method to call it.
4973 (Target_i386::make_plt_section): Use that.
4974 Call this->plt_->add_eh_frame method here.
4975 (Output_data_plt_i386::add_entry): Use get_plt_entry_size method
4976 rather than plt_entry_size variable.
4977 (Output_data_plt_i386::add_local_ifunc_entry): Likewise.
4978 (Output_data_plt_i386::address_for_local): Likewise.
4979 (Output_data_plt_i386::do_write): Likewise.
4980 Move guts of PLT filling to...
4981 (Output_data_plt_i386_exec::do_fill_first_plt_entry): ... here ...
4982 (Output_data_plt_i386_exec::do_fill_plt_entry): ... and here ...
4983 (Output_data_plt_i386_dyn::do_fill_first_plt_entry): ... and here ...
4984 (Output_data_plt_i386_dyn::do_fill_plt_entry): ... and here.
4985
4986 2012-05-01 Cary Coutant <ccoutant@google.com>
4987
4988 * dwarf_reader.cc (Dwarf_die::read_attributes)
4989 (Dwarf_die::skip_attributes, Dwarf_die::int_attribute)
4990 (Dwarf_die::uint_attribute): Remove DW_FORM_null.
4991 * reduced_debug_output.cc
4992 (Output_reduced_debug_info_section::get_die_end): Remove
4993 DW_FORM_GNU_ref_index. Add default case.
4994
4995 2012-04-26 Mark Wielaard <mjw@redhat.com>
4996
4997 * dwarf_reader.cc (Dwarf_die::address_attribute): New function.
4998 * dwarf_reader.h (Dwarf_die::address_attribute): Likewise.
4999 * gdb-index.cc (Gdb_index_info_reader::record_cu_ranges): Handle
5000 DW_AT_high_pc as offset from DW_AT_low_pc.
5001
5002 * testsuite/Makefile.am (gdb_index_test_3.sh): New test case.
5003 * testsuite/Makefile.in: Regenerate.
5004 * testsuite/gdb_index_test_3.c: New test source file.
5005 * testsuite/gdb_index_test_3.sh: New test source file.
5006
5007 2012-04-25 Ian Lance Taylor <iant@google.com>
5008
5009 * arm.cc (Target_arm::do_is_defined_by_abi): Make sym a const
5010 pointer.
5011 (Stub_addend_reader::operator()): Declare Arm_relocate_functions
5012 as a class, not a struct.
5013 (Target_arm::scan_span_for_cortex_a8_erratum): Likewise.
5014 (Target_arm::apply_cortex_a8_workaround): Likewise.
5015 * gc.h: Declare Reloc_types as a struct, not a class.
5016 * object.h: Declare Symbols_data as a struct.
5017 * reloc.h: Declare Read_relocs_data as a struct.
5018 * target.h: Declare Relocate_info as a struct.
5019
5020 2012-04-24 David S. Miller <davem@davemloft.net>
5021
5022 * sparc.cc (Target_sparc::Relocate::relax_call): New function.
5023 (Target_sparc::Relocate::relocate): Call it for R_SPARC_WDISP30
5024 and R_SPARC_WPLT30.
5025
5026 2012-04-24 Cary Coutant <ccoutant@google.com>
5027
5028 * incremental-dump.cc (find_input_containing_global): Replace
5029 magic number with symbolic constant.
5030 (dump_incremental_inputs): Update version number.
5031 * incremental.cc (Output_section_incremental_inputs): Update version
5032 number; import symbolic constants from Incremental_inputs_reader.
5033 (Incremental_inputs::create_data_sections): Align relocations
5034 section correctly for 64-bit targets.
5035 (Output_section_incremental_inputs::set_final_data_size): Use symbolic
5036 constants; add padding.
5037 (Output_section_incremental_inputs::write_header): Add assert for
5038 header_size.
5039 (Output_section_incremental_inputs::write_input_files): Add assert
5040 for input_entry_size.
5041 (Output_section_incremental_inputs::write_info_blocks): Add padding;
5042 add assert for object_info_size, input_section_entry_size,
5043 global_sym_entry_size.
5044 * incremental.h (Incremental_inputs_reader): Add symbolic constants
5045 for data structure sizes; use them.
5046 (Incremental_input_entry_reader): Import symbolic constants from
5047 Incremental_inputs_reader; use them.
5048
5049 2012-04-23 David S. Miller <davem@davemloft.net>
5050
5051 * sparc.cc (class Target_sparc): Add elf_machine_, elf_flags_,
5052 and elf_flags_set_.
5053 (Target_sparc::Target_sparc): Initialize new fields.
5054 (Target_sparc::do_make_elf_object): New function.
5055 (Target_sparc::do_adjust_elf_header): New function.
5056
5057 2012-04-23 Cary Coutant <ccoutant@google.com>
5058
5059 * gdb-index.cc (Gdb_index::do_write): Use Swap_aligned32 for writing
5060 CU range table of gdb index.
5061
5062 2012-04-20 David S. Miller <davem@davemloft.net>
5063
5064 * target.cc (Sized_target::do_adjust_elf_header): Use big_endian
5065 instead of false.
5066
5067 2012-04-16 David S. Miller <davem@davemloft.net>
5068
5069 * sparc.cc (Target_sparc::got_address): New function.
5070 (Sparc_relocate_functions::gdop_hix22): New function.
5071 (Sparc_relocate_functions::gdop_lox10): New function.
5072 (Target_sparc::Scan::local): Do not emit a GOT entry for GOTDATA
5073 relocs.
5074 (Target_sparc::Scan::local): Likewise if the global symbol is not
5075 preemptible and is not IFUNC.
5076 (Target_sparc::Relocate::relocate): Perform GOTDATA code
5077 transformations for local and non-preemptible non-IFUNC global
5078 symbols.
5079
5080 * gdb-index.cc (Gdb_index::do_write): Use Swap_unaligned when
5081 writing out 64-bit part of ranges.
5082
5083 * Makefile.am: Build IFUNC tests with -fPIC and -fPIE instead of
5084 -fpic and -fpie respectively.
5085 * Makefile.in: Regenerate.
5086
5087 * sparc.cc (class Target_sparc): Add rela_ifunc_.
5088 (Target_sparc::Target_sparc): Initialize new field.
5089 (Target_sparc::do_plt_section_for_global): New function.
5090 (Target_sparc::do_plt_section_for_local): New function.
5091 (Target_sparc::reloc_needs_plt_for_ifunc): New function.
5092 (Target_sparc::make_plt_section): New function, broken out of
5093 make_plt_entry. Use ORDER_NON_RELRO_FIRST for ".plt".
5094 (Target_sparc::make_plt_entry): Call make_plt_section.
5095 (Target_sparc::make_local_ifunc_plt_entry): New function.
5096 (Target_sparc::rela_ifunc_section): New function.
5097 (Target_sparc::plt_section): Remove const.
5098 (Output_data_plt_sparc): Update declarations. Define Global_ifunc
5099 and Local_ifunc types. Add global_ifuncs_, local_ifuncs_, ifunc_rel_,
5100 and ifunc_count_ fields.
5101 (Output_data_plt_sparc::Output_data_plt_sparc): Initialize new fields.
5102 (Output_data_plt_sparc::add_entry): Handle IFUNC symbols.
5103 (Output_data_plt_sparc::add_local_ifunc_entry): New function.
5104 (Output_data_plt_sparc::rela_ifunc): New function.
5105 (Output_data_plt_sparc::emit_pending_ifunc_relocs): New function.
5106 (Output_data_plt_sparc::has_ifunc_section): New function.
5107 (Output_data_plt_sparc::entry_count): Include ifunc_count_.
5108 (Output_data_plt_sparc::address_for_global): New function.
5109 (Output_data_plt_sparc::address_for_local): New function.
5110 (Output_data_plt_sparc::plt_index_to_offset): New function.
5111 (Output_data_plt_sparc::set_final_data_size): Use plt_index_to_offset
5112 and entry_count.
5113 (Output_data_plt_sparc::do_write): Use first_plt_entry_offset and
5114 entry_count.
5115 (Target_sparc::Scan::get_reference_flags): Add R_SPARC_IRELATIVE and
5116 R_SPARC_JMP_IREL to switch.
5117 (Target_sparc::Scan::check_non_pic): Likewise.
5118 (Target_sparc::Scan::local): Handle IFUNC symbols.
5119 (Target_sparc::Scan::local): Likewise.
5120 (Target_sparc::Relocate::relocate): Likewise, use plt_address_for_global
5121 and plt_address_for_local.
5122 (Target_sparc::do_finalize_sections): Call emit_pending_ifunc_relocs.
5123 Define __rel_iplt_start and __rel_iplt_end if doing a static link.
5124
5125 * output.h (Output_reloc): Allow use_plt_offset for global relocs too.
5126 (class Output_data_reloc): Adjust calls to Output_reloc_type.
5127 (Output_data_reloc::add_global_relative): (RELA only) Add use_plt_offset.
5128 * output.cc (Output_reloc::Output_reloc): Add use_plt_offset flag for
5129 global relocs too.
5130 (Output_reloc::symbol_value): Respect use_plt_offset_ for global symbols.
5131 * powerpc.cc (Target_powerpc::Scan::global): Adjust add_global_relative
5132 calls.
5133 * sparc.cc (Target_sparc::Scan::global): Likewise.
5134 * x86_64.cc (Target_x86_64::Scan::global): Likewise.
5135
5136 2012-04-16 Cary Coutant <ccoutant@google.com>
5137
5138 * archive.cc (Library_base::should_include_member): Check for
5139 --export-dynamic-symbol.
5140 * options.h (class General_options): Add --export-dynamic-symbol.
5141 * symtab.cc (Symbol::should_add_dynsym_entry): Check for
5142 --export-dynamic-symbol.
5143 (Symbol_table::gc_mark_undef_symbols): Likewise.
5144 (Symbol_table::do_add_undefined_symbols_from_command_line): Likewise.
5145
5146 2012-04-12 David S. Miller <davem@davemloft.net>
5147
5148 * sparc.cc (Reloc::wdisp10): New relocation method.
5149 (Reloc::h34): Likewise.
5150 (Target_sparc::Scan::check_non_pic): Handle R_SPARC_H34.
5151 (Target_sparc::Scan::get_reference_flags): Handle R_SPARC_H34 and
5152 R_SPARC_WDISP10.
5153 (Target_sparc::Scan::local): Likewise.
5154 (Target_sparc::Scan::global): Likewise.
5155 (Target_sparc::Relocate::relocate): Likewise.
5156
5157 2012-04-09 Cary Coutant <ccoutant@google.com>
5158
5159 * gdb-index.cc (Gdb_index_info_reader::record_cu_ranges): Allow
5160 low_pc == 0.
5161
5162 2012-04-06 Ian Lance Taylor <iant@google.com>
5163
5164 * timer.cc: #include <unistd.h>.
5165
5166 2012-04-06 Roland McGrath <mcgrathr@google.com>
5167
5168 * configure.in (AC_CHECK_HEADERS): Add locale.h.
5169 * config.in: Regenerate.
5170 * configure: Regenerate.
5171
5172 2012-04-05 Nick Clifton <nickc@redhat.com>
5173
5174 * configure.ac (AC_CHECK_FUNCS): Add setlocale.
5175 (AM_LC_MESSAGES): Add.
5176 * aclocal.m4: Regenerate.
5177 * config.in: Regenerate.
5178 * configure: Regenerate.
5179
5180 2012-03-21 Cary Coutant <ccoutant@google.com>
5181
5182 * Makefile.am: Add gdb-index.cc, gdb-index.h.
5183 * Makefile.in: Regenerate.
5184 * dwarf_reader.cc (Sized_elf_reloc_mapper::do_initialize): New function.
5185 (Sized_elf_reloc_mapper::symbol_section): New function.
5186 (Sized_elf_reloc_mapper::do_get_reloc_target): New function.
5187 (make_elf_reloc_mapper): New function.
5188 (Dwarf_abbrev_table::clear_abbrev_codes): New function.
5189 (Dwarf_abbrev_table::do_read_abbrevs): New function.
5190 (Dwarf_abbrev_table::do_get_abbrev): New function.
5191 (Dwarf_ranges_table::read_ranges_table): New function.
5192 (Dwarf_ranges_table::read_range_list): New function.
5193 (Dwarf_pubnames_table::read_section): New function.
5194 (Dwarf_pubnames_table::read_header): New function.
5195 (Dwarf_pubnames_table::next_name): New function.
5196 (Dwarf_die::Dwarf_die): New function.
5197 (Dwarf_die::read_attributes): New function.
5198 (Dwarf_die::skip_attributes): New function.
5199 (Dwarf_die::set_name): New function.
5200 (Dwarf_die::set_linkage_name): New function.
5201 (Dwarf_die::attribute): New function.
5202 (Dwarf_die::string_attribute): New function.
5203 (Dwarf_die::int_attribute): New function.
5204 (Dwarf_die::uint_attribute): New function.
5205 (Dwarf_die::ref_attribute): New function.
5206 (Dwarf_die::child_offset): New function.
5207 (Dwarf_die::sibling_offset): New function.
5208 (Dwarf_info_reader::check_buffer): New function.
5209 (Dwarf_info_reader::parse): New function.
5210 (Dwarf_info_reader::do_parse): New function.
5211 (Dwarf_info_reader::do_read_string_table): New function.
5212 (Dwarf_info_reader::lookup_reloc): New function.
5213 (Dwarf_info_reader::get_string): New function.
5214 (Dwarf_info_reader::visit_compilation_unit): New function.
5215 (Dwarf_info_reader::visit_type_unit): New function.
5216 (Sized_dwarf_line_info::Sized_dwarf_line_info): Use
5217 Sized_elf_reloc_mapper.
5218 (Sized_dwarf_line_info::symbol_section): Remove function.
5219 (Sized_dwarf_line_info::read_relocs): Use Sized_elf_reloc_mapper.
5220 (Sized_dwarf_line_info::read_line_mappings): Remove object
5221 parameter, adjust callers.
5222 (Sized_dwarf_line_info::format_file_lineno): Fix type of cast.
5223 * dwarf_reader.h: Include <sys/types.h>.
5224 (class Track_relocs): Remove forward declaration.
5225 (class Elf_reloc_mapper): New class.
5226 (class Sized_elf_reloc_mapper): New class.
5227 (class Dwarf_abbrev_table): New class.
5228 (class Dwarf_range_list): New class.
5229 (class Dwarf_ranges_table): New class.
5230 (class Dwarf_pubnames_table): New class.
5231 (class Dwarf_die): New class.
5232 (class Dwarf_info_reader): New class.
5233 (Sized_dwarf_line_info::read_line_mappings): Remove object parameter.
5234 (Sized_dwarf_line_info::symbol_section): Remove member function.
5235 * dynobj.h (Sized_dynobj::do_section_contents): Refactor code from
5236 base class.
5237 * gdb-index.cc: New source file.
5238 * gdb-index.h: New source file.
5239 * incremental.cc (Sized_relobj_incr::do_layout): Track .debug_info
5240 and .debug_types sections, call Layout::add_to_gdb_index.
5241 (Sized_relobj_incr::do_section_name): Implement.
5242 (Sized_relobj_incr::do_section_contents): Adjust parameter list and
5243 return type; Implement.
5244 (Sized_incr_dynobj::do_section_contents): Adjust parameter list and
5245 return type.
5246 * incremental.h (Sized_relobj_incr::do_section_contents): Adjust
5247 parameter list and return type.
5248 (Sized_incr_dynobj::do_section_contents): Likewise.
5249 * layout.cc: Include gdb-index.h.
5250 (Layout::Layout): Initialize gdb_index_data_.
5251 (Layout::init_fixed_output_section): Check for .gdb_index section.
5252 (Layout::add_to_gdb_index): New function. Instantiate.
5253 * layout.h: Add forward declaration for class Gdb_index.
5254 (Layout::add_to_gdb_index): New member function.
5255 (Layout::gdb_index_data_): New data member.
5256 * main.cc: Include gdb-index.h.
5257 (main): Print statistics for gdb index.
5258 * object.cc (Object::section_contents): Move code into
5259 do_section_contents.
5260 (need_decompressed_section): Check for sections needed when building
5261 gdb index.
5262 (build_compressed_section_map): Likewise.
5263 (Sized_relobj_file::do_read_symbols): Need local symbols when building
5264 gdb index.
5265 (Sized_relobj_file::do_layout): Track .debug_info and .debug_types
5266 sections; call Layout::add_to_gdb_index.
5267 (Sized_relobj_file::do_decompressed_section_contents): Call
5268 do_section_contents directly.
5269 * object.h (Object::do_section_contents): Adjust parameter list and
5270 return type.
5271 (Object::do_decompressed_section_contents): Call do_section_contents
5272 directly.
5273 (Sized_relobj_file::do_section_contents): Adjust parameter list and
5274 return type.
5275 * options.h (class General_options): Add --gdb-index option.
5276 * plugin.cc (Sized_pluginobj::do_section_contents): Adjust parameter
5277 list and return type.
5278 * plugin.h (Sized_pluginobj::do_section_contents): Likewise.
5279 * reloc.h (Track_relocs::checkpoint): New function.
5280 (Track_relocs::reset): New function.
5281
5282 * testsuite/Makefile.am (gdb_index_test_1.sh, gdb_index_test_2.sh):
5283 New test cases.
5284 * testsuite/Makefile.in: Regenerate.
5285 * testsuite/gdb_index_test.cc: New test source file.
5286 * testsuite/gdb_index_test_1.sh: New test source file.
5287 * testsuite/gdb_index_test_2.sh: New test source file.
5288
5289 2012-03-19 Doug Kwan <dougkwan@google.com>
5290
5291 * arm.cc (Target_arm::do_define_standard_symbols): New method.
5292 (Target_arm::do_finalize_sections): Remove code which defines
5293 __exidx_start and __exidx_end. Make symbol table parameter
5294 anonymous as it is not used.
5295 * gold.cc (queue_middle_tasks): Call target hook to define any
5296 target-specific symbols.
5297 * target.h (Target::define_standard_symbols): New method.
5298 (Target::do_define_standard_symbols): Same.
5299 * testsuite/Makefile.am (arm_exidx_test): Dump relocations also.
5300 * testsuite/Makefile.in: Regenerate.
5301 * testsuite/arm_exidx.s: Generate data relocations for __exidx_start
5302 and __exidx_end.
5303 * testsuite/arm_exidx_test.sh: Check that no unused dynamic
5304 relocations are generated for __exidx_start and __exidx_end.
5305
5306 2012-03-16 Doug Kwan <dougkwan@google.com>
5307
5308 * testsuite/Makefile.am: Disable test initpri3b.
5309 * testsuite/Makefile.in: Regenerate.
5310
5311 2012-03-15 Doug Kwan <dougkwan@google.com>
5312
5313 * arm.cc (Target_arm::got_section): Make .got section read-only
5314 if -z now is given.
5315
5316 2012-03-15 Ian Lance Taylor <iant@google.com>
5317
5318 PR gold/13850
5319 * layout.cc (Layout::make_output_section): Correctly mark
5320 SHT_INIT_ARRAY, et. al., as relro.
5321
5322 2012-03-14 Doug Kwan <dougkwan@google.com>
5323
5324 * gold/arm.cc (Target_arm::Scan::global): Generate R_ARM_GLOB_DAT
5325 dynamic relocations for protected symbols in shared objects.
5326
5327 2012-03-13 Ian Lance Taylor <iant@google.com>
5328
5329 * resolve.cc (Symbol_table::resolve): When merging common symbols,
5330 keep the larger alignment.
5331
5332 2012-03-12 Cary Coutant <ccoutant@google.com>
5333
5334 * dwarf_reader.cc (Sized_dwarf_line_info::process_one_opcode): Fix
5335 handling of DW_LNE_define_file.
5336
5337 2012-03-12 Cary Coutant <ccoutant@google.com>
5338
5339 * reduced_debug_output.cc
5340 (Output_reduced_debug_info_section::get_die_end): Add new FORM
5341 codes to switch.
5342
5343 2012-02-29 Cary Coutant <ccoutant@google.com>
5344
5345 * object.cc (need_decompressed_section): Add #ifdef ENABLE_THREADS.
5346
5347 2012-02-29 Cary Coutant <ccoutant@google.com>
5348
5349 * dwarf_reader.cc (Sized_dwarf_line_info::Sized_dwarf_line_info):
5350 Call Object::decompressed_section_contents.
5351 * dwarf_reader.h (Sized_dwarf_line_info::~Sized_dwarf_line_info):
5352 New dtor.
5353 (Sized_dwarf_line_info::buffer_start_): New data member.
5354 * merge.cc (Output_merge_data::do_add_input_section): Call
5355 Object::decompressed_section_contents.
5356 (Output_merge_string::do_add_input_section): Likewise.
5357 * object.cc (need_decompressed_section): New function.
5358 (build_compressed_section_map): Decompress sections needed later.
5359 (Sized_relobj_file::do_decompressed_section_contents): New function.
5360 (Sized_relobj_file::do_discard_decompressed_sections): New function.
5361 * object.h (Object::decompressed_section_contents): New function.
5362 (Object::discard_decompressed_sections): New function.
5363 (Object::do_decompressed_section_contents): New function.
5364 (Object::do_discard_decompressed_sections): New function.
5365 (Compressed_section_info): New type.
5366 (Compressed_section_map): Include decompressed section contents.
5367 (Sized_relobj_file::do_decompressed_section_contents): New function.
5368 (Sized_relobj_file::do_discard_decompressed_sections): New function.
5369
5370 2012-02-16 Cary Coutant <ccoutant@google.com>
5371
5372 * testsuite/Makefile.am (initpri2): Add --ctors-in-init-array option.
5373 * testsuite/Makefile.in: Regenerate.
5374
5375 2012-02-14 Cary Coutant <ccoutant@google.com>
5376
5377 * options.cc (General_options::finalize): Disallow -pie and -static.
5378
5379 2012-02-03 Doug Kwan <dougkwan@google.com>
5380
5381 * arm.cc (Arm_relocate_functions::abs8,
5382 Arm_relocate_functions::abs16): Use
5383 Bits::has_signed_unsigned_overflow32.
5384 (Arm_relocate_functions::thm_abs8): Correct range of
5385 overflow check.
5386 * reloc.h (Bits class): Change minimum number of bits from 0 to 1
5387 in assertions.
5388
5389 2012-02-02 Doug Kwan <dougkwan@google.com>
5390
5391 * arm.cc (Reloc_stub::stub_type_for_reloc): Use PIC stubs in all
5392 position independent outputs, not just shared objects.
5393
5394 2012-01-30 H.J. Lu <hongjiu.lu@intel.com>
5395
5396 * configure.ac: Check if -fpic -mtls-dialect=gnu2 works.
5397 * configure: Regenerated.
5398
5399 2012-01-27 Ian Lance Taylor <iant@google.com>
5400
5401 * reloc.h (Bits): New class with static functions, copied from
5402 namespace utils in arm.cc.
5403 * arm.cc (namespace utils): Remove. Rewrite all uses to use Bits
5404 instead.
5405
5406 2012-01-27 H.J. Lu <hongjiu.lu@intel.com>
5407
5408 * incremental.cc (write_info_blocks): Correct relocation offset.
5409
5410 2012-01-27 H.J. Lu <hongjiu.lu@intel.com>
5411
5412 * x86_64.cc (Relocate::tls_gd_to_ie): Support x32.
5413 (Relocate::tls_gd_to_le): Likewise.
5414
5415 2012-01-27 H.J. Lu <hongjiu.lu@intel.com>
5416
5417 * x86_64.cc (Scan::global): Support x32 IFUNC function pointer.
5418
5419 2012-01-27 H.J. Lu <hongjiu.lu@intel.com>
5420
5421 * configure.ac: Check if -mcmodel=medium works.
5422 * configure: Regenerated.
5423
5424 2012-01-24 Cary Coutant <ccoutant@google.com>
5425
5426 * int_encoding.cc (read_unsigned_LEB_128): Replaced with inline
5427 definition and ...
5428 (read_unsigned_LEB_128_x): ... this new function.
5429 (read_signed_LEB_128): Replaced with inline definition and ...
5430 (read_signed_LEB_128_x): ... this new function.
5431 * int_encoding.h (read_unsigned_LEB_128_x): New function.
5432 (read_unsigned_LEB_128): Add inline definition.
5433 (read_signed_LEB_128_x): New function.
5434 (read_signed_LEB_128): Add inline definition.
5435 * testsuite/Makefile.am (leb128_unittest): New unit test.
5436 * testsuite/Makefile.in: Regenerate.
5437 * testsuite/leb128_unittest.cc: New unit test.
5438
5439 2012-01-23 Ian Lance Taylor <iant@google.com>
5440
5441 PR gold/13617
5442 * i386.cc (Target_i386::do_code_fill): When using a jmp
5443 instruction, pad with nop instructions.
5444 * x86_64.cc (Target_x86_64::do_code_fill): Likewise.
5445
5446 2012-01-22 H.J. Lu <hongjiu.lu@intel.com>
5447
5448 * x86_64.cc (gc_process_relocs): Add typename on types used in
5449 template.
5450 (scan_relocs): Likewise.
5451 (relocate_section): Likewise.
5452 (apply_relocation): Likewise.
5453
5454 2012-01-10 H.J. Lu <hongjiu.lu@intel.com>
5455
5456 * x86_64.cc (Scan::check_non_pic): Allow R_X86_64_32 for x32.
5457 (Scan::local): Use R_X86_64_RELATIVE relocation for R_X86_64_32
5458 under x32.
5459
5460 2012-01-09 H.J. Lu <hongjiu.lu@intel.com>
5461
5462 * x86_64.cc: Initial support for x32.
5463
5464 2012-01-03 Cary Coutant <ccoutant@google.com>
5465
5466 * gold/incremental.cc (Sized_incremental_binary::do_process_got_plt):
5467 Use abstract base class for GOT.
5468 * gold/output.h (class Output_data_got_base): New abstract base class.
5469 (class Output_data_got): Derive from new base class, adjust ctors.
5470 (Output_data_got::reserve_slot): Make virtual; rename to
5471 do_reserve_slot; Adjust callers.
5472 * gold/target.h (Sized_target::init_got_plt_for_update): Return
5473 pointer to abstract base class.
5474 * gold/x86_64.cc (Target_x86_64::init_got_plt_for_update): Likewise.
5475
5476 2011-12-18 Ian Lance Taylor <iant@google.com>
5477
5478 * object.h (Relobj::local_symbol_value): New function.
5479 (Relobj::local_plt_offset): New function.
5480 (Relobj::local_has_got_offset): New function.
5481 (Relobj::local_got_offset): New function.
5482 (Relobj::set_local_got_offset): New function.
5483 (Relobj::do_local_symbol_value): New pure virtual function.
5484 (Relobj::do_local_plt_offset): Likewise.
5485 (Relobj::do_local_has_got_offset): Likewise.
5486 (Relobj::do_local_got_offset): Likewise.
5487 (Relobj::do_set_local_got_offset): Likewise.
5488 (Sized_relobj::do_local_has_got_offset): Rename from
5489 local_has_got_offset.
5490 (Sized_relobj::do_local_got_offset): Rename from local_got_offset.
5491 (Sized_relobj::do_set_local_got_offset): Rename from
5492 set_local_got_offset.
5493 (Sized_relobj_file::do_local_plt_offset): Rename from
5494 local_plt_offset.
5495 (Sized_relobj_file::do_local_symbol_value): New function.
5496 * object.cc (Sized_relobj_file::do_local_plt_offset): Rename from
5497 local_plt_offset.
5498 * output.cc (Output_data_got::Got_entry::write): Change object to
5499 Relobj. Use local_symbol_value.
5500 (Output_data_got::add_global_with_rel): Change rel_dyn to
5501 Output_data_reloc_generic*. Use add_global_generic.
5502 (Output_data_got::add_global_with_rela): Remove. Change all
5503 callers to use add_global_with_rel.
5504 (Output_data_got::add_global_pair_with_rel): Change rel_dyn to
5505 Output_data_reloc_generic*. Use add_global_generic.
5506 (Output_data_got::add_global_pair_with_rela): Remove. Change all
5507 callers to use add_global_pair_with_rel.
5508 (Output_data_got::add_local): Change object to Relobj*.
5509 (Output_data_got::add_local_plt): Likewise.
5510 (Output_data_got::add_local_with_rel): Change object to Relobj*,
5511 change rel_dyn to Output_data_reloc_generic*. Use
5512 add_local_generic.
5513 (Output_data_got::add_local_with_rela): Remove. Change all
5514 callers to use all_local_with_rel.
5515 (Output_data_got::add_local_pair_with_rel): Change object to
5516 Relobj*, change rel_dyn to Output_data_reloc_generic*. Use
5517 add_output_section_generic.
5518 (Output_data_got::add_local_pair_with_rela): Remove. Change all
5519 callers to use add_local_pair_with_rel.
5520 (Output_data_got::reserve_local): Change object to Relobj*.
5521 * output.h: (class Output_data_reloc_generic): Add pure virtual
5522 declarations for add_global_generic, add_local_generic,
5523 add_output_section_generic.
5524 (class Output_data_reloc) [SHT_REL, SHT_RELA]: Implement new
5525 functions for Output_data_reloc_generic. Update declarations for
5526 changes listed in output.cc.
5527 (class Output_data_got): Change template parameter to got_size.
5528 Don't define Rel_dyn or Rela_dyn. Update declarations per above.
5529 * incremental.h (Sized_relobj_incr::do_local_symbol_value): New
5530 function.
5531 (Sized_relobj_incr::do_local_plt_offset): New function.
5532 * copy-relocs.cc (Copy_relocs::Copy_reloc_entry::emit): Call
5533 add_global_generic.
5534
5535 2011-12-17 Cary Coutant <ccoutant@google.com>
5536
5537 * dwarf_reader.cc (Sized_dwarf_line_info::read_lines): Add casts.
5538 * resolve.cc (Symbol_table::resolve): Likewise.
5539 * i386.cc (Target_i386::do_code_fill): Use char constants for nop
5540 arrays.
5541 * x86_64.cc (Target_x86_64::do_code_fill): Likewise.
5542
5543 2011-12-16 Ian Lance Taylor <iant@google.com>
5544
5545 * output.h (Output_data_reloc_generic::add): Only call
5546 add_dynamic_reloc if this is a dynamic reloc section.
5547
5548 2011-12-15 H.J. Lu <hongjiu.lu@intel.com>
5549
5550 PR gold/13505
5551 * target-reloc.h (apply_relocation): Replace <64, false> with
5552 <size, big_endian>.
5553
5554 2011-11-25 Nick Clifton <nickc@redhat.com>
5555
5556 * po/it.po: New Italian translation.
5557
5558 2011-11-17 Sterling Augustine <saugustine@google.com>
5559
5560 * script.cc (script_include_directive): Implement.
5561 (read_script_file): New local variables name and search_path. Update
5562 comment. Call IS_ABSOLUTE_PATH and Dirsearch::find_file_in_dir_list.
5563 * dirsearch.h (Dirsearch::find_file_in_dir_list): Declare new method.
5564 * dirsearch.cc (Dirsearch::find_file_in_dir_list): Implement it.
5565
5566 2011-11-11 Sterling Augustine <saugustine@google.com>
5567
5568 * yyscript.y (section_cmd): Add support for INCLUDE directive.
5569 (file_or_sections_cmd): Likewise.
5570
5571 2011-11-11 Doug Kwan <dougkwan@google.com>
5572
5573 * arm.cc (Target_arm::do_make_elf_object): Allow executable also
5574 if --just-symbols is given.
5575
5576 2011-11-10 Doug Kwan <dougkwan@google.com>
5577
5578 PR gold/13362
5579 * arm.cc (Target_arm::Relocate::relocate_tls): Do unaligned accesses
5580 when processing data relocs.
5581 * reloc.h (Relocate_functions::rel_unaligned): New method.
5582 (Relocate_functions::pcrel_unaligned): Ditto.
5583 (Relocate_functions::rel32_unaligned): Ditto.
5584 (Relocate_functions::pcrel32_unaligned): Ditto.
5585
5586 2011-11-09 Doug Kwan <dougkwan@google.com>
5587
5588 PR gold/13362
5589 * arm.cc (Arm_scan_relocatable_relocs::Default_scan_relocatable_relocs):
5590 Use unaligned 4-byte relocs for static 32-bit data as required by EABI.
5591 * reloc.h (Relocatable_relocs::Reloc_strategy): New enum
5592 RELOC_ADJUST_FOR_SECTION_4_UNALIGNED.
5593 (Relocate_functions::rel_unaligned): New.
5594 (Relocate_functions::rel32_unaligned): New.
5595 * target-reloc.h (relocate_for_relocatable): Add code to handle
5596 RELOC_ADJUST_FOR_SECTION_4_UNALIGNED.
5597 * testsuite/Makefile.am (arm_unaligned_reloc_r.stdout,
5598 arm_unaligned_reloc_r): New targets.
5599 * testsuite/Makefile.in: Regenerate.
5600 * arm_unaligned_reloc.sh: Check unaligned relocs in relocatable
5601 linking.
5602
5603 2011-11-02 Ian Lance Taylor <iant@google.com>
5604
5605 * configure.ac: Add --with-lib-path option. Define LIB_PATH and
5606 NATIVE_LINKER.
5607 * Makefile.am (AM_CPPFLAGS): Define TOOLLIBDIR.
5608 * options.cc (General_options::finalize): Use library search path
5609 from configure script if specified. If not native and no sysroot,
5610 only search TOOLLIBDIR.
5611 * options.h (Search_directory::Search_directory): Change name to
5612 const std::string&.
5613 (General_options::add_to_library_path_with_sysroot): Change arg to
5614 const std::string&.
5615 * configure, Makefile.in, config.in: Rebuild.
5616
5617 2011-11-02 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
5618
5619 * arm.cc (Target_arm::may_use_v5t_interworking): Check whether
5620 we are working around the ARM1176 Erratum.
5621 * options.h (General_options::fix_arm1176): Add option.
5622 * testsuite/Makefile.am: Add testcases, and keep current ones
5623 working.
5624 * testsuite/Makefile.in: Regenerate.
5625 * testsuite/arm_fix_1176.s: New file.
5626 * testsuite/arm_fix_1176.sh: Likewise.
5627
5628 2011-11-02 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
5629
5630 * arm.cc (Target_arm::Target_arm): Remove initialisation of
5631 may_use_blx_.
5632 (Target_arm::may_use_blx): Remove method.
5633 (Target_arm::set_may_use_blx): Likewise.
5634 (Target_arm::may_use_v4t_interworking): New method.
5635 (Target_arm::may_use_v5t_interworking): Likewise.
5636 (Target_arm::may_use_blx_): Remove member variable.
5637 (Arm_relocate_functions::arm_branch_common): Check for v5T
5638 interworking.
5639 (Arm_relocate_functions::thumb_branch_common): Likewise.
5640 (Reloc_stub::stub_type_for_reloc): Likewise.
5641 (Target_arm::do_finalize_sections): Correct interworking checks.
5642 * testsuite/Makefile.am: Add new tests.
5643 * testsuite/Makefile.in: Regenerate.
5644 * testsuite/arm_farcall_arm_arm.s: New test.
5645 * testsuite/arm_farcall_arm_arm.sh: Likewise.
5646 * testsuite/arm_farcall_arm_thumb.s: Likewise.
5647 * testsuite/arm_farcall_arm_thumb.sh: Likewise.
5648 * testsuite/arm_farcall_thumb_arm.s: Likewise.
5649 * testsuite/arm_farcall_thumb_arm.sh: Likewise.
5650 * testsuite/arm_farcall_thumb_thumb.s: Likewise.
5651 * testsuite/arm_farcall_thumb_thumb.sh: Likewise.
5652
5653 2011-10-31 Cary Coutant <ccoutant@google.com>
5654
5655 PR gold/13023
5656 * expression.cc (Expression::eval_with_dot): Add
5657 is_section_dot_assignment parameter.
5658 (Expression::eval_maybe_dot): Likewise. Adjust value when rhs is
5659 absolute and assigning to dot within a section.
5660 * script-sections.cc
5661 (Output_section_element_assignment::set_section_addresses): Pass
5662 dot_section to set_if_absolute.
5663 (Output_section_element_dot_assignment::finalize_symbols): Pass TRUE
5664 as is_section_dot_assignment flag to eval_with_dot.
5665 (Output_section_element_dot_assignment::set_section_addresses):
5666 Likewise.
5667 * script.cc (Symbol_assignment::set_if_absolute): Add dot_section
5668 parameter. Also set value if relative to dot_section; set the
5669 symbol's output_section.
5670 * script.h (Expression::eval_with_dot): Add is_section_dot_assignment
5671 parameter. Adjust all callers.
5672 (Expression::eval_maybe_dot): Likewise.
5673 (Symbol_assignment::set_if_absolute): Add dot_section parameter.
5674 Adjust all callers.
5675 * testsuite/script_test_2.t: Test assignment of an absolute value
5676 to dot within an output section element.
5677
5678 2011-10-31 Cary Coutant <ccoutant@google.com>
5679
5680 * options.h (class General_options): Add --[no-]gnu-unique options.
5681 * symtab.cc (Symbol_table::sized_write_globals): Convert
5682 STB_GNU_UNIQUE to STB_GLOBAL if --no-gnu-unique.
5683
5684 2011-10-31 Cary Coutant <ccoutant@google.com>
5685
5686 PR gold/13359
5687 * i386.cc (Target_i386::Relocate::relocate_tls): Remove
5688 unnecessary assertion.
5689 * x86_64.cc (Target_x86_64::Relocate::relocate_tls): Likewise.
5690
5691 2011-10-31 Sriraman Tallam <tmsriram@google.com>
5692
5693 * symtab.h (Symbol_table::gc_mark_symbol_for_shlib): Rename to
5694 gc_mark_symbol.
5695 * symtab.cc (Symbol_table::gc_mark_symbol_for_shlib): Rename to
5696 gc_mark_symbol.
5697 Change to just keep the section associated with symbol.
5698 (Symbol_table::add_from_relobj): Mark symbols as not garbage when
5699 they are externally visible and --export-dynamic is turned on.
5700 (Symbol_table::gc_mark_dyn_syms): Call gc_mark_symbol.
5701
5702 2011-10-19 Ian Lance Taylor <iant@google.com>
5703
5704 PR gold/13163
5705 * script-sections.cc
5706 (Output_section_element_dot_assignment::needs_output_section): New
5707 function.
5708
5709 2011-10-19 Ian Lance Taylor <iant@google.com>
5710
5711 PR gold/13204
5712 * layout.cc (Layout::segment_precedes): Don't assert failure if a
5713 --section-start option was seen.
5714 * options.h (General_options::any_section_start): New function.
5715
5716 2011-10-18 David S. Miller <davem@davemloft.net>
5717
5718 PR binutils/13301
5719 * sparc.cc (Target_sparc::Relocate::reloc_adjust_addr_): New
5720 member to track relocation locations that have moved during TLS
5721 reloc optimizations.
5722 (Target_sparc::Relocate::Relocate): Initialize to NULL.
5723 (Target_sparc::Relocate::relocate): Adjust view down by 4
5724 bytes if it matches reloc_adjust_addr_.
5725 (Target_sparc::Relocate::relocate_tls): Always move the
5726 __tls_get_addr call delay slot instruction forward 4 bytes when
5727 performing relaxation.
5728
5729 2011-10-18 Cary Coutant <ccoutant@google.com>
5730
5731 * output.cc (posix_fallocate): Return 0 on success, errno on failure.
5732 (Output_file::map_no_anonymous): Check for non-zero
5733 return code from posix_fallocate.
5734
5735 2011-10-17 Cary Coutant <ccoutant@google.com>
5736
5737 PR gold/13245
5738 * plugin.cc (is_visible_from_outside): Check for symbols
5739 referenced from dynamic objects.
5740 * resolve.cc (Symbol_table::resolve): Don't count references
5741 from dynamic objects as references from real ELF files.
5742 * testsuite/plugin_test_2.sh: Adjust expected result.
5743
5744 2011-10-17 Cary Coutant <ccoutant@google.com>
5745
5746 * gold.cc: Include timer.h.
5747 (queue_middle_tasks): Stamp time.
5748 (queue_final_tasks): Likewise.
5749 * main.cc (main): Store timer in parameters. Print timers
5750 for each pass.
5751 * parameters.cc (Parameters::Parameters): Initialize timer_.
5752 (Parameters::set_timer): New function.
5753 (set_parameters_timer): New function.
5754 * parameters.h (Parameters::set_timer): New function.
5755 (Parameters::timer): New function.
5756 (Parameters::timer_): New data member.
5757 (set_parameters_timer): New function.
5758 * timer.cc (Timer::stamp): New function.
5759 (Timer::get_pass_time): New function.
5760 * timer.h (Timer::stamp): New function.
5761 (Timer::get_pass_time): New function.
5762 (Timer::pass_times_): New data member.
5763
5764 2011-10-17 Cary Coutant <ccoutant@google.com>
5765
5766 * readsyms.cc (Read_symbols::run): Don't queue an unblocker
5767 task for members of lib groups.
5768
5769 2011-10-17 Cary Coutant <ccoutant@google.com>
5770
5771 PR gold/13288
5772 * fileread.cc (File_read::find_view): Add assert.
5773 (File_read::make_view): Move bounds check (replace with assert)...
5774 (File_read::find_or_make_view): ... to here.
5775
5776 2011-10-12 Cary Coutant <ccoutant@google.com>
5777
5778 * output.cc (Output_file::open_base_file): Handle case where
5779 ::read returns less than requested size.
5780
5781 2011-10-10 Cary Coutant <ccoutant@google.com>
5782
5783 * incremental.cc (Sized_relobj_incr::Sized_relobj_incr):
5784 Initialize defined_count_.
5785 (Sized_relobj_incr::do_add_symbols): Count defined symbols.
5786 (Sized_relobj_incr::do_get_global_symbol_counts): Rewrite.
5787 (Sized_incr_dynobj::Sized_incr_dynobj): Initialize defined_count_.
5788 (Sized_incr_dynobj::do_add_symbols): Count defined symbols.
5789 (Sized_incr_dynobj::do_get_global_symbol_counts): Rewrite.
5790 * incremental.h (Sized_relobj_incr::defined_count_): New data
5791 member.
5792 (Sized_incr_dynobj::defined_count_): New data member.
5793 * plugin.cc (Sized_pluginobj::do_get_global_symbol_counts):
5794 Return zeroes instead of internal error.
5795
5796 2011-10-10 Cary Coutant <ccoutant@google.com>
5797
5798 PR gold/13249
5799 * output.cc (Output_reloc::Output_reloc): Add use_plt_offset flag.
5800 (Output_reloc::symbol_value): Return PLT offset if flag is set.
5801 * output.h (class Output_reloc): Add use_plt_offset flag.
5802 (Output_reloc::type_): Adjust size of bit field.
5803 (Output_reloc::use_plt_offset_): New bit field.
5804 (class Output_data_reloc): Adjust all calls to Output_reloc_type.
5805 (Output_data_reloc::add_local_relative): (RELA only) Add use_plt_offset
5806 flag. Adjust all callers.
5807 * x86_64.cc (Target_x86_64::Scan::local): Check for IFUNC when
5808 creating RELATIVE relocations.
5809
5810 2011-10-10 Nick Clifton <nickc@redhat.com>
5811
5812 * po/es.po: Updated Spanish translation.
5813 * po/fi.po: Updated Finnish translation.
5814
5815 2011-10-03 Diego Novillo <dnovillo@google.com>
5816
5817 * options.cc (parse_uint): Fix dereference of RETVAL.
5818
5819 2011-09-29 Sriraman Tallam <tmsriram@google.com>
5820
5821 * layout.h (section_order_map_): New member.
5822 (get_section_order_map): New member function.
5823 * output.cc (Output_section::add_input_section): Check for patterns
5824 only when --section-ordering-file is specified.
5825 * gold.cc (queue_middle_tasks): Delay updating order of sections till
5826 output_sections have been formed.
5827 * layout.cc (Layout_Layout): Initialize section_order_map_.
5828 * plugin.cc (update_section_order): Store order in order_map. Do not
5829 update the order.
5830 * testsuite/Makefile.am: Add test case for plugin_final_layout.
5831 * testsuite/Makefile.in: Regenerate.
5832 * testsuite/plugin_section_order.c: New file.
5833 * testsuite/plugin_final_layout.cc: New file.
5834 * testsuite/plugin_final_layout.sh: New file.
5835
5836 2011-09-29 Cary Coutant <ccoutant@google.com>
5837
5838 * incremental.cc (Sized_incremental_binary::do_process_got_plt):
5839 Check for NULL.
5840 * symtab.cc (Symbol_table::add_from_relobj): Ignore version
5841 symbols during incremental update.
5842 (Symbol_table::add_from_dynobj): Likewise.
5843
5844 2011-09-27 Viktor Kutuzov <vkutuzov@accesssoftek.com>
5845 Ian Lance Taylor <iant@google.com>
5846
5847 * symtab.cc (Symbol_table::define_special_symbol): Always
5848 canonicalize version string.
5849
5850 2011-09-26 Cary Coutant <ccoutant@google.com>
5851
5852 * gold.cc (queue_initial_tasks): Move option checks ...
5853 * options.cc (General_options::finalize): ... to here. Disable
5854 some options; make others fatal.
5855
5856 2011-09-26 Cary Coutant <ccoutant@google.com>
5857
5858 gcc PR lto/47247
5859 * plugin.cc (get_symbols_v2): New function.
5860 (Plugin::load): Add LDPT_GET_SYMBOLS_V2.
5861 (is_referenced_from_outside): New function.
5862 (Pluginobj::get_symbol_resolution_info): Add version parameter, return
5863 LDPR_PREVAILING_DEF_IRONLY_EXP when using new version.
5864 (get_symbols): Pass version parameter.
5865 (get_symbols_v2): New function.
5866 * plugin.h (Pluginobj::get_symbol_resolution_info): Add version
5867 parameter.
5868 * testsuite/plugin_test.c (get_symbols_v2): New static variable.
5869 (onload): Add LDPT_GET_SYMBOLS_V2.
5870 (all_symbols_read_hook): Use get_symbols_v2; check for
5871 LDPR_PREVAILING_DEF_IRONLY_EXP.
5872 * testsuite/plugin_test_3.sh: Update expected results.
5873
5874 2011-09-23 Simon Baldwin <simonb@google.com>
5875
5876 * configure.ac: Add new --with-gold-ldadd and --with-gold-ldflags
5877 configuration options.
5878 * configure: Regenerate.
5879 * Makefile.am: Handle GOLD_LDADD and GOLD_LDFLAGS.
5880 * Makefile.in: Regenerate.
5881 * testsuite/Makefile.in: Regenerate.
5882
5883 2011-09-19 Sriraman Tallam <tmsriram@google.com>
5884
5885 * plugin.h (should_defer_layout): Modify to check for any_claimed_.
5886
5887 2011-09-19 Cary Coutant <ccoutant@google.com>
5888
5889 * incremental.cc (can_incremental_update): Fix typo in comment.
5890 * incremental.h (can_incremental_update): Likewise.
5891
5892 2011-09-18 Cary Coutant <ccoutant@google.com>
5893
5894 * incremental.cc (can_incremental_update): New function.
5895 * incremental.h (can_incremental_update): New function.
5896 * layout.cc (Layout::init_fixed_output_section): Call it.
5897 (Layout::make_output_section): Don't allow patch space in .eh_frame.
5898 * object.cc (Sized_relobj_file::do_layout): Call
5899 can_incremental_update.
5900
5901 2011-09-13 Cary Coutant <ccoutant@google.com>
5902
5903 * configure.ac: Check for glibc support for gnu_indirect_function
5904 support with static linking, setting automake conditional
5905 IFUNC_STATIC.
5906 * Makefile.in: Regenerate.
5907 * configure: Regenerate.
5908
5909 * testsuite/Makefile.am (ifuncmain1static, ifuncmain2static)
5910 (ifuncmain4static, ifuncmain5static, ifuncmain7static): Add check
5911 for IFUNC_STATIC.
5912 * testsuite/Makefile.in: Regenerate.
5913
5914 2011-09-13 Cary Coutant <ccoutant@google.com>
5915
5916 * incremental.cc (Sized_relobj_incr::do_layout): Call
5917 report_comdat_group for kept comdat sections.
5918 * testsuite/Makefile.am (incremental_comdat_test_1): New test.
5919 * testsuite/Makefile.in: Regenerate.
5920 * testsuite/incr_comdat_test_1.cc: New source file.
5921 * testsuite/incr_comdat_test_2_v1.cc: New source file.
5922 * testsuite/incr_comdat_test_2_v2.cc: New source file.
5923 * testsuite/incr_comdat_test_2_v3.cc: New source file.
5924
5925 2011-09-13 Ian Lance Taylor <iant@google.com>
5926
5927 * object.cc (Sized_relobj_file::do_layout): Remove unused local
5928 variable external_symbols_offset.
5929
5930 2011-09-12 Ian Lance Taylor <iant@google.com>
5931
5932 * object.cc (Sized_relobj_file::do_layout): Remove assertion which
5933 triggered if object has no symbols.
5934
5935 2011-09-09 David S. Miller <davem@davemloft.net>
5936
5937 * output.cc (Output_fill_debug_info::do_write): Use Swap_unaligned.
5938 (Output_fill_debug_line::do_write): Likewise.
5939
5940 2011-08-29 Cary Coutant <ccoutant@google.com>
5941
5942 * output.cc: (Output_fill_debug_info::do_minimum_hole_size): Add
5943 casts to match formatting specs.
5944 (Output_fill_debug_line::do_minimum_hole_size): Likewise.
5945
5946 2011-08-26 Cary Coutant <ccoutant@google.com>
5947
5948 * layout.cc (Free_list::allocate): Provide guarantee of minimum
5949 remaining hole size when allocating.
5950 (Layout::make_output_section): Set fill methods for debug sections.
5951 * layout.h (Free_list::Free_list_node): Move from private to
5952 public.
5953 (Free_list::set_min_hole_size): New function.
5954 (Free_list::begin, Free_list::end): New functions.
5955 (Free_list::min_hole_): New data member.
5956 * output.cc: Include dwarf.h.
5957 (Output_fill_debug_info::do_minimum_hole_size): New function.
5958 (Output_fill_debug_info::do_write): New function.
5959 (Output_fill_debug_line::do_minimum_hole_size): New function.
5960 (Output_fill_debug_line::do_write): New function.
5961 (Output_section::Output_section): Initialize new data member.
5962 (Output_section::set_final_data_size): Ensure patch space is larger
5963 than minimum hole size.
5964 (Output_section::do_write): Fill holes in debug sections.
5965 * output.h (Output_fill): New class.
5966 (Output_fill_debug_info): New class.
5967 (Output_fill_debug_line): New class.
5968 (Output_section::set_free_space_fill): New function.
5969 (Output_section::free_space_fill_): New data member.
5970 * testsuite/Makefile.am (incremental_test_3): Add
5971 --incremental-patch option.
5972 (incremental_test_4): Likewise.
5973 (incremental_test_5): Likewise.
5974 (incremental_test_6): Likewise.
5975 (incremental_copy_test): Likewise.
5976 (incremental_common_test_1): Likewise.
5977 * testsuite/Makefile.in: Regenerate.
5978
5979 2011-08-26 Nick Clifton <nickc@redhat.com>
5980
5981 * po/es.po: Updated Spanish translation.
5982
5983 2011-08-01 Cary Coutant <ccoutant@google.com>
5984
5985 * gold/testsuite/Makefile.am (justsyms_exec): New testcase.
5986 * gold/testsuite/Makefile.in: Regenerate.
5987 * gold/testsuite/justsyms_exec.c: New source file.
5988 * gold/testsuite/justsyms_lib.c: New source file.
5989
5990 2011-08-01 Cary Coutant <ccoutant@google.com>
5991
5992 * layout.cc (Layout::set_segment_offsets): Don't realign text
5993 segment if -Ttext was specified.
5994 * object.cc (Sized_relobj_file::Sized_relobj_file): Store the ELF
5995 file type.
5996 * object.h (Sized_relobj_file::e_type): New function.
5997 (Sized_relobj_file::e_type_): New data member.
5998 * symtab.cc (Symbol_table::add_from_relobj): Don't add section
5999 base address for ET_EXEC files.
6000 * target.cc (Target::do_make_elf_object_implementation): Allow
6001 ET_EXEC files with --just-symbols option.
6002
6003 2011-07-28 Cary Coutant <ccoutant@google.com>
6004
6005 * workqueue-internal.h (Workqueue_threader::should_cancel_thread):
6006 Add thread_number parameter.
6007 (Workqueue_threader_threadpool::should_cancel_thread): Likewise.
6008 * workqueue-threads.cc
6009 (Workqueue_threader_threadpool::should_cancel_thread): Cancel
6010 current thread if its thread number is greater than desired thread
6011 count.
6012 * workqueue.cc (Workqueue_threader_single::should_cancel_thread):
6013 Add thread_number parameter.
6014 (Workqueue::should_cancel_thread): Likewise.
6015 (Workqueue::find_runnable_or_wait): Pass thread_number to
6016 should_cancel_thread.
6017 * workqueue.h (Workqueue::should_cancel_thread): Add thread_number
6018 parameter.
6019
6020 2011-07-22 Sriraman Tallam <tmsriram@google.com>
6021
6022 * symtab.cc (Symbol_table::add_from_relobj): Mark symbol as referenced
6023 only after checking if it cannot be forced local.
6024 * symtab.h (is_externally_visible): Check if the symbol is not forced
6025 local.
6026
6027 2011-07-15 Ian Lance Taylor <iant@google.com>
6028
6029 * options.h (class General_options): Add --print-output-format.
6030 Move -EL next to -EB, for better --help output.
6031 * target-select.cc: Include <cstdio>, "options.h", and
6032 "parameters.h".
6033 (Target_selector::do_target_bfd_name): New function.
6034 (print_output_format): New function.
6035 * target-select.h (class Target_selector): Update declarations.
6036 (Target_selector::target_bfd_name): New function.
6037 (print_output_format): Declare.
6038 * main.cc: Include "target-select.h".
6039 (main): Handle --print-output-format.
6040 * gold.cc: Include "target-select.h".
6041 (queue_initial_tasks): Handle --print-output-format when there are
6042 no input files.
6043 * parameters.cc (parameters_force_valid_target): Give a better
6044 error message if -EB/-EL does not match target.
6045 * freebsd.h (Target_selector_freebsd::do_target_bfd_name): New
6046 function.
6047
6048 2011-07-15 Ian Lance Taylor <iant@google.com>
6049
6050 * i386.cc (class Output_data_plt_i386): Add layout_ field.
6051 (Output_data_plt_i386::Output_data_plt_i386): Initialize layout_.
6052 (Output_data_plt_i386::do_write): Write address of .dynamic
6053 section to first entry in .got.plt section.
6054 * x86_64.cc (class Output_data_plt_x86_64): Add layout_ field.
6055 (Output_data_plt_x86_64::Output_data_plt_x86_64) [both versions]:
6056 Initialize layout_.
6057 (Output_data_plt_x86_64::do_write): Write address of .dynamic
6058 section to first entry in .got.plt section.
6059 * layout.h (Layout::dynamic_section): New function.
6060
6061 2011-07-13 Sriraman Tallam <tmsriram@google.com>
6062
6063 * archive.cc (Archive::get_elf_object_for_member): Add extra parameter
6064 to claim_file call.
6065 * layout.cc (Layout::Layout): Initialize section_ordering_specified_,
6066 input_section_position_, and input_section_glob_.
6067 (read_layout_from_file): Call function section_ordering_specified.
6068 * layout.h (is_section_ordering_specified): New function.
6069 (section_ordering_specified): New function.
6070 (section_ordering_specified_): New boolean member.
6071 * main.cc(main): Call load_plugins after layout object is defined.
6072 * output.cc (Output_section::add_input_section): Use
6073 function section_ordering_specified to check if section ordering is
6074 needed.
6075 * output.cc (Output_section::add_relaxed_input_section): Use
6076 function section_ordering_specified to check if section ordering is
6077 needed.
6078 (Output_section::update_section_layout): New function.
6079 (Output_section::sort_attached_input_sections): Check if input section
6080 must be reordered.
6081 * output.h (Output_section::update_section_layout): New function.
6082 * plugin.cc (get_section_count): New function.
6083 (get_section_type): New function.
6084 (get_section_name): New function.
6085 (get_section_contents): New function.
6086 (update_section_order): New function.
6087 (allow_section_ordering): New function.
6088 (Plugin::load): Add the new interfaces to the transfer vector.
6089 (Plugin_manager::load_plugins): New parameter.
6090 (Plugin_manager::all_symbols_read): New parameter.
6091 (Plugin_manager::claim_file): New parameter. Save the elf object for
6092 unclaimed objects.
6093 (Plugin_manager::get_elf_object): New function.
6094 (Plugin_manager::get_view): Change to directly use the bool to check
6095 if get_view is called from claim_file_hook.
6096 * plugin.h (input_objects): New function
6097 (Plugin__manager::load_plugins): New parameter.
6098 (Plugin_manager::claim_file): New parameter.
6099 (Plugin_manager::get_elf_object): New function.
6100 (Plugin_manager::in_claim_file_handler): New function.
6101 (Plugin_manager::in_claim_file_handler_): New member.
6102 (layout): New function.
6103 * readsyms.cc (Read_symbols::do_read_symbols): Call the claim_file
6104 handler with an extra parameter. Make the elf object before calling
6105 claim_file handler.
6106 * testsuite/plugin_test.c (get_section_count): New function pointer.
6107 (get_section_type): New function pointer.
6108 (get_section_name): New function pointer.
6109 (get_section_contents): New function pointer.
6110 (update_section_order): New function pointer.
6111 (allow_section_ordering): New function pointer.
6112 (onload): Check if the new interfaces exist.
6113
6114 2011-07-13 Ian Lance Taylor <iant@google.com>
6115
6116 * i386.cc (Target_i386::got_section): If -z now, make .got.plt a
6117 relro section.
6118 * x86_64.cc (Target_x86_64::got_section): Likewise.
6119 * testsuite/Makefile.am (check_PROGRAMS): Add relro_now_test.
6120 (relro_now_test_SOURCES): New variable.
6121 (relro_now_test_DEPENDENCIES): New variable.
6122 (relro_now_test_LDFLAGS): New variable.
6123 (relro_now_test_LDADD): New variable.
6124 (relro_now_test.so): New target.
6125 * testsuite/Makefile.in: Rebuild.
6126
6127 2011-07-12 Ian Lance Taylor <iant@google.com>
6128
6129 PR gold/12980
6130 * i386.cc (Target_i386::Scan::global): For a GOT reloc, use a
6131 GLOB_DAT relocation rather than a RELATIVE relocation for a
6132 protected symbol when creating a shared library.
6133 * x86_64.cc (Target_x86_64::Scan::global): Likewise.
6134 * testsuite/protected_1.cc (f2, get_f2_addr): New functions.
6135 * testsuite/protected_main_1.cc (main): Test that protected
6136 function has same address.
6137
6138 2011-07-11 Ian Lance Taylor <iant@google.com>
6139
6140 PR gold/12979
6141 * options.h (class General_options): Add -Bgroup.
6142 * options.cc (General_options::finalize): If -Bgroup is set,
6143 default to --unresolved-symbols=report-all.
6144 * layout.cc (Layout::finish_dynamic_section): Implement -Bgroup.
6145 * target-reloc.h (issue_undefined_symbol_error): Handle
6146 --unresolved-symbols=report-all.
6147
6148 2011-07-08 Ian Lance Taylor <iant@google.com>
6149
6150 PR gold/11985
6151 * layout.cc (Layout::create_initial_dynamic_sections): Don't crash
6152 if linker script discards key sections.
6153 (Layout::create_dynamic_symtab): Likewise.
6154 (Layout::assign_local_dynsym_offsets): Likewise.
6155 (Layout::sized_create_version_sections): Likewise.
6156 (Layout::create_interp): Likewise.
6157 (Layout::finish_dynamic_section): Likewise.
6158 (Layout::set_dynamic_symbol_size): Likewise.
6159
6160 2011-07-08 Ian Lance Taylor <iant@google.com>
6161
6162 PR gold/12386
6163 * options.h (class General_options): Add --unresolved-symbols.
6164 * target-reloc.h (issue_undefined_symbol_error): Check
6165 --unresolved-symbols. Add comments.
6166
6167 2011-07-08 Ian Lance Taylor <iant@google.com>
6168
6169 * testsuite/odr_violation2.cc (Ordering::operator()): Make
6170 expression more complex.
6171
6172 2011-07-08 Ian Lance Taylor <iant@google.com>
6173
6174 PR gold/11317
6175 * target-reloc.h (issue_undefined_symbol_error): New inline
6176 function, broken out of relocate_section.
6177 (relocate_section): Call issue_undefined_symbol_error.
6178 * i386.cc (Target_i386::Relocate::relocate_tls): Don't crash if
6179 there is no TLS segment if we are about to issue an undefined
6180 symbol error.
6181 * x86_64.cc (Target_x86_64::relocate_tls): Likewise.
6182
6183 2011-07-08 Ian Lance Taylor <iant@google.com>
6184
6185 PR gold/12279
6186 * resolve.cc (Symbol_table::should_override): Add fromtype
6187 parameter. Change all callers. Give error when linking together
6188 TLS and non-TLS symbol.
6189 (Symbol_table::should_override_with_special): Add fromtype
6190 parameter. Change all callers.
6191 * i386.cc (Target_i386::Relocate::relocate_tls): Don't crash if
6192 there is no TLS segment if we have reported some errors.
6193 * x86_64.cc (Target_x86_64::relocate_tls): Likewise.
6194
6195 2011-07-08 Ian Lance Taylor <iant@google.com>
6196
6197 PR gold/12372
6198 * target.h (Target::plt_address_for_global): New function.
6199 (Target::plt_address_for_local): New function.
6200 (Target::plt_section_for_global): Remove.
6201 (Target::plt_section_for_local): Remove.
6202 (Target::do_plt_address_for_global): New virtual function.
6203 (Target::do_plt_address_for_local): New virtual function.
6204 (Target::do_plt_section_for_global): Remove.
6205 (Target::do_plt_section_for_local): Remove.
6206 (Target::register_global_plt_entry): Add Symbol_table and Layout
6207 parameters.
6208 * output.cc (Output_data_got::Got_entry::write): Use
6209 plt_address_for_global and plt_address_for_local.
6210 * layout.cc (Layout::add_target_dynamic_tags): Use size and
6211 address of output section.
6212 * i386.cc (class Output_data_plt_i386): Add irelative_rel_,
6213 got_irelative_, and irelative_count_ fields. Update
6214 declarations.
6215 (Output_data_plt_i386::has_irelative_section): New function.
6216 (Output_data_plt_i386::entry_count): Add irelative_count_.
6217 (Output_data_plt_i386::set_final_data_size): Likewise.
6218 (class Target_i386): Add got_irelative_ and rel_irelative_
6219 fields. Update declarations.
6220 (Target_i386::Target_i386): Initialize new fields.
6221 (Target_i386::do_plt_address_for_global): New function replacing
6222 do_plt_section_for_global.
6223 (Target_i386::do_plt_address_for_local): New function replacing
6224 do_plt_section_for_local.
6225 (Target_i386::got_section): Create got_irelative_.
6226 (Target_i386::rel_irelative_section): New function.
6227 (Output_data_plt_i386::Output_data_plt_i386): Initialize new
6228 fields. Don't define __rel_iplt_{start,end}.
6229 (Output_data_plt_i386::add_entry): Add symtab and layout
6230 parameters. Change all callers. Use different PLT and GOT for
6231 IFUNC symbols.
6232 (Output_data_plt_i386::add_local_ifunc_entry): Add symtab and
6233 layout parameters. Change all callers. Use different PLT and
6234 GOT.
6235 (Output_data_plt_i386::rel_tls_desc): Fix formatting.
6236 (Output_data_plt_i386::rel_irelative): New function.
6237 (Output_data_plt_i386::address_for_global): New function.
6238 (Output_data_plt_i386::address_for_local): New function.
6239 (Output_data_plt_i386::do_write): Write out IRELATIVE area. Use
6240 IRELATIVE GOT when changing IFUNC GOT entries.
6241 (Target_i386::Scan::global): Use IRELATIVE GOT for IRELATIVE
6242 reloc.
6243 (Target_i386::do_finalize_sections): Create the __rel_iplt symbols
6244 if we didn't create an IRELATIVE GOT.
6245 (Target_i386::Relocate::relocate): Use plt_address_for_global and
6246 plt_address_for_local.
6247 (Target_i386::do_dynsym_value): Use plt_address_for_global.
6248 * x86_64.cc (class Output_data_plt_x86_64): Add irelative_rel_,
6249 got_irelative_, and irelative_count_ fields. Update
6250 declarations.
6251 (Output_data_plt_x86_64::Output_data_plt_x86_64) [both versions]:
6252 Initialize new fields. Remove symtab parameter. Change all
6253 callers.
6254 (Output_data_plt_x86_64::get_tlsdesc_plt_offset): Add
6255 irelative_count_.
6256 (Output_data_plt_x86_64::has_irelative_section): New function.
6257 (Output_data_plt_x86_64::entry_count): Add irelative_count_.
6258 (class Target_x86_64): Add got_irelative_ and rel_irelative_
6259 fields. Update declarations.
6260 (Target_x86_64::Target_x86_64): Initialize new fields.
6261 (Target_x86_64::do_plt_address_for_global): New function replacing
6262 do_plt_section_for_global.
6263 (Target_x86_64::do_plt_address_for_local): New function replacing
6264 do_plt_section_for_local.
6265 (Target_x86_64::got_section): Create got_irelative_.
6266 (Target_x86_64::rela_irelative_section): New function.
6267 (Output_data_plt_x86_64::init): Remove symtab parameter. Change
6268 all callers. Don't create __rel_iplt_{start,end}.
6269 (Output_data_plt_x86_64::add_entry): Add symtab and layout
6270 parameters. Change all callers. Use different PLT and GOT for
6271 IFUNC symbols.
6272 (Output_data_plt_x86_64::add_local_ifunc_entry): Add symtab and
6273 layout parameters. Change all callers. Use different PLT and
6274 GOT.
6275 (Output_data_plt_x86_64::add_relocation): Add symtab and layout
6276 parameters. Change all callers. Use different PLT and GOT for
6277 IFUNC symbols.
6278 (Output_data_plt_x86_64::rela_tlsdesc): Fix formatting.
6279 (Output_data_plt_x86_64::rela_irelative): New function.
6280 (Output_data_plt_x86_64::address_for_global): New function.
6281 (Output_data_plt_x86_64::address_for_local): New function.
6282 (Output_data_plt_x86_64::set_final_data_size): Likewise.
6283 (Output_data_plt_x86_64::do_write): Write out IRELATIVE area.
6284 (Target_x86_64::init_got_plt_for_update): Create got_irelative_.
6285 (Target_x86_64::register_global_plt_entry): Add symtab and layout
6286 parameters.
6287 (Target_x86_64::Scan::global): Use IRELATIVE GOT for IRELATIVE
6288 reloc.
6289 (Target_x86_64::do_finalize_sections): Create the __rela_iplt
6290 symbols if we didn't create an IRELATIVE GOT.
6291 (Target_x86_64::Relocate::relocate): Use plt_address_for_global and
6292 plt_address_for_local.
6293 (Target_x86_64::do_dynsym_value): Use plt_address_for_global.
6294 * testsuite/ifuncvar1.c: New test file.
6295 * testsuite/ifuncvar2.c: New test file.
6296 * testsuite/ifuncvar3.c: New test file.
6297 * testsuite/Makefile.am (check_PROGRAMS): Add ifuncvar.
6298 (ifuncvar1_pic.o, ifuncvar2_pic.o, ifuncvar.so): New targets.
6299 (ifuncvar_SOURCES, ifuncvar_DEPENDENCIES): New variables.
6300 (ifuncvar_LDFLAGS, ifuncvar_LDADD): New variables.
6301 * testsuite/Makefile.in: Rebuild.
6302
6303 2011-07-07 Cary Coutant <ccoutant@google.com>
6304
6305 * testsuite/Makefile.am (two_file_test_1_v1_ndebug.o): New target.
6306 (two_file_test_1_ndebug.o): Likewise.
6307 (two_file_test_1b_ndebug.o): Likewise.
6308 (two_file_test_2_ndebug.o): Likewise.
6309 (two_file_test_main_ndebug.o): Likewise.
6310 (incremental_test_2): Link with no-debug versions.
6311
6312 2011-07-06 Cary Coutant <ccoutant@google.com>
6313
6314 * gold/incremental.cc
6315 (Output_section_incremental_inputs::write_info_blocks): Check for
6316 hidden and internal symbols.
6317
6318 2011-07-06 Cary Coutant <ccoutant@google.com>
6319
6320 * incremental.cc (Sized_incremental_binary::do_file_has_changed):
6321 Check disposition for startup file.
6322 (Incremental_inputs::report_command_line): Ignore
6323 --incremental-startup-unchanged option.
6324 * options.cc (General_options::parse_incremental_startup_unchanged):
6325 New function.
6326 (General_options::General_options): Initialize new data member.
6327 * options.h (Incremental_disposition): Add INCREMENTAL_STARTUP.
6328 (General_options): Add --incremental-startup-unchanged option.
6329 (General_options::incremental_startup_disposition): New function.
6330 (General_options::incremental_startup_disposition_): New data member.
6331
6332 2011-07-06 Cary Coutant <ccoutant@google.com>
6333
6334 * incremental.cc (Sized_incremental_binary::setup_readers): Pass
6335 input file index to Script_info ctor.
6336 (Sized_incremental_binary::do_file_has_changed): Find the
6337 command-line argument for files named in scripts.
6338 * incremental.h (Script_info::Script_info): New ctor
6339 with input file index.
6340 (Script_info::input_file_index): New function.
6341 (Script_info::input_file_index_): New data member.
6342 (Incremental_binary::get_library): Add const.
6343 (Incremental_binary::get_script_info): Add const.
6344 * readsyms.cc (Read_member::is_runnable): Check for this_blocker_.
6345 * testsuite/Makefile.am (incremental_test_5): New test case.
6346 (incremental_test_6): New test case.
6347 * testsuite/Makefile.in: Regenerate.
6348
6349 2011-07-06 Cary Coutant <ccoutant@google.com>
6350
6351 * incremental.cc (Sized_incremental_binary::do_check_inputs): Add
6352 debug output when command lines differ.
6353
6354 2011-07-06 Cary Coutant <ccoutant@google.com>
6355
6356 * incremental.cc (Incremental_inputs::report_command_line): Ignore
6357 --incremental-patch option.
6358 * layout.cc (Free_list::allocate): Extend allocation beyond original
6359 end if enabled.
6360 (Layout::make_output_section): Mark sections that should get
6361 patch space.
6362 * options.cc (parse_percent): New function.
6363 * options.h (parse_percent): New function.
6364 (DEFINE_percent): New macro.
6365 (General_options): Add --incremental-patch option.
6366 * output.cc (Output_section::Output_section): Initialize new data
6367 members.
6368 (Output_section::add_input_section): Print section name when out
6369 of patch space.
6370 (Output_section::add_output_section_data): Likewise.
6371 (Output_section::set_final_data_size): Add patch space when
6372 doing --incremental-full.
6373 (Output_section::do_reset_address_and_file_offset): Remove patch
6374 space.
6375 (Output_segment::set_section_list_addresses): Print debug output
6376 only if --incremental-update.
6377 * output.h (Output_section::set_is_patch_space_allowed): New function.
6378 (Output_section::is_patch_space_allowed_): New data member.
6379 (Output_section::patch_space_): New data member.
6380 * parameters.cc (Parameters::incremental_full): New function.
6381 * parameters.h (Parameters::incremental_full): New function
6382 * testsuite/Makefile.am (incremental_test_2): Add test for
6383 --incremental-patch option.
6384 * testsuite/Makefile.in: Regenerate.
6385 * testsuite/two_file_test_1_v1.cc (t1, t2, t3): Add comments.
6386 (t18): Remove function body.
6387
6388 2011-07-05 Doug Kwan <dougkwan@google.com>
6389
6390 PR gold/12771
6391 * arm.cc (Arm_relocate_functions::abs8): Use int32_t for addend and
6392 Arm_Address type for relocation result.
6393 (Arm_relocate_functions::abs16): Use unaligned access. Also fix
6394 overflow check.
6395 (Arm_relocate_functions::abs32): Use unaligned access.
6396 (Arm_relocate_functions::rel32): Ditto.
6397 (Arm_relocate_functions::prel31): Ditto.
6398 (Arm_exidix_cantunwind::do_fixed_endian_write): Ditto.
6399 * testsuite/Makefile.am: Add new test arm_unaligned_reloc for unaligned
6400 static data relocations.
6401 * testsuite/Makefile.in: Regnerate.
6402 * testsuite/arm_unaligned_reloc.{s,sh}: New files.
6403
6404 2011-07-05 Ian Lance Taylor <iant@google.com>
6405
6406 PR gold/12392
6407 * i386.cc (Target_i386::do_finalize_sections): Define __rel_iplt
6408 symbols if necessary.
6409 * x86_64.cc (Target_x86_64::do_finalize_sections): Likewise.
6410
6411 2011-07-05 Ian Lance Taylor <iant@google.com>
6412
6413 PR gold/12952
6414 * resolve.cc (Symbol::override_base_with_special): Simply override
6415 version with special symbol version, ignoring previous version.
6416
6417 2011-07-05 Ian Lance Taylor <iant@google.com>
6418
6419 * object.cc (Sized_relobj_file::include_section_group): Add
6420 information to comment about signature location.
6421
6422 2011-07-02 Ian Lance Taylor <iant@google.com>
6423
6424 PR gold/12957
6425 * options.h (class General_options): Add -f and -F.
6426 * options.cc (General_options::finalize): Fatal error if -f/-F
6427 are used without -shared.
6428 * layout.cc (Layout::finish_dynamic_section): Implement -f/-F.
6429
6430 2011-07-02 Ian Lance Taylor <iant@google.com>
6431
6432 * dirsearch.cc (Dir_cache::read_files): Ignore ENOTDIR errors.
6433
6434 2011-07-01 Ian Lance Taylor <iant@google.com>
6435
6436 PR gold/12525
6437 PR gold/12952
6438 * resolve.cc (Symbol::override_base_with_special): Don't override
6439 the version if the overriding symbol has a different name.
6440 * dynobj.cc (Versions::add_def): Add dynpool parameter. Change
6441 all callers. If we give an error about an undefined version,
6442 define the base version if necessary.
6443 * dynobj.h (class Versions): Update declaration.
6444 * testsuite/weak_alias_test_5.cc: New file.
6445 * testsuite/weak_alias_test.script: New file.
6446 * testsuite/weak_alias_test_main.cc: Check that versioned_symbol
6447 and versioned_alias have the right value, and call t2.
6448 * testsuite/Makefile.am (weak_alias_test_DEPENDENCIES): Add
6449 weak_alias_test_5.so.
6450 (weak_alias_test_LDADD): Likewise.
6451 (weak_alias_test_5_pic.o, weak_alias_test_5.so): New targets.
6452 * testsuite/Makefile.in: Rebuild.
6453
6454 2011-07-01 Ian Lance Taylor <iant@google.com>
6455
6456 PR gold/12525
6457 * options.h (class General_options): Support -z notext.
6458 * testsuite/Makefile.am (two_file_shared_1_nonpic.so): Use
6459 -Wl,-z,notext.
6460 (two_file_shared_nonpic.so): Likewise.
6461 (two_file_shared_mixed.so): Likewise.
6462 (two_file_shared_mixed_1.so): Likewise.
6463 (weak_undef_lib_nonpic.so): Likewise.
6464 (alt/weak_undef_lib_nonpic.so): Likewise.
6465 (tls_test_shared_nonpic.so): Likewise.
6466 * testsuite/Makefile.in: Rebuild.
6467
6468 2011-07-01 Ian Lance Taylor <iant@google.com>
6469
6470 PR gold/12525
6471 * configure.ac: Test whether static linking works, setting
6472 the automake conditional HAVE_STATIC.
6473 * testsuite/Makefile.am: Disable tests using -static if
6474 HAVE_STATIC is not true.
6475 * configure, testsuite/Makefile.in: Rebuild.
6476
6477 2011-07-01 Ian Lance Taylor <iant@google.com>
6478
6479 PR gold/12525
6480 * ehframe.cc (Eh_frame_hdr::get_fde_pc): Handle DW_EH_PE_datarel.
6481 Assert if we see DW_EH_PE_indirect.
6482 * target.h (Target::ehframe_datarel_base): New function.
6483 (Target::do_ehframe_datarel_base): New target function.
6484 * i386.cc (Target_i386::do_ehframe_datarel_base): New function.
6485 * x86_64.cc (Target_x86_64::do_ehframe_datarel_base): New
6486 function.
6487
6488 2011-07-01 Ian Lance Taylor <iant@google.com>
6489
6490 PR gold/12571
6491 * options.h (class General_options): Add
6492 --ld-generated-unwind-info.
6493 * ehframe.cc (Fde::write): Add address parameter. Change all
6494 callers. If associated with PLT, fill in address and size.
6495 (Cie::set_output_offset): Only add merge mapping if there is an
6496 object.
6497 (Cie::write): Add address parameter. Change all callers.
6498 (Eh_frame::add_ehframe_for_plt): New function.
6499 * ehframe.h (class Fde): Update declarations. Move shndx_ and
6500 input_offset_ fields into union u_, with new plt field.
6501 (Fde::Fde): Adjust for new union field.
6502 (Fde::Fde) [Output_data version]: New constructor.
6503 (Fde::add_mapping): Only add merge mapping if there is an object.
6504 (class Cie): Update declarations.
6505 (class Eh_frame): Declare add_ehframe_for_plt.
6506 * layout.cc (Layout::layout_eh_frame): Break out code into
6507 make_eh_frame_section, and call it.
6508 (Layout::make_eh_frame_section): New function.
6509 (Layout::add_eh_frame_for_plt): New function.
6510 * layout.h (class Layout): Update declarations.
6511 * merge.cc (Merge_map::add_mapping): Add assertion.
6512 * i386.cc: Include "dwarf.h".
6513 (class Output_data_plt_i386): Make first_plt_entry,
6514 dyn_first_plt_entry, exec_plt_entry, and dyn_plt_entry const. Add
6515 plt_eh_frame_cie_size, plt_eh_frame_fde_size, plt_eh_frame_cie,
6516 and plt_eh_frame_fde.
6517 (Output_data_plt_i386::Output_data_plt_i386): Align to 16-byte
6518 boundary. Call add_eh_frame_for_plt if appropriate.
6519 * x86_64.cc: Include "dwarf.h".
6520 (class Output_data_plt_x86_64): Align to 16-byte boundary. Make
6521 first_plt_entry, plt_entry and tlsdesc_plt_entry const. Add
6522 plt_eh_frame_cie_size, plt_eh_frame_fde_size, plt_eh_frame_cie,
6523 and plt_eh_frame_fde.
6524 (Output_data_plt_x86_64::init): Call add_eh_frame_for_plt if
6525 appropriate.
6526
6527 2011-06-29 Ian Lance Taylor <iant@google.com>
6528
6529 PR gold/12629
6530 * object.cc (Sized_relobj_file::layout_section): Change shdr
6531 parameter to be const.
6532 (Sized_relobj_file::layout_eh_frame_section): New function, broken
6533 out of do_layout.
6534 (Sized_relobj_file::do_layout): Defer .eh_frame sections if
6535 appropriate. Call layout_eh_frame_section.
6536 (Sized_relobj_file::do_layout_deferred_sections): Handle .eh_frame
6537 sections.
6538 * object.h (class Sized_relobj_file): Update declarations.
6539
6540 2011-06-29 Ian Lance Taylor <iant@google.com>
6541
6542 PR gold/12652
6543 * script.cc (Token::integer_value): Accept trailing M/m/K/k
6544 modifier.
6545 (Lex::gather_token): Accept trailing M/m/K/k for integers.
6546
6547 2011-06-29 Ian Lance Taylor <iant@google.com>
6548
6549 PR gold/12675
6550 * object.cc (Sized_relobj_file::check_eh_frame_flags): Check for
6551 SHT_X86_64_UNWIND.
6552 * layout.cc (Layout::layout_eh_frame): Likewise.
6553
6554 2011-06-29 Ian Lance Taylor <iant@google.com>
6555
6556 PR gold/12695
6557 * layout.cc (Layout::symtab_section_shndx): New function.
6558 * layout.h (class Layout): Declare symtab_section_shndx.
6559 * output.cc (Output_section::write_header): Call it.
6560
6561 2011-06-29 Ian Lance Taylor <iant@google.com>
6562
6563 PR gold/12818
6564 * symtab.cc (Symbol::should_add_dynsym_entry): Don't add undefined
6565 symbols which are not used in a relocation.
6566
6567 2011-06-28 Ian Lance Taylor <iant@google.com>
6568
6569 PR gold/12898
6570 * layout.cc (Layout::segment_precedes): Don't crash if a linker
6571 script create indistinguishable segments.
6572 (Layout::set_segment_offsets): Use stable_sort when sorting
6573 segments. Pass this to Compare_segments constructor.
6574 * layout.h (class Layout): Make segment_precedes non-static.
6575 (class Compare_segments): Change from struct to class. Add
6576 layout_ field. Add constructor.
6577 * script-sections.cc
6578 (Script_sections::attach_sections_using_phdrs_clause): Rename
6579 local orphan to is_orphan. Don't report failure to put empty
6580 section in segment. On attachment failure, report name of
6581 section, and attach to first PT_LOAD segment.
6582
6583 2011-06-28 Ian Lance Taylor <iant@google.com>
6584
6585 PR gold/12934
6586 * target-select.cc (Target_selector::Target_selector): Add
6587 emulation parameter. Change all callers.
6588 (select_target_by_bfd_name): Rename from select_target_by_name.
6589 Change all callers.
6590 (select_target_by_emulation): New function.
6591 (supported_emulation_names): New function.
6592 * target-select.h (class Target_selector): Add emulation_ field.
6593 Update declarations.
6594 (Target_selector::recognize_by_bfd_name): Rename from
6595 recognize_by_name. Change all callers.
6596 (Target_selector::supported_bfd_names): Rename from
6597 supported_names. Change all callers.
6598 (Target_selector::recognize_by_emulation): New function.
6599 (Target_selector::supported_emulations): New function.
6600 (Target_selector::emulation): New function.
6601 (Target_selector::do_recognize_by_bfd_name): Rename from
6602 do_recognize_by_name. Change all callers.
6603 (Target_selector::do_supported_bfd_names): Rename from
6604 do_supported_names. Change all callers.
6605 (Target_selector::do_recognize_by_emulation): New function.
6606 (Target_selector::do_supported_emulations): New function.
6607 (select_target_by_bfd_name): Change name in declaration.
6608 (select_target_by_emulation): Declare.
6609 (supported_emulation_names): Declare.
6610 * parameters.cc (parameters_force_valid_target): Try to find
6611 target based on emulation from -m option.
6612 * options.h (class General_options): Change doc string for -m.
6613 * options.cc (help): Print emulations.
6614 (General_options::parse_V): Likewise.
6615 * freebsd.h (Target_selector_freebsd::Target_selector_freebsd):
6616 Add emulation parameter. Change all callers.
6617
6618 2011-06-28 Ian Lance Taylor <iant@google.com>
6619
6620 * target.h (class Target): Add osabi_ field.
6621 (Target::osabi): New function.
6622 (Target::set_osabi): New function.
6623 (Target::Target): Initialize osabi_.
6624 (Target::do_adjust_elf_header): Make pure virtual.
6625 (Sized_target::do_adjust_elf_header): Declare.
6626 * target.cc (Sized_target::do_adjust_elf_header): New function.
6627 (class Sized_target): Instantiate all versions.
6628 * freebsd.h (class Target_freebsd): Remove.
6629 (Target_selector_freebsd::do_recognize): Call set_osabi on
6630 Target.
6631 (Target_selector_freebsd::do_recognize_by_name): Likewise.
6632 (Target_selector_freebsd::set_osabi): Remove.
6633 * i386.cc (class Target_i386): Inherit from Sized_target rather
6634 than Target_freebsd.
6635 * x86_64.cc (class Target_x86_64): Likewise.
6636
6637 2011-06-28 Ian Lance Taylor <iant@google.com>
6638
6639 * target.h (Target::can_check_for_function_pointers): Rewrite.
6640 Make non-virtual.
6641 (Target::can_icf_inline_merge_sections): Likewise.
6642 (Target::section_may_have_icf_unsafe_poineters): Likewise.
6643 (Target::Target_info): Add can_icf_inline_merge_sections field.
6644 (Target::do_can_check_for_function_pointers): New virtual
6645 function.
6646 (Target::do_section_may_have_icf_unsafe_pointers): Likewise.
6647 * arm.cc (Target_arm::do_can_check_for_function_pointers): Rename
6648 from can_check_for_function_pointers, move in file.
6649 (Target_arm::do_section_may_have_icf_unsafe_pointers): Rename from
6650 section_may_have_icf_unsafe_poineters, move in file.
6651 (Target_arm::arm_info): Initialize can_icf_inline_merge_sections.
6652 * i386.cc (Target_i386::do_can_check_for_function_pointers):
6653 Rename from can_check_for_function_pointers, move in file.
6654 (Target_i386::can_icf_inline_merge_sections): Remove.
6655 (Target_i386::i386_info): Initialize
6656 can_icf_inline_merge_sections.
6657 * powerpc.cc (Target_powerpc::powerpc_info) [all versions]:
6658 Initialize can_icf_inline_merge_sections.
6659 * sparc.cc (Target_sparc::sparc_info) [both version]: Likewise.
6660 * x86_64.cc (Target_x86_64::do_can_check_for_function_pointers):
6661 Rename from can_check_for_function_pointers, move in file.
6662 (Target_x86_64::can_icf_inline_merge_sections): Remove.
6663 (Target_x86_64::x86_64_info): Initialize
6664 can_icf_inline_merge_sections.
6665 * testsuite/testfile.cc (Target_test::test_target_info):
6666 Likewise.
6667 * icf.cc (get_section_contents): Correct formatting.
6668
6669 2011-06-27 Ian Lance Taylor <iant@google.com>
6670
6671 * symtab.cc (Symbol::versioned_name): New function.
6672 (Symbol_table::add_to_final_symtab): Use versioned_name when
6673 appropriate.
6674 (Symbol_table::sized_write_symbol): Likewise.
6675 * symtab.h (class Symbol): Declare versioned_name.
6676 * stringpool.h (class Stringpool_template): Add variant of add
6677 which takes a std::basic_string.
6678 * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_12.
6679 (ver_test_12_SOURCES, ver_test_12_DEPENDENCIES): New variables.
6680 (ver_test_12_LDFLAGS, ver_test_12_LDADD): New variables.
6681 (ver_test_12.o): New target.
6682 * testsuite/Makefile.in: Rebuild.
6683
6684 2011-06-27 Doug Kwan <dougkwan@google.com>
6685
6686 * arm.cc (Arm_relocate_functions::thm_jump8,
6687 Arm_relocate_functions::thm_jump11): Use a wider signed
6688 type to compute offset.
6689 * testsuite/Makefile.am: Add new tests arm_thm_jump11 and
6690 arm_thm_jump8.
6691 * testsuite/Makefile.in: Regenerate.
6692 * testsuite/arm_branch_in_range.sh: Check test results of
6693 arm_thm_jump11 and arm_thm_jump8.
6694 * testsuite/arm_thm_jump11.s: New test source file.
6695 * testsuite/arm_thm_jump11.t: New linker script.
6696 * testsuite/arm_thm_jump8.s: New test source file.
6697 * testsuite/arm_thm_jump8.t: New linker script.
6698
6699 2011-06-24 Ian Lance Taylor <iant@google.com>
6700
6701 * layout.cc: Include "object.h".
6702 (ctors_sections_in_init_array): New static variable.
6703 (Layout::is_ctors_in_init_array): New function.
6704 (Layout::layout): Add entry to ctors_sections_in_init_array if
6705 appropriate.
6706 * layout.h (class Layout): Declare is_ctors_in_init_array.
6707 * reloc.cc (Sized_relobj_file::do_relocate): Call reverse_words if
6708 is_ctors_reverse_view is set.
6709 (Sized_relobj_file::write_sections): Add layout parameter. Change
6710 all callers. Set is_ctors_reverse_view field of View_size.
6711 (Sized_relobj_file::reverse_words): New function.
6712 * object.h (Sized_relobj_file::View_size): Add
6713 is_ctors_reverse_view field.
6714 (class Sized_relobj_file): Update declarations.
6715 * testsuite/initpri3.c: New test.
6716 * testsuite/Makefile.am: (check_PROGRAMS): Add initpri3a and
6717 initpri3b.
6718 (initpri3a_SOURCES, initpri3a_DEPENDENCIES): New variables.
6719 (initpri3a_LDFLAGS, initpri3a_LDADD): New variables.
6720 (initpri3b_SOURCES, initpri3b_DEPENDENCIES): New variables.
6721 (initpri3b_LDFLAGS, initpri3b_LDADD): New variables.
6722 * testsuite/Makefile.in: Rebuild.
6723
6724 2011-06-24 Cary Coutant <ccoutant@google.com>
6725
6726 * testsuite/Makefile.am: Add in-tree assembler to gcctestdir.
6727 (debug_msg_cdebug.o, odr_violation1_cdebug.o, odr_violation2_cdebug.o)
6728 (debug_msg_cdebug.err): New targets.
6729 * testsuite/Makefile.in: Regenerate.
6730 * testsuite/debug_msg.sh: Check output of link with compressed debug.
6731 Fix checks for link with shared library.
6732
6733 2011-06-24 Doug Kwan <dougkwan@google.com>
6734
6735 * arm.cc (Arm_output_section::append_text_sections_to_list): Do not
6736 skip empty text sections.
6737 * testsuite/arm_exidx_test.s: Test handling of an empty text section.
6738
6739 2011-06-22 Ian Lance Taylor <iant@google.com>
6740
6741 PR gold/12910
6742 * options.h (class General_options): Add --ctors-in-init-array.
6743 * layout.cc (Layout::get_output_section): Treat SHT_INIT_ARRAY and
6744 friends as SHT_PROGBITS for merging sections.
6745 (Layout::layout): Remove special handling of .init_array and
6746 friends. Don't sort if doing relocatable link. Sort for .ctors
6747 and .dtors if ctors_in_init_array.
6748 (Layout::make_output_section): Force correct section types for
6749 .init_array and friends. Don't sort if doing relocatable link,
6750 Don't sort .ctors and .dtors if ctors_in_init_array.
6751 (Layout::section_name_mapping): Remove .ctors. and .dtorso.
6752 (Layout::output_section_name): Add relobj parameter. Change all
6753 callers. Handle .ctors. and .dtors. in code rather than table.
6754 Handle .ctors and .dtors if ctors_in_init_array.
6755 (Layout::match_file_name): New function, moved from output.cc.
6756 * layout.h (class Layout): Update declarations.
6757 * output.cc: Include "layout.h".
6758 (Input_section_sort_entry::get_priority): New function.
6759 (Input_section_sort_entry::match_file_name): Just call
6760 Layout::match_file_name.
6761 (Output_section::Input_section_sort_init_fini_compare::operator()):
6762 Handle .ctors and .dtors. Sort by explicit priority rather than
6763 by name.
6764 * configure.ac: Remove CONSTRUCTOR_PRIORITY test and conditional.
6765 * testsuite/initpri2.c: New test.
6766 * testsuite/Makefile.am: Don't test CONSTRUCTOR_PRIORITY.
6767 (check_PROGRAMS): Add initpri2.
6768 (initpri2_SOURCES, initpri2_DEPENDENCIES): New variables.
6769 (initpri2_LDFLAGS, initpri2_LDADD): New variables.
6770 * configure, testsuite/Makefile.in: Rebuild.
6771
6772 2011-06-19 Ian Lance Taylor <iant@google.com>
6773
6774 PR gold/12880
6775 * layout.cc (Layout::attach_allocated_section_to_segment): Add a
6776 .interp section to a PT_INTERP segment even if we have seen a
6777 --dynamic-linker option. Don't do it if we have seen a PHDRS
6778 clause in a linker script.
6779 (Layout::finalize): Don't create a .interp section if we've
6780 already create a PT_INTERP segment.
6781 (Layout::create_interp): Always call choose_output_section (revert
6782 patch of 2011-06-17). Don't create PT_INTERP segment.
6783 * script-sections.cc
6784 (Script_sections::create_note_and_tls_segments): Add a .interp
6785 section to a PT_INTERP segment even if we have seen a
6786 --dynamic-linker option.
6787
6788 2011-06-18 Ian Lance Taylor <iant@google.com>
6789
6790 * layout.cc (Layout::finish_dynamic_section): Don't set DT_TEXTREL
6791 merely because a non-PT_LOAD segment has a dynamic reloc.
6792
6793 2011-06-18 Ian Lance Taylor <iant@google.com>
6794
6795 * layout.cc (Layout::finish_dynamic_section): Don't create
6796 DT_FLAGS entry if not needed.
6797
6798 2011-06-18 Ian Lance Taylor <iant@google.com>
6799
6800 PR gold/12745
6801 * layout.cc (Layout::layout_eh_frame): Correct handling of
6802 writable .eh_frame section.
6803
6804 2011-06-17 Ian Lance Taylor <iant@google.com>
6805
6806 PR gold/12893
6807 * resolve.cc (Symbol_table::resolve): Don't give an error if a
6808 symbol is redefined with the exact same object and value.
6809
6810 2011-06-17 Ian Lance Taylor <iant@google.com>
6811
6812 PR gold/12880
6813 * layout.h (class Layout): Add interp_segment_ field.
6814 * layout.cc (Layout::Layout): Initialize interp_segment_ field.
6815 (Layout::attach_allocated_section_to_segment): If making shared
6816 library, put .interp section in PT_INTERP segment.
6817 (Layout::finalize): Also call create_interp if -dynamic-linker
6818 option was used.
6819 (Layout::create_interp): Assert that there is no PT_INTERP
6820 segment. If not using a SECTIONS clause, use make_output_section.
6821 (Layout::make_output_segment): Set interp_segment_ if PT_INTERP.
6822 * script-sections.cc
6823 (Script_sections::create_note_and_tls_segments): If making shared
6824 library, put .interp section in PT_INTERP segment.
6825
6826 2011-06-17 Ian Lance Taylor <iant@google.com>
6827
6828 * object.cc (Sized_relobj_file::do_layout): Keep warning sections
6829 when making a shared library.
6830
6831 2011-06-17 Ian Lance Taylor <iant@google.com>
6832
6833 * x86_64.cc (Target_x86_64::Scan::check_non_pic): Add gsym
6834 parameter. Change all callers. Don't issue warning about PC32
6835 against locally defined symbol.
6836
6837 2011-06-16 Ian Lance Taylor <iant@google.com>
6838
6839 * symtab.cc (Warnings::issue_warning): Don't warn if relocation
6840 occurs in same object.
6841
6842 2011-06-14 Alan Modra <amodra@gmail.com>
6843
6844 * po/POTFILES.in: Regenerate.
6845
6846 2011-06-09 Ian Lance Taylor <iant@google.com>
6847
6848 * script-sections.cc
6849 (Orphan_output_section::set_section_addresses): For a relocatable
6850 link set address to 0.
6851
6852 2011-06-09 Cary Coutant <ccoutant@google.com>
6853
6854 PR gold/12804
6855 * gold/gold.cc (queue_initial_tasks): Warn if --incremental is
6856 used with --compress-debug-sections.
6857 * gold/object.cc (Sized_relobj_file::do_layout): Report
6858 uncompressed size of compressed input sections.
6859
6860 2011-06-08 Cary Coutant <ccoutant@google.com>
6861
6862 PR gold/12804
6863 * testsuite/two_file_test_2_v1.cc: Change initialization of
6864 v2 to keep it in .data.
6865
6866 2011-06-07 Cary Coutant <ccoutant@google.com>
6867
6868 * common.cc (Symbol_table::do_allocate_commons_list): Call
6869 gold_fallback.
6870 * errors.cc (Errors::fatal): Adjust call to gold_exit.
6871 (Errors::fallback): New function.
6872 (gold_fallback): New function.
6873 * errors.h (Errors::fallback): New function.
6874 * gold.cc (gold_exit): Change status parameter to enum; adjust
6875 all callers.
6876 (queue_initial_tasks): Call gold_fallback.
6877 * gold.h: Include cstdlib.
6878 (Exit_status): New enum type.
6879 (gold_exit): Change status parameter to enum.
6880 (gold_fallback): New function.
6881 * layout.cc (Layout::set_section_offsets): Call gold_fallback.
6882 (Layout::create_symtab_sections): Likewise.
6883 (Layout::create_shdrs): Likewise.
6884 * main.cc (main): Adjust call to gold_exit.
6885 * output.cc (Output_data_got::add_got_entry): Call gold_fallback.
6886 (Output_data_got::add_got_entry_pair): Likewise.
6887 (Output_section::add_input_section): Likewise.
6888 (Output_section::add_output_section_data): Likewise.
6889 (Output_segment::set_section_list_addresses): Likewise.
6890 * x86_64.cc (Output_data_plt_x86_64::add_entry): Likewise.
6891
6892 2011-06-07 Cary Coutant <ccoutant@google.com>
6893
6894 * layout.cc (Layout::set_segment_offsets): Don't adjust layout
6895 for incremental links.
6896 * output.cc (Output_segment::set_section_list_addresses): Remove
6897 FIXME and test for TLS or BSS.
6898
6899 2011-06-07 Cary Coutant <ccoutant@google.com>
6900
6901 * testsuite/Makefile.am: Add incremental_copy_test,
6902 incremental_common_test_1.
6903 * testsuite/Makefile.in: Regenerate.
6904 * testsuite/common_test_1_v1.c: New source file.
6905 * testsuite/common_test_1_v2.c: New source file.
6906 * testsuite/copy_test_v1.cc: New source file.
6907
6908 2011-06-07 Cary Coutant <ccoutant@google.com>
6909
6910 * common.cc (Symbol_table::do_allocate_commons_list): For incremental
6911 update, allocate common from bss section's free list.
6912 * incremental-dump.cc (dump_incremental_inputs): Print flag for
6913 linker-defined symbols.
6914 * incremental.cc (Sized_incremental_binary::do_process_got_plt):
6915 Skip GOT and PLT entries that are no longer referenced.
6916 (Output_section_incremental_inputs::write_info_blocks): Mark
6917 linker-defined symbols.
6918 (Sized_incr_relobj::do_add_symbols): Process linker-defined symbols.
6919 * output.cc (Output_section::allocate): New function.
6920 * output.h (Output_section::allocate): New function.
6921 * resolve.cc (Symbol_table::report_resolve_problem): Add case for
6922 linker-defined symbols.
6923 (Symbol::override_base_with_special): Copy is_predefined_ flag.
6924 * symtab.cc (Symbol::init_fields): Initialize is_predefined_ flag.
6925 (Symbol::init_base_output_data): Likewise.
6926 (Symbol::init_base_output_segment): Likewise.
6927 (Symbol::init_base_constant): Likewise.
6928 (Sized_symbol::init_output_data): Likewise.
6929 (Sized_symbol::init_output_segment): Likewise.
6930 (Sized_symbol::init_constant): Likewise.
6931 (Symbol_table::do_define_in_output_data): Likewise.
6932 (Symbol_table::do_define_in_output_segment): Likewise.
6933 (Symbol_table::do_define_as_constant): Likewise.
6934 * symtab.h (Symbol::is_predefined): New function.
6935 (Symbol::init_base_output_data): Add is_predefined parameter.
6936 (Symbol::init_base_output_segment): Likewise.
6937 (Symbol::init_base_constant): Likewise.
6938 (Symbol::is_predefined_): New data member.
6939 (Sized_symbol::init_output_data): Add is_predefined parameter.
6940 (Sized_symbol::init_output_segment): Likewise.
6941 (Sized_symbol::init_constant): Likewise.
6942 (enum Symbol_table::Defined): Add INCREMENTAL_BASE.
6943
6944 2011-06-07 Cary Coutant <ccoutant@google.com>
6945
6946 * copy-relocs.cc (Copy_relocs::copy_reloc): Call make_copy_reloc
6947 instead of emit_copy_reloc.
6948 (Copy_relocs::emit_copy_reloc): Refactor.
6949 (Copy_relocs::make_copy_reloc): New function.
6950 (Copy_relocs::add_copy_reloc): Remove.
6951 * copy-relocs.h (Copy_relocs::emit_copy_reloc): Move to public
6952 section.
6953 (Copy_relocs::make_copy_reloc): New function.
6954 (Copy_relocs::add_copy_reloc): Remove.
6955 * gold.cc (queue_middle_tasks): Emit old COPY relocations from
6956 unchanged input files.
6957 * incremental-dump.cc (dump_incremental_inputs): Print "COPY" flag.
6958 * incremental.cc (Sized_incremental_binary::do_reserve_layout):
6959 Reserve BSS space for COPY relocations.
6960 (Sized_incremental_binary::do_emit_copy_relocs): New function.
6961 (Output_section_incremental_inputs::write_info_blocks): Record
6962 whether a symbol is copied from a shared object.
6963 (Sized_incr_dynobj::do_add_symbols): Record COPY relocations.
6964 * incremental.h (enum Incremental_shlib_symbol_flags): New type.
6965 (INCREMENTAL_SHLIB_SYM_FLAGS_SHIFT): New constant.
6966 (Incremental_input_entry_reader::get_output_symbol_index): Add
6967 is_copy parameter.
6968 (Incremental_binary::emit_copy_relocs): New function.
6969 (Incremental_binary::do_emit_copy_relocs): New function.
6970 (Sized_incremental_binary::Sized_incremental_binary): Initialize
6971 new data member.
6972 (Sized_incremental_binary::add_copy_reloc): New function.
6973 (Sized_incremental_binary::do_emit_copy_relocs): New function.
6974 (Sized_incremental_binary::Copy_reloc): New struct.
6975 (Sized_incremental_binary::Copy_relocs): New typedef.
6976 (Sized_incremental_binary::copy_relocs_): New data member.
6977 * symtab.cc (Symbol_table::add_from_incrobj): Change return type.
6978 * symtab.h (Symbol_table::add_from_incrobj): Change return type.
6979 * target.h (Sized_target::emit_copy_reloc): New function.
6980 * x86_64.cc (Target_x86_64::emit_copy_reloc): New function.
6981
6982 2011-06-02 Cary Coutant <ccoutant@google.com>
6983
6984 PR gold/12163
6985 * gold/archive.cc (Archive::Archive): Initialize new data member.
6986 (Archive::include_all_members): Return if archive has already been
6987 included.
6988 * gold/archive.h (Archive::include_all_members_): New data member.
6989
6990 2011-06-02 Nick Clifton <nickc@redhat.com>
6991
6992 * dynobj.h: Fix spelling mistake in comment.
6993 * output.cc: Likewise.
6994
6995 2011-05-31 Doug Kwan <dougkwan@google.com>
6996 Asier Llano
6997
6998 PR gold/12826
6999 * arm.cc (Target_arm::tag_cpu_arch_combine): Fix handling of
7000 arch value that equals to elfcpp::MAX_TAG_CPU_ARCH.
7001 * testsuite/Makefile.am: (MOSTLYCLEANFILES): Clean up. Remove
7002 redundant arm_exidx_test.so.
7003 * testsuite/Makefile.in: Regenerate.
7004 (check_SCRIPTS): Add pr12826.sh
7005 (check_DATA): Add pr12826.stdout
7006 (pr12826.stdout, pr12826.so, pr12826_1.o, pr12826_2.o): New rules.
7007 * testsuite/pr12826.sh: New file.
7008 * testsuite/pr12826_1.s: Ditto.
7009 * testsuite/pr12826_1.s: Ditto.
7010
7011 2011-05-30 Ian Lance Taylor <iant@google.com>
7012
7013 * reloc.cc (Sized_relobj_file::do_read_relocs): Ignore empty reloc
7014 sections.
7015
7016 2011-05-29 Ian Lance Taylor <iant@google.com>
7017
7018 PR gold/12804
7019 * testsuite/Makefile.am: Use different file name for two_file_test
7020 temporary file for each incremental test.
7021 * testsuite/Makefile.in: Rebuild.
7022
7023 2011-05-29 Ian Lance Taylor <iant@google.com>
7024
7025 * binary.cc (Binary_to_elf::sized_convert): Don't crash if the
7026 binary input file is empty.
7027
7028 2011-05-27 Ian Lance Taylor <iant@google.com>
7029
7030 * testsuite/Makefile.am (ver_test_2.so): Use -Wl,-R,.
7031 (ver_test_9.so): Likewise.
7032 * testsuite/Makefile.in: Rebuild.
7033
7034 2011-05-26 Cary Coutant <ccoutant@google.com>
7035
7036 * incremental-dump.cc (dump_incremental_inputs): Print COMDAT groups.
7037 * incremental.cc (Incremental_inputs::report_input_section): Fix
7038 comment, indentation.
7039 (Incremental_inputs::report_comdat_group): New function.
7040 (Output_section_incremental_inputs::set_final_data_size): Adjust size
7041 of data for incremental input file entry.
7042 (Output_section_incremental_inputs::write_info_blocks): Write COMDAT
7043 group count, COMDAT group signatures.
7044 (Sized_incr_relobj::do_layout): Record kept COMDAT group info from
7045 an unchanged input file.
7046 * incremental.h (Incremental_object_entry::Incremental_object_entry):
7047 Initialize new data member.
7048 (Incremental_object_entry::add_comdat_group): New function.
7049 (Incremental_object_entry::get_comdat_group_count): New function.
7050 (Incremental_object_entry::get_comdat_signature_key): New function.
7051 (Incremental_object_entry::groups_): New data member.
7052 (Incremental_inputs::report_comdat_group): New function.
7053 (Incremental_input_entry_reader::get_symbol_offset): Adjust size of
7054 data for incremental input file entry.
7055 (Incremental_input_entry_reader::get_comdat_group_count): New function.
7056 (Incremental_input_entry_reader::get_input_section): Adjust size of
7057 data for incremental input file entry.
7058 (Incremental_input_entry_reader::get_global_symbol_reader): Likewise.
7059 (Incremental_input_entry_reader::get_comdat_group_signature): New
7060 function.
7061 * object.cc (Sized_relobj::include_section_group): Report kept
7062 COMDAT groups for incremental links.
7063
7064 2011-05-24 David Meyer <pdox@google.com>
7065
7066 * dirsearch.cc (Dirsearch::find): Replace n1 and n2 parameters
7067 with name parameter. Add found_name parameter.
7068 * fileread.cc (Input_file::find_file): Adjust code accordingly.
7069 * dirsearch.h (class Dirsearch): Update declaration.
7070
7071 2011-05-24 Ian Lance Taylor <iant@google.com>
7072
7073 * archive.cc (Library_base::should_include_member): Pull in object
7074 from archive if it defines the entry symbol.
7075 * parameters.cc (Parameters::entry): New function.
7076 * parameters.h (class Parameters): Declare entry.
7077 * output.h (class Output_file_header): Remove entry_ field.
7078 * output.cc (Output_file_header::Output_file_header): Remove entry
7079 parameter. Change all callers.
7080 (Output_file_header::entry): Use parameters->entry.
7081 * gold.cc (queue_middle_tasks): Likewise.
7082 * plugin.cc (Plugin_hook::run): Likewise.
7083
7084 2011-05-24 Cary Coutant <ccoutant@google.com>
7085
7086 * gold.cc (queue_initial_tasks): Pass incremental base filename
7087 to Output_file::open_base_file; don't print error message.
7088 * incremental-dump.cc (main): Adjust call to
7089 Output_file::open_for_modification.
7090 * incremental-dump.cc (main): Likewise.
7091 * incremental.cc (Incremental_inputs::report_command_line):
7092 Ignore --incremental-base option when comparing command lines.
7093 Ignore parameter when given as separate argument.
7094 * options.h (class General_options): Add --incremental-base.
7095 * output.cc (Output_file::Output_file):
7096 (Output_file::open_base_file): Add base_name and writable parameters;
7097 read base file into new file; print error message here.
7098 (Output_file::map_no_anonymous): Add writable parameter; adjust all
7099 callers.
7100 * output.h (Output_file::open_for_modification): Rename to...
7101 (Output_file::open_base_file): ...this; add base_name and
7102 writable parameters; adjust all callers.
7103 (Output_file::map_no_anonymous): Add writable parameter; adjust all
7104 callers.
7105 * testsuite/Makefile.am (incremental_test_4): Test
7106 --incremental-base.
7107 * testsuite/Makefile.in: Regenerate.
7108
7109 2011-05-24 Cary Coutant <ccoutant@google.com>
7110
7111 * testsuite/Makefile.am: Add incremental_test_2, incremental_test_3,
7112 incremental_test_4.
7113 * testsuite/Makefile.in: Regenerate.
7114 * testsuite/two_file_test_1_v1.cc: New test source file.
7115 * testsuite/two_file_test_1b_v1.cc: New test source file.
7116 * testsuite/two_file_test_2_v1.cc: New test source file.
7117
7118 2011-05-24 Cary Coutant <ccoutant@google.com>
7119
7120 * dynobj.h (Dynobj::do_dynobj): New function.
7121 * incremental-dump.cc (dump_incremental_inputs): Print as_needed
7122 flag and soname for shared objects.
7123 * incremental.cc (Incremental_inputs::report_object): Make
7124 either Incremental_object_entry or Incremental_dynobj_entry; add
7125 soname to string table.
7126 (Incremental_inputs::report_input_section): Add assertion.
7127 (Output_section_incremental_inputs::set_final_data_size): Adjust
7128 type of input file entry for shared libraries; adjust size of
7129 shared library info entry.
7130 (Output_section_incremental_inputs::write_input_files): Write
7131 as_needed flag for shared libraries.
7132 (Output_section_incremental_inputs::write_info_blocks): Adjust type
7133 of input file entry for shared libraries; write soname.
7134 (Sized_incr_dynobj::Sized_incr_dynobj): Read as_needed flag and
7135 soname from incremental info.
7136 * incremental.h (enum Incremental_input_flags): Add
7137 INCREMENTAL_INPUT_AS_NEEDED.
7138 (Incremental_input_entry::Incremental_input_entry): Initialize new
7139 data member.
7140 (Incremental_input_entry::set_as_needed): New function.
7141 (Incremental_input_entry::as_needed): New function.
7142 (Incremental_input_entry::do_dynobj_entry): New function.
7143 (Incremental_input_entry::as_needed_): New data member.
7144 (Incremental_object_entry::Incremental_object_entry): Don't check
7145 for shared library.
7146 (Incremental_object_entry::do_type): Likewise.
7147 (class Incremental_dynobj_entry): New class.
7148 (Incremental_input_entry_reader::as_needed): New function.
7149 (Incremental_input_entry_reader::get_soname): New function.
7150 (Incremental_input_entry_reader::get_global_symbol_count): Rewrite.
7151 (Incremental_input_entry_reader::get_output_symbol_index): Adjust
7152 size of shared library info entry.
7153 * layout.cc (Layout::finish_dynamic_section): Don't test for
7154 incremental link when adding DT_NEEDED entries.
7155 * object.h (Object::Object): Initialize new data member.
7156 (Object::dynobj): New function.
7157 (Object::set_as_needed): New function.
7158 (Object::as_needed): New function.
7159 (Object::do_dynobj): New function.
7160 (Object::as_needed_): New data member.
7161
7162 2011-05-24 Cary Coutant <ccoutant@google.com>
7163
7164 * incremental-dump.cc (dump_incremental_inputs): Print dynamic reloc
7165 info; adjust display of GOT entries.
7166 * incremental.cc (Sized_incremental_binary::setup_readers): Allocate
7167 vector of input objects; remove file_status_.
7168 (Sized_incremental_binary::do_reserve_layout): Remove file_status_.
7169 (Sized_incremental_binary::do_process_got_plt): Adjust calls to
7170 got_plt reader; call target hooks to reserve GOT entries.
7171 (Output_section_incremental_inputs::set_final_data_size): Adjust size
7172 of input file info header and GOT info entry.
7173 (Output_section_incremental_inputs::write_info_blocks): Write dynamic
7174 relocation info.
7175 (Got_plt_view_info::got_descriptor): Remove.
7176 (Got_plt_view_info::sym_index): New data member.
7177 (Got_plt_view_info::input_index): New data member.
7178 (Local_got_offset_visitor::visit): Write input file index.
7179 (Global_got_offset_visitor::visit): Write 0 for input file index.
7180 (Global_symbol_visitor_got_plt::operator()): Replace got_descriptor
7181 with sym_index and input_index.
7182 (Output_section_incremental_inputs::write_got_plt): Adjust size of
7183 incremental info GOT entry; replace got_descriptor with input_index.
7184 (Sized_relobj_incr::Sized_relobj_incr): Adjust initializers; record
7185 map from input file index to object.
7186 (Sized_relobj_incr::do_layout): Replace direct data member reference
7187 with accessor function.
7188 (Sized_relobj_incr::do_for_all_local_got_entries): Move to base class.
7189 * incremental.h (Incremental_input_entry_reader::get_symbol_offset):
7190 Adjust size of input file info header.
7191 (Incremental_input_entry_reader::get_first_dyn_reloc): New function.
7192 (Incremental_input_entry_reader::get_dyn_reloc_count): New function.
7193 (Incremental_input_entry_reader::get_input_section): Adjust size of
7194 input file info header.
7195 (Incremental_got_plt_reader::Incremental_got_plt_reader): Adjust size
7196 of incremental info GOT entry.
7197 (Incremental_got_plt_reader::get_got_desc): Remove.
7198 (Incremental_got_plt_reader::get_got_symndx): New function.
7199 (Incremental_got_plt_reader::get_got_input_index): New function.
7200 (Sized_incremental_binary::Sized_incremental_binary): Remove
7201 file_status_; add input_objects_.
7202 (Sized_incremental_binary::~Sized_incremental_binary): Remove.
7203 (Sized_incremental_binary::set_file_is_unchanged): Remove.
7204 (Sized_incremental_binary::file_is_unchanged): Remove.
7205 (Sized_incremental_binary::set_input_object): New function.
7206 (Sized_incremental_binary::input_object): New function.
7207 (Sized_incremental_binary::file_status_): Remove.
7208 (Sized_incremental_binary::input_objects_): New data member.
7209 (Sized_relobj_incr): Rename Sized_incr_relobj to this; adjust all
7210 references.
7211 (Sized_relobj_incr::invalid_address): Move to base class.
7212 (Sized_relobj_incr::is_output_section_offset_invalid): Move to base
7213 class.
7214 (Sized_relobj_incr::do_output_section_offset): Likewise.
7215 (Sized_relobj_incr::do_for_all_local_got_entries): Likewise.
7216 (Sized_relobj_incr::section_offsets_): Likewise.
7217 * object.cc (Sized_relobj::do_for_all_local_got_entries): New
7218 function.
7219 (Sized_relobj_file::Sized_relobj_file): Remove local_got_offsets_.
7220 (Sized_relobj_file::layout_section): Replace refs to section_offsets_
7221 with accessor function.
7222 (Sized_relobj_file::do_layout): Likewise.
7223 (Sized_relobj_file::do_layout_deferred_sections): Likewise.
7224 (Sized_relobj_file::do_for_all_local_got_entries): Move to base class.
7225 (Sized_relobj_file::compute_final_local_value): Replace refs to
7226 section_offsets_ with accessor function.
7227 (Sized_relobj_file::do_finalize_local_symbols): Likewise.
7228 * object.h (Relobj::Relobj): Initialize new data members.
7229 (Relobj::add_dyn_reloc): New function.
7230 (Relobj::first_dyn_reloc): New function.
7231 (Relobj::dyn_reloc_count): New function.
7232 (Relobj::first_dyn_reloc_): New data member.
7233 (Relobj::dyn_reloc_count_): New data member.
7234 (Sized_relobj): Rename Sized_relobj_base to this; adjust all
7235 references.
7236 (Sized_relobj::Address): New typedef.
7237 (Sized_relobj::invalid_address): Move here from child class.
7238 (Sized_relobj::Sized_relobj): Initialize new data members.
7239 (Sized_relobj::sized_relobj): New function.
7240 (Sized_relobj::is_output_section_offset_invalid): Move here from
7241 child class.
7242 (Sized_relobj::get_output_section_offset): Likewise.
7243 (Sized_relobj::local_has_got_offset): Likewise.
7244 (Sized_relobj::local_got_offset): Likewise.
7245 (Sized_relobj::set_local_got_offset): Likewise.
7246 (Sized_relobj::do_for_all_local_got_entries): Likewise.
7247 (Sized_relobj::clear_got_offsets): New function.
7248 (Sized_relobj::section_offsets): Move here from child class.
7249 (Sized_relobj::do_output_section_offset): Likewise.
7250 (Sized_relobj::do_set_section_offset): Likewise.
7251 (Sized_relobj::Local_got_offsets): Likewise.
7252 (Sized_relobj::local_got_offsets_): Likewise.
7253 (Sized_relobj::section_offsets_): Likewise.
7254 (Sized_relobj_file): Rename Sized_relobj to this; adjust all
7255 references.
7256 (Sized_relobj_file::is_output_section_offset_invalid): Move to base
7257 class.
7258 (Sized_relobj_file::sized_relobj): New function
7259 (Sized_relobj_file::local_has_got_offset): Move to base class.
7260 (Sized_relobj_file::local_got_offset): Likewise.
7261 (Sized_relobj_file::set_local_got_offset): Likewise.
7262 (Sized_relobj_file::get_output_section_offset): Likewise.
7263 (Sized_relobj_file::do_for_all_local_got_entries): Likewise.
7264 (Sized_relobj_file::do_output_section_offset): Likewise.
7265 (Sized_relobj_file::do_set_section_offset): Likewise.
7266 (Sized_relobj_file::Local_got_offsets): Likewise.
7267 (Sized_relobj_file::local_got_offsets_): Likewise.
7268 (Sized_relobj_file::section_offsets_): Likewise.
7269 * output.cc (Output_reloc::Output_reloc): Adjust type of relobj
7270 (all constructors).
7271 (set_needs_dynsym_index): Convert relobj to derived class pointer.
7272 (Output_reloc::get_symbol_index): Likewise.
7273 (Output_reloc::local_section_offset): Likewise.
7274 (Output_reloc::get_address): Likewise.
7275 (Output_reloc::symbol_value): Likewise.
7276 (Output_data_got::reserve_slot): Move to class definition.
7277 (Output_data_got::reserve_local): New function.
7278 (Output_data_got::reserve_slot_for_global): Remove.
7279 (Output_data_got::reserve_global): New function.
7280 * output.h (Output_reloc::Output_reloc): Adjust type of relobj
7281 (all constructors, two instantiations).
7282 (Output_reloc::get_relobj): New function (two instantiations).
7283 (Output_reloc::u1_.relobj, Output_reloc::u2_.relobj): Adjust type.
7284 (Output_data_reloc_base::add): Convert relobj to derived class pointer.
7285 (Output_data_reloc::add_global): Adjust type of relobj.
7286 (Output_data_reloc::add_global_relative): Likewise.
7287 (Output_data_reloc::add_symbolless_global_addend): Likewise.
7288 (Output_data_reloc::add_local): Likewise.
7289 (Output_data_reloc::add_local_relative): Likewise.
7290 (Output_data_reloc::add_symbolless_local_addend): Likewise.
7291 (Output_data_reloc::add_local_section): Likewise.
7292 (Output_data_reloc::add_output_section): Likewise.
7293 (Output_data_reloc::add_absolute): Likewise.
7294 (Output_data_reloc::add_target_specific): Likewise.
7295 (Output_data_got::reserve_slot): Move definition here.
7296 (Output_data_got::reserve_local): New function.
7297 (Output_data_got::reserve_global): New function.
7298 * reloc.cc (Sized_relobj_file::do_read_relocs): Replace refs to
7299 section_offsets_ with accessor function.
7300 (Sized_relobj_file::write_sections): Likewise.
7301 (Sized_relobj_file::do_relocate_sections): Likewise.
7302 * target.h (Sized_target::reserve_local_got_entry): New function.
7303 (Sized_target::reserve_global_got_entry): New function.
7304 * x86_64.cc (Target_x86_64::reserve_local_got_entry): New function.
7305 (Target_x86_64::reserve_global_got_entry): New function.
7306 (Target_x86_64::init_got_plt_for_update): Create rela_dyn section.
7307
7308 2011-05-23 Cary Coutant <ccoutant@google.com>
7309
7310 * gold.cc (queue_middle_tasks): Process existing GOT/PLT entries.
7311 * incremental-dump.cc (dump_incremental_inputs): Mask high-order
7312 bit when checking got_type.
7313 * incremental.cc (Sized_incremental_binary::setup_readers):
7314 Store symbol table and string table locations; initialize bit vector
7315 of file status flags.
7316 (Sized_incremental_binary::do_reserve_layout): Set bit flag for
7317 unchanged files.
7318 (Sized_incremental_binary::do_process_got_plt): New function.
7319 (Sized_incremental_binary::get_symtab_view): Use stored locations.
7320 (Output_section_incremental_inputs::set_final_data_size): Record
7321 file index for each input file.
7322 (Output_section_incremental_inputs::write_got_plt): Store file index
7323 instead of input entry offset for each GOT entry.
7324 * incremental.h
7325 (Incremental_input_entry::Incremental_input_entry): Initialize new
7326 data member.
7327 (Incremental_input_entry::set_offset): Store file index.
7328 (Incremental_input_entry::get_file_index): New function.
7329 (Incremental_input_entry::file_index_): New data member.
7330 (Incremental_binary::process_got_plt): New function.
7331 (Incremental_binary::do_process_got_plt): New function.
7332 (Sized_incremental_binary::Sized_incremental_binary): Initialize new
7333 data members.
7334 (Sized_incremental_binary::~Sized_incremental_binary): New destructor.
7335 (Sized_incremental_binary::set_file_is_unchanged): New function.
7336 (Sized_incremental_binary::file_is_unchanged): New function.
7337 (Sized_incremental_binary::do_process_got_plt): New function.
7338 (Sized_incremental_binary::file_status_): New data member.
7339 (Sized_incremental_binary::main_symtab_loc_): New data member.
7340 (Sized_incremental_binary::main_strtab_loc_): New data member.
7341 * output.cc (Output_data_got::Got_entry::write): Add case
7342 RESERVED_CODE.
7343 (Output_data_got::add_global): Call add_got_entry.
7344 (Output_data_got::add_global_plt): Likewise.
7345 (Output_data_got::add_global_with_rel): Likewise.
7346 (Output_data_got::add_global_with_rela): Likewise.
7347 (Output_data_got::add_global_pair_with_rel): Call add_got_entry_pair.
7348 (Output_data_got::add_global_pair_with_rela): Likewise.
7349 (Output_data_got::add_local): Call add_got_entry.
7350 (Output_data_got::add_local_plt): Likewise.
7351 (Output_data_got::add_local_with_rel): Likewise.
7352 (Output_data_got::add_local_with_rela): Likewise.
7353 (Output_data_got::add_local_pair_with_rel): Call add_got_entry_pair.
7354 (Output_data_got::add_local_pair_with_rela): Likewise.
7355 (Output_data_got::reserve_slot): New function.
7356 (Output_data_got::reserve_slot_for_global): New function.
7357 (Output_data_got::add_got_entry): New function.
7358 (Output_data_got::add_got_entry_pair): New function.
7359 (Output_section::add_output_section_data): Edit FIXME.
7360 * output.h
7361 (Output_section_data_build::Output_section_data_build): New
7362 constructor with size parameter.
7363 (Output_data_space::Output_data_space): Likewise.
7364 (Output_data_got::Output_data_got): Initialize new data member; new
7365 constructor with size parameter.
7366 (Output_data_got::add_constant): Call add_got_entry.
7367 (Output_data_got::reserve_slot): New function.
7368 (Output_data_got::reserve_slot_for_global): New function.
7369 (class Output_data_got::Got_entry): Add RESERVED_CODE.
7370 (Output_data_got::add_got_entry): New function.
7371 (Output_data_got::add_got_entry_pair): New function.
7372 (Output_data_got::free_list_): New data member.
7373 * target.h (Sized_target::init_got_plt_for_update): New function.
7374 (Sized_target::register_global_plt_entry): New function.
7375 * x86_64.cc (Output_data_plt_x86_64::Output_data_plt_x86_64):
7376 Initialize new data member; call init; add constructor with PLT count.
7377 (Output_data_plt_x86_64::init): New function.
7378 (Output_data_plt_x86_64::add_relocation): New function.
7379 (Output_data_plt_x86_64::reserve_slot): New function.
7380 (Output_data_plt_x86_64::free_list_): New data member.
7381 (Target_x86_64::init_got_plt_for_update): New function.
7382 (Target_x86_64::register_global_plt_entry): New function.
7383 (Output_data_plt_x86_64::add_entry): Allocate from free list for
7384 incremental updates.
7385 (Output_data_plt_x86_64::add_relocation): New function.
7386 * testsuite/object_unittest.cc (Object_test): Set default options.
7387
7388 2011-05-16 Ian Lance Taylor <iant@google.com>
7389
7390 * options.h (class General_options): Make -i a synonym for -r.
7391
7392 2011-05-16 Ian Lance Taylor <iant@google.com>
7393
7394 * testsuite/tls_test_main.cc: Use semaphores instead of mutexes.
7395
7396 2011-05-10 Cary Coutant <ccoutant@google.com>
7397
7398 * object.cc (Sized_relobj::do_count_local_symbols): Check for
7399 strip_all (-s).
7400
7401 2011-05-06 Ian Lance Taylor <iant@google.com>
7402
7403 * layout.cc (Layout::layout): If the output section flags change,
7404 update the ordering.
7405
7406 2011-04-25 Cary Coutant <ccoutant@google.com>
7407
7408 * incremental-dump.cc (dump_incremental_inputs): Print local
7409 symbol info for each input file.
7410 * incremental.cc
7411 (Output_section_incremental_inputs::set_final_data_size): Add local
7412 symbol info to input file entries in incremental info.
7413 (Output_section_incremental_inputs::write_info_blocks): Likewise.
7414 (Sized_incr_relobj::Sized_incr_relobj): Initialize new data members.
7415 (Sized_incr_relobj::do_add_symbols): Cosmetic change.
7416 (Sized_incr_relobj::do_count_local_symbols): Replace stub with
7417 implementation.
7418 (Sized_incr_relobj::do_finalize_local_symbols): Likewise.
7419 (Sized_incr_relobj::do_relocate): Write the local symbols.
7420 (Sized_incr_dynobj::do_add_symbols): Cosmetic change.
7421 * incremental.h (Incremental_inputs_reader::get_symbol_offset):
7422 Adjust size of input file header.
7423 (Incremental_inputs_reader::get_local_symbol_offset): New function.
7424 (Incremental_inputs_reader::get_local_symbol_count): New function.
7425 (Incremental_inputs_reader::get_input_section): Adjust size of input
7426 file header.
7427 (Incremental_inputs_reader::get_global_symbol_reader): Likewise.
7428 (Sized_incr_relobj::This): New typedef.
7429 (Sized_incr_relobj::sym_size): New const data member.
7430 (Sized_incr_relobj::Local_symbol): New struct.
7431 (Sized_incr_relobj::do_output_local_symbol_count): New function.
7432 (Sized_incr_relobj::do_local_symbol_offset): New function.
7433 (Sized_incr_relobj::local_symbol_count_): New data member.
7434 (Sized_incr_relobj::output_local_dynsym_count_): New data member.
7435 (Sized_incr_relobj::local_symbol_index_): New data member.
7436 (Sized_incr_relobj::local_symbol_offset_): New data member.
7437 (Sized_incr_relobj::local_dynsym_offset_): New data member.
7438 (Sized_incr_relobj::local_symbols_): New data member.
7439 * object.h (Relobj::output_local_symbol_count): New function.
7440 (Relobj::local_symbol_offset): New function.
7441 (Relobj::do_output_local_symbol_count): New function.
7442 (Relobj::do_local_symbol_offset): New function.
7443 (Sized_relobj::do_output_local_symbol_count): New function.
7444 (Sized_relobj::do_local_symbol_offset): New function.
7445
7446 2011-04-22 Vladimir Simonov <sv@sw.ru>
7447
7448 * descriptors.cc (set_close_on_exec): New function.
7449 (Descriptors::open): Use set_close_on_exec.
7450 * output.cc (S_ISLNK): Define if not defined.
7451
7452 2011-04-22 Cary Coutant <ccoutant@google.com>
7453
7454 * incremental.cc (Sized_incremental_binary::setup_readers): Allocate
7455 global symbol map.
7456 (Sized_incremental_binary::do_apply_incremental_relocs): New function.
7457 (Sized_incr_relobj::do_add_symbols): Add symbols to global symbol map.
7458 (Sized_incr_relobj::do_relocate): Remap section indices in incremental
7459 relocations.
7460 (Sized_incr_dynobj::do_add_symbols): Add symbols to global symbol map.
7461 (Sized_incr_dynobj::do_for_all_global_symbols): Remove FIXME.
7462 (Sized_incr_dynobj::do_for_all_local_got_entries): Likewise.
7463 * incremental.h
7464 (Incremental_inputs_reader::global_symbol_reader_at_offset): New
7465 function.
7466 (Incremental_binary::apply_incremental_relocs): New function.
7467 (Incremental_binary::do_apply_incremental_relocs): New function.
7468 (Sized_incremental_binary::Sized_incremental_binary): Initialize new
7469 data member.
7470 (Sized_incremental_binary::add_global_symbol): New function.
7471 (Sized_incremental_binary::global_symbol): New function.
7472 (Sized_incremental_binary::do_apply_incremental_relocs): New function.
7473 (Sized_incremental_binary::symbol_map_): New data member.
7474 * layout.cc (Layout_task_runner::run): Apply incremental relocations.
7475 * target.h (Sized_target::apply_relocation): New function.
7476 * target-reloc.h (apply_relocation): New function.
7477 * x86_64.cc (Target_x86_64::apply_relocation): New function.
7478
7479 2011-04-22 Doug Kwan <dougkwan@google.com>
7480
7481 * arm.cc (Arm_output_section::Arm_output_section): Set SHF_LINK_ORDER
7482 flag of a SHT_ARM_EXIDX section.
7483 * testsuite/Makefile.am (arm_exidx_test): New test rules.
7484 * testsuite/Makefile.in: Regenerate.
7485 * testsuite/arm_exidx_test.s: New file.
7486 * testsuite/arm_exidx_test.sh: Same.
7487
7488 2011-04-20 Cary Coutant <ccoutant@google.com>
7489
7490 PR gold/12689
7491 * archive.h (Incremental_archive_entry::Archive_member):
7492 Initialize arg_serial_ (second constructor).
7493
7494 2011-04-17 Ian Lance Taylor <iant@google.com>
7495
7496 * object.cc (Relocate_info::location): Simplify location string.
7497 * errors.cc (Errors::error_at_location): Don't print program
7498 name.
7499 (Errors::warning_at_location): Likewise.
7500 (Errors::undefined_symbol): Likewise.
7501 * testsuite/debug_msg.sh: Update accordingly.
7502
7503 2011-04-14 Cary Coutant <ccoutant@google.com>
7504
7505 * gold/layout.cc (Layout::symtab_section_offset): New function.
7506 * gold/layout.h (Layout::symtab_section_offset): New function.
7507 * gold/reloc.cc (Sized_relobj::do_relocate): Call it.
7508
7509 2011-04-12 Ian Lance Taylor <iant@google.com>
7510
7511 * configure.ac: Check for sys/mman.h and mmap. Check for mremap
7512 with MREMAP_MAYMOVE.
7513 * output.h (class Output_file): Add map_is_allocated_ field.
7514 * output.cc: Only #include <sys/mman.h> if it exists. If mmap is
7515 not available, provide stubs. If mremap is not available, #define
7516 it to gold_mremap.
7517 (MREMAP_MAYMOVE): Define if not defined.
7518 (Output_file::Output_file): Initialize map_is_allocated_.
7519 (Output_file::resize): Check map_is_allocated_.
7520 (Output_file::map_anonymous): If mmap fails, use malloc.
7521 (Output_file::unmap): Don't do anything for an anonymous map.
7522 * fileread.cc: Only #include <sys/mman.h> if it exists. If mmap
7523 is not available, provide stubs.
7524 (File_read::View::~View): Use free rather than delete[].
7525 (File_read::make_view): Use malloc rather than new[]. If mmap
7526 fails, use malloc.
7527 (File_read::find_or_make_view): Use malloc rather than new[].
7528 * gold.h: Remove HAVE_REMAP code.
7529 * mremap.c: #include <errno.h>. Only #include <sys/mman.h> if it
7530 exists. Rename mremap to gold_mremap. If mmap is not available
7531 don't do anything.
7532 * configure, config.in: Rebuild.
7533
7534 2011-04-11 Ian Lance Taylor <iant@google.com>
7535
7536 * incremental.cc (Sized_incr_relobj::do_add_symbols): Always
7537 initialize local variable v.
7538
7539 2011-04-11 Cary Coutant <ccoutant@google.com>
7540
7541 * archive.cc (Archive::include_member): Adjust call to
7542 report_object.
7543 (Add_archive_symbols::run): Track argument serial numbers.
7544 (Lib_group::include_member): Likewise.
7545 (Add_lib_group_symbols::run): Adjust call to report_archive_begin.
7546 * archive.h (Incremental_archive_entry::Archive_member):
7547 Initialize arg_serial_.
7548 (Archive_member::arg_serial_): New data member.
7549 * dynobj.cc (Dynobj::Dynobj): Allow input_file_ to be NULL.
7550 (Sized_dynobj::do_add_symbols): Track symbols when doing an
7551 incremental link.
7552 (Sized_dynobj::do_for_all_local_got_entries): New function.
7553 * dynobj.h: (Sized_dynobj::do_for_all_local_got_entries): New
7554 function.
7555 * fileread.cc (get_mtime): New function.
7556 * fileread.h (get_mtime): New function.
7557 * gold.cc (queue_initial_tasks): Check for incremental update.
7558 (process_incremental_input): New function.
7559 (queue_middle_tasks): Don't force valid target for incremental
7560 update.
7561 * incremental-dump.cc (find_input_containing_global): Adjust
7562 size of symbol info entry.
7563 (dump_incremental_inputs): Dump argument serial number and
7564 in_system_directory flag; bias shndx by 1; print symbol names
7565 when dumping per-file symbol lists; use new symbol info readers.
7566 * incremental.cc
7567 (Output_section_incremental_inputs:update_data_size): New function.
7568 (Sized_incremental_binary::setup_readers): Setup input readers
7569 for each input file; build maps for files added from libraries
7570 and scripts.
7571 (Sized_incremental_binary::check_input_args): New function.
7572 (Sized_incremental_binary::do_check_inputs): Build map of argument
7573 serial numbers to input arguments.
7574 (Sized_incremental_binary::do_file_has_changed): Rename
7575 do_file_is_unchanged to this; compare file modification times.
7576 (Sized_incremental_binary::do_init_layout): New function.
7577 (Sized_incremental_binary::do_reserve_layout): New function.
7578 (Sized_incremental_binary::do_get_input_reader): Remove.
7579 (Sized_incremental_binary::get_symtab_view): New function.
7580 (Incremental_checker::can_incrementally_link_output_file): Remove.
7581 (Incremental_inputs::report_command_line): Exclude --debug options.
7582 (Incremental_inputs::report_archive_begin): Add parameter; track
7583 argument serial numbers; don't put input file entry for archive
7584 before archive members.
7585 (Incremental_inputs::report_archive_end): Put input file entry
7586 for archive after archive members.
7587 (Incremental_inputs::report_object): Add parameter; track argument
7588 serial numbers and in_system_directory flag.
7589 (Incremental_inputs::report_script): Add parameter; track argument
7590 serial numbers.
7591 (Output_section_incremental_inputs::set_final_data_size): Adjust
7592 size of symbol info entry; check for forwarding symbols.
7593 (Output_section_incremental_inputs::write_input_files): Write
7594 in_system_directory flag and argument serial number.
7595 (Output_section_incremental_inputs::write_info_blocks): Map section
7596 indices between incremental info and original input file; store
7597 input section index for each symbol.
7598 (class Local_got_offset_visitor): Derive from Got_offset_list::Visitor;
7599 change operator() to visit().
7600 (class Global_got_offset_visitor): Likewise.
7601 (class Global_symbol_visitor_got_plt):
7602 (Output_section_incremental_inputs::write_got_plt): Use new visitor
7603 classes.
7604 (Sized_incr_relobj::Sized_incr_relobj): New constructor.
7605 (Sized_incr_relobj::do_read_symbols): New function.
7606 (Sized_incr_relobj::do_layout): New function.
7607 (Sized_incr_relobj::do_layout_deferred_sections): New function.
7608 (Sized_incr_relobj::do_add_symbols): New function.
7609 (Sized_incr_relobj::do_should_include_member): New function.
7610 (Sized_incr_relobj::do_for_all_global_symbols): New function.
7611 (Sized_incr_relobj::do_for_all_local_got_entries): New function.
7612 (Sized_incr_relobj::do_section_size): New function.
7613 (Sized_incr_relobj::do_section_name): New function.
7614 (Sized_incr_relobj::do_section_contents): New function.
7615 (Sized_incr_relobj::do_section_flags): New function.
7616 (Sized_incr_relobj::do_section_entsize): New function.
7617 (Sized_incr_relobj::do_section_address): New function.
7618 (Sized_incr_relobj::do_section_type): New function.
7619 (Sized_incr_relobj::do_section_link): New function.
7620 (Sized_incr_relobj::do_section_info): New function.
7621 (Sized_incr_relobj::do_section_addralign): New function.
7622 (Sized_incr_relobj::do_initialize_xindex): New function.
7623 (Sized_incr_relobj::do_get_global_symbol_counts): New function.
7624 (Sized_incr_relobj::do_read_relocs): New function.
7625 (Sized_incr_relobj::do_gc_process_relocs): New function.
7626 (Sized_incr_relobj::do_scan_relocs): New function.
7627 (Sized_incr_relobj::do_count_local_symbols): New function.
7628 (Sized_incr_relobj::do_finalize_local_symbols): New function.
7629 (Sized_incr_relobj::do_set_local_dynsym_indexes): New function.
7630 (Sized_incr_relobj::do_set_local_dynsym_offset): New function.
7631 (Sized_incr_relobj::do_relocate): New function.
7632 (Sized_incr_relobj::do_set_section_offset): New function.
7633 (Sized_incr_dynobj::Sized_incr_dynobj): New function.
7634 (Sized_incr_dynobj::do_read_symbols): New function.
7635 (Sized_incr_dynobj::do_layout): New function.
7636 (Sized_incr_dynobj::do_add_symbols): New function.
7637 (Sized_incr_dynobj::do_should_include_member): New function.
7638 (Sized_incr_dynobj::do_for_all_global_symbols): New function.
7639 (Sized_incr_dynobj::do_for_all_local_got_entries): New function.
7640 (Sized_incr_dynobj::do_section_size): New function.
7641 (Sized_incr_dynobj::do_section_name): New function.
7642 (Sized_incr_dynobj::do_section_contents): New function.
7643 (Sized_incr_dynobj::do_section_flags): New function.
7644 (Sized_incr_dynobj::do_section_entsize): New function.
7645 (Sized_incr_dynobj::do_section_address): New function.
7646 (Sized_incr_dynobj::do_section_type): New function.
7647 (Sized_incr_dynobj::do_section_link): New function.
7648 (Sized_incr_dynobj::do_section_info): New function.
7649 (Sized_incr_dynobj::do_section_addralign): New function.
7650 (Sized_incr_dynobj::do_initialize_xindex): New function.
7651 (Sized_incr_dynobj::do_get_global_symbol_counts): New function.
7652 (make_sized_incremental_object): New function.
7653 (Incremental_library::copy_unused_symbols): New function.
7654 (Incremental_library::do_for_all_unused_symbols): New function.
7655 * incremental.h (enum Incremental_input_flags): New type.
7656 (class Incremental_checker): Remove.
7657 (Incremental_input_entry::Incremental_input_entry): Add argument
7658 serial number.
7659 (Incremental_input_entry::arg_serial): New function.
7660 (Incremental_input_entry::set_is_in_system_directory): New function.
7661 (Incremental_input_entry::is_in_system_directory): New function.
7662 (Incremental_input_entry::arg_serial_): New data member.
7663 (Incremental_input_entry::is_in_system_directory_): New data member.
7664 (class Script_info): Move here from script.h.
7665 (Script_info::Script_info): Add filename parameter.
7666 (Script_info::filename): New function.
7667 (Script_info::filename_): New data member.
7668 (Incremental_script_entry::Incremental_script_entry): Add argument
7669 serial number.
7670 (Incremental_object_entry::Incremental_object_entry): Likewise.
7671 (Incremental_object_entry::add_input_section): Build list of input
7672 sections with map to original shndx.
7673 (Incremental_object_entry::get_input_section_index): New function.
7674 (Incremental_object_entry::shndx_): New data member.
7675 (Incremental_object_entry::name_key_): Rename; adjust all refs.
7676 (Incremental_object_entry::sh_size_): Rename; adjust all refs.
7677 (Incremental_archive_entry::Incremental_archive_entry): Add argument
7678 serial number.
7679 (Incremental_inputs::report_archive_begin): Likewise.
7680 (Incremental_inputs::report_object): Likewise.
7681 (Incremental_inputs::report_script): Likewise.
7682 (class Incremental_global_symbol_reader): New class.
7683 (Incremental_input_entry_reader::Incremental_input_entry_reader): Read
7684 and store flags and input file type.
7685 (Incremental_input_entry_reader::arg_serial): New function.
7686 (Incremental_input_entry_reader::type): Extract type from flags.
7687 (Incremental_input_entry_reader::is_in_system_directory): New function.
7688 (Incremental_input_entry_reader::get_input_section_count): Call
7689 accessor function for type.
7690 (Incremental_input_entry_reader::get_symbol_offset): Call accessor
7691 function for type; adjust size of global symbol entry.
7692 (Incremental_input_entry_reader::get_global_symbol_count): Call
7693 accessor function for type.
7694 (Incremental_input_entry_reader::get_object_count): Likewise.
7695 (Incremental_input_entry_reader::get_object_offset): Likewise.
7696 (Incremental_input_entry_reader::get_member_count): Likewise.
7697 (Incremental_input_entry_reader::get_unused_symbol_count): Likewise.
7698 (Incremental_input_entry_reader::get_member_offset): Likewise.
7699 (Incremental_input_entry_reader::get_unused_symbol): Likewise.
7700 (Incremental_input_entry_reader::Global_symbol_info): Remove.
7701 (Incremental_input_entry_reader::get_global_symbol_info): Remove.
7702 (Incremental_input_entry_reader::get_global_symbol_reader): New
7703 function.
7704 (Incremental_input_entry_reader::get_output_symbol_index): New
7705 function.
7706 (Incremental_input_entry_reader::type_): Remove.
7707 (Incremental_input_entry_reader::flags_): New data member.
7708 (Incremental_inputs_reader::input_file_offset): New function.
7709 (Incremental_inputs_reader::input_file_index): New function.
7710 (Incremental_inputs_reader::input_file): Call input_file_offset.
7711 (Incremental_inputs_reader::input_file_at_offset): New function.
7712 (Incremental_relocs_reader::get_r_type): Reformat.
7713 (Incremental_relocs_reader::get_r_shndx): Reformat.
7714 (Incremental_relocs_reader::get_r_offset): Reformat.
7715 (Incremental_relocs_reader::data): New function.
7716 (Incremental_binary::Incremental_binary): Initialize new data members.
7717 (Incremental_binary::check_inputs): Add cmdline parameter.
7718 (Incremental_binary::file_is_unchanged): Remove.
7719 (Input_reader::arg_serial): New function.
7720 (Input_reader::get_unused_symbol_count): New function.
7721 (Input_reader::get_unused_symbol): New function.
7722 (Input_reader::do_arg_serial): New function.
7723 (Input_reader::do_get_unused_symbol_count): New function.
7724 (Input_reader::do_get_unused_symbol): New function.
7725 (Incremental_binary::input_file_count): New function.
7726 (Incremental_binary::get_input_reader): Change signature to use
7727 index instead of filename.
7728 (Incremental_binary::file_has_changed): New function.
7729 (Incremental_binary::get_input_argument): New function.
7730 (Incremental_binary::get_library): New function.
7731 (Incremental_binary::get_script_info): New function.
7732 (Incremental_binary::init_layout): New function.
7733 (Incremental_binary::reserve_layout): New function.
7734 (Incremental_binary::output_file): New function.
7735 (Incremental_binary::do_check_inputs): New function.
7736 (Incremental_binary::do_file_is_unchanged): Remove.
7737 (Incremental_binary::do_file_has_changed): New function.
7738 (Incremental_binary::do_init_layout): New function.
7739 (Incremental_binary::do_reserve_layout): New function.
7740 (Incremental_binary::do_input_file_count): New function.
7741 (Incremental_binary::do_get_input_reader): Change signature.
7742 (Incremental_binary::input_args_map_): New data member.
7743 (Incremental_binary::library_map_): New data member.
7744 (Incremental_binary::script_map_): New data member.
7745 (Sized_incremental_binary::Sized_incremental_binary): Initialize
7746 new data members.
7747 (Sized_incremental_binary::output_section): New function.
7748 (Sized_incremental_binary::inputs_reader): Add const.
7749 (Sized_incremental_binary::symtab_reader): Add const.
7750 (Sized_incremental_binary::relocs_reader): Add const.
7751 (Sized_incremental_binary::got_plt_reader): Add const.
7752 (Sized_incremental_binary::get_symtab_view): New function.
7753 (Sized_incremental_binary::Inputs_reader): New typedef.
7754 (Sized_incremental_binary::Input_entry_reader): New typedef.
7755 (Sized_incremental_binary::do_check_inputs): Add cmdline parameter.
7756 (Sized_incremental_binary::do_file_is_unchanged): Remove.
7757 (Sized_incremental_binary::do_file_has_changed): New function.
7758 (Sized_incremental_binary::do_init_layout): New function.
7759 (Sized_incremental_binary::do_reserve_layout): New function.
7760 (Sized_input_reader::Inputs_reader): Remove.
7761 (Sized_input_reader::Input_entry_reader): Remove.
7762 (Sized_input_reader::do_arg_serial): New function.
7763 (Sized_input_reader::do_get_unused_symbol_count): New function.
7764 (Sized_input_reader::do_get_unused_symbol): New function.
7765 (Sized_incremental_binary::do_input_file_count): New function.
7766 (Sized_incremental_binary::do_get_input_reader): Change signature;
7767 use index instead of filename.
7768 (Sized_incremental_binary::section_map_): New data member.
7769 (Sized_incremental_binary::input_entry_readers_): New data member.
7770 (class Sized_incr_relobj): New class.
7771 (class Sized_incr_dynobj): New class.
7772 (make_sized_incremental_object): New function.
7773 (class Incremental_library): New class.
7774 * layout.cc (Free_list::num_lists): New static data member.
7775 (Free_list::num_nodes): New static data member.
7776 (Free_list::num_removes): New static data member.
7777 (Free_list::num_remove_visits): New static data member.
7778 (Free_list::num_allocates): New static data member.
7779 (Free_list::num_allocate_visits): New static data member.
7780 (Free_list::init): New function.
7781 (Free_list::remove): New function.
7782 (Free_list::allocate): New function.
7783 (Free_list::dump): New function.
7784 (Free_list::print_stats): New function.
7785 (Layout_task_runner::run): Resize output file for incremental updates.
7786 (Layout::Layout): Initialize new data members.
7787 (Layout::set_incremental_base): New function.
7788 (Layout::init_fixed_output_section): New function.
7789 (Layout::layout_eh_frame): Do not build .eh_frame_hdr section for
7790 incremental updates.
7791 (Layout::create_gold_note): Do not create gold note section for
7792 incremental updates.
7793 (Layout::set_segment_offsets): Do not recalculate RELRO alignment
7794 for incremental updates.
7795 (Layout::set_section_offsets): For incremental updates, allocate space
7796 from free list.
7797 (Layout::create_symtab_sections): Layout with offsets relative to
7798 start of section; for incremental updates, allocate space from free
7799 list.
7800 (Layout::create_shdrs): For incremental updates, allocate space from
7801 free list.
7802 (Layout::finish_dynamic_section): For incremental updates, do not
7803 check --as-needed (fixed in subsequent patch).
7804 * layout.h (class Free_list): New class.
7805 (Layout::set_incremental_base): New function.
7806 (Layout::incremental_base): New function.
7807 (Layout::init_fixed_output_section): New function.
7808 (Layout::allocate): New function.
7809 (Layout::incremental_base_): New data member.
7810 (Layout::free_list_): New data member.
7811 * main.cc (main): Print Free_list statistics.
7812 * object.cc (Relobj::finalize_incremental_relocs): Add
7813 clear_counts parameter; clear counts only when clear_counts is set.
7814 (Sized_relobj::Sized_relobj): Initialize new base class.
7815 (Sized_relobj::do_layout): Don't report special sections.
7816 (Sized_relobj::do_for_all_local_got_entries): New function.
7817 (Sized_relobj::write_local_symbols): Add symtab_off parameter; add
7818 symtab_off to all symbol table offsets.
7819 (Sized_relobj::do_get_global_symbol_counts): Add typename keyword.
7820 * object.h (class Got_offset_list): Move to top of file.
7821 (Object::Object): Allow case where input_file == NULL.
7822 (Object::~Object): Likewise.
7823 (Object::input_file): Assert that input_file != NULL.
7824 (Object::lock): Allow case where input_file == NULL.
7825 (Object::unlock): Likewise.
7826 (Object::is_locked): Likewise.
7827 (Object::token): Likewise.
7828 (Object::release): Likewise.
7829 (Object::is_incremental): New function.
7830 (Object::get_mtime): New function.
7831 (Object::for_all_local_got_entries): New function.
7832 (Object::clear_view_cache_marks): Allow case where input_file == NULL.
7833 (Object::set_is_in_system_directory): New function.
7834 (Object::is_in_system_directory): New function.
7835 (Object::do_is_incremental): New function.
7836 (Object::do_get_mtime): New function.
7837 (Object::do_for_all_local_got_entries): New function.
7838 (Object::is_in_system_directory_): New data member.
7839 (Relobj::finalize_incremental_relocs): Add clear_counts parameter.
7840 (class Sized_relobj_base): New class.
7841 (class Sized_relobj): Derive from Sized_relobj_base.
7842 (class Sized_relobj::Symbols): Redeclare from base class.
7843 (class Sized_relobj::local_got_offset_list): Remove.
7844 (class Sized_relobj::Output_sections): Redeclare from base class.
7845 (class Sized_relobj::do_for_all_local_got_entries): New function.
7846 (class Sized_relobj::write_local_symbols): Add offset parameter.
7847 (class Sized_relobj::local_symbol_offset_): Update comment.
7848 (class Sized_relobj::local_dynsym_offset_): Update comment.
7849 * options.cc (Input_arguments::add_file): Remove const.
7850 * options.h (Input_file_argument::Input_file_argument):
7851 Initialize arg_serial_ (all constructors).
7852 (Input_file_argument::set_arg_serial): New function.
7853 (Input_file_argument::arg_serial): New function.
7854 (Input_file_argument::arg_serial_): New data member.
7855 (Input_arguments::Input_arguments): Initialize file_count_.
7856 (Input_arguments::add_file): Remove const.
7857 (Input_arguments::number_of_input_files): New function.
7858 (Input_arguments::file_count_): New data member.
7859 (Command_line::number_of_input_files): Call
7860 Input_arguments::number_of_input_files.
7861 * output.cc (Output_segment_headers::Output_segment_headers):
7862 Set current size.
7863 (Output_section::Input_section::current_data_size): New function.
7864 (Output_section::Output_section): Initialize new data members.
7865 (Output_section::add_input_section): Don't do merge sections for
7866 an incremental link; allocate space from free list for an
7867 incremental update.
7868 (Output_section::add_output_section_data): Allocate space from
7869 free list for an incremental update.
7870 (Output_section::update_data_size): New function.
7871 (Output_section::set_fixed_layout): New function.
7872 (Output_section::reserve): New function.
7873 (Output_segment::set_section_addresses): Remove const.
7874 (Output_segment::set_section_list_addresses): Remove const; allocate
7875 space from free list for an incremental update.
7876 (Output_segment::set_offset): Adjust size of RELRO segment for an
7877 incremental update.
7878 * output.h (Output_data::current_data_size): Move here from
7879 child classes.
7880 (Output_data::pre_finalize_data_size): New function.
7881 (Output_data::update_data_size): New function.
7882 (Output_section_headers::update_data_size): new function.
7883 (Output_section_data_build::current_data_size): Move to Output_data.
7884 (Output_data_strtab::update_data_size): New function.
7885 (Output_section::current_data_size): Move to Output_data.
7886 (Output_section::set_fixed_layout): New function.
7887 (Output_section::has_fixed_layout): New function.
7888 (Output_section::reserve): New function.
7889 (Output_section::update_data_size): New function.
7890 (Output_section::has_fixed_layout_): New data member.
7891 (Output_section::free_list_): New data member.
7892 (Output_segment::set_section_addresses): Remove const.
7893 (Output_segment::set_section_list_addresses): Remove const.
7894 * plugin.cc (Sized_pluginobj::do_for_all_local_got_entries):
7895 New function.
7896 * plugin.h (Sized_pluginobj::do_for_all_local_got_entries):
7897 New function.
7898 * readsyms.cc (Read_symbols::do_read_symbols): Add library
7899 parameter when calling Add_symbols constructor; store argument
7900 serial number for members of a lib group.
7901 (Add_symbols::locks): Allow case where token == NULL.
7902 (Add_symbols::run): Report libraries denoted by --start-lib/--end-lib.
7903 (Read_member::~Read_member): New function.
7904 (Read_member::is_runnable): New function.
7905 (Read_member::locks): New function.
7906 (Read_member::run): New function.
7907 (Check_script::~Check_script): New function.
7908 (Check_script::is_runnable): New function.
7909 (Check_script::locks): New function.
7910 (Check_script::run): New function.
7911 (Check_library::~Check_library): New function.
7912 (Check_library::is_runnable): New function.
7913 (Check_library::locks): New function.
7914 (Check_library::run): New function.
7915 * readsyms.h (Add_symbols::Add_symbols): Add library parameter.
7916 (Add_symbols::library_): New data member.
7917 (class Read_member): New class.
7918 (class Check_script): New class.
7919 (class Check_library): New class.
7920 * reloc.cc (Read_relocs::is_runnable): Allow case where
7921 token == NULL.
7922 (Read_relocs::locks): Likewise.
7923 (Scan_relocs::locks): Likewise.
7924 (Relocate_task::locks): Likewise.
7925 (Sized_relobj::do_scan_relocs): Tell finalize_incremental_relocs
7926 to clear counters.
7927 (Sized_relobj::incremental_relocs_scan): Fix comment.
7928 (Sized_relobj::do_relocate): Pass output file offset to
7929 write_local_symbols.
7930 (Sized_relobj::incremental_relocs_write_reltype): Use reloc_size
7931 from class declaration.
7932 * script.cc (read_input_script): Allocate Script_info; pass
7933 argument serial number to report_script.
7934 * script.h (class Script_info): Move to incremental.h.
7935 * symtab.cc (Symbol_table::add_from_incrobj): New function.
7936 * symtab.h (Symbol_table::add_from_incrobj): New function.
7937 (Symbol_table::set_file_offset): New function.
7938
7939 2011-04-05 Cary Coutant <ccoutant@google.com>
7940
7941 * incremental-dump.cc (dump_incremental_inputs): Change signature
7942 to take a Sized_incremental_binary; change caller. Use readers
7943 in Sized_incremental_binary.
7944 * incremental.cc
7945 (Sized_incremental_binary::find_incremental_inputs_sections):
7946 Rename do_find_incremental_inputs_sections to this.
7947 (Sized_incremental_binary::setup_readers): New function.
7948 (Sized_incremental_binary::do_check_inputs): Check
7949 has_incremental_info_ flag; move setup code to setup_readers;
7950 use input readers.
7951 (Sized_incremental_binary::do_file_is_unchanged): New function.
7952 (Sized_incremental_binary::do_get_input_reader): New function.
7953 * incremental.h (class Incremental_binary): Move to end of file.
7954 (Incremental_binary::file_is_unchanged): New function.
7955 (Incremental_binary::do_file_is_unchanged): New function.
7956 (Incremental_binary::Input_reader): New class.
7957 (Incremental_binary::get_input_reader): New function.
7958 (class Sized_incremental_binary): Move to end of file.
7959 (Sized_incremental_binary::Sized_incremental_binary): Setup the
7960 input section reader classes.
7961 (Sized_incremental_binary::has_incremental_info): New function.
7962 (Sized_incremental_binary::inputs_reader): New function.
7963 (Sized_incremental_binary::symtab_reader): New function.
7964 (Sized_incremental_binary::relocs_reader): New function.
7965 (Sized_incremental_binary::got_plt_reader): New function.
7966 (Sized_incremental_binary::do_file_is_unchanged): New function.
7967 (Sized_incremental_binary::Sized_input_reader): New class.
7968 (Sized_incremental_binary::get_input_reader): New function.
7969 (Sized_incremental_binary::find_incremental_inputs_sections):
7970 Rename do_find_incremental_inputs_sections to this.
7971 (Sized_incremental_binary::setup_readers): New function.
7972 (Sized_incremental_binary::has_incremental_info_): New data member.
7973 (Sized_incremental_binary::inputs_reader_): New data member.
7974 (Sized_incremental_binary::symtab_reader_): New data member.
7975 (Sized_incremental_binary::relocs_reader_): New data member.
7976 (Sized_incremental_binary::got_plt_reader_): New data member.
7977 (Sized_incremental_binary::current_input_file_): New data member.
7978
7979 2011-04-05 Paul Pluzhnikov <ppluzhnikov@google.com>
7980
7981 PR gold/12640
7982 * dwarf_reader.cc (Sized_dwarf_line_info): Fix vector bounds
7983 violation.
7984
7985 2011-03-30 Cary Coutant <ccoutant@google.com>
7986
7987 * archive.cc (Archive::include_member): Adjust call to report_object.
7988 (Add_archive_symbols::run): Add script_info to call to
7989 report_archive_begin.
7990 (Lib_group::include_member): Adjust call to report_object.
7991 (Add_lib_group_symbols::run): Adjust call to report_object.
7992 * incremental-dump.cc (dump_incremental_inputs): Remove unnecessary
7993 blocks. Add object count for script input files.
7994 * incremental.cc (Incremental_inputs::report_archive_begin): Add
7995 script_info parameter; change all callers.
7996 (Incremental_inputs::report_object): Add script_info parameter;
7997 change all callers.
7998 (Incremental_inputs::report_script): Store backpointer to
7999 incremental info entry.
8000 (Output_section_incremental_inputs::set_final_data_size): Record
8001 additional information for scripts.
8002 (Output_section_incremental_inputs::write_info_blocks): Likewise.
8003 * incremental.h (Incremental_script_entry::add_object): New function.
8004 (Incremental_script_entry::get_object_count): New function.
8005 (Incremental_script_entry::get_object): New function.
8006 (Incremental_script_entry::objects_): New data member; adjust
8007 constructor.
8008 (Incremental_inputs::report_archive_begin): Add script_info parameter.
8009 (Incremental_inputs::report_object): Add script_info parameter.
8010 (Incremental_inputs_reader::get_object_count): New function.
8011 (Incremental_inputs_reader::get_object_offset): New function.
8012 * options.cc (Input_arguments::add_file): Return reference to
8013 new input argument.
8014 * options.h (Input_argument::set_script_info): New function.
8015 (Input_argument::script_info): New function.
8016 (Input_argument::script_info_): New data member; adjust all
8017 constructors.
8018 (Input_file_group::add_file): Return reference to new input argument.
8019 (Input_file_lib::add_file): Likewise.
8020 (Input_arguments::add_file): Likewise.
8021 * readsyms.cc (Add_symbols::run): Adjust call to report_object.
8022 * script.cc (Parser_closure::Parser_closure): Add script_info
8023 parameter; adjust all callers.
8024 (Parser_closure::script_info): New function.
8025 (Parser_closure::script_info_): New data member.
8026 (read_input_script): Report scripts earlier to incremental info.
8027 (script_add_file): Set script_info in Input_argument.
8028 (script_add_library): Likewise.
8029 * script.h (Script_options::Script_info): Rewrite class.
8030
8031 2011-03-29 Cary Coutant <ccoutant@google.com>
8032
8033 * archive.cc (Library_base::should_include_member): Move
8034 method here from class Archive.
8035 (Archive::Archive): Initialize base class.
8036 (Archive::should_include_member): Move to base class.
8037 (Archive::do_for_all_unused_symbols): New function.
8038 (Add_archive_symbols::run): Remove redundant access to
8039 incremental_inputs.
8040 (Lib_group::Lib_group): Initialize base class.
8041 (Lib_group::do_filename): New function.
8042 (Lib_group::include_member): Pass pointer to Lib_group to
8043 report_object.
8044 (Lib_group::do_for_all_unused_symbols): New function.
8045 (Add_lib_group_symbols::run): Report archive information for
8046 incremental links.
8047 * archive.h (class Library_base): New base class.
8048 (class Archive): Derive from Library_base.
8049 (Archive::filename): Move to base class.
8050 (Archive::set_incremental_info): Likewise.
8051 (Archive::incremental_info): Likewise.
8052 (Archive::Should_include): Likewise.
8053 (Archive::should_include_member): Likewise.
8054 (Archive::Armap_entry): Remove.
8055 (Archive::Unused_symbol_iterator): Remove.
8056 (Archive::unused_symbols_begin): Remove.
8057 (Archive::unused_symbols_end): Remove.
8058 (Archive::do_filename): New function.
8059 (Archive::do_get_mtime): New function.
8060 (Archive::do_for_all_unused_symbols): New function.
8061 (Archive::task_): Move to base class.
8062 (Archive::incremental_info_): Likewise.
8063 (class Lib_group): Derive from Library_base.
8064 (Lib_group::do_filename): New function.
8065 (Lib_group::do_get_mtime): New function.
8066 (Lib_group::do_for_all_unused_symbols): New function.
8067 (Lib_group::task_): Move to base class.
8068 * dynobj.cc (Sized_dynobj::do_for_all_global_symbols): New
8069 function.
8070 * dynobj.h (Sized_dynobj::do_for_all_global_symbols): New
8071 function.
8072 * incremental.cc (Incremental_inputs::report_archive_begin):
8073 Use Library_base; call library's get_mtime; add incremental inputs
8074 entry before members.
8075 (class Unused_symbol_visitor): New class.
8076 (Incremental_inputs::report_archive_end): Use Library_base; use
8077 visitor class to record unused symbols; don't add incremental inputs
8078 entry after members.
8079 (Incremental_inputs::report_object): Use Library_base.
8080 * incremental.h
8081 (Incremental_archive_entry::Incremental_archive_entry): Remove
8082 unused Archive parameter.
8083 (Incremental_inputs::report_archive_begin): Use Library_base.
8084 (Incremental_inputs::report_archive_end): Likewise.
8085 (Incremental_inputs::report_object): Likewise.
8086 * object.cc (Sized_relobj::do_for_all_global_symbols): New
8087 function.
8088 * object.h (Object::for_all_global_symbols): New function.
8089 (Object::do_for_all_global_symbols): New function.
8090 (Sized_relobj::do_for_all_global_symbols): New function.
8091 * plugin.cc (Sized_pluginobj::do_for_all_global_symbols): New
8092 function.
8093 * plugin.h (Sized_pluginobj::do_for_all_global_symbols): New
8094 function.
8095
8096 2011-03-27 Ian Lance Taylor <iant@google.com>
8097
8098 * archive.cc (Archive::interpret_header): Return -1 if something
8099 goes wrong. Change callers accordingly.
8100
8101 2011-03-25 Cary Coutant <ccoutant@google.com>
8102
8103 * testsuite/Makefile.am (final_layout.stdout): Use -n option with nm.
8104 * testsuite/Makefile.in: Regenerate.
8105
8106 2011-03-23 Rafael Ávila de Espíndola <respindola@mozilla.com>
8107
8108 * plugin.cc (get_view): New.
8109 (Plugin::load): Pass get_view to the plugin.
8110 (Plugin_manager::get_view): New.
8111
8112 2011-03-21 Ian Lance Taylor <iant@google.com>
8113
8114 * testsuite/final_layout.sh: Rewrite to not use dc.
8115 * testsuite/relro_test.sh: Fail if dc is not present.
8116
8117 2011-03-21 Sriraman Tallam <tmsriram@google.com>
8118
8119 * testsuite/icf_safe_so_test.sh: Add #!/bin/sh to start.
8120 Change == to -eq.
8121 * testsuite/icf_string_merge_test.sh: Add #!/bin/sh to start.
8122 * testsuite/icf_safe_test.sh: Add #!/bin/sh to start.
8123 Change == to -eq.
8124 * testsuite/icf_sht_rel_addend_test.sh: Add #!/bin/sh to start.
8125 * testsuite/icf_preemptible_functions_test.sh: Add #!/bin/sh to start.
8126
8127 2011-03-14 Ian Lance Taylor <iant@google.com>
8128
8129 * script-sections.cc (Sort_output_sections::script_compare):
8130 Rename from is_before, change return type.
8131 (Sort_output_sections::operator()): Adjust accordingly.
8132
8133 2011-03-11 Jeffrey Yasskin <jyasskin@google.com>
8134
8135 PR gold/12572
8136 * testsuite/odr_violation2.cc: Add comment to make all error line
8137 numbers double digits.
8138 * testsuite/debug_msg.sh: Adjust expected errors.
8139
8140 2011-03-09 Jeffrey Yasskin <jyasskin@google.com>
8141
8142 * dwarf_reader.cc (Sized_dwarf_line_info): Include all lines,
8143 but mark earlier ones as non-canonical
8144 (offset_to_iterator): Update search target and example
8145 (do_addr2line): Return extra lines in a vector*
8146 (format_file_lineno): Extract from do_addr2line
8147 (one_addr2line): Add vector* out-param
8148 * dwarf_reader.h (Offset_to_lineno_entry): New field recording
8149 when a lineno entry appeared last for its instruction
8150 (Dwarf_line_info): Add vector* out-param
8151 * object.cc (Relocate_info): Pass NULL for the vector* out-param
8152 * symtab.cc (Odr_violation_compare): Include the lineno in the
8153 comparison again.
8154 (linenos_from_loc): New. Combine the canonical line for an
8155 address with its other lines.
8156 (True_if_intersect): New. Helper functor to make
8157 std::set_intersection a query.
8158 (detect_odr_violations): Compare sets of lines instead of just
8159 one line for each function. This became less deterministic, but
8160 has fewer false positives.
8161 * symtab.h: Declarations.
8162 * testsuite/Makefile.am (odr_violation2.o): Compile with -O2 to
8163 mix an optimized and non-optimized object in the same binary
8164 (odr_violation2.so): Same.
8165 * testsuite/Makefile.in: Regenerate from Makefile.am.
8166 * testsuite/debug_msg.cc (main): Make OdrDerived classes.
8167 * testsuite/debug_msg.sh: Update line numbers and add
8168 assertions.
8169 * testsuite/odr_violation1.cc: Use OdrDerived, in a
8170 non-optimized context.
8171 * testsuite/odr_violation2.cc: Make sure Ordering::operator()
8172 isn't inlined, and use OdrDerived in an optimized context.
8173 * testsuite/odr_header1.h: Defines OdrDerived, where
8174 optimization will change the
8175 first-instruction-in-the-destructor's file and line number.
8176 * testsuite/odr_header2.h: Defines OdrBase.
8177
8178 2011-03-09 Ian Lance Taylor <iant@google.com>
8179
8180 * fileread.cc (File_read::clear_views): Don't delete the whole
8181 file view.
8182
8183 2011-03-08 Ian Lance Taylor <iant@google.com>
8184
8185 PR gold/12525
8186 * fileread.cc: #include <climits>.
8187 (GOLD_IOV_MAX): Define.
8188 (File_read::read_multiple): Limit number of entries by iov_max.
8189 * fileread.h (class File_read): Always set max_readv_entries to
8190 128.
8191
8192 2011-03-07 Ian Lance Taylor <iant@google.com>
8193
8194 PR gold/12525
8195 * options.h (class General_options): Add -dy and -dn.
8196
8197 2011-03-02 Cary Coutant <ccoutant@google.com>
8198
8199 * testsuite/script_test_9.t: Add TLS segment.
8200
8201 2011-03-02 Simon Baldwin <simonb@google.com>
8202
8203 * configure.ac: Add check for gnu_indirect_function support in
8204 the toolchain building binutils.
8205 * configure: Rebuild.
8206
8207 2011-02-18 Rafael Ávila de Espíndola <respindola@mozilla.com>
8208
8209 * symtab.cc (Symbol::should_add_dynsym_entry) Return false for
8210 plugin only symbols.
8211 (Symbol_table::sized_finalize_symbol) Mark symbol only present
8212 in plugin files as not needed in the symbol table.
8213
8214 2011-02-11 Sriraman Tallam <tmsriram@google.com>
8215
8216 * output.cc (Output_section::add_input_section): Delay fill
8217 generation for section ordering.
8218
8219 2011-02-09 Ian Lance Taylor <iant@google.com>
8220
8221 PR gold/12316
8222 * object.h (class Sized_relobj): Remove clear_local_symbols.
8223 * reloc.cc (Sized_relobj::do_relocate): Don't call
8224 clear_local_symbols.
8225
8226 2011-02-08 Rafael Ávila de Espíndola <respindola@mozilla.com>
8227
8228 * plugin.cc (is_visible_from_outside): Return true for symbols
8229 in the -u option.
8230
8231 2011-02-04 Jeffrey Yasskin <jyasskin@google.com>
8232
8233 * symtab.cc (Odr_violation_compare::operator()): Sort by just the
8234 filename.
8235
8236 2011-02-02 Sriraman Tallam <tmsriram@google.com>
8237
8238 * icf.h (is_section_foldable_candidate): Change type of parameter
8239 to std::string.
8240 * icf.cc (Icf::find_identical_sections): Change type of local variable
8241 section_name to be std::string.
8242 (is_function_ctor_or_dtor): Change type of parameter to std::string.
8243
8244 2011-01-25 Ian Lance Taylor <iant@google.com>
8245
8246 * script.cc (script_add_extern): Rewrite to use
8247 add_symbol_reference.
8248
8249 2011-01-25 Doug Kwan <dougkwan@google.com>
8250
8251 * icf.cc (get_section_contents): Always lock section's object.
8252
8253 2011-01-24 Ian Lance Taylor <iant@google.com>
8254
8255 * options.h (class General_options): Accept
8256 --no-detect-odr-violations.
8257
8258 2011-01-24 Ian Lance Taylor <iant@google.com>
8259
8260 * version.cc (version_string): Bump to 1.11.
8261
8262 2011-01-24 Ian Lance Taylor <iant@google.com>
8263
8264 * plugin.cc (class Plugin_rescan): Define new class.
8265 (Plugin_manager::claim_file): Set any_claimed_.
8266 (Plugin_manager::save_archive): New function.
8267 (Plugin_manager::save_input_group): New function.
8268 (Plugin_manager::all_symbols_read): Create Plugin_rescan task if
8269 necessary.
8270 (Plugin_manager::new_undefined_symbol): New function.
8271 (Plugin_manager::rescan): New function.
8272 (Plugin_manager::rescannable_defines): New function.
8273 (Plugin_manager::add_input_file): Set any_added_.
8274 * plugin.h (class Plugin_manager): define new fields rescannable_,
8275 undefined_symbols_, any_claimed_, and any_added_. Declare
8276 Plugin_rescan as friend. Declare new functions.
8277 (Plugin_manager::Rescannable): Define type.
8278 (Plugin_manager::Rescannable_list): Define type.
8279 (Plugin_manager::Undefined_symbol_list): Define type.
8280 (Plugin_manager::Plugin_manager): Initialize new fields.
8281 * archive.cc (Archive::defines_symbol): New function.
8282 (Add_archive_symbols::run): Pass archive to plugins if any.
8283 * archive.h (class Archive): Declare defines_symbol.
8284 * readsyms.cc (Input_group::~Input_group): New function.
8285 (Finish_group::run): Pass input_group to plugins if any.
8286 * readsyms.h (class Input_group): Declare destructor.
8287 * symtab.cc (add_from_object): Pass undefined symbol to plugins if
8288 any.
8289
8290 2011-01-10 Ian Lance Taylor <iant@google.com>
8291
8292 * layout.cc (Layout::layout_eh_frame): Mark a writable .eh_frame
8293 section as relro.
8294 (Layout::set_segment_offsets): Reset increase_relro before calling
8295 set_section_addresses a second time.
8296
8297 2011-01-04 Cary Coutant <ccoutant@google.com>
8298
8299 * script-sections.cc (Sort_output_sections::operator()): Sort TLS
8300 sections before NOBITS sections.
8301
8302 2011-01-01 H.J. Lu <hongjiu.lu@intel.com>
8303
8304 * version.cc (print_version): Update copyright to 2011.
8305
8306 2010-12-23 Cary Coutant <ccoutant@google.com>
8307
8308 * output.h (Output_data_reloc::add_output_section): Pass OD instead
8309 of OS to this->add. Add OD parameter to second form of the function.
8310
8311 2010-12-20 Ian Lance Taylor <iant@google.com>
8312
8313 * dwarf_reader.cc (Sized_dwarf_line_info::read_lines): Only keep
8314 second of two consecutive entries with same offset.
8315
8316 2010-12-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
8317
8318 * testsuite/Makefile.am (ifuncmain2static_LDADD)
8319 (ifuncmain2_LDADD, ifuncmain4static_LDADD, ifuncmain4_LDADD)
8320 (ifuncmain7static_LDADD, ifuncmain7_LDADD): New empty variables,
8321 to avoid unneeded links against $(LDADD).
8322 * testsuite/Makefile.in: Regenerate.
8323
8324 2010-12-15 Ian Lance Taylor <iant@google.com>
8325
8326 PR gold/12324
8327 * x86_64.cc (Target_x86_64::Scan::check_non_pic): Give an error
8328 for R_X86_64_32 and R_X86_64_PC32.
8329 * testsuite/Makefile.am (ver_matching_def.so): Depend on and use
8330 ver_matching_def_pic.o.
8331 (ver_matching_def_pic.o): New target.
8332
8333 2010-12-14 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
8334
8335 * fileread.cc (file_counts_lock, file_counts_initialize_lock)
8336 (total_mapped_bytes, current_mapped_bytes, maximum_mapped_bytes):
8337 Move definition before File_read::View member definitions.
8338 (File_read::View::~View): Initialize and hold lock before
8339 updating current_mapped_bytes.
8340
8341 2010-12-14 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
8342
8343 * dwarf_reader.cc: Remove outdated comment.
8344 * gold-threads.cc: Fix typo in error message.
8345 * archive.cc: Fix typos in comments.
8346 * archive.h: Likewise.
8347 * arm-reloc-property.cc: Likewise.
8348 * arm-reloc-property.h: Likewise.
8349 * arm-reloc.def: Likewise.
8350 * arm.cc: Likewise.
8351 * attributes.h: Likewise.
8352 * cref.cc: Likewise.
8353 * ehframe.cc: Likewise.
8354 * fileread.h: Likewise.
8355 * gold.h: Likewise.
8356 * i386.cc: Likewise.
8357 * icf.cc: Likewise.
8358 * incremental.h: Likewise.
8359 * int_encoding.cc: Likewise.
8360 * layout.h: Likewise.
8361 * main.cc: Likewise.
8362 * merge.h: Likewise.
8363 * object.cc: Likewise.
8364 * object.h: Likewise.
8365 * options.cc: Likewise.
8366 * readsyms.cc: Likewise.
8367 * reduced_debug_output.cc: Likewise.
8368 * reloc.cc: Likewise.
8369 * script-sections.cc: Likewise.
8370 * sparc.cc: Likewise.
8371 * symtab.h: Likewise.
8372 * target-reloc.h: Likewise.
8373 * target.cc: Likewise.
8374 * target.h: Likewise.
8375 * timer.cc: Likewise.
8376 * timer.h: Likewise.
8377 * x86_64.cc: Likewise.
8378
8379 2010-12-09 Cary Coutant <ccoutant@google.com>
8380
8381 * layout.cc (Layout::layout_gnu_stack): Add warnings for executable
8382 stack.
8383 * layout.h (Layout::layout_gnu_stack): Add pointer to Object
8384 parameter; change all callers.
8385 * object.cc (Sized_relobj::do_layout): Adjust call to layout_gnu_stack.
8386 * options.h (warn_execstack): New option.
8387
8388 2010-12-07 Doug Kwan <dougkwan@google.com>
8389
8390 * arm.cc (Target_arm::Scan::get_reference_flags): Treat R_ARM_PREL31
8391 like function call relocations.
8392
8393 2010-12-07 Ian Lance Taylor <iant@google.com>
8394
8395 * archive.cc (Archive::get_elf_object_for_member): Permit
8396 punconfigured to be NULL.
8397 (Archive::read_symbols): Pass NULL to get_elf_object_for_member.
8398 (Archive::include_member): Pass NULL to get_elf_object_for_member
8399 if we searched for the archive and this is the first included
8400 object.
8401
8402 2010-12-01 Ian Lance Taylor <iant@google.com>
8403
8404 * dwarf_reader.h (class Sized_dwarf_line_info): Add
8405 track_relocs_type_ field.
8406 * dwarf_reader.cc (Sized_dwarf_line_info::Sized_dwarf_line_info):
8407 Set track_relocs_type_.
8408 (Sized_dwarf_line_info::process_one_opcode): Ignore the section
8409 contents when using RELA relocs.
8410 (Sized_dwarf_line_info::read_relocs): Add the reloc addend to
8411 reloc_map_.
8412 * reloc.cc (Track_relocs::next_addend): New function.
8413 * reloc.h (class Track_relocs): Declare next_addend.
8414
8415 2010-12-01 Ian Lance Taylor <iant@google.com>
8416
8417 * testsuite/icf_virtual_function_folding_test.cc (class Bar): Add
8418 virtual destructor.
8419
8420 2010-12-01 Ian Lance Taylor <iant@google.com>
8421
8422 * README: Update compilers known to work and fail.
8423
8424 2010-11-23 Matthias Klose <doko@ubuntu.com>
8425
8426 * configure.in: For --enable-gold, handle value `default' instead of
8427 `both*'. Always install ld as ld.bfd, install as ld if gold is
8428 not the default.
8429 * configure: Regenerate.
8430
8431 2010-11-18 Doug Kwan <dougkwan@google.com>
8432
8433 * expression.cc (BINARY_EXPRESSION): Initialize left_alignment
8434 and right_alignment to be zero. Store result alignment only if it is
8435 greater than existing alignment.
8436
8437 2010-11-16 Cary Coutant <ccoutant@google.com>
8438
8439 PR gold/12220
8440 * dwarf_reader.cc (Sized_dwarf_line_info::Sized_dwarf_line_info):
8441 Check for ".zdebug_line".
8442
8443 2010-11-16 Doug Kwan <dougkwan@google.com>
8444 Cary Coutant <ccoutant@google.com>
8445
8446 * output.h (Output_segment::set_section_addresses): Pass increase_relro
8447 by reference; adjust all callers.
8448 * output.cc (Output_segment::set_section_addresses): Adjust references
8449 to increase_relro. Add padding to *increase_relro when ORDER_RELRO_LAST
8450 list is empty.
8451 (Output_segment::set_offset): Assert if PT_GNU_RELRO segment does not
8452 end at page boundary.
8453
8454 2010-11-16 Cary Coutant <ccoutant@google.com>
8455
8456 PR gold/12220
8457 * layout.cc (Layout::choose_output_section): Transform names of
8458 compressed sections even when using a script with a SECTIONS clause.
8459 (Layout::output_section_name): Remove code to transform
8460 compressed debug section names.
8461 * output.cc (Output_section::add_input_section): Use uncompressed
8462 section size when tracking input sections.
8463
8464 2010-11-11 Richard Sandiford <richard.sandiford@linaro.org>
8465
8466 * symtab.h (Symbol::NON_PIC_REF): Remove.
8467 (Symbol::RELATIVE_REF, Symbol::TLS_REF): New Reference_flags.
8468 (Symbol::FUNCTION_CALL): Renumber. Reword comment.
8469 (Symbol::needs_dynamic_reloc): Don't check NON_PIC_REF.
8470 (Symbol::use_plt_offset): Take a flags argument and pass it
8471 directly to needs_dynamic_reloc. Restrict check for undefined
8472 weak symbols to function calls.
8473 * arm.cc (Target_arm::Scan::get_reference_flags): New function.
8474 (Target_arm::Scan::global): Use it.
8475 (Target_arm::Scan::scan_reloc_for_stub): Likewise.
8476 (Target_arm::Relocate::relocate): Likewise.
8477 (Target_arm::Relocate::should_apply_static_reloc): Replace flags
8478 parameter with an r_type parameter. Use get_reference_flags
8479 to get the flags.
8480 (Target_arm::Relocate::relocate): Update accordingly.
8481 * i386.cc (Target_i386::Scan::get_reference_flags): New function.
8482 (Target_i386::Scan::reloc_needs_plt_for_ifunc): Use it.
8483 (Target_i386::Scan::global): Likewise.
8484 (Target_i386::Relocate::relocate): Likewise.
8485 (Target_i386::Relocate::should_apply_static_reloc): Replace flags
8486 parameter with an r_type parameter. Use get_reference_flags
8487 to get the flags.
8488 (Target_i386::Relocate::relocate): Update accordingly.
8489 * powerpc.cc (Target_powerpc::Scan::get_reference_flags): New function.
8490 (Target_powerpc::Scan::global): Use it.
8491 (Target_powerpc::Scan::scan_reloc_for_stub): Likewise.
8492 (Target_powerpc::Relocate::relocate): Likewise.
8493 * sparc.cc (Target_sparc::Scan::get_reference_flags): New function.
8494 (Target_sparc::Scan::global): Use it.
8495 (Target_sparc::Scan::scan_reloc_for_stub): Likewise.
8496 (Target_sparc::Relocate::relocate): Likewise.
8497 * x86_64.cc (Target_x86_64::Scan::get_reference_flags): New function.
8498 (Target_x86_64::Scan::reloc_needs_plt_for_ifunc): Use it.
8499 (Target_x86_64::Scan::global): Likewise.
8500 (Target_x86_64::Relocate::relocate): Likewise.
8501
8502 2010-11-08 Doug Kwan <dougkwan@google.com>
8503 Cary Coutant <ccoutant@google.com>
8504
8505 * arm.cc (Arm_exidx_merge_section::build_contents): New method.
8506 (Arm_exidx_merge_section::section_contents_): New data member.
8507 (Arm_input_section::Arm_input_section): Initialize original_contents_.
8508 (Arm_input_section::~Arm_input_section): De-allocate memory.
8509 (Arm_input_section::original_contents_): New data member.
8510 (Arm_exidx_fixup::process_exidx_section): Pass EXIDX section contents
8511 in parameters instead of calling Object::section_contents without
8512 locking.
8513 (Arm_output_section::group_section): New parameter TASK. Pass it
8514 to callees that need locking objects.
8515 (Arm_output_section::fix_exidx_coverage): New parameter TASK. Use it
8516 to lock EXIDX input sections. Fix a formatting issue. Call
8517 Arm_exidx_merged_section::build_contents to create merged section
8518 contents.
8519 (Arm_output_section::create_stub_group): New parameter TASK. Use it
8520 to lock object of stub table owner.
8521 (Arm_exidx_input_section::Arm_exidx_input_section): Add new parameter
8522 TEXT_SIZE to initialize data member TEXT_SIZE_.
8523 (Arm_exidx_input_section::addralign): Fix typo in comment.
8524 (Arm_exidx_input_section::text_size): New method.
8525 (Target_arm::do_relax): New parameter TASK. Pass it to callees
8526 that require locking objects. Lock objects before scanning for stubs
8527 and updating local symbols.
8528 (Arm_input_section<big_endian>::init): Copy contents of original
8529 input section.
8530 (Arm_input_section<big_endian>::do_write): Use saved contents of
8531 original input section instead of calling Object::section_contents
8532 without locking.
8533 (Arm_exidx_cantunwind::do_fixed_endian_write): Find out text section
8534 size without calling Object::section_size().
8535 (Arm_exidx_merged_section::Arm_exidx_merged_section): Add sanity check
8536 for size. Allocate a buffer for merged EXIDX entries.
8537 (Arm_exidx_merged_section::build_contents): New method.
8538 (Arm_exidx_merged_section::do_write): Move merge section contents
8539 building code to Arm_exidx_merged_section::build_contetns. Write
8540 out contetns in buffer instead of building it on the fly.
8541 (Arm_relobj::make_exidx_input_section): Also pass text section size
8542 to Arm_exidx_input_section constructor.
8543 (Arm_relobj::do_read_symbols): Fix memory leak. Fix a formatting issue.
8544 (Arm_dynobj::do_read_symbols): Fix memory leak.
8545 * layout.cc (Layout::finalize): Pass TASK to Target::relax().
8546 * target.h: (class Task): Add forward declaration.
8547 (Target::relax): Add new parameter TASK and pass it to
8548 Target::do_relax().
8549 (Target::do_relax):: New parameter TASK. Fix a formatting issue.
8550
8551 2010-11-05 Cary Coutant <ccoutant@google.com>
8552
8553 PR gold/10708
8554 * copy-relocs.cc (Copy_relocs::emit_copy_reloc): Hold a lock on the
8555 object when reading from the file.
8556 * gold.cc (queue_middle_tasks): Hold a lock on the object when doing
8557 second layout pass.
8558 * icf.cc (preprocess_for_unique_sections): Hold a lock on the object
8559 when reading section contents.
8560 (get_section_contents): Likewise.
8561 (icf::find_identical_sections): Likewise.
8562 * mapfile.cc (Mapfile::print_discarded_sections): Hold a lock on the
8563 object when reading from the file.
8564 * plugin.cc (Plugin_manager::layout_deferred_objects): Hold a lock on
8565 the object when doing deferred section layout.
8566
8567 2010-11-03 Nick Clifton <nickc@redhat.com>
8568
8569 PR gold/12001
8570 * script.h (class Symbol_assignment: name): New member. Returns
8571 the name of the symbol.
8572 * scrfipt.cc (Script_options::is_pending_assignment): New member.
8573 Returns true if the given symbol name is on the list of
8574 assignments wating to be processed.
8575 * archive.cc (should_incldue_member): If the symbol is undefined,
8576 check to see if it is on the list of symbols pending assignment.
8577
8578 2010-11-03 Ryan Mansfield <rmansfield@qnx.com>
8579
8580 * script-sections.cc (Script_sections::find_memory_region): Check
8581 for a NULL output section pointer.
8582
8583 2010-10-29 Doug Kwan <dougkwan@google.com>
8584
8585 * arm.cc (Arm_outout_section::fix_exidx_coverage): Adjust call to
8586 Output_section::add_relaxed_input_section.
8587 * output.cc (Output_section::add_relaxed_input_section): Add new
8588 arguments LAYOUT and NAME. Set section order index.
8589 (Output_section::convert_input_sections_in_list_to_relaxed_sections):
8590 Copy section order index.
8591 * output.h (Output_section::add_relaxed_input_section): Add new
8592 arguments LAYOUT and NAME.
8593
8594 2010-10-29 Viktor Kutuzov <vkutuzov@accesssoftek.com>
8595
8596 * testsuite/Makefile.am: Move gcctestdir/ld rule to
8597 NATIVE_OR_CROSS_LINKER.
8598 * testsuite/Makefile.in: Regenerate.
8599
8600 2010-10-20 Doug Kwan <dougkwan@google.com>
8601
8602 * arm.cc (Arm_relobj::do_read_symbols): Warn about ARM EXIDX sections
8603 without SHF_LINK_ORDER flags.
8604 * layout.cc (Layout::choose_output_section): Do not filter
8605 SHF_LINK_ORDER flag in a relocatable link.
8606
8607 2010-10-17 Cary Coutant <ccoutant@google.com>
8608
8609 * output.h (Output_segment::set_section_addresses): Change function
8610 signature. Update all callers.
8611 * output.cc (Output_segment::is_first_section_relro): Ignore TLS
8612 sections.
8613 (Output_segment::set_section_addresses): Align after last TLS
8614 section. Add padding before last relro section instead of after.
8615
8616 2010-10-17 Doug Kwan <dougkwan@google.com>
8617
8618 * gold/arm.cc (Target_arm::got_section): Use correct order and set
8619 GOT output section to be writable.
8620
8621 2010-10-14 Cary Coutant <ccoutant@google.com>
8622
8623 * debug.h (DEBUG_INCREMENTAL): New flag.
8624 (debug_string_to_enum): Add DEBUG_INCREMENTAL).
8625 * gold.cc (queue_initial_tasks): Check parameters for incremental link
8626 mode.
8627 * incremental.cc (report_command_line): Ignore all forms of
8628 --incremental.
8629 * layout.cc (Layout::Layout): Check parameters for incremental link
8630 mode.
8631 * options.cc (General_options::parse_incremental): New function.
8632 (General_options::parse_no_incremental): New function.
8633 (General_options::parse_incremental_full): New function.
8634 (General_options::parse_incremental_update): New function.
8635 (General_options::incremental_mode_): New data member.
8636 (General_options::finalize): Check incremental_mode_.
8637 * options.h (General_options): Update help text for --incremental.
8638 Add --no-incremental, --incremental-full, --incremental-update.
8639 (General_options::Incremental_mode): New enum type.
8640 (General_options::incremental_mode): New function.
8641 (General_options::incremental_mode_): New data member.
8642 * parameters.cc (Parameters::incremental_mode_): New data member.
8643 (Parameters::set_options): Set incremental_mode_.
8644 (Parameters::set_incremental_full): New function.
8645 (Parameters::incremental): New function.
8646 (Parameters::incremental_update): New function.
8647 (set_parameters_incremental_full): New function.
8648 * parameters.h (Parameters::set_incremental_full): New function.
8649 (Parameters::incremental): New function.
8650 (Parameters::incremental_update): New function.
8651 (Parameters::incremental_mode_): New data member.
8652 (set_parameters_incremental_full): New function.
8653 * plugin.cc (Plugin_manager::add_input_file): Check parameters for
8654 incremental link mode.
8655 * reloc.cc (Sized_relobj::do_read_relocs): Likewise.
8656 (Sized_relobj::do_relocate_sections): Likewise.
8657 * testsuite/Makefile.am (incremental_test): Use --incremental-full
8658 option.
8659 * testsuite/Makefile.in: Regenerate.
8660 * testsuite/incremental_test.sh: Filter all forms of --incremental.
8661
8662 2010-10-12 Viktor Kutuzov <vkutuzov@accesssoftek.com>
8663
8664 * script-sections.h (class Script_sections): Make
8665 Sections_elements typedef public.
8666 * script-sections.cc (class Sort_output_sections): Add elements_
8667 field. Add constructor which sets it; change all callers.
8668 (Sort_output_sections::is_before): New function.
8669 (Sort_output_sections::operator()): Call is_before.
8670 * configure.ac (NATIVE_OR_CROSS_LINKER): New automake
8671 conditional.
8672 * testsuite/script_test_10.sh: New test. Test script section
8673 order.
8674 * testsuite/script_test_10.t: Likewise.
8675 * testsuite/script_test_10.s: Likewise.
8676 * testsuite/Makefile.am: Wrap the cross linker tests and the
8677 common tests into NATIVE_OR_CROSS_LINKER.
8678 (check_SCRIPTS): Add script_test_10.sh.
8679 (check_DATA): Add script_test_10.stdout.
8680 (script_test_10.o, script_test_10): New targets.
8681 (script_test_10.stdout): New target.
8682 * configure, testsuite/Makefile.in: Regenerate.
8683
8684 2010-10-12 Viktor Kutuzov <vkutuzov@accesssoftek.com>
8685
8686 * arm.cc (Target_arm::Scan::local): Report the unsupported reloc
8687 error for the deprecated relocations.
8688 (Target_arm::Scan::global): Likewise.
8689 (Target_arm::Relocate::relocate): Likewise.
8690
8691 2010-10-12 Richard Sandiford <richard.sandiford@linaro.org>
8692
8693 * fileread.cc (Input_file::find_file): Initialize *found_name
8694 and *namep when using the fallback search for case 4.
8695
8696 2010-10-11 Cary Coutant <ccoutant@google.com>
8697
8698 * options.h (class General_options): Redefine -z lazy as an alias for
8699 the negation of -z now.
8700
8701 2010-10-11 Ian Lance Taylor <iant@google.com>
8702
8703 * resolve.cc (symbol_to_bits): Report the value of the unsupported
8704 binding.
8705
8706 2010-10-06 Nick Clifton <nickc@redhat.com>
8707
8708 * script-sections.cc(class Memory_region): Remove
8709 current_lma_offset_ field. Rename current_vma_offset_ to
8710 current_offset_. Add last_section_ field.
8711 (Memory_region::get_current_vma_address): Rename to
8712 get_current_address.
8713 (Memory_region::get_current_lma_address): Delete.
8714 (Memory_region::increment_vma_offset): Rename to
8715 increment_offset.
8716 (Memory_region::increment_lma_offset): Delete.
8717 (Memory_region::attributes_compatible): New method. Returns
8718 true if the provided section is compatible with the region.
8719 (Memory_region::get_last_section): New method. Returns the last
8720 section to use the region.
8721 (Memory_region::set_last_section): New method. Stores the last
8722 section to use the region.
8723 (Script_sections::block_in_region): New method. Returns true if
8724 a block of memory is contained within a region.
8725 (Script_sections::find_memory_region): New method. Locates a
8726 memory region to be used to set a VMA or LMA address.
8727 (Output_section_definition::set_section_addresses): Add code to
8728 check for addresses set by memory regions.
8729 (Output_segment::set_section_addresses): Remove memory region
8730 walking code.
8731 (Script_sections::create_segment): Add a warning if a header
8732 segment is created outside of any region.
8733 * script-sections.h (class Script_sections): Add prototypes for
8734 find_memory_region and block_in_region methods.
8735 * testsuite/memory_test.s: Use .long instead of .word.
8736 * testsuite/memory_test.t: Add some more output sections.
8737 * testsuite/memory_test.sh: Update expected output.
8738
8739 2010-10-02 Doug Kwan <dougkwan@google.com>
8740
8741 * symtab.cc (Symbol_table::Symbol_table_hash::operator()): Move
8742 defintion to symtab.h
8743 * symtab.h (Symbol_table::Symbol_table_hash::operator()): Change
8744 declaration to defintion.
8745
8746 2010-10-01 Nick Clifton <nickc@redhat.com>
8747
8748 * expression.cc (eval): Replace dummy argument with NULL.
8749 (eval_maybe_dot): Check for a NULL result section pointer.
8750 (Symbol_expression::value): Likewise.
8751 (Dot_expression::value): Likewise.
8752 (BINARY_EXPRESSION): Likewise.
8753 (Max_expression::value): Likewise.
8754 (Min_expression::value): Likewise.
8755 (Absolute_expression::value): Likewise.
8756 (Addr_expression::value_from_output_section): Likewise.
8757 (Loaddddr_expression::value_from_output_section): Likewise.
8758 (Segment_start_expression::value): Likewise.
8759 * script-sections.cc
8760 (Sections_elememt_dot_assignment::finalize_symbols): Replace dummy
8761 argument with NULL.
8762 (Sections_elememt_dot_assignment::set_section_addresses):
8763 Likewise.
8764 (Output_data_expression::do_write_to_buffer): Likewise.
8765 (Output_section_definition::finalize_symbols): Likewise.
8766 (Output_section_definition::set_section_addresses): Likewise.
8767
8768 2010-09-30 Doug Kwan <dougkwan@google.com>
8769
8770 * gold/testsuite/arm_branch_out_of_range.sh: Fix broken tests.
8771
8772 2010-09-28 Sriraman Tallam <tmsriram@google.com>
8773
8774 * target.h (Target::can_icf_inline_merge_sections): New virtual
8775 function.
8776 * x86_64.cc (Target__x86_64::can_icf_inline_merge_sections): New
8777 virtual function.
8778 * i386.cc (Target_i386::can_icf_inline_merge_sections): New
8779 virtual function.
8780 * icf.cc (get_section_contents): Inline merge sections only when
8781 target allows it.
8782
8783 2010-09-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
8784
8785 * configure: Regenerate.
8786
8787 2010-09-17 Ian Lance Taylor <iant@google.com>
8788
8789 * testsuite/memory_test.sh: Adjust for change of 2010-09-10.
8790 * testsuite/Makefile.am (memory_test.o): New target.
8791 (memory_test): Depend on memory_test.o, gcctestdir/ld, and
8792 memory_test.t.
8793 * testsuite/Makefile.in: Rebuild.
8794
8795 2010-09-17 Doug Kwan <dougkwan@google.com>
8796
8797 * arm.cc (Target_arm::Relocate::relocate): Ignore symbol type and
8798 defintion if relocation uses GOT entries of the symbol.
8799 * testsuite/icf_safe_test.sh: Fix test.
8800 * testsuite/icf_safe_so_test.sh: Fix test.
8801
8802 2010-09-16 Cary Coutant <ccoutant@google.com>
8803
8804 * script_sections.cc (class Memory_region): Remove "NULL" from
8805 vector initializations.
8806
8807 2010-09-15 Cary Coutant <ccoutant@google.com>
8808
8809 * incremental.cc (Output_section_incremental_inputs::write_info_blocks):
8810 Resolve forwarding symbols.
8811
8812 2010-09-15 Doug Kwan <dougkwan@google.com>
8813
8814 * gold/testsuite/script_test_3.t: Add ARM special sections.
8815 * gold/testsuite/script_test_4.t: Same.
8816 * gold/testsuite/script_test_5.t: Same.
8817 * gold/testsuite/script_test_6.t: Same.
8818 * gold/testsuite/script_test_7.t: Same.
8819 * gold/testsuite/script_test_7.t: Same.
8820 * gold/testsuite/thumb_blx_out_of_range.s: Fix instruction alignment.
8821
8822 2010-09-14 Cary Coutant <ccoutant@google.com>
8823
8824 * x86_64.cc (Target_x86_64::saw_tls_block_reloc_): Remove member.
8825 (Target_x86_64::Relocate::relocate_tls): Replace check for
8826 saw_tls_block_reloc_ with test for executable section.
8827
8828 2010-09-12 Cary Coutant <ccoutant@google.com>
8829
8830 * symtab.h (Symbol::needs_dynamic_reloc): Non-PIC calls from
8831 position-independent executables to shared libraries need dynamic
8832 relocations.
8833 (Symbol::may_need_copy_reloc): Do not generate COPY relocs in
8834 position-independent executables.
8835 * testsuite/Makefile.am (two_file_mixed_pie_test): New test.
8836 * testsuite/Makefile.in: Regenerate.
8837
8838 2010-09-10 Nick Clifton <nickc@redhat.com>
8839
8840 PR gold/11997
8841 * testsuite/memory_test.t: Discard any sections that are not
8842 needed.
8843
8844 2010-09-09 H.J. Lu <hongjiu.lu@intel.com>
8845
8846 PR gold/11996
8847 * object.cc (Sized_relobj::do_finalize_local_symbols): Remove
8848 "This::" to work around a bug in gcc 4.2.
8849
8850 * testsuite/ifuncmain7.c (foo_ifunc): Add __attribute__ ((used)).
8851
8852 2010-09-09 Rafael Espindola <espindola@google.com>
8853
8854 * layout.cc (Layout::attach_allocated_section_to_segment): Don't put
8855 sections with different PF_X flags in the same segment.
8856 (Layout::find_first_load_seg): Search all segments to find the first
8857 one.
8858 * options.h (rosegment): New.
8859
8860 2010-09-08 Rafael Espindola <espindola@google.com>
8861
8862 * layout.cc (Layout::set_segment_offsets): Always advance to a new page.
8863
8864 2010-09-08 Doug Kwan <dougkwan@google.com>
8865
8866 * arm.cc (Arm_exidx_cantunwind::do_print_to_mapfile): New method.
8867 (Arm_relobj::do_relocate_sections): Add new parameter for output
8868 file to match the parent.
8869 (Target_arm::scan_reloc_section_for_stubs): Use would-be final values
8870 of local symbols instead of input values. Update code to track
8871 changes in gold::relocate_section.
8872 * object.cc (Sized_relobj::compute_final_local_value): New methods.
8873 (Sized_relobj::compute_final_local_value_internal): New methods.
8874 (Sized_relobj::do_finalize_local_symbols): Move code from loop
8875 body into private version of Sized_relobj::compute_final_local_value.
8876 Call the inline method.
8877 * object.h (Symbol_value::Symbol_value): Define destructor. Free
8878 merged symbol value if there is one.
8879 (Symbol_value::has_output_value): New method defintiion.
8880 (Sized_relobj::Compute_final_local_value_status): New enum type.
8881 (Sized_relobj::compute_final_local_value): New methods.
8882 (Sized_relobj::compute_final_local_value_internal): New methods.
8883 * Makefile.am (check_SCRIPTS): Add arm_branch_out_of_range.sh
8884 and arm_cortex_a8.sh.
8885 (thumb_bl_out_of_range_local, arm_cortex_a8_b_cond, arm_cortex_a8_bl,
8886 arm_cortex_a8_blx, arm_cortex_a8_local, arm_corte_a8_local_reloc):
8887 New tests.
8888 * Makefile.in: Regenerate.
8889 * testsuite/arm_bl_out_of_range.s: Update test.
8890 * testsuite/thumb_bl_out_of_range.s: Ditto.
8891 * testsuite/thumb_blx_out_of_range.s: Ditto.
8892 * testsuite/arm_branch_out_of_range.sh: New file.
8893 * testsuite/arm_cortex_a8.sh: Ditto.
8894 * testsuite/arm_cortex_a8_b.s: Ditto.
8895 * testsuite/arm_cortex_a8_b_cond.s: Ditto.
8896 * testsuite/arm_cortex_a8_b_local.s: Ditto.
8897 * testsuite/arm_cortex_a8_bl.s: Ditto.
8898 * testsuite/arm_cortex_a8_blx.s: Ditto.
8899 * testsuite/arm_cortex_a8_local.s: Ditto.
8900 * testsuite/arm_cortex_a8_local_reloc.s: Ditto.
8901 * testsuite/thumb_bl_out_of_range_local.s: Ditto.
8902
8903 2010-09-08 Rafael Espindola <espindola@google.com>
8904
8905 * Makefile.am (memory_test.stdout): Run readelf with -W.
8906 * Makefile.in: Regenerate.
8907 * testsuite/memory_test.sh: Make the regexps accept both 32 and
8908 64 bit output.
8909
8910 2010-09-08 Rafael Espindola <espindola@google.com>
8911
8912 * script-sections.cc (Script_sections::add_memory_region): Convert
8913 field precision to int.
8914 * script.cc (script_set_section_region, script_set_section_region):
8915 Convert field precision to int.
8916
8917 2010-09-08 Rafael Espindola <espindola@google.com>
8918
8919 * arm.cc (do_finalize_sections): Create the __exidx_start and
8920 __exdix_end symbols even when the section is missing.
8921
8922 2010-09-08 Nick Clifton <nickc@redhat.com>
8923
8924 * README: Remove claim that MEMORY is not supported.
8925 * expression.cc (script_exp_function_origin)
8926 (script_exp_function_length): Move from here to ...
8927 * script.cc: ... here.
8928 (script_set_section_region, script_add_memory)
8929 (script_parse_memory_attr, script_include_directive): New
8930 functions.
8931 * script-sections.cc
8932 (class Memory_region): New class.
8933 (class Output_section_definition): Add set_memory_region,
8934 set_section_vma, set_section_lma and get_section_name methods.
8935 (class Script_Sections): Add add_memory_region,
8936 find_memory_region, find_memory_region_origin,
8937 find_memory_region_length and set_memory_region methods.
8938 Have set_section_addresses method walk the list of set memory
8939 regions.
8940 Extend the print methos to display memory regions.
8941 * script-sections.h: Add prototypes for new methods.
8942 Add enum for MEMORY region attributes.
8943 * yyscript.y: Add support for parsing MEMORY regions.
8944 * script-c.h: Add prototypes for new functions.
8945 * testsuite/Makefile.am: Add test of MEMORY region functionality.
8946 * testsuite/Makefile.in: Regenerate.
8947 * testsuite/memory_test.sh: New script.
8948 * testsuite/memory_test.s: New assembler source file.
8949 * testsuite/memory_test.t: New linker script.
8950
8951 2010-08-27 Doug Kwan <dougkwan@google.com>
8952
8953 * gold/resolve.cc (Symbol_table::should_override): Let a weak
8954 reference override an existing dynamic weak reference.
8955 * testsuite/Makefile.am: Add new test dyn_weak_ref.
8956 * testsuite/Makefile.in: Regenerate.
8957 * testsuite/dyn_weak_ref.sh: New file.
8958 * testsuite/dyn_weak_ref_1.c: Ditto.
8959 * testsuite/dyn_weak_ref_2.c: Ditto.
8960
8961 2010-08-27 Ian Lance Taylor <iant@google.com>
8962
8963 * incremental.h (class Incremental_input_entry): Add virtual
8964 destructor.
8965
8966 2010-08-27 Ian Lance Taylor <iant@google.com>
8967
8968 * testsuite/start_lib_test_3.c: Mark t3 as used.
8969
8970 2010-08-27 Nick Clifton <nickc@redhat.com>
8971
8972 * options.cc (version_script): Fix small typo in previous
8973 whitespace tidyup.
8974
8975 2010-08-25 Nick Clifton <nickc@redhat.com>
8976
8977 * archive.cc: Formatting fixes: Remove whitespace between
8978 typename and following asterisk. Remove whitespace between
8979 function name and opening parenthesis.
8980 * archive.h: Likewise.
8981 * arm.cc: Likewise.
8982 * attributes.cc: Likewise.
8983 * attributes.h: Likewise.
8984 * common.cc: Likewise.
8985 * copy-relocs.cc: Likewise.
8986 * dirsearch.h: Likewise.
8987 * dynobj.cc: Likewise.
8988 * ehframe.cc: Likewise.
8989 * ehframe.h: Likewise.
8990 * expression.cc: Likewise.
8991 * fileread.cc: Likewise.
8992 * fileread.h: Likewise.
8993 * gc.h: Likewise.
8994 * gold-threads.cc: Likewise.
8995 * gold.cc: Likewise.
8996 * i386.cc: Likewise.
8997 * icf.h: Likewise.
8998 * incremental-dump.cc: Likewise.
8999 * incremental.cc: Likewise.
9000 * layout.cc: Likewise.
9001 * layout.h: Likewise.
9002 * main.cc: Likewise.
9003 * merge.cc: Likewise.
9004 * merge.h: Likewise.
9005 * object.cc: Likewise.
9006 * object.h: Likewise.
9007 * options.cc: Likewise.
9008 * options.h: Likewise.
9009 * output.cc: Likewise.
9010 * output.h: Likewise.
9011 * plugin.cc: Likewise.
9012 * plugin.h: Likewise.
9013 * powerpc.cc: Likewise.
9014 * reloc.cc: Likewise.
9015 * script-c.h: Likewise.
9016 * script-sections.cc: Likewise.
9017 * script.cc: Likewise.
9018 * stringpool.cc: Likewise.
9019 * symtab.cc: Likewise.
9020 * symtab.h: Likewise.
9021 * target.cc: Likewise.
9022 * timer.cc: Likewise.
9023 * timer.h: Likewise.
9024 * version.cc: Likewise.
9025 * x86_64.cc: Likewise.
9026
9027 2010-08-24 Nick Clifton <nickc@redhat.com>
9028
9029 PR 11899
9030 * layout.cc (segment_precedes): Sort segments by their physical
9031 addresses, if they have been set.
9032
9033 2010-08-23 Cary Coutant <ccoutant@google.com>
9034
9035 * archive.cc (Lib_group::add_symbols): Lock object before deleting its
9036 symbols data.
9037 (Lib_group::include_member): Unlock object after deleting its
9038 symbols data.
9039 * testsuite/start_lib_test_3.c: Remove all global symbols to trigger
9040 the bug fixed here.
9041
9042 2010-08-19 Neil Vachharajani <nvachhar@google.com>
9043 Cary Coutant <ccoutant@google.com>
9044
9045 * gold/archive.h (Add_lib_group_symbols): Add readsyms_blocker_, adjust
9046 constructor, and set_blocker.
9047 * gold/archive.cc (Add_lib_group_symbols::is_runnable): Also check
9048 readsyms_blocker_.
9049 * gold/readsyms.cc (Read_symbols::do_lib_group): Also pass
9050 this->this_blocker_ to Add_lib_group_symbols::set_blocker.
9051 * testsuite/Makefile.am (start_lib_test): New test case.
9052 * testsuite/Makefile.in: Regenerate.
9053 * testsuite/start_lib_test_main.c: New file.
9054 * testsuite/start_lib_test_1.c: New file.
9055 * testsuite/start_lib_test_2.c: New file.
9056 * testsuite/start_lib_test_3.c: New file.
9057
9058 2010-08-19 Ian Lance Taylor <iant@google.com>
9059
9060 * Makefile.in: Rebuild with automake 1.11.1.
9061 * aclocal.m4: Likewise.
9062 * testsuite/Makefile.in: Likewise.
9063
9064 2010-08-19 Ian Lance Taylor <iant@google.com>
9065
9066 PR 10893
9067 * i386.cc (class Output_data_plt_i386): Update declarations.
9068 Define Global_ifunc and Local_ifunc types. Add global_ifuncs_ and
9069 local_ifuncs_ fields.
9070 (Target_i386::do_plt_section_for_global): New function.
9071 (Target_i386::do_plt_section_for_local): New function.
9072 (Output_data_plt_i386::Output_data_plt_i386): Add symtab
9073 parameter; change all callers. Initialize global_ifuncs_ and
9074 local_ifuncs_. If doing a static link define __rel_iplt_start and
9075 __rel_iplt_end.
9076 (Output_data_plt_i386::add_entry): Handle IFUNC symbols.
9077 (Output_data_plt_i386::add_local_ifunc_entry): New function.
9078 (Output_data_plt_i386::do_write): Fix GOT entries for IFUNC
9079 symbols.
9080 (Target_i386::make_plt_section): New function, broken out of
9081 make_plt_entry. Set sh_info field of .rel.plt to point to .plt.
9082 (Target_i386::make_plt_entry): Call make_plt_section.
9083 (Target_i386::make_local_ifunc_plt_entry): New function.
9084 (Target_i386::Scan::reloc_needs_iplt_for_ifunc): New function.
9085 (Target_i386::Scan::local): Handle IFUNC symbols. Add
9086 R_386_IRELATIVE to switch.
9087 (Target_i386::Scan::global): Likewise.
9088 (Target_i386::Relocate::relocate): Likewise.
9089 (Target_i386::Relocatable_size_for_reloc): Add R_386_IRELATIVE to
9090 switch.
9091 * x86_64.cc (class Output_data_plt_x86_64): Update declarations.
9092 (Target_x86_64::do_plt_section_for_global): New function.
9093 (Target_x86_64::do_plt_section_for_local): New function.
9094 (Output_data_plt_x86_64::Output_data_plt_x86_64): Add symtab
9095 parameter; change all callers. If doing a static link define
9096 __rela_iplt_start and __rela_iplt_end.
9097 (Output_data_plt_x86_64::add_entry): Handle IFUNC symbols.
9098 (Output_data_plt_x86_64::add_local_ifunc_entry): New function.
9099 (Target_x86_64::make_plt_section): Set sh_info field of .rel.plt
9100 to point to .plt.
9101 (Target_x86_64::make_local_ifunc_plt_entry): New function.
9102 (Target_x86_64::Scan::check_non_pic): Add R_X86_64_IRELATIVE to
9103 switch.
9104 (Target_x86_64::Scan::reloc_needs_iplt_for_ifunc): New function.
9105 (Target_x86_64::Scan::local): Handle IFUNC symbols. Add
9106 R_X86_64_IRELATIVE to switch.
9107 (Target_x86_64::Scan::global): Likewise.
9108 (Target_x86_64::Relocate::relocate): Likewise.
9109 (Target_x86_64::Relocatable_size_for_reloc): Add R_X86_64_IRELATIVE to
9110 switch.
9111 * target.h (class Target): Add plt_section_for_global and
9112 plt_section_for_local functions. Add do_plt_section_for_global
9113 and do_plt_section_for_local virtual functions.
9114 * symtab.h (Symbol::needs_plt_entry): Handle IFUNC symbol. Add
9115 clarifying comments.
9116 (Symbol::use_plt_offset): Handle IFUNC symbol.
9117 * object.cc (Sized_relobj::Sized_relobj): Initialize
9118 local_plt_offsets_.
9119 (Sized_relobj::local_has_plt_offset): New function.
9120 (Sized_relobj::local_plt_offset): New function.
9121 (Sized_relobj::set_local_plt_offset): New function.
9122 (Sized_relobj::do_count): Handle IFUNC symbol.
9123 * object.h (class Symbol_value): Add is_ifunc_symbol_ field. Take
9124 a bit away from input_shndx_ field. Add set_is_func_symbol and
9125 is_ifunc_symbol functions.
9126 (class Sized_relobj): Update declarations. Remove Tls_got_entry
9127 and Local_tls_got_offsets. Define Local_plt_offsets. Add
9128 local_plt_offsets_ field.
9129 (Sized_relobj::clear_local_symbols): Clear local_plt_offsets_.
9130 * output.h (class Output_section_data): Add non-const
9131 output_section function.
9132 (class Output_data_got): Update declarations.
9133 (class Output_data_got::Got_entry): Add use_plt_offset_ field.
9134 Add use_plt_offset parameter to global and local constructors.
9135 Change all callers. Change local_sym_index_ field to 31 bits.
9136 Change GSYM_CODE and CONSTANT_CODE accordingly.
9137 * output.cc (Output_data_reloc_base::do_adjust_output_section): If
9138 doing a static link don't set sh_link field.
9139 (Output_data_got::Got_entry::write): Use PLT offset if
9140 appropriate.
9141 (Output_data_got::add_global_plt): New function.
9142 (Output_data_got::add_local_plt): New function.
9143 * target-reloc.h (relocate_section): Handle IFUNC symbol.
9144 * defstd.cc (in_section): Remove entries for __rel_iplt_start,
9145 __rel_iplt_end, __rela_iplt_start, and __rela_iplt_end.
9146 * configure.ac: Set IFUNC automake conditional for glibc >= 2.11.
9147 * testsuite/Makefile.am: Add a bunch of IFUNC tests, all within
9148 IFUNC conditional.
9149 * testsuite/ifunc-sel.h: New file.
9150 * testsuite/ifuncmain1.c: New file.
9151 * testsuite/ifuncmain1vis.c: New file.
9152 * testsuite/ifuncmod1.c: New file.
9153 * testsuite/ifuncdep2.c: New file.
9154 * testsuite/ifuncmain2.c: New file.
9155 * testsuite/ifuncmain3.c: New file.
9156 * testsuite/ifuncmod3.c: New file.
9157 * testsuite/ifuncmain4.c: New file.
9158 * testsuite/ifuncmain5.c: New file.
9159 * testsuite/ifuncmod5.c: New file.
9160 * testsuite/ifuncmain6pie.c: New file.
9161 * testsuite/ifuncmod6.c: New file.
9162 * testsuite/ifuncmain7.c: New file.
9163 * configure, testsuite/Makefile.in: Rebuild.
9164
9165 2010-08-18 Ian Lance Taylor <iant@google.com>
9166
9167 * incremental.cc
9168 (Output_section_incremental_inputs::write_input_files): Add cast
9169 to avoid signed/unsigned comparison warning.
9170 (Output_section_incremental_inputs::write_info_blocks): Likewise.
9171
9172 2010-08-12 Cary Coutant <ccoutant@google.com>
9173
9174 * common.cc (Sort_commons::operator()): Remove unnecessary code.
9175
9176 2010-08-13 Ian Lance Taylor <iant@google.com>
9177
9178 * testsuite/incremental_test_1.c: Add prototype to avoid warning.
9179
9180 2010-08-12 Cary Coutant <ccoutant@google.com>
9181 Doug Kwan <dougkwan@google.com>
9182
9183 * resolve.cc (Symbol_table::should_override): When a weak dynamic
9184 defintion overrides non-weak undef, remember that the original undef
9185 is not weak.
9186 * symtab.cc (Symbol_table::sized_write_global): For undef without
9187 an original weak binding, set binding to global in output.
9188 * testsuite/Makefile.am: Add new test strong_ref_weak_def.
9189 * testsuite/Makefile.in: Regenerate.
9190 * testsuite/strong_ref_weak_def.sh: New file.
9191 * testsuite/strong_ref_weak_def_1.c: Ditto.
9192 * testsuite/strong_ref_weak_def_2.c: Ditto.
9193
9194 2010-08-12 Cary Coutant <ccoutant@google.com>
9195
9196 * testsuite/incremental_test.sh: Rewrite.
9197 * testsuite/incremental_test_1.c: Rewrite.
9198 * testsuite/incremental_test_2.c: Rewrite.
9199
9200 2010-08-12 Cary Coutant <ccoutant@google.com>
9201
9202 * arm.cc (Target_arm::got_size): Add const.
9203 (Target_arm::got_entry_count): New function.
9204 (Target_arm::plt_entry_count): New function.
9205 (Target_arm::first_plt_entry_offset): New function.
9206 (Target_arm::plt_entry_size): New function.
9207 (Output_data_plt_arm::entry_count): New function.
9208 (Output_data_plt_arm::first_plt_entry_offset): New function.
9209 (Output_data_plt_arm::get_plt_entry_size): New function.
9210 * i386.cc (Target_i386::got_size): Add const.
9211 (Target_i386::got_entry_count): New function.
9212 (Target_i386::plt_entry_count): New function.
9213 (Target_i386::first_plt_entry_offset): New function.
9214 (Target_i386::plt_entry_size): New function.
9215 (Output_data_plt_i386::entry_count): New function.
9216 (Output_data_plt_i386::first_plt_entry_offset): New function.
9217 (Output_data_plt_i386::get_plt_entry_size): New function.
9218 * incremental-dump.cc (dump_incremental_inputs): Adjust call to
9219 find_incremental_inputs_sections. Dump incremental_got_plt section.
9220 * incremental.cc: Include target.h.
9221 (Sized_incremental_binary::do_find_incremental_inputs_sections): Add
9222 parameter. Adjust all callers. Find incremental_got_plt section.
9223 (Incremental_inputs::create_data_sections): Create incremental_got_plt
9224 section.
9225 (Output_section_incremental_inputs::set_final_data_size): Calculate
9226 size of incremental_got_plt section.
9227 (Output_section_incremental_inputs::do_write): Write the
9228 incremental_got_plt section.
9229 (Got_plt_view_info): New struct.
9230 (Local_got_offset_visitor): New class.
9231 (Global_got_offset_visitor): New class.
9232 (Global_symbol_visitor_got_plt): New class.
9233 (Output_section_incremental_inputs::write_got_plt): New function.
9234 * incremental.h (Incremental_binary::find_incremental_inputs_sections):
9235 Add parameter. Adjust all callers.
9236 (Incremental_binary::do_find_incremental_inputs_sections): Likewise.
9237 (Incremental_inputs::got_plt_section): New function.
9238 (Incremental_inputs::got_plt_section_): New data member.
9239 (Incremental_got_plt_reader): New class.
9240 * layout.cc (Layout::create_incremental_info_sections): Add the
9241 incremental_got_plt section.
9242 * object.h (Got_offset_list::get_list): New function.
9243 (Got offset_list::for_all_got_offsets): New function.
9244 (Sized_relobj::local_got_offset_list): New function.
9245 * powerpc.cc (Target_powerpc::got_size): Add const.
9246 (Target_powerpc::got_entry_count): New function.
9247 (Target_powerpc::plt_entry_count): New function.
9248 (Target_powerpc::first_plt_entry_offset): New function.
9249 (Target_powerpc::plt_entry_size): New function.
9250 (Output_data_plt_powerpc::entry_count): New function.
9251 (Output_data_plt_powerpc::first_plt_entry_offset): New function.
9252 (Output_data_plt_powerpc::get_plt_entry_size): New function.
9253 * sparc.cc (Target_sparc::got_size): Add const.
9254 (Target_sparc::got_entry_count): New function.
9255 (Target_sparc::plt_entry_count): New function.
9256 (Target_sparc::first_plt_entry_offset): New function.
9257 (Target_sparc::plt_entry_size): New function.
9258 (Output_data_plt_sparc::entry_count): New function.
9259 (Output_data_plt_sparc::first_plt_entry_offset): New function.
9260 (Output_data_plt_sparc::get_plt_entry_size): New function.
9261 * symtab.h (Symbol::got_offset_list): New function.
9262 (Symbol_table::for_all_symbols): New function.
9263 * target.h (Sized_target::got_entry_count): New function.
9264 (Sized_target::plt_entry_count): New function.
9265 (Sized_target::plt_entry_size): New function.
9266 * x86_64.cc (Target_x86_64::got_size): Add const.
9267 (Target_x86_64::got_entry_count): New function.
9268 (Target_x86_64::plt_entry_count): New function.
9269 (Target_x86_64::first_plt_entry_offset): New function.
9270 (Target_x86_64::plt_entry_size): New function.
9271 (Output_data_plt_x86_64::entry_count): New function.
9272 (Output_data_plt_x86_64::first_plt_entry_offset): New function.
9273 (Output_data_plt_x86_64::get_plt_entry_size): New function.
9274
9275 2010-08-12 Cary Coutant <ccoutant@google.com>
9276
9277 * archive.cc: Include incremental.h.
9278 (Archive::Archive): Initialize incremental_info_.
9279 (Archive::include_member): Record archive members in incremental info.
9280 (Add_archive_symbols::run): Record begin and end of an archive in
9281 incremental info.
9282 (Lib_group::include_member): Record objects in incremental info.
9283 * archive.h (Incremental_archive_entry): Forward declaration.
9284 (Archive::set_incremental_info): New member function.
9285 (Archive::incremental_info): New member function.
9286 (Archive::Unused_symbol_iterator): New class.
9287 (Archive::unused_symbols_begin): New member function.
9288 (Archive::unused_symbols_end): New member function.
9289 (Archive::incremental_info_): New data member.
9290 * incremental-dump.cc (find_input_containing_global): New function.
9291 (dump_incremental_inputs): Dump new incremental info sections.
9292 * incremental.cc: Include symtab.h.
9293 (Output_section_incremental_inputs): New class.
9294 (Sized_incremental_binary::do_find_incremental_inputs_sections): Support
9295 new incremental info sections.
9296 (Sized_incremental_binary::do_check_inputs): Likewise.
9297 (Incremental_inputs::report_archive): Remove.
9298 (Incremental_inputs::report_archive_begin): New function.
9299 (Incremental_inputs::report_archive_end): New function.
9300 (Incremental_inputs::report_object): New function.
9301 (Incremental_inputs::finalize_inputs): Remove.
9302 (Incremental_inputs::report_input_section): New function.
9303 (Incremental_inputs::report_script): Rewrite.
9304 (Incremental_inputs::finalize): Do nothing but finalize string table.
9305 (Incremental_inputs::create_incremental_inputs_section_data): Remove.
9306 (Incremental_inputs::sized_create_inputs_section_data): Remove.
9307 (Incremental_inputs::create_data_sections): New function.
9308 (Incremental_inputs::relocs_entsize): New function.
9309 (Output_section_incremental_inputs::set_final_data_size): New function.
9310 (Output_section_incremental_inputs::do_write): New function.
9311 (Output_section_incremental_inputs::write_header): New function.
9312 (Output_section_incremental_inputs::write_input_files): New function.
9313 (Output_section_incremental_inputs::write_info_blocks): New function.
9314 (Output_section_incremental_inputs::write_symtab): New function.
9315 * incremental.h (Incremental_script_entry): Forward declaration.
9316 (Incremental_object_entry): Forward declaration.
9317 (Incremental_archive_entry): Forward declaration.
9318 (Incremental_inputs): Forward declaration.
9319 (Incremental_inputs_header_data): Remove.
9320 (Incremental_inputs_header): Remove.
9321 (Incremental_inputs_header_write): Remove.
9322 (Incremental_inputs_entry_data): Remove.
9323 (Incremental_inputs_entry): Remove.
9324 (Incremental_inputs_entry_write): Remove.
9325 (enum Incremental_input_type): Add INCREMENTAL_INPUT_ARCHIVE_MEMBER.
9326 (Incremental_binary::find_incremental_inputs_sections): Add parameters.
9327 (Incremental_binary::do_find_incremental_inputs_sections): Likewise.
9328 (Sized_ncremental_binary::do_find_incremental_inputs_sections):
9329 Likewise.
9330 (Incremental_input_entry): New class.
9331 (Incremental_script_entry): New class.
9332 (Incremental_object_entry): New class.
9333 (Incremental_archive_entry): New class.
9334 (Incremental_inputs::Incremental_inputs): Initialize new data members.
9335 (Incremental_inputs::report_inputs): Remove.
9336 (Incremental_inputs::report_archive): Remove.
9337 (Incremental_inputs::report_archive_begin): New function.
9338 (Incremental_inputs::report_archive_end): New function.
9339 (Incremental_inputs::report_object): Change prototype.
9340 (Incremental_inputs::report_input_section): New function.
9341 (Incremental_inputs::report_script): Change prototype.
9342 (Incremental_inputs::get_reloc_count): New function.
9343 (Incremental_inputs::set_reloc_count): New function.
9344 (Incremental_inputs::create_data_sections): New function.
9345 (Incremental_inputs::create_incremental_inputs_section_data): Remove.
9346 (Incremental_inputs::inputs_section): New function.
9347 (Incremental_inputs::symtab_section): New function.
9348 (Incremental_inputs::relocs_section): New function.
9349 (Incremental_inputs::get_stringpool): Add const.
9350 (Incremental_inputs::command_line): Add const.
9351 (Incremental_inputs::inputs): Remove.
9352 (Incremental_inputs::command_line_key): New function.
9353 (Incremental_inputs::input_file_count): New function.
9354 (Incremental_inputs::input_files): New function.
9355 (Incremental_inputs::relocs_entsize): New function.
9356 (Incremental_inputs::sized_create_inputs_section_data): Remove.
9357 (Incremental_inputs::finalize_inputs): Remove.
9358 (Incremental_inputs::Input_info): Remove.
9359 (Incremental_inputs::lock_): Remove.
9360 (Incremental_inputs::inputs_): Change type.
9361 (Incremental_inputs::inputs_map_): Remove.
9362 (Incremental_inputs::current_object_entry_): New data member.
9363 (Incremental_inputs::inputs_section_): New data member.
9364 (Incremental_inputs::symtab_section_): New data member.
9365 (Incremental_inputs::relocs_section_): New data member.
9366 (Incremental_inputs::reloc_count_): New data member.
9367 (Incremental_inputs_reader): New class.
9368 (Incremental_symtab_reader): New class.
9369 (Incremental_relocs_reader): New class.
9370 * layout.cc (Layout::finalize): Move finalization of incremental info
9371 and creation of incremental info sections to follow finalization of
9372 symbol table. Set offsets for postprocessing sections.
9373 (Layout::create_incremental_info_sections): Call
9374 Incremental_inputs::create_data_sections. Add incremental symtab
9375 and relocs sections. Set sh_entsize and sh_link fields. Arrange for
9376 sections to layout after input sections.
9377 * layout.h (struct Timespec): Forward declaration.
9378 (Layout::incremental_inputs): Add const.
9379 (Layout::create_incremental_info_sections): Add parameter.
9380 * main.cc (main): Remove call to Incremental_inputs::report_inputs.
9381 * object.cc: Include incremental.h.
9382 (Relobj::finalize_incremental_relocs): New function.
9383 (Sized_relobj::do_layout): Record input sections in incremental info.
9384 * object.h (Object::output_section): New function.
9385 (Object::output_section_offset): Moved from Relobj.
9386 (Object::get_incremental_reloc_base): New function.
9387 (Object::get_incremental_reloc_count): New function.
9388 (Object::do_output_section): New function.
9389 (Object::do_output_section_offset): Moved from Relobj.
9390 (Object::do_get_incremental_reloc_base): New function.
9391 (Object::do_get_incremental_reloc_count): New function.
9392 (Object::Object): Initialize new data members.
9393 (Relobj::output_section): Renamed do_output_section and moved to
9394 protected.
9395 (Relobj::output_section_offset): Moved to Object.
9396 (Relobj::do_get_incremental_reloc_base): New function.
9397 (Relobj::do_get_incremental_reloc_count): New function.
9398 (Relobj::allocate_incremental_reloc_counts): New function.
9399 (Relobj::count_incremental_reloc): New function.
9400 (Relobj::finalize_incremental_relocs): New function.
9401 (Relobj::next_incremental_reloc_index): New function.
9402 (Relobj::reloc_counts_): New data member.
9403 (Relobj::reloc_bases_): New data member.
9404 (Sized_relobj::do_relocate_sections): Add parameter. Change caller.
9405 (Sized_relobj::relocate_sections): Add parameter. Change all callers.
9406 (Sized_relobj::incremental_relocs_scan): New function.
9407 (Sized_relobj::incremental_relocs_scan_reltype): New function.
9408 (Sized_relobj::incremental_relocs_write): New function.
9409 (Sized_relobj::incremental_relocs_write_reltype): New function.
9410 * plugin.cc (Plugin_manager::add_input_file): Rewrite test for
9411 incremental link.
9412 * readsyms.cc (Read_symbols::do_read_symbols): Move reporting of
9413 archives and object files elsewhere.
9414 (Add_symbols::run): Report object files here.
9415 (Finish_group::run): Report end of archive at end of group.
9416 * reloc.cc: Include layout.h, incremental.h.
9417 (Sized_relobj::do_read_relocs): Need relocations for incremental link.
9418 (Sized_relobj::do_scan_relocs): Record relocations for incremental link.
9419 (Sized_relobj::incremental_relocs_scan): New function.
9420 (Sized_relobj::incremental_relocs_scan_reltype): New function.
9421 (Sized_relobj::do_relocate_sections): Write incremental relocations.
9422 (Sized_relobj::incremental_relocs_write): New function.
9423 (Sized_relobj::incremental_relocs_write_reltype): New function.
9424 * script.cc (read_input_script): Rewrite test for incremental link.
9425 Change call to Incremental_inputs::report_script.
9426 * symtab.h (Symbol_table::first_global_index): New function.
9427 (Symbol_table::output_count): New function.
9428
9429 2010-08-12 Doug Kwan <dougkwan@google.com>
9430
9431 * arm.cc (Target_arm::merge_object_attributes): Check command line
9432 options --no-wchar-size-warning and --no-enum-size-warning.
9433 * options.h (General_options): Add ld-compatible options
9434 --no-enum-size-warning and --no-wchar-size-warning.
9435
9436 2010-08-04 Ian Lance Taylor <iant@google.com>
9437
9438 * x86_64.cc (Target_x86_64::Scan::local): Use
9439 R_X86_64_GNU_VTINHERIT instead of R_386_GNU_VTINHERIT and
9440 R_X86_64_GNU_VTENTRY instead of R_386_GNU_VTENTRY.
9441 (Target_x86_64::Scan::global): Likewise.
9442 (Target_x86_64::Relocate::relocate): Likewise.
9443 (Target_x86_64::Relocatable_size_for_reloc::get_size_for_reloc):
9444 Likewise.
9445
9446 2010-08-03 Cary Coutant <ccoutant@google.com>
9447
9448 * merge.cc (Output_merge_string::do_add_input_section): Count strings
9449 to reserve space in merged_strings vector. Keep total input size
9450 for stats.
9451 (Output_merge_string::do_print_merge_stats): Print total input size.
9452 * merge.h (Output_merge_string): Add input_size_ field.
9453 * stringpool.cc (Stringpool_template::string_length): Move
9454 implementations out of Stringpool_template class and place in
9455 stringpool.h.
9456 * stringpool.h (string_length): Move out of Stringpool_template.
9457
9458 2010-08-03 Ian Lance Taylor <iant@google.com>
9459
9460 PR 11712
9461 * layout.cc (relaxation_loop_body): If address of load segment is
9462 set, adjust address to include headers if possible.
9463
9464 2010-08-03 Ian Lance Taylor <iant@google.com>
9465
9466 * version.cc (version_string): Bump to 1.10.
9467
9468 2010-08-03 Ian Lance Taylor <iant@google.com>
9469
9470 PR 11805
9471 * layout.h (enum Output_section_order): Define.
9472 (class Layout): Update declarations.
9473 * layout.cc (Layout::get_output_section): Add order parameter.
9474 Remove is_interp, is_dynamic_linker_section, is_last_relro, and
9475 is_first_non_relro parameters. Change all callers.
9476 (Layout::choose_output_section): Likewise.
9477 (Layout::add_output_section_data): Likewise.
9478 (Layout::make_output_section): Likewise. Set order.
9479 (Layout::default_section_order): New function.
9480 (Layout::layout_eh_frame): Call add_output_section_to_nonload.
9481 * output.cc (Output_section::Output_section): Initialize order_.
9482 Don't initialize deleted fields.
9483 (Output_segment::Output_segment): Don't initialize deleted
9484 fields.
9485 (Output_segment::add_output_section_to_load): New function
9486 replacing add_output_section. Change all callers to call this or
9487 add_output_section_to_nonload.
9488 (Output_segment::add_output_section_to_nonload): New function.
9489 (Output_segment::remove_output_section): Rewrite.
9490 (Output_segment::add_initial_output_data): Likewise.
9491 (Output_segment::has_any_data_sections): Likewise.
9492 (Output_segment::is_first_section_relro): Likewise.
9493 (Output_segment::maximum_alignment): Likewise.
9494 (Output_segment::has_dynamic_reloc): New function replacing
9495 dynamic_reloc_count. Change all callers.
9496 (Output_segment::has_dynamic_reloc_list): New function replacing
9497 dynamic_reloc_count_list. Change all callers.
9498 (Output_segment::set_section_addresses): Rewrite.
9499 (Output_segment::set_offset): Rewrite.
9500 (Output_segment::find_first_and_last_list): Remove.
9501 (Output_segment::set_tls_offsets): Rewrite.
9502 (Output_segment::first_section_load_address): Likewise.
9503 (Output_segment::output_section_count): Likewise.
9504 (Output_segment::section_with_lowest_load_address): Likewise.
9505 (Output_segment::write_section_headers): Likewise.
9506 (Output_segment::print_sections_to_map): Likewise.
9507 * output.h (class Output_data): Remove dynamic_reloc_count_
9508 field. Add has_dynamic_reloc_ field. Make bools into bitfields.
9509 (Output_data::add_dynamic_reloc): Rewrite.
9510 (Output_data::has_dynamic_reloc): New function.
9511 (Output_data::dynamic_reloc_count): Remove.
9512 (class Output_section): Add order_ field. Remvoe is_relro_local_,
9513 is_last_relro_, is_first_non_relro_, is_interp_,
9514 is_dynamic_linker_section_ fields. Add order and set_order
9515 functions. Remove is_relro_local, set_is_relro_local,
9516 is_last_relro, set_is_last_relro, is_first_non_relro,
9517 set_is_first_non_relro functions, is_interp, set_is_interp,
9518 is_dynamic_linker_section, and set_is_dynamic_linker_section
9519 functions.
9520 (class Output_segment): Change Output_data_list from std::list to
9521 std:;vector. Add output_lists_ field. Remove output_data_ and
9522 output_bss_ fields. Update declarations.
9523
9524 2010-08-02 Ian Lance Taylor <iant@google.com>
9525
9526 * arm.cc (Target_arm::gc_process_relocs): Use typename.
9527 * powerpc.cc (Target_powerpc::gc_process_relocs): Likewise.
9528 * sparc.cc (Target_sparc::gc_process_relocs): Likewise.
9529
9530 2010-08-02 Ian Lance Taylor <iant@google.com>
9531
9532 PR 11855
9533 * script.cc (Script_options::Script_options): Initialize
9534 symbol_definitions_ and symbol_references_.
9535 (Script_options::add_symbol_assignment): Update
9536 symbol_definitions_ and symbol_references_.
9537 (Script_options::add_symbol_reference): New function.
9538 (script_symbol): New function.
9539 * script.h (class Script_options): Add symbol_definitions_ and
9540 symbol_references_ fields.
9541 (Script_options::referenced_const_iterator): New type.
9542 (Script_options::referenced_begin): New function.
9543 (Script_options::referenced_end): New function.
9544 (Script_options::is_referenced): New function.
9545 (Script_options::any_unreferenced): New function.
9546 * script-c.h (script_symbol): Declare.
9547 * yyscript.y (exp): Call script_symbol.
9548 * symtab.cc: Include "script.h".
9549 (Symbol_table::gc_mark_undef_symbols): Add layout parameter.
9550 Change all callers. Check symbols referenced by scripts.
9551 (Symbol_table::add_undefined_symbols_from_command_line): Add
9552 layout parameter. Change all callers.
9553 (Symbol_table::do_add_undefined_symbols_from_command_line):
9554 Likewise. Break out loop body. Check symbols referenced by
9555 scripts.
9556 (Symbol_table::add_undefined_symbol_from_command_line): New
9557 function broken out of
9558 do_add_undefined_symbols_from_command_line.
9559 * symtab.h (class Symbol_table): Update declarations.
9560 * archive.cc: Include "layout.h".
9561 (Archive::should_include_member): Add layout parameter. Change
9562 all callers. Check for symbol mentioned in expression.
9563 * archive.h (class Archive): Update declaration.
9564 * object.cc (Sized_relobj::do_should_include_member): Add layout
9565 parameter.
9566 * object.h (Object::should_include_member): Add layout parameter.
9567 Change all callers.
9568 (Object::do_should_include_member): Add layout parameter.
9569 (class Sized_relobj): Update declaration.
9570 * dynobj.cc (Sized_dynobj::do_should_include_member): Add layout
9571 parameter.
9572 * dynobj.h (class Sized_dynobj): Update declaration.
9573 * plugin.cc (Sized_pluginobj::do_should_include_member): Add
9574 layout parameter.
9575 * plugin.h (class Sized_pluginobj): Update declaration.
9576
9577 2010-08-02 Ian Lance Taylor <iant@google.com>
9578
9579 PR 11866
9580 * output.cc (Output_segment::set_offset): Search for the first and
9581 last sections rather than assuming that the list is in order.
9582 (Output_segment::find_first_and_last_list): New function.
9583 * output.h (class Output_segment): Update declarations.
9584 * testsuite/Makefile.am (check_PROGRAMS): Add relro_strip_test.
9585 (relro_strip_test_SOURCES): New variable.
9586 (relro_strip_test_DEPENDENCIES): New variable.
9587 (relro_strip_test_LDFLAGS): New variable.
9588 (relro_strip_test_LDADD): New variable.
9589 (relro_strip_test.so): New target.
9590
9591 2010-08-02 Ian Lance Taylor <iant@google.com>
9592
9593 * i386.cc (class Target_i386): Add got_tlsdesc_ field.
9594 (Target_i386::Target_i386):: Initialize got_tlsdesc_.
9595 (Target_i386::got_tlsdesc_section): New function.
9596 (Target_i386::got_section): Create space for GOT entries for
9597 TLSDESC relocations.
9598 (Target_i386::Scan::local): Use TLSDESC GOT for unoptimized
9599 R_386_TLS_GOTDESC.
9600 (Target_i386::Scan::global): Likewise.
9601 (Target_i386::Relocate::relocate_tls): Adjust GOT offset when
9602 using TLSDESC GOT.
9603 * x86_64.cc (class Target_x86_64): Add got_tlsdesc_ field.
9604 (Target_x86_64::Target_x86_64):: Initialize got_tlsdesc_.
9605 (Target_x86_64::got_tlsdesc_section): New function.
9606 (Target_x86_64::got_section): Create space for GOT entries for
9607 TLSDESC relocations.
9608 (Target_x86_64::Scan::local): Use TLSDESC GOT for unoptimized
9609 R_386_TLS_GOTDESC.
9610 (Target_x86_64::Scan::global): Likewise.
9611 (Target_x86_64::Relocate::relocate_tls): Adjust GOT offset when
9612 using TLSDESC GOT.
9613
9614 2010-08-02 Ian Lance Taylor <iant@google.com>
9615
9616 * testsuite/final_layout.sh: Use dc to convert from hex to
9617 decimal.
9618
9619 2010-07-29 Sriraman Tallam <tmsriram@google.com>
9620
9621 * arm.cc (Target_arm<big_endian>::gc_process_relocs): Add template
9622 paramter to the call to gold::gc_process_relocs.
9623 * i386.cc (Target_i386<big_endian>::gc_process_relocs): Add template
9624 paramter to the call to gold::gc_process_relocs.
9625 * x86_64.cc (Target_x86_64<big_endian>::gc_process_relocs): Add template
9626 parameter to the call to gold::gc_process_relocs.
9627 * powerpc.cc (Target_powerpc<big_endian>::gc_process_relocs): Add
9628 template parameter to the call to gold::gc_process_relocs.
9629 * sparc.cc (Target_sparc<big_endian>::gc_process_relocs): Add template
9630 paramter to the call to gold::gc_process_relocs.
9631 * gc.h (get_embedded_addend_size): New function.
9632 (gc_process_relocs): Save the size of the reloc for use by ICF.
9633 * icf.cc (get_section_contents): Get the addend from the text section
9634 for SHT_REL relocation sections.
9635 * icf.h (Icf::Reloc_addend_size_info): New typedef.
9636 (Icf::Reloc_info): Add new member reloc_addend_size_info.
9637 * int_encoding.h (read_from_pointer): New overloaded function.
9638 * testsuite/Makefile.am (icf_sht_rel_addend_test): New test.
9639 * testsuite/icf_sht_rel_addend_test.sh: New file.
9640 * testsuite/icf_sht_rel_addend_test_1.cc: New file.
9641 * testsuite/icf_sht_rel_addend_test_2.cc: New file.
9642
9643 2010-07-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
9644
9645 * configure.ac (AM_INIT_AUTOMAKE): Use parallel-tests option.
9646 * Makefile.in: Regenerate.
9647 * testsuite/Makefile.in: Regenerate.
9648
9649 2010-07-27 Jeffrey Yasskin <jyasskin@google.com>
9650
9651 * testsuite/debug_msg.sh: Test mixed weak/strong symbol behavior.
9652 * gold/testsuite/debug_msg.cc: Likewise.
9653 * gold/testsuite/odr_violation1.cc
9654 * gold/testsuite/odr_violation2.cc
9655
9656 2010-07-21 Cary Coutant <ccoutant@google.com>
9657
9658 * merge.h (Output_merge_string::Merged_string): Remove object, shndx,
9659 string, and length fields.
9660 (Output_merge_string::Merged_strings_list): New type.
9661 (Output_merge_string::Merged_strings_lists): New typedef.
9662 (Output_merge_string): Replace merged_strings_ with
9663 merged_strings_lists_.
9664 * merge.cc (Output_merge_string::do_add_input_section): Allocate new
9665 Merged_strings_list per input object and section. Don't store pointer
9666 to the string. Don't store length with each merged string entry.
9667 (Output_merge_string::finalize_merged_data): Loop over list of merged
9668 strings lists. Recompute length of each merged string.
9669
9670 2010-07-15 Cary Coutant <ccoutant@google.com>
9671
9672 * plugin.cc (Plugin_finish::run): Don't call cleanup handlers from
9673 here.
9674
9675 2010-07-14 Ian Lance Taylor <iant@google.com>
9676
9677 * descriptors.cc (Descriptors::open): Report correct name in error
9678 message.
9679
9680 2010-07-13 Doug Kwan <dougkwan@google.com>
9681
9682 * arm.cc (Arm_input_section::Arm_input_section): For a
9683 SHT_ARM_EXIDX section, always keeps the input sections.
9684 (Arm_input_section::set_exidx_section_link): New method.
9685 (Arm_exidx_input_section::Arm_exidx_input_section): Initialize
9686 has_errors_ to false.
9687 (Arm_exidx_input_section::has_errors,
9688 Arm_exidx_input_section::set_has_errors): New methods.
9689 (Arm_exidx_input_section::has_errors_): New data member.
9690 (Arm_relobj::get_exidx_shndx_list): New method.
9691 (Arm_output_section::append_text_sections_to_list): Do not skip
9692 section without SHF_EXECINSTR.
9693 (Arm_output_section::fix_exidx_coverage): Skip input sections with
9694 errors.
9695 (Arm_relobj::make_exidx_input_section): Add new parameter for text
9696 section header. Make error messages more verbose. Check for
9697 a non-executable section linked to an EXIDX section.
9698 (Arm_relobj::do_read_symbols): Remove error checking, which has been
9699 moved to Arm_relobj::make_exidx_input_section. Add an assertion to
9700 check that there is no deferred EXIDX section if we exit early.
9701 Instead of not making an EXIDX section in case of an error, make one
9702 and set the has_errors flag of it.
9703 (Target_arm::do_finalize_sections): Fix up links of EXIDX sections
9704 in a relocatable link.
9705 (Target_arm::do_relax): Look for the EXIDX output section instead of
9706 assuming that it is called .ARM.exidx.
9707 (Target_arm::fix_exidx_coverage): Add a new parameter for input
9708 section list. Do not check for SHF_EXECINSTR section flags but
9709 skip any input section with errors.
9710 * output.cc (Output_section::Output_section): Initialize
9711 always_keeps_input_sections_ to false.
9712 (Output_section::add_input_section): Check for
9713 always_keeps_input_sections_.
9714 * output.h (Output_section::always_keeps_input_sections,
9715 Output_section::set_always_keeps_input_sections): New methods.
9716 (Output_section::always_keeps_input_sections): New data member.
9717
9718 2010-07-13 Rafael Espindola <espindola@google.com>
9719
9720 * fileread.cc (try_extra_search_path, find_file): Move to Input_file.
9721 * fileread.h (Input_file): Add try_extra_search_path and find_file.
9722
9723 2010-07-13 Philip Herron <herron.philip@googlemail.com>
9724 Ian Lance Taylor <iant@google.com>
9725
9726 * output.h (Output_section_lookup_maps::add_merge_section):
9727 Correct check of whether value was inserted.
9728 (Output_section_lookup_maps::add_merge_input_section): Likewise.
9729 (Output_section_lookup_maps::add_relaxed_input_section):
9730 Likewise.
9731 * arm.cc (Target_arm::got_section): Remove used local os.
9732 * i386.cc (Target_i386::got_section): Likewise.
9733 * x86_64.cc (Target_x86_64::got_section): Likewise.
9734 * sparc.cc (Target_sparc::got_section): Likewise.
9735 (Target_sparc::relocate): Remove unused local have_got_offset.
9736 * powerpc.cc (Target_powerpc::relocate): Likewise.
9737
9738 2010-07-13 Ian Lance Taylor <iant@google.com>
9739
9740 * compressed_output.cc (zlib_decompress): Fix signature in
9741 !HAVE_ZLIB_H case.
9742
9743 * archive.cc (Archive::include_member): Unlock an external member
9744 of a thin archive. Don't bother to delete an object we know is
9745 NULL.
9746
9747 2010-07-12 Cary Coutant <ccoutant@google.com>
9748
9749 * compressed_output.cc (zlib_decompress): New function.
9750 (get_uncompressed_size): New function.
9751 (decompress_input_section): New function.
9752 * compressed_output.h (get_uncompressed_size): New function.
9753 (decompress_input_section): New function.
9754 * dwarf_reader.cc (Sized_dwarf_line_info::Sized_dwarf_line_info)
9755 Handle compressed debug sections.
9756 * layout.cc (is_compressed_debug_section): New function.
9757 (Layout::output_section_name): Map compressed section names to
9758 canonical names.
9759 * layout.h (is_compressed_debug_section): New function.
9760 (is_debug_info_section): Recognize compressed debug sections.
9761 * merge.cc: Include compressed_output.h.
9762 (Output_merge_data::do_add_input_section): Handle compressed
9763 debug sections.
9764 (Output_merge_string::do_add_input_section): Handle compressed
9765 debug sections.
9766 * object.cc: Include compressed_output.h.
9767 (Sized_relobj::Sized_relobj): Initialize new data members.
9768 (build_compressed_section_map): New function.
9769 (Sized_relobj::do_read_symbols): Handle compressed debug sections.
9770 * object.h (Object::section_is_compressed): New method.
9771 (Object::do_section_is_compressed): New method.
9772 (Sized_relobj::Compressed_section_map): New type.
9773 (Sized_relobj::do_section_is_compressed): New method.
9774 (Sized_relobj::compressed_sections_): New data member.
9775 * output.cc (Output_section::add_input_section): Handle compressed
9776 debug sections.
9777 * reloc.cc: Include compressed_output.h.
9778 (Sized_relobj::write_sections): Handle compressed debug sections.
9779
9780 2010-07-08 Cary Coutant <ccoutant@google.com>
9781
9782 * resolve.cc (Symbol_table::resolve): Remember whether undef was
9783 weak when resolving to a dynamic def.
9784 (Symbol_table::should_override): Add adjust_dyndef flag; set it
9785 for weak undef/dynamic def cases. Adjust callers.
9786 * symtab.cc (Symbol::init_fields): Initialize undef_binding_set_ and
9787 undef_binding_weak_.
9788 (Symbol_table::sized_write_globals): Adjust symbol binding.
9789 (Symbol_table::sized_write_symbol): Add binding parameter.
9790 * symtab.h (Symbol::set_undef_binding): New method.
9791 (Symbol::is_undef_binding_weak): New method.
9792 (Symbol::undef_binding_set_, Symbol::undef_binding_weak_): New members.
9793 (Symbol_table::should_override): Add new parameter.
9794 (Symbol_table::sized_write_symbol): Add new parameter.
9795
9796 * testsuite/weak_undef_file1.cc: Add new test case.
9797 * testsuite/weak_undef_file2.cc: Fix header comment.
9798 * testsuite/weak_undef_test.cc: Add new test case.
9799
9800 2010-06-29 Doug Kwan <dougkwan@google.com>
9801
9802 * arm-reloc-property.cc (Arm_reloc_property::Arm_reloc_property):
9803 Initialize USE_SYMBOL_.
9804 * arm-reloc-property.h (Arm_reloc_property::uses_symbol): New method
9805 definition.
9806 (Arm_reloc_property::uses_symbol_): New data member declaration.
9807 * arm.cc (Target_arm::Relocate::relocate): Exit early if relocation
9808 uses symbol value and symbol is undefined but not weakly undefined.
9809
9810 2010-06-28 Rafael Espindola <espindola@google.com>
9811
9812 * plugin.cc (Plugin::load): Use dlerror.
9813
9814 2010-06-26 Jeffrey Yaskin <jyasskin@google.com>
9815
9816 * symtab.cc (detect_odr_violations): When reporting an ODR
9817 violation, report an object where the symbol is defined.
9818
9819 2010-06-25 Doug Kwan <dougkwan@google.com>
9820
9821 * arm.cc (Target_arm::can_check_for_functions_pointers): Return true.
9822 (Target_arm::section_may_have_icf_unsafe_pointers): New method
9823 definition.
9824 (Target_arm::Scan::local_reloc_may_be_function_pointer,
9825 Target_arm::Scan::global_reloc_may_be_function_pointer): Implement
9826 target hook to detect function points.
9827 (Target_arm::Scan::possible_function_pointer_reloc): New method.
9828 * icf.h (Icf::check_section_for_function_pointers): Change type of
9829 parameter SECTION_NAME to const reference to std::string. Use
9830 target hook to determine if section may have unsafe pointers.
9831 * target.h (Target::section_may_have_icf_unsafe_pointers): New
9832 method definition.
9833
9834 2010-06-21 Rafael Espindola <espindola@google.com>
9835
9836 * fileread.cc (Input_file::find_fie): New
9837 (Input_file::open): Use Input_file::find_fie.
9838 * fileread.h (Input_file::find_fie): New
9839 * plugin.cc (set_extra_library_path): New.
9840 (Plugin::load): Add set_extra_library_path to the transfer vector.
9841 (Plugin_manager::set_extra_library_path): New.
9842 (Plugin_manager::add_input_file): Use the extra search path if set.
9843 (set_extra_library_path(): New.
9844 * plugin.h (Plugin_manager): Add set_extra_library_path and
9845 extra_search_path_.
9846
9847 2010-06-19 Cary Coutant <ccoutant@google.com>
9848
9849 * layout.cc (gdb_sections): Add .debug_types.
9850 (lines_only_debug_sections): Likewise.
9851
9852 2010-06-18 Rafael Espindola <espindola@google.com>
9853
9854 * plugin.cc (add_input_file,add_input_library)
9855 (Plugin_manager::add_input_file): Make filename arguments const.
9856 * plugin.h (Plugin_manager::add_input_file): Make filename arguments
9857 const.
9858
9859 2010-06-16 Doug Kwan <dougkwan@google.com>
9860
9861 * arm.cc (Target_arm::do_finalize_sections): Do not emit an
9862 .ARM.attributes section if we have not merged any input
9863 attributes sections.
9864
9865 2010-06-15 Viktor Kutuzov <vkutuzov@accesssoftek.com>
9866
9867 * arm.cc: Allow combining objects with no EABI version
9868 information.
9869
9870 2010-06-15 Rafael Espindola <espindola@google.com>
9871
9872 * plugin.cc (Plugin_hook::run): Set in_real_elf for the start symbol.
9873
9874 2010-06-15 Viktor Kutuzov <vkutuzov@accesssoftek.com>
9875
9876 * fileread.cc: Only #include <sys/uio.h> if HAVE_READV.
9877 (struct iovec): Correct !HAVE_READV definition.
9878
9879 2010-06-10 Cary Coutant <ccoutant@google.com>
9880
9881 * object.cc (Sized_relobj::do_layout): Defer layout for reloc sections.
9882 (Sized_relobj::do_layout_deferred_sections): Do layout for deferred
9883 reloc sections.
9884 * object.h (Sized_relobj::deferred_layout_relocs_): New data member.
9885
9886 PR 11683
9887 * symtab.h (Symbol::is_placeholder): New member function.
9888 * target-reloc.h (relocate_section): Check for placeholder symbols.
9889
9890 * testsuite/Makefile.am (plugin_test_8): New test.
9891 (plugin_test_9): New test.
9892 * testsuite/Makefile.in: Regenerate.
9893
9894 2010-06-09 Nick Clifton <nickc@redhat.com>
9895
9896 * yyscript.y (input_list_element): Allow strings prefixed with
9897 the '-' character. Treat these as libraries.
9898 * script.cc (script_add_library): New function. Adds a library
9899 specified by "-l<name>" found in an input script.
9900 * script-c.h: Add prototype for script_add_library.
9901
9902 2010-06-07 Doug Kwan <dougkwan@google.com>
9903
9904 * arm.cc (Target_arm::do_relax): Reserve more space for stubs.
9905 Restrict stub-group size to be within long conditional branch
9906 range when working around cortex-A8 erratum.
9907
9908 2010-06-07 Damien Diederen <dd@crosstwine.com>
9909
9910 * gold-threads.cc (Lock_impl_threads::Lock_impl_threads): Correct
9911 #ifdef typo.
9912
9913 2010-06-03 Sriraman Tallam <tmsriram@google.com>
9914
9915 PR gold/11658
9916 * output.cc
9917 (Output_section::Input_section_sort_entry::compare_section_ordering):
9918 Change to return non-zero correctly.
9919 (Output_section::Input_section_sort_section_order_index_compare
9920 ::operator()): Change to fix ambiguity in comparisons.
9921
9922 2010-06-01 Sriraman Tallam <tmsriram@google.com>
9923
9924 * gold.h (is_wildcard_string): New function.
9925 * layout.cc (Layout::layout): Pass this pointer to add_input_section.
9926 (Layout::layout_eh_frame): Ditto.
9927 (Layout::find_section_order_index): New method.
9928 (Layout::read_layout_from_file): New method.
9929 * layout.h (Layout::find_section_order_index): New method.
9930 (Layout::read_layout_from_file): New method.
9931 (Layout::input_section_position_): New private member.
9932 (Layout::input_section_glob_): New private member.
9933 * main.cc (main): Call read_layout_from_file here.
9934 * options.h (--section-ordering-file): New option.
9935 * output.cc (Output_section::input_section_order_specified_): New
9936 member.
9937 (Output_section::Output_section): Initialize new member.
9938 (Output_section::add_input_section): Add new parameter.
9939 Keep input sections when --section-ordering-file is used.
9940 (Output_section::set_final_data_size): Sort input sections when
9941 section ordering file is specified.
9942 (Output_section::Input_section_sort_entry): Add new parameter.
9943 Check sorting type.
9944 (Output_section::Input_section_sort_entry::compare_section_ordering):
9945 New method.
9946 (Output_section::Input_section_sort_compare::operator()): Change to
9947 consider section_order_index.
9948 (Output_section::Input_section_sort_init_fini_compare::operator()):
9949 Change to consider section_order_index.
9950 (Output_section::Input_section_sort_section_order_index_compare
9951 ::operator()): New method.
9952 (Output_section::sort_attached_input_sections): Change to sort
9953 according to section order when specified.
9954 (Output_section::add_input_section<32, true>): Add new parameter.
9955 (Output_section::add_input_section<64, true>): Add new parameter.
9956 (Output_section::add_input_section<32, false>): Add new parameter.
9957 (Output_section::add_input_section<64, false>): Add new parameter.
9958 * output.h (Output_section::add_input_section): Add new parameter.
9959 (Output_section::input_section_order_specified): New
9960 method.
9961 (Output_section::set_input_section_order_specified): New method.
9962 (Input_section::Input_section): Initialize section_order_index_.
9963 (Input_section::section_order_index): New method.
9964 (Input_section::set_section_order_index): New method.
9965 (Input_section::section_order_index_): New member.
9966 (Input_section::Input_section_sort_section_order_index_compare): New
9967 struct.
9968 (Output_section::input_section_order_specified_): New member.
9969 * script-sections.cc (is_wildcard_string): Delete and move modified
9970 method to gold.h.
9971 (Output_section_element_input::Output_section_element_input): Modify
9972 call to is_wildcard_string.
9973 (Output_section_element_input::Input_section_pattern
9974 ::Input_section_pattern): Ditto.
9975 (Output_section_element_input::Output_section_element_input): Ditto.
9976 * testsuite/Makefile.am (final_layout): New test case.
9977 * testsuite/Makefile.in: Regenerate.
9978 * testsuite/final_layout.cc: New file.
9979 * testsuite/final_layout.sh: New file.
9980
9981 2010-06-01 Rafael Espindola <espindola@google.com>
9982
9983 * plugin.cc (Plugin::load): Pass the output name to the plugin.
9984
9985 2010-06-01 Rafael Espindola <espindola@google.com>
9986
9987 * plugin.cc (Sized_pluginobj::::do_add_symbols): Correctly set the
9988 visibility of symbols.
9989
9990 2010-05-27 Doug Kwan <dougkwan@google.com>
9991
9992 * object.cc (Sized_relobj::do_finalize_local_symbols): Use offset
9993 from start of output section instead of address for a local symbol
9994 in a merged or relaxed section when doing a relocatable link.
9995
9996 2010-05-26 Rafael Espindola <espindola@google.com>
9997
9998 PR 11604
9999 * gold/object.cc(Sized_relobj::do_layout_deferred_sections): Avoid
10000 adding sections the garbage collector removed.
10001 * gold/testsuite/Makefile.am: Add test.
10002 * gold/testsuite/Makefile.in: Regenerate.
10003 * gold/testsuite/plugin_test_7.sh: New.
10004 * gold/testsuite/plugin_test_7_1.c: New.
10005 * gold/testsuite/plugin_test_7_2.c: New.
10006
10007 2010-05-26 Rafael Espindola <espindola@google.com>
10008
10009 * script-sections.cc (Output_section_definition::set_section_addresses):
10010 Check for --section-start.
10011
10012 2010-05-26 Doug Kwan <dougkwan@google.com>
10013
10014 * arm.cc (Arm_scan_relocatable_relocs): New class.
10015 (Target_arm::relocate_special_relocatable): New method.
10016 (Arm_relocate_functions::arm_branch_common): Handle relocatable link.
10017 (Arm_relocate_functions::thumb_branch_common): Same.
10018 (Target_arm::scan_relocatable_relocs): Use Arm_scan_relocatable_relocs
10019 instead of Default_scan_relocatable_relocs.
10020 * target-reloc.h (relocate_for_relocatable): Let target handle
10021 relocation strategy Relocatable_relocs::RELOC_SPECIAL.
10022 * target.h (Sized_target::relocate_special_relocatable): New method.
10023
10024 2010-05-25 Viktor Kutuzov <vkutuzov@accesssoftek.com>
10025
10026 * timer.cc: Only #include <sys/times.h> if HAVE_TIMES is defined.
10027
10028 2010-05-23 Doug Kwan <dougkwan@google.com>
10029
10030 * arm.cc (Arm_input_section::do_output_offset): Use convert_types
10031 instead of a cast.
10032 (Target_arm::apply_cortex_a8_workaround): Rewrite a conditional branch
10033 with a direct branch, not a conditional branch, to a stub.
10034 * merge.cc (Output_merge_base::record_input_section): New method
10035 defintion.
10036 (Output_merge_data::do_add_input_section): Record input section if
10037 keeps-input-sections flag is set.
10038 (Output_merge_string::do_add_input_section): Ditto.
10039 * merge.h (Output_merge_base::Output_merge_base): Initialize new data
10040 members KEEPS_INPUT_SECTIONS_, FIRST_RELOBJ_, FIRST_SHNDX_ and
10041 INPUT_SECTIONS_.
10042 (Output_merge_base::keeps_input_sections,
10043 Output_merge_base::set_keeps_input_sections,
10044 Output_merge_base::first_relobj, Output_merge_base::first_shndx): New
10045 method definitions.
10046 (Output_merge_base::Input_sections): New type declaration.
10047 (Output_merge_base::input_sections_begin,
10048 Output_merge_base::input_sections_end,
10049 Output_merge_base::do_set_keeps_input_sections): New method definitions.
10050 (Output_merge_base::bool keeps_input_sections_,
10051 Output_merge_base::first_relobj_, Output_merge_base::first_shndx_,
10052 Output_merge_base::input_sections_): New data members.
10053 (Output_merge_data::do_set_keeps_input_sections): New method
10054 defintion.
10055 (Output_merge_string::do_set_keeps_input_sections): Ditto.
10056 * output.cc (Output_section::Input_section::relobj): Move method
10057 defintion from class declaration to here and handle merge sections.
10058 (Output_section::Input_section::shndx): Ditto.
10059 (Output_section::Output_section): Remove initializations of removed
10060 data members and initialize new data member LOOKUP_MAPS_.
10061 (Output_section::add_input_section): Set keeps-input-sections flag
10062 for a newly created merge output section as appropriate. Adjust code
10063 to use Output_section_lookup_maps class.
10064 (Output_section::add_relaxed_input_section): Adjst code for lookup
10065 maps code refactoring.
10066 (Output_section::add_merge_input_section): Add a new parameter
10067 KEEPS_INPUT_SECTION. Adjust code to use Output_section_lookup_maps
10068 class. If adding input section to a newly created merge output
10069 section fails, remove the new merge section.
10070 (Output_section::convert_input_sections_in_list_to_relaxed_input_sections):
10071 Adjust code for use of the Output_section_lookup_maps class.
10072 (Output_section::find_merge_section): Ditto.
10073 (Output_section::build_lookup_maps): New method defintion.
10074 (Output_section::find_relaxed_input_section): Adjust code to use
10075 Output_section_lookup_maps class.
10076 (Output_section::get_input_sections): Export merge sections. Adjust
10077 code to use Output_section_lookup_maps class.
10078 (Output_section:::add_script_input_section): Adjust code to use
10079 Output_section_lookup_maps class. Update lookup maps for merge
10080 sections also.
10081 (Output_section::discard_states): Use Output_section_lookup_maps.
10082 (Output_section::restore_states): Same.
10083 * output.h (Merge_section_properties): Move class defintion out of
10084 Output_section.
10085 (Output_section_lookup_maps): New class.
10086 (Output_section::Input_section::is_merge_section): New method
10087 defintion.
10088 (Output_section::Input_section::relobj): Move defintion out of class
10089 defintion. Declare method only.
10090 (Output_section::Input_section::shndx): Ditto.
10091 (Output_section::Input_section::output_merge_base): New method defintion.
10092 (Output_section::Input_section::u2_.pomb): New union field.
10093 (Output_section::Merge_section_by_properties_map,
10094 Output_section::Output_section_data_by_input_section_map,
10095 Output_section::Ouptut_relaxed_input_section_by_input_section_map):
10096 Remove types.
10097 (Output_section::add_merge_input_section): Add new parameter
10098 KEEPS_INPUT_SECTIONS.
10099 (Output_section::build_lookup_maps): New method declaration.
10100 (Output_section::merge_section_map_,
10101 Output_section::merge_section_by_properties_map_,
10102 Output_section::relaxed_input_section_map_,
10103 Output_section::is_relaxed_input_section_map_valid_): Remove data
10104 members.
10105 (Output_section::lookup_maps_): New data member.
10106
10107 2010-05-21 Doug Kwan <dougkwan@google.com>
10108
10109 PR gold/11619
10110 * arm.cc (Arm_input_section::do_output_offset): Add a cast to
10111 avoid a compilation error.
10112
10113 2010-05-19 Rafael Espindola <espindola@google.com>
10114
10115 * script-sections.cc (Output_section_definition::allocate_to_segment):
10116 Update the phdrs_list even when the output section is NULL.
10117 * testsuite/Makefile.am: Add test.
10118 * testsuite/Makefile.in: Regenerate.
10119 * testsuite/script_test_9.cc: New.
10120 * testsuite/script_test_9.sh: New.
10121 * testsuite/script_test_9.t: New.
10122
10123 2010-05-19 Doug Kwan <dougkwan@google.com>
10124
10125 * arm.cc (Arm_input_section::original_size): New method.
10126 (Arm_input_section::do_addralign): Add a cast.
10127 (Arm_input_section::do_output_offset): Remove static cast.
10128 (Arm_input_section::original_addralign,
10129 Arm_input_section::original_size_): Change type to uint32_t.
10130 (Arm_input_section::init): Add safe casts for section alignment
10131 and size.
10132 (Arm_input_section::set_final_data_size): Do not set address and
10133 offset of stub table.
10134 (Arm_output_section::fix_exidx_coverage): Change use of of
10135 Output_section::Simple_input_section to that of
10136 Output_section::Input_section.
10137 (Target_arm::do_relax): Set addresses and file offsets of Stub_tables
10138 except for the first pass.
10139 * output.cc (Output_section::get_input_sections): Change type of
10140 input_sections to std::list<Input_section>.
10141 (Output_section::add_script_input_section): Rename from
10142 Output_section::add_simple_input_section. Change type of SIS
10143 parameter from Simple_input_section to Input_section.
10144 * output.h (Output_section::Simple_input_section): Remove class.
10145 (Output_section::Input_section): Change class visibility to public.
10146 (Output_section::Input_section::addralign): Use stored alignments
10147 for special input sections if set.
10148 (Output_section::Input_section::set_addralign): New method.
10149 (Output_section::get_input_sections): Change parameter type from
10150 list of Simple_input_section to list of Input_section.
10151 (Output_section::add_script_input_section): Rename from
10152 Output_section::add_simple_input_section. Change first parameter's
10153 type from Simple_input_section to Input_section and remove the
10154 second and third parameters.
10155 * script-sections.cc (Input_section::Input_section_list): Change
10156 type to list of Output_section::Input_section/
10157 (Input_section_info::Input_section_info): Change parameter type of
10158 INPUT_SECTION to Output_section::Input_section.
10159 (Input_section_info::input_section): Change return type.
10160 (Input_section_info::input_section_): Change type to
10161 Output_section::Input_section.
10162 (Output_section_element_input::set_section_addresses): Adjust code
10163 to use Output_section::Input_section instead of
10164 Output_section::Simple_input_section. Adjust code for renaming
10165 of Output_section::add_simple_input_section.
10166 (Orphan_output_section::set_section_addresses): Ditto.
10167
10168 2010-05-18 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
10169
10170 * gold.h (Unordered_multimap, Unordered_map): Fix defines for
10171 when neither HAVE_TR1_UNORDERED_MAP nor HAVE_EXT_HASH_MAP are set.
10172
10173 2010-05-18 Rafael Espindola <espindola@google.com>
10174
10175 * options.cc (General_options::finalize): Handle -nostdlib.
10176 * options.h (nostdlib): New option.
10177 * script.cc (script_add_search_dir): Handle -nostdlib.
10178
10179 2010-05-12 Doug Kwan <dougkwan@google.com>
10180
10181 * arm.cc (Target_arm::do_finalize_sections): Create an empty
10182 attributes section only if there no attributes section after merging.
10183 (Target_arm::merge_object_attributes): Move value of
10184 Tag_MPextension_use_legacy to that of Tag_MPextension_use.
10185 Handle Tag_DIV_use and Tag_MPextension_use_legacy.
10186 * testsuite/Makefile.am (check_SCRIPTS): Add arm_attr_merge.sh
10187 (check_DATA): Add arm_attr_merge_6.stdout, arm_attr_merge_6r_stdout
10188 and arm_attr_merge_7.stdout.
10189 (arm_attr_merge_6.stdout, arm_attr_merge_6 arm_attr_merge_6a.o
10190 arm_attr_merge_6b.o, arm_attr_merge_6r.stdout, arm_attr_merge_6r,
10191 arm_attr_merge_7.stdout, arm_attr_merge_7, arm_attr_merge_7a.o,
10192 arm_attr_merge_7b.o): New rules.
10193 (MOSTLYCLEANFILES): Add arm_attr_merge_6, arm_attr_merge_6r and
10194 arm_attr_merge_7
10195 * testsuite/Makefile.in: Regenerate.
10196 * testsuite/arm_attr_merge.sh: New file.
10197 * testsuite/arm_attr_merge_[67][ab].s: Same.
10198
10199 2010-05-05 Nick Clifton <nickc@redhat.com>
10200
10201 * po/es.po: Updated Spanish translation.
10202
10203 2010-04-27 H.J. Lu <hongjiu.lu@intel.com>
10204
10205 * Makefile.am (install-exec-local): Properly install gold as
10206 default cross linker.
10207 * Makefile.in: Regenerated.
10208
10209 2010-04-27 H.J. Lu <hongjiu.lu@intel.com>
10210 Nick Clifton <nickc@redhat.com>
10211
10212 * configure.ac (install_as_default): Define and set to false
10213 unless --enable-gold or --enable-gold=both/gold has been
10214 specified.
10215 * configure: Regenerate.
10216
10217 * Makefile.am (install-exec-local): Install the executable as
10218 'ld.gold'. If install_as_default is true then also install it as
10219 'ld'.
10220 * Makefile.in: Regenerated.
10221
10222 2010-04-24 Ian Lance Taylor <iant@google.com>
10223
10224 * layout.cc (Layout::layout_reloc): In relocatable link don't
10225 combine reloc sections for grouped sections.
10226
10227 2010-04-23 Sriraman Tallam <tmsriram@google.com>
10228
10229 * gc.h (gc_process_relocs): Pass information on relocs pointing to
10230 sections that are not ordinary to icf.
10231 * icf.cc (get_section_contents): Handle relocation pointing to section
10232 with no object or shndx information.
10233 * testsuite/Makefile.am: Remove icf_virtual_function_folding_test.sh
10234 * testsuite/Makefile.in: Regenerate.
10235 * testsuite/icf_virtual_function_folding_test.cc: Remove printf.
10236 * testsuite/icf_virtual_function_folding_test.sh: Delete file.
10237
10238 2010-04-22 Ian Lance Taylor <iant@google.com>
10239
10240 * expression.cc (Expression::Expression_eval_info): Add
10241 result_alignment_pointer field.
10242 (Expression::eval_with_dot): Add result_alignment_pointer
10243 parameter. Change all callers.
10244 (Expression::eval_maybe_dot): Likewise.
10245 (class Binary_expression): Add alignment_pointer parameter to
10246 left_value and right_value. Change all callers.
10247 (BINARY_EXPRESSION): Set result alignment.
10248 (class Trinary_expression): Add alignment_pointer parameter to
10249 arg2_value and arg3_value. Change all callers.
10250 (Trinary_cond::value): Set result alignment.
10251 (Max_expression::value, Min_expression::value): Likewise.
10252 (Align_expression::value): Likewise.
10253 * script-sections.cc (class Sections_element): Add dot_alignment
10254 parameter to set_section_addresses virtual function. Update
10255 instantiations.
10256 (class Output_section_element): Likewise.
10257 (Script_sections::create_segments): Add dot_alignment parameter.
10258 Change all callers.
10259 (Script_sections::create_segments_from_phdrs_clause): Likewise.
10260 (Script_sections::set_phdrs_clause_addresses): Likewise.
10261 * script-sections.h: Update declarations.
10262 * script.h: Update declarations.
10263 * output.h (Output_segment::set_minimum_p_align): Don't decrease
10264 min_p_align.
10265 * testsuite/script_test_3.t: Set large alignment.
10266 * testsuite/script_test_3.sh: Make sure that at least one LOAD
10267 segment has expected alignment.
10268
10269 2010-04-22 Nick Clifton <nickc@redhat.com>
10270
10271 * po/gold.pot: Updated by the Translation project.
10272 * po/vi.po: Updated Vietnamese translation.
10273
10274 2010-04-22 H.J. Lu <hongjiu.lu@intel.com>
10275
10276 * testsuite/Makefile.am (check_PROGRAMS): Add
10277 icf_virtual_function_folding_test.
10278 * testsuite/Makefile.in: Regenerated.
10279
10280 2010-04-15 Andrew Haley <aph@redhat.com>
10281
10282 * options.h (merge_exidx_entries): New option.
10283 * arm.cc (class Arm_exidx_fixup): Add new arg, merge_exidx_entries.
10284 (class Arm_exidx_fixup::merge_exidx_entries_): New member.
10285 (Output_section::fix_exidx_coverage): Add new arg, merge_exidx_entries.
10286 (Target_arm::merge_exidx_entries): New function.
10287 (process_exidx_entry): Don't merge if merge_exidx_entries_ is false.
10288 (Arm_output_section::fix_exidx_coverage): Pass merge_exidx_entries
10289 to Arm_exidx_fixup constructor.
10290 Add new arg, merge_exidx_entries.
10291 (Target_arm::fix_exidx_coverage): pass merge_exidx_entries to
10292 Arm_output_section::fix_exidx_coverage.
10293
10294 2010-04-18 Sriraman Tallam <tmsriram@google.com>
10295
10296 * icf.cc (get_section_contents): Check for preemptible functions.
10297 Ignore addend when appropriate.
10298 * symtab.cc (should_add_dynsym_entry): Add new parameter. Check for
10299 section folded.
10300 (add_from_relobj): Check for section folded.
10301 (set_dynsym_indexes): Fix call to should_add_dynsym_entry.
10302 * symtab.h (should_add_dynsym_entry): Add new parameter.
10303 * target-reloc.h (scan_relocs): Check for section folded.
10304 * x86_64.cc (Target_x86_64::Scan::possible_function_pointer_reloc):
10305 Check reloc types for function pointers in shared objects.
10306 * testsuite/Makefile.am (icf_virtual_function_folding_test): New test
10307 case.
10308 (icf_preemptible_functions_test): New test case.
10309 (icf_string_merge_test): New test case.
10310 * testsuite.Makefile.in: Regenerate.
10311 * testsuite/icf_safe_so_test.sh: Change to not fold foo_glob and
10312 bar_glob. Refactor code.
10313 * testsuite/icf_preemptible_functions_test.cc: New file.
10314 * testsuite/icf_preemptible_functions_test.sh: New file.
10315 * testsuite/icf_string_merge_test.cc: New file.
10316 * testsuite/icf_string_merge_test.sh: New file.
10317 * testsuite/icf_virtual_function_folding_test.cc: New file.
10318 * testsuite/icf_virtual_function_folding_test.sh: New file.
10319
10320 2010-04-14 Doug Kwan <dougkwan@google.com>
10321
10322 * arm.cc (Arm_output_section::fix_exidx_coverage): Mark object
10323 for local symbol recounting if we remove a section due to ICF.
10324 * gold.cc (queue_middle_gc_tasks): Create a dummy blocker if
10325 there are no regular objects in input.
10326
10327 2010-04-13 Doug Kwan <dougkwan@google.com>
10328
10329 * arm.cc (Arm_input_section::set_final_data_size): Compute
10330 accurate final data size instead of using current data size.
10331
10332 2010-04-09 Doug Kwan <dougkwan@google.com>
10333
10334 * layout.cc (Layout::choose_output_section): Handle script section
10335 types.
10336 (Layout::make_output_section_for_script): Add section type parameter.
10337 Handle script section types.
10338 * layout.h (Layout::make_output_section_for_script): Add section
10339 type parameter.
10340 * output.cc (Output_section::Output_section): Initialize data member
10341 is_noload_.
10342 (Output_section::do_reset_address_and_file_offset): Do not set address
10343 to 0 if section is a NOLOAD section.
10344 * output.h (Output_section::is_noload): New method.
10345 (Output_section::set_is_noload): Ditto.
10346 (Output_section::is_noload_): New data member.
10347 * script-c.h (Script_section_type): New enum type.
10348 (struct Parser_output_section_header): Add new file section_type.
10349 * script-sections.cc (Sections_element::output_section_name): Add
10350 parameter for returning script section type.
10351 (Output_section_definition::output_section_name): Ditto.
10352 (Output_section_definition::section_type)P; New method.
10353 (Output_section_definiton::script_section_type_name): Ditto.
10354 (Output_section_definition::script_section_type_): New data member.
10355 (Output_section_definition::Output_section_definition): Initialize
10356 data member Output_section_definition::script_section_type_.
10357 (Output_section_definition::create_sections): Pass script section type
10358 to Layout::make_output_section_for_script.
10359 (Output_section_definition::output_section_name): Return script
10360 section type to caller.
10361 (Output_section_definition::set_section_address): Do not advance
10362 dot value and load address if section type is NOLOAD. Set address
10363 of NOLOAD sections regardless of section flags.
10364 (Output_section_definition::print): Print section type if it is
10365 not SCRIPT_SECTION_TYPE_NONE.
10366 (Output_section_definition::section_type): New method.
10367 (Output_section_definition::script_section_type_name): Ditto.
10368 (Script_sections::output_section_name): Add new parameter
10369 PSECTION_TYPE for returning script section type. Pass it to
10370 section elements. Handle discard sections.
10371 (Sort_output_sections::operator()): Handle NOLOAD sections.
10372 * script-sections.h (Script_sections::Section_type): New enum type.
10373 (Script_sections::output_section_name): Add a new parameter for
10374 returning script section type.
10375 * script.cc (script_keyword_parsecodes): Add keywords COPY, DSECT,
10376 INFO and NOLOAD.
10377 * yyscript.y (union): Add new field SECTION_TYPE.
10378 (COPY, DSECT, INFO, NOLOAD): New tokens.
10379 (opt_address_and_section_type): Change type to output_section_header.
10380 (section_type): New non-terminal
10381 (section_header): Handle section type.
10382 (opt_address_and_section_type): Return section type value.
10383
10384 2010-04-09 H.J. Lu <hongjiu.lu@intel.com>
10385
10386 * testsuite/plugin_common_test_1.c (foo): Add prototype.
10387 * testsuite/plugin_common_test_2.c (foo): Likewise.
10388
10389 2010-04-08 Doug Kwan <dougkwan@google.com>
10390
10391 * merge.cc (Output_merge_data::set_final_data_size): Handle empty
10392 Output_merge_data.
10393 * output.cc (Output_section::add_merge_input_section): Simplify
10394 code and return status of Output_merge_base::add_input_section.
10395 Update merge section map only if Output_merge_base::add_input_section
10396 returns true.
10397
10398 2010-04-07 Doug Kwan <dougkwan@google.com>
10399
10400 * arm.cc (Arm_relobj::scan_section_for_cortex_a8_erratum): Warn
10401 if section is marked as containing instructions but has no mapping
10402 symbols.
10403 (Arm_relobj::do_count_local_symbols): Call adjust_sym_shndx to get
10404 correct section index.
10405 (Arm_relobj::find_linked_text_section): Ditto.
10406
10407 2010-04-07 Cary Coutant <ccoutant@google.com>
10408
10409 * archive.cc (include_member): Destroy Read_symbols_data object before
10410 releasing file.
10411 * object.cc (Read_symbols_data::~Read_symbols_data) New destructor.
10412 * object.h (Read_symbols_data::Read_symbols_data) New constructor.
10413 (Read_symbols_data::~Read_symbols_data) New destructor.
10414 (Section_relocs::Section_relocs) New constructor.
10415 (Section_relocs::~Section_relocs) New destructor.
10416 (Read_relocs_data::Read_relocs_data) New constructor.
10417 (Read_relocs_data::~Read_relocs_data) New destructor.
10418 * testsuite/binary_unittest.cc (Sized_binary_test): Set sd member
10419 pointers to NULL after deleting.
10420
10421 2010-04-07 Doug Kwan <dougkwan@google.com>
10422
10423 * arm.cc: Replace "endianity" with "endianness" in comments.
10424 (Arm_exidx_cantunwind): Ditto.
10425 (Arm_relobj::Arm_relobj): Initialize merge_flags_and_attribures.
10426 (Arm_relobj::merge_flags_and_attributes): New method.
10427 (Arm_relobj::merge_flags_and_attributes_): New data member.
10428 (Arm_exidx_cantunwind::do_fixed_endian_write): Fix formatting.
10429 (Arm_relobj::scan_sections_for_stubs): Ditto.
10430 (Arm_relobj::do_read_symbols): Check to see if we really want to
10431 merge processor-specific flags and attributes. Exit early if
10432 an object is empty except for section names and the undefined symbol.
10433 (Target_arm::do_finalize_sections): Move check for ELF format to
10434 Arm_relobj::do_read_symbols. Merge processor specific flags and
10435 attributes from a regular object only when we have determined that
10436 it is aapropriate. Do not create an .ARM.attributes section in
10437 output if there is no regular input object.
10438 (Target_arm::merge_processor_specific_flags): Check
10439 --warn-mismatch before printing any error.
10440 (Target_arm::merge_object_attributes): Ditto.
10441 * gold.cc (queue_middle_tasks): Handle the case in which there is
10442 no regular object in input.
10443 * options.cc (General_options::parse_EB): New method.
10444 (General_options::parse_EL): Same.
10445 (General_options::General_options): Initialize endianness_.
10446 * options.h (-EB, -EL, -no-pipeline-knowledge, -p, --warn-mismatch):
10447 New options.
10448 (General_options::Endianness): New enum.
10449 (General_options::endianness): New method.
10450 (General_options::endianness_): New data member.
10451 * parameters.cc (Parameters::set_options): Check target endianness.
10452 (Parameters::set_target_once): Ditto.
10453 (Parameters::check_target_endianness): New method.
10454 (parameters_force_valid_target): If either -EL or -EB is specified,
10455 use it to define endianness of default target.
10456 * parameters.h (Parameters::check_target_endianness): New method
10457 declaration.
10458 * target.h (class Target): Change "endianity" to "endianness"
10459 in comments.
10460
10461 2010-04-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
10462
10463 * configure.ac (AM_INIT_AUTOMAKE): Add option no-dist.
10464 * configure: Regenerate.
10465 * Makefile.in: Regenerate.
10466 * testsuite/Makefile.in: Regenerate.
10467
10468 2010-04-06 Cary Coutant <ccoutant@google.com>
10469
10470 gcc PR lto/42757
10471 * plugin.cc (Pluginobj::get_symbol_resolution_info): Check for
10472 prevailing definitions of common symbols.
10473 * testsuite/plugin_test_6.sh: New test case.
10474 * testsuite/plugin_common_test_1.c: New test case.
10475 * testsuite/plugin_common_test_2.c: New test case.
10476 * testsuite/Makefile.am (plugin_test_6): New test case.
10477 * testsuite/Makefile.in: Regenerate.
10478
10479 2010-04-06 Nick Clifton <nickc@redhat.com>
10480
10481 * po/vi.po: New Vietnamese translation.
10482
10483 2010-03-30 Doug Kwan <dougkwan@google.com>
10484
10485 * arm.cc (Target_arm::using_thumb_only): Handle v6-M
10486
10487 2010-03-25 Doug Kwan <dougkwan@google.com>
10488
10489 * gold/arm.cc (Arm_exidx_fixup::update_offset_map): Rearrange code
10490 to avoid a conversion warning on a 32-bit host.
10491
10492 2010-03-24 Ian Lance Taylor <iant@google.com>
10493
10494 * testsuite/script_test_3.t: Add a TLS segment.
10495 * testsuite/Makefile.am (check_PROGRAMS): Add
10496 tls_phdrs_script_test.
10497 (tls_phdrs_script_test_SOURCES): Define.
10498 (tls_phdrs_script_test_DEPENDENCIES): Define.
10499 (tls_phdrs_script_test_LDFLAGS): Define.
10500 (tls_phdrs_script_test_LDADD): Define.
10501 * testsuite/Makefile.in: Rebuild.
10502
10503 2010-03-23 Cary Coutant <ccoutant@google.com>
10504
10505 * fileread.cc (find_or_make_view): Fix comment.
10506
10507 2010-03-23 Ian Lance Taylor <iant@google.com>
10508
10509 * script-sections.cc (class Orphan_section_placement): Define
10510 PLACE_TLS and PLACE_TLS_BSS.
10511 (Orphan_section_placement::Orphan_section_placement): Initialize
10512 new places.
10513 (Orphan_section_placement::find_place): Handle SHF_TLS sections.
10514 * testsuite/Makefile.am (check_PROGRAMS): Add tls_script_test.
10515 (tls_script_test_SOURCES): Define.
10516 (tls_script_test_DEPENDENCIES): Define.
10517 (tls_script_test_LDFLAGS): Define.
10518 (tls_script_test_LDADD): Define.
10519 * testsuite/Makefile.in: Rebuild.
10520
10521 2010-03-22 Doug Kwan <dougkwan@google.com>
10522
10523 * arm.cc (Arm_relocate_functions::abs8,
10524 Arm_relocate_functions::abs16): Use correct check for overflow
10525 specified in the ARM ELF specs.
10526 (Arm_relocate_functions): thumb_branch_common. Handle bit 1 of branch
10527 target of a BLX instruction specially.
10528 (Reloc_stub::stub_type_for_reloc): Ditto.
10529 (Relocate::relocate): Use symbolic names instead of numeric relocation
10530 codes to report error.
10531 (Target_arm::do_relox): Reduce default stub-group size for Cortex-A8
10532 workaround.
10533 * testsuite/Makefile.am (check_DATA): add thumb_blx_in_range.stdout,
10534 thumb_blx_out_of_range.stdout, thumb2_blx_in_range.stdout and
10535 thumb2_blx_out_of_range.stdout
10536 (thumb_bl_out_of_range, thumb_bl_out_of_range.o,
10537 thumb2_bl_out_of_range, thumb2_bl_out_of_range.o): Fix dependenices.
10538 (thumb_blx_in_range.stdout, thumb_blx_in_range, thumb_blx_in_range.o,
10539 thumb_blx_out_of_range.stdout, thumb_blx_out_of_range,
10540 thumb_blx_out_of_range.o, thumb2_blx_in_range.stdout,
10541 thumb2_blx_in_range, thumb2_blx_in_range.o,
10542 thumb2_blx_out_of_range.stdout, thumb2_blx_out_of_range,
10543 thumb2_blx_out_of_range.o): New rules.
10544 (MOSTLYCLEANFILES): Add thumb_blx_in_range, thumb_blx_out_of_range,
10545 thumb2_blx_in_range and thumb2_blx_out_of_range.
10546 * testsuite/Makefile.in: Regenerate.
10547 * arm_branch_in_range.sh: Add tests for THUMB BLX.
10548 * testsuite/thumb_blx_in_range.s: New file.
10549 * testsuite/thumb_blx_out_of_range.s: New file.
10550
10551 2010-03-22 Rafael Espindola <espindola@google.com>
10552
10553 * archive.cc (Should_include): Move to archive.h.
10554 (should_include_member): Make it a member of Archive.
10555 (Lib_group): New.
10556 (Add_lib_group_symbols): New.
10557 * archive.h: Include options.h.
10558 (Archive_member): Moved from Archive.
10559 (Should_include): Moved from archive.cc.
10560 (Lib_group): New.
10561 (Add_lib_group_symbols): New.
10562 * dynobj.cc (do_should_include_member): New.
10563 * dynobj.h (do_should_include_member): New.
10564 * gold.cc (queue_initial_tasks): Update call to queue.
10565 * main.cc (main): Print lib group stats.
10566 * object.cc (do_should_include_member): New.
10567 * object.h: Include archive.h.
10568 (Object::should_include_member): New.
10569 (Object::do_should_include_member): New.
10570 (Sized_relobj::do_should_include_member): New.
10571 * options.cc (General_options::parse_start_lib): New.
10572 (General_options::parse_end_lib): New.
10573 (Input_arguments::add_file): Handle lib groups.
10574 (Input_arguments::start_group): Check we are not in a lib.
10575 (Input_arguments::start_lib): New.
10576 (Input_arguments::end_lib): New.
10577 * options.h (General_options): Add start_lib and end_lib.
10578 (Input_argument::lib_): New.
10579 (Input_argument::lib): New.
10580 (Input_argument::is_lib): New.
10581 (Input_file_lib): New.
10582 (Input_arguments::in_lib_): New.
10583 (Input_arguments::in_lib): New.
10584 (Input_arguments::start_lib): New.
10585 (Input_arguments::end_lib_): New.
10586 * plugin.cc (Pluginobj::get_symbol_resolution_info): Mark symbols
10587 in unused members as preempted.
10588 (Sized_pluginobj::do_should_include_member): New.
10589 * plugin.h (Sized_pluginobj::do_should_include_member): New.
10590 * readsyms.cc (Read_symbols::locks): If we are just reading a member,
10591 return the blocker.
10592 (Read_symbols::do_whole_lib_group): New.
10593 (Read_symbols::do_lib_group): New.
10594 (Read_symbols::do_read_symbols): Handle lib groups.
10595 (Read_symbols::get_name): Handle lib groups.
10596 * readsyms.h (Read_symbols): Add an archive member pointer.
10597 (Read_symbols::do_whole_lib_group): New.
10598 (Read_symbols::do_lib_group): New.
10599 (Read_symbols::member_): New.
10600 * script.cc (read_input_script): Update call to queue_soon.
10601
10602 2010-03-19 Doug Kwan <dougkwan@google.com>
10603
10604 * arm.cc (Stub_table::Stub_table): Initialize new data members
10605 Stub_table::reloc_stubs_size_ and Stub_table::reloc_stubs_addralign_.
10606 (Stub_table::add_reloc_stub): Assign stub offset and update
10607 Stub_table::reloc_stubs_size_ and Stub_table::reloc_stubs_addralign_.
10608 (Stub_table::reloc_stubs_size_, Stub_table::reloc_stubs_addralign_):
10609 New data members.
10610 (Stub_table::update_data_size_and_addralign): Use
10611 Stub_table::reloc_stubs_size_ and Stub_table::reloc_stubs_addralign_
10612 instead of going over all reloc stubs.
10613 (Stub_table::finalize_stubs): Do not assign reloc stub offsets.
10614 * stringpool.cc (Stringpool_template::Stringpool_template): Initialize
10615 Stringpool_template::offset_ to size of Stringpool_char.
10616 (Stringpool_template::new_key_offset): Remove code to initialize
10617 Stringpool_template::offset_.
10618 * stringpool.h (Stringpool_template::set_no_zero_null): Set
10619 Stringpool_template::offset_ to zero.
10620
10621 2010-03-15 Doug Kwan <dougkwan@google.com>
10622
10623 * stringpool.cc (Stringpool_template::Stringpool_template): Initialize
10624 offset_.
10625 (Stringpool_template::new_key_offset): New method.
10626 (Stringpool_template::add_string): Assign offsets when adding new
10627 strings.
10628 (Stringpool_template::set_string_offsets): Do not set string offsets
10629 when not optimizing.
10630 * stringpool.h (Chunked_vector::Chunked_vector): Initialize data
10631 member size_.
10632 (Chunked_vector::clear): Clear size_.
10633 (Chunked_vector::reserve): Call reserve method of all Element_vectors.
10634 (Chunked_vector::size): Return size_.
10635 (Chunked_vector::push_back): Use size_ to find insert position.
10636 (Chunked_vector::size_): New data member.
10637 (Stringpool_template::set_no_zero_null): Assert string set is empty.
10638 (Stringpool_template::new_key_offset): New method declaration.
10639 (Stringpool_template::offset_): New data member.
10640
10641 2010-03-15 Rafael Espindola <espindola@google.com>
10642
10643 * readsyms.cc (Read_symbols::do_read_symbols): Update calls to
10644 Add_symbols' constructor.
10645 * readsyms.h (Add_symbols): Remove the input_group member.
10646
10647 2010-03-10 Ian Lance Taylor <iant@google.com>
10648
10649 * reloc.cc (Sized_relobj::split_stack_adjust_reltype): Call the
10650 target to ask whether a reference to a symbol requires a stack
10651 split.
10652 * target.h (Target::is_call_to_non_split): New function.
10653 (Target::do_is_call_to_non_split): Declare virtual function.
10654 * target.cc: Include "symtab.h".
10655 (Target::do_is_call_to_non_split): New function.
10656 * i386.cc (Target_i386::do_is_call_to_non_split): New function.
10657
10658 2010-03-10 Cary Coutant <ccoutant@google.com>
10659
10660 * fileread.cc (File_read::~File_read): Don't delete whole_file_view_.
10661 (File_read::open[1]): Remove initial mapping of whole_file_view_.
10662 (File_read::open[2]): Add whole_file_view_ to list of views.
10663 (File_read::make_view): Remove test of whole_file_view_.
10664 (File_read::find_or_make_view): Create whole_file_view_ if
10665 necessary.
10666 (File_read::clear_views): Replace bool parameter with enum;
10667 adjust all callers. Don't delete views with permanent data;
10668 do delete cached views and views from archives if
10669 --no-keep-files-mapped is set. Set whole_file_view_ to NULL
10670 if clearing the corresponding view.
10671 * fileread.h (File_read::Clear_views_mode): New enum.
10672 (File_read::View::is_permanent_view): New method.
10673 (File_read::clear_views): Replace bool parameter
10674 with enum; adjust all callers.
10675 * options.h (General_options): Change keep_files_mapped option;
10676 add map_whole_files.
10677 * readsyms.cc (Add_symbols::run): Delete sd_ object before
10678 releasing the file.
10679 * reloc.cc (Scan_relocs::run): Delete rd_ object before releasing
10680 the file.
10681
10682 2010-03-10 David S. Miller <davem@davemloft.net>
10683
10684 * sparc.cc (Target_sparc::Scan::local): Accept R_SPARC_WPLT30.
10685
10686 2010-03-09 Sriraman Tallam <tmsriram@google.com>
10687
10688 * icf.cc (get_section_contents): Add '@' marker after processing the
10689 merge reloc.
10690
10691 2010-03-08 Doug Kwan <dougkwan@google.com>
10692
10693 * gold/arm.cc (Arm_exidx_fixup::update_offset_map): Fix build breakage
10694 due to a conversion warning.
10695 (Arm_relobj::update_output_local_symbol_count): Check for local
10696 symbol with unset output index.
10697
10698 2010-03-05 Ian Lance Taylor <iant@google.com>
10699
10700 * options.h (class General_options): Add --spare-dynamic-tags.
10701 * output.cc (Output_data_dynamic::set_final_data_size): Implement
10702 --spare-dynamic-tags.
10703
10704 2010-03-05 Ian Lance Taylor <iant@google.com>
10705
10706 * incremental.cc: Include "libiberty.h".
10707
10708 2010-03-05 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
10709
10710 * dynobj.h (Verdef::Verdef): Add is_info arg, is_info member
10711 function, is_info_ member.
10712 * dynobj.cc (Verdef::write): Set VER_FLG_INFO if this->is_info_.
10713 (Versions::Versions): Update caller.
10714 (Versions::define_base_version): Likewise.
10715 (Versions::add_def): Likewise.
10716
10717 2010-03-03 Sriraman Tallam <tmsriram@google.com>
10718
10719 * i386.cc (Target_i386::can_check_for_function_pointers): New function.
10720 (Scan::possible_function_pointer_reloc): New function.
10721 (Scan::local_reloc_may_be_function_pointer): Change to call
10722 possible_function_pointer_reloc.
10723 (Scan::global_reloc_may_be_function_pointer): Ditto.
10724 * icf.h (Icf::check_section_for_function_pointers): Change to reject
10725 relocations in ".data.rel.ro._ZTV" section.
10726 * testsuite/icf_safe_so_test.sh: Change to pass i386.
10727 * testsuite/icf_safe_so_test.cc: Ditto.
10728 * testsuite/icf_safe_test.cc: Ditto.
10729 * testsuite/icf_safe_test.sh: Ditto.
10730
10731 2010-03-03 Viktor Kutuzov <vkutuzov@accesssoftek.com>
10732 Ian Lance Taylor <iant@google.com>
10733
10734 * target-reloc.h (relocate_section): Check the symbol table index
10735 for -1U before setting the local symbol index.
10736 (scan_relocatable_relocs): If copying the relocation, record that
10737 the local symbol is required.
10738 * object.h (Symbol_value::is_output_symtab_index_set): New
10739 function.
10740 (Symbol_value::may_be_discarded_from_output_symtab): New
10741 function.
10742 (Symbol_value::has_output_symtab_entry): New function.
10743 (Symbol_value::needs_output_symtab_entry): Remove.
10744 (Symbol_value::output_symtab_index): Make sure the symbol index is
10745 set.
10746 (Symbol_value::set_output_symtab_index): Make sure the symbol
10747 index is not set. Make sure the new index is valid.
10748 (Symbol_value::set_must_have_output_symtab_entry): New function.
10749 (Symbol_value::has_output_dynsym_entry): New function.
10750 (Symbol_value::set_output_dynsym_index): Make sure the new index
10751 is valid.
10752 (Sized_relobj::set_must_have_output_symtab_entry): New function.
10753 * object.cc (Sized_relobj::do_count_local_symbols): Only discard a
10754 local symbol if permitted.
10755 (Sized_relobj::do_finalize_local_symbols): Call
10756 is_output_symtab_index_set rather than needs_output_symtab_entry.
10757 (Sized_relobj::write_local_symbols): Call has_output_symtab_entry
10758 rather than needs_output_symtab_entry. Call
10759 has_output_dynsym_entry rather than needs_output_dynsym_entry.
10760 * arm.cc (Arm_relobj::update_output_local_symbol_count): Call
10761 is_output_symtab_index_set rather than needs_output_symtab_entry.
10762 * testsuite/discard_locals_relocatable_test.c: New file.
10763 * testsuite/discard_locals_test.sh: Test -r.
10764 * testsuite/Makefile.am (check_DATA): Add
10765 discard_locals_relocatable_test1.syms,
10766 discard_local_relocatable_test2.syms.
10767 (MOSTLYCLEANFILES): Likewise. Also add
10768 discard_locals_relocatable_test1.lout and
10769 discard_locals_relocatable_test2.out.
10770 (discard_locals_relocatable_test1.syms): New target.
10771 (discard_locals_relocatable_test.o): New target.
10772 (discard_locals_relocatable_test1.out): New target.
10773 (discard_locals_relocatable_test2.syms): New target.
10774 (discard_locals_relocatable_test2.out): New target.
10775 (various): Add missing ../ld-new dependencies.
10776 * testsuite/Makefile.in: Rebuild.
10777
10778 2010-03-03 Nick Clifton <nickc@redhat.com>
10779
10780 * po/fi.po: New Finnish translation.
10781
10782 2010-03-01 Doug Kwan <dougkwan@google.com>
10783
10784 * layout.cc (Layout::Layout): Force section types of .init_array*,
10785 .preinit_array* and .fini_array* sections.
10786 * output.cc (Output_section::Input_section_sort_entry::has_priority):
10787 Fix check of return value of std::string::find.().
10788 (Output_section::Input_section_sort_compare::operator()): Remove
10789 comment about .init_array.
10790 (Output_section::Input_section_sort_init_fini_compare::operator()):
10791 New method.
10792 (Output_section::sort_attached_input_sections): Handle .init_array
10793 and .fini_array specially.
10794 * output.h (Output_section::Inut_section_sort_compare): Update
10795 comment.
10796 (Output_section::Input_section_sort_init_fini_compare): New struct.
10797
10798 2010-02-26 Doug Kwan <dougkwan@google.com>
10799
10800 * arm.cc (Target_arm::Relocate::reloc_is_non_pic): Treat
10801 R_ARM_PREL31 and R_ARM_SBREL31 as position independent.
10802 * testsuite/debug_msg.sh: Avoid matching source line number for
10803 use of global variable undef_int.
10804
10805 2010-02-26 Doug Kwan <dougkwan@google.com>
10806
10807 * arm.cc (Target_arm::scan_reloc_for_stub): Move code handling
10808 R_ARM_V4BX to Target_arm::scan_reloc_section_for_stubs.
10809 (Target_arm::scan_reloc_section_for_stubs): Instead of calling
10810 scan_reloc_for_stub, do all processing of R_ARM_V4BX here.
10811 * options.cc (General_options::General_options): Initialize member
10812 fix_v4bx_.
10813 * testsuite/Makefile.am (check_SCRIPTS): Add arm_fix_v4bx.sh
10814 (check_DATA): Add arm_fix_v4bx.stdout, arm_fix_v4bx_interworking.stdout
10815 and rm_no_fix_v4bx.stdout
10816 (arm_fix_v4bx.stdout, arm_fix_v4bx, arm_fix_v4bx.o,
10817 arm_fix_v4bx_interworking.stdout, arm_fix_v4bx_interworking,
10818 arm_no_fix_v4bx.stdout, arm_no_fix_v4bx): New make rules.
10819 (MOSTLYCLEANFILES): Add arm_fix_v4bx, arm_fix_v4bx_interworking
10820 and arm_no_fix_v4bx.
10821 * Makefile.in: Regenerate.
10822 * testsuite/arm_fix_v4bx.s: New file.
10823 * testsuite/arm_fix_v4bx.sh: Ditto.
10824
10825 2010-02-24 Doug Kwan <dougkwan@google.com>
10826
10827 * arm.cc (Target_arm::got_section): Make the .got section the first
10828 non RELRO section in the data segment.
10829 * testsuite/script_test_5.sh: Fix match patterns to avoid matching
10830 suffixes of section names.
10831
10832 2010-02-24 Doug Kwan <dougkwan@google.com>
10833
10834 * arm.cc (Target_arm::do_finalize_sections): Skip processor specific
10835 flags and attributes merging if an input file is a binary file.
10836 * fileread.cc (Input_file::open): Record format of original file.
10837 * fileread.h (Input_file::Format): New enum type.
10838 (Input_file::Input_file): Initialize data member format_.
10839 (Input_file::format): New method definition.
10840 (Input_file::format_):: New data member.
10841
10842 2010-02-24 Doug Kwan <dougkwan@google.com>
10843
10844 * arm.cc (Arm_output_data_got): New class.
10845 (ARM_TCB_SIZE): New constant
10846 (Target_arm): Use Arm_output_data_got instead of Output_data_got.
10847 (Arm_output_section::fix_exidx_coverage): Add a parameter for layout.
10848 If user uses a script with a SECTIONS clause, issue only a warning
10849 for a misplaced EXIDX input section. Otherwise, issue an error.
10850 (Arm_relobj::do_gc_process_relocs): Exit early if we are not doing
10851 garbage collection.
10852 (Target_arm::got_mode_index_entry): Handle static linking.
10853 (Target_arm::Scan::local): Ditto.
10854 (Target_arm::Scan::global): Ditto.
10855 (Target_arm::Relocate::relocate_tls): Handle static linking. Fix
10856 all incorrectly implemented relocations.
10857 (Target_arm::fix_exidx_coverage): Pass layout to
10858 Arm_output_section::fix_exidx_coverage.
10859 * layout.cc (Layout::section_name_mapping): Remove trailing dots
10860 from ".ARM.exidx." and ".ARM.extab.".
10861
10862 2010-02-23 Viktor Kutuzov <vkutuzov@accesssoftek.com>
10863
10864 * arm.cc (Target_arm::do_finalize_sections): Create attribute
10865 section if it does not already exist.
10866 * attributes.cc (Attributes_section_data::Attributes_section_data):
10867 Don't crash if size is zero.
10868
10869 2010-02-23 Viktor Kutuzov <vkutuzov@accesssoftek.com>
10870 Ian Lance Taylor <iant@google.com>
10871
10872 * gold.cc (queue_middle_tasks): If no input files were opened,
10873 exit.
10874 * workqueue.h (Task_function::Task_function): Assert that there is
10875 a blocker.
10876
10877 2010-02-22 Doug Kwan <dougkwan@google.com>
10878
10879 * gold-threads.h (Once::~Once): Explicitly define virtual destructor.
10880 * icf.cc (get_section_contents): Cast snprintf arguments to long long
10881 types to avoid warnings due to different uint64_t implementations
10882 on different hosts.
10883
10884 2010-02-21 Doug Kwan <dougkwan@google.com>
10885
10886 * arm.cc (Arm_relocate_functions::arm_branch_common): Fix bug in
10887 handling of the maximum backward branch offset.
10888 (Arm_relocate_functions::thumb_branch_common): Ditto.
10889 * testsuite/Makefile.am (check_SCRIPTS): Add arm_branch_in_range.sh.
10890 (check_DATA): Add arm_bl_in_range.stdout, arm_bl_out_of_range.stdout
10891 thumb_bl_in_range.stdout, thumb_bl_out_of_range.stdout,
10892 thumb2_bl_in_range.stdout and thumb2_bl_out_of_range.stdout.
10893 (arm_bl_in_range.stdout, arm_bl_in_range, arm_bl_in_range.o,
10894 arm_bl_out_of_range.stdout, arm_bl_out_of_range,
10895 arm_bl_out_of_range.o, thumb_bl_in_range.stdout, thumb_bl_in_range,
10896 thumb_bl_in_range.o, thumb_bl_out_of_range.stdout,
10897 thumb_bl_out_of_range thumb_bl_out_of_range.o,
10898 thumb2_bl_in_range.stdout, thumb2_bl_in_range, thumb2_bl_in_range.o
10899 thumb2_bl_out_of_range.stdout, thumb2_bl_out_of_range,
10900 thumb2_bl_out_of_range.o): New rules.
10901 (MOSTLYCLEANFILES): Add arm_bl_in_range, arm_bl_out_of_range,
10902 thumb_bl_in_range, thumb_bl_out_of_range, thumb2_bl_in_range and
10903 thumb2_bl_out_of_range
10904 * testsuite/Makefile.in: Regenerate.
10905 * testsuite/arm_bl_in_range.s: New file.
10906 * testsuite/arm_bl_out_of_range.s: Ditto.
10907 * testsuite/arm_branch_in_range.sh: Ditto.
10908 * testsuite/arm_branch_range.t: Ditto.
10909 * testsuite/thumb2_branch_range.t: Ditto.
10910 * testsuite/thumb_bl_in_range.s: Ditto.
10911 * testsuite/thumb_bl_out_of_range.s: Ditto.
10912 * testsuite/thumb_branch_range.t: Ditto.
10913
10914 2010-02-20 Sriraman Tallam <tmsriram@google.com>
10915
10916 * gc.h (gc_process_relocs): Change vectors to point to the new list.
10917 Add reloc offset information.
10918 * icf.cc (get_section_contents): Change iterators to point to the new
10919 vectors. Add reloc offset information to the contents.
10920 * icf.h (Icf::Sections_reachable_info): New typedef.
10921 (Icf::Sections_reachable_list): New typedef.
10922 (Icf::Offset_info): New typedef.
10923 (Icf::Reloc_info): New struct typedef.
10924 (Icf::Reloc_info_list): New typedef.
10925 (Icf::symbol_reloc_list): Delete method.
10926 (Icf::addend_reloc_list): Delete method.
10927 (Icf::section_reloc_list): Delete method.
10928 (Icf::reloc_info_list): New method.
10929 (Icf::reloc_info_list_): New member.
10930
10931 2010-02-19 Doug Kwan <dougkwan@google.com>
10932
10933 * arm-reloc.def: Mark R_ARM_TLS_GD32, R_ARM_TLS_LDM32,
10934 R_ARM_TLS_LDO32, R_ARM_TLS_IE32 and R_ARM_TLS_LE32 are implemented.
10935 * arm.cc (Arm_relocation_functions): New forward declaration.
10936 (Target_arm::Target_arm): Initialize new data members
10937 got_mod_index_offset_ and tls_base_symbol_defined_.
10938 (Target_arm::Relocate::relocate_tls): New method.
10939 (Target_arm::optimize_tls_reloc, Target_arm::define_tls_base_symbol,
10940 Target_arm::got_mod_index_entry, Target_arm::rel_tls_desc_section):
10941 New methods.
10942 (Target_arm::Got_type): Add GOT_TYPE_TLS_NOFFSET, GOT_TYPE_OFFSET,
10943 GOT_TYPE_TLS_PAIR and GOT_TYPE_TLS_DESC.
10944 (Target_arm::got_mod_index_offset_,
10945 Target_arm::tls_base_symbol_defined_): New data members.
10946 (Target_arm::Scan::local, Target::Scan::global,
10947 Target_arm::Relocate::relocate): Handle 32-bit initial TLS
10948 relocations.
10949
10950 2010-02-18 Doug Kwan <dougkwan@google.com>
10951
10952 * arm.cc (Arm_relobj::find_linked_text_section): New method.
10953 (Arm_relobj::make_exidx_input_section): Pass section index of linked
10954 text section as a parameter becuase some broken tools may not set
10955 the link in section header.
10956 (Target_arm::has_got_section): New method.
10957 (Target_arm::scan_section_for_cortex_a8_stubs): Treat an input section
10958 without any mapping symbol as data only. Remove warning.
10959 (Arm_relobj::do_read_synbols): If an EXIDX input section has no
10960 link in its section header, try to discover the link by inspecting the
10961 REL31 relocation at the beginning of the section.
10962 (Target_arm::Scan::check_non_pic): Report name of offending relocation
10963 in error message.
10964 (Target_arm::Scan::global): Treat any reference to the symbol
10965 _GLOBAL_OFFSET_TABLE_ as a GOT access.
10966
10967 2010-02-12 Sriraman Tallam <tmsriram@google.com>
10968
10969 * arm.cc (Scan::local_reloc_may_be_function_pointer): New function.
10970 (Scan::global_reloc_may_be_function_pointer): New function.
10971 * sparc.cc (Scan::local_reloc_may_be_function_pointer): New function.
10972 (Scan::global_reloc_may_be_function_pointer): New function.
10973 * powerpc.cc (Scan::local_reloc_may_be_function_pointer): New function.
10974 (Scan::global_reloc_may_be_function_pointer): New function.
10975 * i386.cc (Scan::local_reloc_may_be_function_pointer): New function.
10976 (Scan::global_reloc_may_be_function_pointer): New function.
10977 * x86_64.cc (Scan::local_reloc_may_be_function_pointer): New function.
10978 (Scan::global_reloc_may_be_function_pointer): New function.
10979 (Scan::possible_function_pointer_reloc): New function.
10980 (Target_x86_64::can_check_for_function_pointers): New function.
10981 * gc.h (gc_process_relocs): Scan relocation types to determine if
10982 function pointers were taken for targets that support it.
10983 * icf.cc (Icf::find_identical_sections): Include functions for
10984 folding in safe ICF whose pointer is not taken.
10985 * icf.h (Secn_fptr_taken_set): New typedef.
10986 (fptr_section_id_): New member.
10987 (section_has_function_pointers): New function.
10988 (set_section_has_function_pointers): New function.
10989 (check_section_for_function_pointers): New function.
10990 * options.h: Fix comment for safe ICF option.
10991 * target.h (can_check_for_function_pointers): New function.
10992 * testsuite/Makefile.am: Add icf_safe_so_test test case.
10993 Modify icf_safe_test for X86-64.
10994 * testsuite/Makefile.in: Regenerate.
10995 * testsuite/icf_safe_so_test.cc: New file.
10996 * testsuite/icf_safe_so_test.sh: New file.
10997 * testsuite/icf_safe_test.cc (kept_func_3): New function.
10998 (main): Change to take pointer to function kept_func_3.
10999 * testsuite/icf_safe_test.sh (arch_specific_safe_fold): Check if safe
11000 folding is done correctly for X86-64.
11001
11002 2010-02-12 David S. Miller <davem@davemloft.net>
11003
11004 * output.h (Output_reloc<SHT_REL>::Output_reloc): Add
11005 is_symbolless parameter.
11006 (Output_reloc<SHT_REL>::is_symbolless): New.
11007 (Output_reloc<SHT_REL>::is_symbolless_): New.
11008 (Output_reloc<SHT_REL>::type_): Decrease to 29 bits.
11009 (Output_reloc<SHT_RELA>::Output_reloc): Add is_symbolless parameter.
11010 (Output_reloc<SHT_RELA>::is_symbolless): New.
11011 (Output_data_reloc::add_global): Handle is_symbolless.
11012 (Output_data_reloc::add_global_relative): Likewise.
11013 (Output_data_reloc::add_local): Likewise.
11014 (Output_data_reloc::add_local_relative): Likewise.
11015 (Output_data_reloc::add_symbolless_global_addend): New.
11016 (Output_data_reloc::add_symbolless_local_addend): New.
11017 * output.cc (Output_reloc<SHT_REL>::Output_reloc): Handle
11018 is_symbolless.
11019 (Output_reloc::set_needs_dynsym_index): Test ->is_symbolless_
11020 instead of ->is_relative_
11021 (Output_reloc::write): Likewise.
11022 (Output_reloc::get_symbol_index): Return 0 when ->is_symbolless_
11023 (Output_reloc::write_rel): Simplify.
11024
11025 * sparc.cc (Target_sparc::Scan::local): Use
11026 ->add_symbolless_local_addend as needed.
11027 (Target_sparc::Scan::global): Use ->add_symbolless_global_addend as
11028 needed. Also, emit appropriate unaligned vs. aligned dynamic reloc
11029 based upon relocation offset.
11030
11031 2010-02-11 Doug Kwan <dougkwan@google.com>
11032
11033 * arm.cc (Target_arm::Scan::local): Fix bugs in relocation handling.
11034 (Target_arm::Scan::global): Ditto. Also remove a comment before the
11035 beginning of function.
11036 (Target_arm::Relocate::relocate): Remove error messages for MOVW_ABS
11037 and MOVT_ABS relocations. Those are non issued in scanning. Fix
11038 parameter is_32bit in calls to should_apply_static_reloc.
11039 * testsuite/Makefile.am (check_SCRIPTS): Add arm_abs_global.sh.
11040 (check_DATA): Add arm_abs_global.stdout.
11041 (arm_abs_lib.o, libarm_abs.so, arm_abs_global.o, arm_abs_global,
11042 arm_abs_global.stdout): New rules.
11043 (MOSTLLYCLEANFILES): Add arm_abs_global
11044 * Makefile.in: Regenerate.
11045 * testsuite/arm_abs_global.s: New file.
11046 * testsuite/arm_abs_global.sh: Ditto.
11047 * testsuite/arm_abs_lib.s: Ditto.
11048
11049 2010-02-11 Ian Lance Taylor <iant@google.com>
11050
11051 * gold.cc (queue_middle_gc_tasks): Use a separate blocker for each
11052 Read_relocs task.
11053 (queue_middle_tasks): Likewise, and also for Scan_relocs. Run
11054 Allocate_commons_task first.
11055 * reloc.cc (Read_relocs::run): Pass next_blocker_ down to next
11056 task, rather than symtab_lock_.
11057 (Gc_process_relocs::~Gc_process_relocs): New function.
11058 (Gc_process_relocs::is_runnable): Check this_blocker_.
11059 (Gc_process_relocs::locks): Use next_blocker_ rather than
11060 blocker_.
11061 (Scan_relocs::~Scan_relocs): New function.
11062 (Scan_relocs::is_runnable): Check this_blocker_ rather than
11063 symtab_lock_.
11064 (Scan_relocs::locks): Drop symtab_lock_ and blocker_. Add
11065 next_blocker_.
11066 * reloc.h (class Read_relocs): Drop symtab_lock_ and blocker_
11067 fields. Add this_blocker_ and next_blocker_ fields. Adjust
11068 constructor accordingly.
11069 (class Gc_process_relocs): Likewise.
11070 (class Scan_relocs): Likewise.
11071 * common.h (class Allocate_commons_task): Remove symtab_lock_
11072 field, and corresponding constructor parameter.
11073 * common.cc (Allocate_commons_tasK::is_runnable): Remove use of
11074 symtab_lock_.
11075 (Allocate_commons_task::locks): Likewise.
11076
11077 2010-02-11 Ian Lance Taylor <iant@google.com>
11078
11079 * gold-threads.h (class Once): Define.
11080 (class Initialize_lock): Rewrite as child of Once.
11081 * gold-threads.cc (class Once_initialize): Define.
11082 (once_pointer_control): New static variable.
11083 (once_pointer, once_arg): New static variables.
11084 (c_run_once): New static function.
11085 (Once::Once, Once::run_once, Once::internal_run): New functions.
11086 (class Initialize_lock_once): Remove.
11087 (initialize_lock_control): Remove.
11088 (initialize_lock_pointer): Remove.
11089 (initialize_lock_once): Remove.
11090 (Initialize_lock::Initialize_lock): Move to gold-threads.h.
11091 (Initialize_lock::initialize): Rewrite.
11092 (Initialize_lock::do_run_once): New function.
11093 * archive.cc (Archive::interpret_header): Only clear name if it is
11094 not already empty.
11095 * fileread.cc: Include "gold-threads.h"
11096 (file_counts_lock): New static variable.
11097 (file_counts_initialize_lock): Likewise.
11098 (File_read::release): Only increment counts when using --stats.
11099 Use a lock around the increment.
11100 * parameters.cc (class Set_parameters_target_once): Define.
11101 (set_parameters_target_once): New static variable.
11102 (Parameters::Parameters): Move here from parameters.h.
11103 (Parameters::set_target): Rewrite.
11104 (Parameters::set_target_once): New function.
11105 (Parameters::clear_target): Move here and rewrite.
11106 * parameters.h (class Parameters): Update declarations. Add
11107 set_parameters_target_once_ field.
11108 (Parameters::Parameters): Move to parameters.cc.
11109 (Parameters::clear_target): Likewise.
11110 * readsyms.cc (Read_symbols::do_group): Create a Start_group
11111 task.
11112 (Start_group::~Start_group): New function.
11113 (Start_group::is_runnable): New function.
11114 (Start_group::locks, Start_group::run): New functions.
11115 (Finish_group::run): Change saw_undefined to size_t.
11116 * readsyms.h (class Start_group): Define.
11117 (class Finish_group): Change saw_undefined_ field to size_t.
11118 (Finish_group::Finish_group): Remove saw_undefined and
11119 this_blocker parameters. Change all callers.
11120 (Finish_group::set_saw_undefined): New function.
11121 (Finish_group::set_blocker): New function.
11122 * symtab.h (class Symbol_table): Change saw_undefined to return
11123 size_t. Change saw_undefined_ field to size_t.
11124 * target-select.cc (Set_target_once::do_run_once): New function.
11125 (Target_selector::Target_selector): Initialize set_target_once_
11126 field. Don't initialize lock_ and initialize_lock_ fields.
11127 (Target_selector::instantiate_target): Rewrite.
11128 (Target_selector::set_target): New function.
11129 * target-select.h (class Set_target_once): Define.
11130 (class Target_selector): Update declarations. Make
11131 Set_target_once a friend. Remove lock_ and initialize_lock_
11132 fields. Add set_target_once_ field.
11133
11134 2010-02-10 Ian Lance Taylor <iant@google.com>
11135
11136 * dirsearch.cc (Dirsearch::initialize): Add all blockers before
11137 queueing any tasks.
11138 * gold.cc (queue_middle_gc_tasks): Likewise. Fix final blocker.
11139 (queue_middle_tasks): Add all blockers before queueing any tasks.
11140 (queue_final_tasks): Likewise.
11141 * token.h (Task_token::add_blockers): New function.
11142 * object.h (Input_objects::number_of_relobjs): New function.
11143
11144 2010-02-10 Ian Lance Taylor <iant@google.com>
11145
11146 * i386.cc (Relocate::relocate_tls): A local symbol is final if not
11147 shared, not if not position independent.
11148 * x86_64.cc (Relocate::relocate_tls): Likewise.
11149 * testsuite/Makefile.am (check_PROGRAMS): Add tls_pie_pic_test.
11150 (tls_pie_pic_test): New target.
11151 * testsuite/Makefile.in: Rebuild.
11152
11153 * testsuite/Makefile.am (check_PROGRAMS): Add tls_pie_test.
11154 (tls_test_main_pie.o, tls_test_pie.o): New targets.
11155 (tls_test_file2_pie.o, tls_test_c_pie.o, tls_pie_test): Likewise.
11156 * testsuite/Makefile.in: Rebuild.
11157
11158 2010-02-09 David S. Miller <davem@davemloft.net>
11159
11160 * sparc.cc (Target_sparc::Scan::local): Do not emit relocs other than
11161 R_SPARC_RELATIVE using ->add_local_relative().
11162 (Target_sparc::Scan::global): Likewise for ->add_global_relative().
11163
11164 * output.h (Output_data_dynamic::add_section_size): New method
11165 that takes two Output_data objects.
11166 (Output_data_dynamic::Dynamic_entry): Create storage for secondary
11167 entry param. Handle it in initializers.
11168 * output.cc (Output_data_dynamic::Dynamic_entry::write): For
11169 DYNAMIC_SECTION_SIZE, add in second object size if non-NULL.
11170 * layout.h (Layout::add_target_dynamic_tags): Add dynrel_includes_plt
11171 arg.
11172 * layout.cc (Layout::add_target_dynamic_tags): If dynrel_includes_plt,
11173 and .rela.plt exists, set DT_REL{,A}SZ to sum of .rela.dyn and .rela.plt
11174 * arm.cc (Target_arm::do_finalize_sections): Update to pass false
11175 for dynrel_includes_plt.
11176 * i386.cc (Target_i386::do_finalize_sections): Likewise.
11177 * x86_64.cc (Target_x86_64::do_finalize_sections): Likewise.
11178 * sparc.cc (Target_sparc::make_plt_entry): Force .rela.dyn to be output
11179 before .rela.plt
11180 (Target_sparc::do_finalize_sections): Update to pass true for
11181 dynrel_includes_plt.
11182 * powerpc.cc (Target_powerpc::make_plt_entry): Force .rela.dyn to be
11183 output before .rela.plt
11184 (Target_powerpc::do_finalize_sections): Update to pass true for
11185 dynrel_includes_plt when 32-bit.
11186
11187 2010-02-08 Doug Kwan <dougkwan@google.com>
11188
11189 * arm.cc (Arm_relobj::simple_input_section_output_address): New
11190 method.
11191 (Arm_relobj::section_needs_cortex_a8_stub_scanning,
11192 Arm_relobj::scan_section_for_cortex_a8_stubs,
11193 Arm_relobj::do_relocation_section): Instead of calling
11194 Output_section::output_address, use faster
11195 Arm_relobj::simple_input_section_output_address.
11196
11197 2010-02-08 David S. Miller <davem@davemloft.net>
11198
11199 * sparc.cc (Target_sparc::Relocate::relocate): If relocation offset is
11200 unaligned for R_SPARC_16, R_SPARC_32, or R_SPARC_64, use the unaligned
11201 relocation helper function.
11202
11203 * sparc.cc (Target_sparc::Scan::local): Handle R_SPARC_GOTDATA_OP*
11204 just like R_SPARC_GOT{10,13,22}.
11205 (Target_sparc::Scan::local): Likewise.
11206 (Target_sparc::Relocate:relocate): Likewise.
11207
11208 2010-02-06 Ian Lance Taylor <iant@google.com>
11209
11210 * configure.ac: Rewrite targetobjs duplicate removal code to use
11211 only shell constructs.
11212 * configure: Rebuild.
11213
11214 2010-02-05 Doug Kwan <dougkwan@google.com>
11215
11216 PR 11247
11217 * arm.cc (Arm_relobj::section_is_scannable): New method.
11218 (Arm_relobj::section_needs_reloc_stub_scanning): Use it.
11219 (Arm_relobj::section_needs_cortex_a8_stub_scanning): Same.
11220
11221 2010-02-04 Doug Kwan <dougkwan@google.com>
11222
11223 PR 11247
11224 * arm-reloc-property.cc (cstdio): Include.
11225 * configure.ac (targetobjs): Remove duplicates.
11226 * configure: Regenerate.
11227 * resolve.cc (Symbol_table::resolve): Explicit instantiate both
11228 big and little endian version for a given address size.
11229
11230 2010-02-03 Doug Kwan <dougkwan@google.com>
11231
11232 * arm-reloc-property.cc
11233 (Arm_reloc_property_table::reloc_name_in_error_message): New method
11234 definition.
11235 * arm-reloc-property.h
11236 (Arm_reloc_property_table::get_implemented_static_reloc_property):
11237 New method definition.
11238 (Arm_reloc_property_table::reloc_name_in_error_message): New method
11239 declaration.
11240 * arm-reloc.def (THM_MOVT_ABS, THM_MOVT_PREL, THM_MOVT_BREL): Change
11241 overflow to N.
11242 (GOT_PREL): Change implemented to Y.
11243 * arm.cc (Target_arm::reloc_uses_thumb_bit): Remove method.
11244 (Target_arm::Relocate::reloc_needs_sym_origin): Remove method.
11245 (Arm_relocate_functions::movw_abs_nc): Remove method.
11246 (Arm_relocate_functions::movt_abs): Ditto.
11247 (Arm_relocate_functions::thm_movw_abs_nc): Ditto.
11248 (Arm_relocate_functions::thm_movt_abs): Ditto.
11249 (Arm_relocate_functions::movw_rel_nc): Ditto.
11250 (Arm_relocate_functions::movw_rel): Ditto.
11251 (Arm_relocate_functions::movt_rel): Ditto.
11252 (Arm_relocate_functions:thm_movw_rel_nc): Ditto.
11253 (Arm_relocate_functions:thm_movw_rel): Ditto.
11254 (Arm_relocate_functions:thm_movt_rel): Ditto.
11255 (Arm_relocate_functions::movw, Arm_relocate_functions::movt,
11256 (Arm_relocate_functions::thm_movw, Arm_relocate_functions::thm_movt):
11257 New method definitions.
11258 (Arm_relocation_functions::arm_grp_alu): Add assertion for group index.
11259 (Arm_relocation_functions::arm_grp_ldr): Ditto.
11260 (Arm_relocation_functions::arm_grp_ldrs): Ditto.
11261 (Arm_relocation_functions::arm_grp_ldc): Ditto.
11262 (Target_arm::Relocate::relocate): Check for non-static or
11263 unimplemented relocation code and exit early. Change calls to
11264 Target_arm::reloc_uses_thumb_bit and
11265 Target_arm::Reloc::reloc_needs_sym_origin to use relocation property
11266 instead. Refactor code to handle similar relocations to increase
11267 code sharing. Remove check for unsupported relocation code in switch
11268 statement.
11269 (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc): Use
11270 relocation property table to find out size. Change error message to
11271 print out the name of a relocation code instead of the numeric value.
11272 (Target_arm::scan_reloc_for_stub): Use relocation property table
11273 instead of calling Target_arm::reloc_uses_thumb_bit().
11274
11275 2010-02-02 Doug Kwan <dougkwan@google.com>
11276
11277 * arm.cc (Target_arm::relocate_section): Do view adjustment for all
11278 types of relaxed input section.
11279
11280 2010-02-02 Doug Kwan <dougkwan@google.com>
11281
11282 * Makefile.am (HFILES): Add arm-reloc-property.h.
11283 (DEFFILES): New.
11284 (TARGETSOURCES): Add arm-reloc-property.cc
11285 (ALL_TARGETOBJS): Add arm-reloc-property.$(OBJEXT)
11286 (libgold_a_SOURCES): $(DEFFILES)
11287 * Makefile.in: Regenerate.
11288 * arm-reloc-property.cc: New file.
11289 * arm-reloc-property.h: New file.
11290 * arm-reloc.def: New file.
11291 * arm.cc: Update comments.
11292 (arm-reloc-property.h): New included header.
11293 (arm_reloc_property_table): New global variable.
11294 (Target_arm::do_select_as_default_target): New method definition.
11295 * configure.tgt (armeb*-*-*,armbe*-*-*,arm*-*-*): Add
11296 arm-reloc-property to targ_extra_obj.
11297 * parameters.cc (set_parameters_target): Call
11298 Target::select_as_default_target().
11299 * target.h (Target::select_as_default_target): New method definition.
11300 (Target::do_select_as_default_target): Same.
11301
11302 2010-02-01 Doug Kwan <dougkwan@google.com>
11303
11304 * arm.cc (Arm_exidx_fixup::Arm_exidx_fixup): Initialize
11305 first_output_text_section_.
11306 (Arm_exidx_fixup::first_output_text_section): New method definition.
11307 (Arm_exidx_fixup::first_output_text_section_): New data member.
11308 (Arm_exidx_fixup::process_exidx_section): Record the first text
11309 output section seen.
11310 (Arm_output_section::fix_exidx_coverage): Set correct linked section
11311 and entsize in output section header.
11312
11313 2010-01-29 Viktor Kutuzov <vkutuzov@accesssoftek.com>
11314
11315 * gold/arm.cc: Added support for the ARM relocations: R_ARM_THM_PC8,
11316 R_ARM_THM_PC12, R_ARM_THM_ALU_PREL_11_0.
11317 (Arm_relocate_functions::thm_alu11): New Method.
11318 (Arm_relocate_functions::thm_pc8): New Method.
11319 (Arm_relocate_functions::thm_pc12): New Method.
11320 (Target_arm::Scan::local): Handle the relocations.
11321 (Target_arm::Scan::global): Likewise.
11322 (Target_arm::Relocate::relocate): Likewise.
11323 (Target_arm:Relocatable_size_for_reloc::get_size_for_reloc): Likewise.
11324
11325 2010-01-29 Doug Kwan <dougkwan@google.com>
11326
11327 * arm.cc (Target_arm::Scan::global): General PLTs for the same set
11328 of relocation types as ld.
11329
11330 2010-01-29 Doug Kwan <dougkwan@google.com>
11331
11332 * arm.cc (Arm_relocate_functions::arm_branch_common) Change visibility
11333 to public.
11334 (Arm_relocate_functions::thumb_branch_common): Ditto.
11335 (Arm_relocate_functions::thm_call, Arm_relocate_functions::thm_jump24,
11336 Arm_relocate_functions::thm_xpc22, Arm_relocate_functions::plt32,
11337 Arm_relocate_functions::xpc25, Arm_relocate_functions::call,
11338 Arm_relocate_functions::jump24): Remove.
11339 (Target_arm::Relocate::relocate): Adjust code to call
11340 Arm_relocation_functions::arm_branch_common and
11341 Arm_relocation_functions::thumb_branch_common instead of their removed
11342 wrappers. Merge switch-cases together to reduce source code size.
11343
11344 2010-01-29 Doug Kwan <dougkwan@google.com>
11345
11346 * arm.cc (Arm_relobj::Arm_relobj): Initialize new data member
11347 output_local_symbol_count_needs_update_.
11348 (Arm_relobj::output_local_symbol_count_needs_update,
11349 Arm_relobj::set_output_local_symbol_count_needs_update,
11350 Arm_relobj::update_output_local_symbol_count): New methods.
11351 (Arm_relobj::output_local_symbol_count_needs_update_): New data
11352 member.
11353 (Arm_exidx_cantunwind::do_fixed_endian_write): Write address
11354 of pointed function as in a R_ARM_PREL31 relocation.
11355 (Arm_output_section<big_endian>::fix_exidx_coverage): Mark objects
11356 for output local symbol count updating.
11357 (Target_arm::do_relax): Update output local symbol counts in objects
11358 if necessary.
11359 * object.h (Sized_relobj::set_output_local_symbol_count): New method.
11360
11361 2010-01-29 Viktor Kutuzov <vkutuzov@accesssoftek.com>
11362
11363 * arm.cc: Added support for the ARM relocations:
11364 R_ARM_MOVW_BREL_NC, R_ARM_MOVT_BREL, R_ARM_MOVW_BREL,
11365 R_ARM_THM_MOVW_BREL_NC, R_ARM_THM_MOVT_BREL, R_ARM_THM_MOVW_BREL.
11366 (Arm_relocate_functions::movw_rel_nc): Renamed (was
11367 movw_prel_nc).
11368 (Arm_relocate_functions::movw_rel): New method.
11369 (Arm_relocate_functions::movt_rel): Renamed (was movt_prel).
11370 (Arm_relocate_functions::thm_movw_rel_nc): Renamed (was
11371 thm_movw_prel_nc).
11372 (Arm_relocate_functions::thm_movw_rel): New method.
11373 (Arm_relocate_functions::thm_movt_rel): Renamed (was
11374 thm_movt_prel).
11375 (Target_arm::Scan::local): Handle MOVW_BREL/MOVT_BREL
11376 relocations.
11377 (Target_arm::Scan::global): Likewise.
11378 (Target_arm::Relocate::relocate): Likewise.
11379 (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc):
11380 Likewise.
11381
11382 2010-01-27 Viktor Kutuzov <vkutuzov@accesssoftek.com>
11383
11384 * arm.cc: Added support for ARM group relocations.
11385 (Target_arm::reloc_needs_sym_origin): New method.
11386 (Arm_relocate_functions::calc_grp_kn): New method.
11387 (Arm_relocate_functions::calc_grp_residual): New method.
11388 (Arm_relocate_functions::calc_grp_gn): New method.
11389 (Arm_relocate_functions::arm_grp_alu): New Method.
11390 (Arm_relocate_functions::arm_grp_ldr): New Method.
11391 (Arm_relocate_functions::arm_grp_ldrs): New Method.
11392 (Arm_relocate_functions::arm_grp_ldc): New Method.
11393 (Target_arm::Scan::local): Handle the ARM group relocations.
11394 (Target_arm::Scan::global): Likewise.
11395 (Target_arm::Relocate::relocate): Likewise.
11396 (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc):
11397 Likewise.
11398
11399 2010-01-26 Doug Kwan <dougkwan@google.com>
11400
11401 * arm.cc (set): Include.
11402 (class Arm_exidx_fixup): Change type of last_input_section_ to const
11403 pointer type.
11404 (Arm_output_section::Text_section_list): New type.
11405 (Arm_output_section::append_text_sections_to_list): New method.
11406 (Arm_output_section::fix_exidx_coverage): Ditto.
11407 (Arm_relobj::Arm_relobj): Initialize exidx_section_map_.
11408 (Arm_relobj::convert_input_section_to_relaxed_section): Use
11409 Relobj::set_section_offset() instead of
11410 Sized_relobj::invalidate_section_offset().
11411 (Arm_relobj::section_needs_reloc_stub_scanning): Add an extra
11412 parameter for section headers. Ignore relocation sections for
11413 unallocated sections and EXIDX sections.
11414 (Target_arm::fix_exidx_coverage): New method.
11415 (Target_arm::output_section_address_less_than): New type.
11416 (Arm_exidx_fixup::add_exidx_cantunwind_as_needed): Use index of the
11417 linked text section instead of the EXIDX section.
11418 (Arm_output_section::create_stub_group): Add an assertion to check
11419 that this is not an EXIDX output section.
11420 (Arm_output_section::append_text_sections_to_list): New method.
11421 (Arm_output_section::fix_exidx_coverage): Ditto.
11422 (Arm_relobj::scan_sections_for_stubs): Adjust call to
11423 Arm_relobj::section_needs_reloc_stub_scanning.
11424 (Target_arm::do_relax): Fix EXIDX output section coverage in the
11425 first pass.
11426 (Target_arm::fix_exidx_coverage): New method.
11427 * object.h (Relobj::set_output_section): New method.
11428 (Sized_relobj::invalidate_section_offset): Remove method.
11429 (Sized_relobj::do_invalidate_section_offset): Remove method.
11430 (Sized_relobj::do_set_section_offset): Handle offset value -1.
11431
11432 2010-01-25 Doug Kwan <dougkwan@google.com>
11433
11434 * arm.cc (Arm_exidx_merged_section::do_output_offset):
11435 Fix warning due to signed and unsigned comparison on a 32-bit host.
11436
11437 2010-01-22 Doug Kwan <dougkwan@google.com>
11438
11439 * arm.cc (Target_arm::do_relax): Record an output section for section
11440 offset adjustment it contains any stub table that has changed.
11441 * layout.cc (Layout::clean_up_after_relaxation): Adjust section
11442 offsets in an output section if necessary.
11443 * output.cc (Output_section::Output_section): Initialize
11444 section_offsets_need_adjustments_.
11445 (Output_section::add_input_section_for_script): Renamed to
11446 Output_section::add_simple_input_section.
11447 (Output_section::save_states): Add a comment.
11448 (Output_section::discard_states): New method defintion.
11449 (Output_section::adjust_section_offsets): Same.
11450 * output.h (Output_section::add_input_section_for_script): Renamed to
11451 Output_section::add_simple_input_section.
11452 (Output_section::discard_states): New method declaration.
11453 (Output_section::adjust_section_offsets): Same.
11454 (Output_section::section_offsets_need_adjustment,
11455 Output_section::set_section_offsets_need_adjustment): New method
11456 definitions.
11457 (Output_section::section_offsets_need_adjustment_): New data member.
11458 * script-sections.cc
11459 (Output_section_element_input::set_section_address): Adjust code for
11460 renaming of Output_section::add_input_section_for_script.
11461 (Orphan_output_section::set_section_address): Same.
11462
11463 2010-01-22 Viktor Kutuzov <vkutuzov@accesssoftek.com>
11464
11465 * gold/arm.cc (Target_arm): Updated fix_v4bx method and usage of
11466 Fix_v4bx enum values .
11467 * gold/options.h (General_options): New option definitions.
11468 (General_options::fix_v4bx): New method.
11469 (General_options::Fix_v4bx): New enum.
11470 * gold/options.cc (General_options::parse_fix_v4bx): New method.
11471 (General_options::parse_fix_v4bx_interworking): New method.
11472
11473 2010-01-22 Doug Kwan <dougkwan@google.com>
11474
11475 * arm.cc (Arm_exidx_fixup): New class.
11476
11477 2010-01-21 Doug Kwan <dougkwan@google.com>
11478
11479 * arm.cc (Arm_exidx_cantunwind, Arm_exidx_merged_section): New
11480 classes.
11481 (Arm_exidx_section_offset_map): New type.
11482
11483 2010-01-21 Doug Kwan <dougkwan@google.com>
11484
11485 * arm.cc (Arm_exidx_input_section): New class.
11486 (Arm_relobj::exidx_input_section_by_link,
11487 Arm_relobj::exidx_input_section_by_shndx,
11488 Arm_relobj::make_exidx_input_section): New methods.
11489 (read_arm_attributes_section): Remove.
11490 (Arm_relobj::do_read_symbols): Look for ARM.exidx sections and record
11491 information about them.
11492 (Arm_dynobj::do_read_symbols): Move code in read_arm_attributes_section
11493 to here.
11494
11495 2010-01-20 Doug Kwan <dougkwan@google.com>
11496
11497 * arm.cc (Target_arm::Arm_input_section_map): Change key type from
11498 Input_section_specifier to Section_id.
11499 (Target_arm::new_arm_input_section: Adjust code for change of key
11500 type.
11501 (Target_arm::find_arm_input_section): Ditto.
11502 * gc.h (object.h): Include for Section_id nand Section_id_hash.
11503 (Section_id): Remove.
11504 (Garbage_collection::Section_id_hash): Remove.
11505 * icf.h (object.h): Include for Section_id nand Section_id_hash.
11506 (Section_id): Remove.
11507 (Icf::Section_id_hash): Remove.
11508 * object.h (Section_id, Const_section_id, Section_id_hash,
11509 Const_section_id_hash): New type definitions.
11510 * output.cc (Output_section::add_relaxed_input_section): Change to
11511 use Const_section_id instead of Input_section_specifier as key type.
11512 (Output_section::add_merge_input_section): Ditto.
11513 (Output_section::build_relaxation_map): Change to use Section_id
11514 instead of Input_section_specifier as key type.
11515 (Output_section::convert_input_sections_in_list_to_relaxed_sections):
11516 Ditto.
11517 (Output_section::convert_input_sections_to_relaxed_sections): Change
11518 to use Const_section_id instead of Input_section_specifier as key type.
11519 (Output_section::find_merge_section): Ditto.
11520 (Output_section::find_relaxed_input_section): Ditto.
11521 * output.h (Input_section_specifier): Remove class.
11522 (Output_section::Output_section_data_by_input_section_map): Change
11523 key type to Const_section_id.
11524 (Output_section::Output_relaxed_input_section_by_input_section_map):
11525 Ditto.
11526 (Output_section::Relaxation_map): Change key type to Section_id.
11527
11528 2010-01-20 Viktor Kutuzov <vkutuzov@accesssoftek.com>
11529
11530 * gold/arm.cc: Added support for R_ARM_V4BX relocation
11531 (class Arm_v4bx_stub): New class.
11532 (DEF_STUBS): Updated definition to support v4_veneer_bx.
11533 (Stub_factory::make_arm_v4bx_stub): New method.
11534 (Stub_factory::elf32_arm_stub_v4_veneer_bx): New veneer template.
11535 (Stub_table::empty): Handle v4bx stubs.
11536 (Stub_table::add_arm_v4bx_stub): New method.
11537 (Stub_table::find_arm_v4bx_stub): New method.
11538 (Arm_relocate_functions::v4bx): New method.
11539 (Target_arm::fix_v4bx): New method.
11540 (Target_arm::Target_arm): Handle R_ARM_V4BX.
11541 (Stub_table::relocate_stubs): Likewise.
11542 (Stub_table::do_write): Likewise.
11543 (Stub_table::update_data_size_and_addralign): Likewise.
11544 (Stub_table::finalize_stubs): Likewise.
11545 (Target_arm::Scan::local): Likewise.
11546 (Target_arm::Scan::global): Likewise.
11547 (Target_arm::do_finalize_sections): Likewise.
11548 (Target_arm::Relocate::relocate): Likewise.
11549 (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc):
11550 Likewise.
11551 (Target_arm::scan_reloc_for_stub): Likewise.
11552 (Target_arm::scan_reloc_section_for_stubs): Likewise.
11553
11554 2010-01-19 Ian Lance Taylor <iant@google.com>
11555
11556 * output.cc (Output_section_headers::do_sized_write): Write large
11557 segment count to sh_info field.
11558 (Output_file_header::do_sized_write): For large segment count,
11559 write PN_XNUM to e_phnum field.
11560
11561 2010-01-15 Viktor Kutuzov <vkutuzov@accesssoftek.com>
11562
11563 * arm.cc (Arm_relocate_functions::thm_jump6): New function.
11564 (Arm_relocate_functions::thm_jump8): New function.
11565 (Arm_relocate_functions::thm_jump11): New function.
11566 (Target_arm::Scan::local): Handle R_ARM_THM_JUMP6, R_ARM_THM_JUMP8,
11567 R_ARM_THM_JUMP11.
11568 (Target_arm::Scan::global): Likewise.
11569 (Target_arm::Relocate::relocate): Likewise.
11570 (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc):
11571 Likewise.
11572
11573 2010-01-14 Doug Kwan <dougkwan@google.com>
11574
11575 * arm.cc (map, utility): Include headers.
11576 (Target_arm::apply_cortex_a8_workaround): New method.
11577 (Arm_relobj::do_relocate_sections): Apply any Cortex-A8 workaround.
11578 (Target_arm::Scan::local): Handle R_ARM_THM_JUMP24, R_ARM_THM_JUMP19.
11579 (Target_arm::Scan::global): R_ARM_THM_JUMP19.
11580 (Target_arm::do_finalize_sections): Set fix_cortex_a8_ according to
11581 the --[no-]fix-cortex-a8 command line options.
11582 (Target_arm::Relocate::relocate): Handle R_ARM_JUMP19.
11583 (Target_arm::relocate_stub): Use addend in instruction template.
11584 * options.h (DEFINE_bool): Set the user-set flag.
11585 (General_options): Add --[no-]-fix-cortex options.
11586 * output.cc (Output_section::convert_input_sections_to_relaxed_sections)
11587 : Update fast look-up map after conversion.
11588
11589 2010-01-14 Sriraman Tallam <tmsriram@google.com>
11590
11591 * object.cc (Sized_relobj::do_layout): Change to call layout_gnu_stack
11592 in the first pass of do_layout.
11593
11594 2010-01-13 Doug Kwan <dougkwan@google.com>
11595
11596 * arm.cc (Arm_relobj::section_needs_reloc_stub_scanning,
11597 Arm_relobj::scan_sections_for_stubs): Rearrange code to avoid an
11598 apparent compiler problem of not folding static constant integral
11599 data members of elfcpp::Elf_sizes<32>.
11600
11601 2010-01-13 Doug Kwan <dougkwan@google.com>
11602
11603 * arm.cc (Arm_relobj::section_needs_reloc_stub_scanning,
11604 Arm_relobj::section_needs_cortex_a8_stub_scanning,
11605 Arm_relobj::scan_section_for_cortex_a8_erratum,
11606 Arm_relobj::scan_span_for_cortex_a8_erratum): New methods.
11607 (Arm_relobj::scan_sections_for_stubs): Move code deciding what
11608 sections to scan for relocation stubs into a new method
11609 Arm_relobj::section_needs_reloc_stub_scanning. Handle both
11610 relocation and Cortex-A8 stub scanning.
11611 (Target_arm::do_relax): Force stubs to be after stubbed sections
11612 if fixing the Cortex-A8 erratum. Remove all Cortex-A8 stubs at
11613 the beginning of a new relaxation pass. Update a comment.
11614 (Target_arm::scan_span_for_cortex_a8_erratum): New method definition.
11615
11616 2010-01-12 Ian Lance Taylor <iant@google.com>
11617
11618 * target-reloc.h (visibility_error): New inline function.
11619 (relocate_section): Call visibility_error.
11620 * testsuite/Makefile.am (check_DATA): Add protected_3.err.
11621 (MOSTLYCLEANFILES): Likewise.
11622 (protected_4_pic.o, protected_3.err): New targets.
11623 * testsuite/protected_4.cc: New file.
11624
11625 2010-01-12 Doug Kwan <dougkwan@google.com>
11626
11627 * arm.cc (Cortex_a8_reloc): New class.
11628 (Target_arm::Target_arm): Initialize new data members fix_cortex_a8_
11629 and cortex_a8_relocs_info_.
11630 (Target_arm::fix_cortex_a8): New method definition.
11631 (Target_arm::Cortex_a8_relocs_info): New type.
11632 (Target_arm::fix_cortex_a8_, Target_arm::cortex_a8_relocs_info_):
11633 New data member declarations.
11634 (Target_arm::scan_reloc_for_stub): Record information about
11635 relocations for THUMB branches that might be exempted from the
11636 Cortex-A8 workaround.
11637 (Target_arm::do_relax): Clear all Cortex-A8 relocation information
11638 at the beginning of a relaxation pass.
11639
11640 2010-01-12 Doug Kwan <dougkwan@google.com>
11641
11642 * arm.cc (Arm_relobj::mapping_symbols_info_): New data member.
11643 (Arm_relobj::Mapping_symbol_position,
11644 Arm_reloj::Mapping_symbol_position_less,
11645 Arm_relobj::Mapping_symbols_info): New types.
11646 (Target_arm::is_mapping_symbol_name): New method definition.
11647 (Arm_relobj::do_count_local_symbols): Save information about mapping
11648 symbols.
11649
11650 2010-01-11 Doug Kwan <dougkwan@google.com>
11651
11652 * arm.cc (Arm_relocate_functions::thumb32_branch_offset,
11653 Arm_relocate_functions::thumb32_branch_upper,
11654 Arm_relocate_functions::thumb32_branch_lower,
11655 Arm_relocate_functions::thumb32_cond_branch_offset,
11656 Arm_relocate_functions::thumb32_cond_branch_upper,
11657 Arm_relocate_functions::thumb32_cond_branch_lower,
11658 Arm_relocate_functions::thm_jump19): New methods to handle THUMB
11659 branch offset encoding.
11660 (Arm_relocate_functions::thumb_branch_common): Use new branch
11661 offset encoding methods to avoid code duplication.
11662 (Stub_template::Stub_template) Handle THUMB16_SPECIAL_TYPE.
11663 (Stub_addend_reader::operator()): Use new branch encoding method
11664 to avoid code duplication.
11665
11666 2010-01-11 Doug Kwan <dougkwan@google.com>
11667
11668 * arm.cc (Arm_relobj::do_gc_process_relocs): New method.
11669 (Target_arm::do_finalize_sections): Define special EXIDX section
11670 symbols only if referenced.
11671 * gc.h (Garbage_collection::add_reference): New method.
11672 (gc_process_relocs): Use Garbage_collection::add_reference to avoid
11673 code duplication.
11674
11675 2010-01-11 Ian Lance Taylor <iant@google.com>
11676
11677 * script.cc (Version_script_info::build_expression_list_lookup):
11678 Change complaing about duplicate wildcard match from error to
11679 warning.
11680
11681 * script.cc (class Lazy_demangler): Recreate--revert part of patch
11682 of 2009-12-30.
11683 (Version_script_info::Version_script_info): Initialize globs_,
11684 default_version_, default_is_global_, and exact_. Don't
11685 initialize globals_ or locals_.
11686 (Version_script_info::build_lookup_tables): Build local symbols
11687 first.
11688 (Version_script_info::unquote): New function.
11689 (Version_script_info::add_exact_match): New function.
11690 (Version_script_info::build_expression_list_lookup): Remove lookup
11691 parameter. Add is_global parameter. Change all callers. Handle
11692 wildcard pattern specially. Unquote pattern. Call
11693 add_exact_match.
11694 (Version_script_info::get_name_to_match): New function.
11695 (Version_script_info::get_symbol_version): New function.
11696 (Version_script_info::get_symbol_version_helper): Remove.
11697 (Version_script_info::check_unmatched_names): Call unquote.
11698 * script.h (class Version_script_info): Change get_symbol_version
11699 to be non-inline and add is_global parameter; change all callers.
11700 Rewrite symbol_is_local. Update declarations. Define struct
11701 Version_tree_match, Exact, Globs. Don't define struct Lookup.
11702 Remove globals_ and locals_ members. Add exact_, globs_,
11703 default_version_, is_global_.
11704 (Version_script_info::Glob): Remove pattern, add expression and
11705 is_global. Update constructor. Change all callers.
11706 * dynobj.cc (Versions::finalize): Mark the version symbol as the
11707 default version.
11708 (Versions::symbol_section_contents): If a symbol is undefined, or
11709 defined in a dynamic object, set the version index to
11710 VER_NDX_LOCAL.
11711 * symtab.cc (Symbol_table::add_from_relobj): Don't call
11712 symbol_is_local.
11713 (Symbol_table::add_from_pluginobj): Likewise.
11714 * testsuite/ver_matching_test.sh: blaza1 and blaza go into V2.
11715
11716 2010-01-11 Doug Kwan <dougkwan@google.com>
11717
11718 * Makefile.am (incremental_dump_DEPENDENCIES): Add libintl dependency.
11719 (incremental_dump_LDADD): Add linking option for libintl.
11720 * Makefile.in: Regenerate.
11721
11722 2010-01-11 H.J. Lu <hongjiu.lu@intel.com>
11723
11724 PR gold/11144
11725 * testsuite/Makefile.am (dynamic_list.stdout): Use --dyn-syms
11726 instead of -Ds.
11727 * testsuite/Makefile.in: Regenerated.
11728
11729 2010-01-10 Doug Kwan <dougkwan@google.com>
11730
11731 * options.h (DEFINE_var): Use parentheses around argument varname__
11732 in macro body to avoid any unintended subsequent substitutions.
11733
11734 2010-01-10 Ian Lance Taylor <iant@google.com>
11735
11736 * resolve.cc (Symbol_table::resolve): Add symbols to list of ODR
11737 candidates before doing symbol resolution.
11738
11739 * resolve.cc (Symbol_table::resolve): Add symbols to the list of
11740 ODR candidates if only one is weak.
11741
11742 2010-01-08 Ian Lance Taylor <iant@google.com>
11743
11744 * script.cc (Version_script_info::build_expression_list_lookup):
11745 Don't warn about ambiguous version, just record the ambiguity.
11746 (Version_script_info::get_symbol_version_helper): Give error if
11747 version is ambiguous.
11748
11749 2010-01-08 Doug Kwan <dougkwan@google.com>
11750
11751 * arm.cc (Stub_table::Stub_table): Initalize cortex_a8_stubs_,
11752 prev_data_size_ and prev_addralign_. Remove initializer for
11753 deleted data member has_been_changed_.
11754 (Stub_table::empty): Look at both reloc_stubs_ and cortex_a8_stubs_
11755 to determine if the table is empty.
11756 (Stub_table::has_been_changed, Stub_table_set_has_been_changed):
11757 Remove.
11758 (Stub_table::add_reloc_stub): Define method in class definition
11759 instead of just declaring it there.
11760 (Stub_table::add_cortex_a8_stub): New method definition.
11761 (Stub_table::update_data_size_and_addralign): Ditto.
11762 (Stub_table::finalize_stubs): Ditto.
11763 (Stub_table::apply_cortex_a8_workaround_to_address_range): Ditto.
11764 (Stub_table::do_addralign_): Return address alignment in the
11765 (Stub_table::do_reset_address_and_file_offset): Define method in
11766 class definition instead of declaring it there. Set current data
11767 size to be the data size of the previous pass.
11768 (Stub_table::set_final_data_size): Use current data size as the
11769 final data size.
11770 (Stub_table::relocate_stub): Change parameter type of stub from
11771 Reloc_stub pointer to Stub pointer.
11772 (Stub_table::addralign_, Stub_table::has_been_changed_): Remove.
11773 (Stub_table::Cortex_a8_stub_list): New typedef.
11774 (Stub_table::cortex_a8_stubs_, Stub_table::prev_data_size_,
11775 Stub_table::prev_addralign_): New data member.
11776 (Arm_relobj::Arm_relobj): Initialize data member
11777 section_has_cortex_a8_workaround_.
11778 (Arm_relobj::section_has_cortex_a8_workaround,
11779 Arm_relobj::mark_section_for_cortex_a8_workaround): New method
11780 definitions.
11781 (Arm_relobj::section_has_cortex_a8_workaround_): New data member
11782 declarations.
11783 (Target_arm::relocate_stub): Change parameter type of stub from
11784 Reloc_stub pointer to Stub pointer.
11785 (Insn_template::size, Insn_template::alignment): Handle
11786 THUMB16_SPECIAL_TYPE.
11787 (Stub_table::remove_all_cortex_a8_stubs, Stub_table::finalize_stubs,
11788 Stub_table::update_data_size_and_addralign,
11789 Stub_table::apply_cortex_a8_workaround_to_address_range): New method
11790 definitions.
11791 (Stub_table::relocate_stubs): Handle Cortex-A8 stubs.
11792 (Stub_table::do_write): Ditto.
11793 (Target_arm::do_relax): Adjust code for changes in Stub_table.
11794
11795 2010-01-08 Ian Lance Taylor <iant@google.com>
11796
11797 PR 11108
11798 * symtab.h (class Symbol): Remove fields is_target_special_ and
11799 has_plt_offset_. Add field is_defined_in_discarded_section_.
11800 (Symbol::is_defined_in_discarded_section): New function.
11801 (Symbol::set_is_defined_in_discarded_section): New function.
11802 (Symbol::has_plt_offset): Rewrite.
11803 (Symbol::set_plt_offset): Verify that new offset is not -1U.
11804 * symtab.cc (Symbol::init_fields): Initialize plt_offset_ to -1U.
11805 Don't initialize is_target_special_ or has_plt_offset_.
11806 Initialize is_defined_in_discarded_section_.
11807 (Symbol_table::add_from_relobj): If appropriate, set
11808 is_defined_in_discarded_section.
11809 * resolve.cc (Symbol::override_base_with_special): Don't test
11810 is_target_special_. Change has_plt_offset_ to has_plt_offset().
11811 * target-reloc.h (relocate_section): Do special handling for
11812 symbols defined in discarded sections for global symbols as well
11813 as local symbols.
11814
11815 2010-01-08 Ian Lance Taylor <iant@google.com>
11816
11817 * dynobj.cc (big_endian>::find_dynsym_sections): Set pi to NULL in
11818 the SHT_SYMTAB case.
11819
11820 2010-01-08 Ian Lance Taylor <iant@google.com>
11821
11822 * object.cc (Sized_relobj::do_layout): Don't get confused if
11823 layout_eh_frame returns NULL.
11824
11825 2010-01-08 Ian Lance Taylor <iant@google.com>
11826
11827 PR 11084
11828 * dynobj.cc (Sized_dynobj::find_dynsym_sections): If there is no
11829 dynamic symbol table, use the normal symbol table.
11830 (Sized_dynobj::do_read_symbols): Remove assertion about type of
11831 symbol table.
11832
11833 2010-01-08 Ian Lance Taylor <iant@google.com>
11834
11835 PR 11072
11836 * layout.cc (Layout::include_section): Remove .gnu_debuglink
11837 sections.
11838
11839 2010-01-08 H.J. Lu <hongjiu.lu@intel.com>
11840
11841 * version.cc (print_version): Change to "Copyright 2010".
11842
11843 2010-01-08 Ian Lance Taylor <iant@google.com>
11844
11845 PR 10287
11846 PR 11063
11847 * i386.cc (class Target_i386): Change return type of plt_section
11848 to be non-const.
11849 (class Output_data_plt_i386): Add tls_desc_rel_ field.
11850 (Output_data_plt_i386::Output_data_plt_i386): Initialize
11851 tls_desc_rel_ field.
11852 (Output_data_plt_i386::rel_tls_desc): New function.
11853 (Target_i386::rel_tls_desc_section): New function.
11854 (Target_i386::Scan::local): Rewrite R_386_TLS_GOTDESC handling.
11855 (Target_i386::Scan::global): For R_386_TLS_GOTDESC put
11856 R_386_TLS_DESC reloc in rel_tls_desc_section.
11857 * x86_64.cc (class Target_x86_64): Add tlsdesc_reloc_info_ field.
11858 Define struct Tlsdesc_info.
11859 (Target_x86_64::Target_x86_64): Initialize tlsdesc_reloc_info_.
11860 (Target_x86_64::do_reloc_symbol_index): New function.
11861 (Target_x86_64::add_tlsdesc_info): New function.
11862 (class Output_data_plt_x86_64): Add tlsdesc_rel_ field.
11863 (Output_data_plt_x86_64::Output_data_plt_x86_64): Initialize
11864 tlsdesc_rel_ field.
11865 (Output_data_plt_x86_64::rela_plt): Rename from rel_plt. Change
11866 all callers.
11867 (Output_data_plt_x86_64::rela_tlsdesc): New function.
11868 (Target_x86_64::rela_tlsdesc_section): New function.
11869 (Target_x86_64::Scan::local): Rewrite R_X86_64_GOTPC32_TLSDESC
11870 handling.
11871 (Target_x86_64::Scan::global): For R_X86_64_GOTPC32_TLSDESC put
11872 (Target_x86_64::do_reloc_addend): New function.
11873 R_X86_64_TLSDESC reloc in rela_tlsdesc_section.
11874 * output.h (class Output_reloc) [SHT_REL]: Add new constructor
11875 declarations. Define TARGET_CODE. Add arg field to u1_ union.
11876 (Output_reloc::type): New function.
11877 (Output_reloc::is_local_section_symbol): Check for TARGET_CODE.
11878 (Output_reloc::is_target_specific): New function.
11879 (Output_reloc::target_arg): New function.
11880 (class Output_reloc) [SHT_RELA]: Add four new constructors for
11881 absolute relocs and target specific relocs.
11882 (class Output_data_reloc) [SHT_REL]: Add add_absolute and
11883 add_target_specific.
11884 (class Output_data_reloc) [SHT_RELA]: Likewise.
11885 * output.cc (Output_reloc::Output_reloc): Add four new versions
11886 for absolute relocs and target specific relocs.
11887 (Output_reloc::set_needs_dynsym_index): Add TARGET_CODE case.
11888 (Output_reloc::get_symbol_index): Likewise.
11889 (Output_reloc::local_section_offset): Check that local_sym_index_
11890 is not TARGET_CODE or 0.
11891 (Output_reloc::symbol_value): Likewise.
11892 (Output_reloc::write) [SHT_RELA]: Call target for target specific
11893 reloc.
11894 * target.h (class Target): Add reloc_symbol_index and reloc_addend
11895 functions. Add do_reloc_symbol_index and do_reloc_addend virtual
11896 functions.
11897 * layout.cc (add_target_dynamic_tags): Use output section for
11898 DT_PLTRELSZ and DT_JMPREL.
11899
11900 2010-01-07 Ian Lance Taylor <iant@google.com>
11901
11902 PR 11061
11903 * output.h (class Output_reloc) [SHT_RELA]: Add is_relative
11904 function.
11905 (class Output_data_reloc_generic): Define.
11906 (class Output_data_reloc_base): Change base class to
11907 Output_data_reloc_generic. Change add() method to call
11908 bump_relative_reloc_count for a relative reloc. Remove
11909 sort_relocs_ field.
11910 * output.cc (Output_data_reloc_base::do_write): Change sort_reloc_
11911 to sort_relocs().
11912 * layout.cc (Layout::add_target_dynamic_tags): Change dyn_rel to
11913 Output_data_reloc_generic*. Add DT_RELCOUNT/DT_RELACOUNT tag if
11914 appropriate.
11915 * layout.h (class Layout): Update declaration.
11916
11917 2010-01-07 Ian Lance Taylor <iant@google.com>
11918
11919 * output.h (class Output_data): Add const version of
11920 output_section and do_output_section.
11921 (class Output_section_data): Add const version of
11922 do_output_section.
11923 (class Output_section): Likewise.
11924 * layout.cc (Layout::add_target_dynamic_tags): New function.
11925 * layout.h (class Layout): Update declarations.
11926 * arm.cc (Target_arm::do_finalize_sections): Use
11927 add_target_dynamic_tags.
11928 * i386.cc (Target_i386::do_finalize_sections): Likewise.
11929 * powerpc.cc (Target_powerpc::do_finalize_sections): Likewise.
11930 * sparc.cc (Target_sparc::do_finalize_sections): Likewise.
11931 * x86_64.cc (Target_x86_64::do_finalize_sections): Likewise.
11932
11933 2010-01-07 Ian Lance Taylor <iant@google.com>
11934
11935 PR 11042
11936 * copy-relocs.cc (Copy_relocs::emit_copy_reloc): Mark the dynamic
11937 object as needed.
11938
11939 2010-01-07 Dmitry Gorbachev <d.g.gorbachev@gmail.com>
11940 Ian Lance Taylor <iant@google.com>
11941
11942 PR 11019
11943 * object.cc: Instantiate Xindex::initialize_symtab_xindex and
11944 Xindex::read_symtab_xindex.
11945
11946 2010-01-07 Doug Kwan <dougkwan@google.com>
11947
11948 * arm.cc (Insn_template::Type): New enum value THUMB16_SPECIAL_TYPE.
11949 (Insn_template::thumb16_bcond_insn): New method declaration.
11950 (Insn_template): Fix spelling.
11951 (Stub::thumb16_special): New method declaration.
11952 (Stub::do_write): Define virtual method which was previously pure
11953 virtual.
11954 (Stub::do_thumb16_special): New method declaration.
11955 (Stub::do_fixed_endian_write): New template member.
11956 (Reloc_stub::do_write): Remove.
11957 (Reloc_stub::do_fixed_endian_write): Remove.
11958 (Cortex_a8_stub): New class definition.
11959 (Stub_factory::make_cortex_a8_stub): New method definition.
11960 (Stub_factory::Stub_factory): Add missing static storage class
11961 qualifier for elf32_arm_stub_a8_veneer_blx.
11962
11963 2010-01-07 Ian Lance Taylor <iant@google.com>
11964
11965 PR 10980
11966 * options.h (class General_options): Add --warn-unresolved-symbols
11967 and --error-unresolved-symbols.
11968 * errors.cc (Errors::undefined_symbol): Implement
11969 --warn-unresolved-symbols.
11970
11971 * options.h (class General_options): Add -z text and -z textoff.
11972 * layout.cc (Layout::finish_dynamic_section): Implement -z text.
11973
11974 2010-01-06 Sriraman Tallam <tmsriram@google.com>
11975
11976 * gc.h (Garbage_collection::Cident_section_map): New typedef.
11977 (Garbage_collection::cident_sections): New function.
11978 (Garbage_collection::add_cident_section): New function.
11979 (Garbage_collection::cident_sections_): New member.
11980 (gc_process_relocs): Add references to sections whose names are C
11981 identifiers.
11982 * gold.h (cident_section_start_prefix): New constant.
11983 (cident_section_stop_prefix): New constant.
11984 (is_cident): New function.
11985 * layout.cc (Layout::define_section_symbols): Replace string constants
11986 with the newly defined constants.
11987 * object.cc (Sized_relobj::do_layout): Track sections whose names are
11988 C identifiers.
11989 * testsuite/Makefile.am: Add gc_orphan_section_test.
11990 * testsuite/Makefile.in: Regenerate.
11991 * testsuite/gc_orphan_section_test.cc: New file.
11992 * testsuite/gc_orphan_section_test.sh: New file.
11993
11994 2010-01-06 Ian Lance Taylor <iant@google.com>
11995
11996 PR 10980
11997 * options.h (class General_options): Add --warn-shared-textrel.
11998 * layout.cc (Layout::finish_dynamic_section): Implement
11999 --warn-shared-textrel.
12000
12001 PR 10980
12002 * options.h (class General_options): Add --warn-multiple-gp.
12003
12004 2010-01-06 Viktor Kutuzov <vkutuzov@accesssoftek.com>
12005
12006 * Makefile.am (incremental_dump_DEPENDENCIES): Remove
12007 $(THREADSLIB) and $(LIBDL).
12008 * Makefile.in: Rebuild.
12009
12010 2010-01-06 Ian Lance Taylor <iant@google.com>
12011
12012 PR 10980
12013 * options.cc (General_options::parse_section_start): New function.
12014 (General_options::section_start): New function.
12015 (General_options::General_options): Initialize all members.
12016 * options.h: Include <map>
12017 (class General_options): Add --section-start. Add section_starts_
12018 member.
12019 * layout.cc (Layout::attach_allocated_section_to_segment): If
12020 --section-start was used, set the address of the segment. Remove
12021 local sort_sections.
12022 (Layout::relaxation_loop_body): If the address of the load segment
12023 has been set by --section-start, don't use it.
12024 * output.h (Output_segment::update_flags_for_output_section): New
12025 function.
12026 * output.cc (Output_segment::add_output_section): Call
12027 update_flags_for_output_section.
12028
12029 2010-01-05 Ian Lance Taylor <iant@google.com>
12030
12031 PR 10980
12032 * options.h (class General_options): Add --undefined-version.
12033 * script.cc (struct Version_expression): Add was_matched_by_symbol
12034 field.
12035 (Version_script_info::matched_symbol): New function.
12036 (Version_script_info::get_symbol_version_helper): Call
12037 matched_symbol.
12038 (Version_script_info::check_unmatched_names): New function.
12039 * script.h (class Version_script_info): Update declarations.
12040 * gold.cc (queue_middle_tasks): Handle --no-undefined-version.
12041
12042 * options.h (class General_options): Use DEFINE_bool_alias for
12043 allow_multiple_definition.
12044 * resolve.cc (Symbol_table::should_override): Don't test
12045 allow_multiple_definition.
12046
12047 PR 10980
12048 * options.h (class General_options): Add --cref.
12049 * main.cc (main): Print cref table if --cref. Don't close mapfile
12050 until after printing cref table.
12051 * cref.cc: Include "symtab.h".
12052 (class Cref_inputs): Define Cref_table_compare and Cref_table.
12053 (Cref_table_compare::operator()): New function.
12054 (Cref_inputs::gather_cref): New function.
12055 (filecol): New static const.
12056 (Cref_inputs::print_cref): New function.
12057 (Cref::print_cref): New function.
12058 * cref.h: Include <cstdio>.
12059 (class Cref): Update declarations.
12060 * mapfile.h (Mapfile::file): New function.
12061 * object.h (class Object): Define Symbols. Declare virtual
12062 do_get_global_symbols.
12063 (Object::get_global_symbols): New function.
12064 * object.cc (Input_objects::add_object): Pass object to cref_ if
12065 --cref.
12066 (Input_objects::archive_start): Likewise.
12067 (Input_objects::archive_stop): Likewise.
12068 (Input_objects::print_cref): New function.
12069 * dynobj.h (Sized_dynobj::do_get_global_symbols): New function.
12070 * dynobj.cc (big_endian>::do_add_symbols): Create symbols_ if
12071 --cref.
12072 * plugin.cc (Sized_pluginobj::do_get_global_symbols): New
12073 function.
12074 * plugin.h (class Sized_pluginobj): Update declarations.
12075
12076 2010-01-05 Ian Lance Taylor <iant@google.com>
12077
12078 * symtab.cc (Symbol_table::add_from_object): Rename def parameter
12079 to is_default_version. Rename insdef to insdefault.
12080 (Symbol_table::add_from_relobj): Rename def to is_default_version
12081 and local to is_forced_local.
12082 (Symbol_table::add_from_pluginobj): Likewise.
12083 (Symbol_table::add_from_dynobj): Likewise.
12084 (Symbol_table::define_special_symbol): Rename insdef to
12085 insdefault.
12086
12087 2010-01-04 Ian Lance Taylor <iant@google.com>
12088
12089 PR 10980
12090 * options.h (class General_options): Add
12091 --allow-multiple-definition and -z muldefs.
12092 * resolve.cc (Symbol_table::should_override): Don't warn about a
12093 multiple symbol definition if --allow-multiple-definition or -z
12094 muldefs.
12095
12096 PR 10980
12097 * options.h (class General_options): Add --add-needed and
12098 --copy-dt-needed-entries. Tweak --as-needed help entry.
12099 * object.cc (Input_objects::check_dynamic_dependencies): Give an
12100 error if --copy-dt-needed-entries aka --add-needed is used and
12101 would cause a change in behaviour.
12102
12103 PR 10980
12104 * options.h (class General_options): Add -G as a short version of
12105 --shared. Add no-op options -assert, -g, and -i.
12106
12107 2010-01-04 Sriraman Tallam <tmsriram@google.com>
12108
12109 * gc.h (gc_process_relocs): Call is_section_foldable_candidate to
12110 check for .text or .gnu.linkonce.t sections.
12111 * icf.cc (Icf::find_identical_sections): Ditto.
12112 Change the detection for mangled function name within the section
12113 name.
12114 * icf.h (is_section_foldable_candidate): New function.
12115
12116 2009-12-30 Ian Lance Taylor <iant@google.com>
12117
12118 PR 10980
12119 * options.h (class General_options): Permit two dashes with
12120 --retain-symbols-file.
12121
12122 2009-12-30 Ian Lance Taylor <iant@google.com>
12123
12124 PR 10979
12125 * layout.cc (Layout::relaxation_loop_body): If -Ttext was used,
12126 don't put the file header and segment headers in the text
12127 segment.
12128
12129 PR 10979
12130 * common.cc (Sort_commons::operator()): Stabilize sort when both
12131 entries are NULL.
12132 (Symbol_table::do_allocate_commons_list): When allocating common
12133 symbols, skip a symbol which is no longer common.
12134 * symtab.h (Symbol::is_common): Test whether the symbol comes from
12135 an object before checking its type.
12136 * testsuite/common_test_2.c: New file.
12137 * testsuite/common_test_3.c: New file.
12138 * testsuite/Makefile.am (check_PROGRAMS): Add common_test_2.
12139 (common_test_2_SOURCES, common_test_2_DEPENDENCIES): Define.
12140 (common_test_2_LDFLAGS, common_test_2_LDADD): Define.
12141 (common_test_2_pic.o, common_test_2.so): New targets.
12142 (common_test_3_pic.o, common_test_3.so): New targets.
12143 * testsuite/Makefile.in: Rebuild.
12144
12145 PR 10979
12146 * script.cc (read_input_script): If we see a new SECTIONS clause,
12147 and we have added an input section, give an error.
12148 * layout.h (class Layout): Add have_added_input_section function.
12149 Add have_added_input_section_ field.
12150 * layout.cc (Layout::Layout): Initialize
12151 have_added_input_section_.
12152 (Layout::layout): Set have_added_input_section_.
12153 (Layout::layout_eh_frame): Likewise.
12154
12155 2009-12-30 Ian Lance Taylor <iant@google.com>
12156
12157 PR 10931
12158 * options.h (class General_options): Add --sort-common option.
12159 * symtab.h (class Symbol_table): Define Sort_commons_order enum.
12160 * common.cc (Sort_common): Add sort_order parameter to
12161 constructor. Add sort_order_ field.
12162 (Sort_commons::operator): Check sort_order_.
12163 (Symbol_table::allocate_commons): Determine the sort order.
12164 (Symbol_table::do_allocate_commons): Add sort_order parameter.
12165 Change all callers.
12166 (Symbol_table::do_allocate_commons_list): Likewise.
12167
12168 2009-12-30 Ian Lance Taylor <iant@google.com>
12169
12170 PR 10916
12171 * symtab.cc (Symbol_table::add_from_relobj): When not exporting
12172 symbols from this object, don't change the visibility of an
12173 undefined symbol.
12174 * testsuite/exclude_libs_test_1.c (lib1_ref): New function.
12175
12176 2009-12-30 Ian Lance Taylor <iant@google.com>
12177
12178 PR 10861
12179 * script.h (class Version_script_info): Define Language enum.
12180 Update declarations. Define Glob, Exact, and Lookup types. Add
12181 new fields globals_, locals_, and is_finalized_.
12182 * script.cc: Various formatting fixes.
12183 (class Parser_closure): Change language_stack_ from a vector of
12184 std::string to one of Version_script_info::Language. Adjust all
12185 uses accordingly.
12186 (class Lazy_demangler): Remove.
12187 (struct Version_expression): Change language from std::string to
12188 Version_script_info::Language.
12189 (Version_script_info::Version_script_info): New function.
12190 (Version_script_info::~Version_script_info): Don't call clear.
12191 (Version_script_info::finalize): New function.
12192 (Version_script_info::build_lookup_tables): New function.
12193 (Version_script_info::build_expression_list_lookup): New
12194 function.
12195 (Version_script_info::get_symbol_version_helper): Rewrite to use
12196 lookup tables.
12197 (Version_script_info::print_expression_list): Adjust to use
12198 Version_script_info::Language.
12199 (script_push_lex_into_version_mode): Check that the version script
12200 has not been finalized.
12201 (version_script_push_lang): Change language string to
12202 Version_script_info::Language.
12203 * options.cc (Command_line::version_script): New function.
12204 * options.h (class General_options): Add finalize_dynamic_list
12205 function. Change version_script from declaration to definition.
12206 * testsuite/ver_test_4.script: Remove duplicate def of t2_2.
12207 * testsuite/version_script.map: Remove duplicate def of foo.
12208 * testsuite/Makefile.am (ver_matching_def.so): Depend upon
12209 version_script.map.
12210 * testsuite/Makefile.in: Rebuild.
12211
12212 2009-12-30 Ian Lance Taylor <iant@google.com>
12213
12214 PR 10843
12215 * target-reloc.h (relocate_for_relocatable): When copying a reloc,
12216 if the input symbol index is 0, make the output symbol index 0.
12217
12218 2009-12-30 Ian Lance Taylor <iant@google.com>
12219
12220 PR 10670
12221 * options.h (class General_options): Add -x/--discard-all.
12222 * object.cc (Sized_relobj::do_count_local_symbols): Handle
12223 --discard-all. If the local symbol needs a dynamic entry, check
12224 that before handling --discard-locals.
12225
12226 2009-12-30 Ian Lance Taylor <iant@google.com>
12227
12228 PR 10450
12229 * output.cc (Output_segment::Output_segment): If PT_TLS, set the
12230 flags to PF_R.
12231 (Output_segment::add_output_section): Don't change the flags if
12232 the type is PT_TLS.
12233
12234 PR 10450
12235 * dynobj.cc (Dynobj::create_gnu_hash_table): Add symbols to the
12236 GNU hash table if they need a dynamic value. Otherwise, don't add
12237 them if they are defined in a dynamic object or are forced local.
12238
12239 2009-12-29 Ian Lance Taylor <iant@google.com>
12240
12241 PR 10450
12242 * layout.cc (Layout::create_dynamic_symtab): Only set entsize of
12243 .gnu.hash table for a 32-bit target.
12244
12245 PR 10450
12246 * symtab.h (Symbol::needs_dynsym_entry): A symbol in both a
12247 regular and a dynamic object only needs a dynamic symbol table
12248 entry if it is externally visible.
12249
12250 PR 10450
12251 * i386.cc (class Target_i386): Initialize global_offset_table_ in
12252 constructor. Add global_offset_table_ field.
12253 (Target_i386::got_section): Set global_offset_table_.
12254 (Target_i386::do_finalize_sections): Set global_offset_table_
12255 size.
12256 * x86_64.cc (class Target_x86_64): Initialize global_offset_table_
12257 in constructor. Add global_offset_table_ field.
12258 (Target_x86_64::got_section): Set global_offset_table_.
12259 (Target_x86_64::do_finalize_sections): Set global_offset_table_
12260 size.
12261
12262 * layout.cc (Layout::Layout): Initialize increase_relro_.
12263 (Layout::get_output_section): Add is_relro, is_last_relro, and
12264 is_first_non_relro parameters. Change all callers.
12265 (Layout::choose_output_section): Likewise.
12266 (Layout::add_output_section_data): Likewise.
12267 (Layout::make_output_section): Likewise.
12268 (Layout::set_segment_offsets): Clear increase_relro when using a
12269 linker script.
12270 * layout.h (class Layout): Add increase_relro method. Add
12271 increase_relro_ field. Update declarations.
12272 * output.cc (Output_section::Output_section): Initialize
12273 is_last_relro_ and is_first_non_relro_.
12274 (Output_segment::add_output_section): Group relro sections is
12275 do_sort is true. Handle is_last_relro and is_first_non_relro.
12276 (Output_segment::maximum_alignment): Remove relro handling.
12277 (Output_segment::set_section_addresses): Add increase_relro
12278 parameter. Change all callers. Add initial alignment to align
12279 relro sections on separate page. Remove old relro handling.
12280 (Output_segment::set_section_list_addresses): Remove in_relro
12281 parameter. Change all callers.
12282 (Output_segment::set_offset): Add increase parameter. Change all
12283 callers. Remove old relro handling.
12284 * output.h (class Output_section): Add new methods: is_last_relro,
12285 set_is_last_relro, is_first_non_relro, set_is_first_non_relro.
12286 Add is_last_relro_ and is_first_non_relro_ fields.
12287 * i386.cc (Target_i386::got_section): Don't call set_is_relro.
12288 Create separate .got.plt section. Call increase_relro.
12289 * x86_64.cc (Target_x86_64::got_section): Likewise.
12290 * testsuite/relro_script_test.t: Add .got.plt.
12291
12292 PR 10450
12293 * layout.cc (Layout::Layout): Initialize dynamic_symbol_ field.
12294 (Layout::create_initial_dynamic_sections): Set dynamic_symbol_.
12295 (Layout::finalize): Call set_dynamic_symbol_size.
12296 (Layout::set_dynamic_symbol_size): New function.
12297 * layout.h (class Layout): Add dynamic_symbol_ field. Declare
12298 set_dynamic_symbol_size.
12299
12300 PR 10450
12301 * output.h (class Output_section): Add is_entsize_zero_ field.
12302 * output.cc (Output_section::Output_section): Initialize
12303 is_entsize_zero_.
12304 (Output_section::set_entsize): If two different entsizes are
12305 requested, force it to zero.
12306 (Output_section::add_input_section): Set flags for .debug_str
12307 before updating section flags. Set entsize.
12308 (Output_section::update_flags_for_input_section): Set SHF_MERGE
12309 and SHF_STRING if all input sections have those flags.
12310
12311 2009-12-29 Rafael Espindola <espindola@google.com>
12312
12313 * main.cc (main): Fix the sys time reporting.
12314 * workqueue.cc (Workqueue::find_and_run_task): Fix the sys time
12315 reporting.
12316
12317 2009-12-29 Sriraman Tallam <tmsriram@google.com>
12318
12319 * options.cc (General_options::parse_version): Allow -v to exit
12320 without an error if there is nothing to link.
12321
12322 2009-12-29 Ian Lance Taylor <iant@google.com>
12323
12324 * configure.ac: Set the MCMODEL_MEDIUM conditional to false if
12325 using a version of gcc before 4.1.
12326 * configure: Rebuild.
12327
12328 2009-12-28 Chris Demetriou <cgd@google.com>
12329
12330 * attributes.cc (Output_attributes_section_data::do_write): Use
12331 std::vector::front rather than std::vector::data.
12332
12333 2009-12-28 Ian Lance Taylor <iant@google.com>
12334
12335 * symtab.h (class Symbol_table): Add enum Defined.
12336 * resolve.cc (Symbol_table::should_override): Add defined
12337 parameter. Change all callers. Test whether object is NULL
12338 before calling a method on it.
12339 (Symbol_table::report_resolve_problem): Add defined parameter.
12340 Change all callers.
12341 (Symbol_table::should_override_with_special): Likewise.
12342 * symtab.cc (Symbol_table::define_in_output_data): Add defined
12343 parameter. Change all callers.
12344 (Symbol_table::do_define_in_output_data): Likewise.
12345 (Symbol_table::define_in_output_segment): Likewise.
12346 (Symbol_table::do_define_in_output_segment): Likewise.
12347 (Symbol_table::define_as_constant): Likewise.
12348 (Symbol_table::do_define_as_constant): Likewise.
12349 * script.h (class Symbol_assignment): Add is_defsym parameter to
12350 constructor; change all callers.
12351 * script.cc (Script_options::add_symbol_assignment): Add is_defsym
12352 parameter. Change all callers. Add is_defsym_ field.
12353 (class Parser_closure): Add parsing_defsym parameter to
12354 constructor; change all callers. Add parsing_defsym accessor
12355 function. Add parsing_defsym_ field.
12356
12357 2009-12-28 Ian Lance Taylor <iant@google.com>
12358
12359 * gold.cc (queue_middle_tasks): Fix formatting.
12360 * object.cc (Relobj::is_section_name_included): Likewise.
12361
12362 2009-12-23 Ian Lance Taylor <iant@google.com>
12363
12364 * i386.cc (Target_i386::do_calls_non_split): Recognize
12365 -fsplit-stack prologue for a function with a static chain.
12366 * x86_64.cc (Target_x86_64::do_calls_non_split): Recognize
12367 -fsplit-stack prologue when using %r11.
12368
12369 2009-12-21 Sriraman Tallam <tmsriram@google.com>
12370
12371 * options.cc (General_options::parse_version): Make -v continue and do
12372 the link like GNU ld does.
12373
12374 2009-12-17 Rafael Avila de Espindola <espindola@google.com>
12375
12376 * Makefile.am (CCFILES): Add timer.cc.
12377 (HFILES): Add timer.h.
12378 * configure.ac: Check for sysconf and times.
12379 * main.cc: include timer.h.
12380 (main): Use Timer instead of get_run_time.
12381 * timer.cc: New.
12382 * timer.h: New.
12383 * workqueue.cc: include timer.h.
12384 (Workqueue::find_and_run_task):
12385 Report user, sys and wall time.
12386 * Makefile.in: Regenerate.
12387 * config.in: Regenerate.
12388 * configure: Regenerate.
12389
12390 2009-12-16 Doug Kwan <dougkwan@google.com>
12391
12392 * arm.cc (Arm_relobj::scan_sections_for_stubs): Exclude ICF-eliminated
12393 sections.
12394 * object.cc (Sized_relobj::do_finalize_local_symbols): Handle
12395 relaxed input sections.
12396 * output.cc (Output_section::find_relaxed_input_section): Change
12397 return type to Output_relaxed_input_section pointer. Adjust code
12398 for new type of relaxed_input_section_map_.
12399 * output.h (Output_section::find_relaxed_input_section): Change
12400 return type to Output_relaxed_input_section pointer.
12401 (Output_section::Output_relaxed_input_section_by_input_section_map):
12402 New type.
12403 (Output_section::relaxed_input_section_map_): Change type to
12404 Output_section::Output_relaxed_input_section_by_input_section_map.
12405 * symtab.cc (Symbol_table::compute_final_value): Handle relaxed
12406 input section.
12407
12408 2009-12-15 Ian Lance Taylor <iant@google.com>
12409
12410 * layout.cc (Layout::create_shstrtab): Only write out after input
12411 sections if we are compressing debug sections.
12412
12413 2009-12-15 Ian Lance Taylor <iant@google.com>
12414
12415 * archive.cc (Archive::add_symbols): Only look up a symbol without
12416 a version if there is, in fact, a version.
12417
12418 2009-12-14 Ian Lance Taylor <iant@google.com>
12419
12420 Revert -Wshadow changes, all changes from:
12421 2009-12-11 Doug Kwan <dougkwan@google.com>
12422 2009-12-11 Nick Clifton <nickc@redhat.com>
12423 * configure.ac: Remove -Wshadow when setting WARN_CXXFLAGS.
12424
12425 2009-12-11 Doug Kwan <dougkwan@google.com>
12426
12427 * arm.cc (Target_arm::do_finalize_sections): Fix build breakage
12428 due to -Wshadow.
12429 * attributes.cc (Object_attribute::size): Ditto.
12430 (Attributes_section_data::size): Ditto.
12431 (Attributes_section_data::Attributes_section_data): Ditto.
12432 (Output_attributes_section_data::do_write): Ditto.
12433 * attributes.h (Object_attribute::set_type): Ditto.
12434 * testsuite/tls_test_main.cc (safe_lock, safe_unlock): Ditto.
12435
12436 2009-12-11 Nick Clifton <nickc@redhat.com>
12437
12438 * archive.cc: Fix shadowed variable warnings.
12439 * arm.cc: Likewise.
12440 * compressed_output.cc: Likewise.
12441 * compressed_output.h: Likewise.
12442 * configure: Likewise.
12443 * dwarf_reader.cc: Likewise.
12444 * dynobj.cc: Likewise.
12445 * dynobj.h: Likewise.
12446 * ehframe.cc: Likewise.
12447 * ehframe.h: Likewise.
12448 * errors.cc: Likewise.
12449 * expression.cc: Likewise.
12450 * fileread.cc: Likewise.
12451 * fileread.h: Likewise.
12452 * freebsd.h: Likewise.
12453 * i386.cc: Likewise.
12454 * icf.cc: Likewise.
12455 * incremental.h: Likewise.
12456 * layout.cc: Likewise.
12457 * layout.h: Likewise.
12458 * mapfile.cc: Likewise.
12459 * merge.cc: Likewise.
12460 * merge.h: Likewise.
12461 * object.cc: Likewise.
12462 * object.h: Likewise.
12463 * options.h: Likewise.
12464 * output.cc: Likewise.
12465 * output.h: Likewise.
12466 * parameters.cc: Likewise.
12467 * plugin.cc: Likewise.
12468 * powerpc.cc: Likewise.
12469 * reduced_debug_output.cc: Likewise.
12470 * reduced_debug_output.h: Likewise.
12471 * reloc.cc: Likewise.
12472 * reloc.h: Likewise.
12473 * resolve.cc: Likewise.
12474 * script-sections.cc: Likewise.
12475 * script.cc: Likewise.
12476 * script.h: Likewise.
12477 * sparc.cc: Likewise.
12478 * symtab.cc: Likewise.
12479 * symtab.h: Likewise.
12480 * target-select.cc: Likewise.
12481 * target-select.h: Likewise.
12482 * token.h: Likewise.
12483 * workqueue.cc: Likewise.
12484 * workqueue.h: Likewise.
12485 * x86_64.cc: Likewise.
12486
12487 2009-12-10 Doug Kwan <dougkwan@google.com>
12488
12489 * arm.cc (attributes.h): New include.
12490 (Arm_relobj::Arm_relobj): Initialize attributes_section_data_.
12491 (Arm_relobj::~Arm_relobj): Delete object pointed by
12492 attributes_section_data_.
12493 (Arm_relobj::attributes_section_data): New method definition.
12494 (Arm_relobj::attributes_section_data_): New data member declaration.
12495 (Arm_dynobj::Arm_dynobj): Initialize attributes_section_data_.
12496 (Arm_dynobj::~Arm_dynobj): Delete object pointed by
12497 attributes_section_data_.
12498 (Arm_dynobj::attributes_section_data): New method definition.
12499 (Arm_dynobj::attributes_section_data_): New data member declaration.
12500 (Target_arm::Target_arm): Initialize attributes_section_data_. Change
12501 initialization value of may_use_blx_ to false.
12502 (Target_arm::using_thumb2, Target_arm::using_thumb_only,
12503 Target_arm::may_use_arm_nop, Target_arm::may_use_thumb2_nop): Use
12504 object attributes to compute results instead of hard-coding.
12505 (Target_arm::do_attribute_arg_type, Target_arm::do_attributes_order,
12506 Target_arm::get_secondary_compatible_arch,
12507 Target_arm::set_secondary_compatible_arch
12508 Target_arm::tag_cpu_arch_combine, Target_arm::aeabi_enum_name,
12509 Target_arm::tag_cpu_name_value, Target_arm::merge_object_attributes):
12510 New method declarations.
12511 (Target_arm::get_aeabi_object_attribute): New method definition.
12512 (Target_arm::attributes_section_data_): New data member declaration.
12513 (read_arm_attributes_section): New template definition.
12514 (Arm_relobj::do_read_symbols): Read attributes section if it exists.
12515 (Arm_dynobj::do_read_symbols): Ditto.
12516 (Target_arm::do_finalize_sections): Merge attributes sections from
12517 input. Check for BLX use after attributes section merging.
12518 Fix __exidx_start and __exidx_end visibility. Create an
12519 .ARM.attributes section if necessary.
12520 (Target_arm::get_secondary_compatible_arch,
12521 Target_arm::set_secondary_compatible_arch,
12522 Target_arm::tag_cpu_arch_combine, Target_arm::aeabi_enum_name,
12523 Target_arm::tag_cpu_name_value, Target_arm::merge_object_attributes,
12524 Target_arm::do_attribute_arg_type, Target_arm::do_attributes_order):
12525 New method definitions.
12526
12527 2009-12-09 Ian Lance Taylor <iant@google.com>
12528
12529 * plugin.cc (Plugin::load): Don't cast from void* to a function
12530 pointer.
12531
12532 2009-12-09 Ian Lance Taylor <iant@google.com>
12533
12534 * dynobj.cc (Sized_dynobj::do_read_symbols): Clear version
12535 information fields.
12536
12537 2009-12-09 H.J. Lu <hongjiu.lu@intel.com>
12538
12539 * testsuite/Makefile.am (two_file_shared_1_pic_2_test_DEPENDENCIES):
12540 Replace two_file_shared_1.so with two_file_shared_2.so.
12541 * testsuite/Makefile.in: Regenerated.
12542
12543 2009-12-08 Doug Kwan <dougkwan@google.com>
12544
12545 * Makefile.am (CCFILES): Add attributes.cc and int_encoding.cc.
12546 (HFILES): Add attributes.h and int_encoding.h.
12547 * Makefile.in: Regenerate.
12548 * dwarf_reader.cc (read_unsigned_LEB_128, read_signed_LEB_128): Move
12549 function definitions to int_encoding.cc
12550 * dwarf_reader.h (read_unsigned_LEB_128, read_signed_LEB_128): Move
12551 prototypes to int_encoding.h
12552 * reduced_debug_output.cc (int_encoding.h): New include.
12553 (write_unsigned_LEB_128, get_length_as_unsigned_LEB_128): Move
12554 function definitions to int_encoding.cc
12555 (insert_into_vector, read_from_pointer): Move template definitions to
12556 int_encoding.h
12557 * attributes.cc: New file.
12558 * attributes.h: New file.
12559 * int_encoding.cc: New file.
12560 * int_encoding.h: New file.
12561
12562 2009-12-07 Rafael Avila de Espindola <espindola@google.com>
12563
12564 PR gold/11055
12565 * incremental-dump.cc (dump_incremental_inputs): New.
12566 (main): Use dump_incremental_inputs.
12567
12568 2009-12-07 H.J. Lu <hongjiu.lu@intel.com>
12569
12570 PR gold/10893
12571 * i386.cc (Target_i386::Scan::globa): Use is_func instead of
12572 checking elfcpp::STT_FUNC.
12573 (Target_i386::Relocate::relocate): Likewise.
12574 * x86_64.cc (Target_x86_64::Scan::global): Likewise.
12575
12576 * symtab.cc (Symbol_table::sized_write_symbol): Turn IFUNC
12577 symbols from shared libraries into normal FUNC symbols.
12578
12579 * symtab.h (Symbol): Add is_func and use it.
12580
12581 2009-12-05 Doug Kwan <dougkwan@google.com>
12582
12583 * arm.cc (Target_arm::arm_info): Initialize new fields
12584 attributes_section and attributes_vendor.
12585 * i386.cc (Target_i386::i386_info): Same.
12586 * object.cc (Sized_relobj::do_layout): Skip attribute section.
12587 * gold/powerpc.cc (Target_powerpc::powerpc_info): Initialize new
12588 fields attributes_section and attributes_vendor.
12589 * sparc.cc (Target_sparc::sparc_info): Same.
12590 * target.h (Target::attributes_section, Target::attributes_vendor,
12591 Target::is_attributes_section, Target::attribute_arg_type,
12592 Target::attributes_order): New method definitions.
12593 (Target::Target_info::attributes_section,
12594 Target::Target_info::attributes_vendor): New fields.
12595 (Target::do_attribute_arg_type, Target::do_attributes_order): New
12596 virtual method definitions.
12597 * x86_64.cc (Target_x86_64::x86_64_info): Initialize new fields
12598 attributes_section and attributes_vendor.
12599 * testsuite/testfile.cc (Target_test::test_target_info): Same.
12600
12601 2009-12-05 Doug Kwan <dougkwan@google.com>
12602
12603 * arm.cc: Update comments about interworking and stub generation.
12604 (Target_arm::Relocate::reloc_is_non_pic): Update list of relocations
12605 considered as non-PIC.
12606 (Arm_relocate_functions::base_abs): Fix formatting.
12607 (Arm_relocate_functions::got_prel): Fix comment. Change interface
12608 of function to use GOT entry address instead of offset.
12609 (Target_arm::Scan::global): Issue an error if a symbol would need a
12610 PLT does not get one because it is untyped. Remove code to create
12611 dynamic symbols for relative branches.
12612 (Target_arm::Relocate::relocate: Use 0 instead of false since function
12613 takes unsigned integer instead of boolean.
12614
12615 2009-12-05 H.J. Lu <hongjiu.lu@intel.com>
12616
12617 * testsuite/Makefile.am (constructor_test_LDADD): New. Empty.
12618 (two_file_test_LDADD): Likewise.
12619 (common_test_1_LDADD): Likewise.
12620 (exception_test_LDADD) Likewise.
12621 (weak_test_LDADD): Likewise.
12622 (many_sections_test_LDADD): Likewise.
12623 (initpri1_LDADD): Likewise.
12624 (script_test_1_LDADD): Likewise.
12625 (script_test_2_LDADD): Likewise.
12626 (justsyms_LDADD): Likewise.
12627 (binary_test_LDADD): Likewise.
12628 (large_LDADD): Likewise.
12629 * testsuite/Makefile.in: Regenerated.
12630
12631 2009-12-04 H.J. Lu <hongjiu.lu@intel.com>
12632
12633 * resolve.cc (symbol_to_bits): Treat STB_GNU_UNIQUE as STB_GLOBAL.
12634 (Symbol_table::override_with_special): Likewise.
12635 (Symbol_table::add_from_object): Likewise.
12636
12637 2009-12-04 Rafael Avila de Espindola <espindola@google.com>
12638
12639 * incremental.cc (Incremental_inputs::sized_create_inputs_section_data):
12640 Don't set the data_offset twice.
12641
12642 2009-12-04 Rafael Avila de Espindola <espindola@google.com>
12643
12644 * testsuite/Makefile.in: Regenerate.
12645
12646 2009-12-03 Doug Kwan <dougkwan@google.com>
12647
12648 * arm.cc: Remove comment about missing .ARM.exidx section symbols.
12649 (Target_arm::do_finalize_sections): Add parameter for symbol table
12650 pointer. Add __exidx_start and __exidx_end symbols as appropriate.
12651 * i386.cc (Target_i386::do_finalize_sections): Add an additional
12652 parameter for symbol table pointer.
12653 * layout.cc (Layout::finalize): Call Target::finalize_sections with
12654 an additional parameter for a pointer to symbol table.
12655 * powerpc.cc (Target_powerpc::do_finalize_sections): Add an additional
12656 parameter for a symbol table pointer.
12657 * sparc.cc (Target_sparc::do_finalize_sections): Ditto.
12658 * target.h (Target::finalize_sections, Target::do_finalize_sections):
12659 Ditto.
12660 * x86_64.cc (Target_x86_64::do_finalize_sections): Add an additional
12661 parameter for a symbol table pointer.
12662
12663 2009-12-03 Rafael Avila de Espindola <espindola@google.com>
12664
12665 * incremental.cc (Incremental_inputs_header)
12666 (Incremental_inputs_header_write, Incremental_inputs_entry)
12667 (Incremental_inputs_entry_write): Move ...
12668 * incremental.h (Incremental_inputs_header)
12669 (Incremental_inputs_header_write, Incremental_inputs_entry)
12670 (Incremental_inputs_entry_write): here.
12671
12672 2009-12-02 Rafael Avila de Espindola <espindola@google.com>
12673
12674 * incremental.cc (make_sized_incremental_binary): Set the target.
12675 Error if it is incompatible.
12676 * output.h (Output_file): Add filename method.
12677
12678 2009-12-02 Rafael Avila de Espindola <espindola@google.com>
12679
12680 * incremental.cc (Incremental_inputs_entry): Remove unused argument
12681 from the get_* methods.
12682
12683 2009-12-02 Rafael Avila de Espindola <espindola@google.com>
12684
12685 * incremental-dump.cc (main): Check that the offeset of a script is 0.
12686 * incremental.cc (Incremental_inputs::sized_create_inputs_section_data):
12687 Write 0 for the data_offset of scripts.
12688
12689 2009-12-02 Rafael Avila de Espindola <espindola@google.com>
12690
12691 * testsuite/Makefile.am: Add the incremental_test.sh test.
12692 * testsuite/incremental_test.sh: New.
12693 * testsuite/incremental_test_1.c: New.
12694 * testsuite/incremental_test_2.c: New.
12695
12696 2009-12-01 Rafael Avila de Espindola <espindola@google.com>
12697
12698 * incremental-dump.cc (main): Fix typos.
12699
12700 2009-11-27 Rafael Avila de Espindola <espindola@google.com>
12701
12702 PR gold/11025
12703 * incremental-dump.cc (main): Use llu to print 64 bit values.
12704
12705 2009-11-26 Per Øyvind Karlsen <peroyvind@mandriva.org>
12706 H.J. Lu <hongjiu.lu@intel.com>
12707
12708 * Makefile.am (incremental_dump_DEPENDENCIES): Add $(THREADSLIB)
12709 $(LIBDL).
12710 (incremental_dump_LDADD): Likewise.
12711 * Makefile.in: Regenerated.
12712
12713 2009-11-25 Doug Kwan <dougkwan@google.com>
12714
12715 Revert:
12716
12717 2009-11-25 Doug Kwan <dougkwan@google.com>
12718
12719 * arm.cc (Target_arm::Target_arm): Move method definition
12720 outside of class definition. Add code to handle
12721 --target1-rel, --target1-abs and --target2= options.
12722 (Target_arm::get_reloc_reloc_type): Change method to be
12723 non-static and const.
12724 (Target_arm::target1_is_rel_, Target_arm::target2_reloc_):
12725 New data member declaration.
12726 (Target_arm::Scan::local, Target_arm::Scan::global,
12727 Target_arm::Relocate::relocate,
12728 Target_arm::Relocatable_size_for_reloc::get_size_for_reloc):
12729 Adjust call to Target_arm::get_real_reloc_type.
12730 (Target_arm::get_real_reloc_type): Use command line options
12731 to determine real types of R_ARM_TARGET1 and R_ARM_TARGET2.
12732 * options.h (--target1-rel, --target1-abs, --target2): New
12733 ARM-only options.
12734
12735 2009-11-25 Doug Kwan <dougkwan@google.com>
12736
12737 * arm.cc (Target_arm::Target_arm): Move method definition outside of
12738 class definition. Add code to handle --target1-rel, --target1-abs
12739 and --target2= options.
12740 (Target_arm::get_reloc_reloc_type): Change method to be non-static
12741 and const.
12742 (Target_arm::target1_is_rel_, Target_arm::target2_reloc_): New data
12743 member declaration.
12744 (Target_arm::Scan::local, Target_arm::Scan::global,
12745 Target_arm::Relocate::relocate,
12746 Target_arm::Relocatable_size_for_reloc::get_size_for_reloc): Adjust
12747 call to Target_arm::get_real_reloc_type.
12748 (Target_arm::get_real_reloc_type): Use command line options to
12749 determine real types of R_ARM_TARGET1 and R_ARM_TARGET2.
12750 * options.h (--target1-rel, --target1-abs, --target2): New ARM-only
12751 options.
12752
12753 2009-11-25 Doug Kwan <dougkwan@google.com>
12754
12755 * arm.cc (Target_arm::may_use_thumb2_nop): New method definition.
12756 (Arm_relocate_functions::thumb_branch_common): New metod declaration.
12757 (Arm_relocate_functions::abs12, Arm_relocate_functions::abs16): Fix
12758 formatting.
12759 (Arm_relocate_functions::thm_call): Replace body with a call to
12760 Arm_relocate_functions::thumb_branch_common.
12761 (Arm_relocate_functions::thm_jump24,
12762 Arm_relocate_functions::thm_xpc22): New method definitions.
12763 (Arm_relocate_functions::thumb_branch_common): New method definition.
12764 (Reloc_stub::stbu_type_for_reloc): Fix incorrect uses of bit-wise-or
12765 operator.
12766 (Target_arm::Relocate::relocate): Adjust call to thm_call.
12767 Add code to handle R_ARM_THM_XPC22 and R_ARM_THM_JUMP24.
12768
12769 2009-11-24 Rafael Avila de Espindola <espindola@google.com>
12770
12771 * Makefile.am: Build incremental-dump
12772 * Makefile.in: Regenerate.
12773 * incremental-dump.cc: New.
12774 * incremental.cc (Incremental_inputs_header_data,
12775 Incremental_inputs_entry_data): Move to incremental.h
12776 * incremental.h: (Incremental_inputs_header_data,
12777 Incremental_inputs_entry_data): Move from incremental.cc
12778
12779 2009-11-24 Rafael Avila de Espindola <espindola@google.com>
12780
12781 * incremental.cc (Incremental_inputs_header,
12782 Incremental_inputs_header_write, Incremental_inputs_entry,
12783 Incremental_inputs_entry_write): Add a typedef with the data type.
12784
12785 2009-11-24 Rafael Avila de Espindola <espindola@google.com>
12786
12787 * incremental.cc (Incremental_inputs_header,
12788 Incremental_inputs_header_write, Incremental_inputs_entry,
12789 Incremental_inputs_entry_write): Update comment about which
12790 type has the filed descriptions.
12791
12792 2009-11-15 Doug Kwan <dougkwan@google.com>
12793
12794 * arm.cc (Target_arm::may_use_arm_nop): New method definition.
12795 (Arm_relocate_functions::arm_branch_common): Change method defintion
12796 in class definition to a method declaration and update list of formal
12797 parameters.
12798 (Arm_relocate_functions::plt32, Arm_relocate_functions::call,
12799 Arm_relocation_functions::jump24): Adjust call to
12800 Arm_relocate_functions::arm_branch_common. Update list of formal
12801 parameters.
12802 (Arm_relocate_functions::xpc25): New method definition.
12803 (Arm_relocate_functions::arm_branch_common): Move method defintion
12804 out from class definition. Use stubs for mode-switching and extending
12805 branch ranges.
12806 (Target_arm::Relocate::relocate): Handle weakly-undefined symbols
12807 specially. Change code to enable use of stubs in ARM branches.
12808
12809 2009-11-10 Doug Kwan <dougkwan@google.com>
12810
12811 * arm.cc (Arm_relobj::do_relocate_sections): Remove options parameter
12812 in method declaration.
12813 (Target_arm::relocate_stub): New method declaration.
12814 (Target_arm::default_target): Change to return a pointer instead of
12815 a const reference.
12816 (Reloc_stub::stub_type_for_reloc): Adjust for the change in
12817 Target_arm::default_target.
12818 (Arm_Relobj::do_relocate_sections): Remove options paramater in
12819 method definition.
12820 (Target_arm::relocate_section): Adjust view.
12821 (Target_arm::relocate_stub): New method definition.
12822
12823 2009-11-10 Doug Kwan <dougkwan@google.com>
12824
12825 * i386.cc (Target_i386::do_calls_non_split): Add a cast to avoid
12826 a format warning.
12827 * incremental.cc (open_incremental_binary): Initialized local
12828 variables to avoid warnings.
12829 * object.cc (make_elf_object): Ditto.
12830 * x86_64.cc (Target_x86_64::do_calls_non_split): Add a cast to avoid
12831 a format warning.
12832
12833 009-11-09 H.J. Lu <hongjiu.lu@intel.com>
12834
12835 PR gold/10930
12836 * testsuite/plugin_test.c: Include "config.h".
12837
12838 2009-11-09 Doug Kwan <dougkwan@google.com>
12839
12840 * arm.cc (Target_arm::fake_relnum_for_stubs): New constant.
12841 (arm_symbol_value): Remove.
12842 (Arm_relocate_functions::arm_branch_common,
12843 Arm_relocate_functions::abs8, Arm_relocate_functions::thm_abs5,
12844 Arm_relocate_functions::abs12, Arm_relocate_functions::abs16,
12845 Arm_relocate_functions::abs32, Arm_relocate_functions::rel32,
12846 Arm_relocate_functions::thm_call, Arm_relocate_functions::plt32,
12847 Arm_relocate_functions::call, Arm_relocate_functions::jump24,
12848 Arm_relocate_functions::prel31, Arm_relocate_functions::mov_abs_nc,
12849 Arm_relocate_functions::movt_abs, Arm_relocate_functions::movw_abs_nc,
12850 Arm_relocate_functions::thm_mobw_abs_nc,
12851 Arm_relocate_functions::thm_mov_abs,
12852 Arm_relocate_functions::movw_prel_nc,
12853 Arm_relocate_functions::thm_movt_abs,
12854 Arm_relocate_functions::movt_prel,
12855 Arm_relocate_functions::thm_movw_prel_nc,
12856 Arm_relocate_functions::thm_movt_prel): Adjust callers of the above.
12857 (Target_arm::Relocate::relocate): Only decompose address into two
12858 parts if relocation type uses the thumb-bit and pass the actual
12859 bit instead of a flag indicating that the thumb-bit is used. Adjust
12860 calls to methods in Arm_relocate_functions for this change.
12861
12862 2009-11-08 Ian Lance Taylor <iant@google.com>
12863
12864 PR 10925
12865 * reloc.cc: Instantiate
12866 Sized_relobj::initialize_input_to_output_maps and
12867 Sized_relobj:free_input_to_output_maps.
12868
12869 2009-11-06 Ian Lance Taylor <iant@google.com>
12870
12871 PR 10876
12872 * defstd.cc (in_segment): Set only_if_ref true for "end".
12873
12874 2009-11-06 Doug Kwan <dougkwan@google.com>
12875
12876 * arm.cc (class Reloc_stub): Correct a comment.
12877 (Target_arm::Target_arm): Initialize arm_input_section_map_.
12878 (Target_arm::scan_section_for_stubs): New method declaration.
12879 (Target_arm::do_make_elf_object, Target_arm::do_make_output_section):
12880 Change methods from private to protected.
12881 (Target_arm::do_may_relax): New method definition.
12882 (Target_arm::do_relax, Target_arm::group_sections,
12883 Target_arm::scan_reloc_for_stub,
12884 Target_arm::scan_reloc_section_for_stubs): New method declarations.
12885 (Target_arm::arm_input_section_map_): New data member declaration.
12886 (Target_arm::scan_reloc_for_stub,
12887 Target_arm::scan_reloc_section_for_stubs,
12888 Target_arm::scan_section_for_stubs, Target_arm::group_sections,
12889 Target_arm::do_relax): New method definitions.
12890
12891 2009-11-06 Mikolaj Zalewski <mikolaj@google.com>
12892
12893 * configure.ac: Check for (struct stat)::st_mtim
12894 * fileread.cc (File_read::get_mtime): Use st_mtim if available.
12895 * config.in: Regenerate.
12896 * configure: Regenerate.
12897
12898 2009-11-05 Ian Lance Taylor <iant@google.com>
12899
12900 PR 10910
12901 * output.cc (Output_segment::add_output_section): Add missing
12902 return statement.
12903
12904 2009-11-04 Ian Lance Taylor <iant@google.com>
12905
12906 PR 10880
12907 * object.h (class Object): Add is_needed and set_is_needed
12908 methods. Add is_needed_ field. Make bool fields into bitfields.
12909 * symtab.cc (Symbol_table::set_dynsym_indexes): If a symbol is
12910 defined in a dynamic object and referenced by a regular object,
12911 set is_needed for the dynamic object.
12912 * layout.cc (Layout::finish_dynamic_section): Don't add DT_NEEDED
12913 if the file is marked with as_needed and it is not needed.
12914
12915 2009-11-04 Ian Lance Taylor <iant@google.com>
12916
12917 PR 10887
12918 * arm.cc (Target_arm::do_finalize_sections): Don't add dynamic
12919 tags if data is discarded by linker script.
12920 * i386.cc (Target_i386::do_finalize_sections): Likewise.
12921 * powerpc.cc (Target_powerpc::do_finalize_sections): Likewise.
12922 * sparc.cc (Target_sparc::do_finalize_sections): Likewise.
12923 * x86_64.cc (Target_x86_64::do_finalize_sections): Likewise.
12924
12925 2009-11-04 Ian Lance Taylor <iant@google.com>
12926
12927 * layout.cc (Layout::get_output_section): Add is_interp and
12928 is_dynamic_linker_section parameters. Change all callers.
12929 (Layout::choose_output_section): Likewise.
12930 (Layout::make_output_section): Likewise.
12931 (Layout::add_output_section_data): Add is_dynamic_linker_section
12932 parameter. Change all callers.
12933 * layout.h (class Layout): Update declarations.
12934 * output.h (class Output_section): Add is_interp, set_is_interp,
12935 is_dynamic_linker_section, set_is_dynamic_linker_section methods.
12936 Add is_interp_, is_dynamic_linker_section_ fields. Change
12937 generate_code_fills_at_write_ to a bitfield.
12938 * output.cc (Output_section::Output_sections): Initialize new
12939 fields.
12940 (Output_segment::add_output_section): Add do_sort parameter.
12941 Change all callers.
12942
12943 2009-11-03 Ian Lance Taylor <iant@google.com>
12944
12945 PR 10860
12946 * options.h (class General_options): Add --warn-common.
12947 * resolve.cc (Symbol_table::resolve): Handle --warn-common when
12948 merging two common symbols.
12949 (Symbol_table::should_override): Handle --warn-common when merging
12950 a common symbol with a defined symbol. Use report_resolve_problem
12951 for multiple definitions.
12952 (Symbol_table::report_resolve_problem): New function.
12953 * symtab.h (class Symbol_table): Declare report_resolve_problem.
12954
12955 2009-11-03 Doug Kwan <dougkwan@google.com>
12956
12957 * arm.cc (Target_arm::Target_arm): Initialize stub_tables_ and
12958 stub_factory_.
12959 (Target_arm::stub_factory): New method definition.
12960 (Target_arm::new_arm_input_section,
12961 Target_arm::find_arm_input_section, Target_arm::new_stub_table,
12962 Target_arm::reloc_uses_thumb_bit): New method declarations.
12963 (Target_arm::Stub_table_list, Target_arm::Arm_input_section_map):
12964 New type definitions.
12965 (Target_arm::stub_tables_, Target_arm::stub_factory_): New data
12966 member declarations.
12967 (Target_arm::reloc_uses_thumb_bit, Target_arm::new_arm_input_section,
12968 Target_arm::find_arm_input_section, Target_arm::new_stub_table):
12969 New method definitions.
12970
12971 2009-11-03 Ian Lance Taylor <iant@google.com>
12972
12973 * options.h (class General_options): Add --warn_constructors.
12974
12975 2009-11-03 Ian Lance Taylor <iant@google.com>
12976
12977 PR 10893
12978 * defstd.cc (in_section): Add entries for __rel_iplt_start,
12979 __rel_iplt_end, __rela_iplt_start, __rela_iplt_end, and __stack.
12980
12981 2009-11-03 Ian Lance Taylor <iant@google.com>
12982
12983 PR 10895
12984 * po/Make-in ($(srcdir)/$(PACKAGE).pot): Pass -C and
12985 --msgid-bugs-address.
12986 (install-pdf): New target.
12987 (install-data_yes): Look up one directory to find mkinstalldirs.
12988
12989 2009-11-03 H.J. Lu <hongjiu.lu@intel.com>
12990
12991 * po/Make-in (.po.gmo): Don't generate .gmo files in source
12992 tree.
12993
12994 2009-10-30 Doug Kwan <dougkwan@google.com>
12995
12996 * arm.cc (Stub_addend_reader): Fix bug in previouls check-in.
12997
12998 2009-10-30 Doug Kwan <dougkwan@google.com>
12999
13000 * arm.cc (Stub_addend_reader): New struct template definition
13001 and partial specializations.
13002 (Stub_addend_reader::operator()): New method definition for a
13003 partially specialized template.
13004
13005 2009-10-30 Doug Kwan <dougkwan@google.com>
13006
13007 * arm.cc (Arm_relobj::processor_specific_flags): New method
13008 definition.
13009 (Arm_relobj::do_read_symbols): New method declaration.
13010 (Arm_relobj::processor_specific_flags_): New data member declaration.
13011 (Arm_dynobj): New class definition.
13012 (Target_arm::do_finalize_sections): Add input_objects parameter.
13013 (Target_arm::do_adjust_elf_header): New method declaration.
13014 (Target_arm::are_eabi_versions_compatible,
13015 (Target_arm::merge_processor_specific_flags): New method declaration.
13016 (Target_arm::do_make_elf_object): New overloaded method definitions
13017 and declaration.
13018 (Arm_relobj::do_read_symbols): New method definition.
13019 (Arm_dynobj::do_read_symbols): Ditto.
13020 (Target_arm::do_finalize_sections): Add input_objects parameters.
13021 Merge processor-specific flags from all input objects.
13022 (Target_arm::are_eabi_versions_compatible,
13023 Target_arm::merge_processor_specific_flags,
13024 Target_arm::do_adjust_elf_header, Target_arm::do_make_elf_object):
13025 New method definitions.
13026 * i386.cc (Target_i386::do_finalize_sections): Add unnamed
13027 Input_objects pointer type parameter.
13028 * layout.cc (Layout::finalize): Pass input objects to target's.
13029 finalize_sections function.
13030 * output.cc (Output_file_header::do_sized_write): Set ELF file
13031 header's processor-specific flags.
13032 * powerpc.cc (Target_powerpc::do_finalize_sections): Add unnamed
13033 Input_objects pointer type parameter.
13034 * sparc.cc (Target_sparc::do_finalize_sections): Same.
13035 * target.h (Input_objects): New forward class declaration.
13036 (Target::processor_specific_flags,
13037 Target::are_processor_specific_flags_sect): New method definitions.
13038 (Target::finalize_sections): Add input_objects parameter.
13039 (Target::Target): Initialize processor_specific_flags_ and
13040 are_processor_specific_flags_set_.
13041 (Target::do_finalize_sections): Add unnamed Input_objects pointer type
13042 parameter.
13043 (Target::set_processor_specific_flags): New method definition.
13044 (Target::processor_specific_flags_,
13045 Target::are_processor_specific_flags_set_): New data member
13046 declarations.
13047 * x86_64.cc (Target_x86_64::do_finalize_sections): Add unnamed
13048 Input_objects pointer type parameter.
13049
13050 2009-10-30 Doug Kwan <dougkwan@google.com>
13051
13052 * arm.cc: Use Arm_address instead of elfcpp::Elf_types<32>::Elf_Addr.
13053
13054 2009-10-28 Ian Lance Taylor <iant@google.com>
13055
13056 * object.h (class Relobj): Drop options parameter from
13057 gc_process_relocs, scan_relocs, relocate, do_gc_process_relocs,
13058 do_scan_relocs, do_relocate. Change all callers.
13059 (class Sized_relobj): Drop options parameters from
13060 do_gc_process_relocs, do_scan_relocs, do_relocate,
13061 do_relocate_sections, relocate_sections, emit_relocs_scan,
13062 emit_relocs_scan_reltype. Change all callers.
13063 (struct Relocate_info): Remove options field and all references to
13064 it.
13065 * reloc.h (class Read_relocs): Remove options constructor
13066 parameter and options_ field. Change all callers.
13067 (class Gc_process_relocs, class Scan_relocs): Likewise.
13068 (class Relocate_task): Likewise.
13069 * target-reloc.h (scan_relocs): Remove options parameter. Change
13070 all callers.
13071 (scan_relocatable_relocs): Likewise.
13072 * target.h (class Sized_target): Remove options parameter from
13073 gc_process_relocs, scan_relocs, scan_relocatable_relocs. Change
13074 all callers.
13075 * gc.h (gc_process_relocs): Remove options parameter. Change all
13076 callers.
13077 * arm.cc: Update functions to remove options parameters.
13078 * i386.cc: Likewise.
13079 * powerpc.cc: Likewise.
13080 * sparc.cc: Likewise.
13081 * x86_64.cc: Likewise.
13082 * testsuite/testfile.cc: Likewise.
13083
13084 2009-10-28 Doug Kwan <dougkwan@google.com>
13085
13086 * arm.cc (Arm_relobj): New class definition.
13087 (Arm_relobj::scan_sections_for_stubs,
13088 Arm_relobj::do_count_local_symbols, Arm_relobj::do_relocate_sections):
13089 New method definitions.
13090
13091 2009-10-28 Cary Coutant <ccoutant@google.com>
13092
13093 * plugin.h (Plugin::Plugin): Initialize cleanup_done_.
13094 (Plugin::cleanup_done_): New member.
13095 (Plugin_manager::Plugin_manager): Remove cleanup_done_.
13096 (Plugin_manager::cleanup_done_): Remove.
13097 (Plugin_manager::add_input_file): Edit error message.
13098 * plugin.cc (Plugin::cleanup): Test and set cleanup_done_.
13099 (Plugin_manager::cleanup): Remove use of cleanup_done_.
13100
13101 2009-10-27 Mikolaj Zalewski <mikolajz@google.com>
13102
13103 * fileread.cc: (File_read::View::~View): Use the new
13104 data_ownership_ filed.
13105 (File_read::~File_read): Dispose the new whole_file_view_.
13106 (File_read::open): Mmap the whole file if needed.
13107 (File_read::open): Use whole_file_view_ instead of contents_.
13108 (File_read::find_view): Use whole_file_view_ if applicable.
13109 (File_read::do_read): Use whole_file_view_ instead of contents_.
13110 (File_read::make_view): Use whole_file_view_ instead of contents_,
13111 update File_read::View::View call.
13112 (File_read::find_or_make_view): Update File_read::View::View
13113 call.
13114 * fileread.h: (File_read::File_read): Initialize whole_file_view_,
13115 remove contents_
13116 (File_read::View::Data_ownership): New enum.
13117 (File_read::View::View): Replace bool mapped_ with Data_ownership
13118 argument.
13119 (File_read::View::mapped_): Remove (replaced by data_ownership_).
13120 (File_read::View::data_ownership_): New field.
13121 (File_read::contents_): Remove (replaced by whole_file_view_).
13122 (File_read::whole_file_view_): New field.
13123 * options.h (class General_options): Add --keep-files-mapped.
13124
13125 2009-10-27 Cary Coutant <ccoutant@google.com>
13126
13127 * symtab.cc (add_from_pluginobj): Pass correct value for is_ordinary.
13128 * testsuite/Makefile.am (plugin_test_5): New test case.
13129 * testsuite/Makefile.in: Regenerate.
13130
13131 2009-10-25 Doug Kwan <dougkwan@google.com>
13132
13133 * object.h (Sized_relobj::View_size, Sized_relobj::Views): Change
13134 from private to protected to allow access by child class.
13135 (Sized_relobj::do_relocate_sections): New method declaration.
13136 (Sized_relobj::relocate_sections): Virtualize.
13137 * reloc.cc (Sized_relobj::do_relocate_sections): Rename from
13138 Sized_relobj::relocate_sections. Instantiate template explicitly
13139 for different target sizes and endianity.
13140
13141 2009-10-24 Doug Kwan <dougkwan@google.com>
13142
13143 * arm.cc (Arm_output_section, Arm_relobj): Forward class declarations.
13144 (Arm_input_section::as_arm_input_section): New method.
13145 (Arm_output_section): New class definition.
13146 (Arm_output_section::create_stub_group,
13147 Arm_output_section::group_sections): New method definitions.
13148
13149 2009-10-22 Doug Kwan <dougkwan@google.com>
13150
13151 * arm.cc (Arm_input_section): New class definition.
13152 (Arm_input_section::init, Arm_input_section:do_write,
13153 Arm_input_section::set_final_data_size,
13154 Arm_input_section::do_reset_address_and_file_offset): New method
13155 definitions.
13156
13157 2009-10-21 Doug Kwan <dougkwan@google.com>
13158
13159 * arm.cc (Stub_table, Arm_input_section): New forward class
13160 declarations.
13161 (Stub_table): New class defintion.
13162 (Stub_table::add_reloc_stub, Stub_table::relocate_stubs
13163 Stub_table::do_reset_address_and_file_offset, Stub_table::do_write):
13164 New method definition.
13165
13166 2009-10-21 Doug Kwan <dougkwan@google.com>
13167
13168 * arm.cc: Update copyright comments.
13169 (Target_arm): New forward class template declaration.
13170 (Arm_address): New type.
13171 (ARM_MAX_FWD_BRANCH_OFFSET, ARM_MAX_BWD_BRANCH_OFFSET,
13172 THM_MAX_FWD_BRANCH_OFFSET, THM_MAX_BWD_BRANCH_OFFSET,
13173 THM2_MAX_FWD_BRANCH_OFFSET, THM2_MAX_BWD_BRANCH_OFFSET): New
13174 constants.
13175 (Insn_template): Same.
13176 (DEF_STUBS): New macro.
13177 (Stub_type): New enum type.
13178 (Stub_template): New class definition.
13179 (Stub): Same.
13180 (Reloc_stub): Same.
13181 (Stub_factory): Same.
13182 (Target_arm::Target_arm): Initialize may_use_blx_ and
13183 should_force_pic_veneer_.
13184 (Target_arm::may_use_blx, Target_arm::set_may_use_blx,
13185 Target_arm::should_force_pic_veneer,
13186 Target_arm::set_should_force_pic_veneer, Target_arm::using_thumb2,
13187 Target_arm::using_thumb_only, Target_arm:;default_target): New
13188 method defintions.
13189 (Target_arm::may_use_blx_, Target_arm::should_force_pic_veneer_):
13190 New data member declarations.
13191 (Insn_template::size, Insn_template::alignment): New method defintions.
13192 (Stub_template::Stub_template): New method definition.
13193 (Reloc_stub::Key::name, Reloc_stub::stub_type_for_reloc,
13194 Reloc_stub::do_fixed_endian_write, Reloc_stub::do_write): Same.
13195 (Stub_factory::Stub_factory): New method definition.
13196 * gold.h (string_hash): New template.
13197 * output.h (Input_section_specifier::hash_value): Use
13198 gold::string_hash.
13199 (Input_section_specifier::string_hash): Remove.
13200 * stringpool.cc (Stringpool_template::string_hash): Use
13201 gold::string_hash.
13202
13203 2009-10-20 Doug Kwan <dougkwan@google.com>
13204
13205 * object.cc (Sized_relobj::do_finalize_local_symbols): Handle section
13206 symbols of relaxed input sections.
13207 * output.h (Output_section::find_relaxed_input_section): Make
13208 method public.
13209
13210 2009-10-16 Doug Kwan <dougkwan@google.com>
13211
13212 * dynobj.cc (Versions::Versions): Initialize version_script_.
13213 Only insert base version symbol definition for a shared object
13214 if version script defines any version versions.
13215 (Versions::define_base_version): New method definition.
13216 (Versions::add_def): Check that base version is not needed.
13217 (Versions::add_need): Define base version lazily.
13218 * dynobj.h (Versions::define_base_version): New method declaration.
13219 (Versions::needs_base_version_): New data member declaration.
13220 * testsuite/Makefile.am (check_SCRIPTS): Add no_version_test.sh
13221 (check_DATA): Add no_version_test.stdout.
13222 (libno_version_test.so, no_version_test.o no_version_test.stdout):
13223 New make rules.
13224 * testsuite/Makefile.in: Regenerate.
13225 * testsuite/no_version_test.c: New file.
13226 * testsuite/no_version_test.sh: Ditto.
13227
13228 2009-10-16 Doug Kwan <dougkwan@google.com>
13229
13230 * expression.cc (class Segment_start_expression): New class definition.
13231 (Segment_start_expression::value): New method definition.
13232 (script_exp_function_segment_start): Return a new
13233 Segment_start_expression.
13234 * gold/script-c.h (script_saw_segment_start_expression): New function
13235 prototype.
13236 * script-sections.cc (Script_sections::Script_sections): Initialize
13237 SAW_SEGMENT_START_EXPRESSION_ to false.
13238 (Script_sections::set_section_addresses): Use -Ttext, -Tdata
13239 and -Tbbs options to specify section addresses if given in
13240 command line and no SEGMENT_START expression is seen in a script.
13241 * script-sections.h (Script_sections::saw_segment_start_expression,
13242 Script_sections::set_saw_segment_start_expression): New method
13243 definition.
13244 (Script_sections::saw_segment_start_expression_): New data member
13245 declaration.
13246 * script.cc (script_saw_segment_start_expression): New function.
13247 * yyscript.y (SEGMENT_START): Call script_saw_segment_start_expression.
13248 * testsuite/Makefile.am (check_SCRIPTS): Add script_test_6.sh,
13249 script_test_7.sh and script_test_8.sh.
13250 (check_DATA): Add script_test_6.stdout, script_test_7.stdout and
13251 script_test_8.stdout.
13252 (MOSTLYCLEANFILES): Add script_test_6, script_test_7 and script_test_8.
13253 (script_test_6, script_test_6.stdout, script_test_7,
13254 script_test_7.stdout, script_test_8, script_test_8.stdout): New rules.
13255 * Makefile.in: Regenerate.
13256 * testsuite/script_test_6.sh: New file.
13257 * testsuite/script_test_6.t: Same.
13258 * testsuite/script_test_7.sh: Same.
13259 * testsuite/script_test_7.t: Same.
13260 * testsuite/script_test_8.sh: Same.
13261
13262 2009-10-16 Doug Kwan <dougkwan@google.com>
13263
13264 * output.cc (Output_segment::set_section_list_address): Cast
13265 expressions to unsigned long long type to avoid format warnings.
13266
13267 2009-10-15 Ian Lance Taylor <iant@google.com>
13268
13269 * script.cc (Script_options::add_symbol_assignment): Always add a
13270 dot assignment to script_sections_.
13271 * script-sections.cc (Script_sections::add_dot_assignment):
13272 Initialize if necessary.
13273
13274 * layout.cc (Layout::relaxation_loop_body): Don't crash if we see
13275 program headers with no load segment if there is a linker script.
13276
13277 * layout.cc (Layout::set_segment_offsets): Align the file offset
13278 to the segment aligment for -N or -n with no load segment.
13279 * output.cc (Output_segment::add_output_section): Don't crash if
13280 the first section is a TLS section.
13281 (Output_segment::set_section_list_addresses): Print an error
13282 message if the address moves backward in a linker script.
13283 * script-sections.cc
13284 (Output_section_element_input::set_section_addresses): Don't
13285 increase *dot_value for a SHF_TLS/SHT_NOBITS section.
13286 (Orphan_output_section::set_section_addresses): Likewise.
13287
13288 2009-10-15 Doug Kwan <dougkwan@google.com>
13289
13290 * layout.cc (Layout::finish_dynamic_section): Generate tags
13291 DT_FINI_ARRAY, DT_FINI_ARRAYSZ, DT_INIT_ARRAY, DT_INIT_ARRAYSZ,
13292 DT_PREINIT_ARRAY, DT_PREINIT_ARRAYSZ as needed. If -Bsymbolic is
13293 used, add DT_SYMBOLIC and set DF_SYMBOLIC in DT_FLAGS.
13294
13295 2009-10-14 Ian Lance Taylor <iant@google.com>
13296
13297 * object.h (class Relocate_info): Add reloc_shdr and data_shdr
13298 fields.
13299 * object.cc (Sized_relobj::relocate_sections): Set reloc_shdr and
13300 data_shdr fields of relinfo.
13301 * i386.cc (class Target_i386::Relocate): Remove ldo_addrs_ field.
13302 (Target_i386::Relocate::relocate_tls): Don't call fix_up_ldo. For
13303 R_386_TLS_LDO_32, adjust based on section flags.
13304 (Target_i386::Relocate::fix_up_ldo): Remove.
13305
13306 2009-10-13 Ian Lance Taylor <iant@google.com>
13307
13308 Add support for -pie.
13309 * options.h (class General_options): Add -pie and
13310 --pic-executable.
13311 (General_options::output_is_position_independent): Test -pie.
13312 (General_options::output_is_executable): Return true if not shared
13313 and not relocatable.
13314 (General_options::output_is_pie): Remove.
13315 * options.cc (General_options::finalize): Reject incompatible uses
13316 of -pie.
13317 * gold.cc (queue_middle_tasks): A -pie link is not static.
13318 * symtab.h (Symbol::needs_plt_entry): Return false if -pie.
13319 * symtab.cc (Symbol::final_value_is_known): Return false if
13320 output_is_position_independent.
13321 * layout.cc (Layout::set_segment_offsets): Start at address 0 if
13322 output_is_position_independent.
13323 * output.cc (Output_file_header::do_sized_write): Use ET_DYN if
13324 output_is_position_independent.
13325 * i386.cc (Output_data_plt_i386::do_write): Use the PIC PLT if
13326 output_is_position_independent.
13327 * testsuite/Makefile.am (check_PROGRAMS): Add basic_pie_test and
13328 two_file_pie_test.
13329 (basic_pie_test.o, basic_pie_test): New targets.
13330 (two_file_test_1_pie.o, two_file_test_1b_pie.o): New targets.
13331 (two_file_test_2_pie.o, two_file_test_main_pie.o): New targets.
13332 (two_file_pie_test): New target.
13333 * testsuite/Makefile.in: Rebuild.
13334 * README: Remove note saying that -pie is not supported.
13335
13336 2009-10-13 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
13337
13338 * options.h (class General_options): Add -init and -fini.
13339 * layout.cc (Layout::finish_dynamic_section): Emit
13340 given init and fini functions.
13341
13342 2009-10-13 Sriraman Tallam <tmsriram@google.com>
13343
13344 * gc.h (gc_process_relocs): Check if icf is enabled using new
13345 function.
13346 * gold.cc (queue_initial_tasks): Likewise.
13347 (queue_middle_tasks): Likewise.
13348 * object.cc (do_layout): Likewise.
13349 * symtab.cc (is_section_folded): Likewise.
13350 * main.cc (main): Likewise.
13351 * reloc.cc (Read_relocs::run): Likewise.
13352 (Sized_relobj::do_scan_relocs): Likewise.
13353 * icf.cc (is_function_ctor_or_dtor): New function.
13354 (Icf::find_identical_sections): Check if function is ctor or dtor when
13355 safe icf is chosen.
13356 * options.h (General_options::icf): Change option to be an enum.
13357 (Icf_status): New enum.
13358 (icf_enabled): New method.
13359 (icf_safe_folding): New method.
13360 (set_icf_status): New method.
13361 (icf_status_): New variable.
13362 * (options.cc) (General_options::finalize): Set icf_status_.
13363 * testsuite/Makefile.am: Add commands to build icf_safe_test. Modify
13364 icf_test and icf_keep_unique_test to use the --icf enum flag.
13365 * testsuite/icf_safe_test.sh: New file.
13366 * testsuite/icf_safe_test.cc: New file.
13367
13368 2009-10-12 Sriraman Tallam <tmsriram@google.com>
13369
13370 * symtab.h: Check for GOLD_SYMTAB_H before header includes. Remove
13371 includes to gc.h and icf.h.
13372 * arm.cc: Include gc.h.
13373 * gold.cc: Likewise.
13374 * i386.cc: Likewise.
13375 * powerpc.cc: Likewise.
13376 * sparc.cc: Likewise.
13377 * x86_64.cc: Likewise.
13378 * gc.h: Include icf.h.
13379
13380 2009-10-11 Ian Lance Taylor <iant@google.com>
13381
13382 * plugin.cc: Include "gold.h" before other header files.
13383
13384 2009-10-10 Chris Demetriou <cgd@google.com>
13385
13386 * options.h (Input_file_argument::Input_file_type): New enum.
13387 (Input_file_argument::is_lib_): Replace with...
13388 (Input_file_argument::type_): New member.
13389 (Input_file_argument::Input_file_argument): Take Input_file_type
13390 'type' rather than boolean 'is_lib' as second argument.
13391 (Input_file_argument::is_lib): Use type_.
13392 (Input_file_argument::is_searched_file): New function.
13393 (Input_file_argument::may_need_search): Handle is_searched_file.
13394 * options.cc (General_options::parse_library): Support -l:filename.
13395 (General_options::parse_just_symbols): Update for Input_file_argument
13396 changes.
13397 (Command_line::process): Likewise.
13398 * archive.cc (Archive::get_file_and_offset): Likewise.
13399 * plugin.cc (Plugin_manager::release_input_file): Likewise.
13400 * script.cc (read_script_file, script_add_file): Likewise.
13401 * fileread.cc (Input_file::Input_file): Likewise.
13402 (Input_file::will_search_for): Handle is_searched_file.
13403 (Input_file::open): Likewise.
13404 * readsyms.cc (Read_symbols::get_name): Likewise.
13405 * testsuite/Makefile.am (searched_file_test): New test.
13406 * testsuite/Makefile.in: Regenerate.
13407 * testsuite/searched_file_test.cc: New file.
13408 * testsuite/searched_file_test_lib.cc: New file.
13409
13410 2009-10-09 Andrew Pinski <andrew_pinski@playstation.sony.com>
13411 Ian Lance Taylor <iant@google.com>
13412
13413 * descriptor.cc: Include <cstdio> and "binary-io.h".
13414 (Descriptors::open): Open the files in binary mode always.
13415 * script.cc (Lex::get_token): Treat \r as whitespace.
13416
13417 2009-10-09 Ian Lance Taylor <iant@google.com>
13418
13419 * testsuite/retain_symbols_file_test.sh: Don't test for __tcf_0.
13420
13421 2009-10-09 Andrew Pinski <andrew_pinski@playstation.sony.com>
13422 Ian Lance Taylor <iant@google.com>
13423
13424 * configure.ac: Check for readv function also.
13425 * fileread.cc (readv): Define if not HAVE_READV.
13426 * fileread.h (File_read:: max_readv_entries): Set to 1 if readv
13427 does not exist.
13428 * config.in: Regenerate.
13429 * configure: Regenerate.
13430
13431 2009-10-09 Doug Kwan <dougkwan@google.com>
13432
13433 * layout.cc (Layout::make_output_section): Call target hook to make
13434 ordinary output section.
13435 (Layout::finalize): Adjust parameter list of call the
13436 Target::may_relax().
13437 * layout.h (class Layout::section_list): New method.
13438 * merge.h (Output_merge_base::entsize): Change visibility to public.
13439 (Output_merge_base::is_string, Output_merge_base::do_is_string):
13440 New methods.
13441 (Output_merge_string::do_is_string): New method.
13442 * object.cc (Sized_relobj::do_setup): renamed from
13443 Sized_relobj::set_up.
13444 * object.h (Sized_relobj::adjust_shndx,
13445 Sized_relobj::initializ_input_to_output_maps,
13446 Sized_relobj::free_input_to_output_maps): Change visibilities to
13447 protected.
13448 (Sized_relobj::setup): Virtualize.
13449 (Sized_relobj::do_setup): New method declaration.
13450 (Sized_relobj::invalidate_section_offset,
13451 Sized_relobj::do_invalidate_section_offset): New method decfinitions.
13452 (Sized_relobj::elf_file, Sized_relobj::local_values): New methods.
13453 * options.cc (parse_int): New function.
13454 * options.h (parse_int): New declaration.
13455 (DEFINE_int): New macro.
13456 (stub_group_size): New option.
13457 * output.cc (Output_section::Output_section): Initialize memebers
13458 merge_section_map_, merge_section_by_properties_map_,
13459 relaxed_input_section_map_, is_relaxed_input_section_map_valid_.
13460 (Output_section::add_input_section): Handled deferred code-fill
13461 generation and remove an old comment.
13462 (Output_section::add_relaxed_input_section): New method definition.
13463 (Output_section::add_merge_input_section): Use merge section by
13464 properties map to speed to search. Update merge section maps
13465 as appropriate.
13466 (Output_section::build_relaxation_map): New method definition.
13467 (Output_section::convert_input_sections_in_list_to_relaxed_sections):
13468 Same.
13469 (Output_section::relax_input_section): Renamed to
13470 Output_section::convert_input_sections_to_relaxed_sections and change
13471 interface to take a vector of pointers to relaxed sections.
13472 (Output_section::find_merge_section,
13473 Output_section::find_relaxed_input_section): New method definitions.
13474 (Output_section::is_input_address_mapped,
13475 Output_section::output_offset, Output_section::output_address):
13476 Use output section data maps to speed up searching.
13477 (Output_section::find_starting_output_address): Add comments.
13478 (Output_section::do_write,
13479 Output_section::write_to_postprocessing_buffer): Do code-fill
13480 generation as appropriate.
13481 (Output_section::get_input_sections): Invalidate relaxed input section
13482 map.
13483 (Output_section::restore_states): Adjust type of checkpoint .
13484 Invalidate relaxed input section map.
13485 * output.h (Output_merge_base): New class declaration.
13486 (Input_section_specifier): New class defintion.
13487 (class Output_relaxed_input_section) Change base class to
13488 Output_section_data_build.
13489 (Output_relaxed_input_section::Output_relaxed_input_section): Adjust
13490 base class initializer.
13491 (Output_section::add_relaxed_input_section): New method declaration.
13492 (Output_section::Input_section): Change visibility to protected.
13493 (Output_section::Input_section::relobj,
13494 Output_section::Input_section::shndx): Handle relaxed input sections.
13495 Output_section::input_sections) Change visibility to protected. Also
13496 define overload to return a non-const pointer.
13497 (Output_section::Merge_section_properties): New class defintion.
13498 (Output_section::Merge_section_by_properties_map,
13499 Output_section::Output_section_data_by_input_section_map,
13500 Output_section::Relaxation_map): New types.
13501 (Output_section::relax_input_section): Rename method to
13502 Output_section::convert_input_sections_to_relaxed_sections and change
13503 interface to take a vector of relaxed section pointers.
13504 (Output_section::find_merge_section,
13505 Output_section::find_relaxed_input_section,
13506 Output_section::build_relaxation_map,
13507 Output_section::convert_input_sections_in_list_to_relaxed_sections):
13508 New method declarations.
13509 (Output_section::merge_section_map_
13510 Output_section::merge_section_by_properties_map_,
13511 Output_section::relaxed_input_section_map_,
13512 Output_section::is_relaxed_input_section_map_valid_,
13513 Output_section::generate_code_fills_at_write_): New data members.
13514 * script-sections.cc
13515 (Output_section_element_input::set_section_addresses): Call
13516 current_data_size and addralign methods of relaxed input sections.
13517 (Orphan_output_section::set_section_addresses): Call current_data_size
13518 and addralign methods of relaxed input sections.
13519 * symtab.cc (Symbol_table::compute_final_value): Extract template
13520 from the body of Symbol_table::sized_finalize_symbol.
13521 (Symbol_table::sized_finalized_symbol): Call
13522 Symbol_table::compute_final_value.
13523 * symtab.h (Symbol_table::Compute_final_value_status): New enum type.
13524 (Symbol_table::compute_final_value): New templated method declaration.
13525 * target.cc (Target::do_make_output_section): New method defintion.
13526 * target.h (Target::make_output_section): New method declaration.
13527 (Target::relax): Add more parameters for input objects, symbol table
13528 and layout. Adjust call to do_relax.
13529 (Target::do_make_output_section): New method declaration.
13530 (Target::do_relax): Add parameters for input objects, symbol table
13531 and layout.
13532
13533 2009-10-09 Andrew Pinski <andrew_pinski@playstation.sony.com>
13534
13535 * pread.c: Include stdio.h.
13536
13537 2009-10-09 Andrew Pinski <andrew_pinski@playstation.sony.com>
13538
13539 * plugin.cc: Don't include dlfcn.h when ENABLE_PLUGINS is not
13540 defined.
13541
13542 2009-10-09 Andrew Pinski <andrew_pinski@playstation.sony.com>
13543
13544 * dwarf_reader.cc (Sized_dwarf_line_info::Sized_dwarf_line_info):
13545 Change read_shndx type to unsigned int.
13546 (Sized_dwarf_line_info::read_lines): Change shndx type to unsigned
13547 int.
13548 (Sized_dwarf_line_info::read_line_mappings): Likewise.
13549 * dwarf_reader.h (Sized_dwarf_line_info::Sized_dwarf_line_info):
13550 Change read_shndx type to unsigned int.
13551 (Sized_dwarf_line_info::read_lines): Change shndx type to unsigned
13552 int.
13553 (Sized_dwarf_line_info::read_line_mappings): Likewise.
13554 * layout.cc (Layout::create_symtab_sections): Cast the result of
13555 local_symcount * symsize to off_t in the gold_assert.
13556
13557 2009-10-09 Viktor Kutuzov <vkutuzov@accesssoftek.com>
13558
13559 * arm.cc (Target_arm::relocate::reloc_is_non_pic): Return true for
13560 R_ARM_THM_ABS5, R_ARM_ABS8, R_ARM_ABS12, R_ARM_ABS16,
13561 R_ARM_BASE_ABS.
13562 (Arm_relocate_functions::abs8): Remove has_thumb_bit parameter.
13563 (Arm_relocate_functions::thm_abs5): New function.
13564 (Arm_relocate_functions::abs12): New function.
13565 (Arm_relocate_functions::abs16): New function.
13566 (Arm_relocate_functions::base_abs): New function.
13567 (Scan::check_non_pic): Handle R_ARM_ABS32_NOI.
13568 (Scan::local): Remove special handling of R_ARM_ABS8. Handle
13569 R_ARM_ABS32_NOI, R_ARM_THM_ABS5, R_ARM_ABS12, R_ARM_ABS16, and
13570 R_ARM_BASE_ABS.
13571 (Scan::global): Likewise.
13572 (Relocate::relocate): Handle R_ARM_ABS12, R_ARM_ABS16,
13573 R_ARM_ABS32_NOI, R_ARM_THM_ABS5, and R_ARM_BASE_ABS.
13574 (Relocatable_size_for_reloc::get_size_for_reloc): Handle
13575 R_ARM_ABS16, R_ARM_THM_ABS5, R_ARM_ABS32_NOI, R_ARM_ABS12, and
13576 R_ARM_BASE_ABS.
13577
13578 2009-10-09 Viktor Kutuzov <vkutuzov@accesssoftek.com>
13579
13580 * arm.cc (Arm_relocate_functions::movw_prel_nc): New function.
13581 (Arm_relocate_functions::movt_prel): New function.
13582 (Arm_relocate_functions::thm_movw_prel_nc): New function.
13583 (Arm_relocate_functions::thm_movt_prel): New function.
13584 (Scan::local): Handle R_ARM_MOVW_PREL_NC, R_ARM_MOVT_PREL,
13585 R_ARM_THM_MOVW_PREL_NC, and R_ARM_THM_MOVT_PREL.
13586 (Scan::global, Relocate::relocate): Likewise.
13587 (Relocatable_size_for_reloc::get_size_for_reloc): Likewise.
13588
13589 2009-10-09 Mikolaj Zalewski <mikolajz@google.com>
13590
13591 * gold.cc: (queue_initial_tasks): Pass incremental_inputs to
13592 Incremental_checker.
13593 * incremental.cc: (INCREMENTAL_LINK_VERSION): Change type to
13594 unsigned int.
13595 (class Incremental_inputs_header): New class.
13596 (Incremental_inputs_header_writer): Edit comment.
13597 (Incremental_inputs_entry): New class.
13598 (Incremental_inputs_entry_writer): Edit comment.
13599 (Sized_incremental_binary::do_find_incremental_inputs_section):
13600 Add *strtab_shndx parameter, fill it.
13601 (Sized_incremental_binary::do_check_inputs): New method.
13602 (Incremental_checker::can_incrementally_link_output_file): Use
13603 Sized_incremental_binary::check_inputs.
13604 (Incremental_inputs::report_command_line): Save command line in
13605 command_line_.
13606 * incremental.h:
13607 (Incremental_binary::find_incremental_inputs_section): New
13608 method.
13609 (Incremental_binary::do_find_incremental_inputs_section): Add
13610 strtab_shndx parameter.
13611 (Incremental_binary::do_check_inputs): New pure virtual method.
13612 (Sized_incremental_binary::do_check_inputs): Declare.
13613 (Incremental_checker::Incremental_checker): Add incremental_inputs
13614 parameter, use it to initialize incremental_inputs_.
13615 (Incremental_checker::incremental_inputs_): New field.
13616 (Incremental_checker::command_line): New method.
13617 (Incremental_checker::inputs): New method.
13618 (Incremental_checker::command_line_): New field.
13619
13620 2009-10-09 Mikolaj Zalewski <mikolajz@google.com>
13621
13622 * incremental.cc: Include <cstdarg> and "target-select.h".
13623 (vexplain_no_incremental): New function.
13624 (explain_no_incremental): New function.
13625 (Incremental_binary::error): New method.
13626 (Sized_incremental_binary::do_find_incremental_inputs_section): New
13627 method.
13628 (make_sized_incremental_binary): New function.
13629 (open_incremental_binary): New function.
13630 (can_incrementally_link_file): Add checks if output is ELF and has
13631 inputs section.
13632 * incremental.h: Include "elfcpp_file.h" and "output.h".
13633 (Incremental_binary): New class.
13634 (Sized_incremental_binary): New class.
13635 (open_incremental_binary): Declare.
13636 * object.cc (is_elf_object): Use
13637 elfcpp::Elf_recognizer::is_elf_file.
13638 (make_elf_object): Use elfcpp::Elf_recognizer::is_valid_header.
13639 * output.h (Output_file::filesize): New method.
13640
13641 2009-10-07 Viktor Kutuzov <vkutuzov@accesssoftek.com>
13642
13643 * arm.cc (Arm_relocate_functions::extract_arm_movw_movt_addend):
13644 New function.
13645 (Arm_relocate_functions::insert_val_arm_movw_movt): New function.
13646 (Arm_relocate_functions::extract_thumb_movw_movt_addend): New
13647 function.
13648 (Arm_relocate_functions::insert_val_thumb_movw_movt): New
13649 function.
13650 (Arm_relocate_functions::movw_abs_nc): New function.
13651 (Arm_relocate_functions::movt_abs): New function.
13652 (Arm_relocate_functions::thm_movw_abs_nc): New function.
13653 (Arm_relocate_functions::thm_movt_abs): New function.
13654 (Scan::local): Handle R_ARM_MOVW_ABS_NC, R_ARM_MOVT_ABS,
13655 R_ARM_THM_MOVW_ABS_NC, R_ARM_THM_MOVT_ABS.
13656 (Scan::global): Likewise.
13657 (Relocate::relocate): Likewise.
13658 (Relocatable_size_for_reloc::get_size_for_reloc): Likewise.
13659
13660 2009-10-07 Viktor Kutuzov <vkutuzov@accesssoftek.com>
13661
13662 * arm.cc (Arm_relocate_functions::got_prel) New function.
13663 (Scan::local, Scan::global): Handle R_ARM_GOT_PREL.
13664 (Relocate::relocate): Likewise.
13665 (Relocatable_size_for_reloc::get_size_for_reloc): Likewise.
13666
13667 2009-10-06 Ian Lance Taylor <iant@google.com>
13668
13669 * options.h (class General_options): Define
13670 split_stack_adjust_size parameter.
13671 * object.h (class Object): Add uses_split_stack_ and
13672 has_no_split_stack_ fields. Add uses_split_stack and
13673 has_no_split_stack accessor functions. Declare
13674 handle_split_stack_section.
13675 (class Reloc_symbol_changes): Define.
13676 (class Sized_relobj): Define Function_offsets. Declare
13677 split_stack_adjust, split_stack_adjust_reltype, and
13678 find_functions.
13679 * object.cc (Object::handle_split_stack_section): New function.
13680 (Sized_relobj::do_layout): Call handle_split_stack_section.
13681 * dynobj.cc (Sized_dynobj::do_layout): Call
13682 handle_split_stack_section.
13683 * reloc.cc (Sized_relobj::relocate_sections): Call
13684 split_stack_adjust for executable sections in split_stack
13685 objects. Pass reloc_map to relocate_section.
13686 (Sized_relobj::split_stack_adjust): New function.
13687 (Sized_relobj::split_stack_adjust_reltype): New function.
13688 (Sized_relobj::find_functions): New function.
13689 * target-reloc.h: Include "object.h".
13690 (relocate_section): Add reloc_symbol_changes parameter. Change
13691 all callers.
13692 * target.h (class Target): Add calls_non_split method. Declare
13693 do_calls_non_split virtual method. Declare match_view and
13694 set_view_to_nop.
13695 * target.cc: Include "elfcpp.h".
13696 (Target::do_calls_non_split): New function.
13697 (Target::match_view): New function.
13698 (Target::set_view_to_nop): New function.
13699 * gold.cc (queue_middle_tasks): Give an error if mixing
13700 split-stack and non-split-stack objects with -r.
13701 * i386.cc (Target_i386::relocate_section): Add
13702 reloc_symbol_changes parameter.
13703 (Target_i386::do_calls_non_split): New function.
13704 * x86_64.cc (Target_x86_64::relocate_section): Add
13705 reloc_symbol_changes parameter.
13706 (Target_x86_64::do_calls_non_split): New function.
13707 * arm.cc (Target_arm::relocate_section): Add reloc_symbol_changes
13708 parameter.
13709 * powerpc.cc (Target_powerpc::relocate_section): Add
13710 reloc_symbol_changes parameter.
13711 * sparc.cc (Target_sparc::relocate_section): Add
13712 reloc_symbol_changes parameter.
13713 * configure.ac: Call AM_CONDITIONAL for the default target.
13714 * configure: Rebuild.
13715 * testsuite/Makefile.am (TEST_AS): New variable.
13716 (check_SCRIPTS): Add split_i386.sh and split_x86_64.sh.
13717 (check_DATA): Add split_i386 and split_x86_64 files.
13718 (SPLIT_DEFSYMS): Define.
13719 (split_i386_[1234n].o): New targets.
13720 (split_i386_[124]): New targets.
13721 (split_i386_[1234r].stdout): New targets.
13722 (split_x86_64_[1234n].o): New targets.
13723 (split_x86_64_[124]): New targets.
13724 (split_x86_64_[1234r].stdout): New targets.
13725 (MOSTLYCLEANFILES): Add new executables.
13726 * testsuite/split_i386.sh: New file.
13727 * testsuite/split_x86_64.sh: New file.
13728 * testsuite/split_i386_1.s: New file.
13729 * testsuite/split_i386_2.s: New file.
13730 * testsuite/split_i386_3.s: New file.
13731 * testsuite/split_i386_4.s: New file.
13732 * testsuite/split_i386_n.s: New file.
13733 * testsuite/split_x86_64_1.s: New file.
13734 * testsuite/split_x86_64_2.s: New file.
13735 * testsuite/split_x86_64_3.s: New file.
13736 * testsuite/split_x86_64_4.s: New file.
13737 * testsuite/split_x86_64_n.s: New file.
13738 * testsuite/testfile.cc (Target_test): Update relocation_section
13739 function.
13740 * testsuite/Makefile.in: Rebuild.
13741
13742 2009-10-06 Ian Lance Taylor <iant@google.com>
13743
13744 * i386.cc (class Target_i386::Relocate): Add ldo_addrs_ field.
13745 (Target_i386::Relocate::relocate_tls): Call fix_up_ldo before
13746 changing local_dynamic_type_ from LOCAL_DYNAMIC_NONE. When
13747 handling R_386_TLS_LDO_32, if local_dynamic_type_ is NONE, push
13748 the address on ldo_addrs_.
13749 (Target_i386::Relocate::fix_up_ldo): New function.
13750
13751 2009-10-06 Rafael Espindola <espindola@google.com>
13752
13753 * plugin.cc (add_input_library): New.
13754 (Plugin::load): Add add_input_library to tv.
13755 (Plugin_manager::add_input_file): Add the is_lib argument.
13756 (add_input_file): Update call to Plugin_manager::add_input_file.
13757 (add_input_library): New.
13758 * plugin.h (Plugin_manager::add_input_file): Add the is_lib argument.
13759
13760 2009-09-30 Doug Kwan <dougkwan@google.com>
13761
13762 * arm.cc (Target_arm::may_need_copy_reloc): Check for THUMB function
13763 symbol and call Symbol::may_need_copy_reloc to determine if
13764 a copy reloc is needed.
13765 * copy-relocs.cc (Copy_relocs::need_copy_reloc): Return false if -z
13766 nocopyreloc is given in command line.
13767 (Copy_relocs::emit_copy_reloc): Assert that -z nocopyreloc is not
13768 given in command line.
13769 * i386.cc (Target_i386::may_need_copy_reloc): Remove.
13770 (Target_i386::Scan::global): Use Symbol::may_need_copy_reloc instead
13771 of the removed Target_i386::may_need_copy_reloc.
13772 * options.h (copyreloc): New option with default value false.
13773 * powerpc.cc (Target_powerpc::may_need_copy_reloc): Remove.
13774 (Target_powerpc::Scan::global): Use Symbol::may_need_copy_reloc
13775 instead of the removed Target_powerpc::may_need_copy_reloc.
13776 * sparc.cc (Target_powerpc::may_need_copy_reloc): Remove.
13777 (Target_sparc::Scan::global): Use Symbol::may_need_copy_reloc
13778 instead of the removed Target_sparc::may_need_copy_reloc.
13779 * symtab.h (Symbol::may_need_copy_reloc): New method definition.
13780 * x86_64.cc (Target_powerpc::may_need_copy_reloc): Remove.
13781 (Target_x86_64::Scan::global): Use Symbol::may_need_copy_reloc
13782 instead of the removed Target_x86_64::may_need_copy_reloc.
13783
13784 2009-09-30 Ian Lance Taylor <iant@google.com>
13785
13786 * object.h (class Object): Remove target_ field, and target,
13787 sized_target, and set_target methods.
13788 (Object::sized_target): Remove.
13789 (class Sized_relobj): Update declarations. Remove sized_target.
13790 * object.cc (Sized_relobj::setup): Remove target parameter.
13791 Change all callers.
13792 (Input_objects::add_object): Don't do anything with the target.
13793 (make_elf_sized_object): Add punconfigured parameter. Change all
13794 callers. Set or test parameter target.
13795 * dynobj.cc (Sized_dynobj::target): Remove target parameter.
13796 Change all callers.
13797 * parameters.cc (Parameters::set_target): Change parameter type to
13798 be non-const.
13799 (Parameters::default_target): Remove.
13800 (set_parameters_target): Change parameter type to be non-const.
13801 (parameters_force_valid_target): New function.
13802 (parameters_clear_target): New function.
13803 * parameters.h (class Parameters): Update declarations. Remove
13804 default_target method. Add sized_target and clear_target
13805 methods. Change target_ to be non-const.
13806 (set_parameters_target): Update declaration.
13807 (parameters_force_valid_target): Declare.
13808 (parameters_clear_target): Declare.
13809 * readsyms.cc (Read_symbols::do_read_symbols): Pass punconfigured
13810 as NULL if we aren't searching.
13811 (Add_symbols::run): Don't check for compatible target.
13812 * fileread.cc (Input_file::open_binary): Call
13813 parameters_force_valid_target.
13814 * gold.cc (queue_middle_tasks): Likewise.
13815 * plugin.cc (make_sized_plugin_object): Likewise. Don't call
13816 set_target on object.
13817 * dynobj.h (class Sized_dynobj): Update declarations.
13818 * archive.cc (Archive::get_elf_object_for_member): Return NULL if
13819 make_elf_object returns NULL.
13820 (Archive::include_member): Don't check whether object target is
13821 compatible.
13822 * output.cc (Output_section::add_input_section): Get target from
13823 parameters.
13824 (Output_section::relax_input_section): Likewise.
13825 * reloc.cc (Sized_relobj::do_gc_process_relocs): Get target from
13826 parameters.
13827 (Sized_relobj::do_scan_relocs): Likewise.
13828 (Sized_relobj::relocate_sections): Likewise.
13829 * resolve.cc (Symbol_table::resolve): Likewise.
13830 * symtab.cc (Symbol_table::wrap_symbol): Likewise. Remove object
13831 parameter. Change all callers.
13832 (Symbol_table::add_from_object): Get target from parameters.
13833 (Symbol_table::add_from_relobj): Don't check object target.
13834 (Symbol_table::add_from_dynobj): Likewise.
13835 (Symbol_table::define_special_symbol): Get target from
13836 parameters.
13837 * symtab.h (class Symbol_table): Update declaration.
13838 * testsuite/binary_unittest.cc (gold_testsuite): Remove target
13839 parameter. Change all callers. Clear parameter target.
13840 (Binary_test): Test target here.
13841 * testsuite/object_unittest.cc (gold_testsuite): Remove
13842 target_test_pointer parameter. Change all callers.
13843 (Object_test): Test target here.
13844
13845 2009-09-26 Ian Lance Taylor <iant@google.com>
13846
13847 * testsuite/initpri1.c: Don't try to use constructor priorities if
13848 compiling with gcc before 4.3.
13849
13850 2009-09-22 Mikolaj Zalewski <mikolajz@google.com>
13851
13852 * testsuite/retain_symbols_file_test.sh (check_present): Change
13853 output file name to retain_symbols_file_test.stdout.
13854 (check_absent): Likewise.
13855
13856 2009-09-18 Craig Silverstein <csilvers@google.com>
13857
13858 * object.cc (Sized_relobj::do_count): Test should_retain_symbol map.
13859 * options.cc: Include <cerrno> and <fstream>.
13860 (General_options::finalize): Parse -retain-symbols-file tag.
13861 * options.h: New flag.
13862 (General_options): New method should_retain_symbol, new
13863 variable symbols_to_retain.
13864 * symtab.cc (Symbol_table::sized_finalize_symbol): Test
13865 should_retain_symbol map.
13866 * testsuite/Makefile.am (retain_symbols_file_test): New test.
13867 * testsuite/Makefile.in: Regenerate.
13868 * testsuite/retain_symbols_file_test.sh: New file.
13869
13870 2009-09-18 Nick Clifton <nickc@redhat.com>
13871
13872 * po/es.po: Updated Spanish translation.
13873
13874 2009-09-17 Doug Kwan <dougkwan@google.com>
13875
13876 * debug.h (DEBUG_RELAXATION): New constant.
13877 (DEBUG_ALL): Add DEBUG_RELAXATION.
13878 (debug_string_to_enum): Add relaxation debug option.
13879 * layout.cc
13880 (Layout::Relaxation_debug_check::check_output_data_for_reset_values,
13881 Layout::Relaxation_debug_check::read_sections,
13882 Layout::Relaxation_debug_check::read_sections): New method definitions.
13883 (Layout::Layout): Initialize data members
13884 record_output_section_data_from_scrips_,
13885 script_output_section_data_list_ and relaxation_debug_check_.
13886 (Layout::save_segments, Layout::restore_segments,
13887 Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
13888 Layout::relaxation_loop_body): New method definitions.
13889 (Layout::finalize): Support relaxation. Move section layout code to
13890 Layout::relaxation_loop_body.
13891 (Layout::set_asection_address_from_script): Move code for orphan
13892 section placement out.
13893 (Layout::place_orphan_sections_in_script): New method definition.
13894 * layout.h (Output_segment_headers, Output_file_header):
13895 New forward class declarations.
13896 (Layout::~Layout): Define.
13897 (Layout::new_output_section_data_from_script): New method definition.
13898 (Layout::place_orphan_sections_in_script): New method declaration.
13899 (Layout::Segment_states): New type declaration.
13900 (Layout::save_segments, Layout::restore_segments,
13901 Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
13902 Layout::relaxation_loop_body): New method declarations.
13903 (Layout::Output_section_data_list): New type declaration.
13904 (Layout::Relaxation_debug_check): New class definition.
13905 (Layout::record_output_section_data_from_script_,
13906 Layout::script_output_section_data_list_, Layout::segment_states_,
13907 Layout::relaxation_debug_check_): New data members.
13908 * output.cc: (Output_section_headers::do_size): New method definition.
13909 (Output_section_headers::Output_section_headers): Move size
13910 computation to Output_section_headers::do_size.
13911 (Output_segment_headers::do_size): New method definition.
13912 (Output_file_header::Output_file_header): Move size computation to
13913 Output_file_header::do_size and call it.
13914 (Output_file_header::do_size): New method definition.
13915 (Output_data_group::Output_data_group): Adjust call to
13916 Output_section_data.
13917 (Output_data_dynamic::set_final_data_size): Add DT_NULL tag only once.
13918 (Output_symtab_xindex::do_write): Add array bound check.
13919 (Output_section::Input_section::print_to_mapfile): Handle
13920 RELAXED_INPUT_SECTION_CODE.
13921 (Output_section::Output_section): Initialize data member checkpoint_.
13922 (Output_section::~Output_section): Delete checkpoint object pointed
13923 by checkpoint_.
13924 (Output_section::add_input_section): Always add an Input_section if
13925 relaxing.
13926 (Output_section::add_merge_input_section): Add assert.
13927 (Output_section::relax_input_section): New method definition.
13928 (Output_section::set_final_data_size): Set load address to zero for
13929 an unallocated section.
13930 (Output_section::do_address_and_file_offset_have_reset_values):
13931 New method definition.
13932 (Output_section::Input_section_sort_enty::Input_section_sort_enty):
13933 Handle relaxed input section.
13934 (Output_section::sort_attached_input_sections): Checkpoint input
13935 section list lazily.
13936 (Output_section::get_input_sections): Change type of input_sections to
13937 list of Simple_input_section pointers. Checkpoint input section list
13938 lazily. Also handle relaxed input sections.
13939 (Output_section::add_input_section_for_script): Take a reference to
13940 a Simple_input_section object instead of Relobj pointer and section
13941 index as parameter. Handle relaxed input sections.
13942 (Output_section::save_states, Output_section::restore_states): New
13943 method definitions.
13944 * output.h (Output_data::Output_data): Initialize is_data_size_fixed_.
13945 (Output_data::is_data_size_fixed): New method definition.
13946 (Output_data::reset_addresss_and_file_offset): Do not reset data size
13947 if it is fixed.
13948 (Output_data::address_and_file_offset_have_reset_values): New method
13949 definition.
13950 (Output_data::do_address_and_file_offset_have_reset_values): New method
13951 definition.
13952 (Output_data::set_data_size): Check that data size is not fixed.
13953 (Output_data::fix_data_size): New method definition.
13954 (Output_data::is_data_size_fixed_): New data member.
13955 (Output_section_headers::set_final_data_size): New method definition.
13956 (Output_section_headers::do_size): New method declaration.
13957 (Output_segment_headers::set_final_data_size): New method definition.
13958 (Output_segment_headers::do_size): New method declaration.
13959 (Output_file_header::set_final_data_size)::New method definition.
13960 (Output_file_header::do_size)::New method declaration.
13961 (Output_section_data::Output_section_data): Add new parameter
13962 is_data_size_fixed and use it to fix data size.
13963 (Output_data_const::Output_data_const): Adjust call to base class
13964 constructor and fix data size.
13965 (Output_data_const_buffer::Output_data_const_buffer): Adjust call to
13966 base class constructor and fix data size.
13967 (Output_data_fixed_space::Output_data_fixed_space): Adjust call to
13968 base class constructor and fix data size.
13969 (Output_data_zero_fill::Output_data_zero_fill): Adjust call to base
13970 class constructor and fix data size.
13971 (Output_data_group::set_final_data_size): New method definition.
13972 (Output_data_dynamic::Dynamic_entry::tag): New method definition.
13973 (Output_symtab_xindex::Output_symtab_xindex): Adjust call to base
13974 class constructor and fix data size.
13975 (Output_relaxed_input_section): New class definition.
13976 (Output_section::Simple_input_section): New class definition.
13977 (Output_section::get_input_sections): Adjust parameter list.
13978 (Output_section::add_input_section_for_script): Same.
13979 (Output_section::save_states, Output_section::restore_states,
13980 Output_section::do_address_and_file_offset_have_reset_values,
13981 (Output_section::Input_section::Input_section): Handle
13982 RELAXED_INPUT_SECTION_CODE. Add new overload for
13983 Output_relaxed_input_section.
13984 (Output_section::Input_section::is_input_section,
13985 Output_section::Input_section::set_output_section): Handle relaxed
13986 input section.
13987 (Output_section::Input_section::is_relaxed_input_section,
13988 Output_section::Input_section::output_section_data,
13989 Output_section::Input_section::relaxed_input_section): New method
13990 definitions.
13991 (Output_section::Input_section::RELAXED_INPUT_SECTION_CODE): New enum
13992 value.
13993 (Output_section::Input_section::u1_): Update comments.
13994 (Output_section::Input_section::u2_): Add new union member poris.
13995 (Output_section::Checkpoint_output_section): New classs definition.
13996 (Output_section::relax_input_section): New method declaration.
13997 (Output_section::checkpoint_): New data member.
13998 (Output_segment): Update comments.
13999 (Output_segment::Output_segment): Un-privatize copy constructor.
14000 (Output_segment::operator=): Un-privatize.
14001 * script-sections.cc (Output_section_element::Input_section_list):
14002 Change element type to Output_section::Simple_input_section.
14003 (Output_section_element_dot_assignment::set_section_addresses):
14004 Register output section data for relaxation clean up.
14005 (Output_data_exression::Output_data_expression): Adjust call to base
14006 constructor to fix data size.
14007 (Output_section_element_data::set_section_addresses): Register
14008 Output_data_expression object for relaxation clean up.
14009 (struct Input_section_info): Replace Relobj pointer and section index
14010 pair with Output_section::Simple_input_section and Convert struct to a
14011 class.
14012 (Input_section_sorter::operator()): Adjust access to
14013 Input_section_info data member to use accessors.
14014 (Output_section_element_input::set_section_addresses): Use layout
14015 parameter. Adjust code to use Output_section::Simple_input_section
14016 and Input_secction_info classes. Register filler for relaxation
14017 clean up.
14018 (Orphan_output_section::set_section_addresses): Replace Relobj pointer
14019 and section index pair with Output_section::Simple_input_section
14020 class. Adjust code accordingly.
14021 (Phdrs_element::release_segment): New method definition.
14022 (Script_sections::attach_sections_using_phdrs_clause): Do not modify
14023 segment list.
14024 (Script_sections::release_segments): New method definition.
14025 * gold/script-sections.h (Script_sections::release_segments): New
14026 method declaration.
14027 * gold/target.h (Target::may_relax, Target::relax,
14028 Target::do_may_relax, Target::do_relax): New method definitions.
14029
14030 2009-09-17 Viktor Kutuzov <vkutuzov@accesssoftek.com>
14031
14032 * arm.cc (has_signed_unsigned_overflow): New function.
14033 (Arm_relocate_functions::abs8): New function.
14034 (Target_arm::Scan::local): Handle R_ARM_ABS8.
14035 (Target_arm::Scan::global): Likewise.
14036 (Target_arm::relocate::relocate): Likewise.
14037 (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc):
14038 Likewise.
14039
14040 2009-09-16 Cary Coutant <ccoutant@google.com>
14041
14042 * testsuite/Makefile.am (MOSTLYCLEANFILES): Add more generated files.
14043 * testsuite/Makefile.in: Regenerate.
14044
14045 2009-09-11 Nick Clifton <nickc@redhat.com>
14046
14047 * po/gold.pot: Updated by the Translation project.
14048
14049 2009-09-08 Cary Coutant <ccoutant@google.com>
14050
14051 * output.cc (Output_file::open): Add execute permission to empty file.
14052 * testsuite/Makefile.am (permission_test): New test.
14053 * testsuite/Makefile.in: Regenerate.
14054
14055 2009-09-02 Ian Lance Taylor <iant@google.com>
14056
14057 * output.cc (Output_file::resize): Call map_no_anonymous rather
14058 than map.
14059
14060 2009-09-01 Mikolaj Zalewski <mikolajz@google.com>
14061
14062 * gold.cc: Include "incremental.h".
14063 (queue_initial_tasks): Call Incremental_checker methods.
14064 * incremental.cc: Include "output.h".
14065 (Incremental_checker::can_incrementally_link_output_file): New
14066 method.
14067 * incremental.h (Incremental_checker): New class.
14068
14069 * output.cc (Output_file::open_for_modification): New method.
14070 (Output_file::map_anonymous): Changed return type to bool. Record
14071 map in base_ field.
14072 (Output_file::map_no_anonymous): New method, broken out of map.
14073 (Output_file::map): Use map_no_anonymous and map_anonymous.
14074 * output.h (class Output_file): Update declarations.
14075
14076 2009-08-24 Cary Coutant <ccoutant@google.com>
14077
14078 * options.h (Command_line::Pre_options): New class.
14079 (Command_line::pre_options): New member.
14080 * options.cc (gold::options::ready_to_register): New variable.
14081 (One_option::register_option): Do nothing if not registering options.
14082 Assert if same short option registered twice.
14083 (General_options::General_options): Turn off option registration when
14084 done constructing.
14085 (Command_line::Pre_options::Pre_options): New constructor.
14086
14087 2009-08-24 Cary Coutant <ccoutant@google.com>
14088
14089 * options.h (General_options::no_keep_memory): Remove incorrect
14090 short option.
14091
14092 2009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14093
14094 * Makefile.am (am__skiplex, am__skipyacc): New.
14095 * Makefile.in: Regenerate.
14096
14097 2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14098
14099 * Makefile.am (AM_CPPFLAGS): Renamed from ...
14100 (INCLUDES): ... this.
14101 * testsuite/Makefile.am (AUTOMAKE_OPTIONS): Add -Wno-portability.
14102 (AM_CPPFLAGS): Renamed from ...
14103 (INCLUDE): ... this.
14104 * Makefile.in, testsuite/Makefile.in: Regenerate.
14105
14106 * Makefile.in: Regenerate.
14107 * aclocal.m4: Likewise.
14108 * config.in: Likewise.
14109 * configure: Likewise.
14110 * testsuite/Makefile.in: Likewise.
14111
14112 * Makefile.am (AUTOMAKE_OPTIONS): Add foreign.
14113 * testsuite/Makefile.am (AUTOMAKE_OPTIONS): Add foreign.
14114 * Makefile.in: Regenerate.
14115 * testsuite/Makefile.in: Regenerate.
14116
14117 2009-08-19 Cary Coutant <ccoutant@google.com>
14118
14119 * resolve.cc (Symbol_table::resolve): Don't complain about defined
14120 symbols in shared libraries overridden by hidden or internal symbols
14121 in the main program.
14122
14123 2009-08-19 Chris Demetriou <cgd@google.com>
14124
14125 * testsuite/debug_msg.sh: Match .* rather than ${srcdir} when
14126 checking source file names in error messages.
14127
14128 2009-08-18 Doug Kwan <dougkwan@google.com>
14129
14130 * dynobj.cc (Sized_dynobj::setup): Take a Target object instead of
14131 an elcpp::Ehdr as parameter. Adjust call to set_target.
14132 * dynobj.h (Sized_dynobj::setup): Take a Target object instead of
14133 an elfcpp::Ehdr as parameter.
14134 * object.cc (Object::set_target): Remove the version that looks up
14135 a target and sets it.
14136 (Sized_relobj::setup): Take a Target object instead of
14137 an elfcpp::Ehdr as parameter. Adjust call to set_target.
14138 (make_elf_sized_object): Find target and ask target to
14139 make an ELF object.
14140 * object.h: (Object::set_target): Remove the version that looks up
14141 a target and sets it.
14142 (Sized_relobj::setup): Take a Target object instead of
14143 an elfcpp:Ehdr as parameter.
14144 * target.cc: Include dynobj.h.
14145 (Target::do_make_elf_object_implementation): New.
14146 (Target::do_make_elf_object): New.
14147 * target.h (Target::make_elf_object): New template declaration.
14148 (Target::do_make_elf_object): New method declarations.
14149 (Target::do_make_elf_object_implementation): New template declaration.
14150
14151 2009-08-14 Ian Lance Taylor <iant@google.com>
14152
14153 * gold.h (FUNCTION_NAME): Define.
14154 (gold_unreachable): Use FUNCTION_NAME.
14155
14156 2009-08-12 Sriraman Tallam <tmsriram@google.com>
14157
14158 * icf.cc (Icf::find_identical_sections): Issue a warning when a
14159 symbol in the --keep-unique list is not found.
14160
14161 2009-08-12 Sriraman Tallam <tmsriram@google.com>
14162
14163 * icf.cc (Icf::find_identical_sections): Unfold symbols that have
14164 been maked as --keep-unique.
14165 (Icf::unfold_section): New function.
14166 * icf.h (Icf::unfold_section): New function.
14167 * options.h (General_options::keep_unique): New option.
14168 * testsuite/Makefile.am: Add commands to build icf_keep_unique_test.
14169 * testsuite/Makefile.in: Regenerate.
14170 * testsuite/icf_keep_unique_test.sh: New file.
14171 * testsuite/icf_keep_unique_test.cc: New file.
14172
14173 2009-08-12 Cary Coutant <ccoutant@google.com>
14174
14175 PR 10471
14176 * resolve.cc (Symbol_table::resolve): Check for references from
14177 dynamic objects to hidden and internal symbols.
14178 * testsuite/Makefile.am (hidden_test.sh): New test.
14179 * testsuite/Makefile.in: Regenerate.
14180 * testsuite/hidden_test.sh: New script.
14181 * testsuite/hidden_test_1.c: New test source.
14182 * testsuite/hidden_test_main.c: New test source.
14183
14184 2009-08-11 Doug Kwan <dougkwan@google.com>
14185
14186 * arm.cc: Update comments.
14187 (Target_arm::do_finalize_sections): Add a special PT_ARM_EXIDX
14188 segment to locate the .ARM.exidx section if present.
14189
14190 2009-08-09 Doug Kwan <dougkwan@google.com>
14191
14192 * dynobj.h (Sized_dynobj::do_section_entsize): Revert the previous
14193 patch.
14194
14195 2009-08-07 Sriraman Tallam <tmsriram@google.com>
14196 * dynobj.h (Sized_dynobj::do_section_entsize): Add return to avoid
14197 compiler warnings.
14198
14199 2009-08-06 Sriraman Tallam <tmsriram@google.com>
14200
14201 * x86_64.cc (Target_x86_64::Relocate::relocate_tls): Check for a
14202 valid tls_segment only for non-debug-section relocations.
14203 * testsuite/Makefile.am: Add gc_tls_test.
14204 * testsuite/Makefile.in: Regenerate.
14205 * testsuite/gc_tls_test.cc: New file.
14206 * testsuite/gc_tls_test.sh: New file.
14207
14208 2009-08-05 Sriraman Tallam <tmsriram@google.com>
14209
14210 * icf.cc: New file.
14211 * icf.h: New file.
14212 * Makefile.am (CCFILES): Add icf.cc.
14213 (HFILES): Add icf.h
14214 * Makefile.in: Regenerate.
14215 * dynobj.h (Sized_dynobj::do_section_entsize): New function.
14216 * gc.h (gc_process_relocs): Populate lists used by icf to contain
14217 section, symbol and addend information for the relocs.
14218 * gold.cc (queue_middle_tasks): Call identical code folding.
14219 * gold.h: Add defines for multimap.
14220 * layout.cc (Layout::create_symtab_sections): Add symtab as parameter
14221 to the call of finalize_local_symbols.
14222 * main.cc (main): Create object of class Icf.
14223 * object.cc (Sized_relobj::do_layout): Allow this function to be
14224 called twice during icf.
14225 (Sized_relobj::do_finalize_local_symbols): Fold symbols corresponding
14226 to sections marked as identical by icf.
14227 (Sized_relobj::do_section_flags): Get section_flags from Symbols_data
14228 when available.
14229 (Sized_relobj::do_section_entsize): New function.
14230 * object.h (Object::section_entsize): New function.
14231 (Object::do_section_entsize): New pure virtual function.
14232 (Relobj::finalize_local_symbols): Add new parameter.
14233 (Relobj::do_section_entsize): New function.
14234 * options.h (General_options::icf): New option.
14235 (General_options::icf_iterations): New option.
14236 (General_options::print_icf_sections): New option.
14237 * plugin.cc (Sized_pluginobj::do_section_entsize): New function.
14238 * plugin.h (Sized_pluginobj::do_section_entsize): New function.
14239 * reloc.cc (Read_relocs::run): Delay scanning relocs when doing
14240 icf.
14241 * symtab.cc (Symbol_table::is_section_folded): New function.
14242 (Symbol_table::sized_finalize_symbol): Fold symbols corresponding
14243 to sections marked as identical by icf.
14244 * symtab.h (Symbol_table::set_icf): New function.
14245 (Symbol_table::icf): New function.
14246 (Symbol_table::is_section_folded): New function.
14247 (Symbol_table::icf_): New data member.
14248 * target-reloc.h (relocate_section): Ignore sections folded by icf.
14249 * testsuite/Makefile.am: Add commands to build icf_test.
14250 * testsuite/Makefile.in: Regenerate.
14251 * testsuite/icf_test.sh: New file.
14252 * testsuite/icf_test.cc: New file.
14253
14254 2009-07-24 Chris Demetriou <cgd@google.com>
14255
14256 * layout.cc (is_compressible_debug_section): Fix incorrect
14257 comment about compressed section names.
14258
14259 2009-07-20 Ian Lance Taylor <ian@airs.com>
14260
14261 PR 10419
14262 * x86_64.cc (Target_x86_64::do_code_fill): Correct nop sequences.
14263
14264 2009-07-16 Ian Lance Taylor <iant@google.com>
14265
14266 PR 10400
14267 * layout.h: #include <map>.
14268 (class Kept_section): Change from struct to class. Add accessors
14269 and setters. Add section size to Comdat_group mapping. Change
14270 Comdat_group to std::map. Add is_comdat_ field. Add
14271 linkonce_size field in union.
14272 (class Layout): Update declaration of find_or_add_kept_section.
14273 Don't declare find_kept_object.
14274 * layout.cc (Layout::find_or_add_kept_section): Remove candidate
14275 parameter. Add object, shndx, is_comdat, and is_group_name
14276 parameters. Change all callers. Adjust for new Kept_section.
14277 (Layout::find_kept_object): Remove.
14278 * object.cc (Sized_relobj::include_section_group): Update use of
14279 Kept_section. Rename secnum to shndx. Only record
14280 Kept_comdat_section if sections are the same size.
14281 (Sized_relobj::include_linkonce_section): Update use of
14282 Kept_section. Only record Kept_comdat_section if sections are the
14283 same size. Set size of linkonce section.
14284 (Sized_relobj::map_to_kept_section): Update call to
14285 get_kept_comdat_section.
14286 * object.h (class Sized_relobj): Rename fields in
14287 Kept_comdat_section to drop trailing underscores; change object
14288 field to Relobj*. Change Kept_comdat_section_table to store
14289 struct rather than pointer.
14290 (Sized_relobj::set_kept_comdat_section): Remove kept parameter.
14291 Add kept_object and kept_shndx parameters. Change all callers.
14292 (Sized_relobj::get_kept_comdat_section): Change return type to
14293 bool. Add kept_object and kept_shndx parameters. Change all
14294 callers.
14295 * plugin.cc (Pluginobj::include_comdat_group): Update call to
14296 Layout::find_or_add_kept_section.
14297
14298 2009-07-09 Ian Lance Taylor <iant@google.com>
14299
14300 * merge.cc (Object_merge_map::initialize_input_to_output_map):
14301 Reserve space in the hash table.
14302
14303 2009-07-06 Mikolaj Zalewski <mikolajz@google.com>
14304
14305 * fileread.cc (File_read::get_mtime): New method.
14306 * fileread.h (Timespec): New structure.
14307 (File_read::get_mtime): New method.
14308 * incremental.cc (Incremental_inputs_entry_data::timestamp_usec):
14309 Renamed from timestamp_nsec.
14310 (Incremental_inputs_entry_write::timestamp_sec): Fix argument to
14311 Elf_Xword.
14312 (Incremental_inputs_entry_write::timestamp_usec): Renamed from
14313 timestamp_nsec.
14314 (Incremental_inputs::report_archive): Save mtime; style fix.
14315 (Incremental_inputs::report_obejct): Save mtime; style fix.
14316 (Incremental_inputs::report_script): Save mtime; style fix.
14317 (Incremental_inputs::finalize_inputs): Style fix.
14318 (Incremental_inputs::finalize): Style fix.
14319 (Incremental_inputs::create_input_section_data): Store inputs
14320 mtime.
14321 * incremental.h (Incremental_inputs::report_script): Add mtime
14322 argument.
14323 (Incremental_inputs::Input_info::Input_info): Intialize only one
14324 union member.
14325 (Incremental_inputs::Input_info::archive): Move to nameless
14326 union.
14327 (Incremental_inputs::Input_info::obejct): Move to nameless union.
14328 (Incremental_inputs::Input_info::script): Move to nameless union.
14329 (Incremental_inputs::mtime): New field.
14330 * script.cc (read_input_script): Pass file mtime to
14331 Incremental_input.
14332 * script.h (Script_info::inputs): Style fix.
14333
14334 2009-07-01 Ian Lance Taylor <ian@airs.com>
14335
14336 * freebsd.h (Target_freebsd::do_adjust_elf_header): Use size
14337 instead of 32.
14338
14339 2009-06-24 Ian Lance Taylor <iant@google.com>
14340
14341 PR 10156
14342 * layout.cc (Layout::choose_output_section): If we find an
14343 existing section, update the flags.
14344 (Layout::create_notes): New function, broken out of
14345 Layout::finalize.
14346 (Layout::finalize): Don't create note sections.
14347 (Layout::create_note): Don't crash if linker script discards
14348 section.
14349 (Layout::create_gold_note): Likewise.
14350 (Layout::create_build_id): Likewise. Don't set
14351 after_input_sections on the section.
14352 (Layout::create_executable_stack_info): Remove target parameter.
14353 Change caller.
14354 * layout.h (class Layout): Declare create_notes. Update
14355 declaration of create_executable_stack_info.
14356 * gold.cc (queue_middle_tasks): Call create_notes.
14357 * output.cc (Output_section::update_flags_for_input_section): Move
14358 here from output.h. If SHF_ALLOC flag is newly set, mark address
14359 invalid.
14360 * output.h (Output_data::mark_address_invalid): New function.
14361 (class Output_section): Only declare, not define,
14362 update_flags_for_input_section. Remove set_flags.
14363
14364 2009-06-24 Ian Lance Taylor <iant@google.com>
14365
14366 * script-sections.cc (Output_section_definition::
14367 set_section_addresses): Rename shadowing local load_address to
14368 laddr.
14369
14370 2009-06-24 Ian Lance Taylor <iant@google.com>
14371
14372 PR 10244
14373 * reloc.cc (relocate_sections): Skip empty relocation sections.
14374
14375 2009-06-23 Ian Lance Taylor <iant@google.com>
14376
14377 PR 10156
14378 * layout.cc (Layout::create_note): Use choose_output_section
14379 rather than make_output_section.
14380
14381 2009-06-23 Ian Lance Taylor <iant@google.com>
14382
14383 PR 10237
14384 * options.cc (General_options::parse_V): Set printed_version_.
14385 (General_options::General_options): Initialize printed_version_.
14386 * options.h (class General_options): Add printed_version_ field.
14387 * gold.cc (queue_initial_tasks): If there are no input files,
14388 don't give a fatal error if we printed the version information.
14389 (queue_middle_tasks): If using -r with a shared object, give a
14390 fatal error rather than an ordinary error.
14391
14392 2009-06-23 Ian Lance Taylor <iant@google.com>
14393
14394 PR 10219
14395 * layout.cc (Layout::Layout): Initialize have_stabstr_section_.
14396 (Layout::make_output_section): Set have_stabstr_section_ if we see
14397 a .stab*str section.
14398 (Layout::finalize): Call link_stabs_sections.
14399 (Layout::link_stabs_sections): New file.
14400 * layout.h (class Layout): Add have_stabstr_section_ field.
14401 Declare link_stabs_sections.
14402
14403 2009-06-23 Doug Kwan <dougkwan@google.com>
14404
14405 * Makefile.am (libgold_a_LIBADD): New.
14406 (ld_new_DEPENDENCIES, ld_new_LDADD): Remove LIBOBJS
14407 * Makefile.in: Regenerate.
14408 * config.in (HAVE_DECL_MEMMEM, HAVE_DECL_STRNDUP): New.
14409 * configure: Regenerate.
14410 * configure.ac (AC_CHECK_DECLS): Add strndup and memmem.
14411 * fileread.cc: Include sys/state.h
14412 * gold.h: Declare memmem and strndup if found missing.
14413 * gold_reloc.h: Include byteswap.h if HAVE_BYTESWAP_H is defined.
14414
14415 2009-06-23 Ian Lance Taylor <iant@google.com>
14416
14417 * configure.ac: Call AC_CHECK_DECLS using C, not C++.
14418 * configure: Rebuild.
14419
14420 2009-06-23 Ian Lance Taylor <iant@google.com>
14421
14422 PR 10147
14423 * object.cc (Object::section_contents): Don't try to get a view if
14424 the section has length zero.
14425 (Object::handle_gnu_warning_section): If the section is empty, use
14426 the name of the section as the warning.
14427
14428 2009-06-23 Ian Lance Taylor <iant@google.com>
14429
14430 PR 10133
14431 * stringpool.h (class Stringpool_template): Add optimize_ field.
14432 (Stringpool_template::set_optimize): New function.
14433 * stringpool.cc (Stringpool_template::Stringpool_template):
14434 Initialize optimize_ field.
14435 (Stringpool_template::set_string_offsets): Test local optimize
14436 fild rather than parameter.
14437 * layout.cc (Layout::Layout): Call set_optimize on the section
14438 name stringpool.
14439
14440 2009-06-22 Ian Lance Taylor <iant@google.com>
14441
14442 PR 10030
14443 * yyscript.y: Parse TARGET.
14444 * script.cc (script_set_target): New function.
14445 * script-c.h (script_set_target): Declare.
14446 * options.cc (General_options::string_to_object_format): Rename
14447 from string_to_object_format in anonymous namespace. Change
14448 callers.
14449 * options.h (class General_options): Declare
14450 string_to_object_format.
14451
14452 2009-06-22 Ian Lance Taylor <iant@google.com>
14453
14454 * script-sections.cc (Script_sections::create_segments): Don't put
14455 program headers in a PT_LOAD segment if -n or -N.
14456
14457 2009-06-22 Ian Lance Taylor <iant@google.com>
14458
14459 PR 10141
14460 * options.h (class General_options): Add -z lazy and -z now. Sort
14461 -z options into alphabetical order.
14462 * layout.cc (Layout::finish_dynamic_section): Handle -z now.
14463
14464 2009-06-21 Ian Lance Taylor <iant@google.com>
14465
14466 * layout.cc (Layout::make_output_section): Call
14467 Target::new_output_section.
14468 (Layout::attach_allocated_section_to_segment): Put large section
14469 sections in a separate load segment with the large segment flag
14470 set.
14471 (Layout::segment_precedes): Sort large data segments after other
14472 load segments.
14473 (align_file_offset): New static function.
14474 (Layout::set_segment_offsets): Use align_file_offset.
14475 * output.h (class Output_section): Add is_small_section_ and
14476 is_large_section_ fields.
14477 (Output_section::is_small_section): New function.
14478 (Output_section::set_is_small_section): New function.
14479 (Output_section::is_large_section): New function.
14480 (Output_section::set_is_large_section): New function.
14481 (Output_section::is_large_data_section): New function.
14482 (class Output_segment): Add is_large_data_segment_ field.
14483 (Output_segment::is_large_data_segment): New function.
14484 (Output_segment::set_is_large_data_segment): New function.
14485 * output.cc (Output_section::Output_section): Initialize new
14486 fields.
14487 (Output_segment::Output_segment): Likewise.
14488 (Output_segment::add_output_section): Add assertion that large
14489 data sections always go in large data segments. Force small data
14490 sections to the end of the list of data sections. Force small BSS
14491 sections to the start of the list of BSS sections. For large BSS
14492 sections to the end of the list of BSS sections.
14493 * symtab.h (class Symbol): Declare is_common_shndx.
14494 (Symbol::is_defined): Check Symbol::is_common_shndx.
14495 (Symbol::is_common): Likewise.
14496 (class Symbol_table): Define enum Commons_section_type. Update
14497 declarations. Add small_commons_ and large_commons_ fields.
14498 * symtab.cc (Symbol::is_common_shndx): New function.
14499 (Symbol_table::Symbol_table): Initialize new fields.
14500 (Symbol_table::add_from_object): Put small and large common
14501 symbols in the right list.
14502 (Symbol_table::sized_finalized_symbol): Check
14503 Symbol::is_common_shndx.
14504 (Symbol_table::sized_write_globals): Likewise.
14505 * common.cc (Symbol_table::do_allocate_commons): Allocate new
14506 common symbol lists. Don't call do_allocate_commons_list if the
14507 list is empty.
14508 (Symbol_table::do_allocate_commons_list): Remove is_tls
14509 parameter. Add comons_section_type parameter. Change all
14510 callers. Handle small and large common symbols.
14511 * object.cc (Sized_relobj::do_finalize_local_symbols): Check
14512 Symbol::is_common_shndx.
14513 * resolve.cc (symbol_to_bits): Likewise.
14514 * target.h (Target::small_common_shndx): New function.
14515 (Target::small_common_section_flags): New function.
14516 (Target::large_common_shndx): New function.
14517 (Target::large_common_section_flags): New function.
14518 (Target::new_output_section): New function.
14519 (Target::Target_info): Add small_common_shndx, large_common_shndx,
14520 small_common_section_flags, and large_common_section_flags
14521 fields.
14522 (Target::do_new_output_section): New virtual function.
14523 * arm.cc (Target_arm::arm_info): Initialize new fields.
14524 * i386.cc (Target_i386::i386_info): Likewise.
14525 * powerpc.cc (Target_powerpc::powerpc_info) [all versions]:
14526 Likewise.
14527 * sparc.c (Target_sparc::sparc_info) [all versions]: Likewise.
14528 * x86_64.cc (Target_x86_64::x86_64_info): Likewise.
14529 (Target_x86_64::do_new_output_section): New function.
14530 * configure.ac: Define conditional MCMODEL_MEDIUM.
14531 * testsuite/Makefile.am (check_PROGRAMS): Add large.
14532 (large_SOURCES, large_CFLAGS, large_DEPENDENCIES): Define.
14533 (large_LDFLAGS): Define.
14534 * testsuite/large.c: New file.
14535 * testsuite/testfile.cc (Target_test::test_target_info):
14536 Initialize new fields.
14537 * configure, testsuite/Makefile.in: Rebuild.
14538
14539 2009-06-05 Doug Kwan <dougkwan@google.com>
14540
14541 * Makefile.am (CCFILES): Add target.cc.
14542 * Makefile.in: Regenerate.
14543 * i386.cc (class Target_i386): Define new virtual method to
14544 override do_is_local_label_name in parent.
14545 * object.cc (Sized_relobj::do_count_local_symbols): Discard
14546 local symbols if --discard-locals or -X is given.
14547 * options.h (class General_options): Declare new options
14548 '--discard-locals' and '-X' for discarding locals.
14549 * target.h (class Target): Define new methods is_local_label_name.
14550 Declare new virtual method do_is_local_label_name.
14551 * target.cc: New file.
14552 * testsuite/Makefile.am (check_PROGRAMS): Add discard_locals_test.
14553 (check_SCRIPTS): Add discard_locals_test.sh.
14554 (check_DATA): Add discard_local_tests.syms.
14555 (discard_locals_test_SOURCES, discard_locals_test_LDFLAGS): Define.
14556 (discard_local_tests.syms, discard_locals_test.o): New make rules.
14557 * testsuite/Makefile.in: Regenerate.
14558 * testsuite/discard_locals_test.c: New file.
14559 * testsuite/discard_locals_test.sh: Same.
14560
14561 2009-06-05 Doug Kwan <dougkwan@google.com>
14562
14563 * object.cc (Sized_relobj::Sized_relobj): Initialize
14564 discarded_eh_frame_shndx_ to -1U.
14565 (Sized_relobj::do_layout): Record index of a discard .eh_frame
14566 section.
14567 (Sized_relobj::do_count_local_symbols): Skip local symbols in
14568 a discarded .eh_frame section.
14569 (Sized_relobj::do_finalize_local_symbols): Ditto.
14570 * object.h (class Sized_relobj): Declare new member
14571 discarded_eh_frame_shndx_.
14572 * testsuite/Makefile.am (check_PROGRAMS): Add local_labels_test.
14573 (local_labels_test.o, local_labels_test): New rules.
14574 * testsuite/Makefile.in: Regenerate.
14575
14576 2009-06-04 Doug Kwan <dougkwan@google.com>
14577
14578 * layout.cc (Layout::section_name_mapping): Add mapping for
14579 special ARM sections.
14580
14581 2009-06-03 Doug Kwan <dougkwan@google.com>
14582
14583 * arm.cc (utils::sign_extend): Reverse test in gold_assert.
14584 (utils::has_overflow): Same.
14585
14586 2009-06-03 Ian Lance Taylor <iant@google.com>
14587
14588 * layout.cc (Layout::section_name_mapping): New array, replacing
14589 Layout::linkonce_mapping.
14590 (Layout::section_name_mapping_count): New variable, replacing
14591 Layout::linkonce_mapping_count.
14592 (Layout::linkonce_output_name): Remove.
14593 (Layout::output_section_name): Rewrite.
14594 * layout.h (class Layout): Rename Linkonce_mapping to
14595 Section_name_mapping, linkonce_mapping to section_name_mapping,
14596 linkonce_mapping_count to section_name_mapping_count. Don't
14597 declare linkonce_output_name.
14598
14599 2009-06-03 Doug Kwan <dougkwan@google.com>
14600
14601 * gold/arm.cc (namespace utils): New.
14602 (Target_arm::reloc_is_non_pic): Define new method.
14603 (class Arm_relocate_functions): New.
14604 (Target_arm::Relocate::relocate): Handle relocation types used by
14605 Android.
14606
14607 2009-06-03 Ian Lance Taylor <iant@google.com>
14608
14609 * arm.cc (Target_arm::scan::global): Use || instead of |.
14610
14611 2009-06-02 Doug Kwan <dougkwan@google.com>
14612
14613 * gold/arm.cc (Target_arm::Scan::Scan): Initialize
14614 issued_non_pic_error_.
14615 (class Target_arm::Scan): Declare new method check_non_pic.
14616 Define new method symbol_needs_plt_entry.
14617 Declare new data member issued_non_pic_error_.
14618 (class Target_arm::Relocate): Declare new method
14619 should_apply_static_reloc.
14620 (Target_arm::may_need_copy_reloc): Handle STT_ARM_TFUNC.
14621 (Target_arm::Scan::check_non_pic): Define new method.
14622 (Target_arm::Scan::local): Handle a small subset of reloc types used
14623 by Android.
14624 (Target_arm::Scan::local): Same.
14625 (Target_arm::Relocate::should_apply_statci_reloc): Define new method.
14626
14627 2009-05-31 Mikolaj Zalewski <mikolajz@google.com>
14628
14629 * incremental.cc (Incremental_inputs::report_command_line): Filter
14630 out --incremental-* options.
14631
14632 2009-05-29 Doug Kwan <dougkwan@google.com>
14633
14634 * gold/arm.cc (Output_data_plt_arm): Forward declaration for new
14635 template class.
14636 (class Target_arm): Update comment.
14637 (Target_arm::Target_arm): Initialize new data members GOT_,
14638 PLT_, GOT_PLT_, REL_DYN_, COPY_RELOCS_ and DYNBSS_.
14639 Declare new methods Target_arm::got_section, Target_arm::make_plt_entry
14640 and Target_arm::rel_dyn_section.
14641 Declare new_enum Target_arm::Got_type.
14642 Declare new data members GOT_, PLT_, GOT_PLT_, REL_DYN_, COPY_RELOCS_
14643 and DYNBSS_.
14644 Update commments for member do_dynsym_value.
14645 (Target_arm::got_size, Target_arm::plt_section,
14646 Target_arm::may_need_copy_reloc and Target_arm::copy_reloc): Define
14647 new methods inside class defintion.
14648 (Target_arm::got_section): Define new method.
14649 (Target_arm::rel_dyn_section): Same.
14650 (Output_data_plt_arm): New template class.
14651 (Output_data_plt_arm::Output_data_plt_arm): Define constructor.
14652 (Output_data_plt_arm:do_adjust_output_section): Define new method.
14653 (Output_data_plt_arm::add_entry): Same.
14654 (Output_data_plt_arm::first_plt_entry): Define new
14655 static data member for PLT instruction template.
14656 (Output_data_plt_arm::plt_entry): Same.
14657 (Output_data_plt_arm::do_write): Define new method.
14658 (Target_arm::make_plt_entry): Same.
14659 (Target_arm::do_finalize_sections): Same.
14660 (Target_arm::do_dynsym_value): Same.
14661
14662 2009-05-28 Doug Kwan <dougkwan@google.com>
14663
14664 * Makefile.am (TARGETSOURCES): Add arm.cc.
14665 (ALL_TARGETOBJECTS): Add arm.$(OBJEXT)
14666 * Makefile.in: Regenerate.
14667 * arm.cc: New file.
14668 * configure.tgt: Add armbe*-*-*, armeb*-*-* and arm*-*-* targets.
14669
14670 2009-05-26 Doug Kwan <dougkwan@google.com>
14671
14672 * options.cc (General_options::parse_exclude_libs). Fix a comment.
14673 (General_options::check_excluded_libs): Strip off directories in
14674 archive name before matching like GNU ld does.
14675 * testsuite/Makefile.am (MOSTLYCLEANFILES,
14676 exclude_libs_test_DEPENDENCIES): Add alt/libexclude_libs_test_3.a
14677 (exclude_libs_test_LDFLAGS): Add linker option
14678 -Wl,--exclude-libs,libexclude_libs_test_3
14679 (exclude_libs_test_LADD): Add alt/libexclude_libs_test_3.a as
14680 an explicit archive without using -l.
14681 (alt/libexclude_libs_test_3.a): New make rule.
14682 * testsuite/Makefile.in: Regenerate.
14683 * testsuite/exclude_libs_test.c : Declare lib3_default().
14684 (main): Call it.
14685 * exclude_libs_test.sh: Add tests for alt/exclude_libs_test_3.a.
14686 * exclude_libs_test_3.c: New file.
14687
14688 2009-05-26 Nick Clifton <nickc@redhat.com>
14689
14690 * po/id.po: New Indonesian translation.
14691 * po/gold.pot: Updated template file.
14692
14693 2009-05-22 Sriraman Tallam <tmsriram@google.com>
14694
14695 * testsuite/Makefile.am: Add -ffunction-sections to compile
14696 gc_comdat_test files. Add -Wl,--gc-sections to build
14697 gc_comdat_test.
14698 * testsuite/Makefile.in: Regenerate.
14699 * testsuite/gc_comdat_test.sh: Fix the condition around grep.
14700
14701 2009-05-21 Sriraman Tallam <tmsriram@google.com>
14702
14703 * object.cc (Sized_relobj::map_to_kept_section): Return NULL if the
14704 kept comdat section was garbage collected.
14705 * testsuite/Makefile.am: Add test gc_comdat_test.sh.
14706 * testsuite/Makefile.in: Regenerate.
14707 * testsuite/gc_comdat_test.sh: New file.
14708 * testsuite/gc_comdat_test_1.cc: New file.
14709 * testsuite/gc_comdat_test_2.cc: New file.
14710
14711 2009-05-19 Doug Kwan <dougkwan@google.com>
14712
14713 * archive.cc (Archive::Archive): Move constructor from archive.h
14714 to here. Initialize no_export_.
14715 (Archive::get_elf_object_for_member): Set no_export flag of object.
14716 * archive.h (Archive::Archive): Move constructor body to
14717 archive.cc.
14718 (Archive::no_export): New method.
14719 (Archive::no_export_): New field.
14720 * object.h (Object::Object): Initialize no_export_ to false.
14721 (Object::no_export, Object::set_no_export): New methods.
14722 (Object::no_export_): New field.
14723 * options.cc (General_options::parse_exclude_libs): New method.
14724 (General_options::check_excluded_libs) Same.
14725 * options.h (exclude_libs): New option.
14726 (General_options::check_excluded_libs): New method declaration.
14727 (General_options::excluded_libs_): New field.
14728 * symtab.cc (Symbol_table::add_from_relobj): Hide symbols with
14729 default or protected visibility if an object has no-export flag set.
14730 testsuite/Makefile.am (check_PROGRAMS): Add exclude_libs_test.
14731 (check_SCRIPTS): Add exclude_libs_test.sh.
14732 (check_DATA): Add exclude_libs_test.syms.
14733 (MOSTLYCLEANFILES): Add exclude_libs_test.syms,
14734 libexclude_libs_test_1.a and libexclude_libs_test_2.a.
14735 (exclude_libs_test_SOURCES, exclude_libs_test_DEPENDENCIES,
14736 exclude_libs_test_LDFLAGS and exclude_libs_test_LDADD): Define.
14737 (exclude_libs_test.syms, libexclude_libs_test_1.a,
14738 libexclude_libs_test_2.a): New rules.
14739 * testsuite/Makefile.in: Regenerate.
14740 * testsuite/exclude_libs_test.c: New file.
14741 * testsuite/exclude_libs_test.sh: Ditto.
14742 * testsuite/exclude_libs_test_1.c: Ditto.
14743 * testsuite/exclude_libs_test_2.c: Ditto.
14744
14745 2009-05-15 Ian Lance Taylor <iant@google.com>
14746
14747 * configure.ac: Check for declarations for cases where libiberty.h
14748 checks HAVE_DECL_xxx.
14749 * configure, config.in: Rebuild.
14750
14751 2009-05-15 Mikolaj Zalewski <mikolajz@google.com>
14752
14753 * gold.h (Incremental_argument_list): Remove (invalid) forward
14754 declaration.
14755 * incremental.cc (Incremental_inputs::report_achive): New method.
14756 (Incremental_inputs::report_object): New method.
14757 (Incremental_inputs::report_script): New method.
14758 (Incremental_inputs::finalize_inputs): New method.
14759 (Incremental_inputs::finalize): Call finalize_inputs().
14760 (Incremental_inputs::sized_create_incremental_inputs_section_data):
14761 Create inputs entries.
14762 * incremental.h (Incremental_input_type): New enum.
14763 (Incremental_inputs::Incremental_input): Initialize new fields.
14764 (Incremental_inputs::report_inputs): New method.
14765 (Incremental_inputs::report_achive): New method.
14766 (Incremental_inputs::report_object): New method.
14767 (Incremental_inputs::report_script): New method.
14768 (Incremental_inputs::finalize_inputs): New method.
14769 (Incremental_inputs::Input_info): New struct.
14770 (Incremental_inputs::Input_info_map): New typedef.
14771 (Incremental_inputs::lock_): New field.
14772 (Incremental_inputs::Inputs_): New field.
14773 (Incremental_inputs::Inputs_map): New field.
14774 * main.cc (main): Call Incremental_input::report_inputs.
14775 * options.h (Input_argument_list): Typedef moved from
14776 Input_arguments.
14777 (Input_file_group::Files): Remove, use ::Input_argument_list.
14778 (Input_file_group::Input_argument_list): Remove, use
14779 ::Input_argument_list.
14780 * plugin.cc (Plugin_manager::add_input_file): Add error in
14781 incremental build.
14782 * read_syms.cc (do_read_syms): Call Incremental_input::report_*
14783 functions.
14784 * script.cc (read_input_script): Call
14785 Incremental_input::report_script.
14786 * script.h (Script_info): New class.
14787
14788 2009-04-27 Ian Lance Taylor <iant@google.com>
14789
14790 * x86_64.cc (do_adjust_output_section): Set entsize to
14791 plt_entry_size.
14792
14793 2009-04-23 Elliott Hughes <enh@google.com>
14794
14795 * output.cc (Output_file::close): After short writes, continue
14796 writing from the correct offset in the buffer being written.
14797
14798 2009-04-23 Chris Demetriou <cgd@google.com>
14799
14800 * configure.ac (HAVE_TR1_UNORDERED_MAP_REHASH): New define.
14801 * configure: Regenerate.
14802 * config.in: Regenerate.
14803 * gold.h: Avoid std::tr1::unordered_map and std::tr1::unordered_set
14804 if HAVE_TR1_UNORDERED_MAP_REHASH is not defined.
14805
14806 2009-04-21 Mikolaj Zalewski <mikolajz@google.com>
14807
14808 * incremental.cc (Incremental_inputs_header_data): Renamed from
14809 Incremental_input_header_data.
14810 (Incremental_inputs_header_data::data_size): New field.
14811 (Incremental_inputs_header_data::put_input_file_count): Renamed
14812 from input_file_count.
14813 (Incremental_inputs_header_data::put_command_line_offset): Renamed
14814 from command_line_offset.
14815 (Incremental_inputs_header_data::put_reserved): Renamed from
14816 put_reserved.
14817 (Incremental_inputs_entry_data): Renamed from
14818 Incremental_input_entry_data.
14819 (Incremental_inputs_entry_data::data_size): New field.
14820 (Incremental_inputs::report_command_line): New method.
14821 (Incremental_inputs::finalize): New method.
14822 (Incremental_inputs::create_incremental_inputs_data): New method.
14823 (Incremental_inputs::sized_create_incremental_inputs_data): New method.
14824 * incremental.h: New file.
14825 * layout.cc (Layout::Layout): Handle new incremental_inputs_.
14826 (Layout::finalize): Create incremental inputs section in
14827 incremental builds.
14828 (Layout::create_incremental_info_sections): New method.
14829 * layout.h (Layout::incremental_inputs): New method.
14830 (Layout::create_incremental_info_sections): New method.
14831 (Layout::incremental_inputs_): New field.
14832 * main.cc (main): Notify Incremental_input of the command line.
14833
14834 2009-04-01 Ian Lance Taylor <iant@google.com>
14835 Mikolaj Zalewski <mikolajz@google.com>
14836
14837 * gold.h (reserve_unordered_map): Define, three versions, one for
14838 each version of Unordered_map.
14839 * layout.cc (Layout::Layout): Remove options parameter. Add
14840 number_of_input_files parameter. Don't initialize options_.
14841 Initialize number_of_input_files_ and resized_signatures_. Move
14842 sections_are_attached_.
14843 (Layout::layout_group): Reserve space for group_signatures_.
14844 (Layout::find_or_add_kept_section): Change name parameter to be a
14845 reference. Resize signatures_ map when it gets large enough.
14846 (Layout::layout_eh_frame): Use parameters->options() instead of
14847 this->options_.
14848 (Layout::make_output_section): Likewise.
14849 (Layout::attach_allocated_section_to_segment): Likewise.
14850 (Layout::finalize, Layout::create_executable_stack): Likewise.
14851 (Layout::set_segment_offsets, Layout::create_interp): Likewise.
14852 (Layout::finish_dynamic_section, Layout::write_binary): Likewise.
14853 * layout.h (class Layout): Update declarations. Remove options_
14854 field. Add number_of_input_files_ and resized_signatures_
14855 fields. Move sections_are_attached_ field.
14856 * main.cc (main): Pass number of input files to Layout
14857 constructor. Don't pass options.
14858
14859 2009-03-30 Ian Lance Taylor <iant@google.com>
14860
14861 * ffsll.c (ffsll): Correct implementation.
14862
14863 2009-03-27 Ian Lance Taylor <iant@google.com>
14864
14865 * ffsll.c: New file.
14866 * configure.ac: Call AC_REPLACE_FUNCS on ffsll.
14867 * gold.h (ffsll): Declare if HAVE_FFSLL is not defined.
14868 * ftruncate.c (ftruncate): Declare before definition.
14869 * mremap.c (mremap): Likewise.
14870 * pread.c (pread): Likewise.
14871 * configure, Makefile.in, config.in: Rebuild.
14872
14873 * mremap.c: New file.
14874 * configure.ac: Call AC_REPLACE_FUNCS on mremap.
14875 * gold.h (MREMAP_MAYMOVE): Define if HAVE_MREMAP is not defined.
14876 (mremap): Declare if HAVE_MREMAP is not defined.
14877 * configure, Makefile.in, config.in: Rebuild.
14878
14879 2009-03-27 Cary Coutant <ccoutant@google.com>
14880
14881 * powerpc.cc (Target_powerpc::check_non_pic): Assert that output is
14882 position independent.
14883 * sparc.cc (Target_sparc::check_non_pic): Likewise.
14884 * x86_64.cc (Target_x86_64::check_non_pic): Likewise.
14885
14886 2009-03-24 Cary Coutant <ccoutant@google.com>
14887
14888 * symtab.h (needs_plt_entry): Check for unsatisfied reference from
14889 an executable.
14890 (needs_dynamic_reloc): Likewise.
14891
14892 2009-03-24 Ian Lance Taylor <iant@google.com>
14893
14894 * yyscript.y (file_cmd): Recognize EXTERN.
14895 (extern_name_list, extern_name_list_body): New nonterminals.
14896 * script.cc (script_add_extern): Define.
14897 * script-c.h (script_add_extern): Declare.
14898
14899 2009-03-24 Rafael Avila de Espindola <espindola@google.com>
14900
14901 * object.cc (is_elf_object): Define.
14902 * object.h (is_elf_object): Declare.
14903 * archive.cc (Archive::get_elf_object_for_member): Call
14904 is_elf_object.
14905 * readsyms.cc (Read_symbols::do_read_symbols): Likewise.
14906
14907 2009-03-24 Elliott Hughes <enh@google.com>
14908
14909 * output.cc (Output_file::map_anonymous): Define.
14910 (Output_file::map): Use map_anonymous. If the regular mmap fails,
14911 try an anonymous one. Report the size if the mmap fails.
14912 * output.h (class Output_file): Declare map_anonymous.
14913
14914 2009-03-24 Ian Lance Taylor <iant@google.com>
14915
14916 * target-select.cc (instantiate_target): Don't acquire the lock if
14917 the instantiated_target_ field has already been set.
14918
14919 2009-03-23 Ian Lance Taylor <iant@google.com>
14920
14921 * gold-threads.h (class Initialize_lock): Define.
14922 * gold-threads.cc (class Initialize_lock_once): Define.
14923 (initialize_lock_control): New static variable.
14924 (initialize_lock_pointer): New static variable.
14925 (initialize_lock_once): New static function.
14926 (Initialize_lock::Initialize_lock): Define.
14927 (Initialize_lock::initialize): Define.
14928 * target-select.h: Include "gold-threads.h".
14929 (class Target_selector): Add lock_ and initialize_lock_ fields.
14930 Don't define instantiate_target, just declare it.
14931 * target-select.cc (Target_selector::Target_selector): Initialize
14932 new fields.
14933 (Target_selector::instantiate_target): Define.
14934 * descriptors.h: Include "gold-threads.h".
14935 (class Descriptors): Add initialize_lock_ field.
14936 * descriptors.cc (Descriptors::Descriptors): Initialize new
14937 field.
14938 (Descriptors::open): Use initialize_lock_ field
14939 * errors.h (class Errors): Add initialize_lock_ field.
14940 * errors.cc (Errors::Errors): Initialize new field.
14941 (Errors::initialize_lock): Use initialize_lock_ field.
14942 * powerpc.cc (class Target_selector_powerpc): Remove
14943 instantiated_target_ field. In do_recognize call
14944 instantiate_target rather than do_instantiate_target. In
14945 do_instantiate_target just allocate a new target.
14946 * sparc.cc (class Target_selector_sparc): Likewise.
14947
14948 * freebsd.h: New file.
14949 * i386.cc: Include "freebsd.h".
14950 (Target_i386): Derive from Target_freebsd rather than
14951 Sized_target.
14952 (Target_selector_i386): Derive from Target_selector_freebsd rather
14953 than Target_selector.
14954 * x86_64.cc: Include "freebsd.h".
14955 (Target_x86_64): Derive from Target_freebsd rather than
14956 Sized_target.
14957 (Target_selector_x86_64): Derive from Target_selector_freebsd
14958 rather than Target_selector.
14959 * target.h (class Target): Add adjust_elf_header and
14960 do_adjust_elf_header.
14961 * output.cc (Output_file_header:: do_sized_write): Call target
14962 adjust_elf_header routine.
14963 * configure.tgt: Set targ_osabi.
14964 * configure.ac: Define GOLD_DEFAULT_OSABI.
14965 * parameters.cc (Parameters::default_target): Pass
14966 GOLD_DEFAULT_OSABI to select_target.
14967 * target-select.h (class Target_selector): Make instantiate_target
14968 protected rather than private.
14969 * Makefile.am (HFILES): Add freebsd.h.
14970 * configure, Makefile.in, config.in: Rebuild.
14971
14972 * merge.cc (do_add_input_section): Correct pend value. Change
14973 message about last entry not being null terminated from error to
14974 warning.
14975
14976 2009-03-20 Mikolaj Zalewski <mikolajz@google.com>
14977
14978 * incremental.cc: New file.
14979 * Makefile.am (CCFILES): Add incremental.cc.
14980 * Makefile.in: Rebuild.
14981
14982 2009-03-19 Paul Pluzhnikov <ppluzhnikov@google.com>
14983
14984 * layout.cc (Layout::output_section_name): Preserve names
14985 of '.note.' sections.
14986
14987 2009-03-19 Ian Lance Taylor <iant@google.com>
14988
14989 * descriptors.cc (Descriptors::open): Check that the options are
14990 valid before using them.
14991
14992 2009-03-18 Ian Lance Taylor <iant@google.com>
14993
14994 * script-sections.h: Include <list>.
14995 (class Script_sections): Change Sections_elements from std::vector
14996 to std::list. Typedef public Elements_iterator. Add
14997 orphan_section_placement_, data_segment_align_start_, and
14998 saw_data_segment_align_ fields. Remove data_segment_align_index_
14999 field.
15000 * script-sections.cc (class Orphan_section_placement): New class.
15001 (class Sections_element): Add virtual functions is_relro and
15002 orphan_section_init. Remove virtual function place_orphan_here.
15003 (class Output_section_definition): Add is_relro and
15004 orphan_section_init. Remove place_orphan_here.
15005 (class Orphan_output_section): Likewise.
15006 (Script_sections::Script_sections): Update for field changes.
15007 (Script_sections::data_segment_align): Set saw_data_segment_align_
15008 and data_segment_align_start_, not data_segment_align_index.
15009 (Script_sections::data_segment_relro_end): Check
15010 saw_data_segment_align_. Use data_segment_align_start_ rather
15011 than data_segment_align_index_.
15012 (Script_sections::place_orphan): Rewrite to use
15013 Orphan_section_placement.
15014
15015 2009-03-17 Ian Lance Taylor <iant@google.com>
15016
15017 * archive.cc (Archive::add_symbols): Check for a version attached
15018 to the symbol name in the archive map.
15019 * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_11.
15020 (ver_test_11_SOURCES, ver_test_11_DEPENDENCIES): Define.
15021 (ver_test_11_LDFLAGS, ver_test_11_LDADD): Define.
15022 (ver_test_11.a): New target.
15023 * testsuite/Makefile.in: Rebuild.
15024
15025 * configure.ac: Check for chsize and posix_fallocate. Replace
15026 ftruncate.
15027 * ftruncate.c: New file, from gnulib.
15028 * output.cc (posix_fallocate): Define dummy version if not
15029 HAVE_POSIX_FALLOCATE.
15030 (Output_file::map): Call posix_fallocate rather than lseek and
15031 write.
15032 * gold.h (ftruncate): Declare if not HAVE_FTRUNCATE.
15033 * configure, Makefile.in, config.in: Rebuild.
15034
15035 2009-03-17 Paul Pluzhnikov <ppluzhnikov@google.com>
15036
15037 * layout.h (Layout::create_note): Add section_name parameter.
15038 * layout.cc (Layout::create_note): Likewise.
15039 (Layout::create_build_id, Layout::create_gold_note): Fix callers.
15040
15041 2009-03-17 Ian Lance Taylor <iant@google.com>
15042
15043 * descriptors.cc: Include "options.h".
15044 (FD_CLOEXEC, O_CLOEXEC): Define if not defined.
15045 (Descriptors::open): Always use O_CLOEXEC when opening a new
15046 descriptor. If we have a plugin, and O_CLOEXEC was not defined,
15047 then set FD_CLOEXEC.
15048
15049 * sparc.cc (class Target_sparc): Add has_got_section.
15050 (Target_sparc::Scan::global): If we see _GLOBAL_OFFSET_TABLE_,
15051 make sure we have a GOT section.
15052
15053 * sparc.cc (optimize_tls_reloc): Recognize R_SPARC_TLS_IE_ADD.
15054 (Target_sparc::Scan::local): Likewise.
15055 (Target_sparc::Scan::global): Likewise.
15056 (Target_sparc::Relocate::relocate): Likewise.
15057 (Target_sparc::Relocate::relocate_tls): Likewise.
15058
15059 * symtab.cc (Symbol_table::define_default_version): New function,
15060 broken out of add_from_object.
15061 (Symbol_table::add_from_object): Call define_default_version.
15062 (Symbol_table::define_special_symbol): Add resolve_oldsym
15063 parameter. Change all callers. If the version for a symbol comes
15064 from a version script, resolve it with the symbol with the same
15065 name with no version. Also add the symbol without a version if
15066 appropriate.
15067 (do_define_in_output_data): If resolving with oldsym, don't delete
15068 sym.
15069 (do_define_in_output_segment): Likewise.
15070 (do_define_as_constant): Likewise.
15071 * symtab.h (class Symbol_table): Update declarations.
15072
15073 2009-03-13 Ian Lance Taylor <iant@google.com>
15074
15075 * readsyms.cc (Read_symbols::incompatible_warning): New function.
15076 (Read_symbols::requeue): New function.
15077 (Read_symbols::do_read_symbols): If make_elf_object fails because
15078 the target type is not configured, and the file was searched for,
15079 issue a warning and retry with the next directory.
15080 (Add_symbols::run): If the file has an incompatible format, and
15081 it was searched for, requeue the Read_symbols task. On error,
15082 release the object.
15083 * readsyms.h (class Read_symbols): Add dirindex_ field. Add
15084 dirindex parameter to constructor. Change all callers. Declare
15085 incompatible_warning and requeue.
15086 (class Add_symbols): Add dirpath_, dirindex_, mapfile_,
15087 input_argument_ and input_group_ fields. Add them to
15088 constructor. Change all callers.
15089 (class Read_script): Add dirindex_ field. Add it to constructor.
15090 Change all callers.
15091 * archive.cc (Archive::setup): Remove input_objects parameter.
15092 Change all callers.
15093 (Archive::get_file_and_offset): Likewise.
15094 (Archive::read_all_symbols): Likewise.
15095 (Archive::read_symbols): Likewise.
15096 (Archive::get_elf_object_for_member): Remove input_objects
15097 parameter. Add punconfigured parameter. Change all callers.
15098 (Archive::add_symbols): Change return type to bool. Check return
15099 value of include_member.
15100 (Archive::include_all_members): Likewise.
15101 (Archive::include_member): Change return type to bool. Return
15102 false if first included object has incompatible target. Set
15103 included_member_ field.
15104 (Add_archive_symbols::run): If add_symbols returns false, requeue
15105 Read_symbols task.
15106 * archive.h (class Archive): Add included_member_ field.
15107 Initialize it in constructor. Add input_file and searched_for
15108 methods. Update declarations.
15109 (class Add_archive_symbols): Add dirpath_, dirindex_, and
15110 input_argument_ fields. Add them to constructor. Change all
15111 callers.
15112 * script.cc: Include "target-select.h".
15113 (class Parser_closure): Add skip_on_incompatible_target_ and
15114 found_incompatible_target_ fields. Add
15115 skip_on_incompatible_target parameter to constructor. Change all
15116 callers. Add methods skip_on_incompatible_target,
15117 clear_skip_on_incompatible_target, found_incompatible_target, and
15118 set_found_incompatible_target.
15119 (read_input_script): Add dirindex parameter. Change all callers.
15120 If parser finds an incompatible target, requeue Read_symbols
15121 task.
15122 (script_set_symbol): Clear skip_on_incompatible_target in
15123 closure.
15124 (script_add_assertion, script_parse_option): Likewise.
15125 (script_start_sections, script_add_phdr): Likewise.
15126 (script_check_output_format): New function.
15127 * script.h (read_input_script): Update declaration.
15128 * script-c.h (script_check_output_format): Declare.
15129 * yyscript.y (file_cmd): Handle OUTPUT_FORMAT.
15130 (ignore_cmd): Remove OUTPUT_FORMAT.
15131 * fileread.cc (Input_file::Input_file): Add explicit this.
15132 (Input_file::will_search_for): New function.
15133 (Input_file::open): Add pindex parameter. Change all callers.
15134 * fileread.h (class Input_file): Add input_file_argument method.
15135 Declare will_search_for. Update declarations.
15136 * object.cc (make_elf_object): Add punconfigured parameter.
15137 Change all callers.
15138 * object.h (class Object): Make input_file public. Add
15139 searched_for method.
15140 (make_elf_object): Update declaration.
15141 * dirsearch.cc (Dirsearch::find): Add pindex parameter. Use it to
15142 restart search.
15143 * dirsearch.h (class Dirsearch): Update declaration.
15144 * options.h (class General_options): Add --warn-search-mismatch.
15145 * parameters.cc (Parameters::is_compatible_target): New function.
15146 * parameters.h (class Parameters): Declare is_compatible_target.
15147 * workqueue.cc (Workqueue::add_blocker): New function.
15148 * workqueue.h (class Workqueue): Declare add_blocker.
15149
15150 * fileread.cc (Input_file::open): Remove options parameter.
15151 Change all callers.
15152 (Input_file::open_binary): Likewise.
15153 * script.cc (read_input_script): Likewise.
15154 * readsyms.h (class Read_symbols): Remove options_ field. Remove
15155 options parameter from constructor. Change all callers.
15156 (class Read_script): Likewise.
15157 * fileread.h (class Input_file): Update declarations.
15158 * script.h (read_input_script): Update declaration.
15159
15160 2009-03-10 Nick Clifton <nickc@redhat.com>
15161
15162 * po/es.po: New Spanish translation.
15163
15164 2009-03-06 Cary Coutant <ccoutant@google.com>
15165
15166 * options.cc (parse_short_option): Keep dash_z from registering itself.
15167
15168 2009-03-03 Ian Lance Taylor <iant@google.com>
15169
15170 PR 9918
15171 * target-reloc.h (relocate_section): Pass output_section to
15172 relocate.
15173 * i386.cc (Target_i386::should_apply_static_reloc): Add
15174 output_section parameter. Change all callers.
15175 (Target_i386::Relocate::relocate): Add output_section parameter.
15176 * x86_64.cc (Target_x86_64::Relocate::relocate): Likewise.
15177 * sparc.cc (Target_sparc::Relocate::relocate): Likewise.
15178 * powerpc.cc (Target_powerpc::Relocate::relocate): Likewise.
15179 * testsuite/two_file_shared.sh: New script.
15180 * testsuite/Makefile.am (check_SCRIPTS): Add two_file_shared.sh.
15181 (check_DATA): Add two_file_shared.dbg.
15182 (two_file_shared.dbg): New target.
15183 * testsuite/Makefile.in: Rebuild.
15184
15185 2009-03-01 Ian Lance Taylor <iant@google.com>
15186
15187 * configure.ac: Check for byteswap.h.
15188 * configure: Rebuild.
15189 * config.in: Rebuild.
15190
15191 2009-03-01 Mikolaj Zalewski <mikolajz@google.com>
15192
15193 * layout.cc (Layout::find_or_add_kept_section): New function.
15194 (Layout::add_comdat): Removed.
15195 * layout.h (struct Kept_section): Move out of class Layout.
15196 Remove trailing underscores from field names. Add group_sections
15197 field. Rename group_ field to is_group. Change all uses.
15198 (class Layout): Declare find_or_add_kept_section, not add_comdat.
15199 * object.cc (Sized_relobj::Sized_relobj): Don't initialize
15200 comdat_groups_ field.
15201 (Sized_relobj::include_section_group): Use
15202 find_or_add_kept_section and Kept_section::group_sections.
15203 (Sized_relobj::include_linkonce_section): Likewise.
15204 * object.cc (class Sized_relobj): Don't define Comdat_group or
15205 Comdat_group_table. Remove find_comdat_group and
15206 add_comdat_group. Remove comdat_groups_ field.
15207 * plugin.cc (include_comdat_group): Use
15208 Layout::find_or_add_kept_section.
15209
15210 2009-02-28 Ian Lance Taylor <iant@google.com>
15211
15212 * README: --gc-sections and map files are now supported. Document
15213 some build requirements.
15214
15215 PR 6992
15216 * symtab.cc (Symbol_table::sized_write_section_symbol): In a
15217 relocatable link set the value of the section symbol to zero.
15218 * object.cc (Sized_relobj::do_finalize_local_symbols): In a
15219 relocatable link don't include the section address in the local
15220 symbol value.
15221
15222 2009-02-27 Ian Lance Taylor <iant@google.com>
15223
15224 PR 6811
15225 * options.h (class Search_directory): Add is_system_directory.
15226 (class General_options): Declare is_in_system_directory.
15227 * options.cc (get_relative_sysroot): Make static.
15228 (get_default_sysroot): Make static.
15229 (General_optoins::is_in_system_directory): New function.
15230 * fileread.cc (Input_file::is_in_system_directory): New function.
15231 * fileread.h (class Input_file): Declare is_in_system_directory.
15232 * object.h (class Object): Add is_in_system_directory.
15233 (class Input_objects): Remove system_library_directory_ field.
15234 * object.cc (Input_objects::add_object): Don't set
15235 system_library_directory_.
15236 (input_objects::found_in_system_library_directory): Remove.
15237 * symtab.cc (Symbol_table::write_globals): Remove input_objects
15238 parameter. Change all callers.
15239 (Symbol_table::sized_write_globals): Likewise.
15240 (Symbol_table::warn_about_undefined_dynobj_symbol): Likewise.
15241 Call Object::is_in_system_directory.
15242 * symtab.h (class Symbol_table): Update declarations.
15243
15244 PR 5990
15245 * descriptors.h (Open_descriptor): Add is_on_stack field.
15246 * descriptors.cc (Descriptors::open): If the descriptor is on the
15247 top of the stack, remove it. Initialize is_on_stack field.
15248 (Descriptors::release): Only add pod to stack if it is not on the
15249 stack already.
15250 (Descriptors::close_some_descriptor): Clear stack_next and
15251 is_on_stack fields.
15252
15253 PR 7091
15254 * output.cc (Output_section::find_starting_output_address): Rename
15255 from starting_output_address; add PADDR parameter; change return
15256 type.
15257 * output.h (class Output_section): Declare
15258 find_starting_output_address instead of starting_output_address.
15259 * object.cc (Sized_relobj::do_finalize_local_symbols): Handle a
15260 section symbol for which we can't find a merge section.
15261
15262 PR 9836
15263 * symtab.cc (Symbol_table::add_from_object): If the visibility is
15264 hidden or internal, force the symbol to be local.
15265 * resolve.cc (Symbol::override_visibility): Define.
15266 (Symbol::override_base): Use override_visibility.
15267 (Symbol_table::resolve): Likewise.
15268 (Symbol::override_base_with_special): Likewise.
15269 (Symbol_table::override_with_special): If the visibility is hidden
15270 or internal, force the symbol to be local.
15271 * symtab.h (class Symbol): Add set_visibility and
15272 override_visibility.
15273 * testsuite/ver_test_1.sh: New file.
15274 * testsuite/Makefile.am (check_SCRIPTS): Add ver_test_1.sh.
15275 (check_DATA): Add ver_test_1.syms.
15276 (ver_test_1.syms): New target.
15277 * testsuite/Makefile.in: Rebuild.
15278
15279 2009-02-25 Cary Coutant <ccoutant@google.com>
15280
15281 * layout.cc (Layout::choose_output_section): Don't rename sections
15282 when using a linker script that has a SECTIONS clause.
15283 * Makefile.in: Regenerate.
15284
15285 * testsuite/Makefile.am (script_test_5.sh): New test case.
15286 * testsuite/Makefile.in: Regenerate.
15287 * testsuite/script_test_5.cc: New file.
15288 * testsuite/script_test_5.sh: New file.
15289 * testsuite/script_test_5.t: New file.
15290
15291 2009-02-13 Rafael Avila de Espindola <espindola@google.com>
15292
15293 * archive.cc (Archive::include_member): Update calls to add_symbols.
15294 * dynobj.cc (Sized_dynobj<size, big_endian>::make_version_map): Add
15295 the Layout argument.
15296 * dynobj.h (do_add_symbols): Add the Layout argument.
15297 * object.cc (Sized_relobj<size, big_endian>::do_add_symbols): Add the
15298 Layout argument.
15299 * object.h (Object::add_symbols): Add the Layout argument.
15300 (Object::do_add_symbols): Add the Layout argument.
15301 (Sized_relobj::do_add_symbols): Add the Layout argument.
15302 * plugin.cc (Sized_pluginobj<size, big_endian>::do_add_symbols):
15303 Unify the two versions.
15304 (Add_plugin_symbols): Remove.
15305 * plugin.h (Pluginobj::add_symbols, Pluginobj::do_add_symbols): Remove.
15306 (Sized_pluginobj::do_add_symbols): Unify the two versions.
15307 (Add_plugin_symbols): Remove.
15308 * readsyms.cc (Read_symbols::do_read_symbols): Update call to
15309 Add_symbols. Use Add_symbols instead of Add_plugin_symbols.
15310 (Add_symbols::run): Make it work with Pulginobj.
15311
15312 2009-02-06 Ian Lance Taylor <iant@google.com>
15313
15314 * object.cc (Sized_relobj::do_layout): Make info message start
15315 with lower case letter.
15316
15317 2009-02-06 Mikolaj Zalewski <mikolajz@google.com>
15318
15319 * binary.cc: Fix file comment.
15320
15321 * options.h (enum Incremental_disposition): Define.
15322 (class General_options): Add new options: --incremental,
15323 --incremental_changed, --incremental_unchanged,
15324 --incremental_unknown. Add incremental_disposition_ and
15325 implicit_incremental_ fields.
15326 (General_options::incremental_disposition): New function.
15327 (class Position_dependent_options): Add incremental_disposition
15328 option.
15329 (Position_dependent_options::copy_from_options): Set incremental
15330 dispositions.
15331 * options.cc (General_options::parse_incremental_changed): New
15332 function.
15333 (General_options::parse_incremental_unchanged): New function.
15334 (General_options::parse_incremental_unknown): New function.
15335 (General_options::General_options): Initialize new fields
15336 incremental_disposition_ and implicit_incremental_.
15337 (General_options::finalize): Check for uasge of --incremental-*
15338 without --incremental.
15339
15340 2009-02-06 Chris Demetriou <cgd@google.com>
15341
15342 * gold.h (gold_undefined_symbol): Change to take only a Symbol
15343 pointer and to report location as the file name associated with
15344 the symbol.
15345 (gold_undefined_symbol_at_location): New function to replace the
15346 old gold_undefined_symbol functionality.
15347 * target-reloc.h (relocate_section): Update to use
15348 gold_undefined_symbol_at_location.
15349 * symtab.cc (Symbol_table::warn_about_undefined_dynobj_symbol):
15350 Call gold_undefined_symbol function rather than gold_error.
15351 * errors.h (Errors::undefined_symbol): Take location as a
15352 string, rather than calculating it from a relocation.
15353 * errors.cc (Errors::fatal): Print "fatal error:" before the
15354 formatted message.
15355 (Errors::error, Errors::error_at_location): Print "error: "
15356 before the formatted message.
15357 (Errors::undefined_symbol): Take location as a string, rather
15358 than calculating it from a relocation.
15359 (gold_undefined_symbol_at_location): New function akin to
15360 old gold_undefined_symbol, calculates location from relocation.
15361 (gold_undefined_symbol): Change to take only a Symbol pointer
15362 and to report location as the file name associated with the symbol.
15363 * testsuite/debug_msg.sh: Update for changed error messages.
15364 * testsuite/undef_symbol.sh: Likewise.
15365
15366 2009-02-04 Duncan Sands <baldrick@free.fr>
15367
15368 PR 9812
15369 * reduced_debug_output.h
15370 (Output_reduced_debug_abbrev_section::failed): Use format for
15371 gold_warning.
15372 (Output_reduced_debug_info_section::faild): Likewise.
15373
15374 2009-01-31 Mikolaj Zalewski <mikolajz@google.com>
15375
15376 * script.cc (Lazy_demangler): New class.
15377 (Version_script_info::get_symbol_version_helper): Demangle a
15378 symbol only once.
15379
15380 2009-01-29 Cary Coutant <ccoutant@google.com>
15381
15382 * i386.cc (Target_i386::Relocate::relocate): Recognize non-PIC calls
15383 to __tls_get_addr.
15384 * x86_64.cc (Target_x86_64::Relocate::relocate): Likewise.
15385
15386 2009-01-28 Ian Lance Taylor <iant@google.com>
15387
15388 * version.cc (version_string): Bump to 1.9.
15389
15390 * gold.h: Include <cstring> and <stdint.h>.
15391 * version.cc: Include <cstdio>.
15392 * object.cc (Sized_relobj::do_layout): Initialize gc_sd to avoid a
15393 warning.
15394 * reduced_debug_output.cc (insert_into_vector): Rename from
15395 Insert_into_vector; change all callers. Use Swap_unaligned to
15396 avoid aliasing issue; remove union since it is unnecessary.
15397
15398 2009-01-27 Sriraman Tallam <tmsriram@google.com>
15399
15400 * Makefile.am (CCFILES): Add gc.cc.
15401 (HFILES): Add gc.h.
15402 * Makefile.in: Regenerate.
15403 * gold.cc (Gc_runner): New class.
15404 (queue_initial_tasks): Call garbage collection related tasks
15405 when corresponding options are invoked.
15406 (queue_middle_gc_tasks): New function.
15407 (queue_middle_tasks): Reorder tasks to allow relocs to be read and
15408 processed early before laying out sections during garbage collection.
15409 * gold.h (queue_middle_gc_tasks): New function.
15410 (is_prefix_of): Move from "layout.cc".
15411 * i386.cc (Target_i386::gc_process_relocs): New function.
15412 * layout.cc (is_prefix_of): Remove. Move to "gold.h"
15413 * main.cc (main): Create object of class "Garbage_collection".
15414 * object.cc (Relobj::copy_symbols_data): New function.
15415 (Relobj::is_section_name_included): New function.
15416 (Sized_relobj::do_layout): Allow this function to be called twice
15417 during garbage collection and defer layout of section during the
15418 first call.
15419 * object.h (Relobj::get_symbols_data): New function.
15420 (Relobj::is_section_name_included): New function.
15421 (Relobj::copy_symbols_data): New function.
15422 (Relobj::set_symbols_data): New function.
15423 (Relobj::get_relocs_data): New function.
15424 (Relobj::set_relocs_data): New function.
15425 (Relobj::is_output_section_offset_invalid): New pure virtual function.
15426 (Relobj::gc_process_relocs): New function.
15427 (Relobj::do_gc_process_relocs): New pure virtual function.
15428 (Relobj::sd_): New data member.
15429 (Sized_relobj::is_output_section_offset_invalid): New function.
15430 (Sized_relobj::do_gc_process_relocs): New function.
15431 * options.h (General_options::gc_sections): Modify to not be a no-op.
15432 (General_options::print_gc_sections): New option.
15433 * plugin.cc (Plugin_finish::run): Remove function call to
15434 Plugin_manager::layout_deferred_objects. Move it to "gold.cc".
15435 * powerpc.cc (Target_powerpc::gc_process_relocs): New function.
15436 * reloc.cc (Read_relocs::run): Add task to process relocs and
15437 determine unreferenced sections when doing garbage collection.
15438 (Gc_process_relocs): New class.
15439 (Sized_relobj::do_gc_process_relocs): New function.
15440 (Sized_relobj::do_scan_relocs): Don't try to scan the relocs for
15441 sections that are garbage collected.
15442 * reloc.h (Gc_process_relocs): New class.
15443 * sparc.cc (Target_sparc::gc_process_relocs): New function.
15444 * symtab.cc (Symbol::should_add_dynsym_entry): Do not add entries for
15445 symbols whose corresponding sections are garbage collected.
15446 (Symbol_table::Symbol_table): Add new parameter for the garbage
15447 collection object.
15448 (Symbol_table::gc_mark_undef_symbols): New function.
15449 (Symbol_table::gc_mark_symbol_for_shlib): New function.
15450 (Symbol_table::gc_mark_dyn_syms): New function.
15451 (Symbol_table::resolve): Do not treat symbols seen in dynamic objects
15452 as garbage.
15453 (Symbol_table::add_from_object): Likewise.
15454 (Symbol_table::add_from_relobj): When building shared objects, do not
15455 treat externally visible symbols as garbage.
15456 (Symbol_table::sized_finalize_symbol): Do not check dynamic symbol
15457 table information for static and relocatable links.
15458 * symtab.h (Symbol_table::set_gc): New function.
15459 (Symbol_table::gc): New function.
15460 (Symbol_table::gc_mark_undef_symbols): New function.
15461 (Symbol_table::gc_mark_symbol_for_shlib): New function.
15462 (Symbol_table::gc_mark_dyn_syms): New function.
15463 (Symbol_table::gc_): New data member.
15464 * target.h (Sized_target::gc_process_relocs): New pure virtual
15465 function.
15466 * x86_64.cc (Target_x86_64::gc_process_relocs): New function.
15467 * testsuite/testfile.cc (Target_test::gc_process_relocs): New function.
15468
15469 2009-01-20 Chris Faylor <me.sourceware@sourceware.org>
15470
15471 * options.h (General_options::gc_sections): Define as a no-op for now.
15472 (General_options::no_keep_memory): Ditto.
15473 (General_options::Bshareable): Define.
15474 * options.cc (General_options::finalize): Honor -Bshareable.
15475
15476 2009-01-20 Andreas Schwab <schwab@suse.de>
15477
15478 * powerpc.cc (Powerpc_relocate_functions::rel16_ha): Don't try to
15479 read the value in the contents, since we don't use it. Use the
15480 template endianness when writing.
15481 (Relocate::relocate): Use it for R_PPC_REL16_HA.
15482
15483 2009-01-19 Andreas Schwab <schwab@suse.de>
15484
15485 * configure.tgt (powerpc64-*): Fix targ_obj.
15486
15487 2009-01-15 Ian Lance Taylor <iant@google.com>
15488
15489 * object.cc (Sized_relobj::write_local_symbols): Don't write out
15490 local symbols when stripping all symbols.
15491
15492 2009-01-14 Cary Coutant <ccoutant@google.com>
15493
15494 * output.cc (Output_reloc): Add explicit instantiations.
15495
15496 2009-01-14 Cary Coutant <ccoutant@google.com>
15497
15498 * archive.cc (Archive::get_elf_object_for_member): Remove call
15499 to File_read::claim_for_plugin.
15500 * descriptors.cc (Descriptors::open): Remove reference to
15501 is_claimed.
15502 (Descriptors::claim_for_plugin): Remove.
15503 * descriptors.h (Descriptors::claim_for_plugin): Remove.
15504 (Descriptors::is_claimed): Remove.
15505 (claim_descriptor_for_plugin): Remove.
15506 * fileread.cc (File_read::claim_for_plugin): Remove.
15507 * fileread.h (File_read::claim_for_plugin): Remove.
15508 (File_read::descriptor): Reopen descriptor if necessary.
15509 * plugin.cc (Plugin::load): Add two new APIs to transfer vector.
15510 (Plugin_manager::all_symbols_read): Add task parameter. Change
15511 all callers.
15512 (Plugin_manager::get_input_file): New function.
15513 (Plugin_manager::release_input_file): New function.
15514 (Pluginobj::Pluginobj): Add filesize parameter and initialize
15515 corresponding data member.
15516 (Sized_pluginobj::Sized_pluginobj): Add filesize parameter
15517 and pass to base constructor. Change all callers.
15518 (get_input_file, release_input_file): New functions.
15519 (make_sized_plugin_object): Add filesize parameter. Change all callers.
15520 * plugin.h (Plugin_manager::Plugin_manager): Initialize task_ member.
15521 (Plugin_manager::all_symbols_read): Add task parameter.
15522 (Plugin_manager::get_input_file): New function.
15523 (Plugin_manager::release_input_file): New function.
15524 (Plugin_manager::task_): New data member.
15525 (Pluginobj::Pluginobj): Add filesize parameter.
15526 (Pluginobj::filename): New function.
15527 (Pluginobj::descriptor): New function.
15528 (Pluginobj::filesize): New function.
15529 (Pluginobj::filesize_): New data member.
15530 (Sized_pluginobj::Sized_pluginobj): Add filesize parameter.
15531 * readsyms.cc (Read_symbols::do_read_symbols): Remove call to
15532 File_read::claim_for_plugin; use Object::unlock to unlock the file.
15533
15534 * testsuite/Makefile.am (plugin_test_4): New test case for plugins
15535 with archive libraries.
15536 * testsuite/Makefile.in: Regenerate.
15537 * testsuite/plugin_test.c (struct sym_info): New type.
15538 (get_input_file, release_input_file): New static variables.
15539 (onload): Capture new transfer vector entries.
15540 (claim_file_hook): Stop reading at end of file according to filesize.
15541 Factor out parsing of readelf output into separate function.
15542 (all_symbols_read_hook): Exercise get_input_file and release_input_file
15543 APIs and get the source file name from the symbol table. Convert
15544 source file name to corresponding object file name. Print info
15545 message when adding new input files.
15546 (parse_readelf_line): New function.
15547 * testsuite/plugin_test_1.sh: Add checks for new info messages.
15548 * testsuite/plugin_test_2.sh: Likewise.
15549 * testsuite/plugin_test_3.sh: Likewise.
15550 * testsuite/plugin_test_4.sh: New test case.
15551
15552 2009-01-07 Ian Lance Taylor <iant@google.com>
15553
15554 * version.cc (version_string): Bump to 1.8.
15555
15556 2008-12-23 Cary Coutant <ccoutant@google.com>
15557
15558 * gold.cc (gold_exit): Call plugin cleanup handlers on exit.
15559 * plugin.cc (Plugin_manager::finish): Rename as
15560 layout_deferred_objects. Move cleanup to separate function.
15561 (Plugin_manager::cleanup): New function.
15562 (Plugin_finish::run): Call layout_deferred_objects and cleanup
15563 separately.
15564 * plugin.h (Plugin_manager::finish): Rename as
15565 layout_deferred_objects.
15566 (Plugin_manager::cleanup): New function.
15567 (Plugin_manager::cleanup_done): New field.
15568
15569 2008-12-23 Cary Coutant <ccoutant@google.com>
15570
15571 * plugin.cc (is_visible_from_outside): New function.
15572 (Pluginobj::get_symbol_resolution_info): Call is_visible_from_outside
15573 so we don't return "IR only" status for exported symbols or -r links.
15574
15575 * testsuite/Makefile.am (plugin_test_3): New test case.
15576 * testsuite/Makefile.in: Regenerate.
15577 * testsuite/plugin_test_3.sh: New file.
15578
15579 2008-12-22 Cary Coutant <ccoutant@google.com>
15580
15581 * object.cc (Sized_relobj::layout_section): New function.
15582 (Sized_relobj::do_layout): Defer layout of input sections until after
15583 plugin has provided replacement files.
15584 (Sized_relobj::do_layout_deferred_sections): New function.
15585 * object.h (Relobj::set_section_offset): Remove virtual keyword.
15586 (Relobj::layout_deferred_sections): New function.
15587 (Relobj::do_layout_deferred_sections): New function.
15588 (Sized_relobj::do_layout_deferred_sections): New function.
15589 (Sized_relobj::layout_section): New function.
15590 (Sized_relobj::Deferred_layout): New structure.
15591 (Sized_relobj::deferred_layout_): New field.
15592 * plugin.cc (Plugin_manager::finish): Renamed, was cleanup.
15593 Change all callers. Layout deferred sections.
15594 (class Plugin_finish): Renamed, was Plugin_cleanup. Change all
15595 references.
15596 (Plugin_hook::run): Move code from do_plugin_hook inline.
15597 (Plugin_hook::do_plugin_hook): Remove.
15598 * plugin.h (Plugin_manager::Plugin_manager): Add missing initializers.
15599 (Plugin_manager::finish): Renamed, was cleanup.
15600 (Plugin_manager::should_defer_layout): New function.
15601 (Plugin_manager::add_deferred_layout_object): New function.
15602 (Plugin_manager::Deferred_layout_list): New type.
15603 (Plugin_manager::deferred_layout_objects_): New field.
15604 (Plugin_hook::do_plugin_hook): Remove.
15605
15606 2008-12-17 Ian Lance Taylor <iant@google.com>
15607
15608 * options.h (class General_options): Add --no case for
15609 --export-dynamic.
15610
15611 2008-12-16 Cary Coutant <ccoutant@google.com>
15612
15613 * plugin.cc (Plugin::load): Move LDPT_MESSAGE to front of transfer
15614 vector.
15615 (Plugin_manager::claim_file): Create plugin object even if
15616 plugin did not call the add_symbols callback.
15617 (Plugin_obj::get_symbol_resolution_info): Guard against plugin
15618 asking for more symbols than were added.
15619 * testsuite/Makefile.am (plugin_test_1): Add test case with
15620 no global symbols.
15621 (empty.syms): New target.
15622 * testsuite/Makefile.in: Regenerate.
15623 * testsuite/plugin_test.c (claim_file_hook): Add new debug
15624 message. Don't call add_symbols if no globals.
15625 (all_symbols_read_hook): Don't provide replacement for empty
15626 claimed file.
15627
15628 2008-12-12 Ian Lance Taylor <iant@google.com>
15629
15630 * target-reloc.h (Default_scan_relocatable_relocs): Only discard
15631 r_type == 0 for a local symbol with r_sym == 0.
15632 (scan_relocatable_relocs): Pass r_sym to
15633 local_non_section_strategy.
15634 * reloc.cc (Emit_relocs_strategy::local_non_section_strategy): Add
15635 r_sym parameter.
15636
15637 * configure.ac: Update test for TLS descriptors: they are
15638 supported as of glibc 2.9.
15639 * configure: Rebuild.
15640
15641 2008-12-11 Ian Lance Taylor <iant@google.com>
15642
15643 PR 7091
15644 * target-reloc.h (Default_scan_relocatable_relocs): For each
15645 function, map r_type == 0 to RELOC_DISCARD.
15646
15647 2008-12-10 Cary Coutant <ccoutant@google.com>
15648
15649 * layout.cc (Layout::add_comdat): Allow COMDAT group from a replacement
15650 object to override a kept COMDAT group from a plugin object.
15651
15652 2008-12-09 Ian Lance Taylor <iant@google.com>
15653
15654 PR 7088
15655 * yyscript.y (file_cmd): Handle INPUT.
15656
15657 * testsuite/initpri1.c: Change all declarations to be full
15658 prototypes by adding void, to avoid compiler warnings.
15659
15660 2008-12-05 Rafael Avila de Espindola <espindola@google.com>
15661
15662 * options.cc (General_options::parse_plugin_opt): New.
15663 (General_options::add_plugin): The argument now is just the filename.
15664 (General_options::add_plugin_option): New.
15665 * options.h (plugin_opt): New.
15666 (add_plugin): Change argument name.
15667 (add_plugin_option): New.
15668 * plugin.cc (Plugin::load): Don't parse the plugin option.
15669 * plugin.h (Plugin::Plugin): Rename argument. Init filename_.
15670 (Plugin::add_option): New.
15671 (Plugin::args_): Change type.
15672 (Plugin::filename_): New.
15673 (Plugin_manager::add_plugin_option): New.
15674 * testsuite/Makefile.am (plugin_test_1): Use new syntax.
15675 * testsuite/Makefile.in: Regenerate.
15676
15677 2008-12-05 Cary Coutant <ccoutant@google.com>
15678
15679 * layout.cc (Layout::include_section): Check for SHF_EXCLUDE.
15680 Handle --strip-lto-sections option.
15681 * options.h (strip_lto_sections): New option.
15682
15683 2008-12-01 Cary Coutant <ccoutant@google.com>
15684
15685 * plugin.cc (ld_plugin_message): Change format parameter to const.
15686 Fix mismatch between new[] and delete.
15687
15688 2008-11-14 Cary Coutant <ccoutant@google.com>
15689
15690 * reloc.cc (Sized_relobj::do_read_relocs): Use constant invalid_address
15691 instead of -1U.
15692
15693 2008-11-05 Craig Silverstein <csilvers@google.com>
15694
15695 * options.cc (General_options::parse_dynamic_list): New function.
15696 * options.h (General_options): New flags dynamic_list,
15697 dynamic_list_data, dynamic_list_cpp_new, and
15698 dynamic_list_cpp_typeinfo. New variable dynamic_list_.
15699 (General_options::in_dynamic_list): New function.
15700 * script.cc (Lex::Mode): New enum DYNAMIC_LIST.
15701 (Lex::can_start_name): Add support for DYNAMIC_LIST mode.
15702 (Lex::can_continue_name): Likewise.
15703 (yylex): Likewise.
15704 (read_script_file): New parameter script_options.
15705 (read_dynamic_list): New function.
15706 (Script_options::define_dynamic_list): New function.
15707 (dynamic_list_keyword_parsecodes): New variable.
15708 (dynamic_list_keywords): New variable.
15709 * script.h (Script_options::define_dynamic_list): New function
15710 prototype.
15711 (read_dynamic_list): New function prototype.
15712 * symtab.cc (strprefix): New macro.
15713 (Symbol::should_add_dynsym_entry): Support dynamic_list,
15714 dynamic_list_data, dynamic_list_cpp_new, and
15715 dynamic_list_cpp_typeinfo.
15716 * yyscript.y (PARSING_DYNAMIC_LIST): New token.
15717 (dynamic_list_expr): New rule.
15718 (dynamic_list_nodes): Likewise.
15719 (dynamic_list_node): Likewise.
15720 * testsuite/Makefile.am (dynamic_list): New test.
15721 * testsuite/Makefile.in: Regenerated.
15722 * testsuite/dynamic_list.t: New file.
15723 * testsuite/dynamic_list.sh: New file.
15724
15725 2008-11-05 Craig Silverstein <csilvers@google.com>
15726
15727 * testsuite/tls_test_c.c: Add prototype for t11 and t11_last.
15728 * testsuite/tls_test_c.c (t11): Add explicit "void" to prototype.
15729 (t11_last): Likewise.
15730 * testsuite/ver_test_6.c (main): Likewise.
15731
15732 2008-10-07 Cary Coutant <ccoutant@google.com>
15733
15734 * options.c (General_options::finalize): Add check for -static and
15735 -shared.
15736 * gold.cc (queue_middle_tasks): Assert that list of dynamic objects
15737 is not empty.
15738
15739 2008-10-02 Cary Coutant <ccoutant@google.com>
15740
15741 * plugin.cc (make_sized_plugin_object): Fix conditional
15742 compilation to work when not all targets are enabled.
15743
15744 2008-09-29 Cary Coutant <ccoutant@google.com>
15745
15746 * archive.cc (Archive::get_file_and_offset): Use filename instead
15747 of name to get library path.
15748 (Archive::include_member): Unlock external member of a thin archive.
15749
15750 * testsuite/Makefile.am (TEST_AR): New variable.
15751 (thin_archive_test_1): New test.
15752 (thin_archive_test_2): New test.
15753 * testsuite/Makefile.in: Regenerate.
15754 * testsuite/thin_archive_main.cc: New file.
15755 * testsuite/thin_archive_test_1.cc: New file.
15756 * testsuite/thin_archive_test_2.cc: New file.
15757 * testsuite/thin_archive_test_3.cc: New file.
15758 * testsuite/thin_archive_test_4.cc: New file.
15759
15760 2008-09-29 Cary Coutant <ccoutant@google.com>
15761
15762 * mapfile.cc (Mapfile::print_input_section): Change -1U to -1ULL.
15763 * object.cc (Sized_relobj::do_layout): Use constant invalid_address
15764 instead of -1U.
15765 (Sized_relobj::do_finalize_local_symbols): Likewise.
15766 (Sized_relobj::map_to_kept_section): Likewise.
15767 * object.h (Sized_relobj::invalid_address): New constant.
15768 (Sized_relobj::do_output_section_offset): Check for invalid_address
15769 and return -1ULL.
15770 * output.cc (Output_reloc::local_section_offset): Use constant
15771 invalid_address instead of -1U.
15772 (Output_reloc::get_address): Likewise.
15773 (Output_section::output_address): Change -1U to -1ULL.
15774 * output.h (Output_reloc::invalid_address): New constant.
15775 * reloc.cc (Sized_relobj::write_sections): Use constant
15776 invalid_address instead of -1U.
15777 (Sized_relobj::relocate_sections): Likewise.
15778 * symtab.cc (Symbol_table::sized_finalize_symbol): Handle symbol
15779 values for merge sections.
15780 * target-reloc.h (relocate_for_relocatable): Use constant
15781 invalid_address instead of -1U.
15782
15783 2008-09-19 Cary Coutant <ccoutant@google.com>
15784
15785 Add plugin functionality for link-time optimization (LTO).
15786 * configure.ac (plugins): Add --enable-plugins option.
15787 * configure: Regenerate.
15788 * config.in: Regenerate.
15789 * Makefile.am (LIBDL): New variable.
15790 (CCFILES): Add plugin.cc.
15791 (HFILES): Add plugin.h.
15792 (ldadd_var): Add LIBDL.
15793 * Makefile.in: Regenerate.
15794
15795 * archive.cc: Include "plugin.h".
15796 (Archive::setup): Don't preread archive symbols when using a plugin.
15797 (Archive::get_file_and_offset): Add memsize parameter. Change callers.
15798 (Archive::get_elf_object_for_member): Call plugin hooks for claiming
15799 files.
15800 (Archive::include_member): Add symbols from plugin objects.
15801 * archive.h (Archive::get_file_and_offset): Add memsize parameter.
15802 * descriptors.cc (Descriptors::open): Check for file descriptors
15803 abandoned by plugins.
15804 (Descriptors::claim_for_plugin): New function.
15805 * descriptors.h (Descriptors::claim_for_plugin): New function.
15806 (Open_descriptor::is_claimed): New field.
15807 (claim_descriptor_for_plugin): New function.
15808 * fileread.cc (File_read::claim_for_plugin): New function.
15809 * fileread.h (File_read::claim_for_plugin): New function.
15810 (File_read::descriptor): New function.
15811 * gold.cc: Include "plugin.h".
15812 (queue_initial_tasks): Add task to call plugin hooks for generating
15813 new object files.
15814 * main.cc: Include "plugin.h".
15815 (main): Load plugin libraries.
15816 * object.h (Pluginobj): Declare.
15817 (Object::pluginobj): New function.
15818 (Object::do_pluginobj): New function.
15819 (Object::set_target): New function.
15820 * options.cc: Include "plugin.h".
15821 (General_options::parse_plugin): New function.
15822 (General_options::General_options): Initialize plugins_ field.
15823 (General_options::add_plugin): New function.
15824 * options.h (Plugin_manager): Declare.
15825 (General_options): Add --plugin option.
15826 (General_options::has_plugins): New function.
15827 (General_options::plugins): New function.
15828 (General_options::add_plugin): New function.
15829 (General_options::plugins_): New field.
15830 * plugin.cc: New file.
15831 * plugin.h: New file.
15832 * readsyms.cc: Include "plugin.h".
15833 (Read_symbols::do_read_symbols): Check for archive before checking
15834 for ELF file. Call plugin hooks to claim files.
15835 * resolve.cc (Symbol_table::resolve): Record when symbol is referenced
15836 from a real object file; force override when processing replacement
15837 files.
15838 * symtab.cc (Symbol::init_fields): Initialize in_real_elf_ field.
15839 (Symbol::init_base_object): Likewise.
15840 (Symbol::init_base_output_data): Likewise.
15841 (Symbol::init_base_output_segment): Likewise.
15842 (Symbol::init_base_constant): Likewise.
15843 (Symbol::init_base_undefined): Likewise.
15844 (Symbol::output_section): Assert that object is not a plugin.
15845 (Symbol_table::add_from_pluginobj): New function.
15846 (Symbol_table::sized_finalize_symbol): Treat symbols from plugins as
15847 undefined.
15848 (Symbol_table::sized_write_globals): Likewise.
15849 (Symbol_table::add_from_pluginobj): Instantiate template.
15850 * symtab.h (Sized_pluginobj): Declare.
15851 (Symbol::in_real_elf): New function.
15852 (Symbol::set_in_real_elf): New function.
15853 (Symbol::in_real_elf_): New field.
15854 (Symbol_table::add_from_pluginobj): New function.
15855
15856 * testsuite/Makefile.am (AM_CFLAGS): New variable.
15857 (LIBDL): New variable.
15858 (LDADD): Add LIBDL.
15859 (check_PROGRAMS): Add plugin_test_1 and plugin_test_2.
15860 (check_SCRIPTS): Add plugin_test_1.sh and plugin_test_2.sh.
15861 (check_DATA): Add plugin_test_1.err and plugin_test_2.err.
15862 (MOSTLYCLEANFILES): Likewise.
15863 * testsuite/Makefile.in: Regenerate.
15864 * testsuite/plugin_test.c: New file.
15865 * testsuite/plugin_test_1.sh: New file.
15866 * testsuite/plugin_test_2.sh: New file.
15867
15868 2008-09-16 Ian Lance Taylor <iant@google.com>
15869
15870 * target-reloc.h (relocate_section): Check whether a symbol is
15871 defined by the ABI before reporting an undefined symbol error.
15872 * target.h (Target::is_defined_by_abi): Make parameter const.
15873 (Target::do_is_defined_by_abi): Likewise.
15874 * i386.cc (Target_i386::do_is_defined_by_abi): Likewise.
15875 * powerpc.cc (Target_powerpc::do_is_defined_by_abi): Likewise.
15876 * sparc.cc (Target_sparc::do_is_defined_by_abi): Likewise.
15877 * x86_64.cc (Target_x86_64::do_is_defined_by_abi): Likewise.
15878 * testsuite/Makefile.am (tls_test_shared.so): Add -Wl,-z,defs.
15879 * testsuite/Makefile.in: Rebuild.
15880
15881 * fileread.cc (make_view): Add casts to avoid warning.
15882
15883 2008-09-16 Alexandre Oliva <aoliva@redhat.com>
15884
15885 * i386.cc (Target_i386::define_tls_base_symbol): Update comments.
15886 * x86_64.cc (Target_x86_64::define_tls_base_symbol): Likewise.
15887
15888 2008-09-16 Alexandre Oliva <aoliva@redhat.com>
15889
15890 * options.h (General_options::output_is_executable): New.
15891 (General_options::output_is_pie): New.
15892 * i386.cc (Target_i386::define_tls_base_symbol): Use SEGMENT_START
15893 for shared libraries.
15894 * x86_64.cc (Target_x86_64::define_tls_base_symbol): Likewise.
15895
15896 2008-09-11 Chris Demetriou <cgd@google.com>
15897
15898 * options.h (origin): New -z option.
15899 * layout.cc (Layout:finish_dynamic_section): If "-z origin"
15900 is specified, set DF_ORIGIN in DT_FLAGS and set DF_1_ORIGIN
15901 in DT_FLAGS_1.
15902
15903 2008-09-05 Cary Coutant <ccoutant@google.com>
15904
15905 * fileread.cc (File_read::make_view): Add check for attempt to map
15906 beyond end of file.
15907
15908 2008-09-05 Cary Coutant <ccoutant@google.com>
15909
15910 * symtab.cc (Symbol_table::add_from_dynobj): Fix typos in
15911 explicit instantiations.
15912
15913 2008-08-28 Kris Van Hees <kris.van.hees@oracle.com>
15914
15915 PR gold/6858
15916 * options.cc (General_options::finalize): Allow undefined symbols
15917 in shlibs if linking -shared.
15918
15919 PR gold/6859
15920 * symtab.cc (Symbol::init_base_undefined): Mark explicitly undefined
15921 symbols as not needing a dynsym entry.
15922
15923 2008-08-20 Craig Silverstein <csilvers@google.com>
15924
15925 * fileread.cc (File_read::open): Do not lock the file unless it
15926 was successfully opened.
15927
15928 2008-08-14 Cary Coutant <ccoutant@google.com>
15929
15930 * x86_64.cc (Target_x86_64::Relocate::relocat_tls):
15931 Use addend for DTPOFF32, DTPOFF64, and TPOFF32 relocs.
15932 * testsuite/tls_test.cc (struct int128): 128-bit struct
15933 for testing TLS relocs with non-zero addend.
15934 (v12): New TLS variable.
15935 (t12): New test.
15936 (t_last): Add check for v12.
15937 * testsuite/tls_test.h (t12): New function.
15938 * testsuite/tls_test_main.cc (thread_routine): Call new test.
15939
15940 2008-08-13 Ian Lance Taylor <iant@google.com>
15941
15942 * layout.cc (Layout::attach_allocated_section_to_segment): Don't
15943 set tls_segment_ or relro_segment_.
15944 (Layout::make_output_segment): Set tls_segment_ and relro_segment_
15945 when appropriate.
15946 * output.h (Output_section::clear_is_relro): New function.
15947 * output.cc (Output_segment::add_output_section): Handle SHF_TLS
15948 sections specially even when output_data_ is empty.
15949 (Output_segment::maximum_alignment): When first section is relro,
15950 only force alignment for PT_LOAD segments.
15951 * script.cc (script_data_segment_align): New function.
15952 (script_data_segment_relro_end): New function.
15953 * script-c.h (script_data_segment_align): Declare.
15954 (script_data_segment_relro_end): Declare.
15955 * script-sections.h (class Script_sections): Declare
15956 data_segment_align and data_segment_relro_end. Add fields
15957 segment_align_index_ and saw_relro_end_.
15958 * script-sections.cc (class Sections_element): Add set_is_relro
15959 virtual function. Add new bool* parameter to place_orphan_here.
15960 Add get_output_section virtual function.
15961 (class Output_section_definition): Add set_is_relro. Add new
15962 bool* parameter to place_orphan_here. Add get_output_section.
15963 Add is_relro_ field.
15964 (Output_section_definition::Output_section_definition): Initialize
15965 evaluated_address_, evaluated_load_address, evaluated_addralign_,
15966 and is_relro_ fields.
15967 (Output_section_definition::place_orphan_here): Add is_relro
15968 parameter.
15969 (Output_section_definition::set_section_addresses): Set relro for
15970 output section.
15971 (Output_section_definition::alternate_constraint): Likewise.
15972 (class Orphan_output_section): Add new bool* parameter to
15973 place_orphan_here. Add get_output_section.
15974 (Orphan_output_section::place_orphan_here): Add is_relro
15975 parameter.
15976 (Script_sections::Script_sections): Initialize
15977 data_segment_align_index_ and saw_relro_end_.
15978 (Script_sections::data_segment_align): New function.
15979 (Script_sections::data_segment_relro_end): New function.
15980 (Script_sections::place_orphan): Set or clear is_relro.
15981 (Script_sections::set_section_addresses): Force alignment of first
15982 TLS section.
15983 * yyscript.y (exp): Call script_data_segment_align and
15984 script_data_segment_relro_end.
15985 * testsuite/relro_script_test.t: New file.
15986 * testsuite/relro_test.cc (using_script): Declare.
15987 (t1, t2): Test using_script.
15988 * testsuite/Makefile.am (check_PROGRAMS): Add relro_script_test.
15989 (relro_script_test_SOURCES): Define.
15990 (relro_script_test_DEPENDENCIES): Define.
15991 (relro_script_test_LDFLAGS): Define.
15992 (relro_script_test_LDADD): Define.
15993 (relro_script_test.so): New target.
15994 * testsuite/Makefile.in: Rebuild.
15995
15996 2008-08-06 Cary Coutant <ccoutant@google.com>
15997
15998 * archive.cc (Archive::total_archives, Archive::total_members)
15999 (Archive::total_members_loaded): New variables.
16000 (Archive::setup): Add parameter. Add option to preread
16001 archive symbols.
16002 (Archive::read_armap): Add counter.
16003 (Archive::get_file_and_offset): New function.
16004 (Archive::get_elf_object_for_member): New function.
16005 (Archive::read_all_symbols): New function.
16006 (Archive::read_symbols): New function.
16007 (Archive::add_symbols): Add counters.
16008 (Archive::include_all_members): Use armap to find members if it's
16009 already built.
16010 (Archive::include_member): Skip reading symbols if already read.
16011 Factored code into Archive::get_file_and_offset and
16012 Archive::get_elf_object_for_member. Changed call to
16013 Mapfile::report_include_archive_member.
16014 (Archive::print_stats): New function.
16015 * archive.h: Declare Object and Read_symbols_data classes.
16016 (Archive::Archive): Add initializers for new members.
16017 (Archive::setup): Add parameter.
16018 (Archive::print_stats): New function.
16019 (Archive::total_archives, Archive::total_members)
16020 (Archive::total_members_loaded): New variables.
16021 (Archive::get_file_and_offset): New function.
16022 (Archive::get_elf_object_for_member): New function.
16023 (Archive::read_all_symbols): New function.
16024 (Archive::read_symbols): New function.
16025 (Archive::Archive_member): New class.
16026 (Archive::members_): New member.
16027 (Archive::num_members_): New member.
16028 * main.cc: Include archive.h.
16029 (main): Call Archive::print_stats.
16030 * mapfile.cc (Mapfile::report_include_archive_member): Delete
16031 archive parameter; member_name is now the fully-decorated name.
16032 * mapfile.h (Mapfile::report_include_archive_member): Likewise.
16033 * options.h: (General_options): Add --preread-archive-symbols option.
16034 * readsyms.cc (Read_symbols::do_read_symbols): Change call to
16035 Archive::setup.
16036
16037 2008-08-04 Ian Lance Taylor <iant@google.com>
16038
16039 * symtab.h (Symbol::use_plt_offset): New function.
16040 * i386.cc (Relocate::relocate): Call Symbol::use_plt_offset.
16041 * powerpc.cc (Relocate::relocate): Likewise.
16042 * sparc.cc (Relocate::relocate): Likewise.
16043 * x86_64.cc (Relocate::relocate): Likewise.
16044 * testsuite/weak_plt.sh: New test.
16045 * testsuite/weak_plt_main.cc: New test.
16046 * testsuite/weak_plt_shared.cc: New test.
16047 * testsuite/Makefile.am (check_SCRIPTS): Add weak_plt.sh.
16048 (check_PROGRAMS): Add weak_plt.
16049 (check_DATA): Add weak_plt_shared.so.
16050 (weak_plt_main_pic.o, weak_plt): New targets.
16051 (weak_plt_shared_pic.o, weak_plt_shared.so): New targets.
16052 * testsuite/Makefile.in: Rebuild.
16053
16054 * testsuite/Makefile.am (weak_alias_test_1.so): Depend upon
16055 gcctestdir/ld.
16056 (weak_alias_test_2.so, weak_alias_test_4.so): Likewise.
16057 * testsuite/Makefile.in: Rebuild.
16058
16059 2008-08-04 Alan Modra <amodra@bigpond.net.au>
16060
16061 * Makefile.am (POTFILES.in): Set LC_ALL=C.
16062 * Makefile.in: Regenerate.
16063 * po/POTFILES.in: Regenerate.
16064
16065 2008-07-29 Ian Lance Taylor <iant@google.com>
16066
16067 * script.cc (Script_options::finalize_symbols): Finalize SECTIONS
16068 symbols before other symbols.
16069 * testsuite/script_test_2.cc (test_addr): Declare.
16070 (test_addr_alias): Declare.
16071 (main): Check that test_addr and test_addr_alias have the right
16072 values.
16073 * testsuite/script_test_2.t: Define test_addr_alias and
16074 test_addr.
16075
16076 2008-07-24 Ian Lance Taylor <iant@google.com>
16077
16078 PR 5990
16079 * descriptors.cc: New file.
16080 * descriptors.h: New file.
16081 * gold-threads.h (class Hold_optional_lock): New class.
16082 * fileread.cc: Include "descriptors.h".
16083 (File_read::~File_read): Release descriptor rather than closing
16084 it.
16085 (File_read::open) [file]: Call open_descriptor rather than open.
16086 Set is_descriptor_opened_.
16087 (File_read::open) [memory]: Assert that descriptor is not open.
16088 (File_read::reopen_descriptor): New function.
16089 (File_read::release): Release descriptor.
16090 (File_read::do_read): Make non-const. Reopen descriptor.
16091 (File_read::read): Make non-const.
16092 (File_read::make_view): Reopen descriptor.
16093 (File_read::do_readv): Likewise.
16094 * fileread.h (class File_read): Add is_descriptor_opened_ field.
16095 Update declarations.
16096 * layout.cc: Include "descriptors.h".
16097 (Layout::create_build_id): Use open_descriptor rather than open.
16098 * output.cc: Include "descriptors.h".
16099 (Output_file::open): Use open_descriptor rather than open.
16100 * archive.cc (Archive::const_iterator): Change Archive to be
16101 non-const.
16102 (Archive::begin, Archive::end): Make non-const.
16103 (Archive::count_members): Likewise.
16104 * archive.h (class Archive): Update declarations.
16105 * object.h (Object::read): Make non-const.
16106 * Makefile.am (CCFILES): Add descriptors.cc.
16107 (HFILES): Add descriptors.h.
16108 * Makefile.in: Rebuild.
16109
16110 PR 6716
16111 * gold.h: Always include <clocale>. Add Solaris workarounds
16112 following code in binutils/sysdep.h.
16113
16114 PR 6048
16115 * ehframe.cc (Eh_frame::add_ehframe_input_section): Check whether
16116 this->eh_frame_hdr_ is NULL before using it.
16117
16118 * dynobj.cc (Versions::Versions): Update comment.
16119
16120 * dynobj.cc (Versions::Versions): If there is an soname, use it as
16121 the base version name.
16122
16123 * stringpool.cc (Stringpool_template::add_with_length): Set key to
16124 array size plus one.
16125 (Stringpool_template::set_string_offsets): Subtract one from key
16126 before using it as an array index.
16127 (Stringpool_template::get_offset_with_length): Likewise.
16128 (Stringpool_template::write_to_buffer): Likewise.
16129 * stringpool.h (Stringpool_template::get_offset_from_key):
16130 Likewise.
16131
16132 2008-07-23 Ian Lance Taylor <iant@google.com>
16133
16134 PR 6658
16135 * object.h (Merged_symbol_value::value): Do our best to handle a
16136 negative addend.
16137
16138 PR 6647
16139 * script.cc (Version_script_info::get_versions): Don't add empty
16140 version tag to return value.
16141 (Version_script_info::get_symbol_version_helper): Change return
16142 type to bool. Add pversion parameter. Change all callers.
16143 (script_register_vers_node): Don't require a non-NULL tag.
16144 * script.h (class Version_script_info): Update declarations.
16145 (Version_script_info::get_symbol_version): Change return type to
16146 bool. Add version parameter. Change all callers.
16147 * symtab.cc (Sized_symbol::add_from_relobj): Rework version
16148 handling. Handle an empty version from a version script.
16149 (Symbol_table::define_special_symbol): Likewise.
16150 * testsuite/ver_test_10.script: New file.
16151 * testsuite/ver_test_10.sh: New file.
16152 * testsuite/Makefile.am (check_SCRIPTS): Add ver_test_10.sh.
16153 (check_DATA): Add ver_test_10.syms.
16154 (ver_test_10.syms, ver_test_10.so): New target.
16155 * testsuite/Makefile.in: Rebuild.
16156
16157 2008-07-23 Simon Baldwin <simonb@google.com>
16158
16159 * symtab.cc (Symbol_table::sized_write_symbol): Only set st_size
16160 to zero for undefined symbols from dynamic libraries.
16161
16162 2008-07-23 Ian Lance Taylor <iant@google.com>
16163
16164 * symtab.cc (Symbol_table::resolve): Remove version parameter.
16165 Change all callers.
16166 * symtab.h (class Symbol_table): Update declaration.
16167 * testsuite/ver_test_9.cc: New file.
16168 * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_9.
16169 (ver_test_9_SOURCES, ver_test_9_DEPENDENCIES): Define.
16170 (ver_test_9_LDFLAGS, ver_test_9_LDADD): Define.
16171 (ver_test_9.so, ver_test_9.o): New targets.
16172 * testsuite/Makefile.in: Rebuild.
16173
16174 2008-07-22 Ian Lance Taylor <iant@google.com>
16175
16176 * options.h (class General_options): Define --check-sections.
16177 * layout.cc (Layout::set_segment_offsets): Handle
16178 --check-sections.
16179
16180 * options.h (class General_options): Define -n/--nmagic and
16181 -N/--omagic.
16182 * options.cc (General_options::finalize): For -n/--nmagic or
16183 -N/--omagic, set -static.
16184 * layout.cc (Layout::attach_allocated_section_to_segment): If
16185 -N/--omagic, don't put read-only and read-write sections in
16186 different segments.
16187 (Layout::find_first_load_seg): If -N/--omagic, don't insist on
16188 finding a read-only segment.
16189 (Layout::set_segment_offsets): If -N/--omagic or -n/--nmagic,
16190 don't set the minimum segment alignment to the common page size,
16191 and don't set the file offset to the address modulo the page size.
16192 * script-sections.cc (Script_sections::create_segments): If
16193 -n/--omagic, don't put read-only and read-write sections in
16194 different segments.
16195
16196 * cref.cc: New file.
16197 * cref.h: New file.
16198 * options.h (class General_options): Add --print-symbol-counts.
16199 * main.cc (main): Issue defined symbol report if requested.
16200 * archive.cc (Archive::interpret_header): Make into a const member
16201 function.
16202 (Archive::add_symbols): Call Input_objects::archive_start and
16203 archive_stop.
16204 (Archive::const_iterator): Define new class.
16205 (Archive::begin, Archive::end): New functions.
16206 (Archive::include_all_members): Rewrite to use iterator.
16207 (Archive::count_members): New function.
16208 * archive.h (class Archive): Update declarations.
16209 (Archive::filename): New function.
16210 * object.cc: Include "cref.h".
16211 (Sized_relobj::Sized_relobj): Initialize defined_count_.
16212 (Sized_relobj::do_get_global_symbol_counts): New function.
16213 (Input_objects::add_object): Add object to cross-referencer.
16214 (Input_objects::archive_start): New function.
16215 (Input_objects::archive_stop): New function.
16216 (Input_objects::print_symbol_counts): New function.
16217 * object.h: Declare Cref and Archive.
16218 (Object::get_global_symbol_counts): New function.
16219 (Object::do_get_global_symbol_counts): New pure virtual function.
16220 (class Sized_relobj): Add defined_count_ field. Update
16221 declarations.
16222 (class Input_objects): Add cref_ field. Update constructor.
16223 Update declarations.
16224 * dynobj.cc (Sized_dynobj::Sized_dynobj): Initialize symbols_ and
16225 defined_count_.
16226 (Sized_dynobj::do_add_symbols): Allocate symbols_ if printing
16227 symbol counts.
16228 (Sized_dynobj::do_get_global_symbol_counts): New function.
16229 * dynobj.h (class Sized_dynobj): Add fields symbols_ and
16230 defined_count_. Update declarations. Define Symbols typedef.
16231 * symtab.cc (Symbol_table::add_from_relobj): Add defined
16232 parameter. Change all callers.
16233 (Symbol_table::add_from_dynobj): Add sympointers and defined
16234 parameters. Change all callers.
16235 * symtab.h (class Symbol_table): Update declarations.
16236 * Makefile.am (CCFILES): Add cref.cc.
16237 (HFILES): Add cref.h.
16238 * Makefile.in: Rebuild.
16239
16240 2008-07-22 Simon Baldwin <simonb@google.com>
16241
16242 * symtab.cc (Symbol_table::sized_write_symbol): Set symbol size
16243 to zero when writing undefined symbols.
16244
16245 2008-07-22 Ian Lance Taylor <iant@google.com>
16246
16247 * output.cc (Output_section::add_input_section): Don't try to
16248 merge empty merge sections.
16249
16250 2008-07-21 Craig Silverstein <csilvers@google.com>
16251
16252 * symtab.cc (Symbol_table::warn_about_undefined_dynobj_symbol):
16253 Include symbol version in error message.
16254
16255 2008-07-20 Chris Demetriou <cgd@google.com>
16256
16257 * configure.ac (gold_cv_c_random_seed): New configured variable.
16258 (RANDOM_SEED_CFLAGS): New substituted variable.
16259 * Makefile.am (AM_CFLAGS, AM_CXXFLAGS): Add $(RANDOM_SEED_CFLAGS).
16260 * configure: Rebuild.
16261 * Makefile.in: Likewise.
16262 * testsuite/Makefile.in: Likewise.
16263
16264 2008-07-18 Ian Lance Taylor <iant@google.com>
16265
16266 * symtab.cc (Symbol_table::add_from_object): Rewrite the case
16267 where we see NAME/NULL and NAME/VERSION as separate symbols.
16268 * testsuite/ver_test_main.cc (main): Call t4.
16269 (t4, t4_2a): Define.
16270 * testsuite/ver_test_2.cc (t4_2): Define.
16271 * testsuite/ver_test_2.script: Put t4_2a in VER2.
16272 * testsuite/ver_test_4.cc (t4_2a): Define.
16273 * testsuite/ver_test_4.script: Put t4_2a in VER2.
16274 * testsuite/ver_test.h (t4, t4_2, t4_2a): Declare.
16275
16276 2008-07-17 Ian Lance Taylor <iant@google.com>
16277
16278 * dynobj.cc (Versions::add_def): If we give an error about a
16279 missing version, go ahead and create the version anyhow.
16280
16281 2008-07-10 Ian Lance Taylor <iant@google.com>
16282
16283 Handle output sections with more than 0x7fffffff bytes.
16284 * object.h (class Relobj): Change map_to_output_ to
16285 output_sections_, and just keep a section pointer. Change all
16286 uses. Move comdat group support to Sized_relobj.
16287 (Relobj::is_section_specially_mapped): Remove.
16288 (Relobj::output_section): Remove poff parameter. Change all
16289 callers.
16290 (Relobj::output_section_offset): New function.
16291 (Relobj::set_section_offset): Rewrite.
16292 (Relobj::map_to_output): Remove.
16293 (Relobj::output_sections): New function.
16294 (Relobj::do_output_section_offset): New pure virtual function.
16295 (Relobj::do_set_section_offset): Likewise.
16296 (class Sized_relobj): Add section_offsets_ field. Add comdat
16297 group support from Relobj. Update declarations.
16298 (Sized_relobj::get_output_section_offset): New function.
16299 (Sized_relobj::do_output_section_offset): New function.
16300 (Sized_relobj::do_set_section_offset): New function.
16301 * object.cc (Relobj::output_section_address): Remove.
16302 (Sized_relobj::Sized_relobj): Initialize new fields.
16303 (Sized_relobj::include_section_group): Cast find_kept_object to
16304 Sized_relobj.
16305 (Sized_relobj::include_linkonce_section): Likewise.
16306 (Sized_relobj::do_layout): Use separate arrays for output section
16307 and output offset.
16308 (Sized_relobj::do_count_local_symbols): Change map_to_output to
16309 output_sections.
16310 (Sized_relobj::do_finalize_local_symbols): Change map_to_output to
16311 output_sections and section_offsets.
16312 (Sized_relobj::write_local_symbols): Likewise.
16313 (map_to_kept_section): Compute output address directly.
16314 * reloc.cc (Sized_relobj::do_read_relocs): Change map_to_output to
16315 output_sections and section_offsets.
16316 (Sized_relobj::write_sections): Likewise.
16317 (Sized_relobj::relocate_sections): Likewise.
16318 * symtab.cc (sized_finalize_symbol): Use output_section_offset.
16319 * output.h (class Output_reloc): Update declarations. Change
16320 u2_.relobj to Sized_relobj*.
16321 (class Output_data_reloc): Change add functions to use
16322 Sized_relobj*.
16323 * output.cc (Output_reloc::Output_reloc): Change relobj to
16324 Sized_relobj*.
16325 (Output_reloc::local_section_offset): Change return type to
16326 Elf_Addr. Use get_output_section_offset.
16327 (Output_reloc::get_address): Likewise.
16328 (Output_section::is_input_address_mapped): Don't call
16329 is_section_specially_mapped.
16330 (Output_section::output_offset): Likewise.
16331 (Output_section::output_address): Likewise.
16332 (Output_section::starting_output_address): Likewise.
16333 * copy-relocs.cc (Copy_relocs::copy_reloc): Change object
16334 parameter to Sized_relobj*.
16335 (Copy_relocs::need_copy_reloc): Likewise.
16336 (Copy_relocs::save): Likewise.
16337 * copy-relocs.h (class Copy_relocs): Update declarations.
16338 (class Copy_relocs::Copy_reloc_entry): Change constructor to use
16339 Sized_relobj*. Change relobj_ field to Sized_relobj*.
16340 * target-reloc.h (relocate_for_relocatable): Change
16341 offset_in_output_section type to Elf_Addr. Change code that uses
16342 it as well.
16343 * layout.cc (Layout::layout): Always set *off.
16344 * mapfile.cc (Mapfile::print_input_section): Use
16345 output_section_offset.
16346 * i386.cc (Target_i386::copy_reloc): Change object parameter to
16347 Sized_relobj*.
16348 * powerpc.cc (Target_powerpc::copy_reloc): Likewise.
16349 * sparc.cc (Target_sparc::copy_reloc): Likewise.
16350 * x86_64.cc (Target_x86_64::copy_reloc): Likewise.
16351
16352 2008-07-03 Ian Lance Taylor <iant@google.com>
16353
16354 * layout.cc (Layout::include_section): Do not discard unrecognized
16355 SHT_STRTAB sections.
16356
16357 2008-06-30 Craig Silverstein <csilvers@cs.stanford.edu>
16358
16359 * script.cc (Lex::can_continue_name): Make '?' allowable in
16360 version-script names.
16361 * testsuite/version_script.map: Change glob pattern to use '?'
16362
16363 2008-06-30 Manish Singh <yosh@gimp.org>
16364
16365 PR 6585
16366 * symtab.cc (Symbol_table::add_undefined_symbols_from_command_line):
16367 Correct typo.
16368
16369 2008-06-30 Ian Lance Taylor <iant@google.com>
16370
16371 PR 6660
16372 PR 6682
16373 * powerpc.cc (Powerpc_relocate_functions::addr16_ha) [both
16374 versions]: Don't try to read the value in the contents, since we
16375 don't use it. Use the template endianness when writing.
16376
16377 2008-06-25 Cary Coutant <ccoutant@google.com>
16378
16379 * fileread.cc (File_read::make_view): Assert on zero-length view.
16380 * object.cc (Sized_relobj::do_read_symbols): Don't try to read
16381 symbol table when there are no symbols to read.
16382
16383 2008-06-23 Craig Silverstein <csilvers@google.com>
16384
16385 * version.cc (version_string): Bump to 1.7
16386
16387 2008-06-18 Craig Silverstein <csilvers@google.com>
16388
16389 * powerpc.cc (Powerpc_relocate_functions::addr16_ha): cast
16390 constant 0xFFFF to type Valtype.
16391 (Powerpc_relocate_functions::rel16_ha): Likewise.
16392
16393 2008-06-17 Ian Lance Taylor <iant@google.com>
16394
16395 * output.h (Output_section::Input_section): Initialize p2align_ to
16396 zero for Output_section_data constructors.
16397 (Output_section::Input_section::addralign): If not an input
16398 section, return the alignment of the Output_section_data.
16399 * testsuite/copy_test.cc: New file.
16400 * testsuite/copy_test_1.cc: New file.
16401 * testsuite/copy_test_2.cc: New file.
16402 * testsuite/Makefile.am (check_PROGRAMS): Add copy_test.
16403 (copy_test_SOURCES, copy_test_DEPENDENCIES): New variables.
16404 (copy_test_LDFLAGS, copy_test_LDADD): New variables.
16405 (copy_test_1_pic.o, copy_test_1.so): New targets.
16406 (copy_test_2_pic.o, copy_test_2.so): New targets.
16407 * testsuite/Makefile.in: Rebuild.
16408
16409 * script-sections.cc (Script_sections::place_orphan): Initialize
16410 local variable exact.
16411
16412 2008-06-13 David Edelsohn <edelsohn@gnu.org>
16413
16414 * powerpc.cc (Output_data_plt_powerpc::do_write): 8 + 4 = 0xC.
16415
16416 2008-06-12 David Edelsohn <edelsohn@gnu.org>
16417 David S. Miller <davem@davemloft.net>
16418
16419 * powerpc.cc: New file.
16420 * Makefile.am (TARGETSOURCES): Add powerpc.cc
16421 (ALL_TARGETOBJS): Add powerpc.$(OBJEXT)
16422 * configure.tgt: Add entries for powerpc-* and powerpc64-*.
16423 * Makefile.in: Rebuild.
16424
16425 2008-06-09 Ian Lance Taylor <iant@google.com>
16426
16427 * testsuite/relro_test.cc: Include <cstdio>, <cstdlib>, and
16428 <exception>.
16429 (throwing, orig_terminate): New static variables.
16430 (terminate_handler): New static function.
16431 (t2): Set terminate handler.
16432
16433 2008-06-05 Kris Van Hees <kris.van.hees@oracle.com>
16434
16435 PR 6584
16436 * binary.cc (Binary_to_elf::sized_convert): Fix .data
16437 alignment.
16438
16439 2008-05-30 Cary Coutant <ccoutant@google.com>
16440
16441 * archive.cc (Archive::include_all_members) Correct to step
16442 over symbol table and extended name table in thin archives.
16443
16444 2008-05-29 Kris Van Hees <kris.van.hees@oracle.com>
16445
16446 PR 6407
16447 * target-reloc.h (relocate_for_relocatable): Fix new_offset
16448 calculation.
16449
16450 2008-05-28 Caleb Howe <cshowe@google.com>
16451
16452 * reduced_debug_output.cc: New file.
16453 * reduced_debug_output.h: New file.
16454 * options.h (class General_options): Add --strip-debug-non-line.
16455 * options.cc (General_options::finalize): Add strip_debug_non_line
16456 to the strip heirarchy.
16457 * layout.h (class Layout): Add debug_abbrev_ and debug_info_
16458 fields.
16459 * layout.cc: Include "reduced_debug_output.h".
16460 (Layout::Layout): Initialize new fields.
16461 (line_only_debug_sections): New static array.
16462 (is_lines_only_debug_sections): New static inline function.
16463 (Layout::include_section): Handle --strip-debug-non-line.
16464 (Layout::make_output_section): If --strip-debug-non-line, build
16465 new output sections for .debug_abbrev and .debug_info.
16466 * dwarf_reader.cc (read_unsigned_LEB_128): Move to namespace
16467 gold. Warn about possible overflow.
16468 (read_signed_LEB_128): Likewise.
16469 * dwarf_reader.h: (read_unsigned_LEB_128): Declare.
16470 (read_signed_LEB_128): Declare.
16471 * Makefile.am (CCFILES): Add reduced_debug_output.cc.
16472 (HFILES): Add reduced_debug_output.h.
16473 * Makefile.in: Rebuild.
16474
16475 2008-05-21 Ian Lance Taylor <iant@google.com>
16476
16477 * mapfile.cc: New file.
16478 * mapfile.h: New file.
16479 * options.h (class General_options): Add -M/--print-map and -Map.
16480 * options.cc (General_options::finalize): Make -M equivalent to
16481 -Map -.
16482 * main.cc: Include <cstdio> and "mapfile.h".
16483 (main): Open mapfile if requested.
16484 * gold.cc (class Middle_runner): Add mapfile_ field. Update
16485 constructor. Change caller.
16486 (queue_initial_tasks): Add mapfile parameter. Change caller.
16487 (queue_middle_tasks): Likewise.
16488 * gold.h (queue_initial_tasks, queue_middle_tasks): Update
16489 declarations.
16490 * archive.cc: Include "mapfile.h".
16491 (Archive::add_symbols): Add mapfile parameter. Change all
16492 callers. Pass mapfile, symbol, and reason to include_member.
16493 (Archive::include_all_members): Add mapfile parameter. Change all
16494 callers.
16495 (Archive::include_member): Add mapfile, sym, and why parameters.
16496 Change all callers. Report inclusion to map file.
16497 * archive.h: Include "fileread.h".
16498 (class Archive): Update declarations.
16499 (Archive::file): New const method.
16500 (class Add_archive_symbols): Add mapfile_ field. Update
16501 constructor. Change all callers.
16502 * readsyms.h (class Read_symbols): Likewise.
16503 (class Finish_group): Likewise.
16504 (class Read_script): Likewise.
16505 * common.cc: Include "mapfile.h".
16506 (Symbol_table::allocate_commons): Add mapfile parameter. Change
16507 all callers.
16508 (Symbol_table::do_allocate_commons): Likewise.
16509 (Symbol_table::do_allocate_commons_list): Likewise. Report common
16510 symbol allocation to mapfile.
16511 * common.h (class Allocate_commons_task): Add mapfile_ field.
16512 Update constructor. Change all callers.
16513 * symtab.h (class Symbol_table): Update declarations.
16514 * layout.cc: Include "mapfile.h".
16515 (Layout_task_runner::run): Print information to mapfile.
16516 (Layout::create_gold_note): Change Output_data_fixed_space to
16517 Output_data_zero_fill.
16518 (Layout::create_build_id): Likewise.
16519 (Layout::print_to_mapfile): New function.
16520 * layout.h (class Layout_task_runner): Add mapfile_ field. Update
16521 constructor. Change caller.
16522 (class Layout): Declare print_to_mapfile.
16523 * output.cc (Output_section::Input_section::print_to_mapfile): New
16524 function.
16525 (Output_section::add_input_section): If producing a map, always
16526 add to input_sections_ list.
16527 (Output_section::do_print_to_mapfile): New function.
16528 (Output_segment::print_sections_to_mapfile): New function.
16529 (Output_segment::print_section_list_to_mapfile): New function.
16530 * output.h: Include "mapfile.h".
16531 (Output_data::print_to_mapfile): New function.
16532 (Output_data::do_print_to_mapfile): New virtual function.
16533 (Output_segment_headers::do_print_to_mapfile): New function.
16534 (Output_file_header::do_print_to_mapfile): New function.
16535 (Output_data_const::do_print_to_mapfile): New function.
16536 (class Output_data_const_buffer): Add map_name_ field. Update
16537 constructor. Change all callers. Add do_print_to_mapfile
16538 function.
16539 (class Output_data_fixed_space): Likewise.
16540 (class Output_data_space): Likewise.
16541 (class Output_data_zero_fill): New class.
16542 (Output_data_strtab::do_print_to_mapfile): New function.
16543 (Output_data_reloc_base::do_print_to_mapfile): New function.
16544 (Output_relocatable_relocs::do_print_to_mapfile): New function.
16545 (Output_data_group::do_print_to_mapfile): New function.
16546 (Output_data_got::do_print_to_mapfile): New function.
16547 (Output_data_dynamic::do_print_to_mapfile): New function.
16548 (Output_symtab_xindex::do_print_to_mapfile): New function.
16549 (class Output_section): Declare do_print_to_mapflie. Declare
16550 print_to_mapfile in Input_section.
16551 (class Output_segment): Declare new functions.
16552 * object.h (Sized_relobj::symbol_count): New function.
16553 * script-sections.cc
16554 (Output_section_element_dot_assignment::set_section_addresses):
16555 Change Output_data_fixed_space to Output_data_zero_fill.
16556 (Output_data_expression::do_print_to_mapfile): New function.
16557 * script.cc (read_input_script): Add mapfile parameter. Change
16558 all callers.
16559 * script.h (read_input_script): Update declaration.
16560 * ehframe.h (Eh_frame_hdr::do_print_to_mapfile): New function.
16561 (Eh_frame::do_print_to_mapfile): New function.
16562 * merge.h (Output_merge_data::do_print_to_mapfile): New function.
16563 (Output_merge_string::do_print_to_mapfile): New function.
16564 * i386.cc (Output_data_plt_i386::do_print_to_mapfile): New
16565 function.
16566 * sparc.cc (Output_data_plt_sparc::do_print_to_mapfile): New
16567 function.
16568 * x86_64.cc (Output_data_plt_x86_64::do_print_to_mapfile): New
16569 function.
16570 * Makefile.am (CCFILES): Add mapfile.cc.
16571 (HFILES): Add mapfile.h.
16572 * Makefile.in: Rebuild.
16573
16574 2008-05-19 Ian Lance Taylor <iant@google.com>
16575
16576 * options.h (class General_options): Add -z relro.
16577 * layout.cc (Layout::Layout): Initialize relro_segment_.
16578 (Layout::add_output_section_data): Return the output section.
16579 (Layout::make_output_section): Rcognize relro sections and mark
16580 them appropriately.
16581 (Layout::attach_allocated_section_to_segment): Put relro sections
16582 in a PT_GNU_RELRO segment.
16583 (Layout::create_initial_dynamic_sections): Mark the .dynamic
16584 section as relro.
16585 (Layout::segment_precedes): Sort PT_GNU_RELRO segments after
16586 PT_TLS segments.
16587 (Layout::linkonce_mapping): Map d.rel.ro.local to
16588 .data.rel.ro.local.
16589 (Layout::output_section_name): Us .data.rel.ro.local for any
16590 section which begins with that.
16591 * layout.h (class Layout): Update add_output_section_data
16592 declaration. Add relro_segment_ field.
16593 * output.cc (Output_section::Output_section): Initialize is_relro_
16594 and is_relro_local_ fields.
16595 (Output_segment::add_output_section): Group relro sections.
16596 (Output_segment::is_first_section_relro): New function.
16597 (Output_segment::maximum_alignment): If there is a relro section,
16598 align the segment to the common page size.
16599 (Output_segment::set_section_addresses): Track whether we are
16600 looking at relro sections. If the last section is a relro
16601 section, align to the common page size.
16602 (Output_segment::set_section_list_addresses): Add in_relro
16603 parameter. Change all callers. Align to the page size when
16604 moving from relro to non-relro section.
16605 (Output_segment::set_offset): Align memsz of a PT_GNU_RELRO
16606 segment.
16607 * output.h (class Output_section): Add is_relro_ and
16608 is_relro_local_ fields.
16609 (Output_section::is_relro): New function.
16610 (Output_section::set_is_relro): New function.
16611 (Output_section::is_relro_local): New function.
16612 (Output_section::set_is_relro_local): New function.
16613 (class Output_segment): Update declarations.
16614 * i386.cc (Target_i386::got_section): Mark .got section as relro.
16615 * sparc.cc (Target_sparc::got_section): Likewise.
16616 * x86_64.cc (Target_x86_64::got_section): Likewise.
16617 * testsuite/relro_test_main.cc: New file.
16618 * testsuite/relro_test.cc: New file.
16619 * testsuite/Makefile.am (check_PROGRAMS): Add relro_test.
16620 (relro_test_SOURCES, relro_test_DEPENDENCIES): New variables.
16621 (relro_test_LDFLAGS, relro_test_LDADD): New variables.
16622 (relro_test.so, relro_test_pic.o): New targets.
16623 * testsuite/Makefile.in: Rebuild.
16624
16625 2008-05-16 Ian Lance Taylor <iant@google.com>
16626
16627 * output.cc (Output_segment::add_output_section): Remove front
16628 parameter.
16629 * output.h (class Output_segment): Remove
16630 add_initial_output_section and overloaded add_output_section.
16631 Update declaration of remaining add_output_section.
16632 * layout.cc (Layout::create_interp): Call add_output_section
16633 rather than add_initial_output_section.
16634 (Layout::finish_dynamic_section): Likewise.
16635
16636 * i386.cc (Target_i386::Relocate::relocate_tls): Set dynamic type
16637 for TLS_GOTDESC and TLS_DESC_CALL. Only optimize TLS_LDO_32 if we
16638 know the dynamic type.
16639 * x86_64.cc (Target_x86_64::Relocate): Add saw_tls_block_reloc_
16640 field. Initialize it in constructor.
16641 (Target_x86_64::Relocate::relocate_tls): Record that we saw a TLS
16642 block reloc for TLSGD, GOTPC32_TLSDESC, TLSDESC_CALL, and TLSLD.
16643 Only optimize DTPOFF32 and DTPOFF64 if we have seen a TLS block
16644 reloc.
16645
16646 * output.cc (Output_reloc::get_address): Change return type to
16647 Elf_Addr.
16648 * output.h (class Output_reloc): Update get_address declaration.
16649 * x86_64.cc (Output_data_plt_x86_64::do_write): Use 64-bit types
16650 for section addresses.
16651
16652 2008-05-09 Ian Lance Taylor <iant@google.com>
16653
16654 PR 6493
16655 * gold.cc (gold_nomem): Use return value of write.
16656
16657 2008-05-08 Ian Lance Taylor <iant@google.com>
16658
16659 * symtab.c (Symbol::init_base_output_data): Add version
16660 parameter. Change all callers.
16661 (Symbol::init_base_output_segment): Likewise.
16662 (Symbol::init_base_constant): Likewise.
16663 (Symbol::init_base_undefined): Likewise.
16664 (Sized_symbol::init_output_data): Likewise.
16665 (Sized_symbol::init_output_segment): Likewise.
16666 (Sized_symbol::init_constant): Likewise.
16667 (Sized_symbol::init_undefined): Likewise.
16668 (Symbol_table::do_define_in_output_data): If the new symbol has a
16669 version, mark it as the default.
16670 (Symbol_table::do_define_in_output_segment): Likewise.
16671 (Symbol_table::do_define_as_constant): Likewise.
16672 * symtab.h (class Symbol): Update declarations.
16673 (class Sized_symbol): Likewise.
16674 * resolve.cc (Symbol::override_version): New function.
16675 (Symbol::override_base): Call override_version.
16676 (Symbol::override_base_with_special): Likewise.
16677 * testsuite/ver_script_8.script: New file.
16678 * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_8.
16679 (ver_test_8_SOURCES, ver_test_8_DEPENDENCIES): Define.
16680 (ver_test_8_LDFLAGS, ver_test_8_LDADD): Define.
16681 (ver_test_8_1.so, ver_test_8_2.so): New targets.
16682
16683 2008-05-06 Ian Lance Taylor <iant@google.com>
16684
16685 PR 6049
16686 * options.h (DEFINE_set): Add VARNAME_begin and VARNAME_end
16687 functions.
16688 (class General_options): Remove existing --undefined, and add
16689 --no-undefined instead. Add new --undefined as synonym for -u.
16690 * archive.cc (Archive::add_symbols): Check whether symbol was
16691 named with -u.
16692 * gold.cc (queue_middle_tasks): Add -u symbols to symbol table.
16693 * symtab.h (class Symbol): Rename CONSTANT to IS_CONSTANT; change
16694 all uses. Add IS_UNDEFINED. Update declarations to split
16695 different versions of init_base. Declare init_base_undefined.
16696 (Symbol::is_defined): Handle IS_UNDEFINED.
16697 (Symbol::is_undefined): Likewise.
16698 (Symbol::is_weak_undefined): Call is_undefined.
16699 (Symbol::is_absolute): Handle IS_CONSTANT.
16700 (class Sized_symbol): Update declarations to split different
16701 versions of init. Declare init_undefined.
16702 (class Symbol_table): Declare new functions.
16703 * symtab.cc (Symbol::init_base_object): Rename from init_base.
16704 Change all callers.
16705 (Symbol::init_base_output_data): Likewise.
16706 (Symbol::init_base_output_segment): Likewise.
16707 (Symbol::init_base_constant): Likewise.
16708 (Symbol::init_base_undefined): New function.
16709 (Sized_symbol::init_object): Rename from init. Change all
16710 callers.
16711 (Sized_symbol::init_output_data): Likewise.
16712 (Sized_symbol::init_output_segment): Likewise.
16713 (Sized_symbol::init_constant): Likewise.
16714 (Sized_symbol::init_undefined): New function.
16715 (Symbol_table::add_undefined_symbols_from_command_line): New
16716 function.
16717 (Symbol_table::do_add_undefined_symbols_from_command_line): New
16718 function.
16719 (Symbol::final_value_is_known): Handle IS_UNDEFINED.
16720 (Symbol::output_section): Likewise.
16721 (Symbol::set_output_section): Likewise.
16722 (Symbol_table::sized_finalize_symbol): Likewise.
16723 (Symbol_table::sized_write_globals): Likewise.
16724 * resolve.cc (Symbol_table::should_override): Likewise.
16725 (Symbol::override_base_with_special): Likewise.
16726
16727 * symtab.cc (Symbol_table::add_from_dynobj): If we see a protected
16728 symbol, change it to have default visibility.
16729 * testsuite/protected_1.cc: New file.
16730 * testsuite/protected_2.cc: New file.
16731 * testsuite/protected_3.cc: New file.
16732 * testsuite/protected_main_1.cc: New file.
16733 * testsuite/protected_main_2.cc: New file.
16734 * testsuite/protected_main_3.cc: New file.
16735 * testsuite/Makefile.am (check_PROGRAMS): Add protected_1.
16736 (protected_1_SOURCES, protected_1_DEPENDENCIES): Define.
16737 (protected_1_LDFLAGS, protected_1_LDADD): Define.
16738 (protected_1.so): New target.
16739 (protected_1_pic.o, protected_2_pic.o): New targets.
16740 (protected_3_pic.o): New target.
16741 (check_PROGRAMS): Add protected_2.
16742 (protected_2_SOURCES, protected_2_DEPENDENCIES): Define.
16743 (protected_2_LDFLAGS, protected_2_LDADD): Define.
16744 * testsuite/Makefile.in: Rebuild.
16745
16746 * options.h (DEFINE_var): Add set_user_set_##varname__.
16747 (DEFINE_bool_alias): New macro.
16748 (class General_options): Define -Bstatic using DEFINE_bool_alias
16749 rather than DEFINE_special. Add --undefined as an alias for -z
16750 defs.
16751 * options.cc (General_options::parse_Bstatic): Remove.
16752
16753 * options.h (class General_options): Add --fatal-warnings.
16754 * main.cc (main): Implement --fatal-warnings.
16755 * errors.h (Errors::warning_count): New function.
16756
16757 * options.h (class General_options): Add -Bsymbolic-functions.
16758 * symtab.h (Symbol::is_preemptible): Check for
16759 -Bsymbolic-functions.
16760
16761 2008-05-05 Ian Lance Taylor <iant@google.com>
16762
16763 * options.h (DEFINE_bool): For DASH_Z, create the negative option
16764 as noVARNAME rather than no-VARNAME.
16765 (class General_options): Add option -z combreloc.
16766 * output.h (class Output_reloc) [SHT_REL]: Declare compare and
16767 get_address.
16768 (Output_reloc::sort_before) [SHT_REL]: New function.
16769 (Output_reloc::sort_before) [SHT_RELA]: New function.
16770 (class Output_data_reloc_base): Add sort_relocs_ field. Define
16771 Sort_relocs_comparison.
16772 (Output_data_reloc_base::Output_data_reloc_base): Add sort_relocs
16773 parameter. Change all callers.
16774 (Output_data_reloc::Output_data_reloc) [both versions]: Add
16775 sort_relocs parameter. Change all callers.
16776 * output.cc (Output_reloc::get_address): New function, broken out
16777 of write_rel.
16778 (Output_reloc::write_rel): Call it.
16779 (Output_reloc::compare): New function.
16780 (Output_data_reloc_base::do_write): Optionally sort relocs.
16781
16782 * configure.ac: If targ_extra_obj is set, link it in.
16783 * configure.tgt: Initialize all variables.
16784 (x86_64*): Set targ_extra_obj and targ_extra_size.
16785 * configure: Rebuild.
16786
16787 * object.cc (Sized_relobj::include_section_group): Adjust section
16788 indexes read from group data. Build vector to pass to
16789 layout_group.
16790 * layout.cc (Layout::layout_group): Add flags and shndxes
16791 parameters. Remove contents parameter. Change caller. Update
16792 explicit instantiations.
16793 * layout.h (class Layout): Update layout_group declaration.
16794 * output.cc (Output_data_group::Output_data_group): Add flags and
16795 input_shndxes parameters. Remove contents parameter. Change
16796 caller.
16797 (Output_data_group::do_write): Change input_sections_ to
16798 input_shndxes_.
16799 * output.h (class Output_data_group): Update constructor
16800 declaration. Rename input_sections_ to input_shndxes_.
16801 * testsuite/many_sections_test.cc: Add template.
16802
16803 2008-04-30 Cary Coutant <ccoutant@google.com>
16804
16805 * target-reloc.h (relocate_section): Fix dead-pointer bug.
16806
16807 * layout.cc (Layout::include_section): Refactored check for debug
16808 info section.
16809 (Layout::add_comdat): Add new parameters. Change type
16810 of signature parameter. Add object and shndx to signatures table.
16811 (Layout::find_kept_object): New function.
16812 * layout.h: Include <cstring>.
16813 (Layout::is_debug_info_section): New function.
16814 (Layout::add_comdat): Add new parameters.
16815 (Layout::find_kept_object): New function.
16816 (Layout::Kept_section): New struct.
16817 (Layout::Signatures): Change type of map range.
16818 * object.cc (Relobj::output_section_address): New function.
16819 (Sized_relobj::include_section_group): Add new parameters. Change
16820 calls to Layout::add_comdat. Change to build table of kept comdat
16821 groups and table mapping discarded sections to kept sections.
16822 (Sized_relobj::include_linkonce_section): Likewise. Add new parameter.
16823 (Sized_relobj::do_layout): Change calls to include_section_group and
16824 include_linkonce_section.
16825 (Sized_relobj::do_finalize_local_symbols): Do not set local symbol
16826 value to zero when section is discarded.
16827 (Sized_relobj::map_to_kept_section): New function.
16828 * object.h (Relobj::output_section_address): New function.
16829 (Relobj::Comdat_group): New type.
16830 (Relobj::find_comdat_group): New function.
16831 (Relobj::Comdat_group_table): New type.
16832 (Relobj::Kept_comdat_section): New type.
16833 (Relobj::Kept_comdat_section_table): New type.
16834 (Relobj::add_comdat_group): New function.
16835 (Relobj::set_kept_comdat_section): New function.
16836 (Relobj::get_kept_comdat_section): New function.
16837 (Relobj::comdat_groups_): New field.
16838 (Relobj::kept_comdat_sections_): New field.
16839 (Symbol_value::input_value): Update comment.
16840 (Sized_relobj::map_to_kept_section) New function.
16841 (Sized_relobj::include_linkonce_section): Add new parameter.
16842 * target-reloc.h (Comdat_behavior): New type.
16843 (get_comdat_behavior): New function.
16844 (relocate_section): Add code to map a discarded section to the
16845 corresponding kept section when applying a relocation.
16846
16847 2008-04-30 Craig Silverstein <csilvers@google.com>
16848
16849 * dwarf_reader.cc (next_generation_count): New static var.
16850 (Addr2line_cache_entry): New struct.
16851 (addr2line_cache): New static var.
16852 (Dwarf_line_info::one_addr2line): Added caching.
16853 (Dwarf_line_info::clear_addr2line_cache): New function.
16854 * dwarf_reader.h (Dwarf_line_info::one_addr2line): Add
16855 cache-size parameter.
16856 (Dwarf_line_info::one_addr2line_cache): New function.
16857 * symtab.cc (Symbol_table::detect_odr_violations): Pass
16858 new cache-size argument to one_addr2line(), and clear cache.
16859
16860 2008-04-28 Cary Coutant <ccoutant@google.com>
16861
16862 * i386.cc (Relocate::relocate): Fix typos for R_386_PC16 and
16863 R_386_PC8 relocations.
16864
16865 2008-04-23 Ian Lance Taylor <iant@google.com>
16866
16867 * object.cc (Sized_relobj::include_section_group): Check for
16868 invalid section group.
16869
16870 * object.cc (make_elf_object): Correct test for 64-bit ELF file
16871 header size.
16872
16873 * readsyms.cc (Read_symbols::do_read_symbols): Use get_view rather
16874 than read for file header.
16875 * archive.cc (Archive::include_member): Likewise.
16876
16877 2008-04-23 Paolo Bonzini <bonzini@gnu.org>
16878
16879 * aclocal.m4: Regenerate.
16880 * configure: Regenerate.
16881
16882 2008-04-19 Ian Lance Taylor <iant@google.com>
16883
16884 * version.cc (version_string): Bump to 1.6.
16885
16886 * testsuite/Makefile.am (many_sections_r_test): New target.
16887 (many_sections_r_test_SOURCES): Remove.
16888 (many_sections_r_test_DEPENDENCIES): Remove.
16889 (many_sections_r_test_LDFLAGS): Remove.
16890 (many_sections_r_test_LDADD): Remove.
16891
16892 * object.cc (Sized_relobj::do_add_symbols): Always pass
16893 local_symbol_count_ to add_from_relobj.
16894
16895 * testsuite/Makefile.am (many_sections_check.h): Only check one in
16896 every thousand variables.
16897 * testsuite/Makefile.in: Rebuild.
16898
16899 * object.cc (Xindex::initialize_symtab_xindex): New function.
16900 (Xindex::read_symtab_xindex): New function.
16901 (Xindex::sym_xindex_to_shndx): New function.
16902 (Sized_relobj::find_symtab): Pick up SHT_SYMTAB_SHNDX section if
16903 available.
16904 (Sized_relobj::do_initialize_xindex): New function.
16905 (Sized_relobj::do_read_symbols): Adjust section links.
16906 (Sized_relobj::symbol_section_and_value): Add is_ordinary
16907 parameter. Change all callers.
16908 (Sized_relobj::include_section_group): Adjust section links and
16909 symbol section indexes.
16910 (Sized_relobj::do_layout): Adjust section links.
16911 (Sized_relobj::do_count_local_symbols): Adjust section links and
16912 symbol section indexes.
16913 (Sized_relobj::do_finalize_local_symbols): Distinguish between
16914 ordinary and special symbols.
16915 (Sized_relobj::write_local_symbols): Add symtab_xindex and
16916 dynsym_xindex parameters. Change all callers. Adjust section
16917 links. Use SHN_XINDEX when needed.
16918 (Sized_relobj::get_symbol_location_info): Adjust section links.
16919 Don't get fooled by special symbols.
16920 * object.h (class Xindex): Define.
16921 (class Object): Add xindex_ parameter. Declare virtual functoin
16922 do_initialize_xindex.
16923 (Object::adjust_sym_shndx): New function.
16924 (Object::set_xindex): New protected function.
16925 (class Symbol_value): Add is_ordinary_shndx_ field.
16926 (Symbol_value::Symbol_value): Initialize is_ordinary_shndx_.
16927 (Symbol_value::value): Assert ordinary section.
16928 (Symbol_value::initialize_input_to_output_map): Likewise.
16929 (Symbol_value::set_input_shndx): Add is_ordinary parameter.
16930 Change all callers.
16931 (Symbol_value::input_shndx): Add is_ordinary parameter. Change
16932 all callers.
16933 (class Sized_relobj): Update declarations.
16934 (Sized_relobj::local_symbol_input_shndx): Add is_ordinary
16935 parameter. Change all callers.
16936 (Sized_relobj::adjust_shndx): New function.
16937 * dynobj.cc (Sized_dynobj::Sized_dynobj): Initialize dynsym_shndx_
16938 field.
16939 (Sized_dynobj::find_dynsym_sections): Remove pdynsym_shndx
16940 parameter. Change all callers. Pick up SHT_DYNSYM_SHNDX section
16941 for SHT_DYNSYM section if available. Set dynsym_shndx_ field.
16942 (Sized_dynobj::read_dynsym_section): Adjust section links.
16943 (Sized_dynobj::read_dynamic): Likewise.
16944 (Sized_dynobj::do_read_symbols): Use dynsym_shndx_ field. Adjust
16945 section links.
16946 (Sized_dynobj::do_initialize_xindex): New function.
16947 * dynobj.h (class Sized_dynobj): Add dynsym_shndx_ field. Declare
16948 do_initialize_xindex.
16949 (Sized_dynobj::adjust_shndx): New function.
16950 * layout.cc (Layout::Layout): Initialize symtab_xindex_ and
16951 dynsym_xindex_ fields.
16952 (Layout::finalize): Add a call to set_section_indexes before
16953 creating the symtab sections.
16954 (Layout::set_section_indexes): Don't do anything if the section
16955 already has a section index.
16956 (Layout::create_symtab_sections): Add shnum parameter. Change
16957 caller. Create .symtab_shndx section if needed.
16958 (Layout::create_shdrs): Add shstrtab_section parameter. Change
16959 caller.
16960 (Layout::allocated_output_section_count): New function.
16961 (Layout::create_dynamic_symtab): Create .dynsym_shndx section if
16962 needed.
16963 * layout.h (class Layout): Add symtab_xindex_ and dynsym_xindex_
16964 fields. Update declarations.
16965 (Layout::symtab_xindex): New function.
16966 (Layout::dynsym_xindex): New function.
16967 (class Write_symbols_task): Add layout_ field.
16968 (Write_symbols_task::Write_symbols_task): Add layout parameter.
16969 Change caller.
16970 * output.cc (Output_section_headers::Output_section_headers): Add
16971 shstrtab_section parameter. Change all callers.
16972 (Output_section_headers::do_sized_write): Store overflow values
16973 for section count and section string table section index in
16974 section header zero.
16975 (Output_file_header::do_sized_write): Check for overflow of
16976 section count and section string table section index.
16977 (Output_symtab_xindex::do_write): New function.
16978 (Output_symtab_xindex::endian_do_write): New function.
16979 * output.h (class Output_section_headers): Add shstrtab_section_.
16980 Update declarations.
16981 (class Output_symtab_xindex): Define.
16982 (Output_section::has_out_shndx): New function.
16983 * symtab.cc (Symbol::init_fields): Initialize is_ordinary_shndx_
16984 field.
16985 (Symbol::init_base): Add st_shndx and is_ordinary parameters.
16986 Change all callers.
16987 (Sized_symbol::init): Likewise.
16988 (Symbol::output_section): Check for ordinary symbol.
16989 (Symbol_table::add_from_object): Remove orig_sym parameter. Add
16990 st_shndx, is_ordinary, and orig_st_shndx parameters. Change all
16991 callers.
16992 (Symbol_table::add_from_relobj): Add symndx_offset parameter.
16993 Change all callers. Simplify handling of symbols from sections
16994 not included in the link.
16995 (Symbol_table::add_from_dynobj): Handle ordinary symbol
16996 distinction.
16997 (Weak_alias_sorter::operator()): Assert that symbols are
16998 ordinary.
16999 (Symbol_table::sized_finalize_symbol): Handle ordinary symbol
17000 distinction.
17001 (Symbol_table::write_globals): Add symtab_xindex and dynsym_xindex
17002 parameters. Change all callers.
17003 (Symbol_table::sized_write_globals): Likewise. Handle ordinary
17004 symbol distinction. Use SHN_XINDEX when needed.
17005 (Symbol_table::write_section_symbol): Add symtab_xindex
17006 parameter. Change all callers.
17007 (Symbol_table::sized_write_section_symbol): Likewise. Use
17008 SHN_XINDEX when needed.
17009 * symtab.h (class Symbol): Add is_ordinary_shndx_ field. Update
17010 declarations.
17011 (Symbol::shndx): Add is_ordinary parameter. Change all callers.
17012 (Symbol::is_defined): Check is_ordinary.
17013 (Symbol::is_undefined, Symbol::is_weak_undefined): Likewise.
17014 (Symbol::is_absolute, Symbol::is_common): Likewise.
17015 (class Sized_symbol): Update declarations.
17016 (class Symbol_table): Update declarations.
17017 * resolve.cc (Symbol::override_base): Add st_shndx and is_ordinary
17018 parameters. Change all callers.
17019 (Sized_symbol::override): Likewise.
17020 (Symbol_table::override): Likewise.
17021 (symbol_to_bits): Add is_ordinary parameter. Change all callers.
17022 (Symbol_table::resolve): Remove orig_sym parameter. Add st_shndx,
17023 is_ordinary, and orig_st_shndx parameters. Change all callers.
17024 * copy-relocs.cc (Copy_relocs::emit_copy_reloc): Require symbol
17025 to be in an ordinary section.
17026 * dwarf_reader.cc (Sized_dwarf_line_info::symbol_section): Add
17027 object and is_ordinary parameters. Change all callers.
17028 (Sized_dwarf_line_info::read_relocs): Add object parameter.
17029 Change all callers. Don't add undefined or non-ordinary symbols
17030 to reloc_map_.
17031 (Sized_dwarf_line_info::read_line_mappings): Add object parameter.
17032 Change all callers.
17033 * dwarf_reader.h (class Sized_dwarf_line_info): Update
17034 declarations.
17035 * ehframe.cc (Eh_frame::read_fde): Check for ordinary symbol.
17036 * reloc.cc (Sized_relobj::do_read_relocs): Adjust section links.
17037 (Sized_relobj::relocate_sections): Likewise.
17038 * target-reloc.h (scan_relocs): Adjust section symbol index.
17039 (scan_relocatable_relocs): Likewise.
17040 * i386.cc (Scan::local): Check for ordinary symbols.
17041 * sparc.cc (Scan::local): Likewise.
17042 * x86_64.cc (Scan::local): Likewise.
17043 * testsuite/binary_unittest.cc (Sized_binary_test): Update calls
17044 to symbol_section_and_value.
17045 * testsuite/many_sections_test.cc: New file.
17046 * testsuite/Makefile.am (BUILT_SOURCES): Define.
17047 (check_PROGRAMS): Add many_sections_test.
17048 (many_sections_test_SOURCES): Define.
17049 (many_sections_test_DEPENDENCIES): Define.
17050 (many_sections_test_LDFLAGS): Define.
17051 (BUILT_SOURCES): Add many_sections_define.h.
17052 (many_sections_define.h): New target.
17053 (BUILT_SOURCES): Add many_sections_check.h.
17054 (many_sections_check.h): New target.
17055 (check_PROGRAMS): Add many_sections_r_test.
17056 (many_sections_r_test_SOURCES): Define.
17057 (many_sections_r_test_DEPENDENCIES): Define.
17058 (many_sections_r_test_LDFLAGS): Define.
17059 (many_sections_r_test_LDADD): Define.
17060 (many_sections_r_test.o): New target.
17061 * testsuite/Makefile.in: Rebuild.
17062
17063 2008-04-17 Cary Coutant <ccoutant@google.com>
17064
17065 * errors.cc (Errors::info): New function.
17066 (gold_info): New function.
17067 * errors.h (Errors::info): New function.
17068 * gold.h (gold_info): New function.
17069 * object.cc (Input_objects::add_object): Print trace output.
17070 * options.cc (options::parse_set): New function.
17071 (General_options::parse_wrap): Deleted.
17072 (General_options::General_options): Deleted initializer.
17073 * options.h (options::String_set): New typedef.
17074 (options::parse_set): New function.
17075 (DEFINE_set): New macro.
17076 (General_options::wrap): Changed to use DEFINE_set. Changed
17077 callers of any_wrap_symbols and is_wrap_symbol.
17078 (General_options::trace, General_options::trace_symbol):
17079 New options.
17080 (General_options::any_wrap_symbols, General_options::is_wrap_symbol)
17081 (General_options::wrap_symbols_): Deleted.
17082 * symtab.cc (Symbol_table::add_from_object): Print trace output.
17083
17084 2008-04-17 David S. Miller <davem@davemloft.net>
17085
17086 * options.cc (General_options::parse_V): New function.
17087 * options.h: Add entries for -V and -Qy.
17088
17089 2008-04-17 Ian Lance Taylor <iant@google.com>
17090
17091 * common.cc (Symbol_table::allocate_commons): Remove options
17092 parameter. Change caller.
17093 (Symbol_table::do_allocate_commons): Remove options parameter.
17094 Change caller. Just call do_allocate_commons_list twice.
17095 (Symbol_table::do_allocate_commons_list): New function, broken out
17096 of do_allocate_commons.
17097 * common.h (class Allocate_commons_task): Remove options_ field.
17098 Update constructor.
17099 * symtab.cc (Symbol_table::Symbol_table): Initialize
17100 tls_commons_.
17101 (Symbol_table::add_from_object): Put TLS common symbols on
17102 tls_commons_ list.
17103 (Symbol_table::sized_finalize_symbol): Handle STT_TLS symbols
17104 which are IN_OUTPUT_DATA.
17105 * symtab.h (class Symbol_table): Add tls_commons_ field. Update
17106 allocate_commons and do_allocate_commons declarations. Declare
17107 do_allocate_commons_list.
17108 * gold.cc (queue_middle_tasks): Update creation of
17109 Allocate_commons_task to not pass options.
17110 * testsuite/Makefile.am (INCLUDES): Add -I.. .
17111 (TLS_TEST_C_FLAGS): New variable.
17112 (tls_test_c_pic.o): New target.
17113 (tls_test_shared.so): Link in tls_test_c_pic.o.
17114 (tls_test_c_pic_ie.o): New target.
17115 (tls_test_ie_shared.so): Link in tls_test_c_pic_ie.o.
17116 (tls_test_DEPENDENCIES, tls_test_LDADD): Add tls_test_c.o.
17117 (tls_test_c.o): New target.
17118 (tls_pic_test_DEPENDENCIES): Add tls_test_c_pic.o.
17119 (tls_pic_test_LDADD): Likewise.
17120 (tls_shared_gd_to_ie_test_DEPENDENCIES): Add tls_test_c_pic.o.
17121 (tls_shared_gd_to_ie_test_LDADD): Likewise.
17122 (tls_test_c_gnu2.o): New target.
17123 (tls_shared_gnu2_gd_to_ie_test_DEPENDENCIES): Add
17124 tls_test_c_gnu2.o.
17125 (tls_shared_gnu2_gd_to_ie_test_LDADD): Likewise.
17126 (tls_test_gnu2_shared.so): Link in tls_test_c_gnu2.o.
17127 (tls_test_shared_nonpic.so): Link in tls_test_c.o.
17128 * testsuite/tls_test.cc: Include "config.h".
17129 (t_last): Call t11_last.
17130 * testsuite/tls_test.h (t11, t11_last): Declare.
17131 * testsuite/tls_test_c.c: New file.
17132 * testsuite/tls_test_main.cc (thread_routine): Call t11.
17133 * configure.ac: Check for OpenMP support.
17134 * configure, config.in, Makefile.in: Rebuild.
17135 * testsuite/Makefile.in: Rebuild.
17136
17137 2008-04-16 Cary Coutant <ccoutant@google.com>
17138
17139 * i386.cc (Target_i386::define_tls_base_symbol): New function.
17140 (Target_i386::tls_base_symbol_defined_): New field.
17141 (Target_i386::Scan::local): Define _TLS_MODULE_BASE_ symbol.
17142 (Target_i386::Scan::global): Likewise.
17143 * symtab.cc (sized_finalize_symbol): Add check for TLS symbol.
17144 * x86_64.cc (Target_x86_64::define_tls_base_symbol): New function.
17145 (Target_x86_64::tls_base_symbol_defined_): New field.
17146 (Target_x86_64::Scan::local): Define _TLS_MODULE_BASE_ symbol.
17147 (Target_x86_64::Scan::global): Likewise.
17148
17149 2008-04-16 Cary Coutant <ccoutant@google.com>
17150
17151 * symtab.h (Symbol::is_strong_undefined): Removed unused function.
17152 (Symbol::needs_plt_entry): Allow weak undefined symbols.
17153 (Symbol::needs_dynamic_reloc): Allow weak undefined symbols when
17154 building shared libraries.
17155 * testsuite/Makefile.am (weak_undef_nonpic_test): New target.
17156 (weak_undef_file1_nonpic.o, weak_undef_file2_nonpic.o)
17157 (weak_undef_lib_nonpic.so, alt/weak_undef_lib_nonpic.so): New targets.
17158 * testsuite/Makefile.in: Rebuild.
17159 * testsuite/weak_undef.h: New file.
17160 * testsuite/weak_undef_file1.cc: Add extra test cases.
17161 * testsuite/weak_undef_file2.cc: Likewise.
17162 * testsuite/weak_undef_test.cc: Likewise.
17163
17164 2008-04-16 David S. Miller <davem@davemloft.net>
17165
17166 * sparc.cc (Target_sparc::Scan): Change from struct to class.
17167 Add issued_non_pic_error_ field. Declare check_non_pic.
17168 (Target_sparc::Scan::check_non_pic): New function.
17169 (Target_sparc::Scan::local): Call check_non_pic as appropriate.
17170 (Target_sparc::Scan::global): Likewise.
17171
17172 * configure.ac (FN_PTRS_IN_SO_WITHOUT_PIC): Add sparc64.
17173 * configure: Rebuild.
17174
17175 * options.h (DEFINE_enable): New macro.
17176 (new_dtags): New enable option.
17177 (initfirst, interpose, loadfltr, nodefaultlib,
17178 nodelete, nodlopen, nodump): New -z options.
17179 * layout.cc (Layout:finish_dynamic_section): If new
17180 dtags enabled, emit DT_RUNPATH. Also, emit a
17181 DT_FLAGS_1 containing any specified -z flags.
17182
17183 2008-04-16 Ian Lance Taylor <iant@google.com>
17184
17185 * copy-relocs.cc: New file.
17186 * copy-relocs.h: New file.
17187 * reloc.cc: Remove Copy_relocs code.
17188 * reloc.h: Likewise.
17189 * reloc-types.h (struct Reloc_types) [both versions]: Add
17190 get_reloc_addend_noerror.
17191 * output.h (class Output_data_reloc<elfcpp::SHT_REL>): Add
17192 variants of add_global which take an addend which must be zero.
17193 * i386.cc: Include "copy-relocs.h".
17194 (class Target_i386): Change type of copy_relocs_ to variable,
17195 update initializer.
17196 (Target_i386::copy_reloc): Rewrite to pass to Copy_relocs class.
17197 Change all callers.
17198 (Target_i386::do_finalize_sections): Change handling of
17199 copy_relocs_.
17200 * sparc.cc: Include "copy-relocs.h".
17201 (class Target_sparc): Change type of copy_relocs_ to variable,
17202 update initializer.
17203 (Target_sparc::copy_reloc): Rewrite to pass to Copy_relocs class.
17204 Change all callers.
17205 (Target_sparc::do_finalize_sections): Change handling of
17206 copy_relocs_.
17207 * x86_64.cc: Include "copy-relocs.h".
17208 (class Target_x86_64): Change type of copy_relocs_ to variable,
17209 update initializer.
17210 (Target_x86_64::copy_reloc): Rewrite to pass to Copy_relocs
17211 class. Change all callers.
17212 (Target_x86_64::do_finalize_sections): Change handling of
17213 copy_relocs_.
17214 * Makefile.am (CCFILES): Add copy-relocs.cc.
17215 (HFILES): Add copy-relocs.h.
17216
17217 * Makefile.in, aclocal.m4, testsuite/Makefile.in: Rebuild.
17218
17219 * testsuite/script_test_4.sh: Permit leading zeroes.
17220
17221 2008-04-15 Ian Lance Taylor <iant@google.com>
17222
17223 * script-sections.cc (Script_sections::create_segments): Use
17224 header_size_adjustment even when there is enough room for the
17225 headers.
17226 * testsuite/script_test_4.sh: New file.
17227 * testsuite/script_test_4.t: New file.
17228 * testsuite/Makefile.am (check_SCRIPTS): Add script_test_4.sh.
17229 (check_DATA): Add script_test_4.stdout.
17230 (MOSTLYCLEANFILES): Likewise.
17231 (script_test_4): New target.
17232 (script_test_4.stdout): New target.
17233 * testsuite/Makefile.in: Rebuild.
17234
17235 * sparc.cc: Add definitions for Output_data_plt_sparc class
17236 constants.
17237
17238 2008-04-14 David S. Miller <davem@davemloft.net>
17239
17240 * sparc.cc: New file.
17241 * Makefile.am (TARGETSOURCES): Add sparc.cc
17242 (ALL_TARGETOBJS): Add sparc.$(OBJEXT)
17243 * configure.tgt: Document targ_extra_size and
17244 targ_extra_big_endian. Add entries for sparc-* and
17245 sparc64-*.
17246 * configure.ac: Handle targ_extra_size and
17247 targ_extra_big_endian.
17248 * Makefile.in: Rebuild.
17249 * configure: Likewise.
17250 * po/POTFILES.in: Likewise.
17251 * po/gold.pot: Likewise.
17252
17253 2008-04-14 Ian Lance Taylor <iant@google.com>
17254
17255 * layout.cc (Layout::Layout): Initialize sections_are_attached_.
17256 (Layout::get_output_section): Ignore SHF_WRITE and SHF_EXECINSTR
17257 in the name/type/flags to section mapping. Don't call
17258 allocate_output_section.
17259 (Layout::choose_output_section): Change parameter from adjust_name
17260 to is_input_section. Don't permit input sections after sections
17261 are attached to segments. Don't call allocate_output_section.
17262 (Layout::layout_eh_frame): Call update_flags_for_input_section,
17263 not write_enable_output_section.
17264 (Layout::make_output_section): Don't push to
17265 unattached_section_list_ nor call attach_to_segment. Call
17266 attach_section_to_segment if sections are attached.
17267 (Layout::attach_sections_to_segments): New function.
17268 (Layout::attach_section_to_segment): New function.
17269 (Layout::attach_allocated_section_to_segment): Rename from
17270 attach_to_segment. Remove flags parameter.
17271 (Layout::allocate_output_section): Remove function.
17272 (Layout::write_enable_output_section): Remove function.
17273 * layout.h (class Layout): Update for above changes. Add new
17274 field sections_are_attached_.
17275 * output.h (Output_section::update_flags_for_input_section): New
17276 function.
17277 * output.cc (Output_section::add_input_section): Call
17278 update_flags_for_input_section.
17279 * gold.cc (queue_middle_tasks): Call attach_sections_to_segments.
17280
17281 2008-04-11 Cary Coutant <ccoutant@google.com>
17282
17283 * i386.cc (Target_i386::got_mod_index_entry): Restore code previously
17284 thought unnecessary.
17285 * x86_64.cc (Target_x86_64::got_mod_index_entry): Likewise.
17286
17287 2008-04-11 Ian Lance Taylor <iant@google.com>
17288
17289 * output.h (class Output_section_data): Remove inline definition
17290 of set_addralign.
17291 * output.cc (Output_section_data::set_addralign): New function.
17292
17293 2008-04-11 Cary Coutant <ccoutant@google.com>
17294
17295 Add support for TLS descriptors for i386 and x86_64.
17296 * i386.cc (Target_i386::Relocate::tls_desc_gd_to_ie): New function.
17297 (Target_i386::Relocate::tls_desc_gd_to_le): New function.
17298 (Target_i386::Got_type): Add GOT_TYPE_TLS_NOFFSET and
17299 GOT_TYPE_TLS_DESC.
17300 (Target_i386::got_mod_index_entry): Remove unnecessary code.
17301 (Target_i386::Scan::local): Implement R_386_TLS_GOTDESC and
17302 R_386_TLS_DESC_CALL relocations. Fix problem with initial-exec
17303 relocations.
17304 (Target_i386::Scan::global): Fix problem with GD-to-IE relaxation.
17305 Implement R_386_TLS_GOTDESC and R_386_TLS_DESC_CALL relocations;
17306 Fix problem with initial-exec relocations.
17307 (Target_i386::Relocate::relocate_tls): Likewise.
17308 (Target_i386::Relocate::tls_gd_to_ie): Fix problem with GD-to-IE
17309 relaxation.
17310 * output.cc (Output_data_dynamic::Dynamic_entry::write): Add
17311 support for section-plus-offset dynamic table entries.
17312 * output.h (Output_data_dynamic::add_section_plus_offset): New function.
17313 (Output_data_dynamic::Dynamic_entry): Add support for
17314 section-plus-offset dynamic table entries.
17315 (Output_data_dynamic::Classification): Likewise.
17316 (Output_data_dynamic::classification_): Renamed offset_.
17317 * x86_64.cc (Target_x86_64::Relocate::tls_desc_gd_to_ie): New function.
17318 (Target_x86_64::Relocate::tls_desc_gd_to_le): New function.
17319 (Target_x86_64::make_plt_section): New function.
17320 (Target_x86_64::reserve_tlsdesc_entries): New function.
17321 (Output_data_plt_x86_64::Output_data_plt_x86_64): Add new parameter.
17322 (Output_data_plt_x86_64::reserve_tlsdesc_entry): New function.
17323 (Output_data_plt_x86_64::has_tlsdesc_entry): New function.
17324 (Output_data_plt_x86_64::get_tlsdesc_got_offset): New function.
17325 (Output_data_plt_x86_64::get_tlsdesc_plt_offset): New function.
17326 (Output_data_plt_x86_64::tlsdesc_plt_entry): New field.
17327 (Output_data_plt_x86_64::set_final_data_size): Move out of line;
17328 add extra PLT entry for TLS descriptors.
17329 (Output_data_plt_x86_64::got_): New field.
17330 (Output_data_plt_x86_64::tlsdesc_got_offset_): New field.
17331 (Output_data_plt_x86_64::Output_data_plt_x86_64): Initialize new
17332 fields.
17333 (Output_data_plt_x86_64::do_write): Write extra PLT entry for TLS
17334 descriptors.
17335 (Target_x86_64::make_plt_entry): Factor out make_plt_section.
17336 (Target_x86_64::got_mod_index_entry): Remove unnecessary code.
17337 (Target_x86_64::Scan::local): Implement R_386_TLS_GOTDESC and
17338 R_386_TLS_DESC_CALL relocations.
17339 (Target_x86_64::Scan::global): Likewise.
17340 (Target_x86_64::do_finalize_sections): Add dynamic table entries
17341 for TLS descriptors.
17342 (Relocate::relocate_tls): Fix problem with GD-to-IE relaxation.
17343 Implement R_386_TLS_GOTDESC and R_386_TLS_DESC_CALL relocations.
17344 (Target_x86_64::Relocate::tls_gd_to_ie): Fix problem with
17345 GD-to-IE relaxation.
17346 * configure.ac: Export new conditional variables TLS_GNU2_DIALECT
17347 and TLS_DESCRIPTORS.
17348 * Makefile.in: Rebuild.
17349 * configure: Rebuild.
17350 * testsuite/Makefile.am (tls_shared_gd_to_ie_test): New target.
17351 (tls_test_shared2.so): New target.
17352 (tls_shared_gd_to_ie_test_SOURCES): New variable.
17353 (tls_shared_gd_to_ie_test_DEPENDENCIES): New variable.
17354 (tls_shared_gd_to_ie_test_LDFLAGS): New variable.
17355 (tls_shared_gd_to_ie_test_LDADD): New variable.
17356 (tls_shared_gnu2_gd_to_ie_test): New target.
17357 (tls_test_gnu2.o, tls_test_file2_gnu2.o, tls_test_gnu2_shared2.so):
17358 New targets.
17359 (tls_shared_gnu2_gd_to_ie_test_SOURCES): New variable.
17360 (ls_shared_gnu2_gd_to_ie_test_DEPENDENCIES): New variable.
17361 (tls_shared_gnu2_gd_to_ie_test_LDFLAGS): New variable.
17362 (tls_shared_gnu2_gd_to_ie_test_LDADD): New variable.
17363 (tls_shared_gnu2_test): New target.
17364 (tls_test_gnu2_shared.so): New target.
17365 (tls_shared_gnu2_test_SOURCES): New variable.
17366 (tls_shared_gnu2_test_DEPENDENCIES): New variable.
17367 (tls_shared_gnu2_test_LDFLAGS): New variable.
17368 (tls_shared_gnu2_test_LDADD): New variable.
17369 * testsuite/Makefile.in: Rebuild.
17370 * testsuite/Makefile.
17371
17372 2008-04-11 Ian Lance Taylor <iant@google.com>
17373
17374 * testsuite/Makefile.am (justsyms_2r.o): Add dependency on
17375 justsyms.t.
17376 * testsuite/Makefile.in: Rebuild.
17377
17378 * testsuite/script_test_2a.cc (script_test_string_a): Make 8 bytes
17379 long.
17380 * testsuite/script_test_2.cc (main): Adjust test.
17381
17382 2008-04-11 David S. Miller <davem@davemloft.net>
17383 Ian Lance Taylor <iant@google.com>
17384
17385 * options.h (General_options): Add entries for '-Y' and
17386 '-relax'.
17387 * options.cc (General_options:finalize): If -Y was used, add those
17388 entries to the library path instead of the default "/lib" and
17389 "/usr/lib".
17390
17391 2008-04-11 David S. Miller <davem@davemloft.net>
17392
17393 * testsuite/justsyms.t: Start at 0x100.
17394 * testsuite/justsyms_1.cc: Adjust justsyms_string assertion.
17395 * testsuite/script_test_2b.cc (script_test_string_b): Make 8 bytes
17396 long.
17397 * testsuite/script_test_2.cc: Adjust string and section length
17398 checks.
17399
17400 2008-04-09 Ian Lance Taylor <iant@google.com>
17401
17402 PR gold/5996
17403 * script-sections.cc (Sections_element::allocate_to_segment): Add
17404 orphan parameter.
17405 (Output_section_definition::allocate_to_segment): Likewise.
17406 (Orphan_output_section::allocate_to_segment): Likewise.
17407 (Script_sections::attach_sections_using_phdrs_clause): Don't
17408 propagate non-PT_LOAD segments to orphan sections.
17409 * testsuite/Makefile.am (script_test_3.stdout): Generate using
17410 readelf rather than objdump.
17411 * testsuite/script_test_3.sh: Adjust accordingly. Test that
17412 .interp section and PT_INTERP segment are the same size.
17413 * testsuite/Makefile.in: Rebuild.
17414
17415 * symtab.cc (Symbol_table::add_from_dynobj): Only look for weak
17416 aliases for symbols defined in the same object.
17417 * testsuite/Makefile.am (check_PROGRAMS): Add weak_alias_test.
17418 (weak_alias_test_SOURCES): New variable.
17419 (weak_alias_test_DEPENDENCIES): New variable.
17420 (weak_alias_test_LDFLAGS): New variable.
17421 (weak_alias_test_LDADD): New variable.
17422 (weak_alias_test_1_pic.o, weak_alias_test_1.so): New targets.
17423 (weak_alias_test_2_pic.o, weak_alias_test_2.so): New targets.
17424 (weak_alias_test_3.o): New target.
17425 (weak_alias_test_4_pic.o, weak_alias_test_4.so): New targets.
17426 * testsuite/weak_alias_test_main.cc: New file.
17427 * testsuite/weak_alias_test_1.cc: New file.
17428 * testsuite/weak_alias_test_2.cc: New file.
17429 * testsuite/weak_alias_test_3.cc: New file.
17430
17431 2008-04-08 Ian Lance Taylor <iant@google.com>
17432
17433 * options.h (class General_options): Add --noinhibit-exec option.
17434 * main.cc (main): Check --noinhibit-exec.
17435
17436 * options.h (class General_options): Define --wrap as a special
17437 option. Add wrap_symbols_ field.
17438 (General_options::any_wrap_symbols): New function.
17439 (General_options::is_wrap_symbol): New function.
17440 * options.cc (General_options::parse_wrap): New function.
17441 (General_options::General_options): Initialize wrap_symbols_.
17442 * symtab.cc (Symbol_table::wrap_symbol): New function.
17443 (Symbol_table::add_from_object): Handle --wrap.
17444 * symtab.h (class Symbol_table): Declare wrap_symbol.
17445 * target.h (Target::wrap_char): New function.
17446 (Target::Target_info): Add wrap_char field.
17447 * i386.cc (Target_i386::i386_info): Initialize wrap_char.
17448 * x86_64.cc (Target_x86_64::x86_64_info): Likewise.
17449 * testsuite/testfile.cc (Target_test::test_target_info):
17450 Likewise.
17451
17452 * errors.cc (Errors::undefined_symbol): Mention symbol version if
17453 there is one.
17454
17455 * layout.h (class Layout): Add added_eh_frame_data_ field.
17456 * layout.cc (Layout::Layout): Initialize new field.
17457 (Layout::layout_eh_frame): Don't add eh_frame_data_ to .eh_frame
17458 output section until we find a section we merged successfully.
17459 * object.cc (Sized_relobj::check_eh_frame_flags): Don't require
17460 that the size be non-zero.
17461
17462 * merge.cc (Object_merge_map::get_output_offset): Remove inline
17463 qualifier.
17464
17465 2008-04-08 Craig Silverstein <csilvers@google.com>
17466
17467 * configure.ac: Export new conditional variable HAVE_ZLIB.
17468 * testsuite/Makefile.am (flagstest_o_specialfile): Condition
17469 on HAVE_ZLIB.
17470 (flagstest_o_specialfile_and_compress_debug_sections): Likewise.
17471 * configure, Makefile.in, testsuite/Makefile.in: Rebuild.
17472
17473 2008-04-07 Ian Lance Taylor <iant@google.com>
17474
17475 * version.cc (version_string): Set to "1.5".
17476
17477 * x86_64.cc (Target_x86_64::Scan): Change from struct to class.
17478 Add issued_non_pic_error_ field. Declare check_non_pic.
17479 (Target_x86_64::Scan::check_non_pic): New function.
17480 (Target_x86_64::Scan::local): Call check_non_pic as appropriate.
17481 (Target_x86_64::Scan::global): Likewise.
17482
17483 * output.cc (Output_reloc<SHT_REL>::local_section_offset): Add
17484 addend parameter. Change caller. Handle merge sections.
17485 (Output_reloc<SHT_REL>::symbol_value): Change parameter type from
17486 Address to Addend. Don't add in the result of
17487 local_section_offset, pass down the addend and use the returned
17488 value.
17489 * output.h (class Output_reloc<SHT_REL>): Add Addend typedef.
17490 Update declarations of local_section_offset and symbol_value.
17491 * testsuite/two_file_test_1.cc (t18): New function.
17492 * testsuite/two_file_test_2.cc (f18): New function.
17493 * testsuite/two_file_test_main.cc (main): Call t18.
17494 * testsuite/two_file_test.h (t18, f18): Declare.
17495
17496 * configure.ac: Don't test for objdump, c++filt, or readelf.
17497 * testsuite/Makefile.am: Remove READELF and OBJDUMP_AND_CPPFILT
17498 conditionals.
17499 (TEST_READELF): New variable.
17500 (TEST_OBJDUMP, TEST_CXXFILT, TEST_STRIP): New variables.
17501 (check_PROGRAMS): Add two_file_strip_test.
17502 (two_file_strip_test): New target.
17503 (check_PROGRAMS): Add two_file_same_shared_strip_test.
17504 (two_file_same_shared_strip_test_SOURCES): New variable.
17505 (two_file_same_shared_strip_test_DEPENDENCIES): New variable.
17506 (two_file_same_shared_strip_test_LDFLAGS): New variable.
17507 (two_file_same_shared_strip_test_LDADD): New variable.
17508 (two_file_shared_strip.so): New target.
17509 (ver_test_2.syms, ver_test_4.syms): Use TEST_READELF.
17510 (ver_test_5.syms, ver_test_7.syms): Likewise.
17511 (ver_matching_test.stdout): Use TEST_OBJDUMP and TEST_CXXFILT.
17512 (strip_test_3.stdout): Use TEST_OBJDUMP.
17513 * configure, Makefile.in, testsuite/Makefile.in: Rebuild.
17514
17515 2008-04-04 Cary Coutant <ccoutant@google.com>
17516
17517 * symtab.h (Symbol::is_weak_undefined): New function.
17518 (Symbol::is_strong_undefined): New function.
17519 (Symbol::is_absolute): New function.
17520 (Symbol::needs_plt_entry): Exclude weak undefined symbols.
17521 (Symbol::needs_dynamic_reloc): Exclude weak undefined and
17522 absolute symbols.
17523 * testsuite/Makefile.am (check_PROGRAMS): Add weak_undef_test.
17524 (weak_undef_test): New target.
17525 * testsuite/Makefile.in: Rebuild.
17526 * testsuite/weak_undef_file1.cc: New file.
17527 * testsuite/weak_undef_file2.cc: New file.
17528 * testsuite/weak_undef_test.cc: New file.
17529
17530 2008-04-03 Craig Silverstein <csilvers@google.com>
17531
17532 * compressed_output.h (class Output_compressed_section): Use
17533 unsigned buffer.
17534 * compressed_output.cc (zlib_compress): Use unsigned buffers,
17535 add zlib header.
17536 (zlib_compressed_suffix): Removed.
17537 (Output_compressed_section::set_final_data_size): Use unsigned
17538 buffers.
17539 * testsuite/Makefile.am (flagstest_compress_debug_sections):
17540 Fix linker invocation.
17541 (flagstest_o_specialfile_and_compress_debug_sections):
17542 Likewise.
17543 * testsuite/Makefile.in: Regenerated.
17544
17545 2008-04-02 David S. Miller <davem@davemloft.net>
17546
17547 * dwarf_reader.cc (Sized_dwarf_line_info::read_header_prolog,
17548 Sized_dwarf_line_info::process_one_opcode): Use Swap_unaligned.
17549
17550 2008-04-02 Craig Silverstein <csilvers@google.com>
17551
17552 * TODO: New file.
17553
17554 2008-04-02 Ian Lance Taylor <iant@google.com>
17555
17556 * fileread.cc (File_read::find_view): Add byteshift and vshifted
17557 parameters. Update for new key type to views_. Change all
17558 callers.
17559 (File_read::read): Adjust for byteshift in returned view.
17560 (File_read::add_view): New function, broken out of
17561 find_and_make_view.
17562 (File_read::make_view): New function, broken out of
17563 find_and_make_view.
17564 (File_read::find_or_make_view): Add offset and aligned
17565 parameters. Rewrite accordingly. Change all callers.
17566 (File_read::get_view): Add offset and aligned parameters. Adjust
17567 for byteshift in return value.
17568 (File_read::get_lasting_view): Likewise.
17569 * fileread.h (class File_read): Update declarations.
17570 (class File_read::View): Add byteshift_ field. Add byteshift to
17571 constructor. Add byteshift method.
17572 * archive.h (Archive::clear_uncached_views): New function.
17573 (Archive::get_view): Add aligned parameter. Change all callers.
17574 * object.h (Object::get_view): Add aligned parameter. Change all
17575 callers.
17576 (Object::get_lasting_view): Likewise.
17577
17578 * fileread.cc (File_read::release): Don't call clear_views if
17579 there are multiple objects.
17580 * fileread.h (File_read::clear_uncached_views): New function.
17581 * archive.cc (Add_archive_symbols::run): Call clear_uncached_views
17582 on the archive.
17583
17584 2008-03-31 Cary Coutant <ccoutant@google.com>
17585
17586 Add thin archive support.
17587 * archive.cc (Archive::armagt): New const.
17588 (Archive::setup): Remove task parameter and calls to unlock.
17589 (Archive::unlock_nested_archives): New function.
17590 (Archive::read_header): Add nested_off parameter. Change
17591 all callers.
17592 (Archive::interpret_header): Likewise.
17593 (Archive::include_all_members): Change to handle thin
17594 archives.
17595 (Archive::include_member): Likewise.
17596 * archive.h (Archive::Archive): Add new parameters and
17597 initializers.
17598 (Archive::armagt): New const.
17599 (Archive::setup): Remove task parameter.
17600 (Archive::unlock_nested_archives): New function.
17601 (Archive::read_header): Add nested_off parameter.
17602 (Archive::interpret_header): Likewise.
17603 (Archive::Nested_archive_table): New typedef.
17604 (Archive::is_thin_archive_): New field.
17605 (Archive::nested_archives_): New field.
17606 (Archive::options_): New field.
17607 (Archive::dirpath_): New field.
17608 (Archive::task_): New field.
17609 * readsyms.cc (Read_symbols::do_read_symbols): Add check
17610 for thin archives. Pass additional parameters to
17611 Archive::Archive. Unlock the archive file after calling
17612 Archive::setup.
17613
17614 2008-03-29 Ian Lance Taylor <iant@google.com>
17615
17616 * symtab.cc (Symbol_table::do_define_as_constant): Don't force a
17617 version symbol to be local.
17618 * testsuite/ver_test_4.sh: New file.
17619 * testsuite/Makefile.am (check_SCRIPTS): Add ver_test_4.sh.
17620 (check_DATA): Add ver_test_4.syms.
17621 (ver_test_4.syms): New target.
17622 * testsuite/Makefile.in: Rebuild.
17623
17624 * output.cc
17625 (Output_section::Input_section_sort_entry::has_priority): New
17626 function.
17627 (Output_section::Input_section_sort_entry::match_file_name): New
17628 function.
17629 (Output_section::Input_section_sort_entry::match_section_name):
17630 Remove.
17631 (Output_section::Input_section_sort_entry::match_section_name_prefix):
17632 Remove.
17633 (Output_section::Input_section_sort_entry::match_section_file):
17634 Remove.
17635 (Output_section::Input_section_sort_compare::operator()): Rewrite
17636 using new Input_section_sort_entry functions. Sort crtbegin and
17637 crtend first. Sort sections with no priority before sections with
17638 a priority.
17639 * testsuite/initpri1.c (d3): Check j != 4.
17640 (cd5): New constructor/destructor function.
17641 (main): Check j != 2.
17642
17643 * symtab.cc (Symbol_table::add_from_object): If we don't use the
17644 new symbol when resolving, don't call set_is_default.
17645 * testsuite/ver_test_7.cc: New file.
17646 * testsuite/ver_test_7.sh: New file.
17647 * testsuite/Makefile.am (ver_test_7.so): New target.
17648 (ver_test_7.o): New target.
17649 (check_SCRIPTS): Add ver_test_7.sh.
17650 (check_DATA): Add ver_test_7.syms.
17651 (ver_test_7.syms): New target.
17652
17653 2008-03-28 Ian Lance Taylor <iant@google.com>
17654
17655 * layout.cc (Layout::layout): If we see an input section with a
17656 name that needs sorting, set the must_sort flag for the output
17657 section.
17658 (Layout::make_output_section): If the name of the output section
17659 indicates that it might require sorting, set the may_sort flag.
17660 * output.h (Output_section::may_sort_attached_input_sections): New
17661 function.
17662 (Output_section::set_may_sort_attached_input_sections): New
17663 function.
17664 (Output_section::must_sort_attached_input_sections): New
17665 function.
17666 (Output_section::set_must_sort_attached_input_sections): New
17667 function.
17668 (class Output_section): Declare Input_section_sort_entry. Define
17669 Input_section_sort_compare. Declare
17670 sort_attached_input_sections. Add new fields:
17671 may_sort_attached_input_sections_,
17672 must_sort_attached_input_sections_,
17673 attached_input_sections_are_sorted_.
17674 * output.cc (Output_section::Output_section): Initialize new
17675 fields.
17676 (Output_section::add_input_section): Add an entry to
17677 input_sections_ if may_sort or must_sort are true.
17678 (Output_section::set_final_data_size): Call
17679 sort_attached_input_sections if necessary.
17680 (Output_section::Input_section_sort_entry): Define new class.
17681 (Output_section::Input_section_sort_compare::operator()): New
17682 function.
17683 (Output_section::sort_attached_input_sections): New function.
17684 * configure.ac: Check whether the compiler supports constructor
17685 priorities. Define a CONSTRUCTOR_PRIORITY automake conditional.
17686 * testsuite/initpri1.c: New file.
17687 * testsuite/Makefile.am (check_PROGRAMS): Add initpri1 if
17688 CONSTRUCTOR_PRIORITY.
17689 (initpri1_SOURCES, initpri1_DEPENDENCIES): New variables.
17690 (initpri1_LDFLAGS): New variable.
17691 * configure, Makefile.in, testsuite/Makefile.in: Rebuild.
17692
17693 2008-03-27 Ian Lance Taylor <iant@google.com>
17694
17695 * common.cc (Sort_commons::operator): Correct sorting algorithm.
17696 * testsuite/common_test_1.c: New file.
17697 * testsuite/Makefile.am (check_PROGRAMS): Add common_test_1.
17698 (common_test_1_SOURCES): New variable.
17699 (common_test_1_DEPENDENCIES): New variable.
17700 (common_test_1_LDFLAGS): New variable.
17701
17702 * symtab.cc (Symbol_table::add_from_object): Handle saw_undefined_
17703 and commons_ correctly when NAME/VERSION does not override
17704 NAME/NULL.
17705 * testsuite/ver_test_6.c: New file.
17706 * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_6
17707 (ver_test_6_SOURCES, ver_test_6_DEPENDENCIES): New variables.
17708 (ver_test_6_LDFLAGS, ver_test_6_LDADD): New variables.
17709
17710 2008-03-26 Ian Lance Taylor <iant@google.com>
17711
17712 * symtab.cc (Symbol_table::add_from_relobj): Don't set the version
17713 of an undefined symbol from a version script.
17714 * testsuite/Makefile.am (ver_test_5.so): New target.
17715 (ver_test_5.o): New target.
17716 (check_SCRIPTS): Add ver_test_5.sh.
17717 (check_DATA): Add ver_test_5.syms.
17718 (ver_test_5.syms): New target.
17719 * testsuite/ver_test_5.cc: New file.
17720 * testsuite/ver_test_5.script: New file.
17721 * testsuite/ver_test_5.sh: New file.
17722 * Makefile.in, testsuite/Makefile.in: Rebuild.
17723
17724 PR gold/5986
17725 Fix problems building gold with gcc 4.3.0.
17726 * gold.h (TEMPLATE_ATTRIBUTE_PRINTF_4): Define.
17727 (gold_error_at_location, gold_warning_at_location): Use it.
17728 * configure.ac: Check whether we can compile and use a template
17729 function with a printf attribute.
17730 * x86_64.cc (Target_x86_64::do_code_fill): Swap out a 32-bit value
17731 when jumping over bytes.
17732 * object.cc: Instantiate Object::read_section_data.
17733 * debug.h: Include <cstring>
17734 * dwarf_reader.cc: Include <algorithm>
17735 * main.cc: Include <cstring>.
17736 * options.cc: Include <cstring>.
17737 * output.cc: Include <cstring>.
17738 * script.cc: Include <cstring>.
17739 * script.h: Include <string>.
17740 * symtab.cc: Include <cstring> and <algorithm>.
17741 * target-select.cc: Include <cstring>.
17742 * version.cc: Include <string>.
17743 * testsuite/testmain.cc: Include <cstdlib>.
17744 * configure, config.in: Rebuild.
17745
17746 2008-03-25 Ian Lance Taylor <iant@google.com>
17747
17748 * options.cc: Include "../bfd/bfdver.h".
17749 (options::help): Print bug reporting address.
17750
17751 * version.cc (print_version): Adjust output for current value of
17752 BFD_VERSION_STRING.
17753
17754 * NEWS: New file.
17755
17756 * options.cc (options::help): Print list of supported targets.
17757 * target-select.h: Include <vector>.
17758 (class Target_selector): Make machine_, size_, and is_big_endian_
17759 fields const. Add bfd_name_ and instantiated_target_ fields.
17760 (Target_selector::Target_selector): Add bfd_name parameter.
17761 (Target_selector::recognize): Make non-virtual, call
17762 do_recognize.
17763 (Target_selector::recognize_by_name): Make non-virtual, call
17764 do_recognize_by_name.
17765 (Target_selector::supported_names): New function.
17766 (Target_selector::bfd_name): New function.
17767 (Target_selector::do_instantiate_target): New pure virtual
17768 function.
17769 (Target_selector::do_recognize): New virtual function.
17770 (Target_selector::do_recognize_by_name): New virtual function.
17771 (Target_selector::instantiate_target): New private function.
17772 (supported_target_names): Declare.
17773 * target-select.cc (Target_selector::Target_selector): Update for
17774 new parameter and fields.
17775 (select_target_by_name): Check that the name matches before
17776 calling recognize_by_name.
17777 (supported_target_names): New function.
17778 * i386.cc (class Target_selector_i386): Update Target_selector
17779 constructor call. Remove recognize and recognize_by_name. Add
17780 do_instantiate_target.
17781 * x86_64.cc (class Target_selector_x86_64): Likewise.
17782 * testsuite/testfile.cc (class Target_selector_test): Update for
17783 changes to Target_selector.
17784
17785 * README: Rewrite, with some notes on unsupported features.
17786
17787 2008-03-24 Cary Coutant <ccoutant@google.com>
17788
17789 * i386.cc (Target_i386::Got_type): New enum declaration.
17790 (Target_i386::Scan::local): Updated callers of Output_data_got
17791 member functions.
17792 (Target_i386::Scan::global): Likewise.
17793 (Target_i386::Relocate::relocate): Likewise.
17794 (Target_i386::Relocate::relocate_tls): Likewise.
17795 * object.h (Got_offset_list): New class.
17796 (Sized_relobj::local_has_got_offset): Added got_type parameter.
17797 (Sized_relobj::local_got_offset): Likewise.
17798 (Sized_relobj::set_local_got_offset): Likewise.
17799 (Sized_relobj::local_has_tls_got_offset): Removed.
17800 (Sized_relobj::local_tls_got_offset): Removed.
17801 (Sized_relobj::set_local_tls_got_offset): Removed.
17802 (Sized_relobj::Local_got_offsets): Changed to store a list of offsets.
17803 * output.cc (Output_data_got::add_global): Added got_type parameter.
17804 (Output_data_got::add_global_with_rel): Likewise.
17805 (Output_data_got::add_global_with_rela): Likewise.
17806 (Output_data_got::add_global_pair_with_rel): New function.
17807 (Output_data_got::add_global_pair_with_rela): New function.
17808 (Output_data_got::add_local): Added got_type parameter.
17809 (Output_data_got::add_local_with_rel): Likewise.
17810 (Output_data_got::add_local_with_rela): Likewise.
17811 (Output_data_got::add_local_pair_with_rel): New function.
17812 (Output_data_got::add_local_pair_with_rela): New function.
17813 (Output_data_got::add_global_tls): Removed.
17814 (Output_data_got::add_global_tls_with_rel): Removed.
17815 (Output_data_got::add_global_tls_with_rela): Removed.
17816 (Output_data_got::add_local_tls): Removed.
17817 (Output_data_got::add_local_tls_with_rel): Removed.
17818 (Output_data_got::add_local_tls_with_rela): Removed.
17819 * output.h (Output_data_got::add_global): Added got_type parameter.
17820 (Output_data_got::add_global_with_rel): Likewise.
17821 (Output_data_got::add_global_with_rela): Likewise.
17822 (Output_data_got::add_global_pair_with_rel): New function.
17823 (Output_data_got::add_global_pair_with_rela): New function.
17824 (Output_data_got::add_local): Added got_type parameter.
17825 (Output_data_got::add_local_with_rel): Likewise.
17826 (Output_data_got::add_local_with_rela): Likewise.
17827 (Output_data_got::add_local_pair_with_rel): New function.
17828 (Output_data_got::add_local_pair_with_rela): New function.
17829 (Output_data_got::add_global_tls): Removed.
17830 (Output_data_got::add_global_tls_with_rel): Removed.
17831 (Output_data_got::add_global_tls_with_rela): Removed.
17832 (Output_data_got::add_local_tls): Removed.
17833 (Output_data_got::add_local_tls_with_rel): Removed.
17834 (Output_data_got::add_local_tls_with_rela): Removed.
17835 * resolve.cc (Symbol::override_base_with_special): Removed
17836 reference to has_got_offset_ field.
17837 * symtab.cc (Symbol::init_fields): Replaced initialization
17838 of got_offset_ with got_offsets_. Removed initialization
17839 of has_got_offset_
17840 * symtab.h (Symbol::has_got_offset): Aded got_type parameter.
17841 (Symbol::got_offset): Likewise.
17842 (Symbol::set_got_offset): Likewise.
17843 (Symbol::has_tls_got_offset): Removed.
17844 (Symbol::tls_got_offset): Removed.
17845 (Symbol::set_tls_got_offset): Removed.
17846 (Symbol::got_offset_): Removed.
17847 (Symbol::tls_mod_got_offset_): Removed.
17848 (Symbol::tls_pair_got_offset_): Removed.
17849 (Symbol::got_offsets_): New field.
17850 (Symbol::has_got_offset): Removed.
17851 (Symbol::has_tls_mod_got_offset): Removed.
17852 (Symbol::has_tls_pair_got_offset): Removed.
17853 * x86_64.cc (Target_x86_64::Got_type): New enum declaration.
17854 (Target_x86_64::Scan::local): Updated callers of Output_data_got
17855 member functions.
17856 (Target_x86_64::Scan::global): Likewise.
17857 (Target_x86_64::Relocate::relocate): Likewise.
17858 (Target_x86_64::Relocate::relocate_tls): Likewise.
17859
17860 2008-03-25 Ben Elliston <bje@au.ibm.com>
17861
17862 * yyscript.y: Fix spelling error in comment.
17863
17864 2008-03-24 Ian Lance Taylor <iant@google.com>
17865
17866 * options.h (class General_options): Define build_id option.
17867 * layout.h (class Layout): Declare write_build_id, create_note,
17868 create_build_id. Add build_id_note_ member.
17869 * layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
17870 "libiberty.h", "md5.h", "sha1.h".
17871 (Layout::Layout): Initialize eh_frame_data_,
17872 eh_frame_hdr_section_, and build_id_note_.
17873 (Layout::finalize): Call create_build_id.
17874 (Layout::create_note): New function, broken out of
17875 Layout::create_gold_note.
17876 (Layout::create_gold_note): Call create_note.
17877 (Layout::create_build_id): New function.
17878 (Layout::write_build_id): New function.
17879 (Close_task_runner::run): Call write_build_id.
17880
17881 * x86_64.cc: Correct license to GPLv3.
17882
17883 2008-03-23 Ian Lance Taylor <iant@google.com>
17884
17885 * options.cc: Include "demangle.h".
17886 (parse_optional_string): New function.
17887 (parse_long_option): Handle takes_optional_argument.
17888 (parse_short_option): Update dash_z initializer. Handle
17889 takes_optional_argument.
17890 (General_options::General_options): Initialize do_demangle_.
17891 (General_options::finalize): Set do_demangle_. Handle demangling
17892 style.
17893 * options.h (parse_optional_string): Declare.
17894 (struct One_option): Add optional_arg field. Update constructor.
17895 Update call constructor calls. Add takes_optional_argument
17896 function.
17897 (DEFINE_var): Add optional_arg__ parameter. Change all callers.
17898 (DEFINE_optional_string): Define.
17899 (General_options::demangle): Change from DEFINE_bool to
17900 DEFINE_optional_string.
17901 (General_options::no_demangle): New function.
17902 (General_options::do_demangle): New function.
17903 (General_options::set_do_demangle): New function.
17904 (General_options::execstack_status_): Move definition to end of
17905 class definition.
17906 (General_options::static_): Likewise.
17907 (General_options::do_demangle_): New field.
17908 * object.cc (big_endian>::get_symbol_location_info): Call
17909 Options::do_demangle, not Options::demangle.
17910 * symtab.cc (demangle): Likewise.
17911
17912 2008-03-22 Ian Lance Taylor <iant@google.com>
17913
17914 * gold.h: Include <cstddef> and <sys/types.h>
17915 * options.h: Include <cstring>.
17916
17917 2008-03-21 Ian Lance Taylor <iant@google.com>
17918
17919 * Added source code to GNU binutils.
17920 \f
17921 Copyright (C) 2008-2015 Free Software Foundation, Inc.
17922
17923 Copying and distribution of this file, with or without modification,
17924 are permitted in any medium without royalty provided the copyright
17925 notice and this notice are preserved.
17926
17927 Local Variables:
17928 mode: change-log
17929 left-margin: 8
17930 fill-column: 74
17931 version-control: never
17932 End:
This page took 0.377051 seconds and 5 git commands to generate.