Fix --no-as-needed when shared library is listed twice on the command line.
[deliverable/binutils-gdb.git] / gold / ChangeLog
1 2015-08-25 Cary Coutant <ccoutant@gmail.com>
2
3 PR gold/18859
4 * object.cc (Input_objects::add_object): Store objects in a map,
5 indexed by soname; update as-needed flag when necessary.
6 * object.h (Object::clear_as_needed): New method.
7 (Input_objects::so_names_): Change from set to map.
8
9 2015-08-25 Cary Coutant <ccoutant@gmail.com>
10
11 PR gold/14746
12 * expression.cc (Expression::Expression_eval_info): Add
13 is_valid_pointer field.
14 (Expression::eval_maybe_dot): Add is_valid_pointer parameter.
15 Adjust all callers.
16 (Addr_expression::value_from_output_section): Check whether address
17 is valid.
18 * script.cc (Symbol_assignment::set_if_absolute): Defer assignment
19 if evaluation failed due to address that is not yet valid.
20 * script.h: (Expression::eval_maybe_dot): Add is_valid_pointer
21 parameter.
22
23 2015-08-25 Cary Coutant <ccoutant@gmail.com>
24
25 PR gold/18866
26 PR gold/18703
27 * symtab.cc (Symbol_table): Reorder conditions to avoid internal error.
28
29 2015-08-20 Alan Modra <amodra@gmail.com>
30
31 PR gold/18846
32 * target-reloc.h (relocate_relocs <RELOC_ADJUST_FOR_SECTION_RELA>):
33 Subtract os->address() from addend.
34 * powerpc.cc (relocate_relocs): Likewise.
35
36 2015-08-12 Simon Dardis <simon.dardis@imgtec.com>
37
38 * mips.cc (plt0_entry_o32, plt0_entry_n32, plt0_entry_n64,
39 lazy_stub_normal_1, lazy_stub_normal_1_n64,
40 lazy_stub_normal_2, lazy_stub_normal_2_n64, lazy_stub_big,
41 lazy_stub_big_n64, lazy_stub_micromips32_normal_1_n64,
42 lazy_stub_micromips32_normal_2_n64, lazy_stub_micromips32_big,
43 lazy_stub_micromips32_big_n64): Update to use 'or' for move instead
44 of 'addu/daddu'.
45
46 2015-07-27 H.J. Lu <hongjiu.lu@intel.com>
47
48 * configure: Regenerated.
49
50 2015-07-26 Doug Kwan <dougkwan@google.com>
51
52 * testsuite/arm_unaligned_reloc.{s,sh}: Make test less sensitive to
53 disassembler output format.
54
55 2015-07-23 Ian Coolidge <icoolidge@google.com>
56 Plumb --pic-veneer option for gold.
57
58 * arm.cc (Reloc_stub::stub_type_for_reloc): Plumb to stub
59 generation.
60 * options.h (General_options): Add --pic-veneer option.
61
62 2015-07-22 H.J. Lu <hongjiu.lu@intel.com>
63
64 PR gold/18663
65 * testsuite/Makefile.am (script_test_1_SOURCES): Set to
66 script_test_1a.cc script_test_1b.cc.
67 (script_test_11_r.o): Replace script_test_11.o with
68 script_test_11a.o script_test_11b.o.
69 (script_test_11.o): Removed.
70 (script_test_11a.o): New.
71 (script_test_11b.o): Likewise.
72 * testsuite/Makefile.in: Regenerated.
73 * testsuite/script_test_1.h: New file.
74 * testsuite/script_test_1b.cc: Likewise.
75 * testsuite/script_test_11.h: Likewise.
76 * testsuite/script_test_11b.c: Likewise.
77 * testsuite/script_test_1.cc: Renamed to ...
78 * testsuite/script_test_1a.cc: This.
79 Include "script_test_1.h".
80 (main): Call check_int and check_ptr.
81 * testsuite/script_test_11.c: Renamed to ...
82 * testsuite/script_test_11a.c: This.
83 Include "script_test_11.h".
84 (main): Call ptr_equal.
85
86 2015-07-22 H.J. Lu <hongjiu.lu@intel.com>
87
88 PR gold/18628
89 * testsuite/ifuncdep2.c (global): Change protected to hidden.
90 * testsuite/ifuncmod1.c (global): Likewise.
91 * testsuite/ifuncmod5.c (global): Likewise.
92
93 2015-07-22 Alan Modra <amodra@gmail.com>
94
95 * aarch64.cc (try_fix_erratum_843419_optimized): Warning fix.
96
97 2015-07-21 Cary Coutant <ccoutant@gmail.com>
98
99 PR gold/18548
100 * symtab.cc (Symbol_table::do_define_in_output_data): Check for
101 forced local symbol even when oldsym != NULL.
102 (Symbol_table::do_define_in_output_segment): Likewise.
103 (Symbol_table::do_define_as_constant): Likewise.
104
105 2015-07-21 Cary Coutant <ccoutant@gmail.com>
106
107 PR gold/18698
108 * archive.cc (Library_base::should_include_member): Don't use entry
109 point for relocatable links, or if target is not yet valid.
110 * parameters.cc (Parameters::entry): Check target_valid().
111
112 2015-07-20 Han Shen <shenhan@google.com>
113
114 Optimize erratum 843419 fix.
115
116 * aarch64.cc (AArch64_insn_utilities::is_adr): New method.
117 (AArch64_insn_utilities::aarch64_adr_encode_imm): New method.
118 (AArch64_insn_utilities::aarch64_adrp_decode_imm): New method.
119 (E843419_stub): New sub-class of Erratum_stub.
120 (AArch64_relobj::try_fix_erratum_843419_optimized): New method.
121 (AArch64_relobj::section_needs_reloc_stub_scanning): Try optimized fix.
122 (AArch64_relobj::create_erratum_stub): Add 1 argument.
123 (Target_aarch64::scan_erratum_843419_span): Pass in adrp insn offset.
124
125 2015-07-20 Han Shen <shenhan@google.com>
126
127 Fix arm elf header flags wrt hardfp bit.
128
129 * arm.cc (Target_arm::do_adjust_elf_header): Set flags into view.
130
131 2015-07-20 H.J. Lu <hongjiu.lu@intel.com>
132
133 PR gold/18689
134 * layout.cc (Layout::layout): Clear the SHF_COMPRESSED flag bit
135 from input group section for relocatable link.
136 * testsuite/Makefile.am (check_SCRIPTS): Add pr18689.sh.
137 (check_DATA): Add pr18689.stdout.
138 (MOSTLYCLEANFILES): Add pr18689a.o pr18689b.o.
139 (pr18689.stdout): New rule.
140 (pr18689a.o): Likewise.
141 (pr18689b.o): Likewise.
142 (pr18689.o): Likewise.
143 * testsuite/pr18689.c: New file.
144 * testsuite/pr18689.sh: Likewise.
145 * testsuite/Makefile.in: Regenerated.
146
147 2015-07-20 Yiran Wang <yiran@google.com>
148 Cary Coutant <ccoutant@gmail.com>
149
150 PR gold/15574
151 * resolve.cc (Symbol_table): Remove warning about references
152 from shared objects to hidden symbols.
153 * testsuite/Makefile.am (hidden_test): Add hidden_test.syms.
154 * testsuite/Makefile.in: Regenerate.
155 * testsuite/hidden_test.sh: Check dynamic symbol table; update
156 expected error messages.
157
158 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
159
160 * compressed_output.cc (Output_compressed_section::set_final_data_size):
161 Make --compress-debug-sections=zlib the same as
162 --compress-debug-sections=zlib-gabi.
163 * testsuite/Makefile.am (flagstest_compress_debug_sections.check):
164 Expect ".debug_.*" with the SHF_COMPRESSED bit, instead of
165 ".zdebug_".
166 * testsuite/Makefile.in: Regenerated.
167
168 2015-07-12 H.J. Lu <hongjiu.lu@intel.com>
169
170 PR gold/18322
171 * compressed_output.cc (zlib_compress): Add argument for
172 compression header size. Set header size to compression header
173 size if it isn't 0. Don't write out the zlib header here.
174 (Output_compressed_section::set_final_data_size): Support
175 zlib-gnu and zlib-gabi compressions. Pass compression header
176 size to zlib_compress and write out compression header. Set
177 the SHF_COMPRESSED bit for zlib-gabi compression. Otherwise
178 clear the SHF_COMPRESSED bit
179 * options.h (compress_debug_sections): Add zlib-gnu and
180 zlib-gabi.
181 * output.h (Output_section::set_flags): New.
182 * testsuite/Makefile.am (check_PROGRAMS): Add
183 flagstest_compress_debug_sections_none,
184 flagstest_compress_debug_sections_gnu and
185 flagstest_compress_debug_sections_gabi.
186 (check_DATA): Add flagstest_compress_debug_sections_none.stdout.
187 flagstest_compress_debug_sections.stdout,
188 flagstest_compress_debug_sections.cmp,
189 flagstest_compress_debug_sections.check,
190 flagstest_compress_debug_sections_gnu.stdout,
191 flagstest_compress_debug_sections_gnu.cmp,
192 flagstest_compress_debug_sections_gnu.check,
193 flagstest_compress_debug_sections_gabi.stdout,
194 flagstest_compress_debug_sections_gabi.cmp and
195 flagstest_compress_debug_sections_gabi.check.
196 (flagstest_compress_debug_sections_none): New.
197 (flagstest_compress_debug_sections_none.stdout): Likewise.
198 (flagstest_compress_debug_sections.stdout): Likewise.
199 (flagstest_compress_debug_sections.check): Likewise.
200 (flagstest_compress_debug_sections.cmp): Likewise.
201 (flagstest_compress_debug_sections_gnu): Likewise.
202 (flagstest_compress_debug_sections_gnu.stdout): Likewise.
203 (flagstest_compress_debug_sections_gnu.check): Likewise.
204 (flagstest_compress_debug_sections_gnu.cmp): Likewise.
205 (flagstest_compress_debug_sections_gabi): Likewise.
206 (flagstest_compress_debug_sections_gabi.stdout): Likewise.
207 (flagstest_compress_debug_sections_gnu.check): Likewise.
208 (flagstest_compress_debug_sections_gnu.cmp): Likewise.
209 * testsuite/Makefile.in: Regenerated.
210
211 2015-07-12 H.J. Lu <hongjiu.lu@intel.com>
212
213 PR gold/18321
214 * compressed_output.h (decompress_input_section): Add arguments
215 for ELF class, big endian and sh_flags.
216 * compressed_output.cc (decompress_input_section): Likewise.
217 Support the SHF_COMPRESSED section.
218 * dynobj.h (Dynobj): Add elfsize and is_big_endian member
219 functions.
220 * plugin.h (Pluginobj): Likewise.
221 * layout.cc (Layout::get_output_section_flags): Also clear the
222 SHF_COMPRESSED bit.
223 * object.h (Compressed_section_info): Add flag to store sh_flags.
224 (Object): Add pure virtual elfsize and is_big_endian member
225 functions.
226 * object.cc (need_decompressed_section): Don't skip the ".zdebug"
227 prefix here.
228 (build_compressed_section_map): Check SHF_COMPRESSED for
229 uncompressed size. Store sh_flags in Compressed_section_info.
230 Pass size, big_endian and sh_flags to decompress_input_section.
231 Skip the ".debug"/".zdebug" prefix when passing section name to
232 need_decompressed_section.
233 (Sized_relobj_file<size, big_endian>::do_find_special_section):
234 Don't check ".zdebug_*" sections.
235 (Object::decompressed_section_contents): Pass ELF class, big
236 endian and sh_flags to decompress_input_section.
237 * reloc.cc (Sized_relobj_file<size, big_endian>::write_sections):
238 Likewise.
239 * testsuite/Makefile.am (check_DATA): Add
240 debug_msg_cdebug_gabi.err and gdb_index_test_2_gabi.stdout.
241 (MOSTLYCLEANFILES): Add debug_msg_cdebug_gabi.err and
242 gdb_index_test_2_gabi.stdout.
243 (debug_msg_cdebug_gabi.o): New.
244 (odr_violation1_cdebug_gabi.o): Likewise.
245 (odr_violation2_cdebug_gabi.o): Likewise.
246 (debug_msg_cdebug_gabi.err): Likewise.
247 (check_SCRIPTS): Add gdb_index_test_2_gabi.sh.
248 (gdb_index_test_cdebug_gabi.o): Likewise.
249 (gdb_index_test_2_gabi): Likewise.
250 (gdb_index_test_2_gabi.stdout): Likewise.
251 * testsuite/gdb_index_test_2_gabi.sh: New file.
252 * testsuite/Makefile.in: Regenerated.
253
254 2015-07-09 Han Shen <shenhan@google.com>
255
256 Use "gold_info" instead of "gold_warning" for erratum fix.
257
258 * aarch64.cc (Target_aarch64::scan_erratum_843419_span): Use
259 'gold_info'.
260 (Target_aarch64::scan_erratum_835769_span): USe 'gold_info'.
261
262 2015-07-09 Han Shen <shenhan@google.com>
263
264 Drop missing symbol warning for arm/aarch64.
265
266 * aarch64.cc (AArch64_relobj::scan_errata): Drop missing symbol warning.
267 * arm.cc (Arm_relobj::scan_section_for_cortex_a8_erratum): Drop missing
268 symbol warning.
269
270 2015-07-07 Han Shen <shenhan@google.com>
271
272 Make gold aarch64 accept long form of mapping symbols.
273
274 * aarch64.cc (AArch64_relobj::do_count_local_symbols): Make legal
275 of mapping symbols.
276
277 2015-06-29 Doug Kwan <dougkwan@google.com>
278
279 * testsuite/arm_bl_out_of_range.s: Align stub table so that it appears
280 at address expected by test.
281 * testsuite/arm_cortex_a8_b.s: Ditto.
282 * testsuite/arm_cortex_a8_b_cond.s: Ditto.
283 * testsuite/arm_cortex_a8_bl.s: Ditto.
284 * testsuite/arm_cortex_a8_blx.s: Ditto.
285 * testsuite/arm_cortex_a8_local.s: Ditto.
286 * testsuite/arm_fix_v4bx.s: Ditto.
287 * testsuite/arm_unaligned_reloc.s: Ditto.
288 * testsuite/thumb_bl_out_of_range.s: Ditto.
289 * testsuite/thumb_bl_out_of_range_local.s: Ditto.
290 * testsuite/thumb_blx_out_of_range.s: Ditto.
291
292 2015-06-29 Han Shen <shenhan@google.com>
293
294 Patch for erratum 843419 internal error.
295
296 * aarch64.cc (Erratum_stub::Insn_utilities): New typedef.
297 (Erratum_stub::update_erratum_insn): New method.
298 (Stub_table::relocate_stubs): Modified to place relocated insn.
299 (AArch64_relobj::fix_errata): Modified gold_assert.
300
301 2015-06-12 Han Shen <shenhan@google.com>
302
303 Fix erratum 835769.
304
305 * aarch64.cc (AArch64_insn_utilities::BYTES_PER_INSN): Move
306 defintion outside class definition.
307 (AArch64_insn_utilities::AARCH64_ZR): New static constant.
308 (AArch64_insn_utilities::aarch64_op31): New member.
309 (AArch64_insn_utilities::aarch64_ra): New member.
310 (AArch64_insn_utilities::aarch64_mac): New member.
311 (AArch64_insn_utilities::aarch64_mlxl): New member.
312 (ST_E_835769): New global enum member.
313 (Stub_table::relocate_stubs): Add 835769 handler.
314 (Stub_template_repertoire::Stub_template_repertoire): Install new
315 stub type.
316 (AArch64_relobj::scan_errata): This func is renamed from
317 scan_erratum_843419.
318 (AArch64_relobj::do_count_local_symbols): Add 835769 handler.
319 (AArch64_relobj::do_relocate_sections): Add 835769 handler.
320 (AArch64_relobj::scan_sections_for_stubs): Add 835769 handler.
321 (Target_aarch64::scan_erratum_835769_span): New method.
322 (Target_aarch64::create_erratum_stub): New method.
323 (Target_aarch64::is_erratum_835769_sequence): New method.
324 (Target_aarch64::scan_erratum_843419_sequence): Move part of the
325 code into create_erratum_stub.
326 * options.h (fix_cortex_a53_835769): New option.
327
328 2015-06-11 Cary Coutant <ccoutant@gmail.com>
329
330 * aarch64.cc (Erratum_stub::STUB_ADDR_ALIGN): Move initialization
331 outside class body.
332 (Reloc_stub::STUB_ADDR_ALIGN): Likewise.
333
334 2015-06-11 Cary Coutant <ccoutant@gmail.com>
335
336 PR gold/17731
337 * layout.cc (corresponding_uncompressed_section_name): New function.
338 (Layout::choose_output_section): Call it.
339 * layout.h (corresponding_uncompressed_section_name): New function.
340 * script-sections.cc (Input_section_info::set_section_name): Check
341 for compressed debug section (.zdebug style).
342
343 2015-06-11 Jing Yu <jingyu@google.com>
344
345 * testsuite/Makefile.am: Add -O0 for script_test_12 test.
346 * testsuite/Makefile.in: Regenerate.
347
348 2015-06-11 Davide Italiano <dccitaliano@gmail.com>
349
350 * gold.h (is_cident): Correct typo.
351
352 2015-06-10 Han Shen <shenhan@google.com>
353 Patch for erratum-843419 (2 of 2 - fix erratum occurrences).
354
355 Now fixing for 843419 is fully functional.
356
357 The first part of the erratum fix CL is here -
358 https://sourceware.org/ml/binutils/2015-04/msg00229.html
359
360 * aarch64.cc(global enum): New constants representing stub types.
361 (Stub_template): New POD struct.
362 (Stub_template_repertoire): New class.
363 (Stub_base): New class.
364 (Erratum_stub): New class.
365 (Reloc_stub): Refactored to be a subclass of Stub_base.
366 (Reloc_stub::Stub_type): Removed.
367 (Reloc_stub::offset): Moved to Stub_base.
368 (Reloc_stub::set_offset): Moved to Stub_base.
369 (Reloc_stub::destination_address): Moved to Stub_base.
370 (Reloc_stub::set_destination_address): Moved to Stub_base.
371 (Reloc_stub::reset_destination_address): Moved to Stub_base.
372 (Reloc_stub::stub_type): Renamed and moved to Stub_base.
373 (Reloc_stub::stub_size): Renamed and moved to Stub_base.
374 (Reloc_stub::stub_insns): Renamed and moved to Stub_base.
375 (Reloc_stub::write): Moved to Stub_base.
376 (Reloc_stub::invalid_offset): Moved to Stub_base.
377 (Reloc_stub::invalid_address): Moved to Stub_base.
378 (Reloc_stub::stub_type_): Renamed and moved to Stub_base.
379 (Reloc_stub::stub_insns_): Moved to Stub_base.
380 (Reloc_stub::offset_): Moved to Stub_base.
381 (Reloc_stub::destination_address_): Moved to Stub_base.
382 (Stub_table::The_aarch64_relobj): New typedef.
383 (Stub_table::The_erratum_stub): New typedef.
384 (Stub_table::The_erratum_stub_less): New typedef.
385 (Stub_table::The_erratum_stub_set): New typedef.
386 (Stub_table::The_erratum_stub_set_iter): New typedef.
387 (Stub_table::empty): Added emptiness testing for erratum stubs.
388 (Stub_table::add_erratum_stub): New method to add an erratum stub.
389 (Stub_table::find_erratum_stub): New method.
390 (Stub_table::find_erratum_stubs_for_input_section): New method.
391 (Stub_table::erratum_stub_address): New method.
392 (Stub_table::update_date_size_changed_p): Modified to handle erratum stubs.
393 (Stub_table::do_addralign): Modified to handle erratum stubs.
394 (Stub_table::erratum_stubs_): New member.
395 (Stub_table::erratum_stub_size_): New member.
396 (Stub_table::relocate_stubs): Modified to handle erratum stubs.
397 (Stub_table::do_write): Modified to handle erratum stubs.
398 (AArch64_relobj::The_erratum_stub): New typedef.
399 (AArch64_relobj::Erratum_stub_set_iter): New typedef.
400 (AArch64_relobj::fix_errata): New method.
401 (Target_aarch64::The_reloc_stub_type): Removed.
402 (Target_aarch64::The_erratum_stub): New typede.
403 (AArch64_relocate_functions::construct_b): New method.
404
405 2015-06-08 Nick Clifton <nickc@redhat.com>
406
407 * po/fr.po: New French Translation.
408
409 2015-06-07 Cary Coutant <ccoutant@gmail.com>
410
411 PR gold/18288
412 * resolve.cc (symbol_to_bits): Remove type parameter; adjust all
413 callers. Don't use STT_COMMON to check for common symbols.
414 (Symbol_table::resolve): Warn if relocatable object has STT_COMMON
415 symbol that's not in a common section.
416 * symtab.h (Symbol::is_common): Don't use STT_COMMON to check for
417 common symbols.
418
419 2015-06-04 Cary Coutant <ccoutant@gmail.com>
420
421 PR gold/18200
422 * Makefile.am (diststuff): Add target.
423 * Makefile.in: Regenerate.
424
425 2015-06-04 Cary Coutant <ccoutant@gmail.com>
426
427 PR gold/17498
428 * object.cc (Sized_relobj_file::do_count_local_symbols): Discard
429 temporary locals in merge sections.
430 * options.cc (General_options::parse_discard_all): New method.
431 (General_options::parse_discard_locals): New method.
432 (General_options::parse_discard_none): New method.
433 (General_options::General_options): Initialize discard_locals_.
434 * options.h (--discard-all): Convert to special option.
435 (--discard-locals): Likewise.
436 (--discard-none): New option.
437 (General_options::discard_all): New method.
438 (General_options::discard_locals): New method.
439 (General_options::discard_sec_merge): New method.
440 (General_options::Discard_locals): New enum.
441 (General_options::discard_locals_): New data member.
442
443 2015-06-03 Cary Coutant <cary@google.com>
444
445 * script-sections.cc (Script_sections::Script_sections): Initialize
446 segments_created_.
447 (Script_sections::create_note_and_tls_segments): Set flag when
448 segments are created.
449 (Script_sections::expected_segment_count): Count PT_INTERP.
450 (Script_sections::attach_sections_using_phdrs_clause): Set flag when
451 segments are created.
452 * script-sections.h (Script_sections::segments_created_): New data
453 member.
454
455 2015-06-03 Cary Coutant <ccoutant@gmail.com>
456
457 PR gold/15370
458 * script-sections.cc
459 (Output_section_element_input::set_section_addresses): When there
460 are several patterns with no sort spec, put all sections in the same
461 bin.
462 * testsuite/Makefile.am (script_test_12): New testcase.
463 (script_test_12i): New testcase.
464 * testsuite/Makefile.in: Regenerate.
465 * testsuite/script_test_12.t: New test linker script.
466 * testsuite/script_test_12i.t: New test linker script.
467 * testsuite/script_test_12a.c: New test source file.
468 * testsuite/script_test_12b.c: New test source file.
469
470 2015-06-02 Cary Coutant <ccoutant@gmail.com>
471
472 * nacl.h (Sniff_file): Switch parameters to get_view to get an
473 aligned view.
474
475 2015-06-03 Cary Coutant <ccoutant@gmail.com>
476
477 PR gold/17819
478 * gold.cc (queue_final_tasks): When --build-id=tree, queue a
479 separate task to schedule the build id computation.
480 * layout.cc (Hash_task::Hash_task): Remove build_id_blocker,
481 add Output_file and offset.
482 (Hash_task::run): Get and release the input views.
483 (Hash_task::is_runnable): Always return NULL (always runnable).
484 (Layout::queue_build_id_tasks): Remove.
485 (Layout::write_build_id): Add array_of_hashes and size_of_hashes
486 parameters; use them instead of class members.
487 (Build_id_task_runner::run): New function.
488 (Close_task_runner::run): Pass array_of_hashes and size_of_hashes
489 to write_build_id.
490 * layout.h (Layout::queue_build_id_tasks): Remove.
491 (Layout::write_build_id): Add array_of_hashes and size_of_hashes
492 parameters.
493 (Layout::array_of_hashes_): Remove.
494 (Layout::size_of_array_of_hashes_): Remove.
495 (Layout::input_view_): Remove.
496 (Build_id_task_runner): New class.
497 (Close_task_runner::Close_task_runner): Add array_of_hashes and
498 size_of_hashes parameters.
499 (Close_task_runner::array_of_hashes_): New data member.
500 (Close_task_runner::size_of_hashes_): New data member.
501 * testsuite/Makefile.am
502 (flagstest_compress_debug_sections_and_build_id_tree): New test.
503 * testsuite/Makefile.in: Regenerate.
504
505 2015-06-01 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
506
507 * merge.cc (get_input_merge_map): Update for data structure change.
508 (get_or_make_input_merge_map): Update for data structure change.
509 * merge.h (Object_merge_map): Use a std::vector<std::pair>> instead of
510 a std::map. Remove first_shnum_, first_map_, second_shnum_, second_map_.
511
512 2015-05-16 Alan Modra <amodra@gmail.com>
513
514 * reloc.cc (Sized_relobj_file::find_functions): Use function_location.
515 * powerpc.cc (Target_powerpc::do_calls_non_split): New function.
516 (addi_12_1, addis_2_12, addis_12_1, cmpld_7_12_0): New constants.
517 (lis_0): Rename from lis_0_0.
518
519 2015-04-29 Cary Coutant <cary@google.com>
520 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
521
522 * gc.h (Garbage_collection::is_section_garbage): Change Object*
523 to Relobj*.
524 (Garbage_collection::add_reference): Likewise.
525 (Garbage_collection::gc_process_relocs): Likewise. Don't push
526 object/shndx pair onto *secvec for dynamic objects. Don't follow
527 relocations pointing to dynamic objects for GC.
528 * icf.cc (Icf::find_identical_sections): Change Object* to Relobj*.
529 (Icf::unfold_section): Likewise.
530 (Icf::is_section_folded): Likewise.
531 (Icf::get_folded_section): Likewise.
532 * icf.h: (Icf::get_folded_section): Likewise.
533 (Icf::unfold_section): Likewise.
534 (Icf::is_section_folded): Likewise.
535 (Icf::section_has_function_pointers): Likewise.
536 (Icf::set_section_has_function_pointers): Likewise.
537 * object.h (Section_id): Likewise.
538 (Const_section_id): Likewise.
539 * output.cc (Output_section::update_section_layout): Likewise.
540 * output.h: (Output_section_lookup_maps::find_relaxed_input_section):
541 Likewise.
542 * plugin.cc (update_section_order): Likewise.
543 (unique_segment_for_sections): Likewise.
544 * powerpc.cc (Powerpc_relobj::add_reference): Likewise.
545 (Target_powerpc::do_gc_add_reference): Likewise.
546 (Target_powerpc::gc_process_relocs): Likewise.
547 (Target_powerpc::do_gc_add_reference): Likewise.
548 * symtab.cc (Symbol_table::is_section_folded): Likewise.
549 (Symbol_table::gc_mark_symbol): Likewise.
550 * symtab.h: (Symbol_table::is_section_folded): Likewise.
551 * target.h: (Sized_target::gc_add_reference): Likewise.
552 (Sized_target::do_gc_add_reference): Likewise.
553
554 2015-04-29 Nick Clifton <nickc@redhat.com>
555
556 * po/fi.po: Updated Finnish translation.
557
558 2015-04-28 Alan Modra <amodra@gmail.com>
559
560 * powerpc.cc (Target_powerpc::do_dynsym_value): Use Address rather
561 than unsigned int for find_global_entry result temp. Compare
562 against invalid_address.
563 (Target_powerpc::do_plt_address_for_global): Likewise.
564 (Target_powerpc::Relocate::relocate): Likewise. Don't assert
565 on plt call stub existence for debug info. Do assert for plt
566 and global entry stub existence if an alloc section.
567
568 2015-04-28 Alan Modra <amodra@gmail.com>
569
570 * powerpc.cc (Target_powerpc::Relocate::relocate): Don't assert
571 on missing global entry stub due to bogus debug info.
572
573 2015-04-27 Han Shen <shenhan@google.com>
574
575 * options.h (--fix-cortex-a53-843419): Rename option.
576 * aarch64.cc (AArch64_relobj::do_count_local_symbols): Use renamed
577 option.
578 (AArch64_relobj::scan_sections_for_stubs): Use renamed option.
579
580 2015-04-27 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
581
582 PR gold/18327
583 * output.cc (Output_section::is_input_address_mapped): Assume a missing
584 entry is mapped.
585 * testsuite/Makefile.am: Add the eh_test test.
586 * testsuite/Makefile.in: Regenerate.
587 * testsuite/eh_test_a.cc: New test.
588 * testsuite/eh_test_b.cc: New test.
589
590 2015-04-23 Sriraman Tallam <tmsriram@google.com>
591
592 * options.h (--weak-unresolved-symbols): New option.
593 * symtab.cc (Symbol_table::sized_write_globals): Change symbol
594 binding to weak with new option.
595 * symtab.h (is_weak_undefined): Check for new option.
596 (is_strong_undefined): Check for new option.
597 * testsuite/Makefile.am (weak_unresolved_symbols_test): New test.
598 * testsuite/Makefile.in: Regenerate.
599 * testsuite/weak_unresolved_symbols_test.cc: New file.
600
601 2015-04-20 Ian Coolidge <icoolidge@google.com>
602
603 * symtab.cc (Symbol::should_add_dynsym_entry): Return true for
604 GNU_UNIQUE.
605
606 2015-04-17 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
607
608 * gc.cc (Garbage_collection::do_transitive_closure): Use back and
609 push_back.
610 * gc.h (Garbage_collection): Use a std::vector instead of a std::queue.
611 * object.cc (Sized_relobj_file::do_layout): Use push_back.
612 * powerpc.cc (process_gc_mark): Use push_back.
613 (Target_powerpc::do_gc_mark_symbol): Use push_back.
614 * symtab.cc (Symbol_table::gc_mark_symbol): Use push_back.
615
616 2015-04-16 Han Shen <shenhan@google.com>
617
618 * aarch64.cc (AArch64_insn_utilities): New utility class.
619 (AArch64_relobj::Mapping_symbol_position): New struct.
620 (AArch64_relobj::Mapping_symbol_info): New typedef.
621 (AArch64_relobj::do_count_local_symbols): New function overriding
622 parent's implementation.
623 (AArch64_relobj::mapping_symbol_info_): New member
624 (AArch64_relobj::scan_erratum_843419): New method.
625 (Target_aarch64::scan_erratum_843419_span): New method.
626 (Target_aarch64::is_erratum_843419_sequence): New method.
627 * options.h (fix_cortex_a53): New option.
628
629 2015-04-09 Cary Coutant <ccoutant@google.com>
630
631 * symtab.cc (Symbol::final_value_is_known): Check for TLS symbol
632 in a PIE link.
633 * testsuite/Makefile.am (tls_pie_test.sh): New test.
634 * testsuite/Makefile.in: Regenerate.
635 * testsuite/tls_pie_test.sh: New.
636
637 2015-04-09 Cary Coutant <ccoutant@google.com>
638
639 * debug.h (DEBUG_LOCATION): New.
640 (DEBUG_ALL): Include DEBUG_LOCATION.
641 (debug_string_to_enum): Add DEBUG_LOCATION.
642 * dwarf_reader.cc (Sized_dwarf_line_info::read_lines): Fix debug
643 output to print correct context.
644 (Sized_dwarf_line_info::do_addr2line): Add debug output. Return
645 up to 4 more locations at the beginning of the function.
646 * symtab.cc (Symbol_table::detect_odr_violations): Get canonical
647 result before sorting list of line numbers.
648 * testsuite/debug_msg.sh: Allow range of line numbers for
649 canonical results on optimized code.
650
651 2015-04-07 HC Yen <hc.yen@mediatek.com>
652
653 Add AArch32 support for gold linker.
654 gold/
655 * arm.cc: Add V8 arch combine table.
656
657 2015-04-06 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
658
659 * aarch64.cc (do_reloc_addend): Fix signature to match the parent one.
660
661 2015-04-06 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
662
663 * gc.cc (Garbage_collection::do_transitive_closure): Avoid a call
664 to find by using the return value of insert.
665
666 2015-04-06 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
667
668 * gc.cc (Garbage_collection::do_transitive_closure): Avoid a copy
669 constructor call.
670
671 2015-04-06 Ilya Tocar <ilya.tocar@intel.com>
672
673 PR gold/17641
674 * x86_64.cc (Target_x86_64::can_convert_mov_to_lea): New.
675 (Target_x86_64::Scan::local): Don't create GOT entry, when we
676 can convert mov to lea.
677 (Target_x86_64::Scan::global): Ditto.
678 (Target_x86_64::Relocate::relocate): Convert mov foo@GOTPCREL(%rip),
679 %reg to lea foo(%rip), %reg if possible.
680 * testsuite/Makefile.am (x86_64_mov_to_lea): New test.
681 * testsuite/x86_64_mov_to_lea1.s: New.
682 * testsuite/x86_64_mov_to_lea2.s: Ditto.
683 * testsuite/x86_64_mov_to_lea3.s: Ditto.
684 * testsuite/x86_64_mov_to_lea4.s: Ditto.
685 * testsuite/x86_64_mov_to_lea.sh: Ditto.
686
687 2015-04-02 H.J. Lu <hongjiu.lu@intel.com>
688
689 * configure: Regenerated.
690
691 2015-04-01 Ilya Tocar <ilya.tocar@intel.com>
692
693 PR gold/17640
694 * i386.cc (Target_i386::can_convert_mov_to_lea): New.
695 (Target_i386::Scan::local): Don't create GOT entry, when we
696 can convert GOT to GOTOFF.
697 (Target_i386::Scan::global): Ditto.
698 (Target_i386::Relocate::relocate): Convert mov foo@GOT(%reg), %reg to
699 lea foo@GOTOFF(%reg), %reg if possible.
700 * testsuite/Makefile.am (i386_mov_to_lea): New test.
701 * testsuite/i386_mov_to_lea1.s: New.
702 * testsuite/i386_mov_to_lea2.s: Ditto.
703 * testsuite/i386_mov_to_lea3.s: Ditto.
704 * testsuite/i386_mov_to_lea4.s: Ditto.
705 * testsuite/i386_mov_to_lea5.s: Ditto.
706 * testsuite/i386_mov_to_lea.sh: Ditto.
707
708 2015-04-01 H.J. Lu <hongjiu.lu@intel.com>
709
710 * Makefile.am (ZLIB): New.
711 (ZLIBINC): Likewise.
712 (AM_CFLAGS): Add $(ZLIBINC).
713 (AM_CXXFLAGS): Likewise.
714 (ldadd_varldadd_var): Add $(ZLIB).
715 (incremental_dump_LDADD): Likewise.
716 (dwp_LDADD): Likewise.
717 * compressed_output.cc: Don't check HAVE_ZLIB_H to include
718 <zlib.h>.
719 (zlib_compress): Don't check HAVE_ZLIB_H.
720 (zlib_decompress): Likewise.
721 * options.h (compress_debug_sections): Likewise.
722 * configure.ac (AM_CONDITIONAL): Removed.
723 * testsuite/Makefile.am (ZLIB): New.
724 (LDADD): Add $(ZLIB).
725 Don't check HAVE_ZLIB.
726 * Makefile.in: Regenerated.
727 * config.in: Likewise.
728 * configure: Likewise.
729 * testsuite/Makefile.in: Likewise.
730
731 2015-03-30 Jing Yu <jingyu@google.com>
732
733 * aarch64-reloc.def: New TLSLD_ADD_DTPREL_HI12,
734 TLSLD_ADD_DTPREL_LO12_NC.
735 * aarch64.cc (Target_aarch64::define_tls_base_symbol): Always let
736 _TLS_MODULE_BASE_ point to the start of tls segment.
737 (Target_aarch64::optimize_tls_reloc): Add cases for
738 R_AARCH64_TLSLD_ADD_DTPREL_HI12 and
739 R_AARCH64_TLSLD_ADD_DTPREL_LO12_NC.
740 (Target_aarch64::Scan::local): Likewise.
741 (Target_aarch64::Scan::global): Likewise.
742 (Target_aarch64::Relocate::relocate): Likewise.
743 (Target_aarch64::Relocate::relocate_tls): Likewise. And remove
744 subtracting tls segment size from symbol value for TLSLD_*_DTPREL
745 relocations.
746
747 2015-03-27 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
748
749 * merge.cc (Object_merge_map::add_mapping): call
750 Object_merge_map::Input_merge_map::add_mapping.
751 (Object_merge_map::Input_merge_map::add_mapping): New.
752 (Output_merge_data::do_add_input_section): Call
753 get_or_make_input_merge_map before a loop.
754 (Output_merge_string<Char_type>::finalize_merged_data): Call
755 get_or_make_input_merge_map before a loop.
756 * merge.h (Object_merge_map): Make Input_merge_map public.
757 * object.cc (Relobj::add_merge_mapping): Use get_or_create_merge_map.
758 (Relobj::get_or_create_merge_map): New.
759 * object.h (Relobj::get_or_create_merge_map): New.
760
761 2015-03-24 Alan Modra <amodra@gmail.com>
762
763 PR 18147
764 * powerpc.cc (Target_powerpc::Relocate::relocate): Don't report
765 relocation errors for branches to strong undefined symbols.
766
767 2015-03-23 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
768
769 * merge.cc (Object_merge_map::get_input_merge_map): Make it const.
770 (Object_merge_map::is_merge_section_for): Remove.
771 (Object_merge_map::find_merge_section): New.
772 * merge.h (Object_merge_map::is_merge_section_for): Remove.
773 (Object_merge_map::find_merge_section): New.
774 (Object_merge_map::get_input_merge_map): Add a const version.
775 * object.cc (Relobj::is_merge_section_for): Remove.
776 (Relobj::find_merge_section): New.
777 * object.h (Relobj::is_merge_section_for): Remove.
778 (Relobj::find_merge_section): New.
779 * output.cc
780 (Output_section::Input_section::is_merge_section_for): Remove.
781 (Output_section::add_merge_input_section): Don't call
782 add_merge_input_section.
783 (Output_section::find_merge_section): Return const. Use
784 object->find_merge_section.
785 (Output_section::build_lookup_maps): Don't build a map for
786 merge sections.
787 (Output_section::is_input_address_mapped): Return false if
788 section is not found.
789 (Output_section::find_starting_output_address): Use
790 find_merge_section instead of is_merge_section_for.
791 (Output_section::add_script_input_section): Don't build a map for
792 merge sections.
793 * output.h (Output_section_lookup_maps::merge_sections_by_id_): Remove.
794 (Output_section_lookup_maps::find_merge_section): Remove.
795 (Output_section_lookup_maps::add_merge_input_section) Remove.
796 (Output_section::find_merge_section): Return const.
797
798 2015-03-22 Cary Coutant <cary@google.com>
799
800 PR gold/18106
801 * i386.cc (Target_i386::Relocate::tls_gd_to_ie): Fix support for
802 non-SIB form of lea, with nop after the call.
803
804 2015-03-21 Cary Coutant <cary@google.com>
805
806 PR gold/14217
807 * output.cc (Output_segment::is_first_section_relro): Don't ignore
808 .tdata section.
809 (Output_segment::set_section_addresses): Don't align size of relro
810 segment for .tbss.
811
812 2015-03-21 Cary Coutant <cary@google.com>
813
814 PR gold/18010
815 * stringpool.cc (Stringpool_template): Don't optimize if section
816 alignment is greater than sizeof(char).
817
818 2015-03-21 Cary Coutant <cary@google.com>
819
820 PR gold/18048
821 * script-c.h (script_include_directive): Add first_token parameter.
822 * script.cc (script_include_directive): Add first_token parameter, and
823 pass it to read_script_file.
824 * yyscript.y (PARSING_SECTIONS_BLOCK, PARSING_SECTION_CMDS)
825 (PARSING_MEMORY_DEF): New tokens.
826 (top): Add new productions for INCLUDE files.
827 (file_cmd): Replace file_or_sections_cmd with copy of its productions.
828 Pass PARSING_LINKER_SCRIPT to script_include_directive.
829 (section_block_cmd): Likewise; pass PARSING_SECTIONS_BLOCK.
830 (section_cmd): Pass PARSING_SECTION_CMDS.
831 (file_or_sections_cmd): Remove.
832 (memory_def): Pass PARSING_MEMORY_DEF.
833 * testsuite/Makefile.am (memory_test_2): New test.
834 * testsuite/Makefile.in: Regenerate.
835 * testsuite/memory_test_inc.t: New script file.
836 * testsuite/memory_test_inc_1.t.src: New script file.
837 * testsuite/memory_test_inc_2.t.src: New script file.
838 * testsuite/memory_test_inc_3.t.src: New script file.
839
840 2015-03-21 Cary Coutant <cary@google.com>
841
842 * dwp.cc (Sized_relobj_dwo::do_section_contents): Delete.
843 (Sized_relobj_dwo::setup): Build compressed section map.
844 (Sized_relobj_dwo::do_decompressed_section_contents): Delete.
845 * dynobj.cc (Sized_dynobj::base_read_symbols): Build compressed
846 section map.
847 * object.cc (Sized_relobj_file::Sized_relobj_file): Remove
848 compressed_sections_ field.
849 (build_compressed_section_map): Take Object instead of
850 Sized_relobj_file parameter; add decompress_if_needed parameter.
851 (Sized_relobj_file::do_find_special_sections): Store compressed
852 section map in parent Object.
853 (Sized_relobj_file::do_decompressed_section_contents): Move
854 implementation to Object::decompressed_section_contents.
855 (Sized_relobj_file::do_discard_decompressed_sections): Move
856 implementation to Object::discard_decompressed_sections.
857 * object.h (build_compressed_section_map): Declare.
858 (Object::Object): Add compressed_sections_ field.
859 (Object::section_is_compressed): Move implementation here.
860 (Object::decompressed_section_contents): De-virtualize.
861 (Object::discard_decompressed_sections): De-virtualize.
862 (Object::do_section_is_compressed): Delete.
863 (Object::do_decompressed_section_contents): Delete.
864 (Object::set_compressed_sections): New method.
865 (Object::compressed_sections): New method.
866 (Object::compressed_sections_): New data member.
867 (Compressed_section_info, Compressed_section_map): Move to top of file.
868 (Sized_relobj_file::do_section_is_compressed): Delete.
869 (Sized_relobj_file::do_decompressed_section_contents): Delete.
870 (Sized_relobj_file::do_discard_decompressed_sections): Delete.
871 (Sized_relobj_file::compressed_sections_): Move to Object class.
872
873 2015-03-21 Cary Coutant <ccoutant@google.com>
874
875 PR gold/18152
876 * gold.cc (queue_middle_tasks): Finalize .eh_frame after laying out
877 deferred objects.
878
879 2015-03-11 Cary Coutant <ccoutant@google.com>
880
881 * options.cc (General_options::finalize): Don't allow -z relro
882 with incremental linking.
883 * testsuite/Makefile.am (incremental_test): Add -z norelro.
884 (incremental_test_2): Likewise.
885 (incremental_test_3): Likewise.
886 (incremental_test_4): Likewise.
887 (incremental_test_5): Likewise.
888 (incremental_test_6): Likewise.
889 (incremental_copy_test): Likewise.
890 (incremental_common_test_1): Likewise.
891 (incremental_comdat_test_1): Likewise.
892 * testsuite/Makefile.in: Regenerate.
893
894 2015-03-09 Cary Coutant <ccoutant@google.com>
895
896 PR gold/14675
897 * ehframe.cc (Eh_frame::add_ehframe_input_section): Change return type;
898 return enum indicating whether .eh_frame section is empty, optimizable,
899 unrecognized, or an end marker. Adjust explicit instantiations.
900 * ehframe.h (Eh_frame::Eh_frame_section_disposition): New enum type.
901 (Eh_frame::add_ehframe_input_section): Change return type.
902 * gold.cc (queue_middle_tasks): Call Layout::finalize_eh_frame_section.
903 * layout.cc (Layout::layout_eh_frame): Don't add optimized sections
904 to the .eh_frame output section until we see the end marker.
905 (Layout::finalize_eh_frame_section): New.
906 * layout.h: (Layout::finalize_eh_frame_section): New.
907
908 2015-03-05 H.J. Lu <hongjiu.lu@intel.com>
909
910 * output.cc (Relobj::initialize_input_to_output_map<size>):
911 Remove typename on elfcpp::Elf_types<size>::Elf_Addr.
912
913 2015-03-04 Cary Coutant <ccoutant@google.com>
914
915 * parameters.cc (Parameters::set_target_once): Call
916 Target::select_as_default_target just once from here...
917 (set_parameters_target): ...instead of from here.
918
919 2015-03-04 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
920
921 * ehframe.cc (Cie::set_output_offset): Pass in and use a
922 Output_section_data instead of a Merge_map.
923 (Eh_frame::Eh_frame): Don't initialize merge_map_.
924 (Eh_frame::read_cie): Use add_merge_mapping instead of
925 Merge_map::add_mapping.
926 (Eh_frame::read_fde): Ditto.
927 (Eh_frame::set_final_data_size): Use this instead of this->merge_map_.
928 (Eh_frame::do_output_offset): Use merge_output_offset istead of
929 merge_map_->get_output_offset.
930 (Eh_frame::do_is_merge_section_for): Delete.
931 * ehframe.h (Fde::add_mapping): Pass in and use a Output_section_data
932 instead of a Merge_map.
933 (Cie::set_output_offset): Pass in a Output_section_data instead of a
934 Merge_map.
935 (Eh_frame::do_is_merge_section_for): Delete.
936 (Eh_frame::merge_map_): Delete.
937 * merge.cc (Object_merge_map::get_or_make_input_merge_map): Pass in
938 and use a Output_section_data instead of a Merge_map.
939 (Object_merge_map::add_mapping): Ditto.
940 (Object_merge_map::get_output_offset): Remove the merge_map argument.
941 (Object_merge_map::is_merge_section_for): Pass in and use a
942 Output_section_data instead of a Merge_map.
943 (Merge_map): Delete.
944 (Output_merge_base::do_output_offset): Use merge_output_offset instead
945 of merge_map_.get_output_offset.
946 (Output_merge_base::do_is_merge_section_for): Delete.
947 (Output_merge_data::do_add_input_section): Use
948 object->add_merge_mapping instead of add_mapping.
949 (Output_merge_string<Char_type>::finalize_merged_data): Ditto.
950 * merge.h (Merge_map): Delete forward declaration.
951 (Object_merge_map::add_mapping): Pass in and use a Output_section_data
952 instead of a Merge_map.
953 (Object_merge_map::get_output_offset): Remove the merge_map argument.
954 (Object_merge_map::is_merge_section_for): Pass in and use a
955 Output_section_data instead of a Merge_map.
956 (Input_merge_map::Object_merge_map::merge_map): Replace with
957 output_data.
958 (Object_merge_map::get_or_make_input_merge_map): Pass in and use a
959 Output_section_data instead of a Merge_map.
960 (Merge_map): Delete.
961 (Output_merge_base::Output_merge_base): Don't initialize merge_map_.
962 (Output_merge_base::do_is_merge_section_for): Delete.
963 (Output_merge_base::add_mapping): Delete.
964 (Output_merge_base::merge_map_): Delete.
965 * object.cc (Relobj::initialize_input_to_output_map): New.
966 (Relobj::initialize_input_to_output_map): New.
967 (Relobj::merge_output_offset): New.
968 (Relobj::is_merge_section_for): New.
969 (Relobj::initialize_input_to_output_map): Instantiate for 32 and 64
970 bits.
971 * object.h (Relobj::merge_map): Delete.
972 (initialize_input_to_output_map): New.
973 (set_merge_map): Delete.
974 (add_merge_mapping): New.
975 (merge_output_offset): New.
976 (is_merge_section_for): New.
977 * output.cc (Output_section::Input_section::is_merge_section_for):
978 Use object->is_merge_section_for.
979 * output.h (Output_section_data::is_merge_section_for): Delete.
980 (Output_section_data::do_is_merge_section_for): Delete.
981 * reloc.cc (Merged_symbol_value<size>::initialize_input_to_output_map):
982 Use object->initialize_input_to_output_map.
983 (Merged_symbol_value<size>::value_from_output_section): Use
984 object->merge_output_offset.
985
986 2015-03-02 Peter Collingbourne <pcc@google.com>
987 Cary Coutant <ccoutant@google.com>
988
989 * output.cc (Output_section::add_merge_input_section): Do not
990 attempt to merge sections with an entsize of 0.
991
992 2015-03-02 Khem Raj <raj.khem@gmail.com>
993
994 * attributes.h (class Output_attributes_section_data ): Add
995 do_print_to_mapfile function.
996
997 2015-02-24 Alan Modra <amodra@gmail.com>
998
999 PR 18010
1000 * powerpc.cc (Powerpc_relocate_functions::addr16_ds): Always
1001 complain if value is not a multiple of four.
1002 (Target_powerpc::Relocate::relocate): Correct handling of
1003 R_POWERPC_GOT_TPREL16 and R_POWERPC_GOT_TPREL16_LO for ppc64.
1004
1005 2015-02-21 H.J. Lu <hongjiu.lu@intel.com>
1006
1007 * configure.ac (default_size): Set to 32 for x32.
1008 * configure: Regenerated.
1009
1010 2015-02-18 Alan Modra <amodra@gmail.com>
1011
1012 PR 17954
1013 * powerpc.cc (Global_symbol_visitor_opd::operator()): Set default
1014 visibility.
1015
1016 2015-02-17 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
1017
1018 * gc.h (Garbage_collection::add_reference): Don't use find.
1019
1020 2015-02-17 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
1021
1022 * object.cc (write_local_symbols): avoid std::vector copy.
1023
1024 2015-02-17 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
1025
1026 * merge.cc (get_output_offset): Use upper_bound instead of lower_bound.
1027
1028 2015-02-09 Mark Wielaard <mjw@redhat.com>
1029
1030 * gdb-index.cc (Gdb_index_info_reader::visit_top_die): Recognize
1031 DW_LANG_Fortran03 and DW_LANG_Fortran08.
1032
1033 2015-02-16 Cary Coutant <ccoutant@google.com>
1034
1035 PR gold/13577
1036 PR gold/16992
1037 * layout.cc (Layout::finish_dynamic_section): Don't set DT_SYMBOLIC or
1038 DF_SYMBOLIC if --dynamic-list option is used.
1039 * options.cc (General_options::finalize): --dynamic-list is not
1040 mutually exclusive with -Bsymbolic.
1041 * symtab.h (Symbol::is_preemptible): Don't exclude dynamic symbols not
1042 listed in --dynamic-list.
1043 * testsuite/Makefile.am (dynamic_list_lib2.so): Add
1044 -Bsymbolic-functions.
1045 * testsuite/Makefile.in: Regenerate.
1046
1047 2015-02-16 Cary Coutant <ccoutant@google.com>
1048
1049 PR gold/17971
1050 * incremental.cc: Remove redundant include of "output.h".
1051
1052 2015-02-12 Jing Yu <jingyu@google.com>
1053
1054 * aarch64-reloc.def (TLSLE_MOVW_TPREL_G2, TLSLE_MOVW_TPREL_G1,
1055 TLSLE_MOVW_TPREL_G1_NC, TLSLE_MOVW_TPREL_G0, TLSLE_MOVW_TPREL_G0_NC,):
1056 New relocation.
1057 * aarch64.cc (Target_aarch64::Scan::local): Add cases for new
1058 TLSLE_MOVW_* relocations.
1059 (Target_aarch64::Scan::global): Likewise.
1060 (Target_aarch64::Relocate::relocate): Likewise.
1061 (Target_aarch64::Relocate::relocate_tls): Add cases and handlings
1062 for new TLSLE_MOVW_* relocations.
1063
1064 2015-02-11 Will Newton <will.newton@linaro.org>
1065
1066 PR gold/13321
1067 * arm.cc (Target_arm::make_plt_section): Create an ARM
1068 state mapping symbol at the start of the PLT.
1069
1070 2015-02-09 H.J. Lu <hongjiu.lu@intel.com>
1071
1072 * testsuite/Makefile.am (two_file_shared_2_pic_1_test_DEPENDENCIES):
1073 Replace two_file_shared_2.so with two_file_shared_1.so.
1074 * testsuite/Makefile.in: Regenerated.
1075
1076 2015-02-09 Alan Modra <amodra@gmail.com>
1077
1078 * testsuite/Makefile.am (MOSTLYCLEANFILES): Add libweak_undef_2.a,
1079 plugin_test_thin.a and defsym_test.
1080 * testsuite/Makefile.in: Regenerate.
1081
1082 2015-02-04 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
1083
1084 * merge.cc (do_add_input_section): Combine loop epilogue into main loop
1085 body.
1086
1087 2015-02-04 Peter Collingbourne <pcc@google.com>
1088
1089 * plugin.cc (Pluginobj::get_symbol_resolution_info): Resolve
1090 forwarding symbols when computing symbol resolution info for plugins.
1091 * plugin.h (Plugin_manager::symtab): New method.
1092 (Pluginobj::get_symbol_resolution_info): Add symtab parameter.
1093
1094 2015-02-03 Cary Coutant <ccoutant@google.com>
1095 Peter Collingbourne <pcc@google.com>
1096
1097 PR gold/15660
1098 * archive.cc (Thin_archive_object_unlocker): New class.
1099 (Archive::include_member): Unlock external members of thin archives.
1100 * testsuite/Makefile.am (plugin_test_1): Rename .syms files.
1101 (plugin_test_2): Likewise.
1102 (plugin_test_3): Likewise.
1103 (plugin_test_4): Likewise.
1104 (plugin_test_5): Likewise.
1105 (plugin_test_6): Likewise.
1106 (plugin_test_7): Likewise.
1107 (plugin_test_8): Likewise.
1108 (plugin_test_9): Likewise.
1109 (plugin_test_10): Likewise.
1110 (plugin_test_11): New test case.
1111 * testsuite/Makefile.in: Regenerate.
1112 * testsuite/plugin_test.c (claim_file_hook): Check for parallel .syms
1113 file to decide whether to claim file.
1114 (all_symbols_read_hook): Likewise.
1115 * testsuite/plugin_test_1.sh: Adjust expected output.
1116 * testsuite/plugin_test_2.sh: Likewise.
1117 * testsuite/plugin_test_3.sh: Likewise.
1118 * testsuite/plugin_test_6.sh: Likewise.
1119 * testsuite/plugin_test_tls.sh: Likewise.
1120 * testsuite/plugin_test_11.sh: New testcase.
1121
1122 2015-02-03 Cary Coutant <ccoutant@google.com>
1123
1124 * descriptors.cc (Descriptors::open): Set artificially-low limit for
1125 file descriptors when debugging enabled. Add debug output.
1126 (Descriptors::release): Add debug output.
1127 (Descriptors::close_some_descriptor): Likewise.
1128 (Descriptors::close_all): Likewise.
1129 * fileread.cc (File_read::lock): Likewise.
1130 (File_read::unlock): Likewise.
1131
1132 2015-02-02 Cary Coutant <ccoutant@google.com>
1133
1134 * x86_64.cc (Target_x86_64::Relocate::relocate_tls): Check for
1135 executable output file.
1136
1137 2015-01-22 Han Shen <shenhan@google.com>
1138
1139 * arm.cc (Target_arm::Target_arm): Add initialization for new members.
1140 (Target_arm::do_plt_address_for_global): New method.
1141 (Target_arm::do_plt_address_for_local): New method.
1142 (Target_arm::rel_irelative_section): New method.
1143 (Target_arm::make_data_plt): Add more parameters for plt ctor.
1144 (Target_arm::do_make_data_plt): Add more parameters for plt ctor.
1145 (Target_arm::Scan::symbol_needs_plt_entry): Add ifunc support.
1146 (Target_arm::Scan::reloc_needs_plt_for_ifunc): Add ifunc support.
1147 (Target_arm::Scan::check_non_pic): Add ifunc support.
1148 (Target_arm::Scan::local): Add ifunc support.
1149 (Target_arm::Scan::global): Add ifunc support.
1150 (Target_arm::make_plt_section): New method.
1151 (Target_arm::make_plt_entry): Change to call to make_plt_section.
1152 (Target_arm::make_local_ifunc_plt_entry): New method.
1153 (Target_arm::got_irelative_): New member.
1154 (Target_arm::rel_irelative_): New member.
1155 (Target_arm::got_section): Add creation for got_irelative_.
1156 (Target_arm::rel_dyn_section): Add creation for rel_irelative_.
1157 (Target_arm::Relocate::relocate): Properly set local ifunc address.
1158 (Target_arm::do_dynsym_value): Properly set global ifunc address.
1159 (Target_arm::scan_reloc_for_stub): Properly set global ifunc address.
1160 (Output_data_plt_arm::IRelative_data): New type.
1161 (Output_data_plt_arm::Output_data_plt_arm): Add more parameters.
1162 (Output_data_plt_arm::add_entry): Add more parameters.
1163 (Output_data_plt_arm::add_relocation): New method.
1164 (Output_data_plt_arm::add_local_ifunc_entry): New method.
1165 (Output_data_plt_arm::rel_irelative): New method.
1166 (Output_data_plt_arm::entry_count): Modified.
1167 (Output_data_plt_arm::address_for_global): New method.
1168 (Output_data_plt_arm::address_for_local): New method.
1169 gold/
1170 (Output_data_plt_arm::set_final_data_size): Add irelative_count_.
1171 (Output_data_plt_arm::insert_irelative_data): New method.
1172 (Output_data_plt_arm::irelative_rel_): New member.
1173 (Output_data_plt_arm::got_): New member.
1174 (Output_data_plt_arm::got_irelative_): New member.
1175 (Output_data_plt_arm::irelative_count_): New member.
1176 (Output_data_plt_arm::IRelative_data_vec): New typedef.
1177 (Output_data_plt_arm::irelative_data_vec_): New member.
1178 (Output_data_plt_arm::do_write): Write out irelative entries.
1179 (Output_data_plt_arm_standard::Output_data_plt_arm_standard): Add
1180 more parameters to ctor.
1181 (Output_data_plt_arm_nacl::Output_data_plt_arm_nacl): Add
1182 more parameters to ctor.
1183 * output.h (Output_data_reloc::add_local_relative): New method.
1184 * aarch64.cc (Output_data_plt_aarch64): Fixed typo in comment.
1185
1186 2015-01-29 Alan Modra <amodra@gmail.com>
1187
1188 * powerpc.cc (Target_powerpc::Relocate::relocate): Correct GOT_TLSLD
1189 and GOT_TLSGD to LE optimization.
1190
1191 2015-01-28 Cary Coutant <ccoutant@google.com>
1192
1193 * x86_64.cc (Target_x86_64::Scan::global): Allow IE-to-LE optimization
1194 for undef TLS symbols.
1195 (Target_x86_64::Relocate::relocate_tls): Likewise.
1196 (Target_x86_64::Relocate::tls_ie_to_le): Likewise.
1197
1198 2015-01-25 Cary Coutant <ccoutant@google.com>
1199
1200 * output.cc (Output_segment::set_section_addresses): Fix calculation
1201 of size of relro segment.
1202
1203 2015-01-22 Alan Modra <amodra@gmail.com>
1204
1205 * powerpc.cc (Target_powerpc::Scan::local <got relocs>): Correct
1206 condition for need of ifunc plt entry.
1207 (Target_powerpc::Scan::global <got relocs>): Likewise.
1208
1209 2015-01-14 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
1210
1211 * mips.cc (reloc_high): Add r_sym.
1212 (Mips_relocate_functions::relhi16): Add r_sym parameter. Pass r_sym to
1213 reloc_high constructor.
1214 (Mips_relocate_functions::relgot16_local): Likewise.
1215 (Mips_relocate_functions::rello16): Add r_sym parameter. Use r_sym and
1216 r_type to decide whether LO16 matches HI16.
1217 (Target_mips::Relocate::relocate): Pass r_sym to calls to relhi16,
1218 rello16 and relgot16_local.
1219
1220 2015-01-09 Cary Coutant <ccoutant@google.com>
1221
1222 * layout.cc (Layout::set_segment_offsets): Don't align start of segment
1223 unless alignment is larger than page size.
1224
1225 2015-01-06 H.J. Lu <hongjiu.lu@intel.com>
1226 Cary Coutant <ccoutant@google.com>
1227
1228 PR gold/17729
1229 * configure.ac (DEFAULT_TARGET_X86_64): Don't set for x32.
1230 (DEFAULT_TARGET_X32): Set for x32.
1231 * x86_64.cc (cmp_insn_32): New.
1232 (lea_r10_insn_32): Likewise.
1233 (lea_r11_insn_32): Likewise.
1234 (cmp_insn_64): Likewise.
1235 (lea_r10_insn_64): Likewise.
1236 (lea_r11_insn_64): Likewise.
1237 (Target_x86_64<size>::do_calls_non_split): Handle x32.
1238 * testsuite/Makefile.am (check_SCRIPTS): Add split_x32.sh.
1239 (check_DATA): Add split_x32 files.
1240 (split_x32_[1234n].o): New targets.
1241 (split_x32_[124]): New targets.
1242 (split_x32_[1234r].stdout): New targets.
1243 * testsuite/split_x32.sh: New file.
1244 * testsuite/split_x32_1.s: Likewise.
1245 * testsuite/split_x32_2.s: Likewise.
1246 * testsuite/split_x32_3.s: Likewise.
1247 * testsuite/split_x32_4.s: Likewise.
1248 * testsuite/split_x32_n.s: Likewise.
1249 * configure: Regenerated.
1250 * testsuite/Makefile.in: Likewise.
1251
1252 2015-01-06 H.J. Lu <hongjiu.lu@intel.com>
1253
1254 PR gold/17809
1255 * x86_64.cc (Target_x86_64<size>::Relocate::tls_ie_to_le): Handle
1256 x32.
1257
1258 2015-01-02 Alan Modra <amodra@gmail.com>
1259
1260 * version.cc (print_version): Just print current year.
1261 * dwp.cc (print_version): Likewise.
1262
1263 2015-01-01 Alan Modra <amodra@gmail.com>
1264
1265 Update year range in copyright notice of all files.
1266
1267 2014-12-25 Alan Modra <amodra@gmail.com>
1268
1269 * arm.cc (Target_arm::do_adjust_elf_header): Provide namespace on
1270 new enums.
1271 (Target_arm::merge_object_attributes, ): Likewise.
1272
1273 2014-12-25 Thomas Preud'homme <thomas.preudhomme@arm.com>
1274
1275 * arm.cc (Target_arm::do_adjust_elf_header): Set e_flags in ELF header
1276 as hard float only when Tag_ABI_VFP_args is 1, using new enum value
1277 AEABI_VFP_args_vfp to check that.
1278 (Target_arm::merge_object_attributes): Handle new Tag_ABI_VFP_args
1279 value and replace hardcoded values by enum values.
1280
1281 2014-12-22 Cary Coutant <ccoutant@google.com>
1282
1283 * powerpc.cc (Target_powerpc::relocate): Fix overflow check.
1284
1285 2014-12-20 H.J. Lu <hongjiu.lu@intel.com>
1286
1287 PR gold/14608
1288 * testsuite/debug_msg.cc (SometimesInlineFunction): Changed
1289 to "return i * i * 3;".
1290
1291 2014-12-16 Cary Coutant <ccoutant@google.com>
1292
1293 * mapfile.cc (Mapfile::print_input_section): Print uncompressed sizes.
1294 (Mapfile::print_output_data): Use current_data_size() to avoid
1295 assert for sections requiring postprocessing; if address is not valid,
1296 print 0.
1297 (Mapfile::print_output_section): Use current_data_size(); print note
1298 that addresses and sizes are before compression.
1299
1300 2014-12-14 H.J. Lu <hongjiu.lu@intel.com>
1301
1302 * aarch64.cc (AArch64_relocate_functions::maybe_apply_stub):
1303 Cast current_group_size to unsigned long when reporting error.
1304
1305 2014-12-10 Jing Yu <jingyu@google.com>
1306
1307 * aarch64.cc (Target_aarch64): Add new variable stub_group_size_.
1308 (AArch64_relocate_functions::maybe_apply_stub): Add new parameter.
1309 Update error message.
1310 (Target_aarch64::do_relax): Use absolute value of option
1311 stub_group_size. Replace local variable with class member
1312 stub_group_size_.
1313
1314 2014-12-04 Alan Modra <amodra@gmail.com>
1315
1316 * powerpc.cc (Target_powerpc::Branch_info::make_stub): Ignore
1317 addend of PLTREL24 reloc when not generating a plt stub. Make
1318 max_branch_offset an "Address".
1319 (Stub_table::can_reach_stub): Make max_branch_offset an "Address".
1320 (Target_powerpc::Relocate::relocate): Likewise.
1321
1322 2014-12-04 Alan Modra <amodra@gmail.com>
1323
1324 PR 17670
1325 * symtab.cc (Symbol::set_undefined): Remove assertion.
1326 * powerpc.cc (Target_powerpc::symval_for_branch): Don't assert
1327 on symbols defined in discarded sections, instead return false.
1328 Rearrange params, update all callers.
1329 (Target_powerpc::Branch_info::make_stub): Don't make stubs for
1330 branches to syms in discarded sections.
1331 (Global_symbol_visitor_opd::operator()): Set discarded opd syms
1332 undefined and flag as discarded.
1333 (Target_powerpc::Relocate::relocate): Localize variable.
1334
1335 2014-12-03 H.J. Lu <hongjiu.lu@intel.com>
1336
1337 PR gold/17675
1338 * testsuite/Makefile.am (pie_copyrelocs_test_CXXFLAGS): New.
1339 * testsuite/Makefile.in: Regenerated.
1340
1341 2014-12-03 Alan Modra <amodra@gmail.com>
1342
1343 PR 17566
1344 * powerpc.cc (Target_powerpc::Scan::local): Use add_local_section
1345 when adding dynamic relocations against section symbols.
1346
1347 2014-12-01 Dimitry Ivanov <dimitry@google.com>
1348
1349 * layout.cc (Layout::finish_dynamic_section): When '-z global'
1350 is specified set DF_1_GLOBAL in DT_FLAGS_1 flags.
1351 * options.h (General_options): New -z option (global).
1352
1353 2014-12-01 Cary Coutant <ccoutant@google.com>
1354
1355 PR gold/17578
1356 * layout.cc (Layout::layout_gnu_stack): Don't warn when -z execstack
1357 is given.
1358 (Layout::create_executable_stack_info): Warn when -z noexecstack is
1359 given but some inputs require executable stack.
1360
1361 2014-11-26 Cary Coutant <ccoutant@google.com>
1362
1363 * layout.cc (gdb_sections): Keep .debug_gdb_scripts and
1364 .debug_str_offsets; strip .debug_gnu_pubnames and
1365 .debug_gnu_pubtypes.
1366 (lines_only_debug_sections): Strip all four new sections.
1367
1368 2014-11-26 Jing Yu <jingyu@google.com>
1369
1370 * aarch64.cc (Relocate::tls_desc_gd_to_ie): Set ldr target
1371 register to be x0 when to relax TLSDESC_LD64_LO12.
1372
1373 2014-11-26 Alan Modra <amodra@gmail.com>
1374
1375 * powerpc.cc (struct Stub_table_owner): New.
1376 (Powerpc_relobj): Rename stub_table_ to stub_table_index_, an
1377 unsigned int vector. Update all references.
1378 (powerpc_relobj::set_stub_table): Take an unsigned int param
1379 rather than a Stub_table. Update callers.
1380 (Powerpc_relobj::clear_stub_table): New function.
1381 (Target_powerpc): Add relax_failed_, relax_fail_count_ and
1382 stub_group_size_ vars.
1383 (Target_powerpc::new_stub_table): Delete.
1384 (max_branch_delta): New function, extracted from..
1385 (Target_powerpc::Relocate::relocate): ..here..
1386 (Target_powerpc::Branch_info::make_stub): ..and here. Return
1387 status on whether stub created successfully.
1388 (Stub_control::Stub_control): Add "no_size_errors" param. Move
1389 default sizing to..
1390 (Target_powerpc::do_relax): ..here. Init stub_group_size_ and
1391 reduce on relax failure.
1392 (Target_powerpc::group_sections): Add "no_size_errors" param.
1393 Use stub_group_size_. Set up group info in a temp vector,
1394 before building Stub_table vector. Account for input sections
1395 possibly already converted to relaxed sections.
1396 (Stub_table::init): Delete. Merge into..
1397 (Stub_table::Stub_table): ..here.
1398 (Stub_table::can_reach_stub): New function.
1399 (Stub_table::add_plt_call_entry): Add "from" parameter and
1400 return true iff stub could be reached.
1401 (Stub_table::add_long_branch_entry): Similarly. Add "r_type"
1402 param too.
1403 (Stub_table::clear_stubs): Add "all" param.
1404
1405 2014-11-26 Alan Modra <amodra@gmail.com>
1406
1407 * powerpc.cc (Stub_control::set_output_and_owner): New function.
1408 (Target_powerpc::group_sections): Use it.
1409
1410 2014-11-25 Cary Coutant <ccoutant@google.com>
1411
1412 * binary.cc (Binary_to_elf::sized_convert): Add size to _start symbol.
1413 (Binary_to_elf::write_symbol): Add st_size parameter.
1414 * binary.h (Binary_to_elf::write_symbol): Add st_size parameter.
1415
1416 2014-11-25 Cary Coutant <ccoutant@google.com>
1417
1418 PR gold/17639
1419 * object.cc (Sized_relobj_file): Initialize is_deferred_layout_.
1420 (Sized_relobj_file::do_layout): Handle deferred sections properly
1421 during GC pass 1. Don't add reloc sections to deferred list twice.
1422 * object.h (Sized_relobj_file::is_deferred_layout): New function.
1423 (Sized_relobj_file::is_deferred_layout_): New data member.
1424
1425 2014-11-21 H.J. Lu <hongjiu.lu@intel.com>
1426
1427 PR gold/17619
1428 * x86_64.cc (Output_data_plt_x86_64_standard<size>::do_fill_plt_entry):
1429 Check PC-relative offset overflow in PLT entry.
1430
1431 2014-11-21 Alan Modra <amodra@gmail.com>
1432
1433 * powerpc.cc (Target_powerpc::Relocate::relocate): Correct test
1434 for undefined weaks.
1435
1436 2014-11-20 Alan Modra <amodra@gmail.com>
1437
1438 * powerpc.cc (Stub_control::Stub_control): Init stub14_group_size_
1439 from --stub-group-size parameter divided by 1024.
1440 (Powerpc_relocate_functions::rela, rela_ua): Add fieldsize
1441 template parameter. Update all uses.
1442 (Target_powerpc::Relocate::relocate): Rename has_plt_value to
1443 has_stub_value. Set for long branches. Don't report overflow for
1444 branch to undefined weak symbols. Print info message on
1445 overflowing branch to stub.
1446
1447 2014-11-20 Alan Modra <amodra@gmail.com>
1448
1449 * powerpc.cc (Target_powerpc::do_relax): Add __go_go to thread_starters.
1450
1451 2014-11-13 H.J. Lu <hongjiu.lu@intel.com>
1452
1453 * x86_64.cc (Target_x86_64<size>::Scan::global): Don't make PLT
1454 entry for R_X86_64_GOTPLT64.
1455 (Target_x86_64<size>::Relocate::relocate): Update comments for
1456 R_X86_64_GOTPLT64.
1457
1458 2014-11-06 Evgeniy Dushistov <dushistov@mail.ru>
1459
1460 * plugin.cc: use lock to searialize calls of Plugin_manager::claim_file
1461 * plugin.h: add lock definition
1462
1463 2014-10-29 Han Shen <shenhan@google.com>
1464 Jing Yu <jingyu@google.com>
1465
1466 * aarch64-reloc.def: Add LD_PREL_LO12, ADR_PREL_LO21,
1467 TLSLD_ADR_PAGE21, TLSLD_ADD_LO12_NC, TLSLD_MOVW_DTPREL_G1,
1468 TLSLD_MOVW_DTPREL_G0_NC. Change property of TLS relocations to
1469 Symbol::TLS_REF.
1470 * aarch64.cc (Target_aarch64::do_can_check_for_function_pointers): New
1471 method.
1472 (Target_aarch64::reloc_needs_plt_for_ifunc): New method.
1473 (Target_aarch64::tls_ld_to_le): New method.
1474 (Target_aarch64::aarch64_info): Enable can_icf_inline_merge_sections
1475 for 64bit targets.
1476 (Output_data_plt_aarch64::irelative_rel_): New data member.
1477 (Output_data_plt_aarch64::add_entry): Add irelative entries to plt.
1478 (Output_data_plt_aarch64::add_local_ifunc_entry): New method.
1479 (Output_data_plt_aarch64::add_relocation): New method.
1480 (Output_data_plt_aarch64::do_write): Add gold_assert on got_irelative
1481 offset. Add got_irelative size to got size.
1482 (AArch64_relocate_functions): Typedef AArch64_valtype. Replace long
1483 type string with the new typename.
1484 (AArch64_relocate_functions::update_adr): Replace parameter x with
1485 immed.
1486 (AArch64_relocate_functions::update_movnz): Correct wrong val mask.
1487 (AArch64_relocate_functions::reloc_common): New method.
1488 (AArch64_relocate_funcsions::rela_general): Extract common part out
1489 into reloc_common method.
1490 (AArch64_relocate_functions::rela_general): Likewise.
1491 (AArch64_relocate_functions::pcrela_general): Likewise.
1492 (AArch64_relocate_functions::adr): New method.
1493 (AArch64_relocate_functions::adrp): Calculate immed before calling
1494 update_adr.
1495 (AArch64_relocate_functions::adrp): Likewise.
1496 (AArch64_relocate_functions::movnz): Cast x to SignedW type when
1497 comparing x to 0. Calculate immed from ~x when x < 0.
1498 (Target_aarch64::optimize_tls_reloc): Add new cases for
1499 TLSLD_ADR_PAGE21, TLSLD_ADD_LO12_NC, TLSLD_MOVW_DTPREL_G1,
1500 TLSLD_MOVW_DTPREL_G0_NC.
1501 (Target_aarch64::possible_function_pointer_reloc): Implement this
1502 method.
1503 (Target_aarch64::Scan::local_reloc_may_be_function_pointer): Update
1504 comment.
1505 (Target_aarch64::Scan::local): Add codes to handle STT_GNU_IFUNC
1506 symbol. Add cases for TLSLD_ADR_PAGE21, TLSLD_ADD_LO12_NC,
1507 TLSLD_MOVW_DTPREL_G1, TLSLD_MOVW_DTPREL_G0_NC.
1508 (Target_aarch64::Scan::global): Add codes to handle STT_GNU_IFUNC
1509 symbol. Add cases for TLSLD_ADR_PAGE21, TLSLD_ADD_LO12_NC,
1510 TLSLD_MOVW_DTPREL_G1, TLSLD_MOVW_DTPREL_G0_NC.
1511 (Target_aarch64::make_plt_entry): Call add_entry with two more
1512 parameters.
1513 (Target_aarch64::make_local_ifunc_plt_entry): New method.
1514 (Target_aarch64::Relocate::relocate): Add cases for LD_PREL_LO19,
1515 ADR_PREL_LO21, TLSLD_ADR_PAGE21, TLSLD_ADD_LO12_NC,
1516 TLSLD_MOVW_DTPREL_G1, TLSLD_MOVW_DTPREL_G0_NC.
1517 (Target_aarch64::Relocate::relocate_tls): Add cases for
1518 TLSLD_ADR_PAGE21, TLSLD_ADD_LO12_NC, TLSLD_MOVW_DTPREL_G1,
1519 TLSLD_MOVW_DTPREL_G0_NC.
1520 * testsuite/icf_safe_so_test.cc: Correct test comment.
1521 * testsuite/icf_safe_test.sh: Add AArch64 arch.
1522
1523 2014-10-22 Alan Modra <amodra@gmail.com>
1524
1525 * powerpc.cc (do_relax): Add gcc-4.9 libgomp functions to
1526 thread_starter.
1527
1528 2014-10-18 Andreas Schwab <schwab@linux-m68k.org>
1529
1530 * configure.tgt (targ_extra_obj) [aarch64*-*]: Define.
1531
1532 2014-10-17 Cary Coutant <ccoutant@google.com>
1533
1534 * aarch64.cc (AArch64_relocate_functions::maybe_apply_stub):
1535 Add "typename" keyword.
1536
1537 2014-10-15 Han Shen <shenhan@google.com>
1538 Jing Yu <jingyu@google.com>
1539
1540 Patch for gold aarch64 backend to support relaxation.
1541 * aarch64-reloc.def: Change format.
1542 * aarch64.cc (class Reloc_stub): New class.
1543 (class Stub_table): New class.
1544 (class AArch64_relobj): New class.
1545 (class AArch64_input_section): New class.
1546 (class AArch64_output_section): New class.
1547 (Target_aarch64::new_stub_table): New method.
1548 (Target_aarch64::new_aarch64_input_section): New method.
1549 (Target_aarch64::find_aarch64_input_section): New method.
1550 (Target_aarch64::scan_section_for_stubs): New method.
1551 (Target_aarch64::scan_reloc_section_for_stubs): New method.
1552 (Target_aarch64::relocate_stub): New method.
1553 (Target_aarch64::current_target): New method.
1554 (Target_aarch64::do_make_elf_object): New method.
1555 (Target_aarch64::do_may_relax): New method.
1556 (Target_aarch64::do_relax): New method.
1557 (Target_aarch64::group_sections): New method.
1558 (Target_aarch64::scan_reloc_for_stub): New method.
1559 (Target_aarch64::do_make_output_section): New method.
1560 (Target_aarch64::stub_tables_): New data member.
1561 (Target_aarch64::aarch64_input_section_map_): New data member.
1562 (AArch64_relocate_functions::maybe_apply_stub): New method.
1563
1564 2014-09-30 Cary Coutant <ccoutant@google.com>
1565
1566 PR gold/17432
1567 * resolve.cc (Symbol_table::resolve): Fix local shadowing error.
1568
1569 2014-09-30 Kito Cheng <kito@0xlab.org>
1570
1571 PR gold/13597
1572 * layout.cc (Layout::create_dynamic_symtab): Build gnu-style
1573 hash table before sysv-style hash table.
1574
1575 2014-09-29 Sriraman Tallam <tmsriram@google.com>
1576
1577 * options.h (--pic-executable): Add negative to alias to -no-pie.
1578
1579 2014-09-26 Cary Coutant <ccoutant@google.com>
1580
1581 PR gold/16773
1582 * object.cc (Sized_relobj_file): Compute value of section symbols
1583 for TLS sections the same as TLS symbols.
1584
1585 2014-09-25 Cary Coutant <ccoutant@google.com>
1586
1587 PR gold/17432
1588 * resolve.cc (Symbol_table::resolve): Override common placeholder
1589 symbols, but adjust sizes.
1590 * symtab.cc (Symbol_table::add_from_object): Don't add placeholder
1591 symbols to common lists.
1592
1593 2014-09-24 Alan Modra <amodra@gmail.com>
1594
1595 * po/POTFILES.in: Regenerate.
1596
1597 2014-09-23 Taiju Tsuiki <tzik@google.com>
1598 Cary Coutant <ccoutant@google.com>
1599
1600 PR gold/14860
1601 * gold.cc (queue_final_tasks): Add Write_sections_task as a blocker
1602 on input_sections_blocker.
1603 * layout.cc (Write_sections_task::locks): Unblock
1604 input_sections_blocker_.
1605 * layout.h (Write_sections_task::Write_sections_task): Add
1606 input_sections_blocker.
1607 * testsuite/Makefile.am (exception_x86_64_bnd_test): Add gcctestdir/ld
1608 to DEPENDENCIES.
1609 * testsuite/Makefile.in: Regenerate.
1610
1611 2014-09-18 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
1612
1613 * testsuite/Makefile.am (plugin_test_10): New test.
1614 * testsuite/Makefile.in: Regenerate
1615 * testsuite/plugin_common_test_2.c (c1): Align to 8.
1616 * testsuite/plugin_test_10.sh: New file.
1617
1618 2014-09-17 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
1619
1620 * plugin.cc (Sized_pluginobj::do_add_symbols): Ignore isym->size.
1621 * resolve.cc (Symbol_table::resolve): Don't override common symbols
1622 during the replacement phase.
1623
1624 2014-09-17 Han Shen <shenhan@google.com>
1625 Jing Yu <jingyu@google.com>
1626
1627 * aarch64-reloc.def: Add TLSGD_ADR_PAGE21, TLSGD_ADD_LO12_NC,
1628 TLSDESC_ADR_PAGE21, TLSDESC_LD64_LO12, TLSDESC_ADD_LO12, TLSDESC_CALL.
1629 * aarch64.cc (Target_aarch64): Add data members
1630 got_irelative_, got_tlsdesc_, rela_irelative_, got_mod_index_offset_,
1631 tlsdesc_reloc_info_, tls_base_symbol_defined_. Initialize them in
1632 constructor.
1633 (Target_aarch64::do_reloc_symbol_index): New method.
1634 (Target_aarch64::do_reloc_addend): New method.
1635 (Target_aarch64::add_tlsdesc_info): New method.
1636 (Target_aarch64::do_dynsym_value): New method.
1637 (Target_aarch64::do_make_data_plt): Add new parameters: got,
1638 got_irelative. Pass them to Output_data_plt_aarch64_standard.
1639 (Target_aarch64::make_data_plt): Add new parameters: got,
1640 got_irelative. Pass them to do_make_data_plt.
1641 (Target_aarch64::Relocate): Add skip_call_tls_get_addr_ variable.
1642 (Target_aarch64::Relocate:tls_gd_to_le): New method.
1643 (Target_aarch64::Relocate:tls_ie_to_le): New method.
1644 (Target_aarch64::Relocate:tls_desc_gd_to_le): New method.
1645 (Target_aarch64::Relocate:tls_desc_gd_to_ie): New method.
1646 (Target_aarch64::got_tlsdesc_section): New method.
1647 (Target_aarch64::make_local_ifunc_plt_entry): New method.
1648 (Target_aarch64::define_tls_base_symbol): New method.
1649 (Target_aarch64::reserve_tlsdesc_entries): New method.
1650 (Target_aarch64::got_mod_index_entry): New method.
1651 (Target_aarch64::rela_tlsdesc_section): New method.
1652 (Target_aarch64::rela_irelative_section): New method.
1653 (Target_aarch64::Tlsdesc_info): New struct.
1654 (Target_aarch64::got_section): Create .got.plt space for IRELATIVE
1655 relocations and tlsdesc relocations.
1656 (Target_aarch64::optimize_tls_reloc): Implement method.
1657 (Output_data_plt_aarch64): Add member variables: tlsdesc_rel_, got_,
1658 got_irelative_, irelative_count_, tlsdesc_got_offset_. Initialize them
1659 in constructor.
1660 (Output_data_plt_aarch64::reserve_tlsdesc_entry): New method.
1661 (Output_data_plt_aarch64::has_tlsdesc_entry): New method.
1662 (Output_data_plt_aarch64::get_tlsdesc_got_offset): New method.
1663 (Output_data_plt_aarch64::get_tlsdesc_plt_offset): New method.
1664 (Output_data_plt_aarch64::rela_tlsdesc): New method.
1665 (Output_data_plt_aarch64::rela_irelative): New method.
1666 (Output_data_plt_aarch64::entry_count): Count IRELATIVE relocations.
1667 (Output_data_plt_aarch64::first_plt_entry_offset): Add const attribute.
1668 (Output_data_plt_aarch64::get_plt_tlsdesc_entry_size): New method.
1669 (Output_data_plt_aarch64::fill_tlsdesc_entry): New method.
1670 (Output_data_plt_aarch64::do_get_plt_tlsdesc_entry_size): New method.
1671 (Output_data_plt_aarch64::do_fill_tlsdesc_entry): New method.
1672 (Output_data_plt_aarch64_standard): New member variables:
1673 plt_tlsdesc_entry_size, tlsdesc_plt_entry.
1674 (Output_data_plt_aarch64_standard::Output_data_plt_aarch64_standard):
1675 New parameter: got, got_irelative.
1676 (Output_data_plt_aarch64_standard::do_get_plt_entry_size): New method.
1677 (Output_data_plt_aarch64_standard::do_fill_tlsdesc_entry): New method.
1678 (Output_data_plt_aarch64::do_write): Replace got_address with
1679 gotplt_address. Add irelative_count_ to count. Write tlsdesc entry.
1680 (AArch64_relocate_functions::update_movnz): New method.
1681 (AArch64_relocate_functions): Correct format.
1682 (AArch64_relocate_functions::movnz): New method.
1683 (Target_aarch64::Scan::local): Correct format. Move r_sym, got to
1684 before the switch. Add new cases to switch.
1685 Check ie_to_le relaxation on tlsie relocations. Add code handling
1686 tlsgd tlsdesc cases.
1687 (Target_aarch64::Scan::global): Move arp to front. Do copy_reloc when
1688 needed. Add new cases to switch. Insert dynamic RELATIVE relocation
1689 when needed. Add code handling tlsgd, tlsie, tlsdesc cases.
1690 Call reloc_name_in_error_message to print unsupported reloc.
1691 (Target_aarch64::make_plt_section): Pass got_ and got_irelative_ to
1692 make_data_plt.
1693 (Target_aarch64::do_finalize_sections): Emit relocs to save COPY
1694 relocs. Fill in some more dynamic tags.
1695 (Target_aarch64::Relocate::relocate): Handle tlsgd, tlsdesc relocs.
1696 Skip call tls_get_addr when tlsgd is relaxed.
1697 (Target_aarch64::Relocate::relocate_tls): Correct format. Add code
1698 handling tlsgd, tlsdesc relocs, and tls gd->le, ie->le, tlsdesc->le,
1699 tlsdesc->ie relaxation.
1700
1701 2014-09-03 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
1702
1703 * mips.cc (Target_mips_nacl): New class.
1704 (Target_selector_mips_nacl): New class.
1705 (target_selector_mips32): Rename from target_selector_mips32be and use
1706 Target_selector_mips_nacl instead of Target_selector_mips.
1707 (target_selector_mips32el): Rename from target_selector_mips32 and use
1708 Target_selector_mips_nacl instead of Target_selector_mips.
1709 (target_selector_mips64): Rename from target_selector_mips64be and use
1710 Target_selector_mips_nacl instead of Target_selector_mips.
1711 (target_selector_mips64el): Rename from target_selector_mips64 and use
1712 Target_selector_mips_nacl instead of Target_selector_mips.
1713 (Target_mips::mips_info): Add const attribute.
1714
1715 2014-09-02 Cary Coutant <ccoutant@google.com>
1716
1717 * dwp.cc (Sized_relobj_dwo::do_section_name): Add const attribute.
1718 * dynobj.h (Sized_dynobj::do_section_name): Likewise.
1719 * incremental.cc (Sized_relobj_incr::do_section_name): Likewise.
1720 (Sized_incr_dynobj::do_section_name): Likewise.
1721 * incremental.h (Sized_relobj_incr::do_section_name): Likewise.
1722 (Sized_incr_dynobj::do_section_name): Likewise.
1723 * object.h (Object::section_name): Likewise.
1724 (Object::do_section_name): Likewise.
1725 (Sized_relobj_file::do_section_name): Likewise.
1726 * plugin.cc (Sized_pluginobj::do_section_name): Likewise.
1727 * plugin.h (Sized_pluginobj::do_section_name): Likewise.
1728
1729 2014-09-02 Cary Coutant <ccoutant@google.com>
1730
1731 PR gold/17005
1732 * ehframe.cc (Fde::write): Add output_offset parameter.
1733 (Cie::write): Likewise.
1734 (Eh_frame::set_final_data_size): Account for offset within output
1735 section.
1736 (Eh_frame::do_sized_write): Likewise.
1737 * ehframe.h (Fde::write): Add output_offset parameter.
1738 (Cie::write): Likewise.
1739 * output.cc (Output_section::Input_section_sort_entry): Remove
1740 section_has_name_; add output_section_name parameter. Use
1741 output section name for non-input sections.
1742 (Output_section::Input_section_sort_entry::section_has_name): Remove.
1743 (Output_section::Input_section_sort_entry::section_has_name_): Remove.
1744 (Output_section::Input_section_sort_compare): Remove logic for
1745 sections without names.
1746 (Output_section::Input_section_sort_init_fini_compare): Likewise.
1747 (Output_section::Input_section_sort_section_prefix_special_ordering_compare):
1748 Likewise.
1749 (Output_section::Input_section_sort_section_name_compare): Likewise.
1750
1751 2014-08-29 Han Shen <shenhan@google.com>
1752 Jing Yu <jingyu@google.com>
1753
1754 * aarch64-reloc-property.cc
1755 (AArch64_reloc_property_table::reloc_name_in_error_message): Fix bug in
1756 reference reloc property in the table.
1757 * aarch64-reloc.def: Add TLSLE reloc types and fix some errors in
1758 3 other entries.
1759 * aarch64.cc: (Output_data_got_aarch64::add_static_reloc):
1760 2 new overloaded methods.
1761 (Output_data_got_aarch64::do_write): Add code to write out
1762 static relocs.
1763 (class Output_data_got_aarch64::Static_reloc): New class to wrap
1764 static relocs.
1765 (Output_data_got_aarch64::static_relocs): New vector to
1766 hold static relocs.
1767 (Target_aarch64::TCB_SIZE): New const static memeber.
1768 (Target_aarch64::tcb_size): New method.
1769 (Target_aarch64::Relocate::relocate): Add code handling new reloc types.
1770 (Target_aarch64::Relocate::relocate_tls): New method.
1771 (Target_aarch64::Scan::local): Add code handling new reloc types.
1772 (Target_aarch64::Scan::global): Add code handling new reloc types.
1773
1774 2014-08-13 Sriraman Tallam <tmsriram@google.com>
1775
1776 * options.h (-no-pie): Add option.
1777
1778 2014-08-08 Jing Yu <jingyu@google.com>
1779 Han Shen <shenhan@google.com>
1780
1781 * Makefile.am (HFILES): Add aarch64-reloc-property.h.
1782 (DEFFILES): add aarch64-reloc.def.
1783 (TARGETSOURCES): Add aarch64-reloc-property.cc.
1784 (ALL_TARGETOBJS): Add aarch64-reloc-property.$(OBJEXT).
1785 * Makefile.in: Regenerate.
1786 * aarch64-reloc-property.cc: New file.
1787 * aarch64-reloc-property.h: New file.
1788 * aarch64-reloc.def: New file.
1789 * aarch64.cc: Include aarch64-reloc-property.h. Replace spaces
1790 with tab to make the format consistent.
1791 (Output_data_got_aarch64::symbol_table_): New method.
1792 (Target_aarch64::do_plt_address_for_global): New method.
1793 (Target_aarch64::do_plt_address_for_local): New method.
1794 (Target_aarch64::do_select_as_default_target): New method.
1795 (Target_aarch64::do_make_data_plt): New method.
1796 (Target_aarch64::make_data_plt): New method.
1797 (Output_data_plt_aarch64::has_irelative_section): New method.
1798 (Output_data_plt_aarch64::address_for_global): New method.
1799 (Output_data_plt_aarch64::address_for_local): New method.
1800 (Output_data_plt_aarch64::irelative_rel_): New parameter.
1801 (Output_data_plt_aarch64::add_entry): Implement contents.
1802 (Output_data_plt_aarch64::set_final_data_size): Fix typo.
1803 (Output_data_plt_aarch64::do_write): Remove useless got_base. Set
1804 the got_pov entry to plt0.
1805 (Output_data_plt_aarch64_standard::do_fill_first_plt_entry):
1806 Implement contents.
1807 (Output_data_plt_aarch64_standard::do_fill_plt_entry): Implement.
1808 (AArch64_howto): New struct.
1809 (aarch64_howto[]): New static const array.
1810 (AArch64_relocate_functions): New class.
1811 (Target_aarch64::Scan::get_reference_flags): Remove method.
1812 (Target_aarch64::Scan::local): Implement to support a few relocations.
1813 (Target_aarch64::Scan::global): Implement to support a few relocations.
1814 (Target_aarch64::make_plt_section): Implement contents.
1815 (Target_aarch64::make_plt_entry): Implement contents.
1816 (Target_aarch64::do_finalize_sections): Implement contents.
1817 (Target_aarch64::Relocate::relocate): Implement a few relocations.
1818 (Target_aarch64::relocate_section): Implement contents.
1819
1820 2014-08-06 Alan Modra <amodra@gmail.com>
1821
1822 * testsuite/defsym_test.sh: Allow ppc64le localentry annotation.
1823
1824 2014-08-06 Alan Modra <amodra@gmail.com>
1825
1826 PR 13227
1827 * symtab.cc (Symbol_table::add_from_relobj): Warn on __gnu_lto_slim.
1828
1829 2014-07-21 Sriraman Tallam <tmsriram@google.com>
1830
1831 * object.cc (Relobj::is_section_name_included): Add
1832 ".rodata.nptl_version" to not garbage collect this section.
1833
1834 2014-07-08 Cary Coutant <ccoutant@google.com>
1835
1836 * expression.cc (struct Expression::Expression_eval_info): Add
1837 new fields type_pointer, vis_pointer, and nonvis_pointer.
1838 (Expression::eval_maybe_dot): Add type_pointer, vis_pointer, and
1839 nonvis_pointer parameters. Adjust all calls.
1840 (Symbol_expression::value): Update type, visibility, and nonvis bits
1841 in caller.
1842 * script.cc (Symbol_assignment::sized_finalize): Update type,
1843 visibility, and remaining st_other bits for new symbol.
1844 * script.h: (Expression::eval_maybe_dot): Add type_pointer,
1845 vis_pointer, and nonvis_pointer parameters.
1846 * symtab.h (Symbol::set_type): New method.
1847
1848 * testsuite/Makefile.am (defsym_test): New test.
1849 * testsuite/Makefile.in: Regenerate.
1850 * testsuite/defsym_test.c: New file.
1851 * testsuite/defsym_test.sh: New file.
1852
1853 2014-07-08 Cary Coutant <ccoutant@google.com>
1854
1855 PR gold/15639
1856 * dynobj.h (Sized_dynobj::base_read_symbols): New method.
1857 * dynobj.cc (Sized_dynobj::do_read_symbols): Move body to...
1858 (Sized_dynobj::base_read_symbols): ...new method.
1859 * object.h (Sized_relobj_file::base_read_symbols): New method.
1860 * object.cc (Sized_relobj_file::do_read_symbols): Move body to...
1861 (Sized_relobj_file::base_read_symbols): ...new method.
1862 * arm.cc (Arm_relobj::do_read_symbols): Call base_read_symbols.
1863 * mips.cc: (Mips_relobj::do_read_symbols): Likewise.
1864 * powerpc.cc (Powerpc_dynobj::do_read_symbols): Likewise.
1865
1866 2014-07-04 Alan Modra <amodra@gmail.com>
1867
1868 * po/POTFILES.in: Regenerate.
1869
1870 2014-07-02 Jing Yu <jingyu@google.com>
1871
1872 * aarch64.cc: New file
1873 * Makefile.am (TARGETSOURCES): Add aarch64.cc
1874 (ALL_TARGETOBJS): Add aarch64.$(OBJEXT)
1875 * Makefile.in: Regenerate.
1876 * configure.tgt: Add entries for aarch64*.
1877 * configure.ac: Likewise.
1878 * configure: Likewise.
1879
1880 2014-06-27 Alan Modra <amodra@gmail.com>
1881
1882 * symtab.cc (Symbol::should_add_dynsym_entry): Don't make inline.
1883
1884 2014-06-24 Cary Coutant <ccoutant@google.com>
1885
1886 * dwp.cc (Dwo_file::read): Allow files with no .debug_types
1887 sections.
1888 (Dwo_file::sized_read_unit_index): Likewise.
1889
1890 2014-06-23 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
1891
1892 * mips.cc: New file.
1893 * Makefile.am (TARGETSOURCES): Add mips.cc
1894 (ALL_TARGETOBJS): Add mips.$(OBJEXT)
1895 * configure.tgt: Add entries for mips*.
1896 * configure.ac: Likewise.
1897 * Makefile.in: Regenerate.
1898 * configure: Likewise.
1899
1900 2014-06-09 Cary Coutant <ccoutant@google.com>
1901
1902 * dwarf_reader.cc (Dwarf_pubnames_table::read_header): Check that
1903 unit_length is within section bounds.
1904
1905 2014-06-09 Cary Coutant <ccoutant@google.com>
1906
1907 PR gold/16980
1908 * layout.cc (Layout::print_to_mapfile): Print unattached sections in
1909 map.
1910
1911 2014-06-07 Alan Modra <amodra@gmail.com>
1912
1913 * powerpc.cc (relocate): Treat field of cmpli insn as a bitfield.
1914
1915 2014-06-06 Cary Coutant <ccoutant@google.com>
1916
1917 * dwarf_reader.h (Dwarf_pubnames_table): Remove output_section_offset_.
1918 * dwarf_reader.cc (Dwarf_pubnames_table::read_section): Likewise.
1919 (Dwarf_pubnames_table::read_header): Likewise.
1920 * layout.cc (gdb_fast_lookup_sections): Add .debug_gnu_pubnames and
1921 .debug_gnu_pubtypes.
1922
1923 2014-06-05 Joel Brobecker <brobecker@adacore.com>
1924
1925 * Makefile.am (CONFIG_STATUS_DEPENDENCIES): New.
1926 * Makefile.in, configure: Regenerate.
1927
1928 2014-06-03 Alan Modra <amodra@gmail.com>
1929
1930 * powerpc.cc (addis_12_2): Define.
1931 (Stub_table::do_write): Support fusion on ELFv2 stubs.
1932
1933 2014-06-03 Alan Modra <amodra@gmail.com>
1934
1935 * testsuite/plugin_test.c (parse_readelf_line): Skip non-visibility
1936 st_other output.
1937
1938 2014-06-02 Alan Modra <amodra@gmail.com>
1939
1940 * powerpc.cc (Target_powerpc::local_reloc_may_be_function_pointer):
1941 Only ignore relocs on ELFv1.
1942 (Target_powerpc::global_reloc_may_be_function_pointer): Likewise.
1943
1944 2014-05-30 Cary Coutant <ccoutant@google.com>
1945
1946 * testsuite/Makefile.am (ehdr_start_test_4): Fix typo in -B option.
1947 * testsuite/Makefile.in: Regenerate.
1948 * testsuite/ehdr_start_test_4.sh: Look for "U" instead of "w".
1949
1950 2014-05-27 H.J. Lu <hongjiu.lu@intel.com>
1951
1952 PR gold/16945
1953 * x86_64.cc (Target_x86_64::Relocate::relocate): Use signed int
1954 for got_offset. Properly get GOT address for R_X86_64_PLTOFF64.
1955
1956 2014-05-15 Alan Modra <amodra@gmail.com>
1957
1958 * powerpc.cc (do_plt_fde_location): Handle zero length .glink.
1959 Compare FDE contents with DW_CFA_nop rather than 0.
1960
1961 2014-05-13 Sriraman Tallam <tmsriram@google.com>
1962
1963 * symtab.h (may_need_copy_reloc): Remove check for position independent
1964 code.
1965 * x86_64.cc (Target_x86_64<size>::Scan::global): Add check for no
1966 position independence before pc absolute may_need_copy_reloc call.
1967 Add check for executable output befor pc relative may_need_copy_reloc
1968 call.
1969 * i386.cc: Ditto.
1970 * arm.cc: Ditto.
1971 * sparc.cc: Ditto.
1972 * tilegx.cc: Ditto.
1973 * powerpc.cc: Add check for no position independence before
1974 may_need_copy_reloc calls.
1975 * testsuite/pie_copyrelocs_test.cc: New file.
1976 * testsuite/pie_copyrelocs_shared_test.cc: New file.
1977 * Makefile.am (pie_copyrelocs_test): New test.
1978 * Makefile.in: Regenerate.
1979
1980 2014-05-08 Martin Liška <mliska@suse.cz>
1981
1982 * output.cc (Sized_relobj_file::do_layout): Fix typo in info message.
1983
1984 2014-05-06 Cary Coutant <ccoutant@google.com>
1985
1986 PR gold/16900
1987 * i386.cc (Output_data_got_plt_i386): New class.
1988 (Output_data_plt_i386::Output_data_plt_i386): Change type of got_plt
1989 parameter. Change all callers.
1990 (Output_data_plt_i386::layout_): Remove.
1991 (Output_data_plt_i386::got_plt_): Change type.
1992 (Target_i386::got_plt_): Change type. Change all references.
1993 (Target_i386::got_section): Create instance of new class.
1994 (Output_data_got_plt_i386::do_write): New function.
1995 * x86_64.cc (Output_data_got_plt_x86_64): New class.
1996 (Output_data_plt_x86_64::Output_data_plt_x86_64): Change type of got_plt
1997 parameter. Change all callers.
1998 (Output_data_plt_x86_64::layout_): Remove.
1999 (Output_data_plt_x86_64::got_plt_): Change type.
2000 (Target_x86_64::got_plt_): Change type. Change all references.
2001 (Target_x86_64::got_section): Create instance of new class.
2002 (Output_data_got_plt_x86_64::do_write): New function.
2003 (Output_data_plt_x86_64::do_write): Don't write reserved words in GOT.
2004 (Target_x86_64<size>::init_got_plt_for_update): Create instance of new
2005 class.
2006
2007 2014-05-05 Cary Coutant <ccoutant@google.com>
2008
2009 * gdb-index.cc (Gdb_index_info_reader): Don't complain about language
2010 if we have pubnames/pubtypes.
2011
2012 2014-05-02 Cary Coutant <ccoutant@google.com>
2013
2014 * defstd.cc (in_segment): Define __ehdr_start here...
2015 * layout.cc (Layout::finalize): ...Instead of here. Set the
2016 output segment when known.
2017 * resolve.cc (Symbol::override_base_with_special): Remember
2018 the original binding.
2019 * symtab.cc (Symbol::set_output_segment): New function.
2020 (Symbol::set_undefined): New function.
2021 * symtab.h (Symbol::is_weak_undefined): Check original undef
2022 binding.
2023 (Symbol::is_strong_undefined): New function.
2024 (Symbol::set_output_segment): New function.
2025 (Symbol::set_undefined): New function.
2026 * target-reloc.h (is_strong_undefined): Remove.
2027 (issue_undefined_symbol_error): Call Symbol::is_weak_undefined.
2028 Check for hidden undefs.
2029 (relocate_section): Call Symbol::is_strong_undefined.
2030
2031 * testsuite/Makefile.am (ehdr_start_test_1)
2032 (ehdr_start_test_2, ehdr_start_test_3)
2033 (ehdr_start_test_4, ehdr_start_test_5): New test cases.
2034 * testsuite/Makefile.in: Regenerate.
2035 * testsuite/ehdr_start_def.cc: New source file.
2036 * testsuite/ehdr_start_test.cc: New source file.
2037 * testsuite/ehdr_start_test.t: New linker script.
2038 * testsuite/ehdr_start_test_4.sh: New shell script.
2039
2040 2014-04-23 Cary Coutant <ccoutant@google.com>
2041
2042 PR gold/16870
2043 * x86_64.cc (Target_x86_64::Relocate::relocate): Add missing break.
2044
2045 2014-04-15 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
2046
2047 * layout.cc (Layout::include_section): Allow a target to decide
2048 whether to include a section.
2049 * target.h (Target::should_include_section): New function.
2050 (Target::do_should_include_section): New function.
2051
2052 2014-04-15 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
2053
2054 * copy-relocs.cc (Copy_relocs::Copy_reloc_entry::emit): Remove and
2055 inline into ...
2056 (Copy_relocs::emit): ... here.
2057 * copy-relocs.h (Copy_reloc_entry): Change from class to struct.
2058 (Copy_reloc_entry::make_copy_reloc): Change from private to protected.
2059 (Copy_reloc_entry::entries_): Change from private to protected.
2060
2061 2014-04-02 Sriraman Tallam <tmsriram@google.com>
2062
2063 * icf.cc (get_section_contents): Replace copies of reloc
2064 vectors with const references.
2065
2066 2014-04-02 Cary Coutant <ccoutant@google.com>
2067
2068 * configure.ac (HAVE_PUBNAMES): Use C instead of C++.
2069 (HAVE_NO_USE_LINKER_PLUGIN): Check for -fno-use-linker-plugin.
2070 * configure: Regenerate.
2071 * testsuite/Makefile.am (OPT_NO_PLUGINS): New macro for
2072 -fno-use-linker-plugin.
2073 (LINK1, CXXLINK1): Add it to the link command.
2074 * testsuite/Makefile.in: Regenerate.
2075
2076 2014-03-12 Alan Modra <amodra@gmail.com>
2077
2078 * Makefile.in: Regenerate.
2079
2080 2014-03-10 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
2081
2082 * symtab.h (Symbol::set_nonvis): New function.
2083
2084 2014-03-10 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
2085
2086 * symtab.cc (Sized_symbol<32>::init_output_data):
2087 Instantiate the template.
2088 (Sized_symbol<64>::init_output_data): Likewise.
2089
2090 2014-03-10 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
2091
2092 * symtab.cc (Symbol_table::sized_write_globals): Allow a target to
2093 adjust dynamic symbol value.
2094 * target.h (Target::adjust_dyn_symbol): New function.
2095 (Target::do_adjust_dyn_symbol): New function.
2096
2097 2014-03-10 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
2098
2099 * output.cc (Output_data_dynamic::Dynamic_entry::write):
2100 Get the value of DYNAMIC_CUSTOM dynamic entry.
2101 * output.h (Output_data_dynamic::add_custom): New function.
2102 (Dynamic_entry::Dynamic_entry): New constructor for DYNAMIC_CUSTOM
2103 dynamic entry.
2104 (enum Dynamic_entry::Classification): Add DYNAMIC_CUSTOM.
2105 * target.h (Target::dynamic_tag_custom_value): New function.
2106 (Target::do_dynamic_tag_custom_value): New function.
2107
2108 2014-03-10 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
2109
2110 * symtab.cc (Symbol_table::set_dynsym_indexes): Allow a target to set
2111 dynsym indexes.
2112 * target.h (Target::has_custom_set_dynsym_indexes): New function.
2113 (Target::do_has_custom_set_dynsym_indexes): New function.
2114 (Target::set_dynsym_indexes): New function.
2115 (Target::do_set_dynsym_indexes): New function.
2116
2117 2014-03-07 Alan Modra <amodra@gmail.com>
2118
2119 * powerpc.cc (Powerpc_relocate_functions::Overflow_check): Add
2120 CHECK_UNSIGNED, CHECK_LOW_INSN, CHECK_HIGH_INSN.
2121 (Powerpc_relocate_functions::has_overflow_unsigned): New function.
2122 (Powerpc_relocate_functions::has_overflow_bitfield,
2123 overflowed): Use the above.
2124 (Target_powerpc::Relocate::relocate): Correct overflow checking
2125 for a number of relocations. Modify overflow test for 16-bit
2126 fields in instructions to signed/unsigned according to whether
2127 the field takes a signed or unsigned value.
2128
2129 2014-03-05 Alan Modra <amodra@gmail.com>
2130
2131 Update copyright years.
2132
2133 2014-03-05 Alan Modra <amodra@gmail.com>
2134
2135 * powerpc.cc (Target_powerpc::Scan::local, global): Support
2136 R_PPC64_ADDR64_LOCAL.
2137 (Target_powerpc::Relocate::relocate): Likewise.
2138
2139 2014-03-03 Alan Modra <amodra@gmail.com>
2140
2141 * dwp.cc (print_version): Update copyright year to current.
2142
2143 2014-02-10 Alan Modra <amodra@gmail.com>
2144
2145 * po/gold.pot: Regenerate.
2146
2147 2014-02-06 Cary Coutant <ccoutant@google.com>
2148
2149 Fix problem where -u is ignored when a weak undef is seen.
2150
2151 * archive.cc (Library_base::should_include_member): Reorder
2152 code to check for -u option if a weak undef has already been seen.
2153 * testsuite/Makefile.am (weak_undef_test_2): New test case.
2154 * testsuite/Makefile.in: Regenerate.
2155 * testsuite/weak_undef_file3.cc: New file.
2156 * testsuite/weak_undef_file4.cc: New file.
2157 * testsuite/weak_undef_test_2.cc: New file.
2158
2159 2014-02-05 Cary Coutant <ccoutant@google.com>
2160
2161 Fix issues with gold undefined symbol diagnostics.
2162
2163 PR binutils/15435
2164 * errors.cc (Errors::undefined_symbol): Move undef vtable symbol
2165 check to here.
2166 * target-reloc.h (is_strong_undefined): New function.
2167 (relocate_section): Move undef vtable symbol check from here.
2168 Check for is_strong_undefined.
2169
2170 2014-02-05 Cary Coutant <ccoutant@google.com>
2171
2172 Fix problems with the --dynamic-list option.
2173
2174 PR gold/13577
2175 * options.cc (General_options::parse_dynamic_list):
2176 Set have_dynamic_list_.
2177 (General_options::General_options): Initialize have_dynamic_list_.
2178 (General_options::finalize): Turn off -Bsymbolic and
2179 -Bsymbolic-functions if --dynamic-list provided.
2180 * options.h (General_options::have_dynamic_list): New function.
2181 (General_options::have_dynamic_list_): New data member.
2182 * symtab.h (Symbol::is_preemptible): Handle --dynamic-list
2183 correctly.
2184
2185 PR gold/16530
2186 * symtab.cc (Symbol_table::add_from_relobj): If symbol is named
2187 in --dynamic-list, mark it.
2188
2189 * testsuite/Makefile.am (gc_dynamic_list_test.sh): New test case.
2190 (dynamic_list_2): New test case.
2191 * testsuite/Makefile.in: Regenerate.
2192 * testsuite/dynamic_list_2.cc: New file.
2193 * testsuite/dynamic_list_2.t: New file.
2194 * testsuite/dynamic_list_lib1.cc: New file.
2195 * testsuite/dynamic_list_lib2.cc: New file.
2196 * testsuite/gc_dynamic_list_test.c: New file.
2197 * testsuite/gc_dynamic_list_test.sh: New file.
2198 * testsuite/gc_dynamic_list_test.t: New file.
2199
2200 2014-01-28 Cary Coutant <ccoutant@google.com>
2201
2202 Add .gdb_index version 7 support.
2203
2204 * gold/dwarf_reader.cc: include <utility> (for make_pair).
2205 (Dwarf_abbrev_table::do_read_abbrevs): Check for compressed
2206 debug sections.
2207 (Dwarf_ranges_table::read_ranges_table): Likewise.
2208 (Dwarf_pubnames_table::read_section): Check for GNU-style
2209 sections, and for compressed debug sections.
2210 (Dwarf_pubnames_table::read_header): Compute end address of table.
2211 (Dwarf_pubnames_table::next_name): Return flag_byte. Check
2212 for end of list by offset, not by offset == 0.
2213 (Dwarf_info_reader::do_read_string_table): Check for compressed
2214 debug sections.
2215 * gold/dwarf_reader.h (Dwarf_pubnames_table::Dwarf_pubnames_table):
2216 Initialize new data members.
2217 (Dwarf_pubnames_table::next_name): return flag_byte.
2218 (Dwarf_pubnames_table::end_of_table_): New data member.
2219 (Dwarf_pubnames_table::is_gnu_style_): New data member.
2220 * gold/gdb-index.cc (gdb_index_version): Update to version 7.
2221 (Gdb_index_info_reader::read_pubtable): Read flag_byte.
2222 (Gdb_index_info_reader::read_pubnames_and_pubtypes): Don't
2223 read skeleton type unit DIEs.
2224 (Gdb_index::add_symbol): Add flag_byte; adjust all callers.
2225 (Gdb_index::do_write): Write flag_byte.
2226 * gold/gdb-index.h (Gdb_index::add_symbol): Add flags parameter.
2227 (Gdb_index::Cu_vector): Store flags along with cu indexes.
2228 * gold/testsuite/gdb_index_test_3.sh: Allow versions 4-7.
2229 * gold/testsuite/gdb_index_test_comm.sh: Likewise.
2230
2231 2014-01-08 H.J. Lu <hongjiu.lu@intel.com>
2232
2233 * version.cc (print_version): Update copyright year to 2014.
2234
2235 2013-12-19 Dimitry Andric <dimitry@andric.com>
2236
2237 * stringpool.cc (Stringpool_template::reserve): Add
2238 HAVE_UNORDERED_MAP case.
2239 * stringpool.cc (Stringpool_template::print_stats): Likewise.
2240
2241 2013-12-18 Cary Coutant <ccoutant@google.com>
2242
2243 * configure.ac: Check for <unordered_set> and <unordered_map>.
2244 * config.in: Regenerate.
2245 * configure: Regenerate.
2246 * system.h: Use <unordered_set> and <unordered_map> if available.
2247
2248 2013-12-10 Roland McGrath <mcgrathr@google.com>
2249
2250 * Makefile.am (install-exec-local): Prefix $(INSTALL_PROGRAM) uses
2251 with $(INSTALL_PROGRAM_ENV).
2252 * Makefile.in: Regenerate.
2253
2254 2013-11-22 Cary Coutant <ccoutant@google.com>
2255
2256 * configure.ac: Add check for which library is needed for
2257 dlopen.
2258 * configure: Regenerate.
2259
2260 2013-11-22 Cary Coutant <ccoutant@google.com>
2261
2262 * testsuite/Makefile.am (exception_x86_64_bnd_test): Use in-tree
2263 assembler.
2264 * testsuite/Makefile.in: Regenerate.
2265
2266 2013-11-17 H.J. Lu <hongjiu.lu@intel.com>
2267
2268 * x86_64.cc (Target_x86_64<size>::Scan::get_reference_flags):
2269 Handle R_X86_64_PC32_BND and R_X86_64_PLT32_BND just like
2270 R_X86_64_PC32 and R_X86_64_PLT32, respectively.
2271 (Target_x86_64<size>::Scan::local): Likewise.
2272 (Target_x86_64<size>::Scan::global): Likewise.
2273 (Target_x86_64<size>::Relocate::relocate): Likewise.
2274 (Target_x86_64<size>::Relocatable_size_for_reloc::get_size_for_reloc):
2275 Likewise.
2276 (Target_x86_64<size>::Scan::check_non_pic(): Handle
2277 R_X86_64_PC32_BND.
2278
2279 * testsuite/Makefile.am (check_PROGRAMS): Add
2280 exception_x86_64_bnd_test.
2281 (exception_x86_64_bnd_test_SOURCES): New macro.
2282 (exception_x86_64_bnd_test_DEPENDENCIES): Likewise.
2283 (exception_x86_64_bnd_test_LDFLAGS): Likewise.
2284 (exception_x86_64_bnd_test_LDADD): Likewise.
2285 (exception_x86_64_bnd_1.o): New rule.
2286 (exception_x86_64_bnd_2.o): Likewise.
2287 * testsuite/Makefile.in: Regenerated.
2288
2289 2013-11-15 Alan Modra <amodra@gmail.com>
2290
2291 * powerpc.cc (Target_powerpc::glink_section): Provide non-const
2292 accessor.
2293 (Target_powerpc::Branch_info::make_stub): Make global entry stubs.
2294 Only call ppc64_local_entry_offset for 64-bit. Restrict
2295 symval_for_branch lookup to ELFv1.
2296 (Stub_table::add_plt_call_entry): Use unsigned int off.
2297 (Output_data_glink::Address, invalid_address): New.
2298 (Output_data_glink::add_eh_frame): Move out of line. Add
2299 support for ELFv2.
2300 (Output_data_glink::add_global_entry, find_global_entry,
2301 global_entry_address): New functions.
2302 (Output_data_glink::global_entry_stubs_, end_branch_table_,
2303 ge_size): New variables.
2304 (Output_data_glink::set_final_data_size): Add global entry
2305 stub sizing.
2306 (Output_data_glink::do_write): Write global entry stubs.
2307 (Target_powerpc::Scan::reloc_needs_plt_for_ifunc): Add target
2308 parameter. Return true for ELFv2. Adjust callers.
2309 (Target_powerpc::Scan::local, global): Restrict opd lookup to
2310 ELFv1. Similarly for ifunc and dynamic relocation processing
2311 specific to ELFv1. Recognize that symbols are defined on
2312 their plt entries for ELFv2.
2313 (Target_powerpc::symval_for_branch): Assert if called for
2314 ELFv2 or ppc32.
2315 (Target_powerpc::Relocate::relocate): Use global entry plt
2316 stub for symbol value if such exists on ELFv2.
2317 (Target_powerpc::Relocate::relocate): Don't call
2318 symval_for_branch when ELFv2. Do adjust for local entry
2319 offset when ELFv2.
2320 (Target_powerpc::do_dynsym_value): Set symbols to global entry
2321 plt stub for ELFv2.
2322 (Target_powerpc::do_plt_address_for_global): Similarly.
2323
2324 2013-11-14 Cary Coutant <ccoutant@google.com>
2325
2326 Revert patch -- this did not fix the problem, and there is
2327 no race there.
2328
2329 2013-11-14 Cary Coutant <ccoutant@google.com>
2330
2331 PR gold/14860
2332 * ehframe.cc (Eh_frame_hdr::Eh_frame_hdr): Initialize lock_.
2333 (Ehframe_hdr::set_final_data_size): Allocate a Lock.
2334 * ehframe.h (Eh_frame_hdr::record_fde): Hold the lock while
2335 updating fde_offsets_.
2336 (Eh_frame_hdr::lock_): New data member.
2337
2338 2013-11-14 Cary Coutant <ccoutant@google.com>
2339
2340 * dwp.cc (Dwo_file_entry): New type.
2341 (File_list): Use Dwo_file_entry.
2342 (Dwo_file::verify): New function.
2343 (Dwo_file::verify_dwo_list): New function.
2344 (Dwo_file::sized_verify_dwo_list): New function.
2345 (Dwo_name_info_reader::visit_compilation_unit): Add dwo_id to file
2346 list.
2347 (Dwp_options): New enum type.
2348 (dwp_options): Add --verify-only.
2349 (usage): Likewise.
2350 (main): Likewise.
2351 * dwp.h (gold_info): Add declaration.
2352
2353 2013-11-14 Cary Coutant <ccoutant@google.com>
2354
2355 PR gold/14860
2356 * ehframe.cc (Eh_frame_hdr::Eh_frame_hdr): Initialize lock_.
2357 (Ehframe_hdr::set_final_data_size): Allocate a Lock.
2358 * ehframe.h (Eh_frame_hdr::record_fde): Hold the lock while
2359 updating fde_offsets_.
2360 (Eh_frame_hdr::lock_): New data member.
2361
2362 2013-11-06 Cary Coutant <ccoutant@google.com>
2363
2364 PR gold/15758
2365 * object.cc (Sized_relobj_file::do_layout): Handle .eh_frame sections
2366 before reloc sections.
2367
2368 2013-11-04 Alan Modra <amodra@gmail.com>
2369
2370 * symtab.h (Symbol::Reference_flags): Add FUNC_DESC_ABI.
2371 (Symbol::needs_dynamic_reloc): Test new flag.
2372 * powerpc.cc (needs_dynamic_reloc, use_plt_offset): Delete.
2373 (Target_powerpc::Scan::get_reference_flags): Add target param.
2374 Return FUNC_DESC_ABI for 64-bit ELFv1.
2375 (Target_powerpc::Branch_info::make_stub): Adjust get_reference_flags
2376 call.
2377 (Target_powerpc::Scan::global): Use Symbol::needs_dynamic_reloc.
2378 (Target_powerpc::Relocate::relocate): Use Symbol::use_plt_offset.
2379
2380 2013-10-31 Cary Coutant <ccoutant@google.com>
2381
2382 Restore support for dwp v2 DWARF package file format.
2383
2384 * dwarf_reader.cc (Dwarf_info_reader::visit_type_unit): Add
2385 tu_length parameter. Adjust all callers.
2386 * dwarf_reader.h (Dwarf_info_reader::visit_type_unit): Likewise.
2387 * dwp.cc: Include dwarf.h.
2388 (Section_bounds): New struct type.
2389 (Unit_set): New struct type.
2390 (Dwo_file::Dwo_file): Initialize new data member.
2391 (Dwo_file::read_compunit_index, Dwo_file::read_typeunit_index):
2392 Combine and rename to...
2393 (Dwo_file::read_unit_index): ...this.
2394 (Dwo_file::sized_read_compunit_index)
2395 (Dwo_file::sized_read_typeunit_index): Combine and rename to...
2396 (Dwo_file::sized_read_unit_index): ...this.
2397 (Dwo_file::copy_section): Remove section_name, is_str_offsets
2398 parameters; add section_id parameter.
2399 (Dwo_file::add_cu_set, Dwo_file::add_tu_set): Combine and rename to...
2400 (Dwo_file::add_unit_set): ...this.
2401 (Dwo_file::shndx_map_): Remove.
2402 (Dwo_file::sect_offsets_): New data member.
2403 (Dwp_output_file::Dwp_output_file): Initialize new data members.
2404 (Dwp_output_file::add_section): Rename to...
2405 (Dwp_output_file::add_contribution): ...this.
2406 (Dwp_output_file::add_cu_set): Combine parameters into a struct.
2407 (Dwp_output_file::add_tu_set): Likewise.
2408 (Dwp_output_file::Contribution): New type.
2409 (Dwp_output_file::Section::contributions): New data member.
2410 (Dwp_output_file::Cu_or_tu_set): Remove.
2411 (Dwp_output_file::Section::Section): New ctor.
2412 (Dwp_output_file::Dwp_index::Shndx_pool): Remove.
2413 (Dwp_output_file::Dwp_index::Section_table): New type.
2414 (Dwp_output_file::Dwp_index::Dwp_index): Initialize new data members.
2415 (Dwp_output_file::Dwp_index::enter_set): Change type of "set"
2416 parameter.
2417 (Dwp_output_file::Dwp_index::shndx_pool): Remove.
2418 (Dwp_output_file::Dwp_index::shndx_pool_end): Remove.
2419 (Dwp_output_file::Dwp_index::section_table): New member function.
2420 (Dwp_output_file::Dwp_index::section_table_end): New member function.
2421 (Dwp_output_file::Dwp_index::shndx_pool_size): Remove.
2422 (Dwp_output_file::Dwp_index::section_table_rows): New member function.
2423 (Dwp_output_file::Dwp_index::section_table_cols): New member function.
2424 (Dwp_output_file::Dwp_index::shndx_pool_): Remove.
2425 (Dwp_output_file::Dwp_index::section_table_): New data member.
2426 (Dwp_output_file::Dwp_index::section_mask_): New data member.
2427 (Dwp_output_file::add_output_section): New member function.
2428 (Dwp_output_file::write_new_section): New member function.
2429 (Dwp_output_file::write_contributions): New member function.
2430 (Dwp_output_file::section_id_map_): New data member.
2431 (class Dwo_id_info_reader): Remove.
2432 (class Unit_reader): New class.
2433 (get_dwarf_section_name): New function.
2434 (Dwo_file::read_executable): Adjust initializations of class data.
2435 (Dwo_file::read): Add support for v2 package file format.
2436 (Dwo_file::read_unit_index): Likewise.
2437 (Dwo_file::sized_read_unit_index): Likewise.
2438 (Dwo_file::copy_section): Likewise.
2439 (Dwo_file::add_unit_set): Likewise.
2440 (Dwp_output_file::add_output_section): Likewise.
2441 (Dwp_output_file::add_contribution): Likewise.
2442 (Dwp_output_file::Dwp_index::find_or_add): Use row index to check
2443 for empty slot.
2444 (Dwp_output_file::Dwp_index::enter_set): Add support for v2 package
2445 file format.
2446 (Dwp_output_file::Dwp_index::grow): Use row index to check for empty
2447 slot.
2448 (Dwp_output_file::initialize): Remove unused function.
2449 (Dwp_output_file::finalize): Add support for v2 package file format.
2450 (Dwp_output_file::write_index): Likewise.
2451 * gdb-index.cc (Gdb_index_info_reader::visit_type_unit): Adjust
2452 function prototype.
2453
2454 2013-10-31 Cary Coutant <ccoutant@google.com>
2455
2456 * configure.ac: Fix check for -fmerge-constants.
2457 * configure.ac: Regenerate.
2458
2459 2013-10-30 Roland McGrath <mcgrathr@google.com>
2460
2461 * x86_64.cc (Output_data_plt_x86_64_nacl::first_plt_entry):
2462 Correct 9-byte nop sequence to match what the assembler generates.
2463
2464 2013-10-30 Alan Modra <amodra@gmail.com>
2465
2466 * powerpc.cc (Powerpc_relobj::abiversion, set_abiversion,
2467 ppc64_local_entry_offset, ppc64_local_entry_offset,
2468 do_read_symbols): New functions.
2469 (Powerpc_relobj::e_flags_, st_other_): New vars.
2470 (Powerpc_relobj::Powerpc_relobj): Call set_abiversion.
2471 (Powerpc_dynobj::abiversion, set_abiversion): New functions.
2472 (Powerpc_relobj::e_flags_): New var.
2473 (Target_powerpc::first_plt_entry_offset, plt_entry_size): Inline
2474 and adjust for ELFv2.
2475 (Target_powerpc::abiversion, set_abiversion, stk_toc): New functions.
2476 (Powerpc_relobj::do_find_special_sections): Check no .opd in ELFv2.
2477 (Powerpc_dynobj::do_find_special_sections): Likewise.
2478 (Target_powerpc::do_define_standard_symbols): Define ".TOC.".
2479 (Target_powerpc::Branch_info::make_stub): Adjust stub destination
2480 to ELFv2 local entry.
2481 (Target_powerpc::do_relax): No thread safe barriers needed for
2482 ELFv2.
2483 (Output_data_plt_powerpc::initial_plt_entry_size_,
2484 plt_entry_size): Delete. Replace all uses with
2485 first_plt_entry_offset() and plt_entry_size().
2486 (Output_data_plt_powerpc::Output_data_plt_powerpc): Remove
2487 reserved_size parm. Update callers.
2488 (Output_data_plt_powerpc::entry_count): Update.
2489 (Output_data_plt_powerpc::first_plt_entry_offset): Make private
2490 and use Target_powerpc::first_plt_entry_offset().
2491 (Output_data_plt_powerpc::get_plt_entry_size): Similarly and
2492 rename to plt_entry_size.
2493 (Output_data_plt_powerpc::add_ifunc_entry,
2494 add_local_ifunc_entry): Adjust reloc for ELFv2.
2495 (glink_eh_frame_fde_64): Rename to glink_eh_frame_fde_64v1.
2496 (glink_eh_frame_fde_64v2): New.
2497 (Stub_table::plt_call_size): Support ELFv2 sizing.
2498 (Output_data_glink::add_eh_frame): Use the new FDE.
2499 (Output_data_glink::set_final_data_size): Adjust for ELFv2 glink.
2500 (Stub_table::do_write): Write ELFv2 stubs and glink.
2501 (Target_powerpc::Relocate::relocate): Replaces nop after call
2502 with ld 2,24(1) and adjust local offset destination for ELFv2.
2503
2504 2013-10-30 Alan Modra <amodra@gmail.com>
2505
2506 * powerpc.cc (Target_powerpc::Scan::check_non_pic): Handle new relocs.
2507 (Target_powerpc::Scan::global, local): Likewise.
2508 (Target_powerpc::Relocate::relocate): Likewise. Check for overflow
2509 on all ppc64 @h and @ha relocs.
2510
2511 2013-10-14 Alan Modra <amodra@gmail.com>
2512
2513 * output.h (Output_data_got::add_constant): Tidy.
2514 (Output_data_got::add_constant_pair): New function.
2515 * powerpc.cc (Output_data_got_powerpc): Override all Output_data_got
2516 methods used so as to first call reserve_ent().
2517
2518 2013-10-11 Roland McGrath <mcgrathr@google.com>
2519
2520 * powerpc.cc (Output_data_got_powerpc): Remove unused methods
2521 add_got_entry and add_got_entry_pair.
2522
2523 * configure.ac (TLS_GNU2_DIALECT): Use -Werror in test.
2524 (HAVE_PUBNAMES): Likewise.
2525 * configure: Regenerate.
2526
2527 * testsuite/Makefile.am: Replace '-T foo' with '-Wl,-T,foo' throughout.
2528 * testsuite/Makefile.in: Regenerate.
2529
2530 * target.h (Target::adjust_elf_header, Target::do_adjust_elf_header):
2531 Remove const from declaration.
2532 * target.cc (Sized_target::do_adjust_elf_header): Update definition.
2533 * sparc.cc (Target_sparc::do_adjust_elf_header): Likewise.
2534 * output.h (Output_file_header): Remove const from member target_
2535 and corresponding constructor argument.
2536 * output.cc (Output_file_header::Output_file_header): Update prototype.
2537 (Output_file_header::do_sized_write): Use this->target_ in place
2538 of parameters()->target().
2539
2540 * testsuite/undef_symbol.cc (Foo::get_a): New method.
2541
2542 * configure.ac (MERGE_CONSTANTS_FLAG): New check.
2543 * configure: Regenerate.
2544 * Makefile.in: Regenerate.
2545 * testsuite/merge_string_literals_1.c: Renamed to have .cc suffix.
2546 * testsuite/merge_string_literals_2.c: Likewise.
2547 * testsuite/Makefile.am
2548 (merge_string_literals_1.o, merge_string_literals_2.o): Update deps.
2549 (AM_CFLAGS, AM_CXXFLAGS): Use $(MERGE_CONSTANTS_FLAG) in place of
2550 literal -fmerge-constants.
2551 * testsuite/Makefile.in: Regenerate.
2552
2553 * i386.cc (Target_i386): Remove unused member dynbss_.
2554 * arm.cc (Target_arm): Likewise.
2555 * powerpc.cc (Target_powerpc): Likewise.
2556 * sparc.cc (Target_sparc): Likewise.
2557 * tilegx.cc (Target_tilegx): Likewise.
2558 * x86_64.cc (Target_x86_64): Likewise.
2559 * dwarf_reader.h (Dwarf_info_reader): Remove unused members
2560 type_signature_, type_offset_.
2561 * plugin.h (Plugin_hook): Remove unused member layout_.
2562 * readsyms.h (Add_symbols): Remove unused members dirpath_, dirindex_,
2563 mapfile_.
2564 (Read_member): Remove unused members input_objects_, symtab_,
2565 mapfile_, layout_.
2566 (Check_library): Remove unused member symtab_.
2567 * archive.h (Lib_group): Remove unused member lib_.
2568 * archive.cc (Lib_group::Lib_group): Update initializer.
2569 * incremental.h (Incremental_binary): Remove unused member target_.
2570 (Incremental_script_entry): Removed unused member script_.
2571 * layout.h (Write_symbols_task): Remove unused member input_objects_.
2572 * icf.h (Icf): Remove unused member num_tracked_relocs.
2573
2574 * gold-threads.h (Once): Conditionalize member was_run_lock_ on
2575 [ENABLE_THREADS && __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4], matching
2576 its only use.
2577 * gold-threads.cc (Once::Once): Likewise conditionalize initializer.
2578
2579 * archive.h: Use struct rather than class for forward declaration
2580 of Read_symbols_data.
2581
2582 2013-10-07 Cary Coutant <ccoutant@google.com>
2583
2584 PR gold/16010
2585 * testsuite/Makefile.am (icf_test): Fix dependencies.
2586 (icf_safe_test): Likewise.
2587 (icf_safe_so_test): Likewise.
2588 (large_symbol_alignment): Add empty _LDADD rule.
2589 * testsuite/Makefile.in: Regenerate.
2590
2591 2013-09-03 Pavel Chupin <pavel.v.chupin@intel.com>
2592
2593 PR gold/15927
2594 * x86_64.cc (Target_x86_64<size>::Scan::global): Use relative
2595 relocation for R_X86_64_32 on x32.
2596
2597 2013-08-27 Roland McGrath <mcgrathr@google.com>
2598
2599 * output.cc (Output_segment::set_section_addresses): Take new
2600 Target* argument. If target->isolate_execinstr() and the segment
2601 is executable and starts at a target->abi_pagesize() boundary,
2602 pad its end out to a target->abi_pagesize() boundary with code fill.
2603 * output.h (Output_segment::set_section_addresses): Update decl.
2604 * layout.h (Layout::check_output_data_for_reset_values): Take new
2605 argument RELAX_OUTPUTS.
2606 (Layout): New member relax_output_list_.
2607 (Layout::add_relax_output): New method.
2608 * layout.cc (Layout::Layout): Update constructor.
2609 (Layout::reset_relax_output): New method.
2610 (Layout::clean_up_after_relaxation): Call it.
2611 (Layout::prepare_for_relaxation): Update caller.
2612 (Layout::set_segment_offsets): Update callers of set_section_addresses.
2613 Call reset_relax_output before re-processing segments for
2614 isolate_execinstr case.
2615 (Layout::write_data): Handle relax_output_list_.
2616 (Layout::Relaxation_debug_check::check_output_data_for_reset_values):
2617 Take new argument RELAX_OUTPUTS. Assert it's an empty collection.
2618
2619 2013-08-23 Yuri Chornoivan <yurchor@ukr.net>
2620
2621 PR binutils/15834
2622 * object.h: Fix typos.
2623
2624 2013-08-16 Roland McGrath <mcgrathr@google.com>
2625
2626 * i386.cc (Target_i386_nacl::do_code_fill): New virtual function.
2627 * x86_64.cc (Target_x86_64_nacl::do_code_fill): New virtual function.
2628
2629 2013-08-07 Cary Coutant <ccoutant@google.com>
2630
2631 Revert support for v2 DWP files:
2632
2633 2013-03-01 Cary Coutant <ccoutant@google.com>
2634
2635 Add dwp support for v2 DWARF package file format.
2636 * dwarf_reader.cc (Dwarf_info_reader::visit_type_unit): Add
2637 tu_length parameter. Adjust all callers.
2638 * dwarf_reader.h (Dwarf_info_reader::visit_type_unit): Likewise.
2639 * dwp.cc: Include dwarf.h.
2640 (Section_bounds): New struct type.
2641 (Unit_set): New struct type.
2642 (Dwo_file::Dwo_file): Initialize new data member.
2643 (Dwo_file::read_compunit_index, Dwo_file::read_typeunit_index):
2644 Combine and rename to...
2645 (Dwo_file::read_unit_index): ...this.
2646 (Dwo_file::sized_read_compunit_index)
2647 (Dwo_file::sized_read_typeunit_index): Combine and rename to...
2648 (Dwo_file::sized_read_unit_index): ...this.
2649 (Dwo_file::copy_section): Remove section_name, is_str_offsets
2650 parameters; add section_id parameter.
2651 (Dwo_file::add_cu_set, Dwo_file::add_tu_set): Combine and rename to...
2652 (Dwo_file::add_unit_set): ...this.
2653 (Dwo_file::shndx_map_): Remove.
2654 (Dwo_file::sect_offsets_): New data member.
2655 (Dwp_output_file::Dwp_output_file): Initialize new data members.
2656 (Dwp_output_file::add_section): Rename to...
2657 (Dwp_output_file::add_contribution): ...this.
2658 (Dwp_output_file::add_cu_set): Combine parameters into a struct.
2659 (Dwp_output_file::add_tu_set): Likewise.
2660 (Dwp_output_file::Contribution): New type.
2661 (Dwp_output_file::Section::contributions): New data member.
2662 (Dwp_output_file::Cu_or_tu_set): Remove.
2663 (Dwp_output_file::Section::Section): New ctor.
2664 (Dwp_output_file::Dwp_index::Shndx_pool): Remove.
2665 (Dwp_output_file::Dwp_index::Section_table): New type.
2666 (Dwp_output_file::Dwp_index::Dwp_index): Initialize new data members.
2667 (Dwp_output_file::Dwp_index::enter_set): Change type of "set"
2668 parameter.
2669 (Dwp_output_file::Dwp_index::shndx_pool): Remove.
2670 (Dwp_output_file::Dwp_index::shndx_pool_end): Remove.
2671 (Dwp_output_file::Dwp_index::section_table): New member function.
2672 (Dwp_output_file::Dwp_index::section_table_end): New member function.
2673 (Dwp_output_file::Dwp_index::shndx_pool_size): Remove.
2674 (Dwp_output_file::Dwp_index::section_table_rows): New member function.
2675 (Dwp_output_file::Dwp_index::section_table_cols): New member function.
2676 (Dwp_output_file::Dwp_index::shndx_pool_): Remove.
2677 (Dwp_output_file::Dwp_index::section_table_): New data member.
2678 (Dwp_output_file::Dwp_index::section_mask_): New data member.
2679 (Dwp_output_file::add_output_section): New member function.
2680 (Dwp_output_file::write_new_section): New member function.
2681 (Dwp_output_file::write_contributions): New member function.
2682 (Dwp_output_file::section_id_map_): New data member.
2683 (class Dwo_id_info_reader): Remove.
2684 (class Unit_reader): New class.
2685 (get_dwarf_section_name): New function.
2686 (Dwo_file::read_executable): Adjust initializations of class data.
2687 (Dwo_file::read): Add support for v2 package file format.
2688 (Dwo_file::read_unit_index): Likewise.
2689 (Dwo_file::sized_read_unit_index): Likewise.
2690 (Dwo_file::copy_section): Likewise.
2691 (Dwo_file::add_unit_set): Likewise.
2692 (Dwp_output_file::add_output_section): Likewise.
2693 (Dwp_output_file::add_contribution): Likewise.
2694 (Dwp_output_file::Dwp_index::find_or_add): Use row index to check
2695 for empty slot.
2696 (Dwp_output_file::Dwp_index::enter_set): Add support for v2 package
2697 file format.
2698 (Dwp_output_file::Dwp_index::grow): Use row index to check for empty
2699 slot.
2700 (Dwp_output_file::initialize): Remove unused function.
2701 (Dwp_output_file::finalize): Add support for v2 package file format.
2702 (Dwp_output_file::write_index): Likewise.
2703 * gdb-index.cc (Gdb_index_info_reader::visit_type_unit): Adjust
2704 function prototype.
2705
2706 2013-07-31 Cary Coutant <ccoutant@google.com>
2707
2708 * object.cc (Sized_relobj::do_output_section_address): New function.
2709 (Sized_relobj): Instantiate explicitly.
2710 * object.h (Object::output_section_address): New function.
2711 (Object::do_output_section_address): New function.
2712 (Sized_relobj::do_output_section_address): New function.
2713 * powerpc.cc (Target_powerpc::symval_for_branch): Use it.
2714
2715 2013-07-30 Cary Coutant <ccoutant@google.com>
2716 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
2717
2718 * parameters.cc (Parameters::entry): Return target-specific entry
2719 symbol name.
2720 * target.h (Target::entry_symbol_name): New function.
2721 (Target_info::entry_symbol_name): New data member.
2722
2723 * arm.cc (Target_arm::arm_info): Add entry_symbol_name.
2724 * i386.cc (Target_i386::i386_info): Likewise.
2725 (Target_i386_nacl::i386_nacl_info): Likewise.
2726 * sparc.cc (Target_sparc::sparc_info): Likewise.
2727 * tilegx.cc (Target_tilegx::tilegx_info): Likewise.
2728 * x86_64.cc: (Target_x86_64::x86_64_info) Likewise.
2729 (Target_x86_64_nacl::x86_64_nacl_info) Likewise.
2730 * testsuite/testfile.cc (Target_test::test_target_info): Likewise.
2731
2732 2013-07-22 Sterling Augustine <saugustine@google.com>
2733
2734 * dwarf_reader.cc (Dwarf_pubnames_table::read_section):
2735 Convert parameter shndx to local variable. Add parameters symtab
2736 and symtab_size. Scan over section names. Find relocation
2737 section corresponding to current section. Create and initialize
2738 reloc_mapper_ and reloc_type_.
2739 (Dwarf_pubnames_table::read_header): Add assertion. Change
2740 unit_length to off_t. Initialize member unit_length_. Fill in field
2741 cu_offset_.
2742 * dwarf_reader.h (Dwarf_pubnames_table::Dwarf_pubnames_table):
2743 Initialize new fields unit_length_ and cu_offset_.
2744 (Dwarf_pubnames_table::read_section): Update prototype.
2745 (Dwarf_pubnames_table::cu_offset): New member function.
2746 (Dwarf_pubnames_table::subsection_size): Likewise.
2747 (Dwarf_pubnames_table::cu_offset_, Dwarf_pubnames_table::unit_length):
2748 New fields.
2749 (Dwarf_info_reader::symtab, Dwarf_info_reader::symtab_size): Make
2750 member functions public.
2751 * gdb_index.cc (Gdb_index_info_reader::read_pubnames_and_pubtypes):
2752 Update comment. Rework logic. Move repeated parts to...
2753 (Gdb_index_info_reader::read_pubtable): ...here. New function.
2754 (Gdb_index::Gdb_index): Initialize new fields, pubnames_table_,
2755 pubtypes_table_, and stmt_list_offset.
2756 (Gdb_index::map_pubtable_to_dies, Gdb_index::find_pubname_offset,
2757 Gdb_index::find_pubtype_offset,
2758 Gdb_index::map_pubnames_and_types_to_dies): Define new functions.
2759 (Gdb_index::pubnames_read): Update prototype and rework logic.
2760 * gdb_index.h (Gdb_index_info_reader, Dwarf_pubnames_table):
2761 Forward declare.
2762 (Gdb_index::map_pubtable_to_dies, Gdb_index::find_pubname_offset,
2763 Gdb_index::find_pubtype_offset, Gdb_index::pubnames_table)
2764 Gdb_index::pubtypes_table, Gdb_index::map_pubnames_and_types_to_dies,
2765 Gdb_index::map_pubtable_to_dies):
2766 Declare functions.
2767 (Gdb_index::pubnames_read): Update declaration.
2768 (Gdb_index::Pubname_offset_map): New type.
2769 (Gdb_index::cu_pubname_map_, Gdb_index::cu_pubtype_map_,
2770 Gdb_index::pubnames_table_, Gdb_index::pubtypes_table_,
2771 Gdb_index::stmt_list_offset): Declare.
2772 (Gdb_index::pubnames_shndx_, Gdb_index::pubnames_offet_,
2773 Gdb_index::pubtypes_object_, Gdb_index::pubtypes_shndx_)
2774 Gdb_index::pubtypes_offset_): Remove.
2775
2776 2013-07-19 Roland McGrath <mcgrathr@google.com>
2777
2778 * options.h (General_options): Add -Trodata-segment option.
2779 * parameters.cc (Parameters::check_rodata_segment): New function.
2780 (Parameters::set_target_once): Call it.
2781 * parameters.h (Parameters): Declare it (private member function).
2782 * layout.cc (load_seg_unusable_for_headers): New function, broken
2783 out of Layout::relaxation_loop_body. If TARGET->isolate_execinstr()
2784 then validate rodata segment rather than text segment.
2785 (relaxation_loop_body): Call that.
2786 (is_text_segment): New function. Don't admit a non-executable
2787 segment if TARGET->isolate_execinstr().
2788 (set_segment_offsets): Call it. Honor -Trodata-segment option.
2789
2790 2013-07-15 Shawn Landden <shawnlandden@gmail.com>
2791
2792 PR gold/15070
2793 * fileread.h (File_read::get_view): Clarify comment about ALIGNED.
2794 * nacl.h (Sniff_file::View::View): Request aligned view.
2795
2796 2013-07-11 Cary Coutant <ccoutant@google.com>
2797
2798 * powerpc.cc (Target_powerpc::write_branch_lookup_table): Use
2799 correct BRLT entry size.
2800
2801 2013-07-03 Alan Modra <amodra@gmail.com>
2802
2803 * powerpc.cc (Target_powerpc::Relocate::relocate): Update self-call
2804 comment.
2805
2806 2013-07-01 Cary Coutant <ccoutant@google.com>
2807
2808 * dwarf_reader.cc (Dwarf_ranges_table::read_ranges_table): Save
2809 reloc_type_.
2810 (Dwarf_ranges_table::read_range_list): Call lookup_reloc.
2811 (Dwarf_ranges_table::lookup_reloc): New function.
2812 * dwarf_reader.h (Dwarf_ranges_table::Dwarf_ranges_table): Initialize
2813 reloc_type_.
2814 (Dwarf_ranges_table::lookup_reloc): New function.
2815 (Dwarf_ranges_table::reloc_type_): New data member.
2816
2817 2013-06-27 Jing Yu <jingyu@google.com>
2818
2819 PR gold/15662
2820 * powerpc.cc (Output_data_brlt_powerpc::reset_brlt_sizes): New
2821 function.
2822 (Output_data_brlt_powerpc::finalize_brlt_sizes): New function.
2823 (Target_powerpc::do_relax): Call the above.
2824
2825 2013-06-27 Cary Coutant <ccoutant@google.com>
2826
2827 * powerpc.cc (Target_powerpc::symval_for_branch): Don't assert
2828 on garbage collected .opd section.
2829
2830 2013-06-27 Alan Modra <amodra@gmail.com>
2831
2832 * powerpc.cc (Target_powerpc::do_gc_add_reference): Test dst_shndx
2833 is non-zero.
2834 (Target_powerpc::do_gc_mark_symbols): Likewise for sym->shndx().
2835 (Target_powerpc::do_function_location): Likewise for loc->shndx.
2836
2837 2013-06-14 Cary Coutant <ccoutant@google.com>
2838
2839 * resolve.cc (Symbol::override_base): Don't override st_type
2840 from plugin placeholder symbols.
2841 (Symbol_table::resolve): Likewise.
2842 (Symbol_table::should_override): Don't complain about TLS mismatch
2843 if the TO symbol is a plugin placeholder.
2844 * testsuite/Makefile.am (plugin_test_tls): New test.
2845 * testsuite/Makefile.in: Regenerate.
2846 * testsuite/plugin_test_tls.sh: New test script.
2847 * testsuite/two_file_test_2_tls.cc: New test source.
2848 * testsuite/two_file_test_tls.cc: New test source.
2849
2850 2013-06-05 Alexander Ivchenko <alexander.ivchenko@intel.com>
2851
2852 * layout.cc (Layout::set_segment_offsets): Taking care of the case when
2853 the maximum segment alignment is larger than the page size.
2854 * testsuite/Makefile.am (large_symbol_alignment): Test that Gold
2855 correctly aligns the symbols with large alignemnt.
2856 * testsuite/Makefile.in: Regenerate.
2857 * testsuite/large_symbol_alignment.cc: New file.
2858
2859 2013-05-30 Alexander Ivchenko <alexander.ivchenko@intel.com>
2860 Sriraman Tallam <tmsriram@google.com>
2861
2862 * options.h (sort_section): New option.
2863 * output.h (Input_section_sort_section_prefix_special_ordering_compare):
2864 Rename from Input_section_sort_section_name_special_ordering_compare.
2865 (Input_section_sort_section_name_compare): New struct.
2866 * output.cc (Output_section::Input_section_sort_section_name_compare::
2867 operator()): New function.
2868 (Output_section::sort_attached_input_sections): Use new sort function
2869 for .text if --sort-section=name is specified.
2870 * layout.cc (Layout::make_output_section):
2871 Add sorting by name when --sort-section=name is specified.
2872 * testsuite/Makefile.am (text_section_grouping): Test option
2873 --sort-section=name.
2874 * testsuite/Makefile.in: Regenerate.
2875 * testsuite/section_sorting_name.cc: New file.
2876 * testsuite/section_sorting_name.sh: New file.
2877
2878 2013-05-21 Cary Coutant <ccoutant@google.com>
2879
2880 * symtab.h (Symbol::is_cxx_vtable): New function.
2881 * target-reloc.h (relocate_section): Check for vtable symbol.
2882 * testsuite/Makefile.am (missing_key_func.sh): New test case.
2883 * testsuite/Makefile.in: Regenerate.
2884 * testsuite/missing_key_func.cc: New test source.
2885 * testsuite/missing_key_func.sh: New test script.
2886
2887 2013-05-21 Cary Coutant <ccoutant@google.com>
2888
2889 * object.cc (Sized_relobj_file::get_symbol_location_info): Set
2890 type of enclosing symbol.
2891 (Relocate_info::location): Check symbol type when describing symbol.
2892 * object.h (Symbol_location_info): Remove unused line_number;
2893 add enclosing_symbol_type.
2894 * testsuite/debug_msg.sh: Adjust expected output.
2895
2896 2013-05-13 Cary Coutant <ccoutant@google.com>
2897
2898 * configure.ac: Export DEFAULT_TARGET.
2899 * configure: Regenerate.
2900 * Makefile.in: Regenerate.
2901 * testsuite/Makefile.am: Add .EXPORT_ALL_VARIABLES.
2902 * testsuite/Makefile.in: Regenerate.
2903 * testsuite/debug_msg.sh: Delete duplicate tests.
2904 Don't check undef_int error message match for powerpc where the
2905 source file and line number aren't available.
2906
2907 2013-05-10 Roland McGrath <mcgrathr@google.com>
2908
2909 * options.h (General_options): Add --rosegment-gap option.
2910 * options.cc (finalize): --rosegment-gap implies --rosegment.
2911 * layout.cc (set_segment_offsets): Let user option override
2912 target->rosegment_gap().
2913
2914 2013-05-10 Roland McGrath <mcgrathr@google.com>
2915
2916 * options.h (General_options): Remove leading space from help
2917 messages for -nostdlib and --rosegment.
2918
2919 2013-05-03 Maciej W. Rozycki <macro@codesourcery.com>
2920
2921 PR ld/15365
2922 * layout.cc (Layout::finalize): Make __ehdr_start STV_HIDDEN.
2923
2924 2013-05-03 Alan Modra <amodra@gmail.com>
2925
2926 * merge.cc (Output_merge_string::do_add_input_section): Correct
2927 scan for number of strings. Rename vars to avoid shadowing.
2928 Include missing terminator in input_size_.
2929
2930 2013-05-01 H.J. Lu <hongjiu.lu@intel.com>
2931
2932 * merge.cc (Output_merge_string<Char_type>::do_add_input_section):
2933 Restore empty string handling.
2934
2935 2013-05-01 Cary Coutant <ccoutant@google.com>
2936
2937 * stringpool.cc (Stringpool_template::new_key_offset): Fix
2938 uninitialized warning.
2939
2940 2013-04-29 Alexander Ivchenko <alexander.ivchenko@intel.com>
2941
2942 * output.cc (Output_section::add_merge_input_section): Allow
2943 to merge sections if the alignment is more than character size.
2944 * merge.h (Output_merge_string::Output_merge_string): Remove
2945 assert.
2946 * merge.cc (Output_merge_string<Char_type>::do_add_input_section): Count
2947 only not-null strings. Check the alignment of strings.
2948 * stringpool.h
2949 (Stringpool_template<Stringpool_char>::Stringpool_template): Add
2950 alignment as the argument.
2951 (Stringpool_template<Stringpool_char>::addralign_): New class member.
2952 * stringpool.cc (Stringpool_template<Stringpool_char>::new_key_offset):
2953 Align non-zero length strings according to the addralign_.
2954 (Stringpool_template<Stringpool_char>::set_string_offsets):
2955 Updating offsets according to the given alignment.
2956 * testsuite/Makefile.am (text_section_grouping): Test if string
2957 literals are getting merged.
2958 * testsuite/Makefile.in: Regenerate.
2959 * testsuite/merge_string_literals_1.c: New file.
2960 * testsuite/merge_string_literals_2.c: Ditto.
2961 * testsuite/merge_string_literals.sh: Ditto.
2962
2963 2013-04-26 Ian Lance Taylor <iant@google.com>
2964
2965 * target-reloc.h (relocate_section): If the reloc offset is out of
2966 range, pass VIEW as NULL to relocate.relocate.
2967 * arm.cc (Target_arm:Relocate::relocate): Check for a NULL view.
2968 * i386.cc (Target_i386::Relocate::relocate): Likewise.
2969 * powerpc.cc (Target_powerpc::Relocate::relocate): Likewise.
2970 * sparc.cc (Target_sparc::Relocate::relocate): Likewise.
2971 * tilegx.cc (Target_tilegx::Relocate::relocate): Likewise.
2972 * x86_64.cc (Target_x86_64::Relocate::relocate): Likewise.
2973
2974 2013-04-26 Geoff Pike <gpike@chromium.org>
2975
2976 * gold.cc (queue_final_tasks): invoke layout->queue_build_id_tasks().
2977 * layout.cc (Hash_task): New class.
2978 (Layout::queue_build_id_tasks): New function.
2979 (Layout::write_build_id): Handle single-thread portion of build ID
2980 computation. (In some cases, all of it is single-threaded.) Replace
2981 {sha1,md5}_process_bytes with {sha1,md5}_buffer to get the same
2982 functionality in fewer lines of code.
2983 * layout.h (Layout::queue_build_id_tasks): New function declaration.
2984 * options.h (General_options): make "--build-id" default to tree
2985 rather than sha1. Add two new options related to --build-id=tree:
2986 --build-id-chunk-size-for-treehash and
2987 --build-id-min-file-size-for-treehash.
2988 * Makefile.am: add testing of --build-id=tree and related new options
2989 (these tests will be invoked by "make check").
2990 * Makefile.in: Regenerate.
2991
2992 2013-04-25 Alan Modra <amodra@gmail.com>
2993
2994 * configure.tgt: Add powerpcle and powerpc64le.
2995
2996 2013-04-22 Alan Modra <amodra@gmail.com>
2997
2998 PR gold/15355
2999 * layout.cc (Layout::segment_precedes): Allow more than one
3000 segment with the same type and flags.
3001
3002 2013-04-15 Cary Coutant <ccoutant@google.com>
3003
3004 * layout.cc (Layout::set_relocatable_section_offsets): Don't
3005 allocate space in file for BSS sections.
3006
3007 2013-04-15 Cary Coutant <ccoutant@google.com>
3008
3009 * script-sections.cc (Orphan_output_section): Reset address
3010 to zero after each orphaned section for relocatable links.
3011
3012 2013-04-15 Cary Coutant <ccoutant@google.com>
3013
3014 * symtab.cc (Symbol_table::sized_write_globals): Subtract
3015 section starting address for relocatable link.
3016 * testsuite/Makefile.am (script_test_11): New test.
3017 * testsuite/Makefile.in: Regenerate.
3018 * testsuite/script_test_11.c: New source file.
3019 * testsuite/script_test_11.t: New linker script.
3020
3021 2013-04-13 Alan Modra <amodra@gmail.com>
3022
3023 * powerpc.cc (Stub_control::can_add_to_stub_group): Don't set
3024 owner when sections are not adjacent and exceed group size.
3025 (Target_powerpc::group_sections): Handle corner case.
3026 (Target_powerpc::Branch_info::make_stub): Handle case where
3027 stub table doesn't exist due to branches in non-exec sections.
3028 (Target_powerpc::Relocate::relocate): Likewise.
3029
3030 2013-04-11 Alan Modra <amodra@gmail.com>
3031
3032 PR gold/15354
3033 * powerpc.cc (Target_powerpc::make_brlt_section): Name section
3034 .branch_lt to match bfd ld. Adjust comments throughout file.
3035
3036 2013-04-04 Ian Lance Taylor <iant@google.com>
3037
3038 GCC PR c++/56840
3039 * object.cc (do_layout_deferred_sections): Handle .eh_frame
3040 sections before checking whether they are included in the link.
3041
3042 2013-03-29 Sriraman Tallam <tmsriram@google.com>
3043
3044 * archive.cc (Archive::get_elf_object_for_member): Create the elf
3045 object before calling the plugin claim_file handler. Pass the elf
3046 object of the archive to the plugin. Delete the elf object if the
3047 plugin claims the file.
3048
3049 2013-03-21 Alan Modra <amodra@gmail.com>
3050
3051 * layout.cc (Layout::set_segment_offsets): Accept writable .text
3052 segment when omagic.
3053
3054 2013-03-21 Alan Modra <amodra@gmail.com>
3055
3056 * dwp.cc (Dwp_output_file::add_contribution): Avoid signed/unsigned
3057 comparison warning.
3058 * layout.cc (Layout::create_dynamic_symtab): Avoid "may be used
3059 uninitialized" warning.
3060
3061 2013-03-20 Alan Modra <amodra@gmail.com>
3062
3063 * symtab.h (Symbol::clear_version): New function.
3064 * symtab.cc (Symbol_table::set_dynsym_indexes): Don't set object
3065 is_needed by weak references. Clear version for symbols defined
3066 in as-needed objects that are not needed.
3067
3068 2013-03-15 Alan Modra <amodra@gmail.com>
3069
3070 * powerpc.cc (Target_powerpc::Scan::reloc_needs_plt_for_ifunc): Make
3071 static and public. Add report_err param. Return false for data refs.
3072 (Target_powerpc::rela_dyn_section): New overloaded function.
3073 (Target_powerpc::plt_, iplt_): Elucidate.
3074 (Output_data_plt_powerpc::entry_count): Handle current_data_size()==0.
3075 (Output_data_plt_powerpc::do_write): Don't write .iplt.
3076 (Output_data_plt_powerpc::plt_entry_count): Don't add .iplt entries.
3077 (Target_powerpc::Scan::local, global): Adjust reloc_needs_plt_for_ifunc
3078 calls. Put ifunc dynamic relocs in irela_dyn_section. Only
3079 push_branch and make_plt_entry for ifunc syms when
3080 reloc_needs_plt_for_ifunc.
3081 (Target_powerpc::Relocate::relocate): Don't use plt entry value
3082 for ifunc unless reloc_needs_plt_for_ifunc.
3083
3084 2013-03-15 Alan Modra <amodra@gmail.com>
3085
3086 * gc.h (gc_process_relocs): Don't look through function descriptors.
3087 * icf.cc (get_section_contents): Do so here instead.
3088
3089 2013-03-13 Alan Modra <amodra@gmail.com>
3090
3091 * powerpc.cc (is_branch_reloc): Forward declare.
3092 (Target_powerpc::do_can_check_for_function_pointers): New predicate.
3093 (Target_powerpc::Scan::local_reloc_may_be_function_pointer): Return
3094 false for 64-bit, true for 32-bit non-branch relocs.
3095 (Target_powerpc::Scan::global_reloc_may_be_function_pointer): Likewise.
3096 * testsuite/Makefile.am (icf_test): Use linker map file instead of
3097 nm output.
3098 (icf_safe_test): Generate linker map file as well as nm output.
3099 (icf_safe_so_test): Likewise.
3100 * testsuite/Makefile.in: Regenerate.
3101 * testsuite/icf_test.sh: Parse linker map file to determine
3102 section folding.
3103 * testsuite/icf_safe_test.sh: Likewise. Expect folding for PowerPC.
3104 * testsuite/icf_safe_so_test.sh: Likewise.
3105 (X86_32_or_ARM_specific_safe_fold): Merge into..
3106 (arch_specific_safe_fold): ..this.
3107 (X86_64_specific_safe_fold): Delete unused function.
3108
3109 2013-03-12 Alan Modra <amodra@gmail.com>
3110
3111 * gc.h (gc_process_relocs): Look through function descriptors
3112 to determine shndx, symvalue and addend used by ICF. Tidy
3113 variable duplication.
3114
3115 2013-03-11 Alan Modra <amodra@gmail.com>
3116
3117 * gold.cc (queue_middle_tasks): Move detect_odr_violations..
3118 * layout.cc (Layout_task_runner::run): ..to here.
3119 * symtab.h (struct Symbol_location): Extract from..
3120 (class Symbol_table): ..here.
3121 * symtab.cc (Symbol_table::linenos_from_loc): Invoke function_location.
3122 * target.h (class Target): Add function_location and
3123 do_function_location functions.
3124 (class Sized_target): Add do_function_location.
3125 * object.h (class Sized_relobj_file): Move find_shdr..
3126 (class Object): ..to here.
3127 * object.cc: Likewise. Update to suit. Instantiate.
3128 (Sized_relobj_file::find_eh_frame): Update find_shdr call.
3129 * powerpc.cc (class Powerpc_dynobj): New.
3130 (Target_powerpc::do_function_location): New function.
3131 (Powerpc_relobj::do_find_special_sections): Update find_shdr call.
3132 (Powerpc_dynobj::do_read_symbols): New function.
3133 (Target_powerpc::do_make_elf_object): Make a Powerpc_dynobj.
3134
3135 2013-03-08 Ian Lance Taylor <iant@google.com>
3136
3137 * options.cc (General_options::string_to_object_format): Accept
3138 "default".
3139
3140 2013-03-08 Alan Modra <amodra@gmail.com>
3141
3142 * ehframe.h (Post_fdes) Make it a vector of Post_fde rather than
3143 pointer to Post_fde.
3144 (struct Post_fde): Move definition to here..
3145 * ehframe.cc (struct Post_fde): ..from here.
3146 (Cie::write): Don't alloc Post_fde.
3147 (Eh_frame::do_sized_write): Update. Don't free Post_fde.
3148
3149 2013-03-07 Alan Modra <amodra@gmail.com>
3150
3151 * testsuite/discard_locals_relocatable_test.c: Add a powerpc
3152 relocation referencing .LC0.
3153 * testsuite/discard_locals_test.sh: Remove FIXMEs.
3154
3155 2013-03-07 Alan Modra <amodra@gmail.com>
3156
3157 * testsuite/ifunc-sel.h (ifunc_sel, ifunc_one): Mark
3158 always_inline. Add assembly for powerpc to avoid GOT.
3159
3160 2013-03-07 Alan Modra <amodra@gmail.com>
3161
3162 * testsuite/script_test_10.sh: Don't test .bss section
3163 header number.
3164
3165 2013-03-06 Alan Modra <amodra@gmail.com>
3166
3167 * powerpc.cc (class Powerpc_relobj): Move some member functions.
3168 (Target_powerpc::symval_for_branch): Add symtab param. Update
3169 all callers. Handle folded sections.
3170 (Target_powerpc::do_gc_add_reference): Don't cast dynamic object
3171 to Powerpc_relobj.
3172 (Global_symbol_visitor_opd::operator()): Likewise.
3173
3174 2013-03-04 Alan Modra <amodra@gmail.com>
3175
3176 * testsuite/Makefile.am (final_layout_script.lds): Add .sbss.
3177 * testsuite/Makefile.in: Regenerate.
3178
3179 2013-03-01 Cary Coutant <ccoutant@google.com>
3180
3181 Add dwp support for v2 DWARF package file format.
3182 * dwarf_reader.cc (Dwarf_info_reader::visit_type_unit): Add
3183 tu_length parameter. Adjust all callers.
3184 * dwarf_reader.h (Dwarf_info_reader::visit_type_unit): Likewise.
3185 * dwp.cc: Include dwarf.h.
3186 (Section_bounds): New struct type.
3187 (Unit_set): New struct type.
3188 (Dwo_file::Dwo_file): Initialize new data member.
3189 (Dwo_file::read_compunit_index, Dwo_file::read_typeunit_index):
3190 Combine and rename to...
3191 (Dwo_file::read_unit_index): ...this.
3192 (Dwo_file::sized_read_compunit_index)
3193 (Dwo_file::sized_read_typeunit_index): Combine and rename to...
3194 (Dwo_file::sized_read_unit_index): ...this.
3195 (Dwo_file::copy_section): Remove section_name, is_str_offsets
3196 parameters; add section_id parameter.
3197 (Dwo_file::add_cu_set, Dwo_file::add_tu_set): Combine and rename to...
3198 (Dwo_file::add_unit_set): ...this.
3199 (Dwo_file::shndx_map_): Remove.
3200 (Dwo_file::sect_offsets_): New data member.
3201 (Dwp_output_file::Dwp_output_file): Initialize new data members.
3202 (Dwp_output_file::add_section): Rename to...
3203 (Dwp_output_file::add_contribution): ...this.
3204 (Dwp_output_file::add_cu_set): Combine parameters into a struct.
3205 (Dwp_output_file::add_tu_set): Likewise.
3206 (Dwp_output_file::Contribution): New type.
3207 (Dwp_output_file::Section::contributions): New data member.
3208 (Dwp_output_file::Cu_or_tu_set): Remove.
3209 (Dwp_output_file::Section::Section): New ctor.
3210 (Dwp_output_file::Dwp_index::Shndx_pool): Remove.
3211 (Dwp_output_file::Dwp_index::Section_table): New type.
3212 (Dwp_output_file::Dwp_index::Dwp_index): Initialize new data members.
3213 (Dwp_output_file::Dwp_index::enter_set): Change type of "set"
3214 parameter.
3215 (Dwp_output_file::Dwp_index::shndx_pool): Remove.
3216 (Dwp_output_file::Dwp_index::shndx_pool_end): Remove.
3217 (Dwp_output_file::Dwp_index::section_table): New member function.
3218 (Dwp_output_file::Dwp_index::section_table_end): New member function.
3219 (Dwp_output_file::Dwp_index::shndx_pool_size): Remove.
3220 (Dwp_output_file::Dwp_index::section_table_rows): New member function.
3221 (Dwp_output_file::Dwp_index::section_table_cols): New member function.
3222 (Dwp_output_file::Dwp_index::shndx_pool_): Remove.
3223 (Dwp_output_file::Dwp_index::section_table_): New data member.
3224 (Dwp_output_file::Dwp_index::section_mask_): New data member.
3225 (Dwp_output_file::add_output_section): New member function.
3226 (Dwp_output_file::write_new_section): New member function.
3227 (Dwp_output_file::write_contributions): New member function.
3228 (Dwp_output_file::section_id_map_): New data member.
3229 (class Dwo_id_info_reader): Remove.
3230 (class Unit_reader): New class.
3231 (get_dwarf_section_name): New function.
3232 (Dwo_file::read_executable): Adjust initializations of class data.
3233 (Dwo_file::read): Add support for v2 package file format.
3234 (Dwo_file::read_unit_index): Likewise.
3235 (Dwo_file::sized_read_unit_index): Likewise.
3236 (Dwo_file::copy_section): Likewise.
3237 (Dwo_file::add_unit_set): Likewise.
3238 (Dwp_output_file::add_output_section): Likewise.
3239 (Dwp_output_file::add_contribution): Likewise.
3240 (Dwp_output_file::Dwp_index::find_or_add): Use row index to check
3241 for empty slot.
3242 (Dwp_output_file::Dwp_index::enter_set): Add support for v2 package
3243 file format.
3244 (Dwp_output_file::Dwp_index::grow): Use row index to check for empty
3245 slot.
3246 (Dwp_output_file::initialize): Remove unused function.
3247 (Dwp_output_file::finalize): Add support for v2 package file format.
3248 (Dwp_output_file::write_index): Likewise.
3249 * gdb-index.cc (Gdb_index_info_reader::visit_type_unit): Adjust
3250 function prototype.
3251
3252 2013-03-01 Cary Coutant <ccoutant@google.com>
3253
3254 * dwarf_reader.cc (Dwarf_info_reader::check_buffer): Move
3255 function into class definition in header file.
3256 (Dwarf_info_reader::warn_corrupt_debug_section): New function.
3257 * dwarf_reader.h (Dwarf_info_reader::warn_corrupt_debug_section):
3258 New function.
3259 (Dwarf_info_reader::check_buffer): Move here from .cc file.
3260
3261 2013-02-28 Alan Modra <amodra@gmail.com>
3262
3263 * target.h (Target::plt_fde_location, do_plt_fde_location): Declare.
3264 * target.cc (Target::do_plt_fde_location): New function.
3265 * ehframe.h (class FDE): Add post_map field to u_.from_linker,
3266 accessor function, and constructor param.
3267 (struct Post_fde, Post_fdes): Declare.
3268 (Cie::write): Add post_fdes param.
3269 * ehframe.cc (Fde::write): Use plt_fde_location.
3270 (struct Post_fde): Define.
3271 (Cie::write): Stash FDEs added post merge mapping.
3272 (Eh_frame::add_ehframe_for_plt): Assert no new CIEs after mapping.
3273 Adjust Fde constructor call. Bump final_data_size_ for post map FDEs.
3274 (Eh_frame::do_sized_write): Arrange to write post map FDES after
3275 other FDEs.
3276 * powerpc.cc (Target_powerpc::do_plt_fde_location): New function.
3277 (Target_powerpc::has_glink): New function.
3278 (Target_powerpc::do_relax): Add eh_frame info for stubs.
3279 (struct Eh_cie, eh_frame_cie, glink_eh_frame_fde_64,
3280 glink_eh_frame_fde_32, default_fde): New data.
3281 (Stub_table::eh_frame_added_): New var.
3282 (Stub_table::find_long_branch_entry, stub_address, stub_offset):
3283 Make const.
3284 (Stub_table::add_eh_frame): New function.
3285 (Output_data_glink::add_eh_frame): New function.
3286 (Target_powerpc::make_glink_section): Call add_eh_frame.
3287
3288 2013-02-15 Ian Lance Taylor <iant@google.com>
3289
3290 * options.h (DEFINE_uint64_alias): Define.
3291 (class General_options): Add -Ttext-segment as an alias for
3292 -Ttext.
3293
3294 2013-02-15 Alan Modra <amodra@gmail.com>
3295
3296 * powerpc.cc (Stub_table::plt_off): New function, extracted from..
3297 (Stub_table::do_write): ..here, two places.
3298 (Stub_table::plt_call_size): Use it here too.
3299
3300 2013-02-11 Ian Lance Taylor <iant@google.com>
3301
3302 * descriptors.cc (Descriptors::close_all): New function.
3303 * descriptors.h (class Descriptors): Declare close_all.
3304 (close_all_descriptors): New inline function.
3305 * plugin.cc: Include "descriptors.h".
3306 (Plugin_manager::cleanup): Call close_all_descriptors.
3307
3308 2013-02-06 Alan Modra <amodra@gmail.com>
3309
3310 * README: Update coding style link.
3311
3312 2013-01-28 Cary Coutant <ccoutant@google.com>
3313
3314 * dwp.cc (File_list): New typedef.
3315 (Dwo_name_info_reader): New class.
3316 (Dwo_id_info_reader::Dwo_id_info_reader): Remove unused parameters.
3317 (Dwo_id_info_reader::visit_top_die): Remove unused member function.
3318 (Dwo_file::~Dwo_file): Delete input_file_ after obj_.
3319 (Dwo_file::read_executable): New function.
3320 (Dwo_file::read): Move common setup code to ...
3321 (Dwo_file::make_object): ... here.
3322 (dwp_options): Add --exec/-e.
3323 (usage): Likewise.
3324 (main): Likewise.
3325
3326 2013-01-24 Sriraman Tallam <tmsriram@google.com>
3327
3328 * layout.cc (Layout::layout): Check for option text_reorder.
3329 (Layout::make_output_section): Ditto.
3330 * options.h (text_reorder): New option.
3331 * output.cc (Input_section_sort_compare): Remove special ordering
3332 of section names.
3333 (Output_section::
3334 Input_section_sort_section_name_special_ordering_compare::
3335 operator()): New function.
3336 (Output_section::sort_attached_input_sections): Use new sort function
3337 for .text.
3338 * output.h (Input_section_sort_section_name_special_ordering_compare):
3339 New struct.
3340 * testsuite/Makefile.am (text_section_grouping): Test option
3341 --no-text-reorder
3342 * testsuite/Makefile.in: Regenerate.
3343 * testsuite/text_section_grouping.sh: Check order of functions without
3344 default text reordering.
3345
3346 2013-01-18 Mike Frysinger <vapier@gentoo.org>
3347
3348 * options.h (General_options): Change default to true for new_dtags.
3349
3350 2013-01-18 Mike Frysinger <vapier@gentoo.org>
3351
3352 * layout.cc (Layout::finish_dynamic_section): Only add DT_RPATH
3353 when enable_new_dtags is false. Only add DT_RUNPATH when
3354 enable_new_dtags is true.
3355
3356 2013-01-17 Serge Pavlov <serge.v.pavlov@gmail.com>
3357
3358 * powerpc.cc (Stub_table::find_plt_call_entry): Make types
3359 used in declaration and definition consistent.
3360 (Target_powerpc::symval_for_branch): Ditto.
3361
3362 2013-01-16 Sriraman Tallam <tmsriram@google.com>
3363
3364 * testsuite/plugin_final_layout.cc: Fix comment.
3365
3366 2013-01-16 Sriraman Tallam <tmsriram@google.com>
3367
3368 * layout.cc (Layout::layout): Do not do default sorting for
3369 text sections when section ordering is specified.
3370 (make_output_section): Ditto.
3371 * testsuite/plugin_final_layout.cc: Name the function sections
3372 to catch reordering issues.
3373
3374 2013-01-15 Alan Modra <amodra@gmail.com>
3375
3376 * powerpc.cc (Target_powerpc::do_relax): Default shared libs to
3377 plt-thread-safe.
3378
3379 2013-01-15 Alan Modra <amodra@gmail.com>
3380
3381 * testsuite/Makefile.am (final_layout_script.lds): Handle .got section.
3382 * testsuite/Makefile.in: Regenerate.
3383
3384 2013-01-14 Alan Modra <amodra@gmail.com>
3385
3386 * testsuite/Makefile.am (MOSTLYCLEANFILES): Add various output files.
3387 * testsuite/Makefile.in: Regenerate.
3388
3389 2013-01-11 Pavel Chupin <pavel.v.chupin@intel.com>
3390
3391 PR bfd/14430
3392 Fix mingw gold build with plugins enabled
3393 * Makefile.am: Replace -ldl with @DLOPEN_LIBS@.
3394 * configure.ac: Export DLOPEN_LIBS and add headers check.
3395 * plugin.cc: Handle non-dlfcn case.
3396 * Makefile.in: Regenerate.
3397 * config.in: Regenerate.
3398 * configure: Regenerate.
3399 * testsuite/Makefile.in: Regenerate.
3400
3401 2013-01-09 Sriraman Tallam <tmsriram@google.com>
3402
3403 * output.h (sort_attached_input_sections): Change to be public.
3404 * script-sections.cc
3405 (Output_section_definition::set_section_addresses): Sort
3406 attached input sections according to section order before linker
3407 script assigns section addresses.
3408 (Orphan_output_section::set_section_addresses): Sort
3409 attached input sections according to section order before linker
3410 script assigns section addresses.
3411 * Makefile.am (final_layout.sh): Use a simple linker script to
3412 check if section ordering still works.
3413 * Makefile.in: Regenerate.
3414
3415 2013-01-09 Ben Cheng <bccheng@google.com>
3416
3417 * arm.cc (Target_arm::attributes_accept_div): New function.
3418 (Target_arm::attributes_forbid_div): New function.
3419 (Target_arm::merge_object_attributes): Merge the Tag_DIV_use
3420 attribute using the same new functions as what bfd/elf32_arm.c
3421 does.
3422
3423 2013-01-07 Cary Coutant <ccoutant@google.com>
3424
3425 PR gold/14993
3426 * output.cc (Output_section::add_input_section): For incremental
3427 updates, don't track input sections that are allocated from patch
3428 space.
3429
3430 2013-01-07 H.J. Lu <hongjiu.lu@intel.com>
3431 Ian Lance Taylor <iant@google.com>
3432
3433 PR gold/14897
3434 * configure.ac (--enable-ld): Removed.
3435 (install_as_default): Set to yes only for --enable-gold=default
3436 or --disable-ld.
3437 * configure: Regenerated.
3438
3439 2013-01-07 H.J. Lu <hongjiu.lu@intel.com>
3440
3441 * options.h (General_options): Add -fuse-ld= for GCC linker
3442 option compatibility.
3443
3444 2013-01-04 Cary Coutant <ccoutant@google.com>
3445
3446 * configure.ac: Fix typo restoring CXXFLAGS.
3447 * configure: Regenerate.
3448
3449 2013-01-04 Cary Coutant <ccoutant@google.com>
3450
3451 * testsuite/Makefile.am (CXXLINK_S): New macro.
3452 (debug_msg_so.err, debug_msg_ndebug.err): Use CXXLINK_S.
3453 * testsuite/Makefile.in: Regenerate.
3454
3455 2013-01-02 H.J. Lu <hongjiu.lu@intel.com>
3456
3457 * version.cc (print_version): Update copyright year to 2013.
3458
3459 2012-12-20 Ian Lance Taylor <iant@google.com>
3460
3461 * layout.cc (Layout::special_ordering_of_input_section): New
3462 function.
3463 (Layout::layout): If input section requires special ordering, must
3464 sort input sections.
3465 (Layout::make_output_section): May sort .text input sections.
3466 (Layout::is_section_name_prefix_grouped): Remove.
3467 * layout.h (class Layout): Declare
3468 special_ordering_of_input_section. Don't declare
3469 is_section_name_prefix_grouped.
3470 * output.cc (Output_section::add_input_section): Revert last
3471 change.
3472 (Output_section::Input_section_sort::match_file_name): Don't crash
3473 if called on output section data.
3474 (Output_section::Input_section_sort_compare): Sort based on
3475 special ordering.
3476 (Output_section::Input_section_sort_section_order_index_compare):
3477 Revert last patch.
3478 (Output_section::sort_attached_input_sections): Likewise.
3479
3480 2012-12-18 Sriraman Tallam <tmsriram@google.com>
3481
3482 * layout.cc (Layout::is_section_name_prefix_grouped): New function.
3483 * layout.h (Layout::is_section_name_prefix_grouped): New function.
3484 * output.cc (Output_section::add_input_section): Check if section
3485 name contains special prefix. Keep input sections to sort such
3486 sections.
3487 (Output_section::Input_section_sort_section_order_index_compare
3488 ::operator()): Group sections according to prefixes.
3489 (Output_section::sort_attached_input_sections): Add condition to
3490 Input_section_entry constructor call.
3491 * testsuite/Makefile.am (text_section_grouping): New test.
3492 * testsuite/Makefile.in: Regenerate.
3493 * testsuite/text_section_grouping.cc: New file.
3494 * testsuite/text_section_grouping.sh: New file.
3495
3496 2012-12-17 Nick Clifton <nickc@redhat.com>
3497
3498 * Makefile.am: Add copyright notice.
3499 * NEWS: Likewise.
3500 * README: Likewise.
3501 * configure.ac: Likewise.
3502 * ftruncate.c: Likewise.
3503 * Makefile.in: Regenerate.
3504
3505 2012-12-14 Cary Coutant <ccoutant@google.com>
3506
3507 * testsuite/Makefile.am (exception_separate_shared_12_test): Add
3508 --no-as-needed flag.
3509 (exception_separate_shared_12_test): Likewise.
3510 (incremental_copy_test): Likewise.
3511 * testsuite/Makefile.in: Regenerate.
3512
3513 2012-12-14 Cary Coutant <ccoutant@google.com>
3514
3515 * dwp.cc (Dwp_output_file::add_cu_set): Check for duplicate CUs.
3516 (Dwp_output_file::Dwp_index::enter_set): Add assert.
3517
3518 2012-12-12 Alan Modra <amodra@gmail.com>
3519
3520 * powerpc.cc (class Track_tls): New.
3521 (class Relocate, class Scan): Inherit Track_tls.
3522 (Target_powerpc::Scan::local, global): Track tls optimization
3523 and avoid creating plt entry for __tls_get_addr if all uses
3524 are optimized away.
3525 (Target_powerpc::Relocate::relocate): Update to use Track_tls.
3526
3527 2012-12-12 Alan Modra <amodra@gmail.com>
3528
3529 * options.h (General_options): Add --toc-sort/--no-toc-sort.
3530 Replace no_toc_optimize with toc_optimize.
3531 * output.h (Output_section::input_sections): Provide non-const variant.
3532 * powerpc.cc (Powerpc_relobj::has_small_toc_reloc_,
3533 set_has_small_toc_reloc, has_small_toc_reloc): New variable and
3534 accessors.
3535 (Target_powerpc::Scan::local, global): Call set_has_small_toc_reloc.
3536 (class Sort_toc_sections): New.
3537 (Target_powerpc::do_finalize_sections): Sort toc sections.
3538 (Target_powerpc::Relocate::relocate): Update toc_optimize test.
3539
3540 2012-12-10 Roland McGrath <mcgrathr@google.com>
3541
3542 * testsuite/binary_unittest.cc (read_all): New function.
3543 (Sized_binary_test): Use it instead of ::read.
3544 * fileread.cc (do_read): Don't assume pread always reads the whole
3545 amount in a single call.
3546
3547 2012-12-10 Alan Modra <amodra@gmail.com>
3548
3549 * powerpc.cc (Target_selector_powerpc::Target_selector_powerpc):
3550 Set EM_PPC64 or EM_PPC here.
3551 (Target_selector_powerpc::do_recognize): Delete.
3552
3553 2012-12-10 Alan Modra <amodra@gmail.com>
3554
3555 * powerpc.cc (Powerpc_relobj::Powerpc_relobj): Init has14_ and
3556 stub_table_.
3557 (Target_powerpc::Branch_info::make_stub): Don't omit addend.
3558
3559 2012-12-07 Roland McGrath <mcgrathr@google.com>
3560
3561 * testsuite/binary_unittest.cc (Sized_binary_test):
3562 Use open_descriptor rather than ::open.
3563
3564 2012-12-07 Alan Modra <amodra@gmail.com>
3565
3566 * powerpc.cc (Stub_table::do_write): Delete redundant Address
3567 typedef and invalid_address constant.
3568 (Output_data_glink, Stub_table, Target_powerpc): Explicitly
3569 instantiate constants.
3570
3571 2012-12-06 Roland McGrath <mcgrathr@google.com>
3572
3573 * configure.ac (HAVE_ZLIB): Use AM_ZLIB instead of AC_SEARCH_LIBS.
3574 Use $ac_cv_header_zlib_h = yes as the condition in AM_CONDITIONAL.
3575 * aclocal.m4: Regenerate.
3576 * configure: Regenerate.
3577 * Makefile.in: Regenerate.
3578 * testsuite/Makefile.in: Regenerate.
3579
3580 2012-12-07 Alan Modra <amodra@gmail.com>
3581
3582 * options.h (General_options): Add no_toc_optimize.
3583 * powerpc.cc (ok_lo_toc_insn): New function.
3584 (Target_powerpc::Relocate::relocate): Optimize toc access sequences.
3585
3586 2012-12-06 Alan Modra <amodra@gmail.com>
3587
3588 * options.h (General_options): Add plt_align, plt_static_chain,
3589 plt_thread_safe. Update stub_group_size help text.
3590 * powerpc.cc (Target_powerpc::plt_thread_safe): New access function
3591 for new plt_thread_safe_ var.
3592 (use_plt_offset): Correct comments.
3593 (Target_powerpc::do_relax): Look for thread creation symbols to
3594 determine default plt_thread_safe value. Clear plt call stubs
3595 as well as branch stubs each iteration.
3596 (add_2_2_11, add_12_12_11, bnectr_p4, cmpldi_2_0, xor_11_11_11): New
3597 insn constants.
3598 (l, hi, ha, write_insn): Move earlier.
3599 (Stub_table): Delete prev_size, add last_plt_size and last_branch_size.
3600 (Stub_table::clear_stubs): Rename from clear_long_branch_stubs, clear
3601 plt stubs too.
3602 (Stub_table::update_size): Adjust.
3603 (Stub_table::prev_size, set_prev_size): Delete.
3604 (Stub_table::stub_align): Let --plt-align affect result.
3605 (Stub_table::plt_call_size): Calculate sizes for various stubs.
3606 (Stub_table::branch_stub_size): Use last_plt_size in address calc.
3607 (Stub_table::add_plt_call_stub): Pass iterator to plt_call_size.
3608 (Stub_table::do_write): Support more stub variants.
3609
3610 2012-12-04 Alan Modra <amodra@gmail.com>
3611
3612 * powerpc.cc (Powerpc_relobj::do_scan_relocs): Delete.
3613 (Target_powerpc::do_define_standard_symbols): New function.
3614
3615 2012-12-03 Alan Modra <amodra@gmail.com>
3616
3617 * output.h: Formatting, whitespace.
3618
3619 2012-12-03 Alan Modra <amodra@gmail.com>
3620
3621 * layout.h (Layout::get_executable_sections): Declare.
3622 * layout.cc (Layout::get_executable_sections): New function.
3623 * arm.cc (Target_arm::group_sections): Use it.
3624 (Arm_output_section::group_sections): Delete now redundant test.
3625 * output.cc (Output_reloc::Output_reloc): Add is_relative.
3626 param to handle relative relocs.
3627 * output.h (Output_reloc::Output_reloc <absolute reloc>): Likewise.
3628 (Output_data_reloc::add_absolute): Adjust.
3629 (Output_data_reloc::add_relative): New function.
3630 (Output_data::reset_data_size): New function.
3631 (Output_relaxed_input_section::set_relobj, set_shndx): New functions.
3632 (Output_section::set_addralign): New function.
3633 (Output_section::checkpoint_set_addralign): New function.
3634 (Output_section::clear_section_offsets_need_adjustment): New function.
3635 (Output_section::input_sections): Make public.
3636 * powerpc.cc (class Output_data_brlt_powerpc): New.
3637 (class Stub_table, class Stub_control): New.
3638 (Powerpc_relobj::has14_, set_has_14bit_branch, has_14bit_branch,
3639 stub_table_, set_stub_table, stub_table): New vectors and accessor
3640 functions.
3641 (Target_powerpc::do_may_relax, do_relax, push_branch,
3642 new_stub_table, stub_tables, brlt_section, group_sections,
3643 add_branch_lookup_table, find_branch_lookup_table,
3644 write_branch_lookup_table, make_brlt_section): New functions.
3645 (Target_powerpc::struct Sort_sections, class Branch_info): New.
3646 (Target_powerpc::brlt_section_, stub_tables_, branch_lookup_table_,
3647 branch_info_): New vars.
3648 (Target_powerpc::make_plt_entry, make_local_ifunc_plt_entry): Don't
3649 make call stubs here.
3650 (Output_data_glink): Remove all call stub handling from this class.
3651 (Target_powerpc::Scan::local, global): Save interesting branch
3652 relocs and relocs for ifunc. Adjust calls to plt entry functions.
3653 (Target_powerpc::do_finalize_sections): Only make reg save/restore
3654 functions on final link.
3655 (Target_powerpc::Relocate::relocate): Adjust lookup of call stubs.
3656 Handle long branch destinations too.
3657 (Target_powerpc::do_dynsym_value, do_plt_address_for_global,
3658 do_plt_address_for_local): Adjust lookup of plt call stubs.
3659
3660 2012-11-30 Alan Modra <amodra@gmail.com>
3661
3662 * powerpc.c (Target_powerpc::Scan::global): Don't emit relative
3663 relocs against protected symbols when building 32-bit shared libs.
3664
3665 2012-11-30 Alan Modra <amodra@gmail.com>
3666
3667 * powerpc.cc (Target_powerpc::make_plt_section): Add symtab
3668 param. Call got_section() to make .got. Update all callers
3669 and their callers and so on.
3670
3671 2012-11-30 Alan Modra <amodra@gmail.com>
3672
3673 * powerpc.cc (Powerpc_relobj::do_scan_relocs): Make STB_LOCAL
3674 _GLOBAL_OFFSET_TABLE_ rather than STB_WEAK.
3675 (Output_data_got_powerpc::make_header): Update _GLOBAL_OFFSET_TABLE_
3676 value if it already exists.
3677
3678 2012-11-19 H.J. Lu <hongjiu.lu@intel.com>
3679
3680 PR gold/14858
3681 * x86_64.cc (Relocate::tls_ld_to_le): Support x32.
3682
3683 2012-11-14 Roland McGrath <mcgrathr@google.com>
3684
3685 * arm.cc (Output_data_plt_arm_nacl::first_plt_entry): Use bic rather
3686 than bfc instruction for data sandboxing.
3687
3688 2012-11-08 Alan Modra <amodra@gmail.com>
3689
3690 * po/POTFILES.in: Regenerate.
3691
3692 2012-11-05 Alan Modra <amodra@gmail.com>
3693
3694 * configure.ac: Apply 2012-09-10 change to config.in here.
3695 * configure: Regenerate.
3696
3697 2012-11-05 Alan Modra <amodra@gmail.com>
3698
3699 * powerpc.cc (Powerpc_relobj): Delete "Offset" typedef.
3700 (struct Opd_ent): Use "Address" rather than "Offset".
3701 (Output_data_got_powerpc::got_base_offset): Return Valtype.
3702 (Target_powerpc::got_section): Make public.
3703 (Target_powerpc::scan_relocs): Move code setting symbols..
3704 (Powerpc_relobj::do_scan_relocs): ..to here, new function.
3705 Create _SDA_BASE_ only when referenced.
3706
3707 2012-11-02 Roland McGrath <mcgrathr@google.com>
3708
3709 * i386.cc (Target_i386::relocate_relocs): Remove extraneous typename
3710 from last change.
3711
3712 2012-11-01 Roland McGrath <mcgrathr@google.com>
3713
3714 * target.h (Sized_target::relocate_relocs): Use Elf_Off
3715 for offset_in_output_section parameter.
3716 (Sized_target::relocate_special_relocatable): Likewise.
3717 * arm.cc (Target_arm::relocate_relocs): Likewise.
3718 (Target_arm::relocate_special_relocatable): Likewise.
3719 * i386.cc (Target_i386::relocate_relocs): Likewise.
3720 * powerpc.cc (Target_powerpc::relocate_relocs): Likewise.
3721 * sparc.cc (Target_sparc::relocate_relocs): Likewise.
3722 * target-reloc.h (relocate_relocs): Likewise.
3723 * testsuite/testfile.cc (Target_test): Likewise.
3724 * tilegx.cc (Target_tilegx::relocate_relocs): Likewise.
3725 * x86_64.cc (Target_x86_64::relocate_relocs): Likewise.
3726
3727 * system.h: Move inclusion of <clocale> to after <libintl.h> in
3728 [ENABLE_NLS] section, and separately at top of [!ENABLE_NLS] section.
3729
3730 * descriptors.cc (set_close_on_exec): Add ATTRIBUTE_UNUSED to the
3731 parameter, which is unused in the [!F_SETFD] case.
3732
3733 * dwarf_reader.cc (Sized_elf_reloc_mapper::symbol_section): Cast
3734 SYMNDX to off_t before comparing it to this->data_size().
3735 * output.cc (Output_symtab_xindex::endian_do_write): Likewise.
3736 * incremental.cc (Output_section_incremental_inputs::do_write):
3737 Cast GLOBAL_SYM_COUNT to off_t before comparing it to SYMTAB_SIZE.
3738
3739 * nacl.cc: Include "libiberty.h" for vasprintf declaration.
3740
3741 2012-10-30 Steve McIntyre <steve.mcintyre@linaro.org>
3742
3743 * gold.cc (Target_arm::do_adjust_elf_header): Add the
3744 hard-float/soft-float ABI flag as appropriate for ET_DYN/ET_EXEC
3745 in EABI_VER5.
3746
3747 2012-10-29 Cary Coutant <ccoutant@google.com>
3748
3749 * dwp.cc (usage): Add file and exit status parameters;
3750 add --help and --version options.
3751 (print_version): New function.
3752 (main): Add --help and --version options.
3753
3754 2012-10-25 H.J. Lu <hongjiu.lu@intel.com>
3755
3756 * testsuite/Makefile.am (MOSTLYCLEANFILES): Add
3757 final_layout_sequence.txt.
3758 * testsuite/Makefile.in: Regenerated.
3759
3760 2012-10-25 H.J. Lu <hongjiu.lu@intel.com>
3761
3762 * testsuite/Makefile.am (COMPILE1): New variable. Renamed from
3763 COMPILE generated by automake.
3764 (LINK1): Likewise.
3765 (CXXCOMPILE1): Likewise.
3766 (CXXLINK1): Likewise.
3767 (COMPILE): Strip out -Wp,-D_FORTIFY_SOURCE= from COMPILE1.
3768 (LINK): Likewise.
3769 (CXXCOMPILE): Likewise.
3770 (CXXLINK): Likewise.
3771 * testsuite/Makefile.in: Regenerated.
3772
3773 2012-10-25 H.J. Lu <hongjiu.lu@intel.com>
3774
3775 * dwp.cc (Dwo_file::record_target_info): Issue a fatal error
3776 on bad fwrite return.
3777
3778 2012-10-25 H.J. Lu <hongjiu.lu@intel.com>
3779
3780 * dwp.cc (Dwo_file::remap_str_offset): Use section_offset_type
3781 on val.
3782
3783 2012-10-23 Cary Coutant <ccoutant@google.com>
3784
3785 * testsuite/Makefile.am (TEST_OBJCOPY): New macro.
3786 * testsuite/Makefile.in: Regenerate.
3787 * testsuite/dwp_test.h: New source file.
3788 * testsuite/dwp_test_1.cc: New source file.
3789 * testsuite/dwp_test_1.s: New source file.
3790 * testsuite/dwp_test_1.sh: New source file.
3791 * testsuite/dwp_test_1b.cc: New source file.
3792 * testsuite/dwp_test_1b.s: New source file.
3793 * testsuite/dwp_test_2.cc: New source file.
3794 * testsuite/dwp_test_2.s: New source file.
3795 * testsuite/dwp_test_2.sh: New source file.
3796 * testsuite/dwp_test_main.cc: New source file.
3797 * testsuite/dwp_test_main.s: New source file.
3798
3799 2012-10-23 Cary Coutant <ccoutant@google.com>
3800
3801 * dwp.h: New header file.
3802 * dwp.cc: New source file.
3803 * gold.h: Move shared declarations to system.h.
3804 * system.h: New header file.
3805 * Makefile.am: Add dwp.
3806 * Makefile.in: Regenerate.
3807
3808 2012-10-23 Cary Coutant <ccoutant@google.com>
3809
3810 * dwarf_reader.cc (Dwarf_ranges_table::read_range_list): Call
3811 Dwarf_info_reader::read_from_pointer.
3812 (Dwarf_pubnames_table::read_header): Likewise.
3813 (Dwarf_pubnames_table::next_name): Likewise.
3814 (Dwarf_die::read_attributes): Likewise.
3815 (Dwarf_die::skip_attributes): Likewise.
3816 (Dwarf_info_reader::read_from_pointer): New function template.
3817 * dwarf_reader.h (Dwarf_ranges_table): Add dwinfo_.
3818 (Dwarf_pubnames_table): Likewise.
3819 (Dwarf_info_reader::read_from_pointer): New function template.
3820 * gdb-index.cc (Gdb_index_info_reader): Adjust call to
3821 Dwarf_pubnames_table ctor.
3822
3823 2012-10-23 Cary Coutant <ccoutant@google.com>
3824
3825 * dwarf_reader.cc (Dwarf_info_reader::do_parse): Use stored
3826 abbrev_shndx.
3827 * dwarf_reader.h (Dwarf_info_reader::Dwarf_info_reader): Initialize
3828 abbrev_shndx_.
3829 (Dwarf_info_reader::set_abbrev_shndx): New method.
3830 (Dwarf_info_reader::abbrev_shndx_): New data member.
3831
3832 2012-10-23 Cary Coutant <ccoutant@google.com>
3833
3834 * dwarf_reader.cc (make_elf_reloc_mapper): Check size and endianness
3835 from object, not parameters.
3836 (Dwarf_info_reader::parse): Likewise.
3837 * object.h (Relobj::elfsize, Relobj::is_big_endian): New methods.
3838 (Relobj::do_elfsize, Relobj::do_is_big_endian): New methods.
3839 (Sized_relobj::do_elfsize, Sized_relobj::do_is_big_endian): New
3840 methods.
3841
3842 2012-10-23 Cary Coutant <ccoutant@google.com>
3843
3844 * fileread.cc (Input_file::Input_file): New constructor.
3845 * fileread.h (class Input_file): Add new constructor.
3846
3847 2012-10-18 Alan Modra <amodra@gmail.com>
3848
3849 PR gold/14727
3850 * object.cc (Relobj::is_section_name_included): Also match
3851 .sdata personality section.
3852
3853 2012-10-18 Alan Modra <amodra@gmail.com>
3854
3855 * target-reloc.h (class Default_comdat_behavior): New, package up..
3856 (get_comdat_behaviour): ..this.
3857 (relocate_section): Add Relocate_comdat_behavior template arg,
3858 adjust code to suit.
3859 * arm.cc (Target_arm::relocate_section): Adjust to suit.
3860 (Target_arm::scan_reloc_section): Likewise.
3861 * i386.cc (Target_i386::relocate_section): Likewise.
3862 * sparc.cc (Target_sparc::relocate_section): Likewise.
3863 * tilegx.cc (Target_tilegx::relocate_section): Likewise.
3864 * x86_64.cc (Target_x86_64::relocate_section): Likewise.
3865 * powerpc.cc (class Relocate_comdat_behavior): New.
3866 (Target_powerpc::relocate_section): Don't zap opd relocs. Supply
3867 gold::relocate_section with new template arg.
3868
3869 2012-10-18 Alan Modra <amodra@gmail.com>
3870
3871 * powerpc.cc (Target_powerpc::Scan::local, global): Always emit
3872 dynamic relocs for GOT_TPREL got entries, without symbol if
3873 resolving locally.
3874 (Target_powerpc::do_gc_add_reference): Don't add for dynamic objects.
3875 (Target_powerpc::scan_relocs): Define _GLOBAL_OFFSET_TABLE_ early.
3876 (Target_powerpc::Relocate:relocate): REL32 reloc may be unaligned.
3877
3878 2012-10-17 Alan Modra <amodra@gmail.com>
3879
3880 PR gold/14726
3881 * gold.cc (queue_middle_tasks): Call gc_mark_symbol on _init and _fini.
3882
3883 2012-10-16 Sriraman Tallam <tmsriram@google.com>
3884
3885 * layout.cc (Layout::include_section): Keep sections marked
3886 SHF_EXCLUDE when doing relocatable links.
3887
3888 2012-10-16 Alan Modra <amodra@gmail.com>
3889
3890 * powerpc.cc (Target_powerpc::define_save_restore_funcs): New func.
3891 (Target_powerpc::do_finalize_sections): Call it.
3892 (Output_data_save_res): New class and supporting functions.
3893 (Target_powerpc::symval_for_branch): Only look up .opd entry for
3894 normal symbols defined in object files.
3895
3896 2012-10-12 Alan Modra <amodra@gmail.com>
3897
3898 * powerpc.cc (Powerpc_relobj::add_gc_mark, process_gc_mark): New.
3899 (struct Opd_ent): Make "discard" a bit field. Add "gc_mark".
3900 (Target_powerpc::do_gc_mark_symbol): Delay marking function code
3901 section if scan_opd_relocs not yet called.
3902 (Target_powerpc::gc_process_relocs): Call process_gc_mark.
3903
3904 2012-10-12 Alan Modra <amodra@gmail.com>
3905
3906 * powerpc.cc (Output_data_plt_powerpc::add_entry, add_ifunc_entry,
3907 add_local_ifunc_entry): Revert last change.
3908 (Target_powerpc::make_plt_entry, make_local_ifunc_plt_entry): Likewise.
3909
3910 2012-10-05 Alan Modra <amodra@gmail.com>
3911
3912 * powerpc.cc (Target_powerpc::do_plt_address_for_local,
3913 do_plt_address_for_global): New functions.
3914 (Output_data_got_powerpc::do_write): Don't segfault when linking
3915 statically.
3916 (Output_data_plt_powerpc::add_entry, add_ifunc_entry,
3917 add_local_ifunc_entry): Return true on adding entry..
3918 (Target_powerpc::make_plt_entry): ..use to avoid unnecessary
3919 glink->add_entry call. Remove unused symtab param. Adjust calls.
3920 (Target_powerpc::make_local_ifunc_plt_entry): Likewise.
3921 (Target_powerpc::make_iplt_section): Remove symtab param. Don't
3922 set up symbols here.
3923 (Target_powerpc::do_finalize_sections): Instead set up __rela_iplt
3924 syms here. Do so even when no .iplt. Don't segfault when linking
3925 statically.
3926 (Output_data_glink::add_entry, find_entry): Rearrange params. Add
3927 new variants without reloc param.
3928 (Glink_sym_ent::Glink_sym_ent): Likewise.
3929 (Target_powerpc::Scan::reloc_needs_plt_for_ifunc): Accept any
3930 reloc when refs will resolve to plt call stub.
3931 (Target_powerpc::Scan::local): Correct ifunc handling. Allow
3932 R_PPC_PLTREL24 to resolve locally.
3933 (Target_powerpc::Scan::global): Correct ifunc handling.
3934 (Target_powerpc::Relocate::relocate): Correct local sym glink
3935 lookup. Don't destroy "value" when we have a plt call stub,
3936 and when checking plt call validity.
3937 (Target_powerpc::do_dynsym_value): Simplify.
3938
3939 2012-10-05 Alan Modra <amodra@gmail.com>
3940
3941 * i386.cc (Output_data_plt_i386::address_for_global,
3942 address_for_local): Add plt offset to returned value. Adjust uses.
3943 * sparc.cc (Output_data_plt_sparc::address_for_global,
3944 address_for_local): Likewise.
3945 * tilegx.cc (Output_data_plt_tilegx::address_for_global,
3946 address_for_local): Likewise.
3947 * x86_64.cc (Output_data_plt_x86_64::address_for_global,
3948 address_for_local): Likewise.
3949 * target.h (Target::plt_address_for_global, plt_address_for_local):
3950 Update comment.
3951 * output.cc (Output_reloc::symbol_value): Don't add plt offset here.
3952 (Output_data_got::Got_entry::write): Nor here.
3953 * output.h: Comment fix.
3954
3955 2012-10-02 Jiong Wang <jiwang@tilera.com>
3956
3957 * tilegx.cc (Target_tilegx::do_finalize_sections): Adjust
3958 global_offset_table_ value for larget got.
3959 (Target_tilegx::Relocate::relocate): Handle adjusted got value.
3960
3961 2012-09-29 Alan Modra <amodra@gmail.com>
3962
3963 * powerpc.cc (Target_powerpc::iplt_): New output section.
3964 (Target_powerpc::iplt_section, make_iplt_section,
3965 reloc_needs_plt_for_ifunc, make_local_ifunc_plt_entry): New functions.
3966 (Target_powerpc::make_plt_entry): Handle ifunc syms.
3967 Target_powerpc::plt_entry_count): Count iplt entries too.
3968 (Output_data_plt_powerpc::Output_data_plt_powerpc): Don't create
3969 reloc section in constructor. New params.
3970 (Target_powerpc::make_plt_section): Create reloc section here instead.
3971 (Output_data_plt_powerpc::add_ifunc_entry, add_local_ifunc_entry): New
3972 functions.
3973 (Output_data_plt_powerpc::initial_plt_entry_size_, name_): New vars.
3974 (Output_data_glink::add_entry, find_entry): New functions to
3975 deal with local syms.
3976 (Glink_sym_ent): Add support for local syms.
3977 (Output_data_glink::do_write): Handle ifunc plt entries.
3978 (Target_powerpc::Scan::get_reference_flags): Handle more relocs.
3979 (Target_powerpc::Scan::local, global): Handle ifunc syms.
3980 (Target_powerpc::Relocate::relocate): Likewise.
3981 (Target_powerpc::do_dynsym_value): Use glink stub, not plt entry.
3982
3983 2012-09-25 Alan Modra <amodra@gmail.com>
3984
3985 * object.h (Sized_relobj_file::adjust_local_symbol,
3986 do_adjust_local_symbol): New functions.
3987 * object.cc (Sized_relobj_file::do_count_local_symbols): Use the above.
3988 * powerpc.cc (Powerpc_relobj::do_adjust_local_symbol): New function.
3989 (Powerpc_relobj::scan_opd_relocs): Warn on unexpected opd relocs
3990 and irregular opd entry spacing.
3991 (Powerpc_relobj::do_read_relocs): Add opd size checks.
3992 (Global_symbol_visitor_opd): New functor.
3993 (Target_powerpc::do_finalize_sections): Omit global symbols defined
3994 on deleted opd entries.
3995
3996 2012-09-15 Jiong Wang <jiwang@tilera.com>
3997
3998 * tilegx.cc: New file.
3999 * Makefile.am (TARGETSOURCES): Add tilegx.cc
4000 (ALL_TARGETOBJS): Add tilegx.$(OBJEXT)
4001 * configure.tgt: Add entries for tilegx*.
4002 * configure.ac: Likewise.
4003 * Makefile.in: Rebuild.
4004 * configure: Likewise.
4005 * testsuite/icf_safe_test.sh (arch_specific_safe_fold): Handle
4006 tilegx.
4007
4008 2012-09-13 Alan Modra <amodra@gmail.com>
4009
4010 * target-reloc.h (scan_relocs): Call scan.local for relocs
4011 against symbols in discarded sections. Pass is_discarded
4012 param.
4013 * arm.cc, * i386.cc, * sparc.cc, * x86_64.cc (Target_*::Scan::local):
4014 Add is_discarded param.
4015 * powerpc (Target_powerpc::Scan::local): Likewise. Use
4016 is_discarded to flag opd entry as discarded. Don't emit dyn
4017 relocs on such entries.
4018 (Target_powerpc::Scan::global): Similarly detect and handle
4019 such opd entries.
4020 (Powerpc_relobj): Replace opd_ent_shndx_ and opd_ent_off_ with
4021 opd_ent_. Update all uses.
4022 (Powerpc_relobj::get_opd_discard, set_opd_discard): New functions.
4023 (Target_powerpc::relocate_section): Zero out discarded opd
4024 entry relocs.
4025
4026 2012-09-12 Ian Lance Taylor <iant@google.com>
4027
4028 PR gold/14570
4029 * output.cc: Rename Output_data_got template parameter from size
4030 to got_size for all functions. Compile all variants of
4031 Output_data_got.
4032 (Output_data_got::Got_entry::write): Correct use of size for
4033 symbol value. Use local_is_tls rather than casting to
4034 Sized_relobj_file.
4035 * object.h (class Object): Add local_is_tls and do_local_is_tls.
4036 (class Sized_relobj_file): Add do_local_is_tls.
4037 * incremental.h (class Sized_relobj_incr): Add do_local_is_tls.
4038
4039 2012-09-11 Alan Modra <amodra@gmail.com>
4040
4041 PR gold/14566
4042 * layout.cc (Layout::set_segment_offsets): When using
4043 common-page-size alignment, ensure we are on a new max-page-size
4044 page.
4045 * output.cc (Output_segment::set_section_addresses): Use
4046 abi_pagesize, not common_pagesize for relro boundary.
4047 (Output_segment::set_offset): Likewise.
4048
4049 2012-09-11 Alan Modra <amodra@gmail.com>
4050
4051 * output.h (Output_data_got::add_global_tls, add_local_tls,
4052 add_local_tls_pair): New functions.
4053 (Output_data_got::add_local_pair_with_rel): Remove second
4054 reloc param. Expand comment.
4055 (Output_data_got::Got_entry): Rename use_plt_offset_ to
4056 use_plt_or_tls_offset_, similarly for constructor param.
4057 (Output_data_got::Got_entry::write): Add got_index param.
4058 * output.cc (Output_data_got::add_global_tls, add_local_tls,
4059 add_local_tls_pair): New functions.
4060 (Output_data_got::Got_entry::write): Handle tls symbols
4061 with use_plt_or_tls_offset_ set specially.
4062 (Output_data_got::add_local_pair_with_rel): Only one reloc.
4063 (Output_data_got::do_write): Replace iterator with index, pass
4064 index to entry write function.
4065 * target.h (Target::tls_offset_for_local, tls_offset_for_global,
4066 do_tls_offset_for_local, do_tls_offset_for_global): New functions.
4067 * arm.cc (Target_arm::Scan::local): Update add_local_pair_with_rel
4068 call.
4069 * i386.cc (Target_i386::Scan::local): Likewise.
4070 * sparc.cc (Target_sparc::Scan::local): Likewise.
4071 * x86_64.cc (Target_x86_64::Scan::local): Likewise.
4072 * powerpc.cc (Target_powerpc::do_tls_offset_for_local,
4073 do_tls_offset_for_global): New functions.
4074 (Target_powerpc::Scan::local): Correct TLS relocations and got
4075 entry values.
4076 (Target_powerpc::Scan::global): Don't emit unnecessary
4077 dynamic relocations on TLS GOT entries.
4078
4079 2012-09-10 Matthias Klose <doko@ubuntu.com>
4080
4081 * config.in: Disable sanity check for kfreebsd.
4082
4083 2012-09-10 Sterling Augustine <saugustine@google.com>
4084
4085 * gdb-index.cc (Gdb_index::pubnames_read): New parameter.
4086 (Gdb_index::pubtypes_read): New parameter.
4087 (Gdb_index_info_reader::read_pubnames_and_pubtypes): Add parameters
4088 to calls.
4089 * gdb-index.h (Gdb_index): New fields pubnames_object_ and
4090 pubtypes_object_.
4091
4092 2012-09-09 Alan Modra <amodra@gmail.com>
4093
4094 * target.h (Target::gc_mark_symbol, do_gc_mark_symbol): New functions.
4095 (Sized_target::gc_add_reference, do_gc_add_reference): New functions.
4096 * gc.h (gc_process_relocs): Call target gc_add_reference.
4097 * gold.cc (queue_middle_tasks): Use gc_mark_symbol on start sym.
4098 * symtab.cc (Symbol_table::gc_mark_undef_symbols): Use gc_mark_symbol.
4099 (Symbol_table::gc_mark_symbol): Call target gc_mark_symbol. Remove
4100 unnecessary cast.
4101 * powerpc.cc (Powerpc_relobj::get_opd_ent): Rearrange parameters
4102 to cater for when we don't need code offset. Update use.
4103 (Powerpc_relobj::access_from_map_, opd_valid_): New vars.
4104 (Powerpc_relobj::access_from_map, add_reference, opd_valid,
4105 set_opd_valid): New functions.
4106 (Target_powerpc::do_gc_add_reference): New function.
4107 (Target_powerpc::gc_process_relocs): Call gc()->add_reference on
4108 stashed refs.
4109 (Target_powerpc::do_gc_mark_symbol): New function.
4110
4111 2012-09-06 Cary Coutant <ccoutant@google.com>
4112
4113 * dwarf_reader.cc (Dwarf_die::read_attributes): Add
4114 DW_FORM_GNU_addr_index and DW_FORM_GNU_str_index.
4115 (Dwarf_die::skip_attributes): Likewise.
4116 * object.cc (Read_symbols_data::~Read_symbols_data): Update comment.
4117 * testsuite/gdb_index_test.cc (inline_func_1): New function.
4118 (main): Call it.
4119 * testsuite/gdb_index_test_comm.sh: Check index for inline function.
4120
4121 2012-09-05 H.J. Lu <hongjiu.lu@intel.com>
4122
4123 * testsuite/script_test_3.t: Add .got.plt output section
4124 statement.
4125 * testsuite/script_test_4.t: Likewise.
4126
4127 2012-09-05 Alan Modra <amodra@gmail.com>
4128
4129 * powerpc.cc (Powerpc_relocate_functions): Upcase enum values,
4130 update all uses and lose "enum" when using type.
4131
4132 2012-09-05 Alan Modra <amodra@gmail.com>
4133
4134 * configure.ac (FN_PTRS_IN_SO_WITHOUT_PIC): False for powerpc.
4135 * configure: Regenerate.
4136 * testsuite/Makefile.am (final_layout.stdout): Pass --synthetic to nm.
4137 (plugin_final_layout.stdout): Likewise.
4138 (memory_test): Set page sizes to 0x1000.
4139 * testsuite/Makefile.in: Regenerate.
4140 * testsuite/discard_locals_test.sh: Add FIXME comment.
4141 * testsuite/justsyms_exec.c: Disable function test for powerpc64.
4142 * testsuite/pr14265.t: Add .got output section statement.
4143 * testsuite/script_test_2.t: Likewise.
4144 * testsuite/script_test_3.t: Likewise.
4145 * testsuite/script_test_4.t: Likewise.
4146 * testsuite/script_test_5.t: Likewise.
4147 * testsuite/script_test_6.t: Likewise.
4148 * testsuite/script_test_7.t: Likewise.
4149 * testsuite/script_test_9.t: Likewise.
4150
4151 2012-09-05 Alan Modra <amodra@gmail.com>
4152
4153 * powerpc.cc (Powerpc_relobj::get_opd_ent): Make const.
4154 (Powerpc_relocate_functions::Status): New typedef.
4155 (Target_powerpc::Scan::get_reference_flags): Handle more relocs.
4156 (Target_powerpc::Scan::local): Handle REL64.
4157 (Target_powerpc::Scan::global): Likewise, and dynamic relocs
4158 for REL32 and REL64.
4159 (Target_powerpc::symval_for_branch): New function, extracted from..
4160 (Target_powerpc::Relocate::relocate): ..here. Correct plt call
4161 checks. Report overflow errors.
4162
4163 2012-09-05 Alan Modra <amodra@gmail.com>
4164
4165 * object.h (Sized_relobj_file::emit_relocs): Delete.
4166 (Sized_relobj_file::emit_relocs_reltype): Delete.
4167 * reloc.cc (Sized_relobj_file::do_relocate_sections): Call target
4168 relocate_relocs for --emit-relocs.
4169 (Sized_relobj_file::emit_relocs, emit_relocs_reltype): Delete.
4170 * output.h: Update comment.
4171 (Output_segment::first_section): New function.
4172 (Output_segment::first_section_load_address): Use first_section.
4173 * output.cc (Output_segment::first_section): New function extracted..
4174 (Output_segment::first_section_load_address): ..from here. Delete.
4175 * target-reloc.h (relocate_for_relocatable): Rename to relocate_relocs.
4176 * target.h (Sized_target::relocate_for_relocatable): Likewise.
4177 * arm.cc (Target_arm::relocate_for_relocatable): Likewise, and
4178 adjust call to target.h function.
4179 * i386.cc (Target_i386): Likewise.
4180 * sparc.cc (Target_sparc): Likewise.
4181 * x86_64.cc (Target_x86_64): Likewise.
4182 * powerpc.cc (Target_powerpc): Likewise.
4183 (Target_powerpc::Scan::local, global): Handle R_POWERPC_TLS. Ensure
4184 first tls section has section symbol for optimised local dynamic
4185 output relocs.
4186 (Target_powerpc::Relocate::relocate): Correct local dynamic value.
4187 (Target_powerpc::relocate_relocs): Adjust relocs emitted for
4188 optimised tls code.
4189 * testsuite/testfile.cc (Target_test::relocate_for_relocatable):
4190 Rename to relocate_relocs. Update error message.
4191
4192 2012-09-04 Andreas Schwab <schwab@linux-m68k.org>
4193
4194 * powerpc.cc (do_make_elf_object): Allow ET_EXEC files with
4195 --just-symbols.
4196
4197 2012-08-31 Alan Modra <amodra@gmail.com>
4198
4199 * powerpc.cc (Powerpc_relobj): Add and use Address typedef.
4200 (Powerpc_relobj::toc_base_offset): New stub function.
4201 (Target_powerpc): Add tp_offset, dtp_offset. Rename
4202 got_mod_index_offset to tlsld_got_offset. Update all refs.
4203 (Target_powerpc::Relocate::enum skip_tls): New.
4204 (Target_powerpc::call_tls_get_addr_): New var.
4205 (Target_powerpc::is_branch_reloc): Move to file scope.
4206 (Target_powerpc::relocate_tls, optimize_tls_reloc): Delete.
4207 (Target_powerpc::optimize_tls_gd, optimize_tls_ld, optimize_tls_ie):
4208 New functions.
4209 (Target_powerpc::enum Got_type): Delete old values, add new ones.
4210 (powerpc_info): Correct common_pagesize for ppc64.
4211 (at_tls_transform, needs_dynamic_reloc, use_plt_offset): New functions.
4212 (Powerpc_relocate_functions): Add overflow check enums and functions.
4213 Add non-shift version of rela, rela_ua. Delete all rel public
4214 functions. Delete addr16_lo. Add addr64, addr64_u, addr32,
4215 addr32_u, addr24, addr16_u, addr16_hi2, addr16_ha2, addr16_hi3,
4216 addr16_ha3, addr14 functions.
4217 (Output_data_got_powerpc::add_constant_pair): New function.
4218 (Output_data_got_powerpc::got_base_offset): Likewise.
4219 (Output_data_got_powerpc::do_write): Correct 64-bit got header.
4220 (instruction constants): Sort, add some more.
4221 (Output_data_glink::do_write): Add and use Address typedef. Use
4222 object->toc_base_offset() stub for 64-bit.
4223 (Target_powerpc::tlsld_got_offset): Use add_constant_pair.
4224 (Target_powerpc::Scan::get_reference_flags): Handle more relocs.
4225 (Target_powerpc::Scan::local, global): Emit relative dynamic reloc
4226 for R_PPC64_TOC. Handle more relocs. Generate got entries for TLS.
4227 Always treat .opd relocs as against locally defined symbol.
4228 Correct condition for RELATIVE relocs.
4229 (Target_powerpc::do_finalize_sections): Test for NULL sections.
4230 (Target_powerpc::Relocate::relocate): Use plt call stub as value
4231 for 32-bit syms with a plt entry. Correct ppc64 toc base
4232 calculations. Handle TLS relocs, and more. Add overflow
4233 checking and adjust for Powerpc_relocate_functions changes.
4234 (Target_powerpc::relocate_for_relocatable): Handle zero r_sym.
4235 Reinstate --emit-relocs code with FIXME.
4236
4237 2012-08-30 Alan Modra <amodra@gmail.com>
4238
4239 * layout.cc (Layout::set_segment_offsets): Set p_align to
4240 abi_pagesize, not common_pagesize.
4241 (Layout::relaxation_loop_body): Similarly use abi_pagesize
4242 to determine whether file header can go in segment.
4243
4244 2012-08-30 Alan Modra <amodra@gmail.com>
4245
4246 * output.h (Output_reloc::Output_reloc <output section>): Add
4247 is_relative param. Adjust calls.
4248 (Output_reloc::add_output_section_relative): New functions.
4249 * output.cc (Output_reloc::Output_reloc <output section>): Handle
4250 is_relative.
4251 (Output_reloc::symbol_value): Handle SECTION_CODE.
4252
4253 2012-08-24 Sriraman Tallam <tmsriram@google.com>
4254
4255 * gold.cc (queue_middle_tasks): Call layout again when unique
4256 segments for sections is desired.
4257 * layout.cc (Layout::Layout): Initialize new members.
4258 (Layout::get_output_section_flags): New function.
4259 (Layout::choose_output_section): Call get_output_section_flags.
4260 (Layout::layout): Make output section for mapping to a unique segment.
4261 (Layout::insert_section_segment_map): New function.
4262 (Layout::attach_allocated_section_to_segment): Make unique segment for
4263 output sections marked so.
4264 (Layout::segment_precedes): Check for unique segments when sorting.
4265 * layout.h (Layout::Unique_segment_info): New struct.
4266 (Layout::Section_segment_map): New typedef.
4267 (Layout::insert_section_segment_map): New function.
4268 (Layout::get_output_section_flags): New function.
4269 (Layout::is_unique_segment_for_sections_specified): New function.
4270 (Layout::set_unique_segment_for_sections_specified): New function.
4271 (Layout::unique_segment_for_sections_specified_): New member.
4272 (Layout::section_segment_map_): New member.
4273 * object.cc (Sized_relobj_file<size, big_endian>::do_layout):
4274 Rename is_gc_pass_one to is_pass_one.
4275 Rename is_gc_pass_two to is_pass_two.
4276 Rename is_gc_or_icf to is_two_pass.
4277 Check for which pass based on whether symbols data is present.
4278 Make it two pass when unique segments for sections is desired.
4279 * output.cc (Output_section::Output_section): Initialize new
4280 members.
4281 * output.h (Output_section::is_unique_segment): New function.
4282 (Output_section::set_is_unique_segment): New function.
4283 (Output_section::is_unique_segment_): New member.
4284 (Output_section::extra_segment_flags): New function.
4285 (Output_section::set_extra_segment_flags): New function.
4286 (Output_section::extra_segment_flags_): New member.
4287 (Output_section::segment_alignment): New function.
4288 (Output_section::set_segment_alignment): New function.
4289 (Output_section::segment_alignment_): New member.
4290 (Output_segment::Output_segment): Initialize is_unique_segment_.
4291 (Output_segment::is_unique_segment): New function.
4292 (Output_segment::set_is_unique_segment): New function.
4293 (Output_segment::is_unique_segment_): New member.
4294 * plugin.cc (allow_unique_segment_for_sections): New function.
4295 (unique_segment_for_sections): New function.
4296 (Plugin::load): Add new functions to transfer vector.
4297 * Makefile.am (plugin_final_layout.readelf.stdout): Add readelf output.
4298 * Makefile.in: Regenerate.
4299 * testsuite/plugin_final_layout.sh: Check if unique segment
4300 functionality works.
4301 * testsuite/plugin_section_order.c (onload): Check if new interfaces
4302 are available.
4303 (allow_unique_segment_for_sections): New global.
4304 (unique_segment_for_sections): New global.
4305 (claim_file_hook): Call allow_unique_segment_for_sections.
4306 (all_symbols_read_hook): Call unique_segment_for_sections.
4307
4308 2012-08-22 Cary Coutant <ccoutant@google.com>
4309
4310 * layout.cc (Layout::include_section): Don't assert on GROUP
4311 sections with --emit-relocs.
4312
4313 2012-08-21 Cary Coutant <ccoutant@google.com>
4314
4315 * symtab.cc (Symbol_table::gc_mark_undef_symbols): Don't assert
4316 if --export-dynamic-symbol names an undef symbol.
4317
4318 2012-08-18 Alan Modra <amodra@gmail.com>
4319
4320 * powerpc.cc: Formatting and white space.
4321 (Powerpc_relobj): Rename got2_section_ to special_.
4322 Add opd_ent_shndx_ and opd_ent_off_ vectors.
4323 (Powerpc_relobj::opd_shndx, init_opd, get_opd_ent, set_opd_ent,
4324 scan_opd_relocs, do_read_relocs, opd_ent_ndx): New functions.
4325 (Target_powerpc): Add Address typedef and invalid_address. Use
4326 throughout.
4327 (Target_powerpc::is_branch_reloc): New function.
4328 (Powerpc_relocate_functions): Add Address typedef, use throughout.
4329 (Powerpc_relocate_functions:rela, rela_ua): Correct type used
4330 for dst_mask, value and addend.
4331 (Powerpc_relobj::do_find_special_sections): Find .opd for 64-bit.
4332 (ld_2_1, cror_15_15_15, cror_31_31_31): New insn constants.
4333 (Output_data_glink::do_write): Correct toc base. Don't try to use
4334 uint16_t for 24-bit offset. Use get_output_section_offset and
4335 check return.
4336 (Target_powerpc::Scan::local): Handle more relocs.
4337 (Target_powerpc::do_finalize_sections): Set up DT_PPC64_GLINK.
4338 (Target_powerpc::Relocate::relocate): Correct toc base calculation.
4339 Plug in toc restoring insn after plt calls. Translate branches
4340 to function descriptor symbols to corresponding entry point.
4341 (Target_powerpc::relocate_for_relocatable): Check return from
4342 get_output_section_offset.
4343 * symtab.h: Comment typo.
4344
4345 2012-08-14 Ian Lance Taylor <iant@google.com>
4346
4347 * x86_64.cc (Target_x86_64::Scan::global): Fix erroneous call to
4348 unsupported_relocal_local to call unsupported_reloc_global.
4349
4350 2012-08-14 Nick Clifton <nickc@redhat.com>
4351
4352 PR ld/14265
4353 * script-sections.cc (Sections_element::output_section_name): Add
4354 keep return parameter.
4355 (Output_section_element::match_name): Add keep return parameter.
4356 Return the value of the keep_ member.
4357 * script-sections.h (class Output_section): Update
4358 output_section_name prototype.
4359 * layout.cc (Layout::keep_input_section): New public member
4360 function.
4361 (Layout::choose_output_section): Pass keep parameter to
4362 output_section_name.
4363 * layout.h (class Layout): Add keep_input_section.
4364 * object.cc (Sized_relobj_file::do_layout): Check for kept input
4365 sections.
4366 * testsuite/Makefile.am: Add a test.
4367 * testsuite/Makefile.in: Regenerate.
4368 * testsuite/pr14265.c: Source file for the test.
4369 * testsuite/pr14265.t: Linker script for the test.
4370 * testsuite/pr14265.sh: Shell script for the test.
4371
4372 2012-08-14 Alan Modra <amodra@gmail.com>
4373
4374 * target.h (Target::output_section_name): New function.
4375 (Target::do_output_section_name): New function.
4376 * layout.cc (Layout::choose_output_section): Call the above.
4377 * powerpc.cc (Target_powerpc::do_output_section_name): New function.
4378
4379 2012-08-14 Alan Modra <amodra@gmail.com>
4380
4381 * powerpc.cc: Update for renamed R_PPC_REL16 relocs.
4382 (Output_data_got_powerpc::do_write): Don't rely on base class lookup
4383 for replace_constant call.
4384 (Output_data_plt_powerpc::do_print_to_mapfile): New function.
4385 (Output_data_glink::do_print_to_mapfile): New function.
4386 (Target_powerpc::Scan::local): Ignore R_PPC64_TOCSAVE.
4387 (Target_powerpc::Relocate::relocate): Likewise.
4388
4389 2012-08-14 Alan Modra <amodra@gmail.com>
4390
4391 * powerpc.cc (Powerpc_relobj::set_got2_shndx): Delete.
4392 (Powerpc_relobj::do_find_special_sections): Don't use set_got2_shndx.
4393 (Output_data_glink::add_entry,find_entry): Remove shndx param.
4394 (class Glink_sym_ent): Rename from struct Glink_sym_ent. Remove
4395 all references to shndx_. Handle special case for R_PPC_PLTREL24
4396 here.
4397 (class Glink_sym_ent_hash): Rename from struct Glink_sym_ent_hash.
4398 (Output_data_glink::do_write): Retrieve got2_shdnx from object.
4399 (Target_powerpc::make_plt_entry): Don't special case R_PPC_PLTREL24
4400 here.
4401 (Target_powerpc::Scan::global): Nor on make_plt_entry call.
4402 (Target_powerpc::Relocate::relocate): Nor on glink->find_entry call.
4403
4404 2012-08-12 Alan Modra <amodra@gmail.com>
4405
4406 * powerpc.cc: Whitespace fixes. Wrap overly long lines.
4407 (glink insn constants): Use uint32_t.
4408 (Output_data_glink::add_entry): Use insert, not [] operator.
4409
4410 2012-08-11 Alan Modra <amodra@gmail.com>
4411
4412 * object.h (Sized_relobj_file::find_shdr): New function.
4413 (Sized_relobj_file::find_special_sections): New function.
4414 * object.cc (Sized_relobj_file::find_shdr): New function.
4415 (Sized_relobj_file::find_eh_frame): Use find_shdr.
4416 (Sized_relobj_file::find_special_sections): New function, split out..
4417 (Sized_relobj_file::do_read_symbols): ..from here.
4418 * output.h (Output_data_got::replace_constant): New function.
4419 (Output_data_got::num_entries): New function.
4420 (Output_data_got::last_got_offset,set_got_size): Use num_entries.
4421 (Output_data_got::got_offset): Protected rather than private.
4422 (Output_data_got::replace_got_entry): New function.
4423 * output.cc (Output_data_got::replace_got_entry): New function.
4424 * powerpc.cc (class Powerpc_relobj): New.
4425 (class Powerpc_relocate_functions): Delete all psymval variants or
4426 convert to value,addend type. Delete pcrela, pcrela_unaligned.
4427 Implement _ha functions using corresponding _hi function.
4428 (Powerpc_relobj::find_special_sections): New function.
4429 (Target_powerpc::do_make_elf_object): New function.
4430 (class Output_data_got_powerpc): New.
4431 (class Output_data_glink): New.
4432 (class Powerpc_scan_relocatable_reloc): New.
4433 Many more changes througout file.
4434
4435 2012-08-09 Nick Clifton <nickc@redhat.com>
4436
4437 * po/vi.po: Updated Vietnamese translation.
4438
4439 2012-08-07 Ian Lance Taylor <iant@google.com>
4440
4441 * layout.cc (Layout::add_target_dynamic_tags): If
4442 dynrel_includes_plt but no dyn_rel, emit dynamic reloc tags for
4443 plt_rel.
4444
4445 2012-07-30 Nick Clifton <nickc@redhat.com>
4446
4447 * po/gold.pot: Updated template.
4448 * po/es.po: Updated Spanish translation.
4449
4450 2012-07-18 Cary Coutant <ccoutant@google.com>
4451
4452 PR gold/14344
4453 * configure.ac: Add check for -gpubnames support.
4454 * configure: Regenerate.
4455 * testsuite/Makefile.am (gdb_index_test_1): Add check for -gpubnames
4456 support; force -gno-pubnames.
4457 (gdb_index_test_2, gdb_index_test_3): Add check for -gpubnames
4458 support.
4459 (gdb_index_test_4): New test.
4460 * testsuite/Makefile.in: Regenerate.
4461 * testsuite/gdb_index_test_1.sh: Refactor code into common file.
4462 * testsuite/gdb_index_test_2.sh: Likewise.
4463 * testsuite/gdb_index_test_3.sh: Don't look for space after colon.
4464 * testsuite/gdb_index_test_4.sh: New script.
4465 * testsuite/gdb_index_test_comm.sh: New script with common code;
4466 don't look for space after colon.
4467
4468 2012-07-16 Sriraman Tallam <tmsriram@google.com>
4469
4470 * gold.cc (queue_middle_tasks): Update function order only after
4471 deferred objects due to plugins are processed.
4472
4473 2012-07-11 Ian Lance Taylor <iant@google.com>
4474
4475 * arm.cc (Arm_relocate_functions::abs16): Remove unused typedef.
4476 (Arm_exidx_cantunwind::do_fixed_endian_write): Likewise.
4477 (Target_arm::scan_reloc_for_stub): Likewise.
4478 * common.cc (Symbol_table::do_allocate_commons_list): Likewise.
4479 * dwarf_reader.cc (Dwarf_die::skip_attributes): Likewise.
4480 * ehframe.cc (Eh_frame::do_add_ehframe_input_section): Likewise.
4481 * incremental.cc (Sized_incr_dynobj::do_add_symbols): Likewise.
4482 * powerpc.cc (Target_powerpc::relocate_tls): Likewise.
4483
4484 2012-07-10 Dodji Seketeli <dodji@redhat.com>
4485 Ian Lance Taylor <iant@google.com>
4486
4487 PR gold/14309
4488 * configure.ac: Test whether std::tr1::hash<off_t> works.
4489 * gold.h: Add a specialization for std::tr1::hash<off_t> if
4490 needed.
4491 * output.h (class Output_fill): Add virtual destructor.
4492 * configure, config.in: Rebuild.
4493
4494 2012-06-22 Roland McGrath <mcgrathr@google.com>
4495
4496 * layout.cc (finalize): Define __ehdr_start symbol if applicable.
4497
4498 2012-06-12 Rafael Ávila de Espíndola <respindola@mozilla.com>
4499
4500 * plugin.cc (Plugin::load): Handle position independent executables.
4501
4502 2012-06-06 Cary Coutant <ccoutant@google.com>
4503
4504 * layout.cc (gdb_sections): Remove ".debug_" prefixes,
4505 add .debug_macro.
4506 (lines_only_debug_sections): Likewise.
4507 (gdb_fast_lookup_sections): New static array.
4508 (is_gdb_debug_section): Rename formal parameter.
4509 (is_lines_only_debug_section): Likewise.
4510 (is_gdb_fast_lookup_section): New function.
4511 (Layout::include_section): Check for ".zdebug_" prefix; pass
4512 section name suffix to is_gdb_debug_section, et al.; check for
4513 fast-lookup sections when building .gdb_index.
4514 * options.h (--strip-debug-gdb): Update GDB version number.
4515
4516 2012-06-06 Cary Coutant <ccoutant@google.com>
4517
4518 * configure.ac: Add check for fallocate.
4519 * configure: Regenerate.
4520 * config.in: Regenerate.
4521
4522 * options.h (class General_options): Add --mmap-output-file and
4523 --posix-fallocate options.
4524 * output.cc: (posix_fallocate): Remove; replace with...
4525 (gold_fallocate): New function.
4526 (Output_file::map_no_anonymous): Call gold_fallocate.
4527 (Output_file::map): Check --mmap-output-file option.
4528
4529 2012-06-05 Jing Yu <jingyu@google.com>
4530
4531 * gold.h (textdomain): Add do {} to empty while(0).
4532 (bindtextdomain): Likewise.
4533
4534 2012-06-04 Cary Coutant <ccoutant@google.com>
4535
4536 * dynobj.cc (Sized_dynobj::do_get_global_symbol_counts): Call
4537 has_dynsym_index.
4538
4539 2012-05-25 Sriraman Tallam <tmsriram@google.com>
4540
4541 * symtab.cc (Symbol_table::define_special_symbol):
4542 Initialize *poldsym to prevent uninitialized variable errors.
4543
4544 2012-05-23 Cary Coutant <ccoutant@google.com>
4545
4546 * layout.cc (Layout::section_name_mapping): Add rules to handle
4547 exact match on .data.rel.ro.local or .data.rel.ro.
4548 (Layout::output_section_name): Check for exact matches.
4549
4550 2012-05-23 Cary Coutant <ccoutant@google.com>
4551
4552 * layout.cc (Layout::section_name_mapping): Match .data.rel.ro.*
4553 more carefully.
4554
4555 2012-05-22 Cary Coutant <ccoutant@google.com>
4556
4557 * symtab.cc (Symbol::should_add_dynsym_entry): Check for relocatable
4558 object before exporting symbol.
4559
4560 2012-05-21 H.J. Lu <hongjiu.lu@intel.com>
4561
4562 * testsuite/tls_test.cc: Include "config.h" first.
4563 * testsuite/tls_test_c.c: Likewise.
4564
4565 2012-05-17 Daniel Richard G. <skunk@iskunk.org>
4566 Nick Clifton <nickc@redhat.com>
4567
4568 PR 14072
4569 * configure.in: Add check that sysdep.h has been included before
4570 any system header files.
4571 * configure: Regenerate.
4572 * config.in: Regenerate.
4573
4574 2012-05-14 Cary Coutant <ccoutant@google.com>
4575
4576 * layout.cc (Layout::make_output_section): Mark .tdata section
4577 as RELRO.
4578 * testsuite/relro_test.cc: Add a TLS variable.
4579
4580 2012-05-10 H.J. Lu <hongjiu.lu@intel.com>
4581
4582 PR gold/14091
4583 * x86_64.cc (Target_x86_64::Scan::local): For x32, generate
4584 R_X86_64_RELATIVE64 instead of R_X86_64_RELATIVE in case of
4585 R_X86_64_64.
4586
4587 2012-05-08 Cary Coutant <ccoutant@google.com>
4588
4589 * layout.cc (gdb_sections): Update GDB version, add .debug_addr.
4590 (lines_only_debug_sections): Likewise.
4591
4592 2012-05-02 Roland McGrath <mcgrathr@google.com>
4593
4594 * nacl.cc: New file.
4595 * nacl.h: New file.
4596 * Makefile.am (CCFILES, HFILES): Add them.
4597 * Makefile.in: Regenerate.
4598 * i386.cc (Output_data_plt_i386_nacl): New class.
4599 (Output_data_plt_i386_nacl_exec): New class.
4600 (Output_data_plt_i386_nacl_dyn): New class.
4601 (Target_i386_nacl): New class.
4602 (Target_selector_i386_nacl): New class.
4603 (target_selector_i386): Use it instead of Target_selector_i386.
4604 * x86_64.cc (Output_data_plt_x86_64_nacl): New class.
4605 (Target_x86_64_nacl): New class.
4606 (Target_selector_x86_64_nacl): New class.
4607 (target_selector_x86_64, target_selector_x32): Use it instead of
4608 Target_selector_x86_64.
4609 * arm.cc (Output_data_plt_arm_nacl): New class.
4610 (Target_arm_nacl): New class.
4611 (Target_selector_arm_nacl): New class.
4612 (target_selector_arm, target_selector_armbe): Use it instead of
4613 Target_selector_arm.
4614
4615 * target-select.cc (select_target): Take new Input_file* and off_t
4616 arguments, pass them on to recognize method of selector.
4617 * object.cc (make_elf_sized_object): Update caller.
4618 * parameters.cc (parameters_force_valid_target): Likewise.
4619 * incremental.cc (make_sized_incremental_binary): Likewise.
4620 * target-select.h: Update decl.
4621 (Target_selector::recognize): Take new Input_file* argument,
4622 pass it on to do_recognize.
4623 (Target_selector::do_recognize): Take new Input_file* argument.
4624 * freebsd.h (Target_selector_freebsd::do_recognize): Likewise.
4625 * powerpc.cc (Target_selector_powerpc::do_recognize): Likewise.
4626 * sparc.cc (Target_selector_sparc::do_recognize): Likewise.
4627 * testsuite/testfile.cc (Target_selector::do_recognize): Likewise.
4628
4629 * target.h (Target::Target_info): New members isolate_execinstr
4630 and rosegment_gap.
4631 (Target::isolate_execinstr, Target::rosegment_gap): New methods.
4632 * arm.cc (Target_arm::arm_info): Update initializer.
4633 * i386.cc (Target_i386::i386_info): Likewise.
4634 * powerpc.cc (Target_powerpc::powerpc_info): Likewise.
4635 * sparc.cc (Target_sparc::sparc_info): Likewise.
4636 * x86_64.cc (Target_x86_64::x86_64_info): Likewise.
4637 * testsuite/testfile.cc (Target_test::test_target_info): Likewise.
4638 * layout.cc (Layout::attach_allocated_section_to_segment):
4639 Take new const Target* argument. If target->isolate_execinstr(), act
4640 like --rosegment.
4641 (Layout::find_first_load_seg): Take new const Target* argument;
4642 if target->isolate_execinstr(), reject PF_X segments.
4643 (Layout::relaxation_loop_body): Update caller.
4644 (Layout::set_segment_offsets): If target->isolate_execinstr(),
4645 reset file offset to zero when we hit LOAD_SEG, and then do a second
4646 loop over the segments before LOAD_SEG to reassign offsets after
4647 addresses have been determined. Handle target->rosegment_gap().
4648 (Layout::attach_section_to_segment): Take new const Target* argument;
4649 pass it to attach_allocated_section_to_segment.
4650 (Layout::make_output_section): Update caller.
4651 (Layout::attach_sections_to_segments): Take new const Target* argument;
4652 pass it to attach_section_to_segment.
4653 * gold.cc (queue_middle_tasks): Update caller.
4654 * layout.h (Layout): Update method decls with new arguments.
4655
4656 * arm.cc (Target_arm::Target_arm): Take optional argument for the
4657 Target_info pointer to use.
4658 (Target_arm::do_make_data_plt): New virtual method.
4659 (Target_arm::make_data_plt): New method that calls it.
4660 (Target_arm::make_plt_entry): Use it.
4661 (Output_data_plt_arm::Output_data_plt_arm): Take additional argument
4662 for the section alignment.
4663 (Output_data_plt_arm::do_first_plt_entry_offset): New abstract virtual
4664 method.
4665 (Output_data_plt_arm::first_plt_entry_offset): Call it.
4666 (Output_data_plt_arm::do_get_plt_entry_size): New abstract virtual
4667 method.
4668 (Output_data_plt_arm::get_plt_entry_size): Call it.
4669 (Output_data_plt_arm::do_fill_plt_entry): New abstract virtual method.
4670 (Output_data_plt_arm::fill_plt_entry): New method that calls it.
4671 (Output_data_plt_arm::do_fill_first_plt_entry): New abstract virtual
4672 method.
4673 (Output_data_plt_arm::fill_first_plt_entry): New method that calls it.
4674 (Output_data_plt_arm::set_final_data_size): Use get_plt_entry_size
4675 method instead of sizeof(plt_entry).
4676 (Output_data_plt_arm::add_entry): Likewise.
4677 Use first_plt_entry_offset method instead of sizeof(first_plt_entry).
4678 (Target_arm::first_plt_entry_offset): Call method on this->plt_ rather
4679 than static method.
4680 (Target_arm::plt_entry_size): Likewise.
4681 (Output_data_plt_arm::first_plt_entry, Output_data_plt_arm::plt_entry):
4682 Move to ...
4683 (Output_data_plt_arm_standard): ... here, new class.
4684 (Output_data_plt_arm::do_write): Move guts of PLT filling to...
4685 (Output_data_plt_arm_standard::do_fill_first_plt_entry): ... here ...
4686 (Output_data_plt_arm_standard::do_fill_plt_entry): ... and here.
4687
4688 * x86_64.cc (Output_data_plt_x86_64::Output_data_plt_x86_64):
4689 Take additional argument for the PLT entry size.
4690 (Output_data_plt_x86_64::get_tlsdesc_plt_offset):
4691 Use get_plt_entry_size method rather than plt_entry_size variable.
4692 (Output_data_plt_x86_64::reserve_slot): Likewise.
4693 (Output_data_plt_x86_64::do_adjust_output_section): Likewise.
4694 (Output_data_plt_x86_64::add_entry): Likewise.
4695 (Output_data_plt_x86_64::add_local_ifunc_entry): Likewise.
4696 (Output_data_plt_x86_64::address_for_global): Likewise.
4697 (Output_data_plt_x86_64::address_for_local): Likewise.
4698 (Output_data_plt_x86_64::set_final_data_size): Likewise.
4699 (Output_data_plt_x86_64::first_plt_entry_offset): Likewise.
4700 Make method non-static.
4701 (Output_data_plt_x86_64::do_get_plt_entry_size): New abstract virtual
4702 method.
4703 (Output_data_plt_x86_64::get_plt_entry_size): Just call that.
4704 (Output_data_plt_x86_64::do_add_eh_frame): New abstract virtual method.
4705 (Output_data_plt_x86_64::add_eh_frame): New method to call it.
4706 (Output_data_plt_x86_64::do_fill_first_plt_entry): New abstract
4707 virtual method.
4708 (Output_data_plt_x86_64::fill_first_plt_entry): New method to call it.
4709 (Output_data_plt_x86_64::do_fill_plt_entry): New abstract
4710 virtual method.
4711 (Output_data_plt_x86_64::fill_plt_entry): New method to call it.
4712 (Output_data_plt_x86_64::do_fill_tlsdesc_entry): New abstract
4713 virtual method.
4714 (Output_data_plt_x86_64::fill_tlsdesc_entry): New method to call it.
4715 (Output_data_plt_x86_64::plt_entry_size)
4716 (Output_data_plt_x86_64::first_plt_entry)
4717 (Output_data_plt_x86_64::plt_entry)
4718 (Output_data_plt_x86_64::tlsdesc_plt_entry)
4719 (Output_data_plt_x86_64::plt_eh_frame_fde_size)
4720 (Output_data_plt_x86_64::plt_eh_frame_fde): Move to ...
4721 (Output_data_plt_x86_64_standard): ... here, new class.
4722 (Target_x86_64::Target_x86_64): Take optional argument for the
4723 Target_info pointer to use.
4724 (Target_x86_64::do_make_data_plt): New virtual method.
4725 (Target_x86_64::make_data_plt): New method to call it.
4726 (Target_x86_64::init_got_plt_for_update): Use that.
4727 Call this->plt_->add_eh_frame method here.
4728 (Output_data_plt_x86_64::init): Don't do add_eh_frame_for_plt here.
4729 (Target_x86_64::first_plt_entry_offset): Call method on this->plt_
4730 rather than static method.
4731 (Target_x86_64::plt_entry_size): Likewise.
4732 (Output_data_plt_x86_64::do_write): Use get_plt_entry_size method
4733 rather than plt_entry_size variable. Move guts of PLT filling to...
4734 (Output_data_plt_x86_64_standard::do_fill_first_plt_entry): ... here ...
4735 (Output_data_plt_x86_64_standard::do_fill_plt_entry): ... and here ...
4736 (Output_data_plt_x86_64_standard::do_fill_tlsdesc_entry): ... and here.
4737
4738 * i386.cc (Output_data_plt_i386::Output_data_plt_i386): Take
4739 additional argument for the section alignment.
4740 Don't do add_eh_frame_for_plt here.
4741 (Output_data_plt_i386::first_plt_entry_offset): Make the method
4742 non-static. Use get_plt_entry_size method rather than plt_entry_size
4743 variable.
4744 (Output_data_plt_i386::do_get_plt_entry_size): New abstract virtual
4745 method.
4746 (Output_data_plt_i386::get_plt_entry_size): Call it.
4747 (Output_data_plt_i386::do_add_eh_frame): New abstract virtual method.
4748 (Output_data_plt_i386::add_eh_frame): New method to call it.
4749 (Output_data_plt_i386::do_fill_first_plt_entry): New abstract virtual
4750 method.
4751 (Output_data_plt_i386::fill_first_plt_entry): New method to call it.
4752 (Output_data_plt_i386::do_fill_plt_entry): New abstract virtual
4753 method.
4754 (Output_data_plt_i386::fill_plt_entry): New method to call it.
4755 (Output_data_plt_i386::set_final_data_size): Use get_plt_entry_size
4756 method instead of plt_entry_size.
4757 (Output_data_plt_i386::plt_entry_size)
4758 (Output_data_plt_i386::plt_eh_frame_fde_size)
4759 (Output_data_plt_i386::plt_eh_frame_fde): Move to ...
4760 (Output_data_plt_i386_standard): ... here, new class.
4761 (Output_data_plt_i386_exec): New class.
4762 (Output_data_plt_i386::exec_first_plt_entry): Move to ...
4763 (Output_data_plt_i386_exec::first_plt_entry): ... here.
4764 (Output_data_plt_i386::exec_plt_entry): Move to ...
4765 (Output_data_plt_i386_exec::plt_entry): ... here.
4766 (Output_data_plt_i386_dyn): New class.
4767 (Output_data_plt_i386::first_plt_entry): Move to ...
4768 (Output_data_plt_i386_dyn::first_plt_entry): ... here.
4769 (Output_data_plt_i386::dyn_plt_entry): Move to ...
4770 (Output_data_plt_i386_dyn::plt_entry): ... here.
4771 (Target_i386::Target_i386): Take optional argument for the Target_info
4772 pointer to use.
4773 (Target_i386::do_make_data_plt): New virtual method.
4774 (Target_i386::make_data_plt): New method to call it.
4775 (Target_i386::make_plt_section): Use that.
4776 Call this->plt_->add_eh_frame method here.
4777 (Output_data_plt_i386::add_entry): Use get_plt_entry_size method
4778 rather than plt_entry_size variable.
4779 (Output_data_plt_i386::add_local_ifunc_entry): Likewise.
4780 (Output_data_plt_i386::address_for_local): Likewise.
4781 (Output_data_plt_i386::do_write): Likewise.
4782 Move guts of PLT filling to...
4783 (Output_data_plt_i386_exec::do_fill_first_plt_entry): ... here ...
4784 (Output_data_plt_i386_exec::do_fill_plt_entry): ... and here ...
4785 (Output_data_plt_i386_dyn::do_fill_first_plt_entry): ... and here ...
4786 (Output_data_plt_i386_dyn::do_fill_plt_entry): ... and here.
4787
4788 2012-05-01 Cary Coutant <ccoutant@google.com>
4789
4790 * dwarf_reader.cc (Dwarf_die::read_attributes)
4791 (Dwarf_die::skip_attributes, Dwarf_die::int_attribute)
4792 (Dwarf_die::uint_attribute): Remove DW_FORM_null.
4793 * reduced_debug_output.cc
4794 (Output_reduced_debug_info_section::get_die_end): Remove
4795 DW_FORM_GNU_ref_index. Add default case.
4796
4797 2012-04-26 Mark Wielaard <mjw@redhat.com>
4798
4799 * dwarf_reader.cc (Dwarf_die::address_attribute): New function.
4800 * dwarf_reader.h (Dwarf_die::address_attribute): Likewise.
4801 * gdb-index.cc (Gdb_index_info_reader::record_cu_ranges): Handle
4802 DW_AT_high_pc as offset from DW_AT_low_pc.
4803
4804 * testsuite/Makefile.am (gdb_index_test_3.sh): New test case.
4805 * testsuite/Makefile.in: Regenerate.
4806 * testsuite/gdb_index_test_3.c: New test source file.
4807 * testsuite/gdb_index_test_3.sh: New test source file.
4808
4809 2012-04-25 Ian Lance Taylor <iant@google.com>
4810
4811 * arm.cc (Target_arm::do_is_defined_by_abi): Make sym a const
4812 pointer.
4813 (Stub_addend_reader::operator()): Declare Arm_relocate_functions
4814 as a class, not a struct.
4815 (Target_arm::scan_span_for_cortex_a8_erratum): Likewise.
4816 (Target_arm::apply_cortex_a8_workaround): Likewise.
4817 * gc.h: Declare Reloc_types as a struct, not a class.
4818 * object.h: Declare Symbols_data as a struct.
4819 * reloc.h: Declare Read_relocs_data as a struct.
4820 * target.h: Declare Relocate_info as a struct.
4821
4822 2012-04-24 David S. Miller <davem@davemloft.net>
4823
4824 * sparc.cc (Target_sparc::Relocate::relax_call): New function.
4825 (Target_sparc::Relocate::relocate): Call it for R_SPARC_WDISP30
4826 and R_SPARC_WPLT30.
4827
4828 2012-04-24 Cary Coutant <ccoutant@google.com>
4829
4830 * incremental-dump.cc (find_input_containing_global): Replace
4831 magic number with symbolic constant.
4832 (dump_incremental_inputs): Update version number.
4833 * incremental.cc (Output_section_incremental_inputs): Update version
4834 number; import symbolic constants from Incremental_inputs_reader.
4835 (Incremental_inputs::create_data_sections): Align relocations
4836 section correctly for 64-bit targets.
4837 (Output_section_incremental_inputs::set_final_data_size): Use symbolic
4838 constants; add padding.
4839 (Output_section_incremental_inputs::write_header): Add assert for
4840 header_size.
4841 (Output_section_incremental_inputs::write_input_files): Add assert
4842 for input_entry_size.
4843 (Output_section_incremental_inputs::write_info_blocks): Add padding;
4844 add assert for object_info_size, input_section_entry_size,
4845 global_sym_entry_size.
4846 * incremental.h (Incremental_inputs_reader): Add symbolic constants
4847 for data structure sizes; use them.
4848 (Incremental_input_entry_reader): Import symbolic constants from
4849 Incremental_inputs_reader; use them.
4850
4851 2012-04-23 David S. Miller <davem@davemloft.net>
4852
4853 * sparc.cc (class Target_sparc): Add elf_machine_, elf_flags_,
4854 and elf_flags_set_.
4855 (Target_sparc::Target_sparc): Initialize new fields.
4856 (Target_sparc::do_make_elf_object): New function.
4857 (Target_sparc::do_adjust_elf_header): New function.
4858
4859 2012-04-23 Cary Coutant <ccoutant@google.com>
4860
4861 * gdb-index.cc (Gdb_index::do_write): Use Swap_aligned32 for writing
4862 CU range table of gdb index.
4863
4864 2012-04-20 David S. Miller <davem@davemloft.net>
4865
4866 * target.cc (Sized_target::do_adjust_elf_header): Use big_endian
4867 instead of false.
4868
4869 2012-04-16 David S. Miller <davem@davemloft.net>
4870
4871 * sparc.cc (Target_sparc::got_address): New function.
4872 (Sparc_relocate_functions::gdop_hix22): New function.
4873 (Sparc_relocate_functions::gdop_lox10): New function.
4874 (Target_sparc::Scan::local): Do not emit a GOT entry for GOTDATA
4875 relocs.
4876 (Target_sparc::Scan::local): Likewise if the global symbol is not
4877 preemptible and is not IFUNC.
4878 (Target_sparc::Relocate::relocate): Perform GOTDATA code
4879 transformations for local and non-preemptible non-IFUNC global
4880 symbols.
4881
4882 * gdb-index.cc (Gdb_index::do_write): Use Swap_unaligned when
4883 writing out 64-bit part of ranges.
4884
4885 * Makefile.am: Build IFUNC tests with -fPIC and -fPIE instead of
4886 -fpic and -fpie respectively.
4887 * Makefile.in: Regenerate.
4888
4889 * sparc.cc (class Target_sparc): Add rela_ifunc_.
4890 (Target_sparc::Target_sparc): Initialize new field.
4891 (Target_sparc::do_plt_section_for_global): New function.
4892 (Target_sparc::do_plt_section_for_local): New function.
4893 (Target_sparc::reloc_needs_plt_for_ifunc): New function.
4894 (Target_sparc::make_plt_section): New function, broken out of
4895 make_plt_entry. Use ORDER_NON_RELRO_FIRST for ".plt".
4896 (Target_sparc::make_plt_entry): Call make_plt_section.
4897 (Target_sparc::make_local_ifunc_plt_entry): New function.
4898 (Target_sparc::rela_ifunc_section): New function.
4899 (Target_sparc::plt_section): Remove const.
4900 (Output_data_plt_sparc): Update declarations. Define Global_ifunc
4901 and Local_ifunc types. Add global_ifuncs_, local_ifuncs_, ifunc_rel_,
4902 and ifunc_count_ fields.
4903 (Output_data_plt_sparc::Output_data_plt_sparc): Initialize new fields.
4904 (Output_data_plt_sparc::add_entry): Handle IFUNC symbols.
4905 (Output_data_plt_sparc::add_local_ifunc_entry): New function.
4906 (Output_data_plt_sparc::rela_ifunc): New function.
4907 (Output_data_plt_sparc::emit_pending_ifunc_relocs): New function.
4908 (Output_data_plt_sparc::has_ifunc_section): New function.
4909 (Output_data_plt_sparc::entry_count): Include ifunc_count_.
4910 (Output_data_plt_sparc::address_for_global): New function.
4911 (Output_data_plt_sparc::address_for_local): New function.
4912 (Output_data_plt_sparc::plt_index_to_offset): New function.
4913 (Output_data_plt_sparc::set_final_data_size): Use plt_index_to_offset
4914 and entry_count.
4915 (Output_data_plt_sparc::do_write): Use first_plt_entry_offset and
4916 entry_count.
4917 (Target_sparc::Scan::get_reference_flags): Add R_SPARC_IRELATIVE and
4918 R_SPARC_JMP_IREL to switch.
4919 (Target_sparc::Scan::check_non_pic): Likewise.
4920 (Target_sparc::Scan::local): Handle IFUNC symbols.
4921 (Target_sparc::Scan::local): Likewise.
4922 (Target_sparc::Relocate::relocate): Likewise, use plt_address_for_global
4923 and plt_address_for_local.
4924 (Target_sparc::do_finalize_sections): Call emit_pending_ifunc_relocs.
4925 Define __rel_iplt_start and __rel_iplt_end if doing a static link.
4926
4927 * output.h (Output_reloc): Allow use_plt_offset for global relocs too.
4928 (class Output_data_reloc): Adjust calls to Output_reloc_type.
4929 (Output_data_reloc::add_global_relative): (RELA only) Add use_plt_offset.
4930 * output.cc (Output_reloc::Output_reloc): Add use_plt_offset flag for
4931 global relocs too.
4932 (Output_reloc::symbol_value): Respect use_plt_offset_ for global symbols.
4933 * powerpc.cc (Target_powerpc::Scan::global): Adjust add_global_relative
4934 calls.
4935 * sparc.cc (Target_sparc::Scan::global): Likewise.
4936 * x86_64.cc (Target_x86_64::Scan::global): Likewise.
4937
4938 2012-04-16 Cary Coutant <ccoutant@google.com>
4939
4940 * archive.cc (Library_base::should_include_member): Check for
4941 --export-dynamic-symbol.
4942 * options.h (class General_options): Add --export-dynamic-symbol.
4943 * symtab.cc (Symbol::should_add_dynsym_entry): Check for
4944 --export-dynamic-symbol.
4945 (Symbol_table::gc_mark_undef_symbols): Likewise.
4946 (Symbol_table::do_add_undefined_symbols_from_command_line): Likewise.
4947
4948 2012-04-12 David S. Miller <davem@davemloft.net>
4949
4950 * sparc.cc (Reloc::wdisp10): New relocation method.
4951 (Reloc::h34): Likewise.
4952 (Target_sparc::Scan::check_non_pic): Handle R_SPARC_H34.
4953 (Target_sparc::Scan::get_reference_flags): Handle R_SPARC_H34 and
4954 R_SPARC_WDISP10.
4955 (Target_sparc::Scan::local): Likewise.
4956 (Target_sparc::Scan::global): Likewise.
4957 (Target_sparc::Relocate::relocate): Likewise.
4958
4959 2012-04-09 Cary Coutant <ccoutant@google.com>
4960
4961 * gdb-index.cc (Gdb_index_info_reader::record_cu_ranges): Allow
4962 low_pc == 0.
4963
4964 2012-04-06 Ian Lance Taylor <iant@google.com>
4965
4966 * timer.cc: #include <unistd.h>.
4967
4968 2012-04-06 Roland McGrath <mcgrathr@google.com>
4969
4970 * configure.in (AC_CHECK_HEADERS): Add locale.h.
4971 * config.in: Regenerate.
4972 * configure: Regenerate.
4973
4974 2012-04-05 Nick Clifton <nickc@redhat.com>
4975
4976 * configure.ac (AC_CHECK_FUNCS): Add setlocale.
4977 (AM_LC_MESSAGES): Add.
4978 * aclocal.m4: Regenerate.
4979 * config.in: Regenerate.
4980 * configure: Regenerate.
4981
4982 2012-03-21 Cary Coutant <ccoutant@google.com>
4983
4984 * Makefile.am: Add gdb-index.cc, gdb-index.h.
4985 * Makefile.in: Regenerate.
4986 * dwarf_reader.cc (Sized_elf_reloc_mapper::do_initialize): New function.
4987 (Sized_elf_reloc_mapper::symbol_section): New function.
4988 (Sized_elf_reloc_mapper::do_get_reloc_target): New function.
4989 (make_elf_reloc_mapper): New function.
4990 (Dwarf_abbrev_table::clear_abbrev_codes): New function.
4991 (Dwarf_abbrev_table::do_read_abbrevs): New function.
4992 (Dwarf_abbrev_table::do_get_abbrev): New function.
4993 (Dwarf_ranges_table::read_ranges_table): New function.
4994 (Dwarf_ranges_table::read_range_list): New function.
4995 (Dwarf_pubnames_table::read_section): New function.
4996 (Dwarf_pubnames_table::read_header): New function.
4997 (Dwarf_pubnames_table::next_name): New function.
4998 (Dwarf_die::Dwarf_die): New function.
4999 (Dwarf_die::read_attributes): New function.
5000 (Dwarf_die::skip_attributes): New function.
5001 (Dwarf_die::set_name): New function.
5002 (Dwarf_die::set_linkage_name): New function.
5003 (Dwarf_die::attribute): New function.
5004 (Dwarf_die::string_attribute): New function.
5005 (Dwarf_die::int_attribute): New function.
5006 (Dwarf_die::uint_attribute): New function.
5007 (Dwarf_die::ref_attribute): New function.
5008 (Dwarf_die::child_offset): New function.
5009 (Dwarf_die::sibling_offset): New function.
5010 (Dwarf_info_reader::check_buffer): New function.
5011 (Dwarf_info_reader::parse): New function.
5012 (Dwarf_info_reader::do_parse): New function.
5013 (Dwarf_info_reader::do_read_string_table): New function.
5014 (Dwarf_info_reader::lookup_reloc): New function.
5015 (Dwarf_info_reader::get_string): New function.
5016 (Dwarf_info_reader::visit_compilation_unit): New function.
5017 (Dwarf_info_reader::visit_type_unit): New function.
5018 (Sized_dwarf_line_info::Sized_dwarf_line_info): Use
5019 Sized_elf_reloc_mapper.
5020 (Sized_dwarf_line_info::symbol_section): Remove function.
5021 (Sized_dwarf_line_info::read_relocs): Use Sized_elf_reloc_mapper.
5022 (Sized_dwarf_line_info::read_line_mappings): Remove object
5023 parameter, adjust callers.
5024 (Sized_dwarf_line_info::format_file_lineno): Fix type of cast.
5025 * dwarf_reader.h: Include <sys/types.h>.
5026 (class Track_relocs): Remove forward declaration.
5027 (class Elf_reloc_mapper): New class.
5028 (class Sized_elf_reloc_mapper): New class.
5029 (class Dwarf_abbrev_table): New class.
5030 (class Dwarf_range_list): New class.
5031 (class Dwarf_ranges_table): New class.
5032 (class Dwarf_pubnames_table): New class.
5033 (class Dwarf_die): New class.
5034 (class Dwarf_info_reader): New class.
5035 (Sized_dwarf_line_info::read_line_mappings): Remove object parameter.
5036 (Sized_dwarf_line_info::symbol_section): Remove member function.
5037 * dynobj.h (Sized_dynobj::do_section_contents): Refactor code from
5038 base class.
5039 * gdb-index.cc: New source file.
5040 * gdb-index.h: New source file.
5041 * incremental.cc (Sized_relobj_incr::do_layout): Track .debug_info
5042 and .debug_types sections, call Layout::add_to_gdb_index.
5043 (Sized_relobj_incr::do_section_name): Implement.
5044 (Sized_relobj_incr::do_section_contents): Adjust parameter list and
5045 return type; Implement.
5046 (Sized_incr_dynobj::do_section_contents): Adjust parameter list and
5047 return type.
5048 * incremental.h (Sized_relobj_incr::do_section_contents): Adjust
5049 parameter list and return type.
5050 (Sized_incr_dynobj::do_section_contents): Likewise.
5051 * layout.cc: Include gdb-index.h.
5052 (Layout::Layout): Initialize gdb_index_data_.
5053 (Layout::init_fixed_output_section): Check for .gdb_index section.
5054 (Layout::add_to_gdb_index): New function. Instantiate.
5055 * layout.h: Add forward declaration for class Gdb_index.
5056 (Layout::add_to_gdb_index): New member function.
5057 (Layout::gdb_index_data_): New data member.
5058 * main.cc: Include gdb-index.h.
5059 (main): Print statistics for gdb index.
5060 * object.cc (Object::section_contents): Move code into
5061 do_section_contents.
5062 (need_decompressed_section): Check for sections needed when building
5063 gdb index.
5064 (build_compressed_section_map): Likewise.
5065 (Sized_relobj_file::do_read_symbols): Need local symbols when building
5066 gdb index.
5067 (Sized_relobj_file::do_layout): Track .debug_info and .debug_types
5068 sections; call Layout::add_to_gdb_index.
5069 (Sized_relobj_file::do_decompressed_section_contents): Call
5070 do_section_contents directly.
5071 * object.h (Object::do_section_contents): Adjust parameter list and
5072 return type.
5073 (Object::do_decompressed_section_contents): Call do_section_contents
5074 directly.
5075 (Sized_relobj_file::do_section_contents): Adjust parameter list and
5076 return type.
5077 * options.h (class General_options): Add --gdb-index option.
5078 * plugin.cc (Sized_pluginobj::do_section_contents): Adjust parameter
5079 list and return type.
5080 * plugin.h (Sized_pluginobj::do_section_contents): Likewise.
5081 * reloc.h (Track_relocs::checkpoint): New function.
5082 (Track_relocs::reset): New function.
5083
5084 * testsuite/Makefile.am (gdb_index_test_1.sh, gdb_index_test_2.sh):
5085 New test cases.
5086 * testsuite/Makefile.in: Regenerate.
5087 * testsuite/gdb_index_test.cc: New test source file.
5088 * testsuite/gdb_index_test_1.sh: New test source file.
5089 * testsuite/gdb_index_test_2.sh: New test source file.
5090
5091 2012-03-19 Doug Kwan <dougkwan@google.com>
5092
5093 * arm.cc (Target_arm::do_define_standard_symbols): New method.
5094 (Target_arm::do_finalize_sections): Remove code which defines
5095 __exidx_start and __exidx_end. Make symbol table parameter
5096 anonymous as it is not used.
5097 * gold.cc (queue_middle_tasks): Call target hook to define any
5098 target-specific symbols.
5099 * target.h (Target::define_standard_symbols): New method.
5100 (Target::do_define_standard_symbols): Same.
5101 * testsuite/Makefile.am (arm_exidx_test): Dump relocations also.
5102 * testsuite/Makefile.in: Regenerate.
5103 * testsuite/arm_exidx.s: Generate data relocations for __exidx_start
5104 and __exidx_end.
5105 * testsuite/arm_exidx_test.sh: Check that no unused dynamic
5106 relocations are generated for __exidx_start and __exidx_end.
5107
5108 2012-03-16 Doug Kwan <dougkwan@google.com>
5109
5110 * testsuite/Makefile.am: Disable test initpri3b.
5111 * testsuite/Makefile.in: Regenerate.
5112
5113 2012-03-15 Doug Kwan <dougkwan@google.com>
5114
5115 * arm.cc (Target_arm::got_section): Make .got section read-only
5116 if -z now is given.
5117
5118 2012-03-15 Ian Lance Taylor <iant@google.com>
5119
5120 PR gold/13850
5121 * layout.cc (Layout::make_output_section): Correctly mark
5122 SHT_INIT_ARRAY, et. al., as relro.
5123
5124 2012-03-14 Doug Kwan <dougkwan@google.com>
5125
5126 * gold/arm.cc (Target_arm::Scan::global): Generate R_ARM_GLOB_DAT
5127 dynamic relocations for protected symbols in shared objects.
5128
5129 2012-03-13 Ian Lance Taylor <iant@google.com>
5130
5131 * resolve.cc (Symbol_table::resolve): When merging common symbols,
5132 keep the larger alignment.
5133
5134 2012-03-12 Cary Coutant <ccoutant@google.com>
5135
5136 * dwarf_reader.cc (Sized_dwarf_line_info::process_one_opcode): Fix
5137 handling of DW_LNE_define_file.
5138
5139 2012-03-12 Cary Coutant <ccoutant@google.com>
5140
5141 * reduced_debug_output.cc
5142 (Output_reduced_debug_info_section::get_die_end): Add new FORM
5143 codes to switch.
5144
5145 2012-02-29 Cary Coutant <ccoutant@google.com>
5146
5147 * object.cc (need_decompressed_section): Add #ifdef ENABLE_THREADS.
5148
5149 2012-02-29 Cary Coutant <ccoutant@google.com>
5150
5151 * dwarf_reader.cc (Sized_dwarf_line_info::Sized_dwarf_line_info):
5152 Call Object::decompressed_section_contents.
5153 * dwarf_reader.h (Sized_dwarf_line_info::~Sized_dwarf_line_info):
5154 New dtor.
5155 (Sized_dwarf_line_info::buffer_start_): New data member.
5156 * merge.cc (Output_merge_data::do_add_input_section): Call
5157 Object::decompressed_section_contents.
5158 (Output_merge_string::do_add_input_section): Likewise.
5159 * object.cc (need_decompressed_section): New function.
5160 (build_compressed_section_map): Decompress sections needed later.
5161 (Sized_relobj_file::do_decompressed_section_contents): New function.
5162 (Sized_relobj_file::do_discard_decompressed_sections): New function.
5163 * object.h (Object::decompressed_section_contents): New function.
5164 (Object::discard_decompressed_sections): New function.
5165 (Object::do_decompressed_section_contents): New function.
5166 (Object::do_discard_decompressed_sections): New function.
5167 (Compressed_section_info): New type.
5168 (Compressed_section_map): Include decompressed section contents.
5169 (Sized_relobj_file::do_decompressed_section_contents): New function.
5170 (Sized_relobj_file::do_discard_decompressed_sections): New function.
5171
5172 2012-02-16 Cary Coutant <ccoutant@google.com>
5173
5174 * testsuite/Makefile.am (initpri2): Add --ctors-in-init-array option.
5175 * testsuite/Makefile.in: Regenerate.
5176
5177 2012-02-14 Cary Coutant <ccoutant@google.com>
5178
5179 * options.cc (General_options::finalize): Disallow -pie and -static.
5180
5181 2012-02-03 Doug Kwan <dougkwan@google.com>
5182
5183 * arm.cc (Arm_relocate_functions::abs8,
5184 Arm_relocate_functions::abs16): Use
5185 Bits::has_signed_unsigned_overflow32.
5186 (Arm_relocate_functions::thm_abs8): Correct range of
5187 overflow check.
5188 * reloc.h (Bits class): Change minimum number of bits from 0 to 1
5189 in assertions.
5190
5191 2012-02-02 Doug Kwan <dougkwan@google.com>
5192
5193 * arm.cc (Reloc_stub::stub_type_for_reloc): Use PIC stubs in all
5194 position independent outputs, not just shared objects.
5195
5196 2012-01-30 H.J. Lu <hongjiu.lu@intel.com>
5197
5198 * configure.ac: Check if -fpic -mtls-dialect=gnu2 works.
5199 * configure: Regenerated.
5200
5201 2012-01-27 Ian Lance Taylor <iant@google.com>
5202
5203 * reloc.h (Bits): New class with static functions, copied from
5204 namespace utils in arm.cc.
5205 * arm.cc (namespace utils): Remove. Rewrite all uses to use Bits
5206 instead.
5207
5208 2012-01-27 H.J. Lu <hongjiu.lu@intel.com>
5209
5210 * incremental.cc (write_info_blocks): Correct relocation offset.
5211
5212 2012-01-27 H.J. Lu <hongjiu.lu@intel.com>
5213
5214 * x86_64.cc (Relocate::tls_gd_to_ie): Support x32.
5215 (Relocate::tls_gd_to_le): Likewise.
5216
5217 2012-01-27 H.J. Lu <hongjiu.lu@intel.com>
5218
5219 * x86_64.cc (Scan::global): Support x32 IFUNC function pointer.
5220
5221 2012-01-27 H.J. Lu <hongjiu.lu@intel.com>
5222
5223 * configure.ac: Check if -mcmodel=medium works.
5224 * configure: Regenerated.
5225
5226 2012-01-24 Cary Coutant <ccoutant@google.com>
5227
5228 * int_encoding.cc (read_unsigned_LEB_128): Replaced with inline
5229 definition and ...
5230 (read_unsigned_LEB_128_x): ... this new function.
5231 (read_signed_LEB_128): Replaced with inline definition and ...
5232 (read_signed_LEB_128_x): ... this new function.
5233 * int_encoding.h (read_unsigned_LEB_128_x): New function.
5234 (read_unsigned_LEB_128): Add inline definition.
5235 (read_signed_LEB_128_x): New function.
5236 (read_signed_LEB_128): Add inline definition.
5237 * testsuite/Makefile.am (leb128_unittest): New unit test.
5238 * testsuite/Makefile.in: Regenerate.
5239 * testsuite/leb128_unittest.cc: New unit test.
5240
5241 2012-01-23 Ian Lance Taylor <iant@google.com>
5242
5243 PR gold/13617
5244 * i386.cc (Target_i386::do_code_fill): When using a jmp
5245 instruction, pad with nop instructions.
5246 * x86_64.cc (Target_x86_64::do_code_fill): Likewise.
5247
5248 2012-01-22 H.J. Lu <hongjiu.lu@intel.com>
5249
5250 * x86_64.cc (gc_process_relocs): Add typename on types used in
5251 template.
5252 (scan_relocs): Likewise.
5253 (relocate_section): Likewise.
5254 (apply_relocation): Likewise.
5255
5256 2012-01-10 H.J. Lu <hongjiu.lu@intel.com>
5257
5258 * x86_64.cc (Scan::check_non_pic): Allow R_X86_64_32 for x32.
5259 (Scan::local): Use R_X86_64_RELATIVE relocation for R_X86_64_32
5260 under x32.
5261
5262 2012-01-09 H.J. Lu <hongjiu.lu@intel.com>
5263
5264 * x86_64.cc: Initial support for x32.
5265
5266 2012-01-03 Cary Coutant <ccoutant@google.com>
5267
5268 * gold/incremental.cc (Sized_incremental_binary::do_process_got_plt):
5269 Use abstract base class for GOT.
5270 * gold/output.h (class Output_data_got_base): New abstract base class.
5271 (class Output_data_got): Derive from new base class, adjust ctors.
5272 (Output_data_got::reserve_slot): Make virtual; rename to
5273 do_reserve_slot; Adjust callers.
5274 * gold/target.h (Sized_target::init_got_plt_for_update): Return
5275 pointer to abstract base class.
5276 * gold/x86_64.cc (Target_x86_64::init_got_plt_for_update): Likewise.
5277
5278 2011-12-18 Ian Lance Taylor <iant@google.com>
5279
5280 * object.h (Relobj::local_symbol_value): New function.
5281 (Relobj::local_plt_offset): New function.
5282 (Relobj::local_has_got_offset): New function.
5283 (Relobj::local_got_offset): New function.
5284 (Relobj::set_local_got_offset): New function.
5285 (Relobj::do_local_symbol_value): New pure virtual function.
5286 (Relobj::do_local_plt_offset): Likewise.
5287 (Relobj::do_local_has_got_offset): Likewise.
5288 (Relobj::do_local_got_offset): Likewise.
5289 (Relobj::do_set_local_got_offset): Likewise.
5290 (Sized_relobj::do_local_has_got_offset): Rename from
5291 local_has_got_offset.
5292 (Sized_relobj::do_local_got_offset): Rename from local_got_offset.
5293 (Sized_relobj::do_set_local_got_offset): Rename from
5294 set_local_got_offset.
5295 (Sized_relobj_file::do_local_plt_offset): Rename from
5296 local_plt_offset.
5297 (Sized_relobj_file::do_local_symbol_value): New function.
5298 * object.cc (Sized_relobj_file::do_local_plt_offset): Rename from
5299 local_plt_offset.
5300 * output.cc (Output_data_got::Got_entry::write): Change object to
5301 Relobj. Use local_symbol_value.
5302 (Output_data_got::add_global_with_rel): Change rel_dyn to
5303 Output_data_reloc_generic*. Use add_global_generic.
5304 (Output_data_got::add_global_with_rela): Remove. Change all
5305 callers to use add_global_with_rel.
5306 (Output_data_got::add_global_pair_with_rel): Change rel_dyn to
5307 Output_data_reloc_generic*. Use add_global_generic.
5308 (Output_data_got::add_global_pair_with_rela): Remove. Change all
5309 callers to use add_global_pair_with_rel.
5310 (Output_data_got::add_local): Change object to Relobj*.
5311 (Output_data_got::add_local_plt): Likewise.
5312 (Output_data_got::add_local_with_rel): Change object to Relobj*,
5313 change rel_dyn to Output_data_reloc_generic*. Use
5314 add_local_generic.
5315 (Output_data_got::add_local_with_rela): Remove. Change all
5316 callers to use all_local_with_rel.
5317 (Output_data_got::add_local_pair_with_rel): Change object to
5318 Relobj*, change rel_dyn to Output_data_reloc_generic*. Use
5319 add_output_section_generic.
5320 (Output_data_got::add_local_pair_with_rela): Remove. Change all
5321 callers to use add_local_pair_with_rel.
5322 (Output_data_got::reserve_local): Change object to Relobj*.
5323 * output.h: (class Output_data_reloc_generic): Add pure virtual
5324 declarations for add_global_generic, add_local_generic,
5325 add_output_section_generic.
5326 (class Output_data_reloc) [SHT_REL, SHT_RELA]: Implement new
5327 functions for Output_data_reloc_generic. Update declarations for
5328 changes listed in output.cc.
5329 (class Output_data_got): Change template parameter to got_size.
5330 Don't define Rel_dyn or Rela_dyn. Update declarations per above.
5331 * incremental.h (Sized_relobj_incr::do_local_symbol_value): New
5332 function.
5333 (Sized_relobj_incr::do_local_plt_offset): New function.
5334 * copy-relocs.cc (Copy_relocs::Copy_reloc_entry::emit): Call
5335 add_global_generic.
5336
5337 2011-12-17 Cary Coutant <ccoutant@google.com>
5338
5339 * dwarf_reader.cc (Sized_dwarf_line_info::read_lines): Add casts.
5340 * resolve.cc (Symbol_table::resolve): Likewise.
5341 * i386.cc (Target_i386::do_code_fill): Use char constants for nop
5342 arrays.
5343 * x86_64.cc (Target_x86_64::do_code_fill): Likewise.
5344
5345 2011-12-16 Ian Lance Taylor <iant@google.com>
5346
5347 * output.h (Output_data_reloc_generic::add): Only call
5348 add_dynamic_reloc if this is a dynamic reloc section.
5349
5350 2011-12-15 H.J. Lu <hongjiu.lu@intel.com>
5351
5352 PR gold/13505
5353 * target-reloc.h (apply_relocation): Replace <64, false> with
5354 <size, big_endian>.
5355
5356 2011-11-25 Nick Clifton <nickc@redhat.com>
5357
5358 * po/it.po: New Italian translation.
5359
5360 2011-11-17 Sterling Augustine <saugustine@google.com>
5361
5362 * script.cc (script_include_directive): Implement.
5363 (read_script_file): New local variables name and search_path. Update
5364 comment. Call IS_ABSOLUTE_PATH and Dirsearch::find_file_in_dir_list.
5365 * dirsearch.h (Dirsearch::find_file_in_dir_list): Declare new method.
5366 * dirsearch.cc (Dirsearch::find_file_in_dir_list): Implement it.
5367
5368 2011-11-11 Sterling Augustine <saugustine@google.com>
5369
5370 * yyscript.y (section_cmd): Add support for INCLUDE directive.
5371 (file_or_sections_cmd): Likewise.
5372
5373 2011-11-11 Doug Kwan <dougkwan@google.com>
5374
5375 * arm.cc (Target_arm::do_make_elf_object): Allow executable also
5376 if --just-symbols is given.
5377
5378 2011-11-10 Doug Kwan <dougkwan@google.com>
5379
5380 PR gold/13362
5381 * arm.cc (Target_arm::Relocate::relocate_tls): Do unaligned accesses
5382 when processing data relocs.
5383 * reloc.h (Relocate_functions::rel_unaligned): New method.
5384 (Relocate_functions::pcrel_unaligned): Ditto.
5385 (Relocate_functions::rel32_unaligned): Ditto.
5386 (Relocate_functions::pcrel32_unaligned): Ditto.
5387
5388 2011-11-09 Doug Kwan <dougkwan@google.com>
5389
5390 PR gold/13362
5391 * arm.cc (Arm_scan_relocatable_relocs::Default_scan_relocatable_relocs):
5392 Use unaligned 4-byte relocs for static 32-bit data as required by EABI.
5393 * reloc.h (Relocatable_relocs::Reloc_strategy): New enum
5394 RELOC_ADJUST_FOR_SECTION_4_UNALIGNED.
5395 (Relocate_functions::rel_unaligned): New.
5396 (Relocate_functions::rel32_unaligned): New.
5397 * target-reloc.h (relocate_for_relocatable): Add code to handle
5398 RELOC_ADJUST_FOR_SECTION_4_UNALIGNED.
5399 * testsuite/Makefile.am (arm_unaligned_reloc_r.stdout,
5400 arm_unaligned_reloc_r): New targets.
5401 * testsuite/Makefile.in: Regenerate.
5402 * arm_unaligned_reloc.sh: Check unaligned relocs in relocatable
5403 linking.
5404
5405 2011-11-02 Ian Lance Taylor <iant@google.com>
5406
5407 * configure.ac: Add --with-lib-path option. Define LIB_PATH and
5408 NATIVE_LINKER.
5409 * Makefile.am (AM_CPPFLAGS): Define TOOLLIBDIR.
5410 * options.cc (General_options::finalize): Use library search path
5411 from configure script if specified. If not native and no sysroot,
5412 only search TOOLLIBDIR.
5413 * options.h (Search_directory::Search_directory): Change name to
5414 const std::string&.
5415 (General_options::add_to_library_path_with_sysroot): Change arg to
5416 const std::string&.
5417 * configure, Makefile.in, config.in: Rebuild.
5418
5419 2011-11-02 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
5420
5421 * arm.cc (Target_arm::may_use_v5t_interworking): Check whether
5422 we are working around the ARM1176 Erratum.
5423 * options.h (General_options::fix_arm1176): Add option.
5424 * testsuite/Makefile.am: Add testcases, and keep current ones
5425 working.
5426 * testsuite/Makefile.in: Regenerate.
5427 * testsuite/arm_fix_1176.s: New file.
5428 * testsuite/arm_fix_1176.sh: Likewise.
5429
5430 2011-11-02 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
5431
5432 * arm.cc (Target_arm::Target_arm): Remove initialisation of
5433 may_use_blx_.
5434 (Target_arm::may_use_blx): Remove method.
5435 (Target_arm::set_may_use_blx): Likewise.
5436 (Target_arm::may_use_v4t_interworking): New method.
5437 (Target_arm::may_use_v5t_interworking): Likewise.
5438 (Target_arm::may_use_blx_): Remove member variable.
5439 (Arm_relocate_functions::arm_branch_common): Check for v5T
5440 interworking.
5441 (Arm_relocate_functions::thumb_branch_common): Likewise.
5442 (Reloc_stub::stub_type_for_reloc): Likewise.
5443 (Target_arm::do_finalize_sections): Correct interworking checks.
5444 * testsuite/Makefile.am: Add new tests.
5445 * testsuite/Makefile.in: Regenerate.
5446 * testsuite/arm_farcall_arm_arm.s: New test.
5447 * testsuite/arm_farcall_arm_arm.sh: Likewise.
5448 * testsuite/arm_farcall_arm_thumb.s: Likewise.
5449 * testsuite/arm_farcall_arm_thumb.sh: Likewise.
5450 * testsuite/arm_farcall_thumb_arm.s: Likewise.
5451 * testsuite/arm_farcall_thumb_arm.sh: Likewise.
5452 * testsuite/arm_farcall_thumb_thumb.s: Likewise.
5453 * testsuite/arm_farcall_thumb_thumb.sh: Likewise.
5454
5455 2011-10-31 Cary Coutant <ccoutant@google.com>
5456
5457 PR gold/13023
5458 * expression.cc (Expression::eval_with_dot): Add
5459 is_section_dot_assignment parameter.
5460 (Expression::eval_maybe_dot): Likewise. Adjust value when rhs is
5461 absolute and assigning to dot within a section.
5462 * script-sections.cc
5463 (Output_section_element_assignment::set_section_addresses): Pass
5464 dot_section to set_if_absolute.
5465 (Output_section_element_dot_assignment::finalize_symbols): Pass TRUE
5466 as is_section_dot_assignment flag to eval_with_dot.
5467 (Output_section_element_dot_assignment::set_section_addresses):
5468 Likewise.
5469 * script.cc (Symbol_assignment::set_if_absolute): Add dot_section
5470 parameter. Also set value if relative to dot_section; set the
5471 symbol's output_section.
5472 * script.h (Expression::eval_with_dot): Add is_section_dot_assignment
5473 parameter. Adjust all callers.
5474 (Expression::eval_maybe_dot): Likewise.
5475 (Symbol_assignment::set_if_absolute): Add dot_section parameter.
5476 Adjust all callers.
5477 * testsuite/script_test_2.t: Test assignment of an absolute value
5478 to dot within an output section element.
5479
5480 2011-10-31 Cary Coutant <ccoutant@google.com>
5481
5482 * options.h (class General_options): Add --[no-]gnu-unique options.
5483 * symtab.cc (Symbol_table::sized_write_globals): Convert
5484 STB_GNU_UNIQUE to STB_GLOBAL if --no-gnu-unique.
5485
5486 2011-10-31 Cary Coutant <ccoutant@google.com>
5487
5488 PR gold/13359
5489 * i386.cc (Target_i386::Relocate::relocate_tls): Remove
5490 unnecessary assertion.
5491 * x86_64.cc (Target_x86_64::Relocate::relocate_tls): Likewise.
5492
5493 2011-10-31 Sriraman Tallam <tmsriram@google.com>
5494
5495 * symtab.h (Symbol_table::gc_mark_symbol_for_shlib): Rename to
5496 gc_mark_symbol.
5497 * symtab.cc (Symbol_table::gc_mark_symbol_for_shlib): Rename to
5498 gc_mark_symbol.
5499 Change to just keep the section associated with symbol.
5500 (Symbol_table::add_from_relobj): Mark symbols as not garbage when
5501 they are externally visible and --export-dynamic is turned on.
5502 (Symbol_table::gc_mark_dyn_syms): Call gc_mark_symbol.
5503
5504 2011-10-19 Ian Lance Taylor <iant@google.com>
5505
5506 PR gold/13163
5507 * script-sections.cc
5508 (Output_section_element_dot_assignment::needs_output_section): New
5509 function.
5510
5511 2011-10-19 Ian Lance Taylor <iant@google.com>
5512
5513 PR gold/13204
5514 * layout.cc (Layout::segment_precedes): Don't assert failure if a
5515 --section-start option was seen.
5516 * options.h (General_options::any_section_start): New function.
5517
5518 2011-10-18 David S. Miller <davem@davemloft.net>
5519
5520 PR binutils/13301
5521 * sparc.cc (Target_sparc::Relocate::reloc_adjust_addr_): New
5522 member to track relocation locations that have moved during TLS
5523 reloc optimizations.
5524 (Target_sparc::Relocate::Relocate): Initialize to NULL.
5525 (Target_sparc::Relocate::relocate): Adjust view down by 4
5526 bytes if it matches reloc_adjust_addr_.
5527 (Target_sparc::Relocate::relocate_tls): Always move the
5528 __tls_get_addr call delay slot instruction forward 4 bytes when
5529 performing relaxation.
5530
5531 2011-10-18 Cary Coutant <ccoutant@google.com>
5532
5533 * output.cc (posix_fallocate): Return 0 on success, errno on failure.
5534 (Output_file::map_no_anonymous): Check for non-zero
5535 return code from posix_fallocate.
5536
5537 2011-10-17 Cary Coutant <ccoutant@google.com>
5538
5539 PR gold/13245
5540 * plugin.cc (is_visible_from_outside): Check for symbols
5541 referenced from dynamic objects.
5542 * resolve.cc (Symbol_table::resolve): Don't count references
5543 from dynamic objects as references from real ELF files.
5544 * testsuite/plugin_test_2.sh: Adjust expected result.
5545
5546 2011-10-17 Cary Coutant <ccoutant@google.com>
5547
5548 * gold.cc: Include timer.h.
5549 (queue_middle_tasks): Stamp time.
5550 (queue_final_tasks): Likewise.
5551 * main.cc (main): Store timer in parameters. Print timers
5552 for each pass.
5553 * parameters.cc (Parameters::Parameters): Initialize timer_.
5554 (Parameters::set_timer): New function.
5555 (set_parameters_timer): New function.
5556 * parameters.h (Parameters::set_timer): New function.
5557 (Parameters::timer): New function.
5558 (Parameters::timer_): New data member.
5559 (set_parameters_timer): New function.
5560 * timer.cc (Timer::stamp): New function.
5561 (Timer::get_pass_time): New function.
5562 * timer.h (Timer::stamp): New function.
5563 (Timer::get_pass_time): New function.
5564 (Timer::pass_times_): New data member.
5565
5566 2011-10-17 Cary Coutant <ccoutant@google.com>
5567
5568 * readsyms.cc (Read_symbols::run): Don't queue an unblocker
5569 task for members of lib groups.
5570
5571 2011-10-17 Cary Coutant <ccoutant@google.com>
5572
5573 PR gold/13288
5574 * fileread.cc (File_read::find_view): Add assert.
5575 (File_read::make_view): Move bounds check (replace with assert)...
5576 (File_read::find_or_make_view): ... to here.
5577
5578 2011-10-12 Cary Coutant <ccoutant@google.com>
5579
5580 * output.cc (Output_file::open_base_file): Handle case where
5581 ::read returns less than requested size.
5582
5583 2011-10-10 Cary Coutant <ccoutant@google.com>
5584
5585 * incremental.cc (Sized_relobj_incr::Sized_relobj_incr):
5586 Initialize defined_count_.
5587 (Sized_relobj_incr::do_add_symbols): Count defined symbols.
5588 (Sized_relobj_incr::do_get_global_symbol_counts): Rewrite.
5589 (Sized_incr_dynobj::Sized_incr_dynobj): Initialize defined_count_.
5590 (Sized_incr_dynobj::do_add_symbols): Count defined symbols.
5591 (Sized_incr_dynobj::do_get_global_symbol_counts): Rewrite.
5592 * incremental.h (Sized_relobj_incr::defined_count_): New data
5593 member.
5594 (Sized_incr_dynobj::defined_count_): New data member.
5595 * plugin.cc (Sized_pluginobj::do_get_global_symbol_counts):
5596 Return zeroes instead of internal error.
5597
5598 2011-10-10 Cary Coutant <ccoutant@google.com>
5599
5600 PR gold/13249
5601 * output.cc (Output_reloc::Output_reloc): Add use_plt_offset flag.
5602 (Output_reloc::symbol_value): Return PLT offset if flag is set.
5603 * output.h (class Output_reloc): Add use_plt_offset flag.
5604 (Output_reloc::type_): Adjust size of bit field.
5605 (Output_reloc::use_plt_offset_): New bit field.
5606 (class Output_data_reloc): Adjust all calls to Output_reloc_type.
5607 (Output_data_reloc::add_local_relative): (RELA only) Add use_plt_offset
5608 flag. Adjust all callers.
5609 * x86_64.cc (Target_x86_64::Scan::local): Check for IFUNC when
5610 creating RELATIVE relocations.
5611
5612 2011-10-10 Nick Clifton <nickc@redhat.com>
5613
5614 * po/es.po: Updated Spanish translation.
5615 * po/fi.po: Updated Finnish translation.
5616
5617 2011-10-03 Diego Novillo <dnovillo@google.com>
5618
5619 * options.cc (parse_uint): Fix dereference of RETVAL.
5620
5621 2011-09-29 Sriraman Tallam <tmsriram@google.com>
5622
5623 * layout.h (section_order_map_): New member.
5624 (get_section_order_map): New member function.
5625 * output.cc (Output_section::add_input_section): Check for patterns
5626 only when --section-ordering-file is specified.
5627 * gold.cc (queue_middle_tasks): Delay updating order of sections till
5628 output_sections have been formed.
5629 * layout.cc (Layout_Layout): Initialize section_order_map_.
5630 * plugin.cc (update_section_order): Store order in order_map. Do not
5631 update the order.
5632 * testsuite/Makefile.am: Add test case for plugin_final_layout.
5633 * testsuite/Makefile.in: Regenerate.
5634 * testsuite/plugin_section_order.c: New file.
5635 * testsuite/plugin_final_layout.cc: New file.
5636 * testsuite/plugin_final_layout.sh: New file.
5637
5638 2011-09-29 Cary Coutant <ccoutant@google.com>
5639
5640 * incremental.cc (Sized_incremental_binary::do_process_got_plt):
5641 Check for NULL.
5642 * symtab.cc (Symbol_table::add_from_relobj): Ignore version
5643 symbols during incremental update.
5644 (Symbol_table::add_from_dynobj): Likewise.
5645
5646 2011-09-27 Viktor Kutuzov <vkutuzov@accesssoftek.com>
5647 Ian Lance Taylor <iant@google.com>
5648
5649 * symtab.cc (Symbol_table::define_special_symbol): Always
5650 canonicalize version string.
5651
5652 2011-09-26 Cary Coutant <ccoutant@google.com>
5653
5654 * gold.cc (queue_initial_tasks): Move option checks ...
5655 * options.cc (General_options::finalize): ... to here. Disable
5656 some options; make others fatal.
5657
5658 2011-09-26 Cary Coutant <ccoutant@google.com>
5659
5660 gcc PR lto/47247
5661 * plugin.cc (get_symbols_v2): New function.
5662 (Plugin::load): Add LDPT_GET_SYMBOLS_V2.
5663 (is_referenced_from_outside): New function.
5664 (Pluginobj::get_symbol_resolution_info): Add version parameter, return
5665 LDPR_PREVAILING_DEF_IRONLY_EXP when using new version.
5666 (get_symbols): Pass version parameter.
5667 (get_symbols_v2): New function.
5668 * plugin.h (Pluginobj::get_symbol_resolution_info): Add version
5669 parameter.
5670 * testsuite/plugin_test.c (get_symbols_v2): New static variable.
5671 (onload): Add LDPT_GET_SYMBOLS_V2.
5672 (all_symbols_read_hook): Use get_symbols_v2; check for
5673 LDPR_PREVAILING_DEF_IRONLY_EXP.
5674 * testsuite/plugin_test_3.sh: Update expected results.
5675
5676 2011-09-23 Simon Baldwin <simonb@google.com>
5677
5678 * configure.ac: Add new --with-gold-ldadd and --with-gold-ldflags
5679 configuration options.
5680 * configure: Regenerate.
5681 * Makefile.am: Handle GOLD_LDADD and GOLD_LDFLAGS.
5682 * Makefile.in: Regenerate.
5683 * testsuite/Makefile.in: Regenerate.
5684
5685 2011-09-19 Sriraman Tallam <tmsriram@google.com>
5686
5687 * plugin.h (should_defer_layout): Modify to check for any_claimed_.
5688
5689 2011-09-19 Cary Coutant <ccoutant@google.com>
5690
5691 * incremental.cc (can_incremental_update): Fix typo in comment.
5692 * incremental.h (can_incremental_update): Likewise.
5693
5694 2011-09-18 Cary Coutant <ccoutant@google.com>
5695
5696 * incremental.cc (can_incremental_update): New function.
5697 * incremental.h (can_incremental_update): New function.
5698 * layout.cc (Layout::init_fixed_output_section): Call it.
5699 (Layout::make_output_section): Don't allow patch space in .eh_frame.
5700 * object.cc (Sized_relobj_file::do_layout): Call
5701 can_incremental_update.
5702
5703 2011-09-13 Cary Coutant <ccoutant@google.com>
5704
5705 * configure.ac: Check for glibc support for gnu_indirect_function
5706 support with static linking, setting automake conditional
5707 IFUNC_STATIC.
5708 * Makefile.in: Regenerate.
5709 * configure: Regenerate.
5710
5711 * testsuite/Makefile.am (ifuncmain1static, ifuncmain2static)
5712 (ifuncmain4static, ifuncmain5static, ifuncmain7static): Add check
5713 for IFUNC_STATIC.
5714 * testsuite/Makefile.in: Regenerate.
5715
5716 2011-09-13 Cary Coutant <ccoutant@google.com>
5717
5718 * incremental.cc (Sized_relobj_incr::do_layout): Call
5719 report_comdat_group for kept comdat sections.
5720 * testsuite/Makefile.am (incremental_comdat_test_1): New test.
5721 * testsuite/Makefile.in: Regenerate.
5722 * testsuite/incr_comdat_test_1.cc: New source file.
5723 * testsuite/incr_comdat_test_2_v1.cc: New source file.
5724 * testsuite/incr_comdat_test_2_v2.cc: New source file.
5725 * testsuite/incr_comdat_test_2_v3.cc: New source file.
5726
5727 2011-09-13 Ian Lance Taylor <iant@google.com>
5728
5729 * object.cc (Sized_relobj_file::do_layout): Remove unused local
5730 variable external_symbols_offset.
5731
5732 2011-09-12 Ian Lance Taylor <iant@google.com>
5733
5734 * object.cc (Sized_relobj_file::do_layout): Remove assertion which
5735 triggered if object has no symbols.
5736
5737 2011-09-09 David S. Miller <davem@davemloft.net>
5738
5739 * output.cc (Output_fill_debug_info::do_write): Use Swap_unaligned.
5740 (Output_fill_debug_line::do_write): Likewise.
5741
5742 2011-08-29 Cary Coutant <ccoutant@google.com>
5743
5744 * output.cc: (Output_fill_debug_info::do_minimum_hole_size): Add
5745 casts to match formatting specs.
5746 (Output_fill_debug_line::do_minimum_hole_size): Likewise.
5747
5748 2011-08-26 Cary Coutant <ccoutant@google.com>
5749
5750 * layout.cc (Free_list::allocate): Provide guarantee of minimum
5751 remaining hole size when allocating.
5752 (Layout::make_output_section): Set fill methods for debug sections.
5753 * layout.h (Free_list::Free_list_node): Move from private to
5754 public.
5755 (Free_list::set_min_hole_size): New function.
5756 (Free_list::begin, Free_list::end): New functions.
5757 (Free_list::min_hole_): New data member.
5758 * output.cc: Include dwarf.h.
5759 (Output_fill_debug_info::do_minimum_hole_size): New function.
5760 (Output_fill_debug_info::do_write): New function.
5761 (Output_fill_debug_line::do_minimum_hole_size): New function.
5762 (Output_fill_debug_line::do_write): New function.
5763 (Output_section::Output_section): Initialize new data member.
5764 (Output_section::set_final_data_size): Ensure patch space is larger
5765 than minimum hole size.
5766 (Output_section::do_write): Fill holes in debug sections.
5767 * output.h (Output_fill): New class.
5768 (Output_fill_debug_info): New class.
5769 (Output_fill_debug_line): New class.
5770 (Output_section::set_free_space_fill): New function.
5771 (Output_section::free_space_fill_): New data member.
5772 * testsuite/Makefile.am (incremental_test_3): Add
5773 --incremental-patch option.
5774 (incremental_test_4): Likewise.
5775 (incremental_test_5): Likewise.
5776 (incremental_test_6): Likewise.
5777 (incremental_copy_test): Likewise.
5778 (incremental_common_test_1): Likewise.
5779 * testsuite/Makefile.in: Regenerate.
5780
5781 2011-08-26 Nick Clifton <nickc@redhat.com>
5782
5783 * po/es.po: Updated Spanish translation.
5784
5785 2011-08-01 Cary Coutant <ccoutant@google.com>
5786
5787 * gold/testsuite/Makefile.am (justsyms_exec): New testcase.
5788 * gold/testsuite/Makefile.in: Regenerate.
5789 * gold/testsuite/justsyms_exec.c: New source file.
5790 * gold/testsuite/justsyms_lib.c: New source file.
5791
5792 2011-08-01 Cary Coutant <ccoutant@google.com>
5793
5794 * layout.cc (Layout::set_segment_offsets): Don't realign text
5795 segment if -Ttext was specified.
5796 * object.cc (Sized_relobj_file::Sized_relobj_file): Store the ELF
5797 file type.
5798 * object.h (Sized_relobj_file::e_type): New function.
5799 (Sized_relobj_file::e_type_): New data member.
5800 * symtab.cc (Symbol_table::add_from_relobj): Don't add section
5801 base address for ET_EXEC files.
5802 * target.cc (Target::do_make_elf_object_implementation): Allow
5803 ET_EXEC files with --just-symbols option.
5804
5805 2011-07-28 Cary Coutant <ccoutant@google.com>
5806
5807 * workqueue-internal.h (Workqueue_threader::should_cancel_thread):
5808 Add thread_number parameter.
5809 (Workqueue_threader_threadpool::should_cancel_thread): Likewise.
5810 * workqueue-threads.cc
5811 (Workqueue_threader_threadpool::should_cancel_thread): Cancel
5812 current thread if its thread number is greater than desired thread
5813 count.
5814 * workqueue.cc (Workqueue_threader_single::should_cancel_thread):
5815 Add thread_number parameter.
5816 (Workqueue::should_cancel_thread): Likewise.
5817 (Workqueue::find_runnable_or_wait): Pass thread_number to
5818 should_cancel_thread.
5819 * workqueue.h (Workqueue::should_cancel_thread): Add thread_number
5820 parameter.
5821
5822 2011-07-22 Sriraman Tallam <tmsriram@google.com>
5823
5824 * symtab.cc (Symbol_table::add_from_relobj): Mark symbol as referenced
5825 only after checking if it cannot be forced local.
5826 * symtab.h (is_externally_visible): Check if the symbol is not forced
5827 local.
5828
5829 2011-07-15 Ian Lance Taylor <iant@google.com>
5830
5831 * options.h (class General_options): Add --print-output-format.
5832 Move -EL next to -EB, for better --help output.
5833 * target-select.cc: Include <cstdio>, "options.h", and
5834 "parameters.h".
5835 (Target_selector::do_target_bfd_name): New function.
5836 (print_output_format): New function.
5837 * target-select.h (class Target_selector): Update declarations.
5838 (Target_selector::target_bfd_name): New function.
5839 (print_output_format): Declare.
5840 * main.cc: Include "target-select.h".
5841 (main): Handle --print-output-format.
5842 * gold.cc: Include "target-select.h".
5843 (queue_initial_tasks): Handle --print-output-format when there are
5844 no input files.
5845 * parameters.cc (parameters_force_valid_target): Give a better
5846 error message if -EB/-EL does not match target.
5847 * freebsd.h (Target_selector_freebsd::do_target_bfd_name): New
5848 function.
5849
5850 2011-07-15 Ian Lance Taylor <iant@google.com>
5851
5852 * i386.cc (class Output_data_plt_i386): Add layout_ field.
5853 (Output_data_plt_i386::Output_data_plt_i386): Initialize layout_.
5854 (Output_data_plt_i386::do_write): Write address of .dynamic
5855 section to first entry in .got.plt section.
5856 * x86_64.cc (class Output_data_plt_x86_64): Add layout_ field.
5857 (Output_data_plt_x86_64::Output_data_plt_x86_64) [both versions]:
5858 Initialize layout_.
5859 (Output_data_plt_x86_64::do_write): Write address of .dynamic
5860 section to first entry in .got.plt section.
5861 * layout.h (Layout::dynamic_section): New function.
5862
5863 2011-07-13 Sriraman Tallam <tmsriram@google.com>
5864
5865 * archive.cc (Archive::get_elf_object_for_member): Add extra parameter
5866 to claim_file call.
5867 * layout.cc (Layout::Layout): Initialize section_ordering_specified_,
5868 input_section_position_, and input_section_glob_.
5869 (read_layout_from_file): Call function section_ordering_specified.
5870 * layout.h (is_section_ordering_specified): New function.
5871 (section_ordering_specified): New function.
5872 (section_ordering_specified_): New boolean member.
5873 * main.cc(main): Call load_plugins after layout object is defined.
5874 * output.cc (Output_section::add_input_section): Use
5875 function section_ordering_specified to check if section ordering is
5876 needed.
5877 * output.cc (Output_section::add_relaxed_input_section): Use
5878 function section_ordering_specified to check if section ordering is
5879 needed.
5880 (Output_section::update_section_layout): New function.
5881 (Output_section::sort_attached_input_sections): Check if input section
5882 must be reordered.
5883 * output.h (Output_section::update_section_layout): New function.
5884 * plugin.cc (get_section_count): New function.
5885 (get_section_type): New function.
5886 (get_section_name): New function.
5887 (get_section_contents): New function.
5888 (update_section_order): New function.
5889 (allow_section_ordering): New function.
5890 (Plugin::load): Add the new interfaces to the transfer vector.
5891 (Plugin_manager::load_plugins): New parameter.
5892 (Plugin_manager::all_symbols_read): New parameter.
5893 (Plugin_manager::claim_file): New parameter. Save the elf object for
5894 unclaimed objects.
5895 (Plugin_manager::get_elf_object): New function.
5896 (Plugin_manager::get_view): Change to directly use the bool to check
5897 if get_view is called from claim_file_hook.
5898 * plugin.h (input_objects): New function
5899 (Plugin__manager::load_plugins): New parameter.
5900 (Plugin_manager::claim_file): New parameter.
5901 (Plugin_manager::get_elf_object): New function.
5902 (Plugin_manager::in_claim_file_handler): New function.
5903 (Plugin_manager::in_claim_file_handler_): New member.
5904 (layout): New function.
5905 * readsyms.cc (Read_symbols::do_read_symbols): Call the claim_file
5906 handler with an extra parameter. Make the elf object before calling
5907 claim_file handler.
5908 * testsuite/plugin_test.c (get_section_count): New function pointer.
5909 (get_section_type): New function pointer.
5910 (get_section_name): New function pointer.
5911 (get_section_contents): New function pointer.
5912 (update_section_order): New function pointer.
5913 (allow_section_ordering): New function pointer.
5914 (onload): Check if the new interfaces exist.
5915
5916 2011-07-13 Ian Lance Taylor <iant@google.com>
5917
5918 * i386.cc (Target_i386::got_section): If -z now, make .got.plt a
5919 relro section.
5920 * x86_64.cc (Target_x86_64::got_section): Likewise.
5921 * testsuite/Makefile.am (check_PROGRAMS): Add relro_now_test.
5922 (relro_now_test_SOURCES): New variable.
5923 (relro_now_test_DEPENDENCIES): New variable.
5924 (relro_now_test_LDFLAGS): New variable.
5925 (relro_now_test_LDADD): New variable.
5926 (relro_now_test.so): New target.
5927 * testsuite/Makefile.in: Rebuild.
5928
5929 2011-07-12 Ian Lance Taylor <iant@google.com>
5930
5931 PR gold/12980
5932 * i386.cc (Target_i386::Scan::global): For a GOT reloc, use a
5933 GLOB_DAT relocation rather than a RELATIVE relocation for a
5934 protected symbol when creating a shared library.
5935 * x86_64.cc (Target_x86_64::Scan::global): Likewise.
5936 * testsuite/protected_1.cc (f2, get_f2_addr): New functions.
5937 * testsuite/protected_main_1.cc (main): Test that protected
5938 function has same address.
5939
5940 2011-07-11 Ian Lance Taylor <iant@google.com>
5941
5942 PR gold/12979
5943 * options.h (class General_options): Add -Bgroup.
5944 * options.cc (General_options::finalize): If -Bgroup is set,
5945 default to --unresolved-symbols=report-all.
5946 * layout.cc (Layout::finish_dynamic_section): Implement -Bgroup.
5947 * target-reloc.h (issue_undefined_symbol_error): Handle
5948 --unresolved-symbols=report-all.
5949
5950 2011-07-08 Ian Lance Taylor <iant@google.com>
5951
5952 PR gold/11985
5953 * layout.cc (Layout::create_initial_dynamic_sections): Don't crash
5954 if linker script discards key sections.
5955 (Layout::create_dynamic_symtab): Likewise.
5956 (Layout::assign_local_dynsym_offsets): Likewise.
5957 (Layout::sized_create_version_sections): Likewise.
5958 (Layout::create_interp): Likewise.
5959 (Layout::finish_dynamic_section): Likewise.
5960 (Layout::set_dynamic_symbol_size): Likewise.
5961
5962 2011-07-08 Ian Lance Taylor <iant@google.com>
5963
5964 PR gold/12386
5965 * options.h (class General_options): Add --unresolved-symbols.
5966 * target-reloc.h (issue_undefined_symbol_error): Check
5967 --unresolved-symbols. Add comments.
5968
5969 2011-07-08 Ian Lance Taylor <iant@google.com>
5970
5971 * testsuite/odr_violation2.cc (Ordering::operator()): Make
5972 expression more complex.
5973
5974 2011-07-08 Ian Lance Taylor <iant@google.com>
5975
5976 PR gold/11317
5977 * target-reloc.h (issue_undefined_symbol_error): New inline
5978 function, broken out of relocate_section.
5979 (relocate_section): Call issue_undefined_symbol_error.
5980 * i386.cc (Target_i386::Relocate::relocate_tls): Don't crash if
5981 there is no TLS segment if we are about to issue an undefined
5982 symbol error.
5983 * x86_64.cc (Target_x86_64::relocate_tls): Likewise.
5984
5985 2011-07-08 Ian Lance Taylor <iant@google.com>
5986
5987 PR gold/12279
5988 * resolve.cc (Symbol_table::should_override): Add fromtype
5989 parameter. Change all callers. Give error when linking together
5990 TLS and non-TLS symbol.
5991 (Symbol_table::should_override_with_special): Add fromtype
5992 parameter. Change all callers.
5993 * i386.cc (Target_i386::Relocate::relocate_tls): Don't crash if
5994 there is no TLS segment if we have reported some errors.
5995 * x86_64.cc (Target_x86_64::relocate_tls): Likewise.
5996
5997 2011-07-08 Ian Lance Taylor <iant@google.com>
5998
5999 PR gold/12372
6000 * target.h (Target::plt_address_for_global): New function.
6001 (Target::plt_address_for_local): New function.
6002 (Target::plt_section_for_global): Remove.
6003 (Target::plt_section_for_local): Remove.
6004 (Target::do_plt_address_for_global): New virtual function.
6005 (Target::do_plt_address_for_local): New virtual function.
6006 (Target::do_plt_section_for_global): Remove.
6007 (Target::do_plt_section_for_local): Remove.
6008 (Target::register_global_plt_entry): Add Symbol_table and Layout
6009 parameters.
6010 * output.cc (Output_data_got::Got_entry::write): Use
6011 plt_address_for_global and plt_address_for_local.
6012 * layout.cc (Layout::add_target_dynamic_tags): Use size and
6013 address of output section.
6014 * i386.cc (class Output_data_plt_i386): Add irelative_rel_,
6015 got_irelative_, and irelative_count_ fields. Update
6016 declarations.
6017 (Output_data_plt_i386::has_irelative_section): New function.
6018 (Output_data_plt_i386::entry_count): Add irelative_count_.
6019 (Output_data_plt_i386::set_final_data_size): Likewise.
6020 (class Target_i386): Add got_irelative_ and rel_irelative_
6021 fields. Update declarations.
6022 (Target_i386::Target_i386): Initialize new fields.
6023 (Target_i386::do_plt_address_for_global): New function replacing
6024 do_plt_section_for_global.
6025 (Target_i386::do_plt_address_for_local): New function replacing
6026 do_plt_section_for_local.
6027 (Target_i386::got_section): Create got_irelative_.
6028 (Target_i386::rel_irelative_section): New function.
6029 (Output_data_plt_i386::Output_data_plt_i386): Initialize new
6030 fields. Don't define __rel_iplt_{start,end}.
6031 (Output_data_plt_i386::add_entry): Add symtab and layout
6032 parameters. Change all callers. Use different PLT and GOT for
6033 IFUNC symbols.
6034 (Output_data_plt_i386::add_local_ifunc_entry): Add symtab and
6035 layout parameters. Change all callers. Use different PLT and
6036 GOT.
6037 (Output_data_plt_i386::rel_tls_desc): Fix formatting.
6038 (Output_data_plt_i386::rel_irelative): New function.
6039 (Output_data_plt_i386::address_for_global): New function.
6040 (Output_data_plt_i386::address_for_local): New function.
6041 (Output_data_plt_i386::do_write): Write out IRELATIVE area. Use
6042 IRELATIVE GOT when changing IFUNC GOT entries.
6043 (Target_i386::Scan::global): Use IRELATIVE GOT for IRELATIVE
6044 reloc.
6045 (Target_i386::do_finalize_sections): Create the __rel_iplt symbols
6046 if we didn't create an IRELATIVE GOT.
6047 (Target_i386::Relocate::relocate): Use plt_address_for_global and
6048 plt_address_for_local.
6049 (Target_i386::do_dynsym_value): Use plt_address_for_global.
6050 * x86_64.cc (class Output_data_plt_x86_64): Add irelative_rel_,
6051 got_irelative_, and irelative_count_ fields. Update
6052 declarations.
6053 (Output_data_plt_x86_64::Output_data_plt_x86_64) [both versions]:
6054 Initialize new fields. Remove symtab parameter. Change all
6055 callers.
6056 (Output_data_plt_x86_64::get_tlsdesc_plt_offset): Add
6057 irelative_count_.
6058 (Output_data_plt_x86_64::has_irelative_section): New function.
6059 (Output_data_plt_x86_64::entry_count): Add irelative_count_.
6060 (class Target_x86_64): Add got_irelative_ and rel_irelative_
6061 fields. Update declarations.
6062 (Target_x86_64::Target_x86_64): Initialize new fields.
6063 (Target_x86_64::do_plt_address_for_global): New function replacing
6064 do_plt_section_for_global.
6065 (Target_x86_64::do_plt_address_for_local): New function replacing
6066 do_plt_section_for_local.
6067 (Target_x86_64::got_section): Create got_irelative_.
6068 (Target_x86_64::rela_irelative_section): New function.
6069 (Output_data_plt_x86_64::init): Remove symtab parameter. Change
6070 all callers. Don't create __rel_iplt_{start,end}.
6071 (Output_data_plt_x86_64::add_entry): Add symtab and layout
6072 parameters. Change all callers. Use different PLT and GOT for
6073 IFUNC symbols.
6074 (Output_data_plt_x86_64::add_local_ifunc_entry): Add symtab and
6075 layout parameters. Change all callers. Use different PLT and
6076 GOT.
6077 (Output_data_plt_x86_64::add_relocation): Add symtab and layout
6078 parameters. Change all callers. Use different PLT and GOT for
6079 IFUNC symbols.
6080 (Output_data_plt_x86_64::rela_tlsdesc): Fix formatting.
6081 (Output_data_plt_x86_64::rela_irelative): New function.
6082 (Output_data_plt_x86_64::address_for_global): New function.
6083 (Output_data_plt_x86_64::address_for_local): New function.
6084 (Output_data_plt_x86_64::set_final_data_size): Likewise.
6085 (Output_data_plt_x86_64::do_write): Write out IRELATIVE area.
6086 (Target_x86_64::init_got_plt_for_update): Create got_irelative_.
6087 (Target_x86_64::register_global_plt_entry): Add symtab and layout
6088 parameters.
6089 (Target_x86_64::Scan::global): Use IRELATIVE GOT for IRELATIVE
6090 reloc.
6091 (Target_x86_64::do_finalize_sections): Create the __rela_iplt
6092 symbols if we didn't create an IRELATIVE GOT.
6093 (Target_x86_64::Relocate::relocate): Use plt_address_for_global and
6094 plt_address_for_local.
6095 (Target_x86_64::do_dynsym_value): Use plt_address_for_global.
6096 * testsuite/ifuncvar1.c: New test file.
6097 * testsuite/ifuncvar2.c: New test file.
6098 * testsuite/ifuncvar3.c: New test file.
6099 * testsuite/Makefile.am (check_PROGRAMS): Add ifuncvar.
6100 (ifuncvar1_pic.o, ifuncvar2_pic.o, ifuncvar.so): New targets.
6101 (ifuncvar_SOURCES, ifuncvar_DEPENDENCIES): New variables.
6102 (ifuncvar_LDFLAGS, ifuncvar_LDADD): New variables.
6103 * testsuite/Makefile.in: Rebuild.
6104
6105 2011-07-07 Cary Coutant <ccoutant@google.com>
6106
6107 * testsuite/Makefile.am (two_file_test_1_v1_ndebug.o): New target.
6108 (two_file_test_1_ndebug.o): Likewise.
6109 (two_file_test_1b_ndebug.o): Likewise.
6110 (two_file_test_2_ndebug.o): Likewise.
6111 (two_file_test_main_ndebug.o): Likewise.
6112 (incremental_test_2): Link with no-debug versions.
6113
6114 2011-07-06 Cary Coutant <ccoutant@google.com>
6115
6116 * gold/incremental.cc
6117 (Output_section_incremental_inputs::write_info_blocks): Check for
6118 hidden and internal symbols.
6119
6120 2011-07-06 Cary Coutant <ccoutant@google.com>
6121
6122 * incremental.cc (Sized_incremental_binary::do_file_has_changed):
6123 Check disposition for startup file.
6124 (Incremental_inputs::report_command_line): Ignore
6125 --incremental-startup-unchanged option.
6126 * options.cc (General_options::parse_incremental_startup_unchanged):
6127 New function.
6128 (General_options::General_options): Initialize new data member.
6129 * options.h (Incremental_disposition): Add INCREMENTAL_STARTUP.
6130 (General_options): Add --incremental-startup-unchanged option.
6131 (General_options::incremental_startup_disposition): New function.
6132 (General_options::incremental_startup_disposition_): New data member.
6133
6134 2011-07-06 Cary Coutant <ccoutant@google.com>
6135
6136 * incremental.cc (Sized_incremental_binary::setup_readers): Pass
6137 input file index to Script_info ctor.
6138 (Sized_incremental_binary::do_file_has_changed): Find the
6139 command-line argument for files named in scripts.
6140 * incremental.h (Script_info::Script_info): New ctor
6141 with input file index.
6142 (Script_info::input_file_index): New function.
6143 (Script_info::input_file_index_): New data member.
6144 (Incremental_binary::get_library): Add const.
6145 (Incremental_binary::get_script_info): Add const.
6146 * readsyms.cc (Read_member::is_runnable): Check for this_blocker_.
6147 * testsuite/Makefile.am (incremental_test_5): New test case.
6148 (incremental_test_6): New test case.
6149 * testsuite/Makefile.in: Regenerate.
6150
6151 2011-07-06 Cary Coutant <ccoutant@google.com>
6152
6153 * incremental.cc (Sized_incremental_binary::do_check_inputs): Add
6154 debug output when command lines differ.
6155
6156 2011-07-06 Cary Coutant <ccoutant@google.com>
6157
6158 * incremental.cc (Incremental_inputs::report_command_line): Ignore
6159 --incremental-patch option.
6160 * layout.cc (Free_list::allocate): Extend allocation beyond original
6161 end if enabled.
6162 (Layout::make_output_section): Mark sections that should get
6163 patch space.
6164 * options.cc (parse_percent): New function.
6165 * options.h (parse_percent): New function.
6166 (DEFINE_percent): New macro.
6167 (General_options): Add --incremental-patch option.
6168 * output.cc (Output_section::Output_section): Initialize new data
6169 members.
6170 (Output_section::add_input_section): Print section name when out
6171 of patch space.
6172 (Output_section::add_output_section_data): Likewise.
6173 (Output_section::set_final_data_size): Add patch space when
6174 doing --incremental-full.
6175 (Output_section::do_reset_address_and_file_offset): Remove patch
6176 space.
6177 (Output_segment::set_section_list_addresses): Print debug output
6178 only if --incremental-update.
6179 * output.h (Output_section::set_is_patch_space_allowed): New function.
6180 (Output_section::is_patch_space_allowed_): New data member.
6181 (Output_section::patch_space_): New data member.
6182 * parameters.cc (Parameters::incremental_full): New function.
6183 * parameters.h (Parameters::incremental_full): New function
6184 * testsuite/Makefile.am (incremental_test_2): Add test for
6185 --incremental-patch option.
6186 * testsuite/Makefile.in: Regenerate.
6187 * testsuite/two_file_test_1_v1.cc (t1, t2, t3): Add comments.
6188 (t18): Remove function body.
6189
6190 2011-07-05 Doug Kwan <dougkwan@google.com>
6191
6192 PR gold/12771
6193 * arm.cc (Arm_relocate_functions::abs8): Use int32_t for addend and
6194 Arm_Address type for relocation result.
6195 (Arm_relocate_functions::abs16): Use unaligned access. Also fix
6196 overflow check.
6197 (Arm_relocate_functions::abs32): Use unaligned access.
6198 (Arm_relocate_functions::rel32): Ditto.
6199 (Arm_relocate_functions::prel31): Ditto.
6200 (Arm_exidix_cantunwind::do_fixed_endian_write): Ditto.
6201 * testsuite/Makefile.am: Add new test arm_unaligned_reloc for unaligned
6202 static data relocations.
6203 * testsuite/Makefile.in: Regnerate.
6204 * testsuite/arm_unaligned_reloc.{s,sh}: New files.
6205
6206 2011-07-05 Ian Lance Taylor <iant@google.com>
6207
6208 PR gold/12392
6209 * i386.cc (Target_i386::do_finalize_sections): Define __rel_iplt
6210 symbols if necessary.
6211 * x86_64.cc (Target_x86_64::do_finalize_sections): Likewise.
6212
6213 2011-07-05 Ian Lance Taylor <iant@google.com>
6214
6215 PR gold/12952
6216 * resolve.cc (Symbol::override_base_with_special): Simply override
6217 version with special symbol version, ignoring previous version.
6218
6219 2011-07-05 Ian Lance Taylor <iant@google.com>
6220
6221 * object.cc (Sized_relobj_file::include_section_group): Add
6222 information to comment about signature location.
6223
6224 2011-07-02 Ian Lance Taylor <iant@google.com>
6225
6226 PR gold/12957
6227 * options.h (class General_options): Add -f and -F.
6228 * options.cc (General_options::finalize): Fatal error if -f/-F
6229 are used without -shared.
6230 * layout.cc (Layout::finish_dynamic_section): Implement -f/-F.
6231
6232 2011-07-02 Ian Lance Taylor <iant@google.com>
6233
6234 * dirsearch.cc (Dir_cache::read_files): Ignore ENOTDIR errors.
6235
6236 2011-07-01 Ian Lance Taylor <iant@google.com>
6237
6238 PR gold/12525
6239 PR gold/12952
6240 * resolve.cc (Symbol::override_base_with_special): Don't override
6241 the version if the overriding symbol has a different name.
6242 * dynobj.cc (Versions::add_def): Add dynpool parameter. Change
6243 all callers. If we give an error about an undefined version,
6244 define the base version if necessary.
6245 * dynobj.h (class Versions): Update declaration.
6246 * testsuite/weak_alias_test_5.cc: New file.
6247 * testsuite/weak_alias_test.script: New file.
6248 * testsuite/weak_alias_test_main.cc: Check that versioned_symbol
6249 and versioned_alias have the right value, and call t2.
6250 * testsuite/Makefile.am (weak_alias_test_DEPENDENCIES): Add
6251 weak_alias_test_5.so.
6252 (weak_alias_test_LDADD): Likewise.
6253 (weak_alias_test_5_pic.o, weak_alias_test_5.so): New targets.
6254 * testsuite/Makefile.in: Rebuild.
6255
6256 2011-07-01 Ian Lance Taylor <iant@google.com>
6257
6258 PR gold/12525
6259 * options.h (class General_options): Support -z notext.
6260 * testsuite/Makefile.am (two_file_shared_1_nonpic.so): Use
6261 -Wl,-z,notext.
6262 (two_file_shared_nonpic.so): Likewise.
6263 (two_file_shared_mixed.so): Likewise.
6264 (two_file_shared_mixed_1.so): Likewise.
6265 (weak_undef_lib_nonpic.so): Likewise.
6266 (alt/weak_undef_lib_nonpic.so): Likewise.
6267 (tls_test_shared_nonpic.so): Likewise.
6268 * testsuite/Makefile.in: Rebuild.
6269
6270 2011-07-01 Ian Lance Taylor <iant@google.com>
6271
6272 PR gold/12525
6273 * configure.ac: Test whether static linking works, setting
6274 the automake conditional HAVE_STATIC.
6275 * testsuite/Makefile.am: Disable tests using -static if
6276 HAVE_STATIC is not true.
6277 * configure, testsuite/Makefile.in: Rebuild.
6278
6279 2011-07-01 Ian Lance Taylor <iant@google.com>
6280
6281 PR gold/12525
6282 * ehframe.cc (Eh_frame_hdr::get_fde_pc): Handle DW_EH_PE_datarel.
6283 Assert if we see DW_EH_PE_indirect.
6284 * target.h (Target::ehframe_datarel_base): New function.
6285 (Target::do_ehframe_datarel_base): New target function.
6286 * i386.cc (Target_i386::do_ehframe_datarel_base): New function.
6287 * x86_64.cc (Target_x86_64::do_ehframe_datarel_base): New
6288 function.
6289
6290 2011-07-01 Ian Lance Taylor <iant@google.com>
6291
6292 PR gold/12571
6293 * options.h (class General_options): Add
6294 --ld-generated-unwind-info.
6295 * ehframe.cc (Fde::write): Add address parameter. Change all
6296 callers. If associated with PLT, fill in address and size.
6297 (Cie::set_output_offset): Only add merge mapping if there is an
6298 object.
6299 (Cie::write): Add address parameter. Change all callers.
6300 (Eh_frame::add_ehframe_for_plt): New function.
6301 * ehframe.h (class Fde): Update declarations. Move shndx_ and
6302 input_offset_ fields into union u_, with new plt field.
6303 (Fde::Fde): Adjust for new union field.
6304 (Fde::Fde) [Output_data version]: New constructor.
6305 (Fde::add_mapping): Only add merge mapping if there is an object.
6306 (class Cie): Update declarations.
6307 (class Eh_frame): Declare add_ehframe_for_plt.
6308 * layout.cc (Layout::layout_eh_frame): Break out code into
6309 make_eh_frame_section, and call it.
6310 (Layout::make_eh_frame_section): New function.
6311 (Layout::add_eh_frame_for_plt): New function.
6312 * layout.h (class Layout): Update declarations.
6313 * merge.cc (Merge_map::add_mapping): Add assertion.
6314 * i386.cc: Include "dwarf.h".
6315 (class Output_data_plt_i386): Make first_plt_entry,
6316 dyn_first_plt_entry, exec_plt_entry, and dyn_plt_entry const. Add
6317 plt_eh_frame_cie_size, plt_eh_frame_fde_size, plt_eh_frame_cie,
6318 and plt_eh_frame_fde.
6319 (Output_data_plt_i386::Output_data_plt_i386): Align to 16-byte
6320 boundary. Call add_eh_frame_for_plt if appropriate.
6321 * x86_64.cc: Include "dwarf.h".
6322 (class Output_data_plt_x86_64): Align to 16-byte boundary. Make
6323 first_plt_entry, plt_entry and tlsdesc_plt_entry const. Add
6324 plt_eh_frame_cie_size, plt_eh_frame_fde_size, plt_eh_frame_cie,
6325 and plt_eh_frame_fde.
6326 (Output_data_plt_x86_64::init): Call add_eh_frame_for_plt if
6327 appropriate.
6328
6329 2011-06-29 Ian Lance Taylor <iant@google.com>
6330
6331 PR gold/12629
6332 * object.cc (Sized_relobj_file::layout_section): Change shdr
6333 parameter to be const.
6334 (Sized_relobj_file::layout_eh_frame_section): New function, broken
6335 out of do_layout.
6336 (Sized_relobj_file::do_layout): Defer .eh_frame sections if
6337 appropriate. Call layout_eh_frame_section.
6338 (Sized_relobj_file::do_layout_deferred_sections): Handle .eh_frame
6339 sections.
6340 * object.h (class Sized_relobj_file): Update declarations.
6341
6342 2011-06-29 Ian Lance Taylor <iant@google.com>
6343
6344 PR gold/12652
6345 * script.cc (Token::integer_value): Accept trailing M/m/K/k
6346 modifier.
6347 (Lex::gather_token): Accept trailing M/m/K/k for integers.
6348
6349 2011-06-29 Ian Lance Taylor <iant@google.com>
6350
6351 PR gold/12675
6352 * object.cc (Sized_relobj_file::check_eh_frame_flags): Check for
6353 SHT_X86_64_UNWIND.
6354 * layout.cc (Layout::layout_eh_frame): Likewise.
6355
6356 2011-06-29 Ian Lance Taylor <iant@google.com>
6357
6358 PR gold/12695
6359 * layout.cc (Layout::symtab_section_shndx): New function.
6360 * layout.h (class Layout): Declare symtab_section_shndx.
6361 * output.cc (Output_section::write_header): Call it.
6362
6363 2011-06-29 Ian Lance Taylor <iant@google.com>
6364
6365 PR gold/12818
6366 * symtab.cc (Symbol::should_add_dynsym_entry): Don't add undefined
6367 symbols which are not used in a relocation.
6368
6369 2011-06-28 Ian Lance Taylor <iant@google.com>
6370
6371 PR gold/12898
6372 * layout.cc (Layout::segment_precedes): Don't crash if a linker
6373 script create indistinguishable segments.
6374 (Layout::set_segment_offsets): Use stable_sort when sorting
6375 segments. Pass this to Compare_segments constructor.
6376 * layout.h (class Layout): Make segment_precedes non-static.
6377 (class Compare_segments): Change from struct to class. Add
6378 layout_ field. Add constructor.
6379 * script-sections.cc
6380 (Script_sections::attach_sections_using_phdrs_clause): Rename
6381 local orphan to is_orphan. Don't report failure to put empty
6382 section in segment. On attachment failure, report name of
6383 section, and attach to first PT_LOAD segment.
6384
6385 2011-06-28 Ian Lance Taylor <iant@google.com>
6386
6387 PR gold/12934
6388 * target-select.cc (Target_selector::Target_selector): Add
6389 emulation parameter. Change all callers.
6390 (select_target_by_bfd_name): Rename from select_target_by_name.
6391 Change all callers.
6392 (select_target_by_emulation): New function.
6393 (supported_emulation_names): New function.
6394 * target-select.h (class Target_selector): Add emulation_ field.
6395 Update declarations.
6396 (Target_selector::recognize_by_bfd_name): Rename from
6397 recognize_by_name. Change all callers.
6398 (Target_selector::supported_bfd_names): Rename from
6399 supported_names. Change all callers.
6400 (Target_selector::recognize_by_emulation): New function.
6401 (Target_selector::supported_emulations): New function.
6402 (Target_selector::emulation): New function.
6403 (Target_selector::do_recognize_by_bfd_name): Rename from
6404 do_recognize_by_name. Change all callers.
6405 (Target_selector::do_supported_bfd_names): Rename from
6406 do_supported_names. Change all callers.
6407 (Target_selector::do_recognize_by_emulation): New function.
6408 (Target_selector::do_supported_emulations): New function.
6409 (select_target_by_bfd_name): Change name in declaration.
6410 (select_target_by_emulation): Declare.
6411 (supported_emulation_names): Declare.
6412 * parameters.cc (parameters_force_valid_target): Try to find
6413 target based on emulation from -m option.
6414 * options.h (class General_options): Change doc string for -m.
6415 * options.cc (help): Print emulations.
6416 (General_options::parse_V): Likewise.
6417 * freebsd.h (Target_selector_freebsd::Target_selector_freebsd):
6418 Add emulation parameter. Change all callers.
6419
6420 2011-06-28 Ian Lance Taylor <iant@google.com>
6421
6422 * target.h (class Target): Add osabi_ field.
6423 (Target::osabi): New function.
6424 (Target::set_osabi): New function.
6425 (Target::Target): Initialize osabi_.
6426 (Target::do_adjust_elf_header): Make pure virtual.
6427 (Sized_target::do_adjust_elf_header): Declare.
6428 * target.cc (Sized_target::do_adjust_elf_header): New function.
6429 (class Sized_target): Instantiate all versions.
6430 * freebsd.h (class Target_freebsd): Remove.
6431 (Target_selector_freebsd::do_recognize): Call set_osabi on
6432 Target.
6433 (Target_selector_freebsd::do_recognize_by_name): Likewise.
6434 (Target_selector_freebsd::set_osabi): Remove.
6435 * i386.cc (class Target_i386): Inherit from Sized_target rather
6436 than Target_freebsd.
6437 * x86_64.cc (class Target_x86_64): Likewise.
6438
6439 2011-06-28 Ian Lance Taylor <iant@google.com>
6440
6441 * target.h (Target::can_check_for_function_pointers): Rewrite.
6442 Make non-virtual.
6443 (Target::can_icf_inline_merge_sections): Likewise.
6444 (Target::section_may_have_icf_unsafe_poineters): Likewise.
6445 (Target::Target_info): Add can_icf_inline_merge_sections field.
6446 (Target::do_can_check_for_function_pointers): New virtual
6447 function.
6448 (Target::do_section_may_have_icf_unsafe_pointers): Likewise.
6449 * arm.cc (Target_arm::do_can_check_for_function_pointers): Rename
6450 from can_check_for_function_pointers, move in file.
6451 (Target_arm::do_section_may_have_icf_unsafe_pointers): Rename from
6452 section_may_have_icf_unsafe_poineters, move in file.
6453 (Target_arm::arm_info): Initialize can_icf_inline_merge_sections.
6454 * i386.cc (Target_i386::do_can_check_for_function_pointers):
6455 Rename from can_check_for_function_pointers, move in file.
6456 (Target_i386::can_icf_inline_merge_sections): Remove.
6457 (Target_i386::i386_info): Initialize
6458 can_icf_inline_merge_sections.
6459 * powerpc.cc (Target_powerpc::powerpc_info) [all versions]:
6460 Initialize can_icf_inline_merge_sections.
6461 * sparc.cc (Target_sparc::sparc_info) [both version]: Likewise.
6462 * x86_64.cc (Target_x86_64::do_can_check_for_function_pointers):
6463 Rename from can_check_for_function_pointers, move in file.
6464 (Target_x86_64::can_icf_inline_merge_sections): Remove.
6465 (Target_x86_64::x86_64_info): Initialize
6466 can_icf_inline_merge_sections.
6467 * testsuite/testfile.cc (Target_test::test_target_info):
6468 Likewise.
6469 * icf.cc (get_section_contents): Correct formatting.
6470
6471 2011-06-27 Ian Lance Taylor <iant@google.com>
6472
6473 * symtab.cc (Symbol::versioned_name): New function.
6474 (Symbol_table::add_to_final_symtab): Use versioned_name when
6475 appropriate.
6476 (Symbol_table::sized_write_symbol): Likewise.
6477 * symtab.h (class Symbol): Declare versioned_name.
6478 * stringpool.h (class Stringpool_template): Add variant of add
6479 which takes a std::basic_string.
6480 * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_12.
6481 (ver_test_12_SOURCES, ver_test_12_DEPENDENCIES): New variables.
6482 (ver_test_12_LDFLAGS, ver_test_12_LDADD): New variables.
6483 (ver_test_12.o): New target.
6484 * testsuite/Makefile.in: Rebuild.
6485
6486 2011-06-27 Doug Kwan <dougkwan@google.com>
6487
6488 * arm.cc (Arm_relocate_functions::thm_jump8,
6489 Arm_relocate_functions::thm_jump11): Use a wider signed
6490 type to compute offset.
6491 * testsuite/Makefile.am: Add new tests arm_thm_jump11 and
6492 arm_thm_jump8.
6493 * testsuite/Makefile.in: Regenerate.
6494 * testsuite/arm_branch_in_range.sh: Check test results of
6495 arm_thm_jump11 and arm_thm_jump8.
6496 * testsuite/arm_thm_jump11.s: New test source file.
6497 * testsuite/arm_thm_jump11.t: New linker script.
6498 * testsuite/arm_thm_jump8.s: New test source file.
6499 * testsuite/arm_thm_jump8.t: New linker script.
6500
6501 2011-06-24 Ian Lance Taylor <iant@google.com>
6502
6503 * layout.cc: Include "object.h".
6504 (ctors_sections_in_init_array): New static variable.
6505 (Layout::is_ctors_in_init_array): New function.
6506 (Layout::layout): Add entry to ctors_sections_in_init_array if
6507 appropriate.
6508 * layout.h (class Layout): Declare is_ctors_in_init_array.
6509 * reloc.cc (Sized_relobj_file::do_relocate): Call reverse_words if
6510 is_ctors_reverse_view is set.
6511 (Sized_relobj_file::write_sections): Add layout parameter. Change
6512 all callers. Set is_ctors_reverse_view field of View_size.
6513 (Sized_relobj_file::reverse_words): New function.
6514 * object.h (Sized_relobj_file::View_size): Add
6515 is_ctors_reverse_view field.
6516 (class Sized_relobj_file): Update declarations.
6517 * testsuite/initpri3.c: New test.
6518 * testsuite/Makefile.am: (check_PROGRAMS): Add initpri3a and
6519 initpri3b.
6520 (initpri3a_SOURCES, initpri3a_DEPENDENCIES): New variables.
6521 (initpri3a_LDFLAGS, initpri3a_LDADD): New variables.
6522 (initpri3b_SOURCES, initpri3b_DEPENDENCIES): New variables.
6523 (initpri3b_LDFLAGS, initpri3b_LDADD): New variables.
6524 * testsuite/Makefile.in: Rebuild.
6525
6526 2011-06-24 Cary Coutant <ccoutant@google.com>
6527
6528 * testsuite/Makefile.am: Add in-tree assembler to gcctestdir.
6529 (debug_msg_cdebug.o, odr_violation1_cdebug.o, odr_violation2_cdebug.o)
6530 (debug_msg_cdebug.err): New targets.
6531 * testsuite/Makefile.in: Regenerate.
6532 * testsuite/debug_msg.sh: Check output of link with compressed debug.
6533 Fix checks for link with shared library.
6534
6535 2011-06-24 Doug Kwan <dougkwan@google.com>
6536
6537 * arm.cc (Arm_output_section::append_text_sections_to_list): Do not
6538 skip empty text sections.
6539 * testsuite/arm_exidx_test.s: Test handling of an empty text section.
6540
6541 2011-06-22 Ian Lance Taylor <iant@google.com>
6542
6543 PR gold/12910
6544 * options.h (class General_options): Add --ctors-in-init-array.
6545 * layout.cc (Layout::get_output_section): Treat SHT_INIT_ARRAY and
6546 friends as SHT_PROGBITS for merging sections.
6547 (Layout::layout): Remove special handling of .init_array and
6548 friends. Don't sort if doing relocatable link. Sort for .ctors
6549 and .dtors if ctors_in_init_array.
6550 (Layout::make_output_section): Force correct section types for
6551 .init_array and friends. Don't sort if doing relocatable link,
6552 Don't sort .ctors and .dtors if ctors_in_init_array.
6553 (Layout::section_name_mapping): Remove .ctors. and .dtorso.
6554 (Layout::output_section_name): Add relobj parameter. Change all
6555 callers. Handle .ctors. and .dtors. in code rather than table.
6556 Handle .ctors and .dtors if ctors_in_init_array.
6557 (Layout::match_file_name): New function, moved from output.cc.
6558 * layout.h (class Layout): Update declarations.
6559 * output.cc: Include "layout.h".
6560 (Input_section_sort_entry::get_priority): New function.
6561 (Input_section_sort_entry::match_file_name): Just call
6562 Layout::match_file_name.
6563 (Output_section::Input_section_sort_init_fini_compare::operator()):
6564 Handle .ctors and .dtors. Sort by explicit priority rather than
6565 by name.
6566 * configure.ac: Remove CONSTRUCTOR_PRIORITY test and conditional.
6567 * testsuite/initpri2.c: New test.
6568 * testsuite/Makefile.am: Don't test CONSTRUCTOR_PRIORITY.
6569 (check_PROGRAMS): Add initpri2.
6570 (initpri2_SOURCES, initpri2_DEPENDENCIES): New variables.
6571 (initpri2_LDFLAGS, initpri2_LDADD): New variables.
6572 * configure, testsuite/Makefile.in: Rebuild.
6573
6574 2011-06-19 Ian Lance Taylor <iant@google.com>
6575
6576 PR gold/12880
6577 * layout.cc (Layout::attach_allocated_section_to_segment): Add a
6578 .interp section to a PT_INTERP segment even if we have seen a
6579 --dynamic-linker option. Don't do it if we have seen a PHDRS
6580 clause in a linker script.
6581 (Layout::finalize): Don't create a .interp section if we've
6582 already create a PT_INTERP segment.
6583 (Layout::create_interp): Always call choose_output_section (revert
6584 patch of 2011-06-17). Don't create PT_INTERP segment.
6585 * script-sections.cc
6586 (Script_sections::create_note_and_tls_segments): Add a .interp
6587 section to a PT_INTERP segment even if we have seen a
6588 --dynamic-linker option.
6589
6590 2011-06-18 Ian Lance Taylor <iant@google.com>
6591
6592 * layout.cc (Layout::finish_dynamic_section): Don't set DT_TEXTREL
6593 merely because a non-PT_LOAD segment has a dynamic reloc.
6594
6595 2011-06-18 Ian Lance Taylor <iant@google.com>
6596
6597 * layout.cc (Layout::finish_dynamic_section): Don't create
6598 DT_FLAGS entry if not needed.
6599
6600 2011-06-18 Ian Lance Taylor <iant@google.com>
6601
6602 PR gold/12745
6603 * layout.cc (Layout::layout_eh_frame): Correct handling of
6604 writable .eh_frame section.
6605
6606 2011-06-17 Ian Lance Taylor <iant@google.com>
6607
6608 PR gold/12893
6609 * resolve.cc (Symbol_table::resolve): Don't give an error if a
6610 symbol is redefined with the exact same object and value.
6611
6612 2011-06-17 Ian Lance Taylor <iant@google.com>
6613
6614 PR gold/12880
6615 * layout.h (class Layout): Add interp_segment_ field.
6616 * layout.cc (Layout::Layout): Initialize interp_segment_ field.
6617 (Layout::attach_allocated_section_to_segment): If making shared
6618 library, put .interp section in PT_INTERP segment.
6619 (Layout::finalize): Also call create_interp if -dynamic-linker
6620 option was used.
6621 (Layout::create_interp): Assert that there is no PT_INTERP
6622 segment. If not using a SECTIONS clause, use make_output_section.
6623 (Layout::make_output_segment): Set interp_segment_ if PT_INTERP.
6624 * script-sections.cc
6625 (Script_sections::create_note_and_tls_segments): If making shared
6626 library, put .interp section in PT_INTERP segment.
6627
6628 2011-06-17 Ian Lance Taylor <iant@google.com>
6629
6630 * object.cc (Sized_relobj_file::do_layout): Keep warning sections
6631 when making a shared library.
6632
6633 2011-06-17 Ian Lance Taylor <iant@google.com>
6634
6635 * x86_64.cc (Target_x86_64::Scan::check_non_pic): Add gsym
6636 parameter. Change all callers. Don't issue warning about PC32
6637 against locally defined symbol.
6638
6639 2011-06-16 Ian Lance Taylor <iant@google.com>
6640
6641 * symtab.cc (Warnings::issue_warning): Don't warn if relocation
6642 occurs in same object.
6643
6644 2011-06-14 Alan Modra <amodra@gmail.com>
6645
6646 * po/POTFILES.in: Regenerate.
6647
6648 2011-06-09 Ian Lance Taylor <iant@google.com>
6649
6650 * script-sections.cc
6651 (Orphan_output_section::set_section_addresses): For a relocatable
6652 link set address to 0.
6653
6654 2011-06-09 Cary Coutant <ccoutant@google.com>
6655
6656 PR gold/12804
6657 * gold/gold.cc (queue_initial_tasks): Warn if --incremental is
6658 used with --compress-debug-sections.
6659 * gold/object.cc (Sized_relobj_file::do_layout): Report
6660 uncompressed size of compressed input sections.
6661
6662 2011-06-08 Cary Coutant <ccoutant@google.com>
6663
6664 PR gold/12804
6665 * testsuite/two_file_test_2_v1.cc: Change initialization of
6666 v2 to keep it in .data.
6667
6668 2011-06-07 Cary Coutant <ccoutant@google.com>
6669
6670 * common.cc (Symbol_table::do_allocate_commons_list): Call
6671 gold_fallback.
6672 * errors.cc (Errors::fatal): Adjust call to gold_exit.
6673 (Errors::fallback): New function.
6674 (gold_fallback): New function.
6675 * errors.h (Errors::fallback): New function.
6676 * gold.cc (gold_exit): Change status parameter to enum; adjust
6677 all callers.
6678 (queue_initial_tasks): Call gold_fallback.
6679 * gold.h: Include cstdlib.
6680 (Exit_status): New enum type.
6681 (gold_exit): Change status parameter to enum.
6682 (gold_fallback): New function.
6683 * layout.cc (Layout::set_section_offsets): Call gold_fallback.
6684 (Layout::create_symtab_sections): Likewise.
6685 (Layout::create_shdrs): Likewise.
6686 * main.cc (main): Adjust call to gold_exit.
6687 * output.cc (Output_data_got::add_got_entry): Call gold_fallback.
6688 (Output_data_got::add_got_entry_pair): Likewise.
6689 (Output_section::add_input_section): Likewise.
6690 (Output_section::add_output_section_data): Likewise.
6691 (Output_segment::set_section_list_addresses): Likewise.
6692 * x86_64.cc (Output_data_plt_x86_64::add_entry): Likewise.
6693
6694 2011-06-07 Cary Coutant <ccoutant@google.com>
6695
6696 * layout.cc (Layout::set_segment_offsets): Don't adjust layout
6697 for incremental links.
6698 * output.cc (Output_segment::set_section_list_addresses): Remove
6699 FIXME and test for TLS or BSS.
6700
6701 2011-06-07 Cary Coutant <ccoutant@google.com>
6702
6703 * testsuite/Makefile.am: Add incremental_copy_test,
6704 incremental_common_test_1.
6705 * testsuite/Makefile.in: Regenerate.
6706 * testsuite/common_test_1_v1.c: New source file.
6707 * testsuite/common_test_1_v2.c: New source file.
6708 * testsuite/copy_test_v1.cc: New source file.
6709
6710 2011-06-07 Cary Coutant <ccoutant@google.com>
6711
6712 * common.cc (Symbol_table::do_allocate_commons_list): For incremental
6713 update, allocate common from bss section's free list.
6714 * incremental-dump.cc (dump_incremental_inputs): Print flag for
6715 linker-defined symbols.
6716 * incremental.cc (Sized_incremental_binary::do_process_got_plt):
6717 Skip GOT and PLT entries that are no longer referenced.
6718 (Output_section_incremental_inputs::write_info_blocks): Mark
6719 linker-defined symbols.
6720 (Sized_incr_relobj::do_add_symbols): Process linker-defined symbols.
6721 * output.cc (Output_section::allocate): New function.
6722 * output.h (Output_section::allocate): New function.
6723 * resolve.cc (Symbol_table::report_resolve_problem): Add case for
6724 linker-defined symbols.
6725 (Symbol::override_base_with_special): Copy is_predefined_ flag.
6726 * symtab.cc (Symbol::init_fields): Initialize is_predefined_ flag.
6727 (Symbol::init_base_output_data): Likewise.
6728 (Symbol::init_base_output_segment): Likewise.
6729 (Symbol::init_base_constant): Likewise.
6730 (Sized_symbol::init_output_data): Likewise.
6731 (Sized_symbol::init_output_segment): Likewise.
6732 (Sized_symbol::init_constant): Likewise.
6733 (Symbol_table::do_define_in_output_data): Likewise.
6734 (Symbol_table::do_define_in_output_segment): Likewise.
6735 (Symbol_table::do_define_as_constant): Likewise.
6736 * symtab.h (Symbol::is_predefined): New function.
6737 (Symbol::init_base_output_data): Add is_predefined parameter.
6738 (Symbol::init_base_output_segment): Likewise.
6739 (Symbol::init_base_constant): Likewise.
6740 (Symbol::is_predefined_): New data member.
6741 (Sized_symbol::init_output_data): Add is_predefined parameter.
6742 (Sized_symbol::init_output_segment): Likewise.
6743 (Sized_symbol::init_constant): Likewise.
6744 (enum Symbol_table::Defined): Add INCREMENTAL_BASE.
6745
6746 2011-06-07 Cary Coutant <ccoutant@google.com>
6747
6748 * copy-relocs.cc (Copy_relocs::copy_reloc): Call make_copy_reloc
6749 instead of emit_copy_reloc.
6750 (Copy_relocs::emit_copy_reloc): Refactor.
6751 (Copy_relocs::make_copy_reloc): New function.
6752 (Copy_relocs::add_copy_reloc): Remove.
6753 * copy-relocs.h (Copy_relocs::emit_copy_reloc): Move to public
6754 section.
6755 (Copy_relocs::make_copy_reloc): New function.
6756 (Copy_relocs::add_copy_reloc): Remove.
6757 * gold.cc (queue_middle_tasks): Emit old COPY relocations from
6758 unchanged input files.
6759 * incremental-dump.cc (dump_incremental_inputs): Print "COPY" flag.
6760 * incremental.cc (Sized_incremental_binary::do_reserve_layout):
6761 Reserve BSS space for COPY relocations.
6762 (Sized_incremental_binary::do_emit_copy_relocs): New function.
6763 (Output_section_incremental_inputs::write_info_blocks): Record
6764 whether a symbol is copied from a shared object.
6765 (Sized_incr_dynobj::do_add_symbols): Record COPY relocations.
6766 * incremental.h (enum Incremental_shlib_symbol_flags): New type.
6767 (INCREMENTAL_SHLIB_SYM_FLAGS_SHIFT): New constant.
6768 (Incremental_input_entry_reader::get_output_symbol_index): Add
6769 is_copy parameter.
6770 (Incremental_binary::emit_copy_relocs): New function.
6771 (Incremental_binary::do_emit_copy_relocs): New function.
6772 (Sized_incremental_binary::Sized_incremental_binary): Initialize
6773 new data member.
6774 (Sized_incremental_binary::add_copy_reloc): New function.
6775 (Sized_incremental_binary::do_emit_copy_relocs): New function.
6776 (Sized_incremental_binary::Copy_reloc): New struct.
6777 (Sized_incremental_binary::Copy_relocs): New typedef.
6778 (Sized_incremental_binary::copy_relocs_): New data member.
6779 * symtab.cc (Symbol_table::add_from_incrobj): Change return type.
6780 * symtab.h (Symbol_table::add_from_incrobj): Change return type.
6781 * target.h (Sized_target::emit_copy_reloc): New function.
6782 * x86_64.cc (Target_x86_64::emit_copy_reloc): New function.
6783
6784 2011-06-02 Cary Coutant <ccoutant@google.com>
6785
6786 PR gold/12163
6787 * gold/archive.cc (Archive::Archive): Initialize new data member.
6788 (Archive::include_all_members): Return if archive has already been
6789 included.
6790 * gold/archive.h (Archive::include_all_members_): New data member.
6791
6792 2011-06-02 Nick Clifton <nickc@redhat.com>
6793
6794 * dynobj.h: Fix spelling mistake in comment.
6795 * output.cc: Likewise.
6796
6797 2011-05-31 Doug Kwan <dougkwan@google.com>
6798 Asier Llano
6799
6800 PR gold/12826
6801 * arm.cc (Target_arm::tag_cpu_arch_combine): Fix handling of
6802 arch value that equals to elfcpp::MAX_TAG_CPU_ARCH.
6803 * testsuite/Makefile.am: (MOSTLYCLEANFILES): Clean up. Remove
6804 redundant arm_exidx_test.so.
6805 * testsuite/Makefile.in: Regenerate.
6806 (check_SCRIPTS): Add pr12826.sh
6807 (check_DATA): Add pr12826.stdout
6808 (pr12826.stdout, pr12826.so, pr12826_1.o, pr12826_2.o): New rules.
6809 * testsuite/pr12826.sh: New file.
6810 * testsuite/pr12826_1.s: Ditto.
6811 * testsuite/pr12826_1.s: Ditto.
6812
6813 2011-05-30 Ian Lance Taylor <iant@google.com>
6814
6815 * reloc.cc (Sized_relobj_file::do_read_relocs): Ignore empty reloc
6816 sections.
6817
6818 2011-05-29 Ian Lance Taylor <iant@google.com>
6819
6820 PR gold/12804
6821 * testsuite/Makefile.am: Use different file name for two_file_test
6822 temporary file for each incremental test.
6823 * testsuite/Makefile.in: Rebuild.
6824
6825 2011-05-29 Ian Lance Taylor <iant@google.com>
6826
6827 * binary.cc (Binary_to_elf::sized_convert): Don't crash if the
6828 binary input file is empty.
6829
6830 2011-05-27 Ian Lance Taylor <iant@google.com>
6831
6832 * testsuite/Makefile.am (ver_test_2.so): Use -Wl,-R,.
6833 (ver_test_9.so): Likewise.
6834 * testsuite/Makefile.in: Rebuild.
6835
6836 2011-05-26 Cary Coutant <ccoutant@google.com>
6837
6838 * incremental-dump.cc (dump_incremental_inputs): Print COMDAT groups.
6839 * incremental.cc (Incremental_inputs::report_input_section): Fix
6840 comment, indentation.
6841 (Incremental_inputs::report_comdat_group): New function.
6842 (Output_section_incremental_inputs::set_final_data_size): Adjust size
6843 of data for incremental input file entry.
6844 (Output_section_incremental_inputs::write_info_blocks): Write COMDAT
6845 group count, COMDAT group signatures.
6846 (Sized_incr_relobj::do_layout): Record kept COMDAT group info from
6847 an unchanged input file.
6848 * incremental.h (Incremental_object_entry::Incremental_object_entry):
6849 Initialize new data member.
6850 (Incremental_object_entry::add_comdat_group): New function.
6851 (Incremental_object_entry::get_comdat_group_count): New function.
6852 (Incremental_object_entry::get_comdat_signature_key): New function.
6853 (Incremental_object_entry::groups_): New data member.
6854 (Incremental_inputs::report_comdat_group): New function.
6855 (Incremental_input_entry_reader::get_symbol_offset): Adjust size of
6856 data for incremental input file entry.
6857 (Incremental_input_entry_reader::get_comdat_group_count): New function.
6858 (Incremental_input_entry_reader::get_input_section): Adjust size of
6859 data for incremental input file entry.
6860 (Incremental_input_entry_reader::get_global_symbol_reader): Likewise.
6861 (Incremental_input_entry_reader::get_comdat_group_signature): New
6862 function.
6863 * object.cc (Sized_relobj::include_section_group): Report kept
6864 COMDAT groups for incremental links.
6865
6866 2011-05-24 David Meyer <pdox@google.com>
6867
6868 * dirsearch.cc (Dirsearch::find): Replace n1 and n2 parameters
6869 with name parameter. Add found_name parameter.
6870 * fileread.cc (Input_file::find_file): Adjust code accordingly.
6871 * dirsearch.h (class Dirsearch): Update declaration.
6872
6873 2011-05-24 Ian Lance Taylor <iant@google.com>
6874
6875 * archive.cc (Library_base::should_include_member): Pull in object
6876 from archive if it defines the entry symbol.
6877 * parameters.cc (Parameters::entry): New function.
6878 * parameters.h (class Parameters): Declare entry.
6879 * output.h (class Output_file_header): Remove entry_ field.
6880 * output.cc (Output_file_header::Output_file_header): Remove entry
6881 parameter. Change all callers.
6882 (Output_file_header::entry): Use parameters->entry.
6883 * gold.cc (queue_middle_tasks): Likewise.
6884 * plugin.cc (Plugin_hook::run): Likewise.
6885
6886 2011-05-24 Cary Coutant <ccoutant@google.com>
6887
6888 * gold.cc (queue_initial_tasks): Pass incremental base filename
6889 to Output_file::open_base_file; don't print error message.
6890 * incremental-dump.cc (main): Adjust call to
6891 Output_file::open_for_modification.
6892 * incremental-dump.cc (main): Likewise.
6893 * incremental.cc (Incremental_inputs::report_command_line):
6894 Ignore --incremental-base option when comparing command lines.
6895 Ignore parameter when given as separate argument.
6896 * options.h (class General_options): Add --incremental-base.
6897 * output.cc (Output_file::Output_file):
6898 (Output_file::open_base_file): Add base_name and writable parameters;
6899 read base file into new file; print error message here.
6900 (Output_file::map_no_anonymous): Add writable parameter; adjust all
6901 callers.
6902 * output.h (Output_file::open_for_modification): Rename to...
6903 (Output_file::open_base_file): ...this; add base_name and
6904 writable parameters; adjust all callers.
6905 (Output_file::map_no_anonymous): Add writable parameter; adjust all
6906 callers.
6907 * testsuite/Makefile.am (incremental_test_4): Test
6908 --incremental-base.
6909 * testsuite/Makefile.in: Regenerate.
6910
6911 2011-05-24 Cary Coutant <ccoutant@google.com>
6912
6913 * testsuite/Makefile.am: Add incremental_test_2, incremental_test_3,
6914 incremental_test_4.
6915 * testsuite/Makefile.in: Regenerate.
6916 * testsuite/two_file_test_1_v1.cc: New test source file.
6917 * testsuite/two_file_test_1b_v1.cc: New test source file.
6918 * testsuite/two_file_test_2_v1.cc: New test source file.
6919
6920 2011-05-24 Cary Coutant <ccoutant@google.com>
6921
6922 * dynobj.h (Dynobj::do_dynobj): New function.
6923 * incremental-dump.cc (dump_incremental_inputs): Print as_needed
6924 flag and soname for shared objects.
6925 * incremental.cc (Incremental_inputs::report_object): Make
6926 either Incremental_object_entry or Incremental_dynobj_entry; add
6927 soname to string table.
6928 (Incremental_inputs::report_input_section): Add assertion.
6929 (Output_section_incremental_inputs::set_final_data_size): Adjust
6930 type of input file entry for shared libraries; adjust size of
6931 shared library info entry.
6932 (Output_section_incremental_inputs::write_input_files): Write
6933 as_needed flag for shared libraries.
6934 (Output_section_incremental_inputs::write_info_blocks): Adjust type
6935 of input file entry for shared libraries; write soname.
6936 (Sized_incr_dynobj::Sized_incr_dynobj): Read as_needed flag and
6937 soname from incremental info.
6938 * incremental.h (enum Incremental_input_flags): Add
6939 INCREMENTAL_INPUT_AS_NEEDED.
6940 (Incremental_input_entry::Incremental_input_entry): Initialize new
6941 data member.
6942 (Incremental_input_entry::set_as_needed): New function.
6943 (Incremental_input_entry::as_needed): New function.
6944 (Incremental_input_entry::do_dynobj_entry): New function.
6945 (Incremental_input_entry::as_needed_): New data member.
6946 (Incremental_object_entry::Incremental_object_entry): Don't check
6947 for shared library.
6948 (Incremental_object_entry::do_type): Likewise.
6949 (class Incremental_dynobj_entry): New class.
6950 (Incremental_input_entry_reader::as_needed): New function.
6951 (Incremental_input_entry_reader::get_soname): New function.
6952 (Incremental_input_entry_reader::get_global_symbol_count): Rewrite.
6953 (Incremental_input_entry_reader::get_output_symbol_index): Adjust
6954 size of shared library info entry.
6955 * layout.cc (Layout::finish_dynamic_section): Don't test for
6956 incremental link when adding DT_NEEDED entries.
6957 * object.h (Object::Object): Initialize new data member.
6958 (Object::dynobj): New function.
6959 (Object::set_as_needed): New function.
6960 (Object::as_needed): New function.
6961 (Object::do_dynobj): New function.
6962 (Object::as_needed_): New data member.
6963
6964 2011-05-24 Cary Coutant <ccoutant@google.com>
6965
6966 * incremental-dump.cc (dump_incremental_inputs): Print dynamic reloc
6967 info; adjust display of GOT entries.
6968 * incremental.cc (Sized_incremental_binary::setup_readers): Allocate
6969 vector of input objects; remove file_status_.
6970 (Sized_incremental_binary::do_reserve_layout): Remove file_status_.
6971 (Sized_incremental_binary::do_process_got_plt): Adjust calls to
6972 got_plt reader; call target hooks to reserve GOT entries.
6973 (Output_section_incremental_inputs::set_final_data_size): Adjust size
6974 of input file info header and GOT info entry.
6975 (Output_section_incremental_inputs::write_info_blocks): Write dynamic
6976 relocation info.
6977 (Got_plt_view_info::got_descriptor): Remove.
6978 (Got_plt_view_info::sym_index): New data member.
6979 (Got_plt_view_info::input_index): New data member.
6980 (Local_got_offset_visitor::visit): Write input file index.
6981 (Global_got_offset_visitor::visit): Write 0 for input file index.
6982 (Global_symbol_visitor_got_plt::operator()): Replace got_descriptor
6983 with sym_index and input_index.
6984 (Output_section_incremental_inputs::write_got_plt): Adjust size of
6985 incremental info GOT entry; replace got_descriptor with input_index.
6986 (Sized_relobj_incr::Sized_relobj_incr): Adjust initializers; record
6987 map from input file index to object.
6988 (Sized_relobj_incr::do_layout): Replace direct data member reference
6989 with accessor function.
6990 (Sized_relobj_incr::do_for_all_local_got_entries): Move to base class.
6991 * incremental.h (Incremental_input_entry_reader::get_symbol_offset):
6992 Adjust size of input file info header.
6993 (Incremental_input_entry_reader::get_first_dyn_reloc): New function.
6994 (Incremental_input_entry_reader::get_dyn_reloc_count): New function.
6995 (Incremental_input_entry_reader::get_input_section): Adjust size of
6996 input file info header.
6997 (Incremental_got_plt_reader::Incremental_got_plt_reader): Adjust size
6998 of incremental info GOT entry.
6999 (Incremental_got_plt_reader::get_got_desc): Remove.
7000 (Incremental_got_plt_reader::get_got_symndx): New function.
7001 (Incremental_got_plt_reader::get_got_input_index): New function.
7002 (Sized_incremental_binary::Sized_incremental_binary): Remove
7003 file_status_; add input_objects_.
7004 (Sized_incremental_binary::~Sized_incremental_binary): Remove.
7005 (Sized_incremental_binary::set_file_is_unchanged): Remove.
7006 (Sized_incremental_binary::file_is_unchanged): Remove.
7007 (Sized_incremental_binary::set_input_object): New function.
7008 (Sized_incremental_binary::input_object): New function.
7009 (Sized_incremental_binary::file_status_): Remove.
7010 (Sized_incremental_binary::input_objects_): New data member.
7011 (Sized_relobj_incr): Rename Sized_incr_relobj to this; adjust all
7012 references.
7013 (Sized_relobj_incr::invalid_address): Move to base class.
7014 (Sized_relobj_incr::is_output_section_offset_invalid): Move to base
7015 class.
7016 (Sized_relobj_incr::do_output_section_offset): Likewise.
7017 (Sized_relobj_incr::do_for_all_local_got_entries): Likewise.
7018 (Sized_relobj_incr::section_offsets_): Likewise.
7019 * object.cc (Sized_relobj::do_for_all_local_got_entries): New
7020 function.
7021 (Sized_relobj_file::Sized_relobj_file): Remove local_got_offsets_.
7022 (Sized_relobj_file::layout_section): Replace refs to section_offsets_
7023 with accessor function.
7024 (Sized_relobj_file::do_layout): Likewise.
7025 (Sized_relobj_file::do_layout_deferred_sections): Likewise.
7026 (Sized_relobj_file::do_for_all_local_got_entries): Move to base class.
7027 (Sized_relobj_file::compute_final_local_value): Replace refs to
7028 section_offsets_ with accessor function.
7029 (Sized_relobj_file::do_finalize_local_symbols): Likewise.
7030 * object.h (Relobj::Relobj): Initialize new data members.
7031 (Relobj::add_dyn_reloc): New function.
7032 (Relobj::first_dyn_reloc): New function.
7033 (Relobj::dyn_reloc_count): New function.
7034 (Relobj::first_dyn_reloc_): New data member.
7035 (Relobj::dyn_reloc_count_): New data member.
7036 (Sized_relobj): Rename Sized_relobj_base to this; adjust all
7037 references.
7038 (Sized_relobj::Address): New typedef.
7039 (Sized_relobj::invalid_address): Move here from child class.
7040 (Sized_relobj::Sized_relobj): Initialize new data members.
7041 (Sized_relobj::sized_relobj): New function.
7042 (Sized_relobj::is_output_section_offset_invalid): Move here from
7043 child class.
7044 (Sized_relobj::get_output_section_offset): Likewise.
7045 (Sized_relobj::local_has_got_offset): Likewise.
7046 (Sized_relobj::local_got_offset): Likewise.
7047 (Sized_relobj::set_local_got_offset): Likewise.
7048 (Sized_relobj::do_for_all_local_got_entries): Likewise.
7049 (Sized_relobj::clear_got_offsets): New function.
7050 (Sized_relobj::section_offsets): Move here from child class.
7051 (Sized_relobj::do_output_section_offset): Likewise.
7052 (Sized_relobj::do_set_section_offset): Likewise.
7053 (Sized_relobj::Local_got_offsets): Likewise.
7054 (Sized_relobj::local_got_offsets_): Likewise.
7055 (Sized_relobj::section_offsets_): Likewise.
7056 (Sized_relobj_file): Rename Sized_relobj to this; adjust all
7057 references.
7058 (Sized_relobj_file::is_output_section_offset_invalid): Move to base
7059 class.
7060 (Sized_relobj_file::sized_relobj): New function
7061 (Sized_relobj_file::local_has_got_offset): Move to base class.
7062 (Sized_relobj_file::local_got_offset): Likewise.
7063 (Sized_relobj_file::set_local_got_offset): Likewise.
7064 (Sized_relobj_file::get_output_section_offset): Likewise.
7065 (Sized_relobj_file::do_for_all_local_got_entries): Likewise.
7066 (Sized_relobj_file::do_output_section_offset): Likewise.
7067 (Sized_relobj_file::do_set_section_offset): Likewise.
7068 (Sized_relobj_file::Local_got_offsets): Likewise.
7069 (Sized_relobj_file::local_got_offsets_): Likewise.
7070 (Sized_relobj_file::section_offsets_): Likewise.
7071 * output.cc (Output_reloc::Output_reloc): Adjust type of relobj
7072 (all constructors).
7073 (set_needs_dynsym_index): Convert relobj to derived class pointer.
7074 (Output_reloc::get_symbol_index): Likewise.
7075 (Output_reloc::local_section_offset): Likewise.
7076 (Output_reloc::get_address): Likewise.
7077 (Output_reloc::symbol_value): Likewise.
7078 (Output_data_got::reserve_slot): Move to class definition.
7079 (Output_data_got::reserve_local): New function.
7080 (Output_data_got::reserve_slot_for_global): Remove.
7081 (Output_data_got::reserve_global): New function.
7082 * output.h (Output_reloc::Output_reloc): Adjust type of relobj
7083 (all constructors, two instantiations).
7084 (Output_reloc::get_relobj): New function (two instantiations).
7085 (Output_reloc::u1_.relobj, Output_reloc::u2_.relobj): Adjust type.
7086 (Output_data_reloc_base::add): Convert relobj to derived class pointer.
7087 (Output_data_reloc::add_global): Adjust type of relobj.
7088 (Output_data_reloc::add_global_relative): Likewise.
7089 (Output_data_reloc::add_symbolless_global_addend): Likewise.
7090 (Output_data_reloc::add_local): Likewise.
7091 (Output_data_reloc::add_local_relative): Likewise.
7092 (Output_data_reloc::add_symbolless_local_addend): Likewise.
7093 (Output_data_reloc::add_local_section): Likewise.
7094 (Output_data_reloc::add_output_section): Likewise.
7095 (Output_data_reloc::add_absolute): Likewise.
7096 (Output_data_reloc::add_target_specific): Likewise.
7097 (Output_data_got::reserve_slot): Move definition here.
7098 (Output_data_got::reserve_local): New function.
7099 (Output_data_got::reserve_global): New function.
7100 * reloc.cc (Sized_relobj_file::do_read_relocs): Replace refs to
7101 section_offsets_ with accessor function.
7102 (Sized_relobj_file::write_sections): Likewise.
7103 (Sized_relobj_file::do_relocate_sections): Likewise.
7104 * target.h (Sized_target::reserve_local_got_entry): New function.
7105 (Sized_target::reserve_global_got_entry): New function.
7106 * x86_64.cc (Target_x86_64::reserve_local_got_entry): New function.
7107 (Target_x86_64::reserve_global_got_entry): New function.
7108 (Target_x86_64::init_got_plt_for_update): Create rela_dyn section.
7109
7110 2011-05-23 Cary Coutant <ccoutant@google.com>
7111
7112 * gold.cc (queue_middle_tasks): Process existing GOT/PLT entries.
7113 * incremental-dump.cc (dump_incremental_inputs): Mask high-order
7114 bit when checking got_type.
7115 * incremental.cc (Sized_incremental_binary::setup_readers):
7116 Store symbol table and string table locations; initialize bit vector
7117 of file status flags.
7118 (Sized_incremental_binary::do_reserve_layout): Set bit flag for
7119 unchanged files.
7120 (Sized_incremental_binary::do_process_got_plt): New function.
7121 (Sized_incremental_binary::get_symtab_view): Use stored locations.
7122 (Output_section_incremental_inputs::set_final_data_size): Record
7123 file index for each input file.
7124 (Output_section_incremental_inputs::write_got_plt): Store file index
7125 instead of input entry offset for each GOT entry.
7126 * incremental.h
7127 (Incremental_input_entry::Incremental_input_entry): Initialize new
7128 data member.
7129 (Incremental_input_entry::set_offset): Store file index.
7130 (Incremental_input_entry::get_file_index): New function.
7131 (Incremental_input_entry::file_index_): New data member.
7132 (Incremental_binary::process_got_plt): New function.
7133 (Incremental_binary::do_process_got_plt): New function.
7134 (Sized_incremental_binary::Sized_incremental_binary): Initialize new
7135 data members.
7136 (Sized_incremental_binary::~Sized_incremental_binary): New destructor.
7137 (Sized_incremental_binary::set_file_is_unchanged): New function.
7138 (Sized_incremental_binary::file_is_unchanged): New function.
7139 (Sized_incremental_binary::do_process_got_plt): New function.
7140 (Sized_incremental_binary::file_status_): New data member.
7141 (Sized_incremental_binary::main_symtab_loc_): New data member.
7142 (Sized_incremental_binary::main_strtab_loc_): New data member.
7143 * output.cc (Output_data_got::Got_entry::write): Add case
7144 RESERVED_CODE.
7145 (Output_data_got::add_global): Call add_got_entry.
7146 (Output_data_got::add_global_plt): Likewise.
7147 (Output_data_got::add_global_with_rel): Likewise.
7148 (Output_data_got::add_global_with_rela): Likewise.
7149 (Output_data_got::add_global_pair_with_rel): Call add_got_entry_pair.
7150 (Output_data_got::add_global_pair_with_rela): Likewise.
7151 (Output_data_got::add_local): Call add_got_entry.
7152 (Output_data_got::add_local_plt): Likewise.
7153 (Output_data_got::add_local_with_rel): Likewise.
7154 (Output_data_got::add_local_with_rela): Likewise.
7155 (Output_data_got::add_local_pair_with_rel): Call add_got_entry_pair.
7156 (Output_data_got::add_local_pair_with_rela): Likewise.
7157 (Output_data_got::reserve_slot): New function.
7158 (Output_data_got::reserve_slot_for_global): New function.
7159 (Output_data_got::add_got_entry): New function.
7160 (Output_data_got::add_got_entry_pair): New function.
7161 (Output_section::add_output_section_data): Edit FIXME.
7162 * output.h
7163 (Output_section_data_build::Output_section_data_build): New
7164 constructor with size parameter.
7165 (Output_data_space::Output_data_space): Likewise.
7166 (Output_data_got::Output_data_got): Initialize new data member; new
7167 constructor with size parameter.
7168 (Output_data_got::add_constant): Call add_got_entry.
7169 (Output_data_got::reserve_slot): New function.
7170 (Output_data_got::reserve_slot_for_global): New function.
7171 (class Output_data_got::Got_entry): Add RESERVED_CODE.
7172 (Output_data_got::add_got_entry): New function.
7173 (Output_data_got::add_got_entry_pair): New function.
7174 (Output_data_got::free_list_): New data member.
7175 * target.h (Sized_target::init_got_plt_for_update): New function.
7176 (Sized_target::register_global_plt_entry): New function.
7177 * x86_64.cc (Output_data_plt_x86_64::Output_data_plt_x86_64):
7178 Initialize new data member; call init; add constructor with PLT count.
7179 (Output_data_plt_x86_64::init): New function.
7180 (Output_data_plt_x86_64::add_relocation): New function.
7181 (Output_data_plt_x86_64::reserve_slot): New function.
7182 (Output_data_plt_x86_64::free_list_): New data member.
7183 (Target_x86_64::init_got_plt_for_update): New function.
7184 (Target_x86_64::register_global_plt_entry): New function.
7185 (Output_data_plt_x86_64::add_entry): Allocate from free list for
7186 incremental updates.
7187 (Output_data_plt_x86_64::add_relocation): New function.
7188 * testsuite/object_unittest.cc (Object_test): Set default options.
7189
7190 2011-05-16 Ian Lance Taylor <iant@google.com>
7191
7192 * options.h (class General_options): Make -i a synonym for -r.
7193
7194 2011-05-16 Ian Lance Taylor <iant@google.com>
7195
7196 * testsuite/tls_test_main.cc: Use semaphores instead of mutexes.
7197
7198 2011-05-10 Cary Coutant <ccoutant@google.com>
7199
7200 * object.cc (Sized_relobj::do_count_local_symbols): Check for
7201 strip_all (-s).
7202
7203 2011-05-06 Ian Lance Taylor <iant@google.com>
7204
7205 * layout.cc (Layout::layout): If the output section flags change,
7206 update the ordering.
7207
7208 2011-04-25 Cary Coutant <ccoutant@google.com>
7209
7210 * incremental-dump.cc (dump_incremental_inputs): Print local
7211 symbol info for each input file.
7212 * incremental.cc
7213 (Output_section_incremental_inputs::set_final_data_size): Add local
7214 symbol info to input file entries in incremental info.
7215 (Output_section_incremental_inputs::write_info_blocks): Likewise.
7216 (Sized_incr_relobj::Sized_incr_relobj): Initialize new data members.
7217 (Sized_incr_relobj::do_add_symbols): Cosmetic change.
7218 (Sized_incr_relobj::do_count_local_symbols): Replace stub with
7219 implementation.
7220 (Sized_incr_relobj::do_finalize_local_symbols): Likewise.
7221 (Sized_incr_relobj::do_relocate): Write the local symbols.
7222 (Sized_incr_dynobj::do_add_symbols): Cosmetic change.
7223 * incremental.h (Incremental_inputs_reader::get_symbol_offset):
7224 Adjust size of input file header.
7225 (Incremental_inputs_reader::get_local_symbol_offset): New function.
7226 (Incremental_inputs_reader::get_local_symbol_count): New function.
7227 (Incremental_inputs_reader::get_input_section): Adjust size of input
7228 file header.
7229 (Incremental_inputs_reader::get_global_symbol_reader): Likewise.
7230 (Sized_incr_relobj::This): New typedef.
7231 (Sized_incr_relobj::sym_size): New const data member.
7232 (Sized_incr_relobj::Local_symbol): New struct.
7233 (Sized_incr_relobj::do_output_local_symbol_count): New function.
7234 (Sized_incr_relobj::do_local_symbol_offset): New function.
7235 (Sized_incr_relobj::local_symbol_count_): New data member.
7236 (Sized_incr_relobj::output_local_dynsym_count_): New data member.
7237 (Sized_incr_relobj::local_symbol_index_): New data member.
7238 (Sized_incr_relobj::local_symbol_offset_): New data member.
7239 (Sized_incr_relobj::local_dynsym_offset_): New data member.
7240 (Sized_incr_relobj::local_symbols_): New data member.
7241 * object.h (Relobj::output_local_symbol_count): New function.
7242 (Relobj::local_symbol_offset): New function.
7243 (Relobj::do_output_local_symbol_count): New function.
7244 (Relobj::do_local_symbol_offset): New function.
7245 (Sized_relobj::do_output_local_symbol_count): New function.
7246 (Sized_relobj::do_local_symbol_offset): New function.
7247
7248 2011-04-22 Vladimir Simonov <sv@sw.ru>
7249
7250 * descriptors.cc (set_close_on_exec): New function.
7251 (Descriptors::open): Use set_close_on_exec.
7252 * output.cc (S_ISLNK): Define if not defined.
7253
7254 2011-04-22 Cary Coutant <ccoutant@google.com>
7255
7256 * incremental.cc (Sized_incremental_binary::setup_readers): Allocate
7257 global symbol map.
7258 (Sized_incremental_binary::do_apply_incremental_relocs): New function.
7259 (Sized_incr_relobj::do_add_symbols): Add symbols to global symbol map.
7260 (Sized_incr_relobj::do_relocate): Remap section indices in incremental
7261 relocations.
7262 (Sized_incr_dynobj::do_add_symbols): Add symbols to global symbol map.
7263 (Sized_incr_dynobj::do_for_all_global_symbols): Remove FIXME.
7264 (Sized_incr_dynobj::do_for_all_local_got_entries): Likewise.
7265 * incremental.h
7266 (Incremental_inputs_reader::global_symbol_reader_at_offset): New
7267 function.
7268 (Incremental_binary::apply_incremental_relocs): New function.
7269 (Incremental_binary::do_apply_incremental_relocs): New function.
7270 (Sized_incremental_binary::Sized_incremental_binary): Initialize new
7271 data member.
7272 (Sized_incremental_binary::add_global_symbol): New function.
7273 (Sized_incremental_binary::global_symbol): New function.
7274 (Sized_incremental_binary::do_apply_incremental_relocs): New function.
7275 (Sized_incremental_binary::symbol_map_): New data member.
7276 * layout.cc (Layout_task_runner::run): Apply incremental relocations.
7277 * target.h (Sized_target::apply_relocation): New function.
7278 * target-reloc.h (apply_relocation): New function.
7279 * x86_64.cc (Target_x86_64::apply_relocation): New function.
7280
7281 2011-04-22 Doug Kwan <dougkwan@google.com>
7282
7283 * arm.cc (Arm_output_section::Arm_output_section): Set SHF_LINK_ORDER
7284 flag of a SHT_ARM_EXIDX section.
7285 * testsuite/Makefile.am (arm_exidx_test): New test rules.
7286 * testsuite/Makefile.in: Regenerate.
7287 * testsuite/arm_exidx_test.s: New file.
7288 * testsuite/arm_exidx_test.sh: Same.
7289
7290 2011-04-20 Cary Coutant <ccoutant@google.com>
7291
7292 PR gold/12689
7293 * archive.h (Incremental_archive_entry::Archive_member):
7294 Initialize arg_serial_ (second constructor).
7295
7296 2011-04-17 Ian Lance Taylor <iant@google.com>
7297
7298 * object.cc (Relocate_info::location): Simplify location string.
7299 * errors.cc (Errors::error_at_location): Don't print program
7300 name.
7301 (Errors::warning_at_location): Likewise.
7302 (Errors::undefined_symbol): Likewise.
7303 * testsuite/debug_msg.sh: Update accordingly.
7304
7305 2011-04-14 Cary Coutant <ccoutant@google.com>
7306
7307 * gold/layout.cc (Layout::symtab_section_offset): New function.
7308 * gold/layout.h (Layout::symtab_section_offset): New function.
7309 * gold/reloc.cc (Sized_relobj::do_relocate): Call it.
7310
7311 2011-04-12 Ian Lance Taylor <iant@google.com>
7312
7313 * configure.ac: Check for sys/mman.h and mmap. Check for mremap
7314 with MREMAP_MAYMOVE.
7315 * output.h (class Output_file): Add map_is_allocated_ field.
7316 * output.cc: Only #include <sys/mman.h> if it exists. If mmap is
7317 not available, provide stubs. If mremap is not available, #define
7318 it to gold_mremap.
7319 (MREMAP_MAYMOVE): Define if not defined.
7320 (Output_file::Output_file): Initialize map_is_allocated_.
7321 (Output_file::resize): Check map_is_allocated_.
7322 (Output_file::map_anonymous): If mmap fails, use malloc.
7323 (Output_file::unmap): Don't do anything for an anonymous map.
7324 * fileread.cc: Only #include <sys/mman.h> if it exists. If mmap
7325 is not available, provide stubs.
7326 (File_read::View::~View): Use free rather than delete[].
7327 (File_read::make_view): Use malloc rather than new[]. If mmap
7328 fails, use malloc.
7329 (File_read::find_or_make_view): Use malloc rather than new[].
7330 * gold.h: Remove HAVE_REMAP code.
7331 * mremap.c: #include <errno.h>. Only #include <sys/mman.h> if it
7332 exists. Rename mremap to gold_mremap. If mmap is not available
7333 don't do anything.
7334 * configure, config.in: Rebuild.
7335
7336 2011-04-11 Ian Lance Taylor <iant@google.com>
7337
7338 * incremental.cc (Sized_incr_relobj::do_add_symbols): Always
7339 initialize local variable v.
7340
7341 2011-04-11 Cary Coutant <ccoutant@google.com>
7342
7343 * archive.cc (Archive::include_member): Adjust call to
7344 report_object.
7345 (Add_archive_symbols::run): Track argument serial numbers.
7346 (Lib_group::include_member): Likewise.
7347 (Add_lib_group_symbols::run): Adjust call to report_archive_begin.
7348 * archive.h (Incremental_archive_entry::Archive_member):
7349 Initialize arg_serial_.
7350 (Archive_member::arg_serial_): New data member.
7351 * dynobj.cc (Dynobj::Dynobj): Allow input_file_ to be NULL.
7352 (Sized_dynobj::do_add_symbols): Track symbols when doing an
7353 incremental link.
7354 (Sized_dynobj::do_for_all_local_got_entries): New function.
7355 * dynobj.h: (Sized_dynobj::do_for_all_local_got_entries): New
7356 function.
7357 * fileread.cc (get_mtime): New function.
7358 * fileread.h (get_mtime): New function.
7359 * gold.cc (queue_initial_tasks): Check for incremental update.
7360 (process_incremental_input): New function.
7361 (queue_middle_tasks): Don't force valid target for incremental
7362 update.
7363 * incremental-dump.cc (find_input_containing_global): Adjust
7364 size of symbol info entry.
7365 (dump_incremental_inputs): Dump argument serial number and
7366 in_system_directory flag; bias shndx by 1; print symbol names
7367 when dumping per-file symbol lists; use new symbol info readers.
7368 * incremental.cc
7369 (Output_section_incremental_inputs:update_data_size): New function.
7370 (Sized_incremental_binary::setup_readers): Setup input readers
7371 for each input file; build maps for files added from libraries
7372 and scripts.
7373 (Sized_incremental_binary::check_input_args): New function.
7374 (Sized_incremental_binary::do_check_inputs): Build map of argument
7375 serial numbers to input arguments.
7376 (Sized_incremental_binary::do_file_has_changed): Rename
7377 do_file_is_unchanged to this; compare file modification times.
7378 (Sized_incremental_binary::do_init_layout): New function.
7379 (Sized_incremental_binary::do_reserve_layout): New function.
7380 (Sized_incremental_binary::do_get_input_reader): Remove.
7381 (Sized_incremental_binary::get_symtab_view): New function.
7382 (Incremental_checker::can_incrementally_link_output_file): Remove.
7383 (Incremental_inputs::report_command_line): Exclude --debug options.
7384 (Incremental_inputs::report_archive_begin): Add parameter; track
7385 argument serial numbers; don't put input file entry for archive
7386 before archive members.
7387 (Incremental_inputs::report_archive_end): Put input file entry
7388 for archive after archive members.
7389 (Incremental_inputs::report_object): Add parameter; track argument
7390 serial numbers and in_system_directory flag.
7391 (Incremental_inputs::report_script): Add parameter; track argument
7392 serial numbers.
7393 (Output_section_incremental_inputs::set_final_data_size): Adjust
7394 size of symbol info entry; check for forwarding symbols.
7395 (Output_section_incremental_inputs::write_input_files): Write
7396 in_system_directory flag and argument serial number.
7397 (Output_section_incremental_inputs::write_info_blocks): Map section
7398 indices between incremental info and original input file; store
7399 input section index for each symbol.
7400 (class Local_got_offset_visitor): Derive from Got_offset_list::Visitor;
7401 change operator() to visit().
7402 (class Global_got_offset_visitor): Likewise.
7403 (class Global_symbol_visitor_got_plt):
7404 (Output_section_incremental_inputs::write_got_plt): Use new visitor
7405 classes.
7406 (Sized_incr_relobj::Sized_incr_relobj): New constructor.
7407 (Sized_incr_relobj::do_read_symbols): New function.
7408 (Sized_incr_relobj::do_layout): New function.
7409 (Sized_incr_relobj::do_layout_deferred_sections): New function.
7410 (Sized_incr_relobj::do_add_symbols): New function.
7411 (Sized_incr_relobj::do_should_include_member): New function.
7412 (Sized_incr_relobj::do_for_all_global_symbols): New function.
7413 (Sized_incr_relobj::do_for_all_local_got_entries): New function.
7414 (Sized_incr_relobj::do_section_size): New function.
7415 (Sized_incr_relobj::do_section_name): New function.
7416 (Sized_incr_relobj::do_section_contents): New function.
7417 (Sized_incr_relobj::do_section_flags): New function.
7418 (Sized_incr_relobj::do_section_entsize): New function.
7419 (Sized_incr_relobj::do_section_address): New function.
7420 (Sized_incr_relobj::do_section_type): New function.
7421 (Sized_incr_relobj::do_section_link): New function.
7422 (Sized_incr_relobj::do_section_info): New function.
7423 (Sized_incr_relobj::do_section_addralign): New function.
7424 (Sized_incr_relobj::do_initialize_xindex): New function.
7425 (Sized_incr_relobj::do_get_global_symbol_counts): New function.
7426 (Sized_incr_relobj::do_read_relocs): New function.
7427 (Sized_incr_relobj::do_gc_process_relocs): New function.
7428 (Sized_incr_relobj::do_scan_relocs): New function.
7429 (Sized_incr_relobj::do_count_local_symbols): New function.
7430 (Sized_incr_relobj::do_finalize_local_symbols): New function.
7431 (Sized_incr_relobj::do_set_local_dynsym_indexes): New function.
7432 (Sized_incr_relobj::do_set_local_dynsym_offset): New function.
7433 (Sized_incr_relobj::do_relocate): New function.
7434 (Sized_incr_relobj::do_set_section_offset): New function.
7435 (Sized_incr_dynobj::Sized_incr_dynobj): New function.
7436 (Sized_incr_dynobj::do_read_symbols): New function.
7437 (Sized_incr_dynobj::do_layout): New function.
7438 (Sized_incr_dynobj::do_add_symbols): New function.
7439 (Sized_incr_dynobj::do_should_include_member): New function.
7440 (Sized_incr_dynobj::do_for_all_global_symbols): New function.
7441 (Sized_incr_dynobj::do_for_all_local_got_entries): New function.
7442 (Sized_incr_dynobj::do_section_size): New function.
7443 (Sized_incr_dynobj::do_section_name): New function.
7444 (Sized_incr_dynobj::do_section_contents): New function.
7445 (Sized_incr_dynobj::do_section_flags): New function.
7446 (Sized_incr_dynobj::do_section_entsize): New function.
7447 (Sized_incr_dynobj::do_section_address): New function.
7448 (Sized_incr_dynobj::do_section_type): New function.
7449 (Sized_incr_dynobj::do_section_link): New function.
7450 (Sized_incr_dynobj::do_section_info): New function.
7451 (Sized_incr_dynobj::do_section_addralign): New function.
7452 (Sized_incr_dynobj::do_initialize_xindex): New function.
7453 (Sized_incr_dynobj::do_get_global_symbol_counts): New function.
7454 (make_sized_incremental_object): New function.
7455 (Incremental_library::copy_unused_symbols): New function.
7456 (Incremental_library::do_for_all_unused_symbols): New function.
7457 * incremental.h (enum Incremental_input_flags): New type.
7458 (class Incremental_checker): Remove.
7459 (Incremental_input_entry::Incremental_input_entry): Add argument
7460 serial number.
7461 (Incremental_input_entry::arg_serial): New function.
7462 (Incremental_input_entry::set_is_in_system_directory): New function.
7463 (Incremental_input_entry::is_in_system_directory): New function.
7464 (Incremental_input_entry::arg_serial_): New data member.
7465 (Incremental_input_entry::is_in_system_directory_): New data member.
7466 (class Script_info): Move here from script.h.
7467 (Script_info::Script_info): Add filename parameter.
7468 (Script_info::filename): New function.
7469 (Script_info::filename_): New data member.
7470 (Incremental_script_entry::Incremental_script_entry): Add argument
7471 serial number.
7472 (Incremental_object_entry::Incremental_object_entry): Likewise.
7473 (Incremental_object_entry::add_input_section): Build list of input
7474 sections with map to original shndx.
7475 (Incremental_object_entry::get_input_section_index): New function.
7476 (Incremental_object_entry::shndx_): New data member.
7477 (Incremental_object_entry::name_key_): Rename; adjust all refs.
7478 (Incremental_object_entry::sh_size_): Rename; adjust all refs.
7479 (Incremental_archive_entry::Incremental_archive_entry): Add argument
7480 serial number.
7481 (Incremental_inputs::report_archive_begin): Likewise.
7482 (Incremental_inputs::report_object): Likewise.
7483 (Incremental_inputs::report_script): Likewise.
7484 (class Incremental_global_symbol_reader): New class.
7485 (Incremental_input_entry_reader::Incremental_input_entry_reader): Read
7486 and store flags and input file type.
7487 (Incremental_input_entry_reader::arg_serial): New function.
7488 (Incremental_input_entry_reader::type): Extract type from flags.
7489 (Incremental_input_entry_reader::is_in_system_directory): New function.
7490 (Incremental_input_entry_reader::get_input_section_count): Call
7491 accessor function for type.
7492 (Incremental_input_entry_reader::get_symbol_offset): Call accessor
7493 function for type; adjust size of global symbol entry.
7494 (Incremental_input_entry_reader::get_global_symbol_count): Call
7495 accessor function for type.
7496 (Incremental_input_entry_reader::get_object_count): Likewise.
7497 (Incremental_input_entry_reader::get_object_offset): Likewise.
7498 (Incremental_input_entry_reader::get_member_count): Likewise.
7499 (Incremental_input_entry_reader::get_unused_symbol_count): Likewise.
7500 (Incremental_input_entry_reader::get_member_offset): Likewise.
7501 (Incremental_input_entry_reader::get_unused_symbol): Likewise.
7502 (Incremental_input_entry_reader::Global_symbol_info): Remove.
7503 (Incremental_input_entry_reader::get_global_symbol_info): Remove.
7504 (Incremental_input_entry_reader::get_global_symbol_reader): New
7505 function.
7506 (Incremental_input_entry_reader::get_output_symbol_index): New
7507 function.
7508 (Incremental_input_entry_reader::type_): Remove.
7509 (Incremental_input_entry_reader::flags_): New data member.
7510 (Incremental_inputs_reader::input_file_offset): New function.
7511 (Incremental_inputs_reader::input_file_index): New function.
7512 (Incremental_inputs_reader::input_file): Call input_file_offset.
7513 (Incremental_inputs_reader::input_file_at_offset): New function.
7514 (Incremental_relocs_reader::get_r_type): Reformat.
7515 (Incremental_relocs_reader::get_r_shndx): Reformat.
7516 (Incremental_relocs_reader::get_r_offset): Reformat.
7517 (Incremental_relocs_reader::data): New function.
7518 (Incremental_binary::Incremental_binary): Initialize new data members.
7519 (Incremental_binary::check_inputs): Add cmdline parameter.
7520 (Incremental_binary::file_is_unchanged): Remove.
7521 (Input_reader::arg_serial): New function.
7522 (Input_reader::get_unused_symbol_count): New function.
7523 (Input_reader::get_unused_symbol): New function.
7524 (Input_reader::do_arg_serial): New function.
7525 (Input_reader::do_get_unused_symbol_count): New function.
7526 (Input_reader::do_get_unused_symbol): New function.
7527 (Incremental_binary::input_file_count): New function.
7528 (Incremental_binary::get_input_reader): Change signature to use
7529 index instead of filename.
7530 (Incremental_binary::file_has_changed): New function.
7531 (Incremental_binary::get_input_argument): New function.
7532 (Incremental_binary::get_library): New function.
7533 (Incremental_binary::get_script_info): New function.
7534 (Incremental_binary::init_layout): New function.
7535 (Incremental_binary::reserve_layout): New function.
7536 (Incremental_binary::output_file): New function.
7537 (Incremental_binary::do_check_inputs): New function.
7538 (Incremental_binary::do_file_is_unchanged): Remove.
7539 (Incremental_binary::do_file_has_changed): New function.
7540 (Incremental_binary::do_init_layout): New function.
7541 (Incremental_binary::do_reserve_layout): New function.
7542 (Incremental_binary::do_input_file_count): New function.
7543 (Incremental_binary::do_get_input_reader): Change signature.
7544 (Incremental_binary::input_args_map_): New data member.
7545 (Incremental_binary::library_map_): New data member.
7546 (Incremental_binary::script_map_): New data member.
7547 (Sized_incremental_binary::Sized_incremental_binary): Initialize
7548 new data members.
7549 (Sized_incremental_binary::output_section): New function.
7550 (Sized_incremental_binary::inputs_reader): Add const.
7551 (Sized_incremental_binary::symtab_reader): Add const.
7552 (Sized_incremental_binary::relocs_reader): Add const.
7553 (Sized_incremental_binary::got_plt_reader): Add const.
7554 (Sized_incremental_binary::get_symtab_view): New function.
7555 (Sized_incremental_binary::Inputs_reader): New typedef.
7556 (Sized_incremental_binary::Input_entry_reader): New typedef.
7557 (Sized_incremental_binary::do_check_inputs): Add cmdline parameter.
7558 (Sized_incremental_binary::do_file_is_unchanged): Remove.
7559 (Sized_incremental_binary::do_file_has_changed): New function.
7560 (Sized_incremental_binary::do_init_layout): New function.
7561 (Sized_incremental_binary::do_reserve_layout): New function.
7562 (Sized_input_reader::Inputs_reader): Remove.
7563 (Sized_input_reader::Input_entry_reader): Remove.
7564 (Sized_input_reader::do_arg_serial): New function.
7565 (Sized_input_reader::do_get_unused_symbol_count): New function.
7566 (Sized_input_reader::do_get_unused_symbol): New function.
7567 (Sized_incremental_binary::do_input_file_count): New function.
7568 (Sized_incremental_binary::do_get_input_reader): Change signature;
7569 use index instead of filename.
7570 (Sized_incremental_binary::section_map_): New data member.
7571 (Sized_incremental_binary::input_entry_readers_): New data member.
7572 (class Sized_incr_relobj): New class.
7573 (class Sized_incr_dynobj): New class.
7574 (make_sized_incremental_object): New function.
7575 (class Incremental_library): New class.
7576 * layout.cc (Free_list::num_lists): New static data member.
7577 (Free_list::num_nodes): New static data member.
7578 (Free_list::num_removes): New static data member.
7579 (Free_list::num_remove_visits): New static data member.
7580 (Free_list::num_allocates): New static data member.
7581 (Free_list::num_allocate_visits): New static data member.
7582 (Free_list::init): New function.
7583 (Free_list::remove): New function.
7584 (Free_list::allocate): New function.
7585 (Free_list::dump): New function.
7586 (Free_list::print_stats): New function.
7587 (Layout_task_runner::run): Resize output file for incremental updates.
7588 (Layout::Layout): Initialize new data members.
7589 (Layout::set_incremental_base): New function.
7590 (Layout::init_fixed_output_section): New function.
7591 (Layout::layout_eh_frame): Do not build .eh_frame_hdr section for
7592 incremental updates.
7593 (Layout::create_gold_note): Do not create gold note section for
7594 incremental updates.
7595 (Layout::set_segment_offsets): Do not recalculate RELRO alignment
7596 for incremental updates.
7597 (Layout::set_section_offsets): For incremental updates, allocate space
7598 from free list.
7599 (Layout::create_symtab_sections): Layout with offsets relative to
7600 start of section; for incremental updates, allocate space from free
7601 list.
7602 (Layout::create_shdrs): For incremental updates, allocate space from
7603 free list.
7604 (Layout::finish_dynamic_section): For incremental updates, do not
7605 check --as-needed (fixed in subsequent patch).
7606 * layout.h (class Free_list): New class.
7607 (Layout::set_incremental_base): New function.
7608 (Layout::incremental_base): New function.
7609 (Layout::init_fixed_output_section): New function.
7610 (Layout::allocate): New function.
7611 (Layout::incremental_base_): New data member.
7612 (Layout::free_list_): New data member.
7613 * main.cc (main): Print Free_list statistics.
7614 * object.cc (Relobj::finalize_incremental_relocs): Add
7615 clear_counts parameter; clear counts only when clear_counts is set.
7616 (Sized_relobj::Sized_relobj): Initialize new base class.
7617 (Sized_relobj::do_layout): Don't report special sections.
7618 (Sized_relobj::do_for_all_local_got_entries): New function.
7619 (Sized_relobj::write_local_symbols): Add symtab_off parameter; add
7620 symtab_off to all symbol table offsets.
7621 (Sized_relobj::do_get_global_symbol_counts): Add typename keyword.
7622 * object.h (class Got_offset_list): Move to top of file.
7623 (Object::Object): Allow case where input_file == NULL.
7624 (Object::~Object): Likewise.
7625 (Object::input_file): Assert that input_file != NULL.
7626 (Object::lock): Allow case where input_file == NULL.
7627 (Object::unlock): Likewise.
7628 (Object::is_locked): Likewise.
7629 (Object::token): Likewise.
7630 (Object::release): Likewise.
7631 (Object::is_incremental): New function.
7632 (Object::get_mtime): New function.
7633 (Object::for_all_local_got_entries): New function.
7634 (Object::clear_view_cache_marks): Allow case where input_file == NULL.
7635 (Object::set_is_in_system_directory): New function.
7636 (Object::is_in_system_directory): New function.
7637 (Object::do_is_incremental): New function.
7638 (Object::do_get_mtime): New function.
7639 (Object::do_for_all_local_got_entries): New function.
7640 (Object::is_in_system_directory_): New data member.
7641 (Relobj::finalize_incremental_relocs): Add clear_counts parameter.
7642 (class Sized_relobj_base): New class.
7643 (class Sized_relobj): Derive from Sized_relobj_base.
7644 (class Sized_relobj::Symbols): Redeclare from base class.
7645 (class Sized_relobj::local_got_offset_list): Remove.
7646 (class Sized_relobj::Output_sections): Redeclare from base class.
7647 (class Sized_relobj::do_for_all_local_got_entries): New function.
7648 (class Sized_relobj::write_local_symbols): Add offset parameter.
7649 (class Sized_relobj::local_symbol_offset_): Update comment.
7650 (class Sized_relobj::local_dynsym_offset_): Update comment.
7651 * options.cc (Input_arguments::add_file): Remove const.
7652 * options.h (Input_file_argument::Input_file_argument):
7653 Initialize arg_serial_ (all constructors).
7654 (Input_file_argument::set_arg_serial): New function.
7655 (Input_file_argument::arg_serial): New function.
7656 (Input_file_argument::arg_serial_): New data member.
7657 (Input_arguments::Input_arguments): Initialize file_count_.
7658 (Input_arguments::add_file): Remove const.
7659 (Input_arguments::number_of_input_files): New function.
7660 (Input_arguments::file_count_): New data member.
7661 (Command_line::number_of_input_files): Call
7662 Input_arguments::number_of_input_files.
7663 * output.cc (Output_segment_headers::Output_segment_headers):
7664 Set current size.
7665 (Output_section::Input_section::current_data_size): New function.
7666 (Output_section::Output_section): Initialize new data members.
7667 (Output_section::add_input_section): Don't do merge sections for
7668 an incremental link; allocate space from free list for an
7669 incremental update.
7670 (Output_section::add_output_section_data): Allocate space from
7671 free list for an incremental update.
7672 (Output_section::update_data_size): New function.
7673 (Output_section::set_fixed_layout): New function.
7674 (Output_section::reserve): New function.
7675 (Output_segment::set_section_addresses): Remove const.
7676 (Output_segment::set_section_list_addresses): Remove const; allocate
7677 space from free list for an incremental update.
7678 (Output_segment::set_offset): Adjust size of RELRO segment for an
7679 incremental update.
7680 * output.h (Output_data::current_data_size): Move here from
7681 child classes.
7682 (Output_data::pre_finalize_data_size): New function.
7683 (Output_data::update_data_size): New function.
7684 (Output_section_headers::update_data_size): new function.
7685 (Output_section_data_build::current_data_size): Move to Output_data.
7686 (Output_data_strtab::update_data_size): New function.
7687 (Output_section::current_data_size): Move to Output_data.
7688 (Output_section::set_fixed_layout): New function.
7689 (Output_section::has_fixed_layout): New function.
7690 (Output_section::reserve): New function.
7691 (Output_section::update_data_size): New function.
7692 (Output_section::has_fixed_layout_): New data member.
7693 (Output_section::free_list_): New data member.
7694 (Output_segment::set_section_addresses): Remove const.
7695 (Output_segment::set_section_list_addresses): Remove const.
7696 * plugin.cc (Sized_pluginobj::do_for_all_local_got_entries):
7697 New function.
7698 * plugin.h (Sized_pluginobj::do_for_all_local_got_entries):
7699 New function.
7700 * readsyms.cc (Read_symbols::do_read_symbols): Add library
7701 parameter when calling Add_symbols constructor; store argument
7702 serial number for members of a lib group.
7703 (Add_symbols::locks): Allow case where token == NULL.
7704 (Add_symbols::run): Report libraries denoted by --start-lib/--end-lib.
7705 (Read_member::~Read_member): New function.
7706 (Read_member::is_runnable): New function.
7707 (Read_member::locks): New function.
7708 (Read_member::run): New function.
7709 (Check_script::~Check_script): New function.
7710 (Check_script::is_runnable): New function.
7711 (Check_script::locks): New function.
7712 (Check_script::run): New function.
7713 (Check_library::~Check_library): New function.
7714 (Check_library::is_runnable): New function.
7715 (Check_library::locks): New function.
7716 (Check_library::run): New function.
7717 * readsyms.h (Add_symbols::Add_symbols): Add library parameter.
7718 (Add_symbols::library_): New data member.
7719 (class Read_member): New class.
7720 (class Check_script): New class.
7721 (class Check_library): New class.
7722 * reloc.cc (Read_relocs::is_runnable): Allow case where
7723 token == NULL.
7724 (Read_relocs::locks): Likewise.
7725 (Scan_relocs::locks): Likewise.
7726 (Relocate_task::locks): Likewise.
7727 (Sized_relobj::do_scan_relocs): Tell finalize_incremental_relocs
7728 to clear counters.
7729 (Sized_relobj::incremental_relocs_scan): Fix comment.
7730 (Sized_relobj::do_relocate): Pass output file offset to
7731 write_local_symbols.
7732 (Sized_relobj::incremental_relocs_write_reltype): Use reloc_size
7733 from class declaration.
7734 * script.cc (read_input_script): Allocate Script_info; pass
7735 argument serial number to report_script.
7736 * script.h (class Script_info): Move to incremental.h.
7737 * symtab.cc (Symbol_table::add_from_incrobj): New function.
7738 * symtab.h (Symbol_table::add_from_incrobj): New function.
7739 (Symbol_table::set_file_offset): New function.
7740
7741 2011-04-05 Cary Coutant <ccoutant@google.com>
7742
7743 * incremental-dump.cc (dump_incremental_inputs): Change signature
7744 to take a Sized_incremental_binary; change caller. Use readers
7745 in Sized_incremental_binary.
7746 * incremental.cc
7747 (Sized_incremental_binary::find_incremental_inputs_sections):
7748 Rename do_find_incremental_inputs_sections to this.
7749 (Sized_incremental_binary::setup_readers): New function.
7750 (Sized_incremental_binary::do_check_inputs): Check
7751 has_incremental_info_ flag; move setup code to setup_readers;
7752 use input readers.
7753 (Sized_incremental_binary::do_file_is_unchanged): New function.
7754 (Sized_incremental_binary::do_get_input_reader): New function.
7755 * incremental.h (class Incremental_binary): Move to end of file.
7756 (Incremental_binary::file_is_unchanged): New function.
7757 (Incremental_binary::do_file_is_unchanged): New function.
7758 (Incremental_binary::Input_reader): New class.
7759 (Incremental_binary::get_input_reader): New function.
7760 (class Sized_incremental_binary): Move to end of file.
7761 (Sized_incremental_binary::Sized_incremental_binary): Setup the
7762 input section reader classes.
7763 (Sized_incremental_binary::has_incremental_info): New function.
7764 (Sized_incremental_binary::inputs_reader): New function.
7765 (Sized_incremental_binary::symtab_reader): New function.
7766 (Sized_incremental_binary::relocs_reader): New function.
7767 (Sized_incremental_binary::got_plt_reader): New function.
7768 (Sized_incremental_binary::do_file_is_unchanged): New function.
7769 (Sized_incremental_binary::Sized_input_reader): New class.
7770 (Sized_incremental_binary::get_input_reader): New function.
7771 (Sized_incremental_binary::find_incremental_inputs_sections):
7772 Rename do_find_incremental_inputs_sections to this.
7773 (Sized_incremental_binary::setup_readers): New function.
7774 (Sized_incremental_binary::has_incremental_info_): New data member.
7775 (Sized_incremental_binary::inputs_reader_): New data member.
7776 (Sized_incremental_binary::symtab_reader_): New data member.
7777 (Sized_incremental_binary::relocs_reader_): New data member.
7778 (Sized_incremental_binary::got_plt_reader_): New data member.
7779 (Sized_incremental_binary::current_input_file_): New data member.
7780
7781 2011-04-05 Paul Pluzhnikov <ppluzhnikov@google.com>
7782
7783 PR gold/12640
7784 * dwarf_reader.cc (Sized_dwarf_line_info): Fix vector bounds
7785 violation.
7786
7787 2011-03-30 Cary Coutant <ccoutant@google.com>
7788
7789 * archive.cc (Archive::include_member): Adjust call to report_object.
7790 (Add_archive_symbols::run): Add script_info to call to
7791 report_archive_begin.
7792 (Lib_group::include_member): Adjust call to report_object.
7793 (Add_lib_group_symbols::run): Adjust call to report_object.
7794 * incremental-dump.cc (dump_incremental_inputs): Remove unnecessary
7795 blocks. Add object count for script input files.
7796 * incremental.cc (Incremental_inputs::report_archive_begin): Add
7797 script_info parameter; change all callers.
7798 (Incremental_inputs::report_object): Add script_info parameter;
7799 change all callers.
7800 (Incremental_inputs::report_script): Store backpointer to
7801 incremental info entry.
7802 (Output_section_incremental_inputs::set_final_data_size): Record
7803 additional information for scripts.
7804 (Output_section_incremental_inputs::write_info_blocks): Likewise.
7805 * incremental.h (Incremental_script_entry::add_object): New function.
7806 (Incremental_script_entry::get_object_count): New function.
7807 (Incremental_script_entry::get_object): New function.
7808 (Incremental_script_entry::objects_): New data member; adjust
7809 constructor.
7810 (Incremental_inputs::report_archive_begin): Add script_info parameter.
7811 (Incremental_inputs::report_object): Add script_info parameter.
7812 (Incremental_inputs_reader::get_object_count): New function.
7813 (Incremental_inputs_reader::get_object_offset): New function.
7814 * options.cc (Input_arguments::add_file): Return reference to
7815 new input argument.
7816 * options.h (Input_argument::set_script_info): New function.
7817 (Input_argument::script_info): New function.
7818 (Input_argument::script_info_): New data member; adjust all
7819 constructors.
7820 (Input_file_group::add_file): Return reference to new input argument.
7821 (Input_file_lib::add_file): Likewise.
7822 (Input_arguments::add_file): Likewise.
7823 * readsyms.cc (Add_symbols::run): Adjust call to report_object.
7824 * script.cc (Parser_closure::Parser_closure): Add script_info
7825 parameter; adjust all callers.
7826 (Parser_closure::script_info): New function.
7827 (Parser_closure::script_info_): New data member.
7828 (read_input_script): Report scripts earlier to incremental info.
7829 (script_add_file): Set script_info in Input_argument.
7830 (script_add_library): Likewise.
7831 * script.h (Script_options::Script_info): Rewrite class.
7832
7833 2011-03-29 Cary Coutant <ccoutant@google.com>
7834
7835 * archive.cc (Library_base::should_include_member): Move
7836 method here from class Archive.
7837 (Archive::Archive): Initialize base class.
7838 (Archive::should_include_member): Move to base class.
7839 (Archive::do_for_all_unused_symbols): New function.
7840 (Add_archive_symbols::run): Remove redundant access to
7841 incremental_inputs.
7842 (Lib_group::Lib_group): Initialize base class.
7843 (Lib_group::do_filename): New function.
7844 (Lib_group::include_member): Pass pointer to Lib_group to
7845 report_object.
7846 (Lib_group::do_for_all_unused_symbols): New function.
7847 (Add_lib_group_symbols::run): Report archive information for
7848 incremental links.
7849 * archive.h (class Library_base): New base class.
7850 (class Archive): Derive from Library_base.
7851 (Archive::filename): Move to base class.
7852 (Archive::set_incremental_info): Likewise.
7853 (Archive::incremental_info): Likewise.
7854 (Archive::Should_include): Likewise.
7855 (Archive::should_include_member): Likewise.
7856 (Archive::Armap_entry): Remove.
7857 (Archive::Unused_symbol_iterator): Remove.
7858 (Archive::unused_symbols_begin): Remove.
7859 (Archive::unused_symbols_end): Remove.
7860 (Archive::do_filename): New function.
7861 (Archive::do_get_mtime): New function.
7862 (Archive::do_for_all_unused_symbols): New function.
7863 (Archive::task_): Move to base class.
7864 (Archive::incremental_info_): Likewise.
7865 (class Lib_group): Derive from Library_base.
7866 (Lib_group::do_filename): New function.
7867 (Lib_group::do_get_mtime): New function.
7868 (Lib_group::do_for_all_unused_symbols): New function.
7869 (Lib_group::task_): Move to base class.
7870 * dynobj.cc (Sized_dynobj::do_for_all_global_symbols): New
7871 function.
7872 * dynobj.h (Sized_dynobj::do_for_all_global_symbols): New
7873 function.
7874 * incremental.cc (Incremental_inputs::report_archive_begin):
7875 Use Library_base; call library's get_mtime; add incremental inputs
7876 entry before members.
7877 (class Unused_symbol_visitor): New class.
7878 (Incremental_inputs::report_archive_end): Use Library_base; use
7879 visitor class to record unused symbols; don't add incremental inputs
7880 entry after members.
7881 (Incremental_inputs::report_object): Use Library_base.
7882 * incremental.h
7883 (Incremental_archive_entry::Incremental_archive_entry): Remove
7884 unused Archive parameter.
7885 (Incremental_inputs::report_archive_begin): Use Library_base.
7886 (Incremental_inputs::report_archive_end): Likewise.
7887 (Incremental_inputs::report_object): Likewise.
7888 * object.cc (Sized_relobj::do_for_all_global_symbols): New
7889 function.
7890 * object.h (Object::for_all_global_symbols): New function.
7891 (Object::do_for_all_global_symbols): New function.
7892 (Sized_relobj::do_for_all_global_symbols): New function.
7893 * plugin.cc (Sized_pluginobj::do_for_all_global_symbols): New
7894 function.
7895 * plugin.h (Sized_pluginobj::do_for_all_global_symbols): New
7896 function.
7897
7898 2011-03-27 Ian Lance Taylor <iant@google.com>
7899
7900 * archive.cc (Archive::interpret_header): Return -1 if something
7901 goes wrong. Change callers accordingly.
7902
7903 2011-03-25 Cary Coutant <ccoutant@google.com>
7904
7905 * testsuite/Makefile.am (final_layout.stdout): Use -n option with nm.
7906 * testsuite/Makefile.in: Regenerate.
7907
7908 2011-03-23 Rafael Ávila de Espíndola <respindola@mozilla.com>
7909
7910 * plugin.cc (get_view): New.
7911 (Plugin::load): Pass get_view to the plugin.
7912 (Plugin_manager::get_view): New.
7913
7914 2011-03-21 Ian Lance Taylor <iant@google.com>
7915
7916 * testsuite/final_layout.sh: Rewrite to not use dc.
7917 * testsuite/relro_test.sh: Fail if dc is not present.
7918
7919 2011-03-21 Sriraman Tallam <tmsriram@google.com>
7920
7921 * testsuite/icf_safe_so_test.sh: Add #!/bin/sh to start.
7922 Change == to -eq.
7923 * testsuite/icf_string_merge_test.sh: Add #!/bin/sh to start.
7924 * testsuite/icf_safe_test.sh: Add #!/bin/sh to start.
7925 Change == to -eq.
7926 * testsuite/icf_sht_rel_addend_test.sh: Add #!/bin/sh to start.
7927 * testsuite/icf_preemptible_functions_test.sh: Add #!/bin/sh to start.
7928
7929 2011-03-14 Ian Lance Taylor <iant@google.com>
7930
7931 * script-sections.cc (Sort_output_sections::script_compare):
7932 Rename from is_before, change return type.
7933 (Sort_output_sections::operator()): Adjust accordingly.
7934
7935 2011-03-11 Jeffrey Yasskin <jyasskin@google.com>
7936
7937 PR gold/12572
7938 * testsuite/odr_violation2.cc: Add comment to make all error line
7939 numbers double digits.
7940 * testsuite/debug_msg.sh: Adjust expected errors.
7941
7942 2011-03-09 Jeffrey Yasskin <jyasskin@google.com>
7943
7944 * dwarf_reader.cc (Sized_dwarf_line_info): Include all lines,
7945 but mark earlier ones as non-canonical
7946 (offset_to_iterator): Update search target and example
7947 (do_addr2line): Return extra lines in a vector*
7948 (format_file_lineno): Extract from do_addr2line
7949 (one_addr2line): Add vector* out-param
7950 * dwarf_reader.h (Offset_to_lineno_entry): New field recording
7951 when a lineno entry appeared last for its instruction
7952 (Dwarf_line_info): Add vector* out-param
7953 * object.cc (Relocate_info): Pass NULL for the vector* out-param
7954 * symtab.cc (Odr_violation_compare): Include the lineno in the
7955 comparison again.
7956 (linenos_from_loc): New. Combine the canonical line for an
7957 address with its other lines.
7958 (True_if_intersect): New. Helper functor to make
7959 std::set_intersection a query.
7960 (detect_odr_violations): Compare sets of lines instead of just
7961 one line for each function. This became less deterministic, but
7962 has fewer false positives.
7963 * symtab.h: Declarations.
7964 * testsuite/Makefile.am (odr_violation2.o): Compile with -O2 to
7965 mix an optimized and non-optimized object in the same binary
7966 (odr_violation2.so): Same.
7967 * testsuite/Makefile.in: Regenerate from Makefile.am.
7968 * testsuite/debug_msg.cc (main): Make OdrDerived classes.
7969 * testsuite/debug_msg.sh: Update line numbers and add
7970 assertions.
7971 * testsuite/odr_violation1.cc: Use OdrDerived, in a
7972 non-optimized context.
7973 * testsuite/odr_violation2.cc: Make sure Ordering::operator()
7974 isn't inlined, and use OdrDerived in an optimized context.
7975 * testsuite/odr_header1.h: Defines OdrDerived, where
7976 optimization will change the
7977 first-instruction-in-the-destructor's file and line number.
7978 * testsuite/odr_header2.h: Defines OdrBase.
7979
7980 2011-03-09 Ian Lance Taylor <iant@google.com>
7981
7982 * fileread.cc (File_read::clear_views): Don't delete the whole
7983 file view.
7984
7985 2011-03-08 Ian Lance Taylor <iant@google.com>
7986
7987 PR gold/12525
7988 * fileread.cc: #include <climits>.
7989 (GOLD_IOV_MAX): Define.
7990 (File_read::read_multiple): Limit number of entries by iov_max.
7991 * fileread.h (class File_read): Always set max_readv_entries to
7992 128.
7993
7994 2011-03-07 Ian Lance Taylor <iant@google.com>
7995
7996 PR gold/12525
7997 * options.h (class General_options): Add -dy and -dn.
7998
7999 2011-03-02 Cary Coutant <ccoutant@google.com>
8000
8001 * testsuite/script_test_9.t: Add TLS segment.
8002
8003 2011-03-02 Simon Baldwin <simonb@google.com>
8004
8005 * configure.ac: Add check for gnu_indirect_function support in
8006 the toolchain building binutils.
8007 * configure: Rebuild.
8008
8009 2011-02-18 Rafael Ávila de Espíndola <respindola@mozilla.com>
8010
8011 * symtab.cc (Symbol::should_add_dynsym_entry) Return false for
8012 plugin only symbols.
8013 (Symbol_table::sized_finalize_symbol) Mark symbol only present
8014 in plugin files as not needed in the symbol table.
8015
8016 2011-02-11 Sriraman Tallam <tmsriram@google.com>
8017
8018 * output.cc (Output_section::add_input_section): Delay fill
8019 generation for section ordering.
8020
8021 2011-02-09 Ian Lance Taylor <iant@google.com>
8022
8023 PR gold/12316
8024 * object.h (class Sized_relobj): Remove clear_local_symbols.
8025 * reloc.cc (Sized_relobj::do_relocate): Don't call
8026 clear_local_symbols.
8027
8028 2011-02-08 Rafael Ávila de Espíndola <respindola@mozilla.com>
8029
8030 * plugin.cc (is_visible_from_outside): Return true for symbols
8031 in the -u option.
8032
8033 2011-02-04 Jeffrey Yasskin <jyasskin@google.com>
8034
8035 * symtab.cc (Odr_violation_compare::operator()): Sort by just the
8036 filename.
8037
8038 2011-02-02 Sriraman Tallam <tmsriram@google.com>
8039
8040 * icf.h (is_section_foldable_candidate): Change type of parameter
8041 to std::string.
8042 * icf.cc (Icf::find_identical_sections): Change type of local variable
8043 section_name to be std::string.
8044 (is_function_ctor_or_dtor): Change type of parameter to std::string.
8045
8046 2011-01-25 Ian Lance Taylor <iant@google.com>
8047
8048 * script.cc (script_add_extern): Rewrite to use
8049 add_symbol_reference.
8050
8051 2011-01-25 Doug Kwan <dougkwan@google.com>
8052
8053 * icf.cc (get_section_contents): Always lock section's object.
8054
8055 2011-01-24 Ian Lance Taylor <iant@google.com>
8056
8057 * options.h (class General_options): Accept
8058 --no-detect-odr-violations.
8059
8060 2011-01-24 Ian Lance Taylor <iant@google.com>
8061
8062 * version.cc (version_string): Bump to 1.11.
8063
8064 2011-01-24 Ian Lance Taylor <iant@google.com>
8065
8066 * plugin.cc (class Plugin_rescan): Define new class.
8067 (Plugin_manager::claim_file): Set any_claimed_.
8068 (Plugin_manager::save_archive): New function.
8069 (Plugin_manager::save_input_group): New function.
8070 (Plugin_manager::all_symbols_read): Create Plugin_rescan task if
8071 necessary.
8072 (Plugin_manager::new_undefined_symbol): New function.
8073 (Plugin_manager::rescan): New function.
8074 (Plugin_manager::rescannable_defines): New function.
8075 (Plugin_manager::add_input_file): Set any_added_.
8076 * plugin.h (class Plugin_manager): define new fields rescannable_,
8077 undefined_symbols_, any_claimed_, and any_added_. Declare
8078 Plugin_rescan as friend. Declare new functions.
8079 (Plugin_manager::Rescannable): Define type.
8080 (Plugin_manager::Rescannable_list): Define type.
8081 (Plugin_manager::Undefined_symbol_list): Define type.
8082 (Plugin_manager::Plugin_manager): Initialize new fields.
8083 * archive.cc (Archive::defines_symbol): New function.
8084 (Add_archive_symbols::run): Pass archive to plugins if any.
8085 * archive.h (class Archive): Declare defines_symbol.
8086 * readsyms.cc (Input_group::~Input_group): New function.
8087 (Finish_group::run): Pass input_group to plugins if any.
8088 * readsyms.h (class Input_group): Declare destructor.
8089 * symtab.cc (add_from_object): Pass undefined symbol to plugins if
8090 any.
8091
8092 2011-01-10 Ian Lance Taylor <iant@google.com>
8093
8094 * layout.cc (Layout::layout_eh_frame): Mark a writable .eh_frame
8095 section as relro.
8096 (Layout::set_segment_offsets): Reset increase_relro before calling
8097 set_section_addresses a second time.
8098
8099 2011-01-04 Cary Coutant <ccoutant@google.com>
8100
8101 * script-sections.cc (Sort_output_sections::operator()): Sort TLS
8102 sections before NOBITS sections.
8103
8104 2011-01-01 H.J. Lu <hongjiu.lu@intel.com>
8105
8106 * version.cc (print_version): Update copyright to 2011.
8107
8108 2010-12-23 Cary Coutant <ccoutant@google.com>
8109
8110 * output.h (Output_data_reloc::add_output_section): Pass OD instead
8111 of OS to this->add. Add OD parameter to second form of the function.
8112
8113 2010-12-20 Ian Lance Taylor <iant@google.com>
8114
8115 * dwarf_reader.cc (Sized_dwarf_line_info::read_lines): Only keep
8116 second of two consecutive entries with same offset.
8117
8118 2010-12-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
8119
8120 * testsuite/Makefile.am (ifuncmain2static_LDADD)
8121 (ifuncmain2_LDADD, ifuncmain4static_LDADD, ifuncmain4_LDADD)
8122 (ifuncmain7static_LDADD, ifuncmain7_LDADD): New empty variables,
8123 to avoid unneeded links against $(LDADD).
8124 * testsuite/Makefile.in: Regenerate.
8125
8126 2010-12-15 Ian Lance Taylor <iant@google.com>
8127
8128 PR gold/12324
8129 * x86_64.cc (Target_x86_64::Scan::check_non_pic): Give an error
8130 for R_X86_64_32 and R_X86_64_PC32.
8131 * testsuite/Makefile.am (ver_matching_def.so): Depend on and use
8132 ver_matching_def_pic.o.
8133 (ver_matching_def_pic.o): New target.
8134
8135 2010-12-14 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
8136
8137 * fileread.cc (file_counts_lock, file_counts_initialize_lock)
8138 (total_mapped_bytes, current_mapped_bytes, maximum_mapped_bytes):
8139 Move definition before File_read::View member definitions.
8140 (File_read::View::~View): Initialize and hold lock before
8141 updating current_mapped_bytes.
8142
8143 2010-12-14 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
8144
8145 * dwarf_reader.cc: Remove outdated comment.
8146 * gold-threads.cc: Fix typo in error message.
8147 * archive.cc: Fix typos in comments.
8148 * archive.h: Likewise.
8149 * arm-reloc-property.cc: Likewise.
8150 * arm-reloc-property.h: Likewise.
8151 * arm-reloc.def: Likewise.
8152 * arm.cc: Likewise.
8153 * attributes.h: Likewise.
8154 * cref.cc: Likewise.
8155 * ehframe.cc: Likewise.
8156 * fileread.h: Likewise.
8157 * gold.h: Likewise.
8158 * i386.cc: Likewise.
8159 * icf.cc: Likewise.
8160 * incremental.h: Likewise.
8161 * int_encoding.cc: Likewise.
8162 * layout.h: Likewise.
8163 * main.cc: Likewise.
8164 * merge.h: Likewise.
8165 * object.cc: Likewise.
8166 * object.h: Likewise.
8167 * options.cc: Likewise.
8168 * readsyms.cc: Likewise.
8169 * reduced_debug_output.cc: Likewise.
8170 * reloc.cc: Likewise.
8171 * script-sections.cc: Likewise.
8172 * sparc.cc: Likewise.
8173 * symtab.h: Likewise.
8174 * target-reloc.h: Likewise.
8175 * target.cc: Likewise.
8176 * target.h: Likewise.
8177 * timer.cc: Likewise.
8178 * timer.h: Likewise.
8179 * x86_64.cc: Likewise.
8180
8181 2010-12-09 Cary Coutant <ccoutant@google.com>
8182
8183 * layout.cc (Layout::layout_gnu_stack): Add warnings for executable
8184 stack.
8185 * layout.h (Layout::layout_gnu_stack): Add pointer to Object
8186 parameter; change all callers.
8187 * object.cc (Sized_relobj::do_layout): Adjust call to layout_gnu_stack.
8188 * options.h (warn_execstack): New option.
8189
8190 2010-12-07 Doug Kwan <dougkwan@google.com>
8191
8192 * arm.cc (Target_arm::Scan::get_reference_flags): Treat R_ARM_PREL31
8193 like function call relocations.
8194
8195 2010-12-07 Ian Lance Taylor <iant@google.com>
8196
8197 * archive.cc (Archive::get_elf_object_for_member): Permit
8198 punconfigured to be NULL.
8199 (Archive::read_symbols): Pass NULL to get_elf_object_for_member.
8200 (Archive::include_member): Pass NULL to get_elf_object_for_member
8201 if we searched for the archive and this is the first included
8202 object.
8203
8204 2010-12-01 Ian Lance Taylor <iant@google.com>
8205
8206 * dwarf_reader.h (class Sized_dwarf_line_info): Add
8207 track_relocs_type_ field.
8208 * dwarf_reader.cc (Sized_dwarf_line_info::Sized_dwarf_line_info):
8209 Set track_relocs_type_.
8210 (Sized_dwarf_line_info::process_one_opcode): Ignore the section
8211 contents when using RELA relocs.
8212 (Sized_dwarf_line_info::read_relocs): Add the reloc addend to
8213 reloc_map_.
8214 * reloc.cc (Track_relocs::next_addend): New function.
8215 * reloc.h (class Track_relocs): Declare next_addend.
8216
8217 2010-12-01 Ian Lance Taylor <iant@google.com>
8218
8219 * testsuite/icf_virtual_function_folding_test.cc (class Bar): Add
8220 virtual destructor.
8221
8222 2010-12-01 Ian Lance Taylor <iant@google.com>
8223
8224 * README: Update compilers known to work and fail.
8225
8226 2010-11-23 Matthias Klose <doko@ubuntu.com>
8227
8228 * configure.in: For --enable-gold, handle value `default' instead of
8229 `both*'. Always install ld as ld.bfd, install as ld if gold is
8230 not the default.
8231 * configure: Regenerate.
8232
8233 2010-11-18 Doug Kwan <dougkwan@google.com>
8234
8235 * expression.cc (BINARY_EXPRESSION): Initialize left_alignment
8236 and right_alignment to be zero. Store result alignment only if it is
8237 greater than existing alignment.
8238
8239 2010-11-16 Cary Coutant <ccoutant@google.com>
8240
8241 PR gold/12220
8242 * dwarf_reader.cc (Sized_dwarf_line_info::Sized_dwarf_line_info):
8243 Check for ".zdebug_line".
8244
8245 2010-11-16 Doug Kwan <dougkwan@google.com>
8246 Cary Coutant <ccoutant@google.com>
8247
8248 * output.h (Output_segment::set_section_addresses): Pass increase_relro
8249 by reference; adjust all callers.
8250 * output.cc (Output_segment::set_section_addresses): Adjust references
8251 to increase_relro. Add padding to *increase_relro when ORDER_RELRO_LAST
8252 list is empty.
8253 (Output_segment::set_offset): Assert if PT_GNU_RELRO segment does not
8254 end at page boundary.
8255
8256 2010-11-16 Cary Coutant <ccoutant@google.com>
8257
8258 PR gold/12220
8259 * layout.cc (Layout::choose_output_section): Transform names of
8260 compressed sections even when using a script with a SECTIONS clause.
8261 (Layout::output_section_name): Remove code to transform
8262 compressed debug section names.
8263 * output.cc (Output_section::add_input_section): Use uncompressed
8264 section size when tracking input sections.
8265
8266 2010-11-11 Richard Sandiford <richard.sandiford@linaro.org>
8267
8268 * symtab.h (Symbol::NON_PIC_REF): Remove.
8269 (Symbol::RELATIVE_REF, Symbol::TLS_REF): New Reference_flags.
8270 (Symbol::FUNCTION_CALL): Renumber. Reword comment.
8271 (Symbol::needs_dynamic_reloc): Don't check NON_PIC_REF.
8272 (Symbol::use_plt_offset): Take a flags argument and pass it
8273 directly to needs_dynamic_reloc. Restrict check for undefined
8274 weak symbols to function calls.
8275 * arm.cc (Target_arm::Scan::get_reference_flags): New function.
8276 (Target_arm::Scan::global): Use it.
8277 (Target_arm::Scan::scan_reloc_for_stub): Likewise.
8278 (Target_arm::Relocate::relocate): Likewise.
8279 (Target_arm::Relocate::should_apply_static_reloc): Replace flags
8280 parameter with an r_type parameter. Use get_reference_flags
8281 to get the flags.
8282 (Target_arm::Relocate::relocate): Update accordingly.
8283 * i386.cc (Target_i386::Scan::get_reference_flags): New function.
8284 (Target_i386::Scan::reloc_needs_plt_for_ifunc): Use it.
8285 (Target_i386::Scan::global): Likewise.
8286 (Target_i386::Relocate::relocate): Likewise.
8287 (Target_i386::Relocate::should_apply_static_reloc): Replace flags
8288 parameter with an r_type parameter. Use get_reference_flags
8289 to get the flags.
8290 (Target_i386::Relocate::relocate): Update accordingly.
8291 * powerpc.cc (Target_powerpc::Scan::get_reference_flags): New function.
8292 (Target_powerpc::Scan::global): Use it.
8293 (Target_powerpc::Scan::scan_reloc_for_stub): Likewise.
8294 (Target_powerpc::Relocate::relocate): Likewise.
8295 * sparc.cc (Target_sparc::Scan::get_reference_flags): New function.
8296 (Target_sparc::Scan::global): Use it.
8297 (Target_sparc::Scan::scan_reloc_for_stub): Likewise.
8298 (Target_sparc::Relocate::relocate): Likewise.
8299 * x86_64.cc (Target_x86_64::Scan::get_reference_flags): New function.
8300 (Target_x86_64::Scan::reloc_needs_plt_for_ifunc): Use it.
8301 (Target_x86_64::Scan::global): Likewise.
8302 (Target_x86_64::Relocate::relocate): Likewise.
8303
8304 2010-11-08 Doug Kwan <dougkwan@google.com>
8305 Cary Coutant <ccoutant@google.com>
8306
8307 * arm.cc (Arm_exidx_merge_section::build_contents): New method.
8308 (Arm_exidx_merge_section::section_contents_): New data member.
8309 (Arm_input_section::Arm_input_section): Initialize original_contents_.
8310 (Arm_input_section::~Arm_input_section): De-allocate memory.
8311 (Arm_input_section::original_contents_): New data member.
8312 (Arm_exidx_fixup::process_exidx_section): Pass EXIDX section contents
8313 in parameters instead of calling Object::section_contents without
8314 locking.
8315 (Arm_output_section::group_section): New parameter TASK. Pass it
8316 to callees that need locking objects.
8317 (Arm_output_section::fix_exidx_coverage): New parameter TASK. Use it
8318 to lock EXIDX input sections. Fix a formatting issue. Call
8319 Arm_exidx_merged_section::build_contents to create merged section
8320 contents.
8321 (Arm_output_section::create_stub_group): New parameter TASK. Use it
8322 to lock object of stub table owner.
8323 (Arm_exidx_input_section::Arm_exidx_input_section): Add new parameter
8324 TEXT_SIZE to initialize data member TEXT_SIZE_.
8325 (Arm_exidx_input_section::addralign): Fix typo in comment.
8326 (Arm_exidx_input_section::text_size): New method.
8327 (Target_arm::do_relax): New parameter TASK. Pass it to callees
8328 that require locking objects. Lock objects before scanning for stubs
8329 and updating local symbols.
8330 (Arm_input_section<big_endian>::init): Copy contents of original
8331 input section.
8332 (Arm_input_section<big_endian>::do_write): Use saved contents of
8333 original input section instead of calling Object::section_contents
8334 without locking.
8335 (Arm_exidx_cantunwind::do_fixed_endian_write): Find out text section
8336 size without calling Object::section_size().
8337 (Arm_exidx_merged_section::Arm_exidx_merged_section): Add sanity check
8338 for size. Allocate a buffer for merged EXIDX entries.
8339 (Arm_exidx_merged_section::build_contents): New method.
8340 (Arm_exidx_merged_section::do_write): Move merge section contents
8341 building code to Arm_exidx_merged_section::build_contetns. Write
8342 out contetns in buffer instead of building it on the fly.
8343 (Arm_relobj::make_exidx_input_section): Also pass text section size
8344 to Arm_exidx_input_section constructor.
8345 (Arm_relobj::do_read_symbols): Fix memory leak. Fix a formatting issue.
8346 (Arm_dynobj::do_read_symbols): Fix memory leak.
8347 * layout.cc (Layout::finalize): Pass TASK to Target::relax().
8348 * target.h: (class Task): Add forward declaration.
8349 (Target::relax): Add new parameter TASK and pass it to
8350 Target::do_relax().
8351 (Target::do_relax):: New parameter TASK. Fix a formatting issue.
8352
8353 2010-11-05 Cary Coutant <ccoutant@google.com>
8354
8355 PR gold/10708
8356 * copy-relocs.cc (Copy_relocs::emit_copy_reloc): Hold a lock on the
8357 object when reading from the file.
8358 * gold.cc (queue_middle_tasks): Hold a lock on the object when doing
8359 second layout pass.
8360 * icf.cc (preprocess_for_unique_sections): Hold a lock on the object
8361 when reading section contents.
8362 (get_section_contents): Likewise.
8363 (icf::find_identical_sections): Likewise.
8364 * mapfile.cc (Mapfile::print_discarded_sections): Hold a lock on the
8365 object when reading from the file.
8366 * plugin.cc (Plugin_manager::layout_deferred_objects): Hold a lock on
8367 the object when doing deferred section layout.
8368
8369 2010-11-03 Nick Clifton <nickc@redhat.com>
8370
8371 PR gold/12001
8372 * script.h (class Symbol_assignment: name): New member. Returns
8373 the name of the symbol.
8374 * scrfipt.cc (Script_options::is_pending_assignment): New member.
8375 Returns true if the given symbol name is on the list of
8376 assignments wating to be processed.
8377 * archive.cc (should_incldue_member): If the symbol is undefined,
8378 check to see if it is on the list of symbols pending assignment.
8379
8380 2010-11-03 Ryan Mansfield <rmansfield@qnx.com>
8381
8382 * script-sections.cc (Script_sections::find_memory_region): Check
8383 for a NULL output section pointer.
8384
8385 2010-10-29 Doug Kwan <dougkwan@google.com>
8386
8387 * arm.cc (Arm_outout_section::fix_exidx_coverage): Adjust call to
8388 Output_section::add_relaxed_input_section.
8389 * output.cc (Output_section::add_relaxed_input_section): Add new
8390 arguments LAYOUT and NAME. Set section order index.
8391 (Output_section::convert_input_sections_in_list_to_relaxed_sections):
8392 Copy section order index.
8393 * output.h (Output_section::add_relaxed_input_section): Add new
8394 arguments LAYOUT and NAME.
8395
8396 2010-10-29 Viktor Kutuzov <vkutuzov@accesssoftek.com>
8397
8398 * testsuite/Makefile.am: Move gcctestdir/ld rule to
8399 NATIVE_OR_CROSS_LINKER.
8400 * testsuite/Makefile.in: Regenerate.
8401
8402 2010-10-20 Doug Kwan <dougkwan@google.com>
8403
8404 * arm.cc (Arm_relobj::do_read_symbols): Warn about ARM EXIDX sections
8405 without SHF_LINK_ORDER flags.
8406 * layout.cc (Layout::choose_output_section): Do not filter
8407 SHF_LINK_ORDER flag in a relocatable link.
8408
8409 2010-10-17 Cary Coutant <ccoutant@google.com>
8410
8411 * output.h (Output_segment::set_section_addresses): Change function
8412 signature. Update all callers.
8413 * output.cc (Output_segment::is_first_section_relro): Ignore TLS
8414 sections.
8415 (Output_segment::set_section_addresses): Align after last TLS
8416 section. Add padding before last relro section instead of after.
8417
8418 2010-10-17 Doug Kwan <dougkwan@google.com>
8419
8420 * gold/arm.cc (Target_arm::got_section): Use correct order and set
8421 GOT output section to be writable.
8422
8423 2010-10-14 Cary Coutant <ccoutant@google.com>
8424
8425 * debug.h (DEBUG_INCREMENTAL): New flag.
8426 (debug_string_to_enum): Add DEBUG_INCREMENTAL).
8427 * gold.cc (queue_initial_tasks): Check parameters for incremental link
8428 mode.
8429 * incremental.cc (report_command_line): Ignore all forms of
8430 --incremental.
8431 * layout.cc (Layout::Layout): Check parameters for incremental link
8432 mode.
8433 * options.cc (General_options::parse_incremental): New function.
8434 (General_options::parse_no_incremental): New function.
8435 (General_options::parse_incremental_full): New function.
8436 (General_options::parse_incremental_update): New function.
8437 (General_options::incremental_mode_): New data member.
8438 (General_options::finalize): Check incremental_mode_.
8439 * options.h (General_options): Update help text for --incremental.
8440 Add --no-incremental, --incremental-full, --incremental-update.
8441 (General_options::Incremental_mode): New enum type.
8442 (General_options::incremental_mode): New function.
8443 (General_options::incremental_mode_): New data member.
8444 * parameters.cc (Parameters::incremental_mode_): New data member.
8445 (Parameters::set_options): Set incremental_mode_.
8446 (Parameters::set_incremental_full): New function.
8447 (Parameters::incremental): New function.
8448 (Parameters::incremental_update): New function.
8449 (set_parameters_incremental_full): New function.
8450 * parameters.h (Parameters::set_incremental_full): New function.
8451 (Parameters::incremental): New function.
8452 (Parameters::incremental_update): New function.
8453 (Parameters::incremental_mode_): New data member.
8454 (set_parameters_incremental_full): New function.
8455 * plugin.cc (Plugin_manager::add_input_file): Check parameters for
8456 incremental link mode.
8457 * reloc.cc (Sized_relobj::do_read_relocs): Likewise.
8458 (Sized_relobj::do_relocate_sections): Likewise.
8459 * testsuite/Makefile.am (incremental_test): Use --incremental-full
8460 option.
8461 * testsuite/Makefile.in: Regenerate.
8462 * testsuite/incremental_test.sh: Filter all forms of --incremental.
8463
8464 2010-10-12 Viktor Kutuzov <vkutuzov@accesssoftek.com>
8465
8466 * script-sections.h (class Script_sections): Make
8467 Sections_elements typedef public.
8468 * script-sections.cc (class Sort_output_sections): Add elements_
8469 field. Add constructor which sets it; change all callers.
8470 (Sort_output_sections::is_before): New function.
8471 (Sort_output_sections::operator()): Call is_before.
8472 * configure.ac (NATIVE_OR_CROSS_LINKER): New automake
8473 conditional.
8474 * testsuite/script_test_10.sh: New test. Test script section
8475 order.
8476 * testsuite/script_test_10.t: Likewise.
8477 * testsuite/script_test_10.s: Likewise.
8478 * testsuite/Makefile.am: Wrap the cross linker tests and the
8479 common tests into NATIVE_OR_CROSS_LINKER.
8480 (check_SCRIPTS): Add script_test_10.sh.
8481 (check_DATA): Add script_test_10.stdout.
8482 (script_test_10.o, script_test_10): New targets.
8483 (script_test_10.stdout): New target.
8484 * configure, testsuite/Makefile.in: Regenerate.
8485
8486 2010-10-12 Viktor Kutuzov <vkutuzov@accesssoftek.com>
8487
8488 * arm.cc (Target_arm::Scan::local): Report the unsupported reloc
8489 error for the deprecated relocations.
8490 (Target_arm::Scan::global): Likewise.
8491 (Target_arm::Relocate::relocate): Likewise.
8492
8493 2010-10-12 Richard Sandiford <richard.sandiford@linaro.org>
8494
8495 * fileread.cc (Input_file::find_file): Initialize *found_name
8496 and *namep when using the fallback search for case 4.
8497
8498 2010-10-11 Cary Coutant <ccoutant@google.com>
8499
8500 * options.h (class General_options): Redefine -z lazy as an alias for
8501 the negation of -z now.
8502
8503 2010-10-11 Ian Lance Taylor <iant@google.com>
8504
8505 * resolve.cc (symbol_to_bits): Report the value of the unsupported
8506 binding.
8507
8508 2010-10-06 Nick Clifton <nickc@redhat.com>
8509
8510 * script-sections.cc(class Memory_region): Remove
8511 current_lma_offset_ field. Rename current_vma_offset_ to
8512 current_offset_. Add last_section_ field.
8513 (Memory_region::get_current_vma_address): Rename to
8514 get_current_address.
8515 (Memory_region::get_current_lma_address): Delete.
8516 (Memory_region::increment_vma_offset): Rename to
8517 increment_offset.
8518 (Memory_region::increment_lma_offset): Delete.
8519 (Memory_region::attributes_compatible): New method. Returns
8520 true if the provided section is compatible with the region.
8521 (Memory_region::get_last_section): New method. Returns the last
8522 section to use the region.
8523 (Memory_region::set_last_section): New method. Stores the last
8524 section to use the region.
8525 (Script_sections::block_in_region): New method. Returns true if
8526 a block of memory is contained within a region.
8527 (Script_sections::find_memory_region): New method. Locates a
8528 memory region to be used to set a VMA or LMA address.
8529 (Output_section_definition::set_section_addresses): Add code to
8530 check for addresses set by memory regions.
8531 (Output_segment::set_section_addresses): Remove memory region
8532 walking code.
8533 (Script_sections::create_segment): Add a warning if a header
8534 segment is created outside of any region.
8535 * script-sections.h (class Script_sections): Add prototypes for
8536 find_memory_region and block_in_region methods.
8537 * testsuite/memory_test.s: Use .long instead of .word.
8538 * testsuite/memory_test.t: Add some more output sections.
8539 * testsuite/memory_test.sh: Update expected output.
8540
8541 2010-10-02 Doug Kwan <dougkwan@google.com>
8542
8543 * symtab.cc (Symbol_table::Symbol_table_hash::operator()): Move
8544 defintion to symtab.h
8545 * symtab.h (Symbol_table::Symbol_table_hash::operator()): Change
8546 declaration to defintion.
8547
8548 2010-10-01 Nick Clifton <nickc@redhat.com>
8549
8550 * expression.cc (eval): Replace dummy argument with NULL.
8551 (eval_maybe_dot): Check for a NULL result section pointer.
8552 (Symbol_expression::value): Likewise.
8553 (Dot_expression::value): Likewise.
8554 (BINARY_EXPRESSION): Likewise.
8555 (Max_expression::value): Likewise.
8556 (Min_expression::value): Likewise.
8557 (Absolute_expression::value): Likewise.
8558 (Addr_expression::value_from_output_section): Likewise.
8559 (Loaddddr_expression::value_from_output_section): Likewise.
8560 (Segment_start_expression::value): Likewise.
8561 * script-sections.cc
8562 (Sections_elememt_dot_assignment::finalize_symbols): Replace dummy
8563 argument with NULL.
8564 (Sections_elememt_dot_assignment::set_section_addresses):
8565 Likewise.
8566 (Output_data_expression::do_write_to_buffer): Likewise.
8567 (Output_section_definition::finalize_symbols): Likewise.
8568 (Output_section_definition::set_section_addresses): Likewise.
8569
8570 2010-09-30 Doug Kwan <dougkwan@google.com>
8571
8572 * gold/testsuite/arm_branch_out_of_range.sh: Fix broken tests.
8573
8574 2010-09-28 Sriraman Tallam <tmsriram@google.com>
8575
8576 * target.h (Target::can_icf_inline_merge_sections): New virtual
8577 function.
8578 * x86_64.cc (Target__x86_64::can_icf_inline_merge_sections): New
8579 virtual function.
8580 * i386.cc (Target_i386::can_icf_inline_merge_sections): New
8581 virtual function.
8582 * icf.cc (get_section_contents): Inline merge sections only when
8583 target allows it.
8584
8585 2010-09-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
8586
8587 * configure: Regenerate.
8588
8589 2010-09-17 Ian Lance Taylor <iant@google.com>
8590
8591 * testsuite/memory_test.sh: Adjust for change of 2010-09-10.
8592 * testsuite/Makefile.am (memory_test.o): New target.
8593 (memory_test): Depend on memory_test.o, gcctestdir/ld, and
8594 memory_test.t.
8595 * testsuite/Makefile.in: Rebuild.
8596
8597 2010-09-17 Doug Kwan <dougkwan@google.com>
8598
8599 * arm.cc (Target_arm::Relocate::relocate): Ignore symbol type and
8600 defintion if relocation uses GOT entries of the symbol.
8601 * testsuite/icf_safe_test.sh: Fix test.
8602 * testsuite/icf_safe_so_test.sh: Fix test.
8603
8604 2010-09-16 Cary Coutant <ccoutant@google.com>
8605
8606 * script_sections.cc (class Memory_region): Remove "NULL" from
8607 vector initializations.
8608
8609 2010-09-15 Cary Coutant <ccoutant@google.com>
8610
8611 * incremental.cc (Output_section_incremental_inputs::write_info_blocks):
8612 Resolve forwarding symbols.
8613
8614 2010-09-15 Doug Kwan <dougkwan@google.com>
8615
8616 * gold/testsuite/script_test_3.t: Add ARM special sections.
8617 * gold/testsuite/script_test_4.t: Same.
8618 * gold/testsuite/script_test_5.t: Same.
8619 * gold/testsuite/script_test_6.t: Same.
8620 * gold/testsuite/script_test_7.t: Same.
8621 * gold/testsuite/script_test_7.t: Same.
8622 * gold/testsuite/thumb_blx_out_of_range.s: Fix instruction alignment.
8623
8624 2010-09-14 Cary Coutant <ccoutant@google.com>
8625
8626 * x86_64.cc (Target_x86_64::saw_tls_block_reloc_): Remove member.
8627 (Target_x86_64::Relocate::relocate_tls): Replace check for
8628 saw_tls_block_reloc_ with test for executable section.
8629
8630 2010-09-12 Cary Coutant <ccoutant@google.com>
8631
8632 * symtab.h (Symbol::needs_dynamic_reloc): Non-PIC calls from
8633 position-independent executables to shared libraries need dynamic
8634 relocations.
8635 (Symbol::may_need_copy_reloc): Do not generate COPY relocs in
8636 position-independent executables.
8637 * testsuite/Makefile.am (two_file_mixed_pie_test): New test.
8638 * testsuite/Makefile.in: Regenerate.
8639
8640 2010-09-10 Nick Clifton <nickc@redhat.com>
8641
8642 PR gold/11997
8643 * testsuite/memory_test.t: Discard any sections that are not
8644 needed.
8645
8646 2010-09-09 H.J. Lu <hongjiu.lu@intel.com>
8647
8648 PR gold/11996
8649 * object.cc (Sized_relobj::do_finalize_local_symbols): Remove
8650 "This::" to work around a bug in gcc 4.2.
8651
8652 * testsuite/ifuncmain7.c (foo_ifunc): Add __attribute__ ((used)).
8653
8654 2010-09-09 Rafael Espindola <espindola@google.com>
8655
8656 * layout.cc (Layout::attach_allocated_section_to_segment): Don't put
8657 sections with different PF_X flags in the same segment.
8658 (Layout::find_first_load_seg): Search all segments to find the first
8659 one.
8660 * options.h (rosegment): New.
8661
8662 2010-09-08 Rafael Espindola <espindola@google.com>
8663
8664 * layout.cc (Layout::set_segment_offsets): Always advance to a new page.
8665
8666 2010-09-08 Doug Kwan <dougkwan@google.com>
8667
8668 * arm.cc (Arm_exidx_cantunwind::do_print_to_mapfile): New method.
8669 (Arm_relobj::do_relocate_sections): Add new parameter for output
8670 file to match the parent.
8671 (Target_arm::scan_reloc_section_for_stubs): Use would-be final values
8672 of local symbols instead of input values. Update code to track
8673 changes in gold::relocate_section.
8674 * object.cc (Sized_relobj::compute_final_local_value): New methods.
8675 (Sized_relobj::compute_final_local_value_internal): New methods.
8676 (Sized_relobj::do_finalize_local_symbols): Move code from loop
8677 body into private version of Sized_relobj::compute_final_local_value.
8678 Call the inline method.
8679 * object.h (Symbol_value::Symbol_value): Define destructor. Free
8680 merged symbol value if there is one.
8681 (Symbol_value::has_output_value): New method defintiion.
8682 (Sized_relobj::Compute_final_local_value_status): New enum type.
8683 (Sized_relobj::compute_final_local_value): New methods.
8684 (Sized_relobj::compute_final_local_value_internal): New methods.
8685 * Makefile.am (check_SCRIPTS): Add arm_branch_out_of_range.sh
8686 and arm_cortex_a8.sh.
8687 (thumb_bl_out_of_range_local, arm_cortex_a8_b_cond, arm_cortex_a8_bl,
8688 arm_cortex_a8_blx, arm_cortex_a8_local, arm_corte_a8_local_reloc):
8689 New tests.
8690 * Makefile.in: Regenerate.
8691 * testsuite/arm_bl_out_of_range.s: Update test.
8692 * testsuite/thumb_bl_out_of_range.s: Ditto.
8693 * testsuite/thumb_blx_out_of_range.s: Ditto.
8694 * testsuite/arm_branch_out_of_range.sh: New file.
8695 * testsuite/arm_cortex_a8.sh: Ditto.
8696 * testsuite/arm_cortex_a8_b.s: Ditto.
8697 * testsuite/arm_cortex_a8_b_cond.s: Ditto.
8698 * testsuite/arm_cortex_a8_b_local.s: Ditto.
8699 * testsuite/arm_cortex_a8_bl.s: Ditto.
8700 * testsuite/arm_cortex_a8_blx.s: Ditto.
8701 * testsuite/arm_cortex_a8_local.s: Ditto.
8702 * testsuite/arm_cortex_a8_local_reloc.s: Ditto.
8703 * testsuite/thumb_bl_out_of_range_local.s: Ditto.
8704
8705 2010-09-08 Rafael Espindola <espindola@google.com>
8706
8707 * Makefile.am (memory_test.stdout): Run readelf with -W.
8708 * Makefile.in: Regenerate.
8709 * testsuite/memory_test.sh: Make the regexps accept both 32 and
8710 64 bit output.
8711
8712 2010-09-08 Rafael Espindola <espindola@google.com>
8713
8714 * script-sections.cc (Script_sections::add_memory_region): Convert
8715 field precision to int.
8716 * script.cc (script_set_section_region, script_set_section_region):
8717 Convert field precision to int.
8718
8719 2010-09-08 Rafael Espindola <espindola@google.com>
8720
8721 * arm.cc (do_finalize_sections): Create the __exidx_start and
8722 __exdix_end symbols even when the section is missing.
8723
8724 2010-09-08 Nick Clifton <nickc@redhat.com>
8725
8726 * README: Remove claim that MEMORY is not supported.
8727 * expression.cc (script_exp_function_origin)
8728 (script_exp_function_length): Move from here to ...
8729 * script.cc: ... here.
8730 (script_set_section_region, script_add_memory)
8731 (script_parse_memory_attr, script_include_directive): New
8732 functions.
8733 * script-sections.cc
8734 (class Memory_region): New class.
8735 (class Output_section_definition): Add set_memory_region,
8736 set_section_vma, set_section_lma and get_section_name methods.
8737 (class Script_Sections): Add add_memory_region,
8738 find_memory_region, find_memory_region_origin,
8739 find_memory_region_length and set_memory_region methods.
8740 Have set_section_addresses method walk the list of set memory
8741 regions.
8742 Extend the print methos to display memory regions.
8743 * script-sections.h: Add prototypes for new methods.
8744 Add enum for MEMORY region attributes.
8745 * yyscript.y: Add support for parsing MEMORY regions.
8746 * script-c.h: Add prototypes for new functions.
8747 * testsuite/Makefile.am: Add test of MEMORY region functionality.
8748 * testsuite/Makefile.in: Regenerate.
8749 * testsuite/memory_test.sh: New script.
8750 * testsuite/memory_test.s: New assembler source file.
8751 * testsuite/memory_test.t: New linker script.
8752
8753 2010-08-27 Doug Kwan <dougkwan@google.com>
8754
8755 * gold/resolve.cc (Symbol_table::should_override): Let a weak
8756 reference override an existing dynamic weak reference.
8757 * testsuite/Makefile.am: Add new test dyn_weak_ref.
8758 * testsuite/Makefile.in: Regenerate.
8759 * testsuite/dyn_weak_ref.sh: New file.
8760 * testsuite/dyn_weak_ref_1.c: Ditto.
8761 * testsuite/dyn_weak_ref_2.c: Ditto.
8762
8763 2010-08-27 Ian Lance Taylor <iant@google.com>
8764
8765 * incremental.h (class Incremental_input_entry): Add virtual
8766 destructor.
8767
8768 2010-08-27 Ian Lance Taylor <iant@google.com>
8769
8770 * testsuite/start_lib_test_3.c: Mark t3 as used.
8771
8772 2010-08-27 Nick Clifton <nickc@redhat.com>
8773
8774 * options.cc (version_script): Fix small typo in previous
8775 whitespace tidyup.
8776
8777 2010-08-25 Nick Clifton <nickc@redhat.com>
8778
8779 * archive.cc: Formatting fixes: Remove whitespace between
8780 typename and following asterisk. Remove whitespace between
8781 function name and opening parenthesis.
8782 * archive.h: Likewise.
8783 * arm.cc: Likewise.
8784 * attributes.cc: Likewise.
8785 * attributes.h: Likewise.
8786 * common.cc: Likewise.
8787 * copy-relocs.cc: Likewise.
8788 * dirsearch.h: Likewise.
8789 * dynobj.cc: Likewise.
8790 * ehframe.cc: Likewise.
8791 * ehframe.h: Likewise.
8792 * expression.cc: Likewise.
8793 * fileread.cc: Likewise.
8794 * fileread.h: Likewise.
8795 * gc.h: Likewise.
8796 * gold-threads.cc: Likewise.
8797 * gold.cc: Likewise.
8798 * i386.cc: Likewise.
8799 * icf.h: Likewise.
8800 * incremental-dump.cc: Likewise.
8801 * incremental.cc: Likewise.
8802 * layout.cc: Likewise.
8803 * layout.h: Likewise.
8804 * main.cc: Likewise.
8805 * merge.cc: Likewise.
8806 * merge.h: Likewise.
8807 * object.cc: Likewise.
8808 * object.h: Likewise.
8809 * options.cc: Likewise.
8810 * options.h: Likewise.
8811 * output.cc: Likewise.
8812 * output.h: Likewise.
8813 * plugin.cc: Likewise.
8814 * plugin.h: Likewise.
8815 * powerpc.cc: Likewise.
8816 * reloc.cc: Likewise.
8817 * script-c.h: Likewise.
8818 * script-sections.cc: Likewise.
8819 * script.cc: Likewise.
8820 * stringpool.cc: Likewise.
8821 * symtab.cc: Likewise.
8822 * symtab.h: Likewise.
8823 * target.cc: Likewise.
8824 * timer.cc: Likewise.
8825 * timer.h: Likewise.
8826 * version.cc: Likewise.
8827 * x86_64.cc: Likewise.
8828
8829 2010-08-24 Nick Clifton <nickc@redhat.com>
8830
8831 PR 11899
8832 * layout.cc (segment_precedes): Sort segments by their physical
8833 addresses, if they have been set.
8834
8835 2010-08-23 Cary Coutant <ccoutant@google.com>
8836
8837 * archive.cc (Lib_group::add_symbols): Lock object before deleting its
8838 symbols data.
8839 (Lib_group::include_member): Unlock object after deleting its
8840 symbols data.
8841 * testsuite/start_lib_test_3.c: Remove all global symbols to trigger
8842 the bug fixed here.
8843
8844 2010-08-19 Neil Vachharajani <nvachhar@google.com>
8845 Cary Coutant <ccoutant@google.com>
8846
8847 * gold/archive.h (Add_lib_group_symbols): Add readsyms_blocker_, adjust
8848 constructor, and set_blocker.
8849 * gold/archive.cc (Add_lib_group_symbols::is_runnable): Also check
8850 readsyms_blocker_.
8851 * gold/readsyms.cc (Read_symbols::do_lib_group): Also pass
8852 this->this_blocker_ to Add_lib_group_symbols::set_blocker.
8853 * testsuite/Makefile.am (start_lib_test): New test case.
8854 * testsuite/Makefile.in: Regenerate.
8855 * testsuite/start_lib_test_main.c: New file.
8856 * testsuite/start_lib_test_1.c: New file.
8857 * testsuite/start_lib_test_2.c: New file.
8858 * testsuite/start_lib_test_3.c: New file.
8859
8860 2010-08-19 Ian Lance Taylor <iant@google.com>
8861
8862 * Makefile.in: Rebuild with automake 1.11.1.
8863 * aclocal.m4: Likewise.
8864 * testsuite/Makefile.in: Likewise.
8865
8866 2010-08-19 Ian Lance Taylor <iant@google.com>
8867
8868 PR 10893
8869 * i386.cc (class Output_data_plt_i386): Update declarations.
8870 Define Global_ifunc and Local_ifunc types. Add global_ifuncs_ and
8871 local_ifuncs_ fields.
8872 (Target_i386::do_plt_section_for_global): New function.
8873 (Target_i386::do_plt_section_for_local): New function.
8874 (Output_data_plt_i386::Output_data_plt_i386): Add symtab
8875 parameter; change all callers. Initialize global_ifuncs_ and
8876 local_ifuncs_. If doing a static link define __rel_iplt_start and
8877 __rel_iplt_end.
8878 (Output_data_plt_i386::add_entry): Handle IFUNC symbols.
8879 (Output_data_plt_i386::add_local_ifunc_entry): New function.
8880 (Output_data_plt_i386::do_write): Fix GOT entries for IFUNC
8881 symbols.
8882 (Target_i386::make_plt_section): New function, broken out of
8883 make_plt_entry. Set sh_info field of .rel.plt to point to .plt.
8884 (Target_i386::make_plt_entry): Call make_plt_section.
8885 (Target_i386::make_local_ifunc_plt_entry): New function.
8886 (Target_i386::Scan::reloc_needs_iplt_for_ifunc): New function.
8887 (Target_i386::Scan::local): Handle IFUNC symbols. Add
8888 R_386_IRELATIVE to switch.
8889 (Target_i386::Scan::global): Likewise.
8890 (Target_i386::Relocate::relocate): Likewise.
8891 (Target_i386::Relocatable_size_for_reloc): Add R_386_IRELATIVE to
8892 switch.
8893 * x86_64.cc (class Output_data_plt_x86_64): Update declarations.
8894 (Target_x86_64::do_plt_section_for_global): New function.
8895 (Target_x86_64::do_plt_section_for_local): New function.
8896 (Output_data_plt_x86_64::Output_data_plt_x86_64): Add symtab
8897 parameter; change all callers. If doing a static link define
8898 __rela_iplt_start and __rela_iplt_end.
8899 (Output_data_plt_x86_64::add_entry): Handle IFUNC symbols.
8900 (Output_data_plt_x86_64::add_local_ifunc_entry): New function.
8901 (Target_x86_64::make_plt_section): Set sh_info field of .rel.plt
8902 to point to .plt.
8903 (Target_x86_64::make_local_ifunc_plt_entry): New function.
8904 (Target_x86_64::Scan::check_non_pic): Add R_X86_64_IRELATIVE to
8905 switch.
8906 (Target_x86_64::Scan::reloc_needs_iplt_for_ifunc): New function.
8907 (Target_x86_64::Scan::local): Handle IFUNC symbols. Add
8908 R_X86_64_IRELATIVE to switch.
8909 (Target_x86_64::Scan::global): Likewise.
8910 (Target_x86_64::Relocate::relocate): Likewise.
8911 (Target_x86_64::Relocatable_size_for_reloc): Add R_X86_64_IRELATIVE to
8912 switch.
8913 * target.h (class Target): Add plt_section_for_global and
8914 plt_section_for_local functions. Add do_plt_section_for_global
8915 and do_plt_section_for_local virtual functions.
8916 * symtab.h (Symbol::needs_plt_entry): Handle IFUNC symbol. Add
8917 clarifying comments.
8918 (Symbol::use_plt_offset): Handle IFUNC symbol.
8919 * object.cc (Sized_relobj::Sized_relobj): Initialize
8920 local_plt_offsets_.
8921 (Sized_relobj::local_has_plt_offset): New function.
8922 (Sized_relobj::local_plt_offset): New function.
8923 (Sized_relobj::set_local_plt_offset): New function.
8924 (Sized_relobj::do_count): Handle IFUNC symbol.
8925 * object.h (class Symbol_value): Add is_ifunc_symbol_ field. Take
8926 a bit away from input_shndx_ field. Add set_is_func_symbol and
8927 is_ifunc_symbol functions.
8928 (class Sized_relobj): Update declarations. Remove Tls_got_entry
8929 and Local_tls_got_offsets. Define Local_plt_offsets. Add
8930 local_plt_offsets_ field.
8931 (Sized_relobj::clear_local_symbols): Clear local_plt_offsets_.
8932 * output.h (class Output_section_data): Add non-const
8933 output_section function.
8934 (class Output_data_got): Update declarations.
8935 (class Output_data_got::Got_entry): Add use_plt_offset_ field.
8936 Add use_plt_offset parameter to global and local constructors.
8937 Change all callers. Change local_sym_index_ field to 31 bits.
8938 Change GSYM_CODE and CONSTANT_CODE accordingly.
8939 * output.cc (Output_data_reloc_base::do_adjust_output_section): If
8940 doing a static link don't set sh_link field.
8941 (Output_data_got::Got_entry::write): Use PLT offset if
8942 appropriate.
8943 (Output_data_got::add_global_plt): New function.
8944 (Output_data_got::add_local_plt): New function.
8945 * target-reloc.h (relocate_section): Handle IFUNC symbol.
8946 * defstd.cc (in_section): Remove entries for __rel_iplt_start,
8947 __rel_iplt_end, __rela_iplt_start, and __rela_iplt_end.
8948 * configure.ac: Set IFUNC automake conditional for glibc >= 2.11.
8949 * testsuite/Makefile.am: Add a bunch of IFUNC tests, all within
8950 IFUNC conditional.
8951 * testsuite/ifunc-sel.h: New file.
8952 * testsuite/ifuncmain1.c: New file.
8953 * testsuite/ifuncmain1vis.c: New file.
8954 * testsuite/ifuncmod1.c: New file.
8955 * testsuite/ifuncdep2.c: New file.
8956 * testsuite/ifuncmain2.c: New file.
8957 * testsuite/ifuncmain3.c: New file.
8958 * testsuite/ifuncmod3.c: New file.
8959 * testsuite/ifuncmain4.c: New file.
8960 * testsuite/ifuncmain5.c: New file.
8961 * testsuite/ifuncmod5.c: New file.
8962 * testsuite/ifuncmain6pie.c: New file.
8963 * testsuite/ifuncmod6.c: New file.
8964 * testsuite/ifuncmain7.c: New file.
8965 * configure, testsuite/Makefile.in: Rebuild.
8966
8967 2010-08-18 Ian Lance Taylor <iant@google.com>
8968
8969 * incremental.cc
8970 (Output_section_incremental_inputs::write_input_files): Add cast
8971 to avoid signed/unsigned comparison warning.
8972 (Output_section_incremental_inputs::write_info_blocks): Likewise.
8973
8974 2010-08-12 Cary Coutant <ccoutant@google.com>
8975
8976 * common.cc (Sort_commons::operator()): Remove unnecessary code.
8977
8978 2010-08-13 Ian Lance Taylor <iant@google.com>
8979
8980 * testsuite/incremental_test_1.c: Add prototype to avoid warning.
8981
8982 2010-08-12 Cary Coutant <ccoutant@google.com>
8983 Doug Kwan <dougkwan@google.com>
8984
8985 * resolve.cc (Symbol_table::should_override): When a weak dynamic
8986 defintion overrides non-weak undef, remember that the original undef
8987 is not weak.
8988 * symtab.cc (Symbol_table::sized_write_global): For undef without
8989 an original weak binding, set binding to global in output.
8990 * testsuite/Makefile.am: Add new test strong_ref_weak_def.
8991 * testsuite/Makefile.in: Regenerate.
8992 * testsuite/strong_ref_weak_def.sh: New file.
8993 * testsuite/strong_ref_weak_def_1.c: Ditto.
8994 * testsuite/strong_ref_weak_def_2.c: Ditto.
8995
8996 2010-08-12 Cary Coutant <ccoutant@google.com>
8997
8998 * testsuite/incremental_test.sh: Rewrite.
8999 * testsuite/incremental_test_1.c: Rewrite.
9000 * testsuite/incremental_test_2.c: Rewrite.
9001
9002 2010-08-12 Cary Coutant <ccoutant@google.com>
9003
9004 * arm.cc (Target_arm::got_size): Add const.
9005 (Target_arm::got_entry_count): New function.
9006 (Target_arm::plt_entry_count): New function.
9007 (Target_arm::first_plt_entry_offset): New function.
9008 (Target_arm::plt_entry_size): New function.
9009 (Output_data_plt_arm::entry_count): New function.
9010 (Output_data_plt_arm::first_plt_entry_offset): New function.
9011 (Output_data_plt_arm::get_plt_entry_size): New function.
9012 * i386.cc (Target_i386::got_size): Add const.
9013 (Target_i386::got_entry_count): New function.
9014 (Target_i386::plt_entry_count): New function.
9015 (Target_i386::first_plt_entry_offset): New function.
9016 (Target_i386::plt_entry_size): New function.
9017 (Output_data_plt_i386::entry_count): New function.
9018 (Output_data_plt_i386::first_plt_entry_offset): New function.
9019 (Output_data_plt_i386::get_plt_entry_size): New function.
9020 * incremental-dump.cc (dump_incremental_inputs): Adjust call to
9021 find_incremental_inputs_sections. Dump incremental_got_plt section.
9022 * incremental.cc: Include target.h.
9023 (Sized_incremental_binary::do_find_incremental_inputs_sections): Add
9024 parameter. Adjust all callers. Find incremental_got_plt section.
9025 (Incremental_inputs::create_data_sections): Create incremental_got_plt
9026 section.
9027 (Output_section_incremental_inputs::set_final_data_size): Calculate
9028 size of incremental_got_plt section.
9029 (Output_section_incremental_inputs::do_write): Write the
9030 incremental_got_plt section.
9031 (Got_plt_view_info): New struct.
9032 (Local_got_offset_visitor): New class.
9033 (Global_got_offset_visitor): New class.
9034 (Global_symbol_visitor_got_plt): New class.
9035 (Output_section_incremental_inputs::write_got_plt): New function.
9036 * incremental.h (Incremental_binary::find_incremental_inputs_sections):
9037 Add parameter. Adjust all callers.
9038 (Incremental_binary::do_find_incremental_inputs_sections): Likewise.
9039 (Incremental_inputs::got_plt_section): New function.
9040 (Incremental_inputs::got_plt_section_): New data member.
9041 (Incremental_got_plt_reader): New class.
9042 * layout.cc (Layout::create_incremental_info_sections): Add the
9043 incremental_got_plt section.
9044 * object.h (Got_offset_list::get_list): New function.
9045 (Got offset_list::for_all_got_offsets): New function.
9046 (Sized_relobj::local_got_offset_list): New function.
9047 * powerpc.cc (Target_powerpc::got_size): Add const.
9048 (Target_powerpc::got_entry_count): New function.
9049 (Target_powerpc::plt_entry_count): New function.
9050 (Target_powerpc::first_plt_entry_offset): New function.
9051 (Target_powerpc::plt_entry_size): New function.
9052 (Output_data_plt_powerpc::entry_count): New function.
9053 (Output_data_plt_powerpc::first_plt_entry_offset): New function.
9054 (Output_data_plt_powerpc::get_plt_entry_size): New function.
9055 * sparc.cc (Target_sparc::got_size): Add const.
9056 (Target_sparc::got_entry_count): New function.
9057 (Target_sparc::plt_entry_count): New function.
9058 (Target_sparc::first_plt_entry_offset): New function.
9059 (Target_sparc::plt_entry_size): New function.
9060 (Output_data_plt_sparc::entry_count): New function.
9061 (Output_data_plt_sparc::first_plt_entry_offset): New function.
9062 (Output_data_plt_sparc::get_plt_entry_size): New function.
9063 * symtab.h (Symbol::got_offset_list): New function.
9064 (Symbol_table::for_all_symbols): New function.
9065 * target.h (Sized_target::got_entry_count): New function.
9066 (Sized_target::plt_entry_count): New function.
9067 (Sized_target::plt_entry_size): New function.
9068 * x86_64.cc (Target_x86_64::got_size): Add const.
9069 (Target_x86_64::got_entry_count): New function.
9070 (Target_x86_64::plt_entry_count): New function.
9071 (Target_x86_64::first_plt_entry_offset): New function.
9072 (Target_x86_64::plt_entry_size): New function.
9073 (Output_data_plt_x86_64::entry_count): New function.
9074 (Output_data_plt_x86_64::first_plt_entry_offset): New function.
9075 (Output_data_plt_x86_64::get_plt_entry_size): New function.
9076
9077 2010-08-12 Cary Coutant <ccoutant@google.com>
9078
9079 * archive.cc: Include incremental.h.
9080 (Archive::Archive): Initialize incremental_info_.
9081 (Archive::include_member): Record archive members in incremental info.
9082 (Add_archive_symbols::run): Record begin and end of an archive in
9083 incremental info.
9084 (Lib_group::include_member): Record objects in incremental info.
9085 * archive.h (Incremental_archive_entry): Forward declaration.
9086 (Archive::set_incremental_info): New member function.
9087 (Archive::incremental_info): New member function.
9088 (Archive::Unused_symbol_iterator): New class.
9089 (Archive::unused_symbols_begin): New member function.
9090 (Archive::unused_symbols_end): New member function.
9091 (Archive::incremental_info_): New data member.
9092 * incremental-dump.cc (find_input_containing_global): New function.
9093 (dump_incremental_inputs): Dump new incremental info sections.
9094 * incremental.cc: Include symtab.h.
9095 (Output_section_incremental_inputs): New class.
9096 (Sized_incremental_binary::do_find_incremental_inputs_sections): Support
9097 new incremental info sections.
9098 (Sized_incremental_binary::do_check_inputs): Likewise.
9099 (Incremental_inputs::report_archive): Remove.
9100 (Incremental_inputs::report_archive_begin): New function.
9101 (Incremental_inputs::report_archive_end): New function.
9102 (Incremental_inputs::report_object): New function.
9103 (Incremental_inputs::finalize_inputs): Remove.
9104 (Incremental_inputs::report_input_section): New function.
9105 (Incremental_inputs::report_script): Rewrite.
9106 (Incremental_inputs::finalize): Do nothing but finalize string table.
9107 (Incremental_inputs::create_incremental_inputs_section_data): Remove.
9108 (Incremental_inputs::sized_create_inputs_section_data): Remove.
9109 (Incremental_inputs::create_data_sections): New function.
9110 (Incremental_inputs::relocs_entsize): New function.
9111 (Output_section_incremental_inputs::set_final_data_size): New function.
9112 (Output_section_incremental_inputs::do_write): New function.
9113 (Output_section_incremental_inputs::write_header): New function.
9114 (Output_section_incremental_inputs::write_input_files): New function.
9115 (Output_section_incremental_inputs::write_info_blocks): New function.
9116 (Output_section_incremental_inputs::write_symtab): New function.
9117 * incremental.h (Incremental_script_entry): Forward declaration.
9118 (Incremental_object_entry): Forward declaration.
9119 (Incremental_archive_entry): Forward declaration.
9120 (Incremental_inputs): Forward declaration.
9121 (Incremental_inputs_header_data): Remove.
9122 (Incremental_inputs_header): Remove.
9123 (Incremental_inputs_header_write): Remove.
9124 (Incremental_inputs_entry_data): Remove.
9125 (Incremental_inputs_entry): Remove.
9126 (Incremental_inputs_entry_write): Remove.
9127 (enum Incremental_input_type): Add INCREMENTAL_INPUT_ARCHIVE_MEMBER.
9128 (Incremental_binary::find_incremental_inputs_sections): Add parameters.
9129 (Incremental_binary::do_find_incremental_inputs_sections): Likewise.
9130 (Sized_ncremental_binary::do_find_incremental_inputs_sections):
9131 Likewise.
9132 (Incremental_input_entry): New class.
9133 (Incremental_script_entry): New class.
9134 (Incremental_object_entry): New class.
9135 (Incremental_archive_entry): New class.
9136 (Incremental_inputs::Incremental_inputs): Initialize new data members.
9137 (Incremental_inputs::report_inputs): Remove.
9138 (Incremental_inputs::report_archive): Remove.
9139 (Incremental_inputs::report_archive_begin): New function.
9140 (Incremental_inputs::report_archive_end): New function.
9141 (Incremental_inputs::report_object): Change prototype.
9142 (Incremental_inputs::report_input_section): New function.
9143 (Incremental_inputs::report_script): Change prototype.
9144 (Incremental_inputs::get_reloc_count): New function.
9145 (Incremental_inputs::set_reloc_count): New function.
9146 (Incremental_inputs::create_data_sections): New function.
9147 (Incremental_inputs::create_incremental_inputs_section_data): Remove.
9148 (Incremental_inputs::inputs_section): New function.
9149 (Incremental_inputs::symtab_section): New function.
9150 (Incremental_inputs::relocs_section): New function.
9151 (Incremental_inputs::get_stringpool): Add const.
9152 (Incremental_inputs::command_line): Add const.
9153 (Incremental_inputs::inputs): Remove.
9154 (Incremental_inputs::command_line_key): New function.
9155 (Incremental_inputs::input_file_count): New function.
9156 (Incremental_inputs::input_files): New function.
9157 (Incremental_inputs::relocs_entsize): New function.
9158 (Incremental_inputs::sized_create_inputs_section_data): Remove.
9159 (Incremental_inputs::finalize_inputs): Remove.
9160 (Incremental_inputs::Input_info): Remove.
9161 (Incremental_inputs::lock_): Remove.
9162 (Incremental_inputs::inputs_): Change type.
9163 (Incremental_inputs::inputs_map_): Remove.
9164 (Incremental_inputs::current_object_entry_): New data member.
9165 (Incremental_inputs::inputs_section_): New data member.
9166 (Incremental_inputs::symtab_section_): New data member.
9167 (Incremental_inputs::relocs_section_): New data member.
9168 (Incremental_inputs::reloc_count_): New data member.
9169 (Incremental_inputs_reader): New class.
9170 (Incremental_symtab_reader): New class.
9171 (Incremental_relocs_reader): New class.
9172 * layout.cc (Layout::finalize): Move finalization of incremental info
9173 and creation of incremental info sections to follow finalization of
9174 symbol table. Set offsets for postprocessing sections.
9175 (Layout::create_incremental_info_sections): Call
9176 Incremental_inputs::create_data_sections. Add incremental symtab
9177 and relocs sections. Set sh_entsize and sh_link fields. Arrange for
9178 sections to layout after input sections.
9179 * layout.h (struct Timespec): Forward declaration.
9180 (Layout::incremental_inputs): Add const.
9181 (Layout::create_incremental_info_sections): Add parameter.
9182 * main.cc (main): Remove call to Incremental_inputs::report_inputs.
9183 * object.cc: Include incremental.h.
9184 (Relobj::finalize_incremental_relocs): New function.
9185 (Sized_relobj::do_layout): Record input sections in incremental info.
9186 * object.h (Object::output_section): New function.
9187 (Object::output_section_offset): Moved from Relobj.
9188 (Object::get_incremental_reloc_base): New function.
9189 (Object::get_incremental_reloc_count): New function.
9190 (Object::do_output_section): New function.
9191 (Object::do_output_section_offset): Moved from Relobj.
9192 (Object::do_get_incremental_reloc_base): New function.
9193 (Object::do_get_incremental_reloc_count): New function.
9194 (Object::Object): Initialize new data members.
9195 (Relobj::output_section): Renamed do_output_section and moved to
9196 protected.
9197 (Relobj::output_section_offset): Moved to Object.
9198 (Relobj::do_get_incremental_reloc_base): New function.
9199 (Relobj::do_get_incremental_reloc_count): New function.
9200 (Relobj::allocate_incremental_reloc_counts): New function.
9201 (Relobj::count_incremental_reloc): New function.
9202 (Relobj::finalize_incremental_relocs): New function.
9203 (Relobj::next_incremental_reloc_index): New function.
9204 (Relobj::reloc_counts_): New data member.
9205 (Relobj::reloc_bases_): New data member.
9206 (Sized_relobj::do_relocate_sections): Add parameter. Change caller.
9207 (Sized_relobj::relocate_sections): Add parameter. Change all callers.
9208 (Sized_relobj::incremental_relocs_scan): New function.
9209 (Sized_relobj::incremental_relocs_scan_reltype): New function.
9210 (Sized_relobj::incremental_relocs_write): New function.
9211 (Sized_relobj::incremental_relocs_write_reltype): New function.
9212 * plugin.cc (Plugin_manager::add_input_file): Rewrite test for
9213 incremental link.
9214 * readsyms.cc (Read_symbols::do_read_symbols): Move reporting of
9215 archives and object files elsewhere.
9216 (Add_symbols::run): Report object files here.
9217 (Finish_group::run): Report end of archive at end of group.
9218 * reloc.cc: Include layout.h, incremental.h.
9219 (Sized_relobj::do_read_relocs): Need relocations for incremental link.
9220 (Sized_relobj::do_scan_relocs): Record relocations for incremental link.
9221 (Sized_relobj::incremental_relocs_scan): New function.
9222 (Sized_relobj::incremental_relocs_scan_reltype): New function.
9223 (Sized_relobj::do_relocate_sections): Write incremental relocations.
9224 (Sized_relobj::incremental_relocs_write): New function.
9225 (Sized_relobj::incremental_relocs_write_reltype): New function.
9226 * script.cc (read_input_script): Rewrite test for incremental link.
9227 Change call to Incremental_inputs::report_script.
9228 * symtab.h (Symbol_table::first_global_index): New function.
9229 (Symbol_table::output_count): New function.
9230
9231 2010-08-12 Doug Kwan <dougkwan@google.com>
9232
9233 * arm.cc (Target_arm::merge_object_attributes): Check command line
9234 options --no-wchar-size-warning and --no-enum-size-warning.
9235 * options.h (General_options): Add ld-compatible options
9236 --no-enum-size-warning and --no-wchar-size-warning.
9237
9238 2010-08-04 Ian Lance Taylor <iant@google.com>
9239
9240 * x86_64.cc (Target_x86_64::Scan::local): Use
9241 R_X86_64_GNU_VTINHERIT instead of R_386_GNU_VTINHERIT and
9242 R_X86_64_GNU_VTENTRY instead of R_386_GNU_VTENTRY.
9243 (Target_x86_64::Scan::global): Likewise.
9244 (Target_x86_64::Relocate::relocate): Likewise.
9245 (Target_x86_64::Relocatable_size_for_reloc::get_size_for_reloc):
9246 Likewise.
9247
9248 2010-08-03 Cary Coutant <ccoutant@google.com>
9249
9250 * merge.cc (Output_merge_string::do_add_input_section): Count strings
9251 to reserve space in merged_strings vector. Keep total input size
9252 for stats.
9253 (Output_merge_string::do_print_merge_stats): Print total input size.
9254 * merge.h (Output_merge_string): Add input_size_ field.
9255 * stringpool.cc (Stringpool_template::string_length): Move
9256 implementations out of Stringpool_template class and place in
9257 stringpool.h.
9258 * stringpool.h (string_length): Move out of Stringpool_template.
9259
9260 2010-08-03 Ian Lance Taylor <iant@google.com>
9261
9262 PR 11712
9263 * layout.cc (relaxation_loop_body): If address of load segment is
9264 set, adjust address to include headers if possible.
9265
9266 2010-08-03 Ian Lance Taylor <iant@google.com>
9267
9268 * version.cc (version_string): Bump to 1.10.
9269
9270 2010-08-03 Ian Lance Taylor <iant@google.com>
9271
9272 PR 11805
9273 * layout.h (enum Output_section_order): Define.
9274 (class Layout): Update declarations.
9275 * layout.cc (Layout::get_output_section): Add order parameter.
9276 Remove is_interp, is_dynamic_linker_section, is_last_relro, and
9277 is_first_non_relro parameters. Change all callers.
9278 (Layout::choose_output_section): Likewise.
9279 (Layout::add_output_section_data): Likewise.
9280 (Layout::make_output_section): Likewise. Set order.
9281 (Layout::default_section_order): New function.
9282 (Layout::layout_eh_frame): Call add_output_section_to_nonload.
9283 * output.cc (Output_section::Output_section): Initialize order_.
9284 Don't initialize deleted fields.
9285 (Output_segment::Output_segment): Don't initialize deleted
9286 fields.
9287 (Output_segment::add_output_section_to_load): New function
9288 replacing add_output_section. Change all callers to call this or
9289 add_output_section_to_nonload.
9290 (Output_segment::add_output_section_to_nonload): New function.
9291 (Output_segment::remove_output_section): Rewrite.
9292 (Output_segment::add_initial_output_data): Likewise.
9293 (Output_segment::has_any_data_sections): Likewise.
9294 (Output_segment::is_first_section_relro): Likewise.
9295 (Output_segment::maximum_alignment): Likewise.
9296 (Output_segment::has_dynamic_reloc): New function replacing
9297 dynamic_reloc_count. Change all callers.
9298 (Output_segment::has_dynamic_reloc_list): New function replacing
9299 dynamic_reloc_count_list. Change all callers.
9300 (Output_segment::set_section_addresses): Rewrite.
9301 (Output_segment::set_offset): Rewrite.
9302 (Output_segment::find_first_and_last_list): Remove.
9303 (Output_segment::set_tls_offsets): Rewrite.
9304 (Output_segment::first_section_load_address): Likewise.
9305 (Output_segment::output_section_count): Likewise.
9306 (Output_segment::section_with_lowest_load_address): Likewise.
9307 (Output_segment::write_section_headers): Likewise.
9308 (Output_segment::print_sections_to_map): Likewise.
9309 * output.h (class Output_data): Remove dynamic_reloc_count_
9310 field. Add has_dynamic_reloc_ field. Make bools into bitfields.
9311 (Output_data::add_dynamic_reloc): Rewrite.
9312 (Output_data::has_dynamic_reloc): New function.
9313 (Output_data::dynamic_reloc_count): Remove.
9314 (class Output_section): Add order_ field. Remvoe is_relro_local_,
9315 is_last_relro_, is_first_non_relro_, is_interp_,
9316 is_dynamic_linker_section_ fields. Add order and set_order
9317 functions. Remove is_relro_local, set_is_relro_local,
9318 is_last_relro, set_is_last_relro, is_first_non_relro,
9319 set_is_first_non_relro functions, is_interp, set_is_interp,
9320 is_dynamic_linker_section, and set_is_dynamic_linker_section
9321 functions.
9322 (class Output_segment): Change Output_data_list from std::list to
9323 std:;vector. Add output_lists_ field. Remove output_data_ and
9324 output_bss_ fields. Update declarations.
9325
9326 2010-08-02 Ian Lance Taylor <iant@google.com>
9327
9328 * arm.cc (Target_arm::gc_process_relocs): Use typename.
9329 * powerpc.cc (Target_powerpc::gc_process_relocs): Likewise.
9330 * sparc.cc (Target_sparc::gc_process_relocs): Likewise.
9331
9332 2010-08-02 Ian Lance Taylor <iant@google.com>
9333
9334 PR 11855
9335 * script.cc (Script_options::Script_options): Initialize
9336 symbol_definitions_ and symbol_references_.
9337 (Script_options::add_symbol_assignment): Update
9338 symbol_definitions_ and symbol_references_.
9339 (Script_options::add_symbol_reference): New function.
9340 (script_symbol): New function.
9341 * script.h (class Script_options): Add symbol_definitions_ and
9342 symbol_references_ fields.
9343 (Script_options::referenced_const_iterator): New type.
9344 (Script_options::referenced_begin): New function.
9345 (Script_options::referenced_end): New function.
9346 (Script_options::is_referenced): New function.
9347 (Script_options::any_unreferenced): New function.
9348 * script-c.h (script_symbol): Declare.
9349 * yyscript.y (exp): Call script_symbol.
9350 * symtab.cc: Include "script.h".
9351 (Symbol_table::gc_mark_undef_symbols): Add layout parameter.
9352 Change all callers. Check symbols referenced by scripts.
9353 (Symbol_table::add_undefined_symbols_from_command_line): Add
9354 layout parameter. Change all callers.
9355 (Symbol_table::do_add_undefined_symbols_from_command_line):
9356 Likewise. Break out loop body. Check symbols referenced by
9357 scripts.
9358 (Symbol_table::add_undefined_symbol_from_command_line): New
9359 function broken out of
9360 do_add_undefined_symbols_from_command_line.
9361 * symtab.h (class Symbol_table): Update declarations.
9362 * archive.cc: Include "layout.h".
9363 (Archive::should_include_member): Add layout parameter. Change
9364 all callers. Check for symbol mentioned in expression.
9365 * archive.h (class Archive): Update declaration.
9366 * object.cc (Sized_relobj::do_should_include_member): Add layout
9367 parameter.
9368 * object.h (Object::should_include_member): Add layout parameter.
9369 Change all callers.
9370 (Object::do_should_include_member): Add layout parameter.
9371 (class Sized_relobj): Update declaration.
9372 * dynobj.cc (Sized_dynobj::do_should_include_member): Add layout
9373 parameter.
9374 * dynobj.h (class Sized_dynobj): Update declaration.
9375 * plugin.cc (Sized_pluginobj::do_should_include_member): Add
9376 layout parameter.
9377 * plugin.h (class Sized_pluginobj): Update declaration.
9378
9379 2010-08-02 Ian Lance Taylor <iant@google.com>
9380
9381 PR 11866
9382 * output.cc (Output_segment::set_offset): Search for the first and
9383 last sections rather than assuming that the list is in order.
9384 (Output_segment::find_first_and_last_list): New function.
9385 * output.h (class Output_segment): Update declarations.
9386 * testsuite/Makefile.am (check_PROGRAMS): Add relro_strip_test.
9387 (relro_strip_test_SOURCES): New variable.
9388 (relro_strip_test_DEPENDENCIES): New variable.
9389 (relro_strip_test_LDFLAGS): New variable.
9390 (relro_strip_test_LDADD): New variable.
9391 (relro_strip_test.so): New target.
9392
9393 2010-08-02 Ian Lance Taylor <iant@google.com>
9394
9395 * i386.cc (class Target_i386): Add got_tlsdesc_ field.
9396 (Target_i386::Target_i386):: Initialize got_tlsdesc_.
9397 (Target_i386::got_tlsdesc_section): New function.
9398 (Target_i386::got_section): Create space for GOT entries for
9399 TLSDESC relocations.
9400 (Target_i386::Scan::local): Use TLSDESC GOT for unoptimized
9401 R_386_TLS_GOTDESC.
9402 (Target_i386::Scan::global): Likewise.
9403 (Target_i386::Relocate::relocate_tls): Adjust GOT offset when
9404 using TLSDESC GOT.
9405 * x86_64.cc (class Target_x86_64): Add got_tlsdesc_ field.
9406 (Target_x86_64::Target_x86_64):: Initialize got_tlsdesc_.
9407 (Target_x86_64::got_tlsdesc_section): New function.
9408 (Target_x86_64::got_section): Create space for GOT entries for
9409 TLSDESC relocations.
9410 (Target_x86_64::Scan::local): Use TLSDESC GOT for unoptimized
9411 R_386_TLS_GOTDESC.
9412 (Target_x86_64::Scan::global): Likewise.
9413 (Target_x86_64::Relocate::relocate_tls): Adjust GOT offset when
9414 using TLSDESC GOT.
9415
9416 2010-08-02 Ian Lance Taylor <iant@google.com>
9417
9418 * testsuite/final_layout.sh: Use dc to convert from hex to
9419 decimal.
9420
9421 2010-07-29 Sriraman Tallam <tmsriram@google.com>
9422
9423 * arm.cc (Target_arm<big_endian>::gc_process_relocs): Add template
9424 paramter to the call to gold::gc_process_relocs.
9425 * i386.cc (Target_i386<big_endian>::gc_process_relocs): Add template
9426 paramter to the call to gold::gc_process_relocs.
9427 * x86_64.cc (Target_x86_64<big_endian>::gc_process_relocs): Add template
9428 parameter to the call to gold::gc_process_relocs.
9429 * powerpc.cc (Target_powerpc<big_endian>::gc_process_relocs): Add
9430 template parameter to the call to gold::gc_process_relocs.
9431 * sparc.cc (Target_sparc<big_endian>::gc_process_relocs): Add template
9432 paramter to the call to gold::gc_process_relocs.
9433 * gc.h (get_embedded_addend_size): New function.
9434 (gc_process_relocs): Save the size of the reloc for use by ICF.
9435 * icf.cc (get_section_contents): Get the addend from the text section
9436 for SHT_REL relocation sections.
9437 * icf.h (Icf::Reloc_addend_size_info): New typedef.
9438 (Icf::Reloc_info): Add new member reloc_addend_size_info.
9439 * int_encoding.h (read_from_pointer): New overloaded function.
9440 * testsuite/Makefile.am (icf_sht_rel_addend_test): New test.
9441 * testsuite/icf_sht_rel_addend_test.sh: New file.
9442 * testsuite/icf_sht_rel_addend_test_1.cc: New file.
9443 * testsuite/icf_sht_rel_addend_test_2.cc: New file.
9444
9445 2010-07-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
9446
9447 * configure.ac (AM_INIT_AUTOMAKE): Use parallel-tests option.
9448 * Makefile.in: Regenerate.
9449 * testsuite/Makefile.in: Regenerate.
9450
9451 2010-07-27 Jeffrey Yasskin <jyasskin@google.com>
9452
9453 * testsuite/debug_msg.sh: Test mixed weak/strong symbol behavior.
9454 * gold/testsuite/debug_msg.cc: Likewise.
9455 * gold/testsuite/odr_violation1.cc
9456 * gold/testsuite/odr_violation2.cc
9457
9458 2010-07-21 Cary Coutant <ccoutant@google.com>
9459
9460 * merge.h (Output_merge_string::Merged_string): Remove object, shndx,
9461 string, and length fields.
9462 (Output_merge_string::Merged_strings_list): New type.
9463 (Output_merge_string::Merged_strings_lists): New typedef.
9464 (Output_merge_string): Replace merged_strings_ with
9465 merged_strings_lists_.
9466 * merge.cc (Output_merge_string::do_add_input_section): Allocate new
9467 Merged_strings_list per input object and section. Don't store pointer
9468 to the string. Don't store length with each merged string entry.
9469 (Output_merge_string::finalize_merged_data): Loop over list of merged
9470 strings lists. Recompute length of each merged string.
9471
9472 2010-07-15 Cary Coutant <ccoutant@google.com>
9473
9474 * plugin.cc (Plugin_finish::run): Don't call cleanup handlers from
9475 here.
9476
9477 2010-07-14 Ian Lance Taylor <iant@google.com>
9478
9479 * descriptors.cc (Descriptors::open): Report correct name in error
9480 message.
9481
9482 2010-07-13 Doug Kwan <dougkwan@google.com>
9483
9484 * arm.cc (Arm_input_section::Arm_input_section): For a
9485 SHT_ARM_EXIDX section, always keeps the input sections.
9486 (Arm_input_section::set_exidx_section_link): New method.
9487 (Arm_exidx_input_section::Arm_exidx_input_section): Initialize
9488 has_errors_ to false.
9489 (Arm_exidx_input_section::has_errors,
9490 Arm_exidx_input_section::set_has_errors): New methods.
9491 (Arm_exidx_input_section::has_errors_): New data member.
9492 (Arm_relobj::get_exidx_shndx_list): New method.
9493 (Arm_output_section::append_text_sections_to_list): Do not skip
9494 section without SHF_EXECINSTR.
9495 (Arm_output_section::fix_exidx_coverage): Skip input sections with
9496 errors.
9497 (Arm_relobj::make_exidx_input_section): Add new parameter for text
9498 section header. Make error messages more verbose. Check for
9499 a non-executable section linked to an EXIDX section.
9500 (Arm_relobj::do_read_symbols): Remove error checking, which has been
9501 moved to Arm_relobj::make_exidx_input_section. Add an assertion to
9502 check that there is no deferred EXIDX section if we exit early.
9503 Instead of not making an EXIDX section in case of an error, make one
9504 and set the has_errors flag of it.
9505 (Target_arm::do_finalize_sections): Fix up links of EXIDX sections
9506 in a relocatable link.
9507 (Target_arm::do_relax): Look for the EXIDX output section instead of
9508 assuming that it is called .ARM.exidx.
9509 (Target_arm::fix_exidx_coverage): Add a new parameter for input
9510 section list. Do not check for SHF_EXECINSTR section flags but
9511 skip any input section with errors.
9512 * output.cc (Output_section::Output_section): Initialize
9513 always_keeps_input_sections_ to false.
9514 (Output_section::add_input_section): Check for
9515 always_keeps_input_sections_.
9516 * output.h (Output_section::always_keeps_input_sections,
9517 Output_section::set_always_keeps_input_sections): New methods.
9518 (Output_section::always_keeps_input_sections): New data member.
9519
9520 2010-07-13 Rafael Espindola <espindola@google.com>
9521
9522 * fileread.cc (try_extra_search_path, find_file): Move to Input_file.
9523 * fileread.h (Input_file): Add try_extra_search_path and find_file.
9524
9525 2010-07-13 Philip Herron <herron.philip@googlemail.com>
9526 Ian Lance Taylor <iant@google.com>
9527
9528 * output.h (Output_section_lookup_maps::add_merge_section):
9529 Correct check of whether value was inserted.
9530 (Output_section_lookup_maps::add_merge_input_section): Likewise.
9531 (Output_section_lookup_maps::add_relaxed_input_section):
9532 Likewise.
9533 * arm.cc (Target_arm::got_section): Remove used local os.
9534 * i386.cc (Target_i386::got_section): Likewise.
9535 * x86_64.cc (Target_x86_64::got_section): Likewise.
9536 * sparc.cc (Target_sparc::got_section): Likewise.
9537 (Target_sparc::relocate): Remove unused local have_got_offset.
9538 * powerpc.cc (Target_powerpc::relocate): Likewise.
9539
9540 2010-07-13 Ian Lance Taylor <iant@google.com>
9541
9542 * compressed_output.cc (zlib_decompress): Fix signature in
9543 !HAVE_ZLIB_H case.
9544
9545 * archive.cc (Archive::include_member): Unlock an external member
9546 of a thin archive. Don't bother to delete an object we know is
9547 NULL.
9548
9549 2010-07-12 Cary Coutant <ccoutant@google.com>
9550
9551 * compressed_output.cc (zlib_decompress): New function.
9552 (get_uncompressed_size): New function.
9553 (decompress_input_section): New function.
9554 * compressed_output.h (get_uncompressed_size): New function.
9555 (decompress_input_section): New function.
9556 * dwarf_reader.cc (Sized_dwarf_line_info::Sized_dwarf_line_info)
9557 Handle compressed debug sections.
9558 * layout.cc (is_compressed_debug_section): New function.
9559 (Layout::output_section_name): Map compressed section names to
9560 canonical names.
9561 * layout.h (is_compressed_debug_section): New function.
9562 (is_debug_info_section): Recognize compressed debug sections.
9563 * merge.cc: Include compressed_output.h.
9564 (Output_merge_data::do_add_input_section): Handle compressed
9565 debug sections.
9566 (Output_merge_string::do_add_input_section): Handle compressed
9567 debug sections.
9568 * object.cc: Include compressed_output.h.
9569 (Sized_relobj::Sized_relobj): Initialize new data members.
9570 (build_compressed_section_map): New function.
9571 (Sized_relobj::do_read_symbols): Handle compressed debug sections.
9572 * object.h (Object::section_is_compressed): New method.
9573 (Object::do_section_is_compressed): New method.
9574 (Sized_relobj::Compressed_section_map): New type.
9575 (Sized_relobj::do_section_is_compressed): New method.
9576 (Sized_relobj::compressed_sections_): New data member.
9577 * output.cc (Output_section::add_input_section): Handle compressed
9578 debug sections.
9579 * reloc.cc: Include compressed_output.h.
9580 (Sized_relobj::write_sections): Handle compressed debug sections.
9581
9582 2010-07-08 Cary Coutant <ccoutant@google.com>
9583
9584 * resolve.cc (Symbol_table::resolve): Remember whether undef was
9585 weak when resolving to a dynamic def.
9586 (Symbol_table::should_override): Add adjust_dyndef flag; set it
9587 for weak undef/dynamic def cases. Adjust callers.
9588 * symtab.cc (Symbol::init_fields): Initialize undef_binding_set_ and
9589 undef_binding_weak_.
9590 (Symbol_table::sized_write_globals): Adjust symbol binding.
9591 (Symbol_table::sized_write_symbol): Add binding parameter.
9592 * symtab.h (Symbol::set_undef_binding): New method.
9593 (Symbol::is_undef_binding_weak): New method.
9594 (Symbol::undef_binding_set_, Symbol::undef_binding_weak_): New members.
9595 (Symbol_table::should_override): Add new parameter.
9596 (Symbol_table::sized_write_symbol): Add new parameter.
9597
9598 * testsuite/weak_undef_file1.cc: Add new test case.
9599 * testsuite/weak_undef_file2.cc: Fix header comment.
9600 * testsuite/weak_undef_test.cc: Add new test case.
9601
9602 2010-06-29 Doug Kwan <dougkwan@google.com>
9603
9604 * arm-reloc-property.cc (Arm_reloc_property::Arm_reloc_property):
9605 Initialize USE_SYMBOL_.
9606 * arm-reloc-property.h (Arm_reloc_property::uses_symbol): New method
9607 definition.
9608 (Arm_reloc_property::uses_symbol_): New data member declaration.
9609 * arm.cc (Target_arm::Relocate::relocate): Exit early if relocation
9610 uses symbol value and symbol is undefined but not weakly undefined.
9611
9612 2010-06-28 Rafael Espindola <espindola@google.com>
9613
9614 * plugin.cc (Plugin::load): Use dlerror.
9615
9616 2010-06-26 Jeffrey Yaskin <jyasskin@google.com>
9617
9618 * symtab.cc (detect_odr_violations): When reporting an ODR
9619 violation, report an object where the symbol is defined.
9620
9621 2010-06-25 Doug Kwan <dougkwan@google.com>
9622
9623 * arm.cc (Target_arm::can_check_for_functions_pointers): Return true.
9624 (Target_arm::section_may_have_icf_unsafe_pointers): New method
9625 definition.
9626 (Target_arm::Scan::local_reloc_may_be_function_pointer,
9627 Target_arm::Scan::global_reloc_may_be_function_pointer): Implement
9628 target hook to detect function points.
9629 (Target_arm::Scan::possible_function_pointer_reloc): New method.
9630 * icf.h (Icf::check_section_for_function_pointers): Change type of
9631 parameter SECTION_NAME to const reference to std::string. Use
9632 target hook to determine if section may have unsafe pointers.
9633 * target.h (Target::section_may_have_icf_unsafe_pointers): New
9634 method definition.
9635
9636 2010-06-21 Rafael Espindola <espindola@google.com>
9637
9638 * fileread.cc (Input_file::find_fie): New
9639 (Input_file::open): Use Input_file::find_fie.
9640 * fileread.h (Input_file::find_fie): New
9641 * plugin.cc (set_extra_library_path): New.
9642 (Plugin::load): Add set_extra_library_path to the transfer vector.
9643 (Plugin_manager::set_extra_library_path): New.
9644 (Plugin_manager::add_input_file): Use the extra search path if set.
9645 (set_extra_library_path(): New.
9646 * plugin.h (Plugin_manager): Add set_extra_library_path and
9647 extra_search_path_.
9648
9649 2010-06-19 Cary Coutant <ccoutant@google.com>
9650
9651 * layout.cc (gdb_sections): Add .debug_types.
9652 (lines_only_debug_sections): Likewise.
9653
9654 2010-06-18 Rafael Espindola <espindola@google.com>
9655
9656 * plugin.cc (add_input_file,add_input_library)
9657 (Plugin_manager::add_input_file): Make filename arguments const.
9658 * plugin.h (Plugin_manager::add_input_file): Make filename arguments
9659 const.
9660
9661 2010-06-16 Doug Kwan <dougkwan@google.com>
9662
9663 * arm.cc (Target_arm::do_finalize_sections): Do not emit an
9664 .ARM.attributes section if we have not merged any input
9665 attributes sections.
9666
9667 2010-06-15 Viktor Kutuzov <vkutuzov@accesssoftek.com>
9668
9669 * arm.cc: Allow combining objects with no EABI version
9670 information.
9671
9672 2010-06-15 Rafael Espindola <espindola@google.com>
9673
9674 * plugin.cc (Plugin_hook::run): Set in_real_elf for the start symbol.
9675
9676 2010-06-15 Viktor Kutuzov <vkutuzov@accesssoftek.com>
9677
9678 * fileread.cc: Only #include <sys/uio.h> if HAVE_READV.
9679 (struct iovec): Correct !HAVE_READV definition.
9680
9681 2010-06-10 Cary Coutant <ccoutant@google.com>
9682
9683 * object.cc (Sized_relobj::do_layout): Defer layout for reloc sections.
9684 (Sized_relobj::do_layout_deferred_sections): Do layout for deferred
9685 reloc sections.
9686 * object.h (Sized_relobj::deferred_layout_relocs_): New data member.
9687
9688 PR 11683
9689 * symtab.h (Symbol::is_placeholder): New member function.
9690 * target-reloc.h (relocate_section): Check for placeholder symbols.
9691
9692 * testsuite/Makefile.am (plugin_test_8): New test.
9693 (plugin_test_9): New test.
9694 * testsuite/Makefile.in: Regenerate.
9695
9696 2010-06-09 Nick Clifton <nickc@redhat.com>
9697
9698 * yyscript.y (input_list_element): Allow strings prefixed with
9699 the '-' character. Treat these as libraries.
9700 * script.cc (script_add_library): New function. Adds a library
9701 specified by "-l<name>" found in an input script.
9702 * script-c.h: Add prototype for script_add_library.
9703
9704 2010-06-07 Doug Kwan <dougkwan@google.com>
9705
9706 * arm.cc (Target_arm::do_relax): Reserve more space for stubs.
9707 Restrict stub-group size to be within long conditional branch
9708 range when working around cortex-A8 erratum.
9709
9710 2010-06-07 Damien Diederen <dd@crosstwine.com>
9711
9712 * gold-threads.cc (Lock_impl_threads::Lock_impl_threads): Correct
9713 #ifdef typo.
9714
9715 2010-06-03 Sriraman Tallam <tmsriram@google.com>
9716
9717 PR gold/11658
9718 * output.cc
9719 (Output_section::Input_section_sort_entry::compare_section_ordering):
9720 Change to return non-zero correctly.
9721 (Output_section::Input_section_sort_section_order_index_compare
9722 ::operator()): Change to fix ambiguity in comparisons.
9723
9724 2010-06-01 Sriraman Tallam <tmsriram@google.com>
9725
9726 * gold.h (is_wildcard_string): New function.
9727 * layout.cc (Layout::layout): Pass this pointer to add_input_section.
9728 (Layout::layout_eh_frame): Ditto.
9729 (Layout::find_section_order_index): New method.
9730 (Layout::read_layout_from_file): New method.
9731 * layout.h (Layout::find_section_order_index): New method.
9732 (Layout::read_layout_from_file): New method.
9733 (Layout::input_section_position_): New private member.
9734 (Layout::input_section_glob_): New private member.
9735 * main.cc (main): Call read_layout_from_file here.
9736 * options.h (--section-ordering-file): New option.
9737 * output.cc (Output_section::input_section_order_specified_): New
9738 member.
9739 (Output_section::Output_section): Initialize new member.
9740 (Output_section::add_input_section): Add new parameter.
9741 Keep input sections when --section-ordering-file is used.
9742 (Output_section::set_final_data_size): Sort input sections when
9743 section ordering file is specified.
9744 (Output_section::Input_section_sort_entry): Add new parameter.
9745 Check sorting type.
9746 (Output_section::Input_section_sort_entry::compare_section_ordering):
9747 New method.
9748 (Output_section::Input_section_sort_compare::operator()): Change to
9749 consider section_order_index.
9750 (Output_section::Input_section_sort_init_fini_compare::operator()):
9751 Change to consider section_order_index.
9752 (Output_section::Input_section_sort_section_order_index_compare
9753 ::operator()): New method.
9754 (Output_section::sort_attached_input_sections): Change to sort
9755 according to section order when specified.
9756 (Output_section::add_input_section<32, true>): Add new parameter.
9757 (Output_section::add_input_section<64, true>): Add new parameter.
9758 (Output_section::add_input_section<32, false>): Add new parameter.
9759 (Output_section::add_input_section<64, false>): Add new parameter.
9760 * output.h (Output_section::add_input_section): Add new parameter.
9761 (Output_section::input_section_order_specified): New
9762 method.
9763 (Output_section::set_input_section_order_specified): New method.
9764 (Input_section::Input_section): Initialize section_order_index_.
9765 (Input_section::section_order_index): New method.
9766 (Input_section::set_section_order_index): New method.
9767 (Input_section::section_order_index_): New member.
9768 (Input_section::Input_section_sort_section_order_index_compare): New
9769 struct.
9770 (Output_section::input_section_order_specified_): New member.
9771 * script-sections.cc (is_wildcard_string): Delete and move modified
9772 method to gold.h.
9773 (Output_section_element_input::Output_section_element_input): Modify
9774 call to is_wildcard_string.
9775 (Output_section_element_input::Input_section_pattern
9776 ::Input_section_pattern): Ditto.
9777 (Output_section_element_input::Output_section_element_input): Ditto.
9778 * testsuite/Makefile.am (final_layout): New test case.
9779 * testsuite/Makefile.in: Regenerate.
9780 * testsuite/final_layout.cc: New file.
9781 * testsuite/final_layout.sh: New file.
9782
9783 2010-06-01 Rafael Espindola <espindola@google.com>
9784
9785 * plugin.cc (Plugin::load): Pass the output name to the plugin.
9786
9787 2010-06-01 Rafael Espindola <espindola@google.com>
9788
9789 * plugin.cc (Sized_pluginobj::::do_add_symbols): Correctly set the
9790 visibility of symbols.
9791
9792 2010-05-27 Doug Kwan <dougkwan@google.com>
9793
9794 * object.cc (Sized_relobj::do_finalize_local_symbols): Use offset
9795 from start of output section instead of address for a local symbol
9796 in a merged or relaxed section when doing a relocatable link.
9797
9798 2010-05-26 Rafael Espindola <espindola@google.com>
9799
9800 PR 11604
9801 * gold/object.cc(Sized_relobj::do_layout_deferred_sections): Avoid
9802 adding sections the garbage collector removed.
9803 * gold/testsuite/Makefile.am: Add test.
9804 * gold/testsuite/Makefile.in: Regenerate.
9805 * gold/testsuite/plugin_test_7.sh: New.
9806 * gold/testsuite/plugin_test_7_1.c: New.
9807 * gold/testsuite/plugin_test_7_2.c: New.
9808
9809 2010-05-26 Rafael Espindola <espindola@google.com>
9810
9811 * script-sections.cc (Output_section_definition::set_section_addresses):
9812 Check for --section-start.
9813
9814 2010-05-26 Doug Kwan <dougkwan@google.com>
9815
9816 * arm.cc (Arm_scan_relocatable_relocs): New class.
9817 (Target_arm::relocate_special_relocatable): New method.
9818 (Arm_relocate_functions::arm_branch_common): Handle relocatable link.
9819 (Arm_relocate_functions::thumb_branch_common): Same.
9820 (Target_arm::scan_relocatable_relocs): Use Arm_scan_relocatable_relocs
9821 instead of Default_scan_relocatable_relocs.
9822 * target-reloc.h (relocate_for_relocatable): Let target handle
9823 relocation strategy Relocatable_relocs::RELOC_SPECIAL.
9824 * target.h (Sized_target::relocate_special_relocatable): New method.
9825
9826 2010-05-25 Viktor Kutuzov <vkutuzov@accesssoftek.com>
9827
9828 * timer.cc: Only #include <sys/times.h> if HAVE_TIMES is defined.
9829
9830 2010-05-23 Doug Kwan <dougkwan@google.com>
9831
9832 * arm.cc (Arm_input_section::do_output_offset): Use convert_types
9833 instead of a cast.
9834 (Target_arm::apply_cortex_a8_workaround): Rewrite a conditional branch
9835 with a direct branch, not a conditional branch, to a stub.
9836 * merge.cc (Output_merge_base::record_input_section): New method
9837 defintion.
9838 (Output_merge_data::do_add_input_section): Record input section if
9839 keeps-input-sections flag is set.
9840 (Output_merge_string::do_add_input_section): Ditto.
9841 * merge.h (Output_merge_base::Output_merge_base): Initialize new data
9842 members KEEPS_INPUT_SECTIONS_, FIRST_RELOBJ_, FIRST_SHNDX_ and
9843 INPUT_SECTIONS_.
9844 (Output_merge_base::keeps_input_sections,
9845 Output_merge_base::set_keeps_input_sections,
9846 Output_merge_base::first_relobj, Output_merge_base::first_shndx): New
9847 method definitions.
9848 (Output_merge_base::Input_sections): New type declaration.
9849 (Output_merge_base::input_sections_begin,
9850 Output_merge_base::input_sections_end,
9851 Output_merge_base::do_set_keeps_input_sections): New method definitions.
9852 (Output_merge_base::bool keeps_input_sections_,
9853 Output_merge_base::first_relobj_, Output_merge_base::first_shndx_,
9854 Output_merge_base::input_sections_): New data members.
9855 (Output_merge_data::do_set_keeps_input_sections): New method
9856 defintion.
9857 (Output_merge_string::do_set_keeps_input_sections): Ditto.
9858 * output.cc (Output_section::Input_section::relobj): Move method
9859 defintion from class declaration to here and handle merge sections.
9860 (Output_section::Input_section::shndx): Ditto.
9861 (Output_section::Output_section): Remove initializations of removed
9862 data members and initialize new data member LOOKUP_MAPS_.
9863 (Output_section::add_input_section): Set keeps-input-sections flag
9864 for a newly created merge output section as appropriate. Adjust code
9865 to use Output_section_lookup_maps class.
9866 (Output_section::add_relaxed_input_section): Adjst code for lookup
9867 maps code refactoring.
9868 (Output_section::add_merge_input_section): Add a new parameter
9869 KEEPS_INPUT_SECTION. Adjust code to use Output_section_lookup_maps
9870 class. If adding input section to a newly created merge output
9871 section fails, remove the new merge section.
9872 (Output_section::convert_input_sections_in_list_to_relaxed_input_sections):
9873 Adjust code for use of the Output_section_lookup_maps class.
9874 (Output_section::find_merge_section): Ditto.
9875 (Output_section::build_lookup_maps): New method defintion.
9876 (Output_section::find_relaxed_input_section): Adjust code to use
9877 Output_section_lookup_maps class.
9878 (Output_section::get_input_sections): Export merge sections. Adjust
9879 code to use Output_section_lookup_maps class.
9880 (Output_section:::add_script_input_section): Adjust code to use
9881 Output_section_lookup_maps class. Update lookup maps for merge
9882 sections also.
9883 (Output_section::discard_states): Use Output_section_lookup_maps.
9884 (Output_section::restore_states): Same.
9885 * output.h (Merge_section_properties): Move class defintion out of
9886 Output_section.
9887 (Output_section_lookup_maps): New class.
9888 (Output_section::Input_section::is_merge_section): New method
9889 defintion.
9890 (Output_section::Input_section::relobj): Move defintion out of class
9891 defintion. Declare method only.
9892 (Output_section::Input_section::shndx): Ditto.
9893 (Output_section::Input_section::output_merge_base): New method defintion.
9894 (Output_section::Input_section::u2_.pomb): New union field.
9895 (Output_section::Merge_section_by_properties_map,
9896 Output_section::Output_section_data_by_input_section_map,
9897 Output_section::Ouptut_relaxed_input_section_by_input_section_map):
9898 Remove types.
9899 (Output_section::add_merge_input_section): Add new parameter
9900 KEEPS_INPUT_SECTIONS.
9901 (Output_section::build_lookup_maps): New method declaration.
9902 (Output_section::merge_section_map_,
9903 Output_section::merge_section_by_properties_map_,
9904 Output_section::relaxed_input_section_map_,
9905 Output_section::is_relaxed_input_section_map_valid_): Remove data
9906 members.
9907 (Output_section::lookup_maps_): New data member.
9908
9909 2010-05-21 Doug Kwan <dougkwan@google.com>
9910
9911 PR gold/11619
9912 * arm.cc (Arm_input_section::do_output_offset): Add a cast to
9913 avoid a compilation error.
9914
9915 2010-05-19 Rafael Espindola <espindola@google.com>
9916
9917 * script-sections.cc (Output_section_definition::allocate_to_segment):
9918 Update the phdrs_list even when the output section is NULL.
9919 * testsuite/Makefile.am: Add test.
9920 * testsuite/Makefile.in: Regenerate.
9921 * testsuite/script_test_9.cc: New.
9922 * testsuite/script_test_9.sh: New.
9923 * testsuite/script_test_9.t: New.
9924
9925 2010-05-19 Doug Kwan <dougkwan@google.com>
9926
9927 * arm.cc (Arm_input_section::original_size): New method.
9928 (Arm_input_section::do_addralign): Add a cast.
9929 (Arm_input_section::do_output_offset): Remove static cast.
9930 (Arm_input_section::original_addralign,
9931 Arm_input_section::original_size_): Change type to uint32_t.
9932 (Arm_input_section::init): Add safe casts for section alignment
9933 and size.
9934 (Arm_input_section::set_final_data_size): Do not set address and
9935 offset of stub table.
9936 (Arm_output_section::fix_exidx_coverage): Change use of of
9937 Output_section::Simple_input_section to that of
9938 Output_section::Input_section.
9939 (Target_arm::do_relax): Set addresses and file offsets of Stub_tables
9940 except for the first pass.
9941 * output.cc (Output_section::get_input_sections): Change type of
9942 input_sections to std::list<Input_section>.
9943 (Output_section::add_script_input_section): Rename from
9944 Output_section::add_simple_input_section. Change type of SIS
9945 parameter from Simple_input_section to Input_section.
9946 * output.h (Output_section::Simple_input_section): Remove class.
9947 (Output_section::Input_section): Change class visibility to public.
9948 (Output_section::Input_section::addralign): Use stored alignments
9949 for special input sections if set.
9950 (Output_section::Input_section::set_addralign): New method.
9951 (Output_section::get_input_sections): Change parameter type from
9952 list of Simple_input_section to list of Input_section.
9953 (Output_section::add_script_input_section): Rename from
9954 Output_section::add_simple_input_section. Change first parameter's
9955 type from Simple_input_section to Input_section and remove the
9956 second and third parameters.
9957 * script-sections.cc (Input_section::Input_section_list): Change
9958 type to list of Output_section::Input_section/
9959 (Input_section_info::Input_section_info): Change parameter type of
9960 INPUT_SECTION to Output_section::Input_section.
9961 (Input_section_info::input_section): Change return type.
9962 (Input_section_info::input_section_): Change type to
9963 Output_section::Input_section.
9964 (Output_section_element_input::set_section_addresses): Adjust code
9965 to use Output_section::Input_section instead of
9966 Output_section::Simple_input_section. Adjust code for renaming
9967 of Output_section::add_simple_input_section.
9968 (Orphan_output_section::set_section_addresses): Ditto.
9969
9970 2010-05-18 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
9971
9972 * gold.h (Unordered_multimap, Unordered_map): Fix defines for
9973 when neither HAVE_TR1_UNORDERED_MAP nor HAVE_EXT_HASH_MAP are set.
9974
9975 2010-05-18 Rafael Espindola <espindola@google.com>
9976
9977 * options.cc (General_options::finalize): Handle -nostdlib.
9978 * options.h (nostdlib): New option.
9979 * script.cc (script_add_search_dir): Handle -nostdlib.
9980
9981 2010-05-12 Doug Kwan <dougkwan@google.com>
9982
9983 * arm.cc (Target_arm::do_finalize_sections): Create an empty
9984 attributes section only if there no attributes section after merging.
9985 (Target_arm::merge_object_attributes): Move value of
9986 Tag_MPextension_use_legacy to that of Tag_MPextension_use.
9987 Handle Tag_DIV_use and Tag_MPextension_use_legacy.
9988 * testsuite/Makefile.am (check_SCRIPTS): Add arm_attr_merge.sh
9989 (check_DATA): Add arm_attr_merge_6.stdout, arm_attr_merge_6r_stdout
9990 and arm_attr_merge_7.stdout.
9991 (arm_attr_merge_6.stdout, arm_attr_merge_6 arm_attr_merge_6a.o
9992 arm_attr_merge_6b.o, arm_attr_merge_6r.stdout, arm_attr_merge_6r,
9993 arm_attr_merge_7.stdout, arm_attr_merge_7, arm_attr_merge_7a.o,
9994 arm_attr_merge_7b.o): New rules.
9995 (MOSTLYCLEANFILES): Add arm_attr_merge_6, arm_attr_merge_6r and
9996 arm_attr_merge_7
9997 * testsuite/Makefile.in: Regenerate.
9998 * testsuite/arm_attr_merge.sh: New file.
9999 * testsuite/arm_attr_merge_[67][ab].s: Same.
10000
10001 2010-05-05 Nick Clifton <nickc@redhat.com>
10002
10003 * po/es.po: Updated Spanish translation.
10004
10005 2010-04-27 H.J. Lu <hongjiu.lu@intel.com>
10006
10007 * Makefile.am (install-exec-local): Properly install gold as
10008 default cross linker.
10009 * Makefile.in: Regenerated.
10010
10011 2010-04-27 H.J. Lu <hongjiu.lu@intel.com>
10012 Nick Clifton <nickc@redhat.com>
10013
10014 * configure.ac (install_as_default): Define and set to false
10015 unless --enable-gold or --enable-gold=both/gold has been
10016 specified.
10017 * configure: Regenerate.
10018
10019 * Makefile.am (install-exec-local): Install the executable as
10020 'ld.gold'. If install_as_default is true then also install it as
10021 'ld'.
10022 * Makefile.in: Regenerated.
10023
10024 2010-04-24 Ian Lance Taylor <iant@google.com>
10025
10026 * layout.cc (Layout::layout_reloc): In relocatable link don't
10027 combine reloc sections for grouped sections.
10028
10029 2010-04-23 Sriraman Tallam <tmsriram@google.com>
10030
10031 * gc.h (gc_process_relocs): Pass information on relocs pointing to
10032 sections that are not ordinary to icf.
10033 * icf.cc (get_section_contents): Handle relocation pointing to section
10034 with no object or shndx information.
10035 * testsuite/Makefile.am: Remove icf_virtual_function_folding_test.sh
10036 * testsuite/Makefile.in: Regenerate.
10037 * testsuite/icf_virtual_function_folding_test.cc: Remove printf.
10038 * testsuite/icf_virtual_function_folding_test.sh: Delete file.
10039
10040 2010-04-22 Ian Lance Taylor <iant@google.com>
10041
10042 * expression.cc (Expression::Expression_eval_info): Add
10043 result_alignment_pointer field.
10044 (Expression::eval_with_dot): Add result_alignment_pointer
10045 parameter. Change all callers.
10046 (Expression::eval_maybe_dot): Likewise.
10047 (class Binary_expression): Add alignment_pointer parameter to
10048 left_value and right_value. Change all callers.
10049 (BINARY_EXPRESSION): Set result alignment.
10050 (class Trinary_expression): Add alignment_pointer parameter to
10051 arg2_value and arg3_value. Change all callers.
10052 (Trinary_cond::value): Set result alignment.
10053 (Max_expression::value, Min_expression::value): Likewise.
10054 (Align_expression::value): Likewise.
10055 * script-sections.cc (class Sections_element): Add dot_alignment
10056 parameter to set_section_addresses virtual function. Update
10057 instantiations.
10058 (class Output_section_element): Likewise.
10059 (Script_sections::create_segments): Add dot_alignment parameter.
10060 Change all callers.
10061 (Script_sections::create_segments_from_phdrs_clause): Likewise.
10062 (Script_sections::set_phdrs_clause_addresses): Likewise.
10063 * script-sections.h: Update declarations.
10064 * script.h: Update declarations.
10065 * output.h (Output_segment::set_minimum_p_align): Don't decrease
10066 min_p_align.
10067 * testsuite/script_test_3.t: Set large alignment.
10068 * testsuite/script_test_3.sh: Make sure that at least one LOAD
10069 segment has expected alignment.
10070
10071 2010-04-22 Nick Clifton <nickc@redhat.com>
10072
10073 * po/gold.pot: Updated by the Translation project.
10074 * po/vi.po: Updated Vietnamese translation.
10075
10076 2010-04-22 H.J. Lu <hongjiu.lu@intel.com>
10077
10078 * testsuite/Makefile.am (check_PROGRAMS): Add
10079 icf_virtual_function_folding_test.
10080 * testsuite/Makefile.in: Regenerated.
10081
10082 2010-04-15 Andrew Haley <aph@redhat.com>
10083
10084 * options.h (merge_exidx_entries): New option.
10085 * arm.cc (class Arm_exidx_fixup): Add new arg, merge_exidx_entries.
10086 (class Arm_exidx_fixup::merge_exidx_entries_): New member.
10087 (Output_section::fix_exidx_coverage): Add new arg, merge_exidx_entries.
10088 (Target_arm::merge_exidx_entries): New function.
10089 (process_exidx_entry): Don't merge if merge_exidx_entries_ is false.
10090 (Arm_output_section::fix_exidx_coverage): Pass merge_exidx_entries
10091 to Arm_exidx_fixup constructor.
10092 Add new arg, merge_exidx_entries.
10093 (Target_arm::fix_exidx_coverage): pass merge_exidx_entries to
10094 Arm_output_section::fix_exidx_coverage.
10095
10096 2010-04-18 Sriraman Tallam <tmsriram@google.com>
10097
10098 * icf.cc (get_section_contents): Check for preemptible functions.
10099 Ignore addend when appropriate.
10100 * symtab.cc (should_add_dynsym_entry): Add new parameter. Check for
10101 section folded.
10102 (add_from_relobj): Check for section folded.
10103 (set_dynsym_indexes): Fix call to should_add_dynsym_entry.
10104 * symtab.h (should_add_dynsym_entry): Add new parameter.
10105 * target-reloc.h (scan_relocs): Check for section folded.
10106 * x86_64.cc (Target_x86_64::Scan::possible_function_pointer_reloc):
10107 Check reloc types for function pointers in shared objects.
10108 * testsuite/Makefile.am (icf_virtual_function_folding_test): New test
10109 case.
10110 (icf_preemptible_functions_test): New test case.
10111 (icf_string_merge_test): New test case.
10112 * testsuite.Makefile.in: Regenerate.
10113 * testsuite/icf_safe_so_test.sh: Change to not fold foo_glob and
10114 bar_glob. Refactor code.
10115 * testsuite/icf_preemptible_functions_test.cc: New file.
10116 * testsuite/icf_preemptible_functions_test.sh: New file.
10117 * testsuite/icf_string_merge_test.cc: New file.
10118 * testsuite/icf_string_merge_test.sh: New file.
10119 * testsuite/icf_virtual_function_folding_test.cc: New file.
10120 * testsuite/icf_virtual_function_folding_test.sh: New file.
10121
10122 2010-04-14 Doug Kwan <dougkwan@google.com>
10123
10124 * arm.cc (Arm_output_section::fix_exidx_coverage): Mark object
10125 for local symbol recounting if we remove a section due to ICF.
10126 * gold.cc (queue_middle_gc_tasks): Create a dummy blocker if
10127 there are no regular objects in input.
10128
10129 2010-04-13 Doug Kwan <dougkwan@google.com>
10130
10131 * arm.cc (Arm_input_section::set_final_data_size): Compute
10132 accurate final data size instead of using current data size.
10133
10134 2010-04-09 Doug Kwan <dougkwan@google.com>
10135
10136 * layout.cc (Layout::choose_output_section): Handle script section
10137 types.
10138 (Layout::make_output_section_for_script): Add section type parameter.
10139 Handle script section types.
10140 * layout.h (Layout::make_output_section_for_script): Add section
10141 type parameter.
10142 * output.cc (Output_section::Output_section): Initialize data member
10143 is_noload_.
10144 (Output_section::do_reset_address_and_file_offset): Do not set address
10145 to 0 if section is a NOLOAD section.
10146 * output.h (Output_section::is_noload): New method.
10147 (Output_section::set_is_noload): Ditto.
10148 (Output_section::is_noload_): New data member.
10149 * script-c.h (Script_section_type): New enum type.
10150 (struct Parser_output_section_header): Add new file section_type.
10151 * script-sections.cc (Sections_element::output_section_name): Add
10152 parameter for returning script section type.
10153 (Output_section_definition::output_section_name): Ditto.
10154 (Output_section_definition::section_type)P; New method.
10155 (Output_section_definiton::script_section_type_name): Ditto.
10156 (Output_section_definition::script_section_type_): New data member.
10157 (Output_section_definition::Output_section_definition): Initialize
10158 data member Output_section_definition::script_section_type_.
10159 (Output_section_definition::create_sections): Pass script section type
10160 to Layout::make_output_section_for_script.
10161 (Output_section_definition::output_section_name): Return script
10162 section type to caller.
10163 (Output_section_definition::set_section_address): Do not advance
10164 dot value and load address if section type is NOLOAD. Set address
10165 of NOLOAD sections regardless of section flags.
10166 (Output_section_definition::print): Print section type if it is
10167 not SCRIPT_SECTION_TYPE_NONE.
10168 (Output_section_definition::section_type): New method.
10169 (Output_section_definition::script_section_type_name): Ditto.
10170 (Script_sections::output_section_name): Add new parameter
10171 PSECTION_TYPE for returning script section type. Pass it to
10172 section elements. Handle discard sections.
10173 (Sort_output_sections::operator()): Handle NOLOAD sections.
10174 * script-sections.h (Script_sections::Section_type): New enum type.
10175 (Script_sections::output_section_name): Add a new parameter for
10176 returning script section type.
10177 * script.cc (script_keyword_parsecodes): Add keywords COPY, DSECT,
10178 INFO and NOLOAD.
10179 * yyscript.y (union): Add new field SECTION_TYPE.
10180 (COPY, DSECT, INFO, NOLOAD): New tokens.
10181 (opt_address_and_section_type): Change type to output_section_header.
10182 (section_type): New non-terminal
10183 (section_header): Handle section type.
10184 (opt_address_and_section_type): Return section type value.
10185
10186 2010-04-09 H.J. Lu <hongjiu.lu@intel.com>
10187
10188 * testsuite/plugin_common_test_1.c (foo): Add prototype.
10189 * testsuite/plugin_common_test_2.c (foo): Likewise.
10190
10191 2010-04-08 Doug Kwan <dougkwan@google.com>
10192
10193 * merge.cc (Output_merge_data::set_final_data_size): Handle empty
10194 Output_merge_data.
10195 * output.cc (Output_section::add_merge_input_section): Simplify
10196 code and return status of Output_merge_base::add_input_section.
10197 Update merge section map only if Output_merge_base::add_input_section
10198 returns true.
10199
10200 2010-04-07 Doug Kwan <dougkwan@google.com>
10201
10202 * arm.cc (Arm_relobj::scan_section_for_cortex_a8_erratum): Warn
10203 if section is marked as containing instructions but has no mapping
10204 symbols.
10205 (Arm_relobj::do_count_local_symbols): Call adjust_sym_shndx to get
10206 correct section index.
10207 (Arm_relobj::find_linked_text_section): Ditto.
10208
10209 2010-04-07 Cary Coutant <ccoutant@google.com>
10210
10211 * archive.cc (include_member): Destroy Read_symbols_data object before
10212 releasing file.
10213 * object.cc (Read_symbols_data::~Read_symbols_data) New destructor.
10214 * object.h (Read_symbols_data::Read_symbols_data) New constructor.
10215 (Read_symbols_data::~Read_symbols_data) New destructor.
10216 (Section_relocs::Section_relocs) New constructor.
10217 (Section_relocs::~Section_relocs) New destructor.
10218 (Read_relocs_data::Read_relocs_data) New constructor.
10219 (Read_relocs_data::~Read_relocs_data) New destructor.
10220 * testsuite/binary_unittest.cc (Sized_binary_test): Set sd member
10221 pointers to NULL after deleting.
10222
10223 2010-04-07 Doug Kwan <dougkwan@google.com>
10224
10225 * arm.cc: Replace "endianity" with "endianness" in comments.
10226 (Arm_exidx_cantunwind): Ditto.
10227 (Arm_relobj::Arm_relobj): Initialize merge_flags_and_attribures.
10228 (Arm_relobj::merge_flags_and_attributes): New method.
10229 (Arm_relobj::merge_flags_and_attributes_): New data member.
10230 (Arm_exidx_cantunwind::do_fixed_endian_write): Fix formatting.
10231 (Arm_relobj::scan_sections_for_stubs): Ditto.
10232 (Arm_relobj::do_read_symbols): Check to see if we really want to
10233 merge processor-specific flags and attributes. Exit early if
10234 an object is empty except for section names and the undefined symbol.
10235 (Target_arm::do_finalize_sections): Move check for ELF format to
10236 Arm_relobj::do_read_symbols. Merge processor specific flags and
10237 attributes from a regular object only when we have determined that
10238 it is aapropriate. Do not create an .ARM.attributes section in
10239 output if there is no regular input object.
10240 (Target_arm::merge_processor_specific_flags): Check
10241 --warn-mismatch before printing any error.
10242 (Target_arm::merge_object_attributes): Ditto.
10243 * gold.cc (queue_middle_tasks): Handle the case in which there is
10244 no regular object in input.
10245 * options.cc (General_options::parse_EB): New method.
10246 (General_options::parse_EL): Same.
10247 (General_options::General_options): Initialize endianness_.
10248 * options.h (-EB, -EL, -no-pipeline-knowledge, -p, --warn-mismatch):
10249 New options.
10250 (General_options::Endianness): New enum.
10251 (General_options::endianness): New method.
10252 (General_options::endianness_): New data member.
10253 * parameters.cc (Parameters::set_options): Check target endianness.
10254 (Parameters::set_target_once): Ditto.
10255 (Parameters::check_target_endianness): New method.
10256 (parameters_force_valid_target): If either -EL or -EB is specified,
10257 use it to define endianness of default target.
10258 * parameters.h (Parameters::check_target_endianness): New method
10259 declaration.
10260 * target.h (class Target): Change "endianity" to "endianness"
10261 in comments.
10262
10263 2010-04-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
10264
10265 * configure.ac (AM_INIT_AUTOMAKE): Add option no-dist.
10266 * configure: Regenerate.
10267 * Makefile.in: Regenerate.
10268 * testsuite/Makefile.in: Regenerate.
10269
10270 2010-04-06 Cary Coutant <ccoutant@google.com>
10271
10272 gcc PR lto/42757
10273 * plugin.cc (Pluginobj::get_symbol_resolution_info): Check for
10274 prevailing definitions of common symbols.
10275 * testsuite/plugin_test_6.sh: New test case.
10276 * testsuite/plugin_common_test_1.c: New test case.
10277 * testsuite/plugin_common_test_2.c: New test case.
10278 * testsuite/Makefile.am (plugin_test_6): New test case.
10279 * testsuite/Makefile.in: Regenerate.
10280
10281 2010-04-06 Nick Clifton <nickc@redhat.com>
10282
10283 * po/vi.po: New Vietnamese translation.
10284
10285 2010-03-30 Doug Kwan <dougkwan@google.com>
10286
10287 * arm.cc (Target_arm::using_thumb_only): Handle v6-M
10288
10289 2010-03-25 Doug Kwan <dougkwan@google.com>
10290
10291 * gold/arm.cc (Arm_exidx_fixup::update_offset_map): Rearrange code
10292 to avoid a conversion warning on a 32-bit host.
10293
10294 2010-03-24 Ian Lance Taylor <iant@google.com>
10295
10296 * testsuite/script_test_3.t: Add a TLS segment.
10297 * testsuite/Makefile.am (check_PROGRAMS): Add
10298 tls_phdrs_script_test.
10299 (tls_phdrs_script_test_SOURCES): Define.
10300 (tls_phdrs_script_test_DEPENDENCIES): Define.
10301 (tls_phdrs_script_test_LDFLAGS): Define.
10302 (tls_phdrs_script_test_LDADD): Define.
10303 * testsuite/Makefile.in: Rebuild.
10304
10305 2010-03-23 Cary Coutant <ccoutant@google.com>
10306
10307 * fileread.cc (find_or_make_view): Fix comment.
10308
10309 2010-03-23 Ian Lance Taylor <iant@google.com>
10310
10311 * script-sections.cc (class Orphan_section_placement): Define
10312 PLACE_TLS and PLACE_TLS_BSS.
10313 (Orphan_section_placement::Orphan_section_placement): Initialize
10314 new places.
10315 (Orphan_section_placement::find_place): Handle SHF_TLS sections.
10316 * testsuite/Makefile.am (check_PROGRAMS): Add tls_script_test.
10317 (tls_script_test_SOURCES): Define.
10318 (tls_script_test_DEPENDENCIES): Define.
10319 (tls_script_test_LDFLAGS): Define.
10320 (tls_script_test_LDADD): Define.
10321 * testsuite/Makefile.in: Rebuild.
10322
10323 2010-03-22 Doug Kwan <dougkwan@google.com>
10324
10325 * arm.cc (Arm_relocate_functions::abs8,
10326 Arm_relocate_functions::abs16): Use correct check for overflow
10327 specified in the ARM ELF specs.
10328 (Arm_relocate_functions): thumb_branch_common. Handle bit 1 of branch
10329 target of a BLX instruction specially.
10330 (Reloc_stub::stub_type_for_reloc): Ditto.
10331 (Relocate::relocate): Use symbolic names instead of numeric relocation
10332 codes to report error.
10333 (Target_arm::do_relox): Reduce default stub-group size for Cortex-A8
10334 workaround.
10335 * testsuite/Makefile.am (check_DATA): add thumb_blx_in_range.stdout,
10336 thumb_blx_out_of_range.stdout, thumb2_blx_in_range.stdout and
10337 thumb2_blx_out_of_range.stdout
10338 (thumb_bl_out_of_range, thumb_bl_out_of_range.o,
10339 thumb2_bl_out_of_range, thumb2_bl_out_of_range.o): Fix dependenices.
10340 (thumb_blx_in_range.stdout, thumb_blx_in_range, thumb_blx_in_range.o,
10341 thumb_blx_out_of_range.stdout, thumb_blx_out_of_range,
10342 thumb_blx_out_of_range.o, thumb2_blx_in_range.stdout,
10343 thumb2_blx_in_range, thumb2_blx_in_range.o,
10344 thumb2_blx_out_of_range.stdout, thumb2_blx_out_of_range,
10345 thumb2_blx_out_of_range.o): New rules.
10346 (MOSTLYCLEANFILES): Add thumb_blx_in_range, thumb_blx_out_of_range,
10347 thumb2_blx_in_range and thumb2_blx_out_of_range.
10348 * testsuite/Makefile.in: Regenerate.
10349 * arm_branch_in_range.sh: Add tests for THUMB BLX.
10350 * testsuite/thumb_blx_in_range.s: New file.
10351 * testsuite/thumb_blx_out_of_range.s: New file.
10352
10353 2010-03-22 Rafael Espindola <espindola@google.com>
10354
10355 * archive.cc (Should_include): Move to archive.h.
10356 (should_include_member): Make it a member of Archive.
10357 (Lib_group): New.
10358 (Add_lib_group_symbols): New.
10359 * archive.h: Include options.h.
10360 (Archive_member): Moved from Archive.
10361 (Should_include): Moved from archive.cc.
10362 (Lib_group): New.
10363 (Add_lib_group_symbols): New.
10364 * dynobj.cc (do_should_include_member): New.
10365 * dynobj.h (do_should_include_member): New.
10366 * gold.cc (queue_initial_tasks): Update call to queue.
10367 * main.cc (main): Print lib group stats.
10368 * object.cc (do_should_include_member): New.
10369 * object.h: Include archive.h.
10370 (Object::should_include_member): New.
10371 (Object::do_should_include_member): New.
10372 (Sized_relobj::do_should_include_member): New.
10373 * options.cc (General_options::parse_start_lib): New.
10374 (General_options::parse_end_lib): New.
10375 (Input_arguments::add_file): Handle lib groups.
10376 (Input_arguments::start_group): Check we are not in a lib.
10377 (Input_arguments::start_lib): New.
10378 (Input_arguments::end_lib): New.
10379 * options.h (General_options): Add start_lib and end_lib.
10380 (Input_argument::lib_): New.
10381 (Input_argument::lib): New.
10382 (Input_argument::is_lib): New.
10383 (Input_file_lib): New.
10384 (Input_arguments::in_lib_): New.
10385 (Input_arguments::in_lib): New.
10386 (Input_arguments::start_lib): New.
10387 (Input_arguments::end_lib_): New.
10388 * plugin.cc (Pluginobj::get_symbol_resolution_info): Mark symbols
10389 in unused members as preempted.
10390 (Sized_pluginobj::do_should_include_member): New.
10391 * plugin.h (Sized_pluginobj::do_should_include_member): New.
10392 * readsyms.cc (Read_symbols::locks): If we are just reading a member,
10393 return the blocker.
10394 (Read_symbols::do_whole_lib_group): New.
10395 (Read_symbols::do_lib_group): New.
10396 (Read_symbols::do_read_symbols): Handle lib groups.
10397 (Read_symbols::get_name): Handle lib groups.
10398 * readsyms.h (Read_symbols): Add an archive member pointer.
10399 (Read_symbols::do_whole_lib_group): New.
10400 (Read_symbols::do_lib_group): New.
10401 (Read_symbols::member_): New.
10402 * script.cc (read_input_script): Update call to queue_soon.
10403
10404 2010-03-19 Doug Kwan <dougkwan@google.com>
10405
10406 * arm.cc (Stub_table::Stub_table): Initialize new data members
10407 Stub_table::reloc_stubs_size_ and Stub_table::reloc_stubs_addralign_.
10408 (Stub_table::add_reloc_stub): Assign stub offset and update
10409 Stub_table::reloc_stubs_size_ and Stub_table::reloc_stubs_addralign_.
10410 (Stub_table::reloc_stubs_size_, Stub_table::reloc_stubs_addralign_):
10411 New data members.
10412 (Stub_table::update_data_size_and_addralign): Use
10413 Stub_table::reloc_stubs_size_ and Stub_table::reloc_stubs_addralign_
10414 instead of going over all reloc stubs.
10415 (Stub_table::finalize_stubs): Do not assign reloc stub offsets.
10416 * stringpool.cc (Stringpool_template::Stringpool_template): Initialize
10417 Stringpool_template::offset_ to size of Stringpool_char.
10418 (Stringpool_template::new_key_offset): Remove code to initialize
10419 Stringpool_template::offset_.
10420 * stringpool.h (Stringpool_template::set_no_zero_null): Set
10421 Stringpool_template::offset_ to zero.
10422
10423 2010-03-15 Doug Kwan <dougkwan@google.com>
10424
10425 * stringpool.cc (Stringpool_template::Stringpool_template): Initialize
10426 offset_.
10427 (Stringpool_template::new_key_offset): New method.
10428 (Stringpool_template::add_string): Assign offsets when adding new
10429 strings.
10430 (Stringpool_template::set_string_offsets): Do not set string offsets
10431 when not optimizing.
10432 * stringpool.h (Chunked_vector::Chunked_vector): Initialize data
10433 member size_.
10434 (Chunked_vector::clear): Clear size_.
10435 (Chunked_vector::reserve): Call reserve method of all Element_vectors.
10436 (Chunked_vector::size): Return size_.
10437 (Chunked_vector::push_back): Use size_ to find insert position.
10438 (Chunked_vector::size_): New data member.
10439 (Stringpool_template::set_no_zero_null): Assert string set is empty.
10440 (Stringpool_template::new_key_offset): New method declaration.
10441 (Stringpool_template::offset_): New data member.
10442
10443 2010-03-15 Rafael Espindola <espindola@google.com>
10444
10445 * readsyms.cc (Read_symbols::do_read_symbols): Update calls to
10446 Add_symbols' constructor.
10447 * readsyms.h (Add_symbols): Remove the input_group member.
10448
10449 2010-03-10 Ian Lance Taylor <iant@google.com>
10450
10451 * reloc.cc (Sized_relobj::split_stack_adjust_reltype): Call the
10452 target to ask whether a reference to a symbol requires a stack
10453 split.
10454 * target.h (Target::is_call_to_non_split): New function.
10455 (Target::do_is_call_to_non_split): Declare virtual function.
10456 * target.cc: Include "symtab.h".
10457 (Target::do_is_call_to_non_split): New function.
10458 * i386.cc (Target_i386::do_is_call_to_non_split): New function.
10459
10460 2010-03-10 Cary Coutant <ccoutant@google.com>
10461
10462 * fileread.cc (File_read::~File_read): Don't delete whole_file_view_.
10463 (File_read::open[1]): Remove initial mapping of whole_file_view_.
10464 (File_read::open[2]): Add whole_file_view_ to list of views.
10465 (File_read::make_view): Remove test of whole_file_view_.
10466 (File_read::find_or_make_view): Create whole_file_view_ if
10467 necessary.
10468 (File_read::clear_views): Replace bool parameter with enum;
10469 adjust all callers. Don't delete views with permanent data;
10470 do delete cached views and views from archives if
10471 --no-keep-files-mapped is set. Set whole_file_view_ to NULL
10472 if clearing the corresponding view.
10473 * fileread.h (File_read::Clear_views_mode): New enum.
10474 (File_read::View::is_permanent_view): New method.
10475 (File_read::clear_views): Replace bool parameter
10476 with enum; adjust all callers.
10477 * options.h (General_options): Change keep_files_mapped option;
10478 add map_whole_files.
10479 * readsyms.cc (Add_symbols::run): Delete sd_ object before
10480 releasing the file.
10481 * reloc.cc (Scan_relocs::run): Delete rd_ object before releasing
10482 the file.
10483
10484 2010-03-10 David S. Miller <davem@davemloft.net>
10485
10486 * sparc.cc (Target_sparc::Scan::local): Accept R_SPARC_WPLT30.
10487
10488 2010-03-09 Sriraman Tallam <tmsriram@google.com>
10489
10490 * icf.cc (get_section_contents): Add '@' marker after processing the
10491 merge reloc.
10492
10493 2010-03-08 Doug Kwan <dougkwan@google.com>
10494
10495 * gold/arm.cc (Arm_exidx_fixup::update_offset_map): Fix build breakage
10496 due to a conversion warning.
10497 (Arm_relobj::update_output_local_symbol_count): Check for local
10498 symbol with unset output index.
10499
10500 2010-03-05 Ian Lance Taylor <iant@google.com>
10501
10502 * options.h (class General_options): Add --spare-dynamic-tags.
10503 * output.cc (Output_data_dynamic::set_final_data_size): Implement
10504 --spare-dynamic-tags.
10505
10506 2010-03-05 Ian Lance Taylor <iant@google.com>
10507
10508 * incremental.cc: Include "libiberty.h".
10509
10510 2010-03-05 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
10511
10512 * dynobj.h (Verdef::Verdef): Add is_info arg, is_info member
10513 function, is_info_ member.
10514 * dynobj.cc (Verdef::write): Set VER_FLG_INFO if this->is_info_.
10515 (Versions::Versions): Update caller.
10516 (Versions::define_base_version): Likewise.
10517 (Versions::add_def): Likewise.
10518
10519 2010-03-03 Sriraman Tallam <tmsriram@google.com>
10520
10521 * i386.cc (Target_i386::can_check_for_function_pointers): New function.
10522 (Scan::possible_function_pointer_reloc): New function.
10523 (Scan::local_reloc_may_be_function_pointer): Change to call
10524 possible_function_pointer_reloc.
10525 (Scan::global_reloc_may_be_function_pointer): Ditto.
10526 * icf.h (Icf::check_section_for_function_pointers): Change to reject
10527 relocations in ".data.rel.ro._ZTV" section.
10528 * testsuite/icf_safe_so_test.sh: Change to pass i386.
10529 * testsuite/icf_safe_so_test.cc: Ditto.
10530 * testsuite/icf_safe_test.cc: Ditto.
10531 * testsuite/icf_safe_test.sh: Ditto.
10532
10533 2010-03-03 Viktor Kutuzov <vkutuzov@accesssoftek.com>
10534 Ian Lance Taylor <iant@google.com>
10535
10536 * target-reloc.h (relocate_section): Check the symbol table index
10537 for -1U before setting the local symbol index.
10538 (scan_relocatable_relocs): If copying the relocation, record that
10539 the local symbol is required.
10540 * object.h (Symbol_value::is_output_symtab_index_set): New
10541 function.
10542 (Symbol_value::may_be_discarded_from_output_symtab): New
10543 function.
10544 (Symbol_value::has_output_symtab_entry): New function.
10545 (Symbol_value::needs_output_symtab_entry): Remove.
10546 (Symbol_value::output_symtab_index): Make sure the symbol index is
10547 set.
10548 (Symbol_value::set_output_symtab_index): Make sure the symbol
10549 index is not set. Make sure the new index is valid.
10550 (Symbol_value::set_must_have_output_symtab_entry): New function.
10551 (Symbol_value::has_output_dynsym_entry): New function.
10552 (Symbol_value::set_output_dynsym_index): Make sure the new index
10553 is valid.
10554 (Sized_relobj::set_must_have_output_symtab_entry): New function.
10555 * object.cc (Sized_relobj::do_count_local_symbols): Only discard a
10556 local symbol if permitted.
10557 (Sized_relobj::do_finalize_local_symbols): Call
10558 is_output_symtab_index_set rather than needs_output_symtab_entry.
10559 (Sized_relobj::write_local_symbols): Call has_output_symtab_entry
10560 rather than needs_output_symtab_entry. Call
10561 has_output_dynsym_entry rather than needs_output_dynsym_entry.
10562 * arm.cc (Arm_relobj::update_output_local_symbol_count): Call
10563 is_output_symtab_index_set rather than needs_output_symtab_entry.
10564 * testsuite/discard_locals_relocatable_test.c: New file.
10565 * testsuite/discard_locals_test.sh: Test -r.
10566 * testsuite/Makefile.am (check_DATA): Add
10567 discard_locals_relocatable_test1.syms,
10568 discard_local_relocatable_test2.syms.
10569 (MOSTLYCLEANFILES): Likewise. Also add
10570 discard_locals_relocatable_test1.lout and
10571 discard_locals_relocatable_test2.out.
10572 (discard_locals_relocatable_test1.syms): New target.
10573 (discard_locals_relocatable_test.o): New target.
10574 (discard_locals_relocatable_test1.out): New target.
10575 (discard_locals_relocatable_test2.syms): New target.
10576 (discard_locals_relocatable_test2.out): New target.
10577 (various): Add missing ../ld-new dependencies.
10578 * testsuite/Makefile.in: Rebuild.
10579
10580 2010-03-03 Nick Clifton <nickc@redhat.com>
10581
10582 * po/fi.po: New Finnish translation.
10583
10584 2010-03-01 Doug Kwan <dougkwan@google.com>
10585
10586 * layout.cc (Layout::Layout): Force section types of .init_array*,
10587 .preinit_array* and .fini_array* sections.
10588 * output.cc (Output_section::Input_section_sort_entry::has_priority):
10589 Fix check of return value of std::string::find.().
10590 (Output_section::Input_section_sort_compare::operator()): Remove
10591 comment about .init_array.
10592 (Output_section::Input_section_sort_init_fini_compare::operator()):
10593 New method.
10594 (Output_section::sort_attached_input_sections): Handle .init_array
10595 and .fini_array specially.
10596 * output.h (Output_section::Inut_section_sort_compare): Update
10597 comment.
10598 (Output_section::Input_section_sort_init_fini_compare): New struct.
10599
10600 2010-02-26 Doug Kwan <dougkwan@google.com>
10601
10602 * arm.cc (Target_arm::Relocate::reloc_is_non_pic): Treat
10603 R_ARM_PREL31 and R_ARM_SBREL31 as position independent.
10604 * testsuite/debug_msg.sh: Avoid matching source line number for
10605 use of global variable undef_int.
10606
10607 2010-02-26 Doug Kwan <dougkwan@google.com>
10608
10609 * arm.cc (Target_arm::scan_reloc_for_stub): Move code handling
10610 R_ARM_V4BX to Target_arm::scan_reloc_section_for_stubs.
10611 (Target_arm::scan_reloc_section_for_stubs): Instead of calling
10612 scan_reloc_for_stub, do all processing of R_ARM_V4BX here.
10613 * options.cc (General_options::General_options): Initialize member
10614 fix_v4bx_.
10615 * testsuite/Makefile.am (check_SCRIPTS): Add arm_fix_v4bx.sh
10616 (check_DATA): Add arm_fix_v4bx.stdout, arm_fix_v4bx_interworking.stdout
10617 and rm_no_fix_v4bx.stdout
10618 (arm_fix_v4bx.stdout, arm_fix_v4bx, arm_fix_v4bx.o,
10619 arm_fix_v4bx_interworking.stdout, arm_fix_v4bx_interworking,
10620 arm_no_fix_v4bx.stdout, arm_no_fix_v4bx): New make rules.
10621 (MOSTLYCLEANFILES): Add arm_fix_v4bx, arm_fix_v4bx_interworking
10622 and arm_no_fix_v4bx.
10623 * Makefile.in: Regenerate.
10624 * testsuite/arm_fix_v4bx.s: New file.
10625 * testsuite/arm_fix_v4bx.sh: Ditto.
10626
10627 2010-02-24 Doug Kwan <dougkwan@google.com>
10628
10629 * arm.cc (Target_arm::got_section): Make the .got section the first
10630 non RELRO section in the data segment.
10631 * testsuite/script_test_5.sh: Fix match patterns to avoid matching
10632 suffixes of section names.
10633
10634 2010-02-24 Doug Kwan <dougkwan@google.com>
10635
10636 * arm.cc (Target_arm::do_finalize_sections): Skip processor specific
10637 flags and attributes merging if an input file is a binary file.
10638 * fileread.cc (Input_file::open): Record format of original file.
10639 * fileread.h (Input_file::Format): New enum type.
10640 (Input_file::Input_file): Initialize data member format_.
10641 (Input_file::format): New method definition.
10642 (Input_file::format_):: New data member.
10643
10644 2010-02-24 Doug Kwan <dougkwan@google.com>
10645
10646 * arm.cc (Arm_output_data_got): New class.
10647 (ARM_TCB_SIZE): New constant
10648 (Target_arm): Use Arm_output_data_got instead of Output_data_got.
10649 (Arm_output_section::fix_exidx_coverage): Add a parameter for layout.
10650 If user uses a script with a SECTIONS clause, issue only a warning
10651 for a misplaced EXIDX input section. Otherwise, issue an error.
10652 (Arm_relobj::do_gc_process_relocs): Exit early if we are not doing
10653 garbage collection.
10654 (Target_arm::got_mode_index_entry): Handle static linking.
10655 (Target_arm::Scan::local): Ditto.
10656 (Target_arm::Scan::global): Ditto.
10657 (Target_arm::Relocate::relocate_tls): Handle static linking. Fix
10658 all incorrectly implemented relocations.
10659 (Target_arm::fix_exidx_coverage): Pass layout to
10660 Arm_output_section::fix_exidx_coverage.
10661 * layout.cc (Layout::section_name_mapping): Remove trailing dots
10662 from ".ARM.exidx." and ".ARM.extab.".
10663
10664 2010-02-23 Viktor Kutuzov <vkutuzov@accesssoftek.com>
10665
10666 * arm.cc (Target_arm::do_finalize_sections): Create attribute
10667 section if it does not already exist.
10668 * attributes.cc (Attributes_section_data::Attributes_section_data):
10669 Don't crash if size is zero.
10670
10671 2010-02-23 Viktor Kutuzov <vkutuzov@accesssoftek.com>
10672 Ian Lance Taylor <iant@google.com>
10673
10674 * gold.cc (queue_middle_tasks): If no input files were opened,
10675 exit.
10676 * workqueue.h (Task_function::Task_function): Assert that there is
10677 a blocker.
10678
10679 2010-02-22 Doug Kwan <dougkwan@google.com>
10680
10681 * gold-threads.h (Once::~Once): Explicitly define virtual destructor.
10682 * icf.cc (get_section_contents): Cast snprintf arguments to long long
10683 types to avoid warnings due to different uint64_t implementations
10684 on different hosts.
10685
10686 2010-02-21 Doug Kwan <dougkwan@google.com>
10687
10688 * arm.cc (Arm_relocate_functions::arm_branch_common): Fix bug in
10689 handling of the maximum backward branch offset.
10690 (Arm_relocate_functions::thumb_branch_common): Ditto.
10691 * testsuite/Makefile.am (check_SCRIPTS): Add arm_branch_in_range.sh.
10692 (check_DATA): Add arm_bl_in_range.stdout, arm_bl_out_of_range.stdout
10693 thumb_bl_in_range.stdout, thumb_bl_out_of_range.stdout,
10694 thumb2_bl_in_range.stdout and thumb2_bl_out_of_range.stdout.
10695 (arm_bl_in_range.stdout, arm_bl_in_range, arm_bl_in_range.o,
10696 arm_bl_out_of_range.stdout, arm_bl_out_of_range,
10697 arm_bl_out_of_range.o, thumb_bl_in_range.stdout, thumb_bl_in_range,
10698 thumb_bl_in_range.o, thumb_bl_out_of_range.stdout,
10699 thumb_bl_out_of_range thumb_bl_out_of_range.o,
10700 thumb2_bl_in_range.stdout, thumb2_bl_in_range, thumb2_bl_in_range.o
10701 thumb2_bl_out_of_range.stdout, thumb2_bl_out_of_range,
10702 thumb2_bl_out_of_range.o): New rules.
10703 (MOSTLYCLEANFILES): Add arm_bl_in_range, arm_bl_out_of_range,
10704 thumb_bl_in_range, thumb_bl_out_of_range, thumb2_bl_in_range and
10705 thumb2_bl_out_of_range
10706 * testsuite/Makefile.in: Regenerate.
10707 * testsuite/arm_bl_in_range.s: New file.
10708 * testsuite/arm_bl_out_of_range.s: Ditto.
10709 * testsuite/arm_branch_in_range.sh: Ditto.
10710 * testsuite/arm_branch_range.t: Ditto.
10711 * testsuite/thumb2_branch_range.t: Ditto.
10712 * testsuite/thumb_bl_in_range.s: Ditto.
10713 * testsuite/thumb_bl_out_of_range.s: Ditto.
10714 * testsuite/thumb_branch_range.t: Ditto.
10715
10716 2010-02-20 Sriraman Tallam <tmsriram@google.com>
10717
10718 * gc.h (gc_process_relocs): Change vectors to point to the new list.
10719 Add reloc offset information.
10720 * icf.cc (get_section_contents): Change iterators to point to the new
10721 vectors. Add reloc offset information to the contents.
10722 * icf.h (Icf::Sections_reachable_info): New typedef.
10723 (Icf::Sections_reachable_list): New typedef.
10724 (Icf::Offset_info): New typedef.
10725 (Icf::Reloc_info): New struct typedef.
10726 (Icf::Reloc_info_list): New typedef.
10727 (Icf::symbol_reloc_list): Delete method.
10728 (Icf::addend_reloc_list): Delete method.
10729 (Icf::section_reloc_list): Delete method.
10730 (Icf::reloc_info_list): New method.
10731 (Icf::reloc_info_list_): New member.
10732
10733 2010-02-19 Doug Kwan <dougkwan@google.com>
10734
10735 * arm-reloc.def: Mark R_ARM_TLS_GD32, R_ARM_TLS_LDM32,
10736 R_ARM_TLS_LDO32, R_ARM_TLS_IE32 and R_ARM_TLS_LE32 are implemented.
10737 * arm.cc (Arm_relocation_functions): New forward declaration.
10738 (Target_arm::Target_arm): Initialize new data members
10739 got_mod_index_offset_ and tls_base_symbol_defined_.
10740 (Target_arm::Relocate::relocate_tls): New method.
10741 (Target_arm::optimize_tls_reloc, Target_arm::define_tls_base_symbol,
10742 Target_arm::got_mod_index_entry, Target_arm::rel_tls_desc_section):
10743 New methods.
10744 (Target_arm::Got_type): Add GOT_TYPE_TLS_NOFFSET, GOT_TYPE_OFFSET,
10745 GOT_TYPE_TLS_PAIR and GOT_TYPE_TLS_DESC.
10746 (Target_arm::got_mod_index_offset_,
10747 Target_arm::tls_base_symbol_defined_): New data members.
10748 (Target_arm::Scan::local, Target::Scan::global,
10749 Target_arm::Relocate::relocate): Handle 32-bit initial TLS
10750 relocations.
10751
10752 2010-02-18 Doug Kwan <dougkwan@google.com>
10753
10754 * arm.cc (Arm_relobj::find_linked_text_section): New method.
10755 (Arm_relobj::make_exidx_input_section): Pass section index of linked
10756 text section as a parameter becuase some broken tools may not set
10757 the link in section header.
10758 (Target_arm::has_got_section): New method.
10759 (Target_arm::scan_section_for_cortex_a8_stubs): Treat an input section
10760 without any mapping symbol as data only. Remove warning.
10761 (Arm_relobj::do_read_synbols): If an EXIDX input section has no
10762 link in its section header, try to discover the link by inspecting the
10763 REL31 relocation at the beginning of the section.
10764 (Target_arm::Scan::check_non_pic): Report name of offending relocation
10765 in error message.
10766 (Target_arm::Scan::global): Treat any reference to the symbol
10767 _GLOBAL_OFFSET_TABLE_ as a GOT access.
10768
10769 2010-02-12 Sriraman Tallam <tmsriram@google.com>
10770
10771 * arm.cc (Scan::local_reloc_may_be_function_pointer): New function.
10772 (Scan::global_reloc_may_be_function_pointer): New function.
10773 * sparc.cc (Scan::local_reloc_may_be_function_pointer): New function.
10774 (Scan::global_reloc_may_be_function_pointer): New function.
10775 * powerpc.cc (Scan::local_reloc_may_be_function_pointer): New function.
10776 (Scan::global_reloc_may_be_function_pointer): New function.
10777 * i386.cc (Scan::local_reloc_may_be_function_pointer): New function.
10778 (Scan::global_reloc_may_be_function_pointer): New function.
10779 * x86_64.cc (Scan::local_reloc_may_be_function_pointer): New function.
10780 (Scan::global_reloc_may_be_function_pointer): New function.
10781 (Scan::possible_function_pointer_reloc): New function.
10782 (Target_x86_64::can_check_for_function_pointers): New function.
10783 * gc.h (gc_process_relocs): Scan relocation types to determine if
10784 function pointers were taken for targets that support it.
10785 * icf.cc (Icf::find_identical_sections): Include functions for
10786 folding in safe ICF whose pointer is not taken.
10787 * icf.h (Secn_fptr_taken_set): New typedef.
10788 (fptr_section_id_): New member.
10789 (section_has_function_pointers): New function.
10790 (set_section_has_function_pointers): New function.
10791 (check_section_for_function_pointers): New function.
10792 * options.h: Fix comment for safe ICF option.
10793 * target.h (can_check_for_function_pointers): New function.
10794 * testsuite/Makefile.am: Add icf_safe_so_test test case.
10795 Modify icf_safe_test for X86-64.
10796 * testsuite/Makefile.in: Regenerate.
10797 * testsuite/icf_safe_so_test.cc: New file.
10798 * testsuite/icf_safe_so_test.sh: New file.
10799 * testsuite/icf_safe_test.cc (kept_func_3): New function.
10800 (main): Change to take pointer to function kept_func_3.
10801 * testsuite/icf_safe_test.sh (arch_specific_safe_fold): Check if safe
10802 folding is done correctly for X86-64.
10803
10804 2010-02-12 David S. Miller <davem@davemloft.net>
10805
10806 * output.h (Output_reloc<SHT_REL>::Output_reloc): Add
10807 is_symbolless parameter.
10808 (Output_reloc<SHT_REL>::is_symbolless): New.
10809 (Output_reloc<SHT_REL>::is_symbolless_): New.
10810 (Output_reloc<SHT_REL>::type_): Decrease to 29 bits.
10811 (Output_reloc<SHT_RELA>::Output_reloc): Add is_symbolless parameter.
10812 (Output_reloc<SHT_RELA>::is_symbolless): New.
10813 (Output_data_reloc::add_global): Handle is_symbolless.
10814 (Output_data_reloc::add_global_relative): Likewise.
10815 (Output_data_reloc::add_local): Likewise.
10816 (Output_data_reloc::add_local_relative): Likewise.
10817 (Output_data_reloc::add_symbolless_global_addend): New.
10818 (Output_data_reloc::add_symbolless_local_addend): New.
10819 * output.cc (Output_reloc<SHT_REL>::Output_reloc): Handle
10820 is_symbolless.
10821 (Output_reloc::set_needs_dynsym_index): Test ->is_symbolless_
10822 instead of ->is_relative_
10823 (Output_reloc::write): Likewise.
10824 (Output_reloc::get_symbol_index): Return 0 when ->is_symbolless_
10825 (Output_reloc::write_rel): Simplify.
10826
10827 * sparc.cc (Target_sparc::Scan::local): Use
10828 ->add_symbolless_local_addend as needed.
10829 (Target_sparc::Scan::global): Use ->add_symbolless_global_addend as
10830 needed. Also, emit appropriate unaligned vs. aligned dynamic reloc
10831 based upon relocation offset.
10832
10833 2010-02-11 Doug Kwan <dougkwan@google.com>
10834
10835 * arm.cc (Target_arm::Scan::local): Fix bugs in relocation handling.
10836 (Target_arm::Scan::global): Ditto. Also remove a comment before the
10837 beginning of function.
10838 (Target_arm::Relocate::relocate): Remove error messages for MOVW_ABS
10839 and MOVT_ABS relocations. Those are non issued in scanning. Fix
10840 parameter is_32bit in calls to should_apply_static_reloc.
10841 * testsuite/Makefile.am (check_SCRIPTS): Add arm_abs_global.sh.
10842 (check_DATA): Add arm_abs_global.stdout.
10843 (arm_abs_lib.o, libarm_abs.so, arm_abs_global.o, arm_abs_global,
10844 arm_abs_global.stdout): New rules.
10845 (MOSTLLYCLEANFILES): Add arm_abs_global
10846 * Makefile.in: Regenerate.
10847 * testsuite/arm_abs_global.s: New file.
10848 * testsuite/arm_abs_global.sh: Ditto.
10849 * testsuite/arm_abs_lib.s: Ditto.
10850
10851 2010-02-11 Ian Lance Taylor <iant@google.com>
10852
10853 * gold.cc (queue_middle_gc_tasks): Use a separate blocker for each
10854 Read_relocs task.
10855 (queue_middle_tasks): Likewise, and also for Scan_relocs. Run
10856 Allocate_commons_task first.
10857 * reloc.cc (Read_relocs::run): Pass next_blocker_ down to next
10858 task, rather than symtab_lock_.
10859 (Gc_process_relocs::~Gc_process_relocs): New function.
10860 (Gc_process_relocs::is_runnable): Check this_blocker_.
10861 (Gc_process_relocs::locks): Use next_blocker_ rather than
10862 blocker_.
10863 (Scan_relocs::~Scan_relocs): New function.
10864 (Scan_relocs::is_runnable): Check this_blocker_ rather than
10865 symtab_lock_.
10866 (Scan_relocs::locks): Drop symtab_lock_ and blocker_. Add
10867 next_blocker_.
10868 * reloc.h (class Read_relocs): Drop symtab_lock_ and blocker_
10869 fields. Add this_blocker_ and next_blocker_ fields. Adjust
10870 constructor accordingly.
10871 (class Gc_process_relocs): Likewise.
10872 (class Scan_relocs): Likewise.
10873 * common.h (class Allocate_commons_task): Remove symtab_lock_
10874 field, and corresponding constructor parameter.
10875 * common.cc (Allocate_commons_tasK::is_runnable): Remove use of
10876 symtab_lock_.
10877 (Allocate_commons_task::locks): Likewise.
10878
10879 2010-02-11 Ian Lance Taylor <iant@google.com>
10880
10881 * gold-threads.h (class Once): Define.
10882 (class Initialize_lock): Rewrite as child of Once.
10883 * gold-threads.cc (class Once_initialize): Define.
10884 (once_pointer_control): New static variable.
10885 (once_pointer, once_arg): New static variables.
10886 (c_run_once): New static function.
10887 (Once::Once, Once::run_once, Once::internal_run): New functions.
10888 (class Initialize_lock_once): Remove.
10889 (initialize_lock_control): Remove.
10890 (initialize_lock_pointer): Remove.
10891 (initialize_lock_once): Remove.
10892 (Initialize_lock::Initialize_lock): Move to gold-threads.h.
10893 (Initialize_lock::initialize): Rewrite.
10894 (Initialize_lock::do_run_once): New function.
10895 * archive.cc (Archive::interpret_header): Only clear name if it is
10896 not already empty.
10897 * fileread.cc: Include "gold-threads.h"
10898 (file_counts_lock): New static variable.
10899 (file_counts_initialize_lock): Likewise.
10900 (File_read::release): Only increment counts when using --stats.
10901 Use a lock around the increment.
10902 * parameters.cc (class Set_parameters_target_once): Define.
10903 (set_parameters_target_once): New static variable.
10904 (Parameters::Parameters): Move here from parameters.h.
10905 (Parameters::set_target): Rewrite.
10906 (Parameters::set_target_once): New function.
10907 (Parameters::clear_target): Move here and rewrite.
10908 * parameters.h (class Parameters): Update declarations. Add
10909 set_parameters_target_once_ field.
10910 (Parameters::Parameters): Move to parameters.cc.
10911 (Parameters::clear_target): Likewise.
10912 * readsyms.cc (Read_symbols::do_group): Create a Start_group
10913 task.
10914 (Start_group::~Start_group): New function.
10915 (Start_group::is_runnable): New function.
10916 (Start_group::locks, Start_group::run): New functions.
10917 (Finish_group::run): Change saw_undefined to size_t.
10918 * readsyms.h (class Start_group): Define.
10919 (class Finish_group): Change saw_undefined_ field to size_t.
10920 (Finish_group::Finish_group): Remove saw_undefined and
10921 this_blocker parameters. Change all callers.
10922 (Finish_group::set_saw_undefined): New function.
10923 (Finish_group::set_blocker): New function.
10924 * symtab.h (class Symbol_table): Change saw_undefined to return
10925 size_t. Change saw_undefined_ field to size_t.
10926 * target-select.cc (Set_target_once::do_run_once): New function.
10927 (Target_selector::Target_selector): Initialize set_target_once_
10928 field. Don't initialize lock_ and initialize_lock_ fields.
10929 (Target_selector::instantiate_target): Rewrite.
10930 (Target_selector::set_target): New function.
10931 * target-select.h (class Set_target_once): Define.
10932 (class Target_selector): Update declarations. Make
10933 Set_target_once a friend. Remove lock_ and initialize_lock_
10934 fields. Add set_target_once_ field.
10935
10936 2010-02-10 Ian Lance Taylor <iant@google.com>
10937
10938 * dirsearch.cc (Dirsearch::initialize): Add all blockers before
10939 queueing any tasks.
10940 * gold.cc (queue_middle_gc_tasks): Likewise. Fix final blocker.
10941 (queue_middle_tasks): Add all blockers before queueing any tasks.
10942 (queue_final_tasks): Likewise.
10943 * token.h (Task_token::add_blockers): New function.
10944 * object.h (Input_objects::number_of_relobjs): New function.
10945
10946 2010-02-10 Ian Lance Taylor <iant@google.com>
10947
10948 * i386.cc (Relocate::relocate_tls): A local symbol is final if not
10949 shared, not if not position independent.
10950 * x86_64.cc (Relocate::relocate_tls): Likewise.
10951 * testsuite/Makefile.am (check_PROGRAMS): Add tls_pie_pic_test.
10952 (tls_pie_pic_test): New target.
10953 * testsuite/Makefile.in: Rebuild.
10954
10955 * testsuite/Makefile.am (check_PROGRAMS): Add tls_pie_test.
10956 (tls_test_main_pie.o, tls_test_pie.o): New targets.
10957 (tls_test_file2_pie.o, tls_test_c_pie.o, tls_pie_test): Likewise.
10958 * testsuite/Makefile.in: Rebuild.
10959
10960 2010-02-09 David S. Miller <davem@davemloft.net>
10961
10962 * sparc.cc (Target_sparc::Scan::local): Do not emit relocs other than
10963 R_SPARC_RELATIVE using ->add_local_relative().
10964 (Target_sparc::Scan::global): Likewise for ->add_global_relative().
10965
10966 * output.h (Output_data_dynamic::add_section_size): New method
10967 that takes two Output_data objects.
10968 (Output_data_dynamic::Dynamic_entry): Create storage for secondary
10969 entry param. Handle it in initializers.
10970 * output.cc (Output_data_dynamic::Dynamic_entry::write): For
10971 DYNAMIC_SECTION_SIZE, add in second object size if non-NULL.
10972 * layout.h (Layout::add_target_dynamic_tags): Add dynrel_includes_plt
10973 arg.
10974 * layout.cc (Layout::add_target_dynamic_tags): If dynrel_includes_plt,
10975 and .rela.plt exists, set DT_REL{,A}SZ to sum of .rela.dyn and .rela.plt
10976 * arm.cc (Target_arm::do_finalize_sections): Update to pass false
10977 for dynrel_includes_plt.
10978 * i386.cc (Target_i386::do_finalize_sections): Likewise.
10979 * x86_64.cc (Target_x86_64::do_finalize_sections): Likewise.
10980 * sparc.cc (Target_sparc::make_plt_entry): Force .rela.dyn to be output
10981 before .rela.plt
10982 (Target_sparc::do_finalize_sections): Update to pass true for
10983 dynrel_includes_plt.
10984 * powerpc.cc (Target_powerpc::make_plt_entry): Force .rela.dyn to be
10985 output before .rela.plt
10986 (Target_powerpc::do_finalize_sections): Update to pass true for
10987 dynrel_includes_plt when 32-bit.
10988
10989 2010-02-08 Doug Kwan <dougkwan@google.com>
10990
10991 * arm.cc (Arm_relobj::simple_input_section_output_address): New
10992 method.
10993 (Arm_relobj::section_needs_cortex_a8_stub_scanning,
10994 Arm_relobj::scan_section_for_cortex_a8_stubs,
10995 Arm_relobj::do_relocation_section): Instead of calling
10996 Output_section::output_address, use faster
10997 Arm_relobj::simple_input_section_output_address.
10998
10999 2010-02-08 David S. Miller <davem@davemloft.net>
11000
11001 * sparc.cc (Target_sparc::Relocate::relocate): If relocation offset is
11002 unaligned for R_SPARC_16, R_SPARC_32, or R_SPARC_64, use the unaligned
11003 relocation helper function.
11004
11005 * sparc.cc (Target_sparc::Scan::local): Handle R_SPARC_GOTDATA_OP*
11006 just like R_SPARC_GOT{10,13,22}.
11007 (Target_sparc::Scan::local): Likewise.
11008 (Target_sparc::Relocate:relocate): Likewise.
11009
11010 2010-02-06 Ian Lance Taylor <iant@google.com>
11011
11012 * configure.ac: Rewrite targetobjs duplicate removal code to use
11013 only shell constructs.
11014 * configure: Rebuild.
11015
11016 2010-02-05 Doug Kwan <dougkwan@google.com>
11017
11018 PR 11247
11019 * arm.cc (Arm_relobj::section_is_scannable): New method.
11020 (Arm_relobj::section_needs_reloc_stub_scanning): Use it.
11021 (Arm_relobj::section_needs_cortex_a8_stub_scanning): Same.
11022
11023 2010-02-04 Doug Kwan <dougkwan@google.com>
11024
11025 PR 11247
11026 * arm-reloc-property.cc (cstdio): Include.
11027 * configure.ac (targetobjs): Remove duplicates.
11028 * configure: Regenerate.
11029 * resolve.cc (Symbol_table::resolve): Explicit instantiate both
11030 big and little endian version for a given address size.
11031
11032 2010-02-03 Doug Kwan <dougkwan@google.com>
11033
11034 * arm-reloc-property.cc
11035 (Arm_reloc_property_table::reloc_name_in_error_message): New method
11036 definition.
11037 * arm-reloc-property.h
11038 (Arm_reloc_property_table::get_implemented_static_reloc_property):
11039 New method definition.
11040 (Arm_reloc_property_table::reloc_name_in_error_message): New method
11041 declaration.
11042 * arm-reloc.def (THM_MOVT_ABS, THM_MOVT_PREL, THM_MOVT_BREL): Change
11043 overflow to N.
11044 (GOT_PREL): Change implemented to Y.
11045 * arm.cc (Target_arm::reloc_uses_thumb_bit): Remove method.
11046 (Target_arm::Relocate::reloc_needs_sym_origin): Remove method.
11047 (Arm_relocate_functions::movw_abs_nc): Remove method.
11048 (Arm_relocate_functions::movt_abs): Ditto.
11049 (Arm_relocate_functions::thm_movw_abs_nc): Ditto.
11050 (Arm_relocate_functions::thm_movt_abs): Ditto.
11051 (Arm_relocate_functions::movw_rel_nc): Ditto.
11052 (Arm_relocate_functions::movw_rel): Ditto.
11053 (Arm_relocate_functions::movt_rel): Ditto.
11054 (Arm_relocate_functions:thm_movw_rel_nc): Ditto.
11055 (Arm_relocate_functions:thm_movw_rel): Ditto.
11056 (Arm_relocate_functions:thm_movt_rel): Ditto.
11057 (Arm_relocate_functions::movw, Arm_relocate_functions::movt,
11058 (Arm_relocate_functions::thm_movw, Arm_relocate_functions::thm_movt):
11059 New method definitions.
11060 (Arm_relocation_functions::arm_grp_alu): Add assertion for group index.
11061 (Arm_relocation_functions::arm_grp_ldr): Ditto.
11062 (Arm_relocation_functions::arm_grp_ldrs): Ditto.
11063 (Arm_relocation_functions::arm_grp_ldc): Ditto.
11064 (Target_arm::Relocate::relocate): Check for non-static or
11065 unimplemented relocation code and exit early. Change calls to
11066 Target_arm::reloc_uses_thumb_bit and
11067 Target_arm::Reloc::reloc_needs_sym_origin to use relocation property
11068 instead. Refactor code to handle similar relocations to increase
11069 code sharing. Remove check for unsupported relocation code in switch
11070 statement.
11071 (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc): Use
11072 relocation property table to find out size. Change error message to
11073 print out the name of a relocation code instead of the numeric value.
11074 (Target_arm::scan_reloc_for_stub): Use relocation property table
11075 instead of calling Target_arm::reloc_uses_thumb_bit().
11076
11077 2010-02-02 Doug Kwan <dougkwan@google.com>
11078
11079 * arm.cc (Target_arm::relocate_section): Do view adjustment for all
11080 types of relaxed input section.
11081
11082 2010-02-02 Doug Kwan <dougkwan@google.com>
11083
11084 * Makefile.am (HFILES): Add arm-reloc-property.h.
11085 (DEFFILES): New.
11086 (TARGETSOURCES): Add arm-reloc-property.cc
11087 (ALL_TARGETOBJS): Add arm-reloc-property.$(OBJEXT)
11088 (libgold_a_SOURCES): $(DEFFILES)
11089 * Makefile.in: Regenerate.
11090 * arm-reloc-property.cc: New file.
11091 * arm-reloc-property.h: New file.
11092 * arm-reloc.def: New file.
11093 * arm.cc: Update comments.
11094 (arm-reloc-property.h): New included header.
11095 (arm_reloc_property_table): New global variable.
11096 (Target_arm::do_select_as_default_target): New method definition.
11097 * configure.tgt (armeb*-*-*,armbe*-*-*,arm*-*-*): Add
11098 arm-reloc-property to targ_extra_obj.
11099 * parameters.cc (set_parameters_target): Call
11100 Target::select_as_default_target().
11101 * target.h (Target::select_as_default_target): New method definition.
11102 (Target::do_select_as_default_target): Same.
11103
11104 2010-02-01 Doug Kwan <dougkwan@google.com>
11105
11106 * arm.cc (Arm_exidx_fixup::Arm_exidx_fixup): Initialize
11107 first_output_text_section_.
11108 (Arm_exidx_fixup::first_output_text_section): New method definition.
11109 (Arm_exidx_fixup::first_output_text_section_): New data member.
11110 (Arm_exidx_fixup::process_exidx_section): Record the first text
11111 output section seen.
11112 (Arm_output_section::fix_exidx_coverage): Set correct linked section
11113 and entsize in output section header.
11114
11115 2010-01-29 Viktor Kutuzov <vkutuzov@accesssoftek.com>
11116
11117 * gold/arm.cc: Added support for the ARM relocations: R_ARM_THM_PC8,
11118 R_ARM_THM_PC12, R_ARM_THM_ALU_PREL_11_0.
11119 (Arm_relocate_functions::thm_alu11): New Method.
11120 (Arm_relocate_functions::thm_pc8): New Method.
11121 (Arm_relocate_functions::thm_pc12): New Method.
11122 (Target_arm::Scan::local): Handle the relocations.
11123 (Target_arm::Scan::global): Likewise.
11124 (Target_arm::Relocate::relocate): Likewise.
11125 (Target_arm:Relocatable_size_for_reloc::get_size_for_reloc): Likewise.
11126
11127 2010-01-29 Doug Kwan <dougkwan@google.com>
11128
11129 * arm.cc (Target_arm::Scan::global): General PLTs for the same set
11130 of relocation types as ld.
11131
11132 2010-01-29 Doug Kwan <dougkwan@google.com>
11133
11134 * arm.cc (Arm_relocate_functions::arm_branch_common) Change visibility
11135 to public.
11136 (Arm_relocate_functions::thumb_branch_common): Ditto.
11137 (Arm_relocate_functions::thm_call, Arm_relocate_functions::thm_jump24,
11138 Arm_relocate_functions::thm_xpc22, Arm_relocate_functions::plt32,
11139 Arm_relocate_functions::xpc25, Arm_relocate_functions::call,
11140 Arm_relocate_functions::jump24): Remove.
11141 (Target_arm::Relocate::relocate): Adjust code to call
11142 Arm_relocation_functions::arm_branch_common and
11143 Arm_relocation_functions::thumb_branch_common instead of their removed
11144 wrappers. Merge switch-cases together to reduce source code size.
11145
11146 2010-01-29 Doug Kwan <dougkwan@google.com>
11147
11148 * arm.cc (Arm_relobj::Arm_relobj): Initialize new data member
11149 output_local_symbol_count_needs_update_.
11150 (Arm_relobj::output_local_symbol_count_needs_update,
11151 Arm_relobj::set_output_local_symbol_count_needs_update,
11152 Arm_relobj::update_output_local_symbol_count): New methods.
11153 (Arm_relobj::output_local_symbol_count_needs_update_): New data
11154 member.
11155 (Arm_exidx_cantunwind::do_fixed_endian_write): Write address
11156 of pointed function as in a R_ARM_PREL31 relocation.
11157 (Arm_output_section<big_endian>::fix_exidx_coverage): Mark objects
11158 for output local symbol count updating.
11159 (Target_arm::do_relax): Update output local symbol counts in objects
11160 if necessary.
11161 * object.h (Sized_relobj::set_output_local_symbol_count): New method.
11162
11163 2010-01-29 Viktor Kutuzov <vkutuzov@accesssoftek.com>
11164
11165 * arm.cc: Added support for the ARM relocations:
11166 R_ARM_MOVW_BREL_NC, R_ARM_MOVT_BREL, R_ARM_MOVW_BREL,
11167 R_ARM_THM_MOVW_BREL_NC, R_ARM_THM_MOVT_BREL, R_ARM_THM_MOVW_BREL.
11168 (Arm_relocate_functions::movw_rel_nc): Renamed (was
11169 movw_prel_nc).
11170 (Arm_relocate_functions::movw_rel): New method.
11171 (Arm_relocate_functions::movt_rel): Renamed (was movt_prel).
11172 (Arm_relocate_functions::thm_movw_rel_nc): Renamed (was
11173 thm_movw_prel_nc).
11174 (Arm_relocate_functions::thm_movw_rel): New method.
11175 (Arm_relocate_functions::thm_movt_rel): Renamed (was
11176 thm_movt_prel).
11177 (Target_arm::Scan::local): Handle MOVW_BREL/MOVT_BREL
11178 relocations.
11179 (Target_arm::Scan::global): Likewise.
11180 (Target_arm::Relocate::relocate): Likewise.
11181 (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc):
11182 Likewise.
11183
11184 2010-01-27 Viktor Kutuzov <vkutuzov@accesssoftek.com>
11185
11186 * arm.cc: Added support for ARM group relocations.
11187 (Target_arm::reloc_needs_sym_origin): New method.
11188 (Arm_relocate_functions::calc_grp_kn): New method.
11189 (Arm_relocate_functions::calc_grp_residual): New method.
11190 (Arm_relocate_functions::calc_grp_gn): New method.
11191 (Arm_relocate_functions::arm_grp_alu): New Method.
11192 (Arm_relocate_functions::arm_grp_ldr): New Method.
11193 (Arm_relocate_functions::arm_grp_ldrs): New Method.
11194 (Arm_relocate_functions::arm_grp_ldc): New Method.
11195 (Target_arm::Scan::local): Handle the ARM group relocations.
11196 (Target_arm::Scan::global): Likewise.
11197 (Target_arm::Relocate::relocate): Likewise.
11198 (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc):
11199 Likewise.
11200
11201 2010-01-26 Doug Kwan <dougkwan@google.com>
11202
11203 * arm.cc (set): Include.
11204 (class Arm_exidx_fixup): Change type of last_input_section_ to const
11205 pointer type.
11206 (Arm_output_section::Text_section_list): New type.
11207 (Arm_output_section::append_text_sections_to_list): New method.
11208 (Arm_output_section::fix_exidx_coverage): Ditto.
11209 (Arm_relobj::Arm_relobj): Initialize exidx_section_map_.
11210 (Arm_relobj::convert_input_section_to_relaxed_section): Use
11211 Relobj::set_section_offset() instead of
11212 Sized_relobj::invalidate_section_offset().
11213 (Arm_relobj::section_needs_reloc_stub_scanning): Add an extra
11214 parameter for section headers. Ignore relocation sections for
11215 unallocated sections and EXIDX sections.
11216 (Target_arm::fix_exidx_coverage): New method.
11217 (Target_arm::output_section_address_less_than): New type.
11218 (Arm_exidx_fixup::add_exidx_cantunwind_as_needed): Use index of the
11219 linked text section instead of the EXIDX section.
11220 (Arm_output_section::create_stub_group): Add an assertion to check
11221 that this is not an EXIDX output section.
11222 (Arm_output_section::append_text_sections_to_list): New method.
11223 (Arm_output_section::fix_exidx_coverage): Ditto.
11224 (Arm_relobj::scan_sections_for_stubs): Adjust call to
11225 Arm_relobj::section_needs_reloc_stub_scanning.
11226 (Target_arm::do_relax): Fix EXIDX output section coverage in the
11227 first pass.
11228 (Target_arm::fix_exidx_coverage): New method.
11229 * object.h (Relobj::set_output_section): New method.
11230 (Sized_relobj::invalidate_section_offset): Remove method.
11231 (Sized_relobj::do_invalidate_section_offset): Remove method.
11232 (Sized_relobj::do_set_section_offset): Handle offset value -1.
11233
11234 2010-01-25 Doug Kwan <dougkwan@google.com>
11235
11236 * arm.cc (Arm_exidx_merged_section::do_output_offset):
11237 Fix warning due to signed and unsigned comparison on a 32-bit host.
11238
11239 2010-01-22 Doug Kwan <dougkwan@google.com>
11240
11241 * arm.cc (Target_arm::do_relax): Record an output section for section
11242 offset adjustment it contains any stub table that has changed.
11243 * layout.cc (Layout::clean_up_after_relaxation): Adjust section
11244 offsets in an output section if necessary.
11245 * output.cc (Output_section::Output_section): Initialize
11246 section_offsets_need_adjustments_.
11247 (Output_section::add_input_section_for_script): Renamed to
11248 Output_section::add_simple_input_section.
11249 (Output_section::save_states): Add a comment.
11250 (Output_section::discard_states): New method defintion.
11251 (Output_section::adjust_section_offsets): Same.
11252 * output.h (Output_section::add_input_section_for_script): Renamed to
11253 Output_section::add_simple_input_section.
11254 (Output_section::discard_states): New method declaration.
11255 (Output_section::adjust_section_offsets): Same.
11256 (Output_section::section_offsets_need_adjustment,
11257 Output_section::set_section_offsets_need_adjustment): New method
11258 definitions.
11259 (Output_section::section_offsets_need_adjustment_): New data member.
11260 * script-sections.cc
11261 (Output_section_element_input::set_section_address): Adjust code for
11262 renaming of Output_section::add_input_section_for_script.
11263 (Orphan_output_section::set_section_address): Same.
11264
11265 2010-01-22 Viktor Kutuzov <vkutuzov@accesssoftek.com>
11266
11267 * gold/arm.cc (Target_arm): Updated fix_v4bx method and usage of
11268 Fix_v4bx enum values .
11269 * gold/options.h (General_options): New option definitions.
11270 (General_options::fix_v4bx): New method.
11271 (General_options::Fix_v4bx): New enum.
11272 * gold/options.cc (General_options::parse_fix_v4bx): New method.
11273 (General_options::parse_fix_v4bx_interworking): New method.
11274
11275 2010-01-22 Doug Kwan <dougkwan@google.com>
11276
11277 * arm.cc (Arm_exidx_fixup): New class.
11278
11279 2010-01-21 Doug Kwan <dougkwan@google.com>
11280
11281 * arm.cc (Arm_exidx_cantunwind, Arm_exidx_merged_section): New
11282 classes.
11283 (Arm_exidx_section_offset_map): New type.
11284
11285 2010-01-21 Doug Kwan <dougkwan@google.com>
11286
11287 * arm.cc (Arm_exidx_input_section): New class.
11288 (Arm_relobj::exidx_input_section_by_link,
11289 Arm_relobj::exidx_input_section_by_shndx,
11290 Arm_relobj::make_exidx_input_section): New methods.
11291 (read_arm_attributes_section): Remove.
11292 (Arm_relobj::do_read_symbols): Look for ARM.exidx sections and record
11293 information about them.
11294 (Arm_dynobj::do_read_symbols): Move code in read_arm_attributes_section
11295 to here.
11296
11297 2010-01-20 Doug Kwan <dougkwan@google.com>
11298
11299 * arm.cc (Target_arm::Arm_input_section_map): Change key type from
11300 Input_section_specifier to Section_id.
11301 (Target_arm::new_arm_input_section: Adjust code for change of key
11302 type.
11303 (Target_arm::find_arm_input_section): Ditto.
11304 * gc.h (object.h): Include for Section_id nand Section_id_hash.
11305 (Section_id): Remove.
11306 (Garbage_collection::Section_id_hash): Remove.
11307 * icf.h (object.h): Include for Section_id nand Section_id_hash.
11308 (Section_id): Remove.
11309 (Icf::Section_id_hash): Remove.
11310 * object.h (Section_id, Const_section_id, Section_id_hash,
11311 Const_section_id_hash): New type definitions.
11312 * output.cc (Output_section::add_relaxed_input_section): Change to
11313 use Const_section_id instead of Input_section_specifier as key type.
11314 (Output_section::add_merge_input_section): Ditto.
11315 (Output_section::build_relaxation_map): Change to use Section_id
11316 instead of Input_section_specifier as key type.
11317 (Output_section::convert_input_sections_in_list_to_relaxed_sections):
11318 Ditto.
11319 (Output_section::convert_input_sections_to_relaxed_sections): Change
11320 to use Const_section_id instead of Input_section_specifier as key type.
11321 (Output_section::find_merge_section): Ditto.
11322 (Output_section::find_relaxed_input_section): Ditto.
11323 * output.h (Input_section_specifier): Remove class.
11324 (Output_section::Output_section_data_by_input_section_map): Change
11325 key type to Const_section_id.
11326 (Output_section::Output_relaxed_input_section_by_input_section_map):
11327 Ditto.
11328 (Output_section::Relaxation_map): Change key type to Section_id.
11329
11330 2010-01-20 Viktor Kutuzov <vkutuzov@accesssoftek.com>
11331
11332 * gold/arm.cc: Added support for R_ARM_V4BX relocation
11333 (class Arm_v4bx_stub): New class.
11334 (DEF_STUBS): Updated definition to support v4_veneer_bx.
11335 (Stub_factory::make_arm_v4bx_stub): New method.
11336 (Stub_factory::elf32_arm_stub_v4_veneer_bx): New veneer template.
11337 (Stub_table::empty): Handle v4bx stubs.
11338 (Stub_table::add_arm_v4bx_stub): New method.
11339 (Stub_table::find_arm_v4bx_stub): New method.
11340 (Arm_relocate_functions::v4bx): New method.
11341 (Target_arm::fix_v4bx): New method.
11342 (Target_arm::Target_arm): Handle R_ARM_V4BX.
11343 (Stub_table::relocate_stubs): Likewise.
11344 (Stub_table::do_write): Likewise.
11345 (Stub_table::update_data_size_and_addralign): Likewise.
11346 (Stub_table::finalize_stubs): Likewise.
11347 (Target_arm::Scan::local): Likewise.
11348 (Target_arm::Scan::global): Likewise.
11349 (Target_arm::do_finalize_sections): Likewise.
11350 (Target_arm::Relocate::relocate): Likewise.
11351 (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc):
11352 Likewise.
11353 (Target_arm::scan_reloc_for_stub): Likewise.
11354 (Target_arm::scan_reloc_section_for_stubs): Likewise.
11355
11356 2010-01-19 Ian Lance Taylor <iant@google.com>
11357
11358 * output.cc (Output_section_headers::do_sized_write): Write large
11359 segment count to sh_info field.
11360 (Output_file_header::do_sized_write): For large segment count,
11361 write PN_XNUM to e_phnum field.
11362
11363 2010-01-15 Viktor Kutuzov <vkutuzov@accesssoftek.com>
11364
11365 * arm.cc (Arm_relocate_functions::thm_jump6): New function.
11366 (Arm_relocate_functions::thm_jump8): New function.
11367 (Arm_relocate_functions::thm_jump11): New function.
11368 (Target_arm::Scan::local): Handle R_ARM_THM_JUMP6, R_ARM_THM_JUMP8,
11369 R_ARM_THM_JUMP11.
11370 (Target_arm::Scan::global): Likewise.
11371 (Target_arm::Relocate::relocate): Likewise.
11372 (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc):
11373 Likewise.
11374
11375 2010-01-14 Doug Kwan <dougkwan@google.com>
11376
11377 * arm.cc (map, utility): Include headers.
11378 (Target_arm::apply_cortex_a8_workaround): New method.
11379 (Arm_relobj::do_relocate_sections): Apply any Cortex-A8 workaround.
11380 (Target_arm::Scan::local): Handle R_ARM_THM_JUMP24, R_ARM_THM_JUMP19.
11381 (Target_arm::Scan::global): R_ARM_THM_JUMP19.
11382 (Target_arm::do_finalize_sections): Set fix_cortex_a8_ according to
11383 the --[no-]fix-cortex-a8 command line options.
11384 (Target_arm::Relocate::relocate): Handle R_ARM_JUMP19.
11385 (Target_arm::relocate_stub): Use addend in instruction template.
11386 * options.h (DEFINE_bool): Set the user-set flag.
11387 (General_options): Add --[no-]-fix-cortex options.
11388 * output.cc (Output_section::convert_input_sections_to_relaxed_sections)
11389 : Update fast look-up map after conversion.
11390
11391 2010-01-14 Sriraman Tallam <tmsriram@google.com>
11392
11393 * object.cc (Sized_relobj::do_layout): Change to call layout_gnu_stack
11394 in the first pass of do_layout.
11395
11396 2010-01-13 Doug Kwan <dougkwan@google.com>
11397
11398 * arm.cc (Arm_relobj::section_needs_reloc_stub_scanning,
11399 Arm_relobj::scan_sections_for_stubs): Rearrange code to avoid an
11400 apparent compiler problem of not folding static constant integral
11401 data members of elfcpp::Elf_sizes<32>.
11402
11403 2010-01-13 Doug Kwan <dougkwan@google.com>
11404
11405 * arm.cc (Arm_relobj::section_needs_reloc_stub_scanning,
11406 Arm_relobj::section_needs_cortex_a8_stub_scanning,
11407 Arm_relobj::scan_section_for_cortex_a8_erratum,
11408 Arm_relobj::scan_span_for_cortex_a8_erratum): New methods.
11409 (Arm_relobj::scan_sections_for_stubs): Move code deciding what
11410 sections to scan for relocation stubs into a new method
11411 Arm_relobj::section_needs_reloc_stub_scanning. Handle both
11412 relocation and Cortex-A8 stub scanning.
11413 (Target_arm::do_relax): Force stubs to be after stubbed sections
11414 if fixing the Cortex-A8 erratum. Remove all Cortex-A8 stubs at
11415 the beginning of a new relaxation pass. Update a comment.
11416 (Target_arm::scan_span_for_cortex_a8_erratum): New method definition.
11417
11418 2010-01-12 Ian Lance Taylor <iant@google.com>
11419
11420 * target-reloc.h (visibility_error): New inline function.
11421 (relocate_section): Call visibility_error.
11422 * testsuite/Makefile.am (check_DATA): Add protected_3.err.
11423 (MOSTLYCLEANFILES): Likewise.
11424 (protected_4_pic.o, protected_3.err): New targets.
11425 * testsuite/protected_4.cc: New file.
11426
11427 2010-01-12 Doug Kwan <dougkwan@google.com>
11428
11429 * arm.cc (Cortex_a8_reloc): New class.
11430 (Target_arm::Target_arm): Initialize new data members fix_cortex_a8_
11431 and cortex_a8_relocs_info_.
11432 (Target_arm::fix_cortex_a8): New method definition.
11433 (Target_arm::Cortex_a8_relocs_info): New type.
11434 (Target_arm::fix_cortex_a8_, Target_arm::cortex_a8_relocs_info_):
11435 New data member declarations.
11436 (Target_arm::scan_reloc_for_stub): Record information about
11437 relocations for THUMB branches that might be exempted from the
11438 Cortex-A8 workaround.
11439 (Target_arm::do_relax): Clear all Cortex-A8 relocation information
11440 at the beginning of a relaxation pass.
11441
11442 2010-01-12 Doug Kwan <dougkwan@google.com>
11443
11444 * arm.cc (Arm_relobj::mapping_symbols_info_): New data member.
11445 (Arm_relobj::Mapping_symbol_position,
11446 Arm_reloj::Mapping_symbol_position_less,
11447 Arm_relobj::Mapping_symbols_info): New types.
11448 (Target_arm::is_mapping_symbol_name): New method definition.
11449 (Arm_relobj::do_count_local_symbols): Save information about mapping
11450 symbols.
11451
11452 2010-01-11 Doug Kwan <dougkwan@google.com>
11453
11454 * arm.cc (Arm_relocate_functions::thumb32_branch_offset,
11455 Arm_relocate_functions::thumb32_branch_upper,
11456 Arm_relocate_functions::thumb32_branch_lower,
11457 Arm_relocate_functions::thumb32_cond_branch_offset,
11458 Arm_relocate_functions::thumb32_cond_branch_upper,
11459 Arm_relocate_functions::thumb32_cond_branch_lower,
11460 Arm_relocate_functions::thm_jump19): New methods to handle THUMB
11461 branch offset encoding.
11462 (Arm_relocate_functions::thumb_branch_common): Use new branch
11463 offset encoding methods to avoid code duplication.
11464 (Stub_template::Stub_template) Handle THUMB16_SPECIAL_TYPE.
11465 (Stub_addend_reader::operator()): Use new branch encoding method
11466 to avoid code duplication.
11467
11468 2010-01-11 Doug Kwan <dougkwan@google.com>
11469
11470 * arm.cc (Arm_relobj::do_gc_process_relocs): New method.
11471 (Target_arm::do_finalize_sections): Define special EXIDX section
11472 symbols only if referenced.
11473 * gc.h (Garbage_collection::add_reference): New method.
11474 (gc_process_relocs): Use Garbage_collection::add_reference to avoid
11475 code duplication.
11476
11477 2010-01-11 Ian Lance Taylor <iant@google.com>
11478
11479 * script.cc (Version_script_info::build_expression_list_lookup):
11480 Change complaing about duplicate wildcard match from error to
11481 warning.
11482
11483 * script.cc (class Lazy_demangler): Recreate--revert part of patch
11484 of 2009-12-30.
11485 (Version_script_info::Version_script_info): Initialize globs_,
11486 default_version_, default_is_global_, and exact_. Don't
11487 initialize globals_ or locals_.
11488 (Version_script_info::build_lookup_tables): Build local symbols
11489 first.
11490 (Version_script_info::unquote): New function.
11491 (Version_script_info::add_exact_match): New function.
11492 (Version_script_info::build_expression_list_lookup): Remove lookup
11493 parameter. Add is_global parameter. Change all callers. Handle
11494 wildcard pattern specially. Unquote pattern. Call
11495 add_exact_match.
11496 (Version_script_info::get_name_to_match): New function.
11497 (Version_script_info::get_symbol_version): New function.
11498 (Version_script_info::get_symbol_version_helper): Remove.
11499 (Version_script_info::check_unmatched_names): Call unquote.
11500 * script.h (class Version_script_info): Change get_symbol_version
11501 to be non-inline and add is_global parameter; change all callers.
11502 Rewrite symbol_is_local. Update declarations. Define struct
11503 Version_tree_match, Exact, Globs. Don't define struct Lookup.
11504 Remove globals_ and locals_ members. Add exact_, globs_,
11505 default_version_, is_global_.
11506 (Version_script_info::Glob): Remove pattern, add expression and
11507 is_global. Update constructor. Change all callers.
11508 * dynobj.cc (Versions::finalize): Mark the version symbol as the
11509 default version.
11510 (Versions::symbol_section_contents): If a symbol is undefined, or
11511 defined in a dynamic object, set the version index to
11512 VER_NDX_LOCAL.
11513 * symtab.cc (Symbol_table::add_from_relobj): Don't call
11514 symbol_is_local.
11515 (Symbol_table::add_from_pluginobj): Likewise.
11516 * testsuite/ver_matching_test.sh: blaza1 and blaza go into V2.
11517
11518 2010-01-11 Doug Kwan <dougkwan@google.com>
11519
11520 * Makefile.am (incremental_dump_DEPENDENCIES): Add libintl dependency.
11521 (incremental_dump_LDADD): Add linking option for libintl.
11522 * Makefile.in: Regenerate.
11523
11524 2010-01-11 H.J. Lu <hongjiu.lu@intel.com>
11525
11526 PR gold/11144
11527 * testsuite/Makefile.am (dynamic_list.stdout): Use --dyn-syms
11528 instead of -Ds.
11529 * testsuite/Makefile.in: Regenerated.
11530
11531 2010-01-10 Doug Kwan <dougkwan@google.com>
11532
11533 * options.h (DEFINE_var): Use parentheses around argument varname__
11534 in macro body to avoid any unintended subsequent substitutions.
11535
11536 2010-01-10 Ian Lance Taylor <iant@google.com>
11537
11538 * resolve.cc (Symbol_table::resolve): Add symbols to list of ODR
11539 candidates before doing symbol resolution.
11540
11541 * resolve.cc (Symbol_table::resolve): Add symbols to the list of
11542 ODR candidates if only one is weak.
11543
11544 2010-01-08 Ian Lance Taylor <iant@google.com>
11545
11546 * script.cc (Version_script_info::build_expression_list_lookup):
11547 Don't warn about ambiguous version, just record the ambiguity.
11548 (Version_script_info::get_symbol_version_helper): Give error if
11549 version is ambiguous.
11550
11551 2010-01-08 Doug Kwan <dougkwan@google.com>
11552
11553 * arm.cc (Stub_table::Stub_table): Initalize cortex_a8_stubs_,
11554 prev_data_size_ and prev_addralign_. Remove initializer for
11555 deleted data member has_been_changed_.
11556 (Stub_table::empty): Look at both reloc_stubs_ and cortex_a8_stubs_
11557 to determine if the table is empty.
11558 (Stub_table::has_been_changed, Stub_table_set_has_been_changed):
11559 Remove.
11560 (Stub_table::add_reloc_stub): Define method in class definition
11561 instead of just declaring it there.
11562 (Stub_table::add_cortex_a8_stub): New method definition.
11563 (Stub_table::update_data_size_and_addralign): Ditto.
11564 (Stub_table::finalize_stubs): Ditto.
11565 (Stub_table::apply_cortex_a8_workaround_to_address_range): Ditto.
11566 (Stub_table::do_addralign_): Return address alignment in the
11567 (Stub_table::do_reset_address_and_file_offset): Define method in
11568 class definition instead of declaring it there. Set current data
11569 size to be the data size of the previous pass.
11570 (Stub_table::set_final_data_size): Use current data size as the
11571 final data size.
11572 (Stub_table::relocate_stub): Change parameter type of stub from
11573 Reloc_stub pointer to Stub pointer.
11574 (Stub_table::addralign_, Stub_table::has_been_changed_): Remove.
11575 (Stub_table::Cortex_a8_stub_list): New typedef.
11576 (Stub_table::cortex_a8_stubs_, Stub_table::prev_data_size_,
11577 Stub_table::prev_addralign_): New data member.
11578 (Arm_relobj::Arm_relobj): Initialize data member
11579 section_has_cortex_a8_workaround_.
11580 (Arm_relobj::section_has_cortex_a8_workaround,
11581 Arm_relobj::mark_section_for_cortex_a8_workaround): New method
11582 definitions.
11583 (Arm_relobj::section_has_cortex_a8_workaround_): New data member
11584 declarations.
11585 (Target_arm::relocate_stub): Change parameter type of stub from
11586 Reloc_stub pointer to Stub pointer.
11587 (Insn_template::size, Insn_template::alignment): Handle
11588 THUMB16_SPECIAL_TYPE.
11589 (Stub_table::remove_all_cortex_a8_stubs, Stub_table::finalize_stubs,
11590 Stub_table::update_data_size_and_addralign,
11591 Stub_table::apply_cortex_a8_workaround_to_address_range): New method
11592 definitions.
11593 (Stub_table::relocate_stubs): Handle Cortex-A8 stubs.
11594 (Stub_table::do_write): Ditto.
11595 (Target_arm::do_relax): Adjust code for changes in Stub_table.
11596
11597 2010-01-08 Ian Lance Taylor <iant@google.com>
11598
11599 PR 11108
11600 * symtab.h (class Symbol): Remove fields is_target_special_ and
11601 has_plt_offset_. Add field is_defined_in_discarded_section_.
11602 (Symbol::is_defined_in_discarded_section): New function.
11603 (Symbol::set_is_defined_in_discarded_section): New function.
11604 (Symbol::has_plt_offset): Rewrite.
11605 (Symbol::set_plt_offset): Verify that new offset is not -1U.
11606 * symtab.cc (Symbol::init_fields): Initialize plt_offset_ to -1U.
11607 Don't initialize is_target_special_ or has_plt_offset_.
11608 Initialize is_defined_in_discarded_section_.
11609 (Symbol_table::add_from_relobj): If appropriate, set
11610 is_defined_in_discarded_section.
11611 * resolve.cc (Symbol::override_base_with_special): Don't test
11612 is_target_special_. Change has_plt_offset_ to has_plt_offset().
11613 * target-reloc.h (relocate_section): Do special handling for
11614 symbols defined in discarded sections for global symbols as well
11615 as local symbols.
11616
11617 2010-01-08 Ian Lance Taylor <iant@google.com>
11618
11619 * dynobj.cc (big_endian>::find_dynsym_sections): Set pi to NULL in
11620 the SHT_SYMTAB case.
11621
11622 2010-01-08 Ian Lance Taylor <iant@google.com>
11623
11624 * object.cc (Sized_relobj::do_layout): Don't get confused if
11625 layout_eh_frame returns NULL.
11626
11627 2010-01-08 Ian Lance Taylor <iant@google.com>
11628
11629 PR 11084
11630 * dynobj.cc (Sized_dynobj::find_dynsym_sections): If there is no
11631 dynamic symbol table, use the normal symbol table.
11632 (Sized_dynobj::do_read_symbols): Remove assertion about type of
11633 symbol table.
11634
11635 2010-01-08 Ian Lance Taylor <iant@google.com>
11636
11637 PR 11072
11638 * layout.cc (Layout::include_section): Remove .gnu_debuglink
11639 sections.
11640
11641 2010-01-08 H.J. Lu <hongjiu.lu@intel.com>
11642
11643 * version.cc (print_version): Change to "Copyright 2010".
11644
11645 2010-01-08 Ian Lance Taylor <iant@google.com>
11646
11647 PR 10287
11648 PR 11063
11649 * i386.cc (class Target_i386): Change return type of plt_section
11650 to be non-const.
11651 (class Output_data_plt_i386): Add tls_desc_rel_ field.
11652 (Output_data_plt_i386::Output_data_plt_i386): Initialize
11653 tls_desc_rel_ field.
11654 (Output_data_plt_i386::rel_tls_desc): New function.
11655 (Target_i386::rel_tls_desc_section): New function.
11656 (Target_i386::Scan::local): Rewrite R_386_TLS_GOTDESC handling.
11657 (Target_i386::Scan::global): For R_386_TLS_GOTDESC put
11658 R_386_TLS_DESC reloc in rel_tls_desc_section.
11659 * x86_64.cc (class Target_x86_64): Add tlsdesc_reloc_info_ field.
11660 Define struct Tlsdesc_info.
11661 (Target_x86_64::Target_x86_64): Initialize tlsdesc_reloc_info_.
11662 (Target_x86_64::do_reloc_symbol_index): New function.
11663 (Target_x86_64::add_tlsdesc_info): New function.
11664 (class Output_data_plt_x86_64): Add tlsdesc_rel_ field.
11665 (Output_data_plt_x86_64::Output_data_plt_x86_64): Initialize
11666 tlsdesc_rel_ field.
11667 (Output_data_plt_x86_64::rela_plt): Rename from rel_plt. Change
11668 all callers.
11669 (Output_data_plt_x86_64::rela_tlsdesc): New function.
11670 (Target_x86_64::rela_tlsdesc_section): New function.
11671 (Target_x86_64::Scan::local): Rewrite R_X86_64_GOTPC32_TLSDESC
11672 handling.
11673 (Target_x86_64::Scan::global): For R_X86_64_GOTPC32_TLSDESC put
11674 (Target_x86_64::do_reloc_addend): New function.
11675 R_X86_64_TLSDESC reloc in rela_tlsdesc_section.
11676 * output.h (class Output_reloc) [SHT_REL]: Add new constructor
11677 declarations. Define TARGET_CODE. Add arg field to u1_ union.
11678 (Output_reloc::type): New function.
11679 (Output_reloc::is_local_section_symbol): Check for TARGET_CODE.
11680 (Output_reloc::is_target_specific): New function.
11681 (Output_reloc::target_arg): New function.
11682 (class Output_reloc) [SHT_RELA]: Add four new constructors for
11683 absolute relocs and target specific relocs.
11684 (class Output_data_reloc) [SHT_REL]: Add add_absolute and
11685 add_target_specific.
11686 (class Output_data_reloc) [SHT_RELA]: Likewise.
11687 * output.cc (Output_reloc::Output_reloc): Add four new versions
11688 for absolute relocs and target specific relocs.
11689 (Output_reloc::set_needs_dynsym_index): Add TARGET_CODE case.
11690 (Output_reloc::get_symbol_index): Likewise.
11691 (Output_reloc::local_section_offset): Check that local_sym_index_
11692 is not TARGET_CODE or 0.
11693 (Output_reloc::symbol_value): Likewise.
11694 (Output_reloc::write) [SHT_RELA]: Call target for target specific
11695 reloc.
11696 * target.h (class Target): Add reloc_symbol_index and reloc_addend
11697 functions. Add do_reloc_symbol_index and do_reloc_addend virtual
11698 functions.
11699 * layout.cc (add_target_dynamic_tags): Use output section for
11700 DT_PLTRELSZ and DT_JMPREL.
11701
11702 2010-01-07 Ian Lance Taylor <iant@google.com>
11703
11704 PR 11061
11705 * output.h (class Output_reloc) [SHT_RELA]: Add is_relative
11706 function.
11707 (class Output_data_reloc_generic): Define.
11708 (class Output_data_reloc_base): Change base class to
11709 Output_data_reloc_generic. Change add() method to call
11710 bump_relative_reloc_count for a relative reloc. Remove
11711 sort_relocs_ field.
11712 * output.cc (Output_data_reloc_base::do_write): Change sort_reloc_
11713 to sort_relocs().
11714 * layout.cc (Layout::add_target_dynamic_tags): Change dyn_rel to
11715 Output_data_reloc_generic*. Add DT_RELCOUNT/DT_RELACOUNT tag if
11716 appropriate.
11717 * layout.h (class Layout): Update declaration.
11718
11719 2010-01-07 Ian Lance Taylor <iant@google.com>
11720
11721 * output.h (class Output_data): Add const version of
11722 output_section and do_output_section.
11723 (class Output_section_data): Add const version of
11724 do_output_section.
11725 (class Output_section): Likewise.
11726 * layout.cc (Layout::add_target_dynamic_tags): New function.
11727 * layout.h (class Layout): Update declarations.
11728 * arm.cc (Target_arm::do_finalize_sections): Use
11729 add_target_dynamic_tags.
11730 * i386.cc (Target_i386::do_finalize_sections): Likewise.
11731 * powerpc.cc (Target_powerpc::do_finalize_sections): Likewise.
11732 * sparc.cc (Target_sparc::do_finalize_sections): Likewise.
11733 * x86_64.cc (Target_x86_64::do_finalize_sections): Likewise.
11734
11735 2010-01-07 Ian Lance Taylor <iant@google.com>
11736
11737 PR 11042
11738 * copy-relocs.cc (Copy_relocs::emit_copy_reloc): Mark the dynamic
11739 object as needed.
11740
11741 2010-01-07 Dmitry Gorbachev <d.g.gorbachev@gmail.com>
11742 Ian Lance Taylor <iant@google.com>
11743
11744 PR 11019
11745 * object.cc: Instantiate Xindex::initialize_symtab_xindex and
11746 Xindex::read_symtab_xindex.
11747
11748 2010-01-07 Doug Kwan <dougkwan@google.com>
11749
11750 * arm.cc (Insn_template::Type): New enum value THUMB16_SPECIAL_TYPE.
11751 (Insn_template::thumb16_bcond_insn): New method declaration.
11752 (Insn_template): Fix spelling.
11753 (Stub::thumb16_special): New method declaration.
11754 (Stub::do_write): Define virtual method which was previously pure
11755 virtual.
11756 (Stub::do_thumb16_special): New method declaration.
11757 (Stub::do_fixed_endian_write): New template member.
11758 (Reloc_stub::do_write): Remove.
11759 (Reloc_stub::do_fixed_endian_write): Remove.
11760 (Cortex_a8_stub): New class definition.
11761 (Stub_factory::make_cortex_a8_stub): New method definition.
11762 (Stub_factory::Stub_factory): Add missing static storage class
11763 qualifier for elf32_arm_stub_a8_veneer_blx.
11764
11765 2010-01-07 Ian Lance Taylor <iant@google.com>
11766
11767 PR 10980
11768 * options.h (class General_options): Add --warn-unresolved-symbols
11769 and --error-unresolved-symbols.
11770 * errors.cc (Errors::undefined_symbol): Implement
11771 --warn-unresolved-symbols.
11772
11773 * options.h (class General_options): Add -z text and -z textoff.
11774 * layout.cc (Layout::finish_dynamic_section): Implement -z text.
11775
11776 2010-01-06 Sriraman Tallam <tmsriram@google.com>
11777
11778 * gc.h (Garbage_collection::Cident_section_map): New typedef.
11779 (Garbage_collection::cident_sections): New function.
11780 (Garbage_collection::add_cident_section): New function.
11781 (Garbage_collection::cident_sections_): New member.
11782 (gc_process_relocs): Add references to sections whose names are C
11783 identifiers.
11784 * gold.h (cident_section_start_prefix): New constant.
11785 (cident_section_stop_prefix): New constant.
11786 (is_cident): New function.
11787 * layout.cc (Layout::define_section_symbols): Replace string constants
11788 with the newly defined constants.
11789 * object.cc (Sized_relobj::do_layout): Track sections whose names are
11790 C identifiers.
11791 * testsuite/Makefile.am: Add gc_orphan_section_test.
11792 * testsuite/Makefile.in: Regenerate.
11793 * testsuite/gc_orphan_section_test.cc: New file.
11794 * testsuite/gc_orphan_section_test.sh: New file.
11795
11796 2010-01-06 Ian Lance Taylor <iant@google.com>
11797
11798 PR 10980
11799 * options.h (class General_options): Add --warn-shared-textrel.
11800 * layout.cc (Layout::finish_dynamic_section): Implement
11801 --warn-shared-textrel.
11802
11803 PR 10980
11804 * options.h (class General_options): Add --warn-multiple-gp.
11805
11806 2010-01-06 Viktor Kutuzov <vkutuzov@accesssoftek.com>
11807
11808 * Makefile.am (incremental_dump_DEPENDENCIES): Remove
11809 $(THREADSLIB) and $(LIBDL).
11810 * Makefile.in: Rebuild.
11811
11812 2010-01-06 Ian Lance Taylor <iant@google.com>
11813
11814 PR 10980
11815 * options.cc (General_options::parse_section_start): New function.
11816 (General_options::section_start): New function.
11817 (General_options::General_options): Initialize all members.
11818 * options.h: Include <map>
11819 (class General_options): Add --section-start. Add section_starts_
11820 member.
11821 * layout.cc (Layout::attach_allocated_section_to_segment): If
11822 --section-start was used, set the address of the segment. Remove
11823 local sort_sections.
11824 (Layout::relaxation_loop_body): If the address of the load segment
11825 has been set by --section-start, don't use it.
11826 * output.h (Output_segment::update_flags_for_output_section): New
11827 function.
11828 * output.cc (Output_segment::add_output_section): Call
11829 update_flags_for_output_section.
11830
11831 2010-01-05 Ian Lance Taylor <iant@google.com>
11832
11833 PR 10980
11834 * options.h (class General_options): Add --undefined-version.
11835 * script.cc (struct Version_expression): Add was_matched_by_symbol
11836 field.
11837 (Version_script_info::matched_symbol): New function.
11838 (Version_script_info::get_symbol_version_helper): Call
11839 matched_symbol.
11840 (Version_script_info::check_unmatched_names): New function.
11841 * script.h (class Version_script_info): Update declarations.
11842 * gold.cc (queue_middle_tasks): Handle --no-undefined-version.
11843
11844 * options.h (class General_options): Use DEFINE_bool_alias for
11845 allow_multiple_definition.
11846 * resolve.cc (Symbol_table::should_override): Don't test
11847 allow_multiple_definition.
11848
11849 PR 10980
11850 * options.h (class General_options): Add --cref.
11851 * main.cc (main): Print cref table if --cref. Don't close mapfile
11852 until after printing cref table.
11853 * cref.cc: Include "symtab.h".
11854 (class Cref_inputs): Define Cref_table_compare and Cref_table.
11855 (Cref_table_compare::operator()): New function.
11856 (Cref_inputs::gather_cref): New function.
11857 (filecol): New static const.
11858 (Cref_inputs::print_cref): New function.
11859 (Cref::print_cref): New function.
11860 * cref.h: Include <cstdio>.
11861 (class Cref): Update declarations.
11862 * mapfile.h (Mapfile::file): New function.
11863 * object.h (class Object): Define Symbols. Declare virtual
11864 do_get_global_symbols.
11865 (Object::get_global_symbols): New function.
11866 * object.cc (Input_objects::add_object): Pass object to cref_ if
11867 --cref.
11868 (Input_objects::archive_start): Likewise.
11869 (Input_objects::archive_stop): Likewise.
11870 (Input_objects::print_cref): New function.
11871 * dynobj.h (Sized_dynobj::do_get_global_symbols): New function.
11872 * dynobj.cc (big_endian>::do_add_symbols): Create symbols_ if
11873 --cref.
11874 * plugin.cc (Sized_pluginobj::do_get_global_symbols): New
11875 function.
11876 * plugin.h (class Sized_pluginobj): Update declarations.
11877
11878 2010-01-05 Ian Lance Taylor <iant@google.com>
11879
11880 * symtab.cc (Symbol_table::add_from_object): Rename def parameter
11881 to is_default_version. Rename insdef to insdefault.
11882 (Symbol_table::add_from_relobj): Rename def to is_default_version
11883 and local to is_forced_local.
11884 (Symbol_table::add_from_pluginobj): Likewise.
11885 (Symbol_table::add_from_dynobj): Likewise.
11886 (Symbol_table::define_special_symbol): Rename insdef to
11887 insdefault.
11888
11889 2010-01-04 Ian Lance Taylor <iant@google.com>
11890
11891 PR 10980
11892 * options.h (class General_options): Add
11893 --allow-multiple-definition and -z muldefs.
11894 * resolve.cc (Symbol_table::should_override): Don't warn about a
11895 multiple symbol definition if --allow-multiple-definition or -z
11896 muldefs.
11897
11898 PR 10980
11899 * options.h (class General_options): Add --add-needed and
11900 --copy-dt-needed-entries. Tweak --as-needed help entry.
11901 * object.cc (Input_objects::check_dynamic_dependencies): Give an
11902 error if --copy-dt-needed-entries aka --add-needed is used and
11903 would cause a change in behaviour.
11904
11905 PR 10980
11906 * options.h (class General_options): Add -G as a short version of
11907 --shared. Add no-op options -assert, -g, and -i.
11908
11909 2010-01-04 Sriraman Tallam <tmsriram@google.com>
11910
11911 * gc.h (gc_process_relocs): Call is_section_foldable_candidate to
11912 check for .text or .gnu.linkonce.t sections.
11913 * icf.cc (Icf::find_identical_sections): Ditto.
11914 Change the detection for mangled function name within the section
11915 name.
11916 * icf.h (is_section_foldable_candidate): New function.
11917
11918 2009-12-30 Ian Lance Taylor <iant@google.com>
11919
11920 PR 10980
11921 * options.h (class General_options): Permit two dashes with
11922 --retain-symbols-file.
11923
11924 2009-12-30 Ian Lance Taylor <iant@google.com>
11925
11926 PR 10979
11927 * layout.cc (Layout::relaxation_loop_body): If -Ttext was used,
11928 don't put the file header and segment headers in the text
11929 segment.
11930
11931 PR 10979
11932 * common.cc (Sort_commons::operator()): Stabilize sort when both
11933 entries are NULL.
11934 (Symbol_table::do_allocate_commons_list): When allocating common
11935 symbols, skip a symbol which is no longer common.
11936 * symtab.h (Symbol::is_common): Test whether the symbol comes from
11937 an object before checking its type.
11938 * testsuite/common_test_2.c: New file.
11939 * testsuite/common_test_3.c: New file.
11940 * testsuite/Makefile.am (check_PROGRAMS): Add common_test_2.
11941 (common_test_2_SOURCES, common_test_2_DEPENDENCIES): Define.
11942 (common_test_2_LDFLAGS, common_test_2_LDADD): Define.
11943 (common_test_2_pic.o, common_test_2.so): New targets.
11944 (common_test_3_pic.o, common_test_3.so): New targets.
11945 * testsuite/Makefile.in: Rebuild.
11946
11947 PR 10979
11948 * script.cc (read_input_script): If we see a new SECTIONS clause,
11949 and we have added an input section, give an error.
11950 * layout.h (class Layout): Add have_added_input_section function.
11951 Add have_added_input_section_ field.
11952 * layout.cc (Layout::Layout): Initialize
11953 have_added_input_section_.
11954 (Layout::layout): Set have_added_input_section_.
11955 (Layout::layout_eh_frame): Likewise.
11956
11957 2009-12-30 Ian Lance Taylor <iant@google.com>
11958
11959 PR 10931
11960 * options.h (class General_options): Add --sort-common option.
11961 * symtab.h (class Symbol_table): Define Sort_commons_order enum.
11962 * common.cc (Sort_common): Add sort_order parameter to
11963 constructor. Add sort_order_ field.
11964 (Sort_commons::operator): Check sort_order_.
11965 (Symbol_table::allocate_commons): Determine the sort order.
11966 (Symbol_table::do_allocate_commons): Add sort_order parameter.
11967 Change all callers.
11968 (Symbol_table::do_allocate_commons_list): Likewise.
11969
11970 2009-12-30 Ian Lance Taylor <iant@google.com>
11971
11972 PR 10916
11973 * symtab.cc (Symbol_table::add_from_relobj): When not exporting
11974 symbols from this object, don't change the visibility of an
11975 undefined symbol.
11976 * testsuite/exclude_libs_test_1.c (lib1_ref): New function.
11977
11978 2009-12-30 Ian Lance Taylor <iant@google.com>
11979
11980 PR 10861
11981 * script.h (class Version_script_info): Define Language enum.
11982 Update declarations. Define Glob, Exact, and Lookup types. Add
11983 new fields globals_, locals_, and is_finalized_.
11984 * script.cc: Various formatting fixes.
11985 (class Parser_closure): Change language_stack_ from a vector of
11986 std::string to one of Version_script_info::Language. Adjust all
11987 uses accordingly.
11988 (class Lazy_demangler): Remove.
11989 (struct Version_expression): Change language from std::string to
11990 Version_script_info::Language.
11991 (Version_script_info::Version_script_info): New function.
11992 (Version_script_info::~Version_script_info): Don't call clear.
11993 (Version_script_info::finalize): New function.
11994 (Version_script_info::build_lookup_tables): New function.
11995 (Version_script_info::build_expression_list_lookup): New
11996 function.
11997 (Version_script_info::get_symbol_version_helper): Rewrite to use
11998 lookup tables.
11999 (Version_script_info::print_expression_list): Adjust to use
12000 Version_script_info::Language.
12001 (script_push_lex_into_version_mode): Check that the version script
12002 has not been finalized.
12003 (version_script_push_lang): Change language string to
12004 Version_script_info::Language.
12005 * options.cc (Command_line::version_script): New function.
12006 * options.h (class General_options): Add finalize_dynamic_list
12007 function. Change version_script from declaration to definition.
12008 * testsuite/ver_test_4.script: Remove duplicate def of t2_2.
12009 * testsuite/version_script.map: Remove duplicate def of foo.
12010 * testsuite/Makefile.am (ver_matching_def.so): Depend upon
12011 version_script.map.
12012 * testsuite/Makefile.in: Rebuild.
12013
12014 2009-12-30 Ian Lance Taylor <iant@google.com>
12015
12016 PR 10843
12017 * target-reloc.h (relocate_for_relocatable): When copying a reloc,
12018 if the input symbol index is 0, make the output symbol index 0.
12019
12020 2009-12-30 Ian Lance Taylor <iant@google.com>
12021
12022 PR 10670
12023 * options.h (class General_options): Add -x/--discard-all.
12024 * object.cc (Sized_relobj::do_count_local_symbols): Handle
12025 --discard-all. If the local symbol needs a dynamic entry, check
12026 that before handling --discard-locals.
12027
12028 2009-12-30 Ian Lance Taylor <iant@google.com>
12029
12030 PR 10450
12031 * output.cc (Output_segment::Output_segment): If PT_TLS, set the
12032 flags to PF_R.
12033 (Output_segment::add_output_section): Don't change the flags if
12034 the type is PT_TLS.
12035
12036 PR 10450
12037 * dynobj.cc (Dynobj::create_gnu_hash_table): Add symbols to the
12038 GNU hash table if they need a dynamic value. Otherwise, don't add
12039 them if they are defined in a dynamic object or are forced local.
12040
12041 2009-12-29 Ian Lance Taylor <iant@google.com>
12042
12043 PR 10450
12044 * layout.cc (Layout::create_dynamic_symtab): Only set entsize of
12045 .gnu.hash table for a 32-bit target.
12046
12047 PR 10450
12048 * symtab.h (Symbol::needs_dynsym_entry): A symbol in both a
12049 regular and a dynamic object only needs a dynamic symbol table
12050 entry if it is externally visible.
12051
12052 PR 10450
12053 * i386.cc (class Target_i386): Initialize global_offset_table_ in
12054 constructor. Add global_offset_table_ field.
12055 (Target_i386::got_section): Set global_offset_table_.
12056 (Target_i386::do_finalize_sections): Set global_offset_table_
12057 size.
12058 * x86_64.cc (class Target_x86_64): Initialize global_offset_table_
12059 in constructor. Add global_offset_table_ field.
12060 (Target_x86_64::got_section): Set global_offset_table_.
12061 (Target_x86_64::do_finalize_sections): Set global_offset_table_
12062 size.
12063
12064 * layout.cc (Layout::Layout): Initialize increase_relro_.
12065 (Layout::get_output_section): Add is_relro, is_last_relro, and
12066 is_first_non_relro parameters. Change all callers.
12067 (Layout::choose_output_section): Likewise.
12068 (Layout::add_output_section_data): Likewise.
12069 (Layout::make_output_section): Likewise.
12070 (Layout::set_segment_offsets): Clear increase_relro when using a
12071 linker script.
12072 * layout.h (class Layout): Add increase_relro method. Add
12073 increase_relro_ field. Update declarations.
12074 * output.cc (Output_section::Output_section): Initialize
12075 is_last_relro_ and is_first_non_relro_.
12076 (Output_segment::add_output_section): Group relro sections is
12077 do_sort is true. Handle is_last_relro and is_first_non_relro.
12078 (Output_segment::maximum_alignment): Remove relro handling.
12079 (Output_segment::set_section_addresses): Add increase_relro
12080 parameter. Change all callers. Add initial alignment to align
12081 relro sections on separate page. Remove old relro handling.
12082 (Output_segment::set_section_list_addresses): Remove in_relro
12083 parameter. Change all callers.
12084 (Output_segment::set_offset): Add increase parameter. Change all
12085 callers. Remove old relro handling.
12086 * output.h (class Output_section): Add new methods: is_last_relro,
12087 set_is_last_relro, is_first_non_relro, set_is_first_non_relro.
12088 Add is_last_relro_ and is_first_non_relro_ fields.
12089 * i386.cc (Target_i386::got_section): Don't call set_is_relro.
12090 Create separate .got.plt section. Call increase_relro.
12091 * x86_64.cc (Target_x86_64::got_section): Likewise.
12092 * testsuite/relro_script_test.t: Add .got.plt.
12093
12094 PR 10450
12095 * layout.cc (Layout::Layout): Initialize dynamic_symbol_ field.
12096 (Layout::create_initial_dynamic_sections): Set dynamic_symbol_.
12097 (Layout::finalize): Call set_dynamic_symbol_size.
12098 (Layout::set_dynamic_symbol_size): New function.
12099 * layout.h (class Layout): Add dynamic_symbol_ field. Declare
12100 set_dynamic_symbol_size.
12101
12102 PR 10450
12103 * output.h (class Output_section): Add is_entsize_zero_ field.
12104 * output.cc (Output_section::Output_section): Initialize
12105 is_entsize_zero_.
12106 (Output_section::set_entsize): If two different entsizes are
12107 requested, force it to zero.
12108 (Output_section::add_input_section): Set flags for .debug_str
12109 before updating section flags. Set entsize.
12110 (Output_section::update_flags_for_input_section): Set SHF_MERGE
12111 and SHF_STRING if all input sections have those flags.
12112
12113 2009-12-29 Rafael Espindola <espindola@google.com>
12114
12115 * main.cc (main): Fix the sys time reporting.
12116 * workqueue.cc (Workqueue::find_and_run_task): Fix the sys time
12117 reporting.
12118
12119 2009-12-29 Sriraman Tallam <tmsriram@google.com>
12120
12121 * options.cc (General_options::parse_version): Allow -v to exit
12122 without an error if there is nothing to link.
12123
12124 2009-12-29 Ian Lance Taylor <iant@google.com>
12125
12126 * configure.ac: Set the MCMODEL_MEDIUM conditional to false if
12127 using a version of gcc before 4.1.
12128 * configure: Rebuild.
12129
12130 2009-12-28 Chris Demetriou <cgd@google.com>
12131
12132 * attributes.cc (Output_attributes_section_data::do_write): Use
12133 std::vector::front rather than std::vector::data.
12134
12135 2009-12-28 Ian Lance Taylor <iant@google.com>
12136
12137 * symtab.h (class Symbol_table): Add enum Defined.
12138 * resolve.cc (Symbol_table::should_override): Add defined
12139 parameter. Change all callers. Test whether object is NULL
12140 before calling a method on it.
12141 (Symbol_table::report_resolve_problem): Add defined parameter.
12142 Change all callers.
12143 (Symbol_table::should_override_with_special): Likewise.
12144 * symtab.cc (Symbol_table::define_in_output_data): Add defined
12145 parameter. Change all callers.
12146 (Symbol_table::do_define_in_output_data): Likewise.
12147 (Symbol_table::define_in_output_segment): Likewise.
12148 (Symbol_table::do_define_in_output_segment): Likewise.
12149 (Symbol_table::define_as_constant): Likewise.
12150 (Symbol_table::do_define_as_constant): Likewise.
12151 * script.h (class Symbol_assignment): Add is_defsym parameter to
12152 constructor; change all callers.
12153 * script.cc (Script_options::add_symbol_assignment): Add is_defsym
12154 parameter. Change all callers. Add is_defsym_ field.
12155 (class Parser_closure): Add parsing_defsym parameter to
12156 constructor; change all callers. Add parsing_defsym accessor
12157 function. Add parsing_defsym_ field.
12158
12159 2009-12-28 Ian Lance Taylor <iant@google.com>
12160
12161 * gold.cc (queue_middle_tasks): Fix formatting.
12162 * object.cc (Relobj::is_section_name_included): Likewise.
12163
12164 2009-12-23 Ian Lance Taylor <iant@google.com>
12165
12166 * i386.cc (Target_i386::do_calls_non_split): Recognize
12167 -fsplit-stack prologue for a function with a static chain.
12168 * x86_64.cc (Target_x86_64::do_calls_non_split): Recognize
12169 -fsplit-stack prologue when using %r11.
12170
12171 2009-12-21 Sriraman Tallam <tmsriram@google.com>
12172
12173 * options.cc (General_options::parse_version): Make -v continue and do
12174 the link like GNU ld does.
12175
12176 2009-12-17 Rafael Avila de Espindola <espindola@google.com>
12177
12178 * Makefile.am (CCFILES): Add timer.cc.
12179 (HFILES): Add timer.h.
12180 * configure.ac: Check for sysconf and times.
12181 * main.cc: include timer.h.
12182 (main): Use Timer instead of get_run_time.
12183 * timer.cc: New.
12184 * timer.h: New.
12185 * workqueue.cc: include timer.h.
12186 (Workqueue::find_and_run_task):
12187 Report user, sys and wall time.
12188 * Makefile.in: Regenerate.
12189 * config.in: Regenerate.
12190 * configure: Regenerate.
12191
12192 2009-12-16 Doug Kwan <dougkwan@google.com>
12193
12194 * arm.cc (Arm_relobj::scan_sections_for_stubs): Exclude ICF-eliminated
12195 sections.
12196 * object.cc (Sized_relobj::do_finalize_local_symbols): Handle
12197 relaxed input sections.
12198 * output.cc (Output_section::find_relaxed_input_section): Change
12199 return type to Output_relaxed_input_section pointer. Adjust code
12200 for new type of relaxed_input_section_map_.
12201 * output.h (Output_section::find_relaxed_input_section): Change
12202 return type to Output_relaxed_input_section pointer.
12203 (Output_section::Output_relaxed_input_section_by_input_section_map):
12204 New type.
12205 (Output_section::relaxed_input_section_map_): Change type to
12206 Output_section::Output_relaxed_input_section_by_input_section_map.
12207 * symtab.cc (Symbol_table::compute_final_value): Handle relaxed
12208 input section.
12209
12210 2009-12-15 Ian Lance Taylor <iant@google.com>
12211
12212 * layout.cc (Layout::create_shstrtab): Only write out after input
12213 sections if we are compressing debug sections.
12214
12215 2009-12-15 Ian Lance Taylor <iant@google.com>
12216
12217 * archive.cc (Archive::add_symbols): Only look up a symbol without
12218 a version if there is, in fact, a version.
12219
12220 2009-12-14 Ian Lance Taylor <iant@google.com>
12221
12222 Revert -Wshadow changes, all changes from:
12223 2009-12-11 Doug Kwan <dougkwan@google.com>
12224 2009-12-11 Nick Clifton <nickc@redhat.com>
12225 * configure.ac: Remove -Wshadow when setting WARN_CXXFLAGS.
12226
12227 2009-12-11 Doug Kwan <dougkwan@google.com>
12228
12229 * arm.cc (Target_arm::do_finalize_sections): Fix build breakage
12230 due to -Wshadow.
12231 * attributes.cc (Object_attribute::size): Ditto.
12232 (Attributes_section_data::size): Ditto.
12233 (Attributes_section_data::Attributes_section_data): Ditto.
12234 (Output_attributes_section_data::do_write): Ditto.
12235 * attributes.h (Object_attribute::set_type): Ditto.
12236 * testsuite/tls_test_main.cc (safe_lock, safe_unlock): Ditto.
12237
12238 2009-12-11 Nick Clifton <nickc@redhat.com>
12239
12240 * archive.cc: Fix shadowed variable warnings.
12241 * arm.cc: Likewise.
12242 * compressed_output.cc: Likewise.
12243 * compressed_output.h: Likewise.
12244 * configure: Likewise.
12245 * dwarf_reader.cc: Likewise.
12246 * dynobj.cc: Likewise.
12247 * dynobj.h: Likewise.
12248 * ehframe.cc: Likewise.
12249 * ehframe.h: Likewise.
12250 * errors.cc: Likewise.
12251 * expression.cc: Likewise.
12252 * fileread.cc: Likewise.
12253 * fileread.h: Likewise.
12254 * freebsd.h: Likewise.
12255 * i386.cc: Likewise.
12256 * icf.cc: Likewise.
12257 * incremental.h: Likewise.
12258 * layout.cc: Likewise.
12259 * layout.h: Likewise.
12260 * mapfile.cc: Likewise.
12261 * merge.cc: Likewise.
12262 * merge.h: Likewise.
12263 * object.cc: Likewise.
12264 * object.h: Likewise.
12265 * options.h: Likewise.
12266 * output.cc: Likewise.
12267 * output.h: Likewise.
12268 * parameters.cc: Likewise.
12269 * plugin.cc: Likewise.
12270 * powerpc.cc: Likewise.
12271 * reduced_debug_output.cc: Likewise.
12272 * reduced_debug_output.h: Likewise.
12273 * reloc.cc: Likewise.
12274 * reloc.h: Likewise.
12275 * resolve.cc: Likewise.
12276 * script-sections.cc: Likewise.
12277 * script.cc: Likewise.
12278 * script.h: Likewise.
12279 * sparc.cc: Likewise.
12280 * symtab.cc: Likewise.
12281 * symtab.h: Likewise.
12282 * target-select.cc: Likewise.
12283 * target-select.h: Likewise.
12284 * token.h: Likewise.
12285 * workqueue.cc: Likewise.
12286 * workqueue.h: Likewise.
12287 * x86_64.cc: Likewise.
12288
12289 2009-12-10 Doug Kwan <dougkwan@google.com>
12290
12291 * arm.cc (attributes.h): New include.
12292 (Arm_relobj::Arm_relobj): Initialize attributes_section_data_.
12293 (Arm_relobj::~Arm_relobj): Delete object pointed by
12294 attributes_section_data_.
12295 (Arm_relobj::attributes_section_data): New method definition.
12296 (Arm_relobj::attributes_section_data_): New data member declaration.
12297 (Arm_dynobj::Arm_dynobj): Initialize attributes_section_data_.
12298 (Arm_dynobj::~Arm_dynobj): Delete object pointed by
12299 attributes_section_data_.
12300 (Arm_dynobj::attributes_section_data): New method definition.
12301 (Arm_dynobj::attributes_section_data_): New data member declaration.
12302 (Target_arm::Target_arm): Initialize attributes_section_data_. Change
12303 initialization value of may_use_blx_ to false.
12304 (Target_arm::using_thumb2, Target_arm::using_thumb_only,
12305 Target_arm::may_use_arm_nop, Target_arm::may_use_thumb2_nop): Use
12306 object attributes to compute results instead of hard-coding.
12307 (Target_arm::do_attribute_arg_type, Target_arm::do_attributes_order,
12308 Target_arm::get_secondary_compatible_arch,
12309 Target_arm::set_secondary_compatible_arch
12310 Target_arm::tag_cpu_arch_combine, Target_arm::aeabi_enum_name,
12311 Target_arm::tag_cpu_name_value, Target_arm::merge_object_attributes):
12312 New method declarations.
12313 (Target_arm::get_aeabi_object_attribute): New method definition.
12314 (Target_arm::attributes_section_data_): New data member declaration.
12315 (read_arm_attributes_section): New template definition.
12316 (Arm_relobj::do_read_symbols): Read attributes section if it exists.
12317 (Arm_dynobj::do_read_symbols): Ditto.
12318 (Target_arm::do_finalize_sections): Merge attributes sections from
12319 input. Check for BLX use after attributes section merging.
12320 Fix __exidx_start and __exidx_end visibility. Create an
12321 .ARM.attributes section if necessary.
12322 (Target_arm::get_secondary_compatible_arch,
12323 Target_arm::set_secondary_compatible_arch,
12324 Target_arm::tag_cpu_arch_combine, Target_arm::aeabi_enum_name,
12325 Target_arm::tag_cpu_name_value, Target_arm::merge_object_attributes,
12326 Target_arm::do_attribute_arg_type, Target_arm::do_attributes_order):
12327 New method definitions.
12328
12329 2009-12-09 Ian Lance Taylor <iant@google.com>
12330
12331 * plugin.cc (Plugin::load): Don't cast from void* to a function
12332 pointer.
12333
12334 2009-12-09 Ian Lance Taylor <iant@google.com>
12335
12336 * dynobj.cc (Sized_dynobj::do_read_symbols): Clear version
12337 information fields.
12338
12339 2009-12-09 H.J. Lu <hongjiu.lu@intel.com>
12340
12341 * testsuite/Makefile.am (two_file_shared_1_pic_2_test_DEPENDENCIES):
12342 Replace two_file_shared_1.so with two_file_shared_2.so.
12343 * testsuite/Makefile.in: Regenerated.
12344
12345 2009-12-08 Doug Kwan <dougkwan@google.com>
12346
12347 * Makefile.am (CCFILES): Add attributes.cc and int_encoding.cc.
12348 (HFILES): Add attributes.h and int_encoding.h.
12349 * Makefile.in: Regenerate.
12350 * dwarf_reader.cc (read_unsigned_LEB_128, read_signed_LEB_128): Move
12351 function definitions to int_encoding.cc
12352 * dwarf_reader.h (read_unsigned_LEB_128, read_signed_LEB_128): Move
12353 prototypes to int_encoding.h
12354 * reduced_debug_output.cc (int_encoding.h): New include.
12355 (write_unsigned_LEB_128, get_length_as_unsigned_LEB_128): Move
12356 function definitions to int_encoding.cc
12357 (insert_into_vector, read_from_pointer): Move template definitions to
12358 int_encoding.h
12359 * attributes.cc: New file.
12360 * attributes.h: New file.
12361 * int_encoding.cc: New file.
12362 * int_encoding.h: New file.
12363
12364 2009-12-07 Rafael Avila de Espindola <espindola@google.com>
12365
12366 PR gold/11055
12367 * incremental-dump.cc (dump_incremental_inputs): New.
12368 (main): Use dump_incremental_inputs.
12369
12370 2009-12-07 H.J. Lu <hongjiu.lu@intel.com>
12371
12372 PR gold/10893
12373 * i386.cc (Target_i386::Scan::globa): Use is_func instead of
12374 checking elfcpp::STT_FUNC.
12375 (Target_i386::Relocate::relocate): Likewise.
12376 * x86_64.cc (Target_x86_64::Scan::global): Likewise.
12377
12378 * symtab.cc (Symbol_table::sized_write_symbol): Turn IFUNC
12379 symbols from shared libraries into normal FUNC symbols.
12380
12381 * symtab.h (Symbol): Add is_func and use it.
12382
12383 2009-12-05 Doug Kwan <dougkwan@google.com>
12384
12385 * arm.cc (Target_arm::arm_info): Initialize new fields
12386 attributes_section and attributes_vendor.
12387 * i386.cc (Target_i386::i386_info): Same.
12388 * object.cc (Sized_relobj::do_layout): Skip attribute section.
12389 * gold/powerpc.cc (Target_powerpc::powerpc_info): Initialize new
12390 fields attributes_section and attributes_vendor.
12391 * sparc.cc (Target_sparc::sparc_info): Same.
12392 * target.h (Target::attributes_section, Target::attributes_vendor,
12393 Target::is_attributes_section, Target::attribute_arg_type,
12394 Target::attributes_order): New method definitions.
12395 (Target::Target_info::attributes_section,
12396 Target::Target_info::attributes_vendor): New fields.
12397 (Target::do_attribute_arg_type, Target::do_attributes_order): New
12398 virtual method definitions.
12399 * x86_64.cc (Target_x86_64::x86_64_info): Initialize new fields
12400 attributes_section and attributes_vendor.
12401 * testsuite/testfile.cc (Target_test::test_target_info): Same.
12402
12403 2009-12-05 Doug Kwan <dougkwan@google.com>
12404
12405 * arm.cc: Update comments about interworking and stub generation.
12406 (Target_arm::Relocate::reloc_is_non_pic): Update list of relocations
12407 considered as non-PIC.
12408 (Arm_relocate_functions::base_abs): Fix formatting.
12409 (Arm_relocate_functions::got_prel): Fix comment. Change interface
12410 of function to use GOT entry address instead of offset.
12411 (Target_arm::Scan::global): Issue an error if a symbol would need a
12412 PLT does not get one because it is untyped. Remove code to create
12413 dynamic symbols for relative branches.
12414 (Target_arm::Relocate::relocate: Use 0 instead of false since function
12415 takes unsigned integer instead of boolean.
12416
12417 2009-12-05 H.J. Lu <hongjiu.lu@intel.com>
12418
12419 * testsuite/Makefile.am (constructor_test_LDADD): New. Empty.
12420 (two_file_test_LDADD): Likewise.
12421 (common_test_1_LDADD): Likewise.
12422 (exception_test_LDADD) Likewise.
12423 (weak_test_LDADD): Likewise.
12424 (many_sections_test_LDADD): Likewise.
12425 (initpri1_LDADD): Likewise.
12426 (script_test_1_LDADD): Likewise.
12427 (script_test_2_LDADD): Likewise.
12428 (justsyms_LDADD): Likewise.
12429 (binary_test_LDADD): Likewise.
12430 (large_LDADD): Likewise.
12431 * testsuite/Makefile.in: Regenerated.
12432
12433 2009-12-04 H.J. Lu <hongjiu.lu@intel.com>
12434
12435 * resolve.cc (symbol_to_bits): Treat STB_GNU_UNIQUE as STB_GLOBAL.
12436 (Symbol_table::override_with_special): Likewise.
12437 (Symbol_table::add_from_object): Likewise.
12438
12439 2009-12-04 Rafael Avila de Espindola <espindola@google.com>
12440
12441 * incremental.cc (Incremental_inputs::sized_create_inputs_section_data):
12442 Don't set the data_offset twice.
12443
12444 2009-12-04 Rafael Avila de Espindola <espindola@google.com>
12445
12446 * testsuite/Makefile.in: Regenerate.
12447
12448 2009-12-03 Doug Kwan <dougkwan@google.com>
12449
12450 * arm.cc: Remove comment about missing .ARM.exidx section symbols.
12451 (Target_arm::do_finalize_sections): Add parameter for symbol table
12452 pointer. Add __exidx_start and __exidx_end symbols as appropriate.
12453 * i386.cc (Target_i386::do_finalize_sections): Add an additional
12454 parameter for symbol table pointer.
12455 * layout.cc (Layout::finalize): Call Target::finalize_sections with
12456 an additional parameter for a pointer to symbol table.
12457 * powerpc.cc (Target_powerpc::do_finalize_sections): Add an additional
12458 parameter for a symbol table pointer.
12459 * sparc.cc (Target_sparc::do_finalize_sections): Ditto.
12460 * target.h (Target::finalize_sections, Target::do_finalize_sections):
12461 Ditto.
12462 * x86_64.cc (Target_x86_64::do_finalize_sections): Add an additional
12463 parameter for a symbol table pointer.
12464
12465 2009-12-03 Rafael Avila de Espindola <espindola@google.com>
12466
12467 * incremental.cc (Incremental_inputs_header)
12468 (Incremental_inputs_header_write, Incremental_inputs_entry)
12469 (Incremental_inputs_entry_write): Move ...
12470 * incremental.h (Incremental_inputs_header)
12471 (Incremental_inputs_header_write, Incremental_inputs_entry)
12472 (Incremental_inputs_entry_write): here.
12473
12474 2009-12-02 Rafael Avila de Espindola <espindola@google.com>
12475
12476 * incremental.cc (make_sized_incremental_binary): Set the target.
12477 Error if it is incompatible.
12478 * output.h (Output_file): Add filename method.
12479
12480 2009-12-02 Rafael Avila de Espindola <espindola@google.com>
12481
12482 * incremental.cc (Incremental_inputs_entry): Remove unused argument
12483 from the get_* methods.
12484
12485 2009-12-02 Rafael Avila de Espindola <espindola@google.com>
12486
12487 * incremental-dump.cc (main): Check that the offeset of a script is 0.
12488 * incremental.cc (Incremental_inputs::sized_create_inputs_section_data):
12489 Write 0 for the data_offset of scripts.
12490
12491 2009-12-02 Rafael Avila de Espindola <espindola@google.com>
12492
12493 * testsuite/Makefile.am: Add the incremental_test.sh test.
12494 * testsuite/incremental_test.sh: New.
12495 * testsuite/incremental_test_1.c: New.
12496 * testsuite/incremental_test_2.c: New.
12497
12498 2009-12-01 Rafael Avila de Espindola <espindola@google.com>
12499
12500 * incremental-dump.cc (main): Fix typos.
12501
12502 2009-11-27 Rafael Avila de Espindola <espindola@google.com>
12503
12504 PR gold/11025
12505 * incremental-dump.cc (main): Use llu to print 64 bit values.
12506
12507 2009-11-26 Per Øyvind Karlsen <peroyvind@mandriva.org>
12508 H.J. Lu <hongjiu.lu@intel.com>
12509
12510 * Makefile.am (incremental_dump_DEPENDENCIES): Add $(THREADSLIB)
12511 $(LIBDL).
12512 (incremental_dump_LDADD): Likewise.
12513 * Makefile.in: Regenerated.
12514
12515 2009-11-25 Doug Kwan <dougkwan@google.com>
12516
12517 Revert:
12518
12519 2009-11-25 Doug Kwan <dougkwan@google.com>
12520
12521 * arm.cc (Target_arm::Target_arm): Move method definition
12522 outside of class definition. Add code to handle
12523 --target1-rel, --target1-abs and --target2= options.
12524 (Target_arm::get_reloc_reloc_type): Change method to be
12525 non-static and const.
12526 (Target_arm::target1_is_rel_, Target_arm::target2_reloc_):
12527 New data member declaration.
12528 (Target_arm::Scan::local, Target_arm::Scan::global,
12529 Target_arm::Relocate::relocate,
12530 Target_arm::Relocatable_size_for_reloc::get_size_for_reloc):
12531 Adjust call to Target_arm::get_real_reloc_type.
12532 (Target_arm::get_real_reloc_type): Use command line options
12533 to determine real types of R_ARM_TARGET1 and R_ARM_TARGET2.
12534 * options.h (--target1-rel, --target1-abs, --target2): New
12535 ARM-only options.
12536
12537 2009-11-25 Doug Kwan <dougkwan@google.com>
12538
12539 * arm.cc (Target_arm::Target_arm): Move method definition outside of
12540 class definition. Add code to handle --target1-rel, --target1-abs
12541 and --target2= options.
12542 (Target_arm::get_reloc_reloc_type): Change method to be non-static
12543 and const.
12544 (Target_arm::target1_is_rel_, Target_arm::target2_reloc_): New data
12545 member declaration.
12546 (Target_arm::Scan::local, Target_arm::Scan::global,
12547 Target_arm::Relocate::relocate,
12548 Target_arm::Relocatable_size_for_reloc::get_size_for_reloc): Adjust
12549 call to Target_arm::get_real_reloc_type.
12550 (Target_arm::get_real_reloc_type): Use command line options to
12551 determine real types of R_ARM_TARGET1 and R_ARM_TARGET2.
12552 * options.h (--target1-rel, --target1-abs, --target2): New ARM-only
12553 options.
12554
12555 2009-11-25 Doug Kwan <dougkwan@google.com>
12556
12557 * arm.cc (Target_arm::may_use_thumb2_nop): New method definition.
12558 (Arm_relocate_functions::thumb_branch_common): New metod declaration.
12559 (Arm_relocate_functions::abs12, Arm_relocate_functions::abs16): Fix
12560 formatting.
12561 (Arm_relocate_functions::thm_call): Replace body with a call to
12562 Arm_relocate_functions::thumb_branch_common.
12563 (Arm_relocate_functions::thm_jump24,
12564 Arm_relocate_functions::thm_xpc22): New method definitions.
12565 (Arm_relocate_functions::thumb_branch_common): New method definition.
12566 (Reloc_stub::stbu_type_for_reloc): Fix incorrect uses of bit-wise-or
12567 operator.
12568 (Target_arm::Relocate::relocate): Adjust call to thm_call.
12569 Add code to handle R_ARM_THM_XPC22 and R_ARM_THM_JUMP24.
12570
12571 2009-11-24 Rafael Avila de Espindola <espindola@google.com>
12572
12573 * Makefile.am: Build incremental-dump
12574 * Makefile.in: Regenerate.
12575 * incremental-dump.cc: New.
12576 * incremental.cc (Incremental_inputs_header_data,
12577 Incremental_inputs_entry_data): Move to incremental.h
12578 * incremental.h: (Incremental_inputs_header_data,
12579 Incremental_inputs_entry_data): Move from incremental.cc
12580
12581 2009-11-24 Rafael Avila de Espindola <espindola@google.com>
12582
12583 * incremental.cc (Incremental_inputs_header,
12584 Incremental_inputs_header_write, Incremental_inputs_entry,
12585 Incremental_inputs_entry_write): Add a typedef with the data type.
12586
12587 2009-11-24 Rafael Avila de Espindola <espindola@google.com>
12588
12589 * incremental.cc (Incremental_inputs_header,
12590 Incremental_inputs_header_write, Incremental_inputs_entry,
12591 Incremental_inputs_entry_write): Update comment about which
12592 type has the filed descriptions.
12593
12594 2009-11-15 Doug Kwan <dougkwan@google.com>
12595
12596 * arm.cc (Target_arm::may_use_arm_nop): New method definition.
12597 (Arm_relocate_functions::arm_branch_common): Change method defintion
12598 in class definition to a method declaration and update list of formal
12599 parameters.
12600 (Arm_relocate_functions::plt32, Arm_relocate_functions::call,
12601 Arm_relocation_functions::jump24): Adjust call to
12602 Arm_relocate_functions::arm_branch_common. Update list of formal
12603 parameters.
12604 (Arm_relocate_functions::xpc25): New method definition.
12605 (Arm_relocate_functions::arm_branch_common): Move method defintion
12606 out from class definition. Use stubs for mode-switching and extending
12607 branch ranges.
12608 (Target_arm::Relocate::relocate): Handle weakly-undefined symbols
12609 specially. Change code to enable use of stubs in ARM branches.
12610
12611 2009-11-10 Doug Kwan <dougkwan@google.com>
12612
12613 * arm.cc (Arm_relobj::do_relocate_sections): Remove options parameter
12614 in method declaration.
12615 (Target_arm::relocate_stub): New method declaration.
12616 (Target_arm::default_target): Change to return a pointer instead of
12617 a const reference.
12618 (Reloc_stub::stub_type_for_reloc): Adjust for the change in
12619 Target_arm::default_target.
12620 (Arm_Relobj::do_relocate_sections): Remove options paramater in
12621 method definition.
12622 (Target_arm::relocate_section): Adjust view.
12623 (Target_arm::relocate_stub): New method definition.
12624
12625 2009-11-10 Doug Kwan <dougkwan@google.com>
12626
12627 * i386.cc (Target_i386::do_calls_non_split): Add a cast to avoid
12628 a format warning.
12629 * incremental.cc (open_incremental_binary): Initialized local
12630 variables to avoid warnings.
12631 * object.cc (make_elf_object): Ditto.
12632 * x86_64.cc (Target_x86_64::do_calls_non_split): Add a cast to avoid
12633 a format warning.
12634
12635 009-11-09 H.J. Lu <hongjiu.lu@intel.com>
12636
12637 PR gold/10930
12638 * testsuite/plugin_test.c: Include "config.h".
12639
12640 2009-11-09 Doug Kwan <dougkwan@google.com>
12641
12642 * arm.cc (Target_arm::fake_relnum_for_stubs): New constant.
12643 (arm_symbol_value): Remove.
12644 (Arm_relocate_functions::arm_branch_common,
12645 Arm_relocate_functions::abs8, Arm_relocate_functions::thm_abs5,
12646 Arm_relocate_functions::abs12, Arm_relocate_functions::abs16,
12647 Arm_relocate_functions::abs32, Arm_relocate_functions::rel32,
12648 Arm_relocate_functions::thm_call, Arm_relocate_functions::plt32,
12649 Arm_relocate_functions::call, Arm_relocate_functions::jump24,
12650 Arm_relocate_functions::prel31, Arm_relocate_functions::mov_abs_nc,
12651 Arm_relocate_functions::movt_abs, Arm_relocate_functions::movw_abs_nc,
12652 Arm_relocate_functions::thm_mobw_abs_nc,
12653 Arm_relocate_functions::thm_mov_abs,
12654 Arm_relocate_functions::movw_prel_nc,
12655 Arm_relocate_functions::thm_movt_abs,
12656 Arm_relocate_functions::movt_prel,
12657 Arm_relocate_functions::thm_movw_prel_nc,
12658 Arm_relocate_functions::thm_movt_prel): Adjust callers of the above.
12659 (Target_arm::Relocate::relocate): Only decompose address into two
12660 parts if relocation type uses the thumb-bit and pass the actual
12661 bit instead of a flag indicating that the thumb-bit is used. Adjust
12662 calls to methods in Arm_relocate_functions for this change.
12663
12664 2009-11-08 Ian Lance Taylor <iant@google.com>
12665
12666 PR 10925
12667 * reloc.cc: Instantiate
12668 Sized_relobj::initialize_input_to_output_maps and
12669 Sized_relobj:free_input_to_output_maps.
12670
12671 2009-11-06 Ian Lance Taylor <iant@google.com>
12672
12673 PR 10876
12674 * defstd.cc (in_segment): Set only_if_ref true for "end".
12675
12676 2009-11-06 Doug Kwan <dougkwan@google.com>
12677
12678 * arm.cc (class Reloc_stub): Correct a comment.
12679 (Target_arm::Target_arm): Initialize arm_input_section_map_.
12680 (Target_arm::scan_section_for_stubs): New method declaration.
12681 (Target_arm::do_make_elf_object, Target_arm::do_make_output_section):
12682 Change methods from private to protected.
12683 (Target_arm::do_may_relax): New method definition.
12684 (Target_arm::do_relax, Target_arm::group_sections,
12685 Target_arm::scan_reloc_for_stub,
12686 Target_arm::scan_reloc_section_for_stubs): New method declarations.
12687 (Target_arm::arm_input_section_map_): New data member declaration.
12688 (Target_arm::scan_reloc_for_stub,
12689 Target_arm::scan_reloc_section_for_stubs,
12690 Target_arm::scan_section_for_stubs, Target_arm::group_sections,
12691 Target_arm::do_relax): New method definitions.
12692
12693 2009-11-06 Mikolaj Zalewski <mikolaj@google.com>
12694
12695 * configure.ac: Check for (struct stat)::st_mtim
12696 * fileread.cc (File_read::get_mtime): Use st_mtim if available.
12697 * config.in: Regenerate.
12698 * configure: Regenerate.
12699
12700 2009-11-05 Ian Lance Taylor <iant@google.com>
12701
12702 PR 10910
12703 * output.cc (Output_segment::add_output_section): Add missing
12704 return statement.
12705
12706 2009-11-04 Ian Lance Taylor <iant@google.com>
12707
12708 PR 10880
12709 * object.h (class Object): Add is_needed and set_is_needed
12710 methods. Add is_needed_ field. Make bool fields into bitfields.
12711 * symtab.cc (Symbol_table::set_dynsym_indexes): If a symbol is
12712 defined in a dynamic object and referenced by a regular object,
12713 set is_needed for the dynamic object.
12714 * layout.cc (Layout::finish_dynamic_section): Don't add DT_NEEDED
12715 if the file is marked with as_needed and it is not needed.
12716
12717 2009-11-04 Ian Lance Taylor <iant@google.com>
12718
12719 PR 10887
12720 * arm.cc (Target_arm::do_finalize_sections): Don't add dynamic
12721 tags if data is discarded by linker script.
12722 * i386.cc (Target_i386::do_finalize_sections): Likewise.
12723 * powerpc.cc (Target_powerpc::do_finalize_sections): Likewise.
12724 * sparc.cc (Target_sparc::do_finalize_sections): Likewise.
12725 * x86_64.cc (Target_x86_64::do_finalize_sections): Likewise.
12726
12727 2009-11-04 Ian Lance Taylor <iant@google.com>
12728
12729 * layout.cc (Layout::get_output_section): Add is_interp and
12730 is_dynamic_linker_section parameters. Change all callers.
12731 (Layout::choose_output_section): Likewise.
12732 (Layout::make_output_section): Likewise.
12733 (Layout::add_output_section_data): Add is_dynamic_linker_section
12734 parameter. Change all callers.
12735 * layout.h (class Layout): Update declarations.
12736 * output.h (class Output_section): Add is_interp, set_is_interp,
12737 is_dynamic_linker_section, set_is_dynamic_linker_section methods.
12738 Add is_interp_, is_dynamic_linker_section_ fields. Change
12739 generate_code_fills_at_write_ to a bitfield.
12740 * output.cc (Output_section::Output_sections): Initialize new
12741 fields.
12742 (Output_segment::add_output_section): Add do_sort parameter.
12743 Change all callers.
12744
12745 2009-11-03 Ian Lance Taylor <iant@google.com>
12746
12747 PR 10860
12748 * options.h (class General_options): Add --warn-common.
12749 * resolve.cc (Symbol_table::resolve): Handle --warn-common when
12750 merging two common symbols.
12751 (Symbol_table::should_override): Handle --warn-common when merging
12752 a common symbol with a defined symbol. Use report_resolve_problem
12753 for multiple definitions.
12754 (Symbol_table::report_resolve_problem): New function.
12755 * symtab.h (class Symbol_table): Declare report_resolve_problem.
12756
12757 2009-11-03 Doug Kwan <dougkwan@google.com>
12758
12759 * arm.cc (Target_arm::Target_arm): Initialize stub_tables_ and
12760 stub_factory_.
12761 (Target_arm::stub_factory): New method definition.
12762 (Target_arm::new_arm_input_section,
12763 Target_arm::find_arm_input_section, Target_arm::new_stub_table,
12764 Target_arm::reloc_uses_thumb_bit): New method declarations.
12765 (Target_arm::Stub_table_list, Target_arm::Arm_input_section_map):
12766 New type definitions.
12767 (Target_arm::stub_tables_, Target_arm::stub_factory_): New data
12768 member declarations.
12769 (Target_arm::reloc_uses_thumb_bit, Target_arm::new_arm_input_section,
12770 Target_arm::find_arm_input_section, Target_arm::new_stub_table):
12771 New method definitions.
12772
12773 2009-11-03 Ian Lance Taylor <iant@google.com>
12774
12775 * options.h (class General_options): Add --warn_constructors.
12776
12777 2009-11-03 Ian Lance Taylor <iant@google.com>
12778
12779 PR 10893
12780 * defstd.cc (in_section): Add entries for __rel_iplt_start,
12781 __rel_iplt_end, __rela_iplt_start, __rela_iplt_end, and __stack.
12782
12783 2009-11-03 Ian Lance Taylor <iant@google.com>
12784
12785 PR 10895
12786 * po/Make-in ($(srcdir)/$(PACKAGE).pot): Pass -C and
12787 --msgid-bugs-address.
12788 (install-pdf): New target.
12789 (install-data_yes): Look up one directory to find mkinstalldirs.
12790
12791 2009-11-03 H.J. Lu <hongjiu.lu@intel.com>
12792
12793 * po/Make-in (.po.gmo): Don't generate .gmo files in source
12794 tree.
12795
12796 2009-10-30 Doug Kwan <dougkwan@google.com>
12797
12798 * arm.cc (Stub_addend_reader): Fix bug in previouls check-in.
12799
12800 2009-10-30 Doug Kwan <dougkwan@google.com>
12801
12802 * arm.cc (Stub_addend_reader): New struct template definition
12803 and partial specializations.
12804 (Stub_addend_reader::operator()): New method definition for a
12805 partially specialized template.
12806
12807 2009-10-30 Doug Kwan <dougkwan@google.com>
12808
12809 * arm.cc (Arm_relobj::processor_specific_flags): New method
12810 definition.
12811 (Arm_relobj::do_read_symbols): New method declaration.
12812 (Arm_relobj::processor_specific_flags_): New data member declaration.
12813 (Arm_dynobj): New class definition.
12814 (Target_arm::do_finalize_sections): Add input_objects parameter.
12815 (Target_arm::do_adjust_elf_header): New method declaration.
12816 (Target_arm::are_eabi_versions_compatible,
12817 (Target_arm::merge_processor_specific_flags): New method declaration.
12818 (Target_arm::do_make_elf_object): New overloaded method definitions
12819 and declaration.
12820 (Arm_relobj::do_read_symbols): New method definition.
12821 (Arm_dynobj::do_read_symbols): Ditto.
12822 (Target_arm::do_finalize_sections): Add input_objects parameters.
12823 Merge processor-specific flags from all input objects.
12824 (Target_arm::are_eabi_versions_compatible,
12825 Target_arm::merge_processor_specific_flags,
12826 Target_arm::do_adjust_elf_header, Target_arm::do_make_elf_object):
12827 New method definitions.
12828 * i386.cc (Target_i386::do_finalize_sections): Add unnamed
12829 Input_objects pointer type parameter.
12830 * layout.cc (Layout::finalize): Pass input objects to target's.
12831 finalize_sections function.
12832 * output.cc (Output_file_header::do_sized_write): Set ELF file
12833 header's processor-specific flags.
12834 * powerpc.cc (Target_powerpc::do_finalize_sections): Add unnamed
12835 Input_objects pointer type parameter.
12836 * sparc.cc (Target_sparc::do_finalize_sections): Same.
12837 * target.h (Input_objects): New forward class declaration.
12838 (Target::processor_specific_flags,
12839 Target::are_processor_specific_flags_sect): New method definitions.
12840 (Target::finalize_sections): Add input_objects parameter.
12841 (Target::Target): Initialize processor_specific_flags_ and
12842 are_processor_specific_flags_set_.
12843 (Target::do_finalize_sections): Add unnamed Input_objects pointer type
12844 parameter.
12845 (Target::set_processor_specific_flags): New method definition.
12846 (Target::processor_specific_flags_,
12847 Target::are_processor_specific_flags_set_): New data member
12848 declarations.
12849 * x86_64.cc (Target_x86_64::do_finalize_sections): Add unnamed
12850 Input_objects pointer type parameter.
12851
12852 2009-10-30 Doug Kwan <dougkwan@google.com>
12853
12854 * arm.cc: Use Arm_address instead of elfcpp::Elf_types<32>::Elf_Addr.
12855
12856 2009-10-28 Ian Lance Taylor <iant@google.com>
12857
12858 * object.h (class Relobj): Drop options parameter from
12859 gc_process_relocs, scan_relocs, relocate, do_gc_process_relocs,
12860 do_scan_relocs, do_relocate. Change all callers.
12861 (class Sized_relobj): Drop options parameters from
12862 do_gc_process_relocs, do_scan_relocs, do_relocate,
12863 do_relocate_sections, relocate_sections, emit_relocs_scan,
12864 emit_relocs_scan_reltype. Change all callers.
12865 (struct Relocate_info): Remove options field and all references to
12866 it.
12867 * reloc.h (class Read_relocs): Remove options constructor
12868 parameter and options_ field. Change all callers.
12869 (class Gc_process_relocs, class Scan_relocs): Likewise.
12870 (class Relocate_task): Likewise.
12871 * target-reloc.h (scan_relocs): Remove options parameter. Change
12872 all callers.
12873 (scan_relocatable_relocs): Likewise.
12874 * target.h (class Sized_target): Remove options parameter from
12875 gc_process_relocs, scan_relocs, scan_relocatable_relocs. Change
12876 all callers.
12877 * gc.h (gc_process_relocs): Remove options parameter. Change all
12878 callers.
12879 * arm.cc: Update functions to remove options parameters.
12880 * i386.cc: Likewise.
12881 * powerpc.cc: Likewise.
12882 * sparc.cc: Likewise.
12883 * x86_64.cc: Likewise.
12884 * testsuite/testfile.cc: Likewise.
12885
12886 2009-10-28 Doug Kwan <dougkwan@google.com>
12887
12888 * arm.cc (Arm_relobj): New class definition.
12889 (Arm_relobj::scan_sections_for_stubs,
12890 Arm_relobj::do_count_local_symbols, Arm_relobj::do_relocate_sections):
12891 New method definitions.
12892
12893 2009-10-28 Cary Coutant <ccoutant@google.com>
12894
12895 * plugin.h (Plugin::Plugin): Initialize cleanup_done_.
12896 (Plugin::cleanup_done_): New member.
12897 (Plugin_manager::Plugin_manager): Remove cleanup_done_.
12898 (Plugin_manager::cleanup_done_): Remove.
12899 (Plugin_manager::add_input_file): Edit error message.
12900 * plugin.cc (Plugin::cleanup): Test and set cleanup_done_.
12901 (Plugin_manager::cleanup): Remove use of cleanup_done_.
12902
12903 2009-10-27 Mikolaj Zalewski <mikolajz@google.com>
12904
12905 * fileread.cc: (File_read::View::~View): Use the new
12906 data_ownership_ filed.
12907 (File_read::~File_read): Dispose the new whole_file_view_.
12908 (File_read::open): Mmap the whole file if needed.
12909 (File_read::open): Use whole_file_view_ instead of contents_.
12910 (File_read::find_view): Use whole_file_view_ if applicable.
12911 (File_read::do_read): Use whole_file_view_ instead of contents_.
12912 (File_read::make_view): Use whole_file_view_ instead of contents_,
12913 update File_read::View::View call.
12914 (File_read::find_or_make_view): Update File_read::View::View
12915 call.
12916 * fileread.h: (File_read::File_read): Initialize whole_file_view_,
12917 remove contents_
12918 (File_read::View::Data_ownership): New enum.
12919 (File_read::View::View): Replace bool mapped_ with Data_ownership
12920 argument.
12921 (File_read::View::mapped_): Remove (replaced by data_ownership_).
12922 (File_read::View::data_ownership_): New field.
12923 (File_read::contents_): Remove (replaced by whole_file_view_).
12924 (File_read::whole_file_view_): New field.
12925 * options.h (class General_options): Add --keep-files-mapped.
12926
12927 2009-10-27 Cary Coutant <ccoutant@google.com>
12928
12929 * symtab.cc (add_from_pluginobj): Pass correct value for is_ordinary.
12930 * testsuite/Makefile.am (plugin_test_5): New test case.
12931 * testsuite/Makefile.in: Regenerate.
12932
12933 2009-10-25 Doug Kwan <dougkwan@google.com>
12934
12935 * object.h (Sized_relobj::View_size, Sized_relobj::Views): Change
12936 from private to protected to allow access by child class.
12937 (Sized_relobj::do_relocate_sections): New method declaration.
12938 (Sized_relobj::relocate_sections): Virtualize.
12939 * reloc.cc (Sized_relobj::do_relocate_sections): Rename from
12940 Sized_relobj::relocate_sections. Instantiate template explicitly
12941 for different target sizes and endianity.
12942
12943 2009-10-24 Doug Kwan <dougkwan@google.com>
12944
12945 * arm.cc (Arm_output_section, Arm_relobj): Forward class declarations.
12946 (Arm_input_section::as_arm_input_section): New method.
12947 (Arm_output_section): New class definition.
12948 (Arm_output_section::create_stub_group,
12949 Arm_output_section::group_sections): New method definitions.
12950
12951 2009-10-22 Doug Kwan <dougkwan@google.com>
12952
12953 * arm.cc (Arm_input_section): New class definition.
12954 (Arm_input_section::init, Arm_input_section:do_write,
12955 Arm_input_section::set_final_data_size,
12956 Arm_input_section::do_reset_address_and_file_offset): New method
12957 definitions.
12958
12959 2009-10-21 Doug Kwan <dougkwan@google.com>
12960
12961 * arm.cc (Stub_table, Arm_input_section): New forward class
12962 declarations.
12963 (Stub_table): New class defintion.
12964 (Stub_table::add_reloc_stub, Stub_table::relocate_stubs
12965 Stub_table::do_reset_address_and_file_offset, Stub_table::do_write):
12966 New method definition.
12967
12968 2009-10-21 Doug Kwan <dougkwan@google.com>
12969
12970 * arm.cc: Update copyright comments.
12971 (Target_arm): New forward class template declaration.
12972 (Arm_address): New type.
12973 (ARM_MAX_FWD_BRANCH_OFFSET, ARM_MAX_BWD_BRANCH_OFFSET,
12974 THM_MAX_FWD_BRANCH_OFFSET, THM_MAX_BWD_BRANCH_OFFSET,
12975 THM2_MAX_FWD_BRANCH_OFFSET, THM2_MAX_BWD_BRANCH_OFFSET): New
12976 constants.
12977 (Insn_template): Same.
12978 (DEF_STUBS): New macro.
12979 (Stub_type): New enum type.
12980 (Stub_template): New class definition.
12981 (Stub): Same.
12982 (Reloc_stub): Same.
12983 (Stub_factory): Same.
12984 (Target_arm::Target_arm): Initialize may_use_blx_ and
12985 should_force_pic_veneer_.
12986 (Target_arm::may_use_blx, Target_arm::set_may_use_blx,
12987 Target_arm::should_force_pic_veneer,
12988 Target_arm::set_should_force_pic_veneer, Target_arm::using_thumb2,
12989 Target_arm::using_thumb_only, Target_arm:;default_target): New
12990 method defintions.
12991 (Target_arm::may_use_blx_, Target_arm::should_force_pic_veneer_):
12992 New data member declarations.
12993 (Insn_template::size, Insn_template::alignment): New method defintions.
12994 (Stub_template::Stub_template): New method definition.
12995 (Reloc_stub::Key::name, Reloc_stub::stub_type_for_reloc,
12996 Reloc_stub::do_fixed_endian_write, Reloc_stub::do_write): Same.
12997 (Stub_factory::Stub_factory): New method definition.
12998 * gold.h (string_hash): New template.
12999 * output.h (Input_section_specifier::hash_value): Use
13000 gold::string_hash.
13001 (Input_section_specifier::string_hash): Remove.
13002 * stringpool.cc (Stringpool_template::string_hash): Use
13003 gold::string_hash.
13004
13005 2009-10-20 Doug Kwan <dougkwan@google.com>
13006
13007 * object.cc (Sized_relobj::do_finalize_local_symbols): Handle section
13008 symbols of relaxed input sections.
13009 * output.h (Output_section::find_relaxed_input_section): Make
13010 method public.
13011
13012 2009-10-16 Doug Kwan <dougkwan@google.com>
13013
13014 * dynobj.cc (Versions::Versions): Initialize version_script_.
13015 Only insert base version symbol definition for a shared object
13016 if version script defines any version versions.
13017 (Versions::define_base_version): New method definition.
13018 (Versions::add_def): Check that base version is not needed.
13019 (Versions::add_need): Define base version lazily.
13020 * dynobj.h (Versions::define_base_version): New method declaration.
13021 (Versions::needs_base_version_): New data member declaration.
13022 * testsuite/Makefile.am (check_SCRIPTS): Add no_version_test.sh
13023 (check_DATA): Add no_version_test.stdout.
13024 (libno_version_test.so, no_version_test.o no_version_test.stdout):
13025 New make rules.
13026 * testsuite/Makefile.in: Regenerate.
13027 * testsuite/no_version_test.c: New file.
13028 * testsuite/no_version_test.sh: Ditto.
13029
13030 2009-10-16 Doug Kwan <dougkwan@google.com>
13031
13032 * expression.cc (class Segment_start_expression): New class definition.
13033 (Segment_start_expression::value): New method definition.
13034 (script_exp_function_segment_start): Return a new
13035 Segment_start_expression.
13036 * gold/script-c.h (script_saw_segment_start_expression): New function
13037 prototype.
13038 * script-sections.cc (Script_sections::Script_sections): Initialize
13039 SAW_SEGMENT_START_EXPRESSION_ to false.
13040 (Script_sections::set_section_addresses): Use -Ttext, -Tdata
13041 and -Tbbs options to specify section addresses if given in
13042 command line and no SEGMENT_START expression is seen in a script.
13043 * script-sections.h (Script_sections::saw_segment_start_expression,
13044 Script_sections::set_saw_segment_start_expression): New method
13045 definition.
13046 (Script_sections::saw_segment_start_expression_): New data member
13047 declaration.
13048 * script.cc (script_saw_segment_start_expression): New function.
13049 * yyscript.y (SEGMENT_START): Call script_saw_segment_start_expression.
13050 * testsuite/Makefile.am (check_SCRIPTS): Add script_test_6.sh,
13051 script_test_7.sh and script_test_8.sh.
13052 (check_DATA): Add script_test_6.stdout, script_test_7.stdout and
13053 script_test_8.stdout.
13054 (MOSTLYCLEANFILES): Add script_test_6, script_test_7 and script_test_8.
13055 (script_test_6, script_test_6.stdout, script_test_7,
13056 script_test_7.stdout, script_test_8, script_test_8.stdout): New rules.
13057 * Makefile.in: Regenerate.
13058 * testsuite/script_test_6.sh: New file.
13059 * testsuite/script_test_6.t: Same.
13060 * testsuite/script_test_7.sh: Same.
13061 * testsuite/script_test_7.t: Same.
13062 * testsuite/script_test_8.sh: Same.
13063
13064 2009-10-16 Doug Kwan <dougkwan@google.com>
13065
13066 * output.cc (Output_segment::set_section_list_address): Cast
13067 expressions to unsigned long long type to avoid format warnings.
13068
13069 2009-10-15 Ian Lance Taylor <iant@google.com>
13070
13071 * script.cc (Script_options::add_symbol_assignment): Always add a
13072 dot assignment to script_sections_.
13073 * script-sections.cc (Script_sections::add_dot_assignment):
13074 Initialize if necessary.
13075
13076 * layout.cc (Layout::relaxation_loop_body): Don't crash if we see
13077 program headers with no load segment if there is a linker script.
13078
13079 * layout.cc (Layout::set_segment_offsets): Align the file offset
13080 to the segment aligment for -N or -n with no load segment.
13081 * output.cc (Output_segment::add_output_section): Don't crash if
13082 the first section is a TLS section.
13083 (Output_segment::set_section_list_addresses): Print an error
13084 message if the address moves backward in a linker script.
13085 * script-sections.cc
13086 (Output_section_element_input::set_section_addresses): Don't
13087 increase *dot_value for a SHF_TLS/SHT_NOBITS section.
13088 (Orphan_output_section::set_section_addresses): Likewise.
13089
13090 2009-10-15 Doug Kwan <dougkwan@google.com>
13091
13092 * layout.cc (Layout::finish_dynamic_section): Generate tags
13093 DT_FINI_ARRAY, DT_FINI_ARRAYSZ, DT_INIT_ARRAY, DT_INIT_ARRAYSZ,
13094 DT_PREINIT_ARRAY, DT_PREINIT_ARRAYSZ as needed. If -Bsymbolic is
13095 used, add DT_SYMBOLIC and set DF_SYMBOLIC in DT_FLAGS.
13096
13097 2009-10-14 Ian Lance Taylor <iant@google.com>
13098
13099 * object.h (class Relocate_info): Add reloc_shdr and data_shdr
13100 fields.
13101 * object.cc (Sized_relobj::relocate_sections): Set reloc_shdr and
13102 data_shdr fields of relinfo.
13103 * i386.cc (class Target_i386::Relocate): Remove ldo_addrs_ field.
13104 (Target_i386::Relocate::relocate_tls): Don't call fix_up_ldo. For
13105 R_386_TLS_LDO_32, adjust based on section flags.
13106 (Target_i386::Relocate::fix_up_ldo): Remove.
13107
13108 2009-10-13 Ian Lance Taylor <iant@google.com>
13109
13110 Add support for -pie.
13111 * options.h (class General_options): Add -pie and
13112 --pic-executable.
13113 (General_options::output_is_position_independent): Test -pie.
13114 (General_options::output_is_executable): Return true if not shared
13115 and not relocatable.
13116 (General_options::output_is_pie): Remove.
13117 * options.cc (General_options::finalize): Reject incompatible uses
13118 of -pie.
13119 * gold.cc (queue_middle_tasks): A -pie link is not static.
13120 * symtab.h (Symbol::needs_plt_entry): Return false if -pie.
13121 * symtab.cc (Symbol::final_value_is_known): Return false if
13122 output_is_position_independent.
13123 * layout.cc (Layout::set_segment_offsets): Start at address 0 if
13124 output_is_position_independent.
13125 * output.cc (Output_file_header::do_sized_write): Use ET_DYN if
13126 output_is_position_independent.
13127 * i386.cc (Output_data_plt_i386::do_write): Use the PIC PLT if
13128 output_is_position_independent.
13129 * testsuite/Makefile.am (check_PROGRAMS): Add basic_pie_test and
13130 two_file_pie_test.
13131 (basic_pie_test.o, basic_pie_test): New targets.
13132 (two_file_test_1_pie.o, two_file_test_1b_pie.o): New targets.
13133 (two_file_test_2_pie.o, two_file_test_main_pie.o): New targets.
13134 (two_file_pie_test): New target.
13135 * testsuite/Makefile.in: Rebuild.
13136 * README: Remove note saying that -pie is not supported.
13137
13138 2009-10-13 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
13139
13140 * options.h (class General_options): Add -init and -fini.
13141 * layout.cc (Layout::finish_dynamic_section): Emit
13142 given init and fini functions.
13143
13144 2009-10-13 Sriraman Tallam <tmsriram@google.com>
13145
13146 * gc.h (gc_process_relocs): Check if icf is enabled using new
13147 function.
13148 * gold.cc (queue_initial_tasks): Likewise.
13149 (queue_middle_tasks): Likewise.
13150 * object.cc (do_layout): Likewise.
13151 * symtab.cc (is_section_folded): Likewise.
13152 * main.cc (main): Likewise.
13153 * reloc.cc (Read_relocs::run): Likewise.
13154 (Sized_relobj::do_scan_relocs): Likewise.
13155 * icf.cc (is_function_ctor_or_dtor): New function.
13156 (Icf::find_identical_sections): Check if function is ctor or dtor when
13157 safe icf is chosen.
13158 * options.h (General_options::icf): Change option to be an enum.
13159 (Icf_status): New enum.
13160 (icf_enabled): New method.
13161 (icf_safe_folding): New method.
13162 (set_icf_status): New method.
13163 (icf_status_): New variable.
13164 * (options.cc) (General_options::finalize): Set icf_status_.
13165 * testsuite/Makefile.am: Add commands to build icf_safe_test. Modify
13166 icf_test and icf_keep_unique_test to use the --icf enum flag.
13167 * testsuite/icf_safe_test.sh: New file.
13168 * testsuite/icf_safe_test.cc: New file.
13169
13170 2009-10-12 Sriraman Tallam <tmsriram@google.com>
13171
13172 * symtab.h: Check for GOLD_SYMTAB_H before header includes. Remove
13173 includes to gc.h and icf.h.
13174 * arm.cc: Include gc.h.
13175 * gold.cc: Likewise.
13176 * i386.cc: Likewise.
13177 * powerpc.cc: Likewise.
13178 * sparc.cc: Likewise.
13179 * x86_64.cc: Likewise.
13180 * gc.h: Include icf.h.
13181
13182 2009-10-11 Ian Lance Taylor <iant@google.com>
13183
13184 * plugin.cc: Include "gold.h" before other header files.
13185
13186 2009-10-10 Chris Demetriou <cgd@google.com>
13187
13188 * options.h (Input_file_argument::Input_file_type): New enum.
13189 (Input_file_argument::is_lib_): Replace with...
13190 (Input_file_argument::type_): New member.
13191 (Input_file_argument::Input_file_argument): Take Input_file_type
13192 'type' rather than boolean 'is_lib' as second argument.
13193 (Input_file_argument::is_lib): Use type_.
13194 (Input_file_argument::is_searched_file): New function.
13195 (Input_file_argument::may_need_search): Handle is_searched_file.
13196 * options.cc (General_options::parse_library): Support -l:filename.
13197 (General_options::parse_just_symbols): Update for Input_file_argument
13198 changes.
13199 (Command_line::process): Likewise.
13200 * archive.cc (Archive::get_file_and_offset): Likewise.
13201 * plugin.cc (Plugin_manager::release_input_file): Likewise.
13202 * script.cc (read_script_file, script_add_file): Likewise.
13203 * fileread.cc (Input_file::Input_file): Likewise.
13204 (Input_file::will_search_for): Handle is_searched_file.
13205 (Input_file::open): Likewise.
13206 * readsyms.cc (Read_symbols::get_name): Likewise.
13207 * testsuite/Makefile.am (searched_file_test): New test.
13208 * testsuite/Makefile.in: Regenerate.
13209 * testsuite/searched_file_test.cc: New file.
13210 * testsuite/searched_file_test_lib.cc: New file.
13211
13212 2009-10-09 Andrew Pinski <andrew_pinski@playstation.sony.com>
13213 Ian Lance Taylor <iant@google.com>
13214
13215 * descriptor.cc: Include <cstdio> and "binary-io.h".
13216 (Descriptors::open): Open the files in binary mode always.
13217 * script.cc (Lex::get_token): Treat \r as whitespace.
13218
13219 2009-10-09 Ian Lance Taylor <iant@google.com>
13220
13221 * testsuite/retain_symbols_file_test.sh: Don't test for __tcf_0.
13222
13223 2009-10-09 Andrew Pinski <andrew_pinski@playstation.sony.com>
13224 Ian Lance Taylor <iant@google.com>
13225
13226 * configure.ac: Check for readv function also.
13227 * fileread.cc (readv): Define if not HAVE_READV.
13228 * fileread.h (File_read:: max_readv_entries): Set to 1 if readv
13229 does not exist.
13230 * config.in: Regenerate.
13231 * configure: Regenerate.
13232
13233 2009-10-09 Doug Kwan <dougkwan@google.com>
13234
13235 * layout.cc (Layout::make_output_section): Call target hook to make
13236 ordinary output section.
13237 (Layout::finalize): Adjust parameter list of call the
13238 Target::may_relax().
13239 * layout.h (class Layout::section_list): New method.
13240 * merge.h (Output_merge_base::entsize): Change visibility to public.
13241 (Output_merge_base::is_string, Output_merge_base::do_is_string):
13242 New methods.
13243 (Output_merge_string::do_is_string): New method.
13244 * object.cc (Sized_relobj::do_setup): renamed from
13245 Sized_relobj::set_up.
13246 * object.h (Sized_relobj::adjust_shndx,
13247 Sized_relobj::initializ_input_to_output_maps,
13248 Sized_relobj::free_input_to_output_maps): Change visibilities to
13249 protected.
13250 (Sized_relobj::setup): Virtualize.
13251 (Sized_relobj::do_setup): New method declaration.
13252 (Sized_relobj::invalidate_section_offset,
13253 Sized_relobj::do_invalidate_section_offset): New method decfinitions.
13254 (Sized_relobj::elf_file, Sized_relobj::local_values): New methods.
13255 * options.cc (parse_int): New function.
13256 * options.h (parse_int): New declaration.
13257 (DEFINE_int): New macro.
13258 (stub_group_size): New option.
13259 * output.cc (Output_section::Output_section): Initialize memebers
13260 merge_section_map_, merge_section_by_properties_map_,
13261 relaxed_input_section_map_, is_relaxed_input_section_map_valid_.
13262 (Output_section::add_input_section): Handled deferred code-fill
13263 generation and remove an old comment.
13264 (Output_section::add_relaxed_input_section): New method definition.
13265 (Output_section::add_merge_input_section): Use merge section by
13266 properties map to speed to search. Update merge section maps
13267 as appropriate.
13268 (Output_section::build_relaxation_map): New method definition.
13269 (Output_section::convert_input_sections_in_list_to_relaxed_sections):
13270 Same.
13271 (Output_section::relax_input_section): Renamed to
13272 Output_section::convert_input_sections_to_relaxed_sections and change
13273 interface to take a vector of pointers to relaxed sections.
13274 (Output_section::find_merge_section,
13275 Output_section::find_relaxed_input_section): New method definitions.
13276 (Output_section::is_input_address_mapped,
13277 Output_section::output_offset, Output_section::output_address):
13278 Use output section data maps to speed up searching.
13279 (Output_section::find_starting_output_address): Add comments.
13280 (Output_section::do_write,
13281 Output_section::write_to_postprocessing_buffer): Do code-fill
13282 generation as appropriate.
13283 (Output_section::get_input_sections): Invalidate relaxed input section
13284 map.
13285 (Output_section::restore_states): Adjust type of checkpoint .
13286 Invalidate relaxed input section map.
13287 * output.h (Output_merge_base): New class declaration.
13288 (Input_section_specifier): New class defintion.
13289 (class Output_relaxed_input_section) Change base class to
13290 Output_section_data_build.
13291 (Output_relaxed_input_section::Output_relaxed_input_section): Adjust
13292 base class initializer.
13293 (Output_section::add_relaxed_input_section): New method declaration.
13294 (Output_section::Input_section): Change visibility to protected.
13295 (Output_section::Input_section::relobj,
13296 Output_section::Input_section::shndx): Handle relaxed input sections.
13297 Output_section::input_sections) Change visibility to protected. Also
13298 define overload to return a non-const pointer.
13299 (Output_section::Merge_section_properties): New class defintion.
13300 (Output_section::Merge_section_by_properties_map,
13301 Output_section::Output_section_data_by_input_section_map,
13302 Output_section::Relaxation_map): New types.
13303 (Output_section::relax_input_section): Rename method to
13304 Output_section::convert_input_sections_to_relaxed_sections and change
13305 interface to take a vector of relaxed section pointers.
13306 (Output_section::find_merge_section,
13307 Output_section::find_relaxed_input_section,
13308 Output_section::build_relaxation_map,
13309 Output_section::convert_input_sections_in_list_to_relaxed_sections):
13310 New method declarations.
13311 (Output_section::merge_section_map_
13312 Output_section::merge_section_by_properties_map_,
13313 Output_section::relaxed_input_section_map_,
13314 Output_section::is_relaxed_input_section_map_valid_,
13315 Output_section::generate_code_fills_at_write_): New data members.
13316 * script-sections.cc
13317 (Output_section_element_input::set_section_addresses): Call
13318 current_data_size and addralign methods of relaxed input sections.
13319 (Orphan_output_section::set_section_addresses): Call current_data_size
13320 and addralign methods of relaxed input sections.
13321 * symtab.cc (Symbol_table::compute_final_value): Extract template
13322 from the body of Symbol_table::sized_finalize_symbol.
13323 (Symbol_table::sized_finalized_symbol): Call
13324 Symbol_table::compute_final_value.
13325 * symtab.h (Symbol_table::Compute_final_value_status): New enum type.
13326 (Symbol_table::compute_final_value): New templated method declaration.
13327 * target.cc (Target::do_make_output_section): New method defintion.
13328 * target.h (Target::make_output_section): New method declaration.
13329 (Target::relax): Add more parameters for input objects, symbol table
13330 and layout. Adjust call to do_relax.
13331 (Target::do_make_output_section): New method declaration.
13332 (Target::do_relax): Add parameters for input objects, symbol table
13333 and layout.
13334
13335 2009-10-09 Andrew Pinski <andrew_pinski@playstation.sony.com>
13336
13337 * pread.c: Include stdio.h.
13338
13339 2009-10-09 Andrew Pinski <andrew_pinski@playstation.sony.com>
13340
13341 * plugin.cc: Don't include dlfcn.h when ENABLE_PLUGINS is not
13342 defined.
13343
13344 2009-10-09 Andrew Pinski <andrew_pinski@playstation.sony.com>
13345
13346 * dwarf_reader.cc (Sized_dwarf_line_info::Sized_dwarf_line_info):
13347 Change read_shndx type to unsigned int.
13348 (Sized_dwarf_line_info::read_lines): Change shndx type to unsigned
13349 int.
13350 (Sized_dwarf_line_info::read_line_mappings): Likewise.
13351 * dwarf_reader.h (Sized_dwarf_line_info::Sized_dwarf_line_info):
13352 Change read_shndx type to unsigned int.
13353 (Sized_dwarf_line_info::read_lines): Change shndx type to unsigned
13354 int.
13355 (Sized_dwarf_line_info::read_line_mappings): Likewise.
13356 * layout.cc (Layout::create_symtab_sections): Cast the result of
13357 local_symcount * symsize to off_t in the gold_assert.
13358
13359 2009-10-09 Viktor Kutuzov <vkutuzov@accesssoftek.com>
13360
13361 * arm.cc (Target_arm::relocate::reloc_is_non_pic): Return true for
13362 R_ARM_THM_ABS5, R_ARM_ABS8, R_ARM_ABS12, R_ARM_ABS16,
13363 R_ARM_BASE_ABS.
13364 (Arm_relocate_functions::abs8): Remove has_thumb_bit parameter.
13365 (Arm_relocate_functions::thm_abs5): New function.
13366 (Arm_relocate_functions::abs12): New function.
13367 (Arm_relocate_functions::abs16): New function.
13368 (Arm_relocate_functions::base_abs): New function.
13369 (Scan::check_non_pic): Handle R_ARM_ABS32_NOI.
13370 (Scan::local): Remove special handling of R_ARM_ABS8. Handle
13371 R_ARM_ABS32_NOI, R_ARM_THM_ABS5, R_ARM_ABS12, R_ARM_ABS16, and
13372 R_ARM_BASE_ABS.
13373 (Scan::global): Likewise.
13374 (Relocate::relocate): Handle R_ARM_ABS12, R_ARM_ABS16,
13375 R_ARM_ABS32_NOI, R_ARM_THM_ABS5, and R_ARM_BASE_ABS.
13376 (Relocatable_size_for_reloc::get_size_for_reloc): Handle
13377 R_ARM_ABS16, R_ARM_THM_ABS5, R_ARM_ABS32_NOI, R_ARM_ABS12, and
13378 R_ARM_BASE_ABS.
13379
13380 2009-10-09 Viktor Kutuzov <vkutuzov@accesssoftek.com>
13381
13382 * arm.cc (Arm_relocate_functions::movw_prel_nc): New function.
13383 (Arm_relocate_functions::movt_prel): New function.
13384 (Arm_relocate_functions::thm_movw_prel_nc): New function.
13385 (Arm_relocate_functions::thm_movt_prel): New function.
13386 (Scan::local): Handle R_ARM_MOVW_PREL_NC, R_ARM_MOVT_PREL,
13387 R_ARM_THM_MOVW_PREL_NC, and R_ARM_THM_MOVT_PREL.
13388 (Scan::global, Relocate::relocate): Likewise.
13389 (Relocatable_size_for_reloc::get_size_for_reloc): Likewise.
13390
13391 2009-10-09 Mikolaj Zalewski <mikolajz@google.com>
13392
13393 * gold.cc: (queue_initial_tasks): Pass incremental_inputs to
13394 Incremental_checker.
13395 * incremental.cc: (INCREMENTAL_LINK_VERSION): Change type to
13396 unsigned int.
13397 (class Incremental_inputs_header): New class.
13398 (Incremental_inputs_header_writer): Edit comment.
13399 (Incremental_inputs_entry): New class.
13400 (Incremental_inputs_entry_writer): Edit comment.
13401 (Sized_incremental_binary::do_find_incremental_inputs_section):
13402 Add *strtab_shndx parameter, fill it.
13403 (Sized_incremental_binary::do_check_inputs): New method.
13404 (Incremental_checker::can_incrementally_link_output_file): Use
13405 Sized_incremental_binary::check_inputs.
13406 (Incremental_inputs::report_command_line): Save command line in
13407 command_line_.
13408 * incremental.h:
13409 (Incremental_binary::find_incremental_inputs_section): New
13410 method.
13411 (Incremental_binary::do_find_incremental_inputs_section): Add
13412 strtab_shndx parameter.
13413 (Incremental_binary::do_check_inputs): New pure virtual method.
13414 (Sized_incremental_binary::do_check_inputs): Declare.
13415 (Incremental_checker::Incremental_checker): Add incremental_inputs
13416 parameter, use it to initialize incremental_inputs_.
13417 (Incremental_checker::incremental_inputs_): New field.
13418 (Incremental_checker::command_line): New method.
13419 (Incremental_checker::inputs): New method.
13420 (Incremental_checker::command_line_): New field.
13421
13422 2009-10-09 Mikolaj Zalewski <mikolajz@google.com>
13423
13424 * incremental.cc: Include <cstdarg> and "target-select.h".
13425 (vexplain_no_incremental): New function.
13426 (explain_no_incremental): New function.
13427 (Incremental_binary::error): New method.
13428 (Sized_incremental_binary::do_find_incremental_inputs_section): New
13429 method.
13430 (make_sized_incremental_binary): New function.
13431 (open_incremental_binary): New function.
13432 (can_incrementally_link_file): Add checks if output is ELF and has
13433 inputs section.
13434 * incremental.h: Include "elfcpp_file.h" and "output.h".
13435 (Incremental_binary): New class.
13436 (Sized_incremental_binary): New class.
13437 (open_incremental_binary): Declare.
13438 * object.cc (is_elf_object): Use
13439 elfcpp::Elf_recognizer::is_elf_file.
13440 (make_elf_object): Use elfcpp::Elf_recognizer::is_valid_header.
13441 * output.h (Output_file::filesize): New method.
13442
13443 2009-10-07 Viktor Kutuzov <vkutuzov@accesssoftek.com>
13444
13445 * arm.cc (Arm_relocate_functions::extract_arm_movw_movt_addend):
13446 New function.
13447 (Arm_relocate_functions::insert_val_arm_movw_movt): New function.
13448 (Arm_relocate_functions::extract_thumb_movw_movt_addend): New
13449 function.
13450 (Arm_relocate_functions::insert_val_thumb_movw_movt): New
13451 function.
13452 (Arm_relocate_functions::movw_abs_nc): New function.
13453 (Arm_relocate_functions::movt_abs): New function.
13454 (Arm_relocate_functions::thm_movw_abs_nc): New function.
13455 (Arm_relocate_functions::thm_movt_abs): New function.
13456 (Scan::local): Handle R_ARM_MOVW_ABS_NC, R_ARM_MOVT_ABS,
13457 R_ARM_THM_MOVW_ABS_NC, R_ARM_THM_MOVT_ABS.
13458 (Scan::global): Likewise.
13459 (Relocate::relocate): Likewise.
13460 (Relocatable_size_for_reloc::get_size_for_reloc): Likewise.
13461
13462 2009-10-07 Viktor Kutuzov <vkutuzov@accesssoftek.com>
13463
13464 * arm.cc (Arm_relocate_functions::got_prel) New function.
13465 (Scan::local, Scan::global): Handle R_ARM_GOT_PREL.
13466 (Relocate::relocate): Likewise.
13467 (Relocatable_size_for_reloc::get_size_for_reloc): Likewise.
13468
13469 2009-10-06 Ian Lance Taylor <iant@google.com>
13470
13471 * options.h (class General_options): Define
13472 split_stack_adjust_size parameter.
13473 * object.h (class Object): Add uses_split_stack_ and
13474 has_no_split_stack_ fields. Add uses_split_stack and
13475 has_no_split_stack accessor functions. Declare
13476 handle_split_stack_section.
13477 (class Reloc_symbol_changes): Define.
13478 (class Sized_relobj): Define Function_offsets. Declare
13479 split_stack_adjust, split_stack_adjust_reltype, and
13480 find_functions.
13481 * object.cc (Object::handle_split_stack_section): New function.
13482 (Sized_relobj::do_layout): Call handle_split_stack_section.
13483 * dynobj.cc (Sized_dynobj::do_layout): Call
13484 handle_split_stack_section.
13485 * reloc.cc (Sized_relobj::relocate_sections): Call
13486 split_stack_adjust for executable sections in split_stack
13487 objects. Pass reloc_map to relocate_section.
13488 (Sized_relobj::split_stack_adjust): New function.
13489 (Sized_relobj::split_stack_adjust_reltype): New function.
13490 (Sized_relobj::find_functions): New function.
13491 * target-reloc.h: Include "object.h".
13492 (relocate_section): Add reloc_symbol_changes parameter. Change
13493 all callers.
13494 * target.h (class Target): Add calls_non_split method. Declare
13495 do_calls_non_split virtual method. Declare match_view and
13496 set_view_to_nop.
13497 * target.cc: Include "elfcpp.h".
13498 (Target::do_calls_non_split): New function.
13499 (Target::match_view): New function.
13500 (Target::set_view_to_nop): New function.
13501 * gold.cc (queue_middle_tasks): Give an error if mixing
13502 split-stack and non-split-stack objects with -r.
13503 * i386.cc (Target_i386::relocate_section): Add
13504 reloc_symbol_changes parameter.
13505 (Target_i386::do_calls_non_split): New function.
13506 * x86_64.cc (Target_x86_64::relocate_section): Add
13507 reloc_symbol_changes parameter.
13508 (Target_x86_64::do_calls_non_split): New function.
13509 * arm.cc (Target_arm::relocate_section): Add reloc_symbol_changes
13510 parameter.
13511 * powerpc.cc (Target_powerpc::relocate_section): Add
13512 reloc_symbol_changes parameter.
13513 * sparc.cc (Target_sparc::relocate_section): Add
13514 reloc_symbol_changes parameter.
13515 * configure.ac: Call AM_CONDITIONAL for the default target.
13516 * configure: Rebuild.
13517 * testsuite/Makefile.am (TEST_AS): New variable.
13518 (check_SCRIPTS): Add split_i386.sh and split_x86_64.sh.
13519 (check_DATA): Add split_i386 and split_x86_64 files.
13520 (SPLIT_DEFSYMS): Define.
13521 (split_i386_[1234n].o): New targets.
13522 (split_i386_[124]): New targets.
13523 (split_i386_[1234r].stdout): New targets.
13524 (split_x86_64_[1234n].o): New targets.
13525 (split_x86_64_[124]): New targets.
13526 (split_x86_64_[1234r].stdout): New targets.
13527 (MOSTLYCLEANFILES): Add new executables.
13528 * testsuite/split_i386.sh: New file.
13529 * testsuite/split_x86_64.sh: New file.
13530 * testsuite/split_i386_1.s: New file.
13531 * testsuite/split_i386_2.s: New file.
13532 * testsuite/split_i386_3.s: New file.
13533 * testsuite/split_i386_4.s: New file.
13534 * testsuite/split_i386_n.s: New file.
13535 * testsuite/split_x86_64_1.s: New file.
13536 * testsuite/split_x86_64_2.s: New file.
13537 * testsuite/split_x86_64_3.s: New file.
13538 * testsuite/split_x86_64_4.s: New file.
13539 * testsuite/split_x86_64_n.s: New file.
13540 * testsuite/testfile.cc (Target_test): Update relocation_section
13541 function.
13542 * testsuite/Makefile.in: Rebuild.
13543
13544 2009-10-06 Ian Lance Taylor <iant@google.com>
13545
13546 * i386.cc (class Target_i386::Relocate): Add ldo_addrs_ field.
13547 (Target_i386::Relocate::relocate_tls): Call fix_up_ldo before
13548 changing local_dynamic_type_ from LOCAL_DYNAMIC_NONE. When
13549 handling R_386_TLS_LDO_32, if local_dynamic_type_ is NONE, push
13550 the address on ldo_addrs_.
13551 (Target_i386::Relocate::fix_up_ldo): New function.
13552
13553 2009-10-06 Rafael Espindola <espindola@google.com>
13554
13555 * plugin.cc (add_input_library): New.
13556 (Plugin::load): Add add_input_library to tv.
13557 (Plugin_manager::add_input_file): Add the is_lib argument.
13558 (add_input_file): Update call to Plugin_manager::add_input_file.
13559 (add_input_library): New.
13560 * plugin.h (Plugin_manager::add_input_file): Add the is_lib argument.
13561
13562 2009-09-30 Doug Kwan <dougkwan@google.com>
13563
13564 * arm.cc (Target_arm::may_need_copy_reloc): Check for THUMB function
13565 symbol and call Symbol::may_need_copy_reloc to determine if
13566 a copy reloc is needed.
13567 * copy-relocs.cc (Copy_relocs::need_copy_reloc): Return false if -z
13568 nocopyreloc is given in command line.
13569 (Copy_relocs::emit_copy_reloc): Assert that -z nocopyreloc is not
13570 given in command line.
13571 * i386.cc (Target_i386::may_need_copy_reloc): Remove.
13572 (Target_i386::Scan::global): Use Symbol::may_need_copy_reloc instead
13573 of the removed Target_i386::may_need_copy_reloc.
13574 * options.h (copyreloc): New option with default value false.
13575 * powerpc.cc (Target_powerpc::may_need_copy_reloc): Remove.
13576 (Target_powerpc::Scan::global): Use Symbol::may_need_copy_reloc
13577 instead of the removed Target_powerpc::may_need_copy_reloc.
13578 * sparc.cc (Target_powerpc::may_need_copy_reloc): Remove.
13579 (Target_sparc::Scan::global): Use Symbol::may_need_copy_reloc
13580 instead of the removed Target_sparc::may_need_copy_reloc.
13581 * symtab.h (Symbol::may_need_copy_reloc): New method definition.
13582 * x86_64.cc (Target_powerpc::may_need_copy_reloc): Remove.
13583 (Target_x86_64::Scan::global): Use Symbol::may_need_copy_reloc
13584 instead of the removed Target_x86_64::may_need_copy_reloc.
13585
13586 2009-09-30 Ian Lance Taylor <iant@google.com>
13587
13588 * object.h (class Object): Remove target_ field, and target,
13589 sized_target, and set_target methods.
13590 (Object::sized_target): Remove.
13591 (class Sized_relobj): Update declarations. Remove sized_target.
13592 * object.cc (Sized_relobj::setup): Remove target parameter.
13593 Change all callers.
13594 (Input_objects::add_object): Don't do anything with the target.
13595 (make_elf_sized_object): Add punconfigured parameter. Change all
13596 callers. Set or test parameter target.
13597 * dynobj.cc (Sized_dynobj::target): Remove target parameter.
13598 Change all callers.
13599 * parameters.cc (Parameters::set_target): Change parameter type to
13600 be non-const.
13601 (Parameters::default_target): Remove.
13602 (set_parameters_target): Change parameter type to be non-const.
13603 (parameters_force_valid_target): New function.
13604 (parameters_clear_target): New function.
13605 * parameters.h (class Parameters): Update declarations. Remove
13606 default_target method. Add sized_target and clear_target
13607 methods. Change target_ to be non-const.
13608 (set_parameters_target): Update declaration.
13609 (parameters_force_valid_target): Declare.
13610 (parameters_clear_target): Declare.
13611 * readsyms.cc (Read_symbols::do_read_symbols): Pass punconfigured
13612 as NULL if we aren't searching.
13613 (Add_symbols::run): Don't check for compatible target.
13614 * fileread.cc (Input_file::open_binary): Call
13615 parameters_force_valid_target.
13616 * gold.cc (queue_middle_tasks): Likewise.
13617 * plugin.cc (make_sized_plugin_object): Likewise. Don't call
13618 set_target on object.
13619 * dynobj.h (class Sized_dynobj): Update declarations.
13620 * archive.cc (Archive::get_elf_object_for_member): Return NULL if
13621 make_elf_object returns NULL.
13622 (Archive::include_member): Don't check whether object target is
13623 compatible.
13624 * output.cc (Output_section::add_input_section): Get target from
13625 parameters.
13626 (Output_section::relax_input_section): Likewise.
13627 * reloc.cc (Sized_relobj::do_gc_process_relocs): Get target from
13628 parameters.
13629 (Sized_relobj::do_scan_relocs): Likewise.
13630 (Sized_relobj::relocate_sections): Likewise.
13631 * resolve.cc (Symbol_table::resolve): Likewise.
13632 * symtab.cc (Symbol_table::wrap_symbol): Likewise. Remove object
13633 parameter. Change all callers.
13634 (Symbol_table::add_from_object): Get target from parameters.
13635 (Symbol_table::add_from_relobj): Don't check object target.
13636 (Symbol_table::add_from_dynobj): Likewise.
13637 (Symbol_table::define_special_symbol): Get target from
13638 parameters.
13639 * symtab.h (class Symbol_table): Update declaration.
13640 * testsuite/binary_unittest.cc (gold_testsuite): Remove target
13641 parameter. Change all callers. Clear parameter target.
13642 (Binary_test): Test target here.
13643 * testsuite/object_unittest.cc (gold_testsuite): Remove
13644 target_test_pointer parameter. Change all callers.
13645 (Object_test): Test target here.
13646
13647 2009-09-26 Ian Lance Taylor <iant@google.com>
13648
13649 * testsuite/initpri1.c: Don't try to use constructor priorities if
13650 compiling with gcc before 4.3.
13651
13652 2009-09-22 Mikolaj Zalewski <mikolajz@google.com>
13653
13654 * testsuite/retain_symbols_file_test.sh (check_present): Change
13655 output file name to retain_symbols_file_test.stdout.
13656 (check_absent): Likewise.
13657
13658 2009-09-18 Craig Silverstein <csilvers@google.com>
13659
13660 * object.cc (Sized_relobj::do_count): Test should_retain_symbol map.
13661 * options.cc: Include <cerrno> and <fstream>.
13662 (General_options::finalize): Parse -retain-symbols-file tag.
13663 * options.h: New flag.
13664 (General_options): New method should_retain_symbol, new
13665 variable symbols_to_retain.
13666 * symtab.cc (Symbol_table::sized_finalize_symbol): Test
13667 should_retain_symbol map.
13668 * testsuite/Makefile.am (retain_symbols_file_test): New test.
13669 * testsuite/Makefile.in: Regenerate.
13670 * testsuite/retain_symbols_file_test.sh: New file.
13671
13672 2009-09-18 Nick Clifton <nickc@redhat.com>
13673
13674 * po/es.po: Updated Spanish translation.
13675
13676 2009-09-17 Doug Kwan <dougkwan@google.com>
13677
13678 * debug.h (DEBUG_RELAXATION): New constant.
13679 (DEBUG_ALL): Add DEBUG_RELAXATION.
13680 (debug_string_to_enum): Add relaxation debug option.
13681 * layout.cc
13682 (Layout::Relaxation_debug_check::check_output_data_for_reset_values,
13683 Layout::Relaxation_debug_check::read_sections,
13684 Layout::Relaxation_debug_check::read_sections): New method definitions.
13685 (Layout::Layout): Initialize data members
13686 record_output_section_data_from_scrips_,
13687 script_output_section_data_list_ and relaxation_debug_check_.
13688 (Layout::save_segments, Layout::restore_segments,
13689 Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
13690 Layout::relaxation_loop_body): New method definitions.
13691 (Layout::finalize): Support relaxation. Move section layout code to
13692 Layout::relaxation_loop_body.
13693 (Layout::set_asection_address_from_script): Move code for orphan
13694 section placement out.
13695 (Layout::place_orphan_sections_in_script): New method definition.
13696 * layout.h (Output_segment_headers, Output_file_header):
13697 New forward class declarations.
13698 (Layout::~Layout): Define.
13699 (Layout::new_output_section_data_from_script): New method definition.
13700 (Layout::place_orphan_sections_in_script): New method declaration.
13701 (Layout::Segment_states): New type declaration.
13702 (Layout::save_segments, Layout::restore_segments,
13703 Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
13704 Layout::relaxation_loop_body): New method declarations.
13705 (Layout::Output_section_data_list): New type declaration.
13706 (Layout::Relaxation_debug_check): New class definition.
13707 (Layout::record_output_section_data_from_script_,
13708 Layout::script_output_section_data_list_, Layout::segment_states_,
13709 Layout::relaxation_debug_check_): New data members.
13710 * output.cc: (Output_section_headers::do_size): New method definition.
13711 (Output_section_headers::Output_section_headers): Move size
13712 computation to Output_section_headers::do_size.
13713 (Output_segment_headers::do_size): New method definition.
13714 (Output_file_header::Output_file_header): Move size computation to
13715 Output_file_header::do_size and call it.
13716 (Output_file_header::do_size): New method definition.
13717 (Output_data_group::Output_data_group): Adjust call to
13718 Output_section_data.
13719 (Output_data_dynamic::set_final_data_size): Add DT_NULL tag only once.
13720 (Output_symtab_xindex::do_write): Add array bound check.
13721 (Output_section::Input_section::print_to_mapfile): Handle
13722 RELAXED_INPUT_SECTION_CODE.
13723 (Output_section::Output_section): Initialize data member checkpoint_.
13724 (Output_section::~Output_section): Delete checkpoint object pointed
13725 by checkpoint_.
13726 (Output_section::add_input_section): Always add an Input_section if
13727 relaxing.
13728 (Output_section::add_merge_input_section): Add assert.
13729 (Output_section::relax_input_section): New method definition.
13730 (Output_section::set_final_data_size): Set load address to zero for
13731 an unallocated section.
13732 (Output_section::do_address_and_file_offset_have_reset_values):
13733 New method definition.
13734 (Output_section::Input_section_sort_enty::Input_section_sort_enty):
13735 Handle relaxed input section.
13736 (Output_section::sort_attached_input_sections): Checkpoint input
13737 section list lazily.
13738 (Output_section::get_input_sections): Change type of input_sections to
13739 list of Simple_input_section pointers. Checkpoint input section list
13740 lazily. Also handle relaxed input sections.
13741 (Output_section::add_input_section_for_script): Take a reference to
13742 a Simple_input_section object instead of Relobj pointer and section
13743 index as parameter. Handle relaxed input sections.
13744 (Output_section::save_states, Output_section::restore_states): New
13745 method definitions.
13746 * output.h (Output_data::Output_data): Initialize is_data_size_fixed_.
13747 (Output_data::is_data_size_fixed): New method definition.
13748 (Output_data::reset_addresss_and_file_offset): Do not reset data size
13749 if it is fixed.
13750 (Output_data::address_and_file_offset_have_reset_values): New method
13751 definition.
13752 (Output_data::do_address_and_file_offset_have_reset_values): New method
13753 definition.
13754 (Output_data::set_data_size): Check that data size is not fixed.
13755 (Output_data::fix_data_size): New method definition.
13756 (Output_data::is_data_size_fixed_): New data member.
13757 (Output_section_headers::set_final_data_size): New method definition.
13758 (Output_section_headers::do_size): New method declaration.
13759 (Output_segment_headers::set_final_data_size): New method definition.
13760 (Output_segment_headers::do_size): New method declaration.
13761 (Output_file_header::set_final_data_size)::New method definition.
13762 (Output_file_header::do_size)::New method declaration.
13763 (Output_section_data::Output_section_data): Add new parameter
13764 is_data_size_fixed and use it to fix data size.
13765 (Output_data_const::Output_data_const): Adjust call to base class
13766 constructor and fix data size.
13767 (Output_data_const_buffer::Output_data_const_buffer): Adjust call to
13768 base class constructor and fix data size.
13769 (Output_data_fixed_space::Output_data_fixed_space): Adjust call to
13770 base class constructor and fix data size.
13771 (Output_data_zero_fill::Output_data_zero_fill): Adjust call to base
13772 class constructor and fix data size.
13773 (Output_data_group::set_final_data_size): New method definition.
13774 (Output_data_dynamic::Dynamic_entry::tag): New method definition.
13775 (Output_symtab_xindex::Output_symtab_xindex): Adjust call to base
13776 class constructor and fix data size.
13777 (Output_relaxed_input_section): New class definition.
13778 (Output_section::Simple_input_section): New class definition.
13779 (Output_section::get_input_sections): Adjust parameter list.
13780 (Output_section::add_input_section_for_script): Same.
13781 (Output_section::save_states, Output_section::restore_states,
13782 Output_section::do_address_and_file_offset_have_reset_values,
13783 (Output_section::Input_section::Input_section): Handle
13784 RELAXED_INPUT_SECTION_CODE. Add new overload for
13785 Output_relaxed_input_section.
13786 (Output_section::Input_section::is_input_section,
13787 Output_section::Input_section::set_output_section): Handle relaxed
13788 input section.
13789 (Output_section::Input_section::is_relaxed_input_section,
13790 Output_section::Input_section::output_section_data,
13791 Output_section::Input_section::relaxed_input_section): New method
13792 definitions.
13793 (Output_section::Input_section::RELAXED_INPUT_SECTION_CODE): New enum
13794 value.
13795 (Output_section::Input_section::u1_): Update comments.
13796 (Output_section::Input_section::u2_): Add new union member poris.
13797 (Output_section::Checkpoint_output_section): New classs definition.
13798 (Output_section::relax_input_section): New method declaration.
13799 (Output_section::checkpoint_): New data member.
13800 (Output_segment): Update comments.
13801 (Output_segment::Output_segment): Un-privatize copy constructor.
13802 (Output_segment::operator=): Un-privatize.
13803 * script-sections.cc (Output_section_element::Input_section_list):
13804 Change element type to Output_section::Simple_input_section.
13805 (Output_section_element_dot_assignment::set_section_addresses):
13806 Register output section data for relaxation clean up.
13807 (Output_data_exression::Output_data_expression): Adjust call to base
13808 constructor to fix data size.
13809 (Output_section_element_data::set_section_addresses): Register
13810 Output_data_expression object for relaxation clean up.
13811 (struct Input_section_info): Replace Relobj pointer and section index
13812 pair with Output_section::Simple_input_section and Convert struct to a
13813 class.
13814 (Input_section_sorter::operator()): Adjust access to
13815 Input_section_info data member to use accessors.
13816 (Output_section_element_input::set_section_addresses): Use layout
13817 parameter. Adjust code to use Output_section::Simple_input_section
13818 and Input_secction_info classes. Register filler for relaxation
13819 clean up.
13820 (Orphan_output_section::set_section_addresses): Replace Relobj pointer
13821 and section index pair with Output_section::Simple_input_section
13822 class. Adjust code accordingly.
13823 (Phdrs_element::release_segment): New method definition.
13824 (Script_sections::attach_sections_using_phdrs_clause): Do not modify
13825 segment list.
13826 (Script_sections::release_segments): New method definition.
13827 * gold/script-sections.h (Script_sections::release_segments): New
13828 method declaration.
13829 * gold/target.h (Target::may_relax, Target::relax,
13830 Target::do_may_relax, Target::do_relax): New method definitions.
13831
13832 2009-09-17 Viktor Kutuzov <vkutuzov@accesssoftek.com>
13833
13834 * arm.cc (has_signed_unsigned_overflow): New function.
13835 (Arm_relocate_functions::abs8): New function.
13836 (Target_arm::Scan::local): Handle R_ARM_ABS8.
13837 (Target_arm::Scan::global): Likewise.
13838 (Target_arm::relocate::relocate): Likewise.
13839 (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc):
13840 Likewise.
13841
13842 2009-09-16 Cary Coutant <ccoutant@google.com>
13843
13844 * testsuite/Makefile.am (MOSTLYCLEANFILES): Add more generated files.
13845 * testsuite/Makefile.in: Regenerate.
13846
13847 2009-09-11 Nick Clifton <nickc@redhat.com>
13848
13849 * po/gold.pot: Updated by the Translation project.
13850
13851 2009-09-08 Cary Coutant <ccoutant@google.com>
13852
13853 * output.cc (Output_file::open): Add execute permission to empty file.
13854 * testsuite/Makefile.am (permission_test): New test.
13855 * testsuite/Makefile.in: Regenerate.
13856
13857 2009-09-02 Ian Lance Taylor <iant@google.com>
13858
13859 * output.cc (Output_file::resize): Call map_no_anonymous rather
13860 than map.
13861
13862 2009-09-01 Mikolaj Zalewski <mikolajz@google.com>
13863
13864 * gold.cc: Include "incremental.h".
13865 (queue_initial_tasks): Call Incremental_checker methods.
13866 * incremental.cc: Include "output.h".
13867 (Incremental_checker::can_incrementally_link_output_file): New
13868 method.
13869 * incremental.h (Incremental_checker): New class.
13870
13871 * output.cc (Output_file::open_for_modification): New method.
13872 (Output_file::map_anonymous): Changed return type to bool. Record
13873 map in base_ field.
13874 (Output_file::map_no_anonymous): New method, broken out of map.
13875 (Output_file::map): Use map_no_anonymous and map_anonymous.
13876 * output.h (class Output_file): Update declarations.
13877
13878 2009-08-24 Cary Coutant <ccoutant@google.com>
13879
13880 * options.h (Command_line::Pre_options): New class.
13881 (Command_line::pre_options): New member.
13882 * options.cc (gold::options::ready_to_register): New variable.
13883 (One_option::register_option): Do nothing if not registering options.
13884 Assert if same short option registered twice.
13885 (General_options::General_options): Turn off option registration when
13886 done constructing.
13887 (Command_line::Pre_options::Pre_options): New constructor.
13888
13889 2009-08-24 Cary Coutant <ccoutant@google.com>
13890
13891 * options.h (General_options::no_keep_memory): Remove incorrect
13892 short option.
13893
13894 2009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
13895
13896 * Makefile.am (am__skiplex, am__skipyacc): New.
13897 * Makefile.in: Regenerate.
13898
13899 2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
13900
13901 * Makefile.am (AM_CPPFLAGS): Renamed from ...
13902 (INCLUDES): ... this.
13903 * testsuite/Makefile.am (AUTOMAKE_OPTIONS): Add -Wno-portability.
13904 (AM_CPPFLAGS): Renamed from ...
13905 (INCLUDE): ... this.
13906 * Makefile.in, testsuite/Makefile.in: Regenerate.
13907
13908 * Makefile.in: Regenerate.
13909 * aclocal.m4: Likewise.
13910 * config.in: Likewise.
13911 * configure: Likewise.
13912 * testsuite/Makefile.in: Likewise.
13913
13914 * Makefile.am (AUTOMAKE_OPTIONS): Add foreign.
13915 * testsuite/Makefile.am (AUTOMAKE_OPTIONS): Add foreign.
13916 * Makefile.in: Regenerate.
13917 * testsuite/Makefile.in: Regenerate.
13918
13919 2009-08-19 Cary Coutant <ccoutant@google.com>
13920
13921 * resolve.cc (Symbol_table::resolve): Don't complain about defined
13922 symbols in shared libraries overridden by hidden or internal symbols
13923 in the main program.
13924
13925 2009-08-19 Chris Demetriou <cgd@google.com>
13926
13927 * testsuite/debug_msg.sh: Match .* rather than ${srcdir} when
13928 checking source file names in error messages.
13929
13930 2009-08-18 Doug Kwan <dougkwan@google.com>
13931
13932 * dynobj.cc (Sized_dynobj::setup): Take a Target object instead of
13933 an elcpp::Ehdr as parameter. Adjust call to set_target.
13934 * dynobj.h (Sized_dynobj::setup): Take a Target object instead of
13935 an elfcpp::Ehdr as parameter.
13936 * object.cc (Object::set_target): Remove the version that looks up
13937 a target and sets it.
13938 (Sized_relobj::setup): Take a Target object instead of
13939 an elfcpp::Ehdr as parameter. Adjust call to set_target.
13940 (make_elf_sized_object): Find target and ask target to
13941 make an ELF object.
13942 * object.h: (Object::set_target): Remove the version that looks up
13943 a target and sets it.
13944 (Sized_relobj::setup): Take a Target object instead of
13945 an elfcpp:Ehdr as parameter.
13946 * target.cc: Include dynobj.h.
13947 (Target::do_make_elf_object_implementation): New.
13948 (Target::do_make_elf_object): New.
13949 * target.h (Target::make_elf_object): New template declaration.
13950 (Target::do_make_elf_object): New method declarations.
13951 (Target::do_make_elf_object_implementation): New template declaration.
13952
13953 2009-08-14 Ian Lance Taylor <iant@google.com>
13954
13955 * gold.h (FUNCTION_NAME): Define.
13956 (gold_unreachable): Use FUNCTION_NAME.
13957
13958 2009-08-12 Sriraman Tallam <tmsriram@google.com>
13959
13960 * icf.cc (Icf::find_identical_sections): Issue a warning when a
13961 symbol in the --keep-unique list is not found.
13962
13963 2009-08-12 Sriraman Tallam <tmsriram@google.com>
13964
13965 * icf.cc (Icf::find_identical_sections): Unfold symbols that have
13966 been maked as --keep-unique.
13967 (Icf::unfold_section): New function.
13968 * icf.h (Icf::unfold_section): New function.
13969 * options.h (General_options::keep_unique): New option.
13970 * testsuite/Makefile.am: Add commands to build icf_keep_unique_test.
13971 * testsuite/Makefile.in: Regenerate.
13972 * testsuite/icf_keep_unique_test.sh: New file.
13973 * testsuite/icf_keep_unique_test.cc: New file.
13974
13975 2009-08-12 Cary Coutant <ccoutant@google.com>
13976
13977 PR 10471
13978 * resolve.cc (Symbol_table::resolve): Check for references from
13979 dynamic objects to hidden and internal symbols.
13980 * testsuite/Makefile.am (hidden_test.sh): New test.
13981 * testsuite/Makefile.in: Regenerate.
13982 * testsuite/hidden_test.sh: New script.
13983 * testsuite/hidden_test_1.c: New test source.
13984 * testsuite/hidden_test_main.c: New test source.
13985
13986 2009-08-11 Doug Kwan <dougkwan@google.com>
13987
13988 * arm.cc: Update comments.
13989 (Target_arm::do_finalize_sections): Add a special PT_ARM_EXIDX
13990 segment to locate the .ARM.exidx section if present.
13991
13992 2009-08-09 Doug Kwan <dougkwan@google.com>
13993
13994 * dynobj.h (Sized_dynobj::do_section_entsize): Revert the previous
13995 patch.
13996
13997 2009-08-07 Sriraman Tallam <tmsriram@google.com>
13998 * dynobj.h (Sized_dynobj::do_section_entsize): Add return to avoid
13999 compiler warnings.
14000
14001 2009-08-06 Sriraman Tallam <tmsriram@google.com>
14002
14003 * x86_64.cc (Target_x86_64::Relocate::relocate_tls): Check for a
14004 valid tls_segment only for non-debug-section relocations.
14005 * testsuite/Makefile.am: Add gc_tls_test.
14006 * testsuite/Makefile.in: Regenerate.
14007 * testsuite/gc_tls_test.cc: New file.
14008 * testsuite/gc_tls_test.sh: New file.
14009
14010 2009-08-05 Sriraman Tallam <tmsriram@google.com>
14011
14012 * icf.cc: New file.
14013 * icf.h: New file.
14014 * Makefile.am (CCFILES): Add icf.cc.
14015 (HFILES): Add icf.h
14016 * Makefile.in: Regenerate.
14017 * dynobj.h (Sized_dynobj::do_section_entsize): New function.
14018 * gc.h (gc_process_relocs): Populate lists used by icf to contain
14019 section, symbol and addend information for the relocs.
14020 * gold.cc (queue_middle_tasks): Call identical code folding.
14021 * gold.h: Add defines for multimap.
14022 * layout.cc (Layout::create_symtab_sections): Add symtab as parameter
14023 to the call of finalize_local_symbols.
14024 * main.cc (main): Create object of class Icf.
14025 * object.cc (Sized_relobj::do_layout): Allow this function to be
14026 called twice during icf.
14027 (Sized_relobj::do_finalize_local_symbols): Fold symbols corresponding
14028 to sections marked as identical by icf.
14029 (Sized_relobj::do_section_flags): Get section_flags from Symbols_data
14030 when available.
14031 (Sized_relobj::do_section_entsize): New function.
14032 * object.h (Object::section_entsize): New function.
14033 (Object::do_section_entsize): New pure virtual function.
14034 (Relobj::finalize_local_symbols): Add new parameter.
14035 (Relobj::do_section_entsize): New function.
14036 * options.h (General_options::icf): New option.
14037 (General_options::icf_iterations): New option.
14038 (General_options::print_icf_sections): New option.
14039 * plugin.cc (Sized_pluginobj::do_section_entsize): New function.
14040 * plugin.h (Sized_pluginobj::do_section_entsize): New function.
14041 * reloc.cc (Read_relocs::run): Delay scanning relocs when doing
14042 icf.
14043 * symtab.cc (Symbol_table::is_section_folded): New function.
14044 (Symbol_table::sized_finalize_symbol): Fold symbols corresponding
14045 to sections marked as identical by icf.
14046 * symtab.h (Symbol_table::set_icf): New function.
14047 (Symbol_table::icf): New function.
14048 (Symbol_table::is_section_folded): New function.
14049 (Symbol_table::icf_): New data member.
14050 * target-reloc.h (relocate_section): Ignore sections folded by icf.
14051 * testsuite/Makefile.am: Add commands to build icf_test.
14052 * testsuite/Makefile.in: Regenerate.
14053 * testsuite/icf_test.sh: New file.
14054 * testsuite/icf_test.cc: New file.
14055
14056 2009-07-24 Chris Demetriou <cgd@google.com>
14057
14058 * layout.cc (is_compressible_debug_section): Fix incorrect
14059 comment about compressed section names.
14060
14061 2009-07-20 Ian Lance Taylor <ian@airs.com>
14062
14063 PR 10419
14064 * x86_64.cc (Target_x86_64::do_code_fill): Correct nop sequences.
14065
14066 2009-07-16 Ian Lance Taylor <iant@google.com>
14067
14068 PR 10400
14069 * layout.h: #include <map>.
14070 (class Kept_section): Change from struct to class. Add accessors
14071 and setters. Add section size to Comdat_group mapping. Change
14072 Comdat_group to std::map. Add is_comdat_ field. Add
14073 linkonce_size field in union.
14074 (class Layout): Update declaration of find_or_add_kept_section.
14075 Don't declare find_kept_object.
14076 * layout.cc (Layout::find_or_add_kept_section): Remove candidate
14077 parameter. Add object, shndx, is_comdat, and is_group_name
14078 parameters. Change all callers. Adjust for new Kept_section.
14079 (Layout::find_kept_object): Remove.
14080 * object.cc (Sized_relobj::include_section_group): Update use of
14081 Kept_section. Rename secnum to shndx. Only record
14082 Kept_comdat_section if sections are the same size.
14083 (Sized_relobj::include_linkonce_section): Update use of
14084 Kept_section. Only record Kept_comdat_section if sections are the
14085 same size. Set size of linkonce section.
14086 (Sized_relobj::map_to_kept_section): Update call to
14087 get_kept_comdat_section.
14088 * object.h (class Sized_relobj): Rename fields in
14089 Kept_comdat_section to drop trailing underscores; change object
14090 field to Relobj*. Change Kept_comdat_section_table to store
14091 struct rather than pointer.
14092 (Sized_relobj::set_kept_comdat_section): Remove kept parameter.
14093 Add kept_object and kept_shndx parameters. Change all callers.
14094 (Sized_relobj::get_kept_comdat_section): Change return type to
14095 bool. Add kept_object and kept_shndx parameters. Change all
14096 callers.
14097 * plugin.cc (Pluginobj::include_comdat_group): Update call to
14098 Layout::find_or_add_kept_section.
14099
14100 2009-07-09 Ian Lance Taylor <iant@google.com>
14101
14102 * merge.cc (Object_merge_map::initialize_input_to_output_map):
14103 Reserve space in the hash table.
14104
14105 2009-07-06 Mikolaj Zalewski <mikolajz@google.com>
14106
14107 * fileread.cc (File_read::get_mtime): New method.
14108 * fileread.h (Timespec): New structure.
14109 (File_read::get_mtime): New method.
14110 * incremental.cc (Incremental_inputs_entry_data::timestamp_usec):
14111 Renamed from timestamp_nsec.
14112 (Incremental_inputs_entry_write::timestamp_sec): Fix argument to
14113 Elf_Xword.
14114 (Incremental_inputs_entry_write::timestamp_usec): Renamed from
14115 timestamp_nsec.
14116 (Incremental_inputs::report_archive): Save mtime; style fix.
14117 (Incremental_inputs::report_obejct): Save mtime; style fix.
14118 (Incremental_inputs::report_script): Save mtime; style fix.
14119 (Incremental_inputs::finalize_inputs): Style fix.
14120 (Incremental_inputs::finalize): Style fix.
14121 (Incremental_inputs::create_input_section_data): Store inputs
14122 mtime.
14123 * incremental.h (Incremental_inputs::report_script): Add mtime
14124 argument.
14125 (Incremental_inputs::Input_info::Input_info): Intialize only one
14126 union member.
14127 (Incremental_inputs::Input_info::archive): Move to nameless
14128 union.
14129 (Incremental_inputs::Input_info::obejct): Move to nameless union.
14130 (Incremental_inputs::Input_info::script): Move to nameless union.
14131 (Incremental_inputs::mtime): New field.
14132 * script.cc (read_input_script): Pass file mtime to
14133 Incremental_input.
14134 * script.h (Script_info::inputs): Style fix.
14135
14136 2009-07-01 Ian Lance Taylor <ian@airs.com>
14137
14138 * freebsd.h (Target_freebsd::do_adjust_elf_header): Use size
14139 instead of 32.
14140
14141 2009-06-24 Ian Lance Taylor <iant@google.com>
14142
14143 PR 10156
14144 * layout.cc (Layout::choose_output_section): If we find an
14145 existing section, update the flags.
14146 (Layout::create_notes): New function, broken out of
14147 Layout::finalize.
14148 (Layout::finalize): Don't create note sections.
14149 (Layout::create_note): Don't crash if linker script discards
14150 section.
14151 (Layout::create_gold_note): Likewise.
14152 (Layout::create_build_id): Likewise. Don't set
14153 after_input_sections on the section.
14154 (Layout::create_executable_stack_info): Remove target parameter.
14155 Change caller.
14156 * layout.h (class Layout): Declare create_notes. Update
14157 declaration of create_executable_stack_info.
14158 * gold.cc (queue_middle_tasks): Call create_notes.
14159 * output.cc (Output_section::update_flags_for_input_section): Move
14160 here from output.h. If SHF_ALLOC flag is newly set, mark address
14161 invalid.
14162 * output.h (Output_data::mark_address_invalid): New function.
14163 (class Output_section): Only declare, not define,
14164 update_flags_for_input_section. Remove set_flags.
14165
14166 2009-06-24 Ian Lance Taylor <iant@google.com>
14167
14168 * script-sections.cc (Output_section_definition::
14169 set_section_addresses): Rename shadowing local load_address to
14170 laddr.
14171
14172 2009-06-24 Ian Lance Taylor <iant@google.com>
14173
14174 PR 10244
14175 * reloc.cc (relocate_sections): Skip empty relocation sections.
14176
14177 2009-06-23 Ian Lance Taylor <iant@google.com>
14178
14179 PR 10156
14180 * layout.cc (Layout::create_note): Use choose_output_section
14181 rather than make_output_section.
14182
14183 2009-06-23 Ian Lance Taylor <iant@google.com>
14184
14185 PR 10237
14186 * options.cc (General_options::parse_V): Set printed_version_.
14187 (General_options::General_options): Initialize printed_version_.
14188 * options.h (class General_options): Add printed_version_ field.
14189 * gold.cc (queue_initial_tasks): If there are no input files,
14190 don't give a fatal error if we printed the version information.
14191 (queue_middle_tasks): If using -r with a shared object, give a
14192 fatal error rather than an ordinary error.
14193
14194 2009-06-23 Ian Lance Taylor <iant@google.com>
14195
14196 PR 10219
14197 * layout.cc (Layout::Layout): Initialize have_stabstr_section_.
14198 (Layout::make_output_section): Set have_stabstr_section_ if we see
14199 a .stab*str section.
14200 (Layout::finalize): Call link_stabs_sections.
14201 (Layout::link_stabs_sections): New file.
14202 * layout.h (class Layout): Add have_stabstr_section_ field.
14203 Declare link_stabs_sections.
14204
14205 2009-06-23 Doug Kwan <dougkwan@google.com>
14206
14207 * Makefile.am (libgold_a_LIBADD): New.
14208 (ld_new_DEPENDENCIES, ld_new_LDADD): Remove LIBOBJS
14209 * Makefile.in: Regenerate.
14210 * config.in (HAVE_DECL_MEMMEM, HAVE_DECL_STRNDUP): New.
14211 * configure: Regenerate.
14212 * configure.ac (AC_CHECK_DECLS): Add strndup and memmem.
14213 * fileread.cc: Include sys/state.h
14214 * gold.h: Declare memmem and strndup if found missing.
14215 * gold_reloc.h: Include byteswap.h if HAVE_BYTESWAP_H is defined.
14216
14217 2009-06-23 Ian Lance Taylor <iant@google.com>
14218
14219 * configure.ac: Call AC_CHECK_DECLS using C, not C++.
14220 * configure: Rebuild.
14221
14222 2009-06-23 Ian Lance Taylor <iant@google.com>
14223
14224 PR 10147
14225 * object.cc (Object::section_contents): Don't try to get a view if
14226 the section has length zero.
14227 (Object::handle_gnu_warning_section): If the section is empty, use
14228 the name of the section as the warning.
14229
14230 2009-06-23 Ian Lance Taylor <iant@google.com>
14231
14232 PR 10133
14233 * stringpool.h (class Stringpool_template): Add optimize_ field.
14234 (Stringpool_template::set_optimize): New function.
14235 * stringpool.cc (Stringpool_template::Stringpool_template):
14236 Initialize optimize_ field.
14237 (Stringpool_template::set_string_offsets): Test local optimize
14238 fild rather than parameter.
14239 * layout.cc (Layout::Layout): Call set_optimize on the section
14240 name stringpool.
14241
14242 2009-06-22 Ian Lance Taylor <iant@google.com>
14243
14244 PR 10030
14245 * yyscript.y: Parse TARGET.
14246 * script.cc (script_set_target): New function.
14247 * script-c.h (script_set_target): Declare.
14248 * options.cc (General_options::string_to_object_format): Rename
14249 from string_to_object_format in anonymous namespace. Change
14250 callers.
14251 * options.h (class General_options): Declare
14252 string_to_object_format.
14253
14254 2009-06-22 Ian Lance Taylor <iant@google.com>
14255
14256 * script-sections.cc (Script_sections::create_segments): Don't put
14257 program headers in a PT_LOAD segment if -n or -N.
14258
14259 2009-06-22 Ian Lance Taylor <iant@google.com>
14260
14261 PR 10141
14262 * options.h (class General_options): Add -z lazy and -z now. Sort
14263 -z options into alphabetical order.
14264 * layout.cc (Layout::finish_dynamic_section): Handle -z now.
14265
14266 2009-06-21 Ian Lance Taylor <iant@google.com>
14267
14268 * layout.cc (Layout::make_output_section): Call
14269 Target::new_output_section.
14270 (Layout::attach_allocated_section_to_segment): Put large section
14271 sections in a separate load segment with the large segment flag
14272 set.
14273 (Layout::segment_precedes): Sort large data segments after other
14274 load segments.
14275 (align_file_offset): New static function.
14276 (Layout::set_segment_offsets): Use align_file_offset.
14277 * output.h (class Output_section): Add is_small_section_ and
14278 is_large_section_ fields.
14279 (Output_section::is_small_section): New function.
14280 (Output_section::set_is_small_section): New function.
14281 (Output_section::is_large_section): New function.
14282 (Output_section::set_is_large_section): New function.
14283 (Output_section::is_large_data_section): New function.
14284 (class Output_segment): Add is_large_data_segment_ field.
14285 (Output_segment::is_large_data_segment): New function.
14286 (Output_segment::set_is_large_data_segment): New function.
14287 * output.cc (Output_section::Output_section): Initialize new
14288 fields.
14289 (Output_segment::Output_segment): Likewise.
14290 (Output_segment::add_output_section): Add assertion that large
14291 data sections always go in large data segments. Force small data
14292 sections to the end of the list of data sections. Force small BSS
14293 sections to the start of the list of BSS sections. For large BSS
14294 sections to the end of the list of BSS sections.
14295 * symtab.h (class Symbol): Declare is_common_shndx.
14296 (Symbol::is_defined): Check Symbol::is_common_shndx.
14297 (Symbol::is_common): Likewise.
14298 (class Symbol_table): Define enum Commons_section_type. Update
14299 declarations. Add small_commons_ and large_commons_ fields.
14300 * symtab.cc (Symbol::is_common_shndx): New function.
14301 (Symbol_table::Symbol_table): Initialize new fields.
14302 (Symbol_table::add_from_object): Put small and large common
14303 symbols in the right list.
14304 (Symbol_table::sized_finalized_symbol): Check
14305 Symbol::is_common_shndx.
14306 (Symbol_table::sized_write_globals): Likewise.
14307 * common.cc (Symbol_table::do_allocate_commons): Allocate new
14308 common symbol lists. Don't call do_allocate_commons_list if the
14309 list is empty.
14310 (Symbol_table::do_allocate_commons_list): Remove is_tls
14311 parameter. Add comons_section_type parameter. Change all
14312 callers. Handle small and large common symbols.
14313 * object.cc (Sized_relobj::do_finalize_local_symbols): Check
14314 Symbol::is_common_shndx.
14315 * resolve.cc (symbol_to_bits): Likewise.
14316 * target.h (Target::small_common_shndx): New function.
14317 (Target::small_common_section_flags): New function.
14318 (Target::large_common_shndx): New function.
14319 (Target::large_common_section_flags): New function.
14320 (Target::new_output_section): New function.
14321 (Target::Target_info): Add small_common_shndx, large_common_shndx,
14322 small_common_section_flags, and large_common_section_flags
14323 fields.
14324 (Target::do_new_output_section): New virtual function.
14325 * arm.cc (Target_arm::arm_info): Initialize new fields.
14326 * i386.cc (Target_i386::i386_info): Likewise.
14327 * powerpc.cc (Target_powerpc::powerpc_info) [all versions]:
14328 Likewise.
14329 * sparc.c (Target_sparc::sparc_info) [all versions]: Likewise.
14330 * x86_64.cc (Target_x86_64::x86_64_info): Likewise.
14331 (Target_x86_64::do_new_output_section): New function.
14332 * configure.ac: Define conditional MCMODEL_MEDIUM.
14333 * testsuite/Makefile.am (check_PROGRAMS): Add large.
14334 (large_SOURCES, large_CFLAGS, large_DEPENDENCIES): Define.
14335 (large_LDFLAGS): Define.
14336 * testsuite/large.c: New file.
14337 * testsuite/testfile.cc (Target_test::test_target_info):
14338 Initialize new fields.
14339 * configure, testsuite/Makefile.in: Rebuild.
14340
14341 2009-06-05 Doug Kwan <dougkwan@google.com>
14342
14343 * Makefile.am (CCFILES): Add target.cc.
14344 * Makefile.in: Regenerate.
14345 * i386.cc (class Target_i386): Define new virtual method to
14346 override do_is_local_label_name in parent.
14347 * object.cc (Sized_relobj::do_count_local_symbols): Discard
14348 local symbols if --discard-locals or -X is given.
14349 * options.h (class General_options): Declare new options
14350 '--discard-locals' and '-X' for discarding locals.
14351 * target.h (class Target): Define new methods is_local_label_name.
14352 Declare new virtual method do_is_local_label_name.
14353 * target.cc: New file.
14354 * testsuite/Makefile.am (check_PROGRAMS): Add discard_locals_test.
14355 (check_SCRIPTS): Add discard_locals_test.sh.
14356 (check_DATA): Add discard_local_tests.syms.
14357 (discard_locals_test_SOURCES, discard_locals_test_LDFLAGS): Define.
14358 (discard_local_tests.syms, discard_locals_test.o): New make rules.
14359 * testsuite/Makefile.in: Regenerate.
14360 * testsuite/discard_locals_test.c: New file.
14361 * testsuite/discard_locals_test.sh: Same.
14362
14363 2009-06-05 Doug Kwan <dougkwan@google.com>
14364
14365 * object.cc (Sized_relobj::Sized_relobj): Initialize
14366 discarded_eh_frame_shndx_ to -1U.
14367 (Sized_relobj::do_layout): Record index of a discard .eh_frame
14368 section.
14369 (Sized_relobj::do_count_local_symbols): Skip local symbols in
14370 a discarded .eh_frame section.
14371 (Sized_relobj::do_finalize_local_symbols): Ditto.
14372 * object.h (class Sized_relobj): Declare new member
14373 discarded_eh_frame_shndx_.
14374 * testsuite/Makefile.am (check_PROGRAMS): Add local_labels_test.
14375 (local_labels_test.o, local_labels_test): New rules.
14376 * testsuite/Makefile.in: Regenerate.
14377
14378 2009-06-04 Doug Kwan <dougkwan@google.com>
14379
14380 * layout.cc (Layout::section_name_mapping): Add mapping for
14381 special ARM sections.
14382
14383 2009-06-03 Doug Kwan <dougkwan@google.com>
14384
14385 * arm.cc (utils::sign_extend): Reverse test in gold_assert.
14386 (utils::has_overflow): Same.
14387
14388 2009-06-03 Ian Lance Taylor <iant@google.com>
14389
14390 * layout.cc (Layout::section_name_mapping): New array, replacing
14391 Layout::linkonce_mapping.
14392 (Layout::section_name_mapping_count): New variable, replacing
14393 Layout::linkonce_mapping_count.
14394 (Layout::linkonce_output_name): Remove.
14395 (Layout::output_section_name): Rewrite.
14396 * layout.h (class Layout): Rename Linkonce_mapping to
14397 Section_name_mapping, linkonce_mapping to section_name_mapping,
14398 linkonce_mapping_count to section_name_mapping_count. Don't
14399 declare linkonce_output_name.
14400
14401 2009-06-03 Doug Kwan <dougkwan@google.com>
14402
14403 * gold/arm.cc (namespace utils): New.
14404 (Target_arm::reloc_is_non_pic): Define new method.
14405 (class Arm_relocate_functions): New.
14406 (Target_arm::Relocate::relocate): Handle relocation types used by
14407 Android.
14408
14409 2009-06-03 Ian Lance Taylor <iant@google.com>
14410
14411 * arm.cc (Target_arm::scan::global): Use || instead of |.
14412
14413 2009-06-02 Doug Kwan <dougkwan@google.com>
14414
14415 * gold/arm.cc (Target_arm::Scan::Scan): Initialize
14416 issued_non_pic_error_.
14417 (class Target_arm::Scan): Declare new method check_non_pic.
14418 Define new method symbol_needs_plt_entry.
14419 Declare new data member issued_non_pic_error_.
14420 (class Target_arm::Relocate): Declare new method
14421 should_apply_static_reloc.
14422 (Target_arm::may_need_copy_reloc): Handle STT_ARM_TFUNC.
14423 (Target_arm::Scan::check_non_pic): Define new method.
14424 (Target_arm::Scan::local): Handle a small subset of reloc types used
14425 by Android.
14426 (Target_arm::Scan::local): Same.
14427 (Target_arm::Relocate::should_apply_statci_reloc): Define new method.
14428
14429 2009-05-31 Mikolaj Zalewski <mikolajz@google.com>
14430
14431 * incremental.cc (Incremental_inputs::report_command_line): Filter
14432 out --incremental-* options.
14433
14434 2009-05-29 Doug Kwan <dougkwan@google.com>
14435
14436 * gold/arm.cc (Output_data_plt_arm): Forward declaration for new
14437 template class.
14438 (class Target_arm): Update comment.
14439 (Target_arm::Target_arm): Initialize new data members GOT_,
14440 PLT_, GOT_PLT_, REL_DYN_, COPY_RELOCS_ and DYNBSS_.
14441 Declare new methods Target_arm::got_section, Target_arm::make_plt_entry
14442 and Target_arm::rel_dyn_section.
14443 Declare new_enum Target_arm::Got_type.
14444 Declare new data members GOT_, PLT_, GOT_PLT_, REL_DYN_, COPY_RELOCS_
14445 and DYNBSS_.
14446 Update commments for member do_dynsym_value.
14447 (Target_arm::got_size, Target_arm::plt_section,
14448 Target_arm::may_need_copy_reloc and Target_arm::copy_reloc): Define
14449 new methods inside class defintion.
14450 (Target_arm::got_section): Define new method.
14451 (Target_arm::rel_dyn_section): Same.
14452 (Output_data_plt_arm): New template class.
14453 (Output_data_plt_arm::Output_data_plt_arm): Define constructor.
14454 (Output_data_plt_arm:do_adjust_output_section): Define new method.
14455 (Output_data_plt_arm::add_entry): Same.
14456 (Output_data_plt_arm::first_plt_entry): Define new
14457 static data member for PLT instruction template.
14458 (Output_data_plt_arm::plt_entry): Same.
14459 (Output_data_plt_arm::do_write): Define new method.
14460 (Target_arm::make_plt_entry): Same.
14461 (Target_arm::do_finalize_sections): Same.
14462 (Target_arm::do_dynsym_value): Same.
14463
14464 2009-05-28 Doug Kwan <dougkwan@google.com>
14465
14466 * Makefile.am (TARGETSOURCES): Add arm.cc.
14467 (ALL_TARGETOBJECTS): Add arm.$(OBJEXT)
14468 * Makefile.in: Regenerate.
14469 * arm.cc: New file.
14470 * configure.tgt: Add armbe*-*-*, armeb*-*-* and arm*-*-* targets.
14471
14472 2009-05-26 Doug Kwan <dougkwan@google.com>
14473
14474 * options.cc (General_options::parse_exclude_libs). Fix a comment.
14475 (General_options::check_excluded_libs): Strip off directories in
14476 archive name before matching like GNU ld does.
14477 * testsuite/Makefile.am (MOSTLYCLEANFILES,
14478 exclude_libs_test_DEPENDENCIES): Add alt/libexclude_libs_test_3.a
14479 (exclude_libs_test_LDFLAGS): Add linker option
14480 -Wl,--exclude-libs,libexclude_libs_test_3
14481 (exclude_libs_test_LADD): Add alt/libexclude_libs_test_3.a as
14482 an explicit archive without using -l.
14483 (alt/libexclude_libs_test_3.a): New make rule.
14484 * testsuite/Makefile.in: Regenerate.
14485 * testsuite/exclude_libs_test.c : Declare lib3_default().
14486 (main): Call it.
14487 * exclude_libs_test.sh: Add tests for alt/exclude_libs_test_3.a.
14488 * exclude_libs_test_3.c: New file.
14489
14490 2009-05-26 Nick Clifton <nickc@redhat.com>
14491
14492 * po/id.po: New Indonesian translation.
14493 * po/gold.pot: Updated template file.
14494
14495 2009-05-22 Sriraman Tallam <tmsriram@google.com>
14496
14497 * testsuite/Makefile.am: Add -ffunction-sections to compile
14498 gc_comdat_test files. Add -Wl,--gc-sections to build
14499 gc_comdat_test.
14500 * testsuite/Makefile.in: Regenerate.
14501 * testsuite/gc_comdat_test.sh: Fix the condition around grep.
14502
14503 2009-05-21 Sriraman Tallam <tmsriram@google.com>
14504
14505 * object.cc (Sized_relobj::map_to_kept_section): Return NULL if the
14506 kept comdat section was garbage collected.
14507 * testsuite/Makefile.am: Add test gc_comdat_test.sh.
14508 * testsuite/Makefile.in: Regenerate.
14509 * testsuite/gc_comdat_test.sh: New file.
14510 * testsuite/gc_comdat_test_1.cc: New file.
14511 * testsuite/gc_comdat_test_2.cc: New file.
14512
14513 2009-05-19 Doug Kwan <dougkwan@google.com>
14514
14515 * archive.cc (Archive::Archive): Move constructor from archive.h
14516 to here. Initialize no_export_.
14517 (Archive::get_elf_object_for_member): Set no_export flag of object.
14518 * archive.h (Archive::Archive): Move constructor body to
14519 archive.cc.
14520 (Archive::no_export): New method.
14521 (Archive::no_export_): New field.
14522 * object.h (Object::Object): Initialize no_export_ to false.
14523 (Object::no_export, Object::set_no_export): New methods.
14524 (Object::no_export_): New field.
14525 * options.cc (General_options::parse_exclude_libs): New method.
14526 (General_options::check_excluded_libs) Same.
14527 * options.h (exclude_libs): New option.
14528 (General_options::check_excluded_libs): New method declaration.
14529 (General_options::excluded_libs_): New field.
14530 * symtab.cc (Symbol_table::add_from_relobj): Hide symbols with
14531 default or protected visibility if an object has no-export flag set.
14532 testsuite/Makefile.am (check_PROGRAMS): Add exclude_libs_test.
14533 (check_SCRIPTS): Add exclude_libs_test.sh.
14534 (check_DATA): Add exclude_libs_test.syms.
14535 (MOSTLYCLEANFILES): Add exclude_libs_test.syms,
14536 libexclude_libs_test_1.a and libexclude_libs_test_2.a.
14537 (exclude_libs_test_SOURCES, exclude_libs_test_DEPENDENCIES,
14538 exclude_libs_test_LDFLAGS and exclude_libs_test_LDADD): Define.
14539 (exclude_libs_test.syms, libexclude_libs_test_1.a,
14540 libexclude_libs_test_2.a): New rules.
14541 * testsuite/Makefile.in: Regenerate.
14542 * testsuite/exclude_libs_test.c: New file.
14543 * testsuite/exclude_libs_test.sh: Ditto.
14544 * testsuite/exclude_libs_test_1.c: Ditto.
14545 * testsuite/exclude_libs_test_2.c: Ditto.
14546
14547 2009-05-15 Ian Lance Taylor <iant@google.com>
14548
14549 * configure.ac: Check for declarations for cases where libiberty.h
14550 checks HAVE_DECL_xxx.
14551 * configure, config.in: Rebuild.
14552
14553 2009-05-15 Mikolaj Zalewski <mikolajz@google.com>
14554
14555 * gold.h (Incremental_argument_list): Remove (invalid) forward
14556 declaration.
14557 * incremental.cc (Incremental_inputs::report_achive): New method.
14558 (Incremental_inputs::report_object): New method.
14559 (Incremental_inputs::report_script): New method.
14560 (Incremental_inputs::finalize_inputs): New method.
14561 (Incremental_inputs::finalize): Call finalize_inputs().
14562 (Incremental_inputs::sized_create_incremental_inputs_section_data):
14563 Create inputs entries.
14564 * incremental.h (Incremental_input_type): New enum.
14565 (Incremental_inputs::Incremental_input): Initialize new fields.
14566 (Incremental_inputs::report_inputs): New method.
14567 (Incremental_inputs::report_achive): New method.
14568 (Incremental_inputs::report_object): New method.
14569 (Incremental_inputs::report_script): New method.
14570 (Incremental_inputs::finalize_inputs): New method.
14571 (Incremental_inputs::Input_info): New struct.
14572 (Incremental_inputs::Input_info_map): New typedef.
14573 (Incremental_inputs::lock_): New field.
14574 (Incremental_inputs::Inputs_): New field.
14575 (Incremental_inputs::Inputs_map): New field.
14576 * main.cc (main): Call Incremental_input::report_inputs.
14577 * options.h (Input_argument_list): Typedef moved from
14578 Input_arguments.
14579 (Input_file_group::Files): Remove, use ::Input_argument_list.
14580 (Input_file_group::Input_argument_list): Remove, use
14581 ::Input_argument_list.
14582 * plugin.cc (Plugin_manager::add_input_file): Add error in
14583 incremental build.
14584 * read_syms.cc (do_read_syms): Call Incremental_input::report_*
14585 functions.
14586 * script.cc (read_input_script): Call
14587 Incremental_input::report_script.
14588 * script.h (Script_info): New class.
14589
14590 2009-04-27 Ian Lance Taylor <iant@google.com>
14591
14592 * x86_64.cc (do_adjust_output_section): Set entsize to
14593 plt_entry_size.
14594
14595 2009-04-23 Elliott Hughes <enh@google.com>
14596
14597 * output.cc (Output_file::close): After short writes, continue
14598 writing from the correct offset in the buffer being written.
14599
14600 2009-04-23 Chris Demetriou <cgd@google.com>
14601
14602 * configure.ac (HAVE_TR1_UNORDERED_MAP_REHASH): New define.
14603 * configure: Regenerate.
14604 * config.in: Regenerate.
14605 * gold.h: Avoid std::tr1::unordered_map and std::tr1::unordered_set
14606 if HAVE_TR1_UNORDERED_MAP_REHASH is not defined.
14607
14608 2009-04-21 Mikolaj Zalewski <mikolajz@google.com>
14609
14610 * incremental.cc (Incremental_inputs_header_data): Renamed from
14611 Incremental_input_header_data.
14612 (Incremental_inputs_header_data::data_size): New field.
14613 (Incremental_inputs_header_data::put_input_file_count): Renamed
14614 from input_file_count.
14615 (Incremental_inputs_header_data::put_command_line_offset): Renamed
14616 from command_line_offset.
14617 (Incremental_inputs_header_data::put_reserved): Renamed from
14618 put_reserved.
14619 (Incremental_inputs_entry_data): Renamed from
14620 Incremental_input_entry_data.
14621 (Incremental_inputs_entry_data::data_size): New field.
14622 (Incremental_inputs::report_command_line): New method.
14623 (Incremental_inputs::finalize): New method.
14624 (Incremental_inputs::create_incremental_inputs_data): New method.
14625 (Incremental_inputs::sized_create_incremental_inputs_data): New method.
14626 * incremental.h: New file.
14627 * layout.cc (Layout::Layout): Handle new incremental_inputs_.
14628 (Layout::finalize): Create incremental inputs section in
14629 incremental builds.
14630 (Layout::create_incremental_info_sections): New method.
14631 * layout.h (Layout::incremental_inputs): New method.
14632 (Layout::create_incremental_info_sections): New method.
14633 (Layout::incremental_inputs_): New field.
14634 * main.cc (main): Notify Incremental_input of the command line.
14635
14636 2009-04-01 Ian Lance Taylor <iant@google.com>
14637 Mikolaj Zalewski <mikolajz@google.com>
14638
14639 * gold.h (reserve_unordered_map): Define, three versions, one for
14640 each version of Unordered_map.
14641 * layout.cc (Layout::Layout): Remove options parameter. Add
14642 number_of_input_files parameter. Don't initialize options_.
14643 Initialize number_of_input_files_ and resized_signatures_. Move
14644 sections_are_attached_.
14645 (Layout::layout_group): Reserve space for group_signatures_.
14646 (Layout::find_or_add_kept_section): Change name parameter to be a
14647 reference. Resize signatures_ map when it gets large enough.
14648 (Layout::layout_eh_frame): Use parameters->options() instead of
14649 this->options_.
14650 (Layout::make_output_section): Likewise.
14651 (Layout::attach_allocated_section_to_segment): Likewise.
14652 (Layout::finalize, Layout::create_executable_stack): Likewise.
14653 (Layout::set_segment_offsets, Layout::create_interp): Likewise.
14654 (Layout::finish_dynamic_section, Layout::write_binary): Likewise.
14655 * layout.h (class Layout): Update declarations. Remove options_
14656 field. Add number_of_input_files_ and resized_signatures_
14657 fields. Move sections_are_attached_ field.
14658 * main.cc (main): Pass number of input files to Layout
14659 constructor. Don't pass options.
14660
14661 2009-03-30 Ian Lance Taylor <iant@google.com>
14662
14663 * ffsll.c (ffsll): Correct implementation.
14664
14665 2009-03-27 Ian Lance Taylor <iant@google.com>
14666
14667 * ffsll.c: New file.
14668 * configure.ac: Call AC_REPLACE_FUNCS on ffsll.
14669 * gold.h (ffsll): Declare if HAVE_FFSLL is not defined.
14670 * ftruncate.c (ftruncate): Declare before definition.
14671 * mremap.c (mremap): Likewise.
14672 * pread.c (pread): Likewise.
14673 * configure, Makefile.in, config.in: Rebuild.
14674
14675 * mremap.c: New file.
14676 * configure.ac: Call AC_REPLACE_FUNCS on mremap.
14677 * gold.h (MREMAP_MAYMOVE): Define if HAVE_MREMAP is not defined.
14678 (mremap): Declare if HAVE_MREMAP is not defined.
14679 * configure, Makefile.in, config.in: Rebuild.
14680
14681 2009-03-27 Cary Coutant <ccoutant@google.com>
14682
14683 * powerpc.cc (Target_powerpc::check_non_pic): Assert that output is
14684 position independent.
14685 * sparc.cc (Target_sparc::check_non_pic): Likewise.
14686 * x86_64.cc (Target_x86_64::check_non_pic): Likewise.
14687
14688 2009-03-24 Cary Coutant <ccoutant@google.com>
14689
14690 * symtab.h (needs_plt_entry): Check for unsatisfied reference from
14691 an executable.
14692 (needs_dynamic_reloc): Likewise.
14693
14694 2009-03-24 Ian Lance Taylor <iant@google.com>
14695
14696 * yyscript.y (file_cmd): Recognize EXTERN.
14697 (extern_name_list, extern_name_list_body): New nonterminals.
14698 * script.cc (script_add_extern): Define.
14699 * script-c.h (script_add_extern): Declare.
14700
14701 2009-03-24 Rafael Avila de Espindola <espindola@google.com>
14702
14703 * object.cc (is_elf_object): Define.
14704 * object.h (is_elf_object): Declare.
14705 * archive.cc (Archive::get_elf_object_for_member): Call
14706 is_elf_object.
14707 * readsyms.cc (Read_symbols::do_read_symbols): Likewise.
14708
14709 2009-03-24 Elliott Hughes <enh@google.com>
14710
14711 * output.cc (Output_file::map_anonymous): Define.
14712 (Output_file::map): Use map_anonymous. If the regular mmap fails,
14713 try an anonymous one. Report the size if the mmap fails.
14714 * output.h (class Output_file): Declare map_anonymous.
14715
14716 2009-03-24 Ian Lance Taylor <iant@google.com>
14717
14718 * target-select.cc (instantiate_target): Don't acquire the lock if
14719 the instantiated_target_ field has already been set.
14720
14721 2009-03-23 Ian Lance Taylor <iant@google.com>
14722
14723 * gold-threads.h (class Initialize_lock): Define.
14724 * gold-threads.cc (class Initialize_lock_once): Define.
14725 (initialize_lock_control): New static variable.
14726 (initialize_lock_pointer): New static variable.
14727 (initialize_lock_once): New static function.
14728 (Initialize_lock::Initialize_lock): Define.
14729 (Initialize_lock::initialize): Define.
14730 * target-select.h: Include "gold-threads.h".
14731 (class Target_selector): Add lock_ and initialize_lock_ fields.
14732 Don't define instantiate_target, just declare it.
14733 * target-select.cc (Target_selector::Target_selector): Initialize
14734 new fields.
14735 (Target_selector::instantiate_target): Define.
14736 * descriptors.h: Include "gold-threads.h".
14737 (class Descriptors): Add initialize_lock_ field.
14738 * descriptors.cc (Descriptors::Descriptors): Initialize new
14739 field.
14740 (Descriptors::open): Use initialize_lock_ field
14741 * errors.h (class Errors): Add initialize_lock_ field.
14742 * errors.cc (Errors::Errors): Initialize new field.
14743 (Errors::initialize_lock): Use initialize_lock_ field.
14744 * powerpc.cc (class Target_selector_powerpc): Remove
14745 instantiated_target_ field. In do_recognize call
14746 instantiate_target rather than do_instantiate_target. In
14747 do_instantiate_target just allocate a new target.
14748 * sparc.cc (class Target_selector_sparc): Likewise.
14749
14750 * freebsd.h: New file.
14751 * i386.cc: Include "freebsd.h".
14752 (Target_i386): Derive from Target_freebsd rather than
14753 Sized_target.
14754 (Target_selector_i386): Derive from Target_selector_freebsd rather
14755 than Target_selector.
14756 * x86_64.cc: Include "freebsd.h".
14757 (Target_x86_64): Derive from Target_freebsd rather than
14758 Sized_target.
14759 (Target_selector_x86_64): Derive from Target_selector_freebsd
14760 rather than Target_selector.
14761 * target.h (class Target): Add adjust_elf_header and
14762 do_adjust_elf_header.
14763 * output.cc (Output_file_header:: do_sized_write): Call target
14764 adjust_elf_header routine.
14765 * configure.tgt: Set targ_osabi.
14766 * configure.ac: Define GOLD_DEFAULT_OSABI.
14767 * parameters.cc (Parameters::default_target): Pass
14768 GOLD_DEFAULT_OSABI to select_target.
14769 * target-select.h (class Target_selector): Make instantiate_target
14770 protected rather than private.
14771 * Makefile.am (HFILES): Add freebsd.h.
14772 * configure, Makefile.in, config.in: Rebuild.
14773
14774 * merge.cc (do_add_input_section): Correct pend value. Change
14775 message about last entry not being null terminated from error to
14776 warning.
14777
14778 2009-03-20 Mikolaj Zalewski <mikolajz@google.com>
14779
14780 * incremental.cc: New file.
14781 * Makefile.am (CCFILES): Add incremental.cc.
14782 * Makefile.in: Rebuild.
14783
14784 2009-03-19 Paul Pluzhnikov <ppluzhnikov@google.com>
14785
14786 * layout.cc (Layout::output_section_name): Preserve names
14787 of '.note.' sections.
14788
14789 2009-03-19 Ian Lance Taylor <iant@google.com>
14790
14791 * descriptors.cc (Descriptors::open): Check that the options are
14792 valid before using them.
14793
14794 2009-03-18 Ian Lance Taylor <iant@google.com>
14795
14796 * script-sections.h: Include <list>.
14797 (class Script_sections): Change Sections_elements from std::vector
14798 to std::list. Typedef public Elements_iterator. Add
14799 orphan_section_placement_, data_segment_align_start_, and
14800 saw_data_segment_align_ fields. Remove data_segment_align_index_
14801 field.
14802 * script-sections.cc (class Orphan_section_placement): New class.
14803 (class Sections_element): Add virtual functions is_relro and
14804 orphan_section_init. Remove virtual function place_orphan_here.
14805 (class Output_section_definition): Add is_relro and
14806 orphan_section_init. Remove place_orphan_here.
14807 (class Orphan_output_section): Likewise.
14808 (Script_sections::Script_sections): Update for field changes.
14809 (Script_sections::data_segment_align): Set saw_data_segment_align_
14810 and data_segment_align_start_, not data_segment_align_index.
14811 (Script_sections::data_segment_relro_end): Check
14812 saw_data_segment_align_. Use data_segment_align_start_ rather
14813 than data_segment_align_index_.
14814 (Script_sections::place_orphan): Rewrite to use
14815 Orphan_section_placement.
14816
14817 2009-03-17 Ian Lance Taylor <iant@google.com>
14818
14819 * archive.cc (Archive::add_symbols): Check for a version attached
14820 to the symbol name in the archive map.
14821 * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_11.
14822 (ver_test_11_SOURCES, ver_test_11_DEPENDENCIES): Define.
14823 (ver_test_11_LDFLAGS, ver_test_11_LDADD): Define.
14824 (ver_test_11.a): New target.
14825 * testsuite/Makefile.in: Rebuild.
14826
14827 * configure.ac: Check for chsize and posix_fallocate. Replace
14828 ftruncate.
14829 * ftruncate.c: New file, from gnulib.
14830 * output.cc (posix_fallocate): Define dummy version if not
14831 HAVE_POSIX_FALLOCATE.
14832 (Output_file::map): Call posix_fallocate rather than lseek and
14833 write.
14834 * gold.h (ftruncate): Declare if not HAVE_FTRUNCATE.
14835 * configure, Makefile.in, config.in: Rebuild.
14836
14837 2009-03-17 Paul Pluzhnikov <ppluzhnikov@google.com>
14838
14839 * layout.h (Layout::create_note): Add section_name parameter.
14840 * layout.cc (Layout::create_note): Likewise.
14841 (Layout::create_build_id, Layout::create_gold_note): Fix callers.
14842
14843 2009-03-17 Ian Lance Taylor <iant@google.com>
14844
14845 * descriptors.cc: Include "options.h".
14846 (FD_CLOEXEC, O_CLOEXEC): Define if not defined.
14847 (Descriptors::open): Always use O_CLOEXEC when opening a new
14848 descriptor. If we have a plugin, and O_CLOEXEC was not defined,
14849 then set FD_CLOEXEC.
14850
14851 * sparc.cc (class Target_sparc): Add has_got_section.
14852 (Target_sparc::Scan::global): If we see _GLOBAL_OFFSET_TABLE_,
14853 make sure we have a GOT section.
14854
14855 * sparc.cc (optimize_tls_reloc): Recognize R_SPARC_TLS_IE_ADD.
14856 (Target_sparc::Scan::local): Likewise.
14857 (Target_sparc::Scan::global): Likewise.
14858 (Target_sparc::Relocate::relocate): Likewise.
14859 (Target_sparc::Relocate::relocate_tls): Likewise.
14860
14861 * symtab.cc (Symbol_table::define_default_version): New function,
14862 broken out of add_from_object.
14863 (Symbol_table::add_from_object): Call define_default_version.
14864 (Symbol_table::define_special_symbol): Add resolve_oldsym
14865 parameter. Change all callers. If the version for a symbol comes
14866 from a version script, resolve it with the symbol with the same
14867 name with no version. Also add the symbol without a version if
14868 appropriate.
14869 (do_define_in_output_data): If resolving with oldsym, don't delete
14870 sym.
14871 (do_define_in_output_segment): Likewise.
14872 (do_define_as_constant): Likewise.
14873 * symtab.h (class Symbol_table): Update declarations.
14874
14875 2009-03-13 Ian Lance Taylor <iant@google.com>
14876
14877 * readsyms.cc (Read_symbols::incompatible_warning): New function.
14878 (Read_symbols::requeue): New function.
14879 (Read_symbols::do_read_symbols): If make_elf_object fails because
14880 the target type is not configured, and the file was searched for,
14881 issue a warning and retry with the next directory.
14882 (Add_symbols::run): If the file has an incompatible format, and
14883 it was searched for, requeue the Read_symbols task. On error,
14884 release the object.
14885 * readsyms.h (class Read_symbols): Add dirindex_ field. Add
14886 dirindex parameter to constructor. Change all callers. Declare
14887 incompatible_warning and requeue.
14888 (class Add_symbols): Add dirpath_, dirindex_, mapfile_,
14889 input_argument_ and input_group_ fields. Add them to
14890 constructor. Change all callers.
14891 (class Read_script): Add dirindex_ field. Add it to constructor.
14892 Change all callers.
14893 * archive.cc (Archive::setup): Remove input_objects parameter.
14894 Change all callers.
14895 (Archive::get_file_and_offset): Likewise.
14896 (Archive::read_all_symbols): Likewise.
14897 (Archive::read_symbols): Likewise.
14898 (Archive::get_elf_object_for_member): Remove input_objects
14899 parameter. Add punconfigured parameter. Change all callers.
14900 (Archive::add_symbols): Change return type to bool. Check return
14901 value of include_member.
14902 (Archive::include_all_members): Likewise.
14903 (Archive::include_member): Change return type to bool. Return
14904 false if first included object has incompatible target. Set
14905 included_member_ field.
14906 (Add_archive_symbols::run): If add_symbols returns false, requeue
14907 Read_symbols task.
14908 * archive.h (class Archive): Add included_member_ field.
14909 Initialize it in constructor. Add input_file and searched_for
14910 methods. Update declarations.
14911 (class Add_archive_symbols): Add dirpath_, dirindex_, and
14912 input_argument_ fields. Add them to constructor. Change all
14913 callers.
14914 * script.cc: Include "target-select.h".
14915 (class Parser_closure): Add skip_on_incompatible_target_ and
14916 found_incompatible_target_ fields. Add
14917 skip_on_incompatible_target parameter to constructor. Change all
14918 callers. Add methods skip_on_incompatible_target,
14919 clear_skip_on_incompatible_target, found_incompatible_target, and
14920 set_found_incompatible_target.
14921 (read_input_script): Add dirindex parameter. Change all callers.
14922 If parser finds an incompatible target, requeue Read_symbols
14923 task.
14924 (script_set_symbol): Clear skip_on_incompatible_target in
14925 closure.
14926 (script_add_assertion, script_parse_option): Likewise.
14927 (script_start_sections, script_add_phdr): Likewise.
14928 (script_check_output_format): New function.
14929 * script.h (read_input_script): Update declaration.
14930 * script-c.h (script_check_output_format): Declare.
14931 * yyscript.y (file_cmd): Handle OUTPUT_FORMAT.
14932 (ignore_cmd): Remove OUTPUT_FORMAT.
14933 * fileread.cc (Input_file::Input_file): Add explicit this.
14934 (Input_file::will_search_for): New function.
14935 (Input_file::open): Add pindex parameter. Change all callers.
14936 * fileread.h (class Input_file): Add input_file_argument method.
14937 Declare will_search_for. Update declarations.
14938 * object.cc (make_elf_object): Add punconfigured parameter.
14939 Change all callers.
14940 * object.h (class Object): Make input_file public. Add
14941 searched_for method.
14942 (make_elf_object): Update declaration.
14943 * dirsearch.cc (Dirsearch::find): Add pindex parameter. Use it to
14944 restart search.
14945 * dirsearch.h (class Dirsearch): Update declaration.
14946 * options.h (class General_options): Add --warn-search-mismatch.
14947 * parameters.cc (Parameters::is_compatible_target): New function.
14948 * parameters.h (class Parameters): Declare is_compatible_target.
14949 * workqueue.cc (Workqueue::add_blocker): New function.
14950 * workqueue.h (class Workqueue): Declare add_blocker.
14951
14952 * fileread.cc (Input_file::open): Remove options parameter.
14953 Change all callers.
14954 (Input_file::open_binary): Likewise.
14955 * script.cc (read_input_script): Likewise.
14956 * readsyms.h (class Read_symbols): Remove options_ field. Remove
14957 options parameter from constructor. Change all callers.
14958 (class Read_script): Likewise.
14959 * fileread.h (class Input_file): Update declarations.
14960 * script.h (read_input_script): Update declaration.
14961
14962 2009-03-10 Nick Clifton <nickc@redhat.com>
14963
14964 * po/es.po: New Spanish translation.
14965
14966 2009-03-06 Cary Coutant <ccoutant@google.com>
14967
14968 * options.cc (parse_short_option): Keep dash_z from registering itself.
14969
14970 2009-03-03 Ian Lance Taylor <iant@google.com>
14971
14972 PR 9918
14973 * target-reloc.h (relocate_section): Pass output_section to
14974 relocate.
14975 * i386.cc (Target_i386::should_apply_static_reloc): Add
14976 output_section parameter. Change all callers.
14977 (Target_i386::Relocate::relocate): Add output_section parameter.
14978 * x86_64.cc (Target_x86_64::Relocate::relocate): Likewise.
14979 * sparc.cc (Target_sparc::Relocate::relocate): Likewise.
14980 * powerpc.cc (Target_powerpc::Relocate::relocate): Likewise.
14981 * testsuite/two_file_shared.sh: New script.
14982 * testsuite/Makefile.am (check_SCRIPTS): Add two_file_shared.sh.
14983 (check_DATA): Add two_file_shared.dbg.
14984 (two_file_shared.dbg): New target.
14985 * testsuite/Makefile.in: Rebuild.
14986
14987 2009-03-01 Ian Lance Taylor <iant@google.com>
14988
14989 * configure.ac: Check for byteswap.h.
14990 * configure: Rebuild.
14991 * config.in: Rebuild.
14992
14993 2009-03-01 Mikolaj Zalewski <mikolajz@google.com>
14994
14995 * layout.cc (Layout::find_or_add_kept_section): New function.
14996 (Layout::add_comdat): Removed.
14997 * layout.h (struct Kept_section): Move out of class Layout.
14998 Remove trailing underscores from field names. Add group_sections
14999 field. Rename group_ field to is_group. Change all uses.
15000 (class Layout): Declare find_or_add_kept_section, not add_comdat.
15001 * object.cc (Sized_relobj::Sized_relobj): Don't initialize
15002 comdat_groups_ field.
15003 (Sized_relobj::include_section_group): Use
15004 find_or_add_kept_section and Kept_section::group_sections.
15005 (Sized_relobj::include_linkonce_section): Likewise.
15006 * object.cc (class Sized_relobj): Don't define Comdat_group or
15007 Comdat_group_table. Remove find_comdat_group and
15008 add_comdat_group. Remove comdat_groups_ field.
15009 * plugin.cc (include_comdat_group): Use
15010 Layout::find_or_add_kept_section.
15011
15012 2009-02-28 Ian Lance Taylor <iant@google.com>
15013
15014 * README: --gc-sections and map files are now supported. Document
15015 some build requirements.
15016
15017 PR 6992
15018 * symtab.cc (Symbol_table::sized_write_section_symbol): In a
15019 relocatable link set the value of the section symbol to zero.
15020 * object.cc (Sized_relobj::do_finalize_local_symbols): In a
15021 relocatable link don't include the section address in the local
15022 symbol value.
15023
15024 2009-02-27 Ian Lance Taylor <iant@google.com>
15025
15026 PR 6811
15027 * options.h (class Search_directory): Add is_system_directory.
15028 (class General_options): Declare is_in_system_directory.
15029 * options.cc (get_relative_sysroot): Make static.
15030 (get_default_sysroot): Make static.
15031 (General_optoins::is_in_system_directory): New function.
15032 * fileread.cc (Input_file::is_in_system_directory): New function.
15033 * fileread.h (class Input_file): Declare is_in_system_directory.
15034 * object.h (class Object): Add is_in_system_directory.
15035 (class Input_objects): Remove system_library_directory_ field.
15036 * object.cc (Input_objects::add_object): Don't set
15037 system_library_directory_.
15038 (input_objects::found_in_system_library_directory): Remove.
15039 * symtab.cc (Symbol_table::write_globals): Remove input_objects
15040 parameter. Change all callers.
15041 (Symbol_table::sized_write_globals): Likewise.
15042 (Symbol_table::warn_about_undefined_dynobj_symbol): Likewise.
15043 Call Object::is_in_system_directory.
15044 * symtab.h (class Symbol_table): Update declarations.
15045
15046 PR 5990
15047 * descriptors.h (Open_descriptor): Add is_on_stack field.
15048 * descriptors.cc (Descriptors::open): If the descriptor is on the
15049 top of the stack, remove it. Initialize is_on_stack field.
15050 (Descriptors::release): Only add pod to stack if it is not on the
15051 stack already.
15052 (Descriptors::close_some_descriptor): Clear stack_next and
15053 is_on_stack fields.
15054
15055 PR 7091
15056 * output.cc (Output_section::find_starting_output_address): Rename
15057 from starting_output_address; add PADDR parameter; change return
15058 type.
15059 * output.h (class Output_section): Declare
15060 find_starting_output_address instead of starting_output_address.
15061 * object.cc (Sized_relobj::do_finalize_local_symbols): Handle a
15062 section symbol for which we can't find a merge section.
15063
15064 PR 9836
15065 * symtab.cc (Symbol_table::add_from_object): If the visibility is
15066 hidden or internal, force the symbol to be local.
15067 * resolve.cc (Symbol::override_visibility): Define.
15068 (Symbol::override_base): Use override_visibility.
15069 (Symbol_table::resolve): Likewise.
15070 (Symbol::override_base_with_special): Likewise.
15071 (Symbol_table::override_with_special): If the visibility is hidden
15072 or internal, force the symbol to be local.
15073 * symtab.h (class Symbol): Add set_visibility and
15074 override_visibility.
15075 * testsuite/ver_test_1.sh: New file.
15076 * testsuite/Makefile.am (check_SCRIPTS): Add ver_test_1.sh.
15077 (check_DATA): Add ver_test_1.syms.
15078 (ver_test_1.syms): New target.
15079 * testsuite/Makefile.in: Rebuild.
15080
15081 2009-02-25 Cary Coutant <ccoutant@google.com>
15082
15083 * layout.cc (Layout::choose_output_section): Don't rename sections
15084 when using a linker script that has a SECTIONS clause.
15085 * Makefile.in: Regenerate.
15086
15087 * testsuite/Makefile.am (script_test_5.sh): New test case.
15088 * testsuite/Makefile.in: Regenerate.
15089 * testsuite/script_test_5.cc: New file.
15090 * testsuite/script_test_5.sh: New file.
15091 * testsuite/script_test_5.t: New file.
15092
15093 2009-02-13 Rafael Avila de Espindola <espindola@google.com>
15094
15095 * archive.cc (Archive::include_member): Update calls to add_symbols.
15096 * dynobj.cc (Sized_dynobj<size, big_endian>::make_version_map): Add
15097 the Layout argument.
15098 * dynobj.h (do_add_symbols): Add the Layout argument.
15099 * object.cc (Sized_relobj<size, big_endian>::do_add_symbols): Add the
15100 Layout argument.
15101 * object.h (Object::add_symbols): Add the Layout argument.
15102 (Object::do_add_symbols): Add the Layout argument.
15103 (Sized_relobj::do_add_symbols): Add the Layout argument.
15104 * plugin.cc (Sized_pluginobj<size, big_endian>::do_add_symbols):
15105 Unify the two versions.
15106 (Add_plugin_symbols): Remove.
15107 * plugin.h (Pluginobj::add_symbols, Pluginobj::do_add_symbols): Remove.
15108 (Sized_pluginobj::do_add_symbols): Unify the two versions.
15109 (Add_plugin_symbols): Remove.
15110 * readsyms.cc (Read_symbols::do_read_symbols): Update call to
15111 Add_symbols. Use Add_symbols instead of Add_plugin_symbols.
15112 (Add_symbols::run): Make it work with Pulginobj.
15113
15114 2009-02-06 Ian Lance Taylor <iant@google.com>
15115
15116 * object.cc (Sized_relobj::do_layout): Make info message start
15117 with lower case letter.
15118
15119 2009-02-06 Mikolaj Zalewski <mikolajz@google.com>
15120
15121 * binary.cc: Fix file comment.
15122
15123 * options.h (enum Incremental_disposition): Define.
15124 (class General_options): Add new options: --incremental,
15125 --incremental_changed, --incremental_unchanged,
15126 --incremental_unknown. Add incremental_disposition_ and
15127 implicit_incremental_ fields.
15128 (General_options::incremental_disposition): New function.
15129 (class Position_dependent_options): Add incremental_disposition
15130 option.
15131 (Position_dependent_options::copy_from_options): Set incremental
15132 dispositions.
15133 * options.cc (General_options::parse_incremental_changed): New
15134 function.
15135 (General_options::parse_incremental_unchanged): New function.
15136 (General_options::parse_incremental_unknown): New function.
15137 (General_options::General_options): Initialize new fields
15138 incremental_disposition_ and implicit_incremental_.
15139 (General_options::finalize): Check for uasge of --incremental-*
15140 without --incremental.
15141
15142 2009-02-06 Chris Demetriou <cgd@google.com>
15143
15144 * gold.h (gold_undefined_symbol): Change to take only a Symbol
15145 pointer and to report location as the file name associated with
15146 the symbol.
15147 (gold_undefined_symbol_at_location): New function to replace the
15148 old gold_undefined_symbol functionality.
15149 * target-reloc.h (relocate_section): Update to use
15150 gold_undefined_symbol_at_location.
15151 * symtab.cc (Symbol_table::warn_about_undefined_dynobj_symbol):
15152 Call gold_undefined_symbol function rather than gold_error.
15153 * errors.h (Errors::undefined_symbol): Take location as a
15154 string, rather than calculating it from a relocation.
15155 * errors.cc (Errors::fatal): Print "fatal error:" before the
15156 formatted message.
15157 (Errors::error, Errors::error_at_location): Print "error: "
15158 before the formatted message.
15159 (Errors::undefined_symbol): Take location as a string, rather
15160 than calculating it from a relocation.
15161 (gold_undefined_symbol_at_location): New function akin to
15162 old gold_undefined_symbol, calculates location from relocation.
15163 (gold_undefined_symbol): Change to take only a Symbol pointer
15164 and to report location as the file name associated with the symbol.
15165 * testsuite/debug_msg.sh: Update for changed error messages.
15166 * testsuite/undef_symbol.sh: Likewise.
15167
15168 2009-02-04 Duncan Sands <baldrick@free.fr>
15169
15170 PR 9812
15171 * reduced_debug_output.h
15172 (Output_reduced_debug_abbrev_section::failed): Use format for
15173 gold_warning.
15174 (Output_reduced_debug_info_section::faild): Likewise.
15175
15176 2009-01-31 Mikolaj Zalewski <mikolajz@google.com>
15177
15178 * script.cc (Lazy_demangler): New class.
15179 (Version_script_info::get_symbol_version_helper): Demangle a
15180 symbol only once.
15181
15182 2009-01-29 Cary Coutant <ccoutant@google.com>
15183
15184 * i386.cc (Target_i386::Relocate::relocate): Recognize non-PIC calls
15185 to __tls_get_addr.
15186 * x86_64.cc (Target_x86_64::Relocate::relocate): Likewise.
15187
15188 2009-01-28 Ian Lance Taylor <iant@google.com>
15189
15190 * version.cc (version_string): Bump to 1.9.
15191
15192 * gold.h: Include <cstring> and <stdint.h>.
15193 * version.cc: Include <cstdio>.
15194 * object.cc (Sized_relobj::do_layout): Initialize gc_sd to avoid a
15195 warning.
15196 * reduced_debug_output.cc (insert_into_vector): Rename from
15197 Insert_into_vector; change all callers. Use Swap_unaligned to
15198 avoid aliasing issue; remove union since it is unnecessary.
15199
15200 2009-01-27 Sriraman Tallam <tmsriram@google.com>
15201
15202 * Makefile.am (CCFILES): Add gc.cc.
15203 (HFILES): Add gc.h.
15204 * Makefile.in: Regenerate.
15205 * gold.cc (Gc_runner): New class.
15206 (queue_initial_tasks): Call garbage collection related tasks
15207 when corresponding options are invoked.
15208 (queue_middle_gc_tasks): New function.
15209 (queue_middle_tasks): Reorder tasks to allow relocs to be read and
15210 processed early before laying out sections during garbage collection.
15211 * gold.h (queue_middle_gc_tasks): New function.
15212 (is_prefix_of): Move from "layout.cc".
15213 * i386.cc (Target_i386::gc_process_relocs): New function.
15214 * layout.cc (is_prefix_of): Remove. Move to "gold.h"
15215 * main.cc (main): Create object of class "Garbage_collection".
15216 * object.cc (Relobj::copy_symbols_data): New function.
15217 (Relobj::is_section_name_included): New function.
15218 (Sized_relobj::do_layout): Allow this function to be called twice
15219 during garbage collection and defer layout of section during the
15220 first call.
15221 * object.h (Relobj::get_symbols_data): New function.
15222 (Relobj::is_section_name_included): New function.
15223 (Relobj::copy_symbols_data): New function.
15224 (Relobj::set_symbols_data): New function.
15225 (Relobj::get_relocs_data): New function.
15226 (Relobj::set_relocs_data): New function.
15227 (Relobj::is_output_section_offset_invalid): New pure virtual function.
15228 (Relobj::gc_process_relocs): New function.
15229 (Relobj::do_gc_process_relocs): New pure virtual function.
15230 (Relobj::sd_): New data member.
15231 (Sized_relobj::is_output_section_offset_invalid): New function.
15232 (Sized_relobj::do_gc_process_relocs): New function.
15233 * options.h (General_options::gc_sections): Modify to not be a no-op.
15234 (General_options::print_gc_sections): New option.
15235 * plugin.cc (Plugin_finish::run): Remove function call to
15236 Plugin_manager::layout_deferred_objects. Move it to "gold.cc".
15237 * powerpc.cc (Target_powerpc::gc_process_relocs): New function.
15238 * reloc.cc (Read_relocs::run): Add task to process relocs and
15239 determine unreferenced sections when doing garbage collection.
15240 (Gc_process_relocs): New class.
15241 (Sized_relobj::do_gc_process_relocs): New function.
15242 (Sized_relobj::do_scan_relocs): Don't try to scan the relocs for
15243 sections that are garbage collected.
15244 * reloc.h (Gc_process_relocs): New class.
15245 * sparc.cc (Target_sparc::gc_process_relocs): New function.
15246 * symtab.cc (Symbol::should_add_dynsym_entry): Do not add entries for
15247 symbols whose corresponding sections are garbage collected.
15248 (Symbol_table::Symbol_table): Add new parameter for the garbage
15249 collection object.
15250 (Symbol_table::gc_mark_undef_symbols): New function.
15251 (Symbol_table::gc_mark_symbol_for_shlib): New function.
15252 (Symbol_table::gc_mark_dyn_syms): New function.
15253 (Symbol_table::resolve): Do not treat symbols seen in dynamic objects
15254 as garbage.
15255 (Symbol_table::add_from_object): Likewise.
15256 (Symbol_table::add_from_relobj): When building shared objects, do not
15257 treat externally visible symbols as garbage.
15258 (Symbol_table::sized_finalize_symbol): Do not check dynamic symbol
15259 table information for static and relocatable links.
15260 * symtab.h (Symbol_table::set_gc): New function.
15261 (Symbol_table::gc): New function.
15262 (Symbol_table::gc_mark_undef_symbols): New function.
15263 (Symbol_table::gc_mark_symbol_for_shlib): New function.
15264 (Symbol_table::gc_mark_dyn_syms): New function.
15265 (Symbol_table::gc_): New data member.
15266 * target.h (Sized_target::gc_process_relocs): New pure virtual
15267 function.
15268 * x86_64.cc (Target_x86_64::gc_process_relocs): New function.
15269 * testsuite/testfile.cc (Target_test::gc_process_relocs): New function.
15270
15271 2009-01-20 Chris Faylor <me.sourceware@sourceware.org>
15272
15273 * options.h (General_options::gc_sections): Define as a no-op for now.
15274 (General_options::no_keep_memory): Ditto.
15275 (General_options::Bshareable): Define.
15276 * options.cc (General_options::finalize): Honor -Bshareable.
15277
15278 2009-01-20 Andreas Schwab <schwab@suse.de>
15279
15280 * powerpc.cc (Powerpc_relocate_functions::rel16_ha): Don't try to
15281 read the value in the contents, since we don't use it. Use the
15282 template endianness when writing.
15283 (Relocate::relocate): Use it for R_PPC_REL16_HA.
15284
15285 2009-01-19 Andreas Schwab <schwab@suse.de>
15286
15287 * configure.tgt (powerpc64-*): Fix targ_obj.
15288
15289 2009-01-15 Ian Lance Taylor <iant@google.com>
15290
15291 * object.cc (Sized_relobj::write_local_symbols): Don't write out
15292 local symbols when stripping all symbols.
15293
15294 2009-01-14 Cary Coutant <ccoutant@google.com>
15295
15296 * output.cc (Output_reloc): Add explicit instantiations.
15297
15298 2009-01-14 Cary Coutant <ccoutant@google.com>
15299
15300 * archive.cc (Archive::get_elf_object_for_member): Remove call
15301 to File_read::claim_for_plugin.
15302 * descriptors.cc (Descriptors::open): Remove reference to
15303 is_claimed.
15304 (Descriptors::claim_for_plugin): Remove.
15305 * descriptors.h (Descriptors::claim_for_plugin): Remove.
15306 (Descriptors::is_claimed): Remove.
15307 (claim_descriptor_for_plugin): Remove.
15308 * fileread.cc (File_read::claim_for_plugin): Remove.
15309 * fileread.h (File_read::claim_for_plugin): Remove.
15310 (File_read::descriptor): Reopen descriptor if necessary.
15311 * plugin.cc (Plugin::load): Add two new APIs to transfer vector.
15312 (Plugin_manager::all_symbols_read): Add task parameter. Change
15313 all callers.
15314 (Plugin_manager::get_input_file): New function.
15315 (Plugin_manager::release_input_file): New function.
15316 (Pluginobj::Pluginobj): Add filesize parameter and initialize
15317 corresponding data member.
15318 (Sized_pluginobj::Sized_pluginobj): Add filesize parameter
15319 and pass to base constructor. Change all callers.
15320 (get_input_file, release_input_file): New functions.
15321 (make_sized_plugin_object): Add filesize parameter. Change all callers.
15322 * plugin.h (Plugin_manager::Plugin_manager): Initialize task_ member.
15323 (Plugin_manager::all_symbols_read): Add task parameter.
15324 (Plugin_manager::get_input_file): New function.
15325 (Plugin_manager::release_input_file): New function.
15326 (Plugin_manager::task_): New data member.
15327 (Pluginobj::Pluginobj): Add filesize parameter.
15328 (Pluginobj::filename): New function.
15329 (Pluginobj::descriptor): New function.
15330 (Pluginobj::filesize): New function.
15331 (Pluginobj::filesize_): New data member.
15332 (Sized_pluginobj::Sized_pluginobj): Add filesize parameter.
15333 * readsyms.cc (Read_symbols::do_read_symbols): Remove call to
15334 File_read::claim_for_plugin; use Object::unlock to unlock the file.
15335
15336 * testsuite/Makefile.am (plugin_test_4): New test case for plugins
15337 with archive libraries.
15338 * testsuite/Makefile.in: Regenerate.
15339 * testsuite/plugin_test.c (struct sym_info): New type.
15340 (get_input_file, release_input_file): New static variables.
15341 (onload): Capture new transfer vector entries.
15342 (claim_file_hook): Stop reading at end of file according to filesize.
15343 Factor out parsing of readelf output into separate function.
15344 (all_symbols_read_hook): Exercise get_input_file and release_input_file
15345 APIs and get the source file name from the symbol table. Convert
15346 source file name to corresponding object file name. Print info
15347 message when adding new input files.
15348 (parse_readelf_line): New function.
15349 * testsuite/plugin_test_1.sh: Add checks for new info messages.
15350 * testsuite/plugin_test_2.sh: Likewise.
15351 * testsuite/plugin_test_3.sh: Likewise.
15352 * testsuite/plugin_test_4.sh: New test case.
15353
15354 2009-01-07 Ian Lance Taylor <iant@google.com>
15355
15356 * version.cc (version_string): Bump to 1.8.
15357
15358 2008-12-23 Cary Coutant <ccoutant@google.com>
15359
15360 * gold.cc (gold_exit): Call plugin cleanup handlers on exit.
15361 * plugin.cc (Plugin_manager::finish): Rename as
15362 layout_deferred_objects. Move cleanup to separate function.
15363 (Plugin_manager::cleanup): New function.
15364 (Plugin_finish::run): Call layout_deferred_objects and cleanup
15365 separately.
15366 * plugin.h (Plugin_manager::finish): Rename as
15367 layout_deferred_objects.
15368 (Plugin_manager::cleanup): New function.
15369 (Plugin_manager::cleanup_done): New field.
15370
15371 2008-12-23 Cary Coutant <ccoutant@google.com>
15372
15373 * plugin.cc (is_visible_from_outside): New function.
15374 (Pluginobj::get_symbol_resolution_info): Call is_visible_from_outside
15375 so we don't return "IR only" status for exported symbols or -r links.
15376
15377 * testsuite/Makefile.am (plugin_test_3): New test case.
15378 * testsuite/Makefile.in: Regenerate.
15379 * testsuite/plugin_test_3.sh: New file.
15380
15381 2008-12-22 Cary Coutant <ccoutant@google.com>
15382
15383 * object.cc (Sized_relobj::layout_section): New function.
15384 (Sized_relobj::do_layout): Defer layout of input sections until after
15385 plugin has provided replacement files.
15386 (Sized_relobj::do_layout_deferred_sections): New function.
15387 * object.h (Relobj::set_section_offset): Remove virtual keyword.
15388 (Relobj::layout_deferred_sections): New function.
15389 (Relobj::do_layout_deferred_sections): New function.
15390 (Sized_relobj::do_layout_deferred_sections): New function.
15391 (Sized_relobj::layout_section): New function.
15392 (Sized_relobj::Deferred_layout): New structure.
15393 (Sized_relobj::deferred_layout_): New field.
15394 * plugin.cc (Plugin_manager::finish): Renamed, was cleanup.
15395 Change all callers. Layout deferred sections.
15396 (class Plugin_finish): Renamed, was Plugin_cleanup. Change all
15397 references.
15398 (Plugin_hook::run): Move code from do_plugin_hook inline.
15399 (Plugin_hook::do_plugin_hook): Remove.
15400 * plugin.h (Plugin_manager::Plugin_manager): Add missing initializers.
15401 (Plugin_manager::finish): Renamed, was cleanup.
15402 (Plugin_manager::should_defer_layout): New function.
15403 (Plugin_manager::add_deferred_layout_object): New function.
15404 (Plugin_manager::Deferred_layout_list): New type.
15405 (Plugin_manager::deferred_layout_objects_): New field.
15406 (Plugin_hook::do_plugin_hook): Remove.
15407
15408 2008-12-17 Ian Lance Taylor <iant@google.com>
15409
15410 * options.h (class General_options): Add --no case for
15411 --export-dynamic.
15412
15413 2008-12-16 Cary Coutant <ccoutant@google.com>
15414
15415 * plugin.cc (Plugin::load): Move LDPT_MESSAGE to front of transfer
15416 vector.
15417 (Plugin_manager::claim_file): Create plugin object even if
15418 plugin did not call the add_symbols callback.
15419 (Plugin_obj::get_symbol_resolution_info): Guard against plugin
15420 asking for more symbols than were added.
15421 * testsuite/Makefile.am (plugin_test_1): Add test case with
15422 no global symbols.
15423 (empty.syms): New target.
15424 * testsuite/Makefile.in: Regenerate.
15425 * testsuite/plugin_test.c (claim_file_hook): Add new debug
15426 message. Don't call add_symbols if no globals.
15427 (all_symbols_read_hook): Don't provide replacement for empty
15428 claimed file.
15429
15430 2008-12-12 Ian Lance Taylor <iant@google.com>
15431
15432 * target-reloc.h (Default_scan_relocatable_relocs): Only discard
15433 r_type == 0 for a local symbol with r_sym == 0.
15434 (scan_relocatable_relocs): Pass r_sym to
15435 local_non_section_strategy.
15436 * reloc.cc (Emit_relocs_strategy::local_non_section_strategy): Add
15437 r_sym parameter.
15438
15439 * configure.ac: Update test for TLS descriptors: they are
15440 supported as of glibc 2.9.
15441 * configure: Rebuild.
15442
15443 2008-12-11 Ian Lance Taylor <iant@google.com>
15444
15445 PR 7091
15446 * target-reloc.h (Default_scan_relocatable_relocs): For each
15447 function, map r_type == 0 to RELOC_DISCARD.
15448
15449 2008-12-10 Cary Coutant <ccoutant@google.com>
15450
15451 * layout.cc (Layout::add_comdat): Allow COMDAT group from a replacement
15452 object to override a kept COMDAT group from a plugin object.
15453
15454 2008-12-09 Ian Lance Taylor <iant@google.com>
15455
15456 PR 7088
15457 * yyscript.y (file_cmd): Handle INPUT.
15458
15459 * testsuite/initpri1.c: Change all declarations to be full
15460 prototypes by adding void, to avoid compiler warnings.
15461
15462 2008-12-05 Rafael Avila de Espindola <espindola@google.com>
15463
15464 * options.cc (General_options::parse_plugin_opt): New.
15465 (General_options::add_plugin): The argument now is just the filename.
15466 (General_options::add_plugin_option): New.
15467 * options.h (plugin_opt): New.
15468 (add_plugin): Change argument name.
15469 (add_plugin_option): New.
15470 * plugin.cc (Plugin::load): Don't parse the plugin option.
15471 * plugin.h (Plugin::Plugin): Rename argument. Init filename_.
15472 (Plugin::add_option): New.
15473 (Plugin::args_): Change type.
15474 (Plugin::filename_): New.
15475 (Plugin_manager::add_plugin_option): New.
15476 * testsuite/Makefile.am (plugin_test_1): Use new syntax.
15477 * testsuite/Makefile.in: Regenerate.
15478
15479 2008-12-05 Cary Coutant <ccoutant@google.com>
15480
15481 * layout.cc (Layout::include_section): Check for SHF_EXCLUDE.
15482 Handle --strip-lto-sections option.
15483 * options.h (strip_lto_sections): New option.
15484
15485 2008-12-01 Cary Coutant <ccoutant@google.com>
15486
15487 * plugin.cc (ld_plugin_message): Change format parameter to const.
15488 Fix mismatch between new[] and delete.
15489
15490 2008-11-14 Cary Coutant <ccoutant@google.com>
15491
15492 * reloc.cc (Sized_relobj::do_read_relocs): Use constant invalid_address
15493 instead of -1U.
15494
15495 2008-11-05 Craig Silverstein <csilvers@google.com>
15496
15497 * options.cc (General_options::parse_dynamic_list): New function.
15498 * options.h (General_options): New flags dynamic_list,
15499 dynamic_list_data, dynamic_list_cpp_new, and
15500 dynamic_list_cpp_typeinfo. New variable dynamic_list_.
15501 (General_options::in_dynamic_list): New function.
15502 * script.cc (Lex::Mode): New enum DYNAMIC_LIST.
15503 (Lex::can_start_name): Add support for DYNAMIC_LIST mode.
15504 (Lex::can_continue_name): Likewise.
15505 (yylex): Likewise.
15506 (read_script_file): New parameter script_options.
15507 (read_dynamic_list): New function.
15508 (Script_options::define_dynamic_list): New function.
15509 (dynamic_list_keyword_parsecodes): New variable.
15510 (dynamic_list_keywords): New variable.
15511 * script.h (Script_options::define_dynamic_list): New function
15512 prototype.
15513 (read_dynamic_list): New function prototype.
15514 * symtab.cc (strprefix): New macro.
15515 (Symbol::should_add_dynsym_entry): Support dynamic_list,
15516 dynamic_list_data, dynamic_list_cpp_new, and
15517 dynamic_list_cpp_typeinfo.
15518 * yyscript.y (PARSING_DYNAMIC_LIST): New token.
15519 (dynamic_list_expr): New rule.
15520 (dynamic_list_nodes): Likewise.
15521 (dynamic_list_node): Likewise.
15522 * testsuite/Makefile.am (dynamic_list): New test.
15523 * testsuite/Makefile.in: Regenerated.
15524 * testsuite/dynamic_list.t: New file.
15525 * testsuite/dynamic_list.sh: New file.
15526
15527 2008-11-05 Craig Silverstein <csilvers@google.com>
15528
15529 * testsuite/tls_test_c.c: Add prototype for t11 and t11_last.
15530 * testsuite/tls_test_c.c (t11): Add explicit "void" to prototype.
15531 (t11_last): Likewise.
15532 * testsuite/ver_test_6.c (main): Likewise.
15533
15534 2008-10-07 Cary Coutant <ccoutant@google.com>
15535
15536 * options.c (General_options::finalize): Add check for -static and
15537 -shared.
15538 * gold.cc (queue_middle_tasks): Assert that list of dynamic objects
15539 is not empty.
15540
15541 2008-10-02 Cary Coutant <ccoutant@google.com>
15542
15543 * plugin.cc (make_sized_plugin_object): Fix conditional
15544 compilation to work when not all targets are enabled.
15545
15546 2008-09-29 Cary Coutant <ccoutant@google.com>
15547
15548 * archive.cc (Archive::get_file_and_offset): Use filename instead
15549 of name to get library path.
15550 (Archive::include_member): Unlock external member of a thin archive.
15551
15552 * testsuite/Makefile.am (TEST_AR): New variable.
15553 (thin_archive_test_1): New test.
15554 (thin_archive_test_2): New test.
15555 * testsuite/Makefile.in: Regenerate.
15556 * testsuite/thin_archive_main.cc: New file.
15557 * testsuite/thin_archive_test_1.cc: New file.
15558 * testsuite/thin_archive_test_2.cc: New file.
15559 * testsuite/thin_archive_test_3.cc: New file.
15560 * testsuite/thin_archive_test_4.cc: New file.
15561
15562 2008-09-29 Cary Coutant <ccoutant@google.com>
15563
15564 * mapfile.cc (Mapfile::print_input_section): Change -1U to -1ULL.
15565 * object.cc (Sized_relobj::do_layout): Use constant invalid_address
15566 instead of -1U.
15567 (Sized_relobj::do_finalize_local_symbols): Likewise.
15568 (Sized_relobj::map_to_kept_section): Likewise.
15569 * object.h (Sized_relobj::invalid_address): New constant.
15570 (Sized_relobj::do_output_section_offset): Check for invalid_address
15571 and return -1ULL.
15572 * output.cc (Output_reloc::local_section_offset): Use constant
15573 invalid_address instead of -1U.
15574 (Output_reloc::get_address): Likewise.
15575 (Output_section::output_address): Change -1U to -1ULL.
15576 * output.h (Output_reloc::invalid_address): New constant.
15577 * reloc.cc (Sized_relobj::write_sections): Use constant
15578 invalid_address instead of -1U.
15579 (Sized_relobj::relocate_sections): Likewise.
15580 * symtab.cc (Symbol_table::sized_finalize_symbol): Handle symbol
15581 values for merge sections.
15582 * target-reloc.h (relocate_for_relocatable): Use constant
15583 invalid_address instead of -1U.
15584
15585 2008-09-19 Cary Coutant <ccoutant@google.com>
15586
15587 Add plugin functionality for link-time optimization (LTO).
15588 * configure.ac (plugins): Add --enable-plugins option.
15589 * configure: Regenerate.
15590 * config.in: Regenerate.
15591 * Makefile.am (LIBDL): New variable.
15592 (CCFILES): Add plugin.cc.
15593 (HFILES): Add plugin.h.
15594 (ldadd_var): Add LIBDL.
15595 * Makefile.in: Regenerate.
15596
15597 * archive.cc: Include "plugin.h".
15598 (Archive::setup): Don't preread archive symbols when using a plugin.
15599 (Archive::get_file_and_offset): Add memsize parameter. Change callers.
15600 (Archive::get_elf_object_for_member): Call plugin hooks for claiming
15601 files.
15602 (Archive::include_member): Add symbols from plugin objects.
15603 * archive.h (Archive::get_file_and_offset): Add memsize parameter.
15604 * descriptors.cc (Descriptors::open): Check for file descriptors
15605 abandoned by plugins.
15606 (Descriptors::claim_for_plugin): New function.
15607 * descriptors.h (Descriptors::claim_for_plugin): New function.
15608 (Open_descriptor::is_claimed): New field.
15609 (claim_descriptor_for_plugin): New function.
15610 * fileread.cc (File_read::claim_for_plugin): New function.
15611 * fileread.h (File_read::claim_for_plugin): New function.
15612 (File_read::descriptor): New function.
15613 * gold.cc: Include "plugin.h".
15614 (queue_initial_tasks): Add task to call plugin hooks for generating
15615 new object files.
15616 * main.cc: Include "plugin.h".
15617 (main): Load plugin libraries.
15618 * object.h (Pluginobj): Declare.
15619 (Object::pluginobj): New function.
15620 (Object::do_pluginobj): New function.
15621 (Object::set_target): New function.
15622 * options.cc: Include "plugin.h".
15623 (General_options::parse_plugin): New function.
15624 (General_options::General_options): Initialize plugins_ field.
15625 (General_options::add_plugin): New function.
15626 * options.h (Plugin_manager): Declare.
15627 (General_options): Add --plugin option.
15628 (General_options::has_plugins): New function.
15629 (General_options::plugins): New function.
15630 (General_options::add_plugin): New function.
15631 (General_options::plugins_): New field.
15632 * plugin.cc: New file.
15633 * plugin.h: New file.
15634 * readsyms.cc: Include "plugin.h".
15635 (Read_symbols::do_read_symbols): Check for archive before checking
15636 for ELF file. Call plugin hooks to claim files.
15637 * resolve.cc (Symbol_table::resolve): Record when symbol is referenced
15638 from a real object file; force override when processing replacement
15639 files.
15640 * symtab.cc (Symbol::init_fields): Initialize in_real_elf_ field.
15641 (Symbol::init_base_object): Likewise.
15642 (Symbol::init_base_output_data): Likewise.
15643 (Symbol::init_base_output_segment): Likewise.
15644 (Symbol::init_base_constant): Likewise.
15645 (Symbol::init_base_undefined): Likewise.
15646 (Symbol::output_section): Assert that object is not a plugin.
15647 (Symbol_table::add_from_pluginobj): New function.
15648 (Symbol_table::sized_finalize_symbol): Treat symbols from plugins as
15649 undefined.
15650 (Symbol_table::sized_write_globals): Likewise.
15651 (Symbol_table::add_from_pluginobj): Instantiate template.
15652 * symtab.h (Sized_pluginobj): Declare.
15653 (Symbol::in_real_elf): New function.
15654 (Symbol::set_in_real_elf): New function.
15655 (Symbol::in_real_elf_): New field.
15656 (Symbol_table::add_from_pluginobj): New function.
15657
15658 * testsuite/Makefile.am (AM_CFLAGS): New variable.
15659 (LIBDL): New variable.
15660 (LDADD): Add LIBDL.
15661 (check_PROGRAMS): Add plugin_test_1 and plugin_test_2.
15662 (check_SCRIPTS): Add plugin_test_1.sh and plugin_test_2.sh.
15663 (check_DATA): Add plugin_test_1.err and plugin_test_2.err.
15664 (MOSTLYCLEANFILES): Likewise.
15665 * testsuite/Makefile.in: Regenerate.
15666 * testsuite/plugin_test.c: New file.
15667 * testsuite/plugin_test_1.sh: New file.
15668 * testsuite/plugin_test_2.sh: New file.
15669
15670 2008-09-16 Ian Lance Taylor <iant@google.com>
15671
15672 * target-reloc.h (relocate_section): Check whether a symbol is
15673 defined by the ABI before reporting an undefined symbol error.
15674 * target.h (Target::is_defined_by_abi): Make parameter const.
15675 (Target::do_is_defined_by_abi): Likewise.
15676 * i386.cc (Target_i386::do_is_defined_by_abi): Likewise.
15677 * powerpc.cc (Target_powerpc::do_is_defined_by_abi): Likewise.
15678 * sparc.cc (Target_sparc::do_is_defined_by_abi): Likewise.
15679 * x86_64.cc (Target_x86_64::do_is_defined_by_abi): Likewise.
15680 * testsuite/Makefile.am (tls_test_shared.so): Add -Wl,-z,defs.
15681 * testsuite/Makefile.in: Rebuild.
15682
15683 * fileread.cc (make_view): Add casts to avoid warning.
15684
15685 2008-09-16 Alexandre Oliva <aoliva@redhat.com>
15686
15687 * i386.cc (Target_i386::define_tls_base_symbol): Update comments.
15688 * x86_64.cc (Target_x86_64::define_tls_base_symbol): Likewise.
15689
15690 2008-09-16 Alexandre Oliva <aoliva@redhat.com>
15691
15692 * options.h (General_options::output_is_executable): New.
15693 (General_options::output_is_pie): New.
15694 * i386.cc (Target_i386::define_tls_base_symbol): Use SEGMENT_START
15695 for shared libraries.
15696 * x86_64.cc (Target_x86_64::define_tls_base_symbol): Likewise.
15697
15698 2008-09-11 Chris Demetriou <cgd@google.com>
15699
15700 * options.h (origin): New -z option.
15701 * layout.cc (Layout:finish_dynamic_section): If "-z origin"
15702 is specified, set DF_ORIGIN in DT_FLAGS and set DF_1_ORIGIN
15703 in DT_FLAGS_1.
15704
15705 2008-09-05 Cary Coutant <ccoutant@google.com>
15706
15707 * fileread.cc (File_read::make_view): Add check for attempt to map
15708 beyond end of file.
15709
15710 2008-09-05 Cary Coutant <ccoutant@google.com>
15711
15712 * symtab.cc (Symbol_table::add_from_dynobj): Fix typos in
15713 explicit instantiations.
15714
15715 2008-08-28 Kris Van Hees <kris.van.hees@oracle.com>
15716
15717 PR gold/6858
15718 * options.cc (General_options::finalize): Allow undefined symbols
15719 in shlibs if linking -shared.
15720
15721 PR gold/6859
15722 * symtab.cc (Symbol::init_base_undefined): Mark explicitly undefined
15723 symbols as not needing a dynsym entry.
15724
15725 2008-08-20 Craig Silverstein <csilvers@google.com>
15726
15727 * fileread.cc (File_read::open): Do not lock the file unless it
15728 was successfully opened.
15729
15730 2008-08-14 Cary Coutant <ccoutant@google.com>
15731
15732 * x86_64.cc (Target_x86_64::Relocate::relocat_tls):
15733 Use addend for DTPOFF32, DTPOFF64, and TPOFF32 relocs.
15734 * testsuite/tls_test.cc (struct int128): 128-bit struct
15735 for testing TLS relocs with non-zero addend.
15736 (v12): New TLS variable.
15737 (t12): New test.
15738 (t_last): Add check for v12.
15739 * testsuite/tls_test.h (t12): New function.
15740 * testsuite/tls_test_main.cc (thread_routine): Call new test.
15741
15742 2008-08-13 Ian Lance Taylor <iant@google.com>
15743
15744 * layout.cc (Layout::attach_allocated_section_to_segment): Don't
15745 set tls_segment_ or relro_segment_.
15746 (Layout::make_output_segment): Set tls_segment_ and relro_segment_
15747 when appropriate.
15748 * output.h (Output_section::clear_is_relro): New function.
15749 * output.cc (Output_segment::add_output_section): Handle SHF_TLS
15750 sections specially even when output_data_ is empty.
15751 (Output_segment::maximum_alignment): When first section is relro,
15752 only force alignment for PT_LOAD segments.
15753 * script.cc (script_data_segment_align): New function.
15754 (script_data_segment_relro_end): New function.
15755 * script-c.h (script_data_segment_align): Declare.
15756 (script_data_segment_relro_end): Declare.
15757 * script-sections.h (class Script_sections): Declare
15758 data_segment_align and data_segment_relro_end. Add fields
15759 segment_align_index_ and saw_relro_end_.
15760 * script-sections.cc (class Sections_element): Add set_is_relro
15761 virtual function. Add new bool* parameter to place_orphan_here.
15762 Add get_output_section virtual function.
15763 (class Output_section_definition): Add set_is_relro. Add new
15764 bool* parameter to place_orphan_here. Add get_output_section.
15765 Add is_relro_ field.
15766 (Output_section_definition::Output_section_definition): Initialize
15767 evaluated_address_, evaluated_load_address, evaluated_addralign_,
15768 and is_relro_ fields.
15769 (Output_section_definition::place_orphan_here): Add is_relro
15770 parameter.
15771 (Output_section_definition::set_section_addresses): Set relro for
15772 output section.
15773 (Output_section_definition::alternate_constraint): Likewise.
15774 (class Orphan_output_section): Add new bool* parameter to
15775 place_orphan_here. Add get_output_section.
15776 (Orphan_output_section::place_orphan_here): Add is_relro
15777 parameter.
15778 (Script_sections::Script_sections): Initialize
15779 data_segment_align_index_ and saw_relro_end_.
15780 (Script_sections::data_segment_align): New function.
15781 (Script_sections::data_segment_relro_end): New function.
15782 (Script_sections::place_orphan): Set or clear is_relro.
15783 (Script_sections::set_section_addresses): Force alignment of first
15784 TLS section.
15785 * yyscript.y (exp): Call script_data_segment_align and
15786 script_data_segment_relro_end.
15787 * testsuite/relro_script_test.t: New file.
15788 * testsuite/relro_test.cc (using_script): Declare.
15789 (t1, t2): Test using_script.
15790 * testsuite/Makefile.am (check_PROGRAMS): Add relro_script_test.
15791 (relro_script_test_SOURCES): Define.
15792 (relro_script_test_DEPENDENCIES): Define.
15793 (relro_script_test_LDFLAGS): Define.
15794 (relro_script_test_LDADD): Define.
15795 (relro_script_test.so): New target.
15796 * testsuite/Makefile.in: Rebuild.
15797
15798 2008-08-06 Cary Coutant <ccoutant@google.com>
15799
15800 * archive.cc (Archive::total_archives, Archive::total_members)
15801 (Archive::total_members_loaded): New variables.
15802 (Archive::setup): Add parameter. Add option to preread
15803 archive symbols.
15804 (Archive::read_armap): Add counter.
15805 (Archive::get_file_and_offset): New function.
15806 (Archive::get_elf_object_for_member): New function.
15807 (Archive::read_all_symbols): New function.
15808 (Archive::read_symbols): New function.
15809 (Archive::add_symbols): Add counters.
15810 (Archive::include_all_members): Use armap to find members if it's
15811 already built.
15812 (Archive::include_member): Skip reading symbols if already read.
15813 Factored code into Archive::get_file_and_offset and
15814 Archive::get_elf_object_for_member. Changed call to
15815 Mapfile::report_include_archive_member.
15816 (Archive::print_stats): New function.
15817 * archive.h: Declare Object and Read_symbols_data classes.
15818 (Archive::Archive): Add initializers for new members.
15819 (Archive::setup): Add parameter.
15820 (Archive::print_stats): New function.
15821 (Archive::total_archives, Archive::total_members)
15822 (Archive::total_members_loaded): New variables.
15823 (Archive::get_file_and_offset): New function.
15824 (Archive::get_elf_object_for_member): New function.
15825 (Archive::read_all_symbols): New function.
15826 (Archive::read_symbols): New function.
15827 (Archive::Archive_member): New class.
15828 (Archive::members_): New member.
15829 (Archive::num_members_): New member.
15830 * main.cc: Include archive.h.
15831 (main): Call Archive::print_stats.
15832 * mapfile.cc (Mapfile::report_include_archive_member): Delete
15833 archive parameter; member_name is now the fully-decorated name.
15834 * mapfile.h (Mapfile::report_include_archive_member): Likewise.
15835 * options.h: (General_options): Add --preread-archive-symbols option.
15836 * readsyms.cc (Read_symbols::do_read_symbols): Change call to
15837 Archive::setup.
15838
15839 2008-08-04 Ian Lance Taylor <iant@google.com>
15840
15841 * symtab.h (Symbol::use_plt_offset): New function.
15842 * i386.cc (Relocate::relocate): Call Symbol::use_plt_offset.
15843 * powerpc.cc (Relocate::relocate): Likewise.
15844 * sparc.cc (Relocate::relocate): Likewise.
15845 * x86_64.cc (Relocate::relocate): Likewise.
15846 * testsuite/weak_plt.sh: New test.
15847 * testsuite/weak_plt_main.cc: New test.
15848 * testsuite/weak_plt_shared.cc: New test.
15849 * testsuite/Makefile.am (check_SCRIPTS): Add weak_plt.sh.
15850 (check_PROGRAMS): Add weak_plt.
15851 (check_DATA): Add weak_plt_shared.so.
15852 (weak_plt_main_pic.o, weak_plt): New targets.
15853 (weak_plt_shared_pic.o, weak_plt_shared.so): New targets.
15854 * testsuite/Makefile.in: Rebuild.
15855
15856 * testsuite/Makefile.am (weak_alias_test_1.so): Depend upon
15857 gcctestdir/ld.
15858 (weak_alias_test_2.so, weak_alias_test_4.so): Likewise.
15859 * testsuite/Makefile.in: Rebuild.
15860
15861 2008-08-04 Alan Modra <amodra@bigpond.net.au>
15862
15863 * Makefile.am (POTFILES.in): Set LC_ALL=C.
15864 * Makefile.in: Regenerate.
15865 * po/POTFILES.in: Regenerate.
15866
15867 2008-07-29 Ian Lance Taylor <iant@google.com>
15868
15869 * script.cc (Script_options::finalize_symbols): Finalize SECTIONS
15870 symbols before other symbols.
15871 * testsuite/script_test_2.cc (test_addr): Declare.
15872 (test_addr_alias): Declare.
15873 (main): Check that test_addr and test_addr_alias have the right
15874 values.
15875 * testsuite/script_test_2.t: Define test_addr_alias and
15876 test_addr.
15877
15878 2008-07-24 Ian Lance Taylor <iant@google.com>
15879
15880 PR 5990
15881 * descriptors.cc: New file.
15882 * descriptors.h: New file.
15883 * gold-threads.h (class Hold_optional_lock): New class.
15884 * fileread.cc: Include "descriptors.h".
15885 (File_read::~File_read): Release descriptor rather than closing
15886 it.
15887 (File_read::open) [file]: Call open_descriptor rather than open.
15888 Set is_descriptor_opened_.
15889 (File_read::open) [memory]: Assert that descriptor is not open.
15890 (File_read::reopen_descriptor): New function.
15891 (File_read::release): Release descriptor.
15892 (File_read::do_read): Make non-const. Reopen descriptor.
15893 (File_read::read): Make non-const.
15894 (File_read::make_view): Reopen descriptor.
15895 (File_read::do_readv): Likewise.
15896 * fileread.h (class File_read): Add is_descriptor_opened_ field.
15897 Update declarations.
15898 * layout.cc: Include "descriptors.h".
15899 (Layout::create_build_id): Use open_descriptor rather than open.
15900 * output.cc: Include "descriptors.h".
15901 (Output_file::open): Use open_descriptor rather than open.
15902 * archive.cc (Archive::const_iterator): Change Archive to be
15903 non-const.
15904 (Archive::begin, Archive::end): Make non-const.
15905 (Archive::count_members): Likewise.
15906 * archive.h (class Archive): Update declarations.
15907 * object.h (Object::read): Make non-const.
15908 * Makefile.am (CCFILES): Add descriptors.cc.
15909 (HFILES): Add descriptors.h.
15910 * Makefile.in: Rebuild.
15911
15912 PR 6716
15913 * gold.h: Always include <clocale>. Add Solaris workarounds
15914 following code in binutils/sysdep.h.
15915
15916 PR 6048
15917 * ehframe.cc (Eh_frame::add_ehframe_input_section): Check whether
15918 this->eh_frame_hdr_ is NULL before using it.
15919
15920 * dynobj.cc (Versions::Versions): Update comment.
15921
15922 * dynobj.cc (Versions::Versions): If there is an soname, use it as
15923 the base version name.
15924
15925 * stringpool.cc (Stringpool_template::add_with_length): Set key to
15926 array size plus one.
15927 (Stringpool_template::set_string_offsets): Subtract one from key
15928 before using it as an array index.
15929 (Stringpool_template::get_offset_with_length): Likewise.
15930 (Stringpool_template::write_to_buffer): Likewise.
15931 * stringpool.h (Stringpool_template::get_offset_from_key):
15932 Likewise.
15933
15934 2008-07-23 Ian Lance Taylor <iant@google.com>
15935
15936 PR 6658
15937 * object.h (Merged_symbol_value::value): Do our best to handle a
15938 negative addend.
15939
15940 PR 6647
15941 * script.cc (Version_script_info::get_versions): Don't add empty
15942 version tag to return value.
15943 (Version_script_info::get_symbol_version_helper): Change return
15944 type to bool. Add pversion parameter. Change all callers.
15945 (script_register_vers_node): Don't require a non-NULL tag.
15946 * script.h (class Version_script_info): Update declarations.
15947 (Version_script_info::get_symbol_version): Change return type to
15948 bool. Add version parameter. Change all callers.
15949 * symtab.cc (Sized_symbol::add_from_relobj): Rework version
15950 handling. Handle an empty version from a version script.
15951 (Symbol_table::define_special_symbol): Likewise.
15952 * testsuite/ver_test_10.script: New file.
15953 * testsuite/ver_test_10.sh: New file.
15954 * testsuite/Makefile.am (check_SCRIPTS): Add ver_test_10.sh.
15955 (check_DATA): Add ver_test_10.syms.
15956 (ver_test_10.syms, ver_test_10.so): New target.
15957 * testsuite/Makefile.in: Rebuild.
15958
15959 2008-07-23 Simon Baldwin <simonb@google.com>
15960
15961 * symtab.cc (Symbol_table::sized_write_symbol): Only set st_size
15962 to zero for undefined symbols from dynamic libraries.
15963
15964 2008-07-23 Ian Lance Taylor <iant@google.com>
15965
15966 * symtab.cc (Symbol_table::resolve): Remove version parameter.
15967 Change all callers.
15968 * symtab.h (class Symbol_table): Update declaration.
15969 * testsuite/ver_test_9.cc: New file.
15970 * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_9.
15971 (ver_test_9_SOURCES, ver_test_9_DEPENDENCIES): Define.
15972 (ver_test_9_LDFLAGS, ver_test_9_LDADD): Define.
15973 (ver_test_9.so, ver_test_9.o): New targets.
15974 * testsuite/Makefile.in: Rebuild.
15975
15976 2008-07-22 Ian Lance Taylor <iant@google.com>
15977
15978 * options.h (class General_options): Define --check-sections.
15979 * layout.cc (Layout::set_segment_offsets): Handle
15980 --check-sections.
15981
15982 * options.h (class General_options): Define -n/--nmagic and
15983 -N/--omagic.
15984 * options.cc (General_options::finalize): For -n/--nmagic or
15985 -N/--omagic, set -static.
15986 * layout.cc (Layout::attach_allocated_section_to_segment): If
15987 -N/--omagic, don't put read-only and read-write sections in
15988 different segments.
15989 (Layout::find_first_load_seg): If -N/--omagic, don't insist on
15990 finding a read-only segment.
15991 (Layout::set_segment_offsets): If -N/--omagic or -n/--nmagic,
15992 don't set the minimum segment alignment to the common page size,
15993 and don't set the file offset to the address modulo the page size.
15994 * script-sections.cc (Script_sections::create_segments): If
15995 -n/--omagic, don't put read-only and read-write sections in
15996 different segments.
15997
15998 * cref.cc: New file.
15999 * cref.h: New file.
16000 * options.h (class General_options): Add --print-symbol-counts.
16001 * main.cc (main): Issue defined symbol report if requested.
16002 * archive.cc (Archive::interpret_header): Make into a const member
16003 function.
16004 (Archive::add_symbols): Call Input_objects::archive_start and
16005 archive_stop.
16006 (Archive::const_iterator): Define new class.
16007 (Archive::begin, Archive::end): New functions.
16008 (Archive::include_all_members): Rewrite to use iterator.
16009 (Archive::count_members): New function.
16010 * archive.h (class Archive): Update declarations.
16011 (Archive::filename): New function.
16012 * object.cc: Include "cref.h".
16013 (Sized_relobj::Sized_relobj): Initialize defined_count_.
16014 (Sized_relobj::do_get_global_symbol_counts): New function.
16015 (Input_objects::add_object): Add object to cross-referencer.
16016 (Input_objects::archive_start): New function.
16017 (Input_objects::archive_stop): New function.
16018 (Input_objects::print_symbol_counts): New function.
16019 * object.h: Declare Cref and Archive.
16020 (Object::get_global_symbol_counts): New function.
16021 (Object::do_get_global_symbol_counts): New pure virtual function.
16022 (class Sized_relobj): Add defined_count_ field. Update
16023 declarations.
16024 (class Input_objects): Add cref_ field. Update constructor.
16025 Update declarations.
16026 * dynobj.cc (Sized_dynobj::Sized_dynobj): Initialize symbols_ and
16027 defined_count_.
16028 (Sized_dynobj::do_add_symbols): Allocate symbols_ if printing
16029 symbol counts.
16030 (Sized_dynobj::do_get_global_symbol_counts): New function.
16031 * dynobj.h (class Sized_dynobj): Add fields symbols_ and
16032 defined_count_. Update declarations. Define Symbols typedef.
16033 * symtab.cc (Symbol_table::add_from_relobj): Add defined
16034 parameter. Change all callers.
16035 (Symbol_table::add_from_dynobj): Add sympointers and defined
16036 parameters. Change all callers.
16037 * symtab.h (class Symbol_table): Update declarations.
16038 * Makefile.am (CCFILES): Add cref.cc.
16039 (HFILES): Add cref.h.
16040 * Makefile.in: Rebuild.
16041
16042 2008-07-22 Simon Baldwin <simonb@google.com>
16043
16044 * symtab.cc (Symbol_table::sized_write_symbol): Set symbol size
16045 to zero when writing undefined symbols.
16046
16047 2008-07-22 Ian Lance Taylor <iant@google.com>
16048
16049 * output.cc (Output_section::add_input_section): Don't try to
16050 merge empty merge sections.
16051
16052 2008-07-21 Craig Silverstein <csilvers@google.com>
16053
16054 * symtab.cc (Symbol_table::warn_about_undefined_dynobj_symbol):
16055 Include symbol version in error message.
16056
16057 2008-07-20 Chris Demetriou <cgd@google.com>
16058
16059 * configure.ac (gold_cv_c_random_seed): New configured variable.
16060 (RANDOM_SEED_CFLAGS): New substituted variable.
16061 * Makefile.am (AM_CFLAGS, AM_CXXFLAGS): Add $(RANDOM_SEED_CFLAGS).
16062 * configure: Rebuild.
16063 * Makefile.in: Likewise.
16064 * testsuite/Makefile.in: Likewise.
16065
16066 2008-07-18 Ian Lance Taylor <iant@google.com>
16067
16068 * symtab.cc (Symbol_table::add_from_object): Rewrite the case
16069 where we see NAME/NULL and NAME/VERSION as separate symbols.
16070 * testsuite/ver_test_main.cc (main): Call t4.
16071 (t4, t4_2a): Define.
16072 * testsuite/ver_test_2.cc (t4_2): Define.
16073 * testsuite/ver_test_2.script: Put t4_2a in VER2.
16074 * testsuite/ver_test_4.cc (t4_2a): Define.
16075 * testsuite/ver_test_4.script: Put t4_2a in VER2.
16076 * testsuite/ver_test.h (t4, t4_2, t4_2a): Declare.
16077
16078 2008-07-17 Ian Lance Taylor <iant@google.com>
16079
16080 * dynobj.cc (Versions::add_def): If we give an error about a
16081 missing version, go ahead and create the version anyhow.
16082
16083 2008-07-10 Ian Lance Taylor <iant@google.com>
16084
16085 Handle output sections with more than 0x7fffffff bytes.
16086 * object.h (class Relobj): Change map_to_output_ to
16087 output_sections_, and just keep a section pointer. Change all
16088 uses. Move comdat group support to Sized_relobj.
16089 (Relobj::is_section_specially_mapped): Remove.
16090 (Relobj::output_section): Remove poff parameter. Change all
16091 callers.
16092 (Relobj::output_section_offset): New function.
16093 (Relobj::set_section_offset): Rewrite.
16094 (Relobj::map_to_output): Remove.
16095 (Relobj::output_sections): New function.
16096 (Relobj::do_output_section_offset): New pure virtual function.
16097 (Relobj::do_set_section_offset): Likewise.
16098 (class Sized_relobj): Add section_offsets_ field. Add comdat
16099 group support from Relobj. Update declarations.
16100 (Sized_relobj::get_output_section_offset): New function.
16101 (Sized_relobj::do_output_section_offset): New function.
16102 (Sized_relobj::do_set_section_offset): New function.
16103 * object.cc (Relobj::output_section_address): Remove.
16104 (Sized_relobj::Sized_relobj): Initialize new fields.
16105 (Sized_relobj::include_section_group): Cast find_kept_object to
16106 Sized_relobj.
16107 (Sized_relobj::include_linkonce_section): Likewise.
16108 (Sized_relobj::do_layout): Use separate arrays for output section
16109 and output offset.
16110 (Sized_relobj::do_count_local_symbols): Change map_to_output to
16111 output_sections.
16112 (Sized_relobj::do_finalize_local_symbols): Change map_to_output to
16113 output_sections and section_offsets.
16114 (Sized_relobj::write_local_symbols): Likewise.
16115 (map_to_kept_section): Compute output address directly.
16116 * reloc.cc (Sized_relobj::do_read_relocs): Change map_to_output to
16117 output_sections and section_offsets.
16118 (Sized_relobj::write_sections): Likewise.
16119 (Sized_relobj::relocate_sections): Likewise.
16120 * symtab.cc (sized_finalize_symbol): Use output_section_offset.
16121 * output.h (class Output_reloc): Update declarations. Change
16122 u2_.relobj to Sized_relobj*.
16123 (class Output_data_reloc): Change add functions to use
16124 Sized_relobj*.
16125 * output.cc (Output_reloc::Output_reloc): Change relobj to
16126 Sized_relobj*.
16127 (Output_reloc::local_section_offset): Change return type to
16128 Elf_Addr. Use get_output_section_offset.
16129 (Output_reloc::get_address): Likewise.
16130 (Output_section::is_input_address_mapped): Don't call
16131 is_section_specially_mapped.
16132 (Output_section::output_offset): Likewise.
16133 (Output_section::output_address): Likewise.
16134 (Output_section::starting_output_address): Likewise.
16135 * copy-relocs.cc (Copy_relocs::copy_reloc): Change object
16136 parameter to Sized_relobj*.
16137 (Copy_relocs::need_copy_reloc): Likewise.
16138 (Copy_relocs::save): Likewise.
16139 * copy-relocs.h (class Copy_relocs): Update declarations.
16140 (class Copy_relocs::Copy_reloc_entry): Change constructor to use
16141 Sized_relobj*. Change relobj_ field to Sized_relobj*.
16142 * target-reloc.h (relocate_for_relocatable): Change
16143 offset_in_output_section type to Elf_Addr. Change code that uses
16144 it as well.
16145 * layout.cc (Layout::layout): Always set *off.
16146 * mapfile.cc (Mapfile::print_input_section): Use
16147 output_section_offset.
16148 * i386.cc (Target_i386::copy_reloc): Change object parameter to
16149 Sized_relobj*.
16150 * powerpc.cc (Target_powerpc::copy_reloc): Likewise.
16151 * sparc.cc (Target_sparc::copy_reloc): Likewise.
16152 * x86_64.cc (Target_x86_64::copy_reloc): Likewise.
16153
16154 2008-07-03 Ian Lance Taylor <iant@google.com>
16155
16156 * layout.cc (Layout::include_section): Do not discard unrecognized
16157 SHT_STRTAB sections.
16158
16159 2008-06-30 Craig Silverstein <csilvers@cs.stanford.edu>
16160
16161 * script.cc (Lex::can_continue_name): Make '?' allowable in
16162 version-script names.
16163 * testsuite/version_script.map: Change glob pattern to use '?'
16164
16165 2008-06-30 Manish Singh <yosh@gimp.org>
16166
16167 PR 6585
16168 * symtab.cc (Symbol_table::add_undefined_symbols_from_command_line):
16169 Correct typo.
16170
16171 2008-06-30 Ian Lance Taylor <iant@google.com>
16172
16173 PR 6660
16174 PR 6682
16175 * powerpc.cc (Powerpc_relocate_functions::addr16_ha) [both
16176 versions]: Don't try to read the value in the contents, since we
16177 don't use it. Use the template endianness when writing.
16178
16179 2008-06-25 Cary Coutant <ccoutant@google.com>
16180
16181 * fileread.cc (File_read::make_view): Assert on zero-length view.
16182 * object.cc (Sized_relobj::do_read_symbols): Don't try to read
16183 symbol table when there are no symbols to read.
16184
16185 2008-06-23 Craig Silverstein <csilvers@google.com>
16186
16187 * version.cc (version_string): Bump to 1.7
16188
16189 2008-06-18 Craig Silverstein <csilvers@google.com>
16190
16191 * powerpc.cc (Powerpc_relocate_functions::addr16_ha): cast
16192 constant 0xFFFF to type Valtype.
16193 (Powerpc_relocate_functions::rel16_ha): Likewise.
16194
16195 2008-06-17 Ian Lance Taylor <iant@google.com>
16196
16197 * output.h (Output_section::Input_section): Initialize p2align_ to
16198 zero for Output_section_data constructors.
16199 (Output_section::Input_section::addralign): If not an input
16200 section, return the alignment of the Output_section_data.
16201 * testsuite/copy_test.cc: New file.
16202 * testsuite/copy_test_1.cc: New file.
16203 * testsuite/copy_test_2.cc: New file.
16204 * testsuite/Makefile.am (check_PROGRAMS): Add copy_test.
16205 (copy_test_SOURCES, copy_test_DEPENDENCIES): New variables.
16206 (copy_test_LDFLAGS, copy_test_LDADD): New variables.
16207 (copy_test_1_pic.o, copy_test_1.so): New targets.
16208 (copy_test_2_pic.o, copy_test_2.so): New targets.
16209 * testsuite/Makefile.in: Rebuild.
16210
16211 * script-sections.cc (Script_sections::place_orphan): Initialize
16212 local variable exact.
16213
16214 2008-06-13 David Edelsohn <edelsohn@gnu.org>
16215
16216 * powerpc.cc (Output_data_plt_powerpc::do_write): 8 + 4 = 0xC.
16217
16218 2008-06-12 David Edelsohn <edelsohn@gnu.org>
16219 David S. Miller <davem@davemloft.net>
16220
16221 * powerpc.cc: New file.
16222 * Makefile.am (TARGETSOURCES): Add powerpc.cc
16223 (ALL_TARGETOBJS): Add powerpc.$(OBJEXT)
16224 * configure.tgt: Add entries for powerpc-* and powerpc64-*.
16225 * Makefile.in: Rebuild.
16226
16227 2008-06-09 Ian Lance Taylor <iant@google.com>
16228
16229 * testsuite/relro_test.cc: Include <cstdio>, <cstdlib>, and
16230 <exception>.
16231 (throwing, orig_terminate): New static variables.
16232 (terminate_handler): New static function.
16233 (t2): Set terminate handler.
16234
16235 2008-06-05 Kris Van Hees <kris.van.hees@oracle.com>
16236
16237 PR 6584
16238 * binary.cc (Binary_to_elf::sized_convert): Fix .data
16239 alignment.
16240
16241 2008-05-30 Cary Coutant <ccoutant@google.com>
16242
16243 * archive.cc (Archive::include_all_members) Correct to step
16244 over symbol table and extended name table in thin archives.
16245
16246 2008-05-29 Kris Van Hees <kris.van.hees@oracle.com>
16247
16248 PR 6407
16249 * target-reloc.h (relocate_for_relocatable): Fix new_offset
16250 calculation.
16251
16252 2008-05-28 Caleb Howe <cshowe@google.com>
16253
16254 * reduced_debug_output.cc: New file.
16255 * reduced_debug_output.h: New file.
16256 * options.h (class General_options): Add --strip-debug-non-line.
16257 * options.cc (General_options::finalize): Add strip_debug_non_line
16258 to the strip heirarchy.
16259 * layout.h (class Layout): Add debug_abbrev_ and debug_info_
16260 fields.
16261 * layout.cc: Include "reduced_debug_output.h".
16262 (Layout::Layout): Initialize new fields.
16263 (line_only_debug_sections): New static array.
16264 (is_lines_only_debug_sections): New static inline function.
16265 (Layout::include_section): Handle --strip-debug-non-line.
16266 (Layout::make_output_section): If --strip-debug-non-line, build
16267 new output sections for .debug_abbrev and .debug_info.
16268 * dwarf_reader.cc (read_unsigned_LEB_128): Move to namespace
16269 gold. Warn about possible overflow.
16270 (read_signed_LEB_128): Likewise.
16271 * dwarf_reader.h: (read_unsigned_LEB_128): Declare.
16272 (read_signed_LEB_128): Declare.
16273 * Makefile.am (CCFILES): Add reduced_debug_output.cc.
16274 (HFILES): Add reduced_debug_output.h.
16275 * Makefile.in: Rebuild.
16276
16277 2008-05-21 Ian Lance Taylor <iant@google.com>
16278
16279 * mapfile.cc: New file.
16280 * mapfile.h: New file.
16281 * options.h (class General_options): Add -M/--print-map and -Map.
16282 * options.cc (General_options::finalize): Make -M equivalent to
16283 -Map -.
16284 * main.cc: Include <cstdio> and "mapfile.h".
16285 (main): Open mapfile if requested.
16286 * gold.cc (class Middle_runner): Add mapfile_ field. Update
16287 constructor. Change caller.
16288 (queue_initial_tasks): Add mapfile parameter. Change caller.
16289 (queue_middle_tasks): Likewise.
16290 * gold.h (queue_initial_tasks, queue_middle_tasks): Update
16291 declarations.
16292 * archive.cc: Include "mapfile.h".
16293 (Archive::add_symbols): Add mapfile parameter. Change all
16294 callers. Pass mapfile, symbol, and reason to include_member.
16295 (Archive::include_all_members): Add mapfile parameter. Change all
16296 callers.
16297 (Archive::include_member): Add mapfile, sym, and why parameters.
16298 Change all callers. Report inclusion to map file.
16299 * archive.h: Include "fileread.h".
16300 (class Archive): Update declarations.
16301 (Archive::file): New const method.
16302 (class Add_archive_symbols): Add mapfile_ field. Update
16303 constructor. Change all callers.
16304 * readsyms.h (class Read_symbols): Likewise.
16305 (class Finish_group): Likewise.
16306 (class Read_script): Likewise.
16307 * common.cc: Include "mapfile.h".
16308 (Symbol_table::allocate_commons): Add mapfile parameter. Change
16309 all callers.
16310 (Symbol_table::do_allocate_commons): Likewise.
16311 (Symbol_table::do_allocate_commons_list): Likewise. Report common
16312 symbol allocation to mapfile.
16313 * common.h (class Allocate_commons_task): Add mapfile_ field.
16314 Update constructor. Change all callers.
16315 * symtab.h (class Symbol_table): Update declarations.
16316 * layout.cc: Include "mapfile.h".
16317 (Layout_task_runner::run): Print information to mapfile.
16318 (Layout::create_gold_note): Change Output_data_fixed_space to
16319 Output_data_zero_fill.
16320 (Layout::create_build_id): Likewise.
16321 (Layout::print_to_mapfile): New function.
16322 * layout.h (class Layout_task_runner): Add mapfile_ field. Update
16323 constructor. Change caller.
16324 (class Layout): Declare print_to_mapfile.
16325 * output.cc (Output_section::Input_section::print_to_mapfile): New
16326 function.
16327 (Output_section::add_input_section): If producing a map, always
16328 add to input_sections_ list.
16329 (Output_section::do_print_to_mapfile): New function.
16330 (Output_segment::print_sections_to_mapfile): New function.
16331 (Output_segment::print_section_list_to_mapfile): New function.
16332 * output.h: Include "mapfile.h".
16333 (Output_data::print_to_mapfile): New function.
16334 (Output_data::do_print_to_mapfile): New virtual function.
16335 (Output_segment_headers::do_print_to_mapfile): New function.
16336 (Output_file_header::do_print_to_mapfile): New function.
16337 (Output_data_const::do_print_to_mapfile): New function.
16338 (class Output_data_const_buffer): Add map_name_ field. Update
16339 constructor. Change all callers. Add do_print_to_mapfile
16340 function.
16341 (class Output_data_fixed_space): Likewise.
16342 (class Output_data_space): Likewise.
16343 (class Output_data_zero_fill): New class.
16344 (Output_data_strtab::do_print_to_mapfile): New function.
16345 (Output_data_reloc_base::do_print_to_mapfile): New function.
16346 (Output_relocatable_relocs::do_print_to_mapfile): New function.
16347 (Output_data_group::do_print_to_mapfile): New function.
16348 (Output_data_got::do_print_to_mapfile): New function.
16349 (Output_data_dynamic::do_print_to_mapfile): New function.
16350 (Output_symtab_xindex::do_print_to_mapfile): New function.
16351 (class Output_section): Declare do_print_to_mapflie. Declare
16352 print_to_mapfile in Input_section.
16353 (class Output_segment): Declare new functions.
16354 * object.h (Sized_relobj::symbol_count): New function.
16355 * script-sections.cc
16356 (Output_section_element_dot_assignment::set_section_addresses):
16357 Change Output_data_fixed_space to Output_data_zero_fill.
16358 (Output_data_expression::do_print_to_mapfile): New function.
16359 * script.cc (read_input_script): Add mapfile parameter. Change
16360 all callers.
16361 * script.h (read_input_script): Update declaration.
16362 * ehframe.h (Eh_frame_hdr::do_print_to_mapfile): New function.
16363 (Eh_frame::do_print_to_mapfile): New function.
16364 * merge.h (Output_merge_data::do_print_to_mapfile): New function.
16365 (Output_merge_string::do_print_to_mapfile): New function.
16366 * i386.cc (Output_data_plt_i386::do_print_to_mapfile): New
16367 function.
16368 * sparc.cc (Output_data_plt_sparc::do_print_to_mapfile): New
16369 function.
16370 * x86_64.cc (Output_data_plt_x86_64::do_print_to_mapfile): New
16371 function.
16372 * Makefile.am (CCFILES): Add mapfile.cc.
16373 (HFILES): Add mapfile.h.
16374 * Makefile.in: Rebuild.
16375
16376 2008-05-19 Ian Lance Taylor <iant@google.com>
16377
16378 * options.h (class General_options): Add -z relro.
16379 * layout.cc (Layout::Layout): Initialize relro_segment_.
16380 (Layout::add_output_section_data): Return the output section.
16381 (Layout::make_output_section): Rcognize relro sections and mark
16382 them appropriately.
16383 (Layout::attach_allocated_section_to_segment): Put relro sections
16384 in a PT_GNU_RELRO segment.
16385 (Layout::create_initial_dynamic_sections): Mark the .dynamic
16386 section as relro.
16387 (Layout::segment_precedes): Sort PT_GNU_RELRO segments after
16388 PT_TLS segments.
16389 (Layout::linkonce_mapping): Map d.rel.ro.local to
16390 .data.rel.ro.local.
16391 (Layout::output_section_name): Us .data.rel.ro.local for any
16392 section which begins with that.
16393 * layout.h (class Layout): Update add_output_section_data
16394 declaration. Add relro_segment_ field.
16395 * output.cc (Output_section::Output_section): Initialize is_relro_
16396 and is_relro_local_ fields.
16397 (Output_segment::add_output_section): Group relro sections.
16398 (Output_segment::is_first_section_relro): New function.
16399 (Output_segment::maximum_alignment): If there is a relro section,
16400 align the segment to the common page size.
16401 (Output_segment::set_section_addresses): Track whether we are
16402 looking at relro sections. If the last section is a relro
16403 section, align to the common page size.
16404 (Output_segment::set_section_list_addresses): Add in_relro
16405 parameter. Change all callers. Align to the page size when
16406 moving from relro to non-relro section.
16407 (Output_segment::set_offset): Align memsz of a PT_GNU_RELRO
16408 segment.
16409 * output.h (class Output_section): Add is_relro_ and
16410 is_relro_local_ fields.
16411 (Output_section::is_relro): New function.
16412 (Output_section::set_is_relro): New function.
16413 (Output_section::is_relro_local): New function.
16414 (Output_section::set_is_relro_local): New function.
16415 (class Output_segment): Update declarations.
16416 * i386.cc (Target_i386::got_section): Mark .got section as relro.
16417 * sparc.cc (Target_sparc::got_section): Likewise.
16418 * x86_64.cc (Target_x86_64::got_section): Likewise.
16419 * testsuite/relro_test_main.cc: New file.
16420 * testsuite/relro_test.cc: New file.
16421 * testsuite/Makefile.am (check_PROGRAMS): Add relro_test.
16422 (relro_test_SOURCES, relro_test_DEPENDENCIES): New variables.
16423 (relro_test_LDFLAGS, relro_test_LDADD): New variables.
16424 (relro_test.so, relro_test_pic.o): New targets.
16425 * testsuite/Makefile.in: Rebuild.
16426
16427 2008-05-16 Ian Lance Taylor <iant@google.com>
16428
16429 * output.cc (Output_segment::add_output_section): Remove front
16430 parameter.
16431 * output.h (class Output_segment): Remove
16432 add_initial_output_section and overloaded add_output_section.
16433 Update declaration of remaining add_output_section.
16434 * layout.cc (Layout::create_interp): Call add_output_section
16435 rather than add_initial_output_section.
16436 (Layout::finish_dynamic_section): Likewise.
16437
16438 * i386.cc (Target_i386::Relocate::relocate_tls): Set dynamic type
16439 for TLS_GOTDESC and TLS_DESC_CALL. Only optimize TLS_LDO_32 if we
16440 know the dynamic type.
16441 * x86_64.cc (Target_x86_64::Relocate): Add saw_tls_block_reloc_
16442 field. Initialize it in constructor.
16443 (Target_x86_64::Relocate::relocate_tls): Record that we saw a TLS
16444 block reloc for TLSGD, GOTPC32_TLSDESC, TLSDESC_CALL, and TLSLD.
16445 Only optimize DTPOFF32 and DTPOFF64 if we have seen a TLS block
16446 reloc.
16447
16448 * output.cc (Output_reloc::get_address): Change return type to
16449 Elf_Addr.
16450 * output.h (class Output_reloc): Update get_address declaration.
16451 * x86_64.cc (Output_data_plt_x86_64::do_write): Use 64-bit types
16452 for section addresses.
16453
16454 2008-05-09 Ian Lance Taylor <iant@google.com>
16455
16456 PR 6493
16457 * gold.cc (gold_nomem): Use return value of write.
16458
16459 2008-05-08 Ian Lance Taylor <iant@google.com>
16460
16461 * symtab.c (Symbol::init_base_output_data): Add version
16462 parameter. Change all callers.
16463 (Symbol::init_base_output_segment): Likewise.
16464 (Symbol::init_base_constant): Likewise.
16465 (Symbol::init_base_undefined): Likewise.
16466 (Sized_symbol::init_output_data): Likewise.
16467 (Sized_symbol::init_output_segment): Likewise.
16468 (Sized_symbol::init_constant): Likewise.
16469 (Sized_symbol::init_undefined): Likewise.
16470 (Symbol_table::do_define_in_output_data): If the new symbol has a
16471 version, mark it as the default.
16472 (Symbol_table::do_define_in_output_segment): Likewise.
16473 (Symbol_table::do_define_as_constant): Likewise.
16474 * symtab.h (class Symbol): Update declarations.
16475 (class Sized_symbol): Likewise.
16476 * resolve.cc (Symbol::override_version): New function.
16477 (Symbol::override_base): Call override_version.
16478 (Symbol::override_base_with_special): Likewise.
16479 * testsuite/ver_script_8.script: New file.
16480 * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_8.
16481 (ver_test_8_SOURCES, ver_test_8_DEPENDENCIES): Define.
16482 (ver_test_8_LDFLAGS, ver_test_8_LDADD): Define.
16483 (ver_test_8_1.so, ver_test_8_2.so): New targets.
16484
16485 2008-05-06 Ian Lance Taylor <iant@google.com>
16486
16487 PR 6049
16488 * options.h (DEFINE_set): Add VARNAME_begin and VARNAME_end
16489 functions.
16490 (class General_options): Remove existing --undefined, and add
16491 --no-undefined instead. Add new --undefined as synonym for -u.
16492 * archive.cc (Archive::add_symbols): Check whether symbol was
16493 named with -u.
16494 * gold.cc (queue_middle_tasks): Add -u symbols to symbol table.
16495 * symtab.h (class Symbol): Rename CONSTANT to IS_CONSTANT; change
16496 all uses. Add IS_UNDEFINED. Update declarations to split
16497 different versions of init_base. Declare init_base_undefined.
16498 (Symbol::is_defined): Handle IS_UNDEFINED.
16499 (Symbol::is_undefined): Likewise.
16500 (Symbol::is_weak_undefined): Call is_undefined.
16501 (Symbol::is_absolute): Handle IS_CONSTANT.
16502 (class Sized_symbol): Update declarations to split different
16503 versions of init. Declare init_undefined.
16504 (class Symbol_table): Declare new functions.
16505 * symtab.cc (Symbol::init_base_object): Rename from init_base.
16506 Change all callers.
16507 (Symbol::init_base_output_data): Likewise.
16508 (Symbol::init_base_output_segment): Likewise.
16509 (Symbol::init_base_constant): Likewise.
16510 (Symbol::init_base_undefined): New function.
16511 (Sized_symbol::init_object): Rename from init. Change all
16512 callers.
16513 (Sized_symbol::init_output_data): Likewise.
16514 (Sized_symbol::init_output_segment): Likewise.
16515 (Sized_symbol::init_constant): Likewise.
16516 (Sized_symbol::init_undefined): New function.
16517 (Symbol_table::add_undefined_symbols_from_command_line): New
16518 function.
16519 (Symbol_table::do_add_undefined_symbols_from_command_line): New
16520 function.
16521 (Symbol::final_value_is_known): Handle IS_UNDEFINED.
16522 (Symbol::output_section): Likewise.
16523 (Symbol::set_output_section): Likewise.
16524 (Symbol_table::sized_finalize_symbol): Likewise.
16525 (Symbol_table::sized_write_globals): Likewise.
16526 * resolve.cc (Symbol_table::should_override): Likewise.
16527 (Symbol::override_base_with_special): Likewise.
16528
16529 * symtab.cc (Symbol_table::add_from_dynobj): If we see a protected
16530 symbol, change it to have default visibility.
16531 * testsuite/protected_1.cc: New file.
16532 * testsuite/protected_2.cc: New file.
16533 * testsuite/protected_3.cc: New file.
16534 * testsuite/protected_main_1.cc: New file.
16535 * testsuite/protected_main_2.cc: New file.
16536 * testsuite/protected_main_3.cc: New file.
16537 * testsuite/Makefile.am (check_PROGRAMS): Add protected_1.
16538 (protected_1_SOURCES, protected_1_DEPENDENCIES): Define.
16539 (protected_1_LDFLAGS, protected_1_LDADD): Define.
16540 (protected_1.so): New target.
16541 (protected_1_pic.o, protected_2_pic.o): New targets.
16542 (protected_3_pic.o): New target.
16543 (check_PROGRAMS): Add protected_2.
16544 (protected_2_SOURCES, protected_2_DEPENDENCIES): Define.
16545 (protected_2_LDFLAGS, protected_2_LDADD): Define.
16546 * testsuite/Makefile.in: Rebuild.
16547
16548 * options.h (DEFINE_var): Add set_user_set_##varname__.
16549 (DEFINE_bool_alias): New macro.
16550 (class General_options): Define -Bstatic using DEFINE_bool_alias
16551 rather than DEFINE_special. Add --undefined as an alias for -z
16552 defs.
16553 * options.cc (General_options::parse_Bstatic): Remove.
16554
16555 * options.h (class General_options): Add --fatal-warnings.
16556 * main.cc (main): Implement --fatal-warnings.
16557 * errors.h (Errors::warning_count): New function.
16558
16559 * options.h (class General_options): Add -Bsymbolic-functions.
16560 * symtab.h (Symbol::is_preemptible): Check for
16561 -Bsymbolic-functions.
16562
16563 2008-05-05 Ian Lance Taylor <iant@google.com>
16564
16565 * options.h (DEFINE_bool): For DASH_Z, create the negative option
16566 as noVARNAME rather than no-VARNAME.
16567 (class General_options): Add option -z combreloc.
16568 * output.h (class Output_reloc) [SHT_REL]: Declare compare and
16569 get_address.
16570 (Output_reloc::sort_before) [SHT_REL]: New function.
16571 (Output_reloc::sort_before) [SHT_RELA]: New function.
16572 (class Output_data_reloc_base): Add sort_relocs_ field. Define
16573 Sort_relocs_comparison.
16574 (Output_data_reloc_base::Output_data_reloc_base): Add sort_relocs
16575 parameter. Change all callers.
16576 (Output_data_reloc::Output_data_reloc) [both versions]: Add
16577 sort_relocs parameter. Change all callers.
16578 * output.cc (Output_reloc::get_address): New function, broken out
16579 of write_rel.
16580 (Output_reloc::write_rel): Call it.
16581 (Output_reloc::compare): New function.
16582 (Output_data_reloc_base::do_write): Optionally sort relocs.
16583
16584 * configure.ac: If targ_extra_obj is set, link it in.
16585 * configure.tgt: Initialize all variables.
16586 (x86_64*): Set targ_extra_obj and targ_extra_size.
16587 * configure: Rebuild.
16588
16589 * object.cc (Sized_relobj::include_section_group): Adjust section
16590 indexes read from group data. Build vector to pass to
16591 layout_group.
16592 * layout.cc (Layout::layout_group): Add flags and shndxes
16593 parameters. Remove contents parameter. Change caller. Update
16594 explicit instantiations.
16595 * layout.h (class Layout): Update layout_group declaration.
16596 * output.cc (Output_data_group::Output_data_group): Add flags and
16597 input_shndxes parameters. Remove contents parameter. Change
16598 caller.
16599 (Output_data_group::do_write): Change input_sections_ to
16600 input_shndxes_.
16601 * output.h (class Output_data_group): Update constructor
16602 declaration. Rename input_sections_ to input_shndxes_.
16603 * testsuite/many_sections_test.cc: Add template.
16604
16605 2008-04-30 Cary Coutant <ccoutant@google.com>
16606
16607 * target-reloc.h (relocate_section): Fix dead-pointer bug.
16608
16609 * layout.cc (Layout::include_section): Refactored check for debug
16610 info section.
16611 (Layout::add_comdat): Add new parameters. Change type
16612 of signature parameter. Add object and shndx to signatures table.
16613 (Layout::find_kept_object): New function.
16614 * layout.h: Include <cstring>.
16615 (Layout::is_debug_info_section): New function.
16616 (Layout::add_comdat): Add new parameters.
16617 (Layout::find_kept_object): New function.
16618 (Layout::Kept_section): New struct.
16619 (Layout::Signatures): Change type of map range.
16620 * object.cc (Relobj::output_section_address): New function.
16621 (Sized_relobj::include_section_group): Add new parameters. Change
16622 calls to Layout::add_comdat. Change to build table of kept comdat
16623 groups and table mapping discarded sections to kept sections.
16624 (Sized_relobj::include_linkonce_section): Likewise. Add new parameter.
16625 (Sized_relobj::do_layout): Change calls to include_section_group and
16626 include_linkonce_section.
16627 (Sized_relobj::do_finalize_local_symbols): Do not set local symbol
16628 value to zero when section is discarded.
16629 (Sized_relobj::map_to_kept_section): New function.
16630 * object.h (Relobj::output_section_address): New function.
16631 (Relobj::Comdat_group): New type.
16632 (Relobj::find_comdat_group): New function.
16633 (Relobj::Comdat_group_table): New type.
16634 (Relobj::Kept_comdat_section): New type.
16635 (Relobj::Kept_comdat_section_table): New type.
16636 (Relobj::add_comdat_group): New function.
16637 (Relobj::set_kept_comdat_section): New function.
16638 (Relobj::get_kept_comdat_section): New function.
16639 (Relobj::comdat_groups_): New field.
16640 (Relobj::kept_comdat_sections_): New field.
16641 (Symbol_value::input_value): Update comment.
16642 (Sized_relobj::map_to_kept_section) New function.
16643 (Sized_relobj::include_linkonce_section): Add new parameter.
16644 * target-reloc.h (Comdat_behavior): New type.
16645 (get_comdat_behavior): New function.
16646 (relocate_section): Add code to map a discarded section to the
16647 corresponding kept section when applying a relocation.
16648
16649 2008-04-30 Craig Silverstein <csilvers@google.com>
16650
16651 * dwarf_reader.cc (next_generation_count): New static var.
16652 (Addr2line_cache_entry): New struct.
16653 (addr2line_cache): New static var.
16654 (Dwarf_line_info::one_addr2line): Added caching.
16655 (Dwarf_line_info::clear_addr2line_cache): New function.
16656 * dwarf_reader.h (Dwarf_line_info::one_addr2line): Add
16657 cache-size parameter.
16658 (Dwarf_line_info::one_addr2line_cache): New function.
16659 * symtab.cc (Symbol_table::detect_odr_violations): Pass
16660 new cache-size argument to one_addr2line(), and clear cache.
16661
16662 2008-04-28 Cary Coutant <ccoutant@google.com>
16663
16664 * i386.cc (Relocate::relocate): Fix typos for R_386_PC16 and
16665 R_386_PC8 relocations.
16666
16667 2008-04-23 Ian Lance Taylor <iant@google.com>
16668
16669 * object.cc (Sized_relobj::include_section_group): Check for
16670 invalid section group.
16671
16672 * object.cc (make_elf_object): Correct test for 64-bit ELF file
16673 header size.
16674
16675 * readsyms.cc (Read_symbols::do_read_symbols): Use get_view rather
16676 than read for file header.
16677 * archive.cc (Archive::include_member): Likewise.
16678
16679 2008-04-23 Paolo Bonzini <bonzini@gnu.org>
16680
16681 * aclocal.m4: Regenerate.
16682 * configure: Regenerate.
16683
16684 2008-04-19 Ian Lance Taylor <iant@google.com>
16685
16686 * version.cc (version_string): Bump to 1.6.
16687
16688 * testsuite/Makefile.am (many_sections_r_test): New target.
16689 (many_sections_r_test_SOURCES): Remove.
16690 (many_sections_r_test_DEPENDENCIES): Remove.
16691 (many_sections_r_test_LDFLAGS): Remove.
16692 (many_sections_r_test_LDADD): Remove.
16693
16694 * object.cc (Sized_relobj::do_add_symbols): Always pass
16695 local_symbol_count_ to add_from_relobj.
16696
16697 * testsuite/Makefile.am (many_sections_check.h): Only check one in
16698 every thousand variables.
16699 * testsuite/Makefile.in: Rebuild.
16700
16701 * object.cc (Xindex::initialize_symtab_xindex): New function.
16702 (Xindex::read_symtab_xindex): New function.
16703 (Xindex::sym_xindex_to_shndx): New function.
16704 (Sized_relobj::find_symtab): Pick up SHT_SYMTAB_SHNDX section if
16705 available.
16706 (Sized_relobj::do_initialize_xindex): New function.
16707 (Sized_relobj::do_read_symbols): Adjust section links.
16708 (Sized_relobj::symbol_section_and_value): Add is_ordinary
16709 parameter. Change all callers.
16710 (Sized_relobj::include_section_group): Adjust section links and
16711 symbol section indexes.
16712 (Sized_relobj::do_layout): Adjust section links.
16713 (Sized_relobj::do_count_local_symbols): Adjust section links and
16714 symbol section indexes.
16715 (Sized_relobj::do_finalize_local_symbols): Distinguish between
16716 ordinary and special symbols.
16717 (Sized_relobj::write_local_symbols): Add symtab_xindex and
16718 dynsym_xindex parameters. Change all callers. Adjust section
16719 links. Use SHN_XINDEX when needed.
16720 (Sized_relobj::get_symbol_location_info): Adjust section links.
16721 Don't get fooled by special symbols.
16722 * object.h (class Xindex): Define.
16723 (class Object): Add xindex_ parameter. Declare virtual functoin
16724 do_initialize_xindex.
16725 (Object::adjust_sym_shndx): New function.
16726 (Object::set_xindex): New protected function.
16727 (class Symbol_value): Add is_ordinary_shndx_ field.
16728 (Symbol_value::Symbol_value): Initialize is_ordinary_shndx_.
16729 (Symbol_value::value): Assert ordinary section.
16730 (Symbol_value::initialize_input_to_output_map): Likewise.
16731 (Symbol_value::set_input_shndx): Add is_ordinary parameter.
16732 Change all callers.
16733 (Symbol_value::input_shndx): Add is_ordinary parameter. Change
16734 all callers.
16735 (class Sized_relobj): Update declarations.
16736 (Sized_relobj::local_symbol_input_shndx): Add is_ordinary
16737 parameter. Change all callers.
16738 (Sized_relobj::adjust_shndx): New function.
16739 * dynobj.cc (Sized_dynobj::Sized_dynobj): Initialize dynsym_shndx_
16740 field.
16741 (Sized_dynobj::find_dynsym_sections): Remove pdynsym_shndx
16742 parameter. Change all callers. Pick up SHT_DYNSYM_SHNDX section
16743 for SHT_DYNSYM section if available. Set dynsym_shndx_ field.
16744 (Sized_dynobj::read_dynsym_section): Adjust section links.
16745 (Sized_dynobj::read_dynamic): Likewise.
16746 (Sized_dynobj::do_read_symbols): Use dynsym_shndx_ field. Adjust
16747 section links.
16748 (Sized_dynobj::do_initialize_xindex): New function.
16749 * dynobj.h (class Sized_dynobj): Add dynsym_shndx_ field. Declare
16750 do_initialize_xindex.
16751 (Sized_dynobj::adjust_shndx): New function.
16752 * layout.cc (Layout::Layout): Initialize symtab_xindex_ and
16753 dynsym_xindex_ fields.
16754 (Layout::finalize): Add a call to set_section_indexes before
16755 creating the symtab sections.
16756 (Layout::set_section_indexes): Don't do anything if the section
16757 already has a section index.
16758 (Layout::create_symtab_sections): Add shnum parameter. Change
16759 caller. Create .symtab_shndx section if needed.
16760 (Layout::create_shdrs): Add shstrtab_section parameter. Change
16761 caller.
16762 (Layout::allocated_output_section_count): New function.
16763 (Layout::create_dynamic_symtab): Create .dynsym_shndx section if
16764 needed.
16765 * layout.h (class Layout): Add symtab_xindex_ and dynsym_xindex_
16766 fields. Update declarations.
16767 (Layout::symtab_xindex): New function.
16768 (Layout::dynsym_xindex): New function.
16769 (class Write_symbols_task): Add layout_ field.
16770 (Write_symbols_task::Write_symbols_task): Add layout parameter.
16771 Change caller.
16772 * output.cc (Output_section_headers::Output_section_headers): Add
16773 shstrtab_section parameter. Change all callers.
16774 (Output_section_headers::do_sized_write): Store overflow values
16775 for section count and section string table section index in
16776 section header zero.
16777 (Output_file_header::do_sized_write): Check for overflow of
16778 section count and section string table section index.
16779 (Output_symtab_xindex::do_write): New function.
16780 (Output_symtab_xindex::endian_do_write): New function.
16781 * output.h (class Output_section_headers): Add shstrtab_section_.
16782 Update declarations.
16783 (class Output_symtab_xindex): Define.
16784 (Output_section::has_out_shndx): New function.
16785 * symtab.cc (Symbol::init_fields): Initialize is_ordinary_shndx_
16786 field.
16787 (Symbol::init_base): Add st_shndx and is_ordinary parameters.
16788 Change all callers.
16789 (Sized_symbol::init): Likewise.
16790 (Symbol::output_section): Check for ordinary symbol.
16791 (Symbol_table::add_from_object): Remove orig_sym parameter. Add
16792 st_shndx, is_ordinary, and orig_st_shndx parameters. Change all
16793 callers.
16794 (Symbol_table::add_from_relobj): Add symndx_offset parameter.
16795 Change all callers. Simplify handling of symbols from sections
16796 not included in the link.
16797 (Symbol_table::add_from_dynobj): Handle ordinary symbol
16798 distinction.
16799 (Weak_alias_sorter::operator()): Assert that symbols are
16800 ordinary.
16801 (Symbol_table::sized_finalize_symbol): Handle ordinary symbol
16802 distinction.
16803 (Symbol_table::write_globals): Add symtab_xindex and dynsym_xindex
16804 parameters. Change all callers.
16805 (Symbol_table::sized_write_globals): Likewise. Handle ordinary
16806 symbol distinction. Use SHN_XINDEX when needed.
16807 (Symbol_table::write_section_symbol): Add symtab_xindex
16808 parameter. Change all callers.
16809 (Symbol_table::sized_write_section_symbol): Likewise. Use
16810 SHN_XINDEX when needed.
16811 * symtab.h (class Symbol): Add is_ordinary_shndx_ field. Update
16812 declarations.
16813 (Symbol::shndx): Add is_ordinary parameter. Change all callers.
16814 (Symbol::is_defined): Check is_ordinary.
16815 (Symbol::is_undefined, Symbol::is_weak_undefined): Likewise.
16816 (Symbol::is_absolute, Symbol::is_common): Likewise.
16817 (class Sized_symbol): Update declarations.
16818 (class Symbol_table): Update declarations.
16819 * resolve.cc (Symbol::override_base): Add st_shndx and is_ordinary
16820 parameters. Change all callers.
16821 (Sized_symbol::override): Likewise.
16822 (Symbol_table::override): Likewise.
16823 (symbol_to_bits): Add is_ordinary parameter. Change all callers.
16824 (Symbol_table::resolve): Remove orig_sym parameter. Add st_shndx,
16825 is_ordinary, and orig_st_shndx parameters. Change all callers.
16826 * copy-relocs.cc (Copy_relocs::emit_copy_reloc): Require symbol
16827 to be in an ordinary section.
16828 * dwarf_reader.cc (Sized_dwarf_line_info::symbol_section): Add
16829 object and is_ordinary parameters. Change all callers.
16830 (Sized_dwarf_line_info::read_relocs): Add object parameter.
16831 Change all callers. Don't add undefined or non-ordinary symbols
16832 to reloc_map_.
16833 (Sized_dwarf_line_info::read_line_mappings): Add object parameter.
16834 Change all callers.
16835 * dwarf_reader.h (class Sized_dwarf_line_info): Update
16836 declarations.
16837 * ehframe.cc (Eh_frame::read_fde): Check for ordinary symbol.
16838 * reloc.cc (Sized_relobj::do_read_relocs): Adjust section links.
16839 (Sized_relobj::relocate_sections): Likewise.
16840 * target-reloc.h (scan_relocs): Adjust section symbol index.
16841 (scan_relocatable_relocs): Likewise.
16842 * i386.cc (Scan::local): Check for ordinary symbols.
16843 * sparc.cc (Scan::local): Likewise.
16844 * x86_64.cc (Scan::local): Likewise.
16845 * testsuite/binary_unittest.cc (Sized_binary_test): Update calls
16846 to symbol_section_and_value.
16847 * testsuite/many_sections_test.cc: New file.
16848 * testsuite/Makefile.am (BUILT_SOURCES): Define.
16849 (check_PROGRAMS): Add many_sections_test.
16850 (many_sections_test_SOURCES): Define.
16851 (many_sections_test_DEPENDENCIES): Define.
16852 (many_sections_test_LDFLAGS): Define.
16853 (BUILT_SOURCES): Add many_sections_define.h.
16854 (many_sections_define.h): New target.
16855 (BUILT_SOURCES): Add many_sections_check.h.
16856 (many_sections_check.h): New target.
16857 (check_PROGRAMS): Add many_sections_r_test.
16858 (many_sections_r_test_SOURCES): Define.
16859 (many_sections_r_test_DEPENDENCIES): Define.
16860 (many_sections_r_test_LDFLAGS): Define.
16861 (many_sections_r_test_LDADD): Define.
16862 (many_sections_r_test.o): New target.
16863 * testsuite/Makefile.in: Rebuild.
16864
16865 2008-04-17 Cary Coutant <ccoutant@google.com>
16866
16867 * errors.cc (Errors::info): New function.
16868 (gold_info): New function.
16869 * errors.h (Errors::info): New function.
16870 * gold.h (gold_info): New function.
16871 * object.cc (Input_objects::add_object): Print trace output.
16872 * options.cc (options::parse_set): New function.
16873 (General_options::parse_wrap): Deleted.
16874 (General_options::General_options): Deleted initializer.
16875 * options.h (options::String_set): New typedef.
16876 (options::parse_set): New function.
16877 (DEFINE_set): New macro.
16878 (General_options::wrap): Changed to use DEFINE_set. Changed
16879 callers of any_wrap_symbols and is_wrap_symbol.
16880 (General_options::trace, General_options::trace_symbol):
16881 New options.
16882 (General_options::any_wrap_symbols, General_options::is_wrap_symbol)
16883 (General_options::wrap_symbols_): Deleted.
16884 * symtab.cc (Symbol_table::add_from_object): Print trace output.
16885
16886 2008-04-17 David S. Miller <davem@davemloft.net>
16887
16888 * options.cc (General_options::parse_V): New function.
16889 * options.h: Add entries for -V and -Qy.
16890
16891 2008-04-17 Ian Lance Taylor <iant@google.com>
16892
16893 * common.cc (Symbol_table::allocate_commons): Remove options
16894 parameter. Change caller.
16895 (Symbol_table::do_allocate_commons): Remove options parameter.
16896 Change caller. Just call do_allocate_commons_list twice.
16897 (Symbol_table::do_allocate_commons_list): New function, broken out
16898 of do_allocate_commons.
16899 * common.h (class Allocate_commons_task): Remove options_ field.
16900 Update constructor.
16901 * symtab.cc (Symbol_table::Symbol_table): Initialize
16902 tls_commons_.
16903 (Symbol_table::add_from_object): Put TLS common symbols on
16904 tls_commons_ list.
16905 (Symbol_table::sized_finalize_symbol): Handle STT_TLS symbols
16906 which are IN_OUTPUT_DATA.
16907 * symtab.h (class Symbol_table): Add tls_commons_ field. Update
16908 allocate_commons and do_allocate_commons declarations. Declare
16909 do_allocate_commons_list.
16910 * gold.cc (queue_middle_tasks): Update creation of
16911 Allocate_commons_task to not pass options.
16912 * testsuite/Makefile.am (INCLUDES): Add -I.. .
16913 (TLS_TEST_C_FLAGS): New variable.
16914 (tls_test_c_pic.o): New target.
16915 (tls_test_shared.so): Link in tls_test_c_pic.o.
16916 (tls_test_c_pic_ie.o): New target.
16917 (tls_test_ie_shared.so): Link in tls_test_c_pic_ie.o.
16918 (tls_test_DEPENDENCIES, tls_test_LDADD): Add tls_test_c.o.
16919 (tls_test_c.o): New target.
16920 (tls_pic_test_DEPENDENCIES): Add tls_test_c_pic.o.
16921 (tls_pic_test_LDADD): Likewise.
16922 (tls_shared_gd_to_ie_test_DEPENDENCIES): Add tls_test_c_pic.o.
16923 (tls_shared_gd_to_ie_test_LDADD): Likewise.
16924 (tls_test_c_gnu2.o): New target.
16925 (tls_shared_gnu2_gd_to_ie_test_DEPENDENCIES): Add
16926 tls_test_c_gnu2.o.
16927 (tls_shared_gnu2_gd_to_ie_test_LDADD): Likewise.
16928 (tls_test_gnu2_shared.so): Link in tls_test_c_gnu2.o.
16929 (tls_test_shared_nonpic.so): Link in tls_test_c.o.
16930 * testsuite/tls_test.cc: Include "config.h".
16931 (t_last): Call t11_last.
16932 * testsuite/tls_test.h (t11, t11_last): Declare.
16933 * testsuite/tls_test_c.c: New file.
16934 * testsuite/tls_test_main.cc (thread_routine): Call t11.
16935 * configure.ac: Check for OpenMP support.
16936 * configure, config.in, Makefile.in: Rebuild.
16937 * testsuite/Makefile.in: Rebuild.
16938
16939 2008-04-16 Cary Coutant <ccoutant@google.com>
16940
16941 * i386.cc (Target_i386::define_tls_base_symbol): New function.
16942 (Target_i386::tls_base_symbol_defined_): New field.
16943 (Target_i386::Scan::local): Define _TLS_MODULE_BASE_ symbol.
16944 (Target_i386::Scan::global): Likewise.
16945 * symtab.cc (sized_finalize_symbol): Add check for TLS symbol.
16946 * x86_64.cc (Target_x86_64::define_tls_base_symbol): New function.
16947 (Target_x86_64::tls_base_symbol_defined_): New field.
16948 (Target_x86_64::Scan::local): Define _TLS_MODULE_BASE_ symbol.
16949 (Target_x86_64::Scan::global): Likewise.
16950
16951 2008-04-16 Cary Coutant <ccoutant@google.com>
16952
16953 * symtab.h (Symbol::is_strong_undefined): Removed unused function.
16954 (Symbol::needs_plt_entry): Allow weak undefined symbols.
16955 (Symbol::needs_dynamic_reloc): Allow weak undefined symbols when
16956 building shared libraries.
16957 * testsuite/Makefile.am (weak_undef_nonpic_test): New target.
16958 (weak_undef_file1_nonpic.o, weak_undef_file2_nonpic.o)
16959 (weak_undef_lib_nonpic.so, alt/weak_undef_lib_nonpic.so): New targets.
16960 * testsuite/Makefile.in: Rebuild.
16961 * testsuite/weak_undef.h: New file.
16962 * testsuite/weak_undef_file1.cc: Add extra test cases.
16963 * testsuite/weak_undef_file2.cc: Likewise.
16964 * testsuite/weak_undef_test.cc: Likewise.
16965
16966 2008-04-16 David S. Miller <davem@davemloft.net>
16967
16968 * sparc.cc (Target_sparc::Scan): Change from struct to class.
16969 Add issued_non_pic_error_ field. Declare check_non_pic.
16970 (Target_sparc::Scan::check_non_pic): New function.
16971 (Target_sparc::Scan::local): Call check_non_pic as appropriate.
16972 (Target_sparc::Scan::global): Likewise.
16973
16974 * configure.ac (FN_PTRS_IN_SO_WITHOUT_PIC): Add sparc64.
16975 * configure: Rebuild.
16976
16977 * options.h (DEFINE_enable): New macro.
16978 (new_dtags): New enable option.
16979 (initfirst, interpose, loadfltr, nodefaultlib,
16980 nodelete, nodlopen, nodump): New -z options.
16981 * layout.cc (Layout:finish_dynamic_section): If new
16982 dtags enabled, emit DT_RUNPATH. Also, emit a
16983 DT_FLAGS_1 containing any specified -z flags.
16984
16985 2008-04-16 Ian Lance Taylor <iant@google.com>
16986
16987 * copy-relocs.cc: New file.
16988 * copy-relocs.h: New file.
16989 * reloc.cc: Remove Copy_relocs code.
16990 * reloc.h: Likewise.
16991 * reloc-types.h (struct Reloc_types) [both versions]: Add
16992 get_reloc_addend_noerror.
16993 * output.h (class Output_data_reloc<elfcpp::SHT_REL>): Add
16994 variants of add_global which take an addend which must be zero.
16995 * i386.cc: Include "copy-relocs.h".
16996 (class Target_i386): Change type of copy_relocs_ to variable,
16997 update initializer.
16998 (Target_i386::copy_reloc): Rewrite to pass to Copy_relocs class.
16999 Change all callers.
17000 (Target_i386::do_finalize_sections): Change handling of
17001 copy_relocs_.
17002 * sparc.cc: Include "copy-relocs.h".
17003 (class Target_sparc): Change type of copy_relocs_ to variable,
17004 update initializer.
17005 (Target_sparc::copy_reloc): Rewrite to pass to Copy_relocs class.
17006 Change all callers.
17007 (Target_sparc::do_finalize_sections): Change handling of
17008 copy_relocs_.
17009 * x86_64.cc: Include "copy-relocs.h".
17010 (class Target_x86_64): Change type of copy_relocs_ to variable,
17011 update initializer.
17012 (Target_x86_64::copy_reloc): Rewrite to pass to Copy_relocs
17013 class. Change all callers.
17014 (Target_x86_64::do_finalize_sections): Change handling of
17015 copy_relocs_.
17016 * Makefile.am (CCFILES): Add copy-relocs.cc.
17017 (HFILES): Add copy-relocs.h.
17018
17019 * Makefile.in, aclocal.m4, testsuite/Makefile.in: Rebuild.
17020
17021 * testsuite/script_test_4.sh: Permit leading zeroes.
17022
17023 2008-04-15 Ian Lance Taylor <iant@google.com>
17024
17025 * script-sections.cc (Script_sections::create_segments): Use
17026 header_size_adjustment even when there is enough room for the
17027 headers.
17028 * testsuite/script_test_4.sh: New file.
17029 * testsuite/script_test_4.t: New file.
17030 * testsuite/Makefile.am (check_SCRIPTS): Add script_test_4.sh.
17031 (check_DATA): Add script_test_4.stdout.
17032 (MOSTLYCLEANFILES): Likewise.
17033 (script_test_4): New target.
17034 (script_test_4.stdout): New target.
17035 * testsuite/Makefile.in: Rebuild.
17036
17037 * sparc.cc: Add definitions for Output_data_plt_sparc class
17038 constants.
17039
17040 2008-04-14 David S. Miller <davem@davemloft.net>
17041
17042 * sparc.cc: New file.
17043 * Makefile.am (TARGETSOURCES): Add sparc.cc
17044 (ALL_TARGETOBJS): Add sparc.$(OBJEXT)
17045 * configure.tgt: Document targ_extra_size and
17046 targ_extra_big_endian. Add entries for sparc-* and
17047 sparc64-*.
17048 * configure.ac: Handle targ_extra_size and
17049 targ_extra_big_endian.
17050 * Makefile.in: Rebuild.
17051 * configure: Likewise.
17052 * po/POTFILES.in: Likewise.
17053 * po/gold.pot: Likewise.
17054
17055 2008-04-14 Ian Lance Taylor <iant@google.com>
17056
17057 * layout.cc (Layout::Layout): Initialize sections_are_attached_.
17058 (Layout::get_output_section): Ignore SHF_WRITE and SHF_EXECINSTR
17059 in the name/type/flags to section mapping. Don't call
17060 allocate_output_section.
17061 (Layout::choose_output_section): Change parameter from adjust_name
17062 to is_input_section. Don't permit input sections after sections
17063 are attached to segments. Don't call allocate_output_section.
17064 (Layout::layout_eh_frame): Call update_flags_for_input_section,
17065 not write_enable_output_section.
17066 (Layout::make_output_section): Don't push to
17067 unattached_section_list_ nor call attach_to_segment. Call
17068 attach_section_to_segment if sections are attached.
17069 (Layout::attach_sections_to_segments): New function.
17070 (Layout::attach_section_to_segment): New function.
17071 (Layout::attach_allocated_section_to_segment): Rename from
17072 attach_to_segment. Remove flags parameter.
17073 (Layout::allocate_output_section): Remove function.
17074 (Layout::write_enable_output_section): Remove function.
17075 * layout.h (class Layout): Update for above changes. Add new
17076 field sections_are_attached_.
17077 * output.h (Output_section::update_flags_for_input_section): New
17078 function.
17079 * output.cc (Output_section::add_input_section): Call
17080 update_flags_for_input_section.
17081 * gold.cc (queue_middle_tasks): Call attach_sections_to_segments.
17082
17083 2008-04-11 Cary Coutant <ccoutant@google.com>
17084
17085 * i386.cc (Target_i386::got_mod_index_entry): Restore code previously
17086 thought unnecessary.
17087 * x86_64.cc (Target_x86_64::got_mod_index_entry): Likewise.
17088
17089 2008-04-11 Ian Lance Taylor <iant@google.com>
17090
17091 * output.h (class Output_section_data): Remove inline definition
17092 of set_addralign.
17093 * output.cc (Output_section_data::set_addralign): New function.
17094
17095 2008-04-11 Cary Coutant <ccoutant@google.com>
17096
17097 Add support for TLS descriptors for i386 and x86_64.
17098 * i386.cc (Target_i386::Relocate::tls_desc_gd_to_ie): New function.
17099 (Target_i386::Relocate::tls_desc_gd_to_le): New function.
17100 (Target_i386::Got_type): Add GOT_TYPE_TLS_NOFFSET and
17101 GOT_TYPE_TLS_DESC.
17102 (Target_i386::got_mod_index_entry): Remove unnecessary code.
17103 (Target_i386::Scan::local): Implement R_386_TLS_GOTDESC and
17104 R_386_TLS_DESC_CALL relocations. Fix problem with initial-exec
17105 relocations.
17106 (Target_i386::Scan::global): Fix problem with GD-to-IE relaxation.
17107 Implement R_386_TLS_GOTDESC and R_386_TLS_DESC_CALL relocations;
17108 Fix problem with initial-exec relocations.
17109 (Target_i386::Relocate::relocate_tls): Likewise.
17110 (Target_i386::Relocate::tls_gd_to_ie): Fix problem with GD-to-IE
17111 relaxation.
17112 * output.cc (Output_data_dynamic::Dynamic_entry::write): Add
17113 support for section-plus-offset dynamic table entries.
17114 * output.h (Output_data_dynamic::add_section_plus_offset): New function.
17115 (Output_data_dynamic::Dynamic_entry): Add support for
17116 section-plus-offset dynamic table entries.
17117 (Output_data_dynamic::Classification): Likewise.
17118 (Output_data_dynamic::classification_): Renamed offset_.
17119 * x86_64.cc (Target_x86_64::Relocate::tls_desc_gd_to_ie): New function.
17120 (Target_x86_64::Relocate::tls_desc_gd_to_le): New function.
17121 (Target_x86_64::make_plt_section): New function.
17122 (Target_x86_64::reserve_tlsdesc_entries): New function.
17123 (Output_data_plt_x86_64::Output_data_plt_x86_64): Add new parameter.
17124 (Output_data_plt_x86_64::reserve_tlsdesc_entry): New function.
17125 (Output_data_plt_x86_64::has_tlsdesc_entry): New function.
17126 (Output_data_plt_x86_64::get_tlsdesc_got_offset): New function.
17127 (Output_data_plt_x86_64::get_tlsdesc_plt_offset): New function.
17128 (Output_data_plt_x86_64::tlsdesc_plt_entry): New field.
17129 (Output_data_plt_x86_64::set_final_data_size): Move out of line;
17130 add extra PLT entry for TLS descriptors.
17131 (Output_data_plt_x86_64::got_): New field.
17132 (Output_data_plt_x86_64::tlsdesc_got_offset_): New field.
17133 (Output_data_plt_x86_64::Output_data_plt_x86_64): Initialize new
17134 fields.
17135 (Output_data_plt_x86_64::do_write): Write extra PLT entry for TLS
17136 descriptors.
17137 (Target_x86_64::make_plt_entry): Factor out make_plt_section.
17138 (Target_x86_64::got_mod_index_entry): Remove unnecessary code.
17139 (Target_x86_64::Scan::local): Implement R_386_TLS_GOTDESC and
17140 R_386_TLS_DESC_CALL relocations.
17141 (Target_x86_64::Scan::global): Likewise.
17142 (Target_x86_64::do_finalize_sections): Add dynamic table entries
17143 for TLS descriptors.
17144 (Relocate::relocate_tls): Fix problem with GD-to-IE relaxation.
17145 Implement R_386_TLS_GOTDESC and R_386_TLS_DESC_CALL relocations.
17146 (Target_x86_64::Relocate::tls_gd_to_ie): Fix problem with
17147 GD-to-IE relaxation.
17148 * configure.ac: Export new conditional variables TLS_GNU2_DIALECT
17149 and TLS_DESCRIPTORS.
17150 * Makefile.in: Rebuild.
17151 * configure: Rebuild.
17152 * testsuite/Makefile.am (tls_shared_gd_to_ie_test): New target.
17153 (tls_test_shared2.so): New target.
17154 (tls_shared_gd_to_ie_test_SOURCES): New variable.
17155 (tls_shared_gd_to_ie_test_DEPENDENCIES): New variable.
17156 (tls_shared_gd_to_ie_test_LDFLAGS): New variable.
17157 (tls_shared_gd_to_ie_test_LDADD): New variable.
17158 (tls_shared_gnu2_gd_to_ie_test): New target.
17159 (tls_test_gnu2.o, tls_test_file2_gnu2.o, tls_test_gnu2_shared2.so):
17160 New targets.
17161 (tls_shared_gnu2_gd_to_ie_test_SOURCES): New variable.
17162 (ls_shared_gnu2_gd_to_ie_test_DEPENDENCIES): New variable.
17163 (tls_shared_gnu2_gd_to_ie_test_LDFLAGS): New variable.
17164 (tls_shared_gnu2_gd_to_ie_test_LDADD): New variable.
17165 (tls_shared_gnu2_test): New target.
17166 (tls_test_gnu2_shared.so): New target.
17167 (tls_shared_gnu2_test_SOURCES): New variable.
17168 (tls_shared_gnu2_test_DEPENDENCIES): New variable.
17169 (tls_shared_gnu2_test_LDFLAGS): New variable.
17170 (tls_shared_gnu2_test_LDADD): New variable.
17171 * testsuite/Makefile.in: Rebuild.
17172 * testsuite/Makefile.
17173
17174 2008-04-11 Ian Lance Taylor <iant@google.com>
17175
17176 * testsuite/Makefile.am (justsyms_2r.o): Add dependency on
17177 justsyms.t.
17178 * testsuite/Makefile.in: Rebuild.
17179
17180 * testsuite/script_test_2a.cc (script_test_string_a): Make 8 bytes
17181 long.
17182 * testsuite/script_test_2.cc (main): Adjust test.
17183
17184 2008-04-11 David S. Miller <davem@davemloft.net>
17185 Ian Lance Taylor <iant@google.com>
17186
17187 * options.h (General_options): Add entries for '-Y' and
17188 '-relax'.
17189 * options.cc (General_options:finalize): If -Y was used, add those
17190 entries to the library path instead of the default "/lib" and
17191 "/usr/lib".
17192
17193 2008-04-11 David S. Miller <davem@davemloft.net>
17194
17195 * testsuite/justsyms.t: Start at 0x100.
17196 * testsuite/justsyms_1.cc: Adjust justsyms_string assertion.
17197 * testsuite/script_test_2b.cc (script_test_string_b): Make 8 bytes
17198 long.
17199 * testsuite/script_test_2.cc: Adjust string and section length
17200 checks.
17201
17202 2008-04-09 Ian Lance Taylor <iant@google.com>
17203
17204 PR gold/5996
17205 * script-sections.cc (Sections_element::allocate_to_segment): Add
17206 orphan parameter.
17207 (Output_section_definition::allocate_to_segment): Likewise.
17208 (Orphan_output_section::allocate_to_segment): Likewise.
17209 (Script_sections::attach_sections_using_phdrs_clause): Don't
17210 propagate non-PT_LOAD segments to orphan sections.
17211 * testsuite/Makefile.am (script_test_3.stdout): Generate using
17212 readelf rather than objdump.
17213 * testsuite/script_test_3.sh: Adjust accordingly. Test that
17214 .interp section and PT_INTERP segment are the same size.
17215 * testsuite/Makefile.in: Rebuild.
17216
17217 * symtab.cc (Symbol_table::add_from_dynobj): Only look for weak
17218 aliases for symbols defined in the same object.
17219 * testsuite/Makefile.am (check_PROGRAMS): Add weak_alias_test.
17220 (weak_alias_test_SOURCES): New variable.
17221 (weak_alias_test_DEPENDENCIES): New variable.
17222 (weak_alias_test_LDFLAGS): New variable.
17223 (weak_alias_test_LDADD): New variable.
17224 (weak_alias_test_1_pic.o, weak_alias_test_1.so): New targets.
17225 (weak_alias_test_2_pic.o, weak_alias_test_2.so): New targets.
17226 (weak_alias_test_3.o): New target.
17227 (weak_alias_test_4_pic.o, weak_alias_test_4.so): New targets.
17228 * testsuite/weak_alias_test_main.cc: New file.
17229 * testsuite/weak_alias_test_1.cc: New file.
17230 * testsuite/weak_alias_test_2.cc: New file.
17231 * testsuite/weak_alias_test_3.cc: New file.
17232
17233 2008-04-08 Ian Lance Taylor <iant@google.com>
17234
17235 * options.h (class General_options): Add --noinhibit-exec option.
17236 * main.cc (main): Check --noinhibit-exec.
17237
17238 * options.h (class General_options): Define --wrap as a special
17239 option. Add wrap_symbols_ field.
17240 (General_options::any_wrap_symbols): New function.
17241 (General_options::is_wrap_symbol): New function.
17242 * options.cc (General_options::parse_wrap): New function.
17243 (General_options::General_options): Initialize wrap_symbols_.
17244 * symtab.cc (Symbol_table::wrap_symbol): New function.
17245 (Symbol_table::add_from_object): Handle --wrap.
17246 * symtab.h (class Symbol_table): Declare wrap_symbol.
17247 * target.h (Target::wrap_char): New function.
17248 (Target::Target_info): Add wrap_char field.
17249 * i386.cc (Target_i386::i386_info): Initialize wrap_char.
17250 * x86_64.cc (Target_x86_64::x86_64_info): Likewise.
17251 * testsuite/testfile.cc (Target_test::test_target_info):
17252 Likewise.
17253
17254 * errors.cc (Errors::undefined_symbol): Mention symbol version if
17255 there is one.
17256
17257 * layout.h (class Layout): Add added_eh_frame_data_ field.
17258 * layout.cc (Layout::Layout): Initialize new field.
17259 (Layout::layout_eh_frame): Don't add eh_frame_data_ to .eh_frame
17260 output section until we find a section we merged successfully.
17261 * object.cc (Sized_relobj::check_eh_frame_flags): Don't require
17262 that the size be non-zero.
17263
17264 * merge.cc (Object_merge_map::get_output_offset): Remove inline
17265 qualifier.
17266
17267 2008-04-08 Craig Silverstein <csilvers@google.com>
17268
17269 * configure.ac: Export new conditional variable HAVE_ZLIB.
17270 * testsuite/Makefile.am (flagstest_o_specialfile): Condition
17271 on HAVE_ZLIB.
17272 (flagstest_o_specialfile_and_compress_debug_sections): Likewise.
17273 * configure, Makefile.in, testsuite/Makefile.in: Rebuild.
17274
17275 2008-04-07 Ian Lance Taylor <iant@google.com>
17276
17277 * version.cc (version_string): Set to "1.5".
17278
17279 * x86_64.cc (Target_x86_64::Scan): Change from struct to class.
17280 Add issued_non_pic_error_ field. Declare check_non_pic.
17281 (Target_x86_64::Scan::check_non_pic): New function.
17282 (Target_x86_64::Scan::local): Call check_non_pic as appropriate.
17283 (Target_x86_64::Scan::global): Likewise.
17284
17285 * output.cc (Output_reloc<SHT_REL>::local_section_offset): Add
17286 addend parameter. Change caller. Handle merge sections.
17287 (Output_reloc<SHT_REL>::symbol_value): Change parameter type from
17288 Address to Addend. Don't add in the result of
17289 local_section_offset, pass down the addend and use the returned
17290 value.
17291 * output.h (class Output_reloc<SHT_REL>): Add Addend typedef.
17292 Update declarations of local_section_offset and symbol_value.
17293 * testsuite/two_file_test_1.cc (t18): New function.
17294 * testsuite/two_file_test_2.cc (f18): New function.
17295 * testsuite/two_file_test_main.cc (main): Call t18.
17296 * testsuite/two_file_test.h (t18, f18): Declare.
17297
17298 * configure.ac: Don't test for objdump, c++filt, or readelf.
17299 * testsuite/Makefile.am: Remove READELF and OBJDUMP_AND_CPPFILT
17300 conditionals.
17301 (TEST_READELF): New variable.
17302 (TEST_OBJDUMP, TEST_CXXFILT, TEST_STRIP): New variables.
17303 (check_PROGRAMS): Add two_file_strip_test.
17304 (two_file_strip_test): New target.
17305 (check_PROGRAMS): Add two_file_same_shared_strip_test.
17306 (two_file_same_shared_strip_test_SOURCES): New variable.
17307 (two_file_same_shared_strip_test_DEPENDENCIES): New variable.
17308 (two_file_same_shared_strip_test_LDFLAGS): New variable.
17309 (two_file_same_shared_strip_test_LDADD): New variable.
17310 (two_file_shared_strip.so): New target.
17311 (ver_test_2.syms, ver_test_4.syms): Use TEST_READELF.
17312 (ver_test_5.syms, ver_test_7.syms): Likewise.
17313 (ver_matching_test.stdout): Use TEST_OBJDUMP and TEST_CXXFILT.
17314 (strip_test_3.stdout): Use TEST_OBJDUMP.
17315 * configure, Makefile.in, testsuite/Makefile.in: Rebuild.
17316
17317 2008-04-04 Cary Coutant <ccoutant@google.com>
17318
17319 * symtab.h (Symbol::is_weak_undefined): New function.
17320 (Symbol::is_strong_undefined): New function.
17321 (Symbol::is_absolute): New function.
17322 (Symbol::needs_plt_entry): Exclude weak undefined symbols.
17323 (Symbol::needs_dynamic_reloc): Exclude weak undefined and
17324 absolute symbols.
17325 * testsuite/Makefile.am (check_PROGRAMS): Add weak_undef_test.
17326 (weak_undef_test): New target.
17327 * testsuite/Makefile.in: Rebuild.
17328 * testsuite/weak_undef_file1.cc: New file.
17329 * testsuite/weak_undef_file2.cc: New file.
17330 * testsuite/weak_undef_test.cc: New file.
17331
17332 2008-04-03 Craig Silverstein <csilvers@google.com>
17333
17334 * compressed_output.h (class Output_compressed_section): Use
17335 unsigned buffer.
17336 * compressed_output.cc (zlib_compress): Use unsigned buffers,
17337 add zlib header.
17338 (zlib_compressed_suffix): Removed.
17339 (Output_compressed_section::set_final_data_size): Use unsigned
17340 buffers.
17341 * testsuite/Makefile.am (flagstest_compress_debug_sections):
17342 Fix linker invocation.
17343 (flagstest_o_specialfile_and_compress_debug_sections):
17344 Likewise.
17345 * testsuite/Makefile.in: Regenerated.
17346
17347 2008-04-02 David S. Miller <davem@davemloft.net>
17348
17349 * dwarf_reader.cc (Sized_dwarf_line_info::read_header_prolog,
17350 Sized_dwarf_line_info::process_one_opcode): Use Swap_unaligned.
17351
17352 2008-04-02 Craig Silverstein <csilvers@google.com>
17353
17354 * TODO: New file.
17355
17356 2008-04-02 Ian Lance Taylor <iant@google.com>
17357
17358 * fileread.cc (File_read::find_view): Add byteshift and vshifted
17359 parameters. Update for new key type to views_. Change all
17360 callers.
17361 (File_read::read): Adjust for byteshift in returned view.
17362 (File_read::add_view): New function, broken out of
17363 find_and_make_view.
17364 (File_read::make_view): New function, broken out of
17365 find_and_make_view.
17366 (File_read::find_or_make_view): Add offset and aligned
17367 parameters. Rewrite accordingly. Change all callers.
17368 (File_read::get_view): Add offset and aligned parameters. Adjust
17369 for byteshift in return value.
17370 (File_read::get_lasting_view): Likewise.
17371 * fileread.h (class File_read): Update declarations.
17372 (class File_read::View): Add byteshift_ field. Add byteshift to
17373 constructor. Add byteshift method.
17374 * archive.h (Archive::clear_uncached_views): New function.
17375 (Archive::get_view): Add aligned parameter. Change all callers.
17376 * object.h (Object::get_view): Add aligned parameter. Change all
17377 callers.
17378 (Object::get_lasting_view): Likewise.
17379
17380 * fileread.cc (File_read::release): Don't call clear_views if
17381 there are multiple objects.
17382 * fileread.h (File_read::clear_uncached_views): New function.
17383 * archive.cc (Add_archive_symbols::run): Call clear_uncached_views
17384 on the archive.
17385
17386 2008-03-31 Cary Coutant <ccoutant@google.com>
17387
17388 Add thin archive support.
17389 * archive.cc (Archive::armagt): New const.
17390 (Archive::setup): Remove task parameter and calls to unlock.
17391 (Archive::unlock_nested_archives): New function.
17392 (Archive::read_header): Add nested_off parameter. Change
17393 all callers.
17394 (Archive::interpret_header): Likewise.
17395 (Archive::include_all_members): Change to handle thin
17396 archives.
17397 (Archive::include_member): Likewise.
17398 * archive.h (Archive::Archive): Add new parameters and
17399 initializers.
17400 (Archive::armagt): New const.
17401 (Archive::setup): Remove task parameter.
17402 (Archive::unlock_nested_archives): New function.
17403 (Archive::read_header): Add nested_off parameter.
17404 (Archive::interpret_header): Likewise.
17405 (Archive::Nested_archive_table): New typedef.
17406 (Archive::is_thin_archive_): New field.
17407 (Archive::nested_archives_): New field.
17408 (Archive::options_): New field.
17409 (Archive::dirpath_): New field.
17410 (Archive::task_): New field.
17411 * readsyms.cc (Read_symbols::do_read_symbols): Add check
17412 for thin archives. Pass additional parameters to
17413 Archive::Archive. Unlock the archive file after calling
17414 Archive::setup.
17415
17416 2008-03-29 Ian Lance Taylor <iant@google.com>
17417
17418 * symtab.cc (Symbol_table::do_define_as_constant): Don't force a
17419 version symbol to be local.
17420 * testsuite/ver_test_4.sh: New file.
17421 * testsuite/Makefile.am (check_SCRIPTS): Add ver_test_4.sh.
17422 (check_DATA): Add ver_test_4.syms.
17423 (ver_test_4.syms): New target.
17424 * testsuite/Makefile.in: Rebuild.
17425
17426 * output.cc
17427 (Output_section::Input_section_sort_entry::has_priority): New
17428 function.
17429 (Output_section::Input_section_sort_entry::match_file_name): New
17430 function.
17431 (Output_section::Input_section_sort_entry::match_section_name):
17432 Remove.
17433 (Output_section::Input_section_sort_entry::match_section_name_prefix):
17434 Remove.
17435 (Output_section::Input_section_sort_entry::match_section_file):
17436 Remove.
17437 (Output_section::Input_section_sort_compare::operator()): Rewrite
17438 using new Input_section_sort_entry functions. Sort crtbegin and
17439 crtend first. Sort sections with no priority before sections with
17440 a priority.
17441 * testsuite/initpri1.c (d3): Check j != 4.
17442 (cd5): New constructor/destructor function.
17443 (main): Check j != 2.
17444
17445 * symtab.cc (Symbol_table::add_from_object): If we don't use the
17446 new symbol when resolving, don't call set_is_default.
17447 * testsuite/ver_test_7.cc: New file.
17448 * testsuite/ver_test_7.sh: New file.
17449 * testsuite/Makefile.am (ver_test_7.so): New target.
17450 (ver_test_7.o): New target.
17451 (check_SCRIPTS): Add ver_test_7.sh.
17452 (check_DATA): Add ver_test_7.syms.
17453 (ver_test_7.syms): New target.
17454
17455 2008-03-28 Ian Lance Taylor <iant@google.com>
17456
17457 * layout.cc (Layout::layout): If we see an input section with a
17458 name that needs sorting, set the must_sort flag for the output
17459 section.
17460 (Layout::make_output_section): If the name of the output section
17461 indicates that it might require sorting, set the may_sort flag.
17462 * output.h (Output_section::may_sort_attached_input_sections): New
17463 function.
17464 (Output_section::set_may_sort_attached_input_sections): New
17465 function.
17466 (Output_section::must_sort_attached_input_sections): New
17467 function.
17468 (Output_section::set_must_sort_attached_input_sections): New
17469 function.
17470 (class Output_section): Declare Input_section_sort_entry. Define
17471 Input_section_sort_compare. Declare
17472 sort_attached_input_sections. Add new fields:
17473 may_sort_attached_input_sections_,
17474 must_sort_attached_input_sections_,
17475 attached_input_sections_are_sorted_.
17476 * output.cc (Output_section::Output_section): Initialize new
17477 fields.
17478 (Output_section::add_input_section): Add an entry to
17479 input_sections_ if may_sort or must_sort are true.
17480 (Output_section::set_final_data_size): Call
17481 sort_attached_input_sections if necessary.
17482 (Output_section::Input_section_sort_entry): Define new class.
17483 (Output_section::Input_section_sort_compare::operator()): New
17484 function.
17485 (Output_section::sort_attached_input_sections): New function.
17486 * configure.ac: Check whether the compiler supports constructor
17487 priorities. Define a CONSTRUCTOR_PRIORITY automake conditional.
17488 * testsuite/initpri1.c: New file.
17489 * testsuite/Makefile.am (check_PROGRAMS): Add initpri1 if
17490 CONSTRUCTOR_PRIORITY.
17491 (initpri1_SOURCES, initpri1_DEPENDENCIES): New variables.
17492 (initpri1_LDFLAGS): New variable.
17493 * configure, Makefile.in, testsuite/Makefile.in: Rebuild.
17494
17495 2008-03-27 Ian Lance Taylor <iant@google.com>
17496
17497 * common.cc (Sort_commons::operator): Correct sorting algorithm.
17498 * testsuite/common_test_1.c: New file.
17499 * testsuite/Makefile.am (check_PROGRAMS): Add common_test_1.
17500 (common_test_1_SOURCES): New variable.
17501 (common_test_1_DEPENDENCIES): New variable.
17502 (common_test_1_LDFLAGS): New variable.
17503
17504 * symtab.cc (Symbol_table::add_from_object): Handle saw_undefined_
17505 and commons_ correctly when NAME/VERSION does not override
17506 NAME/NULL.
17507 * testsuite/ver_test_6.c: New file.
17508 * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_6
17509 (ver_test_6_SOURCES, ver_test_6_DEPENDENCIES): New variables.
17510 (ver_test_6_LDFLAGS, ver_test_6_LDADD): New variables.
17511
17512 2008-03-26 Ian Lance Taylor <iant@google.com>
17513
17514 * symtab.cc (Symbol_table::add_from_relobj): Don't set the version
17515 of an undefined symbol from a version script.
17516 * testsuite/Makefile.am (ver_test_5.so): New target.
17517 (ver_test_5.o): New target.
17518 (check_SCRIPTS): Add ver_test_5.sh.
17519 (check_DATA): Add ver_test_5.syms.
17520 (ver_test_5.syms): New target.
17521 * testsuite/ver_test_5.cc: New file.
17522 * testsuite/ver_test_5.script: New file.
17523 * testsuite/ver_test_5.sh: New file.
17524 * Makefile.in, testsuite/Makefile.in: Rebuild.
17525
17526 PR gold/5986
17527 Fix problems building gold with gcc 4.3.0.
17528 * gold.h (TEMPLATE_ATTRIBUTE_PRINTF_4): Define.
17529 (gold_error_at_location, gold_warning_at_location): Use it.
17530 * configure.ac: Check whether we can compile and use a template
17531 function with a printf attribute.
17532 * x86_64.cc (Target_x86_64::do_code_fill): Swap out a 32-bit value
17533 when jumping over bytes.
17534 * object.cc: Instantiate Object::read_section_data.
17535 * debug.h: Include <cstring>
17536 * dwarf_reader.cc: Include <algorithm>
17537 * main.cc: Include <cstring>.
17538 * options.cc: Include <cstring>.
17539 * output.cc: Include <cstring>.
17540 * script.cc: Include <cstring>.
17541 * script.h: Include <string>.
17542 * symtab.cc: Include <cstring> and <algorithm>.
17543 * target-select.cc: Include <cstring>.
17544 * version.cc: Include <string>.
17545 * testsuite/testmain.cc: Include <cstdlib>.
17546 * configure, config.in: Rebuild.
17547
17548 2008-03-25 Ian Lance Taylor <iant@google.com>
17549
17550 * options.cc: Include "../bfd/bfdver.h".
17551 (options::help): Print bug reporting address.
17552
17553 * version.cc (print_version): Adjust output for current value of
17554 BFD_VERSION_STRING.
17555
17556 * NEWS: New file.
17557
17558 * options.cc (options::help): Print list of supported targets.
17559 * target-select.h: Include <vector>.
17560 (class Target_selector): Make machine_, size_, and is_big_endian_
17561 fields const. Add bfd_name_ and instantiated_target_ fields.
17562 (Target_selector::Target_selector): Add bfd_name parameter.
17563 (Target_selector::recognize): Make non-virtual, call
17564 do_recognize.
17565 (Target_selector::recognize_by_name): Make non-virtual, call
17566 do_recognize_by_name.
17567 (Target_selector::supported_names): New function.
17568 (Target_selector::bfd_name): New function.
17569 (Target_selector::do_instantiate_target): New pure virtual
17570 function.
17571 (Target_selector::do_recognize): New virtual function.
17572 (Target_selector::do_recognize_by_name): New virtual function.
17573 (Target_selector::instantiate_target): New private function.
17574 (supported_target_names): Declare.
17575 * target-select.cc (Target_selector::Target_selector): Update for
17576 new parameter and fields.
17577 (select_target_by_name): Check that the name matches before
17578 calling recognize_by_name.
17579 (supported_target_names): New function.
17580 * i386.cc (class Target_selector_i386): Update Target_selector
17581 constructor call. Remove recognize and recognize_by_name. Add
17582 do_instantiate_target.
17583 * x86_64.cc (class Target_selector_x86_64): Likewise.
17584 * testsuite/testfile.cc (class Target_selector_test): Update for
17585 changes to Target_selector.
17586
17587 * README: Rewrite, with some notes on unsupported features.
17588
17589 2008-03-24 Cary Coutant <ccoutant@google.com>
17590
17591 * i386.cc (Target_i386::Got_type): New enum declaration.
17592 (Target_i386::Scan::local): Updated callers of Output_data_got
17593 member functions.
17594 (Target_i386::Scan::global): Likewise.
17595 (Target_i386::Relocate::relocate): Likewise.
17596 (Target_i386::Relocate::relocate_tls): Likewise.
17597 * object.h (Got_offset_list): New class.
17598 (Sized_relobj::local_has_got_offset): Added got_type parameter.
17599 (Sized_relobj::local_got_offset): Likewise.
17600 (Sized_relobj::set_local_got_offset): Likewise.
17601 (Sized_relobj::local_has_tls_got_offset): Removed.
17602 (Sized_relobj::local_tls_got_offset): Removed.
17603 (Sized_relobj::set_local_tls_got_offset): Removed.
17604 (Sized_relobj::Local_got_offsets): Changed to store a list of offsets.
17605 * output.cc (Output_data_got::add_global): Added got_type parameter.
17606 (Output_data_got::add_global_with_rel): Likewise.
17607 (Output_data_got::add_global_with_rela): Likewise.
17608 (Output_data_got::add_global_pair_with_rel): New function.
17609 (Output_data_got::add_global_pair_with_rela): New function.
17610 (Output_data_got::add_local): Added got_type parameter.
17611 (Output_data_got::add_local_with_rel): Likewise.
17612 (Output_data_got::add_local_with_rela): Likewise.
17613 (Output_data_got::add_local_pair_with_rel): New function.
17614 (Output_data_got::add_local_pair_with_rela): New function.
17615 (Output_data_got::add_global_tls): Removed.
17616 (Output_data_got::add_global_tls_with_rel): Removed.
17617 (Output_data_got::add_global_tls_with_rela): Removed.
17618 (Output_data_got::add_local_tls): Removed.
17619 (Output_data_got::add_local_tls_with_rel): Removed.
17620 (Output_data_got::add_local_tls_with_rela): Removed.
17621 * output.h (Output_data_got::add_global): Added got_type parameter.
17622 (Output_data_got::add_global_with_rel): Likewise.
17623 (Output_data_got::add_global_with_rela): Likewise.
17624 (Output_data_got::add_global_pair_with_rel): New function.
17625 (Output_data_got::add_global_pair_with_rela): New function.
17626 (Output_data_got::add_local): Added got_type parameter.
17627 (Output_data_got::add_local_with_rel): Likewise.
17628 (Output_data_got::add_local_with_rela): Likewise.
17629 (Output_data_got::add_local_pair_with_rel): New function.
17630 (Output_data_got::add_local_pair_with_rela): New function.
17631 (Output_data_got::add_global_tls): Removed.
17632 (Output_data_got::add_global_tls_with_rel): Removed.
17633 (Output_data_got::add_global_tls_with_rela): Removed.
17634 (Output_data_got::add_local_tls): Removed.
17635 (Output_data_got::add_local_tls_with_rel): Removed.
17636 (Output_data_got::add_local_tls_with_rela): Removed.
17637 * resolve.cc (Symbol::override_base_with_special): Removed
17638 reference to has_got_offset_ field.
17639 * symtab.cc (Symbol::init_fields): Replaced initialization
17640 of got_offset_ with got_offsets_. Removed initialization
17641 of has_got_offset_
17642 * symtab.h (Symbol::has_got_offset): Aded got_type parameter.
17643 (Symbol::got_offset): Likewise.
17644 (Symbol::set_got_offset): Likewise.
17645 (Symbol::has_tls_got_offset): Removed.
17646 (Symbol::tls_got_offset): Removed.
17647 (Symbol::set_tls_got_offset): Removed.
17648 (Symbol::got_offset_): Removed.
17649 (Symbol::tls_mod_got_offset_): Removed.
17650 (Symbol::tls_pair_got_offset_): Removed.
17651 (Symbol::got_offsets_): New field.
17652 (Symbol::has_got_offset): Removed.
17653 (Symbol::has_tls_mod_got_offset): Removed.
17654 (Symbol::has_tls_pair_got_offset): Removed.
17655 * x86_64.cc (Target_x86_64::Got_type): New enum declaration.
17656 (Target_x86_64::Scan::local): Updated callers of Output_data_got
17657 member functions.
17658 (Target_x86_64::Scan::global): Likewise.
17659 (Target_x86_64::Relocate::relocate): Likewise.
17660 (Target_x86_64::Relocate::relocate_tls): Likewise.
17661
17662 2008-03-25 Ben Elliston <bje@au.ibm.com>
17663
17664 * yyscript.y: Fix spelling error in comment.
17665
17666 2008-03-24 Ian Lance Taylor <iant@google.com>
17667
17668 * options.h (class General_options): Define build_id option.
17669 * layout.h (class Layout): Declare write_build_id, create_note,
17670 create_build_id. Add build_id_note_ member.
17671 * layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
17672 "libiberty.h", "md5.h", "sha1.h".
17673 (Layout::Layout): Initialize eh_frame_data_,
17674 eh_frame_hdr_section_, and build_id_note_.
17675 (Layout::finalize): Call create_build_id.
17676 (Layout::create_note): New function, broken out of
17677 Layout::create_gold_note.
17678 (Layout::create_gold_note): Call create_note.
17679 (Layout::create_build_id): New function.
17680 (Layout::write_build_id): New function.
17681 (Close_task_runner::run): Call write_build_id.
17682
17683 * x86_64.cc: Correct license to GPLv3.
17684
17685 2008-03-23 Ian Lance Taylor <iant@google.com>
17686
17687 * options.cc: Include "demangle.h".
17688 (parse_optional_string): New function.
17689 (parse_long_option): Handle takes_optional_argument.
17690 (parse_short_option): Update dash_z initializer. Handle
17691 takes_optional_argument.
17692 (General_options::General_options): Initialize do_demangle_.
17693 (General_options::finalize): Set do_demangle_. Handle demangling
17694 style.
17695 * options.h (parse_optional_string): Declare.
17696 (struct One_option): Add optional_arg field. Update constructor.
17697 Update call constructor calls. Add takes_optional_argument
17698 function.
17699 (DEFINE_var): Add optional_arg__ parameter. Change all callers.
17700 (DEFINE_optional_string): Define.
17701 (General_options::demangle): Change from DEFINE_bool to
17702 DEFINE_optional_string.
17703 (General_options::no_demangle): New function.
17704 (General_options::do_demangle): New function.
17705 (General_options::set_do_demangle): New function.
17706 (General_options::execstack_status_): Move definition to end of
17707 class definition.
17708 (General_options::static_): Likewise.
17709 (General_options::do_demangle_): New field.
17710 * object.cc (big_endian>::get_symbol_location_info): Call
17711 Options::do_demangle, not Options::demangle.
17712 * symtab.cc (demangle): Likewise.
17713
17714 2008-03-22 Ian Lance Taylor <iant@google.com>
17715
17716 * gold.h: Include <cstddef> and <sys/types.h>
17717 * options.h: Include <cstring>.
17718
17719 2008-03-21 Ian Lance Taylor <iant@google.com>
17720
17721 * Added source code to GNU binutils.
17722 \f
17723 Copyright (C) 2008-2015 Free Software Foundation, Inc.
17724
17725 Copying and distribution of this file, with or without modification,
17726 are permitted in any medium without royalty provided the copyright
17727 notice and this notice are preserved.
17728
17729 Local Variables:
17730 mode: change-log
17731 left-margin: 8
17732 fill-column: 74
17733 version-control: never
17734 End:
This page took 0.391128 seconds and 5 git commands to generate.