* arm.cc (Arm_relocate_functions::thm_jump6): New function.
[external/binutils.git] / gold / ChangeLog
1 2010-01-15  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
2
3         * arm.cc (Arm_relocate_functions::thm_jump6): New function.
4         (Arm_relocate_functions::thm_jump8): New function.
5         (Arm_relocate_functions::thm_jump11): New function.
6         (Target_arm::Scan::local): Handle R_ARM_THM_JUMP6, R_ARM_THM_JUMP8,
7         R_ARM_THM_JUMP11.
8         (Target_arm::Scan::global): Likewise.
9         (Target_arm::Relocate::relocate): Likewise.
10         (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc):
11         Likewise.
12
13 2010-01-14  Doug Kwan  <dougkwan@google.com>
14
15         * arm.cc (map, utility): Include headers.
16         (Target_arm::apply_cortex_a8_workaround): New method.
17         (Arm_relobj::do_relocate_sections): Apply any Cortex-A8 workaround.
18         (Target_arm::Scan::local): Handle R_ARM_THM_JUMP24, R_ARM_THM_JUMP19.
19         (Target_arm::Scan::global): R_ARM_THM_JUMP19.
20         (Target_arm::do_finalize_sections): Set fix_cortex_a8_ according to
21         the --[no-]fix-cortex-a8 command line options.
22         (Target_arm::Relocate::relocate): Handle R_ARM_JUMP19.
23         (Target_arm::relocate_stub): Use addend in instruction template.
24         * options.h (DEFINE_bool): Set the user-set flag.
25         (General_options): Add --[no-]-fix-cortex options.
26         * output.cc (Output_section::convert_input_sections_to_relaxed_sections)
27         : Update fast look-up map after conversion. 
28
29 2010-01-14  Sriraman Tallam  <tmsriram@google.com>
30
31         * object.cc (Sized_relobj::do_layout): Change to call layout_gnu_stack
32         in the first pass of do_layout.
33
34 2010-01-13  Doug Kwan  <dougkwan@google.com>
35
36         * arm.cc (Arm_relobj::section_needs_reloc_stub_scanning,
37         Arm_relobj::scan_sections_for_stubs): Rearrange code to avoid an
38         apparent compiler problem of not folding static constant integral
39         data members of elfcpp::Elf_sizes<32>.
40
41 2010-01-13  Doug Kwan  <dougkwan@google.com>
42
43         * arm.cc (Arm_relobj::section_needs_reloc_stub_scanning,
44         Arm_relobj::section_needs_cortex_a8_stub_scanning,
45         Arm_relobj::scan_section_for_cortex_a8_erratum,
46         Arm_relobj::scan_span_for_cortex_a8_erratum): New methods.
47         (Arm_relobj::scan_sections_for_stubs): Move code deciding what
48         sections to scan for relocation stubs into a new method
49         Arm_relobj::section_needs_reloc_stub_scanning.  Handle both
50         relocation and Cortex-A8 stub scanning.
51         (Target_arm::do_relax): Force stubs to be after stubbed sections
52         if fixing the Cortex-A8 erratum.  Remove all Cortex-A8 stubs at
53         the beginning of a new relaxation pass.  Update a comment. 
54         (Target_arm::scan_span_for_cortex_a8_erratum): New method definition.
55
56 2010-01-12  Ian Lance Taylor  <iant@google.com>
57
58         * target-reloc.h (visibility_error): New inline function.
59         (relocate_section): Call visibility_error.
60         * testsuite/Makefile.am (check_DATA): Add protected_3.err.
61         (MOSTLYCLEANFILES): Likewise.
62         (protected_4_pic.o, protected_3.err): New targets.
63         * testsuite/protected_4.cc: New file.
64
65 2010-01-12  Doug Kwan  <dougkwan@google.com>
66
67         * arm.cc (Cortex_a8_reloc): New class.
68         (Target_arm::Target_arm): Initialize new data members fix_cortex_a8_
69         and cortex_a8_relocs_info_.
70         (Target_arm::fix_cortex_a8): New method definition.
71         (Target_arm::Cortex_a8_relocs_info): New type.
72         (Target_arm::fix_cortex_a8_, Target_arm::cortex_a8_relocs_info_):
73         New data member declarations.
74         (Target_arm::scan_reloc_for_stub): Record information about
75         relocations for THUMB branches that might be exempted from the
76         Cortex-A8 workaround.
77         (Target_arm::do_relax): Clear all Cortex-A8 relocation information
78         at the beginning of a relaxation pass.
79
80 2010-01-12  Doug Kwan  <dougkwan@google.com>
81
82         * arm.cc (Arm_relobj::mapping_symbols_info_): New data member.
83         (Arm_relobj::Mapping_symbol_position,
84          Arm_reloj::Mapping_symbol_position_less,
85          Arm_relobj::Mapping_symbols_info): New types.
86         (Target_arm::is_mapping_symbol_name): New method definition.
87         (Arm_relobj::do_count_local_symbols): Save information about mapping
88         symbols.
89
90 2010-01-11  Doug Kwan  <dougkwan@google.com>
91
92         * arm.cc (Arm_relocate_functions::thumb32_branch_offset,
93         Arm_relocate_functions::thumb32_branch_upper,
94         Arm_relocate_functions::thumb32_branch_lower,
95         Arm_relocate_functions::thumb32_cond_branch_offset,
96         Arm_relocate_functions::thumb32_cond_branch_upper,
97         Arm_relocate_functions::thumb32_cond_branch_lower,
98         Arm_relocate_functions::thm_jump19): New methods to handle THUMB
99         branch offset encoding.
100         (Arm_relocate_functions::thumb_branch_common): Use new branch
101         offset encoding methods to avoid code duplication.
102         (Stub_template::Stub_template) Handle THUMB16_SPECIAL_TYPE.
103         (Stub_addend_reader::operator()): Use new branch encoding method
104         to avoid code duplication.
105
106 2010-01-11  Doug Kwan  <dougkwan@google.com>
107
108         * arm.cc (Arm_relobj::do_gc_process_relocs): New method.
109         (Target_arm::do_finalize_sections): Define special EXIDX section
110         symbols only if referenced.
111         * gc.h (Garbage_collection::add_reference): New method.
112         (gc_process_relocs): Use Garbage_collection::add_reference to avoid
113         code duplication.
114
115 2010-01-11  Ian Lance Taylor  <iant@google.com>
116
117         * script.cc (Version_script_info::build_expression_list_lookup):
118         Change complaing about duplicate wildcard match from error to
119         warning.
120
121         * script.cc (class Lazy_demangler): Recreate--revert part of patch
122         of 2009-12-30.
123         (Version_script_info::Version_script_info): Initialize globs_,
124         default_version_, default_is_global_, and exact_.  Don't
125         initialize globals_ or locals_.
126         (Version_script_info::build_lookup_tables): Build local symbols
127         first.
128         (Version_script_info::unquote): New function.
129         (Version_script_info::add_exact_match): New function.
130         (Version_script_info::build_expression_list_lookup): Remove lookup
131         parameter.  Add is_global parameter.  Change all callers.  Handle
132         wildcard pattern specially.  Unquote pattern.  Call
133         add_exact_match.
134         (Version_script_info::get_name_to_match): New function.
135         (Version_script_info::get_symbol_version): New function.
136         (Version_script_info::get_symbol_version_helper): Remove.
137         (Version_script_info::check_unmatched_names): Call unquote.
138         * script.h (class Version_script_info): Change get_symbol_version
139         to be non-inline and add is_global parameter; change all callers.
140         Rewrite symbol_is_local.  Update declarations.  Define struct
141         Version_tree_match, Exact, Globs.  Don't define struct Lookup.
142         Remove globals_ and locals_ members.  Add exact_, globs_,
143         default_version_, is_global_.
144         (Version_script_info::Glob): Remove pattern, add expression and
145         is_global.  Update constructor.  Change all callers.
146         * dynobj.cc (Versions::finalize): Mark the version symbol as the
147         default version.
148         (Versions::symbol_section_contents): If a symbol is undefined, or
149         defined in a dynamic object, set the version index to
150         VER_NDX_LOCAL.
151         * symtab.cc (Symbol_table::add_from_relobj): Don't call
152         symbol_is_local.
153         (Symbol_table::add_from_pluginobj): Likewise.
154         * testsuite/ver_matching_test.sh: blaza1 and blaza go into V2.
155
156 2010-01-11  Doug Kwan  <dougkwan@google.com>
157
158         * Makefile.am (incremental_dump_DEPENDENCIES): Add libintl dependency.
159         (incremental_dump_LDADD): Add linking option for libintl.
160         * Makefile.in: Regenerate.
161
162 2010-01-11  H.J. Lu  <hongjiu.lu@intel.com>
163
164         PR gold/11144
165         * testsuite/Makefile.am (dynamic_list.stdout): Use --dyn-syms
166         instead of -Ds.
167         * testsuite/Makefile.in: Regenerated.
168
169 2010-01-10  Doug Kwan  <dougkwan@google.com>
170
171         * options.h (DEFINE_var): Use parentheses around argument varname__
172         in macro body to avoid any unintended subsequent substitutions.
173
174 2010-01-10  Ian Lance Taylor  <iant@google.com>
175
176         * resolve.cc (Symbol_table::resolve): Add symbols to list of ODR
177         candidates before doing symbol resolution.
178
179         * resolve.cc (Symbol_table::resolve): Add symbols to the list of
180         ODR candidates if only one is weak.
181
182 2010-01-08  Ian Lance Taylor  <iant@google.com>
183
184         * script.cc (Version_script_info::build_expression_list_lookup):
185         Don't warn about ambiguous version, just record the ambiguity.
186         (Version_script_info::get_symbol_version_helper): Give error if
187         version is ambiguous.
188
189 2010-01-08  Doug Kwan  <dougkwan@google.com>
190
191         * arm.cc (Stub_table::Stub_table): Initalize cortex_a8_stubs_,
192           prev_data_size_ and prev_addralign_.  Remove initializer for
193           deleted data member has_been_changed_.
194           (Stub_table::empty): Look at both reloc_stubs_ and cortex_a8_stubs_
195           to determine if the table is empty.
196           (Stub_table::has_been_changed, Stub_table_set_has_been_changed):
197           Remove.
198           (Stub_table::add_reloc_stub): Define method in class definition
199           instead of just declaring it there.
200           (Stub_table::add_cortex_a8_stub): New method definition.
201           (Stub_table::update_data_size_and_addralign): Ditto.
202           (Stub_table::finalize_stubs): Ditto.
203           (Stub_table::apply_cortex_a8_workaround_to_address_range): Ditto.
204           (Stub_table::do_addralign_): Return address alignment in the
205           (Stub_table::do_reset_address_and_file_offset): Define method in
206           class definition instead of declaring it there.  Set current data
207           size to be the data size of the previous pass.
208           (Stub_table::set_final_data_size): Use current data size as the
209           final data size.
210           (Stub_table::relocate_stub): Change parameter type of stub from
211           Reloc_stub pointer to Stub pointer.
212           (Stub_table::addralign_, Stub_table::has_been_changed_): Remove.
213           (Stub_table::Cortex_a8_stub_list): New typedef.
214           (Stub_table::cortex_a8_stubs_, Stub_table::prev_data_size_,
215            Stub_table::prev_addralign_): New data member.
216           (Arm_relobj::Arm_relobj): Initialize data member
217           section_has_cortex_a8_workaround_.
218           (Arm_relobj::section_has_cortex_a8_workaround,
219            Arm_relobj::mark_section_for_cortex_a8_workaround): New method
220            definitions.
221           (Arm_relobj::section_has_cortex_a8_workaround_): New data member
222           declarations.
223           (Target_arm::relocate_stub): Change parameter type of stub from
224           Reloc_stub pointer to Stub pointer.
225           (Insn_template::size, Insn_template::alignment): Handle
226           THUMB16_SPECIAL_TYPE.
227           (Stub_table::remove_all_cortex_a8_stubs, Stub_table::finalize_stubs,
228            Stub_table::update_data_size_and_addralign,
229            Stub_table::apply_cortex_a8_workaround_to_address_range): New method
230           definitions.
231           (Stub_table::relocate_stubs): Handle Cortex-A8 stubs.
232           (Stub_table::do_write): Ditto.
233           (Target_arm::do_relax): Adjust code for changes in Stub_table.
234
235 2010-01-08  Ian Lance Taylor  <iant@google.com>
236
237         PR 11108
238         * symtab.h (class Symbol): Remove fields is_target_special_ and
239         has_plt_offset_.  Add field is_defined_in_discarded_section_.
240         (Symbol::is_defined_in_discarded_section): New function.
241         (Symbol::set_is_defined_in_discarded_section): New function.
242         (Symbol::has_plt_offset): Rewrite.
243         (Symbol::set_plt_offset): Verify that new offset is not -1U.
244         * symtab.cc (Symbol::init_fields): Initialize plt_offset_ to -1U.
245         Don't initialize is_target_special_ or has_plt_offset_.
246         Initialize is_defined_in_discarded_section_.
247         (Symbol_table::add_from_relobj): If appropriate, set
248         is_defined_in_discarded_section.
249         * resolve.cc (Symbol::override_base_with_special): Don't test
250         is_target_special_.  Change has_plt_offset_ to has_plt_offset().
251         * target-reloc.h (relocate_section): Do special handling for
252         symbols defined in discarded sections for global symbols as well
253         as local symbols.
254
255 2010-01-08  Ian Lance Taylor  <iant@google.com>
256
257         * dynobj.cc (big_endian>::find_dynsym_sections): Set pi to NULL in
258         the SHT_SYMTAB case.
259
260 2010-01-08  Ian Lance Taylor  <iant@google.com>
261
262         * object.cc (Sized_relobj::do_layout): Don't get confused if
263         layout_eh_frame returns NULL.
264
265 2010-01-08  Ian Lance Taylor  <iant@google.com>
266
267         PR 11084
268         * dynobj.cc (Sized_dynobj::find_dynsym_sections): If there is no
269         dynamic symbol table, use the normal symbol table.
270         (Sized_dynobj::do_read_symbols): Remove assertion about type of
271         symbol table.
272
273 2010-01-08  Ian Lance Taylor  <iant@google.com>
274
275         PR 11072
276         * layout.cc (Layout::include_section): Remove .gnu_debuglink
277         sections.
278
279 2010-01-08  H.J. Lu  <hongjiu.lu@intel.com>
280
281         * version.cc (print_version): Change to "Copyright 2010".
282
283 2010-01-08  Ian Lance Taylor  <iant@google.com>
284
285         PR 10287
286         PR 11063
287         * i386.cc (class Target_i386): Change return type of plt_section
288         to be non-const.
289         (class Output_data_plt_i386): Add tls_desc_rel_ field.
290         (Output_data_plt_i386::Output_data_plt_i386): Initialize
291         tls_desc_rel_ field.
292         (Output_data_plt_i386::rel_tls_desc): New function.
293         (Target_i386::rel_tls_desc_section): New function.
294         (Target_i386::Scan::local): Rewrite R_386_TLS_GOTDESC handling.
295         (Target_i386::Scan::global): For R_386_TLS_GOTDESC put
296         R_386_TLS_DESC reloc in rel_tls_desc_section.
297         * x86_64.cc (class Target_x86_64): Add tlsdesc_reloc_info_ field.
298         Define struct Tlsdesc_info.
299         (Target_x86_64::Target_x86_64): Initialize tlsdesc_reloc_info_.
300         (Target_x86_64::do_reloc_symbol_index): New function.
301         (Target_x86_64::add_tlsdesc_info): New function.
302         (class Output_data_plt_x86_64): Add tlsdesc_rel_ field.
303         (Output_data_plt_x86_64::Output_data_plt_x86_64): Initialize
304         tlsdesc_rel_ field.
305         (Output_data_plt_x86_64::rela_plt): Rename from rel_plt.  Change
306         all callers.
307         (Output_data_plt_x86_64::rela_tlsdesc): New function.
308         (Target_x86_64::rela_tlsdesc_section): New function.
309         (Target_x86_64::Scan::local): Rewrite R_X86_64_GOTPC32_TLSDESC
310         handling.
311         (Target_x86_64::Scan::global): For R_X86_64_GOTPC32_TLSDESC put
312         (Target_x86_64::do_reloc_addend): New function.
313         R_X86_64_TLSDESC reloc in rela_tlsdesc_section.
314         * output.h (class Output_reloc) [SHT_REL]: Add new constructor
315         declarations.  Define TARGET_CODE.  Add arg field to u1_ union.
316         (Output_reloc::type): New function.
317         (Output_reloc::is_local_section_symbol): Check for TARGET_CODE.
318         (Output_reloc::is_target_specific): New function.
319         (Output_reloc::target_arg): New function.
320         (class Output_reloc) [SHT_RELA]: Add four new constructors for
321         absolute relocs and target specific relocs.
322         (class Output_data_reloc) [SHT_REL]: Add add_absolute and
323         add_target_specific.
324         (class Output_data_reloc) [SHT_RELA]: Likewise.
325         * output.cc (Output_reloc::Output_reloc): Add four new versions
326         for absolute relocs and target specific relocs.
327         (Output_reloc::set_needs_dynsym_index): Add TARGET_CODE case.
328         (Output_reloc::get_symbol_index): Likewise.
329         (Output_reloc::local_section_offset): Check that local_sym_index_
330         is not TARGET_CODE or 0.
331         (Output_reloc::symbol_value): Likewise.
332         (Output_reloc::write) [SHT_RELA]: Call target for target specific
333         reloc.
334         * target.h (class Target): Add reloc_symbol_index and reloc_addend
335         functions.  Add do_reloc_symbol_index and do_reloc_addend virtual
336         functions.
337         * layout.cc (add_target_dynamic_tags): Use output section for
338         DT_PLTRELSZ and DT_JMPREL.
339
340 2010-01-07  Ian Lance Taylor  <iant@google.com>
341
342         PR 11061
343         * output.h (class Output_reloc) [SHT_RELA]: Add is_relative
344         function.
345         (class Output_data_reloc_generic): Define.
346         (class Output_data_reloc_base): Change base class to
347         Output_data_reloc_generic.  Change add() method to call
348         bump_relative_reloc_count for a relative reloc.  Remove
349         sort_relocs_ field.
350         * output.cc (Output_data_reloc_base::do_write): Change sort_reloc_
351         to sort_relocs().
352         * layout.cc (Layout::add_target_dynamic_tags): Change dyn_rel to
353         Output_data_reloc_generic*.  Add DT_RELCOUNT/DT_RELACOUNT tag if
354         appropriate.
355         * layout.h (class Layout): Update declaration.
356
357 2010-01-07  Ian Lance Taylor  <iant@google.com>
358
359         * output.h (class Output_data): Add const version of
360         output_section and do_output_section.
361         (class Output_section_data): Add const version of
362         do_output_section.
363         (class Output_section): Likewise.
364         * layout.cc (Layout::add_target_dynamic_tags): New function.
365         * layout.h (class Layout): Update declarations.
366         * arm.cc (Target_arm::do_finalize_sections): Use
367         add_target_dynamic_tags.
368         * i386.cc (Target_i386::do_finalize_sections): Likewise.
369         * powerpc.cc (Target_powerpc::do_finalize_sections): Likewise.
370         * sparc.cc (Target_sparc::do_finalize_sections): Likewise.
371         * x86_64.cc (Target_x86_64::do_finalize_sections): Likewise.
372
373 2010-01-07  Ian Lance Taylor  <iant@google.com>
374
375         PR 11042
376         * copy-relocs.cc (Copy_relocs::emit_copy_reloc): Mark the dynamic
377         object as needed.
378
379 2010-01-07  Dmitry Gorbachev  <d.g.gorbachev@gmail.com>
380             Ian Lance Taylor  <iant@google.com>
381
382         PR 11019
383         * object.cc: Instantiate Xindex::initialize_symtab_xindex and
384         Xindex::read_symtab_xindex.
385
386 2010-01-07  Doug Kwan  <dougkwan@google.com>
387
388         * arm.cc (Insn_template::Type): New enum value THUMB16_SPECIAL_TYPE.
389         (Insn_template::thumb16_bcond_insn): New method declaration.
390         (Insn_template): Fix spelling.
391         (Stub::thumb16_special): New method declaration.
392         (Stub::do_write): Define virtual method which was previously pure
393         virtual.
394         (Stub::do_thumb16_special): New method declaration.
395         (Stub::do_fixed_endian_write): New template member.
396         (Reloc_stub::do_write): Remove.
397         (Reloc_stub::do_fixed_endian_write): Remove.
398         (Cortex_a8_stub): New class definition.
399         (Stub_factory::make_cortex_a8_stub): New method definition.
400         (Stub_factory::Stub_factory): Add missing static storage class
401         qualifier for elf32_arm_stub_a8_veneer_blx.
402
403 2010-01-07  Ian Lance Taylor  <iant@google.com>
404
405         PR 10980
406         * options.h (class General_options): Add --warn-unresolved-symbols
407         and --error-unresolved-symbols.
408         * errors.cc (Errors::undefined_symbol): Implement
409         --warn-unresolved-symbols.
410
411         * options.h (class General_options): Add -z text and -z textoff.
412         * layout.cc (Layout::finish_dynamic_section): Implement -z text.
413
414 2010-01-06  Sriraman Tallam  <tmsriram@google.com>
415
416         * gc.h (Garbage_collection::Cident_section_map): New typedef.
417         (Garbage_collection::cident_sections): New function.
418         (Garbage_collection::add_cident_section): New function.
419         (Garbage_collection::cident_sections_): New member.
420         (gc_process_relocs): Add references to sections whose names are C
421         identifiers.
422         * gold.h (cident_section_start_prefix): New constant.
423         (cident_section_stop_prefix): New constant.
424         (is_cident): New function.
425         * layout.cc (Layout::define_section_symbols): Replace string constants
426         with the newly defined constants.
427         * object.cc (Sized_relobj::do_layout): Track sections whose names are
428         C identifiers.
429         * testsuite/Makefile.am: Add gc_orphan_section_test.
430         * testsuite/Makefile.in: Regenerate.
431         * testsuite/gc_orphan_section_test.cc: New file.
432         * testsuite/gc_orphan_section_test.sh: New file.
433
434 2010-01-06  Ian Lance Taylor  <iant@google.com>
435
436         PR 10980
437         * options.h (class General_options): Add --warn-shared-textrel.
438         * layout.cc (Layout::finish_dynamic_section): Implement
439         --warn-shared-textrel.
440
441         PR 10980
442         * options.h (class General_options): Add --warn-multiple-gp.
443
444 2010-01-06  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
445
446         * Makefile.am (incremental_dump_DEPENDENCIES): Remove
447         $(THREADSLIB) and $(LIBDL).
448         * Makefile.in: Rebuild.
449
450 2010-01-06  Ian Lance Taylor  <iant@google.com>
451
452         PR 10980
453         * options.cc (General_options::parse_section_start): New function.
454         (General_options::section_start): New function.
455         (General_options::General_options): Initialize all members.
456         * options.h: Include <map>
457         (class General_options): Add --section-start.  Add section_starts_
458         member.
459         * layout.cc (Layout::attach_allocated_section_to_segment): If
460         --section-start was used, set the address of the segment.  Remove
461         local sort_sections.
462         (Layout::relaxation_loop_body): If the address of the load segment
463         has been set by --section-start, don't use it.
464         * output.h (Output_segment::update_flags_for_output_section): New
465         function.
466         * output.cc (Output_segment::add_output_section): Call
467         update_flags_for_output_section.
468
469 2010-01-05  Ian Lance Taylor  <iant@google.com>
470
471         PR 10980
472         * options.h (class General_options): Add --undefined-version.
473         * script.cc (struct Version_expression): Add was_matched_by_symbol
474         field.
475         (Version_script_info::matched_symbol): New function.
476         (Version_script_info::get_symbol_version_helper): Call
477         matched_symbol.
478         (Version_script_info::check_unmatched_names): New function.
479         * script.h (class Version_script_info): Update declarations.
480         * gold.cc (queue_middle_tasks): Handle --no-undefined-version.
481
482         * options.h (class General_options): Use DEFINE_bool_alias for
483         allow_multiple_definition.
484         * resolve.cc (Symbol_table::should_override): Don't test
485         allow_multiple_definition.
486
487         PR 10980
488         * options.h (class General_options): Add --cref.
489         * main.cc (main): Print cref table if --cref.  Don't close mapfile
490         until after printing cref table.
491         * cref.cc: Include "symtab.h".
492         (class Cref_inputs): Define Cref_table_compare and Cref_table.
493         (Cref_table_compare::operator()): New function.
494         (Cref_inputs::gather_cref): New function.
495         (filecol): New static const.
496         (Cref_inputs::print_cref): New function.
497         (Cref::print_cref): New function.
498         * cref.h: Include <cstdio>.
499         (class Cref): Update declarations.
500         * mapfile.h (Mapfile::file): New function.
501         * object.h (class Object): Define Symbols.  Declare virtual
502         do_get_global_symbols.
503         (Object::get_global_symbols): New function.
504         * object.cc (Input_objects::add_object): Pass object to cref_ if
505         --cref.
506         (Input_objects::archive_start): Likewise.
507         (Input_objects::archive_stop): Likewise.
508         (Input_objects::print_cref): New function.
509         * dynobj.h (Sized_dynobj::do_get_global_symbols): New function.
510         * dynobj.cc (big_endian>::do_add_symbols): Create symbols_ if
511         --cref.
512         * plugin.cc (Sized_pluginobj::do_get_global_symbols): New
513         function.
514         * plugin.h (class Sized_pluginobj): Update declarations.
515
516 2010-01-05  Ian Lance Taylor  <iant@google.com>
517
518         * symtab.cc (Symbol_table::add_from_object): Rename def parameter
519         to is_default_version.  Rename insdef to insdefault.
520         (Symbol_table::add_from_relobj): Rename def to is_default_version
521         and local to is_forced_local.
522         (Symbol_table::add_from_pluginobj): Likewise.
523         (Symbol_table::add_from_dynobj): Likewise.
524         (Symbol_table::define_special_symbol): Rename insdef to
525         insdefault.
526
527 2010-01-04  Ian Lance Taylor  <iant@google.com>
528
529         PR 10980
530         * options.h (class General_options): Add
531         --allow-multiple-definition and -z muldefs.
532         * resolve.cc (Symbol_table::should_override): Don't warn about a
533         multiple symbol definition if --allow-multiple-definition or -z
534         muldefs.
535
536         PR 10980
537         * options.h (class General_options): Add --add-needed and
538         --copy-dt-needed-entries.  Tweak --as-needed help entry.
539         * object.cc (Input_objects::check_dynamic_dependencies): Give an
540         error if --copy-dt-needed-entries aka --add-needed is used and
541         would cause a change in behaviour.
542
543         PR 10980
544         * options.h (class General_options): Add -G as a short version of
545         --shared.  Add no-op options -assert, -g, and -i.
546
547 2010-01-04  Sriraman Tallam  <tmsriram@google.com>
548
549         * gc.h (gc_process_relocs): Call is_section_foldable_candidate to
550         check for .text or .gnu.linkonce.t sections.
551         * icf.cc (Icf::find_identical_sections): Ditto.
552         Change the detection for mangled function name within the section
553         name.
554         * icf.h (is_section_foldable_candidate): New function.
555
556 2009-12-30  Ian Lance Taylor  <iant@google.com>
557
558         PR 10980
559         * options.h (class General_options): Permit two dashes with
560         --retain-symbols-file.
561
562 2009-12-30  Ian Lance Taylor  <iant@google.com>
563
564         PR 10979
565         * layout.cc (Layout::relaxation_loop_body): If -Ttext was used,
566         don't put the file header and segment headers in the text
567         segment.
568
569         PR 10979
570         * common.cc (Sort_commons::operator()): Stabilize sort when both
571         entries are NULL.
572         (Symbol_table::do_allocate_commons_list): When allocating common
573         symbols, skip a symbol which is no longer common.
574         * symtab.h (Symbol::is_common): Test whether the symbol comes from
575         an object before checking its type.
576         * testsuite/common_test_2.c: New file.
577         * testsuite/common_test_3.c: New file.
578         * testsuite/Makefile.am (check_PROGRAMS): Add common_test_2.
579         (common_test_2_SOURCES, common_test_2_DEPENDENCIES): Define.
580         (common_test_2_LDFLAGS, common_test_2_LDADD): Define.
581         (common_test_2_pic.o, common_test_2.so): New targets.
582         (common_test_3_pic.o, common_test_3.so): New targets.
583         * testsuite/Makefile.in: Rebuild.
584
585         PR 10979
586         * script.cc (read_input_script): If we see a new SECTIONS clause,
587         and we have added an input section, give an error.
588         * layout.h (class Layout): Add have_added_input_section function.
589         Add have_added_input_section_ field.
590         * layout.cc (Layout::Layout): Initialize
591         have_added_input_section_.
592         (Layout::layout): Set have_added_input_section_.
593         (Layout::layout_eh_frame): Likewise.
594
595 2009-12-30  Ian Lance Taylor  <iant@google.com>
596
597         PR 10931
598         * options.h (class General_options): Add --sort-common option.
599         * symtab.h (class Symbol_table): Define Sort_commons_order enum.
600         * common.cc (Sort_common): Add sort_order parameter to
601         constructor.  Add sort_order_ field.
602         (Sort_commons::operator): Check sort_order_.
603         (Symbol_table::allocate_commons): Determine the sort order.
604         (Symbol_table::do_allocate_commons): Add sort_order parameter.
605         Change all callers.
606         (Symbol_table::do_allocate_commons_list): Likewise.
607
608 2009-12-30  Ian Lance Taylor  <iant@google.com>
609
610         PR 10916
611         * symtab.cc (Symbol_table::add_from_relobj): When not exporting
612         symbols from this object, don't change the visibility of an
613         undefined symbol.
614         * testsuite/exclude_libs_test_1.c (lib1_ref): New function.
615
616 2009-12-30  Ian Lance Taylor  <iant@google.com>
617
618         PR 10861
619         * script.h (class Version_script_info): Define Language enum.
620         Update declarations.  Define Glob, Exact, and Lookup types.  Add
621         new fields globals_, locals_, and is_finalized_.
622         * script.cc: Various formatting fixes.
623         (class Parser_closure): Change language_stack_ from a vector of
624         std::string to one of Version_script_info::Language.  Adjust all
625         uses accordingly.
626         (class Lazy_demangler): Remove.
627         (struct Version_expression): Change language from std::string to
628         Version_script_info::Language.
629         (Version_script_info::Version_script_info): New function.
630         (Version_script_info::~Version_script_info): Don't call clear.
631         (Version_script_info::finalize): New function.
632         (Version_script_info::build_lookup_tables): New function.
633         (Version_script_info::build_expression_list_lookup): New
634         function.
635         (Version_script_info::get_symbol_version_helper): Rewrite to use
636         lookup tables.
637         (Version_script_info::print_expression_list): Adjust to use
638         Version_script_info::Language.
639         (script_push_lex_into_version_mode): Check that the version script
640         has not been finalized.
641         (version_script_push_lang): Change language string to
642         Version_script_info::Language.
643         * options.cc (Command_line::version_script): New function.
644         * options.h (class General_options): Add finalize_dynamic_list
645         function.  Change version_script from declaration to definition.
646         * testsuite/ver_test_4.script: Remove duplicate def of t2_2.
647         * testsuite/version_script.map: Remove duplicate def of foo.
648         * testsuite/Makefile.am (ver_matching_def.so): Depend upon
649         version_script.map.
650         * testsuite/Makefile.in: Rebuild.
651
652 2009-12-30  Ian Lance Taylor  <iant@google.com>
653
654         PR 10843
655         * target-reloc.h (relocate_for_relocatable): When copying a reloc,
656         if the input symbol index is 0, make the output symbol index 0.
657
658 2009-12-30  Ian Lance Taylor  <iant@google.com>
659
660         PR 10670
661         * options.h (class General_options): Add -x/--discard-all.
662         * object.cc (Sized_relobj::do_count_local_symbols): Handle
663         --discard-all.  If the local symbol needs a dynamic entry, check
664         that before handling --discard-locals.
665
666 2009-12-30  Ian Lance Taylor  <iant@google.com>
667
668         PR 10450
669         * output.cc (Output_segment::Output_segment): If PT_TLS, set the
670         flags to PF_R.
671         (Output_segment::add_output_section): Don't change the flags if
672         the type is PT_TLS.
673
674         PR 10450
675         * dynobj.cc (Dynobj::create_gnu_hash_table): Add symbols to the
676         GNU hash table if they need a dynamic value.  Otherwise, don't add
677         them if they are defined in a dynamic object or are forced local.
678
679 2009-12-29  Ian Lance Taylor  <iant@google.com>
680
681         PR 10450
682         * layout.cc (Layout::create_dynamic_symtab): Only set entsize of
683         .gnu.hash table for a 32-bit target.
684
685         PR 10450
686         * symtab.h (Symbol::needs_dynsym_entry): A symbol in both a
687         regular and a dynamic object only needs a dynamic symbol table
688         entry if it is externally visible.
689
690         PR 10450
691         * i386.cc (class Target_i386): Initialize global_offset_table_ in
692         constructor.  Add global_offset_table_ field.
693         (Target_i386::got_section): Set global_offset_table_.
694         (Target_i386::do_finalize_sections): Set global_offset_table_
695         size.
696         * x86_64.cc (class Target_x86_64): Initialize global_offset_table_
697         in constructor.  Add global_offset_table_ field.
698         (Target_x86_64::got_section): Set global_offset_table_.
699         (Target_x86_64::do_finalize_sections): Set global_offset_table_
700         size.
701
702         * layout.cc (Layout::Layout): Initialize increase_relro_.
703         (Layout::get_output_section): Add is_relro, is_last_relro, and
704         is_first_non_relro parameters.  Change all callers.
705         (Layout::choose_output_section): Likewise.
706         (Layout::add_output_section_data): Likewise.
707         (Layout::make_output_section): Likewise.
708         (Layout::set_segment_offsets): Clear increase_relro when using a
709         linker script.
710         * layout.h (class Layout): Add increase_relro method.  Add
711         increase_relro_ field.  Update declarations.
712         * output.cc (Output_section::Output_section): Initialize
713         is_last_relro_ and is_first_non_relro_.
714         (Output_segment::add_output_section): Group relro sections is
715         do_sort is true.  Handle is_last_relro and is_first_non_relro.
716         (Output_segment::maximum_alignment): Remove relro handling.
717         (Output_segment::set_section_addresses): Add increase_relro
718         parameter.  Change all callers.  Add initial alignment to align
719         relro sections on separate page.  Remove old relro handling.
720         (Output_segment::set_section_list_addresses): Remove in_relro
721         parameter.  Change all callers.
722         (Output_segment::set_offset): Add increase parameter.  Change all
723         callers.  Remove old relro handling.
724         * output.h (class Output_section): Add new methods: is_last_relro,
725         set_is_last_relro, is_first_non_relro, set_is_first_non_relro.
726         Add is_last_relro_ and is_first_non_relro_ fields.
727         * i386.cc (Target_i386::got_section): Don't call set_is_relro.
728         Create separate .got.plt section.  Call increase_relro.
729         * x86_64.cc (Target_x86_64::got_section): Likewise.
730         * testsuite/relro_script_test.t: Add .got.plt.
731
732         PR 10450
733         * layout.cc (Layout::Layout): Initialize dynamic_symbol_ field.
734         (Layout::create_initial_dynamic_sections): Set dynamic_symbol_.
735         (Layout::finalize): Call set_dynamic_symbol_size.
736         (Layout::set_dynamic_symbol_size): New function.
737         * layout.h (class Layout): Add dynamic_symbol_ field.  Declare
738         set_dynamic_symbol_size.
739
740         PR 10450
741         * output.h (class Output_section): Add is_entsize_zero_ field.
742         * output.cc (Output_section::Output_section): Initialize
743         is_entsize_zero_.
744         (Output_section::set_entsize): If two different entsizes are
745         requested, force it to zero.
746         (Output_section::add_input_section): Set flags for .debug_str
747         before updating section flags.  Set entsize.
748         (Output_section::update_flags_for_input_section): Set SHF_MERGE
749         and SHF_STRING if all input sections have those flags.
750
751 2009-12-29   Rafael Espindola  <espindola@google.com>
752
753         * main.cc (main): Fix the sys time reporting.
754         * workqueue.cc (Workqueue::find_and_run_task): Fix the sys time
755         reporting.
756
757 2009-12-29  Sriraman Tallam  <tmsriram@google.com>
758
759         * options.cc (General_options::parse_version): Allow -v to exit
760         without an error if there is nothing to link.
761
762 2009-12-29  Ian Lance Taylor  <iant@google.com>
763
764         * configure.ac: Set the MCMODEL_MEDIUM conditional to false if
765         using a version of gcc before 4.1.
766         * configure: Rebuild.
767
768 2009-12-28  Chris Demetriou  <cgd@google.com>
769
770         * attributes.cc (Output_attributes_section_data::do_write): Use
771         std::vector::front rather than std::vector::data.
772
773 2009-12-28  Ian Lance Taylor  <iant@google.com>
774
775         * symtab.h (class Symbol_table): Add enum Defined.
776         * resolve.cc (Symbol_table::should_override): Add defined
777         parameter.  Change all callers.  Test whether object is NULL
778         before calling a method on it.
779         (Symbol_table::report_resolve_problem): Add defined parameter.
780         Change all callers.
781         (Symbol_table::should_override_with_special): Likewise.
782         * symtab.cc (Symbol_table::define_in_output_data): Add defined
783         parameter.  Change all callers.
784         (Symbol_table::do_define_in_output_data): Likewise.
785         (Symbol_table::define_in_output_segment): Likewise.
786         (Symbol_table::do_define_in_output_segment): Likewise.
787         (Symbol_table::define_as_constant): Likewise.
788         (Symbol_table::do_define_as_constant): Likewise.
789         * script.h (class Symbol_assignment): Add is_defsym parameter to
790         constructor; change all callers.
791         * script.cc (Script_options::add_symbol_assignment): Add is_defsym
792         parameter.  Change all callers.  Add is_defsym_ field.
793         (class Parser_closure): Add parsing_defsym parameter to
794         constructor; change all callers.  Add parsing_defsym accessor
795         function.  Add parsing_defsym_ field.
796
797 2009-12-28  Ian Lance Taylor  <iant@google.com>
798
799         * gold.cc (queue_middle_tasks): Fix formatting.
800         * object.cc (Relobj::is_section_name_included): Likewise.
801
802 2009-12-23  Ian Lance Taylor  <iant@google.com>
803
804         * i386.cc (Target_i386::do_calls_non_split): Recognize
805         -fsplit-stack prologue for a function with a static chain.
806         * x86_64.cc (Target_x86_64::do_calls_non_split): Recognize
807         -fsplit-stack prologue when using %r11.
808
809 2009-12-21  Sriraman Tallam  <tmsriram@google.com>
810
811         * options.cc (General_options::parse_version): Make -v continue and do
812         the link like GNU ld does.
813
814 2009-12-17  Rafael Avila de Espindola  <espindola@google.com>
815
816         * Makefile.am (CCFILES): Add timer.cc.
817         (HFILES): Add timer.h.
818         * configure.ac: Check for sysconf and times.
819         * main.cc: include timer.h.
820         (main): Use Timer instead of get_run_time.
821         * timer.cc: New.
822         * timer.h: New.
823         * workqueue.cc: include timer.h.
824         (Workqueue::find_and_run_task):
825         Report user, sys and wall time.
826         * Makefile.in: Regenerate.
827         * config.in: Regenerate.
828         * configure: Regenerate.
829
830 2009-12-16  Doug Kwan  <dougkwan@google.com>
831
832         * arm.cc (Arm_relobj::scan_sections_for_stubs): Exclude ICF-eliminated
833         sections.
834         * object.cc (Sized_relobj::do_finalize_local_symbols): Handle
835         relaxed input sections.
836         * output.cc (Output_section::find_relaxed_input_section): Change
837         return type to Output_relaxed_input_section pointer.  Adjust code
838         for new type of relaxed_input_section_map_.
839         * output.h (Output_section::find_relaxed_input_section): Change
840         return type to Output_relaxed_input_section pointer.
841         (Output_section::Output_relaxed_input_section_by_input_section_map):
842         New type.
843         (Output_section::relaxed_input_section_map_): Change type to
844         Output_section::Output_relaxed_input_section_by_input_section_map.
845         * symtab.cc (Symbol_table::compute_final_value): Handle relaxed
846         input section.
847
848 2009-12-15  Ian Lance Taylor  <iant@google.com>
849
850         * layout.cc (Layout::create_shstrtab): Only write out after input
851         sections if we are compressing debug sections.
852
853 2009-12-15  Ian Lance Taylor  <iant@google.com>
854
855         * archive.cc (Archive::add_symbols): Only look up a symbol without
856         a version if there is, in fact, a version.
857
858 2009-12-14  Ian Lance Taylor  <iant@google.com>
859
860         Revert -Wshadow changes, all changes from:
861         2009-12-11  Doug Kwan  <dougkwan@google.com>
862         2009-12-11  Nick Clifton  <nickc@redhat.com>
863         * configure.ac: Remove -Wshadow when setting WARN_CXXFLAGS.
864
865 2009-12-11  Doug Kwan  <dougkwan@google.com>
866
867         * arm.cc (Target_arm::do_finalize_sections): Fix build breakage
868         due to -Wshadow.
869         * attributes.cc (Object_attribute::size): Ditto.
870         (Attributes_section_data::size): Ditto.
871         (Attributes_section_data::Attributes_section_data): Ditto.
872         (Output_attributes_section_data::do_write): Ditto.
873         * attributes.h (Object_attribute::set_type): Ditto.
874         * testsuite/tls_test_main.cc (safe_lock, safe_unlock): Ditto.
875
876 2009-12-11  Nick Clifton  <nickc@redhat.com>
877
878         * archive.cc: Fix shadowed variable warnings.
879         * arm.cc: Likewise.
880         * compressed_output.cc: Likewise.
881         * compressed_output.h: Likewise.
882         * configure: Likewise.
883         * dwarf_reader.cc: Likewise.
884         * dynobj.cc: Likewise.
885         * dynobj.h: Likewise.
886         * ehframe.cc: Likewise.
887         * ehframe.h: Likewise.
888         * errors.cc: Likewise.
889         * expression.cc: Likewise.
890         * fileread.cc: Likewise.
891         * fileread.h: Likewise.
892         * freebsd.h: Likewise.
893         * i386.cc: Likewise.
894         * icf.cc: Likewise.
895         * incremental.h: Likewise.
896         * layout.cc: Likewise.
897         * layout.h: Likewise.
898         * mapfile.cc: Likewise.
899         * merge.cc: Likewise.
900         * merge.h: Likewise.
901         * object.cc: Likewise.
902         * object.h: Likewise.
903         * options.h: Likewise.
904         * output.cc: Likewise.
905         * output.h: Likewise.
906         * parameters.cc: Likewise.
907         * plugin.cc: Likewise.
908         * powerpc.cc: Likewise.
909         * reduced_debug_output.cc: Likewise.
910         * reduced_debug_output.h: Likewise.
911         * reloc.cc: Likewise.
912         * reloc.h: Likewise.
913         * resolve.cc: Likewise.
914         * script-sections.cc: Likewise.
915         * script.cc: Likewise.
916         * script.h: Likewise.
917         * sparc.cc: Likewise.
918         * symtab.cc: Likewise.
919         * symtab.h: Likewise.
920         * target-select.cc: Likewise.
921         * target-select.h: Likewise.
922         * token.h: Likewise.
923         * workqueue.cc: Likewise.
924         * workqueue.h: Likewise.
925         * x86_64.cc: Likewise.
926
927 2009-12-10  Doug Kwan  <dougkwan@google.com>
928
929         * arm.cc (attributes.h): New include.
930         (Arm_relobj::Arm_relobj): Initialize attributes_section_data_.
931         (Arm_relobj::~Arm_relobj): Delete object pointed by
932         attributes_section_data_.
933         (Arm_relobj::attributes_section_data): New method definition.
934         (Arm_relobj::attributes_section_data_): New data member declaration.
935         (Arm_dynobj::Arm_dynobj): Initialize attributes_section_data_.
936         (Arm_dynobj::~Arm_dynobj): Delete object pointed by
937         attributes_section_data_.
938         (Arm_dynobj::attributes_section_data): New method definition.
939         (Arm_dynobj::attributes_section_data_): New data member declaration.
940         (Target_arm::Target_arm): Initialize attributes_section_data_.  Change
941         initialization value of may_use_blx_ to false.
942         (Target_arm::using_thumb2, Target_arm::using_thumb_only,
943         Target_arm::may_use_arm_nop, Target_arm::may_use_thumb2_nop): Use
944         object attributes to compute results instead of hard-coding.
945         (Target_arm::do_attribute_arg_type, Target_arm::do_attributes_order,
946         Target_arm::get_secondary_compatible_arch,
947         Target_arm::set_secondary_compatible_arch
948         Target_arm::tag_cpu_arch_combine, Target_arm::aeabi_enum_name,
949         Target_arm::tag_cpu_name_value, Target_arm::merge_object_attributes):
950         New method declarations.
951         (Target_arm::get_aeabi_object_attribute): New method definition.
952         (Target_arm::attributes_section_data_): New data member declaration.
953         (read_arm_attributes_section): New template definition.
954         (Arm_relobj::do_read_symbols): Read attributes section if it exists.
955         (Arm_dynobj::do_read_symbols): Ditto.
956         (Target_arm::do_finalize_sections): Merge attributes sections from
957         input.  Check for BLX use after attributes section merging.
958         Fix __exidx_start and __exidx_end visibility.  Create an
959         .ARM.attributes section if necessary.
960         (Target_arm::get_secondary_compatible_arch,
961         Target_arm::set_secondary_compatible_arch,
962         Target_arm::tag_cpu_arch_combine, Target_arm::aeabi_enum_name,
963         Target_arm::tag_cpu_name_value, Target_arm::merge_object_attributes,
964         Target_arm::do_attribute_arg_type, Target_arm::do_attributes_order): 
965         New method definitions.
966
967 2009-12-09  Ian Lance Taylor  <iant@google.com>
968
969         * plugin.cc (Plugin::load): Don't cast from void* to a function
970         pointer.
971
972 2009-12-09  Ian Lance Taylor  <iant@google.com>
973
974         * dynobj.cc (Sized_dynobj::do_read_symbols): Clear version
975         information fields.
976
977 2009-12-09  H.J. Lu  <hongjiu.lu@intel.com>
978
979         * testsuite/Makefile.am (two_file_shared_1_pic_2_test_DEPENDENCIES):
980         Replace two_file_shared_1.so with two_file_shared_2.so.
981         * testsuite/Makefile.in: Regenerated.
982
983 2009-12-08  Doug Kwan  <dougkwan@google.com>
984
985         * Makefile.am (CCFILES): Add attributes.cc and int_encoding.cc.
986         (HFILES): Add attributes.h and int_encoding.h.
987         * Makefile.in: Regenerate.
988         * dwarf_reader.cc (read_unsigned_LEB_128, read_signed_LEB_128): Move
989         function definitions to int_encoding.cc
990         * dwarf_reader.h (read_unsigned_LEB_128, read_signed_LEB_128): Move
991         prototypes to int_encoding.h
992         * reduced_debug_output.cc (int_encoding.h): New include.
993         (write_unsigned_LEB_128, get_length_as_unsigned_LEB_128): Move
994         function definitions to int_encoding.cc
995         (insert_into_vector, read_from_pointer): Move template definitions to
996         int_encoding.h
997         * attributes.cc: New file.
998         * attributes.h: New file.
999         * int_encoding.cc: New file.
1000         * int_encoding.h: New file.
1001
1002 2009-12-07  Rafael Avila de Espindola  <espindola@google.com>
1003
1004         PR gold/11055
1005         * incremental-dump.cc (dump_incremental_inputs): New.
1006         (main): Use dump_incremental_inputs.
1007
1008 2009-12-07  H.J. Lu  <hongjiu.lu@intel.com>
1009
1010         PR gold/10893
1011         * i386.cc (Target_i386::Scan::globa): Use is_func instead of
1012         checking elfcpp::STT_FUNC.
1013         (Target_i386::Relocate::relocate): Likewise.
1014         * x86_64.cc (Target_x86_64::Scan::global): Likewise.
1015
1016         * symtab.cc (Symbol_table::sized_write_symbol): Turn IFUNC
1017         symbols from shared libraries into normal FUNC symbols.
1018
1019         * symtab.h (Symbol): Add is_func and use it.
1020
1021 2009-12-05  Doug Kwan  <dougkwan@google.com>
1022
1023         * arm.cc (Target_arm::arm_info): Initialize new fields
1024         attributes_section and attributes_vendor.
1025         * i386.cc (Target_i386::i386_info): Same.
1026         * object.cc (Sized_relobj::do_layout): Skip attribute section.
1027         * gold/powerpc.cc (Target_powerpc::powerpc_info): Initialize new
1028         fields attributes_section and attributes_vendor.
1029         * sparc.cc (Target_sparc::sparc_info): Same.
1030         * target.h (Target::attributes_section, Target::attributes_vendor,
1031         Target::is_attributes_section, Target::attribute_arg_type,
1032         Target::attributes_order): New method definitions.
1033         (Target::Target_info::attributes_section,
1034         Target::Target_info::attributes_vendor): New fields.
1035         (Target::do_attribute_arg_type, Target::do_attributes_order): New
1036         virtual method definitions.
1037         * x86_64.cc (Target_x86_64::x86_64_info): Initialize new fields
1038         attributes_section and attributes_vendor.
1039         * testsuite/testfile.cc (Target_test::test_target_info): Same.
1040
1041 2009-12-05  Doug Kwan  <dougkwan@google.com>
1042
1043         * arm.cc: Update comments about interworking and stub generation.
1044         (Target_arm::Relocate::reloc_is_non_pic): Update list of relocations
1045         considered as non-PIC.
1046         (Arm_relocate_functions::base_abs): Fix formatting.
1047         (Arm_relocate_functions::got_prel): Fix comment.  Change interface
1048         of function to use GOT entry address instead of offset.
1049         (Target_arm::Scan::global): Issue an error if a symbol would need a
1050         PLT does not get one because it is untyped.  Remove code to create
1051         dynamic symbols for relative branches.
1052         (Target_arm::Relocate::relocate: Use 0 instead of false since function
1053         takes unsigned integer instead of boolean.
1054
1055 2009-12-05  H.J. Lu  <hongjiu.lu@intel.com>
1056
1057         * testsuite/Makefile.am (constructor_test_LDADD): New. Empty.
1058         (two_file_test_LDADD): Likewise.
1059         (common_test_1_LDADD): Likewise.
1060         (exception_test_LDADD) Likewise.
1061         (weak_test_LDADD): Likewise.
1062         (many_sections_test_LDADD): Likewise.
1063         (initpri1_LDADD): Likewise.
1064         (script_test_1_LDADD): Likewise.
1065         (script_test_2_LDADD): Likewise.
1066         (justsyms_LDADD): Likewise.
1067         (binary_test_LDADD): Likewise.
1068         (large_LDADD): Likewise.
1069         * testsuite/Makefile.in: Regenerated.
1070
1071 2009-12-04  H.J. Lu  <hongjiu.lu@intel.com>
1072
1073         * resolve.cc (symbol_to_bits): Treat STB_GNU_UNIQUE as STB_GLOBAL.
1074         (Symbol_table::override_with_special): Likewise.
1075         (Symbol_table::add_from_object): Likewise.
1076
1077 2009-12-04  Rafael Avila de Espindola  <espindola@google.com>
1078
1079         * incremental.cc (Incremental_inputs::sized_create_inputs_section_data):
1080         Don't set the data_offset twice.
1081
1082 2009-12-04  Rafael Avila de Espindola  <espindola@google.com>
1083
1084         * testsuite/Makefile.in: Regenerate.
1085
1086 2009-12-03  Doug Kwan  <dougkwan@google.com>
1087
1088         * arm.cc: Remove comment about missing .ARM.exidx section symbols.
1089         (Target_arm::do_finalize_sections): Add parameter for symbol table
1090         pointer.  Add __exidx_start and __exidx_end symbols as appropriate.
1091         * i386.cc (Target_i386::do_finalize_sections): Add an additional
1092         parameter for symbol table pointer.
1093         * layout.cc (Layout::finalize): Call Target::finalize_sections with
1094         an additional parameter for a pointer to symbol table.
1095         * powerpc.cc (Target_powerpc::do_finalize_sections): Add an additional
1096         parameter for a symbol table pointer.
1097         * sparc.cc (Target_sparc::do_finalize_sections): Ditto.
1098         * target.h (Target::finalize_sections, Target::do_finalize_sections):
1099         Ditto.
1100         * x86_64.cc (Target_x86_64::do_finalize_sections): Add an additional
1101         parameter for a symbol table pointer.
1102
1103 2009-12-03  Rafael Avila de Espindola  <espindola@google.com>
1104
1105         * incremental.cc (Incremental_inputs_header)
1106         (Incremental_inputs_header_write, Incremental_inputs_entry)
1107         (Incremental_inputs_entry_write): Move ...
1108         * incremental.h (Incremental_inputs_header)
1109         (Incremental_inputs_header_write, Incremental_inputs_entry)
1110         (Incremental_inputs_entry_write): here.
1111
1112 2009-12-02  Rafael Avila de Espindola  <espindola@google.com>
1113
1114         * incremental.cc (make_sized_incremental_binary): Set the target.
1115         Error if it is incompatible.
1116         * output.h (Output_file): Add filename method.
1117
1118 2009-12-02  Rafael Avila de Espindola  <espindola@google.com>
1119
1120         * incremental.cc (Incremental_inputs_entry): Remove unused argument
1121         from the get_* methods.
1122
1123 2009-12-02  Rafael Avila de Espindola  <espindola@google.com>
1124
1125         * incremental-dump.cc (main): Check that the offeset of a script is 0.
1126         * incremental.cc (Incremental_inputs::sized_create_inputs_section_data):
1127         Write 0 for the data_offset of scripts.
1128
1129 2009-12-02  Rafael Avila de Espindola  <espindola@google.com>
1130
1131         * testsuite/Makefile.am: Add the incremental_test.sh test.
1132         * testsuite/incremental_test.sh: New.
1133         * testsuite/incremental_test_1.c: New.
1134         * testsuite/incremental_test_2.c: New.
1135
1136 2009-12-01  Rafael Avila de Espindola  <espindola@google.com>
1137
1138        * incremental-dump.cc (main): Fix typos.
1139
1140 2009-11-27  Rafael Avila de Espindola  <espindola@google.com>
1141
1142         PR gold/11025
1143         * incremental-dump.cc (main): Use llu to print 64 bit values.
1144
1145 2009-11-26  Per Ã˜yvind Karlsen <peroyvind@mandriva.org>
1146             H.J. Lu  <hongjiu.lu@intel.com>
1147
1148         * Makefile.am (incremental_dump_DEPENDENCIES): Add $(THREADSLIB)
1149         $(LIBDL).
1150         (incremental_dump_LDADD): Likewise.
1151         * Makefile.in: Regenerated.
1152
1153 2009-11-25  Doug Kwan  <dougkwan@google.com>
1154         
1155         Revert:
1156
1157         2009-11-25  Doug Kwan  <dougkwan@google.com>
1158
1159                 * arm.cc (Target_arm::Target_arm): Move method definition
1160                 outside of class definition.  Add code to handle
1161                 --target1-rel, --target1-abs and --target2= options.
1162                 (Target_arm::get_reloc_reloc_type): Change method to be
1163                 non-static and const.
1164                 (Target_arm::target1_is_rel_, Target_arm::target2_reloc_):
1165                 New data member declaration.
1166                 (Target_arm::Scan::local, Target_arm::Scan::global,
1167                 Target_arm::Relocate::relocate,
1168                 Target_arm::Relocatable_size_for_reloc::get_size_for_reloc):
1169                 Adjust call to Target_arm::get_real_reloc_type.
1170                 (Target_arm::get_real_reloc_type): Use command line options
1171                 to determine real types of R_ARM_TARGET1 and R_ARM_TARGET2.
1172                 * options.h (--target1-rel, --target1-abs, --target2): New
1173                 ARM-only options.
1174
1175 2009-11-25  Doug Kwan  <dougkwan@google.com>
1176
1177         * arm.cc (Target_arm::Target_arm): Move method definition outside of
1178         class definition.  Add code to handle --target1-rel, --target1-abs
1179         and --target2= options.
1180         (Target_arm::get_reloc_reloc_type): Change method to be non-static
1181         and const.
1182         (Target_arm::target1_is_rel_, Target_arm::target2_reloc_): New data
1183         member declaration.
1184         (Target_arm::Scan::local, Target_arm::Scan::global,
1185         Target_arm::Relocate::relocate,
1186         Target_arm::Relocatable_size_for_reloc::get_size_for_reloc): Adjust
1187         call to Target_arm::get_real_reloc_type.
1188         (Target_arm::get_real_reloc_type): Use command line options to
1189         determine real types of R_ARM_TARGET1 and R_ARM_TARGET2.
1190         * options.h (--target1-rel, --target1-abs, --target2): New ARM-only
1191         options.
1192
1193 2009-11-25  Doug Kwan  <dougkwan@google.com>
1194
1195         * arm.cc (Target_arm::may_use_thumb2_nop): New method definition.
1196         (Arm_relocate_functions::thumb_branch_common): New metod declaration.
1197         (Arm_relocate_functions::abs12, Arm_relocate_functions::abs16): Fix
1198         formatting.
1199         (Arm_relocate_functions::thm_call): Replace body with a call to
1200         Arm_relocate_functions::thumb_branch_common.
1201         (Arm_relocate_functions::thm_jump24,
1202         Arm_relocate_functions::thm_xpc22): New method definitions.
1203         (Arm_relocate_functions::thumb_branch_common): New method definition.
1204         (Reloc_stub::stbu_type_for_reloc): Fix incorrect uses of bit-wise-or
1205         operator.
1206         (Target_arm::Relocate::relocate): Adjust call to thm_call.
1207         Add code to handle R_ARM_THM_XPC22 and R_ARM_THM_JUMP24.
1208
1209 2009-11-24  Rafael Avila de Espindola  <espindola@google.com>
1210
1211         * Makefile.am: Build incremental-dump
1212         * Makefile.in: Regenerate.
1213         * incremental-dump.cc: New.
1214         * incremental.cc (Incremental_inputs_header_data,
1215         Incremental_inputs_entry_data): Move to incremental.h
1216         * incremental.h: (Incremental_inputs_header_data,
1217         Incremental_inputs_entry_data): Move from incremental.cc
1218
1219 2009-11-24  Rafael Avila de Espindola  <espindola@google.com>
1220
1221         * incremental.cc (Incremental_inputs_header,
1222         Incremental_inputs_header_write, Incremental_inputs_entry,
1223         Incremental_inputs_entry_write): Add a typedef with the data type.
1224
1225 2009-11-24  Rafael Avila de Espindola  <espindola@google.com>
1226
1227         * incremental.cc (Incremental_inputs_header,
1228         Incremental_inputs_header_write, Incremental_inputs_entry,
1229         Incremental_inputs_entry_write): Update comment about which
1230         type has the filed descriptions.
1231
1232 2009-11-15  Doug Kwan  <dougkwan@google.com>
1233
1234         * arm.cc (Target_arm::may_use_arm_nop): New method definition.
1235         (Arm_relocate_functions::arm_branch_common): Change method defintion
1236         in class definition to a method declaration and update list of formal
1237         parameters.
1238         (Arm_relocate_functions::plt32, Arm_relocate_functions::call,
1239         Arm_relocation_functions::jump24): Adjust call to
1240         Arm_relocate_functions::arm_branch_common.  Update list of formal
1241         parameters.
1242         (Arm_relocate_functions::xpc25): New method definition.
1243         (Arm_relocate_functions::arm_branch_common): Move method defintion
1244         out from class definition.  Use stubs for mode-switching and extending
1245         branch ranges.
1246         (Target_arm::Relocate::relocate): Handle weakly-undefined symbols
1247         specially.  Change code to enable use of stubs in ARM branches.
1248
1249 2009-11-10  Doug Kwan  <dougkwan@google.com>
1250
1251         * arm.cc (Arm_relobj::do_relocate_sections): Remove options parameter
1252         in method declaration.
1253         (Target_arm::relocate_stub): New method declaration.
1254         (Target_arm::default_target): Change to return a pointer instead of
1255         a const reference.
1256         (Reloc_stub::stub_type_for_reloc): Adjust for the change in
1257         Target_arm::default_target.
1258         (Arm_Relobj::do_relocate_sections): Remove options paramater in
1259         method definition.
1260         (Target_arm::relocate_section): Adjust view.
1261         (Target_arm::relocate_stub): New method definition.
1262
1263 2009-11-10  Doug Kwan  <dougkwan@google.com>
1264
1265         * i386.cc (Target_i386::do_calls_non_split): Add a cast to avoid
1266         a format warning.
1267         * incremental.cc (open_incremental_binary): Initialized local
1268         variables to avoid warnings.
1269         * object.cc (make_elf_object): Ditto.
1270         * x86_64.cc (Target_x86_64::do_calls_non_split): Add a cast to avoid
1271         a format warning.
1272  
1273 009-11-09  H.J. Lu  <hongjiu.lu@intel.com>
1274
1275         PR gold/10930
1276         * testsuite/plugin_test.c: Include "config.h".
1277
1278 2009-11-09  Doug Kwan  <dougkwan@google.com>
1279
1280         * arm.cc (Target_arm::fake_relnum_for_stubs): New constant.
1281         (arm_symbol_value): Remove.
1282         (Arm_relocate_functions::arm_branch_common,
1283         Arm_relocate_functions::abs8, Arm_relocate_functions::thm_abs5,
1284         Arm_relocate_functions::abs12, Arm_relocate_functions::abs16,
1285         Arm_relocate_functions::abs32, Arm_relocate_functions::rel32,
1286         Arm_relocate_functions::thm_call, Arm_relocate_functions::plt32,
1287         Arm_relocate_functions::call, Arm_relocate_functions::jump24,
1288         Arm_relocate_functions::prel31, Arm_relocate_functions::mov_abs_nc,
1289         Arm_relocate_functions::movt_abs, Arm_relocate_functions::movw_abs_nc,
1290         Arm_relocate_functions::thm_mobw_abs_nc,
1291         Arm_relocate_functions::thm_mov_abs,
1292         Arm_relocate_functions::movw_prel_nc,
1293         Arm_relocate_functions::thm_movt_abs,
1294         Arm_relocate_functions::movt_prel,
1295         Arm_relocate_functions::thm_movw_prel_nc,
1296         Arm_relocate_functions::thm_movt_prel): Adjust callers of the above.
1297         (Target_arm::Relocate::relocate): Only decompose address into two
1298         parts if relocation type uses the thumb-bit and pass the actual
1299         bit instead of a flag indicating that the thumb-bit is used.  Adjust
1300         calls to methods in Arm_relocate_functions for this change.
1301
1302 2009-11-08  Ian Lance Taylor  <iant@google.com>
1303
1304         PR 10925
1305         * reloc.cc: Instantiate
1306         Sized_relobj::initialize_input_to_output_maps and
1307         Sized_relobj:free_input_to_output_maps.
1308
1309 2009-11-06  Ian Lance Taylor  <iant@google.com>
1310
1311         PR 10876
1312         * defstd.cc (in_segment): Set only_if_ref true for "end".
1313
1314 2009-11-06  Doug Kwan  <dougkwan@google.com>
1315
1316         * arm.cc (class Reloc_stub): Correct a comment.
1317         (Target_arm::Target_arm): Initialize arm_input_section_map_.
1318         (Target_arm::scan_section_for_stubs): New method declaration.
1319         (Target_arm::do_make_elf_object, Target_arm::do_make_output_section):
1320         Change methods from private to protected.
1321         (Target_arm::do_may_relax): New method definition.
1322         (Target_arm::do_relax, Target_arm::group_sections,
1323         Target_arm::scan_reloc_for_stub,
1324         Target_arm::scan_reloc_section_for_stubs): New method declarations.
1325         (Target_arm::arm_input_section_map_): New data member declaration.
1326         (Target_arm::scan_reloc_for_stub,
1327         Target_arm::scan_reloc_section_for_stubs,
1328         Target_arm::scan_section_for_stubs, Target_arm::group_sections,
1329         Target_arm::do_relax): New method definitions.
1330
1331 2009-11-06  Mikolaj Zalewski  <mikolaj@google.com>
1332
1333         * configure.ac: Check for (struct stat)::st_mtim
1334         * fileread.cc (File_read::get_mtime): Use st_mtim if available.
1335         * config.in: Regenerate.
1336         * configure: Regenerate.
1337
1338 2009-11-05  Ian Lance Taylor  <iant@google.com>
1339
1340         PR 10910
1341         * output.cc (Output_segment::add_output_section): Add missing
1342         return statement.
1343
1344 2009-11-04  Ian Lance Taylor  <iant@google.com>
1345
1346         PR 10880
1347         * object.h (class Object): Add is_needed and set_is_needed
1348         methods.  Add is_needed_ field.  Make bool fields into bitfields.
1349         * symtab.cc (Symbol_table::set_dynsym_indexes): If a symbol is
1350         defined in a dynamic object and referenced by a regular object,
1351         set is_needed for the dynamic object.
1352         * layout.cc (Layout::finish_dynamic_section): Don't add DT_NEEDED
1353         if the file is marked with as_needed and it is not needed.
1354
1355 2009-11-04  Ian Lance Taylor  <iant@google.com>
1356
1357         PR 10887
1358         * arm.cc (Target_arm::do_finalize_sections): Don't add dynamic
1359         tags if data is discarded by linker script.
1360         * i386.cc (Target_i386::do_finalize_sections): Likewise.
1361         * powerpc.cc (Target_powerpc::do_finalize_sections): Likewise.
1362         * sparc.cc (Target_sparc::do_finalize_sections): Likewise.
1363         * x86_64.cc (Target_x86_64::do_finalize_sections): Likewise.
1364
1365 2009-11-04  Ian Lance Taylor  <iant@google.com>
1366
1367         * layout.cc (Layout::get_output_section): Add is_interp and
1368         is_dynamic_linker_section parameters.  Change all callers.
1369         (Layout::choose_output_section): Likewise.
1370         (Layout::make_output_section): Likewise.
1371         (Layout::add_output_section_data): Add is_dynamic_linker_section
1372         parameter.  Change all callers.
1373         * layout.h (class Layout): Update declarations.
1374         * output.h (class Output_section): Add is_interp, set_is_interp,
1375         is_dynamic_linker_section, set_is_dynamic_linker_section methods.
1376         Add is_interp_, is_dynamic_linker_section_ fields.  Change
1377         generate_code_fills_at_write_ to a bitfield.
1378         * output.cc (Output_section::Output_sections): Initialize new
1379         fields.
1380         (Output_segment::add_output_section): Add do_sort parameter.
1381         Change all callers.
1382
1383 2009-11-03  Ian Lance Taylor  <iant@google.com>
1384
1385         PR 10860
1386         * options.h (class General_options): Add --warn-common.
1387         * resolve.cc (Symbol_table::resolve): Handle --warn-common when
1388         merging two common symbols.
1389         (Symbol_table::should_override): Handle --warn-common when merging
1390         a common symbol with a defined symbol.  Use report_resolve_problem
1391         for multiple definitions.
1392         (Symbol_table::report_resolve_problem): New function.
1393         * symtab.h (class Symbol_table): Declare report_resolve_problem.
1394
1395 2009-11-03  Doug Kwan  <dougkwan@google.com>
1396
1397         * arm.cc (Target_arm::Target_arm): Initialize stub_tables_ and
1398         stub_factory_.
1399         (Target_arm::stub_factory): New method definition.
1400         (Target_arm::new_arm_input_section,
1401         Target_arm::find_arm_input_section, Target_arm::new_stub_table,
1402         Target_arm::reloc_uses_thumb_bit): New method declarations.
1403         (Target_arm::Stub_table_list, Target_arm::Arm_input_section_map): 
1404         New type definitions.
1405         (Target_arm::stub_tables_, Target_arm::stub_factory_): New data
1406         member declarations.
1407         (Target_arm::reloc_uses_thumb_bit, Target_arm::new_arm_input_section,
1408         Target_arm::find_arm_input_section, Target_arm::new_stub_table):
1409         New method definitions.
1410
1411 2009-11-03  Ian Lance Taylor  <iant@google.com>
1412
1413         * options.h (class General_options): Add --warn_constructors.
1414
1415 2009-11-03  Ian Lance Taylor  <iant@google.com>
1416
1417         PR 10893
1418         * defstd.cc (in_section): Add entries for __rel_iplt_start,
1419         __rel_iplt_end, __rela_iplt_start, __rela_iplt_end, and __stack.
1420
1421 2009-11-03  Ian Lance Taylor  <iant@google.com>
1422
1423         PR 10895
1424         * po/Make-in ($(srcdir)/$(PACKAGE).pot): Pass -C and
1425         --msgid-bugs-address.
1426         (install-pdf): New target.
1427         (install-data_yes): Look up one directory to find mkinstalldirs.
1428
1429 2009-11-03  H.J. Lu  <hongjiu.lu@intel.com>
1430
1431         * po/Make-in (.po.gmo): Don't generate .gmo files in source
1432         tree.
1433
1434 2009-10-30  Doug Kwan  <dougkwan@google.com>
1435
1436         * arm.cc (Stub_addend_reader): Fix bug in previouls check-in.
1437
1438 2009-10-30  Doug Kwan  <dougkwan@google.com>
1439
1440         * arm.cc (Stub_addend_reader): New struct template definition
1441         and partial specializations.
1442         (Stub_addend_reader::operator()): New method definition for a
1443         partially specialized template.
1444
1445 2009-10-30  Doug Kwan  <dougkwan@google.com>
1446
1447         * arm.cc (Arm_relobj::processor_specific_flags): New method
1448         definition.
1449         (Arm_relobj::do_read_symbols): New method declaration.
1450         (Arm_relobj::processor_specific_flags_): New data member declaration.
1451         (Arm_dynobj): New class definition.
1452         (Target_arm::do_finalize_sections): Add input_objects parameter.
1453         (Target_arm::do_adjust_elf_header): New method declaration.
1454         (Target_arm::are_eabi_versions_compatible,
1455         (Target_arm::merge_processor_specific_flags): New method declaration.
1456         (Target_arm::do_make_elf_object): New overloaded method definitions
1457         and declaration.
1458         (Arm_relobj::do_read_symbols): New method definition.
1459         (Arm_dynobj::do_read_symbols): Ditto.
1460         (Target_arm::do_finalize_sections): Add input_objects parameters.
1461         Merge processor-specific flags from all input objects.
1462         (Target_arm::are_eabi_versions_compatible,
1463         Target_arm::merge_processor_specific_flags,
1464         Target_arm::do_adjust_elf_header, Target_arm::do_make_elf_object):
1465         New method definitions.
1466         * i386.cc (Target_i386::do_finalize_sections): Add unnamed
1467         Input_objects pointer type parameter.
1468         * layout.cc (Layout::finalize): Pass input objects to target's.
1469         finalize_sections function.
1470         * output.cc (Output_file_header::do_sized_write): Set ELF file
1471         header's processor-specific flags.
1472         * powerpc.cc (Target_powerpc::do_finalize_sections): Add unnamed
1473         Input_objects pointer type parameter.
1474         * sparc.cc (Target_sparc::do_finalize_sections): Same.
1475         * target.h (Input_objects): New forward class declaration.
1476         (Target::processor_specific_flags,
1477         Target::are_processor_specific_flags_sect): New method definitions.
1478         (Target::finalize_sections): Add input_objects parameter.
1479         (Target::Target): Initialize processor_specific_flags_ and
1480         are_processor_specific_flags_set_.
1481         (Target::do_finalize_sections): Add unnamed Input_objects pointer type
1482         parameter.
1483         (Target::set_processor_specific_flags): New method definition.
1484         (Target::processor_specific_flags_,
1485         Target::are_processor_specific_flags_set_): New data member
1486         declarations.
1487         * x86_64.cc (Target_x86_64::do_finalize_sections): Add unnamed
1488         Input_objects pointer type parameter.
1489
1490 2009-10-30  Doug Kwan  <dougkwan@google.com>
1491
1492         * arm.cc: Use Arm_address instead of elfcpp::Elf_types<32>::Elf_Addr.
1493
1494 2009-10-28  Ian Lance Taylor  <iant@google.com>
1495
1496         * object.h (class Relobj): Drop options parameter from
1497         gc_process_relocs, scan_relocs, relocate, do_gc_process_relocs,
1498         do_scan_relocs, do_relocate.  Change all callers.
1499         (class Sized_relobj): Drop options parameters from
1500         do_gc_process_relocs, do_scan_relocs, do_relocate,
1501         do_relocate_sections, relocate_sections, emit_relocs_scan,
1502         emit_relocs_scan_reltype.  Change all callers.
1503         (struct Relocate_info): Remove options field and all references to
1504         it.
1505         * reloc.h (class Read_relocs): Remove options constructor
1506         parameter and options_ field.  Change all callers.
1507         (class Gc_process_relocs, class Scan_relocs): Likewise.
1508         (class Relocate_task): Likewise.
1509         * target-reloc.h (scan_relocs): Remove options parameter.  Change
1510         all callers.
1511         (scan_relocatable_relocs): Likewise.
1512         * target.h (class Sized_target): Remove options parameter from
1513         gc_process_relocs, scan_relocs, scan_relocatable_relocs.  Change
1514         all callers.
1515         * gc.h (gc_process_relocs): Remove options parameter.  Change all
1516         callers.
1517         * arm.cc: Update functions to remove options parameters.
1518         * i386.cc: Likewise.
1519         * powerpc.cc: Likewise.
1520         * sparc.cc: Likewise.
1521         * x86_64.cc: Likewise.
1522         * testsuite/testfile.cc: Likewise.
1523
1524 2009-10-28  Doug Kwan  <dougkwan@google.com>
1525
1526         * arm.cc (Arm_relobj): New class definition.
1527         (Arm_relobj::scan_sections_for_stubs, 
1528         Arm_relobj::do_count_local_symbols, Arm_relobj::do_relocate_sections):
1529         New method definitions.
1530
1531 2009-10-28  Cary Coutant  <ccoutant@google.com>
1532
1533         * plugin.h (Plugin::Plugin): Initialize cleanup_done_.
1534         (Plugin::cleanup_done_): New member.
1535         (Plugin_manager::Plugin_manager): Remove cleanup_done_.
1536         (Plugin_manager::cleanup_done_): Remove.
1537         (Plugin_manager::add_input_file): Edit error message.
1538         * plugin.cc (Plugin::cleanup): Test and set cleanup_done_.
1539         (Plugin_manager::cleanup): Remove use of cleanup_done_.
1540
1541 2009-10-27  Mikolaj Zalewski  <mikolajz@google.com>
1542
1543         * fileread.cc: (File_read::View::~View): Use the new
1544         data_ownership_ filed.
1545         (File_read::~File_read): Dispose the new whole_file_view_.
1546         (File_read::open): Mmap the whole file if needed.
1547         (File_read::open): Use whole_file_view_ instead of contents_.
1548         (File_read::find_view): Use whole_file_view_ if applicable.
1549         (File_read::do_read): Use whole_file_view_ instead of contents_.
1550         (File_read::make_view): Use whole_file_view_ instead of contents_,
1551         update File_read::View::View call.
1552         (File_read::find_or_make_view): Update File_read::View::View
1553         call.
1554         * fileread.h: (File_read::File_read): Initialize whole_file_view_,
1555         remove contents_
1556         (File_read::View::Data_ownership): New enum.
1557         (File_read::View::View): Replace bool mapped_ with Data_ownership
1558         argument.
1559         (File_read::View::mapped_): Remove (replaced by data_ownership_).
1560         (File_read::View::data_ownership_): New field.
1561         (File_read::contents_): Remove (replaced by whole_file_view_).
1562         (File_read::whole_file_view_): New field.
1563         * options.h (class General_options): Add --keep-files-mapped.
1564
1565 2009-10-27  Cary Coutant  <ccoutant@google.com>
1566
1567         * symtab.cc (add_from_pluginobj): Pass correct value for is_ordinary.
1568         * testsuite/Makefile.am (plugin_test_5): New test case.
1569         * testsuite/Makefile.in: Regenerate.
1570
1571 2009-10-25  Doug Kwan  <dougkwan@google.com>
1572
1573         * object.h (Sized_relobj::View_size, Sized_relobj::Views): Change
1574         from private to protected to allow access by child class.
1575         (Sized_relobj::do_relocate_sections): New method declaration.
1576         (Sized_relobj::relocate_sections): Virtualize.
1577         * reloc.cc (Sized_relobj::do_relocate_sections): Rename from 
1578         Sized_relobj::relocate_sections.  Instantiate template explicitly
1579         for different target sizes and endianity.
1580
1581 2009-10-24  Doug Kwan  <dougkwan@google.com>
1582
1583         * arm.cc (Arm_output_section, Arm_relobj): Forward class declarations.
1584         (Arm_input_section::as_arm_input_section): New method.
1585         (Arm_output_section): New class definition.
1586         (Arm_output_section::create_stub_group,
1587         Arm_output_section::group_sections): New method definitions.
1588
1589 2009-10-22  Doug Kwan  <dougkwan@google.com>
1590
1591         * arm.cc (Arm_input_section): New class definition.
1592         (Arm_input_section::init, Arm_input_section:do_write,
1593         Arm_input_section::set_final_data_size,
1594         Arm_input_section::do_reset_address_and_file_offset): New method
1595         definitions.
1596
1597 2009-10-21  Doug Kwan  <dougkwan@google.com>
1598
1599         * arm.cc (Stub_table, Arm_input_section): New forward class
1600         declarations.
1601         (Stub_table): New class defintion.
1602         (Stub_table::add_reloc_stub, Stub_table::relocate_stubs
1603         Stub_table::do_reset_address_and_file_offset, Stub_table::do_write):
1604         New method definition.
1605
1606 2009-10-21  Doug Kwan  <dougkwan@google.com>
1607
1608         * arm.cc: Update copyright comments.
1609         (Target_arm): New forward class template declaration.
1610         (Arm_address): New type.
1611         (ARM_MAX_FWD_BRANCH_OFFSET, ARM_MAX_BWD_BRANCH_OFFSET,
1612         THM_MAX_FWD_BRANCH_OFFSET, THM_MAX_BWD_BRANCH_OFFSET,
1613         THM2_MAX_FWD_BRANCH_OFFSET, THM2_MAX_BWD_BRANCH_OFFSET): New
1614         constants.
1615         (Insn_template): Same.
1616         (DEF_STUBS): New macro.
1617         (Stub_type): New enum type.
1618         (Stub_template): New class definition.
1619         (Stub): Same.
1620         (Reloc_stub): Same.
1621         (Stub_factory): Same.
1622         (Target_arm::Target_arm): Initialize may_use_blx_ and
1623         should_force_pic_veneer_.
1624         (Target_arm::may_use_blx, Target_arm::set_may_use_blx,
1625         Target_arm::should_force_pic_veneer,
1626         Target_arm::set_should_force_pic_veneer, Target_arm::using_thumb2,
1627         Target_arm::using_thumb_only, Target_arm:;default_target): New
1628         method defintions.
1629         (Target_arm::may_use_blx_, Target_arm::should_force_pic_veneer_):
1630         New data member declarations.
1631         (Insn_template::size, Insn_template::alignment): New method defintions.
1632         (Stub_template::Stub_template): New method definition.
1633         (Reloc_stub::Key::name, Reloc_stub::stub_type_for_reloc,
1634         Reloc_stub::do_fixed_endian_write, Reloc_stub::do_write): Same.
1635         (Stub_factory::Stub_factory): New method definition.
1636         * gold.h (string_hash): New template.
1637         * output.h (Input_section_specifier::hash_value): Use
1638         gold::string_hash.
1639         (Input_section_specifier::string_hash): Remove.
1640         * stringpool.cc (Stringpool_template::string_hash): Use
1641         gold::string_hash.
1642
1643 2009-10-20  Doug Kwan  <dougkwan@google.com>
1644
1645         * object.cc (Sized_relobj::do_finalize_local_symbols): Handle section
1646         symbols of relaxed input sections.
1647         * output.h (Output_section::find_relaxed_input_section): Make
1648         method public.
1649
1650 2009-10-16  Doug Kwan  <dougkwan@google.com>
1651
1652         * dynobj.cc (Versions::Versions): Initialize version_script_.
1653         Only insert base version symbol definition for a shared object
1654         if version script defines any version versions.
1655         (Versions::define_base_version): New method definition.
1656         (Versions::add_def): Check that base version is not needed.
1657         (Versions::add_need): Define base version lazily.
1658         * dynobj.h (Versions::define_base_version): New method declaration.
1659         (Versions::needs_base_version_): New data member declaration.
1660         * testsuite/Makefile.am (check_SCRIPTS): Add no_version_test.sh
1661         (check_DATA): Add no_version_test.stdout.
1662         (libno_version_test.so, no_version_test.o no_version_test.stdout):
1663         New make rules.
1664         * testsuite/Makefile.in: Regenerate.
1665         * testsuite/no_version_test.c: New file.
1666         * testsuite/no_version_test.sh: Ditto.
1667
1668 2009-10-16  Doug Kwan  <dougkwan@google.com>
1669
1670         * expression.cc (class Segment_start_expression): New class definition.
1671         (Segment_start_expression::value): New method definition.
1672         (script_exp_function_segment_start): Return a new
1673         Segment_start_expression.
1674         * gold/script-c.h (script_saw_segment_start_expression): New function
1675         prototype.
1676         * script-sections.cc (Script_sections::Script_sections): Initialize
1677         SAW_SEGMENT_START_EXPRESSION_ to false.
1678         (Script_sections::set_section_addresses): Use -Ttext, -Tdata
1679         and -Tbbs options to specify section addresses if given in
1680         command line and no SEGMENT_START expression is seen in a script.
1681         * script-sections.h (Script_sections::saw_segment_start_expression,
1682         Script_sections::set_saw_segment_start_expression): New method
1683         definition.
1684         (Script_sections::saw_segment_start_expression_): New data member
1685         declaration.
1686         * script.cc (script_saw_segment_start_expression): New function.
1687         * yyscript.y (SEGMENT_START): Call script_saw_segment_start_expression.
1688         * testsuite/Makefile.am (check_SCRIPTS): Add script_test_6.sh,
1689         script_test_7.sh and script_test_8.sh.
1690         (check_DATA): Add script_test_6.stdout, script_test_7.stdout and
1691         script_test_8.stdout.
1692         (MOSTLYCLEANFILES): Add script_test_6, script_test_7 and script_test_8.
1693         (script_test_6, script_test_6.stdout, script_test_7,
1694         script_test_7.stdout, script_test_8, script_test_8.stdout): New rules.
1695         * Makefile.in: Regenerate.
1696         * testsuite/script_test_6.sh: New file.
1697         * testsuite/script_test_6.t: Same.
1698         * testsuite/script_test_7.sh: Same.
1699         * testsuite/script_test_7.t: Same.
1700         * testsuite/script_test_8.sh: Same.
1701
1702 2009-10-16  Doug Kwan  <dougkwan@google.com>
1703
1704         * output.cc (Output_segment::set_section_list_address): Cast
1705         expressions to unsigned long long type to avoid format warnings.
1706
1707 2009-10-15  Ian Lance Taylor  <iant@google.com>
1708
1709         * script.cc (Script_options::add_symbol_assignment): Always add a
1710         dot assignment to script_sections_.
1711         * script-sections.cc (Script_sections::add_dot_assignment):
1712         Initialize if necessary.
1713
1714         * layout.cc (Layout::relaxation_loop_body): Don't crash if we see
1715         program headers with no load segment if there is a linker script.
1716
1717         * layout.cc (Layout::set_segment_offsets): Align the file offset
1718         to the segment aligment for -N or -n with no load segment.
1719         * output.cc (Output_segment::add_output_section): Don't crash if
1720         the first section is a TLS section.
1721         (Output_segment::set_section_list_addresses): Print an error
1722         message if the address moves backward in a linker script.
1723         * script-sections.cc
1724         (Output_section_element_input::set_section_addresses): Don't
1725         increase *dot_value for a SHF_TLS/SHT_NOBITS section.
1726         (Orphan_output_section::set_section_addresses): Likewise.
1727
1728 2009-10-15  Doug Kwan  <dougkwan@google.com>
1729
1730         * layout.cc (Layout::finish_dynamic_section): Generate tags
1731         DT_FINI_ARRAY, DT_FINI_ARRAYSZ, DT_INIT_ARRAY, DT_INIT_ARRAYSZ,
1732         DT_PREINIT_ARRAY, DT_PREINIT_ARRAYSZ as needed. If -Bsymbolic is
1733         used, add DT_SYMBOLIC and set DF_SYMBOLIC in DT_FLAGS.
1734
1735 2009-10-14  Ian Lance Taylor  <iant@google.com>
1736
1737         * object.h (class Relocate_info): Add reloc_shdr and data_shdr
1738         fields.
1739         * object.cc (Sized_relobj::relocate_sections): Set reloc_shdr and
1740         data_shdr fields of relinfo.
1741         * i386.cc (class Target_i386::Relocate): Remove ldo_addrs_ field.
1742         (Target_i386::Relocate::relocate_tls): Don't call fix_up_ldo.  For
1743         R_386_TLS_LDO_32, adjust based on section flags.
1744         (Target_i386::Relocate::fix_up_ldo): Remove.
1745
1746 2009-10-13  Ian Lance Taylor  <iant@google.com>
1747
1748         Add support for -pie.
1749         * options.h (class General_options): Add -pie and
1750         --pic-executable.
1751         (General_options::output_is_position_independent): Test -pie.
1752         (General_options::output_is_executable): Return true if not shared
1753         and not relocatable.
1754         (General_options::output_is_pie): Remove.
1755         * options.cc (General_options::finalize): Reject incompatible uses
1756         of -pie.
1757         * gold.cc (queue_middle_tasks): A -pie link is not static.
1758         * symtab.h (Symbol::needs_plt_entry): Return false if -pie.
1759         * symtab.cc (Symbol::final_value_is_known): Return false if
1760         output_is_position_independent.
1761         * layout.cc (Layout::set_segment_offsets): Start at address 0 if
1762         output_is_position_independent.
1763         * output.cc (Output_file_header::do_sized_write): Use ET_DYN if
1764         output_is_position_independent.
1765         * i386.cc (Output_data_plt_i386::do_write): Use the PIC PLT if
1766         output_is_position_independent.
1767         * testsuite/Makefile.am (check_PROGRAMS): Add basic_pie_test and
1768         two_file_pie_test.
1769         (basic_pie_test.o, basic_pie_test): New targets.
1770         (two_file_test_1_pie.o, two_file_test_1b_pie.o): New targets.
1771         (two_file_test_2_pie.o, two_file_test_main_pie.o): New targets.
1772         (two_file_pie_test): New target.
1773         * testsuite/Makefile.in: Rebuild.
1774         * README: Remove note saying that -pie is not supported.
1775
1776 2009-10-13  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
1777
1778         * options.h (class General_options): Add -init and -fini.
1779         * layout.cc (Layout::finish_dynamic_section): Emit
1780         given init and fini functions.
1781
1782 2009-10-13  Sriraman Tallam  <tmsriram@google.com>
1783
1784         * gc.h (gc_process_relocs): Check if icf is enabled using new
1785         function.
1786         * gold.cc (queue_initial_tasks): Likewise.
1787         (queue_middle_tasks): Likewise.
1788         * object.cc (do_layout): Likewise.
1789         * symtab.cc (is_section_folded): Likewise.
1790         * main.cc (main): Likewise.
1791         * reloc.cc (Read_relocs::run): Likewise.
1792         (Sized_relobj::do_scan_relocs): Likewise.
1793         * icf.cc (is_function_ctor_or_dtor): New function.
1794         (Icf::find_identical_sections): Check if function is ctor or dtor when
1795         safe icf is chosen.
1796         * options.h (General_options::icf): Change option to be an enum.
1797         (Icf_status): New enum.
1798         (icf_enabled): New method.
1799         (icf_safe_folding): New method.
1800         (set_icf_status): New method.
1801         (icf_status_): New variable.
1802         * (options.cc) (General_options::finalize): Set icf_status_.
1803         * testsuite/Makefile.am: Add commands to build icf_safe_test. Modify
1804         icf_test and icf_keep_unique_test to use the --icf enum flag.
1805         * testsuite/icf_safe_test.sh: New file.
1806         * testsuite/icf_safe_test.cc: New file. 
1807
1808 2009-10-12  Sriraman Tallam  <tmsriram@google.com>
1809
1810         * symtab.h: Check for GOLD_SYMTAB_H before header includes. Remove
1811         includes to gc.h and icf.h.
1812         * arm.cc: Include gc.h.
1813         * gold.cc: Likewise.
1814         * i386.cc: Likewise.
1815         * powerpc.cc: Likewise.
1816         * sparc.cc: Likewise.
1817         * x86_64.cc: Likewise.
1818         * gc.h: Include icf.h.
1819
1820 2009-10-11  Ian Lance Taylor  <iant@google.com>
1821
1822         * plugin.cc: Include "gold.h" before other header files.
1823
1824 2009-10-10  Chris Demetriou  <cgd@google.com>
1825
1826         * options.h (Input_file_argument::Input_file_type): New enum.
1827         (Input_file_argument::is_lib_): Replace with...
1828         (Input_file_argument::type_): New member.
1829         (Input_file_argument::Input_file_argument): Take Input_file_type
1830         'type' rather than boolean 'is_lib' as second argument.
1831         (Input_file_argument::is_lib): Use type_.
1832         (Input_file_argument::is_searched_file): New function.
1833         (Input_file_argument::may_need_search): Handle is_searched_file.
1834         * options.cc (General_options::parse_library): Support -l:filename.
1835         (General_options::parse_just_symbols): Update for Input_file_argument
1836         changes.
1837         (Command_line::process): Likewise.
1838         * archive.cc (Archive::get_file_and_offset): Likewise.
1839         * plugin.cc (Plugin_manager::release_input_file): Likewise.
1840         * script.cc (read_script_file, script_add_file): Likewise.
1841         * fileread.cc (Input_file::Input_file): Likewise.
1842         (Input_file::will_search_for): Handle is_searched_file.
1843         (Input_file::open): Likewise.
1844         * readsyms.cc (Read_symbols::get_name): Likewise.
1845         * testsuite/Makefile.am (searched_file_test): New test.
1846         * testsuite/Makefile.in: Regenerate.
1847         * testsuite/searched_file_test.cc: New file.
1848         * testsuite/searched_file_test_lib.cc: New file.
1849
1850 2009-10-09  Andrew Pinski  <andrew_pinski@playstation.sony.com>
1851             Ian Lance Taylor  <iant@google.com>
1852
1853         * descriptor.cc: Include <cstdio> and "binary-io.h".
1854         (Descriptors::open): Open the files in binary mode always.
1855         * script.cc (Lex::get_token): Treat \r as whitespace.
1856
1857 2009-10-09  Ian Lance Taylor  <iant@google.com>
1858
1859         * testsuite/retain_symbols_file_test.sh: Don't test for __tcf_0.
1860
1861 2009-10-09  Andrew Pinski  <andrew_pinski@playstation.sony.com>
1862             Ian Lance Taylor  <iant@google.com>
1863
1864         * configure.ac: Check for readv function also.
1865         * fileread.cc (readv): Define if not HAVE_READV.
1866         * fileread.h (File_read:: max_readv_entries): Set to 1 if readv
1867         does not exist.
1868         * config.in: Regenerate.
1869         * configure: Regenerate.
1870
1871 2009-10-09  Doug Kwan  <dougkwan@google.com>
1872
1873         * layout.cc (Layout::make_output_section): Call target hook to make
1874         ordinary output section.
1875         (Layout::finalize): Adjust parameter list of call the
1876         Target::may_relax().
1877         * layout.h (class Layout::section_list): New method.
1878         * merge.h (Output_merge_base::entsize): Change visibility to public.
1879         (Output_merge_base::is_string, Output_merge_base::do_is_string):
1880         New methods.
1881         (Output_merge_string::do_is_string): New method.
1882         * object.cc (Sized_relobj::do_setup): renamed from
1883         Sized_relobj::set_up.
1884         * object.h (Sized_relobj::adjust_shndx,
1885         Sized_relobj::initializ_input_to_output_maps,
1886         Sized_relobj::free_input_to_output_maps): Change visibilities to
1887         protected.
1888         (Sized_relobj::setup): Virtualize.
1889         (Sized_relobj::do_setup): New method declaration.
1890         (Sized_relobj::invalidate_section_offset,
1891         Sized_relobj::do_invalidate_section_offset): New method decfinitions.
1892         (Sized_relobj::elf_file, Sized_relobj::local_values): New methods.
1893         * options.cc (parse_int): New function.
1894         * options.h (parse_int): New declaration.
1895         (DEFINE_int): New macro.
1896         (stub_group_size): New option.
1897         * output.cc (Output_section::Output_section): Initialize memebers
1898         merge_section_map_, merge_section_by_properties_map_,
1899         relaxed_input_section_map_, is_relaxed_input_section_map_valid_.
1900         (Output_section::add_input_section): Handled deferred code-fill
1901         generation and remove an old comment.
1902         (Output_section::add_relaxed_input_section): New method definition.
1903         (Output_section::add_merge_input_section): Use merge section by
1904         properties map to speed to search.  Update merge section maps
1905         as appropriate.
1906         (Output_section::build_relaxation_map): New method definition.
1907         (Output_section::convert_input_sections_in_list_to_relaxed_sections):
1908         Same.
1909         (Output_section::relax_input_section): Renamed to
1910         Output_section::convert_input_sections_to_relaxed_sections and change
1911         interface to take a vector of pointers to relaxed sections.
1912         (Output_section::find_merge_section,
1913         Output_section::find_relaxed_input_section): New method definitions.
1914         (Output_section::is_input_address_mapped,
1915         Output_section::output_offset, Output_section::output_address):
1916         Use output section data maps to speed up searching.
1917         (Output_section::find_starting_output_address): Add comments.
1918         (Output_section::do_write,
1919         Output_section::write_to_postprocessing_buffer): Do code-fill
1920         generation as appropriate.
1921         (Output_section::get_input_sections): Invalidate relaxed input section
1922         map.
1923         (Output_section::restore_states): Adjust type of checkpoint .
1924         Invalidate relaxed input section map.
1925         * output.h (Output_merge_base): New class declaration.
1926         (Input_section_specifier): New class defintion.
1927         (class Output_relaxed_input_section) Change base class to
1928         Output_section_data_build.
1929         (Output_relaxed_input_section::Output_relaxed_input_section): Adjust
1930         base class initializer.
1931         (Output_section::add_relaxed_input_section): New method declaration.
1932         (Output_section::Input_section): Change visibility to protected.
1933         (Output_section::Input_section::relobj,
1934         Output_section::Input_section::shndx): Handle relaxed input sections.
1935         Output_section::input_sections) Change visibility to protected.  Also
1936         define overload to return a non-const pointer.
1937         (Output_section::Merge_section_properties): New class defintion.
1938         (Output_section::Merge_section_by_properties_map,
1939         Output_section::Output_section_data_by_input_section_map,
1940         Output_section::Relaxation_map): New types.
1941         (Output_section::relax_input_section): Rename method to
1942         Output_section::convert_input_sections_to_relaxed_sections and change
1943         interface to take a vector of relaxed section pointers.
1944         (Output_section::find_merge_section,
1945         Output_section::find_relaxed_input_section,
1946         Output_section::build_relaxation_map,
1947         Output_section::convert_input_sections_in_list_to_relaxed_sections):
1948         New method declarations.
1949         (Output_section::merge_section_map_
1950         Output_section::merge_section_by_properties_map_,
1951         Output_section::relaxed_input_section_map_,
1952         Output_section::is_relaxed_input_section_map_valid_,
1953         Output_section::generate_code_fills_at_write_): New data members.
1954         * script-sections.cc
1955         (Output_section_element_input::set_section_addresses): Call
1956         current_data_size and addralign methods of relaxed input sections.
1957         (Orphan_output_section::set_section_addresses): Call current_data_size
1958         and addralign methods of relaxed input sections.
1959         * symtab.cc (Symbol_table::compute_final_value): Extract template
1960         from the body of Symbol_table::sized_finalize_symbol.
1961         (Symbol_table::sized_finalized_symbol): Call
1962         Symbol_table::compute_final_value.
1963         * symtab.h (Symbol_table::Compute_final_value_status): New enum type.
1964         (Symbol_table::compute_final_value): New templated method declaration.
1965         * target.cc (Target::do_make_output_section): New method defintion.
1966         * target.h (Target::make_output_section): New method declaration.
1967         (Target::relax): Add more parameters for input objects, symbol table
1968         and layout.  Adjust call to do_relax.
1969         (Target::do_make_output_section): New method declaration.
1970         (Target::do_relax): Add parameters for input objects, symbol table
1971         and layout.
1972
1973 2009-10-09  Andrew Pinski  <andrew_pinski@playstation.sony.com>
1974
1975         * pread.c: Include stdio.h.
1976
1977 2009-10-09  Andrew Pinski  <andrew_pinski@playstation.sony.com>
1978
1979         * plugin.cc: Don't include dlfcn.h when ENABLE_PLUGINS is not
1980         defined.
1981
1982 2009-10-09  Andrew Pinski  <andrew_pinski@playstation.sony.com>
1983
1984         * dwarf_reader.cc (Sized_dwarf_line_info::Sized_dwarf_line_info):
1985         Change read_shndx type to unsigned int.
1986         (Sized_dwarf_line_info::read_lines): Change shndx type to unsigned
1987         int.
1988         (Sized_dwarf_line_info::read_line_mappings): Likewise.
1989         * dwarf_reader.h (Sized_dwarf_line_info::Sized_dwarf_line_info):
1990         Change read_shndx type to unsigned int.
1991         (Sized_dwarf_line_info::read_lines): Change shndx type to unsigned
1992         int.
1993         (Sized_dwarf_line_info::read_line_mappings): Likewise.
1994         * layout.cc (Layout::create_symtab_sections): Cast the result of
1995         local_symcount * symsize to off_t in the gold_assert.
1996
1997 2009-10-09  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
1998
1999         * arm.cc (Target_arm::relocate::reloc_is_non_pic): Return true for
2000         R_ARM_THM_ABS5, R_ARM_ABS8, R_ARM_ABS12, R_ARM_ABS16,
2001         R_ARM_BASE_ABS.
2002         (Arm_relocate_functions::abs8): Remove has_thumb_bit parameter.
2003         (Arm_relocate_functions::thm_abs5): New function.
2004         (Arm_relocate_functions::abs12): New function.
2005         (Arm_relocate_functions::abs16): New function.
2006         (Arm_relocate_functions::base_abs): New function.
2007         (Scan::check_non_pic): Handle R_ARM_ABS32_NOI.
2008         (Scan::local): Remove special handling of R_ARM_ABS8.  Handle
2009         R_ARM_ABS32_NOI, R_ARM_THM_ABS5, R_ARM_ABS12, R_ARM_ABS16, and
2010         R_ARM_BASE_ABS.
2011         (Scan::global): Likewise.
2012         (Relocate::relocate): Handle R_ARM_ABS12, R_ARM_ABS16,
2013         R_ARM_ABS32_NOI, R_ARM_THM_ABS5, and R_ARM_BASE_ABS.
2014         (Relocatable_size_for_reloc::get_size_for_reloc): Handle
2015         R_ARM_ABS16, R_ARM_THM_ABS5, R_ARM_ABS32_NOI, R_ARM_ABS12, and
2016         R_ARM_BASE_ABS.
2017
2018 2009-10-09  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
2019
2020         * arm.cc (Arm_relocate_functions::movw_prel_nc): New function.
2021         (Arm_relocate_functions::movt_prel): New function.
2022         (Arm_relocate_functions::thm_movw_prel_nc): New function.
2023         (Arm_relocate_functions::thm_movt_prel): New function.
2024         (Scan::local): Handle R_ARM_MOVW_PREL_NC, R_ARM_MOVT_PREL,
2025         R_ARM_THM_MOVW_PREL_NC, and R_ARM_THM_MOVT_PREL.
2026         (Scan::global, Relocate::relocate): Likewise.
2027         (Relocatable_size_for_reloc::get_size_for_reloc): Likewise.
2028
2029 2009-10-09  Mikolaj Zalewski  <mikolajz@google.com>
2030
2031         * gold.cc: (queue_initial_tasks): Pass incremental_inputs to
2032         Incremental_checker.
2033         * incremental.cc: (INCREMENTAL_LINK_VERSION): Change type to
2034         unsigned int.
2035         (class Incremental_inputs_header): New class.
2036         (Incremental_inputs_header_writer): Edit comment.
2037         (Incremental_inputs_entry): New class.
2038         (Incremental_inputs_entry_writer): Edit comment.
2039         (Sized_incremental_binary::do_find_incremental_inputs_section):
2040         Add *strtab_shndx parameter, fill it.
2041         (Sized_incremental_binary::do_check_inputs): New method.
2042         (Incremental_checker::can_incrementally_link_output_file): Use
2043         Sized_incremental_binary::check_inputs.
2044         (Incremental_inputs::report_command_line): Save command line in
2045         command_line_.
2046         * incremental.h:
2047         (Incremental_binary::find_incremental_inputs_section): New
2048         method.
2049         (Incremental_binary::do_find_incremental_inputs_section): Add
2050         strtab_shndx parameter.
2051         (Incremental_binary::do_check_inputs): New pure virtual method.
2052         (Sized_incremental_binary::do_check_inputs): Declare.
2053         (Incremental_checker::Incremental_checker): Add incremental_inputs
2054         parameter, use it to initialize incremental_inputs_.
2055         (Incremental_checker::incremental_inputs_): New field.
2056         (Incremental_checker::command_line): New method.
2057         (Incremental_checker::inputs): New method.
2058         (Incremental_checker::command_line_): New field.
2059
2060 2009-10-09  Mikolaj Zalewski  <mikolajz@google.com>
2061
2062         * incremental.cc: Include <cstdarg> and "target-select.h".
2063         (vexplain_no_incremental): New function.
2064         (explain_no_incremental): New function.
2065         (Incremental_binary::error): New method.
2066         (Sized_incremental_binary::do_find_incremental_inputs_section): New
2067         method.
2068         (make_sized_incremental_binary): New function.
2069         (open_incremental_binary): New function.
2070         (can_incrementally_link_file): Add checks if output is ELF and has
2071         inputs section.
2072         * incremental.h: Include "elfcpp_file.h" and "output.h".
2073         (Incremental_binary): New class.
2074         (Sized_incremental_binary): New class.
2075         (open_incremental_binary): Declare.
2076         * object.cc (is_elf_object): Use
2077         elfcpp::Elf_recognizer::is_elf_file.
2078         (make_elf_object): Use elfcpp::Elf_recognizer::is_valid_header.
2079         * output.h (Output_file::filesize): New method.
2080
2081 2009-10-07  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
2082
2083         * arm.cc (Arm_relocate_functions::extract_arm_movw_movt_addend):
2084         New function.
2085         (Arm_relocate_functions::insert_val_arm_movw_movt): New function.
2086         (Arm_relocate_functions::extract_thumb_movw_movt_addend): New
2087         function.
2088         (Arm_relocate_functions::insert_val_thumb_movw_movt): New
2089         function.
2090         (Arm_relocate_functions::movw_abs_nc): New function.
2091         (Arm_relocate_functions::movt_abs): New function.
2092         (Arm_relocate_functions::thm_movw_abs_nc): New function.
2093         (Arm_relocate_functions::thm_movt_abs): New function.
2094         (Scan::local): Handle R_ARM_MOVW_ABS_NC, R_ARM_MOVT_ABS,
2095         R_ARM_THM_MOVW_ABS_NC, R_ARM_THM_MOVT_ABS.
2096         (Scan::global): Likewise.
2097         (Relocate::relocate): Likewise.
2098         (Relocatable_size_for_reloc::get_size_for_reloc): Likewise.
2099
2100 2009-10-07  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
2101
2102         * arm.cc (Arm_relocate_functions::got_prel) New function.
2103         (Scan::local, Scan::global): Handle R_ARM_GOT_PREL.
2104         (Relocate::relocate): Likewise.
2105         (Relocatable_size_for_reloc::get_size_for_reloc): Likewise.
2106
2107 2009-10-06  Ian Lance Taylor  <iant@google.com>
2108
2109         * options.h (class General_options): Define
2110         split_stack_adjust_size parameter.
2111         * object.h (class Object): Add uses_split_stack_ and
2112         has_no_split_stack_ fields.  Add uses_split_stack and
2113         has_no_split_stack accessor functions.  Declare
2114         handle_split_stack_section.
2115         (class Reloc_symbol_changes): Define.
2116         (class Sized_relobj): Define Function_offsets.  Declare
2117         split_stack_adjust, split_stack_adjust_reltype, and
2118         find_functions.
2119         * object.cc (Object::handle_split_stack_section): New function.
2120         (Sized_relobj::do_layout): Call handle_split_stack_section.
2121         * dynobj.cc (Sized_dynobj::do_layout): Call
2122         handle_split_stack_section.
2123         * reloc.cc (Sized_relobj::relocate_sections): Call
2124         split_stack_adjust for executable sections in split_stack
2125         objects.  Pass reloc_map to relocate_section.
2126         (Sized_relobj::split_stack_adjust): New function.
2127         (Sized_relobj::split_stack_adjust_reltype): New function.
2128         (Sized_relobj::find_functions): New function.
2129         * target-reloc.h: Include "object.h".
2130         (relocate_section): Add reloc_symbol_changes parameter.  Change
2131         all callers.
2132         * target.h (class Target): Add calls_non_split method.  Declare
2133         do_calls_non_split virtual method.  Declare match_view and
2134         set_view_to_nop.
2135         * target.cc: Include "elfcpp.h".
2136         (Target::do_calls_non_split): New function.
2137         (Target::match_view): New function.
2138         (Target::set_view_to_nop): New function.
2139         * gold.cc (queue_middle_tasks): Give an error if mixing
2140         split-stack and non-split-stack objects with -r.
2141         * i386.cc (Target_i386::relocate_section): Add
2142         reloc_symbol_changes parameter.
2143         (Target_i386::do_calls_non_split): New function.
2144         * x86_64.cc (Target_x86_64::relocate_section): Add
2145         reloc_symbol_changes parameter.
2146         (Target_x86_64::do_calls_non_split): New function.
2147         * arm.cc (Target_arm::relocate_section): Add reloc_symbol_changes
2148         parameter.
2149         * powerpc.cc (Target_powerpc::relocate_section): Add
2150         reloc_symbol_changes parameter.
2151         * sparc.cc (Target_sparc::relocate_section): Add
2152         reloc_symbol_changes parameter.
2153         * configure.ac: Call AM_CONDITIONAL for the default target.
2154         * configure: Rebuild.
2155         * testsuite/Makefile.am (TEST_AS): New variable.
2156         (check_SCRIPTS): Add split_i386.sh and split_x86_64.sh.
2157         (check_DATA): Add split_i386 and split_x86_64 files.
2158         (SPLIT_DEFSYMS): Define.
2159         (split_i386_[1234n].o): New targets.
2160         (split_i386_[124]): New targets.
2161         (split_i386_[1234r].stdout): New targets.
2162         (split_x86_64_[1234n].o): New targets.
2163         (split_x86_64_[124]): New targets.
2164         (split_x86_64_[1234r].stdout): New targets.
2165         (MOSTLYCLEANFILES): Add new executables.
2166         * testsuite/split_i386.sh: New file.
2167         * testsuite/split_x86_64.sh: New file.
2168         * testsuite/split_i386_1.s: New file.
2169         * testsuite/split_i386_2.s: New file.
2170         * testsuite/split_i386_3.s: New file.
2171         * testsuite/split_i386_4.s: New file.
2172         * testsuite/split_i386_n.s: New file.
2173         * testsuite/split_x86_64_1.s: New file.
2174         * testsuite/split_x86_64_2.s: New file.
2175         * testsuite/split_x86_64_3.s: New file.
2176         * testsuite/split_x86_64_4.s: New file.
2177         * testsuite/split_x86_64_n.s: New file.
2178         * testsuite/testfile.cc (Target_test): Update relocation_section
2179         function.
2180         * testsuite/Makefile.in: Rebuild.
2181
2182 2009-10-06  Ian Lance Taylor  <iant@google.com>
2183
2184         * i386.cc (class Target_i386::Relocate): Add ldo_addrs_ field.
2185         (Target_i386::Relocate::relocate_tls): Call fix_up_ldo before
2186         changing local_dynamic_type_ from LOCAL_DYNAMIC_NONE.  When
2187         handling R_386_TLS_LDO_32, if local_dynamic_type_ is NONE, push
2188         the address on ldo_addrs_.
2189         (Target_i386::Relocate::fix_up_ldo): New function.
2190
2191 2009-10-06   Rafael Espindola  <espindola@google.com>
2192
2193         * plugin.cc (add_input_library): New.
2194         (Plugin::load): Add add_input_library to tv.
2195         (Plugin_manager::add_input_file): Add the is_lib argument.
2196         (add_input_file): Update call to Plugin_manager::add_input_file.
2197         (add_input_library): New.
2198         * plugin.h (Plugin_manager::add_input_file): Add the is_lib argument.
2199
2200 2009-09-30  Doug Kwan  <dougkwan@google.com>
2201
2202         * arm.cc (Target_arm::may_need_copy_reloc): Check for THUMB function
2203         symbol and call Symbol::may_need_copy_reloc to determine if
2204         a copy reloc is needed.
2205         * copy-relocs.cc (Copy_relocs::need_copy_reloc): Return false if -z
2206         nocopyreloc is given in command line.
2207         (Copy_relocs::emit_copy_reloc): Assert that -z nocopyreloc is not
2208         given in command line.
2209         * i386.cc (Target_i386::may_need_copy_reloc): Remove.
2210         (Target_i386::Scan::global): Use Symbol::may_need_copy_reloc instead
2211         of the removed Target_i386::may_need_copy_reloc.
2212         * options.h (copyreloc): New option with default value false.
2213         * powerpc.cc (Target_powerpc::may_need_copy_reloc): Remove.
2214         (Target_powerpc::Scan::global): Use Symbol::may_need_copy_reloc
2215         instead of the removed Target_powerpc::may_need_copy_reloc.
2216         * sparc.cc (Target_powerpc::may_need_copy_reloc): Remove.
2217         (Target_sparc::Scan::global): Use Symbol::may_need_copy_reloc
2218         instead of the removed Target_sparc::may_need_copy_reloc.
2219         * symtab.h (Symbol::may_need_copy_reloc): New method definition.
2220         * x86_64.cc (Target_powerpc::may_need_copy_reloc): Remove.
2221         (Target_x86_64::Scan::global): Use Symbol::may_need_copy_reloc
2222         instead of the removed Target_x86_64::may_need_copy_reloc.
2223
2224 2009-09-30  Ian Lance Taylor  <iant@google.com>
2225
2226         * object.h (class Object): Remove target_ field, and target,
2227         sized_target, and set_target methods.
2228         (Object::sized_target): Remove.
2229         (class Sized_relobj): Update declarations.  Remove sized_target.
2230         * object.cc (Sized_relobj::setup): Remove target parameter.
2231         Change all callers.
2232         (Input_objects::add_object): Don't do anything with the target.
2233         (make_elf_sized_object): Add punconfigured parameter.  Change all
2234         callers.  Set or test parameter target.
2235         * dynobj.cc (Sized_dynobj::target): Remove target parameter.
2236         Change all callers.
2237         * parameters.cc (Parameters::set_target): Change parameter type to
2238         be non-const.
2239         (Parameters::default_target): Remove.
2240         (set_parameters_target): Change parameter type to be non-const.
2241         (parameters_force_valid_target): New function.
2242         (parameters_clear_target): New function.
2243         * parameters.h (class Parameters): Update declarations.  Remove
2244         default_target method.  Add sized_target and clear_target
2245         methods.  Change target_ to be non-const.
2246         (set_parameters_target): Update declaration.
2247         (parameters_force_valid_target): Declare.
2248         (parameters_clear_target): Declare.
2249         * readsyms.cc (Read_symbols::do_read_symbols): Pass punconfigured
2250         as NULL if we aren't searching.
2251         (Add_symbols::run): Don't check for compatible target.
2252         * fileread.cc (Input_file::open_binary): Call
2253         parameters_force_valid_target.
2254         * gold.cc (queue_middle_tasks): Likewise.
2255         * plugin.cc (make_sized_plugin_object): Likewise.  Don't call
2256         set_target on object.
2257         * dynobj.h (class Sized_dynobj): Update declarations.
2258         * archive.cc (Archive::get_elf_object_for_member): Return NULL if
2259         make_elf_object returns NULL.
2260         (Archive::include_member): Don't check whether object target is
2261         compatible.
2262         * output.cc (Output_section::add_input_section): Get target from
2263         parameters.
2264         (Output_section::relax_input_section): Likewise.
2265         * reloc.cc (Sized_relobj::do_gc_process_relocs): Get target from
2266         parameters.
2267         (Sized_relobj::do_scan_relocs): Likewise.
2268         (Sized_relobj::relocate_sections): Likewise.
2269         * resolve.cc (Symbol_table::resolve): Likewise.
2270         * symtab.cc (Symbol_table::wrap_symbol): Likewise.  Remove object
2271         parameter.  Change all callers.
2272         (Symbol_table::add_from_object): Get target from parameters.
2273         (Symbol_table::add_from_relobj): Don't check object target.
2274         (Symbol_table::add_from_dynobj): Likewise.
2275         (Symbol_table::define_special_symbol): Get target from
2276         parameters.
2277         * symtab.h (class Symbol_table): Update declaration.
2278         * testsuite/binary_unittest.cc (gold_testsuite): Remove target
2279         parameter.  Change all callers.  Clear parameter target.
2280         (Binary_test): Test target here.
2281         * testsuite/object_unittest.cc (gold_testsuite): Remove
2282         target_test_pointer parameter.  Change all callers.
2283         (Object_test): Test target here.
2284
2285 2009-09-26  Ian Lance Taylor  <iant@google.com>
2286
2287         * testsuite/initpri1.c: Don't try to use constructor priorities if
2288         compiling with gcc before 4.3.
2289
2290 2009-09-22  Mikolaj Zalewski  <mikolajz@google.com>
2291
2292         * testsuite/retain_symbols_file_test.sh (check_present): Change
2293         output file name to retain_symbols_file_test.stdout.
2294         (check_absent): Likewise.
2295
2296 2009-09-18  Craig Silverstein  <csilvers@google.com>
2297
2298         * object.cc (Sized_relobj::do_count): Test should_retain_symbol map.
2299         * options.cc: Include <cerrno> and <fstream>.
2300         (General_options::finalize): Parse -retain-symbols-file tag.
2301         * options.h: New flag.
2302         (General_options): New method should_retain_symbol, new
2303         variable symbols_to_retain.
2304         * symtab.cc (Symbol_table::sized_finalize_symbol): Test
2305         should_retain_symbol map.
2306         * testsuite/Makefile.am (retain_symbols_file_test): New test.
2307         * testsuite/Makefile.in: Regenerate.
2308         * testsuite/retain_symbols_file_test.sh: New file.
2309
2310 2009-09-18  Nick Clifton  <nickc@redhat.com>
2311
2312         * po/es.po: Updated Spanish translation.
2313
2314 2009-09-17  Doug Kwan  <dougkwan@google.com>
2315
2316         * debug.h (DEBUG_RELAXATION): New constant.
2317         (DEBUG_ALL): Add DEBUG_RELAXATION.
2318         (debug_string_to_enum): Add relaxation debug option.
2319         * layout.cc
2320         (Layout::Relaxation_debug_check::check_output_data_for_reset_values,
2321         Layout::Relaxation_debug_check::read_sections,
2322         Layout::Relaxation_debug_check::read_sections): New method definitions.
2323         (Layout::Layout): Initialize data members
2324         record_output_section_data_from_scrips_,
2325         script_output_section_data_list_ and relaxation_debug_check_.
2326         (Layout::save_segments, Layout::restore_segments,
2327         Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
2328         Layout::relaxation_loop_body): New method definitions.
2329         (Layout::finalize): Support relaxation.  Move section layout code to
2330         Layout::relaxation_loop_body.
2331         (Layout::set_asection_address_from_script): Move code for orphan
2332         section placement out.
2333         (Layout::place_orphan_sections_in_script): New method definition.
2334         * layout.h (Output_segment_headers, Output_file_header):
2335         New forward class declarations.
2336         (Layout::~Layout): Define.
2337         (Layout::new_output_section_data_from_script): New method definition.
2338         (Layout::place_orphan_sections_in_script): New method declaration.
2339         (Layout::Segment_states): New type declaration.
2340         (Layout::save_segments, Layout::restore_segments,
2341         Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
2342         Layout::relaxation_loop_body): New method declarations.
2343         (Layout::Output_section_data_list): New type declaration.
2344         (Layout::Relaxation_debug_check): New class definition.
2345         (Layout::record_output_section_data_from_script_,
2346         Layout::script_output_section_data_list_, Layout::segment_states_,
2347         Layout::relaxation_debug_check_): New data members.
2348         * output.cc: (Output_section_headers::do_size): New method definition.
2349         (Output_section_headers::Output_section_headers): Move size
2350         computation to Output_section_headers::do_size.
2351         (Output_segment_headers::do_size): New method definition.
2352         (Output_file_header::Output_file_header): Move size computation to 
2353         Output_file_header::do_size and call it.
2354         (Output_file_header::do_size): New method definition.
2355         (Output_data_group::Output_data_group): Adjust call to
2356         Output_section_data.
2357         (Output_data_dynamic::set_final_data_size): Add DT_NULL tag only once.
2358         (Output_symtab_xindex::do_write): Add array bound check.
2359         (Output_section::Input_section::print_to_mapfile): Handle
2360         RELAXED_INPUT_SECTION_CODE.
2361         (Output_section::Output_section): Initialize data member checkpoint_.
2362         (Output_section::~Output_section): Delete checkpoint object pointed
2363         by checkpoint_.
2364         (Output_section::add_input_section): Always add an Input_section if
2365         relaxing.
2366         (Output_section::add_merge_input_section): Add assert.
2367         (Output_section::relax_input_section): New method definition.
2368         (Output_section::set_final_data_size): Set load address to zero for
2369         an unallocated section.
2370         (Output_section::do_address_and_file_offset_have_reset_values):
2371         New method definition.
2372         (Output_section::Input_section_sort_enty::Input_section_sort_enty):
2373         Handle relaxed input section.
2374         (Output_section::sort_attached_input_sections): Checkpoint input
2375         section list lazily.
2376         (Output_section::get_input_sections): Change type of input_sections to
2377         list of Simple_input_section pointers.  Checkpoint input section list
2378         lazily.  Also handle relaxed input sections.
2379         (Output_section::add_input_section_for_script): Take a reference to
2380         a Simple_input_section object instead of Relobj pointer and section
2381         index as parameter.  Handle relaxed input sections.
2382         (Output_section::save_states, Output_section::restore_states): New
2383         method definitions.
2384         * output.h (Output_data::Output_data): Initialize is_data_size_fixed_.
2385         (Output_data::is_data_size_fixed): New method definition.
2386         (Output_data::reset_addresss_and_file_offset): Do not reset data size
2387         if it is fixed.
2388         (Output_data::address_and_file_offset_have_reset_values): New method
2389         definition.
2390         (Output_data::do_address_and_file_offset_have_reset_values): New method
2391         definition.
2392         (Output_data::set_data_size): Check that data size is not fixed.
2393         (Output_data::fix_data_size): New method definition.
2394         (Output_data::is_data_size_fixed_): New data member.
2395         (Output_section_headers::set_final_data_size): New method definition.
2396         (Output_section_headers::do_size): New method declaration.
2397         (Output_segment_headers::set_final_data_size): New method definition.
2398         (Output_segment_headers::do_size): New method declaration.
2399         (Output_file_header::set_final_data_size)::New method definition.
2400         (Output_file_header::do_size)::New method declaration.
2401         (Output_section_data::Output_section_data): Add new parameter
2402         is_data_size_fixed and use it to fix data size.
2403         (Output_data_const::Output_data_const): Adjust call to base class
2404         constructor and fix data size.
2405         (Output_data_const_buffer::Output_data_const_buffer): Adjust call to
2406         base class constructor and fix data size.
2407         (Output_data_fixed_space::Output_data_fixed_space): Adjust call to
2408         base class constructor and fix data size.
2409         (Output_data_zero_fill::Output_data_zero_fill): Adjust call to base
2410         class constructor and fix data size.
2411         (Output_data_group::set_final_data_size): New method definition.
2412         (Output_data_dynamic::Dynamic_entry::tag): New method definition.
2413         (Output_symtab_xindex::Output_symtab_xindex): Adjust call to base
2414         class constructor and fix data size.
2415         (Output_relaxed_input_section): New class definition.
2416         (Output_section::Simple_input_section): New class definition.
2417         (Output_section::get_input_sections): Adjust parameter list.
2418         (Output_section::add_input_section_for_script): Same.
2419         (Output_section::save_states, Output_section::restore_states,
2420         Output_section::do_address_and_file_offset_have_reset_values,
2421         (Output_section::Input_section::Input_section): Handle
2422         RELAXED_INPUT_SECTION_CODE.  Add new overload for
2423         Output_relaxed_input_section.
2424         (Output_section::Input_section::is_input_section,
2425         Output_section::Input_section::set_output_section): Handle relaxed
2426         input section.
2427         (Output_section::Input_section::is_relaxed_input_section,
2428         Output_section::Input_section::output_section_data,
2429         Output_section::Input_section::relaxed_input_section): New method
2430         definitions.
2431         (Output_section::Input_section::RELAXED_INPUT_SECTION_CODE): New enum
2432         value.
2433         (Output_section::Input_section::u1_): Update comments.
2434         (Output_section::Input_section::u2_): Add new union member poris.
2435         (Output_section::Checkpoint_output_section): New classs definition.
2436         (Output_section::relax_input_section): New method declaration.
2437         (Output_section::checkpoint_): New data member.
2438         (Output_segment): Update comments.
2439         (Output_segment::Output_segment): Un-privatize copy constructor.
2440         (Output_segment::operator=): Un-privatize.
2441         * script-sections.cc (Output_section_element::Input_section_list):
2442         Change element type to Output_section::Simple_input_section.
2443         (Output_section_element_dot_assignment::set_section_addresses):
2444         Register output section data for relaxation clean up.
2445         (Output_data_exression::Output_data_expression): Adjust call to base
2446         constructor to fix data size.
2447         (Output_section_element_data::set_section_addresses): Register
2448         Output_data_expression object for relaxation clean up.
2449         (struct Input_section_info): Replace Relobj pointer and section index
2450         pair with Output_section::Simple_input_section and Convert struct to a
2451         class.
2452         (Input_section_sorter::operator()): Adjust access to
2453         Input_section_info data member to use accessors. 
2454         (Output_section_element_input::set_section_addresses): Use layout
2455         parameter.  Adjust code to use Output_section::Simple_input_section
2456         and Input_secction_info classes.  Register filler for relaxation
2457         clean up.
2458         (Orphan_output_section::set_section_addresses): Replace Relobj pointer
2459         and section index pair with Output_section::Simple_input_section
2460         class.  Adjust code accordingly.
2461         (Phdrs_element::release_segment): New method definition.
2462         (Script_sections::attach_sections_using_phdrs_clause): Do not modify
2463         segment list.
2464         (Script_sections::release_segments): New method definition.
2465         * gold/script-sections.h (Script_sections::release_segments): New
2466         method declaration.
2467         * gold/target.h (Target::may_relax, Target::relax,
2468         Target::do_may_relax, Target::do_relax): New method definitions.
2469
2470 2009-09-17  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
2471
2472         * arm.cc (has_signed_unsigned_overflow): New function.
2473         (Arm_relocate_functions::abs8): New function.
2474         (Target_arm::Scan::local): Handle R_ARM_ABS8.
2475         (Target_arm::Scan::global): Likewise.
2476         (Target_arm::relocate::relocate): Likewise.
2477         (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc):
2478         Likewise.
2479
2480 2009-09-16  Cary Coutant  <ccoutant@google.com>
2481
2482         * testsuite/Makefile.am (MOSTLYCLEANFILES): Add more generated files.
2483         * testsuite/Makefile.in: Regenerate.
2484
2485 2009-09-11  Nick Clifton  <nickc@redhat.com>
2486
2487         * po/gold.pot: Updated by the Translation project.
2488
2489 2009-09-08  Cary Coutant  <ccoutant@google.com>
2490
2491         * output.cc (Output_file::open): Add execute permission to empty file.
2492         * testsuite/Makefile.am (permission_test): New test.
2493         * testsuite/Makefile.in: Regenerate.
2494
2495 2009-09-02  Ian Lance Taylor  <iant@google.com>
2496
2497         * output.cc (Output_file::resize): Call map_no_anonymous rather
2498         than map.
2499
2500 2009-09-01  Mikolaj Zalewski  <mikolajz@google.com>
2501
2502         * gold.cc: Include "incremental.h".
2503         (queue_initial_tasks): Call Incremental_checker methods.
2504         * incremental.cc: Include "output.h".
2505         (Incremental_checker::can_incrementally_link_output_file): New
2506         method.
2507         * incremental.h (Incremental_checker): New class.
2508
2509         * output.cc (Output_file::open_for_modification): New method.
2510         (Output_file::map_anonymous): Changed return type to bool.  Record
2511         map in base_ field.
2512         (Output_file::map_no_anonymous): New method, broken out of map.
2513         (Output_file::map): Use map_no_anonymous and map_anonymous.
2514         * output.h (class Output_file): Update declarations.
2515
2516 2009-08-24  Cary Coutant  <ccoutant@google.com>
2517
2518         * options.h (Command_line::Pre_options): New class.
2519         (Command_line::pre_options): New member.
2520         * options.cc (gold::options::ready_to_register): New variable.
2521         (One_option::register_option): Do nothing if not registering options.
2522         Assert if same short option registered twice.
2523         (General_options::General_options): Turn off option registration when
2524         done constructing.
2525         (Command_line::Pre_options::Pre_options): New constructor.
2526
2527 2009-08-24  Cary Coutant  <ccoutant@google.com>
2528
2529         * options.h (General_options::no_keep_memory): Remove incorrect
2530         short option.
2531
2532 2009-08-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2533
2534         * Makefile.am (am__skiplex, am__skipyacc): New.
2535         * Makefile.in: Regenerate.
2536
2537 2009-08-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2538
2539         * Makefile.am (AM_CPPFLAGS): Renamed from ...
2540         (INCLUDES): ... this.
2541         * testsuite/Makefile.am (AUTOMAKE_OPTIONS): Add -Wno-portability.
2542         (AM_CPPFLAGS): Renamed from ...
2543         (INCLUDE): ... this.
2544         * Makefile.in, testsuite/Makefile.in: Regenerate.
2545
2546         * Makefile.in: Regenerate.
2547         * aclocal.m4: Likewise.
2548         * config.in: Likewise.
2549         * configure: Likewise.
2550         * testsuite/Makefile.in: Likewise.
2551
2552         * Makefile.am (AUTOMAKE_OPTIONS): Add foreign.
2553         * testsuite/Makefile.am (AUTOMAKE_OPTIONS): Add foreign.
2554         * Makefile.in: Regenerate.
2555         * testsuite/Makefile.in: Regenerate.
2556
2557 2009-08-19  Cary Coutant  <ccoutant@google.com>
2558
2559         * resolve.cc (Symbol_table::resolve): Don't complain about defined
2560         symbols in shared libraries overridden by hidden or internal symbols
2561         in the main program.
2562
2563 2009-08-19  Chris Demetriou  <cgd@google.com>
2564
2565         * testsuite/debug_msg.sh: Match .* rather than ${srcdir} when
2566         checking source file names in error messages.
2567
2568 2009-08-18  Doug Kwan  <dougkwan@google.com>
2569
2570         * dynobj.cc (Sized_dynobj::setup): Take a Target object instead of
2571         an elcpp::Ehdr as parameter.  Adjust call to set_target.
2572         * dynobj.h (Sized_dynobj::setup): Take a Target object instead of
2573         an elfcpp::Ehdr as parameter.
2574         * object.cc (Object::set_target): Remove the version that looks up
2575         a target and sets it.
2576         (Sized_relobj::setup): Take a Target object instead of
2577         an elfcpp::Ehdr as parameter.  Adjust call to set_target.
2578         (make_elf_sized_object): Find target and ask target to
2579         make an ELF object.
2580         * object.h: (Object::set_target): Remove the version that looks up
2581         a target and sets it.
2582         (Sized_relobj::setup): Take a Target object instead of
2583         an elfcpp:Ehdr as parameter.
2584         * target.cc: Include dynobj.h.
2585         (Target::do_make_elf_object_implementation): New.
2586         (Target::do_make_elf_object): New.
2587         * target.h (Target::make_elf_object): New template declaration.
2588         (Target::do_make_elf_object): New method declarations.
2589         (Target::do_make_elf_object_implementation): New template declaration.
2590
2591 2009-08-14  Ian Lance Taylor  <iant@google.com>
2592
2593         * gold.h (FUNCTION_NAME): Define.
2594         (gold_unreachable): Use FUNCTION_NAME.
2595
2596 2009-08-12  Sriraman Tallam  <tmsriram@google.com>
2597
2598         * icf.cc (Icf::find_identical_sections): Issue a warning when a
2599         symbol in the --keep-unique list is not found.
2600
2601 2009-08-12  Sriraman Tallam  <tmsriram@google.com>
2602
2603         * icf.cc (Icf::find_identical_sections): Unfold symbols that have
2604         been maked as --keep-unique.
2605         (Icf::unfold_section): New function.
2606         * icf.h (Icf::unfold_section): New function.
2607         * options.h (General_options::keep_unique): New option.
2608         * testsuite/Makefile.am: Add commands to build icf_keep_unique_test.
2609         * testsuite/Makefile.in: Regenerate.
2610         * testsuite/icf_keep_unique_test.sh: New file.
2611         * testsuite/icf_keep_unique_test.cc: New file.
2612
2613 2009-08-12  Cary Coutant  <ccoutant@google.com>
2614
2615         PR 10471
2616         * resolve.cc (Symbol_table::resolve): Check for references from
2617         dynamic objects to hidden and internal symbols.
2618         * testsuite/Makefile.am (hidden_test.sh): New test.
2619         * testsuite/Makefile.in: Regenerate.
2620         * testsuite/hidden_test.sh: New script.
2621         * testsuite/hidden_test_1.c: New test source.
2622         * testsuite/hidden_test_main.c: New test source.
2623
2624 2009-08-11  Doug Kwan  <dougkwan@google.com>
2625
2626         * arm.cc: Update comments.
2627         (Target_arm::do_finalize_sections): Add a special PT_ARM_EXIDX
2628         segment to locate the .ARM.exidx section if present.
2629
2630 2009-08-09  Doug Kwan  <dougkwan@google.com>
2631
2632         * dynobj.h (Sized_dynobj::do_section_entsize): Revert the previous
2633         patch.
2634
2635 2009-08-07  Sriraman Tallam  <tmsriram@google.com>
2636         * dynobj.h (Sized_dynobj::do_section_entsize): Add return to avoid
2637         compiler warnings.
2638
2639 2009-08-06  Sriraman Tallam  <tmsriram@google.com>
2640
2641         * x86_64.cc (Target_x86_64::Relocate::relocate_tls): Check for a
2642         valid tls_segment only for non-debug-section relocations.
2643         * testsuite/Makefile.am: Add gc_tls_test.
2644         * testsuite/Makefile.in: Regenerate.
2645         * testsuite/gc_tls_test.cc: New file.
2646         * testsuite/gc_tls_test.sh: New file.
2647
2648 2009-08-05  Sriraman Tallam  <tmsriram@google.com>
2649         
2650         * icf.cc: New file.
2651         * icf.h: New file.
2652         * Makefile.am (CCFILES): Add icf.cc.
2653         (HFILES): Add icf.h
2654         * Makefile.in: Regenerate.
2655         * dynobj.h (Sized_dynobj::do_section_entsize): New function.
2656         * gc.h (gc_process_relocs): Populate lists used by icf to contain
2657         section, symbol and addend information for the relocs.
2658         * gold.cc (queue_middle_tasks): Call identical code folding.
2659         * gold.h: Add defines for multimap.
2660         * layout.cc (Layout::create_symtab_sections): Add symtab as parameter
2661         to the call of finalize_local_symbols.
2662         * main.cc (main): Create object of class Icf.
2663         * object.cc (Sized_relobj::do_layout): Allow this function to be
2664         called twice during icf.
2665         (Sized_relobj::do_finalize_local_symbols): Fold symbols corresponding
2666         to sections marked as identical by icf.
2667         (Sized_relobj::do_section_flags): Get section_flags from Symbols_data
2668         when available.
2669         (Sized_relobj::do_section_entsize): New function.
2670         * object.h (Object::section_entsize): New function.
2671         (Object::do_section_entsize): New pure virtual function.
2672         (Relobj::finalize_local_symbols): Add new parameter.
2673         (Relobj::do_section_entsize): New function.
2674         * options.h (General_options::icf): New option.
2675         (General_options::icf_iterations): New option.
2676         (General_options::print_icf_sections): New option.
2677         * plugin.cc (Sized_pluginobj::do_section_entsize): New function.
2678         * plugin.h (Sized_pluginobj::do_section_entsize): New function.
2679         * reloc.cc (Read_relocs::run): Delay scanning relocs when doing
2680         icf.
2681         * symtab.cc (Symbol_table::is_section_folded): New function.
2682         (Symbol_table::sized_finalize_symbol):  Fold symbols corresponding
2683         to sections marked as identical by icf.
2684         * symtab.h (Symbol_table::set_icf): New function.
2685         (Symbol_table::icf): New function.
2686         (Symbol_table::is_section_folded): New function.
2687         (Symbol_table::icf_): New data member.
2688         * target-reloc.h (relocate_section): Ignore sections folded by icf.
2689         * testsuite/Makefile.am: Add commands to build icf_test.
2690         * testsuite/Makefile.in: Regenerate.
2691         * testsuite/icf_test.sh: New file.
2692         * testsuite/icf_test.cc: New file.
2693
2694 2009-07-24  Chris Demetriou  <cgd@google.com>
2695
2696         * layout.cc (is_compressible_debug_section): Fix incorrect
2697         comment about compressed section names.
2698
2699 2009-07-20  Ian Lance Taylor  <ian@airs.com>
2700
2701         PR 10419
2702         * x86_64.cc (Target_x86_64::do_code_fill): Correct nop sequences.
2703
2704 2009-07-16  Ian Lance Taylor  <iant@google.com>
2705
2706         PR 10400
2707         * layout.h: #include <map>.
2708         (class Kept_section): Change from struct to class.  Add accessors
2709         and setters.  Add section size to Comdat_group mapping.  Change
2710         Comdat_group to std::map.  Add is_comdat_ field.  Add
2711         linkonce_size field in union.
2712         (class Layout): Update declaration of find_or_add_kept_section.
2713         Don't declare find_kept_object.
2714         * layout.cc (Layout::find_or_add_kept_section): Remove candidate
2715         parameter.  Add object, shndx, is_comdat, and is_group_name
2716         parameters.  Change all callers.  Adjust for new Kept_section.
2717         (Layout::find_kept_object): Remove.
2718         * object.cc (Sized_relobj::include_section_group): Update use of
2719         Kept_section.  Rename secnum to shndx.  Only record
2720         Kept_comdat_section if sections are the same size.
2721         (Sized_relobj::include_linkonce_section): Update use of
2722         Kept_section.  Only record Kept_comdat_section if sections are the
2723         same size.  Set size of linkonce section.
2724         (Sized_relobj::map_to_kept_section): Update call to
2725         get_kept_comdat_section.
2726         * object.h (class Sized_relobj): Rename fields in
2727         Kept_comdat_section to drop trailing underscores; change object
2728         field to Relobj*.  Change Kept_comdat_section_table to store
2729         struct rather than pointer.
2730         (Sized_relobj::set_kept_comdat_section): Remove kept parameter.
2731         Add kept_object and kept_shndx parameters.  Change all callers.
2732         (Sized_relobj::get_kept_comdat_section): Change return type to
2733         bool.  Add kept_object and kept_shndx parameters.  Change all
2734         callers.
2735         * plugin.cc (Pluginobj::include_comdat_group): Update call to
2736         Layout::find_or_add_kept_section.
2737
2738 2009-07-09  Ian Lance Taylor  <iant@google.com>
2739
2740         * merge.cc (Object_merge_map::initialize_input_to_output_map):
2741         Reserve space in the hash table.
2742
2743 2009-07-06  Mikolaj Zalewski  <mikolajz@google.com>
2744
2745         * fileread.cc (File_read::get_mtime): New method.
2746         * fileread.h (Timespec): New structure.
2747         (File_read::get_mtime): New method.
2748         * incremental.cc (Incremental_inputs_entry_data::timestamp_usec):
2749         Renamed from timestamp_nsec.
2750         (Incremental_inputs_entry_write::timestamp_sec): Fix argument to
2751         Elf_Xword.
2752         (Incremental_inputs_entry_write::timestamp_usec): Renamed from 
2753         timestamp_nsec.
2754         (Incremental_inputs::report_archive): Save mtime; style fix. 
2755         (Incremental_inputs::report_obejct): Save mtime; style fix.
2756         (Incremental_inputs::report_script): Save mtime; style fix.
2757         (Incremental_inputs::finalize_inputs): Style fix.
2758         (Incremental_inputs::finalize): Style fix.
2759         (Incremental_inputs::create_input_section_data): Store inputs
2760         mtime.
2761         * incremental.h (Incremental_inputs::report_script): Add mtime
2762         argument.
2763         (Incremental_inputs::Input_info::Input_info): Intialize only one
2764         union member.
2765         (Incremental_inputs::Input_info::archive): Move to nameless
2766         union.
2767         (Incremental_inputs::Input_info::obejct): Move to nameless union.
2768         (Incremental_inputs::Input_info::script): Move to nameless union.
2769         (Incremental_inputs::mtime): New field.
2770         * script.cc (read_input_script): Pass file mtime to
2771         Incremental_input.
2772         * script.h (Script_info::inputs): Style fix.
2773
2774 2009-07-01  Ian Lance Taylor  <ian@airs.com>
2775
2776         * freebsd.h (Target_freebsd::do_adjust_elf_header): Use size
2777         instead of 32.
2778
2779 2009-06-24  Ian Lance Taylor  <iant@google.com>
2780
2781         PR 10156
2782         * layout.cc (Layout::choose_output_section): If we find an
2783         existing section, update the flags.
2784         (Layout::create_notes): New function, broken out of
2785         Layout::finalize.
2786         (Layout::finalize): Don't create note sections.
2787         (Layout::create_note): Don't crash if linker script discards
2788         section.
2789         (Layout::create_gold_note): Likewise.
2790         (Layout::create_build_id): Likewise.  Don't set
2791         after_input_sections on the section.
2792         (Layout::create_executable_stack_info): Remove target parameter.
2793         Change caller.
2794         * layout.h (class Layout): Declare create_notes.  Update
2795         declaration of create_executable_stack_info.
2796         * gold.cc (queue_middle_tasks): Call create_notes.
2797         * output.cc (Output_section::update_flags_for_input_section): Move
2798         here from output.h.  If SHF_ALLOC flag is newly set, mark address
2799         invalid.
2800         * output.h (Output_data::mark_address_invalid): New function.
2801         (class Output_section): Only declare, not define,
2802         update_flags_for_input_section.  Remove set_flags.
2803
2804 2009-06-24  Ian Lance Taylor  <iant@google.com>
2805
2806         * script-sections.cc (Output_section_definition::
2807         set_section_addresses): Rename shadowing local load_address to
2808         laddr.
2809
2810 2009-06-24  Ian Lance Taylor  <iant@google.com>
2811
2812         PR 10244
2813         * reloc.cc (relocate_sections): Skip empty relocation sections.
2814
2815 2009-06-23  Ian Lance Taylor  <iant@google.com>
2816
2817         PR 10156
2818         * layout.cc (Layout::create_note): Use choose_output_section
2819         rather than make_output_section.
2820
2821 2009-06-23  Ian Lance Taylor  <iant@google.com>
2822
2823         PR 10237
2824         * options.cc (General_options::parse_V): Set printed_version_.
2825         (General_options::General_options): Initialize printed_version_.
2826         * options.h (class General_options): Add printed_version_ field.
2827         * gold.cc (queue_initial_tasks): If there are no input files,
2828         don't give a fatal error if we printed the version information.
2829         (queue_middle_tasks): If using -r with a shared object, give a
2830         fatal error rather than an ordinary error.
2831
2832 2009-06-23  Ian Lance Taylor  <iant@google.com>
2833
2834         PR 10219
2835         * layout.cc (Layout::Layout): Initialize have_stabstr_section_.
2836         (Layout::make_output_section): Set have_stabstr_section_ if we see
2837         a .stab*str section.
2838         (Layout::finalize): Call link_stabs_sections.
2839         (Layout::link_stabs_sections): New file.
2840         * layout.h (class Layout): Add have_stabstr_section_ field.
2841         Declare link_stabs_sections.
2842
2843 2009-06-23  Doug Kwan  <dougkwan@google.com>
2844
2845         * Makefile.am (libgold_a_LIBADD): New.
2846         (ld_new_DEPENDENCIES, ld_new_LDADD): Remove LIBOBJS
2847         * Makefile.in: Regenerate.
2848         * config.in (HAVE_DECL_MEMMEM, HAVE_DECL_STRNDUP): New.
2849         * configure: Regenerate.
2850         * configure.ac (AC_CHECK_DECLS): Add strndup and memmem.
2851         * fileread.cc: Include sys/state.h
2852         * gold.h: Declare memmem and strndup if found missing.
2853         * gold_reloc.h: Include byteswap.h if HAVE_BYTESWAP_H is defined.
2854
2855 2009-06-23  Ian Lance Taylor  <iant@google.com>
2856
2857         * configure.ac: Call AC_CHECK_DECLS using C, not C++.
2858         * configure: Rebuild.
2859
2860 2009-06-23  Ian Lance Taylor  <iant@google.com>
2861
2862         PR 10147
2863         * object.cc (Object::section_contents): Don't try to get a view if
2864         the section has length zero.
2865         (Object::handle_gnu_warning_section): If the section is empty, use
2866         the name of the section as the warning.
2867
2868 2009-06-23  Ian Lance Taylor  <iant@google.com>
2869
2870         PR 10133
2871         * stringpool.h (class Stringpool_template): Add optimize_ field.
2872         (Stringpool_template::set_optimize): New function.
2873         * stringpool.cc (Stringpool_template::Stringpool_template):
2874         Initialize optimize_ field.
2875         (Stringpool_template::set_string_offsets): Test local optimize
2876         fild rather than parameter.
2877         * layout.cc (Layout::Layout): Call set_optimize on the section
2878         name stringpool.
2879
2880 2009-06-22  Ian Lance Taylor  <iant@google.com>
2881
2882         PR 10030
2883         * yyscript.y: Parse TARGET.
2884         * script.cc (script_set_target): New function.
2885         * script-c.h (script_set_target): Declare.
2886         * options.cc (General_options::string_to_object_format): Rename
2887         from string_to_object_format in anonymous namespace.  Change
2888         callers.
2889         * options.h (class General_options): Declare
2890         string_to_object_format.
2891
2892 2009-06-22  Ian Lance Taylor  <iant@google.com>
2893
2894         * script-sections.cc (Script_sections::create_segments): Don't put
2895         program headers in a PT_LOAD segment if -n or -N.
2896
2897 2009-06-22  Ian Lance Taylor  <iant@google.com>
2898
2899         PR 10141
2900         * options.h (class General_options): Add -z lazy and -z now.  Sort
2901         -z options into alphabetical order.
2902         * layout.cc (Layout::finish_dynamic_section): Handle -z now.
2903
2904 2009-06-21  Ian Lance Taylor  <iant@google.com>
2905
2906         * layout.cc (Layout::make_output_section): Call
2907         Target::new_output_section.
2908         (Layout::attach_allocated_section_to_segment): Put large section
2909         sections in a separate load segment with the large segment flag
2910         set.
2911         (Layout::segment_precedes): Sort large data segments after other
2912         load segments.
2913         (align_file_offset): New static function.
2914         (Layout::set_segment_offsets): Use align_file_offset.
2915         * output.h (class Output_section): Add is_small_section_ and
2916         is_large_section_ fields.
2917         (Output_section::is_small_section): New function.
2918         (Output_section::set_is_small_section):  New function.
2919         (Output_section::is_large_section): New function.
2920         (Output_section::set_is_large_section): New function.
2921         (Output_section::is_large_data_section): New function.
2922         (class Output_segment): Add is_large_data_segment_ field.
2923         (Output_segment::is_large_data_segment): New function.
2924         (Output_segment::set_is_large_data_segment): New function.
2925         * output.cc (Output_section::Output_section): Initialize new
2926         fields.
2927         (Output_segment::Output_segment): Likewise.
2928         (Output_segment::add_output_section): Add assertion that large
2929         data sections always go in large data segments.  Force small data
2930         sections to the end of the list of data sections.  Force small BSS
2931         sections to the start of the list of BSS sections.  For large BSS
2932         sections to the end of the list of BSS sections.
2933         * symtab.h (class Symbol): Declare is_common_shndx.
2934         (Symbol::is_defined): Check Symbol::is_common_shndx.
2935         (Symbol::is_common): Likewise.
2936         (class Symbol_table): Define enum Commons_section_type.  Update
2937         declarations.  Add small_commons_ and large_commons_ fields.
2938         * symtab.cc (Symbol::is_common_shndx): New function.
2939         (Symbol_table::Symbol_table): Initialize new fields.
2940         (Symbol_table::add_from_object): Put small and large common
2941         symbols in the right list.
2942         (Symbol_table::sized_finalized_symbol): Check
2943         Symbol::is_common_shndx.
2944         (Symbol_table::sized_write_globals): Likewise.
2945         * common.cc (Symbol_table::do_allocate_commons): Allocate new
2946         common symbol lists.  Don't call do_allocate_commons_list if the
2947         list is empty.
2948         (Symbol_table::do_allocate_commons_list): Remove is_tls
2949         parameter.  Add comons_section_type parameter.  Change all
2950         callers.  Handle small and large common symbols.
2951         * object.cc (Sized_relobj::do_finalize_local_symbols): Check
2952         Symbol::is_common_shndx.
2953         * resolve.cc (symbol_to_bits): Likewise.
2954         * target.h (Target::small_common_shndx): New function.
2955         (Target::small_common_section_flags): New function.
2956         (Target::large_common_shndx): New function.
2957         (Target::large_common_section_flags): New function.
2958         (Target::new_output_section): New function.
2959         (Target::Target_info): Add small_common_shndx, large_common_shndx,
2960         small_common_section_flags, and large_common_section_flags
2961         fields.
2962         (Target::do_new_output_section): New virtual function.
2963         * arm.cc (Target_arm::arm_info): Initialize new fields.
2964         * i386.cc (Target_i386::i386_info): Likewise.
2965         * powerpc.cc (Target_powerpc::powerpc_info) [all versions]:
2966         Likewise.
2967         * sparc.c (Target_sparc::sparc_info) [all versions]: Likewise.
2968         * x86_64.cc (Target_x86_64::x86_64_info): Likewise.
2969         (Target_x86_64::do_new_output_section): New function.
2970         * configure.ac: Define conditional MCMODEL_MEDIUM.
2971         * testsuite/Makefile.am (check_PROGRAMS): Add large.
2972         (large_SOURCES, large_CFLAGS, large_DEPENDENCIES): Define.
2973         (large_LDFLAGS): Define.
2974         * testsuite/large.c: New file.
2975         * testsuite/testfile.cc (Target_test::test_target_info):
2976         Initialize new fields.
2977         * configure, testsuite/Makefile.in: Rebuild.
2978
2979 2009-06-05  Doug Kwan  <dougkwan@google.com>
2980
2981         * Makefile.am (CCFILES): Add target.cc.
2982         * Makefile.in: Regenerate. 
2983         * i386.cc (class Target_i386): Define new virtual method to
2984         override do_is_local_label_name in parent.
2985         * object.cc (Sized_relobj::do_count_local_symbols): Discard
2986         local symbols if --discard-locals or -X is given.
2987         * options.h (class General_options): Declare new options
2988         '--discard-locals' and '-X' for discarding locals.
2989         * target.h (class Target): Define new methods is_local_label_name.
2990         Declare new virtual method do_is_local_label_name.
2991         * target.cc: New file.
2992         * testsuite/Makefile.am (check_PROGRAMS): Add discard_locals_test.
2993         (check_SCRIPTS): Add discard_locals_test.sh.
2994         (check_DATA): Add discard_local_tests.syms.
2995         (discard_locals_test_SOURCES, discard_locals_test_LDFLAGS): Define.
2996         (discard_local_tests.syms, discard_locals_test.o): New make rules.
2997         * testsuite/Makefile.in: Regenerate.
2998         * testsuite/discard_locals_test.c: New file.
2999         * testsuite/discard_locals_test.sh: Same.
3000
3001 2009-06-05  Doug Kwan  <dougkwan@google.com>
3002
3003         * object.cc (Sized_relobj::Sized_relobj): Initialize
3004         discarded_eh_frame_shndx_ to -1U.
3005         (Sized_relobj::do_layout): Record index of a discard .eh_frame
3006         section.
3007         (Sized_relobj::do_count_local_symbols): Skip local symbols in
3008         a discarded .eh_frame section.
3009         (Sized_relobj::do_finalize_local_symbols): Ditto.
3010         * object.h (class Sized_relobj): Declare new member
3011         discarded_eh_frame_shndx_.
3012         * testsuite/Makefile.am (check_PROGRAMS): Add local_labels_test.
3013         (local_labels_test.o, local_labels_test): New rules.
3014         * testsuite/Makefile.in: Regenerate.
3015
3016 2009-06-04  Doug Kwan  <dougkwan@google.com>
3017
3018         * layout.cc (Layout::section_name_mapping): Add mapping for
3019         special ARM sections.
3020
3021 2009-06-03  Doug Kwan  <dougkwan@google.com>
3022
3023         * arm.cc (utils::sign_extend): Reverse test in gold_assert.
3024         (utils::has_overflow): Same.
3025
3026 2009-06-03  Ian Lance Taylor  <iant@google.com>
3027
3028         * layout.cc (Layout::section_name_mapping): New array, replacing
3029         Layout::linkonce_mapping.
3030         (Layout::section_name_mapping_count): New variable, replacing
3031         Layout::linkonce_mapping_count.
3032         (Layout::linkonce_output_name): Remove.
3033         (Layout::output_section_name): Rewrite.
3034         * layout.h (class Layout): Rename Linkonce_mapping to
3035         Section_name_mapping, linkonce_mapping to section_name_mapping,
3036         linkonce_mapping_count to section_name_mapping_count.  Don't
3037         declare linkonce_output_name.
3038
3039 2009-06-03  Doug Kwan  <dougkwan@google.com>
3040
3041         * gold/arm.cc (namespace utils): New.
3042         (Target_arm::reloc_is_non_pic): Define new method.
3043         (class Arm_relocate_functions): New.
3044         (Target_arm::Relocate::relocate): Handle relocation types used by
3045         Android.
3046
3047 2009-06-03  Ian Lance Taylor  <iant@google.com>
3048
3049         * arm.cc (Target_arm::scan::global): Use || instead of |.
3050
3051 2009-06-02  Doug Kwan  <dougkwan@google.com>
3052
3053         * gold/arm.cc (Target_arm::Scan::Scan):  Initialize
3054         issued_non_pic_error_.
3055         (class Target_arm::Scan): Declare new method check_non_pic.
3056         Define new method symbol_needs_plt_entry.
3057         Declare new data member issued_non_pic_error_.
3058         (class Target_arm::Relocate): Declare new method
3059         should_apply_static_reloc.
3060         (Target_arm::may_need_copy_reloc): Handle STT_ARM_TFUNC.
3061         (Target_arm::Scan::check_non_pic): Define new method.
3062         (Target_arm::Scan::local): Handle a small subset of reloc types used
3063         by Android.
3064         (Target_arm::Scan::local): Same.
3065         (Target_arm::Relocate::should_apply_statci_reloc): Define new method.
3066
3067 2009-05-31  Mikolaj Zalewski  <mikolajz@google.com>
3068
3069         * incremental.cc (Incremental_inputs::report_command_line): Filter
3070         out --incremental-* options.
3071
3072 2009-05-29  Doug Kwan  <dougkwan@google.com>
3073
3074         * gold/arm.cc (Output_data_plt_arm): Forward declaration for new
3075         template class.
3076         (class Target_arm): Update comment.
3077         (Target_arm::Target_arm): Initialize new data members GOT_,
3078         PLT_, GOT_PLT_, REL_DYN_, COPY_RELOCS_ and DYNBSS_.
3079         Declare new methods Target_arm::got_section, Target_arm::make_plt_entry
3080         and Target_arm::rel_dyn_section.
3081         Declare new_enum Target_arm::Got_type.
3082         Declare new data members GOT_, PLT_, GOT_PLT_, REL_DYN_, COPY_RELOCS_
3083         and DYNBSS_.
3084         Update commments for member do_dynsym_value.
3085         (Target_arm::got_size, Target_arm::plt_section,
3086         Target_arm::may_need_copy_reloc and Target_arm::copy_reloc): Define
3087         new methods inside class defintion.
3088         (Target_arm::got_section): Define new method.
3089         (Target_arm::rel_dyn_section): Same.
3090         (Output_data_plt_arm): New template class.
3091         (Output_data_plt_arm::Output_data_plt_arm): Define constructor.
3092         (Output_data_plt_arm:do_adjust_output_section): Define new method.
3093         (Output_data_plt_arm::add_entry): Same.
3094         (Output_data_plt_arm::first_plt_entry): Define new
3095         static data member for PLT instruction template.
3096         (Output_data_plt_arm::plt_entry): Same.
3097         (Output_data_plt_arm::do_write): Define new method.
3098         (Target_arm::make_plt_entry): Same.
3099         (Target_arm::do_finalize_sections): Same.
3100         (Target_arm::do_dynsym_value): Same.
3101
3102 2009-05-28  Doug Kwan  <dougkwan@google.com>
3103
3104         * Makefile.am (TARGETSOURCES): Add arm.cc.
3105         (ALL_TARGETOBJECTS): Add arm.$(OBJEXT)
3106         * Makefile.in: Regenerate.
3107         * arm.cc: New file.
3108         * configure.tgt: Add armbe*-*-*, armeb*-*-* and arm*-*-* targets.
3109
3110 2009-05-26  Doug Kwan  <dougkwan@google.com>
3111
3112         * options.cc (General_options::parse_exclude_libs).  Fix a comment.
3113         (General_options::check_excluded_libs): Strip off directories in
3114         archive name before matching like GNU ld does.
3115         * testsuite/Makefile.am (MOSTLYCLEANFILES,
3116         exclude_libs_test_DEPENDENCIES): Add alt/libexclude_libs_test_3.a
3117         (exclude_libs_test_LDFLAGS): Add linker option
3118         -Wl,--exclude-libs,libexclude_libs_test_3
3119         (exclude_libs_test_LADD): Add alt/libexclude_libs_test_3.a as
3120         an explicit archive without using -l.
3121         (alt/libexclude_libs_test_3.a): New make rule.
3122         * testsuite/Makefile.in: Regenerate.
3123         * testsuite/exclude_libs_test.c : Declare lib3_default().
3124         (main): Call it.
3125         * exclude_libs_test.sh: Add tests for alt/exclude_libs_test_3.a.
3126         * exclude_libs_test_3.c: New file.
3127
3128 2009-05-26  Nick Clifton  <nickc@redhat.com>
3129
3130         * po/id.po: New Indonesian translation.
3131         * po/gold.pot: Updated template file.
3132
3133 2009-05-22  Sriraman Tallam  <tmsriram@google.com>
3134
3135         * testsuite/Makefile.am: Add -ffunction-sections to compile 
3136         gc_comdat_test files.  Add -Wl,--gc-sections to build
3137         gc_comdat_test.
3138         * testsuite/Makefile.in: Regenerate.
3139         * testsuite/gc_comdat_test.sh: Fix the condition around grep.
3140
3141 2009-05-21  Sriraman Tallam  <tmsriram@google.com>
3142
3143         * object.cc (Sized_relobj::map_to_kept_section): Return NULL if the
3144         kept comdat section was garbage collected.
3145         * testsuite/Makefile.am: Add test gc_comdat_test.sh.
3146         * testsuite/Makefile.in: Regenerate.
3147         * testsuite/gc_comdat_test.sh: New file.
3148         * testsuite/gc_comdat_test_1.cc: New file.
3149         * testsuite/gc_comdat_test_2.cc: New file.
3150
3151 2009-05-19  Doug Kwan  <dougkwan@google.com>
3152
3153         * archive.cc (Archive::Archive): Move constructor from archive.h
3154         to here.  Initialize no_export_.
3155         (Archive::get_elf_object_for_member): Set no_export flag of object.
3156         * archive.h (Archive::Archive): Move constructor body to
3157         archive.cc.
3158         (Archive::no_export): New method.
3159         (Archive::no_export_): New field.
3160         * object.h (Object::Object): Initialize no_export_ to false.
3161         (Object::no_export, Object::set_no_export): New methods.
3162         (Object::no_export_): New field.
3163         * options.cc (General_options::parse_exclude_libs): New method.
3164         (General_options::check_excluded_libs) Same.
3165         * options.h (exclude_libs): New option.
3166         (General_options::check_excluded_libs): New method declaration.
3167         (General_options::excluded_libs_): New field.
3168         * symtab.cc (Symbol_table::add_from_relobj): Hide symbols with
3169         default or protected visibility if an object has no-export flag set.
3170         testsuite/Makefile.am (check_PROGRAMS): Add exclude_libs_test.
3171         (check_SCRIPTS): Add exclude_libs_test.sh.
3172         (check_DATA): Add exclude_libs_test.syms.
3173         (MOSTLYCLEANFILES): Add exclude_libs_test.syms,
3174         libexclude_libs_test_1.a and libexclude_libs_test_2.a.
3175         (exclude_libs_test_SOURCES, exclude_libs_test_DEPENDENCIES,
3176         exclude_libs_test_LDFLAGS and exclude_libs_test_LDADD): Define.
3177         (exclude_libs_test.syms, libexclude_libs_test_1.a,
3178         libexclude_libs_test_2.a): New rules.
3179         * testsuite/Makefile.in: Regenerate.
3180         * testsuite/exclude_libs_test.c: New file.
3181         * testsuite/exclude_libs_test.sh: Ditto.
3182         * testsuite/exclude_libs_test_1.c: Ditto.
3183         * testsuite/exclude_libs_test_2.c: Ditto.
3184
3185 2009-05-15  Ian Lance Taylor  <iant@google.com>
3186
3187         * configure.ac: Check for declarations for cases where libiberty.h
3188         checks HAVE_DECL_xxx.
3189         * configure, config.in: Rebuild.
3190
3191 2009-05-15  Mikolaj Zalewski  <mikolajz@google.com>
3192
3193         * gold.h (Incremental_argument_list): Remove (invalid) forward
3194         declaration.
3195         * incremental.cc (Incremental_inputs::report_achive): New method.
3196         (Incremental_inputs::report_object): New method.
3197         (Incremental_inputs::report_script): New method.
3198         (Incremental_inputs::finalize_inputs): New method.
3199         (Incremental_inputs::finalize): Call finalize_inputs().
3200         (Incremental_inputs::sized_create_incremental_inputs_section_data):
3201         Create inputs entries.
3202         * incremental.h (Incremental_input_type): New enum.
3203         (Incremental_inputs::Incremental_input): Initialize new fields.
3204         (Incremental_inputs::report_inputs): New method.
3205         (Incremental_inputs::report_achive): New method.
3206         (Incremental_inputs::report_object): New method.
3207         (Incremental_inputs::report_script): New method.
3208         (Incremental_inputs::finalize_inputs): New method.
3209         (Incremental_inputs::Input_info): New struct.
3210         (Incremental_inputs::Input_info_map): New typedef.
3211         (Incremental_inputs::lock_): New field.
3212         (Incremental_inputs::Inputs_): New field.
3213         (Incremental_inputs::Inputs_map): New field.
3214         * main.cc (main): Call Incremental_input::report_inputs.
3215         * options.h (Input_argument_list): Typedef moved from
3216         Input_arguments.
3217         (Input_file_group::Files): Remove, use ::Input_argument_list.
3218         (Input_file_group::Input_argument_list): Remove, use
3219         ::Input_argument_list.
3220         * plugin.cc (Plugin_manager::add_input_file): Add error in
3221         incremental build.
3222         * read_syms.cc (do_read_syms): Call Incremental_input::report_*
3223         functions.
3224         * script.cc (read_input_script): Call
3225         Incremental_input::report_script.
3226         * script.h (Script_info): New class.
3227
3228 2009-04-27  Ian Lance Taylor  <iant@google.com>
3229
3230         * x86_64.cc (do_adjust_output_section): Set entsize to
3231         plt_entry_size.
3232
3233 2009-04-23  Elliott Hughes  <enh@google.com>
3234
3235         * output.cc (Output_file::close): After short writes, continue
3236         writing from the correct offset in the buffer being written.
3237
3238 2009-04-23  Chris Demetriou  <cgd@google.com>
3239
3240         * configure.ac (HAVE_TR1_UNORDERED_MAP_REHASH): New define.
3241         * configure: Regenerate.
3242         * config.in: Regenerate.
3243         * gold.h: Avoid std::tr1::unordered_map and std::tr1::unordered_set
3244         if HAVE_TR1_UNORDERED_MAP_REHASH is not defined.
3245
3246 2009-04-21  Mikolaj Zalewski  <mikolajz@google.com>
3247
3248         * incremental.cc (Incremental_inputs_header_data): Renamed from
3249         Incremental_input_header_data.
3250         (Incremental_inputs_header_data::data_size): New field.
3251         (Incremental_inputs_header_data::put_input_file_count): Renamed
3252         from input_file_count.
3253         (Incremental_inputs_header_data::put_command_line_offset): Renamed
3254         from command_line_offset.
3255         (Incremental_inputs_header_data::put_reserved): Renamed from
3256         put_reserved.
3257         (Incremental_inputs_entry_data): Renamed from
3258         Incremental_input_entry_data.
3259         (Incremental_inputs_entry_data::data_size): New field.
3260         (Incremental_inputs::report_command_line): New method.
3261         (Incremental_inputs::finalize): New method.
3262         (Incremental_inputs::create_incremental_inputs_data): New method.
3263         (Incremental_inputs::sized_create_incremental_inputs_data): New method.
3264         * incremental.h: New file.
3265         * layout.cc (Layout::Layout): Handle new incremental_inputs_.
3266        (Layout::finalize): Create incremental inputs section in
3267         incremental builds.
3268        (Layout::create_incremental_info_sections): New method.
3269         * layout.h (Layout::incremental_inputs): New method.
3270        (Layout::create_incremental_info_sections): New method.
3271        (Layout::incremental_inputs_): New field.
3272         * main.cc (main): Notify Incremental_input of the command line.
3273
3274 2009-04-01  Ian Lance Taylor  <iant@google.com>
3275             Mikolaj Zalewski  <mikolajz@google.com>
3276
3277         * gold.h (reserve_unordered_map): Define, three versions, one for
3278         each version of Unordered_map.
3279         * layout.cc (Layout::Layout): Remove options parameter.  Add
3280         number_of_input_files parameter.  Don't initialize options_.
3281         Initialize number_of_input_files_ and resized_signatures_.  Move
3282         sections_are_attached_.
3283         (Layout::layout_group): Reserve space for group_signatures_.
3284         (Layout::find_or_add_kept_section): Change name parameter to be a
3285         reference.  Resize signatures_ map when it gets large enough.
3286         (Layout::layout_eh_frame): Use parameters->options() instead of
3287         this->options_.
3288         (Layout::make_output_section): Likewise.
3289         (Layout::attach_allocated_section_to_segment): Likewise.
3290         (Layout::finalize, Layout::create_executable_stack): Likewise.
3291         (Layout::set_segment_offsets, Layout::create_interp): Likewise.
3292         (Layout::finish_dynamic_section, Layout::write_binary): Likewise.
3293         * layout.h (class Layout): Update declarations.  Remove options_
3294         field.  Add number_of_input_files_ and resized_signatures_
3295         fields.  Move sections_are_attached_ field.
3296         * main.cc (main): Pass number of input files to Layout
3297         constructor.  Don't pass options.
3298
3299 2009-03-30  Ian Lance Taylor  <iant@google.com>
3300
3301         * ffsll.c (ffsll): Correct implementation.
3302
3303 2009-03-27  Ian Lance Taylor  <iant@google.com>
3304
3305         * ffsll.c: New file.
3306         * configure.ac: Call AC_REPLACE_FUNCS on ffsll.
3307         * gold.h (ffsll): Declare if HAVE_FFSLL is not defined.
3308         * ftruncate.c (ftruncate): Declare before definition.
3309         * mremap.c (mremap): Likewise.
3310         * pread.c (pread): Likewise.
3311         * configure, Makefile.in, config.in: Rebuild.
3312
3313         * mremap.c: New file.
3314         * configure.ac: Call AC_REPLACE_FUNCS on mremap.
3315         * gold.h (MREMAP_MAYMOVE): Define if HAVE_MREMAP is not defined.
3316         (mremap): Declare if HAVE_MREMAP is not defined.
3317         * configure, Makefile.in, config.in: Rebuild.
3318
3319 2009-03-27  Cary Coutant  <ccoutant@google.com>
3320
3321         * powerpc.cc (Target_powerpc::check_non_pic): Assert that output is
3322         position independent.
3323         * sparc.cc (Target_sparc::check_non_pic): Likewise.
3324         * x86_64.cc (Target_x86_64::check_non_pic): Likewise.
3325
3326 2009-03-24  Cary Coutant  <ccoutant@google.com>
3327
3328         * symtab.h (needs_plt_entry): Check for unsatisfied reference from
3329         an executable.
3330         (needs_dynamic_reloc): Likewise.
3331
3332 2009-03-24  Ian Lance Taylor  <iant@google.com>
3333
3334         * yyscript.y (file_cmd): Recognize EXTERN.
3335         (extern_name_list, extern_name_list_body): New nonterminals.
3336         * script.cc (script_add_extern): Define.
3337         * script-c.h (script_add_extern): Declare.
3338
3339 2009-03-24  Rafael Avila de Espindola  <espindola@google.com>
3340
3341         * object.cc (is_elf_object): Define.
3342         * object.h (is_elf_object): Declare.
3343         * archive.cc (Archive::get_elf_object_for_member): Call
3344         is_elf_object.
3345         * readsyms.cc (Read_symbols::do_read_symbols): Likewise.
3346
3347 2009-03-24  Elliott Hughes  <enh@google.com>
3348
3349         * output.cc (Output_file::map_anonymous): Define.
3350         (Output_file::map): Use map_anonymous.  If the regular mmap fails,
3351         try an anonymous one.  Report the size if the mmap fails.
3352         * output.h (class Output_file): Declare map_anonymous.
3353
3354 2009-03-24  Ian Lance Taylor  <iant@google.com>
3355
3356         * target-select.cc (instantiate_target): Don't acquire the lock if
3357         the instantiated_target_ field has already been set.
3358
3359 2009-03-23  Ian Lance Taylor  <iant@google.com>
3360
3361         * gold-threads.h (class Initialize_lock): Define.
3362         * gold-threads.cc (class Initialize_lock_once): Define.
3363         (initialize_lock_control): New static variable.
3364         (initialize_lock_pointer): New static variable.
3365         (initialize_lock_once): New static function.
3366         (Initialize_lock::Initialize_lock): Define.
3367         (Initialize_lock::initialize): Define.
3368         * target-select.h: Include "gold-threads.h".
3369         (class Target_selector): Add lock_ and initialize_lock_ fields.
3370         Don't define instantiate_target, just declare it.
3371         * target-select.cc (Target_selector::Target_selector): Initialize
3372         new fields.
3373         (Target_selector::instantiate_target): Define.
3374         * descriptors.h: Include "gold-threads.h".
3375         (class Descriptors): Add initialize_lock_ field.
3376         * descriptors.cc (Descriptors::Descriptors): Initialize new
3377         field.
3378         (Descriptors::open): Use initialize_lock_ field
3379         * errors.h (class Errors): Add initialize_lock_ field.
3380         * errors.cc (Errors::Errors): Initialize new field.
3381         (Errors::initialize_lock): Use initialize_lock_ field.
3382         * powerpc.cc (class Target_selector_powerpc): Remove
3383         instantiated_target_ field.  In do_recognize call
3384         instantiate_target rather than do_instantiate_target.  In
3385         do_instantiate_target just allocate a new target.
3386         * sparc.cc (class Target_selector_sparc): Likewise.
3387
3388         * freebsd.h: New file.
3389         * i386.cc: Include "freebsd.h".
3390         (Target_i386): Derive from Target_freebsd rather than
3391         Sized_target.
3392         (Target_selector_i386): Derive from Target_selector_freebsd rather
3393         than Target_selector.
3394         * x86_64.cc: Include "freebsd.h".
3395         (Target_x86_64): Derive from Target_freebsd rather than
3396         Sized_target.
3397         (Target_selector_x86_64): Derive from Target_selector_freebsd
3398         rather than Target_selector.
3399         * target.h (class Target): Add adjust_elf_header and
3400         do_adjust_elf_header.
3401         * output.cc (Output_file_header:: do_sized_write): Call target
3402         adjust_elf_header routine.
3403         * configure.tgt: Set targ_osabi.
3404         * configure.ac: Define GOLD_DEFAULT_OSABI.
3405         * parameters.cc (Parameters::default_target): Pass
3406         GOLD_DEFAULT_OSABI to select_target.
3407         * target-select.h (class Target_selector): Make instantiate_target
3408         protected rather than private.
3409         * Makefile.am (HFILES): Add freebsd.h.
3410         * configure, Makefile.in, config.in: Rebuild.
3411
3412         * merge.cc (do_add_input_section): Correct pend value.  Change
3413         message about last entry not being null terminated from error to
3414         warning.
3415
3416 2009-03-20  Mikolaj Zalewski  <mikolajz@google.com>
3417
3418         * incremental.cc: New file.
3419         * Makefile.am (CCFILES): Add incremental.cc.
3420         * Makefile.in: Rebuild.
3421
3422 2009-03-19  Paul Pluzhnikov  <ppluzhnikov@google.com>
3423
3424         * layout.cc (Layout::output_section_name): Preserve names
3425         of '.note.' sections.
3426         
3427 2009-03-19  Ian Lance Taylor  <iant@google.com>
3428
3429         * descriptors.cc (Descriptors::open): Check that the options are
3430         valid before using them.
3431
3432 2009-03-18  Ian Lance Taylor  <iant@google.com>
3433
3434         * script-sections.h: Include <list>.
3435         (class Script_sections): Change Sections_elements from std::vector
3436         to std::list.  Typedef public Elements_iterator.  Add
3437         orphan_section_placement_, data_segment_align_start_, and
3438         saw_data_segment_align_ fields.  Remove data_segment_align_index_
3439         field.
3440         * script-sections.cc (class Orphan_section_placement): New class.
3441         (class Sections_element): Add virtual functions is_relro and
3442         orphan_section_init.  Remove virtual function place_orphan_here.
3443         (class Output_section_definition): Add is_relro and
3444         orphan_section_init.  Remove place_orphan_here.
3445         (class Orphan_output_section): Likewise.
3446         (Script_sections::Script_sections): Update for field changes.
3447         (Script_sections::data_segment_align): Set saw_data_segment_align_
3448         and data_segment_align_start_, not data_segment_align_index.
3449         (Script_sections::data_segment_relro_end): Check
3450         saw_data_segment_align_.  Use data_segment_align_start_ rather
3451         than data_segment_align_index_.
3452         (Script_sections::place_orphan): Rewrite to use
3453         Orphan_section_placement.
3454
3455 2009-03-17  Ian Lance Taylor  <iant@google.com>
3456
3457         * archive.cc (Archive::add_symbols): Check for a version attached
3458         to the symbol name in the archive map.
3459         * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_11.
3460         (ver_test_11_SOURCES, ver_test_11_DEPENDENCIES): Define.
3461         (ver_test_11_LDFLAGS, ver_test_11_LDADD): Define.
3462         (ver_test_11.a): New target.
3463         * testsuite/Makefile.in: Rebuild.
3464
3465         * configure.ac: Check for chsize and posix_fallocate.  Replace
3466         ftruncate.
3467         * ftruncate.c: New file, from gnulib.
3468         * output.cc (posix_fallocate): Define dummy version if not
3469         HAVE_POSIX_FALLOCATE.
3470         (Output_file::map): Call posix_fallocate rather than lseek and
3471         write.
3472         * gold.h (ftruncate): Declare if not HAVE_FTRUNCATE.
3473         * configure, Makefile.in, config.in: Rebuild.
3474
3475 2009-03-17  Paul Pluzhnikov  <ppluzhnikov@google.com>
3476         
3477         * layout.h (Layout::create_note): Add section_name parameter.
3478         * layout.cc (Layout::create_note): Likewise.
3479         (Layout::create_build_id, Layout::create_gold_note): Fix callers.
3480         
3481 2009-03-17  Ian Lance Taylor  <iant@google.com>
3482
3483         * descriptors.cc: Include "options.h".
3484         (FD_CLOEXEC, O_CLOEXEC): Define if not defined.
3485         (Descriptors::open): Always use O_CLOEXEC when opening a new
3486         descriptor.  If we have a plugin, and O_CLOEXEC was not defined,
3487         then set FD_CLOEXEC.
3488
3489         * sparc.cc (class Target_sparc): Add has_got_section.
3490         (Target_sparc::Scan::global): If we see _GLOBAL_OFFSET_TABLE_,
3491         make sure we have a GOT section.
3492
3493         * sparc.cc (optimize_tls_reloc): Recognize R_SPARC_TLS_IE_ADD.
3494         (Target_sparc::Scan::local): Likewise.
3495         (Target_sparc::Scan::global): Likewise.
3496         (Target_sparc::Relocate::relocate): Likewise.
3497         (Target_sparc::Relocate::relocate_tls): Likewise.
3498
3499         * symtab.cc (Symbol_table::define_default_version): New function,
3500         broken out of add_from_object.
3501         (Symbol_table::add_from_object): Call define_default_version.
3502         (Symbol_table::define_special_symbol): Add resolve_oldsym
3503         parameter.  Change all callers.  If the version for a symbol comes
3504         from a version script, resolve it with the symbol with the same
3505         name with no version.  Also add the symbol without a version if
3506         appropriate.
3507         (do_define_in_output_data): If resolving with oldsym, don't delete
3508         sym.
3509         (do_define_in_output_segment): Likewise.
3510         (do_define_as_constant): Likewise.
3511         * symtab.h (class Symbol_table): Update declarations.
3512
3513 2009-03-13  Ian Lance Taylor  <iant@google.com>
3514
3515         * readsyms.cc (Read_symbols::incompatible_warning): New function.
3516         (Read_symbols::requeue): New function.
3517         (Read_symbols::do_read_symbols): If make_elf_object fails because
3518         the target type is not configured, and the file was searched for,
3519         issue a warning and retry with the next directory.
3520         (Add_symbols::run): If the file has an incompatible format, and
3521         it was searched for, requeue the Read_symbols task.  On error,
3522         release the object.
3523         * readsyms.h (class Read_symbols): Add dirindex_ field.  Add
3524         dirindex parameter to constructor.  Change all callers.  Declare
3525         incompatible_warning and requeue.
3526         (class Add_symbols): Add dirpath_, dirindex_, mapfile_,
3527         input_argument_ and input_group_ fields.  Add them to
3528         constructor.  Change all callers.
3529         (class Read_script): Add dirindex_ field.  Add it to constructor.
3530         Change all callers.
3531         * archive.cc (Archive::setup): Remove input_objects parameter.
3532         Change all callers.
3533         (Archive::get_file_and_offset): Likewise.
3534         (Archive::read_all_symbols): Likewise.
3535         (Archive::read_symbols): Likewise.
3536         (Archive::get_elf_object_for_member): Remove input_objects
3537         parameter.  Add punconfigured parameter.  Change all callers.
3538         (Archive::add_symbols): Change return type to bool.  Check return
3539         value of include_member.
3540         (Archive::include_all_members): Likewise.
3541         (Archive::include_member): Change return type to bool.  Return
3542         false if first included object has incompatible target.  Set
3543         included_member_ field.
3544         (Add_archive_symbols::run): If add_symbols returns false, requeue
3545         Read_symbols task.
3546         * archive.h (class Archive): Add included_member_ field.
3547         Initialize it in constructor.  Add input_file and searched_for
3548         methods.  Update declarations.
3549         (class Add_archive_symbols): Add dirpath_, dirindex_, and
3550         input_argument_ fields.  Add them to constructor.  Change all
3551         callers.
3552         * script.cc: Include "target-select.h".
3553         (class Parser_closure): Add skip_on_incompatible_target_ and
3554         found_incompatible_target_ fields.  Add
3555         skip_on_incompatible_target parameter to constructor.  Change all
3556         callers.  Add methods skip_on_incompatible_target,
3557         clear_skip_on_incompatible_target, found_incompatible_target, and
3558         set_found_incompatible_target.
3559         (read_input_script): Add dirindex parameter.  Change all callers.
3560         If parser finds an incompatible target, requeue Read_symbols
3561         task.
3562         (script_set_symbol): Clear skip_on_incompatible_target in
3563         closure.
3564         (script_add_assertion, script_parse_option): Likewise.
3565         (script_start_sections, script_add_phdr): Likewise.
3566         (script_check_output_format): New function.
3567         * script.h (read_input_script): Update declaration.
3568         * script-c.h (script_check_output_format): Declare.
3569         * yyscript.y (file_cmd): Handle OUTPUT_FORMAT.
3570         (ignore_cmd): Remove OUTPUT_FORMAT.
3571         * fileread.cc (Input_file::Input_file): Add explicit this.
3572         (Input_file::will_search_for): New function.
3573         (Input_file::open): Add pindex parameter.  Change all callers.
3574         * fileread.h (class Input_file): Add input_file_argument method.
3575         Declare will_search_for.  Update declarations.
3576         * object.cc (make_elf_object): Add punconfigured parameter.
3577         Change all callers.
3578         * object.h (class Object): Make input_file public.  Add
3579         searched_for method.
3580         (make_elf_object): Update declaration.
3581         * dirsearch.cc (Dirsearch::find): Add pindex parameter.  Use it to
3582         restart search.
3583         * dirsearch.h (class Dirsearch): Update declaration.
3584         * options.h (class General_options): Add --warn-search-mismatch.
3585         * parameters.cc (Parameters::is_compatible_target): New function.
3586         * parameters.h (class Parameters): Declare is_compatible_target.
3587         * workqueue.cc (Workqueue::add_blocker): New function.
3588         * workqueue.h (class Workqueue): Declare add_blocker.
3589
3590         * fileread.cc (Input_file::open): Remove options parameter.
3591         Change all callers.
3592         (Input_file::open_binary): Likewise.
3593         * script.cc (read_input_script): Likewise.
3594         * readsyms.h (class Read_symbols): Remove options_ field.  Remove
3595         options parameter from constructor.  Change all callers.
3596         (class Read_script): Likewise.
3597         * fileread.h (class Input_file): Update declarations.
3598         * script.h (read_input_script): Update declaration.
3599
3600 2009-03-10  Nick Clifton  <nickc@redhat.com>
3601
3602         * po/es.po: New Spanish translation.
3603
3604 2009-03-06  Cary Coutant  <ccoutant@google.com>
3605
3606         * options.cc (parse_short_option): Keep dash_z from registering itself.
3607
3608 2009-03-03  Ian Lance Taylor  <iant@google.com>
3609
3610         PR 9918
3611         * target-reloc.h (relocate_section): Pass output_section to
3612         relocate.
3613         * i386.cc (Target_i386::should_apply_static_reloc): Add
3614         output_section parameter.  Change all callers.
3615         (Target_i386::Relocate::relocate): Add output_section parameter.
3616         * x86_64.cc (Target_x86_64::Relocate::relocate): Likewise.
3617         * sparc.cc (Target_sparc::Relocate::relocate): Likewise.
3618         * powerpc.cc (Target_powerpc::Relocate::relocate): Likewise.
3619         * testsuite/two_file_shared.sh: New script.
3620         * testsuite/Makefile.am (check_SCRIPTS): Add two_file_shared.sh.
3621         (check_DATA): Add two_file_shared.dbg.
3622         (two_file_shared.dbg): New target.
3623         * testsuite/Makefile.in: Rebuild.
3624
3625 2009-03-01  Ian Lance Taylor  <iant@google.com>
3626
3627         * configure.ac: Check for byteswap.h.
3628         * configure: Rebuild.
3629         * config.in: Rebuild.
3630
3631 2009-03-01  Mikolaj Zalewski  <mikolajz@google.com>
3632
3633         * layout.cc (Layout::find_or_add_kept_section): New function.
3634         (Layout::add_comdat): Removed.
3635         * layout.h (struct Kept_section): Move out of class Layout.
3636         Remove trailing underscores from field names.  Add group_sections
3637         field.  Rename group_ field to is_group.  Change all uses.
3638         (class Layout): Declare find_or_add_kept_section, not add_comdat.
3639         * object.cc (Sized_relobj::Sized_relobj): Don't initialize
3640         comdat_groups_ field.
3641         (Sized_relobj::include_section_group): Use
3642         find_or_add_kept_section and Kept_section::group_sections.
3643         (Sized_relobj::include_linkonce_section): Likewise.
3644         * object.cc (class Sized_relobj): Don't define Comdat_group or
3645         Comdat_group_table.  Remove find_comdat_group and
3646         add_comdat_group.  Remove comdat_groups_ field.
3647         * plugin.cc (include_comdat_group): Use
3648         Layout::find_or_add_kept_section.
3649
3650 2009-02-28  Ian Lance Taylor  <iant@google.com>
3651
3652         * README: --gc-sections and map files are now supported.  Document
3653         some build requirements.
3654
3655         PR 6992
3656         * symtab.cc (Symbol_table::sized_write_section_symbol): In a
3657         relocatable link set the value of the section symbol to zero.
3658         * object.cc (Sized_relobj::do_finalize_local_symbols): In a
3659         relocatable link don't include the section address in the local
3660         symbol value.
3661
3662 2009-02-27  Ian Lance Taylor  <iant@google.com>
3663
3664         PR 6811
3665         * options.h (class Search_directory): Add is_system_directory.
3666         (class General_options): Declare is_in_system_directory.
3667         * options.cc (get_relative_sysroot): Make static.
3668         (get_default_sysroot): Make static.
3669         (General_optoins::is_in_system_directory): New function.
3670         * fileread.cc (Input_file::is_in_system_directory): New function.
3671         * fileread.h (class Input_file): Declare is_in_system_directory.
3672         * object.h (class Object): Add is_in_system_directory.
3673         (class Input_objects): Remove system_library_directory_ field.
3674         * object.cc (Input_objects::add_object): Don't set
3675         system_library_directory_.
3676         (input_objects::found_in_system_library_directory): Remove.
3677         * symtab.cc (Symbol_table::write_globals): Remove input_objects
3678         parameter.  Change all callers.
3679         (Symbol_table::sized_write_globals): Likewise.
3680         (Symbol_table::warn_about_undefined_dynobj_symbol): Likewise.
3681         Call Object::is_in_system_directory.
3682         * symtab.h (class Symbol_table): Update declarations.
3683
3684         PR 5990
3685         * descriptors.h (Open_descriptor): Add is_on_stack field.
3686         * descriptors.cc (Descriptors::open): If the descriptor is on the
3687         top of the stack, remove it.  Initialize is_on_stack field.
3688         (Descriptors::release): Only add pod to stack if it is not on the
3689         stack already.
3690         (Descriptors::close_some_descriptor): Clear stack_next and
3691         is_on_stack fields.
3692
3693         PR 7091
3694         * output.cc (Output_section::find_starting_output_address): Rename
3695         from starting_output_address; add PADDR parameter; change return
3696         type.
3697         * output.h (class Output_section): Declare
3698         find_starting_output_address instead of starting_output_address.
3699         * object.cc (Sized_relobj::do_finalize_local_symbols): Handle a
3700         section symbol for which we can't find a merge section.
3701
3702         PR 9836
3703         * symtab.cc (Symbol_table::add_from_object): If the visibility is
3704         hidden or internal, force the symbol to be local.
3705         * resolve.cc (Symbol::override_visibility): Define.
3706         (Symbol::override_base): Use override_visibility.
3707         (Symbol_table::resolve): Likewise.
3708         (Symbol::override_base_with_special): Likewise.
3709         (Symbol_table::override_with_special): If the visibility is hidden
3710         or internal, force the symbol to be local.
3711         * symtab.h (class Symbol): Add set_visibility and
3712         override_visibility.
3713         * testsuite/ver_test_1.sh: New file.
3714         * testsuite/Makefile.am (check_SCRIPTS): Add ver_test_1.sh.
3715         (check_DATA): Add ver_test_1.syms.
3716         (ver_test_1.syms): New target.
3717         * testsuite/Makefile.in: Rebuild.
3718
3719 2009-02-25  Cary Coutant  <ccoutant@google.com>
3720
3721         * layout.cc (Layout::choose_output_section): Don't rename sections
3722         when using a linker script that has a SECTIONS clause.
3723         * Makefile.in: Regenerate.
3724
3725         * testsuite/Makefile.am (script_test_5.sh): New test case.
3726         * testsuite/Makefile.in: Regenerate.
3727         * testsuite/script_test_5.cc: New file.
3728         * testsuite/script_test_5.sh: New file.
3729         * testsuite/script_test_5.t: New file.
3730
3731 2009-02-13  Rafael Avila de Espindola  <espindola@google.com>
3732
3733         * archive.cc (Archive::include_member): Update calls to add_symbols.
3734         * dynobj.cc (Sized_dynobj<size, big_endian>::make_version_map): Add
3735         the Layout argument.
3736         * dynobj.h (do_add_symbols): Add the Layout argument.
3737         * object.cc (Sized_relobj<size, big_endian>::do_add_symbols): Add the
3738         Layout argument.
3739         * object.h (Object::add_symbols): Add the Layout argument.
3740         (Object::do_add_symbols): Add the Layout argument.
3741         (Sized_relobj::do_add_symbols): Add the Layout argument.
3742         * plugin.cc (Sized_pluginobj<size, big_endian>::do_add_symbols):
3743         Unify the two versions.
3744         (Add_plugin_symbols): Remove.
3745         * plugin.h (Pluginobj::add_symbols, Pluginobj::do_add_symbols): Remove.
3746         (Sized_pluginobj::do_add_symbols): Unify the two versions.
3747         (Add_plugin_symbols): Remove.
3748         * readsyms.cc (Read_symbols::do_read_symbols): Update call to
3749         Add_symbols. Use Add_symbols instead of Add_plugin_symbols.
3750         (Add_symbols::run): Make it work with Pulginobj.
3751
3752 2009-02-06  Ian Lance Taylor  <iant@google.com>
3753
3754         * object.cc (Sized_relobj::do_layout): Make info message start
3755         with lower case letter.
3756
3757 2009-02-06  Mikolaj Zalewski  <mikolajz@google.com>
3758
3759         * binary.cc: Fix file comment.
3760
3761         * options.h (enum Incremental_disposition): Define.
3762         (class General_options): Add new options: --incremental,
3763         --incremental_changed, --incremental_unchanged,
3764         --incremental_unknown.  Add incremental_disposition_ and
3765         implicit_incremental_ fields.
3766         (General_options::incremental_disposition): New function.
3767         (class Position_dependent_options): Add incremental_disposition
3768         option.
3769         (Position_dependent_options::copy_from_options): Set incremental
3770         dispositions.
3771         * options.cc (General_options::parse_incremental_changed): New
3772         function.
3773         (General_options::parse_incremental_unchanged): New function.
3774         (General_options::parse_incremental_unknown): New function.
3775         (General_options::General_options): Initialize new fields
3776         incremental_disposition_ and implicit_incremental_.
3777         (General_options::finalize): Check for uasge of --incremental-*
3778         without --incremental.
3779
3780 2009-02-06  Chris Demetriou  <cgd@google.com>
3781
3782         * gold.h (gold_undefined_symbol): Change to take only a Symbol
3783         pointer and to report location as the file name associated with
3784         the symbol.
3785         (gold_undefined_symbol_at_location): New function to replace the
3786         old gold_undefined_symbol functionality.
3787         * target-reloc.h (relocate_section): Update to use
3788         gold_undefined_symbol_at_location.
3789         * symtab.cc (Symbol_table::warn_about_undefined_dynobj_symbol):
3790         Call gold_undefined_symbol function rather than gold_error.
3791         * errors.h (Errors::undefined_symbol): Take location as a
3792         string, rather than calculating it from a relocation.
3793         * errors.cc (Errors::fatal): Print "fatal error:" before the
3794         formatted message.
3795         (Errors::error, Errors::error_at_location): Print "error: "
3796         before the formatted message.
3797         (Errors::undefined_symbol): Take location as a string, rather
3798         than calculating it from a relocation.
3799         (gold_undefined_symbol_at_location): New function akin to
3800         old gold_undefined_symbol, calculates location from relocation.
3801         (gold_undefined_symbol): Change to take only a Symbol pointer
3802         and to report location as the file name associated with the symbol.
3803         * testsuite/debug_msg.sh: Update for changed error messages.
3804         * testsuite/undef_symbol.sh: Likewise.
3805
3806 2009-02-04  Duncan Sands  <baldrick@free.fr>
3807
3808         PR 9812
3809         * reduced_debug_output.h
3810         (Output_reduced_debug_abbrev_section::failed): Use format for
3811         gold_warning.
3812         (Output_reduced_debug_info_section::faild): Likewise.
3813
3814 2009-01-31  Mikolaj Zalewski  <mikolajz@google.com>
3815
3816         * script.cc (Lazy_demangler): New class.
3817         (Version_script_info::get_symbol_version_helper): Demangle a
3818         symbol only once.
3819
3820 2009-01-29  Cary Coutant  <ccoutant@google.com>
3821
3822         * i386.cc (Target_i386::Relocate::relocate): Recognize non-PIC calls
3823         to __tls_get_addr.
3824         * x86_64.cc (Target_x86_64::Relocate::relocate): Likewise.
3825
3826 2009-01-28  Ian Lance Taylor  <iant@google.com>
3827
3828         * version.cc (version_string): Bump to 1.9.
3829
3830         * gold.h: Include <cstring> and <stdint.h>.
3831         * version.cc: Include <cstdio>.
3832         * object.cc (Sized_relobj::do_layout): Initialize gc_sd to avoid a
3833         warning.
3834         * reduced_debug_output.cc (insert_into_vector): Rename from
3835         Insert_into_vector; change all callers.  Use Swap_unaligned to
3836         avoid aliasing issue; remove union since it is unnecessary.
3837
3838 2009-01-27  Sriraman Tallam  <tmsriram@google.com>
3839
3840         * Makefile.am (CCFILES): Add gc.cc.
3841         (HFILES): Add gc.h.
3842         * Makefile.in: Regenerate.
3843         * gold.cc (Gc_runner): New class.
3844         (queue_initial_tasks): Call garbage collection related tasks
3845         when corresponding options are invoked.
3846         (queue_middle_gc_tasks): New function.
3847         (queue_middle_tasks): Reorder tasks to allow relocs to be read and
3848         processed early before laying out sections during garbage collection.
3849         * gold.h (queue_middle_gc_tasks): New function.
3850         (is_prefix_of): Move from "layout.cc".
3851         * i386.cc (Target_i386::gc_process_relocs): New function.
3852         * layout.cc (is_prefix_of): Remove. Move to "gold.h"
3853         * main.cc (main): Create object of class "Garbage_collection".
3854         * object.cc (Relobj::copy_symbols_data): New function.
3855         (Relobj::is_section_name_included): New function.
3856         (Sized_relobj::do_layout): Allow this function to be called twice 
3857         during garbage collection and defer layout of section during the 
3858         first call.
3859         * object.h (Relobj::get_symbols_data): New function.
3860         (Relobj::is_section_name_included): New function.
3861         (Relobj::copy_symbols_data): New function.
3862         (Relobj::set_symbols_data): New function.
3863         (Relobj::get_relocs_data): New function.
3864         (Relobj::set_relocs_data): New function.
3865         (Relobj::is_output_section_offset_invalid): New pure virtual function.
3866         (Relobj::gc_process_relocs): New function.
3867         (Relobj::do_gc_process_relocs): New pure virtual function.
3868         (Relobj::sd_): New data member.
3869         (Sized_relobj::is_output_section_offset_invalid): New function.
3870         (Sized_relobj::do_gc_process_relocs): New function.
3871         * options.h (General_options::gc_sections): Modify to not be a no-op.
3872         (General_options::print_gc_sections): New option.
3873         * plugin.cc (Plugin_finish::run): Remove function call to
3874         Plugin_manager::layout_deferred_objects.  Move it to "gold.cc".
3875         * powerpc.cc (Target_powerpc::gc_process_relocs): New function.
3876         * reloc.cc (Read_relocs::run): Add task to process relocs and
3877         determine unreferenced sections when doing garbage collection.
3878         (Gc_process_relocs): New class.
3879         (Sized_relobj::do_gc_process_relocs): New function.
3880         (Sized_relobj::do_scan_relocs): Don't try to scan the relocs for
3881         sections that are garbage collected.
3882         * reloc.h (Gc_process_relocs): New class.
3883         * sparc.cc (Target_sparc::gc_process_relocs): New function.
3884         * symtab.cc (Symbol::should_add_dynsym_entry): Do not add entries for
3885         symbols whose corresponding sections are garbage collected.
3886         (Symbol_table::Symbol_table): Add new parameter for the garbage
3887         collection object.
3888         (Symbol_table::gc_mark_undef_symbols): New function.
3889         (Symbol_table::gc_mark_symbol_for_shlib): New function.
3890         (Symbol_table::gc_mark_dyn_syms): New function.
3891         (Symbol_table::resolve): Do not treat symbols seen in dynamic objects
3892         as garbage.
3893         (Symbol_table::add_from_object): Likewise.
3894         (Symbol_table::add_from_relobj): When building shared objects, do not
3895         treat externally visible symbols as garbage.
3896         (Symbol_table::sized_finalize_symbol): Do not check dynamic symbol
3897         table information for static and relocatable links.
3898         * symtab.h (Symbol_table::set_gc): New function.
3899         (Symbol_table::gc): New function.
3900         (Symbol_table::gc_mark_undef_symbols): New function.
3901         (Symbol_table::gc_mark_symbol_for_shlib): New function.
3902         (Symbol_table::gc_mark_dyn_syms): New function.
3903         (Symbol_table::gc_): New data member.
3904         * target.h (Sized_target::gc_process_relocs): New pure virtual 
3905         function.
3906         * x86_64.cc (Target_x86_64::gc_process_relocs): New function.
3907         * testsuite/testfile.cc (Target_test::gc_process_relocs): New function.
3908
3909 2009-01-20  Chris Faylor <me.sourceware@sourceware.org>
3910
3911         * options.h (General_options::gc_sections): Define as a no-op for now.
3912         (General_options::no_keep_memory): Ditto.
3913         (General_options::Bshareable): Define.
3914         * options.cc (General_options::finalize): Honor -Bshareable.
3915
3916 2009-01-20  Andreas Schwab  <schwab@suse.de>
3917
3918         * powerpc.cc (Powerpc_relocate_functions::rel16_ha): Don't try to
3919         read the value in the contents, since we don't use it.  Use the
3920         template endianness when writing.
3921         (Relocate::relocate): Use it for R_PPC_REL16_HA.
3922
3923 2009-01-19  Andreas Schwab  <schwab@suse.de>
3924
3925         * configure.tgt (powerpc64-*): Fix targ_obj.
3926
3927 2009-01-15  Ian Lance Taylor  <iant@google.com>
3928
3929         * object.cc (Sized_relobj::write_local_symbols): Don't write out
3930         local symbols when stripping all symbols.
3931
3932 2009-01-14  Cary Coutant  <ccoutant@google.com>
3933
3934         * output.cc (Output_reloc): Add explicit instantiations.
3935
3936 2009-01-14  Cary Coutant  <ccoutant@google.com>
3937
3938         * archive.cc (Archive::get_elf_object_for_member): Remove call
3939         to File_read::claim_for_plugin.
3940         * descriptors.cc (Descriptors::open): Remove reference to
3941         is_claimed.
3942         (Descriptors::claim_for_plugin): Remove.
3943         * descriptors.h (Descriptors::claim_for_plugin): Remove.
3944         (Descriptors::is_claimed): Remove.
3945         (claim_descriptor_for_plugin): Remove.
3946         * fileread.cc (File_read::claim_for_plugin): Remove.
3947         * fileread.h (File_read::claim_for_plugin): Remove.
3948         (File_read::descriptor): Reopen descriptor if necessary.
3949         * plugin.cc  (Plugin::load): Add two new APIs to transfer vector.
3950         (Plugin_manager::all_symbols_read): Add task parameter. Change
3951         all callers.
3952         (Plugin_manager::get_input_file): New function.
3953         (Plugin_manager::release_input_file): New function.
3954         (Pluginobj::Pluginobj): Add filesize parameter and initialize
3955         corresponding data member.
3956         (Sized_pluginobj::Sized_pluginobj): Add filesize parameter
3957         and pass to base constructor. Change all callers.
3958         (get_input_file, release_input_file): New functions.
3959         (make_sized_plugin_object): Add filesize parameter. Change all callers.
3960         * plugin.h (Plugin_manager::Plugin_manager): Initialize task_ member.
3961         (Plugin_manager::all_symbols_read): Add task parameter.
3962         (Plugin_manager::get_input_file): New function.
3963         (Plugin_manager::release_input_file): New function.
3964         (Plugin_manager::task_): New data member.
3965         (Pluginobj::Pluginobj): Add filesize parameter.
3966         (Pluginobj::filename): New function.
3967         (Pluginobj::descriptor): New function.
3968         (Pluginobj::filesize): New function.
3969         (Pluginobj::filesize_): New data member.
3970         (Sized_pluginobj::Sized_pluginobj): Add filesize parameter.
3971         * readsyms.cc (Read_symbols::do_read_symbols): Remove call to
3972         File_read::claim_for_plugin; use Object::unlock to unlock the file.
3973
3974         * testsuite/Makefile.am (plugin_test_4): New test case for plugins
3975         with archive libraries.
3976         * testsuite/Makefile.in: Regenerate.
3977         * testsuite/plugin_test.c (struct sym_info): New type.
3978         (get_input_file, release_input_file): New static variables.
3979         (onload): Capture new transfer vector entries.
3980         (claim_file_hook): Stop reading at end of file according to filesize.
3981         Factor out parsing of readelf output into separate function.
3982         (all_symbols_read_hook): Exercise get_input_file and release_input_file
3983         APIs and get the source file name from the symbol table.  Convert
3984         source file name to corresponding object file name.  Print info
3985         message when adding new input files.
3986         (parse_readelf_line): New function.
3987         * testsuite/plugin_test_1.sh: Add checks for new info messages.
3988         * testsuite/plugin_test_2.sh: Likewise.
3989         * testsuite/plugin_test_3.sh: Likewise.
3990         * testsuite/plugin_test_4.sh: New test case.
3991
3992 2009-01-07  Ian Lance Taylor  <iant@google.com>
3993
3994         * version.cc (version_string): Bump to 1.8.
3995
3996 2008-12-23  Cary Coutant  <ccoutant@google.com>
3997
3998         * gold.cc (gold_exit): Call plugin cleanup handlers on exit.
3999         * plugin.cc (Plugin_manager::finish): Rename as
4000         layout_deferred_objects.  Move cleanup to separate function.
4001         (Plugin_manager::cleanup): New function.
4002         (Plugin_finish::run): Call layout_deferred_objects and cleanup
4003         separately.
4004         * plugin.h (Plugin_manager::finish): Rename as
4005         layout_deferred_objects.
4006         (Plugin_manager::cleanup): New function.
4007         (Plugin_manager::cleanup_done): New field.
4008
4009 2008-12-23  Cary Coutant  <ccoutant@google.com>
4010
4011         * plugin.cc (is_visible_from_outside): New function.
4012         (Pluginobj::get_symbol_resolution_info): Call is_visible_from_outside
4013         so we don't return "IR only" status for exported symbols or -r links.
4014
4015         * testsuite/Makefile.am (plugin_test_3): New test case.
4016         * testsuite/Makefile.in: Regenerate.
4017         * testsuite/plugin_test_3.sh: New file.
4018
4019 2008-12-22  Cary Coutant  <ccoutant@google.com>
4020
4021         * object.cc (Sized_relobj::layout_section): New function.
4022         (Sized_relobj::do_layout): Defer layout of input sections until after
4023         plugin has provided replacement files.
4024         (Sized_relobj::do_layout_deferred_sections): New function.
4025         * object.h (Relobj::set_section_offset): Remove virtual keyword.
4026         (Relobj::layout_deferred_sections): New function.
4027         (Relobj::do_layout_deferred_sections): New function.
4028         (Sized_relobj::do_layout_deferred_sections): New function.
4029         (Sized_relobj::layout_section): New function.
4030         (Sized_relobj::Deferred_layout): New structure.
4031         (Sized_relobj::deferred_layout_): New field.
4032         * plugin.cc (Plugin_manager::finish): Renamed, was cleanup.
4033         Change all callers.  Layout deferred sections.
4034         (class Plugin_finish): Renamed, was Plugin_cleanup.  Change all
4035         references.
4036         (Plugin_hook::run): Move code from do_plugin_hook inline.
4037         (Plugin_hook::do_plugin_hook): Remove.
4038         * plugin.h (Plugin_manager::Plugin_manager): Add missing initializers.
4039         (Plugin_manager::finish): Renamed, was cleanup.
4040         (Plugin_manager::should_defer_layout): New function.
4041         (Plugin_manager::add_deferred_layout_object): New function.
4042         (Plugin_manager::Deferred_layout_list): New type.
4043         (Plugin_manager::deferred_layout_objects_): New field.
4044         (Plugin_hook::do_plugin_hook): Remove.
4045
4046 2008-12-17  Ian Lance Taylor  <iant@google.com>
4047
4048         * options.h (class General_options): Add --no case for
4049         --export-dynamic.
4050
4051 2008-12-16  Cary Coutant  <ccoutant@google.com>
4052
4053         * plugin.cc (Plugin::load): Move LDPT_MESSAGE to front of transfer
4054         vector.
4055         (Plugin_manager::claim_file): Create plugin object even if
4056         plugin did not call the add_symbols callback.
4057         (Plugin_obj::get_symbol_resolution_info): Guard against plugin
4058         asking for more symbols than were added.
4059         * testsuite/Makefile.am (plugin_test_1): Add test case with
4060         no global symbols.
4061         (empty.syms): New target.
4062         * testsuite/Makefile.in: Regenerate.
4063         * testsuite/plugin_test.c (claim_file_hook): Add new debug
4064         message. Don't call add_symbols if no globals.
4065         (all_symbols_read_hook): Don't provide replacement for empty
4066         claimed file.
4067
4068 2008-12-12  Ian Lance Taylor  <iant@google.com>
4069
4070         * target-reloc.h (Default_scan_relocatable_relocs): Only discard
4071         r_type == 0 for a local symbol with r_sym == 0.
4072         (scan_relocatable_relocs): Pass r_sym to
4073         local_non_section_strategy.
4074         * reloc.cc (Emit_relocs_strategy::local_non_section_strategy): Add
4075         r_sym parameter.
4076
4077         * configure.ac: Update test for TLS descriptors: they are
4078         supported as of glibc 2.9.
4079         * configure: Rebuild.
4080
4081 2008-12-11  Ian Lance Taylor  <iant@google.com>
4082
4083         PR 7091
4084         * target-reloc.h (Default_scan_relocatable_relocs): For each
4085         function, map r_type == 0 to RELOC_DISCARD.
4086
4087 2008-12-10  Cary Coutant  <ccoutant@google.com>
4088
4089         * layout.cc (Layout::add_comdat): Allow COMDAT group from a replacement
4090         object to override a kept COMDAT group from a plugin object.
4091
4092 2008-12-09  Ian Lance Taylor  <iant@google.com>
4093
4094         PR 7088
4095         * yyscript.y (file_cmd): Handle INPUT.
4096
4097         * testsuite/initpri1.c: Change all declarations to be full
4098         prototypes by adding void, to avoid compiler warnings.
4099
4100 2008-12-05  Rafael Avila de Espindola  <espindola@google.com>
4101
4102         * options.cc (General_options::parse_plugin_opt): New.
4103         (General_options::add_plugin): The argument now is just the filename.
4104         (General_options::add_plugin_option): New.
4105         * options.h (plugin_opt): New.
4106         (add_plugin): Change argument name.
4107         (add_plugin_option): New.
4108         * plugin.cc (Plugin::load): Don't parse the plugin option.
4109         * plugin.h (Plugin::Plugin): Rename argument. Init filename_.
4110         (Plugin::add_option): New.
4111         (Plugin::args_): Change type.
4112         (Plugin::filename_): New.
4113         (Plugin_manager::add_plugin_option): New.
4114         * testsuite/Makefile.am (plugin_test_1): Use new syntax.
4115         * testsuite/Makefile.in: Regenerate.
4116
4117 2008-12-05  Cary Coutant  <ccoutant@google.com>
4118
4119         * layout.cc (Layout::include_section): Check for SHF_EXCLUDE.
4120         Handle --strip-lto-sections option.
4121         * options.h (strip_lto_sections): New option.
4122
4123 2008-12-01  Cary Coutant  <ccoutant@google.com>
4124
4125         * plugin.cc (ld_plugin_message): Change format parameter to const.
4126         Fix mismatch between new[] and delete.
4127
4128 2008-11-14  Cary Coutant  <ccoutant@google.com>
4129
4130         * reloc.cc (Sized_relobj::do_read_relocs): Use constant invalid_address
4131         instead of -1U.
4132
4133 2008-11-05  Craig Silverstein  <csilvers@google.com>
4134
4135         * options.cc (General_options::parse_dynamic_list): New function.
4136         * options.h (General_options): New flags dynamic_list,
4137         dynamic_list_data, dynamic_list_cpp_new, and
4138         dynamic_list_cpp_typeinfo.  New variable dynamic_list_.
4139         (General_options::in_dynamic_list): New function.
4140         * script.cc (Lex::Mode): New enum DYNAMIC_LIST.
4141         (Lex::can_start_name): Add support for DYNAMIC_LIST mode.
4142         (Lex::can_continue_name): Likewise.
4143         (yylex): Likewise.
4144         (read_script_file): New parameter script_options.
4145         (read_dynamic_list): New function.
4146         (Script_options::define_dynamic_list): New function.
4147         (dynamic_list_keyword_parsecodes): New variable.
4148         (dynamic_list_keywords): New variable.
4149         * script.h (Script_options::define_dynamic_list): New function
4150         prototype.
4151         (read_dynamic_list): New function prototype.
4152         * symtab.cc (strprefix): New macro.
4153         (Symbol::should_add_dynsym_entry): Support dynamic_list,
4154         dynamic_list_data, dynamic_list_cpp_new, and
4155         dynamic_list_cpp_typeinfo.
4156         * yyscript.y (PARSING_DYNAMIC_LIST): New token.
4157         (dynamic_list_expr): New rule.
4158         (dynamic_list_nodes): Likewise.
4159         (dynamic_list_node): Likewise.
4160         * testsuite/Makefile.am (dynamic_list): New test.
4161         * testsuite/Makefile.in: Regenerated.
4162         * testsuite/dynamic_list.t: New file.
4163         * testsuite/dynamic_list.sh: New file.
4164
4165 2008-11-05  Craig Silverstein  <csilvers@google.com>
4166
4167         * testsuite/tls_test_c.c: Add prototype for t11 and t11_last.
4168         * testsuite/tls_test_c.c (t11): Add explicit "void" to prototype.
4169         (t11_last): Likewise.
4170         * testsuite/ver_test_6.c (main): Likewise.
4171
4172 2008-10-07  Cary Coutant  <ccoutant@google.com>
4173
4174         * options.c (General_options::finalize): Add check for -static and
4175         -shared.
4176         * gold.cc (queue_middle_tasks): Assert that list of dynamic objects
4177         is not empty.
4178
4179 2008-10-02  Cary Coutant  <ccoutant@google.com>
4180
4181         * plugin.cc (make_sized_plugin_object): Fix conditional
4182         compilation to work when not all targets are enabled.
4183
4184 2008-09-29  Cary Coutant  <ccoutant@google.com>
4185
4186         * archive.cc (Archive::get_file_and_offset): Use filename instead
4187         of name to get library path.
4188         (Archive::include_member): Unlock external member of a thin archive.
4189
4190         * testsuite/Makefile.am (TEST_AR): New variable.
4191         (thin_archive_test_1): New test.
4192         (thin_archive_test_2): New test.
4193         * testsuite/Makefile.in: Regenerate.
4194         * testsuite/thin_archive_main.cc: New file.
4195         * testsuite/thin_archive_test_1.cc: New file.
4196         * testsuite/thin_archive_test_2.cc: New file.
4197         * testsuite/thin_archive_test_3.cc: New file.
4198         * testsuite/thin_archive_test_4.cc: New file.
4199
4200 2008-09-29  Cary Coutant  <ccoutant@google.com>
4201
4202         * mapfile.cc (Mapfile::print_input_section): Change -1U to -1ULL.
4203         * object.cc (Sized_relobj::do_layout): Use constant invalid_address
4204         instead of -1U.
4205         (Sized_relobj::do_finalize_local_symbols): Likewise.
4206         (Sized_relobj::map_to_kept_section): Likewise.
4207         * object.h (Sized_relobj::invalid_address): New constant.
4208         (Sized_relobj::do_output_section_offset): Check for invalid_address
4209         and return -1ULL.
4210         * output.cc (Output_reloc::local_section_offset): Use constant
4211         invalid_address instead of -1U.
4212         (Output_reloc::get_address): Likewise.
4213         (Output_section::output_address): Change -1U to -1ULL.
4214         * output.h (Output_reloc::invalid_address): New constant.
4215         * reloc.cc (Sized_relobj::write_sections): Use constant
4216         invalid_address instead of -1U.
4217         (Sized_relobj::relocate_sections): Likewise.
4218         * symtab.cc (Symbol_table::sized_finalize_symbol): Handle symbol
4219         values for merge sections.
4220         * target-reloc.h (relocate_for_relocatable): Use constant
4221         invalid_address instead of -1U.
4222
4223 2008-09-19  Cary Coutant  <ccoutant@google.com>
4224
4225         Add plugin functionality for link-time optimization (LTO).
4226         * configure.ac (plugins): Add --enable-plugins option.
4227         * configure: Regenerate.
4228         * config.in: Regenerate.
4229         * Makefile.am (LIBDL): New variable.
4230         (CCFILES): Add plugin.cc.
4231         (HFILES): Add plugin.h.
4232         (ldadd_var): Add LIBDL.
4233         * Makefile.in: Regenerate.
4234
4235         * archive.cc: Include "plugin.h".
4236         (Archive::setup): Don't preread archive symbols when using a plugin.
4237         (Archive::get_file_and_offset): Add memsize parameter.  Change callers.
4238         (Archive::get_elf_object_for_member): Call plugin hooks for claiming
4239         files.
4240         (Archive::include_member): Add symbols from plugin objects.
4241         * archive.h (Archive::get_file_and_offset): Add memsize parameter.
4242         * descriptors.cc (Descriptors::open): Check for file descriptors
4243         abandoned by plugins.
4244         (Descriptors::claim_for_plugin): New function.
4245         * descriptors.h (Descriptors::claim_for_plugin): New function.
4246         (Open_descriptor::is_claimed): New field.
4247         (claim_descriptor_for_plugin): New function.
4248         * fileread.cc (File_read::claim_for_plugin): New function.
4249         * fileread.h (File_read::claim_for_plugin): New function.
4250         (File_read::descriptor): New function.
4251         * gold.cc: Include "plugin.h".
4252         (queue_initial_tasks): Add task to call plugin hooks for generating
4253         new object files.
4254         * main.cc: Include "plugin.h".
4255         (main): Load plugin libraries.
4256         * object.h (Pluginobj): Declare.
4257         (Object::pluginobj): New function.
4258         (Object::do_pluginobj): New function.
4259         (Object::set_target): New function.
4260         * options.cc: Include "plugin.h".
4261         (General_options::parse_plugin): New function.
4262         (General_options::General_options): Initialize plugins_ field.
4263         (General_options::add_plugin): New function.
4264         * options.h (Plugin_manager): Declare.
4265         (General_options): Add --plugin option.
4266         (General_options::has_plugins): New function.
4267         (General_options::plugins): New function.
4268         (General_options::add_plugin): New function.
4269         (General_options::plugins_): New field.
4270         * plugin.cc: New file.
4271         * plugin.h: New file.
4272         * readsyms.cc: Include "plugin.h".
4273         (Read_symbols::do_read_symbols): Check for archive before checking
4274         for ELF file.  Call plugin hooks to claim files.
4275         * resolve.cc (Symbol_table::resolve): Record when symbol is referenced
4276         from a real object file; force override when processing replacement
4277         files.
4278         * symtab.cc (Symbol::init_fields): Initialize in_real_elf_ field.
4279         (Symbol::init_base_object): Likewise.
4280         (Symbol::init_base_output_data): Likewise.
4281         (Symbol::init_base_output_segment): Likewise.
4282         (Symbol::init_base_constant): Likewise.
4283         (Symbol::init_base_undefined): Likewise.
4284         (Symbol::output_section): Assert that object is not a plugin.
4285         (Symbol_table::add_from_pluginobj): New function.
4286         (Symbol_table::sized_finalize_symbol): Treat symbols from plugins as
4287         undefined.
4288         (Symbol_table::sized_write_globals): Likewise.
4289         (Symbol_table::add_from_pluginobj): Instantiate template.
4290         * symtab.h (Sized_pluginobj): Declare.
4291         (Symbol::in_real_elf): New function.
4292         (Symbol::set_in_real_elf): New function.
4293         (Symbol::in_real_elf_): New field.
4294         (Symbol_table::add_from_pluginobj): New function.
4295
4296         * testsuite/Makefile.am (AM_CFLAGS): New variable.
4297         (LIBDL): New variable.
4298         (LDADD): Add LIBDL.
4299         (check_PROGRAMS): Add plugin_test_1 and plugin_test_2.
4300         (check_SCRIPTS): Add plugin_test_1.sh and plugin_test_2.sh.
4301         (check_DATA): Add plugin_test_1.err and plugin_test_2.err.
4302         (MOSTLYCLEANFILES): Likewise.
4303         * testsuite/Makefile.in: Regenerate.
4304         * testsuite/plugin_test.c: New file.
4305         * testsuite/plugin_test_1.sh: New file.
4306         * testsuite/plugin_test_2.sh: New file.
4307
4308 2008-09-16  Ian Lance Taylor  <iant@google.com>
4309
4310         * target-reloc.h (relocate_section): Check whether a symbol is
4311         defined by the ABI before reporting an undefined symbol error.
4312         * target.h (Target::is_defined_by_abi): Make parameter const.
4313         (Target::do_is_defined_by_abi): Likewise.
4314         * i386.cc (Target_i386::do_is_defined_by_abi): Likewise.
4315         * powerpc.cc (Target_powerpc::do_is_defined_by_abi): Likewise.
4316         * sparc.cc (Target_sparc::do_is_defined_by_abi): Likewise.
4317         * x86_64.cc (Target_x86_64::do_is_defined_by_abi): Likewise.
4318         * testsuite/Makefile.am (tls_test_shared.so): Add -Wl,-z,defs.
4319         * testsuite/Makefile.in: Rebuild.
4320
4321         * fileread.cc (make_view): Add casts to avoid warning.
4322
4323 2008-09-16  Alexandre Oliva  <aoliva@redhat.com>
4324
4325         * i386.cc (Target_i386::define_tls_base_symbol): Update comments.
4326         * x86_64.cc (Target_x86_64::define_tls_base_symbol): Likewise.
4327
4328 2008-09-16  Alexandre Oliva  <aoliva@redhat.com>
4329
4330         * options.h (General_options::output_is_executable): New.
4331         (General_options::output_is_pie): New.
4332         * i386.cc (Target_i386::define_tls_base_symbol): Use SEGMENT_START
4333         for shared libraries.
4334         * x86_64.cc (Target_x86_64::define_tls_base_symbol): Likewise.
4335
4336 2008-09-11  Chris Demetriou  <cgd@google.com>
4337
4338         * options.h (origin): New -z option.
4339         * layout.cc (Layout:finish_dynamic_section): If "-z origin"
4340         is specified, set DF_ORIGIN in DT_FLAGS and set DF_1_ORIGIN
4341         in DT_FLAGS_1.
4342
4343 2008-09-05  Cary Coutant  <ccoutant@google.com>
4344
4345         * fileread.cc (File_read::make_view): Add check for attempt to map
4346         beyond end of file.
4347
4348 2008-09-05  Cary Coutant  <ccoutant@google.com>
4349
4350         * symtab.cc (Symbol_table::add_from_dynobj): Fix typos in
4351         explicit instantiations.
4352
4353 2008-08-28  Kris Van Hees  <kris.van.hees@oracle.com>
4354
4355         PR gold/6858
4356         * options.cc (General_options::finalize): Allow undefined symbols
4357         in shlibs if linking -shared.
4358
4359         PR gold/6859
4360         * symtab.cc (Symbol::init_base_undefined): Mark explicitly undefined
4361         symbols as not needing a dynsym entry.
4362
4363 2008-08-20  Craig Silverstein  <csilvers@google.com>
4364
4365         * fileread.cc (File_read::open): Do not lock the file unless it
4366         was successfully opened.
4367
4368 2008-08-14  Cary Coutant  <ccoutant@google.com>
4369
4370         * x86_64.cc (Target_x86_64::Relocate::relocat_tls):
4371         Use addend for DTPOFF32, DTPOFF64, and TPOFF32 relocs.
4372         * testsuite/tls_test.cc (struct int128): 128-bit struct
4373         for testing TLS relocs with non-zero addend.
4374         (v12): New TLS variable.
4375         (t12): New test.
4376         (t_last): Add check for v12.
4377         * testsuite/tls_test.h (t12): New function.
4378         * testsuite/tls_test_main.cc (thread_routine): Call new test.
4379
4380 2008-08-13  Ian Lance Taylor  <iant@google.com>
4381
4382         * layout.cc (Layout::attach_allocated_section_to_segment): Don't
4383         set tls_segment_ or relro_segment_.
4384         (Layout::make_output_segment): Set tls_segment_ and relro_segment_
4385         when appropriate.
4386         * output.h (Output_section::clear_is_relro): New function.
4387         * output.cc (Output_segment::add_output_section): Handle SHF_TLS
4388         sections specially even when output_data_ is empty.
4389         (Output_segment::maximum_alignment): When first section is relro,
4390         only force alignment for PT_LOAD segments.
4391         * script.cc (script_data_segment_align): New function.
4392         (script_data_segment_relro_end): New function.
4393         * script-c.h (script_data_segment_align): Declare.
4394         (script_data_segment_relro_end): Declare.
4395         * script-sections.h (class Script_sections): Declare
4396         data_segment_align and data_segment_relro_end.  Add fields
4397         segment_align_index_ and saw_relro_end_.
4398         * script-sections.cc (class Sections_element): Add set_is_relro
4399         virtual function.  Add new bool* parameter to place_orphan_here.
4400         Add get_output_section virtual function.
4401         (class Output_section_definition): Add set_is_relro.  Add new
4402         bool* parameter to place_orphan_here.  Add get_output_section.
4403         Add is_relro_ field.
4404         (Output_section_definition::Output_section_definition): Initialize
4405         evaluated_address_, evaluated_load_address, evaluated_addralign_,
4406         and is_relro_ fields.
4407         (Output_section_definition::place_orphan_here): Add is_relro
4408         parameter.
4409         (Output_section_definition::set_section_addresses): Set relro for
4410         output section.
4411         (Output_section_definition::alternate_constraint): Likewise.
4412         (class Orphan_output_section): Add new bool* parameter to
4413         place_orphan_here.  Add get_output_section.
4414         (Orphan_output_section::place_orphan_here): Add is_relro
4415         parameter.
4416         (Script_sections::Script_sections): Initialize
4417         data_segment_align_index_ and saw_relro_end_.
4418         (Script_sections::data_segment_align): New function.
4419         (Script_sections::data_segment_relro_end): New function.
4420         (Script_sections::place_orphan): Set or clear is_relro.
4421         (Script_sections::set_section_addresses): Force alignment of first
4422         TLS section.
4423         * yyscript.y (exp): Call script_data_segment_align and
4424         script_data_segment_relro_end.
4425         * testsuite/relro_script_test.t: New file.
4426         * testsuite/relro_test.cc (using_script): Declare.
4427         (t1, t2): Test using_script.
4428         * testsuite/Makefile.am (check_PROGRAMS): Add relro_script_test.
4429         (relro_script_test_SOURCES): Define.
4430         (relro_script_test_DEPENDENCIES): Define.
4431         (relro_script_test_LDFLAGS): Define.
4432         (relro_script_test_LDADD): Define.
4433         (relro_script_test.so): New target.
4434         * testsuite/Makefile.in: Rebuild.
4435
4436 2008-08-06  Cary Coutant <ccoutant@google.com>
4437
4438         * archive.cc (Archive::total_archives, Archive::total_members)
4439         (Archive::total_members_loaded): New variables.
4440         (Archive::setup): Add parameter.  Add option to preread
4441         archive symbols.
4442         (Archive::read_armap): Add counter.
4443         (Archive::get_file_and_offset): New function.
4444         (Archive::get_elf_object_for_member): New function.
4445         (Archive::read_all_symbols): New function.
4446         (Archive::read_symbols): New function.
4447         (Archive::add_symbols): Add counters.
4448         (Archive::include_all_members): Use armap to find members if it's
4449         already built.
4450         (Archive::include_member): Skip reading symbols if already read.
4451         Factored code into Archive::get_file_and_offset and
4452         Archive::get_elf_object_for_member.  Changed call to
4453         Mapfile::report_include_archive_member.
4454         (Archive::print_stats): New function.
4455         * archive.h: Declare Object and Read_symbols_data classes.
4456         (Archive::Archive): Add initializers for new members.
4457         (Archive::setup): Add parameter.
4458         (Archive::print_stats): New function.
4459         (Archive::total_archives, Archive::total_members)
4460         (Archive::total_members_loaded): New variables.
4461         (Archive::get_file_and_offset): New function.
4462         (Archive::get_elf_object_for_member): New function.
4463         (Archive::read_all_symbols): New function.
4464         (Archive::read_symbols): New function.
4465         (Archive::Archive_member): New class.
4466         (Archive::members_): New member.
4467         (Archive::num_members_): New member.
4468         * main.cc: Include archive.h.
4469         (main): Call Archive::print_stats.
4470         * mapfile.cc (Mapfile::report_include_archive_member): Delete
4471         archive parameter; member_name is now the fully-decorated name.
4472         * mapfile.h (Mapfile::report_include_archive_member): Likewise.
4473         * options.h: (General_options): Add --preread-archive-symbols option.
4474         * readsyms.cc (Read_symbols::do_read_symbols): Change call to
4475         Archive::setup.
4476
4477 2008-08-04  Ian Lance Taylor  <iant@google.com>
4478
4479         * symtab.h (Symbol::use_plt_offset): New function.
4480         * i386.cc (Relocate::relocate): Call Symbol::use_plt_offset.
4481         * powerpc.cc (Relocate::relocate): Likewise.
4482         * sparc.cc (Relocate::relocate): Likewise.
4483         * x86_64.cc (Relocate::relocate): Likewise.
4484         * testsuite/weak_plt.sh: New test.
4485         * testsuite/weak_plt_main.cc: New test.
4486         * testsuite/weak_plt_shared.cc: New test.
4487         * testsuite/Makefile.am (check_SCRIPTS): Add weak_plt.sh.
4488         (check_PROGRAMS): Add weak_plt.
4489         (check_DATA): Add weak_plt_shared.so.
4490         (weak_plt_main_pic.o, weak_plt): New targets.
4491         (weak_plt_shared_pic.o, weak_plt_shared.so): New targets.
4492         * testsuite/Makefile.in: Rebuild.
4493
4494         * testsuite/Makefile.am (weak_alias_test_1.so): Depend upon
4495         gcctestdir/ld.
4496         (weak_alias_test_2.so, weak_alias_test_4.so): Likewise.
4497         * testsuite/Makefile.in: Rebuild.
4498
4499 2008-08-04  Alan Modra  <amodra@bigpond.net.au>
4500
4501         * Makefile.am (POTFILES.in): Set LC_ALL=C.
4502         * Makefile.in: Regenerate.
4503         * po/POTFILES.in: Regenerate.
4504
4505 2008-07-29  Ian Lance Taylor  <iant@google.com>
4506
4507         * script.cc (Script_options::finalize_symbols): Finalize SECTIONS
4508         symbols before other symbols.
4509         * testsuite/script_test_2.cc (test_addr): Declare.
4510         (test_addr_alias): Declare.
4511         (main): Check that test_addr and test_addr_alias have the right
4512         values.
4513         * testsuite/script_test_2.t: Define test_addr_alias and
4514         test_addr.
4515
4516 2008-07-24  Ian Lance Taylor  <iant@google.com>
4517
4518         PR 5990
4519         * descriptors.cc: New file.
4520         * descriptors.h: New file.
4521         * gold-threads.h (class Hold_optional_lock): New class.
4522         * fileread.cc: Include "descriptors.h".
4523         (File_read::~File_read): Release descriptor rather than closing
4524         it.
4525         (File_read::open) [file]: Call open_descriptor rather than open.
4526         Set is_descriptor_opened_.
4527         (File_read::open) [memory]: Assert that descriptor is not open.
4528         (File_read::reopen_descriptor): New function.
4529         (File_read::release): Release descriptor.
4530         (File_read::do_read): Make non-const.  Reopen descriptor.
4531         (File_read::read): Make non-const.
4532         (File_read::make_view): Reopen descriptor.
4533         (File_read::do_readv): Likewise.
4534         * fileread.h (class File_read): Add is_descriptor_opened_ field.
4535         Update declarations.
4536         * layout.cc: Include "descriptors.h".
4537         (Layout::create_build_id): Use open_descriptor rather than open.
4538         * output.cc: Include "descriptors.h".
4539         (Output_file::open): Use open_descriptor rather than open.
4540         * archive.cc (Archive::const_iterator): Change Archive to be
4541         non-const.
4542         (Archive::begin, Archive::end): Make non-const.
4543         (Archive::count_members): Likewise.
4544         * archive.h (class Archive): Update declarations.
4545         * object.h (Object::read): Make non-const.
4546         * Makefile.am (CCFILES): Add descriptors.cc.
4547         (HFILES): Add descriptors.h.
4548         * Makefile.in: Rebuild.
4549
4550         PR 6716
4551         * gold.h: Always include <clocale>.  Add Solaris workarounds
4552         following code in binutils/sysdep.h.
4553
4554         PR 6048
4555         * ehframe.cc (Eh_frame::add_ehframe_input_section): Check whether
4556         this->eh_frame_hdr_ is NULL before using it.
4557
4558         * dynobj.cc (Versions::Versions): Update comment.
4559
4560         * dynobj.cc (Versions::Versions): If there is an soname, use it as
4561         the base version name.
4562
4563         * stringpool.cc (Stringpool_template::add_with_length): Set key to
4564         array size plus one.
4565         (Stringpool_template::set_string_offsets): Subtract one from key
4566         before using it as an array index.
4567         (Stringpool_template::get_offset_with_length): Likewise.
4568         (Stringpool_template::write_to_buffer): Likewise.
4569         * stringpool.h (Stringpool_template::get_offset_from_key):
4570         Likewise.
4571
4572 2008-07-23  Ian Lance Taylor  <iant@google.com>
4573
4574         PR 6658
4575         * object.h (Merged_symbol_value::value): Do our best to handle a
4576         negative addend.
4577
4578         PR 6647
4579         * script.cc (Version_script_info::get_versions): Don't add empty
4580         version tag to return value.
4581         (Version_script_info::get_symbol_version_helper): Change return
4582         type to bool.  Add pversion parameter.  Change all callers.
4583         (script_register_vers_node): Don't require a non-NULL tag.
4584         * script.h (class Version_script_info): Update declarations.
4585         (Version_script_info::get_symbol_version): Change return type to
4586         bool.  Add version parameter.  Change all callers.
4587         * symtab.cc (Sized_symbol::add_from_relobj): Rework version
4588         handling.  Handle an empty version from a version script.
4589         (Symbol_table::define_special_symbol): Likewise.
4590         * testsuite/ver_test_10.script: New file.
4591         * testsuite/ver_test_10.sh: New file.
4592         * testsuite/Makefile.am (check_SCRIPTS): Add ver_test_10.sh.
4593         (check_DATA): Add ver_test_10.syms.
4594         (ver_test_10.syms, ver_test_10.so): New target.
4595         * testsuite/Makefile.in: Rebuild.
4596
4597 2008-07-23  Simon Baldwin  <simonb@google.com>
4598
4599         * symtab.cc (Symbol_table::sized_write_symbol): Only set st_size
4600         to zero for undefined symbols from dynamic libraries.
4601
4602 2008-07-23  Ian Lance Taylor  <iant@google.com>
4603
4604         * symtab.cc (Symbol_table::resolve): Remove version parameter.
4605         Change all callers.
4606         * symtab.h (class Symbol_table): Update declaration.
4607         * testsuite/ver_test_9.cc: New file.
4608         * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_9.
4609         (ver_test_9_SOURCES, ver_test_9_DEPENDENCIES): Define.
4610         (ver_test_9_LDFLAGS, ver_test_9_LDADD): Define.
4611         (ver_test_9.so, ver_test_9.o): New targets.
4612         * testsuite/Makefile.in: Rebuild.
4613
4614 2008-07-22  Ian Lance Taylor  <iant@google.com>
4615
4616         * options.h (class General_options): Define --check-sections.
4617         * layout.cc (Layout::set_segment_offsets): Handle
4618         --check-sections.
4619
4620         * options.h (class General_options): Define -n/--nmagic and
4621         -N/--omagic.
4622         * options.cc (General_options::finalize): For -n/--nmagic or
4623         -N/--omagic, set -static.
4624         * layout.cc (Layout::attach_allocated_section_to_segment): If
4625         -N/--omagic, don't put read-only and read-write sections in
4626         different segments.
4627         (Layout::find_first_load_seg): If -N/--omagic, don't insist on
4628         finding a read-only segment.
4629         (Layout::set_segment_offsets): If -N/--omagic or -n/--nmagic,
4630         don't set the minimum segment alignment to the common page size,
4631         and don't set the file offset to the address modulo the page size.
4632         * script-sections.cc (Script_sections::create_segments): If
4633         -n/--omagic, don't put read-only and read-write sections in
4634         different segments.
4635
4636         * cref.cc: New file.
4637         * cref.h: New file.
4638         * options.h (class General_options): Add --print-symbol-counts.
4639         * main.cc (main): Issue defined symbol report if requested.
4640         * archive.cc (Archive::interpret_header): Make into a const member
4641         function.
4642         (Archive::add_symbols): Call Input_objects::archive_start and
4643         archive_stop.
4644         (Archive::const_iterator): Define new class.
4645         (Archive::begin, Archive::end): New functions.
4646         (Archive::include_all_members): Rewrite to use iterator.
4647         (Archive::count_members): New function.
4648         * archive.h (class Archive): Update declarations.
4649         (Archive::filename): New function.
4650         * object.cc: Include "cref.h".
4651         (Sized_relobj::Sized_relobj): Initialize defined_count_.
4652         (Sized_relobj::do_get_global_symbol_counts): New function.
4653         (Input_objects::add_object): Add object to cross-referencer.
4654         (Input_objects::archive_start): New function.
4655         (Input_objects::archive_stop): New function.
4656         (Input_objects::print_symbol_counts): New function.
4657         * object.h: Declare Cref and Archive.
4658         (Object::get_global_symbol_counts): New function.
4659         (Object::do_get_global_symbol_counts): New pure virtual function.
4660         (class Sized_relobj): Add defined_count_ field.  Update
4661         declarations.
4662         (class Input_objects): Add cref_ field.  Update constructor.
4663         Update declarations.
4664         * dynobj.cc (Sized_dynobj::Sized_dynobj): Initialize symbols_ and
4665         defined_count_.
4666         (Sized_dynobj::do_add_symbols): Allocate symbols_ if printing
4667         symbol counts.
4668         (Sized_dynobj::do_get_global_symbol_counts): New function.
4669         * dynobj.h (class Sized_dynobj): Add fields symbols_ and
4670         defined_count_.  Update declarations.  Define Symbols typedef.
4671         * symtab.cc (Symbol_table::add_from_relobj): Add defined
4672         parameter.  Change all callers.
4673         (Symbol_table::add_from_dynobj): Add sympointers and defined
4674         parameters.  Change all callers.
4675         * symtab.h (class Symbol_table): Update declarations.
4676         * Makefile.am (CCFILES): Add cref.cc.
4677         (HFILES): Add cref.h.
4678         * Makefile.in: Rebuild.
4679
4680 2008-07-22  Simon Baldwin  <simonb@google.com>
4681
4682         * symtab.cc (Symbol_table::sized_write_symbol): Set symbol size
4683         to zero when writing undefined symbols.
4684
4685 2008-07-22  Ian Lance Taylor  <iant@google.com>
4686
4687         * output.cc (Output_section::add_input_section): Don't try to
4688         merge empty merge sections.
4689
4690 2008-07-21  Craig Silverstein  <csilvers@google.com>
4691
4692         * symtab.cc (Symbol_table::warn_about_undefined_dynobj_symbol):
4693         Include symbol version in error message.
4694
4695 2008-07-20  Chris Demetriou  <cgd@google.com>
4696
4697         * configure.ac (gold_cv_c_random_seed): New configured variable.
4698         (RANDOM_SEED_CFLAGS): New substituted variable.
4699         * Makefile.am (AM_CFLAGS, AM_CXXFLAGS): Add $(RANDOM_SEED_CFLAGS).
4700         * configure: Rebuild.
4701         * Makefile.in: Likewise.
4702         * testsuite/Makefile.in: Likewise.
4703
4704 2008-07-18  Ian Lance Taylor  <iant@google.com>
4705
4706         * symtab.cc (Symbol_table::add_from_object): Rewrite the case
4707         where we see NAME/NULL and NAME/VERSION  as separate symbols.
4708         * testsuite/ver_test_main.cc (main): Call t4.
4709         (t4, t4_2a): Define.
4710         * testsuite/ver_test_2.cc (t4_2): Define.
4711         * testsuite/ver_test_2.script: Put t4_2a in VER2.
4712         * testsuite/ver_test_4.cc (t4_2a): Define.
4713         * testsuite/ver_test_4.script: Put t4_2a in VER2.
4714         * testsuite/ver_test.h (t4, t4_2, t4_2a): Declare.
4715
4716 2008-07-17  Ian Lance Taylor  <iant@google.com>
4717
4718         * dynobj.cc (Versions::add_def): If we give an error about a
4719         missing version, go ahead and create the version anyhow.
4720
4721 2008-07-10  Ian Lance Taylor  <iant@google.com>
4722
4723         Handle output sections with more than 0x7fffffff bytes.
4724         * object.h (class Relobj): Change map_to_output_ to
4725         output_sections_, and just keep a section pointer.  Change all
4726         uses.  Move comdat group support to Sized_relobj.
4727         (Relobj::is_section_specially_mapped): Remove.
4728         (Relobj::output_section): Remove poff parameter.  Change all
4729         callers.
4730         (Relobj::output_section_offset): New function.
4731         (Relobj::set_section_offset): Rewrite.
4732         (Relobj::map_to_output): Remove.
4733         (Relobj::output_sections): New function.
4734         (Relobj::do_output_section_offset): New pure virtual function.
4735         (Relobj::do_set_section_offset): Likewise.
4736         (class Sized_relobj): Add section_offsets_ field.  Add comdat
4737         group support from Relobj.  Update declarations.
4738         (Sized_relobj::get_output_section_offset): New function.
4739         (Sized_relobj::do_output_section_offset): New function.
4740         (Sized_relobj::do_set_section_offset): New function.
4741         * object.cc (Relobj::output_section_address): Remove.
4742         (Sized_relobj::Sized_relobj): Initialize new fields.
4743         (Sized_relobj::include_section_group): Cast find_kept_object to
4744         Sized_relobj.
4745         (Sized_relobj::include_linkonce_section): Likewise.
4746         (Sized_relobj::do_layout): Use separate arrays for output section
4747         and output offset.
4748         (Sized_relobj::do_count_local_symbols): Change map_to_output to
4749         output_sections.
4750         (Sized_relobj::do_finalize_local_symbols): Change map_to_output to
4751         output_sections and section_offsets.
4752         (Sized_relobj::write_local_symbols): Likewise.
4753         (map_to_kept_section): Compute output address directly.
4754         * reloc.cc (Sized_relobj::do_read_relocs): Change map_to_output to
4755         output_sections and section_offsets.
4756         (Sized_relobj::write_sections): Likewise.
4757         (Sized_relobj::relocate_sections): Likewise.
4758         * symtab.cc (sized_finalize_symbol): Use output_section_offset.
4759         * output.h (class Output_reloc): Update declarations.  Change
4760         u2_.relobj to Sized_relobj*.
4761         (class Output_data_reloc): Change add functions to use
4762         Sized_relobj*.
4763         * output.cc (Output_reloc::Output_reloc): Change relobj to
4764         Sized_relobj*.
4765         (Output_reloc::local_section_offset): Change return type to
4766         Elf_Addr.  Use get_output_section_offset.
4767         (Output_reloc::get_address): Likewise.
4768         (Output_section::is_input_address_mapped): Don't call
4769         is_section_specially_mapped.
4770         (Output_section::output_offset): Likewise.
4771         (Output_section::output_address): Likewise.
4772         (Output_section::starting_output_address): Likewise.
4773         * copy-relocs.cc (Copy_relocs::copy_reloc): Change object
4774         parameter to Sized_relobj*.
4775         (Copy_relocs::need_copy_reloc): Likewise.
4776         (Copy_relocs::save): Likewise.
4777         * copy-relocs.h (class Copy_relocs): Update declarations.
4778         (class Copy_relocs::Copy_reloc_entry): Change constructor to use
4779         Sized_relobj*.  Change relobj_ field to Sized_relobj*.
4780         * target-reloc.h (relocate_for_relocatable): Change
4781         offset_in_output_section type to Elf_Addr.  Change code that uses
4782         it as well.
4783         * layout.cc (Layout::layout): Always set *off.
4784         * mapfile.cc (Mapfile::print_input_section): Use
4785         output_section_offset.
4786         * i386.cc (Target_i386::copy_reloc): Change object parameter to
4787         Sized_relobj*.
4788         * powerpc.cc (Target_powerpc::copy_reloc): Likewise.
4789         * sparc.cc (Target_sparc::copy_reloc): Likewise.
4790         * x86_64.cc (Target_x86_64::copy_reloc): Likewise.
4791
4792 2008-07-03  Ian Lance Taylor  <iant@google.com>
4793
4794         * layout.cc (Layout::include_section): Do not discard unrecognized
4795         SHT_STRTAB sections.
4796
4797 2008-06-30  Craig Silverstein  <csilvers@cs.stanford.edu>
4798
4799         * script.cc (Lex::can_continue_name): Make '?' allowable in
4800         version-script names.
4801         * testsuite/version_script.map: Change glob pattern to use '?'
4802
4803 2008-06-30  Manish Singh  <yosh@gimp.org>
4804
4805         PR 6585
4806         * symtab.cc (Symbol_table::add_undefined_symbols_from_command_line):
4807         Correct typo.
4808
4809 2008-06-30  Ian Lance Taylor  <iant@google.com>
4810
4811         PR 6660
4812         PR 6682
4813         * powerpc.cc (Powerpc_relocate_functions::addr16_ha) [both
4814         versions]: Don't try to read the value in the contents, since we
4815         don't use it.  Use the template endianness when writing.
4816
4817 2008-06-25  Cary Coutant  <ccoutant@google.com>
4818
4819         * fileread.cc (File_read::make_view): Assert on zero-length view.
4820         * object.cc (Sized_relobj::do_read_symbols): Don't try to read
4821         symbol table when there are no symbols to read.
4822
4823 2008-06-23  Craig Silverstein  <csilvers@google.com>
4824
4825         * version.cc (version_string): Bump to 1.7
4826
4827 2008-06-18  Craig Silverstein  <csilvers@google.com>
4828
4829         * powerpc.cc (Powerpc_relocate_functions::addr16_ha): cast
4830         constant 0xFFFF to type Valtype.
4831         (Powerpc_relocate_functions::rel16_ha): Likewise.
4832
4833 2008-06-17  Ian Lance Taylor  <iant@google.com>
4834
4835         * output.h (Output_section::Input_section): Initialize p2align_ to
4836         zero for Output_section_data constructors.
4837         (Output_section::Input_section::addralign): If not an input
4838         section, return the alignment of the Output_section_data.
4839         * testsuite/copy_test.cc: New file.
4840         * testsuite/copy_test_1.cc: New file.
4841         * testsuite/copy_test_2.cc: New file.
4842         * testsuite/Makefile.am (check_PROGRAMS): Add copy_test.
4843         (copy_test_SOURCES, copy_test_DEPENDENCIES): New variables.
4844         (copy_test_LDFLAGS, copy_test_LDADD): New variables.
4845         (copy_test_1_pic.o, copy_test_1.so): New targets.
4846         (copy_test_2_pic.o, copy_test_2.so): New targets.
4847         * testsuite/Makefile.in: Rebuild.
4848
4849         * script-sections.cc (Script_sections::place_orphan): Initialize
4850         local variable exact.
4851
4852 2008-06-13  David Edelsohn  <edelsohn@gnu.org>
4853
4854         * powerpc.cc (Output_data_plt_powerpc::do_write): 8 + 4 = 0xC.
4855
4856 2008-06-12  David Edelsohn  <edelsohn@gnu.org>
4857             David S. Miller  <davem@davemloft.net>
4858
4859         * powerpc.cc: New file.
4860         * Makefile.am (TARGETSOURCES): Add powerpc.cc
4861         (ALL_TARGETOBJS): Add powerpc.$(OBJEXT)
4862         * configure.tgt: Add entries for powerpc-* and powerpc64-*.
4863         * Makefile.in: Rebuild.
4864
4865 2008-06-09  Ian Lance Taylor  <iant@google.com>
4866
4867         * testsuite/relro_test.cc: Include <cstdio>, <cstdlib>, and
4868         <exception>.
4869         (throwing, orig_terminate): New static variables.
4870         (terminate_handler): New static function.
4871         (t2): Set terminate handler.
4872
4873 2008-06-05  Kris Van Hees  <kris.van.hees@oracle.com>
4874
4875         PR 6584
4876         * binary.cc (Binary_to_elf::sized_convert): Fix .data
4877         alignment.
4878
4879 2008-05-30  Cary Coutant  <ccoutant@google.com>
4880
4881         * archive.cc (Archive::include_all_members) Correct to step
4882         over symbol table and extended name table in thin archives.
4883
4884 2008-05-29  Kris Van Hees  <kris.van.hees@oracle.com>
4885
4886         PR 6407
4887         * target-reloc.h (relocate_for_relocatable): Fix new_offset
4888         calculation.
4889
4890 2008-05-28  Caleb Howe  <cshowe@google.com>
4891
4892         * reduced_debug_output.cc: New file.
4893         * reduced_debug_output.h: New file.
4894         * options.h (class General_options): Add --strip-debug-non-line.
4895         * options.cc (General_options::finalize): Add strip_debug_non_line
4896         to the strip heirarchy.
4897         * layout.h (class Layout): Add debug_abbrev_ and debug_info_
4898         fields.
4899         * layout.cc: Include "reduced_debug_output.h".
4900         (Layout::Layout): Initialize new fields.
4901         (line_only_debug_sections): New static array.
4902         (is_lines_only_debug_sections): New static inline function.
4903         (Layout::include_section): Handle --strip-debug-non-line.
4904         (Layout::make_output_section): If --strip-debug-non-line, build
4905         new output sections for .debug_abbrev and .debug_info.
4906         * dwarf_reader.cc (read_unsigned_LEB_128): Move to namespace
4907         gold.  Warn about possible overflow.
4908         (read_signed_LEB_128): Likewise.
4909         * dwarf_reader.h: (read_unsigned_LEB_128): Declare.
4910         (read_signed_LEB_128): Declare.
4911         * Makefile.am (CCFILES): Add reduced_debug_output.cc.
4912         (HFILES): Add reduced_debug_output.h.
4913         * Makefile.in: Rebuild.
4914
4915 2008-05-21  Ian Lance Taylor  <iant@google.com>
4916
4917         * mapfile.cc: New file.
4918         * mapfile.h: New file.
4919         * options.h (class General_options): Add -M/--print-map and -Map.
4920         * options.cc (General_options::finalize): Make -M equivalent to
4921         -Map -.
4922         * main.cc: Include <cstdio> and "mapfile.h".
4923         (main): Open mapfile if requested.
4924         * gold.cc (class Middle_runner): Add mapfile_ field.  Update
4925         constructor.  Change caller.
4926         (queue_initial_tasks): Add mapfile parameter.  Change caller.
4927         (queue_middle_tasks): Likewise.
4928         * gold.h (queue_initial_tasks, queue_middle_tasks): Update
4929         declarations.
4930         * archive.cc: Include "mapfile.h".
4931         (Archive::add_symbols): Add mapfile parameter.  Change all
4932         callers.  Pass mapfile, symbol, and reason to include_member.
4933         (Archive::include_all_members): Add mapfile parameter.  Change all
4934         callers.
4935         (Archive::include_member): Add mapfile, sym, and why parameters.
4936         Change all callers.  Report inclusion to map file.
4937         * archive.h: Include "fileread.h".
4938         (class Archive): Update declarations.
4939         (Archive::file): New const method.
4940         (class Add_archive_symbols): Add mapfile_ field.  Update
4941         constructor.  Change all callers.
4942         * readsyms.h (class Read_symbols): Likewise.
4943         (class Finish_group): Likewise.
4944         (class Read_script): Likewise.
4945         * common.cc: Include "mapfile.h".
4946         (Symbol_table::allocate_commons): Add mapfile parameter.  Change
4947         all callers.
4948         (Symbol_table::do_allocate_commons): Likewise.
4949         (Symbol_table::do_allocate_commons_list): Likewise.  Report common
4950         symbol allocation to mapfile.
4951         * common.h (class Allocate_commons_task): Add mapfile_ field.
4952         Update constructor.  Change all callers.
4953         * symtab.h (class Symbol_table): Update declarations.
4954         * layout.cc: Include "mapfile.h".
4955         (Layout_task_runner::run): Print information to mapfile.
4956         (Layout::create_gold_note): Change Output_data_fixed_space to
4957         Output_data_zero_fill.
4958         (Layout::create_build_id): Likewise.
4959         (Layout::print_to_mapfile): New function.
4960         * layout.h (class Layout_task_runner): Add mapfile_ field.  Update
4961         constructor.  Change caller.
4962         (class Layout): Declare print_to_mapfile.
4963         * output.cc (Output_section::Input_section::print_to_mapfile): New
4964         function.
4965         (Output_section::add_input_section): If producing a map, always
4966         add to input_sections_ list.
4967         (Output_section::do_print_to_mapfile): New function.
4968         (Output_segment::print_sections_to_mapfile): New function.
4969         (Output_segment::print_section_list_to_mapfile): New function.
4970         * output.h: Include "mapfile.h".
4971         (Output_data::print_to_mapfile): New function.
4972         (Output_data::do_print_to_mapfile): New virtual function.
4973         (Output_segment_headers::do_print_to_mapfile): New function.
4974         (Output_file_header::do_print_to_mapfile): New function.
4975         (Output_data_const::do_print_to_mapfile): New function.
4976         (class Output_data_const_buffer): Add map_name_ field.  Update
4977         constructor.  Change all callers.  Add do_print_to_mapfile
4978         function.
4979         (class Output_data_fixed_space): Likewise.
4980         (class Output_data_space): Likewise.
4981         (class Output_data_zero_fill): New class.
4982         (Output_data_strtab::do_print_to_mapfile): New function.
4983         (Output_data_reloc_base::do_print_to_mapfile): New function.
4984         (Output_relocatable_relocs::do_print_to_mapfile): New function.
4985         (Output_data_group::do_print_to_mapfile): New function.
4986         (Output_data_got::do_print_to_mapfile): New function.
4987         (Output_data_dynamic::do_print_to_mapfile): New function.
4988         (Output_symtab_xindex::do_print_to_mapfile): New function.
4989         (class Output_section): Declare do_print_to_mapflie.  Declare
4990         print_to_mapfile in Input_section.
4991         (class Output_segment): Declare new functions.
4992         * object.h (Sized_relobj::symbol_count): New function.
4993         * script-sections.cc
4994         (Output_section_element_dot_assignment::set_section_addresses):
4995         Change Output_data_fixed_space to Output_data_zero_fill.
4996         (Output_data_expression::do_print_to_mapfile): New function.
4997         * script.cc (read_input_script): Add mapfile parameter.  Change
4998         all callers.
4999         * script.h (read_input_script): Update declaration.
5000         * ehframe.h (Eh_frame_hdr::do_print_to_mapfile): New function.
5001         (Eh_frame::do_print_to_mapfile): New function.
5002         * merge.h (Output_merge_data::do_print_to_mapfile): New function.
5003         (Output_merge_string::do_print_to_mapfile): New function.
5004         * i386.cc (Output_data_plt_i386::do_print_to_mapfile): New
5005         function.
5006         * sparc.cc (Output_data_plt_sparc::do_print_to_mapfile): New
5007         function.
5008         * x86_64.cc (Output_data_plt_x86_64::do_print_to_mapfile): New
5009         function.
5010         * Makefile.am (CCFILES): Add mapfile.cc.
5011         (HFILES): Add mapfile.h.
5012         * Makefile.in: Rebuild.
5013
5014 2008-05-19  Ian Lance Taylor  <iant@google.com>
5015
5016         * options.h (class General_options): Add -z relro.
5017         * layout.cc (Layout::Layout): Initialize relro_segment_.
5018         (Layout::add_output_section_data): Return the output section.
5019         (Layout::make_output_section): Rcognize relro sections and mark
5020         them appropriately.
5021         (Layout::attach_allocated_section_to_segment): Put relro sections
5022         in a PT_GNU_RELRO segment.
5023         (Layout::create_initial_dynamic_sections): Mark the .dynamic
5024         section as relro.
5025         (Layout::segment_precedes): Sort PT_GNU_RELRO segments after
5026         PT_TLS segments.
5027         (Layout::linkonce_mapping): Map d.rel.ro.local to
5028         .data.rel.ro.local.
5029         (Layout::output_section_name): Us .data.rel.ro.local for any
5030         section which begins with that.
5031         * layout.h (class Layout): Update add_output_section_data
5032         declaration.  Add relro_segment_ field.
5033         * output.cc (Output_section::Output_section): Initialize is_relro_
5034         and is_relro_local_ fields.
5035         (Output_segment::add_output_section): Group relro sections.
5036         (Output_segment::is_first_section_relro): New function.
5037         (Output_segment::maximum_alignment): If there is a relro section,
5038         align the segment to the common page size.
5039         (Output_segment::set_section_addresses): Track whether we are
5040         looking at relro sections.  If the last section is a relro
5041         section, align to the common page size.
5042         (Output_segment::set_section_list_addresses): Add in_relro
5043         parameter.  Change all callers.  Align to the page size when
5044         moving from relro to non-relro section.
5045         (Output_segment::set_offset): Align memsz of a PT_GNU_RELRO
5046         segment.
5047         * output.h (class Output_section): Add is_relro_ and
5048         is_relro_local_ fields.
5049         (Output_section::is_relro): New function.
5050         (Output_section::set_is_relro): New function.
5051         (Output_section::is_relro_local): New function.
5052         (Output_section::set_is_relro_local): New function.
5053         (class Output_segment): Update declarations.
5054         * i386.cc (Target_i386::got_section): Mark .got section as relro.
5055         * sparc.cc (Target_sparc::got_section): Likewise.
5056         * x86_64.cc (Target_x86_64::got_section): Likewise.
5057         * testsuite/relro_test_main.cc: New file.
5058         * testsuite/relro_test.cc: New file.
5059         * testsuite/Makefile.am (check_PROGRAMS): Add relro_test.
5060         (relro_test_SOURCES, relro_test_DEPENDENCIES): New variables.
5061         (relro_test_LDFLAGS, relro_test_LDADD): New variables.
5062         (relro_test.so, relro_test_pic.o): New targets.
5063         * testsuite/Makefile.in: Rebuild.
5064
5065 2008-05-16  Ian Lance Taylor  <iant@google.com>
5066
5067         * output.cc (Output_segment::add_output_section): Remove front
5068         parameter.
5069         * output.h (class Output_segment): Remove
5070         add_initial_output_section and overloaded add_output_section.
5071         Update declaration of remaining add_output_section.
5072         * layout.cc (Layout::create_interp): Call add_output_section
5073         rather than add_initial_output_section.
5074         (Layout::finish_dynamic_section): Likewise.
5075
5076         * i386.cc (Target_i386::Relocate::relocate_tls): Set dynamic type
5077         for TLS_GOTDESC and TLS_DESC_CALL.  Only optimize TLS_LDO_32 if we
5078         know the dynamic type.
5079         * x86_64.cc (Target_x86_64::Relocate): Add saw_tls_block_reloc_
5080         field.  Initialize it in constructor.
5081         (Target_x86_64::Relocate::relocate_tls): Record that we saw a TLS
5082         block reloc for TLSGD, GOTPC32_TLSDESC, TLSDESC_CALL, and TLSLD.
5083         Only optimize DTPOFF32 and DTPOFF64 if we have seen a TLS block
5084         reloc.
5085
5086         * output.cc (Output_reloc::get_address): Change return type to
5087         Elf_Addr.
5088         * output.h (class Output_reloc): Update get_address declaration.
5089         * x86_64.cc (Output_data_plt_x86_64::do_write): Use 64-bit types
5090         for section addresses.
5091
5092 2008-05-09  Ian Lance Taylor  <iant@google.com>
5093
5094         PR 6493
5095         * gold.cc (gold_nomem): Use return value of write.
5096
5097 2008-05-08  Ian Lance Taylor  <iant@google.com>
5098
5099         * symtab.c (Symbol::init_base_output_data): Add version
5100         parameter.  Change all callers.
5101         (Symbol::init_base_output_segment): Likewise.
5102         (Symbol::init_base_constant): Likewise.
5103         (Symbol::init_base_undefined): Likewise.
5104         (Sized_symbol::init_output_data): Likewise.
5105         (Sized_symbol::init_output_segment): Likewise.
5106         (Sized_symbol::init_constant): Likewise.
5107         (Sized_symbol::init_undefined): Likewise.
5108         (Symbol_table::do_define_in_output_data): If the new symbol has a
5109         version, mark it as the default.
5110         (Symbol_table::do_define_in_output_segment): Likewise.
5111         (Symbol_table::do_define_as_constant): Likewise.
5112         * symtab.h (class Symbol): Update declarations.
5113         (class Sized_symbol): Likewise.
5114         * resolve.cc (Symbol::override_version): New function.
5115         (Symbol::override_base): Call override_version.
5116         (Symbol::override_base_with_special): Likewise.
5117         * testsuite/ver_script_8.script: New file.
5118         * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_8.
5119         (ver_test_8_SOURCES, ver_test_8_DEPENDENCIES): Define.
5120         (ver_test_8_LDFLAGS, ver_test_8_LDADD): Define.
5121         (ver_test_8_1.so, ver_test_8_2.so): New targets.
5122
5123 2008-05-06  Ian Lance Taylor  <iant@google.com>
5124
5125         PR 6049
5126         * options.h (DEFINE_set): Add VARNAME_begin and VARNAME_end
5127         functions.
5128         (class General_options): Remove existing --undefined, and add
5129         --no-undefined instead.  Add new --undefined as synonym for -u.
5130         * archive.cc (Archive::add_symbols): Check whether symbol was
5131         named with -u.
5132         * gold.cc (queue_middle_tasks): Add -u symbols to symbol table.
5133         * symtab.h (class Symbol): Rename CONSTANT to IS_CONSTANT; change
5134         all uses.  Add IS_UNDEFINED.  Update declarations to split
5135         different versions of init_base.  Declare init_base_undefined.
5136         (Symbol::is_defined): Handle IS_UNDEFINED.
5137         (Symbol::is_undefined): Likewise.
5138         (Symbol::is_weak_undefined): Call is_undefined.
5139         (Symbol::is_absolute): Handle IS_CONSTANT.
5140         (class Sized_symbol): Update declarations to split different
5141         versions of init.  Declare init_undefined.
5142         (class Symbol_table): Declare new functions.
5143         * symtab.cc (Symbol::init_base_object): Rename from init_base.
5144         Change all callers.
5145         (Symbol::init_base_output_data): Likewise.
5146         (Symbol::init_base_output_segment): Likewise.
5147         (Symbol::init_base_constant): Likewise.
5148         (Symbol::init_base_undefined): New function.
5149         (Sized_symbol::init_object): Rename from init.  Change all
5150         callers.
5151         (Sized_symbol::init_output_data): Likewise.
5152         (Sized_symbol::init_output_segment): Likewise.
5153         (Sized_symbol::init_constant): Likewise.
5154         (Sized_symbol::init_undefined): New function.
5155         (Symbol_table::add_undefined_symbols_from_command_line): New
5156         function.
5157         (Symbol_table::do_add_undefined_symbols_from_command_line): New
5158         function.
5159         (Symbol::final_value_is_known): Handle IS_UNDEFINED.
5160         (Symbol::output_section): Likewise.
5161         (Symbol::set_output_section): Likewise.
5162         (Symbol_table::sized_finalize_symbol): Likewise.
5163         (Symbol_table::sized_write_globals): Likewise.
5164         * resolve.cc (Symbol_table::should_override): Likewise.
5165         (Symbol::override_base_with_special): Likewise.
5166
5167         * symtab.cc (Symbol_table::add_from_dynobj): If we see a protected
5168         symbol, change it to have default visibility.
5169         * testsuite/protected_1.cc: New file.
5170         * testsuite/protected_2.cc: New file.
5171         * testsuite/protected_3.cc: New file.
5172         * testsuite/protected_main_1.cc: New file.
5173         * testsuite/protected_main_2.cc: New file.
5174         * testsuite/protected_main_3.cc: New file.
5175         * testsuite/Makefile.am (check_PROGRAMS): Add protected_1.
5176         (protected_1_SOURCES, protected_1_DEPENDENCIES): Define.
5177         (protected_1_LDFLAGS, protected_1_LDADD): Define.
5178         (protected_1.so): New target.
5179         (protected_1_pic.o, protected_2_pic.o): New targets.
5180         (protected_3_pic.o): New target.
5181         (check_PROGRAMS): Add protected_2.
5182         (protected_2_SOURCES, protected_2_DEPENDENCIES): Define.
5183         (protected_2_LDFLAGS, protected_2_LDADD): Define.
5184         * testsuite/Makefile.in: Rebuild.
5185
5186         * options.h (DEFINE_var): Add set_user_set_##varname__.
5187         (DEFINE_bool_alias): New macro.
5188         (class General_options): Define -Bstatic using DEFINE_bool_alias
5189         rather than DEFINE_special.  Add --undefined as an alias for -z
5190         defs.
5191         * options.cc (General_options::parse_Bstatic): Remove.
5192
5193         * options.h (class General_options): Add --fatal-warnings.
5194         * main.cc (main): Implement --fatal-warnings.
5195         * errors.h (Errors::warning_count): New function.
5196
5197         * options.h (class General_options): Add -Bsymbolic-functions.
5198         * symtab.h (Symbol::is_preemptible): Check for
5199         -Bsymbolic-functions.
5200
5201 2008-05-05  Ian Lance Taylor  <iant@google.com>
5202
5203         * options.h (DEFINE_bool): For DASH_Z, create the negative option
5204         as noVARNAME rather than no-VARNAME.
5205         (class General_options): Add option -z combreloc.
5206         * output.h (class Output_reloc) [SHT_REL]: Declare compare and
5207         get_address.
5208         (Output_reloc::sort_before) [SHT_REL]: New function.
5209         (Output_reloc::sort_before) [SHT_RELA]: New function.
5210         (class Output_data_reloc_base): Add sort_relocs_ field.  Define
5211         Sort_relocs_comparison.
5212         (Output_data_reloc_base::Output_data_reloc_base): Add sort_relocs
5213         parameter.  Change all callers.
5214         (Output_data_reloc::Output_data_reloc) [both versions]: Add
5215         sort_relocs parameter.  Change all callers.
5216         * output.cc (Output_reloc::get_address): New function, broken out
5217         of write_rel.
5218         (Output_reloc::write_rel): Call it.
5219         (Output_reloc::compare): New function.
5220         (Output_data_reloc_base::do_write): Optionally sort relocs.
5221
5222         * configure.ac: If targ_extra_obj is set, link it in.
5223         * configure.tgt: Initialize all variables.
5224         (x86_64*): Set targ_extra_obj and targ_extra_size.
5225         * configure: Rebuild.
5226
5227         * object.cc (Sized_relobj::include_section_group): Adjust section
5228         indexes read from group data.  Build vector to pass to
5229         layout_group.
5230         * layout.cc (Layout::layout_group): Add flags and shndxes
5231         parameters.  Remove contents parameter.  Change caller.  Update
5232         explicit instantiations.
5233         * layout.h (class Layout): Update layout_group declaration.
5234         * output.cc (Output_data_group::Output_data_group): Add flags and
5235         input_shndxes parameters.  Remove contents parameter.  Change
5236         caller.
5237         (Output_data_group::do_write): Change input_sections_ to
5238         input_shndxes_.
5239         * output.h (class Output_data_group): Update constructor
5240         declaration.  Rename input_sections_ to input_shndxes_.
5241         * testsuite/many_sections_test.cc: Add template.
5242
5243 2008-04-30  Cary Coutant  <ccoutant@google.com>
5244
5245         * target-reloc.h (relocate_section): Fix dead-pointer bug.
5246
5247         * layout.cc (Layout::include_section): Refactored check for debug
5248         info section.
5249         (Layout::add_comdat): Add new parameters.  Change type
5250         of signature parameter.  Add object and shndx to signatures table.
5251         (Layout::find_kept_object): New function.
5252         * layout.h: Include <cstring>.
5253         (Layout::is_debug_info_section): New function.
5254         (Layout::add_comdat): Add new parameters.
5255         (Layout::find_kept_object): New function.
5256         (Layout::Kept_section): New struct.
5257         (Layout::Signatures): Change type of map range.
5258         * object.cc (Relobj::output_section_address): New function.
5259         (Sized_relobj::include_section_group): Add new parameters.  Change
5260         calls to Layout::add_comdat.  Change to build table of kept comdat
5261         groups and table mapping discarded sections to kept sections.
5262         (Sized_relobj::include_linkonce_section): Likewise.  Add new parameter.
5263         (Sized_relobj::do_layout): Change calls to include_section_group and
5264         include_linkonce_section.
5265         (Sized_relobj::do_finalize_local_symbols): Do not set local symbol
5266         value to zero when section is discarded.
5267         (Sized_relobj::map_to_kept_section): New function.
5268         * object.h (Relobj::output_section_address): New function.
5269         (Relobj::Comdat_group): New type.
5270         (Relobj::find_comdat_group): New function.
5271         (Relobj::Comdat_group_table): New type.
5272         (Relobj::Kept_comdat_section): New type.
5273         (Relobj::Kept_comdat_section_table): New type.
5274         (Relobj::add_comdat_group): New function.
5275         (Relobj::set_kept_comdat_section): New function.
5276         (Relobj::get_kept_comdat_section): New function.
5277         (Relobj::comdat_groups_): New field.
5278         (Relobj::kept_comdat_sections_): New field.
5279         (Symbol_value::input_value): Update comment.
5280         (Sized_relobj::map_to_kept_section) New function.
5281         (Sized_relobj::include_linkonce_section): Add new parameter.
5282         * target-reloc.h (Comdat_behavior): New type.
5283         (get_comdat_behavior): New function.
5284         (relocate_section): Add code to map a discarded section to the
5285         corresponding kept section when applying a relocation.
5286
5287 2008-04-30  Craig Silverstein  <csilvers@google.com>
5288
5289         * dwarf_reader.cc (next_generation_count): New static var.
5290         (Addr2line_cache_entry): New struct.
5291         (addr2line_cache): New static var.
5292         (Dwarf_line_info::one_addr2line): Added caching.
5293         (Dwarf_line_info::clear_addr2line_cache): New function.
5294         * dwarf_reader.h (Dwarf_line_info::one_addr2line): Add
5295         cache-size parameter.
5296         (Dwarf_line_info::one_addr2line_cache): New function.
5297         * symtab.cc (Symbol_table::detect_odr_violations): Pass
5298         new cache-size argument to one_addr2line(), and clear cache.
5299
5300 2008-04-28  Cary Coutant  <ccoutant@google.com>
5301
5302         * i386.cc (Relocate::relocate): Fix typos for R_386_PC16 and
5303         R_386_PC8 relocations.
5304
5305 2008-04-23  Ian Lance Taylor  <iant@google.com>
5306
5307         * object.cc (Sized_relobj::include_section_group): Check for
5308         invalid section group.
5309
5310         * object.cc (make_elf_object): Correct test for 64-bit ELF file
5311         header size.
5312
5313         * readsyms.cc (Read_symbols::do_read_symbols): Use get_view rather
5314         than read for file header.
5315         * archive.cc (Archive::include_member): Likewise.
5316
5317 2008-04-23  Paolo Bonzini  <bonzini@gnu.org>
5318
5319         * aclocal.m4: Regenerate.
5320         * configure: Regenerate.
5321
5322 2008-04-19  Ian Lance Taylor  <iant@google.com>
5323
5324         * version.cc (version_string): Bump to 1.6.
5325
5326         * testsuite/Makefile.am (many_sections_r_test): New target.
5327         (many_sections_r_test_SOURCES): Remove.
5328         (many_sections_r_test_DEPENDENCIES): Remove.
5329         (many_sections_r_test_LDFLAGS): Remove.
5330         (many_sections_r_test_LDADD): Remove.
5331
5332         * object.cc (Sized_relobj::do_add_symbols): Always pass
5333         local_symbol_count_ to add_from_relobj.
5334
5335         * testsuite/Makefile.am (many_sections_check.h): Only check one in
5336         every thousand variables.
5337         * testsuite/Makefile.in: Rebuild.
5338
5339         * object.cc (Xindex::initialize_symtab_xindex): New function.
5340         (Xindex::read_symtab_xindex): New function.
5341         (Xindex::sym_xindex_to_shndx): New function.
5342         (Sized_relobj::find_symtab): Pick up SHT_SYMTAB_SHNDX section if
5343         available.
5344         (Sized_relobj::do_initialize_xindex): New function.
5345         (Sized_relobj::do_read_symbols): Adjust section links.
5346         (Sized_relobj::symbol_section_and_value): Add is_ordinary
5347         parameter.  Change all callers.
5348         (Sized_relobj::include_section_group): Adjust section links and
5349         symbol section indexes.
5350         (Sized_relobj::do_layout): Adjust section links.
5351         (Sized_relobj::do_count_local_symbols): Adjust section links and
5352         symbol section indexes.
5353         (Sized_relobj::do_finalize_local_symbols): Distinguish between
5354         ordinary and special symbols.
5355         (Sized_relobj::write_local_symbols): Add symtab_xindex and
5356         dynsym_xindex parameters.  Change all callers.  Adjust section
5357         links.  Use SHN_XINDEX when needed.
5358         (Sized_relobj::get_symbol_location_info): Adjust section links.
5359         Don't get fooled by special symbols.
5360         * object.h (class Xindex): Define.
5361         (class Object): Add xindex_ parameter.  Declare virtual functoin
5362         do_initialize_xindex.
5363         (Object::adjust_sym_shndx): New function.
5364         (Object::set_xindex): New protected function.
5365         (class Symbol_value): Add is_ordinary_shndx_ field.
5366         (Symbol_value::Symbol_value): Initialize is_ordinary_shndx_.
5367         (Symbol_value::value): Assert ordinary section.
5368         (Symbol_value::initialize_input_to_output_map): Likewise.
5369         (Symbol_value::set_input_shndx): Add is_ordinary parameter.
5370         Change all callers.
5371         (Symbol_value::input_shndx): Add is_ordinary parameter.  Change
5372         all callers.
5373         (class Sized_relobj): Update declarations.
5374         (Sized_relobj::local_symbol_input_shndx): Add is_ordinary
5375         parameter.  Change all callers.
5376         (Sized_relobj::adjust_shndx): New function.
5377         * dynobj.cc (Sized_dynobj::Sized_dynobj): Initialize dynsym_shndx_
5378         field.
5379         (Sized_dynobj::find_dynsym_sections): Remove pdynsym_shndx
5380         parameter.  Change all callers.  Pick up SHT_DYNSYM_SHNDX section
5381         for SHT_DYNSYM section if available.  Set dynsym_shndx_ field.
5382         (Sized_dynobj::read_dynsym_section): Adjust section links.
5383         (Sized_dynobj::read_dynamic): Likewise.
5384         (Sized_dynobj::do_read_symbols): Use dynsym_shndx_ field.  Adjust
5385         section links.
5386         (Sized_dynobj::do_initialize_xindex): New function.
5387         * dynobj.h (class Sized_dynobj): Add dynsym_shndx_ field.  Declare
5388         do_initialize_xindex.
5389         (Sized_dynobj::adjust_shndx): New function.
5390         * layout.cc (Layout::Layout): Initialize symtab_xindex_ and
5391         dynsym_xindex_ fields.
5392         (Layout::finalize): Add a call to set_section_indexes before
5393         creating the symtab sections.
5394         (Layout::set_section_indexes): Don't do anything if the section
5395         already has a section index.
5396         (Layout::create_symtab_sections): Add shnum parameter.  Change
5397         caller.  Create .symtab_shndx section if needed.
5398         (Layout::create_shdrs): Add shstrtab_section parameter.  Change
5399         caller.
5400         (Layout::allocated_output_section_count): New function.
5401         (Layout::create_dynamic_symtab): Create .dynsym_shndx section if
5402         needed.
5403         * layout.h (class Layout): Add symtab_xindex_ and dynsym_xindex_
5404         fields.  Update declarations.
5405         (Layout::symtab_xindex): New function.
5406         (Layout::dynsym_xindex): New function.
5407         (class Write_symbols_task): Add layout_ field.
5408         (Write_symbols_task::Write_symbols_task): Add layout parameter.
5409         Change caller.
5410         * output.cc (Output_section_headers::Output_section_headers): Add
5411         shstrtab_section parameter.  Change all callers.
5412         (Output_section_headers::do_sized_write): Store overflow values
5413         for section count and section string table section index in
5414         section header zero.
5415         (Output_file_header::do_sized_write): Check for overflow of
5416         section count and section string table section index.
5417         (Output_symtab_xindex::do_write): New function.
5418         (Output_symtab_xindex::endian_do_write): New function.
5419         * output.h (class Output_section_headers): Add shstrtab_section_.
5420         Update declarations.
5421         (class Output_symtab_xindex): Define.
5422         (Output_section::has_out_shndx): New function.
5423         * symtab.cc (Symbol::init_fields): Initialize is_ordinary_shndx_
5424         field.
5425         (Symbol::init_base): Add st_shndx and is_ordinary parameters.
5426         Change all callers.
5427         (Sized_symbol::init): Likewise.
5428         (Symbol::output_section): Check for ordinary symbol.
5429         (Symbol_table::add_from_object): Remove orig_sym parameter.  Add
5430         st_shndx, is_ordinary, and orig_st_shndx parameters.  Change all
5431         callers.
5432         (Symbol_table::add_from_relobj): Add symndx_offset parameter.
5433         Change all callers.  Simplify handling of symbols from sections
5434         not included in the link.
5435         (Symbol_table::add_from_dynobj): Handle ordinary symbol
5436         distinction.
5437         (Weak_alias_sorter::operator()): Assert that symbols are
5438         ordinary.
5439         (Symbol_table::sized_finalize_symbol): Handle ordinary symbol
5440         distinction.
5441         (Symbol_table::write_globals): Add symtab_xindex and dynsym_xindex
5442         parameters.  Change all callers.
5443         (Symbol_table::sized_write_globals): Likewise.  Handle ordinary
5444         symbol distinction.  Use SHN_XINDEX when needed.
5445         (Symbol_table::write_section_symbol): Add symtab_xindex
5446         parameter.  Change all callers.
5447         (Symbol_table::sized_write_section_symbol): Likewise.  Use
5448         SHN_XINDEX when needed.
5449         * symtab.h (class Symbol): Add is_ordinary_shndx_ field.  Update
5450         declarations.
5451         (Symbol::shndx): Add is_ordinary parameter.  Change all callers.
5452         (Symbol::is_defined): Check is_ordinary.
5453         (Symbol::is_undefined, Symbol::is_weak_undefined): Likewise.
5454         (Symbol::is_absolute, Symbol::is_common): Likewise.
5455         (class Sized_symbol): Update declarations.
5456         (class Symbol_table): Update declarations.
5457         * resolve.cc (Symbol::override_base): Add st_shndx and is_ordinary
5458         parameters.  Change all callers.
5459         (Sized_symbol::override): Likewise.
5460         (Symbol_table::override): Likewise.
5461         (symbol_to_bits): Add is_ordinary parameter.  Change all callers.
5462         (Symbol_table::resolve): Remove orig_sym parameter.  Add st_shndx,
5463         is_ordinary, and orig_st_shndx parameters.  Change all callers.
5464         * copy-relocs.cc (Copy_relocs::emit_copy_reloc): Require symbol
5465         to be in an ordinary section.
5466         * dwarf_reader.cc (Sized_dwarf_line_info::symbol_section): Add
5467         object and is_ordinary parameters.  Change all callers.
5468         (Sized_dwarf_line_info::read_relocs): Add object parameter.
5469         Change all callers.  Don't add undefined or non-ordinary symbols
5470         to reloc_map_.
5471         (Sized_dwarf_line_info::read_line_mappings): Add object parameter.
5472         Change all callers.
5473         * dwarf_reader.h (class Sized_dwarf_line_info): Update
5474         declarations.
5475         * ehframe.cc (Eh_frame::read_fde): Check for ordinary symbol.
5476         * reloc.cc (Sized_relobj::do_read_relocs): Adjust section links.
5477         (Sized_relobj::relocate_sections): Likewise.
5478         * target-reloc.h (scan_relocs): Adjust section symbol index.
5479         (scan_relocatable_relocs): Likewise.
5480         * i386.cc (Scan::local): Check for ordinary symbols.
5481         * sparc.cc (Scan::local): Likewise.
5482         * x86_64.cc (Scan::local): Likewise.
5483         * testsuite/binary_unittest.cc (Sized_binary_test): Update calls
5484         to symbol_section_and_value.
5485         * testsuite/many_sections_test.cc: New file.
5486         * testsuite/Makefile.am (BUILT_SOURCES): Define.
5487         (check_PROGRAMS): Add many_sections_test.
5488         (many_sections_test_SOURCES): Define.
5489         (many_sections_test_DEPENDENCIES): Define.
5490         (many_sections_test_LDFLAGS): Define.
5491         (BUILT_SOURCES): Add many_sections_define.h.
5492         (many_sections_define.h): New target.
5493         (BUILT_SOURCES): Add many_sections_check.h.
5494         (many_sections_check.h): New target.
5495         (check_PROGRAMS): Add many_sections_r_test.
5496         (many_sections_r_test_SOURCES): Define.
5497         (many_sections_r_test_DEPENDENCIES): Define.
5498         (many_sections_r_test_LDFLAGS): Define.
5499         (many_sections_r_test_LDADD): Define.
5500         (many_sections_r_test.o): New target.
5501         * testsuite/Makefile.in: Rebuild.
5502
5503 2008-04-17  Cary Coutant  <ccoutant@google.com>
5504
5505         * errors.cc (Errors::info): New function.
5506         (gold_info): New function.
5507         * errors.h (Errors::info): New function.
5508         * gold.h (gold_info): New function.
5509         * object.cc (Input_objects::add_object): Print trace output.
5510         * options.cc (options::parse_set): New function.
5511         (General_options::parse_wrap): Deleted.
5512         (General_options::General_options): Deleted initializer.
5513         * options.h (options::String_set): New typedef.
5514         (options::parse_set): New function.
5515         (DEFINE_set): New macro.
5516         (General_options::wrap): Changed to use DEFINE_set. Changed
5517         callers of any_wrap_symbols and is_wrap_symbol.
5518         (General_options::trace, General_options::trace_symbol):
5519         New options.
5520         (General_options::any_wrap_symbols, General_options::is_wrap_symbol)
5521         (General_options::wrap_symbols_): Deleted.
5522         * symtab.cc (Symbol_table::add_from_object): Print trace output.
5523
5524 2008-04-17  David S. Miller  <davem@davemloft.net>
5525
5526         * options.cc (General_options::parse_V): New function.
5527         * options.h: Add entries for -V and -Qy.
5528
5529 2008-04-17  Ian Lance Taylor  <iant@google.com>
5530
5531         * common.cc (Symbol_table::allocate_commons): Remove options
5532         parameter.  Change caller.
5533         (Symbol_table::do_allocate_commons): Remove options parameter.
5534         Change caller.  Just call do_allocate_commons_list twice.
5535         (Symbol_table::do_allocate_commons_list): New function, broken out
5536         of do_allocate_commons.
5537         * common.h (class Allocate_commons_task): Remove options_ field.
5538         Update constructor.
5539         * symtab.cc (Symbol_table::Symbol_table): Initialize
5540         tls_commons_.
5541         (Symbol_table::add_from_object): Put TLS common symbols on
5542         tls_commons_ list.
5543         (Symbol_table::sized_finalize_symbol): Handle STT_TLS symbols
5544         which are IN_OUTPUT_DATA.
5545         * symtab.h (class Symbol_table): Add tls_commons_ field.  Update
5546         allocate_commons and do_allocate_commons declarations.  Declare
5547         do_allocate_commons_list.
5548         * gold.cc (queue_middle_tasks): Update creation of
5549         Allocate_commons_task to not pass options.
5550         * testsuite/Makefile.am (INCLUDES): Add -I.. .
5551         (TLS_TEST_C_FLAGS): New variable.
5552         (tls_test_c_pic.o): New target.
5553         (tls_test_shared.so): Link in tls_test_c_pic.o.
5554         (tls_test_c_pic_ie.o): New target.
5555         (tls_test_ie_shared.so): Link in tls_test_c_pic_ie.o.
5556         (tls_test_DEPENDENCIES, tls_test_LDADD): Add tls_test_c.o.
5557         (tls_test_c.o): New target.
5558         (tls_pic_test_DEPENDENCIES): Add tls_test_c_pic.o.
5559         (tls_pic_test_LDADD): Likewise.
5560         (tls_shared_gd_to_ie_test_DEPENDENCIES): Add tls_test_c_pic.o.
5561         (tls_shared_gd_to_ie_test_LDADD): Likewise.
5562         (tls_test_c_gnu2.o): New target.
5563         (tls_shared_gnu2_gd_to_ie_test_DEPENDENCIES): Add
5564         tls_test_c_gnu2.o.
5565         (tls_shared_gnu2_gd_to_ie_test_LDADD): Likewise.
5566         (tls_test_gnu2_shared.so): Link in tls_test_c_gnu2.o.
5567         (tls_test_shared_nonpic.so): Link in tls_test_c.o.
5568         * testsuite/tls_test.cc: Include "config.h".
5569         (t_last): Call t11_last.
5570         * testsuite/tls_test.h (t11, t11_last): Declare.
5571         * testsuite/tls_test_c.c: New file.
5572         * testsuite/tls_test_main.cc (thread_routine): Call t11.
5573         * configure.ac: Check for OpenMP support.
5574         * configure, config.in, Makefile.in: Rebuild.
5575         * testsuite/Makefile.in: Rebuild.
5576
5577 2008-04-16  Cary Coutant  <ccoutant@google.com>
5578
5579         * i386.cc (Target_i386::define_tls_base_symbol): New function.
5580         (Target_i386::tls_base_symbol_defined_): New field.
5581         (Target_i386::Scan::local): Define _TLS_MODULE_BASE_ symbol.
5582         (Target_i386::Scan::global): Likewise.
5583         * symtab.cc (sized_finalize_symbol): Add check for TLS symbol.
5584         * x86_64.cc (Target_x86_64::define_tls_base_symbol): New function.
5585         (Target_x86_64::tls_base_symbol_defined_): New field.
5586         (Target_x86_64::Scan::local): Define _TLS_MODULE_BASE_ symbol.
5587         (Target_x86_64::Scan::global): Likewise.
5588
5589 2008-04-16  Cary Coutant  <ccoutant@google.com>
5590
5591         * symtab.h (Symbol::is_strong_undefined): Removed unused function.
5592         (Symbol::needs_plt_entry): Allow weak undefined symbols.
5593         (Symbol::needs_dynamic_reloc): Allow weak undefined symbols when
5594         building shared libraries.
5595         * testsuite/Makefile.am (weak_undef_nonpic_test): New target.
5596         (weak_undef_file1_nonpic.o, weak_undef_file2_nonpic.o)
5597         (weak_undef_lib_nonpic.so, alt/weak_undef_lib_nonpic.so): New targets.
5598         * testsuite/Makefile.in: Rebuild.
5599         * testsuite/weak_undef.h: New file.
5600         * testsuite/weak_undef_file1.cc: Add extra test cases.
5601         * testsuite/weak_undef_file2.cc: Likewise.
5602         * testsuite/weak_undef_test.cc: Likewise.
5603
5604 2008-04-16  David S. Miller  <davem@davemloft.net>
5605
5606         * sparc.cc (Target_sparc::Scan): Change from struct to class.
5607         Add issued_non_pic_error_ field.  Declare check_non_pic.
5608         (Target_sparc::Scan::check_non_pic): New function.
5609         (Target_sparc::Scan::local): Call check_non_pic as appropriate.
5610         (Target_sparc::Scan::global): Likewise.
5611
5612         * configure.ac (FN_PTRS_IN_SO_WITHOUT_PIC): Add sparc64.
5613         * configure: Rebuild.
5614
5615         * options.h (DEFINE_enable): New macro.
5616         (new_dtags): New enable option.
5617         (initfirst, interpose, loadfltr, nodefaultlib,
5618         nodelete, nodlopen, nodump): New -z options.
5619         * layout.cc (Layout:finish_dynamic_section): If new
5620         dtags enabled, emit DT_RUNPATH.  Also, emit a
5621         DT_FLAGS_1 containing any specified -z flags.
5622
5623 2008-04-16  Ian Lance Taylor  <iant@google.com>
5624
5625         * copy-relocs.cc: New file.
5626         * copy-relocs.h: New file.
5627         * reloc.cc: Remove Copy_relocs code.
5628         * reloc.h: Likewise.
5629         * reloc-types.h (struct Reloc_types) [both versions]: Add
5630         get_reloc_addend_noerror.
5631         * output.h (class Output_data_reloc<elfcpp::SHT_REL>): Add
5632         variants of add_global which take an addend which must be zero.
5633         * i386.cc: Include "copy-relocs.h".
5634         (class Target_i386): Change type of copy_relocs_ to variable,
5635         update initializer.
5636         (Target_i386::copy_reloc): Rewrite to pass to Copy_relocs class.
5637         Change all callers.
5638         (Target_i386::do_finalize_sections): Change handling of
5639         copy_relocs_.
5640         * sparc.cc: Include "copy-relocs.h".
5641         (class Target_sparc): Change type of copy_relocs_ to variable,
5642         update initializer.
5643         (Target_sparc::copy_reloc): Rewrite to pass to Copy_relocs class.
5644         Change all callers.
5645         (Target_sparc::do_finalize_sections): Change handling of
5646         copy_relocs_.
5647         * x86_64.cc: Include "copy-relocs.h".
5648         (class Target_x86_64): Change type of copy_relocs_ to variable,
5649         update initializer.
5650         (Target_x86_64::copy_reloc): Rewrite to pass to Copy_relocs
5651         class.  Change all callers.
5652         (Target_x86_64::do_finalize_sections): Change handling of
5653         copy_relocs_.
5654         * Makefile.am (CCFILES): Add copy-relocs.cc.
5655         (HFILES): Add copy-relocs.h.
5656
5657         * Makefile.in, aclocal.m4, testsuite/Makefile.in: Rebuild.
5658
5659         * testsuite/script_test_4.sh: Permit leading zeroes.
5660
5661 2008-04-15  Ian Lance Taylor  <iant@google.com>
5662
5663         * script-sections.cc (Script_sections::create_segments): Use
5664         header_size_adjustment even when there is enough room for the
5665         headers.
5666         * testsuite/script_test_4.sh: New file.
5667         * testsuite/script_test_4.t: New file.
5668         * testsuite/Makefile.am (check_SCRIPTS): Add script_test_4.sh.
5669         (check_DATA): Add script_test_4.stdout.
5670         (MOSTLYCLEANFILES): Likewise.
5671         (script_test_4): New target.
5672         (script_test_4.stdout): New target.
5673         * testsuite/Makefile.in: Rebuild.
5674
5675         * sparc.cc: Add definitions for Output_data_plt_sparc class
5676         constants.
5677
5678 2008-04-14  David S. Miller  <davem@davemloft.net>
5679
5680         * sparc.cc: New file.
5681         * Makefile.am (TARGETSOURCES): Add sparc.cc
5682         (ALL_TARGETOBJS): Add sparc.$(OBJEXT)
5683         * configure.tgt: Document targ_extra_size and
5684         targ_extra_big_endian.  Add entries for sparc-* and
5685         sparc64-*.
5686         * configure.ac: Handle targ_extra_size and
5687         targ_extra_big_endian.
5688         * Makefile.in: Rebuild.
5689         * configure: Likewise.
5690         * po/POTFILES.in: Likewise.
5691         * po/gold.pot: Likewise.
5692
5693 2008-04-14  Ian Lance Taylor  <iant@google.com>
5694
5695         * layout.cc (Layout::Layout): Initialize sections_are_attached_.
5696         (Layout::get_output_section): Ignore SHF_WRITE and SHF_EXECINSTR
5697         in the name/type/flags to section mapping.  Don't call
5698         allocate_output_section.
5699         (Layout::choose_output_section): Change parameter from adjust_name
5700         to is_input_section.  Don't permit input sections after sections
5701         are attached to segments.  Don't call allocate_output_section.
5702         (Layout::layout_eh_frame): Call update_flags_for_input_section,
5703         not write_enable_output_section.
5704         (Layout::make_output_section): Don't push to
5705         unattached_section_list_ nor call attach_to_segment.  Call
5706         attach_section_to_segment if sections are attached.
5707         (Layout::attach_sections_to_segments): New function.
5708         (Layout::attach_section_to_segment): New function.
5709         (Layout::attach_allocated_section_to_segment): Rename from
5710         attach_to_segment.  Remove flags parameter.
5711         (Layout::allocate_output_section): Remove function.
5712         (Layout::write_enable_output_section): Remove function.
5713         * layout.h (class Layout): Update for above changes.  Add new
5714         field sections_are_attached_.
5715         * output.h (Output_section::update_flags_for_input_section): New
5716         function.
5717         * output.cc (Output_section::add_input_section): Call
5718         update_flags_for_input_section.
5719         * gold.cc (queue_middle_tasks): Call attach_sections_to_segments.
5720
5721 2008-04-11  Cary Coutant  <ccoutant@google.com>
5722
5723         * i386.cc (Target_i386::got_mod_index_entry): Restore code previously
5724         thought unnecessary.
5725         * x86_64.cc (Target_x86_64::got_mod_index_entry): Likewise.
5726
5727 2008-04-11  Ian Lance Taylor  <iant@google.com>
5728
5729         * output.h (class Output_section_data): Remove inline definition
5730         of set_addralign.
5731         * output.cc (Output_section_data::set_addralign): New function.
5732
5733 2008-04-11  Cary Coutant  <ccoutant@google.com>
5734
5735         Add support for TLS descriptors for i386 and x86_64.
5736         * i386.cc (Target_i386::Relocate::tls_desc_gd_to_ie): New function.
5737         (Target_i386::Relocate::tls_desc_gd_to_le): New function.
5738         (Target_i386::Got_type): Add GOT_TYPE_TLS_NOFFSET and
5739         GOT_TYPE_TLS_DESC.
5740         (Target_i386::got_mod_index_entry): Remove unnecessary code.
5741         (Target_i386::Scan::local): Implement R_386_TLS_GOTDESC and
5742         R_386_TLS_DESC_CALL relocations.  Fix problem with initial-exec
5743         relocations.
5744         (Target_i386::Scan::global): Fix problem with GD-to-IE relaxation.
5745         Implement R_386_TLS_GOTDESC and R_386_TLS_DESC_CALL relocations;
5746         Fix problem with initial-exec relocations.
5747         (Target_i386::Relocate::relocate_tls): Likewise.
5748         (Target_i386::Relocate::tls_gd_to_ie): Fix problem with GD-to-IE
5749         relaxation.
5750         * output.cc (Output_data_dynamic::Dynamic_entry::write): Add
5751         support for section-plus-offset dynamic table entries.
5752         * output.h (Output_data_dynamic::add_section_plus_offset): New function.
5753         (Output_data_dynamic::Dynamic_entry): Add support for
5754         section-plus-offset dynamic table entries.
5755         (Output_data_dynamic::Classification): Likewise.
5756         (Output_data_dynamic::classification_): Renamed offset_.
5757         * x86_64.cc (Target_x86_64::Relocate::tls_desc_gd_to_ie): New function.
5758         (Target_x86_64::Relocate::tls_desc_gd_to_le): New function.
5759         (Target_x86_64::make_plt_section): New function.
5760         (Target_x86_64::reserve_tlsdesc_entries): New function.
5761         (Output_data_plt_x86_64::Output_data_plt_x86_64): Add new parameter.
5762         (Output_data_plt_x86_64::reserve_tlsdesc_entry): New function.
5763         (Output_data_plt_x86_64::has_tlsdesc_entry): New function.
5764         (Output_data_plt_x86_64::get_tlsdesc_got_offset): New function.
5765         (Output_data_plt_x86_64::get_tlsdesc_plt_offset): New function.
5766         (Output_data_plt_x86_64::tlsdesc_plt_entry): New field.
5767         (Output_data_plt_x86_64::set_final_data_size): Move out of line;
5768         add extra PLT entry for TLS descriptors.
5769         (Output_data_plt_x86_64::got_): New field.
5770         (Output_data_plt_x86_64::tlsdesc_got_offset_): New field.
5771         (Output_data_plt_x86_64::Output_data_plt_x86_64): Initialize new
5772         fields.
5773         (Output_data_plt_x86_64::do_write): Write extra PLT entry for TLS
5774         descriptors.
5775         (Target_x86_64::make_plt_entry): Factor out make_plt_section.
5776         (Target_x86_64::got_mod_index_entry): Remove unnecessary code.
5777         (Target_x86_64::Scan::local): Implement R_386_TLS_GOTDESC and
5778         R_386_TLS_DESC_CALL relocations.
5779         (Target_x86_64::Scan::global): Likewise.
5780         (Target_x86_64::do_finalize_sections): Add dynamic table entries
5781         for TLS descriptors.
5782         (Relocate::relocate_tls): Fix problem with GD-to-IE relaxation.
5783         Implement R_386_TLS_GOTDESC and R_386_TLS_DESC_CALL relocations.
5784         (Target_x86_64::Relocate::tls_gd_to_ie): Fix problem with
5785         GD-to-IE relaxation.
5786         * configure.ac: Export new conditional variables TLS_GNU2_DIALECT
5787         and TLS_DESCRIPTORS.
5788         * Makefile.in: Rebuild.
5789         * configure: Rebuild.
5790         * testsuite/Makefile.am (tls_shared_gd_to_ie_test): New target.
5791         (tls_test_shared2.so): New target.
5792         (tls_shared_gd_to_ie_test_SOURCES): New variable.
5793         (tls_shared_gd_to_ie_test_DEPENDENCIES): New variable.
5794         (tls_shared_gd_to_ie_test_LDFLAGS): New variable.
5795         (tls_shared_gd_to_ie_test_LDADD): New variable.
5796         (tls_shared_gnu2_gd_to_ie_test): New target.
5797         (tls_test_gnu2.o, tls_test_file2_gnu2.o, tls_test_gnu2_shared2.so):
5798         New targets.
5799         (tls_shared_gnu2_gd_to_ie_test_SOURCES): New variable.
5800         (ls_shared_gnu2_gd_to_ie_test_DEPENDENCIES): New variable.
5801         (tls_shared_gnu2_gd_to_ie_test_LDFLAGS): New variable.
5802         (tls_shared_gnu2_gd_to_ie_test_LDADD): New variable.
5803         (tls_shared_gnu2_test): New target.
5804         (tls_test_gnu2_shared.so): New target.
5805         (tls_shared_gnu2_test_SOURCES): New variable.
5806         (tls_shared_gnu2_test_DEPENDENCIES): New variable.
5807         (tls_shared_gnu2_test_LDFLAGS): New variable.
5808         (tls_shared_gnu2_test_LDADD): New variable.
5809         * testsuite/Makefile.in: Rebuild.
5810         * testsuite/Makefile.
5811
5812 2008-04-11  Ian Lance Taylor  <iant@google.com>
5813
5814         * testsuite/Makefile.am (justsyms_2r.o): Add dependency on
5815         justsyms.t.
5816         * testsuite/Makefile.in: Rebuild.
5817
5818         * testsuite/script_test_2a.cc (script_test_string_a): Make 8 bytes
5819         long.
5820         * testsuite/script_test_2.cc (main): Adjust test.
5821
5822 2008-04-11  David S. Miller  <davem@davemloft.net>
5823             Ian Lance Taylor  <iant@google.com>
5824
5825         * options.h (General_options): Add entries for '-Y' and
5826         '-relax'.
5827         * options.cc (General_options:finalize): If -Y was used, add those
5828         entries to the library path instead of the default "/lib" and
5829         "/usr/lib".
5830
5831 2008-04-11  David S. Miller  <davem@davemloft.net>
5832
5833         * testsuite/justsyms.t: Start at 0x100.
5834         * testsuite/justsyms_1.cc: Adjust justsyms_string assertion.
5835         * testsuite/script_test_2b.cc (script_test_string_b): Make 8 bytes
5836         long.
5837         * testsuite/script_test_2.cc: Adjust string and section length
5838         checks.
5839
5840 2008-04-09  Ian Lance Taylor  <iant@google.com>
5841
5842         PR gold/5996
5843         * script-sections.cc (Sections_element::allocate_to_segment): Add
5844         orphan parameter.
5845         (Output_section_definition::allocate_to_segment): Likewise.
5846         (Orphan_output_section::allocate_to_segment): Likewise.
5847         (Script_sections::attach_sections_using_phdrs_clause): Don't
5848         propagate non-PT_LOAD segments to orphan sections.
5849         * testsuite/Makefile.am (script_test_3.stdout): Generate using
5850         readelf rather than objdump.
5851         * testsuite/script_test_3.sh: Adjust accordingly.  Test that
5852         .interp section and PT_INTERP segment are the same size.
5853         * testsuite/Makefile.in: Rebuild.
5854
5855         * symtab.cc (Symbol_table::add_from_dynobj): Only look for weak
5856         aliases for symbols defined in the same object.
5857         * testsuite/Makefile.am (check_PROGRAMS): Add weak_alias_test.
5858         (weak_alias_test_SOURCES): New variable.
5859         (weak_alias_test_DEPENDENCIES): New variable.
5860         (weak_alias_test_LDFLAGS): New variable.
5861         (weak_alias_test_LDADD): New variable.
5862         (weak_alias_test_1_pic.o, weak_alias_test_1.so): New targets.
5863         (weak_alias_test_2_pic.o, weak_alias_test_2.so): New targets.
5864         (weak_alias_test_3.o): New target.
5865         (weak_alias_test_4_pic.o, weak_alias_test_4.so): New targets.
5866         * testsuite/weak_alias_test_main.cc: New file.
5867         * testsuite/weak_alias_test_1.cc: New file.
5868         * testsuite/weak_alias_test_2.cc: New file.
5869         * testsuite/weak_alias_test_3.cc: New file.
5870
5871 2008-04-08  Ian Lance Taylor  <iant@google.com>
5872
5873         * options.h (class General_options): Add --noinhibit-exec option.
5874         * main.cc (main): Check --noinhibit-exec.
5875
5876         * options.h (class General_options): Define --wrap as a special
5877         option.  Add wrap_symbols_ field.
5878         (General_options::any_wrap_symbols): New function.
5879         (General_options::is_wrap_symbol): New function.
5880         * options.cc (General_options::parse_wrap): New function.
5881         (General_options::General_options): Initialize wrap_symbols_.
5882         * symtab.cc (Symbol_table::wrap_symbol): New function.
5883         (Symbol_table::add_from_object): Handle --wrap.
5884         * symtab.h (class Symbol_table): Declare wrap_symbol.
5885         * target.h (Target::wrap_char): New function.
5886         (Target::Target_info): Add wrap_char field.
5887         * i386.cc (Target_i386::i386_info): Initialize wrap_char.
5888         * x86_64.cc (Target_x86_64::x86_64_info): Likewise.
5889         * testsuite/testfile.cc (Target_test::test_target_info):
5890         Likewise.
5891
5892         * errors.cc (Errors::undefined_symbol): Mention symbol version if
5893         there is one.
5894
5895         * layout.h (class Layout): Add added_eh_frame_data_ field.
5896         * layout.cc (Layout::Layout): Initialize new field.
5897         (Layout::layout_eh_frame): Don't add eh_frame_data_ to .eh_frame
5898         output section until we find a section we merged successfully.
5899         * object.cc (Sized_relobj::check_eh_frame_flags): Don't require
5900         that the size be non-zero.
5901
5902         * merge.cc (Object_merge_map::get_output_offset): Remove inline
5903         qualifier.
5904
5905 2008-04-08  Craig Silverstein  <csilvers@google.com>
5906
5907         * configure.ac: Export new conditional variable HAVE_ZLIB.
5908         * testsuite/Makefile.am (flagstest_o_specialfile): Condition
5909         on HAVE_ZLIB.
5910         (flagstest_o_specialfile_and_compress_debug_sections): Likewise.
5911         * configure, Makefile.in, testsuite/Makefile.in: Rebuild.
5912
5913 2008-04-07  Ian Lance Taylor  <iant@google.com>
5914
5915         * version.cc (version_string): Set to "1.5".
5916
5917         * x86_64.cc (Target_x86_64::Scan): Change from struct to class.
5918         Add issued_non_pic_error_ field.  Declare check_non_pic.
5919         (Target_x86_64::Scan::check_non_pic): New function.
5920         (Target_x86_64::Scan::local): Call check_non_pic as appropriate.
5921         (Target_x86_64::Scan::global): Likewise.
5922
5923         * output.cc (Output_reloc<SHT_REL>::local_section_offset): Add
5924         addend parameter.  Change caller.  Handle merge sections.
5925         (Output_reloc<SHT_REL>::symbol_value): Change parameter type from
5926         Address to Addend.  Don't add in the result of
5927         local_section_offset, pass down the addend and use the returned
5928         value.
5929         * output.h (class Output_reloc<SHT_REL>): Add Addend typedef.
5930         Update declarations of local_section_offset and symbol_value.
5931         * testsuite/two_file_test_1.cc (t18): New function.
5932         * testsuite/two_file_test_2.cc (f18): New function.
5933         * testsuite/two_file_test_main.cc (main): Call t18.
5934         * testsuite/two_file_test.h (t18, f18): Declare.
5935
5936         * configure.ac: Don't test for objdump, c++filt, or readelf.
5937         * testsuite/Makefile.am: Remove READELF and OBJDUMP_AND_CPPFILT
5938         conditionals.
5939         (TEST_READELF): New variable.
5940         (TEST_OBJDUMP, TEST_CXXFILT, TEST_STRIP): New variables.
5941         (check_PROGRAMS): Add two_file_strip_test.
5942         (two_file_strip_test): New target.
5943         (check_PROGRAMS): Add two_file_same_shared_strip_test.
5944         (two_file_same_shared_strip_test_SOURCES): New variable.
5945         (two_file_same_shared_strip_test_DEPENDENCIES): New variable.
5946         (two_file_same_shared_strip_test_LDFLAGS): New variable.
5947         (two_file_same_shared_strip_test_LDADD): New variable.
5948         (two_file_shared_strip.so): New target.
5949         (ver_test_2.syms, ver_test_4.syms): Use TEST_READELF.
5950         (ver_test_5.syms, ver_test_7.syms): Likewise.
5951         (ver_matching_test.stdout): Use TEST_OBJDUMP and TEST_CXXFILT.
5952         (strip_test_3.stdout): Use TEST_OBJDUMP.
5953         * configure, Makefile.in, testsuite/Makefile.in: Rebuild.
5954
5955 2008-04-04  Cary Coutant  <ccoutant@google.com>
5956
5957         * symtab.h (Symbol::is_weak_undefined): New function.
5958         (Symbol::is_strong_undefined): New function.
5959         (Symbol::is_absolute): New function.
5960         (Symbol::needs_plt_entry): Exclude weak undefined symbols.
5961         (Symbol::needs_dynamic_reloc): Exclude weak undefined and
5962         absolute symbols.
5963         * testsuite/Makefile.am (check_PROGRAMS): Add weak_undef_test.
5964         (weak_undef_test): New target.
5965         * testsuite/Makefile.in: Rebuild.
5966         * testsuite/weak_undef_file1.cc: New file.
5967         * testsuite/weak_undef_file2.cc: New file.
5968         * testsuite/weak_undef_test.cc: New file.
5969
5970 2008-04-03  Craig Silverstein  <csilvers@google.com>
5971
5972         * compressed_output.h (class Output_compressed_section): Use
5973         unsigned buffer.
5974         * compressed_output.cc (zlib_compress): Use unsigned buffers,
5975         add zlib header.
5976         (zlib_compressed_suffix): Removed.
5977         (Output_compressed_section::set_final_data_size): Use unsigned
5978         buffers.
5979         * testsuite/Makefile.am (flagstest_compress_debug_sections):
5980         Fix linker invocation.
5981         (flagstest_o_specialfile_and_compress_debug_sections):
5982         Likewise.
5983         * testsuite/Makefile.in: Regenerated.
5984
5985 2008-04-02  David S. Miller  <davem@davemloft.net>
5986
5987         *  dwarf_reader.cc (Sized_dwarf_line_info::read_header_prolog,
5988         Sized_dwarf_line_info::process_one_opcode): Use Swap_unaligned.
5989
5990 2008-04-02  Craig Silverstein  <csilvers@google.com>
5991
5992         * TODO: New file.
5993
5994 2008-04-02  Ian Lance Taylor  <iant@google.com>
5995
5996         * fileread.cc (File_read::find_view): Add byteshift and vshifted
5997         parameters.  Update for new key type to views_.  Change all
5998         callers.
5999         (File_read::read): Adjust for byteshift in returned view.
6000         (File_read::add_view): New function, broken out of
6001         find_and_make_view.
6002         (File_read::make_view): New function, broken out of
6003         find_and_make_view.
6004         (File_read::find_or_make_view): Add offset and aligned
6005         parameters.  Rewrite accordingly.  Change all callers.
6006         (File_read::get_view): Add offset and aligned parameters.  Adjust
6007         for byteshift in return value.
6008         (File_read::get_lasting_view): Likewise.
6009         * fileread.h (class File_read): Update declarations.
6010         (class File_read::View): Add byteshift_ field.  Add byteshift to
6011         constructor.  Add byteshift method.
6012         * archive.h (Archive::clear_uncached_views): New function.
6013         (Archive::get_view): Add aligned parameter.  Change all callers.
6014         * object.h (Object::get_view): Add aligned parameter.  Change all
6015         callers.
6016         (Object::get_lasting_view): Likewise.
6017
6018         * fileread.cc (File_read::release): Don't call clear_views if
6019         there are multiple objects.
6020         * fileread.h (File_read::clear_uncached_views): New function.
6021         * archive.cc (Add_archive_symbols::run): Call clear_uncached_views
6022         on the archive.
6023
6024 2008-03-31  Cary Coutant  <ccoutant@google.com>
6025
6026         Add thin archive support.
6027         * archive.cc (Archive::armagt): New const.
6028         (Archive::setup): Remove task parameter and calls to unlock.
6029         (Archive::unlock_nested_archives): New function.
6030         (Archive::read_header): Add nested_off parameter. Change
6031         all callers.
6032         (Archive::interpret_header): Likewise.
6033         (Archive::include_all_members): Change to handle thin
6034         archives.
6035         (Archive::include_member): Likewise.
6036         * archive.h (Archive::Archive): Add new parameters and
6037         initializers.
6038         (Archive::armagt): New const.
6039         (Archive::setup): Remove task parameter.
6040         (Archive::unlock_nested_archives): New function.
6041         (Archive::read_header): Add nested_off parameter.
6042         (Archive::interpret_header): Likewise.
6043         (Archive::Nested_archive_table): New typedef.
6044         (Archive::is_thin_archive_): New field.
6045         (Archive::nested_archives_): New field.
6046         (Archive::options_): New field.
6047         (Archive::dirpath_): New field.
6048         (Archive::task_): New field.
6049         * readsyms.cc (Read_symbols::do_read_symbols): Add check
6050         for thin archives.  Pass additional parameters to
6051         Archive::Archive.  Unlock the archive file after calling
6052         Archive::setup.
6053
6054 2008-03-29  Ian Lance Taylor  <iant@google.com>
6055
6056         * symtab.cc (Symbol_table::do_define_as_constant): Don't force a
6057         version symbol to be local.
6058         * testsuite/ver_test_4.sh: New file.
6059         * testsuite/Makefile.am (check_SCRIPTS): Add ver_test_4.sh.
6060         (check_DATA): Add ver_test_4.syms.
6061         (ver_test_4.syms): New target.
6062         * testsuite/Makefile.in: Rebuild.
6063
6064         * output.cc
6065         (Output_section::Input_section_sort_entry::has_priority): New
6066         function.
6067         (Output_section::Input_section_sort_entry::match_file_name): New
6068         function.
6069         (Output_section::Input_section_sort_entry::match_section_name):
6070         Remove.
6071         (Output_section::Input_section_sort_entry::match_section_name_prefix):
6072         Remove.
6073         (Output_section::Input_section_sort_entry::match_section_file):
6074         Remove.
6075         (Output_section::Input_section_sort_compare::operator()): Rewrite
6076         using new Input_section_sort_entry functions.  Sort crtbegin and
6077         crtend first.  Sort sections with no priority before sections with
6078         a priority.
6079         * testsuite/initpri1.c (d3): Check j != 4.
6080         (cd5): New constructor/destructor function.
6081         (main): Check j != 2.
6082
6083         * symtab.cc (Symbol_table::add_from_object): If we don't use the
6084         new symbol when resolving, don't call set_is_default.
6085         * testsuite/ver_test_7.cc: New file.
6086         * testsuite/ver_test_7.sh: New file.
6087         * testsuite/Makefile.am (ver_test_7.so): New target.
6088         (ver_test_7.o): New target.
6089         (check_SCRIPTS): Add ver_test_7.sh.
6090         (check_DATA): Add ver_test_7.syms.
6091         (ver_test_7.syms): New target.
6092
6093 2008-03-28  Ian Lance Taylor  <iant@google.com>
6094
6095         * layout.cc (Layout::layout): If we see an input section with a
6096         name that needs sorting, set the must_sort flag for the output
6097         section.
6098         (Layout::make_output_section): If the name of the output section
6099         indicates that it might require sorting, set the may_sort flag.
6100         * output.h (Output_section::may_sort_attached_input_sections): New
6101         function.
6102         (Output_section::set_may_sort_attached_input_sections): New
6103         function.
6104         (Output_section::must_sort_attached_input_sections): New
6105         function.
6106         (Output_section::set_must_sort_attached_input_sections): New
6107         function.
6108         (class Output_section): Declare Input_section_sort_entry.  Define
6109         Input_section_sort_compare.  Declare
6110         sort_attached_input_sections.  Add new fields:
6111         may_sort_attached_input_sections_,
6112         must_sort_attached_input_sections_,
6113         attached_input_sections_are_sorted_.
6114         * output.cc (Output_section::Output_section): Initialize new
6115         fields.
6116         (Output_section::add_input_section): Add an entry to
6117         input_sections_ if may_sort or must_sort are true.
6118         (Output_section::set_final_data_size): Call
6119         sort_attached_input_sections if necessary.
6120         (Output_section::Input_section_sort_entry): Define new class.
6121         (Output_section::Input_section_sort_compare::operator()): New
6122         function.
6123         (Output_section::sort_attached_input_sections): New function.
6124         * configure.ac: Check whether the compiler supports constructor
6125         priorities.  Define a CONSTRUCTOR_PRIORITY automake conditional.
6126         * testsuite/initpri1.c: New file.
6127         * testsuite/Makefile.am (check_PROGRAMS): Add initpri1 if
6128         CONSTRUCTOR_PRIORITY.
6129         (initpri1_SOURCES, initpri1_DEPENDENCIES): New variables.
6130         (initpri1_LDFLAGS): New variable.
6131         * configure, Makefile.in, testsuite/Makefile.in: Rebuild.
6132
6133 2008-03-27  Ian Lance Taylor  <iant@google.com>
6134
6135         * common.cc (Sort_commons::operator): Correct sorting algorithm.
6136         * testsuite/common_test_1.c: New file.
6137         * testsuite/Makefile.am (check_PROGRAMS): Add common_test_1.
6138         (common_test_1_SOURCES): New variable.
6139         (common_test_1_DEPENDENCIES): New variable.
6140         (common_test_1_LDFLAGS): New variable.
6141
6142         * symtab.cc (Symbol_table::add_from_object): Handle saw_undefined_
6143         and commons_ correctly when NAME/VERSION does not override
6144         NAME/NULL.
6145         * testsuite/ver_test_6.c: New file.
6146         * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_6
6147         (ver_test_6_SOURCES, ver_test_6_DEPENDENCIES): New variables.
6148         (ver_test_6_LDFLAGS, ver_test_6_LDADD): New variables.
6149
6150 2008-03-26  Ian Lance Taylor  <iant@google.com>
6151
6152         * symtab.cc (Symbol_table::add_from_relobj): Don't set the version
6153         of an undefined symbol from a version script.
6154         * testsuite/Makefile.am (ver_test_5.so): New target.
6155         (ver_test_5.o): New target.
6156         (check_SCRIPTS): Add ver_test_5.sh.
6157         (check_DATA): Add ver_test_5.syms.
6158         (ver_test_5.syms): New target.
6159         * testsuite/ver_test_5.cc: New file.
6160         * testsuite/ver_test_5.script: New file.
6161         * testsuite/ver_test_5.sh: New file.
6162         * Makefile.in, testsuite/Makefile.in: Rebuild.
6163
6164         PR gold/5986
6165         Fix problems building gold with gcc 4.3.0.
6166         * gold.h (TEMPLATE_ATTRIBUTE_PRINTF_4): Define.
6167         (gold_error_at_location, gold_warning_at_location): Use it.
6168         * configure.ac: Check whether we can compile and use a template
6169         function with a printf attribute.
6170         * x86_64.cc (Target_x86_64::do_code_fill): Swap out a 32-bit value
6171         when jumping over bytes.
6172         * object.cc: Instantiate Object::read_section_data.
6173         * debug.h: Include <cstring>
6174         * dwarf_reader.cc: Include <algorithm>
6175         * main.cc: Include <cstring>.
6176         * options.cc: Include <cstring>.
6177         * output.cc: Include <cstring>.
6178         * script.cc: Include <cstring>.
6179         * script.h: Include <string>.
6180         * symtab.cc: Include <cstring> and <algorithm>.
6181         * target-select.cc: Include <cstring>.
6182         * version.cc: Include <string>.
6183         * testsuite/testmain.cc: Include <cstdlib>.
6184         * configure, config.in: Rebuild.
6185
6186 2008-03-25  Ian Lance Taylor  <iant@google.com>
6187
6188         * options.cc: Include "../bfd/bfdver.h".
6189         (options::help): Print bug reporting address.
6190
6191         * version.cc (print_version): Adjust output for current value of
6192         BFD_VERSION_STRING.
6193
6194         * NEWS: New file.
6195
6196         * options.cc (options::help): Print list of supported targets.
6197         * target-select.h: Include <vector>.
6198         (class Target_selector): Make machine_, size_, and is_big_endian_
6199         fields const.  Add bfd_name_ and instantiated_target_ fields.
6200         (Target_selector::Target_selector): Add bfd_name parameter.
6201         (Target_selector::recognize): Make non-virtual, call
6202         do_recognize.
6203         (Target_selector::recognize_by_name): Make non-virtual, call
6204         do_recognize_by_name.
6205         (Target_selector::supported_names): New function.
6206         (Target_selector::bfd_name): New function.
6207         (Target_selector::do_instantiate_target): New pure virtual
6208         function.
6209         (Target_selector::do_recognize): New virtual function.
6210         (Target_selector::do_recognize_by_name): New virtual function.
6211         (Target_selector::instantiate_target): New private function.
6212         (supported_target_names): Declare.
6213         * target-select.cc (Target_selector::Target_selector): Update for
6214         new parameter and fields.
6215         (select_target_by_name): Check that the name matches before
6216         calling recognize_by_name.
6217         (supported_target_names): New function.
6218         * i386.cc (class Target_selector_i386): Update Target_selector
6219         constructor call.  Remove recognize and recognize_by_name.  Add
6220         do_instantiate_target.
6221         * x86_64.cc (class Target_selector_x86_64): Likewise.
6222         * testsuite/testfile.cc (class Target_selector_test): Update for
6223         changes to Target_selector.
6224
6225         * README: Rewrite, with some notes on unsupported features.
6226
6227 2008-03-24  Cary Coutant  <ccoutant@google.com>
6228
6229         * i386.cc (Target_i386::Got_type): New enum declaration.
6230         (Target_i386::Scan::local): Updated callers of Output_data_got
6231         member functions.
6232         (Target_i386::Scan::global): Likewise.
6233         (Target_i386::Relocate::relocate): Likewise.
6234         (Target_i386::Relocate::relocate_tls): Likewise.
6235         * object.h (Got_offset_list): New class.
6236         (Sized_relobj::local_has_got_offset): Added got_type parameter.
6237         (Sized_relobj::local_got_offset): Likewise.
6238         (Sized_relobj::set_local_got_offset): Likewise.
6239         (Sized_relobj::local_has_tls_got_offset): Removed.
6240         (Sized_relobj::local_tls_got_offset): Removed.
6241         (Sized_relobj::set_local_tls_got_offset): Removed.
6242         (Sized_relobj::Local_got_offsets): Changed to store a list of offsets.
6243         * output.cc (Output_data_got::add_global): Added got_type parameter.
6244         (Output_data_got::add_global_with_rel): Likewise.
6245         (Output_data_got::add_global_with_rela): Likewise.
6246         (Output_data_got::add_global_pair_with_rel): New function.
6247         (Output_data_got::add_global_pair_with_rela): New function.
6248         (Output_data_got::add_local): Added got_type parameter.
6249         (Output_data_got::add_local_with_rel): Likewise.
6250         (Output_data_got::add_local_with_rela): Likewise.
6251         (Output_data_got::add_local_pair_with_rel): New function.
6252         (Output_data_got::add_local_pair_with_rela): New function.
6253         (Output_data_got::add_global_tls): Removed.
6254         (Output_data_got::add_global_tls_with_rel): Removed.
6255         (Output_data_got::add_global_tls_with_rela): Removed.
6256         (Output_data_got::add_local_tls): Removed.
6257         (Output_data_got::add_local_tls_with_rel): Removed.
6258         (Output_data_got::add_local_tls_with_rela): Removed.
6259         * output.h (Output_data_got::add_global): Added got_type parameter.
6260         (Output_data_got::add_global_with_rel): Likewise.
6261         (Output_data_got::add_global_with_rela): Likewise.
6262         (Output_data_got::add_global_pair_with_rel): New function.
6263         (Output_data_got::add_global_pair_with_rela): New function.
6264         (Output_data_got::add_local): Added got_type parameter.
6265         (Output_data_got::add_local_with_rel): Likewise.
6266         (Output_data_got::add_local_with_rela): Likewise.
6267         (Output_data_got::add_local_pair_with_rel): New function.
6268         (Output_data_got::add_local_pair_with_rela): New function.
6269         (Output_data_got::add_global_tls): Removed.
6270         (Output_data_got::add_global_tls_with_rel): Removed.
6271         (Output_data_got::add_global_tls_with_rela): Removed.
6272         (Output_data_got::add_local_tls): Removed.
6273         (Output_data_got::add_local_tls_with_rel): Removed.
6274         (Output_data_got::add_local_tls_with_rela): Removed.
6275         * resolve.cc (Symbol::override_base_with_special): Removed
6276         reference to has_got_offset_ field.
6277         * symtab.cc (Symbol::init_fields): Replaced initialization
6278         of got_offset_ with got_offsets_.  Removed initialization
6279         of has_got_offset_
6280         * symtab.h (Symbol::has_got_offset): Aded got_type parameter.
6281         (Symbol::got_offset): Likewise.
6282         (Symbol::set_got_offset): Likewise.
6283         (Symbol::has_tls_got_offset): Removed.
6284         (Symbol::tls_got_offset): Removed.
6285         (Symbol::set_tls_got_offset): Removed.
6286         (Symbol::got_offset_): Removed.
6287         (Symbol::tls_mod_got_offset_): Removed.
6288         (Symbol::tls_pair_got_offset_): Removed.
6289         (Symbol::got_offsets_): New field.
6290         (Symbol::has_got_offset): Removed.
6291         (Symbol::has_tls_mod_got_offset): Removed.
6292         (Symbol::has_tls_pair_got_offset): Removed.
6293         * x86_64.cc (Target_x86_64::Got_type): New enum declaration.
6294         (Target_x86_64::Scan::local): Updated callers of Output_data_got
6295         member functions.
6296         (Target_x86_64::Scan::global): Likewise.
6297         (Target_x86_64::Relocate::relocate): Likewise.
6298         (Target_x86_64::Relocate::relocate_tls): Likewise.
6299
6300 2008-03-25  Ben Elliston  <bje@au.ibm.com>
6301
6302         * yyscript.y: Fix spelling error in comment.
6303
6304 2008-03-24  Ian Lance Taylor  <iant@google.com>
6305
6306         * options.h (class General_options): Define build_id option.
6307         * layout.h (class Layout): Declare write_build_id, create_note,
6308         create_build_id.  Add build_id_note_ member.
6309         * layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
6310         "libiberty.h", "md5.h", "sha1.h".
6311         (Layout::Layout): Initialize eh_frame_data_,
6312         eh_frame_hdr_section_, and build_id_note_.
6313         (Layout::finalize): Call create_build_id.
6314         (Layout::create_note): New function, broken out of
6315         Layout::create_gold_note.
6316         (Layout::create_gold_note): Call create_note.
6317         (Layout::create_build_id): New function.
6318         (Layout::write_build_id): New function.
6319         (Close_task_runner::run): Call write_build_id.
6320
6321         * x86_64.cc: Correct license to GPLv3.
6322
6323 2008-03-23  Ian Lance Taylor  <iant@google.com>
6324
6325         * options.cc: Include "demangle.h".
6326         (parse_optional_string): New function.
6327         (parse_long_option): Handle takes_optional_argument.
6328         (parse_short_option): Update dash_z initializer.  Handle
6329         takes_optional_argument.
6330         (General_options::General_options): Initialize do_demangle_.
6331         (General_options::finalize): Set do_demangle_.  Handle demangling
6332         style.
6333         * options.h (parse_optional_string): Declare.
6334         (struct One_option): Add optional_arg field.  Update constructor.
6335         Update call constructor calls.  Add takes_optional_argument
6336         function.
6337         (DEFINE_var): Add optional_arg__ parameter.  Change all callers.
6338         (DEFINE_optional_string): Define.
6339         (General_options::demangle): Change from DEFINE_bool to
6340         DEFINE_optional_string.
6341         (General_options::no_demangle): New function.
6342         (General_options::do_demangle): New function.
6343         (General_options::set_do_demangle): New function.
6344         (General_options::execstack_status_): Move definition to end of
6345         class definition.
6346         (General_options::static_): Likewise.
6347         (General_options::do_demangle_): New field.
6348         * object.cc (big_endian>::get_symbol_location_info): Call
6349         Options::do_demangle, not Options::demangle.
6350         * symtab.cc (demangle): Likewise.
6351
6352 2008-03-22  Ian Lance Taylor  <iant@google.com>
6353
6354         * gold.h: Include <cstddef> and <sys/types.h>
6355         * options.h: Include <cstring>.
6356
6357 2008-03-21  Ian Lance Taylor  <iant@google.com>
6358
6359         * Added source code to GNU binutils.