9dd8787befde475512ad8a0b7cf9bf74ad854902
[external/binutils.git] / gold / ChangeLog
1 2009-03-18  Ian Lance Taylor  <iant@google.com>
2
3         * script-sections.h: Include <list>.
4         (class Script_sections): Change Sections_elements from std::vector
5         to std::list.  Typedef public Elements_iterator.  Add
6         orphan_section_placement_, data_segment_align_start_, and
7         saw_data_segment_align_ fields.  Remove data_segment_align_index_
8         field.
9         * script-sections.cc (class Orphan_section_placement): New class.
10         (class Sections_element): Add virtual functions is_relro and
11         orphan_section_init.  Remove virtual function place_orphan_here.
12         (class Output_section_definition): Add is_relro and
13         orphan_section_init.  Remove place_orphan_here.
14         (class Orphan_output_section): Likewise.
15         (Script_sections::Script_sections): Update for field changes.
16         (Script_sections::data_segment_align): Set saw_data_segment_align_
17         and data_segment_align_start_, not data_segment_align_index.
18         (Script_sections::data_segment_relro_end): Check
19         saw_data_segment_align_.  Use data_segment_align_start_ rather
20         than data_segment_align_index_.
21         (Script_sections::place_orphan): Rewrite to use
22         Orphan_section_placement.
23
24 2009-03-17  Ian Lance Taylor  <iant@google.com>
25
26         * archive.cc (Archive::add_symbols): Check for a version attached
27         to the symbol name in the archive map.
28         * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_11.
29         (ver_test_11_SOURCES, ver_test_11_DEPENDENCIES): Define.
30         (ver_test_11_LDFLAGS, ver_test_11_LDADD): Define.
31         (ver_test_11.a): New target.
32         * testsuite/Makefile.in: Rebuild.
33
34         * configure.ac: Check for chsize and posix_fallocate.  Replace
35         ftruncate.
36         * ftruncate.c: New file, from gnulib.
37         * output.cc (posix_fallocate): Define dummy version if not
38         HAVE_POSIX_FALLOCATE.
39         (Output_file::map): Call posix_fallocate rather than lseek and
40         write.
41         * gold.h (ftruncate): Declare if not HAVE_FTRUNCATE.
42         * configure, Makefile.in, config.in: Rebuild.
43
44 2009-03-17  Paul Pluzhnikov  <ppluzhnikov@google.com>
45         
46         * layout.h (Layout::create_note): Add section_name parameter.
47         * layout.cc (Layout::create_note): Likewise.
48         (Layout::create_build_id, Layout::create_gold_note): Fix callers.
49         
50 2009-03-17  Ian Lance Taylor  <iant@google.com>
51
52         * descriptors.cc: Include "options.h".
53         (FD_CLOEXEC, O_CLOEXEC): Define if not defined.
54         (Descriptors::open): Always use O_CLOEXEC when opening a new
55         descriptor.  If we have a plugin, and O_CLOEXEC was not defined,
56         then set FD_CLOEXEC.
57
58         * sparc.cc (class Target_sparc): Add has_got_section.
59         (Target_sparc::Scan::global): If we see _GLOBAL_OFFSET_TABLE_,
60         make sure we have a GOT section.
61
62         * sparc.cc (optimize_tls_reloc): Recognize R_SPARC_TLS_IE_ADD.
63         (Target_sparc::Scan::local): Likewise.
64         (Target_sparc::Scan::global): Likewise.
65         (Target_sparc::Relocate::relocate): Likewise.
66         (Target_sparc::Relocate::relocate_tls): Likewise.
67
68         * symtab.cc (Symbol_table::define_default_version): New function,
69         broken out of add_from_object.
70         (Symbol_table::add_from_object): Call define_default_version.
71         (Symbol_table::define_special_symbol): Add resolve_oldsym
72         parameter.  Change all callers.  If the version for a symbol comes
73         from a version script, resolve it with the symbol with the same
74         name with no version.  Also add the symbol without a version if
75         appropriate.
76         (do_define_in_output_data): If resolving with oldsym, don't delete
77         sym.
78         (do_define_in_output_segment): Likewise.
79         (do_define_as_constant): Likewise.
80         * symtab.h (class Symbol_table): Update declarations.
81
82 2009-03-13  Ian Lance Taylor  <iant@google.com>
83
84         * readsyms.cc (Read_symbols::incompatible_warning): New function.
85         (Read_symbols::requeue): New function.
86         (Read_symbols::do_read_symbols): If make_elf_object fails because
87         the target type is not configured, and the file was searched for,
88         issue a warning and retry with the next directory.
89         (Add_symbols::run): If the file has an incompatible format, and
90         it was searched for, requeue the Read_symbols task.  On error,
91         release the object.
92         * readsyms.h (class Read_symbols): Add dirindex_ field.  Add
93         dirindex parameter to constructor.  Change all callers.  Declare
94         incompatible_warning and requeue.
95         (class Add_symbols): Add dirpath_, dirindex_, mapfile_,
96         input_argument_ and input_group_ fields.  Add them to
97         constructor.  Change all callers.
98         (class Read_script): Add dirindex_ field.  Add it to constructor.
99         Change all callers.
100         * archive.cc (Archive::setup): Remove input_objects parameter.
101         Change all callers.
102         (Archive::get_file_and_offset): Likewise.
103         (Archive::read_all_symbols): Likewise.
104         (Archive::read_symbols): Likewise.
105         (Archive::get_elf_object_for_member): Remove input_objects
106         parameter.  Add punconfigured parameter.  Change all callers.
107         (Archive::add_symbols): Change return type to bool.  Check return
108         value of include_member.
109         (Archive::include_all_members): Likewise.
110         (Archive::include_member): Change return type to bool.  Return
111         false if first included object has incompatible target.  Set
112         included_member_ field.
113         (Add_archive_symbols::run): If add_symbols returns false, requeue
114         Read_symbols task.
115         * archive.h (class Archive): Add included_member_ field.
116         Initialize it in constructor.  Add input_file and searched_for
117         methods.  Update declarations.
118         (class Add_archive_symbols): Add dirpath_, dirindex_, and
119         input_argument_ fields.  Add them to constructor.  Change all
120         callers.
121         * script.cc: Include "target-select.h".
122         (class Parser_closure): Add skip_on_incompatible_target_ and
123         found_incompatible_target_ fields.  Add
124         skip_on_incompatible_target parameter to constructor.  Change all
125         callers.  Add methods skip_on_incompatible_target,
126         clear_skip_on_incompatible_target, found_incompatible_target, and
127         set_found_incompatible_target.
128         (read_input_script): Add dirindex parameter.  Change all callers.
129         If parser finds an incompatible target, requeue Read_symbols
130         task.
131         (script_set_symbol): Clear skip_on_incompatible_target in
132         closure.
133         (script_add_assertion, script_parse_option): Likewise.
134         (script_start_sections, script_add_phdr): Likewise.
135         (script_check_output_format): New function.
136         * script.h (read_input_script): Update declaration.
137         * script-c.h (script_check_output_format): Declare.
138         * yyscript.y (file_cmd): Handle OUTPUT_FORMAT.
139         (ignore_cmd): Remove OUTPUT_FORMAT.
140         * fileread.cc (Input_file::Input_file): Add explicit this.
141         (Input_file::will_search_for): New function.
142         (Input_file::open): Add pindex parameter.  Change all callers.
143         * fileread.h (class Input_file): Add input_file_argument method.
144         Declare will_search_for.  Update declarations.
145         * object.cc (make_elf_object): Add punconfigured parameter.
146         Change all callers.
147         * object.h (class Object): Make input_file public.  Add
148         searched_for method.
149         (make_elf_object): Update declaration.
150         * dirsearch.cc (Dirsearch::find): Add pindex parameter.  Use it to
151         restart search.
152         * dirsearch.h (class Dirsearch): Update declaration.
153         * options.h (class General_options): Add --warn-search-mismatch.
154         * parameters.cc (Parameters::is_compatible_target): New function.
155         * parameters.h (class Parameters): Declare is_compatible_target.
156         * workqueue.cc (Workqueue::add_blocker): New function.
157         * workqueue.h (class Workqueue): Declare add_blocker.
158
159         * fileread.cc (Input_file::open): Remove options parameter.
160         Change all callers.
161         (Input_file::open_binary): Likewise.
162         * script.cc (read_input_script): Likewise.
163         * readsyms.h (class Read_symbols): Remove options_ field.  Remove
164         options parameter from constructor.  Change all callers.
165         (class Read_script): Likewise.
166         * fileread.h (class Input_file): Update declarations.
167         * script.h (read_input_script): Update declaration.
168
169 2009-03-10  Nick Clifton  <nickc@redhat.com>
170
171         * po/es.po: New Spanish translation.
172
173 2009-03-06  Cary Coutant  <ccoutant@google.com>
174
175         * options.cc (parse_short_option): Keep dash_z from registering itself.
176
177 2009-03-03  Ian Lance Taylor  <iant@google.com>
178
179         PR 9918
180         * target-reloc.h (relocate_section): Pass output_section to
181         relocate.
182         * i386.cc (Target_i386::should_apply_static_reloc): Add
183         output_section parameter.  Change all callers.
184         (Target_i386::Relocate::relocate): Add output_section parameter.
185         * x86_64.cc (Target_x86_64::Relocate::relocate): Likewise.
186         * sparc.cc (Target_sparc::Relocate::relocate): Likewise.
187         * powerpc.cc (Target_powerpc::Relocate::relocate): Likewise.
188         * testsuite/two_file_shared.sh: New script.
189         * testsuite/Makefile.am (check_SCRIPTS): Add two_file_shared.sh.
190         (check_DATA): Add two_file_shared.dbg.
191         (two_file_shared.dbg): New target.
192         * testsuite/Makefile.in: Rebuild.
193
194 2009-03-01  Ian Lance Taylor  <iant@google.com>
195
196         * configure.ac: Check for byteswap.h.
197         * configure: Rebuild.
198         * config.in: Rebuild.
199
200 2009-03-01  Mikolaj Zalewski  <mikolajz@google.com>
201
202         * layout.cc (Layout::find_or_add_kept_section): New function.
203         (Layout::add_comdat): Removed.
204         * layout.h (struct Kept_section): Move out of class Layout.
205         Remove trailing underscores from field names.  Add group_sections
206         field.  Rename group_ field to is_group.  Change all uses.
207         (class Layout): Declare find_or_add_kept_section, not add_comdat.
208         * object.cc (Sized_relobj::Sized_relobj): Don't initialize
209         comdat_groups_ field.
210         (Sized_relobj::include_section_group): Use
211         find_or_add_kept_section and Kept_section::group_sections.
212         (Sized_relobj::include_linkonce_section): Likewise.
213         * object.cc (class Sized_relobj): Don't define Comdat_group or
214         Comdat_group_table.  Remove find_comdat_group and
215         add_comdat_group.  Remove comdat_groups_ field.
216         * plugin.cc (include_comdat_group): Use
217         Layout::find_or_add_kept_section.
218
219 2009-02-28  Ian Lance Taylor  <iant@google.com>
220
221         * README: --gc-sections and map files are now supported.  Document
222         some build requirements.
223
224         PR 6992
225         * symtab.cc (Symbol_table::sized_write_section_symbol): In a
226         relocatable link set the value of the section symbol to zero.
227         * object.cc (Sized_relobj::do_finalize_local_symbols): In a
228         relocatable link don't include the section address in the local
229         symbol value.
230
231 2009-02-27  Ian Lance Taylor  <iant@google.com>
232
233         PR 6811
234         * options.h (class Search_directory): Add is_system_directory.
235         (class General_options): Declare is_in_system_directory.
236         * options.cc (get_relative_sysroot): Make static.
237         (get_default_sysroot): Make static.
238         (General_optoins::is_in_system_directory): New function.
239         * fileread.cc (Input_file::is_in_system_directory): New function.
240         * fileread.h (class Input_file): Declare is_in_system_directory.
241         * object.h (class Object): Add is_in_system_directory.
242         (class Input_objects): Remove system_library_directory_ field.
243         * object.cc (Input_objects::add_object): Don't set
244         system_library_directory_.
245         (input_objects::found_in_system_library_directory): Remove.
246         * symtab.cc (Symbol_table::write_globals): Remove input_objects
247         parameter.  Change all callers.
248         (Symbol_table::sized_write_globals): Likewise.
249         (Symbol_table::warn_about_undefined_dynobj_symbol): Likewise.
250         Call Object::is_in_system_directory.
251         * symtab.h (class Symbol_table): Update declarations.
252
253         PR 5990
254         * descriptors.h (Open_descriptor): Add is_on_stack field.
255         * descriptors.cc (Descriptors::open): If the descriptor is on the
256         top of the stack, remove it.  Initialize is_on_stack field.
257         (Descriptors::release): Only add pod to stack if it is not on the
258         stack already.
259         (Descriptors::close_some_descriptor): Clear stack_next and
260         is_on_stack fields.
261
262         PR 7091
263         * output.cc (Output_section::find_starting_output_address): Rename
264         from starting_output_address; add PADDR parameter; change return
265         type.
266         * output.h (class Output_section): Declare
267         find_starting_output_address instead of starting_output_address.
268         * object.cc (Sized_relobj::do_finalize_local_symbols): Handle a
269         section symbol for which we can't find a merge section.
270
271         PR 9836
272         * symtab.cc (Symbol_table::add_from_object): If the visibility is
273         hidden or internal, force the symbol to be local.
274         * resolve.cc (Symbol::override_visibility): Define.
275         (Symbol::override_base): Use override_visibility.
276         (Symbol_table::resolve): Likewise.
277         (Symbol::override_base_with_special): Likewise.
278         (Symbol_table::override_with_special): If the visibility is hidden
279         or internal, force the symbol to be local.
280         * symtab.h (class Symbol): Add set_visibility and
281         override_visibility.
282         * testsuite/ver_test_1.sh: New file.
283         * testsuite/Makefile.am (check_SCRIPTS): Add ver_test_1.sh.
284         (check_DATA): Add ver_test_1.syms.
285         (ver_test_1.syms): New target.
286         * testsuite/Makefile.in: Rebuild.
287
288 2009-02-25  Cary Coutant  <ccoutant@google.com>
289
290         * layout.cc (Layout::choose_output_section): Don't rename sections
291         when using a linker script that has a SECTIONS clause.
292         * Makefile.in: Regenerate.
293
294         * testsuite/Makefile.am (script_test_5.sh): New test case.
295         * testsuite/Makefile.in: Regenerate.
296         * testsuite/script_test_5.cc: New file.
297         * testsuite/script_test_5.sh: New file.
298         * testsuite/script_test_5.t: New file.
299
300 2009-02-13  Rafael Avila de Espindola  <espindola@google.com>
301
302         * archive.cc (Archive::include_member): Update calls to add_symbols.
303         * dynobj.cc (Sized_dynobj<size, big_endian>::make_version_map): Add
304         the Layout argument.
305         * dynobj.h (do_add_symbols): Add the Layout argument.
306         * object.cc (Sized_relobj<size, big_endian>::do_add_symbols): Add the
307         Layout argument.
308         * object.h (Object::add_symbols): Add the Layout argument.
309         (Object::do_add_symbols): Add the Layout argument.
310         (Sized_relobj::do_add_symbols): Add the Layout argument.
311         * plugin.cc (Sized_pluginobj<size, big_endian>::do_add_symbols):
312         Unify the two versions.
313         (Add_plugin_symbols): Remove.
314         * plugin.h (Pluginobj::add_symbols, Pluginobj::do_add_symbols): Remove.
315         (Sized_pluginobj::do_add_symbols): Unify the two versions.
316         (Add_plugin_symbols): Remove.
317         * readsyms.cc (Read_symbols::do_read_symbols): Update call to
318         Add_symbols. Use Add_symbols instead of Add_plugin_symbols.
319         (Add_symbols::run): Make it work with Pulginobj.
320
321 2009-02-06  Ian Lance Taylor  <iant@google.com>
322
323         * object.cc (Sized_relobj::do_layout): Make info message start
324         with lower case letter.
325
326 2009-02-06  Mikolaj Zalewski  <mikolajz@google.com>
327
328         * binary.cc: Fix file comment.
329
330         * options.h (enum Incremental_disposition): Define.
331         (class General_options): Add new options: --incremental,
332         --incremental_changed, --incremental_unchanged,
333         --incremental_unknown.  Add incremental_disposition_ and
334         implicit_incremental_ fields.
335         (General_options::incremental_disposition): New function.
336         (class Position_dependent_options): Add incremental_disposition
337         option.
338         (Position_dependent_options::copy_from_options): Set incremental
339         dispositions.
340         * options.cc (General_options::parse_incremental_changed): New
341         function.
342         (General_options::parse_incremental_unchanged): New function.
343         (General_options::parse_incremental_unknown): New function.
344         (General_options::General_options): Initialize new fields
345         incremental_disposition_ and implicit_incremental_.
346         (General_options::finalize): Check for uasge of --incremental-*
347         without --incremental.
348
349 2009-02-06  Chris Demetriou  <cgd@google.com>
350
351         * gold.h (gold_undefined_symbol): Change to take only a Symbol
352         pointer and to report location as the file name associated with
353         the symbol.
354         (gold_undefined_symbol_at_location): New function to replace the
355         old gold_undefined_symbol functionality.
356         * target-reloc.h (relocate_section): Update to use
357         gold_undefined_symbol_at_location.
358         * symtab.cc (Symbol_table::warn_about_undefined_dynobj_symbol):
359         Call gold_undefined_symbol function rather than gold_error.
360         * errors.h (Errors::undefined_symbol): Take location as a
361         string, rather than calculating it from a relocation.
362         * errors.cc (Errors::fatal): Print "fatal error:" before the
363         formatted message.
364         (Errors::error, Errors::error_at_location): Print "error: "
365         before the formatted message.
366         (Errors::undefined_symbol): Take location as a string, rather
367         than calculating it from a relocation.
368         (gold_undefined_symbol_at_location): New function akin to
369         old gold_undefined_symbol, calculates location from relocation.
370         (gold_undefined_symbol): Change to take only a Symbol pointer
371         and to report location as the file name associated with the symbol.
372         * testsuite/debug_msg.sh: Update for changed error messages.
373         * testsuite/undef_symbol.sh: Likewise.
374
375 2009-02-04  Duncan Sands  <baldrick@free.fr>
376
377         PR 9812
378         * reduced_debug_output.h
379         (Output_reduced_debug_abbrev_section::failed): Use format for
380         gold_warning.
381         (Output_reduced_debug_info_section::faild): Likewise.
382
383 2009-01-31  Mikolaj Zalewski  <mikolajz@google.com>
384
385         * script.cc (Lazy_demangler): New class.
386         (Version_script_info::get_symbol_version_helper): Demangle a
387         symbol only once.
388
389 2009-01-29  Cary Coutant  <ccoutant@google.com>
390
391         * i386.cc (Target_i386::Relocate::relocate): Recognize non-PIC calls
392         to __tls_get_addr.
393         * x86_64.cc (Target_x86_64::Relocate::relocate): Likewise.
394
395 2009-01-28  Ian Lance Taylor  <iant@google.com>
396
397         * version.cc (version_string): Bump to 1.9.
398
399         * gold.h: Include <cstring> and <stdint.h>.
400         * version.cc: Include <cstdio>.
401         * object.cc (Sized_relobj::do_layout): Initialize gc_sd to avoid a
402         warning.
403         * reduced_debug_output.cc (insert_into_vector): Rename from
404         Insert_into_vector; change all callers.  Use Swap_unaligned to
405         avoid aliasing issue; remove union since it is unnecessary.
406
407 2009-01-27  Sriraman Tallam  <tmsriram@google.com>
408
409         * Makefile.am (CCFILES): Add gc.cc.
410         (HFILES): Add gc.h.
411         * Makefile.in: Regenerate.
412         * gold.cc (Gc_runner): New class.
413         (queue_initial_tasks): Call garbage collection related tasks
414         when corresponding options are invoked.
415         (queue_middle_gc_tasks): New function.
416         (queue_middle_tasks): Reorder tasks to allow relocs to be read and
417         processed early before laying out sections during garbage collection.
418         * gold.h (queue_middle_gc_tasks): New function.
419         (is_prefix_of): Move from "layout.cc".
420         * i386.cc (Target_i386::gc_process_relocs): New function.
421         * layout.cc (is_prefix_of): Remove. Move to "gold.h"
422         * main.cc (main): Create object of class "Garbage_collection".
423         * object.cc (Relobj::copy_symbols_data): New function.
424         (Relobj::is_section_name_included): New function.
425         (Sized_relobj::do_layout): Allow this function to be called twice 
426         during garbage collection and defer layout of section during the 
427         first call.
428         * object.h (Relobj::get_symbols_data): New function.
429         (Relobj::is_section_name_included): New function.
430         (Relobj::copy_symbols_data): New function.
431         (Relobj::set_symbols_data): New function.
432         (Relobj::get_relocs_data): New function.
433         (Relobj::set_relocs_data): New function.
434         (Relobj::is_output_section_offset_invalid): New pure virtual function.
435         (Relobj::gc_process_relocs): New function.
436         (Relobj::do_gc_process_relocs): New pure virtual function.
437         (Relobj::sd_): New data member.
438         (Sized_relobj::is_output_section_offset_invalid): New function.
439         (Sized_relobj::do_gc_process_relocs): New function.
440         * options.h (General_options::gc_sections): Modify to not be a no-op.
441         (General_options::print_gc_sections): New option.
442         * plugin.cc (Plugin_finish::run): Remove function call to
443         Plugin_manager::layout_deferred_objects.  Move it to "gold.cc".
444         * powerpc.cc (Target_powerpc::gc_process_relocs): New function.
445         * reloc.cc (Read_relocs::run): Add task to process relocs and
446         determine unreferenced sections when doing garbage collection.
447         (Gc_process_relocs): New class.
448         (Sized_relobj::do_gc_process_relocs): New function.
449         (Sized_relobj::do_scan_relocs): Don't try to scan the relocs for
450         sections that are garbage collected.
451         * reloc.h (Gc_process_relocs): New class.
452         * sparc.cc (Target_sparc::gc_process_relocs): New function.
453         * symtab.cc (Symbol::should_add_dynsym_entry): Do not add entries for
454         symbols whose corresponding sections are garbage collected.
455         (Symbol_table::Symbol_table): Add new parameter for the garbage
456         collection object.
457         (Symbol_table::gc_mark_undef_symbols): New function.
458         (Symbol_table::gc_mark_symbol_for_shlib): New function.
459         (Symbol_table::gc_mark_dyn_syms): New function.
460         (Symbol_table::resolve): Do not treat symbols seen in dynamic objects
461         as garbage.
462         (Symbol_table::add_from_object): Likewise.
463         (Symbol_table::add_from_relobj): When building shared objects, do not
464         treat externally visible symbols as garbage.
465         (Symbol_table::sized_finalize_symbol): Do not check dynamic symbol
466         table information for static and relocatable links.
467         * symtab.h (Symbol_table::set_gc): New function.
468         (Symbol_table::gc): New function.
469         (Symbol_table::gc_mark_undef_symbols): New function.
470         (Symbol_table::gc_mark_symbol_for_shlib): New function.
471         (Symbol_table::gc_mark_dyn_syms): New function.
472         (Symbol_table::gc_): New data member.
473         * target.h (Sized_target::gc_process_relocs): New pure virtual 
474         function.
475         * x86_64.cc (Target_x86_64::gc_process_relocs): New function.
476         * testsuite/testfile.cc (Target_test::gc_process_relocs): New function.
477
478 2009-01-20  Chris Faylor <me.sourceware@sourceware.org>
479
480         * options.h (General_options::gc_sections): Define as a no-op for now.
481         (General_options::no_keep_memory): Ditto.
482         (General_options::Bshareable): Define.
483         * options.cc (General_options::finalize): Honor -Bshareable.
484
485 2009-01-20  Andreas Schwab  <schwab@suse.de>
486
487         * powerpc.cc (Powerpc_relocate_functions::rel16_ha): Don't try to
488         read the value in the contents, since we don't use it.  Use the
489         template endianness when writing.
490         (Relocate::relocate): Use it for R_PPC_REL16_HA.
491
492 2009-01-19  Andreas Schwab  <schwab@suse.de>
493
494         * configure.tgt (powerpc64-*): Fix targ_obj.
495
496 2009-01-15  Ian Lance Taylor  <iant@google.com>
497
498         * object.cc (Sized_relobj::write_local_symbols): Don't write out
499         local symbols when stripping all symbols.
500
501 2009-01-14  Cary Coutant  <ccoutant@google.com>
502
503         * output.cc (Output_reloc): Add explicit instantiations.
504
505 2009-01-14  Cary Coutant  <ccoutant@google.com>
506
507         * archive.cc (Archive::get_elf_object_for_member): Remove call
508         to File_read::claim_for_plugin.
509         * descriptors.cc (Descriptors::open): Remove reference to
510         is_claimed.
511         (Descriptors::claim_for_plugin): Remove.
512         * descriptors.h (Descriptors::claim_for_plugin): Remove.
513         (Descriptors::is_claimed): Remove.
514         (claim_descriptor_for_plugin): Remove.
515         * fileread.cc (File_read::claim_for_plugin): Remove.
516         * fileread.h (File_read::claim_for_plugin): Remove.
517         (File_read::descriptor): Reopen descriptor if necessary.
518         * plugin.cc  (Plugin::load): Add two new APIs to transfer vector.
519         (Plugin_manager::all_symbols_read): Add task parameter. Change
520         all callers.
521         (Plugin_manager::get_input_file): New function.
522         (Plugin_manager::release_input_file): New function.
523         (Pluginobj::Pluginobj): Add filesize parameter and initialize
524         corresponding data member.
525         (Sized_pluginobj::Sized_pluginobj): Add filesize parameter
526         and pass to base constructor. Change all callers.
527         (get_input_file, release_input_file): New functions.
528         (make_sized_plugin_object): Add filesize parameter. Change all callers.
529         * plugin.h (Plugin_manager::Plugin_manager): Initialize task_ member.
530         (Plugin_manager::all_symbols_read): Add task parameter.
531         (Plugin_manager::get_input_file): New function.
532         (Plugin_manager::release_input_file): New function.
533         (Plugin_manager::task_): New data member.
534         (Pluginobj::Pluginobj): Add filesize parameter.
535         (Pluginobj::filename): New function.
536         (Pluginobj::descriptor): New function.
537         (Pluginobj::filesize): New function.
538         (Pluginobj::filesize_): New data member.
539         (Sized_pluginobj::Sized_pluginobj): Add filesize parameter.
540         * readsyms.cc (Read_symbols::do_read_symbols): Remove call to
541         File_read::claim_for_plugin; use Object::unlock to unlock the file.
542
543         * testsuite/Makefile.am (plugin_test_4): New test case for plugins
544         with archive libraries.
545         * testsuite/Makefile.in: Regenerate.
546         * testsuite/plugin_test.c (struct sym_info): New type.
547         (get_input_file, release_input_file): New static variables.
548         (onload): Capture new transfer vector entries.
549         (claim_file_hook): Stop reading at end of file according to filesize.
550         Factor out parsing of readelf output into separate function.
551         (all_symbols_read_hook): Exercise get_input_file and release_input_file
552         APIs and get the source file name from the symbol table.  Convert
553         source file name to corresponding object file name.  Print info
554         message when adding new input files.
555         (parse_readelf_line): New function.
556         * testsuite/plugin_test_1.sh: Add checks for new info messages.
557         * testsuite/plugin_test_2.sh: Likewise.
558         * testsuite/plugin_test_3.sh: Likewise.
559         * testsuite/plugin_test_4.sh: New test case.
560
561 2009-01-07  Ian Lance Taylor  <iant@google.com>
562
563         * version.cc (version_string): Bump to 1.8.
564
565 2008-12-23  Cary Coutant  <ccoutant@google.com>
566
567         * gold.cc (gold_exit): Call plugin cleanup handlers on exit.
568         * plugin.cc (Plugin_manager::finish): Rename as
569         layout_deferred_objects.  Move cleanup to separate function.
570         (Plugin_manager::cleanup): New function.
571         (Plugin_finish::run): Call layout_deferred_objects and cleanup
572         separately.
573         * plugin.h (Plugin_manager::finish): Rename as
574         layout_deferred_objects.
575         (Plugin_manager::cleanup): New function.
576         (Plugin_manager::cleanup_done): New field.
577
578 2008-12-23  Cary Coutant  <ccoutant@google.com>
579
580         * plugin.cc (is_visible_from_outside): New function.
581         (Pluginobj::get_symbol_resolution_info): Call is_visible_from_outside
582         so we don't return "IR only" status for exported symbols or -r links.
583
584         * testsuite/Makefile.am (plugin_test_3): New test case.
585         * testsuite/Makefile.in: Regenerate.
586         * testsuite/plugin_test_3.sh: New file.
587
588 2008-12-22  Cary Coutant  <ccoutant@google.com>
589
590         * object.cc (Sized_relobj::layout_section): New function.
591         (Sized_relobj::do_layout): Defer layout of input sections until after
592         plugin has provided replacement files.
593         (Sized_relobj::do_layout_deferred_sections): New function.
594         * object.h (Relobj::set_section_offset): Remove virtual keyword.
595         (Relobj::layout_deferred_sections): New function.
596         (Relobj::do_layout_deferred_sections): New function.
597         (Sized_relobj::do_layout_deferred_sections): New function.
598         (Sized_relobj::layout_section): New function.
599         (Sized_relobj::Deferred_layout): New structure.
600         (Sized_relobj::deferred_layout_): New field.
601         * plugin.cc (Plugin_manager::finish): Renamed, was cleanup.
602         Change all callers.  Layout deferred sections.
603         (class Plugin_finish): Renamed, was Plugin_cleanup.  Change all
604         references.
605         (Plugin_hook::run): Move code from do_plugin_hook inline.
606         (Plugin_hook::do_plugin_hook): Remove.
607         * plugin.h (Plugin_manager::Plugin_manager): Add missing initializers.
608         (Plugin_manager::finish): Renamed, was cleanup.
609         (Plugin_manager::should_defer_layout): New function.
610         (Plugin_manager::add_deferred_layout_object): New function.
611         (Plugin_manager::Deferred_layout_list): New type.
612         (Plugin_manager::deferred_layout_objects_): New field.
613         (Plugin_hook::do_plugin_hook): Remove.
614
615 2008-12-17  Ian Lance Taylor  <iant@google.com>
616
617         * options.h (class General_options): Add --no case for
618         --export-dynamic.
619
620 2008-12-16  Cary Coutant  <ccoutant@google.com>
621
622         * plugin.cc (Plugin::load): Move LDPT_MESSAGE to front of transfer
623         vector.
624         (Plugin_manager::claim_file): Create plugin object even if
625         plugin did not call the add_symbols callback.
626         (Plugin_obj::get_symbol_resolution_info): Guard against plugin
627         asking for more symbols than were added.
628         * testsuite/Makefile.am (plugin_test_1): Add test case with
629         no global symbols.
630         (empty.syms): New target.
631         * testsuite/Makefile.in: Regenerate.
632         * testsuite/plugin_test.c (claim_file_hook): Add new debug
633         message. Don't call add_symbols if no globals.
634         (all_symbols_read_hook): Don't provide replacement for empty
635         claimed file.
636
637 2008-12-12  Ian Lance Taylor  <iant@google.com>
638
639         * target-reloc.h (Default_scan_relocatable_relocs): Only discard
640         r_type == 0 for a local symbol with r_sym == 0.
641         (scan_relocatable_relocs): Pass r_sym to
642         local_non_section_strategy.
643         * reloc.cc (Emit_relocs_strategy::local_non_section_strategy): Add
644         r_sym parameter.
645
646         * configure.ac: Update test for TLS descriptors: they are
647         supported as of glibc 2.9.
648         * configure: Rebuild.
649
650 2008-12-11  Ian Lance Taylor  <iant@google.com>
651
652         PR 7091
653         * target-reloc.h (Default_scan_relocatable_relocs): For each
654         function, map r_type == 0 to RELOC_DISCARD.
655
656 2008-12-10  Cary Coutant  <ccoutant@google.com>
657
658         * layout.cc (Layout::add_comdat): Allow COMDAT group from a replacement
659         object to override a kept COMDAT group from a plugin object.
660
661 2008-12-09  Ian Lance Taylor  <iant@google.com>
662
663         PR 7088
664         * yyscript.y (file_cmd): Handle INPUT.
665
666         * testsuite/initpri1.c: Change all declarations to be full
667         prototypes by adding void, to avoid compiler warnings.
668
669 2008-12-05  Rafael Avila de Espindola  <espindola@google.com>
670
671         * options.cc (General_options::parse_plugin_opt): New.
672         (General_options::add_plugin): The argument now is just the filename.
673         (General_options::add_plugin_option): New.
674         * options.h (plugin_opt): New.
675         (add_plugin): Change argument name.
676         (add_plugin_option): New.
677         * plugin.cc (Plugin::load): Don't parse the plugin option.
678         * plugin.h (Plugin::Plugin): Rename argument. Init filename_.
679         (Plugin::add_option): New.
680         (Plugin::args_): Change type.
681         (Plugin::filename_): New.
682         (Plugin_manager::add_plugin_option): New.
683         * testsuite/Makefile.am (plugin_test_1): Use new syntax.
684         * testsuite/Makefile.in: Regenerate.
685
686 2008-12-05  Cary Coutant  <ccoutant@google.com>
687
688         * layout.cc (Layout::include_section): Check for SHF_EXCLUDE.
689         Handle --strip-lto-sections option.
690         * options.h (strip_lto_sections): New option.
691
692 2008-12-01  Cary Coutant  <ccoutant@google.com>
693
694         * plugin.cc (ld_plugin_message): Change format parameter to const.
695         Fix mismatch between new[] and delete.
696
697 2008-11-14  Cary Coutant  <ccoutant@google.com>
698
699         * reloc.cc (Sized_relobj::do_read_relocs): Use constant invalid_address
700         instead of -1U.
701
702 2008-11-05  Craig Silverstein  <csilvers@google.com>
703
704         * options.cc (General_options::parse_dynamic_list): New function.
705         * options.h (General_options): New flags dynamic_list,
706         dynamic_list_data, dynamic_list_cpp_new, and
707         dynamic_list_cpp_typeinfo.  New variable dynamic_list_.
708         (General_options::in_dynamic_list): New function.
709         * script.cc (Lex::Mode): New enum DYNAMIC_LIST.
710         (Lex::can_start_name): Add support for DYNAMIC_LIST mode.
711         (Lex::can_continue_name): Likewise.
712         (yylex): Likewise.
713         (read_script_file): New parameter script_options.
714         (read_dynamic_list): New function.
715         (Script_options::define_dynamic_list): New function.
716         (dynamic_list_keyword_parsecodes): New variable.
717         (dynamic_list_keywords): New variable.
718         * script.h (Script_options::define_dynamic_list): New function
719         prototype.
720         (read_dynamic_list): New function prototype.
721         * symtab.cc (strprefix): New macro.
722         (Symbol::should_add_dynsym_entry): Support dynamic_list,
723         dynamic_list_data, dynamic_list_cpp_new, and
724         dynamic_list_cpp_typeinfo.
725         * yyscript.y (PARSING_DYNAMIC_LIST): New token.
726         (dynamic_list_expr): New rule.
727         (dynamic_list_nodes): Likewise.
728         (dynamic_list_node): Likewise.
729         * testsuite/Makefile.am (dynamic_list): New test.
730         * testsuite/Makefile.in: Regenerated.
731         * testsuite/dynamic_list.t: New file.
732         * testsuite/dynamic_list.sh: New file.
733
734 2008-11-05  Craig Silverstein  <csilvers@google.com>
735
736         * testsuite/tls_test_c.c: Add prototype for t11 and t11_last.
737         * testsuite/tls_test_c.c (t11): Add explicit "void" to prototype.
738         (t11_last): Likewise.
739         * testsuite/ver_test_6.c (main): Likewise.
740
741 2008-10-07  Cary Coutant  <ccoutant@google.com>
742
743         * options.c (General_options::finalize): Add check for -static and
744         -shared.
745         * gold.cc (queue_middle_tasks): Assert that list of dynamic objects
746         is not empty.
747
748 2008-10-02  Cary Coutant  <ccoutant@google.com>
749
750         * plugin.cc (make_sized_plugin_object): Fix conditional
751         compilation to work when not all targets are enabled.
752
753 2008-09-29  Cary Coutant  <ccoutant@google.com>
754
755         * archive.cc (Archive::get_file_and_offset): Use filename instead
756         of name to get library path.
757         (Archive::include_member): Unlock external member of a thin archive.
758
759         * testsuite/Makefile.am (TEST_AR): New variable.
760         (thin_archive_test_1): New test.
761         (thin_archive_test_2): New test.
762         * testsuite/Makefile.in: Regenerate.
763         * testsuite/thin_archive_main.cc: New file.
764         * testsuite/thin_archive_test_1.cc: New file.
765         * testsuite/thin_archive_test_2.cc: New file.
766         * testsuite/thin_archive_test_3.cc: New file.
767         * testsuite/thin_archive_test_4.cc: New file.
768
769 2008-09-29  Cary Coutant  <ccoutant@google.com>
770
771         * mapfile.cc (Mapfile::print_input_section): Change -1U to -1ULL.
772         * object.cc (Sized_relobj::do_layout): Use constant invalid_address
773         instead of -1U.
774         (Sized_relobj::do_finalize_local_symbols): Likewise.
775         (Sized_relobj::map_to_kept_section): Likewise.
776         * object.h (Sized_relobj::invalid_address): New constant.
777         (Sized_relobj::do_output_section_offset): Check for invalid_address
778         and return -1ULL.
779         * output.cc (Output_reloc::local_section_offset): Use constant
780         invalid_address instead of -1U.
781         (Output_reloc::get_address): Likewise.
782         (Output_section::output_address): Change -1U to -1ULL.
783         * output.h (Output_reloc::invalid_address): New constant.
784         * reloc.cc (Sized_relobj::write_sections): Use constant
785         invalid_address instead of -1U.
786         (Sized_relobj::relocate_sections): Likewise.
787         * symtab.cc (Symbol_table::sized_finalize_symbol): Handle symbol
788         values for merge sections.
789         * target-reloc.h (relocate_for_relocatable): Use constant
790         invalid_address instead of -1U.
791
792 2008-09-19  Cary Coutant  <ccoutant@google.com>
793
794         Add plugin functionality for link-time optimization (LTO).
795         * configure.ac (plugins): Add --enable-plugins option.
796         * configure: Regenerate.
797         * config.in: Regenerate.
798         * Makefile.am (LIBDL): New variable.
799         (CCFILES): Add plugin.cc.
800         (HFILES): Add plugin.h.
801         (ldadd_var): Add LIBDL.
802         * Makefile.in: Regenerate.
803
804         * archive.cc: Include "plugin.h".
805         (Archive::setup): Don't preread archive symbols when using a plugin.
806         (Archive::get_file_and_offset): Add memsize parameter.  Change callers.
807         (Archive::get_elf_object_for_member): Call plugin hooks for claiming
808         files.
809         (Archive::include_member): Add symbols from plugin objects.
810         * archive.h (Archive::get_file_and_offset): Add memsize parameter.
811         * descriptors.cc (Descriptors::open): Check for file descriptors
812         abandoned by plugins.
813         (Descriptors::claim_for_plugin): New function.
814         * descriptors.h (Descriptors::claim_for_plugin): New function.
815         (Open_descriptor::is_claimed): New field.
816         (claim_descriptor_for_plugin): New function.
817         * fileread.cc (File_read::claim_for_plugin): New function.
818         * fileread.h (File_read::claim_for_plugin): New function.
819         (File_read::descriptor): New function.
820         * gold.cc: Include "plugin.h".
821         (queue_initial_tasks): Add task to call plugin hooks for generating
822         new object files.
823         * main.cc: Include "plugin.h".
824         (main): Load plugin libraries.
825         * object.h (Pluginobj): Declare.
826         (Object::pluginobj): New function.
827         (Object::do_pluginobj): New function.
828         (Object::set_target): New function.
829         * options.cc: Include "plugin.h".
830         (General_options::parse_plugin): New function.
831         (General_options::General_options): Initialize plugins_ field.
832         (General_options::add_plugin): New function.
833         * options.h (Plugin_manager): Declare.
834         (General_options): Add --plugin option.
835         (General_options::has_plugins): New function.
836         (General_options::plugins): New function.
837         (General_options::add_plugin): New function.
838         (General_options::plugins_): New field.
839         * plugin.cc: New file.
840         * plugin.h: New file.
841         * readsyms.cc: Include "plugin.h".
842         (Read_symbols::do_read_symbols): Check for archive before checking
843         for ELF file.  Call plugin hooks to claim files.
844         * resolve.cc (Symbol_table::resolve): Record when symbol is referenced
845         from a real object file; force override when processing replacement
846         files.
847         * symtab.cc (Symbol::init_fields): Initialize in_real_elf_ field.
848         (Symbol::init_base_object): Likewise.
849         (Symbol::init_base_output_data): Likewise.
850         (Symbol::init_base_output_segment): Likewise.
851         (Symbol::init_base_constant): Likewise.
852         (Symbol::init_base_undefined): Likewise.
853         (Symbol::output_section): Assert that object is not a plugin.
854         (Symbol_table::add_from_pluginobj): New function.
855         (Symbol_table::sized_finalize_symbol): Treat symbols from plugins as
856         undefined.
857         (Symbol_table::sized_write_globals): Likewise.
858         (Symbol_table::add_from_pluginobj): Instantiate template.
859         * symtab.h (Sized_pluginobj): Declare.
860         (Symbol::in_real_elf): New function.
861         (Symbol::set_in_real_elf): New function.
862         (Symbol::in_real_elf_): New field.
863         (Symbol_table::add_from_pluginobj): New function.
864
865         * testsuite/Makefile.am (AM_CFLAGS): New variable.
866         (LIBDL): New variable.
867         (LDADD): Add LIBDL.
868         (check_PROGRAMS): Add plugin_test_1 and plugin_test_2.
869         (check_SCRIPTS): Add plugin_test_1.sh and plugin_test_2.sh.
870         (check_DATA): Add plugin_test_1.err and plugin_test_2.err.
871         (MOSTLYCLEANFILES): Likewise.
872         * testsuite/Makefile.in: Regenerate.
873         * testsuite/plugin_test.c: New file.
874         * testsuite/plugin_test_1.sh: New file.
875         * testsuite/plugin_test_2.sh: New file.
876
877 2008-09-16  Ian Lance Taylor  <iant@google.com>
878
879         * target-reloc.h (relocate_section): Check whether a symbol is
880         defined by the ABI before reporting an undefined symbol error.
881         * target.h (Target::is_defined_by_abi): Make parameter const.
882         (Target::do_is_defined_by_abi): Likewise.
883         * i386.cc (Target_i386::do_is_defined_by_abi): Likewise.
884         * powerpc.cc (Target_powerpc::do_is_defined_by_abi): Likewise.
885         * sparc.cc (Target_sparc::do_is_defined_by_abi): Likewise.
886         * x86_64.cc (Target_x86_64::do_is_defined_by_abi): Likewise.
887         * testsuite/Makefile.am (tls_test_shared.so): Add -Wl,-z,defs.
888         * testsuite/Makefile.in: Rebuild.
889
890         * fileread.cc (make_view): Add casts to avoid warning.
891
892 2008-09-16  Alexandre Oliva  <aoliva@redhat.com>
893
894         * i386.cc (Target_i386::define_tls_base_symbol): Update comments.
895         * x86_64.cc (Target_x86_64::define_tls_base_symbol): Likewise.
896
897 2008-09-16  Alexandre Oliva  <aoliva@redhat.com>
898
899         * options.h (General_options::output_is_executable): New.
900         (General_options::output_is_pie): New.
901         * i386.cc (Target_i386::define_tls_base_symbol): Use SEGMENT_START
902         for shared libraries.
903         * x86_64.cc (Target_x86_64::define_tls_base_symbol): Likewise.
904
905 2008-09-11  Chris Demetriou  <cgd@google.com>
906
907         * options.h (origin): New -z option.
908         * layout.cc (Layout:finish_dynamic_section): If "-z origin"
909         is specified, set DF_ORIGIN in DT_FLAGS and set DF_1_ORIGIN
910         in DT_FLAGS_1.
911
912 2008-09-05  Cary Coutant  <ccoutant@google.com>
913
914         * fileread.cc (File_read::make_view): Add check for attempt to map
915         beyond end of file.
916
917 2008-09-05  Cary Coutant  <ccoutant@google.com>
918
919         * symtab.cc (Symbol_table::add_from_dynobj): Fix typos in
920         explicit instantiations.
921
922 2008-08-28  Kris Van Hees  <kris.van.hees@oracle.com>
923
924         PR gold/6858
925         * options.cc (General_options::finalize): Allow undefined symbols
926         in shlibs if linking -shared.
927
928         PR gold/6859
929         * symtab.cc (Symbol::init_base_undefined): Mark explicitly undefined
930         symbols as not needing a dynsym entry.
931
932 2008-08-20  Craig Silverstein  <csilvers@google.com>
933
934         * fileread.cc (File_read::open): Do not lock the file unless it
935         was successfully opened.
936
937 2008-08-14  Cary Coutant  <ccoutant@google.com>
938
939         * x86_64.cc (Target_x86_64::Relocate::relocat_tls):
940         Use addend for DTPOFF32, DTPOFF64, and TPOFF32 relocs.
941         * testsuite/tls_test.cc (struct int128): 128-bit struct
942         for testing TLS relocs with non-zero addend.
943         (v12): New TLS variable.
944         (t12): New test.
945         (t_last): Add check for v12.
946         * testsuite/tls_test.h (t12): New function.
947         * testsuite/tls_test_main.cc (thread_routine): Call new test.
948
949 2008-08-13  Ian Lance Taylor  <iant@google.com>
950
951         * layout.cc (Layout::attach_allocated_section_to_segment): Don't
952         set tls_segment_ or relro_segment_.
953         (Layout::make_output_segment): Set tls_segment_ and relro_segment_
954         when appropriate.
955         * output.h (Output_section::clear_is_relro): New function.
956         * output.cc (Output_segment::add_output_section): Handle SHF_TLS
957         sections specially even when output_data_ is empty.
958         (Output_segment::maximum_alignment): When first section is relro,
959         only force alignment for PT_LOAD segments.
960         * script.cc (script_data_segment_align): New function.
961         (script_data_segment_relro_end): New function.
962         * script-c.h (script_data_segment_align): Declare.
963         (script_data_segment_relro_end): Declare.
964         * script-sections.h (class Script_sections): Declare
965         data_segment_align and data_segment_relro_end.  Add fields
966         segment_align_index_ and saw_relro_end_.
967         * script-sections.cc (class Sections_element): Add set_is_relro
968         virtual function.  Add new bool* parameter to place_orphan_here.
969         Add get_output_section virtual function.
970         (class Output_section_definition): Add set_is_relro.  Add new
971         bool* parameter to place_orphan_here.  Add get_output_section.
972         Add is_relro_ field.
973         (Output_section_definition::Output_section_definition): Initialize
974         evaluated_address_, evaluated_load_address, evaluated_addralign_,
975         and is_relro_ fields.
976         (Output_section_definition::place_orphan_here): Add is_relro
977         parameter.
978         (Output_section_definition::set_section_addresses): Set relro for
979         output section.
980         (Output_section_definition::alternate_constraint): Likewise.
981         (class Orphan_output_section): Add new bool* parameter to
982         place_orphan_here.  Add get_output_section.
983         (Orphan_output_section::place_orphan_here): Add is_relro
984         parameter.
985         (Script_sections::Script_sections): Initialize
986         data_segment_align_index_ and saw_relro_end_.
987         (Script_sections::data_segment_align): New function.
988         (Script_sections::data_segment_relro_end): New function.
989         (Script_sections::place_orphan): Set or clear is_relro.
990         (Script_sections::set_section_addresses): Force alignment of first
991         TLS section.
992         * yyscript.y (exp): Call script_data_segment_align and
993         script_data_segment_relro_end.
994         * testsuite/relro_script_test.t: New file.
995         * testsuite/relro_test.cc (using_script): Declare.
996         (t1, t2): Test using_script.
997         * testsuite/Makefile.am (check_PROGRAMS): Add relro_script_test.
998         (relro_script_test_SOURCES): Define.
999         (relro_script_test_DEPENDENCIES): Define.
1000         (relro_script_test_LDFLAGS): Define.
1001         (relro_script_test_LDADD): Define.
1002         (relro_script_test.so): New target.
1003         * testsuite/Makefile.in: Rebuild.
1004
1005 2008-08-06  Cary Coutant <ccoutant@google.com>
1006
1007         * archive.cc (Archive::total_archives, Archive::total_members)
1008         (Archive::total_members_loaded): New variables.
1009         (Archive::setup): Add parameter.  Add option to preread
1010         archive symbols.
1011         (Archive::read_armap): Add counter.
1012         (Archive::get_file_and_offset): New function.
1013         (Archive::get_elf_object_for_member): New function.
1014         (Archive::read_all_symbols): New function.
1015         (Archive::read_symbols): New function.
1016         (Archive::add_symbols): Add counters.
1017         (Archive::include_all_members): Use armap to find members if it's
1018         already built.
1019         (Archive::include_member): Skip reading symbols if already read.
1020         Factored code into Archive::get_file_and_offset and
1021         Archive::get_elf_object_for_member.  Changed call to
1022         Mapfile::report_include_archive_member.
1023         (Archive::print_stats): New function.
1024         * archive.h: Declare Object and Read_symbols_data classes.
1025         (Archive::Archive): Add initializers for new members.
1026         (Archive::setup): Add parameter.
1027         (Archive::print_stats): New function.
1028         (Archive::total_archives, Archive::total_members)
1029         (Archive::total_members_loaded): New variables.
1030         (Archive::get_file_and_offset): New function.
1031         (Archive::get_elf_object_for_member): New function.
1032         (Archive::read_all_symbols): New function.
1033         (Archive::read_symbols): New function.
1034         (Archive::Archive_member): New class.
1035         (Archive::members_): New member.
1036         (Archive::num_members_): New member.
1037         * main.cc: Include archive.h.
1038         (main): Call Archive::print_stats.
1039         * mapfile.cc (Mapfile::report_include_archive_member): Delete
1040         archive parameter; member_name is now the fully-decorated name.
1041         * mapfile.h (Mapfile::report_include_archive_member): Likewise.
1042         * options.h: (General_options): Add --preread-archive-symbols option.
1043         * readsyms.cc (Read_symbols::do_read_symbols): Change call to
1044         Archive::setup.
1045
1046 2008-08-04  Ian Lance Taylor  <iant@google.com>
1047
1048         * symtab.h (Symbol::use_plt_offset): New function.
1049         * i386.cc (Relocate::relocate): Call Symbol::use_plt_offset.
1050         * powerpc.cc (Relocate::relocate): Likewise.
1051         * sparc.cc (Relocate::relocate): Likewise.
1052         * x86_64.cc (Relocate::relocate): Likewise.
1053         * testsuite/weak_plt.sh: New test.
1054         * testsuite/weak_plt_main.cc: New test.
1055         * testsuite/weak_plt_shared.cc: New test.
1056         * testsuite/Makefile.am (check_SCRIPTS): Add weak_plt.sh.
1057         (check_PROGRAMS): Add weak_plt.
1058         (check_DATA): Add weak_plt_shared.so.
1059         (weak_plt_main_pic.o, weak_plt): New targets.
1060         (weak_plt_shared_pic.o, weak_plt_shared.so): New targets.
1061         * testsuite/Makefile.in: Rebuild.
1062
1063         * testsuite/Makefile.am (weak_alias_test_1.so): Depend upon
1064         gcctestdir/ld.
1065         (weak_alias_test_2.so, weak_alias_test_4.so): Likewise.
1066         * testsuite/Makefile.in: Rebuild.
1067
1068 2008-08-04  Alan Modra  <amodra@bigpond.net.au>
1069
1070         * Makefile.am (POTFILES.in): Set LC_ALL=C.
1071         * Makefile.in: Regenerate.
1072         * po/POTFILES.in: Regenerate.
1073
1074 2008-07-29  Ian Lance Taylor  <iant@google.com>
1075
1076         * script.cc (Script_options::finalize_symbols): Finalize SECTIONS
1077         symbols before other symbols.
1078         * testsuite/script_test_2.cc (test_addr): Declare.
1079         (test_addr_alias): Declare.
1080         (main): Check that test_addr and test_addr_alias have the right
1081         values.
1082         * testsuite/script_test_2.t: Define test_addr_alias and
1083         test_addr.
1084
1085 2008-07-24  Ian Lance Taylor  <iant@google.com>
1086
1087         PR 5990
1088         * descriptors.cc: New file.
1089         * descriptors.h: New file.
1090         * gold-threads.h (class Hold_optional_lock): New class.
1091         * fileread.cc: Include "descriptors.h".
1092         (File_read::~File_read): Release descriptor rather than closing
1093         it.
1094         (File_read::open) [file]: Call open_descriptor rather than open.
1095         Set is_descriptor_opened_.
1096         (File_read::open) [memory]: Assert that descriptor is not open.
1097         (File_read::reopen_descriptor): New function.
1098         (File_read::release): Release descriptor.
1099         (File_read::do_read): Make non-const.  Reopen descriptor.
1100         (File_read::read): Make non-const.
1101         (File_read::make_view): Reopen descriptor.
1102         (File_read::do_readv): Likewise.
1103         * fileread.h (class File_read): Add is_descriptor_opened_ field.
1104         Update declarations.
1105         * layout.cc: Include "descriptors.h".
1106         (Layout::create_build_id): Use open_descriptor rather than open.
1107         * output.cc: Include "descriptors.h".
1108         (Output_file::open): Use open_descriptor rather than open.
1109         * archive.cc (Archive::const_iterator): Change Archive to be
1110         non-const.
1111         (Archive::begin, Archive::end): Make non-const.
1112         (Archive::count_members): Likewise.
1113         * archive.h (class Archive): Update declarations.
1114         * object.h (Object::read): Make non-const.
1115         * Makefile.am (CCFILES): Add descriptors.cc.
1116         (HFILES): Add descriptors.h.
1117         * Makefile.in: Rebuild.
1118
1119         PR 6716
1120         * gold.h: Always include <clocale>.  Add Solaris workarounds
1121         following code in binutils/sysdep.h.
1122
1123         PR 6048
1124         * ehframe.cc (Eh_frame::add_ehframe_input_section): Check whether
1125         this->eh_frame_hdr_ is NULL before using it.
1126
1127         * dynobj.cc (Versions::Versions): Update comment.
1128
1129         * dynobj.cc (Versions::Versions): If there is an soname, use it as
1130         the base version name.
1131
1132         * stringpool.cc (Stringpool_template::add_with_length): Set key to
1133         array size plus one.
1134         (Stringpool_template::set_string_offsets): Subtract one from key
1135         before using it as an array index.
1136         (Stringpool_template::get_offset_with_length): Likewise.
1137         (Stringpool_template::write_to_buffer): Likewise.
1138         * stringpool.h (Stringpool_template::get_offset_from_key):
1139         Likewise.
1140
1141 2008-07-23  Ian Lance Taylor  <iant@google.com>
1142
1143         PR 6658
1144         * object.h (Merged_symbol_value::value): Do our best to handle a
1145         negative addend.
1146
1147         PR 6647
1148         * script.cc (Version_script_info::get_versions): Don't add empty
1149         version tag to return value.
1150         (Version_script_info::get_symbol_version_helper): Change return
1151         type to bool.  Add pversion parameter.  Change all callers.
1152         (script_register_vers_node): Don't require a non-NULL tag.
1153         * script.h (class Version_script_info): Update declarations.
1154         (Version_script_info::get_symbol_version): Change return type to
1155         bool.  Add version parameter.  Change all callers.
1156         * symtab.cc (Sized_symbol::add_from_relobj): Rework version
1157         handling.  Handle an empty version from a version script.
1158         (Symbol_table::define_special_symbol): Likewise.
1159         * testsuite/ver_test_10.script: New file.
1160         * testsuite/ver_test_10.sh: New file.
1161         * testsuite/Makefile.am (check_SCRIPTS): Add ver_test_10.sh.
1162         (check_DATA): Add ver_test_10.syms.
1163         (ver_test_10.syms, ver_test_10.so): New target.
1164         * testsuite/Makefile.in: Rebuild.
1165
1166 2008-07-23  Simon Baldwin  <simonb@google.com>
1167
1168         * symtab.cc (Symbol_table::sized_write_symbol): Only set st_size
1169         to zero for undefined symbols from dynamic libraries.
1170
1171 2008-07-23  Ian Lance Taylor  <iant@google.com>
1172
1173         * symtab.cc (Symbol_table::resolve): Remove version parameter.
1174         Change all callers.
1175         * symtab.h (class Symbol_table): Update declaration.
1176         * testsuite/ver_test_9.cc: New file.
1177         * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_9.
1178         (ver_test_9_SOURCES, ver_test_9_DEPENDENCIES): Define.
1179         (ver_test_9_LDFLAGS, ver_test_9_LDADD): Define.
1180         (ver_test_9.so, ver_test_9.o): New targets.
1181         * testsuite/Makefile.in: Rebuild.
1182
1183 2008-07-22  Ian Lance Taylor  <iant@google.com>
1184
1185         * options.h (class General_options): Define --check-sections.
1186         * layout.cc (Layout::set_segment_offsets): Handle
1187         --check-sections.
1188
1189         * options.h (class General_options): Define -n/--nmagic and
1190         -N/--omagic.
1191         * options.cc (General_options::finalize): For -n/--nmagic or
1192         -N/--omagic, set -static.
1193         * layout.cc (Layout::attach_allocated_section_to_segment): If
1194         -N/--omagic, don't put read-only and read-write sections in
1195         different segments.
1196         (Layout::find_first_load_seg): If -N/--omagic, don't insist on
1197         finding a read-only segment.
1198         (Layout::set_segment_offsets): If -N/--omagic or -n/--nmagic,
1199         don't set the minimum segment alignment to the common page size,
1200         and don't set the file offset to the address modulo the page size.
1201         * script-sections.cc (Script_sections::create_segments): If
1202         -n/--omagic, don't put read-only and read-write sections in
1203         different segments.
1204
1205         * cref.cc: New file.
1206         * cref.h: New file.
1207         * options.h (class General_options): Add --print-symbol-counts.
1208         * main.cc (main): Issue defined symbol report if requested.
1209         * archive.cc (Archive::interpret_header): Make into a const member
1210         function.
1211         (Archive::add_symbols): Call Input_objects::archive_start and
1212         archive_stop.
1213         (Archive::const_iterator): Define new class.
1214         (Archive::begin, Archive::end): New functions.
1215         (Archive::include_all_members): Rewrite to use iterator.
1216         (Archive::count_members): New function.
1217         * archive.h (class Archive): Update declarations.
1218         (Archive::filename): New function.
1219         * object.cc: Include "cref.h".
1220         (Sized_relobj::Sized_relobj): Initialize defined_count_.
1221         (Sized_relobj::do_get_global_symbol_counts): New function.
1222         (Input_objects::add_object): Add object to cross-referencer.
1223         (Input_objects::archive_start): New function.
1224         (Input_objects::archive_stop): New function.
1225         (Input_objects::print_symbol_counts): New function.
1226         * object.h: Declare Cref and Archive.
1227         (Object::get_global_symbol_counts): New function.
1228         (Object::do_get_global_symbol_counts): New pure virtual function.
1229         (class Sized_relobj): Add defined_count_ field.  Update
1230         declarations.
1231         (class Input_objects): Add cref_ field.  Update constructor.
1232         Update declarations.
1233         * dynobj.cc (Sized_dynobj::Sized_dynobj): Initialize symbols_ and
1234         defined_count_.
1235         (Sized_dynobj::do_add_symbols): Allocate symbols_ if printing
1236         symbol counts.
1237         (Sized_dynobj::do_get_global_symbol_counts): New function.
1238         * dynobj.h (class Sized_dynobj): Add fields symbols_ and
1239         defined_count_.  Update declarations.  Define Symbols typedef.
1240         * symtab.cc (Symbol_table::add_from_relobj): Add defined
1241         parameter.  Change all callers.
1242         (Symbol_table::add_from_dynobj): Add sympointers and defined
1243         parameters.  Change all callers.
1244         * symtab.h (class Symbol_table): Update declarations.
1245         * Makefile.am (CCFILES): Add cref.cc.
1246         (HFILES): Add cref.h.
1247         * Makefile.in: Rebuild.
1248
1249 2008-07-22  Simon Baldwin  <simonb@google.com>
1250
1251         * symtab.cc (Symbol_table::sized_write_symbol): Set symbol size
1252         to zero when writing undefined symbols.
1253
1254 2008-07-22  Ian Lance Taylor  <iant@google.com>
1255
1256         * output.cc (Output_section::add_input_section): Don't try to
1257         merge empty merge sections.
1258
1259 2008-07-21  Craig Silverstein  <csilvers@google.com>
1260
1261         * symtab.cc (Symbol_table::warn_about_undefined_dynobj_symbol):
1262         Include symbol version in error message.
1263
1264 2008-07-20  Chris Demetriou  <cgd@google.com>
1265
1266         * configure.ac (gold_cv_c_random_seed): New configured variable.
1267         (RANDOM_SEED_CFLAGS): New substituted variable.
1268         * Makefile.am (AM_CFLAGS, AM_CXXFLAGS): Add $(RANDOM_SEED_CFLAGS).
1269         * configure: Rebuild.
1270         * Makefile.in: Likewise.
1271         * testsuite/Makefile.in: Likewise.
1272
1273 2008-07-18  Ian Lance Taylor  <iant@google.com>
1274
1275         * symtab.cc (Symbol_table::add_from_object): Rewrite the case
1276         where we see NAME/NULL and NAME/VERSION  as separate symbols.
1277         * testsuite/ver_test_main.cc (main): Call t4.
1278         (t4, t4_2a): Define.
1279         * testsuite/ver_test_2.cc (t4_2): Define.
1280         * testsuite/ver_test_2.script: Put t4_2a in VER2.
1281         * testsuite/ver_test_4.cc (t4_2a): Define.
1282         * testsuite/ver_test_4.script: Put t4_2a in VER2.
1283         * testsuite/ver_test.h (t4, t4_2, t4_2a): Declare.
1284
1285 2008-07-17  Ian Lance Taylor  <iant@google.com>
1286
1287         * dynobj.cc (Versions::add_def): If we give an error about a
1288         missing version, go ahead and create the version anyhow.
1289
1290 2008-07-10  Ian Lance Taylor  <iant@google.com>
1291
1292         Handle output sections with more than 0x7fffffff bytes.
1293         * object.h (class Relobj): Change map_to_output_ to
1294         output_sections_, and just keep a section pointer.  Change all
1295         uses.  Move comdat group support to Sized_relobj.
1296         (Relobj::is_section_specially_mapped): Remove.
1297         (Relobj::output_section): Remove poff parameter.  Change all
1298         callers.
1299         (Relobj::output_section_offset): New function.
1300         (Relobj::set_section_offset): Rewrite.
1301         (Relobj::map_to_output): Remove.
1302         (Relobj::output_sections): New function.
1303         (Relobj::do_output_section_offset): New pure virtual function.
1304         (Relobj::do_set_section_offset): Likewise.
1305         (class Sized_relobj): Add section_offsets_ field.  Add comdat
1306         group support from Relobj.  Update declarations.
1307         (Sized_relobj::get_output_section_offset): New function.
1308         (Sized_relobj::do_output_section_offset): New function.
1309         (Sized_relobj::do_set_section_offset): New function.
1310         * object.cc (Relobj::output_section_address): Remove.
1311         (Sized_relobj::Sized_relobj): Initialize new fields.
1312         (Sized_relobj::include_section_group): Cast find_kept_object to
1313         Sized_relobj.
1314         (Sized_relobj::include_linkonce_section): Likewise.
1315         (Sized_relobj::do_layout): Use separate arrays for output section
1316         and output offset.
1317         (Sized_relobj::do_count_local_symbols): Change map_to_output to
1318         output_sections.
1319         (Sized_relobj::do_finalize_local_symbols): Change map_to_output to
1320         output_sections and section_offsets.
1321         (Sized_relobj::write_local_symbols): Likewise.
1322         (map_to_kept_section): Compute output address directly.
1323         * reloc.cc (Sized_relobj::do_read_relocs): Change map_to_output to
1324         output_sections and section_offsets.
1325         (Sized_relobj::write_sections): Likewise.
1326         (Sized_relobj::relocate_sections): Likewise.
1327         * symtab.cc (sized_finalize_symbol): Use output_section_offset.
1328         * output.h (class Output_reloc): Update declarations.  Change
1329         u2_.relobj to Sized_relobj*.
1330         (class Output_data_reloc): Change add functions to use
1331         Sized_relobj*.
1332         * output.cc (Output_reloc::Output_reloc): Change relobj to
1333         Sized_relobj*.
1334         (Output_reloc::local_section_offset): Change return type to
1335         Elf_Addr.  Use get_output_section_offset.
1336         (Output_reloc::get_address): Likewise.
1337         (Output_section::is_input_address_mapped): Don't call
1338         is_section_specially_mapped.
1339         (Output_section::output_offset): Likewise.
1340         (Output_section::output_address): Likewise.
1341         (Output_section::starting_output_address): Likewise.
1342         * copy-relocs.cc (Copy_relocs::copy_reloc): Change object
1343         parameter to Sized_relobj*.
1344         (Copy_relocs::need_copy_reloc): Likewise.
1345         (Copy_relocs::save): Likewise.
1346         * copy-relocs.h (class Copy_relocs): Update declarations.
1347         (class Copy_relocs::Copy_reloc_entry): Change constructor to use
1348         Sized_relobj*.  Change relobj_ field to Sized_relobj*.
1349         * target-reloc.h (relocate_for_relocatable): Change
1350         offset_in_output_section type to Elf_Addr.  Change code that uses
1351         it as well.
1352         * layout.cc (Layout::layout): Always set *off.
1353         * mapfile.cc (Mapfile::print_input_section): Use
1354         output_section_offset.
1355         * i386.cc (Target_i386::copy_reloc): Change object parameter to
1356         Sized_relobj*.
1357         * powerpc.cc (Target_powerpc::copy_reloc): Likewise.
1358         * sparc.cc (Target_sparc::copy_reloc): Likewise.
1359         * x86_64.cc (Target_x86_64::copy_reloc): Likewise.
1360
1361 2008-07-03  Ian Lance Taylor  <iant@google.com>
1362
1363         * layout.cc (Layout::include_section): Do not discard unrecognized
1364         SHT_STRTAB sections.
1365
1366 2008-06-30  Craig Silverstein  <csilvers@cs.stanford.edu>
1367
1368         * script.cc (Lex::can_continue_name): Make '?' allowable in
1369         version-script names.
1370         * testsuite/version_script.map: Change glob pattern to use '?'
1371
1372 2008-06-30  Manish Singh  <yosh@gimp.org>
1373
1374         PR 6585
1375         * symtab.cc (Symbol_table::add_undefined_symbols_from_command_line):
1376         Correct typo.
1377
1378 2008-06-30  Ian Lance Taylor  <iant@google.com>
1379
1380         PR 6660
1381         PR 6682
1382         * powerpc.cc (Powerpc_relocate_functions::addr16_ha) [both
1383         versions]: Don't try to read the value in the contents, since we
1384         don't use it.  Use the template endianness when writing.
1385
1386 2008-06-25  Cary Coutant  <ccoutant@google.com>
1387
1388         * fileread.cc (File_read::make_view): Assert on zero-length view.
1389         * object.cc (Sized_relobj::do_read_symbols): Don't try to read
1390         symbol table when there are no symbols to read.
1391
1392 2008-06-23  Craig Silverstein  <csilvers@google.com>
1393
1394         * version.cc (version_string): Bump to 1.7
1395
1396 2008-06-18  Craig Silverstein  <csilvers@google.com>
1397
1398         * powerpc.cc (Powerpc_relocate_functions::addr16_ha): cast
1399         constant 0xFFFF to type Valtype.
1400         (Powerpc_relocate_functions::rel16_ha): Likewise.
1401
1402 2008-06-17  Ian Lance Taylor  <iant@google.com>
1403
1404         * output.h (Output_section::Input_section): Initialize p2align_ to
1405         zero for Output_section_data constructors.
1406         (Output_section::Input_section::addralign): If not an input
1407         section, return the alignment of the Output_section_data.
1408         * testsuite/copy_test.cc: New file.
1409         * testsuite/copy_test_1.cc: New file.
1410         * testsuite/copy_test_2.cc: New file.
1411         * testsuite/Makefile.am (check_PROGRAMS): Add copy_test.
1412         (copy_test_SOURCES, copy_test_DEPENDENCIES): New variables.
1413         (copy_test_LDFLAGS, copy_test_LDADD): New variables.
1414         (copy_test_1_pic.o, copy_test_1.so): New targets.
1415         (copy_test_2_pic.o, copy_test_2.so): New targets.
1416         * testsuite/Makefile.in: Rebuild.
1417
1418         * script-sections.cc (Script_sections::place_orphan): Initialize
1419         local variable exact.
1420
1421 2008-06-13  David Edelsohn  <edelsohn@gnu.org>
1422
1423         * powerpc.cc (Output_data_plt_powerpc::do_write): 8 + 4 = 0xC.
1424
1425 2008-06-12  David Edelsohn  <edelsohn@gnu.org>
1426             David S. Miller  <davem@davemloft.net>
1427
1428         * powerpc.cc: New file.
1429         * Makefile.am (TARGETSOURCES): Add powerpc.cc
1430         (ALL_TARGETOBJS): Add powerpc.$(OBJEXT)
1431         * configure.tgt: Add entries for powerpc-* and powerpc64-*.
1432         * Makefile.in: Rebuild.
1433
1434 2008-06-09  Ian Lance Taylor  <iant@google.com>
1435
1436         * testsuite/relro_test.cc: Include <cstdio>, <cstdlib>, and
1437         <exception>.
1438         (throwing, orig_terminate): New static variables.
1439         (terminate_handler): New static function.
1440         (t2): Set terminate handler.
1441
1442 2008-06-05  Kris Van Hees  <kris.van.hees@oracle.com>
1443
1444         PR 6584
1445         * binary.cc (Binary_to_elf::sized_convert): Fix .data
1446         alignment.
1447
1448 2008-05-30  Cary Coutant  <ccoutant@google.com>
1449
1450         * archive.cc (Archive::include_all_members) Correct to step
1451         over symbol table and extended name table in thin archives.
1452
1453 2008-05-29  Kris Van Hees  <kris.van.hees@oracle.com>
1454
1455         PR 6407
1456         * target-reloc.h (relocate_for_relocatable): Fix new_offset
1457         calculation.
1458
1459 2008-05-28  Caleb Howe  <cshowe@google.com>
1460
1461         * reduced_debug_output.cc: New file.
1462         * reduced_debug_output.h: New file.
1463         * options.h (class General_options): Add --strip-debug-non-line.
1464         * options.cc (General_options::finalize): Add strip_debug_non_line
1465         to the strip heirarchy.
1466         * layout.h (class Layout): Add debug_abbrev_ and debug_info_
1467         fields.
1468         * layout.cc: Include "reduced_debug_output.h".
1469         (Layout::Layout): Initialize new fields.
1470         (line_only_debug_sections): New static array.
1471         (is_lines_only_debug_sections): New static inline function.
1472         (Layout::include_section): Handle --strip-debug-non-line.
1473         (Layout::make_output_section): If --strip-debug-non-line, build
1474         new output sections for .debug_abbrev and .debug_info.
1475         * dwarf_reader.cc (read_unsigned_LEB_128): Move to namespace
1476         gold.  Warn about possible overflow.
1477         (read_signed_LEB_128): Likewise.
1478         * dwarf_reader.h: (read_unsigned_LEB_128): Declare.
1479         (read_signed_LEB_128): Declare.
1480         * Makefile.am (CCFILES): Add reduced_debug_output.cc.
1481         (HFILES): Add reduced_debug_output.h.
1482         * Makefile.in: Rebuild.
1483
1484 2008-05-21  Ian Lance Taylor  <iant@google.com>
1485
1486         * mapfile.cc: New file.
1487         * mapfile.h: New file.
1488         * options.h (class General_options): Add -M/--print-map and -Map.
1489         * options.cc (General_options::finalize): Make -M equivalent to
1490         -Map -.
1491         * main.cc: Include <cstdio> and "mapfile.h".
1492         (main): Open mapfile if requested.
1493         * gold.cc (class Middle_runner): Add mapfile_ field.  Update
1494         constructor.  Change caller.
1495         (queue_initial_tasks): Add mapfile parameter.  Change caller.
1496         (queue_middle_tasks): Likewise.
1497         * gold.h (queue_initial_tasks, queue_middle_tasks): Update
1498         declarations.
1499         * archive.cc: Include "mapfile.h".
1500         (Archive::add_symbols): Add mapfile parameter.  Change all
1501         callers.  Pass mapfile, symbol, and reason to include_member.
1502         (Archive::include_all_members): Add mapfile parameter.  Change all
1503         callers.
1504         (Archive::include_member): Add mapfile, sym, and why parameters.
1505         Change all callers.  Report inclusion to map file.
1506         * archive.h: Include "fileread.h".
1507         (class Archive): Update declarations.
1508         (Archive::file): New const method.
1509         (class Add_archive_symbols): Add mapfile_ field.  Update
1510         constructor.  Change all callers.
1511         * readsyms.h (class Read_symbols): Likewise.
1512         (class Finish_group): Likewise.
1513         (class Read_script): Likewise.
1514         * common.cc: Include "mapfile.h".
1515         (Symbol_table::allocate_commons): Add mapfile parameter.  Change
1516         all callers.
1517         (Symbol_table::do_allocate_commons): Likewise.
1518         (Symbol_table::do_allocate_commons_list): Likewise.  Report common
1519         symbol allocation to mapfile.
1520         * common.h (class Allocate_commons_task): Add mapfile_ field.
1521         Update constructor.  Change all callers.
1522         * symtab.h (class Symbol_table): Update declarations.
1523         * layout.cc: Include "mapfile.h".
1524         (Layout_task_runner::run): Print information to mapfile.
1525         (Layout::create_gold_note): Change Output_data_fixed_space to
1526         Output_data_zero_fill.
1527         (Layout::create_build_id): Likewise.
1528         (Layout::print_to_mapfile): New function.
1529         * layout.h (class Layout_task_runner): Add mapfile_ field.  Update
1530         constructor.  Change caller.
1531         (class Layout): Declare print_to_mapfile.
1532         * output.cc (Output_section::Input_section::print_to_mapfile): New
1533         function.
1534         (Output_section::add_input_section): If producing a map, always
1535         add to input_sections_ list.
1536         (Output_section::do_print_to_mapfile): New function.
1537         (Output_segment::print_sections_to_mapfile): New function.
1538         (Output_segment::print_section_list_to_mapfile): New function.
1539         * output.h: Include "mapfile.h".
1540         (Output_data::print_to_mapfile): New function.
1541         (Output_data::do_print_to_mapfile): New virtual function.
1542         (Output_segment_headers::do_print_to_mapfile): New function.
1543         (Output_file_header::do_print_to_mapfile): New function.
1544         (Output_data_const::do_print_to_mapfile): New function.
1545         (class Output_data_const_buffer): Add map_name_ field.  Update
1546         constructor.  Change all callers.  Add do_print_to_mapfile
1547         function.
1548         (class Output_data_fixed_space): Likewise.
1549         (class Output_data_space): Likewise.
1550         (class Output_data_zero_fill): New class.
1551         (Output_data_strtab::do_print_to_mapfile): New function.
1552         (Output_data_reloc_base::do_print_to_mapfile): New function.
1553         (Output_relocatable_relocs::do_print_to_mapfile): New function.
1554         (Output_data_group::do_print_to_mapfile): New function.
1555         (Output_data_got::do_print_to_mapfile): New function.
1556         (Output_data_dynamic::do_print_to_mapfile): New function.
1557         (Output_symtab_xindex::do_print_to_mapfile): New function.
1558         (class Output_section): Declare do_print_to_mapflie.  Declare
1559         print_to_mapfile in Input_section.
1560         (class Output_segment): Declare new functions.
1561         * object.h (Sized_relobj::symbol_count): New function.
1562         * script-sections.cc
1563         (Output_section_element_dot_assignment::set_section_addresses):
1564         Change Output_data_fixed_space to Output_data_zero_fill.
1565         (Output_data_expression::do_print_to_mapfile): New function.
1566         * script.cc (read_input_script): Add mapfile parameter.  Change
1567         all callers.
1568         * script.h (read_input_script): Update declaration.
1569         * ehframe.h (Eh_frame_hdr::do_print_to_mapfile): New function.
1570         (Eh_frame::do_print_to_mapfile): New function.
1571         * merge.h (Output_merge_data::do_print_to_mapfile): New function.
1572         (Output_merge_string::do_print_to_mapfile): New function.
1573         * i386.cc (Output_data_plt_i386::do_print_to_mapfile): New
1574         function.
1575         * sparc.cc (Output_data_plt_sparc::do_print_to_mapfile): New
1576         function.
1577         * x86_64.cc (Output_data_plt_x86_64::do_print_to_mapfile): New
1578         function.
1579         * Makefile.am (CCFILES): Add mapfile.cc.
1580         (HFILES): Add mapfile.h.
1581         * Makefile.in: Rebuild.
1582
1583 2008-05-19  Ian Lance Taylor  <iant@google.com>
1584
1585         * options.h (class General_options): Add -z relro.
1586         * layout.cc (Layout::Layout): Initialize relro_segment_.
1587         (Layout::add_output_section_data): Return the output section.
1588         (Layout::make_output_section): Rcognize relro sections and mark
1589         them appropriately.
1590         (Layout::attach_allocated_section_to_segment): Put relro sections
1591         in a PT_GNU_RELRO segment.
1592         (Layout::create_initial_dynamic_sections): Mark the .dynamic
1593         section as relro.
1594         (Layout::segment_precedes): Sort PT_GNU_RELRO segments after
1595         PT_TLS segments.
1596         (Layout::linkonce_mapping): Map d.rel.ro.local to
1597         .data.rel.ro.local.
1598         (Layout::output_section_name): Us .data.rel.ro.local for any
1599         section which begins with that.
1600         * layout.h (class Layout): Update add_output_section_data
1601         declaration.  Add relro_segment_ field.
1602         * output.cc (Output_section::Output_section): Initialize is_relro_
1603         and is_relro_local_ fields.
1604         (Output_segment::add_output_section): Group relro sections.
1605         (Output_segment::is_first_section_relro): New function.
1606         (Output_segment::maximum_alignment): If there is a relro section,
1607         align the segment to the common page size.
1608         (Output_segment::set_section_addresses): Track whether we are
1609         looking at relro sections.  If the last section is a relro
1610         section, align to the common page size.
1611         (Output_segment::set_section_list_addresses): Add in_relro
1612         parameter.  Change all callers.  Align to the page size when
1613         moving from relro to non-relro section.
1614         (Output_segment::set_offset): Align memsz of a PT_GNU_RELRO
1615         segment.
1616         * output.h (class Output_section): Add is_relro_ and
1617         is_relro_local_ fields.
1618         (Output_section::is_relro): New function.
1619         (Output_section::set_is_relro): New function.
1620         (Output_section::is_relro_local): New function.
1621         (Output_section::set_is_relro_local): New function.
1622         (class Output_segment): Update declarations.
1623         * i386.cc (Target_i386::got_section): Mark .got section as relro.
1624         * sparc.cc (Target_sparc::got_section): Likewise.
1625         * x86_64.cc (Target_x86_64::got_section): Likewise.
1626         * testsuite/relro_test_main.cc: New file.
1627         * testsuite/relro_test.cc: New file.
1628         * testsuite/Makefile.am (check_PROGRAMS): Add relro_test.
1629         (relro_test_SOURCES, relro_test_DEPENDENCIES): New variables.
1630         (relro_test_LDFLAGS, relro_test_LDADD): New variables.
1631         (relro_test.so, relro_test_pic.o): New targets.
1632         * testsuite/Makefile.in: Rebuild.
1633
1634 2008-05-16  Ian Lance Taylor  <iant@google.com>
1635
1636         * output.cc (Output_segment::add_output_section): Remove front
1637         parameter.
1638         * output.h (class Output_segment): Remove
1639         add_initial_output_section and overloaded add_output_section.
1640         Update declaration of remaining add_output_section.
1641         * layout.cc (Layout::create_interp): Call add_output_section
1642         rather than add_initial_output_section.
1643         (Layout::finish_dynamic_section): Likewise.
1644
1645         * i386.cc (Target_i386::Relocate::relocate_tls): Set dynamic type
1646         for TLS_GOTDESC and TLS_DESC_CALL.  Only optimize TLS_LDO_32 if we
1647         know the dynamic type.
1648         * x86_64.cc (Target_x86_64::Relocate): Add saw_tls_block_reloc_
1649         field.  Initialize it in constructor.
1650         (Target_x86_64::Relocate::relocate_tls): Record that we saw a TLS
1651         block reloc for TLSGD, GOTPC32_TLSDESC, TLSDESC_CALL, and TLSLD.
1652         Only optimize DTPOFF32 and DTPOFF64 if we have seen a TLS block
1653         reloc.
1654
1655         * output.cc (Output_reloc::get_address): Change return type to
1656         Elf_Addr.
1657         * output.h (class Output_reloc): Update get_address declaration.
1658         * x86_64.cc (Output_data_plt_x86_64::do_write): Use 64-bit types
1659         for section addresses.
1660
1661 2008-05-09  Ian Lance Taylor  <iant@google.com>
1662
1663         PR 6493
1664         * gold.cc (gold_nomem): Use return value of write.
1665
1666 2008-05-08  Ian Lance Taylor  <iant@google.com>
1667
1668         * symtab.c (Symbol::init_base_output_data): Add version
1669         parameter.  Change all callers.
1670         (Symbol::init_base_output_segment): Likewise.
1671         (Symbol::init_base_constant): Likewise.
1672         (Symbol::init_base_undefined): Likewise.
1673         (Sized_symbol::init_output_data): Likewise.
1674         (Sized_symbol::init_output_segment): Likewise.
1675         (Sized_symbol::init_constant): Likewise.
1676         (Sized_symbol::init_undefined): Likewise.
1677         (Symbol_table::do_define_in_output_data): If the new symbol has a
1678         version, mark it as the default.
1679         (Symbol_table::do_define_in_output_segment): Likewise.
1680         (Symbol_table::do_define_as_constant): Likewise.
1681         * symtab.h (class Symbol): Update declarations.
1682         (class Sized_symbol): Likewise.
1683         * resolve.cc (Symbol::override_version): New function.
1684         (Symbol::override_base): Call override_version.
1685         (Symbol::override_base_with_special): Likewise.
1686         * testsuite/ver_script_8.script: New file.
1687         * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_8.
1688         (ver_test_8_SOURCES, ver_test_8_DEPENDENCIES): Define.
1689         (ver_test_8_LDFLAGS, ver_test_8_LDADD): Define.
1690         (ver_test_8_1.so, ver_test_8_2.so): New targets.
1691
1692 2008-05-06  Ian Lance Taylor  <iant@google.com>
1693
1694         PR 6049
1695         * options.h (DEFINE_set): Add VARNAME_begin and VARNAME_end
1696         functions.
1697         (class General_options): Remove existing --undefined, and add
1698         --no-undefined instead.  Add new --undefined as synonym for -u.
1699         * archive.cc (Archive::add_symbols): Check whether symbol was
1700         named with -u.
1701         * gold.cc (queue_middle_tasks): Add -u symbols to symbol table.
1702         * symtab.h (class Symbol): Rename CONSTANT to IS_CONSTANT; change
1703         all uses.  Add IS_UNDEFINED.  Update declarations to split
1704         different versions of init_base.  Declare init_base_undefined.
1705         (Symbol::is_defined): Handle IS_UNDEFINED.
1706         (Symbol::is_undefined): Likewise.
1707         (Symbol::is_weak_undefined): Call is_undefined.
1708         (Symbol::is_absolute): Handle IS_CONSTANT.
1709         (class Sized_symbol): Update declarations to split different
1710         versions of init.  Declare init_undefined.
1711         (class Symbol_table): Declare new functions.
1712         * symtab.cc (Symbol::init_base_object): Rename from init_base.
1713         Change all callers.
1714         (Symbol::init_base_output_data): Likewise.
1715         (Symbol::init_base_output_segment): Likewise.
1716         (Symbol::init_base_constant): Likewise.
1717         (Symbol::init_base_undefined): New function.
1718         (Sized_symbol::init_object): Rename from init.  Change all
1719         callers.
1720         (Sized_symbol::init_output_data): Likewise.
1721         (Sized_symbol::init_output_segment): Likewise.
1722         (Sized_symbol::init_constant): Likewise.
1723         (Sized_symbol::init_undefined): New function.
1724         (Symbol_table::add_undefined_symbols_from_command_line): New
1725         function.
1726         (Symbol_table::do_add_undefined_symbols_from_command_line): New
1727         function.
1728         (Symbol::final_value_is_known): Handle IS_UNDEFINED.
1729         (Symbol::output_section): Likewise.
1730         (Symbol::set_output_section): Likewise.
1731         (Symbol_table::sized_finalize_symbol): Likewise.
1732         (Symbol_table::sized_write_globals): Likewise.
1733         * resolve.cc (Symbol_table::should_override): Likewise.
1734         (Symbol::override_base_with_special): Likewise.
1735
1736         * symtab.cc (Symbol_table::add_from_dynobj): If we see a protected
1737         symbol, change it to have default visibility.
1738         * testsuite/protected_1.cc: New file.
1739         * testsuite/protected_2.cc: New file.
1740         * testsuite/protected_3.cc: New file.
1741         * testsuite/protected_main_1.cc: New file.
1742         * testsuite/protected_main_2.cc: New file.
1743         * testsuite/protected_main_3.cc: New file.
1744         * testsuite/Makefile.am (check_PROGRAMS): Add protected_1.
1745         (protected_1_SOURCES, protected_1_DEPENDENCIES): Define.
1746         (protected_1_LDFLAGS, protected_1_LDADD): Define.
1747         (protected_1.so): New target.
1748         (protected_1_pic.o, protected_2_pic.o): New targets.
1749         (protected_3_pic.o): New target.
1750         (check_PROGRAMS): Add protected_2.
1751         (protected_2_SOURCES, protected_2_DEPENDENCIES): Define.
1752         (protected_2_LDFLAGS, protected_2_LDADD): Define.
1753         * testsuite/Makefile.in: Rebuild.
1754
1755         * options.h (DEFINE_var): Add set_user_set_##varname__.
1756         (DEFINE_bool_alias): New macro.
1757         (class General_options): Define -Bstatic using DEFINE_bool_alias
1758         rather than DEFINE_special.  Add --undefined as an alias for -z
1759         defs.
1760         * options.cc (General_options::parse_Bstatic): Remove.
1761
1762         * options.h (class General_options): Add --fatal-warnings.
1763         * main.cc (main): Implement --fatal-warnings.
1764         * errors.h (Errors::warning_count): New function.
1765
1766         * options.h (class General_options): Add -Bsymbolic-functions.
1767         * symtab.h (Symbol::is_preemptible): Check for
1768         -Bsymbolic-functions.
1769
1770 2008-05-05  Ian Lance Taylor  <iant@google.com>
1771
1772         * options.h (DEFINE_bool): For DASH_Z, create the negative option
1773         as noVARNAME rather than no-VARNAME.
1774         (class General_options): Add option -z combreloc.
1775         * output.h (class Output_reloc) [SHT_REL]: Declare compare and
1776         get_address.
1777         (Output_reloc::sort_before) [SHT_REL]: New function.
1778         (Output_reloc::sort_before) [SHT_RELA]: New function.
1779         (class Output_data_reloc_base): Add sort_relocs_ field.  Define
1780         Sort_relocs_comparison.
1781         (Output_data_reloc_base::Output_data_reloc_base): Add sort_relocs
1782         parameter.  Change all callers.
1783         (Output_data_reloc::Output_data_reloc) [both versions]: Add
1784         sort_relocs parameter.  Change all callers.
1785         * output.cc (Output_reloc::get_address): New function, broken out
1786         of write_rel.
1787         (Output_reloc::write_rel): Call it.
1788         (Output_reloc::compare): New function.
1789         (Output_data_reloc_base::do_write): Optionally sort relocs.
1790
1791         * configure.ac: If targ_extra_obj is set, link it in.
1792         * configure.tgt: Initialize all variables.
1793         (x86_64*): Set targ_extra_obj and targ_extra_size.
1794         * configure: Rebuild.
1795
1796         * object.cc (Sized_relobj::include_section_group): Adjust section
1797         indexes read from group data.  Build vector to pass to
1798         layout_group.
1799         * layout.cc (Layout::layout_group): Add flags and shndxes
1800         parameters.  Remove contents parameter.  Change caller.  Update
1801         explicit instantiations.
1802         * layout.h (class Layout): Update layout_group declaration.
1803         * output.cc (Output_data_group::Output_data_group): Add flags and
1804         input_shndxes parameters.  Remove contents parameter.  Change
1805         caller.
1806         (Output_data_group::do_write): Change input_sections_ to
1807         input_shndxes_.
1808         * output.h (class Output_data_group): Update constructor
1809         declaration.  Rename input_sections_ to input_shndxes_.
1810         * testsuite/many_sections_test.cc: Add template.
1811
1812 2008-04-30  Cary Coutant  <ccoutant@google.com>
1813
1814         * target-reloc.h (relocate_section): Fix dead-pointer bug.
1815
1816         * layout.cc (Layout::include_section): Refactored check for debug
1817         info section.
1818         (Layout::add_comdat): Add new parameters.  Change type
1819         of signature parameter.  Add object and shndx to signatures table.
1820         (Layout::find_kept_object): New function.
1821         * layout.h: Include <cstring>.
1822         (Layout::is_debug_info_section): New function.
1823         (Layout::add_comdat): Add new parameters.
1824         (Layout::find_kept_object): New function.
1825         (Layout::Kept_section): New struct.
1826         (Layout::Signatures): Change type of map range.
1827         * object.cc (Relobj::output_section_address): New function.
1828         (Sized_relobj::include_section_group): Add new parameters.  Change
1829         calls to Layout::add_comdat.  Change to build table of kept comdat
1830         groups and table mapping discarded sections to kept sections.
1831         (Sized_relobj::include_linkonce_section): Likewise.  Add new parameter.
1832         (Sized_relobj::do_layout): Change calls to include_section_group and
1833         include_linkonce_section.
1834         (Sized_relobj::do_finalize_local_symbols): Do not set local symbol
1835         value to zero when section is discarded.
1836         (Sized_relobj::map_to_kept_section): New function.
1837         * object.h (Relobj::output_section_address): New function.
1838         (Relobj::Comdat_group): New type.
1839         (Relobj::find_comdat_group): New function.
1840         (Relobj::Comdat_group_table): New type.
1841         (Relobj::Kept_comdat_section): New type.
1842         (Relobj::Kept_comdat_section_table): New type.
1843         (Relobj::add_comdat_group): New function.
1844         (Relobj::set_kept_comdat_section): New function.
1845         (Relobj::get_kept_comdat_section): New function.
1846         (Relobj::comdat_groups_): New field.
1847         (Relobj::kept_comdat_sections_): New field.
1848         (Symbol_value::input_value): Update comment.
1849         (Sized_relobj::map_to_kept_section) New function.
1850         (Sized_relobj::include_linkonce_section): Add new parameter.
1851         * target-reloc.h (Comdat_behavior): New type.
1852         (get_comdat_behavior): New function.
1853         (relocate_section): Add code to map a discarded section to the
1854         corresponding kept section when applying a relocation.
1855
1856 2008-04-30  Craig Silverstein  <csilvers@google.com>
1857
1858         * dwarf_reader.cc (next_generation_count): New static var.
1859         (Addr2line_cache_entry): New struct.
1860         (addr2line_cache): New static var.
1861         (Dwarf_line_info::one_addr2line): Added caching.
1862         (Dwarf_line_info::clear_addr2line_cache): New function.
1863         * dwarf_reader.h (Dwarf_line_info::one_addr2line): Add
1864         cache-size parameter.
1865         (Dwarf_line_info::one_addr2line_cache): New function.
1866         * symtab.cc (Symbol_table::detect_odr_violations): Pass
1867         new cache-size argument to one_addr2line(), and clear cache.
1868
1869 2008-04-28  Cary Coutant  <ccoutant@google.com>
1870
1871         * i386.cc (Relocate::relocate): Fix typos for R_386_PC16 and
1872         R_386_PC8 relocations.
1873
1874 2008-04-23  Ian Lance Taylor  <iant@google.com>
1875
1876         * object.cc (Sized_relobj::include_section_group): Check for
1877         invalid section group.
1878
1879         * object.cc (make_elf_object): Correct test for 64-bit ELF file
1880         header size.
1881
1882         * readsyms.cc (Read_symbols::do_read_symbols): Use get_view rather
1883         than read for file header.
1884         * archive.cc (Archive::include_member): Likewise.
1885
1886 2008-04-23  Paolo Bonzini  <bonzini@gnu.org>
1887
1888         * aclocal.m4: Regenerate.
1889         * configure: Regenerate.
1890
1891 2008-04-19  Ian Lance Taylor  <iant@google.com>
1892
1893         * version.cc (version_string): Bump to 1.6.
1894
1895         * testsuite/Makefile.am (many_sections_r_test): New target.
1896         (many_sections_r_test_SOURCES): Remove.
1897         (many_sections_r_test_DEPENDENCIES): Remove.
1898         (many_sections_r_test_LDFLAGS): Remove.
1899         (many_sections_r_test_LDADD): Remove.
1900
1901         * object.cc (Sized_relobj::do_add_symbols): Always pass
1902         local_symbol_count_ to add_from_relobj.
1903
1904         * testsuite/Makefile.am (many_sections_check.h): Only check one in
1905         every thousand variables.
1906         * testsuite/Makefile.in: Rebuild.
1907
1908         * object.cc (Xindex::initialize_symtab_xindex): New function.
1909         (Xindex::read_symtab_xindex): New function.
1910         (Xindex::sym_xindex_to_shndx): New function.
1911         (Sized_relobj::find_symtab): Pick up SHT_SYMTAB_SHNDX section if
1912         available.
1913         (Sized_relobj::do_initialize_xindex): New function.
1914         (Sized_relobj::do_read_symbols): Adjust section links.
1915         (Sized_relobj::symbol_section_and_value): Add is_ordinary
1916         parameter.  Change all callers.
1917         (Sized_relobj::include_section_group): Adjust section links and
1918         symbol section indexes.
1919         (Sized_relobj::do_layout): Adjust section links.
1920         (Sized_relobj::do_count_local_symbols): Adjust section links and
1921         symbol section indexes.
1922         (Sized_relobj::do_finalize_local_symbols): Distinguish between
1923         ordinary and special symbols.
1924         (Sized_relobj::write_local_symbols): Add symtab_xindex and
1925         dynsym_xindex parameters.  Change all callers.  Adjust section
1926         links.  Use SHN_XINDEX when needed.
1927         (Sized_relobj::get_symbol_location_info): Adjust section links.
1928         Don't get fooled by special symbols.
1929         * object.h (class Xindex): Define.
1930         (class Object): Add xindex_ parameter.  Declare virtual functoin
1931         do_initialize_xindex.
1932         (Object::adjust_sym_shndx): New function.
1933         (Object::set_xindex): New protected function.
1934         (class Symbol_value): Add is_ordinary_shndx_ field.
1935         (Symbol_value::Symbol_value): Initialize is_ordinary_shndx_.
1936         (Symbol_value::value): Assert ordinary section.
1937         (Symbol_value::initialize_input_to_output_map): Likewise.
1938         (Symbol_value::set_input_shndx): Add is_ordinary parameter.
1939         Change all callers.
1940         (Symbol_value::input_shndx): Add is_ordinary parameter.  Change
1941         all callers.
1942         (class Sized_relobj): Update declarations.
1943         (Sized_relobj::local_symbol_input_shndx): Add is_ordinary
1944         parameter.  Change all callers.
1945         (Sized_relobj::adjust_shndx): New function.
1946         * dynobj.cc (Sized_dynobj::Sized_dynobj): Initialize dynsym_shndx_
1947         field.
1948         (Sized_dynobj::find_dynsym_sections): Remove pdynsym_shndx
1949         parameter.  Change all callers.  Pick up SHT_DYNSYM_SHNDX section
1950         for SHT_DYNSYM section if available.  Set dynsym_shndx_ field.
1951         (Sized_dynobj::read_dynsym_section): Adjust section links.
1952         (Sized_dynobj::read_dynamic): Likewise.
1953         (Sized_dynobj::do_read_symbols): Use dynsym_shndx_ field.  Adjust
1954         section links.
1955         (Sized_dynobj::do_initialize_xindex): New function.
1956         * dynobj.h (class Sized_dynobj): Add dynsym_shndx_ field.  Declare
1957         do_initialize_xindex.
1958         (Sized_dynobj::adjust_shndx): New function.
1959         * layout.cc (Layout::Layout): Initialize symtab_xindex_ and
1960         dynsym_xindex_ fields.
1961         (Layout::finalize): Add a call to set_section_indexes before
1962         creating the symtab sections.
1963         (Layout::set_section_indexes): Don't do anything if the section
1964         already has a section index.
1965         (Layout::create_symtab_sections): Add shnum parameter.  Change
1966         caller.  Create .symtab_shndx section if needed.
1967         (Layout::create_shdrs): Add shstrtab_section parameter.  Change
1968         caller.
1969         (Layout::allocated_output_section_count): New function.
1970         (Layout::create_dynamic_symtab): Create .dynsym_shndx section if
1971         needed.
1972         * layout.h (class Layout): Add symtab_xindex_ and dynsym_xindex_
1973         fields.  Update declarations.
1974         (Layout::symtab_xindex): New function.
1975         (Layout::dynsym_xindex): New function.
1976         (class Write_symbols_task): Add layout_ field.
1977         (Write_symbols_task::Write_symbols_task): Add layout parameter.
1978         Change caller.
1979         * output.cc (Output_section_headers::Output_section_headers): Add
1980         shstrtab_section parameter.  Change all callers.
1981         (Output_section_headers::do_sized_write): Store overflow values
1982         for section count and section string table section index in
1983         section header zero.
1984         (Output_file_header::do_sized_write): Check for overflow of
1985         section count and section string table section index.
1986         (Output_symtab_xindex::do_write): New function.
1987         (Output_symtab_xindex::endian_do_write): New function.
1988         * output.h (class Output_section_headers): Add shstrtab_section_.
1989         Update declarations.
1990         (class Output_symtab_xindex): Define.
1991         (Output_section::has_out_shndx): New function.
1992         * symtab.cc (Symbol::init_fields): Initialize is_ordinary_shndx_
1993         field.
1994         (Symbol::init_base): Add st_shndx and is_ordinary parameters.
1995         Change all callers.
1996         (Sized_symbol::init): Likewise.
1997         (Symbol::output_section): Check for ordinary symbol.
1998         (Symbol_table::add_from_object): Remove orig_sym parameter.  Add
1999         st_shndx, is_ordinary, and orig_st_shndx parameters.  Change all
2000         callers.
2001         (Symbol_table::add_from_relobj): Add symndx_offset parameter.
2002         Change all callers.  Simplify handling of symbols from sections
2003         not included in the link.
2004         (Symbol_table::add_from_dynobj): Handle ordinary symbol
2005         distinction.
2006         (Weak_alias_sorter::operator()): Assert that symbols are
2007         ordinary.
2008         (Symbol_table::sized_finalize_symbol): Handle ordinary symbol
2009         distinction.
2010         (Symbol_table::write_globals): Add symtab_xindex and dynsym_xindex
2011         parameters.  Change all callers.
2012         (Symbol_table::sized_write_globals): Likewise.  Handle ordinary
2013         symbol distinction.  Use SHN_XINDEX when needed.
2014         (Symbol_table::write_section_symbol): Add symtab_xindex
2015         parameter.  Change all callers.
2016         (Symbol_table::sized_write_section_symbol): Likewise.  Use
2017         SHN_XINDEX when needed.
2018         * symtab.h (class Symbol): Add is_ordinary_shndx_ field.  Update
2019         declarations.
2020         (Symbol::shndx): Add is_ordinary parameter.  Change all callers.
2021         (Symbol::is_defined): Check is_ordinary.
2022         (Symbol::is_undefined, Symbol::is_weak_undefined): Likewise.
2023         (Symbol::is_absolute, Symbol::is_common): Likewise.
2024         (class Sized_symbol): Update declarations.
2025         (class Symbol_table): Update declarations.
2026         * resolve.cc (Symbol::override_base): Add st_shndx and is_ordinary
2027         parameters.  Change all callers.
2028         (Sized_symbol::override): Likewise.
2029         (Symbol_table::override): Likewise.
2030         (symbol_to_bits): Add is_ordinary parameter.  Change all callers.
2031         (Symbol_table::resolve): Remove orig_sym parameter.  Add st_shndx,
2032         is_ordinary, and orig_st_shndx parameters.  Change all callers.
2033         * copy-relocs.cc (Copy_relocs::emit_copy_reloc): Require symbol
2034         to be in an ordinary section.
2035         * dwarf_reader.cc (Sized_dwarf_line_info::symbol_section): Add
2036         object and is_ordinary parameters.  Change all callers.
2037         (Sized_dwarf_line_info::read_relocs): Add object parameter.
2038         Change all callers.  Don't add undefined or non-ordinary symbols
2039         to reloc_map_.
2040         (Sized_dwarf_line_info::read_line_mappings): Add object parameter.
2041         Change all callers.
2042         * dwarf_reader.h (class Sized_dwarf_line_info): Update
2043         declarations.
2044         * ehframe.cc (Eh_frame::read_fde): Check for ordinary symbol.
2045         * reloc.cc (Sized_relobj::do_read_relocs): Adjust section links.
2046         (Sized_relobj::relocate_sections): Likewise.
2047         * target-reloc.h (scan_relocs): Adjust section symbol index.
2048         (scan_relocatable_relocs): Likewise.
2049         * i386.cc (Scan::local): Check for ordinary symbols.
2050         * sparc.cc (Scan::local): Likewise.
2051         * x86_64.cc (Scan::local): Likewise.
2052         * testsuite/binary_unittest.cc (Sized_binary_test): Update calls
2053         to symbol_section_and_value.
2054         * testsuite/many_sections_test.cc: New file.
2055         * testsuite/Makefile.am (BUILT_SOURCES): Define.
2056         (check_PROGRAMS): Add many_sections_test.
2057         (many_sections_test_SOURCES): Define.
2058         (many_sections_test_DEPENDENCIES): Define.
2059         (many_sections_test_LDFLAGS): Define.
2060         (BUILT_SOURCES): Add many_sections_define.h.
2061         (many_sections_define.h): New target.
2062         (BUILT_SOURCES): Add many_sections_check.h.
2063         (many_sections_check.h): New target.
2064         (check_PROGRAMS): Add many_sections_r_test.
2065         (many_sections_r_test_SOURCES): Define.
2066         (many_sections_r_test_DEPENDENCIES): Define.
2067         (many_sections_r_test_LDFLAGS): Define.
2068         (many_sections_r_test_LDADD): Define.
2069         (many_sections_r_test.o): New target.
2070         * testsuite/Makefile.in: Rebuild.
2071
2072 2008-04-17  Cary Coutant  <ccoutant@google.com>
2073
2074         * errors.cc (Errors::info): New function.
2075         (gold_info): New function.
2076         * errors.h (Errors::info): New function.
2077         * gold.h (gold_info): New function.
2078         * object.cc (Input_objects::add_object): Print trace output.
2079         * options.cc (options::parse_set): New function.
2080         (General_options::parse_wrap): Deleted.
2081         (General_options::General_options): Deleted initializer.
2082         * options.h (options::String_set): New typedef.
2083         (options::parse_set): New function.
2084         (DEFINE_set): New macro.
2085         (General_options::wrap): Changed to use DEFINE_set. Changed
2086         callers of any_wrap_symbols and is_wrap_symbol.
2087         (General_options::trace, General_options::trace_symbol):
2088         New options.
2089         (General_options::any_wrap_symbols, General_options::is_wrap_symbol)
2090         (General_options::wrap_symbols_): Deleted.
2091         * symtab.cc (Symbol_table::add_from_object): Print trace output.
2092
2093 2008-04-17  David S. Miller  <davem@davemloft.net>
2094
2095         * options.cc (General_options::parse_V): New function.
2096         * options.h: Add entries for -V and -Qy.
2097
2098 2008-04-17  Ian Lance Taylor  <iant@google.com>
2099
2100         * common.cc (Symbol_table::allocate_commons): Remove options
2101         parameter.  Change caller.
2102         (Symbol_table::do_allocate_commons): Remove options parameter.
2103         Change caller.  Just call do_allocate_commons_list twice.
2104         (Symbol_table::do_allocate_commons_list): New function, broken out
2105         of do_allocate_commons.
2106         * common.h (class Allocate_commons_task): Remove options_ field.
2107         Update constructor.
2108         * symtab.cc (Symbol_table::Symbol_table): Initialize
2109         tls_commons_.
2110         (Symbol_table::add_from_object): Put TLS common symbols on
2111         tls_commons_ list.
2112         (Symbol_table::sized_finalize_symbol): Handle STT_TLS symbols
2113         which are IN_OUTPUT_DATA.
2114         * symtab.h (class Symbol_table): Add tls_commons_ field.  Update
2115         allocate_commons and do_allocate_commons declarations.  Declare
2116         do_allocate_commons_list.
2117         * gold.cc (queue_middle_tasks): Update creation of
2118         Allocate_commons_task to not pass options.
2119         * testsuite/Makefile.am (INCLUDES): Add -I.. .
2120         (TLS_TEST_C_FLAGS): New variable.
2121         (tls_test_c_pic.o): New target.
2122         (tls_test_shared.so): Link in tls_test_c_pic.o.
2123         (tls_test_c_pic_ie.o): New target.
2124         (tls_test_ie_shared.so): Link in tls_test_c_pic_ie.o.
2125         (tls_test_DEPENDENCIES, tls_test_LDADD): Add tls_test_c.o.
2126         (tls_test_c.o): New target.
2127         (tls_pic_test_DEPENDENCIES): Add tls_test_c_pic.o.
2128         (tls_pic_test_LDADD): Likewise.
2129         (tls_shared_gd_to_ie_test_DEPENDENCIES): Add tls_test_c_pic.o.
2130         (tls_shared_gd_to_ie_test_LDADD): Likewise.
2131         (tls_test_c_gnu2.o): New target.
2132         (tls_shared_gnu2_gd_to_ie_test_DEPENDENCIES): Add
2133         tls_test_c_gnu2.o.
2134         (tls_shared_gnu2_gd_to_ie_test_LDADD): Likewise.
2135         (tls_test_gnu2_shared.so): Link in tls_test_c_gnu2.o.
2136         (tls_test_shared_nonpic.so): Link in tls_test_c.o.
2137         * testsuite/tls_test.cc: Include "config.h".
2138         (t_last): Call t11_last.
2139         * testsuite/tls_test.h (t11, t11_last): Declare.
2140         * testsuite/tls_test_c.c: New file.
2141         * testsuite/tls_test_main.cc (thread_routine): Call t11.
2142         * configure.ac: Check for OpenMP support.
2143         * configure, config.in, Makefile.in: Rebuild.
2144         * testsuite/Makefile.in: Rebuild.
2145
2146 2008-04-16  Cary Coutant  <ccoutant@google.com>
2147
2148         * i386.cc (Target_i386::define_tls_base_symbol): New function.
2149         (Target_i386::tls_base_symbol_defined_): New field.
2150         (Target_i386::Scan::local): Define _TLS_MODULE_BASE_ symbol.
2151         (Target_i386::Scan::global): Likewise.
2152         * symtab.cc (sized_finalize_symbol): Add check for TLS symbol.
2153         * x86_64.cc (Target_x86_64::define_tls_base_symbol): New function.
2154         (Target_x86_64::tls_base_symbol_defined_): New field.
2155         (Target_x86_64::Scan::local): Define _TLS_MODULE_BASE_ symbol.
2156         (Target_x86_64::Scan::global): Likewise.
2157
2158 2008-04-16  Cary Coutant  <ccoutant@google.com>
2159
2160         * symtab.h (Symbol::is_strong_undefined): Removed unused function.
2161         (Symbol::needs_plt_entry): Allow weak undefined symbols.
2162         (Symbol::needs_dynamic_reloc): Allow weak undefined symbols when
2163         building shared libraries.
2164         * testsuite/Makefile.am (weak_undef_nonpic_test): New target.
2165         (weak_undef_file1_nonpic.o, weak_undef_file2_nonpic.o)
2166         (weak_undef_lib_nonpic.so, alt/weak_undef_lib_nonpic.so): New targets.
2167         * testsuite/Makefile.in: Rebuild.
2168         * testsuite/weak_undef.h: New file.
2169         * testsuite/weak_undef_file1.cc: Add extra test cases.
2170         * testsuite/weak_undef_file2.cc: Likewise.
2171         * testsuite/weak_undef_test.cc: Likewise.
2172
2173 2008-04-16  David S. Miller  <davem@davemloft.net>
2174
2175         * sparc.cc (Target_sparc::Scan): Change from struct to class.
2176         Add issued_non_pic_error_ field.  Declare check_non_pic.
2177         (Target_sparc::Scan::check_non_pic): New function.
2178         (Target_sparc::Scan::local): Call check_non_pic as appropriate.
2179         (Target_sparc::Scan::global): Likewise.
2180
2181         * configure.ac (FN_PTRS_IN_SO_WITHOUT_PIC): Add sparc64.
2182         * configure: Rebuild.
2183
2184         * options.h (DEFINE_enable): New macro.
2185         (new_dtags): New enable option.
2186         (initfirst, interpose, loadfltr, nodefaultlib,
2187         nodelete, nodlopen, nodump): New -z options.
2188         * layout.cc (Layout:finish_dynamic_section): If new
2189         dtags enabled, emit DT_RUNPATH.  Also, emit a
2190         DT_FLAGS_1 containing any specified -z flags.
2191
2192 2008-04-16  Ian Lance Taylor  <iant@google.com>
2193
2194         * copy-relocs.cc: New file.
2195         * copy-relocs.h: New file.
2196         * reloc.cc: Remove Copy_relocs code.
2197         * reloc.h: Likewise.
2198         * reloc-types.h (struct Reloc_types) [both versions]: Add
2199         get_reloc_addend_noerror.
2200         * output.h (class Output_data_reloc<elfcpp::SHT_REL>): Add
2201         variants of add_global which take an addend which must be zero.
2202         * i386.cc: Include "copy-relocs.h".
2203         (class Target_i386): Change type of copy_relocs_ to variable,
2204         update initializer.
2205         (Target_i386::copy_reloc): Rewrite to pass to Copy_relocs class.
2206         Change all callers.
2207         (Target_i386::do_finalize_sections): Change handling of
2208         copy_relocs_.
2209         * sparc.cc: Include "copy-relocs.h".
2210         (class Target_sparc): Change type of copy_relocs_ to variable,
2211         update initializer.
2212         (Target_sparc::copy_reloc): Rewrite to pass to Copy_relocs class.
2213         Change all callers.
2214         (Target_sparc::do_finalize_sections): Change handling of
2215         copy_relocs_.
2216         * x86_64.cc: Include "copy-relocs.h".
2217         (class Target_x86_64): Change type of copy_relocs_ to variable,
2218         update initializer.
2219         (Target_x86_64::copy_reloc): Rewrite to pass to Copy_relocs
2220         class.  Change all callers.
2221         (Target_x86_64::do_finalize_sections): Change handling of
2222         copy_relocs_.
2223         * Makefile.am (CCFILES): Add copy-relocs.cc.
2224         (HFILES): Add copy-relocs.h.
2225
2226         * Makefile.in, aclocal.m4, testsuite/Makefile.in: Rebuild.
2227
2228         * testsuite/script_test_4.sh: Permit leading zeroes.
2229
2230 2008-04-15  Ian Lance Taylor  <iant@google.com>
2231
2232         * script-sections.cc (Script_sections::create_segments): Use
2233         header_size_adjustment even when there is enough room for the
2234         headers.
2235         * testsuite/script_test_4.sh: New file.
2236         * testsuite/script_test_4.t: New file.
2237         * testsuite/Makefile.am (check_SCRIPTS): Add script_test_4.sh.
2238         (check_DATA): Add script_test_4.stdout.
2239         (MOSTLYCLEANFILES): Likewise.
2240         (script_test_4): New target.
2241         (script_test_4.stdout): New target.
2242         * testsuite/Makefile.in: Rebuild.
2243
2244         * sparc.cc: Add definitions for Output_data_plt_sparc class
2245         constants.
2246
2247 2008-04-14  David S. Miller  <davem@davemloft.net>
2248
2249         * sparc.cc: New file.
2250         * Makefile.am (TARGETSOURCES): Add sparc.cc
2251         (ALL_TARGETOBJS): Add sparc.$(OBJEXT)
2252         * configure.tgt: Document targ_extra_size and
2253         targ_extra_big_endian.  Add entries for sparc-* and
2254         sparc64-*.
2255         * configure.ac: Handle targ_extra_size and
2256         targ_extra_big_endian.
2257         * Makefile.in: Rebuild.
2258         * configure: Likewise.
2259         * po/POTFILES.in: Likewise.
2260         * po/gold.pot: Likewise.
2261
2262 2008-04-14  Ian Lance Taylor  <iant@google.com>
2263
2264         * layout.cc (Layout::Layout): Initialize sections_are_attached_.
2265         (Layout::get_output_section): Ignore SHF_WRITE and SHF_EXECINSTR
2266         in the name/type/flags to section mapping.  Don't call
2267         allocate_output_section.
2268         (Layout::choose_output_section): Change parameter from adjust_name
2269         to is_input_section.  Don't permit input sections after sections
2270         are attached to segments.  Don't call allocate_output_section.
2271         (Layout::layout_eh_frame): Call update_flags_for_input_section,
2272         not write_enable_output_section.
2273         (Layout::make_output_section): Don't push to
2274         unattached_section_list_ nor call attach_to_segment.  Call
2275         attach_section_to_segment if sections are attached.
2276         (Layout::attach_sections_to_segments): New function.
2277         (Layout::attach_section_to_segment): New function.
2278         (Layout::attach_allocated_section_to_segment): Rename from
2279         attach_to_segment.  Remove flags parameter.
2280         (Layout::allocate_output_section): Remove function.
2281         (Layout::write_enable_output_section): Remove function.
2282         * layout.h (class Layout): Update for above changes.  Add new
2283         field sections_are_attached_.
2284         * output.h (Output_section::update_flags_for_input_section): New
2285         function.
2286         * output.cc (Output_section::add_input_section): Call
2287         update_flags_for_input_section.
2288         * gold.cc (queue_middle_tasks): Call attach_sections_to_segments.
2289
2290 2008-04-11  Cary Coutant  <ccoutant@google.com>
2291
2292         * i386.cc (Target_i386::got_mod_index_entry): Restore code previously
2293         thought unnecessary.
2294         * x86_64.cc (Target_x86_64::got_mod_index_entry): Likewise.
2295
2296 2008-04-11  Ian Lance Taylor  <iant@google.com>
2297
2298         * output.h (class Output_section_data): Remove inline definition
2299         of set_addralign.
2300         * output.cc (Output_section_data::set_addralign): New function.
2301
2302 2008-04-11  Cary Coutant  <ccoutant@google.com>
2303
2304         Add support for TLS descriptors for i386 and x86_64.
2305         * i386.cc (Target_i386::Relocate::tls_desc_gd_to_ie): New function.
2306         (Target_i386::Relocate::tls_desc_gd_to_le): New function.
2307         (Target_i386::Got_type): Add GOT_TYPE_TLS_NOFFSET and
2308         GOT_TYPE_TLS_DESC.
2309         (Target_i386::got_mod_index_entry): Remove unnecessary code.
2310         (Target_i386::Scan::local): Implement R_386_TLS_GOTDESC and
2311         R_386_TLS_DESC_CALL relocations.  Fix problem with initial-exec
2312         relocations.
2313         (Target_i386::Scan::global): Fix problem with GD-to-IE relaxation.
2314         Implement R_386_TLS_GOTDESC and R_386_TLS_DESC_CALL relocations;
2315         Fix problem with initial-exec relocations.
2316         (Target_i386::Relocate::relocate_tls): Likewise.
2317         (Target_i386::Relocate::tls_gd_to_ie): Fix problem with GD-to-IE
2318         relaxation.
2319         * output.cc (Output_data_dynamic::Dynamic_entry::write): Add
2320         support for section-plus-offset dynamic table entries.
2321         * output.h (Output_data_dynamic::add_section_plus_offset): New function.
2322         (Output_data_dynamic::Dynamic_entry): Add support for
2323         section-plus-offset dynamic table entries.
2324         (Output_data_dynamic::Classification): Likewise.
2325         (Output_data_dynamic::classification_): Renamed offset_.
2326         * x86_64.cc (Target_x86_64::Relocate::tls_desc_gd_to_ie): New function.
2327         (Target_x86_64::Relocate::tls_desc_gd_to_le): New function.
2328         (Target_x86_64::make_plt_section): New function.
2329         (Target_x86_64::reserve_tlsdesc_entries): New function.
2330         (Output_data_plt_x86_64::Output_data_plt_x86_64): Add new parameter.
2331         (Output_data_plt_x86_64::reserve_tlsdesc_entry): New function.
2332         (Output_data_plt_x86_64::has_tlsdesc_entry): New function.
2333         (Output_data_plt_x86_64::get_tlsdesc_got_offset): New function.
2334         (Output_data_plt_x86_64::get_tlsdesc_plt_offset): New function.
2335         (Output_data_plt_x86_64::tlsdesc_plt_entry): New field.
2336         (Output_data_plt_x86_64::set_final_data_size): Move out of line;
2337         add extra PLT entry for TLS descriptors.
2338         (Output_data_plt_x86_64::got_): New field.
2339         (Output_data_plt_x86_64::tlsdesc_got_offset_): New field.
2340         (Output_data_plt_x86_64::Output_data_plt_x86_64): Initialize new
2341         fields.
2342         (Output_data_plt_x86_64::do_write): Write extra PLT entry for TLS
2343         descriptors.
2344         (Target_x86_64::make_plt_entry): Factor out make_plt_section.
2345         (Target_x86_64::got_mod_index_entry): Remove unnecessary code.
2346         (Target_x86_64::Scan::local): Implement R_386_TLS_GOTDESC and
2347         R_386_TLS_DESC_CALL relocations.
2348         (Target_x86_64::Scan::global): Likewise.
2349         (Target_x86_64::do_finalize_sections): Add dynamic table entries
2350         for TLS descriptors.
2351         (Relocate::relocate_tls): Fix problem with GD-to-IE relaxation.
2352         Implement R_386_TLS_GOTDESC and R_386_TLS_DESC_CALL relocations.
2353         (Target_x86_64::Relocate::tls_gd_to_ie): Fix problem with
2354         GD-to-IE relaxation.
2355         * configure.ac: Export new conditional variables TLS_GNU2_DIALECT
2356         and TLS_DESCRIPTORS.
2357         * Makefile.in: Rebuild.
2358         * configure: Rebuild.
2359         * testsuite/Makefile.am (tls_shared_gd_to_ie_test): New target.
2360         (tls_test_shared2.so): New target.
2361         (tls_shared_gd_to_ie_test_SOURCES): New variable.
2362         (tls_shared_gd_to_ie_test_DEPENDENCIES): New variable.
2363         (tls_shared_gd_to_ie_test_LDFLAGS): New variable.
2364         (tls_shared_gd_to_ie_test_LDADD): New variable.
2365         (tls_shared_gnu2_gd_to_ie_test): New target.
2366         (tls_test_gnu2.o, tls_test_file2_gnu2.o, tls_test_gnu2_shared2.so):
2367         New targets.
2368         (tls_shared_gnu2_gd_to_ie_test_SOURCES): New variable.
2369         (ls_shared_gnu2_gd_to_ie_test_DEPENDENCIES): New variable.
2370         (tls_shared_gnu2_gd_to_ie_test_LDFLAGS): New variable.
2371         (tls_shared_gnu2_gd_to_ie_test_LDADD): New variable.
2372         (tls_shared_gnu2_test): New target.
2373         (tls_test_gnu2_shared.so): New target.
2374         (tls_shared_gnu2_test_SOURCES): New variable.
2375         (tls_shared_gnu2_test_DEPENDENCIES): New variable.
2376         (tls_shared_gnu2_test_LDFLAGS): New variable.
2377         (tls_shared_gnu2_test_LDADD): New variable.
2378         * testsuite/Makefile.in: Rebuild.
2379         * testsuite/Makefile.
2380
2381 2008-04-11  Ian Lance Taylor  <iant@google.com>
2382
2383         * testsuite/Makefile.am (justsyms_2r.o): Add dependency on
2384         justsyms.t.
2385         * testsuite/Makefile.in: Rebuild.
2386
2387         * testsuite/script_test_2a.cc (script_test_string_a): Make 8 bytes
2388         long.
2389         * testsuite/script_test_2.cc (main): Adjust test.
2390
2391 2008-04-11  David S. Miller  <davem@davemloft.net>
2392             Ian Lance Taylor  <iant@google.com>
2393
2394         * options.h (General_options): Add entries for '-Y' and
2395         '-relax'.
2396         * options.cc (General_options:finalize): If -Y was used, add those
2397         entries to the library path instead of the default "/lib" and
2398         "/usr/lib".
2399
2400 2008-04-11  David S. Miller  <davem@davemloft.net>
2401
2402         * testsuite/justsyms.t: Start at 0x100.
2403         * testsuite/justsyms_1.cc: Adjust justsyms_string assertion.
2404         * testsuite/script_test_2b.cc (script_test_string_b): Make 8 bytes
2405         long.
2406         * testsuite/script_test_2.cc: Adjust string and section length
2407         checks.
2408
2409 2008-04-09  Ian Lance Taylor  <iant@google.com>
2410
2411         PR gold/5996
2412         * script-sections.cc (Sections_element::allocate_to_segment): Add
2413         orphan parameter.
2414         (Output_section_definition::allocate_to_segment): Likewise.
2415         (Orphan_output_section::allocate_to_segment): Likewise.
2416         (Script_sections::attach_sections_using_phdrs_clause): Don't
2417         propagate non-PT_LOAD segments to orphan sections.
2418         * testsuite/Makefile.am (script_test_3.stdout): Generate using
2419         readelf rather than objdump.
2420         * testsuite/script_test_3.sh: Adjust accordingly.  Test that
2421         .interp section and PT_INTERP segment are the same size.
2422         * testsuite/Makefile.in: Rebuild.
2423
2424         * symtab.cc (Symbol_table::add_from_dynobj): Only look for weak
2425         aliases for symbols defined in the same object.
2426         * testsuite/Makefile.am (check_PROGRAMS): Add weak_alias_test.
2427         (weak_alias_test_SOURCES): New variable.
2428         (weak_alias_test_DEPENDENCIES): New variable.
2429         (weak_alias_test_LDFLAGS): New variable.
2430         (weak_alias_test_LDADD): New variable.
2431         (weak_alias_test_1_pic.o, weak_alias_test_1.so): New targets.
2432         (weak_alias_test_2_pic.o, weak_alias_test_2.so): New targets.
2433         (weak_alias_test_3.o): New target.
2434         (weak_alias_test_4_pic.o, weak_alias_test_4.so): New targets.
2435         * testsuite/weak_alias_test_main.cc: New file.
2436         * testsuite/weak_alias_test_1.cc: New file.
2437         * testsuite/weak_alias_test_2.cc: New file.
2438         * testsuite/weak_alias_test_3.cc: New file.
2439
2440 2008-04-08  Ian Lance Taylor  <iant@google.com>
2441
2442         * options.h (class General_options): Add --noinhibit-exec option.
2443         * main.cc (main): Check --noinhibit-exec.
2444
2445         * options.h (class General_options): Define --wrap as a special
2446         option.  Add wrap_symbols_ field.
2447         (General_options::any_wrap_symbols): New function.
2448         (General_options::is_wrap_symbol): New function.
2449         * options.cc (General_options::parse_wrap): New function.
2450         (General_options::General_options): Initialize wrap_symbols_.
2451         * symtab.cc (Symbol_table::wrap_symbol): New function.
2452         (Symbol_table::add_from_object): Handle --wrap.
2453         * symtab.h (class Symbol_table): Declare wrap_symbol.
2454         * target.h (Target::wrap_char): New function.
2455         (Target::Target_info): Add wrap_char field.
2456         * i386.cc (Target_i386::i386_info): Initialize wrap_char.
2457         * x86_64.cc (Target_x86_64::x86_64_info): Likewise.
2458         * testsuite/testfile.cc (Target_test::test_target_info):
2459         Likewise.
2460
2461         * errors.cc (Errors::undefined_symbol): Mention symbol version if
2462         there is one.
2463
2464         * layout.h (class Layout): Add added_eh_frame_data_ field.
2465         * layout.cc (Layout::Layout): Initialize new field.
2466         (Layout::layout_eh_frame): Don't add eh_frame_data_ to .eh_frame
2467         output section until we find a section we merged successfully.
2468         * object.cc (Sized_relobj::check_eh_frame_flags): Don't require
2469         that the size be non-zero.
2470
2471         * merge.cc (Object_merge_map::get_output_offset): Remove inline
2472         qualifier.
2473
2474 2008-04-08  Craig Silverstein  <csilvers@google.com>
2475
2476         * configure.ac: Export new conditional variable HAVE_ZLIB.
2477         * testsuite/Makefile.am (flagstest_o_specialfile): Condition
2478         on HAVE_ZLIB.
2479         (flagstest_o_specialfile_and_compress_debug_sections): Likewise.
2480         * configure, Makefile.in, testsuite/Makefile.in: Rebuild.
2481
2482 2008-04-07  Ian Lance Taylor  <iant@google.com>
2483
2484         * version.cc (version_string): Set to "1.5".
2485
2486         * x86_64.cc (Target_x86_64::Scan): Change from struct to class.
2487         Add issued_non_pic_error_ field.  Declare check_non_pic.
2488         (Target_x86_64::Scan::check_non_pic): New function.
2489         (Target_x86_64::Scan::local): Call check_non_pic as appropriate.
2490         (Target_x86_64::Scan::global): Likewise.
2491
2492         * output.cc (Output_reloc<SHT_REL>::local_section_offset): Add
2493         addend parameter.  Change caller.  Handle merge sections.
2494         (Output_reloc<SHT_REL>::symbol_value): Change parameter type from
2495         Address to Addend.  Don't add in the result of
2496         local_section_offset, pass down the addend and use the returned
2497         value.
2498         * output.h (class Output_reloc<SHT_REL>): Add Addend typedef.
2499         Update declarations of local_section_offset and symbol_value.
2500         * testsuite/two_file_test_1.cc (t18): New function.
2501         * testsuite/two_file_test_2.cc (f18): New function.
2502         * testsuite/two_file_test_main.cc (main): Call t18.
2503         * testsuite/two_file_test.h (t18, f18): Declare.
2504
2505         * configure.ac: Don't test for objdump, c++filt, or readelf.
2506         * testsuite/Makefile.am: Remove READELF and OBJDUMP_AND_CPPFILT
2507         conditionals.
2508         (TEST_READELF): New variable.
2509         (TEST_OBJDUMP, TEST_CXXFILT, TEST_STRIP): New variables.
2510         (check_PROGRAMS): Add two_file_strip_test.
2511         (two_file_strip_test): New target.
2512         (check_PROGRAMS): Add two_file_same_shared_strip_test.
2513         (two_file_same_shared_strip_test_SOURCES): New variable.
2514         (two_file_same_shared_strip_test_DEPENDENCIES): New variable.
2515         (two_file_same_shared_strip_test_LDFLAGS): New variable.
2516         (two_file_same_shared_strip_test_LDADD): New variable.
2517         (two_file_shared_strip.so): New target.
2518         (ver_test_2.syms, ver_test_4.syms): Use TEST_READELF.
2519         (ver_test_5.syms, ver_test_7.syms): Likewise.
2520         (ver_matching_test.stdout): Use TEST_OBJDUMP and TEST_CXXFILT.
2521         (strip_test_3.stdout): Use TEST_OBJDUMP.
2522         * configure, Makefile.in, testsuite/Makefile.in: Rebuild.
2523
2524 2008-04-04  Cary Coutant  <ccoutant@google.com>
2525
2526         * symtab.h (Symbol::is_weak_undefined): New function.
2527         (Symbol::is_strong_undefined): New function.
2528         (Symbol::is_absolute): New function.
2529         (Symbol::needs_plt_entry): Exclude weak undefined symbols.
2530         (Symbol::needs_dynamic_reloc): Exclude weak undefined and
2531         absolute symbols.
2532         * testsuite/Makefile.am (check_PROGRAMS): Add weak_undef_test.
2533         (weak_undef_test): New target.
2534         * testsuite/Makefile.in: Rebuild.
2535         * testsuite/weak_undef_file1.cc: New file.
2536         * testsuite/weak_undef_file2.cc: New file.
2537         * testsuite/weak_undef_test.cc: New file.
2538
2539 2008-04-03  Craig Silverstein  <csilvers@google.com>
2540
2541         * compressed_output.h (class Output_compressed_section): Use
2542         unsigned buffer.
2543         * compressed_output.cc (zlib_compress): Use unsigned buffers,
2544         add zlib header.
2545         (zlib_compressed_suffix): Removed.
2546         (Output_compressed_section::set_final_data_size): Use unsigned
2547         buffers.
2548         * testsuite/Makefile.am (flagstest_compress_debug_sections):
2549         Fix linker invocation.
2550         (flagstest_o_specialfile_and_compress_debug_sections):
2551         Likewise.
2552         * testsuite/Makefile.in: Regenerated.
2553
2554 2008-04-02  David S. Miller  <davem@davemloft.net>
2555
2556         *  dwarf_reader.cc (Sized_dwarf_line_info::read_header_prolog,
2557         Sized_dwarf_line_info::process_one_opcode): Use Swap_unaligned.
2558
2559 2008-04-02  Craig Silverstein  <csilvers@google.com>
2560
2561         * TODO: New file.
2562
2563 2008-04-02  Ian Lance Taylor  <iant@google.com>
2564
2565         * fileread.cc (File_read::find_view): Add byteshift and vshifted
2566         parameters.  Update for new key type to views_.  Change all
2567         callers.
2568         (File_read::read): Adjust for byteshift in returned view.
2569         (File_read::add_view): New function, broken out of
2570         find_and_make_view.
2571         (File_read::make_view): New function, broken out of
2572         find_and_make_view.
2573         (File_read::find_or_make_view): Add offset and aligned
2574         parameters.  Rewrite accordingly.  Change all callers.
2575         (File_read::get_view): Add offset and aligned parameters.  Adjust
2576         for byteshift in return value.
2577         (File_read::get_lasting_view): Likewise.
2578         * fileread.h (class File_read): Update declarations.
2579         (class File_read::View): Add byteshift_ field.  Add byteshift to
2580         constructor.  Add byteshift method.
2581         * archive.h (Archive::clear_uncached_views): New function.
2582         (Archive::get_view): Add aligned parameter.  Change all callers.
2583         * object.h (Object::get_view): Add aligned parameter.  Change all
2584         callers.
2585         (Object::get_lasting_view): Likewise.
2586
2587         * fileread.cc (File_read::release): Don't call clear_views if
2588         there are multiple objects.
2589         * fileread.h (File_read::clear_uncached_views): New function.
2590         * archive.cc (Add_archive_symbols::run): Call clear_uncached_views
2591         on the archive.
2592
2593 2008-03-31  Cary Coutant  <ccoutant@google.com>
2594
2595         Add thin archive support.
2596         * archive.cc (Archive::armagt): New const.
2597         (Archive::setup): Remove task parameter and calls to unlock.
2598         (Archive::unlock_nested_archives): New function.
2599         (Archive::read_header): Add nested_off parameter. Change
2600         all callers.
2601         (Archive::interpret_header): Likewise.
2602         (Archive::include_all_members): Change to handle thin
2603         archives.
2604         (Archive::include_member): Likewise.
2605         * archive.h (Archive::Archive): Add new parameters and
2606         initializers.
2607         (Archive::armagt): New const.
2608         (Archive::setup): Remove task parameter.
2609         (Archive::unlock_nested_archives): New function.
2610         (Archive::read_header): Add nested_off parameter.
2611         (Archive::interpret_header): Likewise.
2612         (Archive::Nested_archive_table): New typedef.
2613         (Archive::is_thin_archive_): New field.
2614         (Archive::nested_archives_): New field.
2615         (Archive::options_): New field.
2616         (Archive::dirpath_): New field.
2617         (Archive::task_): New field.
2618         * readsyms.cc (Read_symbols::do_read_symbols): Add check
2619         for thin archives.  Pass additional parameters to
2620         Archive::Archive.  Unlock the archive file after calling
2621         Archive::setup.
2622
2623 2008-03-29  Ian Lance Taylor  <iant@google.com>
2624
2625         * symtab.cc (Symbol_table::do_define_as_constant): Don't force a
2626         version symbol to be local.
2627         * testsuite/ver_test_4.sh: New file.
2628         * testsuite/Makefile.am (check_SCRIPTS): Add ver_test_4.sh.
2629         (check_DATA): Add ver_test_4.syms.
2630         (ver_test_4.syms): New target.
2631         * testsuite/Makefile.in: Rebuild.
2632
2633         * output.cc
2634         (Output_section::Input_section_sort_entry::has_priority): New
2635         function.
2636         (Output_section::Input_section_sort_entry::match_file_name): New
2637         function.
2638         (Output_section::Input_section_sort_entry::match_section_name):
2639         Remove.
2640         (Output_section::Input_section_sort_entry::match_section_name_prefix):
2641         Remove.
2642         (Output_section::Input_section_sort_entry::match_section_file):
2643         Remove.
2644         (Output_section::Input_section_sort_compare::operator()): Rewrite
2645         using new Input_section_sort_entry functions.  Sort crtbegin and
2646         crtend first.  Sort sections with no priority before sections with
2647         a priority.
2648         * testsuite/initpri1.c (d3): Check j != 4.
2649         (cd5): New constructor/destructor function.
2650         (main): Check j != 2.
2651
2652         * symtab.cc (Symbol_table::add_from_object): If we don't use the
2653         new symbol when resolving, don't call set_is_default.
2654         * testsuite/ver_test_7.cc: New file.
2655         * testsuite/ver_test_7.sh: New file.
2656         * testsuite/Makefile.am (ver_test_7.so): New target.
2657         (ver_test_7.o): New target.
2658         (check_SCRIPTS): Add ver_test_7.sh.
2659         (check_DATA): Add ver_test_7.syms.
2660         (ver_test_7.syms): New target.
2661
2662 2008-03-28  Ian Lance Taylor  <iant@google.com>
2663
2664         * layout.cc (Layout::layout): If we see an input section with a
2665         name that needs sorting, set the must_sort flag for the output
2666         section.
2667         (Layout::make_output_section): If the name of the output section
2668         indicates that it might require sorting, set the may_sort flag.
2669         * output.h (Output_section::may_sort_attached_input_sections): New
2670         function.
2671         (Output_section::set_may_sort_attached_input_sections): New
2672         function.
2673         (Output_section::must_sort_attached_input_sections): New
2674         function.
2675         (Output_section::set_must_sort_attached_input_sections): New
2676         function.
2677         (class Output_section): Declare Input_section_sort_entry.  Define
2678         Input_section_sort_compare.  Declare
2679         sort_attached_input_sections.  Add new fields:
2680         may_sort_attached_input_sections_,
2681         must_sort_attached_input_sections_,
2682         attached_input_sections_are_sorted_.
2683         * output.cc (Output_section::Output_section): Initialize new
2684         fields.
2685         (Output_section::add_input_section): Add an entry to
2686         input_sections_ if may_sort or must_sort are true.
2687         (Output_section::set_final_data_size): Call
2688         sort_attached_input_sections if necessary.
2689         (Output_section::Input_section_sort_entry): Define new class.
2690         (Output_section::Input_section_sort_compare::operator()): New
2691         function.
2692         (Output_section::sort_attached_input_sections): New function.
2693         * configure.ac: Check whether the compiler supports constructor
2694         priorities.  Define a CONSTRUCTOR_PRIORITY automake conditional.
2695         * testsuite/initpri1.c: New file.
2696         * testsuite/Makefile.am (check_PROGRAMS): Add initpri1 if
2697         CONSTRUCTOR_PRIORITY.
2698         (initpri1_SOURCES, initpri1_DEPENDENCIES): New variables.
2699         (initpri1_LDFLAGS): New variable.
2700         * configure, Makefile.in, testsuite/Makefile.in: Rebuild.
2701
2702 2008-03-27  Ian Lance Taylor  <iant@google.com>
2703
2704         * common.cc (Sort_commons::operator): Correct sorting algorithm.
2705         * testsuite/common_test_1.c: New file.
2706         * testsuite/Makefile.am (check_PROGRAMS): Add common_test_1.
2707         (common_test_1_SOURCES): New variable.
2708         (common_test_1_DEPENDENCIES): New variable.
2709         (common_test_1_LDFLAGS): New variable.
2710
2711         * symtab.cc (Symbol_table::add_from_object): Handle saw_undefined_
2712         and commons_ correctly when NAME/VERSION does not override
2713         NAME/NULL.
2714         * testsuite/ver_test_6.c: New file.
2715         * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_6
2716         (ver_test_6_SOURCES, ver_test_6_DEPENDENCIES): New variables.
2717         (ver_test_6_LDFLAGS, ver_test_6_LDADD): New variables.
2718
2719 2008-03-26  Ian Lance Taylor  <iant@google.com>
2720
2721         * symtab.cc (Symbol_table::add_from_relobj): Don't set the version
2722         of an undefined symbol from a version script.
2723         * testsuite/Makefile.am (ver_test_5.so): New target.
2724         (ver_test_5.o): New target.
2725         (check_SCRIPTS): Add ver_test_5.sh.
2726         (check_DATA): Add ver_test_5.syms.
2727         (ver_test_5.syms): New target.
2728         * testsuite/ver_test_5.cc: New file.
2729         * testsuite/ver_test_5.script: New file.
2730         * testsuite/ver_test_5.sh: New file.
2731         * Makefile.in, testsuite/Makefile.in: Rebuild.
2732
2733         PR gold/5986
2734         Fix problems building gold with gcc 4.3.0.
2735         * gold.h (TEMPLATE_ATTRIBUTE_PRINTF_4): Define.
2736         (gold_error_at_location, gold_warning_at_location): Use it.
2737         * configure.ac: Check whether we can compile and use a template
2738         function with a printf attribute.
2739         * x86_64.cc (Target_x86_64::do_code_fill): Swap out a 32-bit value
2740         when jumping over bytes.
2741         * object.cc: Instantiate Object::read_section_data.
2742         * debug.h: Include <cstring>
2743         * dwarf_reader.cc: Include <algorithm>
2744         * main.cc: Include <cstring>.
2745         * options.cc: Include <cstring>.
2746         * output.cc: Include <cstring>.
2747         * script.cc: Include <cstring>.
2748         * script.h: Include <string>.
2749         * symtab.cc: Include <cstring> and <algorithm>.
2750         * target-select.cc: Include <cstring>.
2751         * version.cc: Include <string>.
2752         * testsuite/testmain.cc: Include <cstdlib>.
2753         * configure, config.in: Rebuild.
2754
2755 2008-03-25  Ian Lance Taylor  <iant@google.com>
2756
2757         * options.cc: Include "../bfd/bfdver.h".
2758         (options::help): Print bug reporting address.
2759
2760         * version.cc (print_version): Adjust output for current value of
2761         BFD_VERSION_STRING.
2762
2763         * NEWS: New file.
2764
2765         * options.cc (options::help): Print list of supported targets.
2766         * target-select.h: Include <vector>.
2767         (class Target_selector): Make machine_, size_, and is_big_endian_
2768         fields const.  Add bfd_name_ and instantiated_target_ fields.
2769         (Target_selector::Target_selector): Add bfd_name parameter.
2770         (Target_selector::recognize): Make non-virtual, call
2771         do_recognize.
2772         (Target_selector::recognize_by_name): Make non-virtual, call
2773         do_recognize_by_name.
2774         (Target_selector::supported_names): New function.
2775         (Target_selector::bfd_name): New function.
2776         (Target_selector::do_instantiate_target): New pure virtual
2777         function.
2778         (Target_selector::do_recognize): New virtual function.
2779         (Target_selector::do_recognize_by_name): New virtual function.
2780         (Target_selector::instantiate_target): New private function.
2781         (supported_target_names): Declare.
2782         * target-select.cc (Target_selector::Target_selector): Update for
2783         new parameter and fields.
2784         (select_target_by_name): Check that the name matches before
2785         calling recognize_by_name.
2786         (supported_target_names): New function.
2787         * i386.cc (class Target_selector_i386): Update Target_selector
2788         constructor call.  Remove recognize and recognize_by_name.  Add
2789         do_instantiate_target.
2790         * x86_64.cc (class Target_selector_x86_64): Likewise.
2791         * testsuite/testfile.cc (class Target_selector_test): Update for
2792         changes to Target_selector.
2793
2794         * README: Rewrite, with some notes on unsupported features.
2795
2796 2008-03-24  Cary Coutant  <ccoutant@google.com>
2797
2798         * i386.cc (Target_i386::Got_type): New enum declaration.
2799         (Target_i386::Scan::local): Updated callers of Output_data_got
2800         member functions.
2801         (Target_i386::Scan::global): Likewise.
2802         (Target_i386::Relocate::relocate): Likewise.
2803         (Target_i386::Relocate::relocate_tls): Likewise.
2804         * object.h (Got_offset_list): New class.
2805         (Sized_relobj::local_has_got_offset): Added got_type parameter.
2806         (Sized_relobj::local_got_offset): Likewise.
2807         (Sized_relobj::set_local_got_offset): Likewise.
2808         (Sized_relobj::local_has_tls_got_offset): Removed.
2809         (Sized_relobj::local_tls_got_offset): Removed.
2810         (Sized_relobj::set_local_tls_got_offset): Removed.
2811         (Sized_relobj::Local_got_offsets): Changed to store a list of offsets.
2812         * output.cc (Output_data_got::add_global): Added got_type parameter.
2813         (Output_data_got::add_global_with_rel): Likewise.
2814         (Output_data_got::add_global_with_rela): Likewise.
2815         (Output_data_got::add_global_pair_with_rel): New function.
2816         (Output_data_got::add_global_pair_with_rela): New function.
2817         (Output_data_got::add_local): Added got_type parameter.
2818         (Output_data_got::add_local_with_rel): Likewise.
2819         (Output_data_got::add_local_with_rela): Likewise.
2820         (Output_data_got::add_local_pair_with_rel): New function.
2821         (Output_data_got::add_local_pair_with_rela): New function.
2822         (Output_data_got::add_global_tls): Removed.
2823         (Output_data_got::add_global_tls_with_rel): Removed.
2824         (Output_data_got::add_global_tls_with_rela): Removed.
2825         (Output_data_got::add_local_tls): Removed.
2826         (Output_data_got::add_local_tls_with_rel): Removed.
2827         (Output_data_got::add_local_tls_with_rela): Removed.
2828         * output.h (Output_data_got::add_global): Added got_type parameter.
2829         (Output_data_got::add_global_with_rel): Likewise.
2830         (Output_data_got::add_global_with_rela): Likewise.
2831         (Output_data_got::add_global_pair_with_rel): New function.
2832         (Output_data_got::add_global_pair_with_rela): New function.
2833         (Output_data_got::add_local): Added got_type parameter.
2834         (Output_data_got::add_local_with_rel): Likewise.
2835         (Output_data_got::add_local_with_rela): Likewise.
2836         (Output_data_got::add_local_pair_with_rel): New function.
2837         (Output_data_got::add_local_pair_with_rela): New function.
2838         (Output_data_got::add_global_tls): Removed.
2839         (Output_data_got::add_global_tls_with_rel): Removed.
2840         (Output_data_got::add_global_tls_with_rela): Removed.
2841         (Output_data_got::add_local_tls): Removed.
2842         (Output_data_got::add_local_tls_with_rel): Removed.
2843         (Output_data_got::add_local_tls_with_rela): Removed.
2844         * resolve.cc (Symbol::override_base_with_special): Removed
2845         reference to has_got_offset_ field.
2846         * symtab.cc (Symbol::init_fields): Replaced initialization
2847         of got_offset_ with got_offsets_.  Removed initialization
2848         of has_got_offset_
2849         * symtab.h (Symbol::has_got_offset): Aded got_type parameter.
2850         (Symbol::got_offset): Likewise.
2851         (Symbol::set_got_offset): Likewise.
2852         (Symbol::has_tls_got_offset): Removed.
2853         (Symbol::tls_got_offset): Removed.
2854         (Symbol::set_tls_got_offset): Removed.
2855         (Symbol::got_offset_): Removed.
2856         (Symbol::tls_mod_got_offset_): Removed.
2857         (Symbol::tls_pair_got_offset_): Removed.
2858         (Symbol::got_offsets_): New field.
2859         (Symbol::has_got_offset): Removed.
2860         (Symbol::has_tls_mod_got_offset): Removed.
2861         (Symbol::has_tls_pair_got_offset): Removed.
2862         * x86_64.cc (Target_x86_64::Got_type): New enum declaration.
2863         (Target_x86_64::Scan::local): Updated callers of Output_data_got
2864         member functions.
2865         (Target_x86_64::Scan::global): Likewise.
2866         (Target_x86_64::Relocate::relocate): Likewise.
2867         (Target_x86_64::Relocate::relocate_tls): Likewise.
2868
2869 2008-03-25  Ben Elliston  <bje@au.ibm.com>
2870
2871         * yyscript.y: Fix spelling error in comment.
2872
2873 2008-03-24  Ian Lance Taylor  <iant@google.com>
2874
2875         * options.h (class General_options): Define build_id option.
2876         * layout.h (class Layout): Declare write_build_id, create_note,
2877         create_build_id.  Add build_id_note_ member.
2878         * layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
2879         "libiberty.h", "md5.h", "sha1.h".
2880         (Layout::Layout): Initialize eh_frame_data_,
2881         eh_frame_hdr_section_, and build_id_note_.
2882         (Layout::finalize): Call create_build_id.
2883         (Layout::create_note): New function, broken out of
2884         Layout::create_gold_note.
2885         (Layout::create_gold_note): Call create_note.
2886         (Layout::create_build_id): New function.
2887         (Layout::write_build_id): New function.
2888         (Close_task_runner::run): Call write_build_id.
2889
2890         * x86_64.cc: Correct license to GPLv3.
2891
2892 2008-03-23  Ian Lance Taylor  <iant@google.com>
2893
2894         * options.cc: Include "demangle.h".
2895         (parse_optional_string): New function.
2896         (parse_long_option): Handle takes_optional_argument.
2897         (parse_short_option): Update dash_z initializer.  Handle
2898         takes_optional_argument.
2899         (General_options::General_options): Initialize do_demangle_.
2900         (General_options::finalize): Set do_demangle_.  Handle demangling
2901         style.
2902         * options.h (parse_optional_string): Declare.
2903         (struct One_option): Add optional_arg field.  Update constructor.
2904         Update call constructor calls.  Add takes_optional_argument
2905         function.
2906         (DEFINE_var): Add optional_arg__ parameter.  Change all callers.
2907         (DEFINE_optional_string): Define.
2908         (General_options::demangle): Change from DEFINE_bool to
2909         DEFINE_optional_string.
2910         (General_options::no_demangle): New function.
2911         (General_options::do_demangle): New function.
2912         (General_options::set_do_demangle): New function.
2913         (General_options::execstack_status_): Move definition to end of
2914         class definition.
2915         (General_options::static_): Likewise.
2916         (General_options::do_demangle_): New field.
2917         * object.cc (big_endian>::get_symbol_location_info): Call
2918         Options::do_demangle, not Options::demangle.
2919         * symtab.cc (demangle): Likewise.
2920
2921 2008-03-22  Ian Lance Taylor  <iant@google.com>
2922
2923         * gold.h: Include <cstddef> and <sys/types.h>
2924         * options.h: Include <cstring>.
2925
2926 2008-03-21  Ian Lance Taylor  <iant@google.com>
2927
2928         * Added source code to GNU binutils.