OSDN Git Service

0a1f815d8ba73c41f217ba5ccabdc1715035bc10
[pf3gnuchains/pf3gnuchains4x.git] / gold / ChangeLog
1 2009-09-17  Doug Kwan  <dougkwan@google.com>
2
3         * debug.h (DEBUG_RELAXATION): New constant.
4         (DEBUG_ALL): Add DEBUG_RELAXATION.
5         (debug_string_to_enum): Add relaxation debug option.
6         * layout.cc
7         (Layout::Relaxation_debug_check::check_output_data_for_reset_values,
8         Layout::Relaxation_debug_check::read_sections,
9         Layout::Relaxation_debug_check::read_sections): New method definitions.
10         (Layout::Layout): Initialize data members
11         record_output_section_data_from_scrips_,
12         script_output_section_data_list_ and relaxation_debug_check_.
13         (Layout::save_segments, Layout::restore_segments,
14         Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
15         Layout::relaxation_loop_body): New method definitions.
16         (Layout::finalize): Support relaxation.  Move section layout code to
17         Layout::relaxation_loop_body.
18         (Layout::set_asection_address_from_script): Move code for orphan
19         section placement out.
20         (Layout::place_orphan_sections_in_script): New method definition.
21         * layout.h (Output_segment_headers, Output_file_header):
22         New forward class declarations.
23         (Layout::~Layout): Define.
24         (Layout::new_output_section_data_from_script): New method definition.
25         (Layout::place_orphan_sections_in_script): New method declaration.
26         (Layout::Segment_states): New type declaration.
27         (Layout::save_segments, Layout::restore_segments,
28         Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
29         Layout::relaxation_loop_body): New method declarations.
30         (Layout::Output_section_data_list): New type declaration.
31         (Layout::Relaxation_debug_check): New class definition.
32         (Layout::record_output_section_data_from_script_,
33         Layout::script_output_section_data_list_, Layout::segment_states_,
34         Layout::relaxation_debug_check_): New data members.
35         * output.cc: (Output_section_headers::do_size): New method definition.
36         (Output_section_headers::Output_section_headers): Move size
37         computation to Output_section_headers::do_size.
38         (Output_segment_headers::do_size): New method definition.
39         (Output_file_header::Output_file_header): Move size computation to 
40         Output_file_header::do_size and call it.
41         (Output_file_header::do_size): New method definition.
42         (Output_data_group::Output_data_group): Adjust call to
43         Output_section_data.
44         (Output_data_dynamic::set_final_data_size): Add DT_NULL tag only once.
45         (Output_symtab_xindex::do_write): Add array bound check.
46         (Output_section::Input_section::print_to_mapfile): Handle
47         RELAXED_INPUT_SECTION_CODE.
48         (Output_section::Output_section): Initialize data member checkpoint_.
49         (Output_section::~Output_section): Delete checkpoint object pointed
50         by checkpoint_.
51         (Output_section::add_input_section): Always add an Input_section if
52         relaxing.
53         (Output_section::add_merge_input_section): Add assert.
54         (Output_section::relax_input_section): New method definition.
55         (Output_section::set_final_data_size): Set load address to zero for
56         an unallocated section.
57         (Output_section::do_address_and_file_offset_have_reset_values):
58         New method definition.
59         (Output_section::Input_section_sort_enty::Input_section_sort_enty):
60         Handle relaxed input section.
61         (Output_section::sort_attached_input_sections): Checkpoint input
62         section list lazily.
63         (Output_section::get_input_sections): Change type of input_sections to
64         list of Simple_input_section pointers.  Checkpoint input section list
65         lazily.  Also handle relaxed input sections.
66         (Output_section::add_input_section_for_script): Take a reference to
67         a Simple_input_section object instead of Relobj pointer and section
68         index as parameter.  Handle relaxed input sections.
69         (Output_section::save_states, Output_section::restore_states): New
70         method definitions.
71         * output.h (Output_data::Output_data): Initialize is_data_size_fixed_.
72         (Output_data::is_data_size_fixed): New method definition.
73         (Output_data::reset_addresss_and_file_offset): Do not reset data size
74         if it is fixed.
75         (Output_data::address_and_file_offset_have_reset_values): New method
76         definition.
77         (Output_data::do_address_and_file_offset_have_reset_values): New method
78         definition.
79         (Output_data::set_data_size): Check that data size is not fixed.
80         (Output_data::fix_data_size): New method definition.
81         (Output_data::is_data_size_fixed_): New data member.
82         (Output_section_headers::set_final_data_size): New method definition.
83         (Output_section_headers::do_size): New method declaration.
84         (Output_segment_headers::set_final_data_size): New method definition.
85         (Output_segment_headers::do_size): New method declaration.
86         (Output_file_header::set_final_data_size)::New method definition.
87         (Output_file_header::do_size)::New method declaration.
88         (Output_section_data::Output_section_data): Add new parameter
89         is_data_size_fixed and use it to fix data size.
90         (Output_data_const::Output_data_const): Adjust call to base class
91         constructor and fix data size.
92         (Output_data_const_buffer::Output_data_const_buffer): Adjust call to
93         base class constructor and fix data size.
94         (Output_data_fixed_space::Output_data_fixed_space): Adjust call to
95         base class constructor and fix data size.
96         (Output_data_zero_fill::Output_data_zero_fill): Adjust call to base
97         class constructor and fix data size.
98         (Output_data_group::set_final_data_size): New method definition.
99         (Output_data_dynamic::Dynamic_entry::tag): New method definition.
100         (Output_symtab_xindex::Output_symtab_xindex): Adjust call to base
101         class constructor and fix data size.
102         (Output_relaxed_input_section): New class definition.
103         (Output_section::Simple_input_section): New class definition.
104         (Output_section::get_input_sections): Adjust parameter list.
105         (Output_section::add_input_section_for_script): Same.
106         (Output_section::save_states, Output_section::restore_states,
107         Output_section::do_address_and_file_offset_have_reset_values,
108         (Output_section::Input_section::Input_section): Handle
109         RELAXED_INPUT_SECTION_CODE.  Add new overload for
110         Output_relaxed_input_section.
111         (Output_section::Input_section::is_input_section,
112         Output_section::Input_section::set_output_section): Handle relaxed
113         input section.
114         (Output_section::Input_section::is_relaxed_input_section,
115         Output_section::Input_section::output_section_data,
116         Output_section::Input_section::relaxed_input_section): New method
117         definitions.
118         (Output_section::Input_section::RELAXED_INPUT_SECTION_CODE): New enum
119         value.
120         (Output_section::Input_section::u1_): Update comments.
121         (Output_section::Input_section::u2_): Add new union member poris.
122         (Output_section::Checkpoint_output_section): New classs definition.
123         (Output_section::relax_input_section): New method declaration.
124         (Output_section::checkpoint_): New data member.
125         (Output_segment): Update comments.
126         (Output_segment::Output_segment): Un-privatize copy constructor.
127         (Output_segment::operator=): Un-privatize.
128         * script-sections.cc (Output_section_element::Input_section_list):
129         Change element type to Output_section::Simple_input_section.
130         (Output_section_element_dot_assignment::set_section_addresses):
131         Register output section data for relaxation clean up.
132         (Output_data_exression::Output_data_expression): Adjust call to base
133         constructor to fix data size.
134         (Output_section_element_data::set_section_addresses): Register
135         Output_data_expression object for relaxation clean up.
136         (struct Input_section_info): Replace Relobj pointer and section index
137         pair with Output_section::Simple_input_section and Convert struct to a
138         class.
139         (Input_section_sorter::operator()): Adjust access to
140         Input_section_info data member to use accessors. 
141         (Output_section_element_input::set_section_addresses): Use layout
142         parameter.  Adjust code to use Output_section::Simple_input_section
143         and Input_secction_info classes.  Register filler for relaxation
144         clean up.
145         (Orphan_output_section::set_section_addresses): Replace Relobj pointer
146         and section index pair with Output_section::Simple_input_section
147         class.  Adjust code accordingly.
148         (Phdrs_element::release_segment): New method definition.
149         (Script_sections::attach_sections_using_phdrs_clause): Do not modify
150         segment list.
151         (Script_sections::release_segments): New method definition.
152         * gold/script-sections.h (Script_sections::release_segments): New
153         method declaration.
154         * gold/target.h (Target::may_relax, Target::relax,
155         Target::do_may_relax, Target::do_relax): New method definitions.
156
157 2009-09-17  Viktor Kutuzov  <vkutuzov@accesssoftek.com>
158
159         * arm.cc (has_signed_unsigned_overflow): New function.
160         (Arm_relocate_functions::abs8): New function.
161         (Target_arm::Scan::local): Handle R_ARM_ABS8.
162         (Target_arm::Scan::global): Likewise.
163         (Target_arm::relocate::relocate): Likewise.
164         (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc):
165         Likewise.
166
167 2009-09-08  Cary Coutant  <ccoutant@google.com>
168
169         * testsuite/Makefile.am (MOSTLYCLEANFILES): Add more generated files.
170         * testsuite/Makefile.in: Regenerate.
171
172 2009-09-11  Nick Clifton  <nickc@redhat.com>
173
174         * po/gold.pot: Updated by the Translation project.
175
176 2009-09-08  Cary Coutant  <ccoutant@google.com>
177
178         * output.cc (Output_file::open): Add execute permission to empty file.
179         * testsuite/Makefile.am (permission_test): New test.
180         * testsuite/Makefile.in: Regenerate.
181
182 2009-09-02  Ian Lance Taylor  <iant@google.com>
183
184         * output.cc (Output_file::resize): Call map_no_anonymous rather
185         than map.
186
187 2009-09-01  Mikolaj Zalewski  <mikolajz@google.com>
188
189         * gold.cc: Include "incremental.h".
190         (queue_initial_tasks): Call Incremental_checker methods.
191         * incremental.cc: Include "output.h".
192         (Incremental_checker::can_incrementally_link_output_file): New
193         method.
194         * incremental.h (Incremental_checker): New class.
195
196         * output.cc (Output_file::open_for_modification): New method.
197         (Output_file::map_anonymous): Changed return type to bool.  Record
198         map in base_ field.
199         (Output_file::map_no_anonymous): New method, broken out of map.
200         (Output_file::map): Use map_no_anonymous and map_anonymous.
201         * output.h (class Output_file): Update declarations.
202
203 2009-08-24  Cary Coutant  <ccoutant@google.com>
204
205         * options.h (Command_line::Pre_options): New class.
206         (Command_line::pre_options): New member.
207         * options.cc (gold::options::ready_to_register): New variable.
208         (One_option::register_option): Do nothing if not registering options.
209         Assert if same short option registered twice.
210         (General_options::General_options): Turn off option registration when
211         done constructing.
212         (Command_line::Pre_options::Pre_options): New constructor.
213
214 2009-08-24  Cary Coutant  <ccoutant@google.com>
215
216         * options.h (General_options::no_keep_memory): Remove incorrect
217         short option.
218
219 2009-08-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
220
221         * Makefile.am (am__skiplex, am__skipyacc): New.
222         * Makefile.in: Regenerate.
223
224 2009-08-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
225
226         * Makefile.am (AM_CPPFLAGS): Renamed from ...
227         (INCLUDES): ... this.
228         * testsuite/Makefile.am (AUTOMAKE_OPTIONS): Add -Wno-portability.
229         (AM_CPPFLAGS): Renamed from ...
230         (INCLUDE): ... this.
231         * Makefile.in, testsuite/Makefile.in: Regenerate.
232
233         * Makefile.in: Regenerate.
234         * aclocal.m4: Likewise.
235         * config.in: Likewise.
236         * configure: Likewise.
237         * testsuite/Makefile.in: Likewise.
238
239         * Makefile.am (AUTOMAKE_OPTIONS): Add foreign.
240         * testsuite/Makefile.am (AUTOMAKE_OPTIONS): Add foreign.
241         * Makefile.in: Regenerate.
242         * testsuite/Makefile.in: Regenerate.
243
244 2009-08-19  Cary Coutant  <ccoutant@google.com>
245
246         * resolve.cc (Symbol_table::resolve): Don't complain about defined
247         symbols in shared libraries overridden by hidden or internal symbols
248         in the main program.
249
250 2009-08-19  Chris Demetriou  <cgd@google.com>
251
252         * testsuite/debug_msg.sh: Match .* rather than ${srcdir} when
253         checking source file names in error messages.
254
255 2009-08-18  Doug Kwan  <dougkwan@google.com>
256
257         * dynobj.cc (Sized_dynobj::setup): Take a Target object instead of
258         an elcpp::Ehdr as parameter.  Adjust call to set_target.
259         * dynobj.h (Sized_dynobj::setup): Take a Target object instead of
260         an elfcpp::Ehdr as parameter.
261         * object.cc (Object::set_target): Remove the version that looks up
262         a target and sets it.
263         (Sized_relobj::setup): Take a Target object instead of
264         an elfcpp::Ehdr as parameter.  Adjust call to set_target.
265         (make_elf_sized_object): Find target and ask target to
266         make an ELF object.
267         * object.h: (Object::set_target): Remove the version that looks up
268         a target and sets it.
269         (Sized_relobj::setup): Take a Target object instead of
270         an elfcpp:Ehdr as parameter.
271         * target.cc: Include dynobj.h.
272         (Target::do_make_elf_object_implementation): New.
273         (Target::do_make_elf_object): New.
274         * target.h (Target::make_elf_object): New template declaration.
275         (Target::do_make_elf_object): New method declarations.
276         (Target::do_make_elf_object_implementation): New template declaration.
277
278 2009-08-14  Ian Lance Taylor  <iant@google.com>
279
280         * gold.h (FUNCTION_NAME): Define.
281         (gold_unreachable): Use FUNCTION_NAME.
282
283 2009-08-12  Sriraman Tallam  <tmsriram@google.com>
284
285         * icf.cc (Icf::find_identical_sections): Issue a warning when a
286         symbol in the --keep-unique list is not found.
287
288 2009-08-12  Sriraman Tallam  <tmsriram@google.com>
289
290         * icf.cc (Icf::find_identical_sections): Unfold symbols that have
291         been maked as --keep-unique.
292         (Icf::unfold_section): New function.
293         * icf.h (Icf::unfold_section): New function.
294         * options.h (General_options::keep_unique): New option.
295         * testsuite/Makefile.am: Add commands to build icf_keep_unique_test.
296         * testsuite/Makefile.in: Regenerate.
297         * testsuite/icf_keep_unique_test.sh: New file.
298         * testsuite/icf_keep_unique_test.cc: New file.
299
300 2009-08-12  Cary Coutant  <ccoutant@google.com>
301
302         PR 10471
303         * resolve.cc (Symbol_table::resolve): Check for references from
304         dynamic objects to hidden and internal symbols.
305         * testsuite/Makefile.am (hidden_test.sh): New test.
306         * testsuite/Makefile.in: Regenerate.
307         * testsuite/hidden_test.sh: New script.
308         * testsuite/hidden_test_1.c: New test source.
309         * testsuite/hidden_test_main.c: New test source.
310
311 2009-08-11  Doug Kwan  <dougkwan@google.com>
312
313         * arm.cc: Update comments.
314         (Target_arm::do_finalize_sections): Add a special PT_ARM_EXIDX
315         segment to locate the .ARM.exidx section if present.
316
317 2009-08-09  Doug Kwan  <dougkwan@google.com>
318
319         * dynobj.h (Sized_dynobj::do_section_entsize): Revert the previous
320         patch.
321
322 2009-08-07  Sriraman Tallam  <tmsriram@google.com>
323         * dynobj.h (Sized_dynobj::do_section_entsize): Add return to avoid
324         compiler warnings.
325
326 2009-08-06  Sriraman Tallam  <tmsriram@google.com>
327
328         * x86_64.cc (Target_x86_64::Relocate::relocate_tls): Check for a
329         valid tls_segment only for non-debug-section relocations.
330         * testsuite/Makefile.am: Add gc_tls_test.
331         * testsuite/Makefile.in: Regenerate.
332         * testsuite/gc_tls_test.cc: New file.
333         * testsuite/gc_tls_test.sh: New file.
334
335 2009-08-05  Sriraman Tallam  <tmsriram@google.com>
336         
337         * icf.cc: New file.
338         * icf.h: New file.
339         * Makefile.am (CCFILES): Add icf.cc.
340         (HFILES): Add icf.h
341         * Makefile.in: Regenerate.
342         * dynobj.h (Sized_dynobj::do_section_entsize): New function.
343         * gc.h (gc_process_relocs): Populate lists used by icf to contain
344         section, symbol and addend information for the relocs.
345         * gold.cc (queue_middle_tasks): Call identical code folding.
346         * gold.h: Add defines for multimap.
347         * layout.cc (Layout::create_symtab_sections): Add symtab as parameter
348         to the call of finalize_local_symbols.
349         * main.cc (main): Create object of class Icf.
350         * object.cc (Sized_relobj::do_layout): Allow this function to be
351         called twice during icf.
352         (Sized_relobj::do_finalize_local_symbols): Fold symbols corresponding
353         to sections marked as identical by icf.
354         (Sized_relobj::do_section_flags): Get section_flags from Symbols_data
355         when available.
356         (Sized_relobj::do_section_entsize): New function.
357         * object.h (Object::section_entsize): New function.
358         (Object::do_section_entsize): New pure virtual function.
359         (Relobj::finalize_local_symbols): Add new parameter.
360         (Relobj::do_section_entsize): New function.
361         * options.h (General_options::icf): New option.
362         (General_options::icf_iterations): New option.
363         (General_options::print_icf_sections): New option.
364         * plugin.cc (Sized_pluginobj::do_section_entsize): New function.
365         * plugin.h (Sized_pluginobj::do_section_entsize): New function.
366         * reloc.cc (Read_relocs::run): Delay scanning relocs when doing
367         icf.
368         * symtab.cc (Symbol_table::is_section_folded): New function.
369         (Symbol_table::sized_finalize_symbol):  Fold symbols corresponding
370         to sections marked as identical by icf.
371         * symtab.h (Symbol_table::set_icf): New function.
372         (Symbol_table::icf): New function.
373         (Symbol_table::is_section_folded): New function.
374         (Symbol_table::icf_): New data member.
375         * target-reloc.h (relocate_section): Ignore sections folded by icf.
376         * testsuite/Makefile.am: Add commands to build icf_test.
377         * testsuite/Makefile.in: Regenerate.
378         * testsuite/icf_test.sh: New file.
379         * testsuite/icf_test.cc: New file.
380
381 2009-07-24  Chris Demetriou  <cgd@google.com>
382
383         * layout.cc (is_compressible_debug_section): Fix incorrect
384         comment about compressed section names.
385
386 2009-07-20  Ian Lance Taylor  <ian@airs.com>
387
388         PR 10419
389         * x86_64.cc (Target_x86_64::do_code_fill): Correct nop sequences.
390
391 2009-07-16  Ian Lance Taylor  <iant@google.com>
392
393         PR 10400
394         * layout.h: #include <map>.
395         (class Kept_section): Change from struct to class.  Add accessors
396         and setters.  Add section size to Comdat_group mapping.  Change
397         Comdat_group to std::map.  Add is_comdat_ field.  Add
398         linkonce_size field in union.
399         (class Layout): Update declaration of find_or_add_kept_section.
400         Don't declare find_kept_object.
401         * layout.cc (Layout::find_or_add_kept_section): Remove candidate
402         parameter.  Add object, shndx, is_comdat, and is_group_name
403         parameters.  Change all callers.  Adjust for new Kept_section.
404         (Layout::find_kept_object): Remove.
405         * object.cc (Sized_relobj::include_section_group): Update use of
406         Kept_section.  Rename secnum to shndx.  Only record
407         Kept_comdat_section if sections are the same size.
408         (Sized_relobj::include_linkonce_section): Update use of
409         Kept_section.  Only record Kept_comdat_section if sections are the
410         same size.  Set size of linkonce section.
411         (Sized_relobj::map_to_kept_section): Update call to
412         get_kept_comdat_section.
413         * object.h (class Sized_relobj): Rename fields in
414         Kept_comdat_section to drop trailing underscores; change object
415         field to Relobj*.  Change Kept_comdat_section_table to store
416         struct rather than pointer.
417         (Sized_relobj::set_kept_comdat_section): Remove kept parameter.
418         Add kept_object and kept_shndx parameters.  Change all callers.
419         (Sized_relobj::get_kept_comdat_section): Change return type to
420         bool.  Add kept_object and kept_shndx parameters.  Change all
421         callers.
422         * plugin.cc (Pluginobj::include_comdat_group): Update call to
423         Layout::find_or_add_kept_section.
424
425 2009-07-09  Ian Lance Taylor  <iant@google.com>
426
427         * merge.cc (Object_merge_map::initialize_input_to_output_map):
428         Reserve space in the hash table.
429
430 2009-07-06  Mikolaj Zalewski  <mikolajz@google.com>
431
432         * fileread.cc (File_read::get_mtime): New method.
433         * fileread.h (Timespec): New structure.
434         (File_read::get_mtime): New method.
435         * incremental.cc (Incremental_inputs_entry_data::timestamp_usec):
436         Renamed from timestamp_nsec.
437         (Incremental_inputs_entry_write::timestamp_sec): Fix argument to
438         Elf_Xword.
439         (Incremental_inputs_entry_write::timestamp_usec): Renamed from 
440         timestamp_nsec.
441         (Incremental_inputs::report_archive): Save mtime; style fix. 
442         (Incremental_inputs::report_obejct): Save mtime; style fix.
443         (Incremental_inputs::report_script): Save mtime; style fix.
444         (Incremental_inputs::finalize_inputs): Style fix.
445         (Incremental_inputs::finalize): Style fix.
446         (Incremental_inputs::create_input_section_data): Store inputs
447         mtime.
448         * incremental.h (Incremental_inputs::report_script): Add mtime
449         argument.
450         (Incremental_inputs::Input_info::Input_info): Intialize only one
451         union member.
452         (Incremental_inputs::Input_info::archive): Move to nameless
453         union.
454         (Incremental_inputs::Input_info::obejct): Move to nameless union.
455         (Incremental_inputs::Input_info::script): Move to nameless union.
456         (Incremental_inputs::mtime): New field.
457         * script.cc (read_input_script): Pass file mtime to
458         Incremental_input.
459         * script.h (Script_info::inputs): Style fix.
460
461 2009-07-01  Ian Lance Taylor  <ian@airs.com>
462
463         * freebsd.h (Target_freebsd::do_adjust_elf_header): Use size
464         instead of 32.
465
466 2009-06-24  Ian Lance Taylor  <iant@google.com>
467
468         PR 10156
469         * layout.cc (Layout::choose_output_section): If we find an
470         existing section, update the flags.
471         (Layout::create_notes): New function, broken out of
472         Layout::finalize.
473         (Layout::finalize): Don't create note sections.
474         (Layout::create_note): Don't crash if linker script discards
475         section.
476         (Layout::create_gold_note): Likewise.
477         (Layout::create_build_id): Likewise.  Don't set
478         after_input_sections on the section.
479         (Layout::create_executable_stack_info): Remove target parameter.
480         Change caller.
481         * layout.h (class Layout): Declare create_notes.  Update
482         declaration of create_executable_stack_info.
483         * gold.cc (queue_middle_tasks): Call create_notes.
484         * output.cc (Output_section::update_flags_for_input_section): Move
485         here from output.h.  If SHF_ALLOC flag is newly set, mark address
486         invalid.
487         * output.h (Output_data::mark_address_invalid): New function.
488         (class Output_section): Only declare, not define,
489         update_flags_for_input_section.  Remove set_flags.
490
491 2009-06-24  Ian Lance Taylor  <iant@google.com>
492
493         * script-sections.cc (Output_section_definition::
494         set_section_addresses): Rename shadowing local load_address to
495         laddr.
496
497 2009-06-24  Ian Lance Taylor  <iant@google.com>
498
499         PR 10244
500         * reloc.cc (relocate_sections): Skip empty relocation sections.
501
502 2009-06-23  Ian Lance Taylor  <iant@google.com>
503
504         PR 10156
505         * layout.cc (Layout::create_note): Use choose_output_section
506         rather than make_output_section.
507
508 2009-06-23  Ian Lance Taylor  <iant@google.com>
509
510         PR 10237
511         * options.cc (General_options::parse_V): Set printed_version_.
512         (General_options::General_options): Initialize printed_version_.
513         * options.h (class General_options): Add printed_version_ field.
514         * gold.cc (queue_initial_tasks): If there are no input files,
515         don't give a fatal error if we printed the version information.
516         (queue_middle_tasks): If using -r with a shared object, give a
517         fatal error rather than an ordinary error.
518
519 2009-06-23  Ian Lance Taylor  <iant@google.com>
520
521         PR 10219
522         * layout.cc (Layout::Layout): Initialize have_stabstr_section_.
523         (Layout::make_output_section): Set have_stabstr_section_ if we see
524         a .stab*str section.
525         (Layout::finalize): Call link_stabs_sections.
526         (Layout::link_stabs_sections): New file.
527         * layout.h (class Layout): Add have_stabstr_section_ field.
528         Declare link_stabs_sections.
529
530 2009-06-23  Doug Kwan  <dougkwan@google.com>
531
532         * Makefile.am (libgold_a_LIBADD): New.
533         (ld_new_DEPENDENCIES, ld_new_LDADD): Remove LIBOBJS
534         * Makefile.in: Regenerate.
535         * config.in (HAVE_DECL_MEMMEM, HAVE_DECL_STRNDUP): New.
536         * configure: Regenerate.
537         * configure.ac (AC_CHECK_DECLS): Add strndup and memmem.
538         * fileread.cc: Include sys/state.h
539         * gold.h: Declare memmem and strndup if found missing.
540         * gold_reloc.h: Include byteswap.h if HAVE_BYTESWAP_H is defined.
541
542 2009-06-23  Ian Lance Taylor  <iant@google.com>
543
544         * configure.ac: Call AC_CHECK_DECLS using C, not C++.
545         * configure: Rebuild.
546
547 2009-06-23  Ian Lance Taylor  <iant@google.com>
548
549         PR 10147
550         * object.cc (Object::section_contents): Don't try to get a view if
551         the section has length zero.
552         (Object::handle_gnu_warning_section): If the section is empty, use
553         the name of the section as the warning.
554
555 2009-06-23  Ian Lance Taylor  <iant@google.com>
556
557         PR 10133
558         * stringpool.h (class Stringpool_template): Add optimize_ field.
559         (Stringpool_template::set_optimize): New function.
560         * stringpool.cc (Stringpool_template::Stringpool_template):
561         Initialize optimize_ field.
562         (Stringpool_template::set_string_offsets): Test local optimize
563         fild rather than parameter.
564         * layout.cc (Layout::Layout): Call set_optimize on the section
565         name stringpool.
566
567 2009-06-22  Ian Lance Taylor  <iant@google.com>
568
569         PR 10030
570         * yyscript.y: Parse TARGET.
571         * script.cc (script_set_target): New function.
572         * script-c.h (script_set_target): Declare.
573         * options.cc (General_options::string_to_object_format): Rename
574         from string_to_object_format in anonymous namespace.  Change
575         callers.
576         * options.h (class General_options): Declare
577         string_to_object_format.
578
579 2009-06-22  Ian Lance Taylor  <iant@google.com>
580
581         * script-sections.cc (Script_sections::create_segments): Don't put
582         program headers in a PT_LOAD segment if -n or -N.
583
584 2009-06-22  Ian Lance Taylor  <iant@google.com>
585
586         PR 10141
587         * options.h (class General_options): Add -z lazy and -z now.  Sort
588         -z options into alphabetical order.
589         * layout.cc (Layout::finish_dynamic_section): Handle -z now.
590
591 2009-06-21  Ian Lance Taylor  <iant@google.com>
592
593         * layout.cc (Layout::make_output_section): Call
594         Target::new_output_section.
595         (Layout::attach_allocated_section_to_segment): Put large section
596         sections in a separate load segment with the large segment flag
597         set.
598         (Layout::segment_precedes): Sort large data segments after other
599         load segments.
600         (align_file_offset): New static function.
601         (Layout::set_segment_offsets): Use align_file_offset.
602         * output.h (class Output_section): Add is_small_section_ and
603         is_large_section_ fields.
604         (Output_section::is_small_section): New function.
605         (Output_section::set_is_small_section):  New function.
606         (Output_section::is_large_section): New function.
607         (Output_section::set_is_large_section): New function.
608         (Output_section::is_large_data_section): New function.
609         (class Output_segment): Add is_large_data_segment_ field.
610         (Output_segment::is_large_data_segment): New function.
611         (Output_segment::set_is_large_data_segment): New function.
612         * output.cc (Output_section::Output_section): Initialize new
613         fields.
614         (Output_segment::Output_segment): Likewise.
615         (Output_segment::add_output_section): Add assertion that large
616         data sections always go in large data segments.  Force small data
617         sections to the end of the list of data sections.  Force small BSS
618         sections to the start of the list of BSS sections.  For large BSS
619         sections to the end of the list of BSS sections.
620         * symtab.h (class Symbol): Declare is_common_shndx.
621         (Symbol::is_defined): Check Symbol::is_common_shndx.
622         (Symbol::is_common): Likewise.
623         (class Symbol_table): Define enum Commons_section_type.  Update
624         declarations.  Add small_commons_ and large_commons_ fields.
625         * symtab.cc (Symbol::is_common_shndx): New function.
626         (Symbol_table::Symbol_table): Initialize new fields.
627         (Symbol_table::add_from_object): Put small and large common
628         symbols in the right list.
629         (Symbol_table::sized_finalized_symbol): Check
630         Symbol::is_common_shndx.
631         (Symbol_table::sized_write_globals): Likewise.
632         * common.cc (Symbol_table::do_allocate_commons): Allocate new
633         common symbol lists.  Don't call do_allocate_commons_list if the
634         list is empty.
635         (Symbol_table::do_allocate_commons_list): Remove is_tls
636         parameter.  Add comons_section_type parameter.  Change all
637         callers.  Handle small and large common symbols.
638         * object.cc (Sized_relobj::do_finalize_local_symbols): Check
639         Symbol::is_common_shndx.
640         * resolve.cc (symbol_to_bits): Likewise.
641         * target.h (Target::small_common_shndx): New function.
642         (Target::small_common_section_flags): New function.
643         (Target::large_common_shndx): New function.
644         (Target::large_common_section_flags): New function.
645         (Target::new_output_section): New function.
646         (Target::Target_info): Add small_common_shndx, large_common_shndx,
647         small_common_section_flags, and large_common_section_flags
648         fields.
649         (Target::do_new_output_section): New virtual function.
650         * arm.cc (Target_arm::arm_info): Initialize new fields.
651         * i386.cc (Target_i386::i386_info): Likewise.
652         * powerpc.cc (Target_powerpc::powerpc_info) [all versions]:
653         Likewise.
654         * sparc.c (Target_sparc::sparc_info) [all versions]: Likewise.
655         * x86_64.cc (Target_x86_64::x86_64_info): Likewise.
656         (Target_x86_64::do_new_output_section): New function.
657         * configure.ac: Define conditional MCMODEL_MEDIUM.
658         * testsuite/Makefile.am (check_PROGRAMS): Add large.
659         (large_SOURCES, large_CFLAGS, large_DEPENDENCIES): Define.
660         (large_LDFLAGS): Define.
661         * testsuite/large.c: New file.
662         * testsuite/testfile.cc (Target_test::test_target_info):
663         Initialize new fields.
664         * configure, testsuite/Makefile.in: Rebuild.
665
666 2009-06-05  Doug Kwan  <dougkwan@google.com>
667
668         * Makefile.am (CCFILES): Add target.cc.
669         * Makefile.in: Regenerate. 
670         * i386.cc (class Target_i386): Define new virtual method to
671         override do_is_local_label_name in parent.
672         * object.cc (Sized_relobj::do_count_local_symbols): Discard
673         local symbols if --discard-locals or -X is given.
674         * options.h (class General_options): Declare new options
675         '--discard-locals' and '-X' for discarding locals.
676         * target.h (class Target): Define new methods is_local_label_name.
677         Declare new virtual method do_is_local_label_name.
678         * target.cc: New file.
679         * testsuite/Makefile.am (check_PROGRAMS): Add discard_locals_test.
680         (check_SCRIPTS): Add discard_locals_test.sh.
681         (check_DATA): Add discard_local_tests.syms.
682         (discard_locals_test_SOURCES, discard_locals_test_LDFLAGS): Define.
683         (discard_local_tests.syms, discard_locals_test.o): New make rules.
684         * testsuite/Makefile.in: Regenerate.
685         * testsuite/discard_locals_test.c: New file.
686         * testsuite/discard_locals_test.sh: Same.
687
688 2009-06-05  Doug Kwan  <dougkwan@google.com>
689
690         * object.cc (Sized_relobj::Sized_relobj): Initialize
691         discarded_eh_frame_shndx_ to -1U.
692         (Sized_relobj::do_layout): Record index of a discard .eh_frame
693         section.
694         (Sized_relobj::do_count_local_symbols): Skip local symbols in
695         a discarded .eh_frame section.
696         (Sized_relobj::do_finalize_local_symbols): Ditto.
697         * object.h (class Sized_relobj): Declare new member
698         discarded_eh_frame_shndx_.
699         * testsuite/Makefile.am (check_PROGRAMS): Add local_labels_test.
700         (local_labels_test.o, local_labels_test): New rules.
701         * testsuite/Makefile.in: Regenerate.
702
703 2009-06-04  Doug Kwan  <dougkwan@google.com>
704
705         * layout.cc (Layout::section_name_mapping): Add mapping for
706         special ARM sections.
707
708 2009-06-03  Doug Kwan  <dougkwan@google.com>
709
710         * arm.cc (utils::sign_extend): Reverse test in gold_assert.
711         (utils::has_overflow): Same.
712
713 2009-06-03  Ian Lance Taylor  <iant@google.com>
714
715         * layout.cc (Layout::section_name_mapping): New array, replacing
716         Layout::linkonce_mapping.
717         (Layout::section_name_mapping_count): New variable, replacing
718         Layout::linkonce_mapping_count.
719         (Layout::linkonce_output_name): Remove.
720         (Layout::output_section_name): Rewrite.
721         * layout.h (class Layout): Rename Linkonce_mapping to
722         Section_name_mapping, linkonce_mapping to section_name_mapping,
723         linkonce_mapping_count to section_name_mapping_count.  Don't
724         declare linkonce_output_name.
725
726 2009-06-03  Doug Kwan  <dougkwan@google.com>
727
728         * gold/arm.cc (namespace utils): New.
729         (Target_arm::reloc_is_non_pic): Define new method.
730         (class Arm_relocate_functions): New.
731         (Target_arm::Relocate::relocate): Handle relocation types used by
732         Android.
733
734 2009-06-03  Ian Lance Taylor  <iant@google.com>
735
736         * arm.cc (Target_arm::scan::global): Use || instead of |.
737
738 2009-06-02  Doug Kwan  <dougkwan@google.com>
739
740         * gold/arm.cc (Target_arm::Scan::Scan):  Initialize
741         issued_non_pic_error_.
742         (class Target_arm::Scan): Declare new method check_non_pic.
743         Define new method symbol_needs_plt_entry.
744         Declare new data member issued_non_pic_error_.
745         (class Target_arm::Relocate): Declare new method
746         should_apply_static_reloc.
747         (Target_arm::may_need_copy_reloc): Handle STT_ARM_TFUNC.
748         (Target_arm::Scan::check_non_pic): Define new method.
749         (Target_arm::Scan::local): Handle a small subset of reloc types used
750         by Android.
751         (Target_arm::Scan::local): Same.
752         (Target_arm::Relocate::should_apply_statci_reloc): Define new method.
753
754 2009-05-31  Mikolaj Zalewski  <mikolajz@google.com>
755
756         * incremental.cc (Incremental_inputs::report_command_line): Filter
757         out --incremental-* options.
758
759 2009-05-29  Doug Kwan  <dougkwan@google.com>
760
761         * gold/arm.cc (Output_data_plt_arm): Forward declaration for new
762         template class.
763         (class Target_arm): Update comment.
764         (Target_arm::Target_arm): Initialize new data members GOT_,
765         PLT_, GOT_PLT_, REL_DYN_, COPY_RELOCS_ and DYNBSS_.
766         Declare new methods Target_arm::got_section, Target_arm::make_plt_entry
767         and Target_arm::rel_dyn_section.
768         Declare new_enum Target_arm::Got_type.
769         Declare new data members GOT_, PLT_, GOT_PLT_, REL_DYN_, COPY_RELOCS_
770         and DYNBSS_.
771         Update commments for member do_dynsym_value.
772         (Target_arm::got_size, Target_arm::plt_section,
773         Target_arm::may_need_copy_reloc and Target_arm::copy_reloc): Define
774         new methods inside class defintion.
775         (Target_arm::got_section): Define new method.
776         (Target_arm::rel_dyn_section): Same.
777         (Output_data_plt_arm): New template class.
778         (Output_data_plt_arm::Output_data_plt_arm): Define constructor.
779         (Output_data_plt_arm:do_adjust_output_section): Define new method.
780         (Output_data_plt_arm::add_entry): Same.
781         (Output_data_plt_arm::first_plt_entry): Define new
782         static data member for PLT instruction template.
783         (Output_data_plt_arm::plt_entry): Same.
784         (Output_data_plt_arm::do_write): Define new method.
785         (Target_arm::make_plt_entry): Same.
786         (Target_arm::do_finalize_sections): Same.
787         (Target_arm::do_dynsym_value): Same.
788
789 2009-05-28  Doug Kwan  <dougkwan@google.com>
790
791         * Makefile.am (TARGETSOURCES): Add arm.cc.
792         (ALL_TARGETOBJECTS): Add arm.$(OBJEXT)
793         * Makefile.in: Regenerate.
794         * arm.cc: New file.
795         * configure.tgt: Add armbe*-*-*, armeb*-*-* and arm*-*-* targets.
796
797 2009-05-26  Doug Kwan  <dougkwan@google.com>
798
799         * options.cc (General_options::parse_exclude_libs).  Fix a comment.
800         (General_options::check_excluded_libs): Strip off directories in
801         archive name before matching like GNU ld does.
802         * testsuite/Makefile.am (MOSTLYCLEANFILES,
803         exclude_libs_test_DEPENDENCIES): Add alt/libexclude_libs_test_3.a
804         (exclude_libs_test_LDFLAGS): Add linker option
805         -Wl,--exclude-libs,libexclude_libs_test_3
806         (exclude_libs_test_LADD): Add alt/libexclude_libs_test_3.a as
807         an explicit archive without using -l.
808         (alt/libexclude_libs_test_3.a): New make rule.
809         * testsuite/Makefile.in: Regenerate.
810         * testsuite/exclude_libs_test.c : Declare lib3_default().
811         (main): Call it.
812         * exclude_libs_test.sh: Add tests for alt/exclude_libs_test_3.a.
813         * exclude_libs_test_3.c: New file.
814
815 2009-05-26  Nick Clifton  <nickc@redhat.com>
816
817         * po/id.po: New Indonesian translation.
818         * po/gold.pot: Updated template file.
819
820 2009-05-22  Sriraman Tallam  <tmsriram@google.com>
821
822         * testsuite/Makefile.am: Add -ffunction-sections to compile 
823         gc_comdat_test files.  Add -Wl,--gc-sections to build
824         gc_comdat_test.
825         * testsuite/Makefile.in: Regenerate.
826         * testsuite/gc_comdat_test.sh: Fix the condition around grep.
827
828 2009-05-21  Sriraman Tallam  <tmsriram@google.com>
829
830         * object.cc (Sized_relobj::map_to_kept_section): Return NULL if the
831         kept comdat section was garbage collected.
832         * testsuite/Makefile.am: Add test gc_comdat_test.sh.
833         * testsuite/Makefile.in: Regenerate.
834         * testsuite/gc_comdat_test.sh: New file.
835         * testsuite/gc_comdat_test_1.cc: New file.
836         * testsuite/gc_comdat_test_2.cc: New file.
837
838 2009-05-19  Doug Kwan  <dougkwan@google.com>
839
840         * archive.cc (Archive::Archive): Move constructor from archive.h
841         to here.  Initialize no_export_.
842         (Archive::get_elf_object_for_member): Set no_export flag of object.
843         * archive.h (Archive::Archive): Move constructor body to
844         archive.cc.
845         (Archive::no_export): New method.
846         (Archive::no_export_): New field.
847         * object.h (Object::Object): Initialize no_export_ to false.
848         (Object::no_export, Object::set_no_export): New methods.
849         (Object::no_export_): New field.
850         * options.cc (General_options::parse_exclude_libs): New method.
851         (General_options::check_excluded_libs) Same.
852         * options.h (exclude_libs): New option.
853         (General_options::check_excluded_libs): New method declaration.
854         (General_options::excluded_libs_): New field.
855         * symtab.cc (Symbol_table::add_from_relobj): Hide symbols with
856         default or protected visibility if an object has no-export flag set.
857         testsuite/Makefile.am (check_PROGRAMS): Add exclude_libs_test.
858         (check_SCRIPTS): Add exclude_libs_test.sh.
859         (check_DATA): Add exclude_libs_test.syms.
860         (MOSTLYCLEANFILES): Add exclude_libs_test.syms,
861         libexclude_libs_test_1.a and libexclude_libs_test_2.a.
862         (exclude_libs_test_SOURCES, exclude_libs_test_DEPENDENCIES,
863         exclude_libs_test_LDFLAGS and exclude_libs_test_LDADD): Define.
864         (exclude_libs_test.syms, libexclude_libs_test_1.a,
865         libexclude_libs_test_2.a): New rules.
866         * testsuite/Makefile.in: Regenerate.
867         * testsuite/exclude_libs_test.c: New file.
868         * testsuite/exclude_libs_test.sh: Ditto.
869         * testsuite/exclude_libs_test_1.c: Ditto.
870         * testsuite/exclude_libs_test_2.c: Ditto.
871
872 2009-05-15  Ian Lance Taylor  <iant@google.com>
873
874         * configure.ac: Check for declarations for cases where libiberty.h
875         checks HAVE_DECL_xxx.
876         * configure, config.in: Rebuild.
877
878 2009-05-15  Mikolaj Zalewski  <mikolajz@google.com>
879
880         * gold.h (Incremental_argument_list): Remove (invalid) forward
881         declaration.
882         * incremental.cc (Incremental_inputs::report_achive): New method.
883         (Incremental_inputs::report_object): New method.
884         (Incremental_inputs::report_script): New method.
885         (Incremental_inputs::finalize_inputs): New method.
886         (Incremental_inputs::finalize): Call finalize_inputs().
887         (Incremental_inputs::sized_create_incremental_inputs_section_data):
888         Create inputs entries.
889         * incremental.h (Incremental_input_type): New enum.
890         (Incremental_inputs::Incremental_input): Initialize new fields.
891         (Incremental_inputs::report_inputs): New method.
892         (Incremental_inputs::report_achive): New method.
893         (Incremental_inputs::report_object): New method.
894         (Incremental_inputs::report_script): New method.
895         (Incremental_inputs::finalize_inputs): New method.
896         (Incremental_inputs::Input_info): New struct.
897         (Incremental_inputs::Input_info_map): New typedef.
898         (Incremental_inputs::lock_): New field.
899         (Incremental_inputs::Inputs_): New field.
900         (Incremental_inputs::Inputs_map): New field.
901         * main.cc (main): Call Incremental_input::report_inputs.
902         * options.h (Input_argument_list): Typedef moved from
903         Input_arguments.
904         (Input_file_group::Files): Remove, use ::Input_argument_list.
905         (Input_file_group::Input_argument_list): Remove, use
906         ::Input_argument_list.
907         * plugin.cc (Plugin_manager::add_input_file): Add error in
908         incremental build.
909         * read_syms.cc (do_read_syms): Call Incremental_input::report_*
910         functions.
911         * script.cc (read_input_script): Call
912         Incremental_input::report_script.
913         * script.h (Script_info): New class.
914
915 2009-04-27  Ian Lance Taylor  <iant@google.com>
916
917         * x86_64.cc (do_adjust_output_section): Set entsize to
918         plt_entry_size.
919
920 2009-04-23  Elliott Hughes  <enh@google.com>
921
922         * output.cc (Output_file::close): After short writes, continue
923         writing from the correct offset in the buffer being written.
924
925 2009-04-23  Chris Demetriou  <cgd@google.com>
926
927         * configure.ac (HAVE_TR1_UNORDERED_MAP_REHASH): New define.
928         * configure: Regenerate.
929         * config.in: Regenerate.
930         * gold.h: Avoid std::tr1::unordered_map and std::tr1::unordered_set
931         if HAVE_TR1_UNORDERED_MAP_REHASH is not defined.
932
933 2009-04-21  Mikolaj Zalewski  <mikolajz@google.com>
934
935         * incremental.cc (Incremental_inputs_header_data): Renamed from
936         Incremental_input_header_data.
937         (Incremental_inputs_header_data::data_size): New field.
938         (Incremental_inputs_header_data::put_input_file_count): Renamed
939         from input_file_count.
940         (Incremental_inputs_header_data::put_command_line_offset): Renamed
941         from command_line_offset.
942         (Incremental_inputs_header_data::put_reserved): Renamed from
943         put_reserved.
944         (Incremental_inputs_entry_data): Renamed from
945         Incremental_input_entry_data.
946         (Incremental_inputs_entry_data::data_size): New field.
947         (Incremental_inputs::report_command_line): New method.
948         (Incremental_inputs::finalize): New method.
949         (Incremental_inputs::create_incremental_inputs_data): New method.
950         (Incremental_inputs::sized_create_incremental_inputs_data): New method.
951         * incremental.h: New file.
952         * layout.cc (Layout::Layout): Handle new incremental_inputs_.
953        (Layout::finalize): Create incremental inputs section in
954         incremental builds.
955        (Layout::create_incremental_info_sections): New method.
956         * layout.h (Layout::incremental_inputs): New method.
957        (Layout::create_incremental_info_sections): New method.
958        (Layout::incremental_inputs_): New field.
959         * main.cc (main): Notify Incremental_input of the command line.
960
961 2009-04-01  Ian Lance Taylor  <iant@google.com>
962             Mikolaj Zalewski  <mikolajz@google.com>
963
964         * gold.h (reserve_unordered_map): Define, three versions, one for
965         each version of Unordered_map.
966         * layout.cc (Layout::Layout): Remove options parameter.  Add
967         number_of_input_files parameter.  Don't initialize options_.
968         Initialize number_of_input_files_ and resized_signatures_.  Move
969         sections_are_attached_.
970         (Layout::layout_group): Reserve space for group_signatures_.
971         (Layout::find_or_add_kept_section): Change name parameter to be a
972         reference.  Resize signatures_ map when it gets large enough.
973         (Layout::layout_eh_frame): Use parameters->options() instead of
974         this->options_.
975         (Layout::make_output_section): Likewise.
976         (Layout::attach_allocated_section_to_segment): Likewise.
977         (Layout::finalize, Layout::create_executable_stack): Likewise.
978         (Layout::set_segment_offsets, Layout::create_interp): Likewise.
979         (Layout::finish_dynamic_section, Layout::write_binary): Likewise.
980         * layout.h (class Layout): Update declarations.  Remove options_
981         field.  Add number_of_input_files_ and resized_signatures_
982         fields.  Move sections_are_attached_ field.
983         * main.cc (main): Pass number of input files to Layout
984         constructor.  Don't pass options.
985
986 2009-03-30  Ian Lance Taylor  <iant@google.com>
987
988         * ffsll.c (ffsll): Correct implementation.
989
990 2009-03-27  Ian Lance Taylor  <iant@google.com>
991
992         * ffsll.c: New file.
993         * configure.ac: Call AC_REPLACE_FUNCS on ffsll.
994         * gold.h (ffsll): Declare if HAVE_FFSLL is not defined.
995         * ftruncate.c (ftruncate): Declare before definition.
996         * mremap.c (mremap): Likewise.
997         * pread.c (pread): Likewise.
998         * configure, Makefile.in, config.in: Rebuild.
999
1000         * mremap.c: New file.
1001         * configure.ac: Call AC_REPLACE_FUNCS on mremap.
1002         * gold.h (MREMAP_MAYMOVE): Define if HAVE_MREMAP is not defined.
1003         (mremap): Declare if HAVE_MREMAP is not defined.
1004         * configure, Makefile.in, config.in: Rebuild.
1005
1006 2009-03-27  Cary Coutant  <ccoutant@google.com>
1007
1008         * powerpc.cc (Target_powerpc::check_non_pic): Assert that output is
1009         position independent.
1010         * sparc.cc (Target_sparc::check_non_pic): Likewise.
1011         * x86_64.cc (Target_x86_64::check_non_pic): Likewise.
1012
1013 2009-03-24  Cary Coutant  <ccoutant@google.com>
1014
1015         * symtab.h (needs_plt_entry): Check for unsatisfied reference from
1016         an executable.
1017         (needs_dynamic_reloc): Likewise.
1018
1019 2009-03-24  Ian Lance Taylor  <iant@google.com>
1020
1021         * yyscript.y (file_cmd): Recognize EXTERN.
1022         (extern_name_list, extern_name_list_body): New nonterminals.
1023         * script.cc (script_add_extern): Define.
1024         * script-c.h (script_add_extern): Declare.
1025
1026 2009-03-24  Rafael Avila de Espindola  <espindola@google.com>
1027
1028         * object.cc (is_elf_object): Define.
1029         * object.h (is_elf_object): Declare.
1030         * archive.cc (Archive::get_elf_object_for_member): Call
1031         is_elf_object.
1032         * readsyms.cc (Read_symbols::do_read_symbols): Likewise.
1033
1034 2009-03-24  Elliott Hughes  <enh@google.com>
1035
1036         * output.cc (Output_file::map_anonymous): Define.
1037         (Output_file::map): Use map_anonymous.  If the regular mmap fails,
1038         try an anonymous one.  Report the size if the mmap fails.
1039         * output.h (class Output_file): Declare map_anonymous.
1040
1041 2009-03-24  Ian Lance Taylor  <iant@google.com>
1042
1043         * target-select.cc (instantiate_target): Don't acquire the lock if
1044         the instantiated_target_ field has already been set.
1045
1046 2009-03-23  Ian Lance Taylor  <iant@google.com>
1047
1048         * gold-threads.h (class Initialize_lock): Define.
1049         * gold-threads.cc (class Initialize_lock_once): Define.
1050         (initialize_lock_control): New static variable.
1051         (initialize_lock_pointer): New static variable.
1052         (initialize_lock_once): New static function.
1053         (Initialize_lock::Initialize_lock): Define.
1054         (Initialize_lock::initialize): Define.
1055         * target-select.h: Include "gold-threads.h".
1056         (class Target_selector): Add lock_ and initialize_lock_ fields.
1057         Don't define instantiate_target, just declare it.
1058         * target-select.cc (Target_selector::Target_selector): Initialize
1059         new fields.
1060         (Target_selector::instantiate_target): Define.
1061         * descriptors.h: Include "gold-threads.h".
1062         (class Descriptors): Add initialize_lock_ field.
1063         * descriptors.cc (Descriptors::Descriptors): Initialize new
1064         field.
1065         (Descriptors::open): Use initialize_lock_ field
1066         * errors.h (class Errors): Add initialize_lock_ field.
1067         * errors.cc (Errors::Errors): Initialize new field.
1068         (Errors::initialize_lock): Use initialize_lock_ field.
1069         * powerpc.cc (class Target_selector_powerpc): Remove
1070         instantiated_target_ field.  In do_recognize call
1071         instantiate_target rather than do_instantiate_target.  In
1072         do_instantiate_target just allocate a new target.
1073         * sparc.cc (class Target_selector_sparc): Likewise.
1074
1075         * freebsd.h: New file.
1076         * i386.cc: Include "freebsd.h".
1077         (Target_i386): Derive from Target_freebsd rather than
1078         Sized_target.
1079         (Target_selector_i386): Derive from Target_selector_freebsd rather
1080         than Target_selector.
1081         * x86_64.cc: Include "freebsd.h".
1082         (Target_x86_64): Derive from Target_freebsd rather than
1083         Sized_target.
1084         (Target_selector_x86_64): Derive from Target_selector_freebsd
1085         rather than Target_selector.
1086         * target.h (class Target): Add adjust_elf_header and
1087         do_adjust_elf_header.
1088         * output.cc (Output_file_header:: do_sized_write): Call target
1089         adjust_elf_header routine.
1090         * configure.tgt: Set targ_osabi.
1091         * configure.ac: Define GOLD_DEFAULT_OSABI.
1092         * parameters.cc (Parameters::default_target): Pass
1093         GOLD_DEFAULT_OSABI to select_target.
1094         * target-select.h (class Target_selector): Make instantiate_target
1095         protected rather than private.
1096         * Makefile.am (HFILES): Add freebsd.h.
1097         * configure, Makefile.in, config.in: Rebuild.
1098
1099         * merge.cc (do_add_input_section): Correct pend value.  Change
1100         message about last entry not being null terminated from error to
1101         warning.
1102
1103 2009-03-20  Mikolaj Zalewski  <mikolajz@google.com>
1104
1105         * incremental.cc: New file.
1106         * Makefile.am (CCFILES): Add incremental.cc.
1107         * Makefile.in: Rebuild.
1108
1109 2009-03-19  Paul Pluzhnikov  <ppluzhnikov@google.com>
1110
1111         * layout.cc (Layout::output_section_name): Preserve names
1112         of '.note.' sections.
1113         
1114 2009-03-19  Ian Lance Taylor  <iant@google.com>
1115
1116         * descriptors.cc (Descriptors::open): Check that the options are
1117         valid before using them.
1118
1119 2009-03-18  Ian Lance Taylor  <iant@google.com>
1120
1121         * script-sections.h: Include <list>.
1122         (class Script_sections): Change Sections_elements from std::vector
1123         to std::list.  Typedef public Elements_iterator.  Add
1124         orphan_section_placement_, data_segment_align_start_, and
1125         saw_data_segment_align_ fields.  Remove data_segment_align_index_
1126         field.
1127         * script-sections.cc (class Orphan_section_placement): New class.
1128         (class Sections_element): Add virtual functions is_relro and
1129         orphan_section_init.  Remove virtual function place_orphan_here.
1130         (class Output_section_definition): Add is_relro and
1131         orphan_section_init.  Remove place_orphan_here.
1132         (class Orphan_output_section): Likewise.
1133         (Script_sections::Script_sections): Update for field changes.
1134         (Script_sections::data_segment_align): Set saw_data_segment_align_
1135         and data_segment_align_start_, not data_segment_align_index.
1136         (Script_sections::data_segment_relro_end): Check
1137         saw_data_segment_align_.  Use data_segment_align_start_ rather
1138         than data_segment_align_index_.
1139         (Script_sections::place_orphan): Rewrite to use
1140         Orphan_section_placement.
1141
1142 2009-03-17  Ian Lance Taylor  <iant@google.com>
1143
1144         * archive.cc (Archive::add_symbols): Check for a version attached
1145         to the symbol name in the archive map.
1146         * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_11.
1147         (ver_test_11_SOURCES, ver_test_11_DEPENDENCIES): Define.
1148         (ver_test_11_LDFLAGS, ver_test_11_LDADD): Define.
1149         (ver_test_11.a): New target.
1150         * testsuite/Makefile.in: Rebuild.
1151
1152         * configure.ac: Check for chsize and posix_fallocate.  Replace
1153         ftruncate.
1154         * ftruncate.c: New file, from gnulib.
1155         * output.cc (posix_fallocate): Define dummy version if not
1156         HAVE_POSIX_FALLOCATE.
1157         (Output_file::map): Call posix_fallocate rather than lseek and
1158         write.
1159         * gold.h (ftruncate): Declare if not HAVE_FTRUNCATE.
1160         * configure, Makefile.in, config.in: Rebuild.
1161
1162 2009-03-17  Paul Pluzhnikov  <ppluzhnikov@google.com>
1163         
1164         * layout.h (Layout::create_note): Add section_name parameter.
1165         * layout.cc (Layout::create_note): Likewise.
1166         (Layout::create_build_id, Layout::create_gold_note): Fix callers.
1167         
1168 2009-03-17  Ian Lance Taylor  <iant@google.com>
1169
1170         * descriptors.cc: Include "options.h".
1171         (FD_CLOEXEC, O_CLOEXEC): Define if not defined.
1172         (Descriptors::open): Always use O_CLOEXEC when opening a new
1173         descriptor.  If we have a plugin, and O_CLOEXEC was not defined,
1174         then set FD_CLOEXEC.
1175
1176         * sparc.cc (class Target_sparc): Add has_got_section.
1177         (Target_sparc::Scan::global): If we see _GLOBAL_OFFSET_TABLE_,
1178         make sure we have a GOT section.
1179
1180         * sparc.cc (optimize_tls_reloc): Recognize R_SPARC_TLS_IE_ADD.
1181         (Target_sparc::Scan::local): Likewise.
1182         (Target_sparc::Scan::global): Likewise.
1183         (Target_sparc::Relocate::relocate): Likewise.
1184         (Target_sparc::Relocate::relocate_tls): Likewise.
1185
1186         * symtab.cc (Symbol_table::define_default_version): New function,
1187         broken out of add_from_object.
1188         (Symbol_table::add_from_object): Call define_default_version.
1189         (Symbol_table::define_special_symbol): Add resolve_oldsym
1190         parameter.  Change all callers.  If the version for a symbol comes
1191         from a version script, resolve it with the symbol with the same
1192         name with no version.  Also add the symbol without a version if
1193         appropriate.
1194         (do_define_in_output_data): If resolving with oldsym, don't delete
1195         sym.
1196         (do_define_in_output_segment): Likewise.
1197         (do_define_as_constant): Likewise.
1198         * symtab.h (class Symbol_table): Update declarations.
1199
1200 2009-03-13  Ian Lance Taylor  <iant@google.com>
1201
1202         * readsyms.cc (Read_symbols::incompatible_warning): New function.
1203         (Read_symbols::requeue): New function.
1204         (Read_symbols::do_read_symbols): If make_elf_object fails because
1205         the target type is not configured, and the file was searched for,
1206         issue a warning and retry with the next directory.
1207         (Add_symbols::run): If the file has an incompatible format, and
1208         it was searched for, requeue the Read_symbols task.  On error,
1209         release the object.
1210         * readsyms.h (class Read_symbols): Add dirindex_ field.  Add
1211         dirindex parameter to constructor.  Change all callers.  Declare
1212         incompatible_warning and requeue.
1213         (class Add_symbols): Add dirpath_, dirindex_, mapfile_,
1214         input_argument_ and input_group_ fields.  Add them to
1215         constructor.  Change all callers.
1216         (class Read_script): Add dirindex_ field.  Add it to constructor.
1217         Change all callers.
1218         * archive.cc (Archive::setup): Remove input_objects parameter.
1219         Change all callers.
1220         (Archive::get_file_and_offset): Likewise.
1221         (Archive::read_all_symbols): Likewise.
1222         (Archive::read_symbols): Likewise.
1223         (Archive::get_elf_object_for_member): Remove input_objects
1224         parameter.  Add punconfigured parameter.  Change all callers.
1225         (Archive::add_symbols): Change return type to bool.  Check return
1226         value of include_member.
1227         (Archive::include_all_members): Likewise.
1228         (Archive::include_member): Change return type to bool.  Return
1229         false if first included object has incompatible target.  Set
1230         included_member_ field.
1231         (Add_archive_symbols::run): If add_symbols returns false, requeue
1232         Read_symbols task.
1233         * archive.h (class Archive): Add included_member_ field.
1234         Initialize it in constructor.  Add input_file and searched_for
1235         methods.  Update declarations.
1236         (class Add_archive_symbols): Add dirpath_, dirindex_, and
1237         input_argument_ fields.  Add them to constructor.  Change all
1238         callers.
1239         * script.cc: Include "target-select.h".
1240         (class Parser_closure): Add skip_on_incompatible_target_ and
1241         found_incompatible_target_ fields.  Add
1242         skip_on_incompatible_target parameter to constructor.  Change all
1243         callers.  Add methods skip_on_incompatible_target,
1244         clear_skip_on_incompatible_target, found_incompatible_target, and
1245         set_found_incompatible_target.
1246         (read_input_script): Add dirindex parameter.  Change all callers.
1247         If parser finds an incompatible target, requeue Read_symbols
1248         task.
1249         (script_set_symbol): Clear skip_on_incompatible_target in
1250         closure.
1251         (script_add_assertion, script_parse_option): Likewise.
1252         (script_start_sections, script_add_phdr): Likewise.
1253         (script_check_output_format): New function.
1254         * script.h (read_input_script): Update declaration.
1255         * script-c.h (script_check_output_format): Declare.
1256         * yyscript.y (file_cmd): Handle OUTPUT_FORMAT.
1257         (ignore_cmd): Remove OUTPUT_FORMAT.
1258         * fileread.cc (Input_file::Input_file): Add explicit this.
1259         (Input_file::will_search_for): New function.
1260         (Input_file::open): Add pindex parameter.  Change all callers.
1261         * fileread.h (class Input_file): Add input_file_argument method.
1262         Declare will_search_for.  Update declarations.
1263         * object.cc (make_elf_object): Add punconfigured parameter.
1264         Change all callers.
1265         * object.h (class Object): Make input_file public.  Add
1266         searched_for method.
1267         (make_elf_object): Update declaration.
1268         * dirsearch.cc (Dirsearch::find): Add pindex parameter.  Use it to
1269         restart search.
1270         * dirsearch.h (class Dirsearch): Update declaration.
1271         * options.h (class General_options): Add --warn-search-mismatch.
1272         * parameters.cc (Parameters::is_compatible_target): New function.
1273         * parameters.h (class Parameters): Declare is_compatible_target.
1274         * workqueue.cc (Workqueue::add_blocker): New function.
1275         * workqueue.h (class Workqueue): Declare add_blocker.
1276
1277         * fileread.cc (Input_file::open): Remove options parameter.
1278         Change all callers.
1279         (Input_file::open_binary): Likewise.
1280         * script.cc (read_input_script): Likewise.
1281         * readsyms.h (class Read_symbols): Remove options_ field.  Remove
1282         options parameter from constructor.  Change all callers.
1283         (class Read_script): Likewise.
1284         * fileread.h (class Input_file): Update declarations.
1285         * script.h (read_input_script): Update declaration.
1286
1287 2009-03-10  Nick Clifton  <nickc@redhat.com>
1288
1289         * po/es.po: New Spanish translation.
1290
1291 2009-03-06  Cary Coutant  <ccoutant@google.com>
1292
1293         * options.cc (parse_short_option): Keep dash_z from registering itself.
1294
1295 2009-03-03  Ian Lance Taylor  <iant@google.com>
1296
1297         PR 9918
1298         * target-reloc.h (relocate_section): Pass output_section to
1299         relocate.
1300         * i386.cc (Target_i386::should_apply_static_reloc): Add
1301         output_section parameter.  Change all callers.
1302         (Target_i386::Relocate::relocate): Add output_section parameter.
1303         * x86_64.cc (Target_x86_64::Relocate::relocate): Likewise.
1304         * sparc.cc (Target_sparc::Relocate::relocate): Likewise.
1305         * powerpc.cc (Target_powerpc::Relocate::relocate): Likewise.
1306         * testsuite/two_file_shared.sh: New script.
1307         * testsuite/Makefile.am (check_SCRIPTS): Add two_file_shared.sh.
1308         (check_DATA): Add two_file_shared.dbg.
1309         (two_file_shared.dbg): New target.
1310         * testsuite/Makefile.in: Rebuild.
1311
1312 2009-03-01  Ian Lance Taylor  <iant@google.com>
1313
1314         * configure.ac: Check for byteswap.h.
1315         * configure: Rebuild.
1316         * config.in: Rebuild.
1317
1318 2009-03-01  Mikolaj Zalewski  <mikolajz@google.com>
1319
1320         * layout.cc (Layout::find_or_add_kept_section): New function.
1321         (Layout::add_comdat): Removed.
1322         * layout.h (struct Kept_section): Move out of class Layout.
1323         Remove trailing underscores from field names.  Add group_sections
1324         field.  Rename group_ field to is_group.  Change all uses.
1325         (class Layout): Declare find_or_add_kept_section, not add_comdat.
1326         * object.cc (Sized_relobj::Sized_relobj): Don't initialize
1327         comdat_groups_ field.
1328         (Sized_relobj::include_section_group): Use
1329         find_or_add_kept_section and Kept_section::group_sections.
1330         (Sized_relobj::include_linkonce_section): Likewise.
1331         * object.cc (class Sized_relobj): Don't define Comdat_group or
1332         Comdat_group_table.  Remove find_comdat_group and
1333         add_comdat_group.  Remove comdat_groups_ field.
1334         * plugin.cc (include_comdat_group): Use
1335         Layout::find_or_add_kept_section.
1336
1337 2009-02-28  Ian Lance Taylor  <iant@google.com>
1338
1339         * README: --gc-sections and map files are now supported.  Document
1340         some build requirements.
1341
1342         PR 6992
1343         * symtab.cc (Symbol_table::sized_write_section_symbol): In a
1344         relocatable link set the value of the section symbol to zero.
1345         * object.cc (Sized_relobj::do_finalize_local_symbols): In a
1346         relocatable link don't include the section address in the local
1347         symbol value.
1348
1349 2009-02-27  Ian Lance Taylor  <iant@google.com>
1350
1351         PR 6811
1352         * options.h (class Search_directory): Add is_system_directory.
1353         (class General_options): Declare is_in_system_directory.
1354         * options.cc (get_relative_sysroot): Make static.
1355         (get_default_sysroot): Make static.
1356         (General_optoins::is_in_system_directory): New function.
1357         * fileread.cc (Input_file::is_in_system_directory): New function.
1358         * fileread.h (class Input_file): Declare is_in_system_directory.
1359         * object.h (class Object): Add is_in_system_directory.
1360         (class Input_objects): Remove system_library_directory_ field.
1361         * object.cc (Input_objects::add_object): Don't set
1362         system_library_directory_.
1363         (input_objects::found_in_system_library_directory): Remove.
1364         * symtab.cc (Symbol_table::write_globals): Remove input_objects
1365         parameter.  Change all callers.
1366         (Symbol_table::sized_write_globals): Likewise.
1367         (Symbol_table::warn_about_undefined_dynobj_symbol): Likewise.
1368         Call Object::is_in_system_directory.
1369         * symtab.h (class Symbol_table): Update declarations.
1370
1371         PR 5990
1372         * descriptors.h (Open_descriptor): Add is_on_stack field.
1373         * descriptors.cc (Descriptors::open): If the descriptor is on the
1374         top of the stack, remove it.  Initialize is_on_stack field.
1375         (Descriptors::release): Only add pod to stack if it is not on the
1376         stack already.
1377         (Descriptors::close_some_descriptor): Clear stack_next and
1378         is_on_stack fields.
1379
1380         PR 7091
1381         * output.cc (Output_section::find_starting_output_address): Rename
1382         from starting_output_address; add PADDR parameter; change return
1383         type.
1384         * output.h (class Output_section): Declare
1385         find_starting_output_address instead of starting_output_address.
1386         * object.cc (Sized_relobj::do_finalize_local_symbols): Handle a
1387         section symbol for which we can't find a merge section.
1388
1389         PR 9836
1390         * symtab.cc (Symbol_table::add_from_object): If the visibility is
1391         hidden or internal, force the symbol to be local.
1392         * resolve.cc (Symbol::override_visibility): Define.
1393         (Symbol::override_base): Use override_visibility.
1394         (Symbol_table::resolve): Likewise.
1395         (Symbol::override_base_with_special): Likewise.
1396         (Symbol_table::override_with_special): If the visibility is hidden
1397         or internal, force the symbol to be local.
1398         * symtab.h (class Symbol): Add set_visibility and
1399         override_visibility.
1400         * testsuite/ver_test_1.sh: New file.
1401         * testsuite/Makefile.am (check_SCRIPTS): Add ver_test_1.sh.
1402         (check_DATA): Add ver_test_1.syms.
1403         (ver_test_1.syms): New target.
1404         * testsuite/Makefile.in: Rebuild.
1405
1406 2009-02-25  Cary Coutant  <ccoutant@google.com>
1407
1408         * layout.cc (Layout::choose_output_section): Don't rename sections
1409         when using a linker script that has a SECTIONS clause.
1410         * Makefile.in: Regenerate.
1411
1412         * testsuite/Makefile.am (script_test_5.sh): New test case.
1413         * testsuite/Makefile.in: Regenerate.
1414         * testsuite/script_test_5.cc: New file.
1415         * testsuite/script_test_5.sh: New file.
1416         * testsuite/script_test_5.t: New file.
1417
1418 2009-02-13  Rafael Avila de Espindola  <espindola@google.com>
1419
1420         * archive.cc (Archive::include_member): Update calls to add_symbols.
1421         * dynobj.cc (Sized_dynobj<size, big_endian>::make_version_map): Add
1422         the Layout argument.
1423         * dynobj.h (do_add_symbols): Add the Layout argument.
1424         * object.cc (Sized_relobj<size, big_endian>::do_add_symbols): Add the
1425         Layout argument.
1426         * object.h (Object::add_symbols): Add the Layout argument.
1427         (Object::do_add_symbols): Add the Layout argument.
1428         (Sized_relobj::do_add_symbols): Add the Layout argument.
1429         * plugin.cc (Sized_pluginobj<size, big_endian>::do_add_symbols):
1430         Unify the two versions.
1431         (Add_plugin_symbols): Remove.
1432         * plugin.h (Pluginobj::add_symbols, Pluginobj::do_add_symbols): Remove.
1433         (Sized_pluginobj::do_add_symbols): Unify the two versions.
1434         (Add_plugin_symbols): Remove.
1435         * readsyms.cc (Read_symbols::do_read_symbols): Update call to
1436         Add_symbols. Use Add_symbols instead of Add_plugin_symbols.
1437         (Add_symbols::run): Make it work with Pulginobj.
1438
1439 2009-02-06  Ian Lance Taylor  <iant@google.com>
1440
1441         * object.cc (Sized_relobj::do_layout): Make info message start
1442         with lower case letter.
1443
1444 2009-02-06  Mikolaj Zalewski  <mikolajz@google.com>
1445
1446         * binary.cc: Fix file comment.
1447
1448         * options.h (enum Incremental_disposition): Define.
1449         (class General_options): Add new options: --incremental,
1450         --incremental_changed, --incremental_unchanged,
1451         --incremental_unknown.  Add incremental_disposition_ and
1452         implicit_incremental_ fields.
1453         (General_options::incremental_disposition): New function.
1454         (class Position_dependent_options): Add incremental_disposition
1455         option.
1456         (Position_dependent_options::copy_from_options): Set incremental
1457         dispositions.
1458         * options.cc (General_options::parse_incremental_changed): New
1459         function.
1460         (General_options::parse_incremental_unchanged): New function.
1461         (General_options::parse_incremental_unknown): New function.
1462         (General_options::General_options): Initialize new fields
1463         incremental_disposition_ and implicit_incremental_.
1464         (General_options::finalize): Check for uasge of --incremental-*
1465         without --incremental.
1466
1467 2009-02-06  Chris Demetriou  <cgd@google.com>
1468
1469         * gold.h (gold_undefined_symbol): Change to take only a Symbol
1470         pointer and to report location as the file name associated with
1471         the symbol.
1472         (gold_undefined_symbol_at_location): New function to replace the
1473         old gold_undefined_symbol functionality.
1474         * target-reloc.h (relocate_section): Update to use
1475         gold_undefined_symbol_at_location.
1476         * symtab.cc (Symbol_table::warn_about_undefined_dynobj_symbol):
1477         Call gold_undefined_symbol function rather than gold_error.
1478         * errors.h (Errors::undefined_symbol): Take location as a
1479         string, rather than calculating it from a relocation.
1480         * errors.cc (Errors::fatal): Print "fatal error:" before the
1481         formatted message.
1482         (Errors::error, Errors::error_at_location): Print "error: "
1483         before the formatted message.
1484         (Errors::undefined_symbol): Take location as a string, rather
1485         than calculating it from a relocation.
1486         (gold_undefined_symbol_at_location): New function akin to
1487         old gold_undefined_symbol, calculates location from relocation.
1488         (gold_undefined_symbol): Change to take only a Symbol pointer
1489         and to report location as the file name associated with the symbol.
1490         * testsuite/debug_msg.sh: Update for changed error messages.
1491         * testsuite/undef_symbol.sh: Likewise.
1492
1493 2009-02-04  Duncan Sands  <baldrick@free.fr>
1494
1495         PR 9812
1496         * reduced_debug_output.h
1497         (Output_reduced_debug_abbrev_section::failed): Use format for
1498         gold_warning.
1499         (Output_reduced_debug_info_section::faild): Likewise.
1500
1501 2009-01-31  Mikolaj Zalewski  <mikolajz@google.com>
1502
1503         * script.cc (Lazy_demangler): New class.
1504         (Version_script_info::get_symbol_version_helper): Demangle a
1505         symbol only once.
1506
1507 2009-01-29  Cary Coutant  <ccoutant@google.com>
1508
1509         * i386.cc (Target_i386::Relocate::relocate): Recognize non-PIC calls
1510         to __tls_get_addr.
1511         * x86_64.cc (Target_x86_64::Relocate::relocate): Likewise.
1512
1513 2009-01-28  Ian Lance Taylor  <iant@google.com>
1514
1515         * version.cc (version_string): Bump to 1.9.
1516
1517         * gold.h: Include <cstring> and <stdint.h>.
1518         * version.cc: Include <cstdio>.
1519         * object.cc (Sized_relobj::do_layout): Initialize gc_sd to avoid a
1520         warning.
1521         * reduced_debug_output.cc (insert_into_vector): Rename from
1522         Insert_into_vector; change all callers.  Use Swap_unaligned to
1523         avoid aliasing issue; remove union since it is unnecessary.
1524
1525 2009-01-27  Sriraman Tallam  <tmsriram@google.com>
1526
1527         * Makefile.am (CCFILES): Add gc.cc.
1528         (HFILES): Add gc.h.
1529         * Makefile.in: Regenerate.
1530         * gold.cc (Gc_runner): New class.
1531         (queue_initial_tasks): Call garbage collection related tasks
1532         when corresponding options are invoked.
1533         (queue_middle_gc_tasks): New function.
1534         (queue_middle_tasks): Reorder tasks to allow relocs to be read and
1535         processed early before laying out sections during garbage collection.
1536         * gold.h (queue_middle_gc_tasks): New function.
1537         (is_prefix_of): Move from "layout.cc".
1538         * i386.cc (Target_i386::gc_process_relocs): New function.
1539         * layout.cc (is_prefix_of): Remove. Move to "gold.h"
1540         * main.cc (main): Create object of class "Garbage_collection".
1541         * object.cc (Relobj::copy_symbols_data): New function.
1542         (Relobj::is_section_name_included): New function.
1543         (Sized_relobj::do_layout): Allow this function to be called twice 
1544         during garbage collection and defer layout of section during the 
1545         first call.
1546         * object.h (Relobj::get_symbols_data): New function.
1547         (Relobj::is_section_name_included): New function.
1548         (Relobj::copy_symbols_data): New function.
1549         (Relobj::set_symbols_data): New function.
1550         (Relobj::get_relocs_data): New function.
1551         (Relobj::set_relocs_data): New function.
1552         (Relobj::is_output_section_offset_invalid): New pure virtual function.
1553         (Relobj::gc_process_relocs): New function.
1554         (Relobj::do_gc_process_relocs): New pure virtual function.
1555         (Relobj::sd_): New data member.
1556         (Sized_relobj::is_output_section_offset_invalid): New function.
1557         (Sized_relobj::do_gc_process_relocs): New function.
1558         * options.h (General_options::gc_sections): Modify to not be a no-op.
1559         (General_options::print_gc_sections): New option.
1560         * plugin.cc (Plugin_finish::run): Remove function call to
1561         Plugin_manager::layout_deferred_objects.  Move it to "gold.cc".
1562         * powerpc.cc (Target_powerpc::gc_process_relocs): New function.
1563         * reloc.cc (Read_relocs::run): Add task to process relocs and
1564         determine unreferenced sections when doing garbage collection.
1565         (Gc_process_relocs): New class.
1566         (Sized_relobj::do_gc_process_relocs): New function.
1567         (Sized_relobj::do_scan_relocs): Don't try to scan the relocs for
1568         sections that are garbage collected.
1569         * reloc.h (Gc_process_relocs): New class.
1570         * sparc.cc (Target_sparc::gc_process_relocs): New function.
1571         * symtab.cc (Symbol::should_add_dynsym_entry): Do not add entries for
1572         symbols whose corresponding sections are garbage collected.
1573         (Symbol_table::Symbol_table): Add new parameter for the garbage
1574         collection object.
1575         (Symbol_table::gc_mark_undef_symbols): New function.
1576         (Symbol_table::gc_mark_symbol_for_shlib): New function.
1577         (Symbol_table::gc_mark_dyn_syms): New function.
1578         (Symbol_table::resolve): Do not treat symbols seen in dynamic objects
1579         as garbage.
1580         (Symbol_table::add_from_object): Likewise.
1581         (Symbol_table::add_from_relobj): When building shared objects, do not
1582         treat externally visible symbols as garbage.
1583         (Symbol_table::sized_finalize_symbol): Do not check dynamic symbol
1584         table information for static and relocatable links.
1585         * symtab.h (Symbol_table::set_gc): New function.
1586         (Symbol_table::gc): New function.
1587         (Symbol_table::gc_mark_undef_symbols): New function.
1588         (Symbol_table::gc_mark_symbol_for_shlib): New function.
1589         (Symbol_table::gc_mark_dyn_syms): New function.
1590         (Symbol_table::gc_): New data member.
1591         * target.h (Sized_target::gc_process_relocs): New pure virtual 
1592         function.
1593         * x86_64.cc (Target_x86_64::gc_process_relocs): New function.
1594         * testsuite/testfile.cc (Target_test::gc_process_relocs): New function.
1595
1596 2009-01-20  Chris Faylor <me.sourceware@sourceware.org>
1597
1598         * options.h (General_options::gc_sections): Define as a no-op for now.
1599         (General_options::no_keep_memory): Ditto.
1600         (General_options::Bshareable): Define.
1601         * options.cc (General_options::finalize): Honor -Bshareable.
1602
1603 2009-01-20  Andreas Schwab  <schwab@suse.de>
1604
1605         * powerpc.cc (Powerpc_relocate_functions::rel16_ha): Don't try to
1606         read the value in the contents, since we don't use it.  Use the
1607         template endianness when writing.
1608         (Relocate::relocate): Use it for R_PPC_REL16_HA.
1609
1610 2009-01-19  Andreas Schwab  <schwab@suse.de>
1611
1612         * configure.tgt (powerpc64-*): Fix targ_obj.
1613
1614 2009-01-15  Ian Lance Taylor  <iant@google.com>
1615
1616         * object.cc (Sized_relobj::write_local_symbols): Don't write out
1617         local symbols when stripping all symbols.
1618
1619 2009-01-14  Cary Coutant  <ccoutant@google.com>
1620
1621         * output.cc (Output_reloc): Add explicit instantiations.
1622
1623 2009-01-14  Cary Coutant  <ccoutant@google.com>
1624
1625         * archive.cc (Archive::get_elf_object_for_member): Remove call
1626         to File_read::claim_for_plugin.
1627         * descriptors.cc (Descriptors::open): Remove reference to
1628         is_claimed.
1629         (Descriptors::claim_for_plugin): Remove.
1630         * descriptors.h (Descriptors::claim_for_plugin): Remove.
1631         (Descriptors::is_claimed): Remove.
1632         (claim_descriptor_for_plugin): Remove.
1633         * fileread.cc (File_read::claim_for_plugin): Remove.
1634         * fileread.h (File_read::claim_for_plugin): Remove.
1635         (File_read::descriptor): Reopen descriptor if necessary.
1636         * plugin.cc  (Plugin::load): Add two new APIs to transfer vector.
1637         (Plugin_manager::all_symbols_read): Add task parameter. Change
1638         all callers.
1639         (Plugin_manager::get_input_file): New function.
1640         (Plugin_manager::release_input_file): New function.
1641         (Pluginobj::Pluginobj): Add filesize parameter and initialize
1642         corresponding data member.
1643         (Sized_pluginobj::Sized_pluginobj): Add filesize parameter
1644         and pass to base constructor. Change all callers.
1645         (get_input_file, release_input_file): New functions.
1646         (make_sized_plugin_object): Add filesize parameter. Change all callers.
1647         * plugin.h (Plugin_manager::Plugin_manager): Initialize task_ member.
1648         (Plugin_manager::all_symbols_read): Add task parameter.
1649         (Plugin_manager::get_input_file): New function.
1650         (Plugin_manager::release_input_file): New function.
1651         (Plugin_manager::task_): New data member.
1652         (Pluginobj::Pluginobj): Add filesize parameter.
1653         (Pluginobj::filename): New function.
1654         (Pluginobj::descriptor): New function.
1655         (Pluginobj::filesize): New function.
1656         (Pluginobj::filesize_): New data member.
1657         (Sized_pluginobj::Sized_pluginobj): Add filesize parameter.
1658         * readsyms.cc (Read_symbols::do_read_symbols): Remove call to
1659         File_read::claim_for_plugin; use Object::unlock to unlock the file.
1660
1661         * testsuite/Makefile.am (plugin_test_4): New test case for plugins
1662         with archive libraries.
1663         * testsuite/Makefile.in: Regenerate.
1664         * testsuite/plugin_test.c (struct sym_info): New type.
1665         (get_input_file, release_input_file): New static variables.
1666         (onload): Capture new transfer vector entries.
1667         (claim_file_hook): Stop reading at end of file according to filesize.
1668         Factor out parsing of readelf output into separate function.
1669         (all_symbols_read_hook): Exercise get_input_file and release_input_file
1670         APIs and get the source file name from the symbol table.  Convert
1671         source file name to corresponding object file name.  Print info
1672         message when adding new input files.
1673         (parse_readelf_line): New function.
1674         * testsuite/plugin_test_1.sh: Add checks for new info messages.
1675         * testsuite/plugin_test_2.sh: Likewise.
1676         * testsuite/plugin_test_3.sh: Likewise.
1677         * testsuite/plugin_test_4.sh: New test case.
1678
1679 2009-01-07  Ian Lance Taylor  <iant@google.com>
1680
1681         * version.cc (version_string): Bump to 1.8.
1682
1683 2008-12-23  Cary Coutant  <ccoutant@google.com>
1684
1685         * gold.cc (gold_exit): Call plugin cleanup handlers on exit.
1686         * plugin.cc (Plugin_manager::finish): Rename as
1687         layout_deferred_objects.  Move cleanup to separate function.
1688         (Plugin_manager::cleanup): New function.
1689         (Plugin_finish::run): Call layout_deferred_objects and cleanup
1690         separately.
1691         * plugin.h (Plugin_manager::finish): Rename as
1692         layout_deferred_objects.
1693         (Plugin_manager::cleanup): New function.
1694         (Plugin_manager::cleanup_done): New field.
1695
1696 2008-12-23  Cary Coutant  <ccoutant@google.com>
1697
1698         * plugin.cc (is_visible_from_outside): New function.
1699         (Pluginobj::get_symbol_resolution_info): Call is_visible_from_outside
1700         so we don't return "IR only" status for exported symbols or -r links.
1701
1702         * testsuite/Makefile.am (plugin_test_3): New test case.
1703         * testsuite/Makefile.in: Regenerate.
1704         * testsuite/plugin_test_3.sh: New file.
1705
1706 2008-12-22  Cary Coutant  <ccoutant@google.com>
1707
1708         * object.cc (Sized_relobj::layout_section): New function.
1709         (Sized_relobj::do_layout): Defer layout of input sections until after
1710         plugin has provided replacement files.
1711         (Sized_relobj::do_layout_deferred_sections): New function.
1712         * object.h (Relobj::set_section_offset): Remove virtual keyword.
1713         (Relobj::layout_deferred_sections): New function.
1714         (Relobj::do_layout_deferred_sections): New function.
1715         (Sized_relobj::do_layout_deferred_sections): New function.
1716         (Sized_relobj::layout_section): New function.
1717         (Sized_relobj::Deferred_layout): New structure.
1718         (Sized_relobj::deferred_layout_): New field.
1719         * plugin.cc (Plugin_manager::finish): Renamed, was cleanup.
1720         Change all callers.  Layout deferred sections.
1721         (class Plugin_finish): Renamed, was Plugin_cleanup.  Change all
1722         references.
1723         (Plugin_hook::run): Move code from do_plugin_hook inline.
1724         (Plugin_hook::do_plugin_hook): Remove.
1725         * plugin.h (Plugin_manager::Plugin_manager): Add missing initializers.
1726         (Plugin_manager::finish): Renamed, was cleanup.
1727         (Plugin_manager::should_defer_layout): New function.
1728         (Plugin_manager::add_deferred_layout_object): New function.
1729         (Plugin_manager::Deferred_layout_list): New type.
1730         (Plugin_manager::deferred_layout_objects_): New field.
1731         (Plugin_hook::do_plugin_hook): Remove.
1732
1733 2008-12-17  Ian Lance Taylor  <iant@google.com>
1734
1735         * options.h (class General_options): Add --no case for
1736         --export-dynamic.
1737
1738 2008-12-16  Cary Coutant  <ccoutant@google.com>
1739
1740         * plugin.cc (Plugin::load): Move LDPT_MESSAGE to front of transfer
1741         vector.
1742         (Plugin_manager::claim_file): Create plugin object even if
1743         plugin did not call the add_symbols callback.
1744         (Plugin_obj::get_symbol_resolution_info): Guard against plugin
1745         asking for more symbols than were added.
1746         * testsuite/Makefile.am (plugin_test_1): Add test case with
1747         no global symbols.
1748         (empty.syms): New target.
1749         * testsuite/Makefile.in: Regenerate.
1750         * testsuite/plugin_test.c (claim_file_hook): Add new debug
1751         message. Don't call add_symbols if no globals.
1752         (all_symbols_read_hook): Don't provide replacement for empty
1753         claimed file.
1754
1755 2008-12-12  Ian Lance Taylor  <iant@google.com>
1756
1757         * target-reloc.h (Default_scan_relocatable_relocs): Only discard
1758         r_type == 0 for a local symbol with r_sym == 0.
1759         (scan_relocatable_relocs): Pass r_sym to
1760         local_non_section_strategy.
1761         * reloc.cc (Emit_relocs_strategy::local_non_section_strategy): Add
1762         r_sym parameter.
1763
1764         * configure.ac: Update test for TLS descriptors: they are
1765         supported as of glibc 2.9.
1766         * configure: Rebuild.
1767
1768 2008-12-11  Ian Lance Taylor  <iant@google.com>
1769
1770         PR 7091
1771         * target-reloc.h (Default_scan_relocatable_relocs): For each
1772         function, map r_type == 0 to RELOC_DISCARD.
1773
1774 2008-12-10  Cary Coutant  <ccoutant@google.com>
1775
1776         * layout.cc (Layout::add_comdat): Allow COMDAT group from a replacement
1777         object to override a kept COMDAT group from a plugin object.
1778
1779 2008-12-09  Ian Lance Taylor  <iant@google.com>
1780
1781         PR 7088
1782         * yyscript.y (file_cmd): Handle INPUT.
1783
1784         * testsuite/initpri1.c: Change all declarations to be full
1785         prototypes by adding void, to avoid compiler warnings.
1786
1787 2008-12-05  Rafael Avila de Espindola  <espindola@google.com>
1788
1789         * options.cc (General_options::parse_plugin_opt): New.
1790         (General_options::add_plugin): The argument now is just the filename.
1791         (General_options::add_plugin_option): New.
1792         * options.h (plugin_opt): New.
1793         (add_plugin): Change argument name.
1794         (add_plugin_option): New.
1795         * plugin.cc (Plugin::load): Don't parse the plugin option.
1796         * plugin.h (Plugin::Plugin): Rename argument. Init filename_.
1797         (Plugin::add_option): New.
1798         (Plugin::args_): Change type.
1799         (Plugin::filename_): New.
1800         (Plugin_manager::add_plugin_option): New.
1801         * testsuite/Makefile.am (plugin_test_1): Use new syntax.
1802         * testsuite/Makefile.in: Regenerate.
1803
1804 2008-12-05  Cary Coutant  <ccoutant@google.com>
1805
1806         * layout.cc (Layout::include_section): Check for SHF_EXCLUDE.
1807         Handle --strip-lto-sections option.
1808         * options.h (strip_lto_sections): New option.
1809
1810 2008-12-01  Cary Coutant  <ccoutant@google.com>
1811
1812         * plugin.cc (ld_plugin_message): Change format parameter to const.
1813         Fix mismatch between new[] and delete.
1814
1815 2008-11-14  Cary Coutant  <ccoutant@google.com>
1816
1817         * reloc.cc (Sized_relobj::do_read_relocs): Use constant invalid_address
1818         instead of -1U.
1819
1820 2008-11-05  Craig Silverstein  <csilvers@google.com>
1821
1822         * options.cc (General_options::parse_dynamic_list): New function.
1823         * options.h (General_options): New flags dynamic_list,
1824         dynamic_list_data, dynamic_list_cpp_new, and
1825         dynamic_list_cpp_typeinfo.  New variable dynamic_list_.
1826         (General_options::in_dynamic_list): New function.
1827         * script.cc (Lex::Mode): New enum DYNAMIC_LIST.
1828         (Lex::can_start_name): Add support for DYNAMIC_LIST mode.
1829         (Lex::can_continue_name): Likewise.
1830         (yylex): Likewise.
1831         (read_script_file): New parameter script_options.
1832         (read_dynamic_list): New function.
1833         (Script_options::define_dynamic_list): New function.
1834         (dynamic_list_keyword_parsecodes): New variable.
1835         (dynamic_list_keywords): New variable.
1836         * script.h (Script_options::define_dynamic_list): New function
1837         prototype.
1838         (read_dynamic_list): New function prototype.
1839         * symtab.cc (strprefix): New macro.
1840         (Symbol::should_add_dynsym_entry): Support dynamic_list,
1841         dynamic_list_data, dynamic_list_cpp_new, and
1842         dynamic_list_cpp_typeinfo.
1843         * yyscript.y (PARSING_DYNAMIC_LIST): New token.
1844         (dynamic_list_expr): New rule.
1845         (dynamic_list_nodes): Likewise.
1846         (dynamic_list_node): Likewise.
1847         * testsuite/Makefile.am (dynamic_list): New test.
1848         * testsuite/Makefile.in: Regenerated.
1849         * testsuite/dynamic_list.t: New file.
1850         * testsuite/dynamic_list.sh: New file.
1851
1852 2008-11-05  Craig Silverstein  <csilvers@google.com>
1853
1854         * testsuite/tls_test_c.c: Add prototype for t11 and t11_last.
1855         * testsuite/tls_test_c.c (t11): Add explicit "void" to prototype.
1856         (t11_last): Likewise.
1857         * testsuite/ver_test_6.c (main): Likewise.
1858
1859 2008-10-07  Cary Coutant  <ccoutant@google.com>
1860
1861         * options.c (General_options::finalize): Add check for -static and
1862         -shared.
1863         * gold.cc (queue_middle_tasks): Assert that list of dynamic objects
1864         is not empty.
1865
1866 2008-10-02  Cary Coutant  <ccoutant@google.com>
1867
1868         * plugin.cc (make_sized_plugin_object): Fix conditional
1869         compilation to work when not all targets are enabled.
1870
1871 2008-09-29  Cary Coutant  <ccoutant@google.com>
1872
1873         * archive.cc (Archive::get_file_and_offset): Use filename instead
1874         of name to get library path.
1875         (Archive::include_member): Unlock external member of a thin archive.
1876
1877         * testsuite/Makefile.am (TEST_AR): New variable.
1878         (thin_archive_test_1): New test.
1879         (thin_archive_test_2): New test.
1880         * testsuite/Makefile.in: Regenerate.
1881         * testsuite/thin_archive_main.cc: New file.
1882         * testsuite/thin_archive_test_1.cc: New file.
1883         * testsuite/thin_archive_test_2.cc: New file.
1884         * testsuite/thin_archive_test_3.cc: New file.
1885         * testsuite/thin_archive_test_4.cc: New file.
1886
1887 2008-09-29  Cary Coutant  <ccoutant@google.com>
1888
1889         * mapfile.cc (Mapfile::print_input_section): Change -1U to -1ULL.
1890         * object.cc (Sized_relobj::do_layout): Use constant invalid_address
1891         instead of -1U.
1892         (Sized_relobj::do_finalize_local_symbols): Likewise.
1893         (Sized_relobj::map_to_kept_section): Likewise.
1894         * object.h (Sized_relobj::invalid_address): New constant.
1895         (Sized_relobj::do_output_section_offset): Check for invalid_address
1896         and return -1ULL.
1897         * output.cc (Output_reloc::local_section_offset): Use constant
1898         invalid_address instead of -1U.
1899         (Output_reloc::get_address): Likewise.
1900         (Output_section::output_address): Change -1U to -1ULL.
1901         * output.h (Output_reloc::invalid_address): New constant.
1902         * reloc.cc (Sized_relobj::write_sections): Use constant
1903         invalid_address instead of -1U.
1904         (Sized_relobj::relocate_sections): Likewise.
1905         * symtab.cc (Symbol_table::sized_finalize_symbol): Handle symbol
1906         values for merge sections.
1907         * target-reloc.h (relocate_for_relocatable): Use constant
1908         invalid_address instead of -1U.
1909
1910 2008-09-19  Cary Coutant  <ccoutant@google.com>
1911
1912         Add plugin functionality for link-time optimization (LTO).
1913         * configure.ac (plugins): Add --enable-plugins option.
1914         * configure: Regenerate.
1915         * config.in: Regenerate.
1916         * Makefile.am (LIBDL): New variable.
1917         (CCFILES): Add plugin.cc.
1918         (HFILES): Add plugin.h.
1919         (ldadd_var): Add LIBDL.
1920         * Makefile.in: Regenerate.
1921
1922         * archive.cc: Include "plugin.h".
1923         (Archive::setup): Don't preread archive symbols when using a plugin.
1924         (Archive::get_file_and_offset): Add memsize parameter.  Change callers.
1925         (Archive::get_elf_object_for_member): Call plugin hooks for claiming
1926         files.
1927         (Archive::include_member): Add symbols from plugin objects.
1928         * archive.h (Archive::get_file_and_offset): Add memsize parameter.
1929         * descriptors.cc (Descriptors::open): Check for file descriptors
1930         abandoned by plugins.
1931         (Descriptors::claim_for_plugin): New function.
1932         * descriptors.h (Descriptors::claim_for_plugin): New function.
1933         (Open_descriptor::is_claimed): New field.
1934         (claim_descriptor_for_plugin): New function.
1935         * fileread.cc (File_read::claim_for_plugin): New function.
1936         * fileread.h (File_read::claim_for_plugin): New function.
1937         (File_read::descriptor): New function.
1938         * gold.cc: Include "plugin.h".
1939         (queue_initial_tasks): Add task to call plugin hooks for generating
1940         new object files.
1941         * main.cc: Include "plugin.h".
1942         (main): Load plugin libraries.
1943         * object.h (Pluginobj): Declare.
1944         (Object::pluginobj): New function.
1945         (Object::do_pluginobj): New function.
1946         (Object::set_target): New function.
1947         * options.cc: Include "plugin.h".
1948         (General_options::parse_plugin): New function.
1949         (General_options::General_options): Initialize plugins_ field.
1950         (General_options::add_plugin): New function.
1951         * options.h (Plugin_manager): Declare.
1952         (General_options): Add --plugin option.
1953         (General_options::has_plugins): New function.
1954         (General_options::plugins): New function.
1955         (General_options::add_plugin): New function.
1956         (General_options::plugins_): New field.
1957         * plugin.cc: New file.
1958         * plugin.h: New file.
1959         * readsyms.cc: Include "plugin.h".
1960         (Read_symbols::do_read_symbols): Check for archive before checking
1961         for ELF file.  Call plugin hooks to claim files.
1962         * resolve.cc (Symbol_table::resolve): Record when symbol is referenced
1963         from a real object file; force override when processing replacement
1964         files.
1965         * symtab.cc (Symbol::init_fields): Initialize in_real_elf_ field.
1966         (Symbol::init_base_object): Likewise.
1967         (Symbol::init_base_output_data): Likewise.
1968         (Symbol::init_base_output_segment): Likewise.
1969         (Symbol::init_base_constant): Likewise.
1970         (Symbol::init_base_undefined): Likewise.
1971         (Symbol::output_section): Assert that object is not a plugin.
1972         (Symbol_table::add_from_pluginobj): New function.
1973         (Symbol_table::sized_finalize_symbol): Treat symbols from plugins as
1974         undefined.
1975         (Symbol_table::sized_write_globals): Likewise.
1976         (Symbol_table::add_from_pluginobj): Instantiate template.
1977         * symtab.h (Sized_pluginobj): Declare.
1978         (Symbol::in_real_elf): New function.
1979         (Symbol::set_in_real_elf): New function.
1980         (Symbol::in_real_elf_): New field.
1981         (Symbol_table::add_from_pluginobj): New function.
1982
1983         * testsuite/Makefile.am (AM_CFLAGS): New variable.
1984         (LIBDL): New variable.
1985         (LDADD): Add LIBDL.
1986         (check_PROGRAMS): Add plugin_test_1 and plugin_test_2.
1987         (check_SCRIPTS): Add plugin_test_1.sh and plugin_test_2.sh.
1988         (check_DATA): Add plugin_test_1.err and plugin_test_2.err.
1989         (MOSTLYCLEANFILES): Likewise.
1990         * testsuite/Makefile.in: Regenerate.
1991         * testsuite/plugin_test.c: New file.
1992         * testsuite/plugin_test_1.sh: New file.
1993         * testsuite/plugin_test_2.sh: New file.
1994
1995 2008-09-16  Ian Lance Taylor  <iant@google.com>
1996
1997         * target-reloc.h (relocate_section): Check whether a symbol is
1998         defined by the ABI before reporting an undefined symbol error.
1999         * target.h (Target::is_defined_by_abi): Make parameter const.
2000         (Target::do_is_defined_by_abi): Likewise.
2001         * i386.cc (Target_i386::do_is_defined_by_abi): Likewise.
2002         * powerpc.cc (Target_powerpc::do_is_defined_by_abi): Likewise.
2003         * sparc.cc (Target_sparc::do_is_defined_by_abi): Likewise.
2004         * x86_64.cc (Target_x86_64::do_is_defined_by_abi): Likewise.
2005         * testsuite/Makefile.am (tls_test_shared.so): Add -Wl,-z,defs.
2006         * testsuite/Makefile.in: Rebuild.
2007
2008         * fileread.cc (make_view): Add casts to avoid warning.
2009
2010 2008-09-16  Alexandre Oliva  <aoliva@redhat.com>
2011
2012         * i386.cc (Target_i386::define_tls_base_symbol): Update comments.
2013         * x86_64.cc (Target_x86_64::define_tls_base_symbol): Likewise.
2014
2015 2008-09-16  Alexandre Oliva  <aoliva@redhat.com>
2016
2017         * options.h (General_options::output_is_executable): New.
2018         (General_options::output_is_pie): New.
2019         * i386.cc (Target_i386::define_tls_base_symbol): Use SEGMENT_START
2020         for shared libraries.
2021         * x86_64.cc (Target_x86_64::define_tls_base_symbol): Likewise.
2022
2023 2008-09-11  Chris Demetriou  <cgd@google.com>
2024
2025         * options.h (origin): New -z option.
2026         * layout.cc (Layout:finish_dynamic_section): If "-z origin"
2027         is specified, set DF_ORIGIN in DT_FLAGS and set DF_1_ORIGIN
2028         in DT_FLAGS_1.
2029
2030 2008-09-05  Cary Coutant  <ccoutant@google.com>
2031
2032         * fileread.cc (File_read::make_view): Add check for attempt to map
2033         beyond end of file.
2034
2035 2008-09-05  Cary Coutant  <ccoutant@google.com>
2036
2037         * symtab.cc (Symbol_table::add_from_dynobj): Fix typos in
2038         explicit instantiations.
2039
2040 2008-08-28  Kris Van Hees  <kris.van.hees@oracle.com>
2041
2042         PR gold/6858
2043         * options.cc (General_options::finalize): Allow undefined symbols
2044         in shlibs if linking -shared.
2045
2046         PR gold/6859
2047         * symtab.cc (Symbol::init_base_undefined): Mark explicitly undefined
2048         symbols as not needing a dynsym entry.
2049
2050 2008-08-20  Craig Silverstein  <csilvers@google.com>
2051
2052         * fileread.cc (File_read::open): Do not lock the file unless it
2053         was successfully opened.
2054
2055 2008-08-14  Cary Coutant  <ccoutant@google.com>
2056
2057         * x86_64.cc (Target_x86_64::Relocate::relocat_tls):
2058         Use addend for DTPOFF32, DTPOFF64, and TPOFF32 relocs.
2059         * testsuite/tls_test.cc (struct int128): 128-bit struct
2060         for testing TLS relocs with non-zero addend.
2061         (v12): New TLS variable.
2062         (t12): New test.
2063         (t_last): Add check for v12.
2064         * testsuite/tls_test.h (t12): New function.
2065         * testsuite/tls_test_main.cc (thread_routine): Call new test.
2066
2067 2008-08-13  Ian Lance Taylor  <iant@google.com>
2068
2069         * layout.cc (Layout::attach_allocated_section_to_segment): Don't
2070         set tls_segment_ or relro_segment_.
2071         (Layout::make_output_segment): Set tls_segment_ and relro_segment_
2072         when appropriate.
2073         * output.h (Output_section::clear_is_relro): New function.
2074         * output.cc (Output_segment::add_output_section): Handle SHF_TLS
2075         sections specially even when output_data_ is empty.
2076         (Output_segment::maximum_alignment): When first section is relro,
2077         only force alignment for PT_LOAD segments.
2078         * script.cc (script_data_segment_align): New function.
2079         (script_data_segment_relro_end): New function.
2080         * script-c.h (script_data_segment_align): Declare.
2081         (script_data_segment_relro_end): Declare.
2082         * script-sections.h (class Script_sections): Declare
2083         data_segment_align and data_segment_relro_end.  Add fields
2084         segment_align_index_ and saw_relro_end_.
2085         * script-sections.cc (class Sections_element): Add set_is_relro
2086         virtual function.  Add new bool* parameter to place_orphan_here.
2087         Add get_output_section virtual function.
2088         (class Output_section_definition): Add set_is_relro.  Add new
2089         bool* parameter to place_orphan_here.  Add get_output_section.
2090         Add is_relro_ field.
2091         (Output_section_definition::Output_section_definition): Initialize
2092         evaluated_address_, evaluated_load_address, evaluated_addralign_,
2093         and is_relro_ fields.
2094         (Output_section_definition::place_orphan_here): Add is_relro
2095         parameter.
2096         (Output_section_definition::set_section_addresses): Set relro for
2097         output section.
2098         (Output_section_definition::alternate_constraint): Likewise.
2099         (class Orphan_output_section): Add new bool* parameter to
2100         place_orphan_here.  Add get_output_section.
2101         (Orphan_output_section::place_orphan_here): Add is_relro
2102         parameter.
2103         (Script_sections::Script_sections): Initialize
2104         data_segment_align_index_ and saw_relro_end_.
2105         (Script_sections::data_segment_align): New function.
2106         (Script_sections::data_segment_relro_end): New function.
2107         (Script_sections::place_orphan): Set or clear is_relro.
2108         (Script_sections::set_section_addresses): Force alignment of first
2109         TLS section.
2110         * yyscript.y (exp): Call script_data_segment_align and
2111         script_data_segment_relro_end.
2112         * testsuite/relro_script_test.t: New file.
2113         * testsuite/relro_test.cc (using_script): Declare.
2114         (t1, t2): Test using_script.
2115         * testsuite/Makefile.am (check_PROGRAMS): Add relro_script_test.
2116         (relro_script_test_SOURCES): Define.
2117         (relro_script_test_DEPENDENCIES): Define.
2118         (relro_script_test_LDFLAGS): Define.
2119         (relro_script_test_LDADD): Define.
2120         (relro_script_test.so): New target.
2121         * testsuite/Makefile.in: Rebuild.
2122
2123 2008-08-06  Cary Coutant <ccoutant@google.com>
2124
2125         * archive.cc (Archive::total_archives, Archive::total_members)
2126         (Archive::total_members_loaded): New variables.
2127         (Archive::setup): Add parameter.  Add option to preread
2128         archive symbols.
2129         (Archive::read_armap): Add counter.
2130         (Archive::get_file_and_offset): New function.
2131         (Archive::get_elf_object_for_member): New function.
2132         (Archive::read_all_symbols): New function.
2133         (Archive::read_symbols): New function.
2134         (Archive::add_symbols): Add counters.
2135         (Archive::include_all_members): Use armap to find members if it's
2136         already built.
2137         (Archive::include_member): Skip reading symbols if already read.
2138         Factored code into Archive::get_file_and_offset and
2139         Archive::get_elf_object_for_member.  Changed call to
2140         Mapfile::report_include_archive_member.
2141         (Archive::print_stats): New function.
2142         * archive.h: Declare Object and Read_symbols_data classes.
2143         (Archive::Archive): Add initializers for new members.
2144         (Archive::setup): Add parameter.
2145         (Archive::print_stats): New function.
2146         (Archive::total_archives, Archive::total_members)
2147         (Archive::total_members_loaded): New variables.
2148         (Archive::get_file_and_offset): New function.
2149         (Archive::get_elf_object_for_member): New function.
2150         (Archive::read_all_symbols): New function.
2151         (Archive::read_symbols): New function.
2152         (Archive::Archive_member): New class.
2153         (Archive::members_): New member.
2154         (Archive::num_members_): New member.
2155         * main.cc: Include archive.h.
2156         (main): Call Archive::print_stats.
2157         * mapfile.cc (Mapfile::report_include_archive_member): Delete
2158         archive parameter; member_name is now the fully-decorated name.
2159         * mapfile.h (Mapfile::report_include_archive_member): Likewise.
2160         * options.h: (General_options): Add --preread-archive-symbols option.
2161         * readsyms.cc (Read_symbols::do_read_symbols): Change call to
2162         Archive::setup.
2163
2164 2008-08-04  Ian Lance Taylor  <iant@google.com>
2165
2166         * symtab.h (Symbol::use_plt_offset): New function.
2167         * i386.cc (Relocate::relocate): Call Symbol::use_plt_offset.
2168         * powerpc.cc (Relocate::relocate): Likewise.
2169         * sparc.cc (Relocate::relocate): Likewise.
2170         * x86_64.cc (Relocate::relocate): Likewise.
2171         * testsuite/weak_plt.sh: New test.
2172         * testsuite/weak_plt_main.cc: New test.
2173         * testsuite/weak_plt_shared.cc: New test.
2174         * testsuite/Makefile.am (check_SCRIPTS): Add weak_plt.sh.
2175         (check_PROGRAMS): Add weak_plt.
2176         (check_DATA): Add weak_plt_shared.so.
2177         (weak_plt_main_pic.o, weak_plt): New targets.
2178         (weak_plt_shared_pic.o, weak_plt_shared.so): New targets.
2179         * testsuite/Makefile.in: Rebuild.
2180
2181         * testsuite/Makefile.am (weak_alias_test_1.so): Depend upon
2182         gcctestdir/ld.
2183         (weak_alias_test_2.so, weak_alias_test_4.so): Likewise.
2184         * testsuite/Makefile.in: Rebuild.
2185
2186 2008-08-04  Alan Modra  <amodra@bigpond.net.au>
2187
2188         * Makefile.am (POTFILES.in): Set LC_ALL=C.
2189         * Makefile.in: Regenerate.
2190         * po/POTFILES.in: Regenerate.
2191
2192 2008-07-29  Ian Lance Taylor  <iant@google.com>
2193
2194         * script.cc (Script_options::finalize_symbols): Finalize SECTIONS
2195         symbols before other symbols.
2196         * testsuite/script_test_2.cc (test_addr): Declare.
2197         (test_addr_alias): Declare.
2198         (main): Check that test_addr and test_addr_alias have the right
2199         values.
2200         * testsuite/script_test_2.t: Define test_addr_alias and
2201         test_addr.
2202
2203 2008-07-24  Ian Lance Taylor  <iant@google.com>
2204
2205         PR 5990
2206         * descriptors.cc: New file.
2207         * descriptors.h: New file.
2208         * gold-threads.h (class Hold_optional_lock): New class.
2209         * fileread.cc: Include "descriptors.h".
2210         (File_read::~File_read): Release descriptor rather than closing
2211         it.
2212         (File_read::open) [file]: Call open_descriptor rather than open.
2213         Set is_descriptor_opened_.
2214         (File_read::open) [memory]: Assert that descriptor is not open.
2215         (File_read::reopen_descriptor): New function.
2216         (File_read::release): Release descriptor.
2217         (File_read::do_read): Make non-const.  Reopen descriptor.
2218         (File_read::read): Make non-const.
2219         (File_read::make_view): Reopen descriptor.
2220         (File_read::do_readv): Likewise.
2221         * fileread.h (class File_read): Add is_descriptor_opened_ field.
2222         Update declarations.
2223         * layout.cc: Include "descriptors.h".
2224         (Layout::create_build_id): Use open_descriptor rather than open.
2225         * output.cc: Include "descriptors.h".
2226         (Output_file::open): Use open_descriptor rather than open.
2227         * archive.cc (Archive::const_iterator): Change Archive to be
2228         non-const.
2229         (Archive::begin, Archive::end): Make non-const.
2230         (Archive::count_members): Likewise.
2231         * archive.h (class Archive): Update declarations.
2232         * object.h (Object::read): Make non-const.
2233         * Makefile.am (CCFILES): Add descriptors.cc.
2234         (HFILES): Add descriptors.h.
2235         * Makefile.in: Rebuild.
2236
2237         PR 6716
2238         * gold.h: Always include <clocale>.  Add Solaris workarounds
2239         following code in binutils/sysdep.h.
2240
2241         PR 6048
2242         * ehframe.cc (Eh_frame::add_ehframe_input_section): Check whether
2243         this->eh_frame_hdr_ is NULL before using it.
2244
2245         * dynobj.cc (Versions::Versions): Update comment.
2246
2247         * dynobj.cc (Versions::Versions): If there is an soname, use it as
2248         the base version name.
2249
2250         * stringpool.cc (Stringpool_template::add_with_length): Set key to
2251         array size plus one.
2252         (Stringpool_template::set_string_offsets): Subtract one from key
2253         before using it as an array index.
2254         (Stringpool_template::get_offset_with_length): Likewise.
2255         (Stringpool_template::write_to_buffer): Likewise.
2256         * stringpool.h (Stringpool_template::get_offset_from_key):
2257         Likewise.
2258
2259 2008-07-23  Ian Lance Taylor  <iant@google.com>
2260
2261         PR 6658
2262         * object.h (Merged_symbol_value::value): Do our best to handle a
2263         negative addend.
2264
2265         PR 6647
2266         * script.cc (Version_script_info::get_versions): Don't add empty
2267         version tag to return value.
2268         (Version_script_info::get_symbol_version_helper): Change return
2269         type to bool.  Add pversion parameter.  Change all callers.
2270         (script_register_vers_node): Don't require a non-NULL tag.
2271         * script.h (class Version_script_info): Update declarations.
2272         (Version_script_info::get_symbol_version): Change return type to
2273         bool.  Add version parameter.  Change all callers.
2274         * symtab.cc (Sized_symbol::add_from_relobj): Rework version
2275         handling.  Handle an empty version from a version script.
2276         (Symbol_table::define_special_symbol): Likewise.
2277         * testsuite/ver_test_10.script: New file.
2278         * testsuite/ver_test_10.sh: New file.
2279         * testsuite/Makefile.am (check_SCRIPTS): Add ver_test_10.sh.
2280         (check_DATA): Add ver_test_10.syms.
2281         (ver_test_10.syms, ver_test_10.so): New target.
2282         * testsuite/Makefile.in: Rebuild.
2283
2284 2008-07-23  Simon Baldwin  <simonb@google.com>
2285
2286         * symtab.cc (Symbol_table::sized_write_symbol): Only set st_size
2287         to zero for undefined symbols from dynamic libraries.
2288
2289 2008-07-23  Ian Lance Taylor  <iant@google.com>
2290
2291         * symtab.cc (Symbol_table::resolve): Remove version parameter.
2292         Change all callers.
2293         * symtab.h (class Symbol_table): Update declaration.
2294         * testsuite/ver_test_9.cc: New file.
2295         * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_9.
2296         (ver_test_9_SOURCES, ver_test_9_DEPENDENCIES): Define.
2297         (ver_test_9_LDFLAGS, ver_test_9_LDADD): Define.
2298         (ver_test_9.so, ver_test_9.o): New targets.
2299         * testsuite/Makefile.in: Rebuild.
2300
2301 2008-07-22  Ian Lance Taylor  <iant@google.com>
2302
2303         * options.h (class General_options): Define --check-sections.
2304         * layout.cc (Layout::set_segment_offsets): Handle
2305         --check-sections.
2306
2307         * options.h (class General_options): Define -n/--nmagic and
2308         -N/--omagic.
2309         * options.cc (General_options::finalize): For -n/--nmagic or
2310         -N/--omagic, set -static.
2311         * layout.cc (Layout::attach_allocated_section_to_segment): If
2312         -N/--omagic, don't put read-only and read-write sections in
2313         different segments.
2314         (Layout::find_first_load_seg): If -N/--omagic, don't insist on
2315         finding a read-only segment.
2316         (Layout::set_segment_offsets): If -N/--omagic or -n/--nmagic,
2317         don't set the minimum segment alignment to the common page size,
2318         and don't set the file offset to the address modulo the page size.
2319         * script-sections.cc (Script_sections::create_segments): If
2320         -n/--omagic, don't put read-only and read-write sections in
2321         different segments.
2322
2323         * cref.cc: New file.
2324         * cref.h: New file.
2325         * options.h (class General_options): Add --print-symbol-counts.
2326         * main.cc (main): Issue defined symbol report if requested.
2327         * archive.cc (Archive::interpret_header): Make into a const member
2328         function.
2329         (Archive::add_symbols): Call Input_objects::archive_start and
2330         archive_stop.
2331         (Archive::const_iterator): Define new class.
2332         (Archive::begin, Archive::end): New functions.
2333         (Archive::include_all_members): Rewrite to use iterator.
2334         (Archive::count_members): New function.
2335         * archive.h (class Archive): Update declarations.
2336         (Archive::filename): New function.
2337         * object.cc: Include "cref.h".
2338         (Sized_relobj::Sized_relobj): Initialize defined_count_.
2339         (Sized_relobj::do_get_global_symbol_counts): New function.
2340         (Input_objects::add_object): Add object to cross-referencer.
2341         (Input_objects::archive_start): New function.
2342         (Input_objects::archive_stop): New function.
2343         (Input_objects::print_symbol_counts): New function.
2344         * object.h: Declare Cref and Archive.
2345         (Object::get_global_symbol_counts): New function.
2346         (Object::do_get_global_symbol_counts): New pure virtual function.
2347         (class Sized_relobj): Add defined_count_ field.  Update
2348         declarations.
2349         (class Input_objects): Add cref_ field.  Update constructor.
2350         Update declarations.
2351         * dynobj.cc (Sized_dynobj::Sized_dynobj): Initialize symbols_ and
2352         defined_count_.
2353         (Sized_dynobj::do_add_symbols): Allocate symbols_ if printing
2354         symbol counts.
2355         (Sized_dynobj::do_get_global_symbol_counts): New function.
2356         * dynobj.h (class Sized_dynobj): Add fields symbols_ and
2357         defined_count_.  Update declarations.  Define Symbols typedef.
2358         * symtab.cc (Symbol_table::add_from_relobj): Add defined
2359         parameter.  Change all callers.
2360         (Symbol_table::add_from_dynobj): Add sympointers and defined
2361         parameters.  Change all callers.
2362         * symtab.h (class Symbol_table): Update declarations.
2363         * Makefile.am (CCFILES): Add cref.cc.
2364         (HFILES): Add cref.h.
2365         * Makefile.in: Rebuild.
2366
2367 2008-07-22  Simon Baldwin  <simonb@google.com>
2368
2369         * symtab.cc (Symbol_table::sized_write_symbol): Set symbol size
2370         to zero when writing undefined symbols.
2371
2372 2008-07-22  Ian Lance Taylor  <iant@google.com>
2373
2374         * output.cc (Output_section::add_input_section): Don't try to
2375         merge empty merge sections.
2376
2377 2008-07-21  Craig Silverstein  <csilvers@google.com>
2378
2379         * symtab.cc (Symbol_table::warn_about_undefined_dynobj_symbol):
2380         Include symbol version in error message.
2381
2382 2008-07-20  Chris Demetriou  <cgd@google.com>
2383
2384         * configure.ac (gold_cv_c_random_seed): New configured variable.
2385         (RANDOM_SEED_CFLAGS): New substituted variable.
2386         * Makefile.am (AM_CFLAGS, AM_CXXFLAGS): Add $(RANDOM_SEED_CFLAGS).
2387         * configure: Rebuild.
2388         * Makefile.in: Likewise.
2389         * testsuite/Makefile.in: Likewise.
2390
2391 2008-07-18  Ian Lance Taylor  <iant@google.com>
2392
2393         * symtab.cc (Symbol_table::add_from_object): Rewrite the case
2394         where we see NAME/NULL and NAME/VERSION  as separate symbols.
2395         * testsuite/ver_test_main.cc (main): Call t4.
2396         (t4, t4_2a): Define.
2397         * testsuite/ver_test_2.cc (t4_2): Define.
2398         * testsuite/ver_test_2.script: Put t4_2a in VER2.
2399         * testsuite/ver_test_4.cc (t4_2a): Define.
2400         * testsuite/ver_test_4.script: Put t4_2a in VER2.
2401         * testsuite/ver_test.h (t4, t4_2, t4_2a): Declare.
2402
2403 2008-07-17  Ian Lance Taylor  <iant@google.com>
2404
2405         * dynobj.cc (Versions::add_def): If we give an error about a
2406         missing version, go ahead and create the version anyhow.
2407
2408 2008-07-10  Ian Lance Taylor  <iant@google.com>
2409
2410         Handle output sections with more than 0x7fffffff bytes.
2411         * object.h (class Relobj): Change map_to_output_ to
2412         output_sections_, and just keep a section pointer.  Change all
2413         uses.  Move comdat group support to Sized_relobj.
2414         (Relobj::is_section_specially_mapped): Remove.
2415         (Relobj::output_section): Remove poff parameter.  Change all
2416         callers.
2417         (Relobj::output_section_offset): New function.
2418         (Relobj::set_section_offset): Rewrite.
2419         (Relobj::map_to_output): Remove.
2420         (Relobj::output_sections): New function.
2421         (Relobj::do_output_section_offset): New pure virtual function.
2422         (Relobj::do_set_section_offset): Likewise.
2423         (class Sized_relobj): Add section_offsets_ field.  Add comdat
2424         group support from Relobj.  Update declarations.
2425         (Sized_relobj::get_output_section_offset): New function.
2426         (Sized_relobj::do_output_section_offset): New function.
2427         (Sized_relobj::do_set_section_offset): New function.
2428         * object.cc (Relobj::output_section_address): Remove.
2429         (Sized_relobj::Sized_relobj): Initialize new fields.
2430         (Sized_relobj::include_section_group): Cast find_kept_object to
2431         Sized_relobj.
2432         (Sized_relobj::include_linkonce_section): Likewise.
2433         (Sized_relobj::do_layout): Use separate arrays for output section
2434         and output offset.
2435         (Sized_relobj::do_count_local_symbols): Change map_to_output to
2436         output_sections.
2437         (Sized_relobj::do_finalize_local_symbols): Change map_to_output to
2438         output_sections and section_offsets.
2439         (Sized_relobj::write_local_symbols): Likewise.
2440         (map_to_kept_section): Compute output address directly.
2441         * reloc.cc (Sized_relobj::do_read_relocs): Change map_to_output to
2442         output_sections and section_offsets.
2443         (Sized_relobj::write_sections): Likewise.
2444         (Sized_relobj::relocate_sections): Likewise.
2445         * symtab.cc (sized_finalize_symbol): Use output_section_offset.
2446         * output.h (class Output_reloc): Update declarations.  Change
2447         u2_.relobj to Sized_relobj*.
2448         (class Output_data_reloc): Change add functions to use
2449         Sized_relobj*.
2450         * output.cc (Output_reloc::Output_reloc): Change relobj to
2451         Sized_relobj*.
2452         (Output_reloc::local_section_offset): Change return type to
2453         Elf_Addr.  Use get_output_section_offset.
2454         (Output_reloc::get_address): Likewise.
2455         (Output_section::is_input_address_mapped): Don't call
2456         is_section_specially_mapped.
2457         (Output_section::output_offset): Likewise.
2458         (Output_section::output_address): Likewise.
2459         (Output_section::starting_output_address): Likewise.
2460         * copy-relocs.cc (Copy_relocs::copy_reloc): Change object
2461         parameter to Sized_relobj*.
2462         (Copy_relocs::need_copy_reloc): Likewise.
2463         (Copy_relocs::save): Likewise.
2464         * copy-relocs.h (class Copy_relocs): Update declarations.
2465         (class Copy_relocs::Copy_reloc_entry): Change constructor to use
2466         Sized_relobj*.  Change relobj_ field to Sized_relobj*.
2467         * target-reloc.h (relocate_for_relocatable): Change
2468         offset_in_output_section type to Elf_Addr.  Change code that uses
2469         it as well.
2470         * layout.cc (Layout::layout): Always set *off.
2471         * mapfile.cc (Mapfile::print_input_section): Use
2472         output_section_offset.
2473         * i386.cc (Target_i386::copy_reloc): Change object parameter to
2474         Sized_relobj*.
2475         * powerpc.cc (Target_powerpc::copy_reloc): Likewise.
2476         * sparc.cc (Target_sparc::copy_reloc): Likewise.
2477         * x86_64.cc (Target_x86_64::copy_reloc): Likewise.
2478
2479 2008-07-03  Ian Lance Taylor  <iant@google.com>
2480
2481         * layout.cc (Layout::include_section): Do not discard unrecognized
2482         SHT_STRTAB sections.
2483
2484 2008-06-30  Craig Silverstein  <csilvers@cs.stanford.edu>
2485
2486         * script.cc (Lex::can_continue_name): Make '?' allowable in
2487         version-script names.
2488         * testsuite/version_script.map: Change glob pattern to use '?'
2489
2490 2008-06-30  Manish Singh  <yosh@gimp.org>
2491
2492         PR 6585
2493         * symtab.cc (Symbol_table::add_undefined_symbols_from_command_line):
2494         Correct typo.
2495
2496 2008-06-30  Ian Lance Taylor  <iant@google.com>
2497
2498         PR 6660
2499         PR 6682
2500         * powerpc.cc (Powerpc_relocate_functions::addr16_ha) [both
2501         versions]: Don't try to read the value in the contents, since we
2502         don't use it.  Use the template endianness when writing.
2503
2504 2008-06-25  Cary Coutant  <ccoutant@google.com>
2505
2506         * fileread.cc (File_read::make_view): Assert on zero-length view.
2507         * object.cc (Sized_relobj::do_read_symbols): Don't try to read
2508         symbol table when there are no symbols to read.
2509
2510 2008-06-23  Craig Silverstein  <csilvers@google.com>
2511
2512         * version.cc (version_string): Bump to 1.7
2513
2514 2008-06-18  Craig Silverstein  <csilvers@google.com>
2515
2516         * powerpc.cc (Powerpc_relocate_functions::addr16_ha): cast
2517         constant 0xFFFF to type Valtype.
2518         (Powerpc_relocate_functions::rel16_ha): Likewise.
2519
2520 2008-06-17  Ian Lance Taylor  <iant@google.com>
2521
2522         * output.h (Output_section::Input_section): Initialize p2align_ to
2523         zero for Output_section_data constructors.
2524         (Output_section::Input_section::addralign): If not an input
2525         section, return the alignment of the Output_section_data.
2526         * testsuite/copy_test.cc: New file.
2527         * testsuite/copy_test_1.cc: New file.
2528         * testsuite/copy_test_2.cc: New file.
2529         * testsuite/Makefile.am (check_PROGRAMS): Add copy_test.
2530         (copy_test_SOURCES, copy_test_DEPENDENCIES): New variables.
2531         (copy_test_LDFLAGS, copy_test_LDADD): New variables.
2532         (copy_test_1_pic.o, copy_test_1.so): New targets.
2533         (copy_test_2_pic.o, copy_test_2.so): New targets.
2534         * testsuite/Makefile.in: Rebuild.
2535
2536         * script-sections.cc (Script_sections::place_orphan): Initialize
2537         local variable exact.
2538
2539 2008-06-13  David Edelsohn  <edelsohn@gnu.org>
2540
2541         * powerpc.cc (Output_data_plt_powerpc::do_write): 8 + 4 = 0xC.
2542
2543 2008-06-12  David Edelsohn  <edelsohn@gnu.org>
2544             David S. Miller  <davem@davemloft.net>
2545
2546         * powerpc.cc: New file.
2547         * Makefile.am (TARGETSOURCES): Add powerpc.cc
2548         (ALL_TARGETOBJS): Add powerpc.$(OBJEXT)
2549         * configure.tgt: Add entries for powerpc-* and powerpc64-*.
2550         * Makefile.in: Rebuild.
2551
2552 2008-06-09  Ian Lance Taylor  <iant@google.com>
2553
2554         * testsuite/relro_test.cc: Include <cstdio>, <cstdlib>, and
2555         <exception>.
2556         (throwing, orig_terminate): New static variables.
2557         (terminate_handler): New static function.
2558         (t2): Set terminate handler.
2559
2560 2008-06-05  Kris Van Hees  <kris.van.hees@oracle.com>
2561
2562         PR 6584
2563         * binary.cc (Binary_to_elf::sized_convert): Fix .data
2564         alignment.
2565
2566 2008-05-30  Cary Coutant  <ccoutant@google.com>
2567
2568         * archive.cc (Archive::include_all_members) Correct to step
2569         over symbol table and extended name table in thin archives.
2570
2571 2008-05-29  Kris Van Hees  <kris.van.hees@oracle.com>
2572
2573         PR 6407
2574         * target-reloc.h (relocate_for_relocatable): Fix new_offset
2575         calculation.
2576
2577 2008-05-28  Caleb Howe  <cshowe@google.com>
2578
2579         * reduced_debug_output.cc: New file.
2580         * reduced_debug_output.h: New file.
2581         * options.h (class General_options): Add --strip-debug-non-line.
2582         * options.cc (General_options::finalize): Add strip_debug_non_line
2583         to the strip heirarchy.
2584         * layout.h (class Layout): Add debug_abbrev_ and debug_info_
2585         fields.
2586         * layout.cc: Include "reduced_debug_output.h".
2587         (Layout::Layout): Initialize new fields.
2588         (line_only_debug_sections): New static array.
2589         (is_lines_only_debug_sections): New static inline function.
2590         (Layout::include_section): Handle --strip-debug-non-line.
2591         (Layout::make_output_section): If --strip-debug-non-line, build
2592         new output sections for .debug_abbrev and .debug_info.
2593         * dwarf_reader.cc (read_unsigned_LEB_128): Move to namespace
2594         gold.  Warn about possible overflow.
2595         (read_signed_LEB_128): Likewise.
2596         * dwarf_reader.h: (read_unsigned_LEB_128): Declare.
2597         (read_signed_LEB_128): Declare.
2598         * Makefile.am (CCFILES): Add reduced_debug_output.cc.
2599         (HFILES): Add reduced_debug_output.h.
2600         * Makefile.in: Rebuild.
2601
2602 2008-05-21  Ian Lance Taylor  <iant@google.com>
2603
2604         * mapfile.cc: New file.
2605         * mapfile.h: New file.
2606         * options.h (class General_options): Add -M/--print-map and -Map.
2607         * options.cc (General_options::finalize): Make -M equivalent to
2608         -Map -.
2609         * main.cc: Include <cstdio> and "mapfile.h".
2610         (main): Open mapfile if requested.
2611         * gold.cc (class Middle_runner): Add mapfile_ field.  Update
2612         constructor.  Change caller.
2613         (queue_initial_tasks): Add mapfile parameter.  Change caller.
2614         (queue_middle_tasks): Likewise.
2615         * gold.h (queue_initial_tasks, queue_middle_tasks): Update
2616         declarations.
2617         * archive.cc: Include "mapfile.h".
2618         (Archive::add_symbols): Add mapfile parameter.  Change all
2619         callers.  Pass mapfile, symbol, and reason to include_member.
2620         (Archive::include_all_members): Add mapfile parameter.  Change all
2621         callers.
2622         (Archive::include_member): Add mapfile, sym, and why parameters.
2623         Change all callers.  Report inclusion to map file.
2624         * archive.h: Include "fileread.h".
2625         (class Archive): Update declarations.
2626         (Archive::file): New const method.
2627         (class Add_archive_symbols): Add mapfile_ field.  Update
2628         constructor.  Change all callers.
2629         * readsyms.h (class Read_symbols): Likewise.
2630         (class Finish_group): Likewise.
2631         (class Read_script): Likewise.
2632         * common.cc: Include "mapfile.h".
2633         (Symbol_table::allocate_commons): Add mapfile parameter.  Change
2634         all callers.
2635         (Symbol_table::do_allocate_commons): Likewise.
2636         (Symbol_table::do_allocate_commons_list): Likewise.  Report common
2637         symbol allocation to mapfile.
2638         * common.h (class Allocate_commons_task): Add mapfile_ field.
2639         Update constructor.  Change all callers.
2640         * symtab.h (class Symbol_table): Update declarations.
2641         * layout.cc: Include "mapfile.h".
2642         (Layout_task_runner::run): Print information to mapfile.
2643         (Layout::create_gold_note): Change Output_data_fixed_space to
2644         Output_data_zero_fill.
2645         (Layout::create_build_id): Likewise.
2646         (Layout::print_to_mapfile): New function.
2647         * layout.h (class Layout_task_runner): Add mapfile_ field.  Update
2648         constructor.  Change caller.
2649         (class Layout): Declare print_to_mapfile.
2650         * output.cc (Output_section::Input_section::print_to_mapfile): New
2651         function.
2652         (Output_section::add_input_section): If producing a map, always
2653         add to input_sections_ list.
2654         (Output_section::do_print_to_mapfile): New function.
2655         (Output_segment::print_sections_to_mapfile): New function.
2656         (Output_segment::print_section_list_to_mapfile): New function.
2657         * output.h: Include "mapfile.h".
2658         (Output_data::print_to_mapfile): New function.
2659         (Output_data::do_print_to_mapfile): New virtual function.
2660         (Output_segment_headers::do_print_to_mapfile): New function.
2661         (Output_file_header::do_print_to_mapfile): New function.
2662         (Output_data_const::do_print_to_mapfile): New function.
2663         (class Output_data_const_buffer): Add map_name_ field.  Update
2664         constructor.  Change all callers.  Add do_print_to_mapfile
2665         function.
2666         (class Output_data_fixed_space): Likewise.
2667         (class Output_data_space): Likewise.
2668         (class Output_data_zero_fill): New class.
2669         (Output_data_strtab::do_print_to_mapfile): New function.
2670         (Output_data_reloc_base::do_print_to_mapfile): New function.
2671         (Output_relocatable_relocs::do_print_to_mapfile): New function.
2672         (Output_data_group::do_print_to_mapfile): New function.
2673         (Output_data_got::do_print_to_mapfile): New function.
2674         (Output_data_dynamic::do_print_to_mapfile): New function.
2675         (Output_symtab_xindex::do_print_to_mapfile): New function.
2676         (class Output_section): Declare do_print_to_mapflie.  Declare
2677         print_to_mapfile in Input_section.
2678         (class Output_segment): Declare new functions.
2679         * object.h (Sized_relobj::symbol_count): New function.
2680         * script-sections.cc
2681         (Output_section_element_dot_assignment::set_section_addresses):
2682         Change Output_data_fixed_space to Output_data_zero_fill.
2683         (Output_data_expression::do_print_to_mapfile): New function.
2684         * script.cc (read_input_script): Add mapfile parameter.  Change
2685         all callers.
2686         * script.h (read_input_script): Update declaration.
2687         * ehframe.h (Eh_frame_hdr::do_print_to_mapfile): New function.
2688         (Eh_frame::do_print_to_mapfile): New function.
2689         * merge.h (Output_merge_data::do_print_to_mapfile): New function.
2690         (Output_merge_string::do_print_to_mapfile): New function.
2691         * i386.cc (Output_data_plt_i386::do_print_to_mapfile): New
2692         function.
2693         * sparc.cc (Output_data_plt_sparc::do_print_to_mapfile): New
2694         function.
2695         * x86_64.cc (Output_data_plt_x86_64::do_print_to_mapfile): New
2696         function.
2697         * Makefile.am (CCFILES): Add mapfile.cc.
2698         (HFILES): Add mapfile.h.
2699         * Makefile.in: Rebuild.
2700
2701 2008-05-19  Ian Lance Taylor  <iant@google.com>
2702
2703         * options.h (class General_options): Add -z relro.
2704         * layout.cc (Layout::Layout): Initialize relro_segment_.
2705         (Layout::add_output_section_data): Return the output section.
2706         (Layout::make_output_section): Rcognize relro sections and mark
2707         them appropriately.
2708         (Layout::attach_allocated_section_to_segment): Put relro sections
2709         in a PT_GNU_RELRO segment.
2710         (Layout::create_initial_dynamic_sections): Mark the .dynamic
2711         section as relro.
2712         (Layout::segment_precedes): Sort PT_GNU_RELRO segments after
2713         PT_TLS segments.
2714         (Layout::linkonce_mapping): Map d.rel.ro.local to
2715         .data.rel.ro.local.
2716         (Layout::output_section_name): Us .data.rel.ro.local for any
2717         section which begins with that.
2718         * layout.h (class Layout): Update add_output_section_data
2719         declaration.  Add relro_segment_ field.
2720         * output.cc (Output_section::Output_section): Initialize is_relro_
2721         and is_relro_local_ fields.
2722         (Output_segment::add_output_section): Group relro sections.
2723         (Output_segment::is_first_section_relro): New function.
2724         (Output_segment::maximum_alignment): If there is a relro section,
2725         align the segment to the common page size.
2726         (Output_segment::set_section_addresses): Track whether we are
2727         looking at relro sections.  If the last section is a relro
2728         section, align to the common page size.
2729         (Output_segment::set_section_list_addresses): Add in_relro
2730         parameter.  Change all callers.  Align to the page size when
2731         moving from relro to non-relro section.
2732         (Output_segment::set_offset): Align memsz of a PT_GNU_RELRO
2733         segment.
2734         * output.h (class Output_section): Add is_relro_ and
2735         is_relro_local_ fields.
2736         (Output_section::is_relro): New function.
2737         (Output_section::set_is_relro): New function.
2738         (Output_section::is_relro_local): New function.
2739         (Output_section::set_is_relro_local): New function.
2740         (class Output_segment): Update declarations.
2741         * i386.cc (Target_i386::got_section): Mark .got section as relro.
2742         * sparc.cc (Target_sparc::got_section): Likewise.
2743         * x86_64.cc (Target_x86_64::got_section): Likewise.
2744         * testsuite/relro_test_main.cc: New file.
2745         * testsuite/relro_test.cc: New file.
2746         * testsuite/Makefile.am (check_PROGRAMS): Add relro_test.
2747         (relro_test_SOURCES, relro_test_DEPENDENCIES): New variables.
2748         (relro_test_LDFLAGS, relro_test_LDADD): New variables.
2749         (relro_test.so, relro_test_pic.o): New targets.
2750         * testsuite/Makefile.in: Rebuild.
2751
2752 2008-05-16  Ian Lance Taylor  <iant@google.com>
2753
2754         * output.cc (Output_segment::add_output_section): Remove front
2755         parameter.
2756         * output.h (class Output_segment): Remove
2757         add_initial_output_section and overloaded add_output_section.
2758         Update declaration of remaining add_output_section.
2759         * layout.cc (Layout::create_interp): Call add_output_section
2760         rather than add_initial_output_section.
2761         (Layout::finish_dynamic_section): Likewise.
2762
2763         * i386.cc (Target_i386::Relocate::relocate_tls): Set dynamic type
2764         for TLS_GOTDESC and TLS_DESC_CALL.  Only optimize TLS_LDO_32 if we
2765         know the dynamic type.
2766         * x86_64.cc (Target_x86_64::Relocate): Add saw_tls_block_reloc_
2767         field.  Initialize it in constructor.
2768         (Target_x86_64::Relocate::relocate_tls): Record that we saw a TLS
2769         block reloc for TLSGD, GOTPC32_TLSDESC, TLSDESC_CALL, and TLSLD.
2770         Only optimize DTPOFF32 and DTPOFF64 if we have seen a TLS block
2771         reloc.
2772
2773         * output.cc (Output_reloc::get_address): Change return type to
2774         Elf_Addr.
2775         * output.h (class Output_reloc): Update get_address declaration.
2776         * x86_64.cc (Output_data_plt_x86_64::do_write): Use 64-bit types
2777         for section addresses.
2778
2779 2008-05-09  Ian Lance Taylor  <iant@google.com>
2780
2781         PR 6493
2782         * gold.cc (gold_nomem): Use return value of write.
2783
2784 2008-05-08  Ian Lance Taylor  <iant@google.com>
2785
2786         * symtab.c (Symbol::init_base_output_data): Add version
2787         parameter.  Change all callers.
2788         (Symbol::init_base_output_segment): Likewise.
2789         (Symbol::init_base_constant): Likewise.
2790         (Symbol::init_base_undefined): Likewise.
2791         (Sized_symbol::init_output_data): Likewise.
2792         (Sized_symbol::init_output_segment): Likewise.
2793         (Sized_symbol::init_constant): Likewise.
2794         (Sized_symbol::init_undefined): Likewise.
2795         (Symbol_table::do_define_in_output_data): If the new symbol has a
2796         version, mark it as the default.
2797         (Symbol_table::do_define_in_output_segment): Likewise.
2798         (Symbol_table::do_define_as_constant): Likewise.
2799         * symtab.h (class Symbol): Update declarations.
2800         (class Sized_symbol): Likewise.
2801         * resolve.cc (Symbol::override_version): New function.
2802         (Symbol::override_base): Call override_version.
2803         (Symbol::override_base_with_special): Likewise.
2804         * testsuite/ver_script_8.script: New file.
2805         * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_8.
2806         (ver_test_8_SOURCES, ver_test_8_DEPENDENCIES): Define.
2807         (ver_test_8_LDFLAGS, ver_test_8_LDADD): Define.
2808         (ver_test_8_1.so, ver_test_8_2.so): New targets.
2809
2810 2008-05-06  Ian Lance Taylor  <iant@google.com>
2811
2812         PR 6049
2813         * options.h (DEFINE_set): Add VARNAME_begin and VARNAME_end
2814         functions.
2815         (class General_options): Remove existing --undefined, and add
2816         --no-undefined instead.  Add new --undefined as synonym for -u.
2817         * archive.cc (Archive::add_symbols): Check whether symbol was
2818         named with -u.
2819         * gold.cc (queue_middle_tasks): Add -u symbols to symbol table.
2820         * symtab.h (class Symbol): Rename CONSTANT to IS_CONSTANT; change
2821         all uses.  Add IS_UNDEFINED.  Update declarations to split
2822         different versions of init_base.  Declare init_base_undefined.
2823         (Symbol::is_defined): Handle IS_UNDEFINED.
2824         (Symbol::is_undefined): Likewise.
2825         (Symbol::is_weak_undefined): Call is_undefined.
2826         (Symbol::is_absolute): Handle IS_CONSTANT.
2827         (class Sized_symbol): Update declarations to split different
2828         versions of init.  Declare init_undefined.
2829         (class Symbol_table): Declare new functions.
2830         * symtab.cc (Symbol::init_base_object): Rename from init_base.
2831         Change all callers.
2832         (Symbol::init_base_output_data): Likewise.
2833         (Symbol::init_base_output_segment): Likewise.
2834         (Symbol::init_base_constant): Likewise.
2835         (Symbol::init_base_undefined): New function.
2836         (Sized_symbol::init_object): Rename from init.  Change all
2837         callers.
2838         (Sized_symbol::init_output_data): Likewise.
2839         (Sized_symbol::init_output_segment): Likewise.
2840         (Sized_symbol::init_constant): Likewise.
2841         (Sized_symbol::init_undefined): New function.
2842         (Symbol_table::add_undefined_symbols_from_command_line): New
2843         function.
2844         (Symbol_table::do_add_undefined_symbols_from_command_line): New
2845         function.
2846         (Symbol::final_value_is_known): Handle IS_UNDEFINED.
2847         (Symbol::output_section): Likewise.
2848         (Symbol::set_output_section): Likewise.
2849         (Symbol_table::sized_finalize_symbol): Likewise.
2850         (Symbol_table::sized_write_globals): Likewise.
2851         * resolve.cc (Symbol_table::should_override): Likewise.
2852         (Symbol::override_base_with_special): Likewise.
2853
2854         * symtab.cc (Symbol_table::add_from_dynobj): If we see a protected
2855         symbol, change it to have default visibility.
2856         * testsuite/protected_1.cc: New file.
2857         * testsuite/protected_2.cc: New file.
2858         * testsuite/protected_3.cc: New file.
2859         * testsuite/protected_main_1.cc: New file.
2860         * testsuite/protected_main_2.cc: New file.
2861         * testsuite/protected_main_3.cc: New file.
2862         * testsuite/Makefile.am (check_PROGRAMS): Add protected_1.
2863         (protected_1_SOURCES, protected_1_DEPENDENCIES): Define.
2864         (protected_1_LDFLAGS, protected_1_LDADD): Define.
2865         (protected_1.so): New target.
2866         (protected_1_pic.o, protected_2_pic.o): New targets.
2867         (protected_3_pic.o): New target.
2868         (check_PROGRAMS): Add protected_2.
2869         (protected_2_SOURCES, protected_2_DEPENDENCIES): Define.
2870         (protected_2_LDFLAGS, protected_2_LDADD): Define.
2871         * testsuite/Makefile.in: Rebuild.
2872
2873         * options.h (DEFINE_var): Add set_user_set_##varname__.
2874         (DEFINE_bool_alias): New macro.
2875         (class General_options): Define -Bstatic using DEFINE_bool_alias
2876         rather than DEFINE_special.  Add --undefined as an alias for -z
2877         defs.
2878         * options.cc (General_options::parse_Bstatic): Remove.
2879
2880         * options.h (class General_options): Add --fatal-warnings.
2881         * main.cc (main): Implement --fatal-warnings.
2882         * errors.h (Errors::warning_count): New function.
2883
2884         * options.h (class General_options): Add -Bsymbolic-functions.
2885         * symtab.h (Symbol::is_preemptible): Check for
2886         -Bsymbolic-functions.
2887
2888 2008-05-05  Ian Lance Taylor  <iant@google.com>
2889
2890         * options.h (DEFINE_bool): For DASH_Z, create the negative option
2891         as noVARNAME rather than no-VARNAME.
2892         (class General_options): Add option -z combreloc.
2893         * output.h (class Output_reloc) [SHT_REL]: Declare compare and
2894         get_address.
2895         (Output_reloc::sort_before) [SHT_REL]: New function.
2896         (Output_reloc::sort_before) [SHT_RELA]: New function.
2897         (class Output_data_reloc_base): Add sort_relocs_ field.  Define
2898         Sort_relocs_comparison.
2899         (Output_data_reloc_base::Output_data_reloc_base): Add sort_relocs
2900         parameter.  Change all callers.
2901         (Output_data_reloc::Output_data_reloc) [both versions]: Add
2902         sort_relocs parameter.  Change all callers.
2903         * output.cc (Output_reloc::get_address): New function, broken out
2904         of write_rel.
2905         (Output_reloc::write_rel): Call it.
2906         (Output_reloc::compare): New function.
2907         (Output_data_reloc_base::do_write): Optionally sort relocs.
2908
2909         * configure.ac: If targ_extra_obj is set, link it in.
2910         * configure.tgt: Initialize all variables.
2911         (x86_64*): Set targ_extra_obj and targ_extra_size.
2912         * configure: Rebuild.
2913
2914         * object.cc (Sized_relobj::include_section_group): Adjust section
2915         indexes read from group data.  Build vector to pass to
2916         layout_group.
2917         * layout.cc (Layout::layout_group): Add flags and shndxes
2918         parameters.  Remove contents parameter.  Change caller.  Update
2919         explicit instantiations.
2920         * layout.h (class Layout): Update layout_group declaration.
2921         * output.cc (Output_data_group::Output_data_group): Add flags and
2922         input_shndxes parameters.  Remove contents parameter.  Change
2923         caller.
2924         (Output_data_group::do_write): Change input_sections_ to
2925         input_shndxes_.
2926         * output.h (class Output_data_group): Update constructor
2927         declaration.  Rename input_sections_ to input_shndxes_.
2928         * testsuite/many_sections_test.cc: Add template.
2929
2930 2008-04-30  Cary Coutant  <ccoutant@google.com>
2931
2932         * target-reloc.h (relocate_section): Fix dead-pointer bug.
2933
2934         * layout.cc (Layout::include_section): Refactored check for debug
2935         info section.
2936         (Layout::add_comdat): Add new parameters.  Change type
2937         of signature parameter.  Add object and shndx to signatures table.
2938         (Layout::find_kept_object): New function.
2939         * layout.h: Include <cstring>.
2940         (Layout::is_debug_info_section): New function.
2941         (Layout::add_comdat): Add new parameters.
2942         (Layout::find_kept_object): New function.
2943         (Layout::Kept_section): New struct.
2944         (Layout::Signatures): Change type of map range.
2945         * object.cc (Relobj::output_section_address): New function.
2946         (Sized_relobj::include_section_group): Add new parameters.  Change
2947         calls to Layout::add_comdat.  Change to build table of kept comdat
2948         groups and table mapping discarded sections to kept sections.
2949         (Sized_relobj::include_linkonce_section): Likewise.  Add new parameter.
2950         (Sized_relobj::do_layout): Change calls to include_section_group and
2951         include_linkonce_section.
2952         (Sized_relobj::do_finalize_local_symbols): Do not set local symbol
2953         value to zero when section is discarded.
2954         (Sized_relobj::map_to_kept_section): New function.
2955         * object.h (Relobj::output_section_address): New function.
2956         (Relobj::Comdat_group): New type.
2957         (Relobj::find_comdat_group): New function.
2958         (Relobj::Comdat_group_table): New type.
2959         (Relobj::Kept_comdat_section): New type.
2960         (Relobj::Kept_comdat_section_table): New type.
2961         (Relobj::add_comdat_group): New function.
2962         (Relobj::set_kept_comdat_section): New function.
2963         (Relobj::get_kept_comdat_section): New function.
2964         (Relobj::comdat_groups_): New field.
2965         (Relobj::kept_comdat_sections_): New field.
2966         (Symbol_value::input_value): Update comment.
2967         (Sized_relobj::map_to_kept_section) New function.
2968         (Sized_relobj::include_linkonce_section): Add new parameter.
2969         * target-reloc.h (Comdat_behavior): New type.
2970         (get_comdat_behavior): New function.
2971         (relocate_section): Add code to map a discarded section to the
2972         corresponding kept section when applying a relocation.
2973
2974 2008-04-30  Craig Silverstein  <csilvers@google.com>
2975
2976         * dwarf_reader.cc (next_generation_count): New static var.
2977         (Addr2line_cache_entry): New struct.
2978         (addr2line_cache): New static var.
2979         (Dwarf_line_info::one_addr2line): Added caching.
2980         (Dwarf_line_info::clear_addr2line_cache): New function.
2981         * dwarf_reader.h (Dwarf_line_info::one_addr2line): Add
2982         cache-size parameter.
2983         (Dwarf_line_info::one_addr2line_cache): New function.
2984         * symtab.cc (Symbol_table::detect_odr_violations): Pass
2985         new cache-size argument to one_addr2line(), and clear cache.
2986
2987 2008-04-28  Cary Coutant  <ccoutant@google.com>
2988
2989         * i386.cc (Relocate::relocate): Fix typos for R_386_PC16 and
2990         R_386_PC8 relocations.
2991
2992 2008-04-23  Ian Lance Taylor  <iant@google.com>
2993
2994         * object.cc (Sized_relobj::include_section_group): Check for
2995         invalid section group.
2996
2997         * object.cc (make_elf_object): Correct test for 64-bit ELF file
2998         header size.
2999
3000         * readsyms.cc (Read_symbols::do_read_symbols): Use get_view rather
3001         than read for file header.
3002         * archive.cc (Archive::include_member): Likewise.
3003
3004 2008-04-23  Paolo Bonzini  <bonzini@gnu.org>
3005
3006         * aclocal.m4: Regenerate.
3007         * configure: Regenerate.
3008
3009 2008-04-19  Ian Lance Taylor  <iant@google.com>
3010
3011         * version.cc (version_string): Bump to 1.6.
3012
3013         * testsuite/Makefile.am (many_sections_r_test): New target.
3014         (many_sections_r_test_SOURCES): Remove.
3015         (many_sections_r_test_DEPENDENCIES): Remove.
3016         (many_sections_r_test_LDFLAGS): Remove.
3017         (many_sections_r_test_LDADD): Remove.
3018
3019         * object.cc (Sized_relobj::do_add_symbols): Always pass
3020         local_symbol_count_ to add_from_relobj.
3021
3022         * testsuite/Makefile.am (many_sections_check.h): Only check one in
3023         every thousand variables.
3024         * testsuite/Makefile.in: Rebuild.
3025
3026         * object.cc (Xindex::initialize_symtab_xindex): New function.
3027         (Xindex::read_symtab_xindex): New function.
3028         (Xindex::sym_xindex_to_shndx): New function.
3029         (Sized_relobj::find_symtab): Pick up SHT_SYMTAB_SHNDX section if
3030         available.
3031         (Sized_relobj::do_initialize_xindex): New function.
3032         (Sized_relobj::do_read_symbols): Adjust section links.
3033         (Sized_relobj::symbol_section_and_value): Add is_ordinary
3034         parameter.  Change all callers.
3035         (Sized_relobj::include_section_group): Adjust section links and
3036         symbol section indexes.
3037         (Sized_relobj::do_layout): Adjust section links.
3038         (Sized_relobj::do_count_local_symbols): Adjust section links and
3039         symbol section indexes.
3040         (Sized_relobj::do_finalize_local_symbols): Distinguish between
3041         ordinary and special symbols.
3042         (Sized_relobj::write_local_symbols): Add symtab_xindex and
3043         dynsym_xindex parameters.  Change all callers.  Adjust section
3044         links.  Use SHN_XINDEX when needed.
3045         (Sized_relobj::get_symbol_location_info): Adjust section links.
3046         Don't get fooled by special symbols.
3047         * object.h (class Xindex): Define.
3048         (class Object): Add xindex_ parameter.  Declare virtual functoin
3049         do_initialize_xindex.
3050         (Object::adjust_sym_shndx): New function.
3051         (Object::set_xindex): New protected function.
3052         (class Symbol_value): Add is_ordinary_shndx_ field.
3053         (Symbol_value::Symbol_value): Initialize is_ordinary_shndx_.
3054         (Symbol_value::value): Assert ordinary section.
3055         (Symbol_value::initialize_input_to_output_map): Likewise.
3056         (Symbol_value::set_input_shndx): Add is_ordinary parameter.
3057         Change all callers.
3058         (Symbol_value::input_shndx): Add is_ordinary parameter.  Change
3059         all callers.
3060         (class Sized_relobj): Update declarations.
3061         (Sized_relobj::local_symbol_input_shndx): Add is_ordinary
3062         parameter.  Change all callers.
3063         (Sized_relobj::adjust_shndx): New function.
3064         * dynobj.cc (Sized_dynobj::Sized_dynobj): Initialize dynsym_shndx_
3065         field.
3066         (Sized_dynobj::find_dynsym_sections): Remove pdynsym_shndx
3067         parameter.  Change all callers.  Pick up SHT_DYNSYM_SHNDX section
3068         for SHT_DYNSYM section if available.  Set dynsym_shndx_ field.
3069         (Sized_dynobj::read_dynsym_section): Adjust section links.
3070         (Sized_dynobj::read_dynamic): Likewise.
3071         (Sized_dynobj::do_read_symbols): Use dynsym_shndx_ field.  Adjust
3072         section links.
3073         (Sized_dynobj::do_initialize_xindex): New function.
3074         * dynobj.h (class Sized_dynobj): Add dynsym_shndx_ field.  Declare
3075         do_initialize_xindex.
3076         (Sized_dynobj::adjust_shndx): New function.
3077         * layout.cc (Layout::Layout): Initialize symtab_xindex_ and
3078         dynsym_xindex_ fields.
3079         (Layout::finalize): Add a call to set_section_indexes before
3080         creating the symtab sections.
3081         (Layout::set_section_indexes): Don't do anything if the section
3082         already has a section index.
3083         (Layout::create_symtab_sections): Add shnum parameter.  Change
3084         caller.  Create .symtab_shndx section if needed.
3085         (Layout::create_shdrs): Add shstrtab_section parameter.  Change
3086         caller.
3087         (Layout::allocated_output_section_count): New function.
3088         (Layout::create_dynamic_symtab): Create .dynsym_shndx section if
3089         needed.
3090         * layout.h (class Layout): Add symtab_xindex_ and dynsym_xindex_
3091         fields.  Update declarations.
3092         (Layout::symtab_xindex): New function.
3093         (Layout::dynsym_xindex): New function.
3094         (class Write_symbols_task): Add layout_ field.
3095         (Write_symbols_task::Write_symbols_task): Add layout parameter.
3096         Change caller.
3097         * output.cc (Output_section_headers::Output_section_headers): Add
3098         shstrtab_section parameter.  Change all callers.
3099         (Output_section_headers::do_sized_write): Store overflow values
3100         for section count and section string table section index in
3101         section header zero.
3102         (Output_file_header::do_sized_write): Check for overflow of
3103         section count and section string table section index.
3104         (Output_symtab_xindex::do_write): New function.
3105         (Output_symtab_xindex::endian_do_write): New function.
3106         * output.h (class Output_section_headers): Add shstrtab_section_.
3107         Update declarations.
3108         (class Output_symtab_xindex): Define.
3109         (Output_section::has_out_shndx): New function.
3110         * symtab.cc (Symbol::init_fields): Initialize is_ordinary_shndx_
3111         field.
3112         (Symbol::init_base): Add st_shndx and is_ordinary parameters.
3113         Change all callers.
3114         (Sized_symbol::init): Likewise.
3115         (Symbol::output_section): Check for ordinary symbol.
3116         (Symbol_table::add_from_object): Remove orig_sym parameter.  Add
3117         st_shndx, is_ordinary, and orig_st_shndx parameters.  Change all
3118         callers.
3119         (Symbol_table::add_from_relobj): Add symndx_offset parameter.
3120         Change all callers.  Simplify handling of symbols from sections
3121         not included in the link.
3122         (Symbol_table::add_from_dynobj): Handle ordinary symbol
3123         distinction.
3124         (Weak_alias_sorter::operator()): Assert that symbols are
3125         ordinary.
3126         (Symbol_table::sized_finalize_symbol): Handle ordinary symbol
3127         distinction.
3128         (Symbol_table::write_globals): Add symtab_xindex and dynsym_xindex
3129         parameters.  Change all callers.
3130         (Symbol_table::sized_write_globals): Likewise.  Handle ordinary
3131         symbol distinction.  Use SHN_XINDEX when needed.
3132         (Symbol_table::write_section_symbol): Add symtab_xindex
3133         parameter.  Change all callers.
3134         (Symbol_table::sized_write_section_symbol): Likewise.  Use
3135         SHN_XINDEX when needed.
3136         * symtab.h (class Symbol): Add is_ordinary_shndx_ field.  Update
3137         declarations.
3138         (Symbol::shndx): Add is_ordinary parameter.  Change all callers.
3139         (Symbol::is_defined): Check is_ordinary.
3140         (Symbol::is_undefined, Symbol::is_weak_undefined): Likewise.
3141         (Symbol::is_absolute, Symbol::is_common): Likewise.
3142         (class Sized_symbol): Update declarations.
3143         (class Symbol_table): Update declarations.
3144         * resolve.cc (Symbol::override_base): Add st_shndx and is_ordinary
3145         parameters.  Change all callers.
3146         (Sized_symbol::override): Likewise.
3147         (Symbol_table::override): Likewise.
3148         (symbol_to_bits): Add is_ordinary parameter.  Change all callers.
3149         (Symbol_table::resolve): Remove orig_sym parameter.  Add st_shndx,
3150         is_ordinary, and orig_st_shndx parameters.  Change all callers.
3151         * copy-relocs.cc (Copy_relocs::emit_copy_reloc): Require symbol
3152         to be in an ordinary section.
3153         * dwarf_reader.cc (Sized_dwarf_line_info::symbol_section): Add
3154         object and is_ordinary parameters.  Change all callers.
3155         (Sized_dwarf_line_info::read_relocs): Add object parameter.
3156         Change all callers.  Don't add undefined or non-ordinary symbols
3157         to reloc_map_.
3158         (Sized_dwarf_line_info::read_line_mappings): Add object parameter.
3159         Change all callers.
3160         * dwarf_reader.h (class Sized_dwarf_line_info): Update
3161         declarations.
3162         * ehframe.cc (Eh_frame::read_fde): Check for ordinary symbol.
3163         * reloc.cc (Sized_relobj::do_read_relocs): Adjust section links.
3164         (Sized_relobj::relocate_sections): Likewise.
3165         * target-reloc.h (scan_relocs): Adjust section symbol index.
3166         (scan_relocatable_relocs): Likewise.
3167         * i386.cc (Scan::local): Check for ordinary symbols.
3168         * sparc.cc (Scan::local): Likewise.
3169         * x86_64.cc (Scan::local): Likewise.
3170         * testsuite/binary_unittest.cc (Sized_binary_test): Update calls
3171         to symbol_section_and_value.
3172         * testsuite/many_sections_test.cc: New file.
3173         * testsuite/Makefile.am (BUILT_SOURCES): Define.
3174         (check_PROGRAMS): Add many_sections_test.
3175         (many_sections_test_SOURCES): Define.
3176         (many_sections_test_DEPENDENCIES): Define.
3177         (many_sections_test_LDFLAGS): Define.
3178         (BUILT_SOURCES): Add many_sections_define.h.
3179         (many_sections_define.h): New target.
3180         (BUILT_SOURCES): Add many_sections_check.h.
3181         (many_sections_check.h): New target.
3182         (check_PROGRAMS): Add many_sections_r_test.
3183         (many_sections_r_test_SOURCES): Define.
3184         (many_sections_r_test_DEPENDENCIES): Define.
3185         (many_sections_r_test_LDFLAGS): Define.
3186         (many_sections_r_test_LDADD): Define.
3187         (many_sections_r_test.o): New target.
3188         * testsuite/Makefile.in: Rebuild.
3189
3190 2008-04-17  Cary Coutant  <ccoutant@google.com>
3191
3192         * errors.cc (Errors::info): New function.
3193         (gold_info): New function.
3194         * errors.h (Errors::info): New function.
3195         * gold.h (gold_info): New function.
3196         * object.cc (Input_objects::add_object): Print trace output.
3197         * options.cc (options::parse_set): New function.
3198         (General_options::parse_wrap): Deleted.
3199         (General_options::General_options): Deleted initializer.
3200         * options.h (options::String_set): New typedef.
3201         (options::parse_set): New function.
3202         (DEFINE_set): New macro.
3203         (General_options::wrap): Changed to use DEFINE_set. Changed
3204         callers of any_wrap_symbols and is_wrap_symbol.
3205         (General_options::trace, General_options::trace_symbol):
3206         New options.
3207         (General_options::any_wrap_symbols, General_options::is_wrap_symbol)
3208         (General_options::wrap_symbols_): Deleted.
3209         * symtab.cc (Symbol_table::add_from_object): Print trace output.
3210
3211 2008-04-17  David S. Miller  <davem@davemloft.net>
3212
3213         * options.cc (General_options::parse_V): New function.
3214         * options.h: Add entries for -V and -Qy.
3215
3216 2008-04-17  Ian Lance Taylor  <iant@google.com>
3217
3218         * common.cc (Symbol_table::allocate_commons): Remove options
3219         parameter.  Change caller.
3220         (Symbol_table::do_allocate_commons): Remove options parameter.
3221         Change caller.  Just call do_allocate_commons_list twice.
3222         (Symbol_table::do_allocate_commons_list): New function, broken out
3223         of do_allocate_commons.
3224         * common.h (class Allocate_commons_task): Remove options_ field.
3225         Update constructor.
3226         * symtab.cc (Symbol_table::Symbol_table): Initialize
3227         tls_commons_.
3228         (Symbol_table::add_from_object): Put TLS common symbols on
3229         tls_commons_ list.
3230         (Symbol_table::sized_finalize_symbol): Handle STT_TLS symbols
3231         which are IN_OUTPUT_DATA.
3232         * symtab.h (class Symbol_table): Add tls_commons_ field.  Update
3233         allocate_commons and do_allocate_commons declarations.  Declare
3234         do_allocate_commons_list.
3235         * gold.cc (queue_middle_tasks): Update creation of
3236         Allocate_commons_task to not pass options.
3237         * testsuite/Makefile.am (INCLUDES): Add -I.. .
3238         (TLS_TEST_C_FLAGS): New variable.
3239         (tls_test_c_pic.o): New target.
3240         (tls_test_shared.so): Link in tls_test_c_pic.o.
3241         (tls_test_c_pic_ie.o): New target.
3242         (tls_test_ie_shared.so): Link in tls_test_c_pic_ie.o.
3243         (tls_test_DEPENDENCIES, tls_test_LDADD): Add tls_test_c.o.
3244         (tls_test_c.o): New target.
3245         (tls_pic_test_DEPENDENCIES): Add tls_test_c_pic.o.
3246         (tls_pic_test_LDADD): Likewise.
3247         (tls_shared_gd_to_ie_test_DEPENDENCIES): Add tls_test_c_pic.o.
3248         (tls_shared_gd_to_ie_test_LDADD): Likewise.
3249         (tls_test_c_gnu2.o): New target.
3250         (tls_shared_gnu2_gd_to_ie_test_DEPENDENCIES): Add
3251         tls_test_c_gnu2.o.
3252         (tls_shared_gnu2_gd_to_ie_test_LDADD): Likewise.
3253         (tls_test_gnu2_shared.so): Link in tls_test_c_gnu2.o.
3254         (tls_test_shared_nonpic.so): Link in tls_test_c.o.
3255         * testsuite/tls_test.cc: Include "config.h".
3256         (t_last): Call t11_last.
3257         * testsuite/tls_test.h (t11, t11_last): Declare.
3258         * testsuite/tls_test_c.c: New file.
3259         * testsuite/tls_test_main.cc (thread_routine): Call t11.
3260         * configure.ac: Check for OpenMP support.
3261         * configure, config.in, Makefile.in: Rebuild.
3262         * testsuite/Makefile.in: Rebuild.
3263
3264 2008-04-16  Cary Coutant  <ccoutant@google.com>
3265
3266         * i386.cc (Target_i386::define_tls_base_symbol): New function.
3267         (Target_i386::tls_base_symbol_defined_): New field.
3268         (Target_i386::Scan::local): Define _TLS_MODULE_BASE_ symbol.
3269         (Target_i386::Scan::global): Likewise.
3270         * symtab.cc (sized_finalize_symbol): Add check for TLS symbol.
3271         * x86_64.cc (Target_x86_64::define_tls_base_symbol): New function.
3272         (Target_x86_64::tls_base_symbol_defined_): New field.
3273         (Target_x86_64::Scan::local): Define _TLS_MODULE_BASE_ symbol.
3274         (Target_x86_64::Scan::global): Likewise.
3275
3276 2008-04-16  Cary Coutant  <ccoutant@google.com>
3277
3278         * symtab.h (Symbol::is_strong_undefined): Removed unused function.
3279         (Symbol::needs_plt_entry): Allow weak undefined symbols.
3280         (Symbol::needs_dynamic_reloc): Allow weak undefined symbols when
3281         building shared libraries.
3282         * testsuite/Makefile.am (weak_undef_nonpic_test): New target.
3283         (weak_undef_file1_nonpic.o, weak_undef_file2_nonpic.o)
3284         (weak_undef_lib_nonpic.so, alt/weak_undef_lib_nonpic.so): New targets.
3285         * testsuite/Makefile.in: Rebuild.
3286         * testsuite/weak_undef.h: New file.
3287         * testsuite/weak_undef_file1.cc: Add extra test cases.
3288         * testsuite/weak_undef_file2.cc: Likewise.
3289         * testsuite/weak_undef_test.cc: Likewise.
3290
3291 2008-04-16  David S. Miller  <davem@davemloft.net>
3292
3293         * sparc.cc (Target_sparc::Scan): Change from struct to class.
3294         Add issued_non_pic_error_ field.  Declare check_non_pic.
3295         (Target_sparc::Scan::check_non_pic): New function.
3296         (Target_sparc::Scan::local): Call check_non_pic as appropriate.
3297         (Target_sparc::Scan::global): Likewise.
3298
3299         * configure.ac (FN_PTRS_IN_SO_WITHOUT_PIC): Add sparc64.
3300         * configure: Rebuild.
3301
3302         * options.h (DEFINE_enable): New macro.
3303         (new_dtags): New enable option.
3304         (initfirst, interpose, loadfltr, nodefaultlib,
3305         nodelete, nodlopen, nodump): New -z options.
3306         * layout.cc (Layout:finish_dynamic_section): If new
3307         dtags enabled, emit DT_RUNPATH.  Also, emit a
3308         DT_FLAGS_1 containing any specified -z flags.
3309
3310 2008-04-16  Ian Lance Taylor  <iant@google.com>
3311
3312         * copy-relocs.cc: New file.
3313         * copy-relocs.h: New file.
3314         * reloc.cc: Remove Copy_relocs code.
3315         * reloc.h: Likewise.
3316         * reloc-types.h (struct Reloc_types) [both versions]: Add
3317         get_reloc_addend_noerror.
3318         * output.h (class Output_data_reloc<elfcpp::SHT_REL>): Add
3319         variants of add_global which take an addend which must be zero.
3320         * i386.cc: Include "copy-relocs.h".
3321         (class Target_i386): Change type of copy_relocs_ to variable,
3322         update initializer.
3323         (Target_i386::copy_reloc): Rewrite to pass to Copy_relocs class.
3324         Change all callers.
3325         (Target_i386::do_finalize_sections): Change handling of
3326         copy_relocs_.
3327         * sparc.cc: Include "copy-relocs.h".
3328         (class Target_sparc): Change type of copy_relocs_ to variable,
3329         update initializer.
3330         (Target_sparc::copy_reloc): Rewrite to pass to Copy_relocs class.
3331         Change all callers.
3332         (Target_sparc::do_finalize_sections): Change handling of
3333         copy_relocs_.
3334         * x86_64.cc: Include "copy-relocs.h".
3335         (class Target_x86_64): Change type of copy_relocs_ to variable,
3336         update initializer.
3337         (Target_x86_64::copy_reloc): Rewrite to pass to Copy_relocs
3338         class.  Change all callers.
3339         (Target_x86_64::do_finalize_sections): Change handling of
3340         copy_relocs_.
3341         * Makefile.am (CCFILES): Add copy-relocs.cc.
3342         (HFILES): Add copy-relocs.h.
3343
3344         * Makefile.in, aclocal.m4, testsuite/Makefile.in: Rebuild.
3345
3346         * testsuite/script_test_4.sh: Permit leading zeroes.
3347
3348 2008-04-15  Ian Lance Taylor  <iant@google.com>
3349
3350         * script-sections.cc (Script_sections::create_segments): Use
3351         header_size_adjustment even when there is enough room for the
3352         headers.
3353         * testsuite/script_test_4.sh: New file.
3354         * testsuite/script_test_4.t: New file.
3355         * testsuite/Makefile.am (check_SCRIPTS): Add script_test_4.sh.
3356         (check_DATA): Add script_test_4.stdout.
3357         (MOSTLYCLEANFILES): Likewise.
3358         (script_test_4): New target.
3359         (script_test_4.stdout): New target.
3360         * testsuite/Makefile.in: Rebuild.
3361
3362         * sparc.cc: Add definitions for Output_data_plt_sparc class
3363         constants.
3364
3365 2008-04-14  David S. Miller  <davem@davemloft.net>
3366
3367         * sparc.cc: New file.
3368         * Makefile.am (TARGETSOURCES): Add sparc.cc
3369         (ALL_TARGETOBJS): Add sparc.$(OBJEXT)
3370         * configure.tgt: Document targ_extra_size and
3371         targ_extra_big_endian.  Add entries for sparc-* and
3372         sparc64-*.
3373         * configure.ac: Handle targ_extra_size and
3374         targ_extra_big_endian.
3375         * Makefile.in: Rebuild.
3376         * configure: Likewise.
3377         * po/POTFILES.in: Likewise.
3378         * po/gold.pot: Likewise.
3379
3380 2008-04-14  Ian Lance Taylor  <iant@google.com>
3381
3382         * layout.cc (Layout::Layout): Initialize sections_are_attached_.
3383         (Layout::get_output_section): Ignore SHF_WRITE and SHF_EXECINSTR
3384         in the name/type/flags to section mapping.  Don't call
3385         allocate_output_section.
3386         (Layout::choose_output_section): Change parameter from adjust_name
3387         to is_input_section.  Don't permit input sections after sections
3388         are attached to segments.  Don't call allocate_output_section.
3389         (Layout::layout_eh_frame): Call update_flags_for_input_section,
3390         not write_enable_output_section.
3391         (Layout::make_output_section): Don't push to
3392         unattached_section_list_ nor call attach_to_segment.  Call
3393         attach_section_to_segment if sections are attached.
3394         (Layout::attach_sections_to_segments): New function.
3395         (Layout::attach_section_to_segment): New function.
3396         (Layout::attach_allocated_section_to_segment): Rename from
3397         attach_to_segment.  Remove flags parameter.
3398         (Layout::allocate_output_section): Remove function.
3399         (Layout::write_enable_output_section): Remove function.
3400         * layout.h (class Layout): Update for above changes.  Add new
3401         field sections_are_attached_.
3402         * output.h (Output_section::update_flags_for_input_section): New
3403         function.
3404         * output.cc (Output_section::add_input_section): Call
3405         update_flags_for_input_section.
3406         * gold.cc (queue_middle_tasks): Call attach_sections_to_segments.
3407
3408 2008-04-11  Cary Coutant  <ccoutant@google.com>
3409
3410         * i386.cc (Target_i386::got_mod_index_entry): Restore code previously
3411         thought unnecessary.
3412         * x86_64.cc (Target_x86_64::got_mod_index_entry): Likewise.
3413
3414 2008-04-11  Ian Lance Taylor  <iant@google.com>
3415
3416         * output.h (class Output_section_data): Remove inline definition
3417         of set_addralign.
3418         * output.cc (Output_section_data::set_addralign): New function.
3419
3420 2008-04-11  Cary Coutant  <ccoutant@google.com>
3421
3422         Add support for TLS descriptors for i386 and x86_64.
3423         * i386.cc (Target_i386::Relocate::tls_desc_gd_to_ie): New function.
3424         (Target_i386::Relocate::tls_desc_gd_to_le): New function.
3425         (Target_i386::Got_type): Add GOT_TYPE_TLS_NOFFSET and
3426         GOT_TYPE_TLS_DESC.
3427         (Target_i386::got_mod_index_entry): Remove unnecessary code.
3428         (Target_i386::Scan::local): Implement R_386_TLS_GOTDESC and
3429         R_386_TLS_DESC_CALL relocations.  Fix problem with initial-exec
3430         relocations.
3431         (Target_i386::Scan::global): Fix problem with GD-to-IE relaxation.
3432         Implement R_386_TLS_GOTDESC and R_386_TLS_DESC_CALL relocations;
3433         Fix problem with initial-exec relocations.
3434         (Target_i386::Relocate::relocate_tls): Likewise.
3435         (Target_i386::Relocate::tls_gd_to_ie): Fix problem with GD-to-IE
3436         relaxation.
3437         * output.cc (Output_data_dynamic::Dynamic_entry::write): Add
3438         support for section-plus-offset dynamic table entries.
3439         * output.h (Output_data_dynamic::add_section_plus_offset): New function.
3440         (Output_data_dynamic::Dynamic_entry): Add support for
3441         section-plus-offset dynamic table entries.
3442         (Output_data_dynamic::Classification): Likewise.
3443         (Output_data_dynamic::classification_): Renamed offset_.
3444         * x86_64.cc (Target_x86_64::Relocate::tls_desc_gd_to_ie): New function.
3445         (Target_x86_64::Relocate::tls_desc_gd_to_le): New function.
3446         (Target_x86_64::make_plt_section): New function.
3447         (Target_x86_64::reserve_tlsdesc_entries): New function.
3448         (Output_data_plt_x86_64::Output_data_plt_x86_64): Add new parameter.
3449         (Output_data_plt_x86_64::reserve_tlsdesc_entry): New function.
3450         (Output_data_plt_x86_64::has_tlsdesc_entry): New function.
3451         (Output_data_plt_x86_64::get_tlsdesc_got_offset): New function.
3452         (Output_data_plt_x86_64::get_tlsdesc_plt_offset): New function.
3453         (Output_data_plt_x86_64::tlsdesc_plt_entry): New field.
3454         (Output_data_plt_x86_64::set_final_data_size): Move out of line;
3455         add extra PLT entry for TLS descriptors.
3456         (Output_data_plt_x86_64::got_): New field.
3457         (Output_data_plt_x86_64::tlsdesc_got_offset_): New field.
3458         (Output_data_plt_x86_64::Output_data_plt_x86_64): Initialize new
3459         fields.
3460         (Output_data_plt_x86_64::do_write): Write extra PLT entry for TLS
3461         descriptors.
3462         (Target_x86_64::make_plt_entry): Factor out make_plt_section.
3463         (Target_x86_64::got_mod_index_entry): Remove unnecessary code.
3464         (Target_x86_64::Scan::local): Implement R_386_TLS_GOTDESC and
3465         R_386_TLS_DESC_CALL relocations.
3466         (Target_x86_64::Scan::global): Likewise.
3467         (Target_x86_64::do_finalize_sections): Add dynamic table entries
3468         for TLS descriptors.
3469         (Relocate::relocate_tls): Fix problem with GD-to-IE relaxation.
3470         Implement R_386_TLS_GOTDESC and R_386_TLS_DESC_CALL relocations.
3471         (Target_x86_64::Relocate::tls_gd_to_ie): Fix problem with
3472         GD-to-IE relaxation.
3473         * configure.ac: Export new conditional variables TLS_GNU2_DIALECT
3474         and TLS_DESCRIPTORS.
3475         * Makefile.in: Rebuild.
3476         * configure: Rebuild.
3477         * testsuite/Makefile.am (tls_shared_gd_to_ie_test): New target.
3478         (tls_test_shared2.so): New target.
3479         (tls_shared_gd_to_ie_test_SOURCES): New variable.
3480         (tls_shared_gd_to_ie_test_DEPENDENCIES): New variable.
3481         (tls_shared_gd_to_ie_test_LDFLAGS): New variable.
3482         (tls_shared_gd_to_ie_test_LDADD): New variable.
3483         (tls_shared_gnu2_gd_to_ie_test): New target.
3484         (tls_test_gnu2.o, tls_test_file2_gnu2.o, tls_test_gnu2_shared2.so):
3485         New targets.
3486         (tls_shared_gnu2_gd_to_ie_test_SOURCES): New variable.
3487         (ls_shared_gnu2_gd_to_ie_test_DEPENDENCIES): New variable.
3488         (tls_shared_gnu2_gd_to_ie_test_LDFLAGS): New variable.
3489         (tls_shared_gnu2_gd_to_ie_test_LDADD): New variable.
3490         (tls_shared_gnu2_test): New target.
3491         (tls_test_gnu2_shared.so): New target.
3492         (tls_shared_gnu2_test_SOURCES): New variable.
3493         (tls_shared_gnu2_test_DEPENDENCIES): New variable.
3494         (tls_shared_gnu2_test_LDFLAGS): New variable.
3495         (tls_shared_gnu2_test_LDADD): New variable.
3496         * testsuite/Makefile.in: Rebuild.
3497         * testsuite/Makefile.
3498
3499 2008-04-11  Ian Lance Taylor  <iant@google.com>
3500
3501         * testsuite/Makefile.am (justsyms_2r.o): Add dependency on
3502         justsyms.t.
3503         * testsuite/Makefile.in: Rebuild.
3504
3505         * testsuite/script_test_2a.cc (script_test_string_a): Make 8 bytes
3506         long.
3507         * testsuite/script_test_2.cc (main): Adjust test.
3508
3509 2008-04-11  David S. Miller  <davem@davemloft.net>
3510             Ian Lance Taylor  <iant@google.com>
3511
3512         * options.h (General_options): Add entries for '-Y' and
3513         '-relax'.
3514         * options.cc (General_options:finalize): If -Y was used, add those
3515         entries to the library path instead of the default "/lib" and
3516         "/usr/lib".
3517
3518 2008-04-11  David S. Miller  <davem@davemloft.net>
3519
3520         * testsuite/justsyms.t: Start at 0x100.
3521         * testsuite/justsyms_1.cc: Adjust justsyms_string assertion.
3522         * testsuite/script_test_2b.cc (script_test_string_b): Make 8 bytes
3523         long.
3524         * testsuite/script_test_2.cc: Adjust string and section length
3525         checks.
3526
3527 2008-04-09  Ian Lance Taylor  <iant@google.com>
3528
3529         PR gold/5996
3530         * script-sections.cc (Sections_element::allocate_to_segment): Add
3531         orphan parameter.
3532         (Output_section_definition::allocate_to_segment): Likewise.
3533         (Orphan_output_section::allocate_to_segment): Likewise.
3534         (Script_sections::attach_sections_using_phdrs_clause): Don't
3535         propagate non-PT_LOAD segments to orphan sections.
3536         * testsuite/Makefile.am (script_test_3.stdout): Generate using
3537         readelf rather than objdump.
3538         * testsuite/script_test_3.sh: Adjust accordingly.  Test that
3539         .interp section and PT_INTERP segment are the same size.
3540         * testsuite/Makefile.in: Rebuild.
3541
3542         * symtab.cc (Symbol_table::add_from_dynobj): Only look for weak
3543         aliases for symbols defined in the same object.
3544         * testsuite/Makefile.am (check_PROGRAMS): Add weak_alias_test.
3545         (weak_alias_test_SOURCES): New variable.
3546         (weak_alias_test_DEPENDENCIES): New variable.
3547         (weak_alias_test_LDFLAGS): New variable.
3548         (weak_alias_test_LDADD): New variable.
3549         (weak_alias_test_1_pic.o, weak_alias_test_1.so): New targets.
3550         (weak_alias_test_2_pic.o, weak_alias_test_2.so): New targets.
3551         (weak_alias_test_3.o): New target.
3552         (weak_alias_test_4_pic.o, weak_alias_test_4.so): New targets.
3553         * testsuite/weak_alias_test_main.cc: New file.
3554         * testsuite/weak_alias_test_1.cc: New file.
3555         * testsuite/weak_alias_test_2.cc: New file.
3556         * testsuite/weak_alias_test_3.cc: New file.
3557
3558 2008-04-08  Ian Lance Taylor  <iant@google.com>
3559
3560         * options.h (class General_options): Add --noinhibit-exec option.
3561         * main.cc (main): Check --noinhibit-exec.
3562
3563         * options.h (class General_options): Define --wrap as a special
3564         option.  Add wrap_symbols_ field.
3565         (General_options::any_wrap_symbols): New function.
3566         (General_options::is_wrap_symbol): New function.
3567         * options.cc (General_options::parse_wrap): New function.
3568         (General_options::General_options): Initialize wrap_symbols_.
3569         * symtab.cc (Symbol_table::wrap_symbol): New function.
3570         (Symbol_table::add_from_object): Handle --wrap.
3571         * symtab.h (class Symbol_table): Declare wrap_symbol.
3572         * target.h (Target::wrap_char): New function.
3573         (Target::Target_info): Add wrap_char field.
3574         * i386.cc (Target_i386::i386_info): Initialize wrap_char.
3575         * x86_64.cc (Target_x86_64::x86_64_info): Likewise.
3576         * testsuite/testfile.cc (Target_test::test_target_info):
3577         Likewise.
3578
3579         * errors.cc (Errors::undefined_symbol): Mention symbol version if
3580         there is one.
3581
3582         * layout.h (class Layout): Add added_eh_frame_data_ field.
3583         * layout.cc (Layout::Layout): Initialize new field.
3584         (Layout::layout_eh_frame): Don't add eh_frame_data_ to .eh_frame
3585         output section until we find a section we merged successfully.
3586         * object.cc (Sized_relobj::check_eh_frame_flags): Don't require
3587         that the size be non-zero.
3588
3589         * merge.cc (Object_merge_map::get_output_offset): Remove inline
3590         qualifier.
3591
3592 2008-04-08  Craig Silverstein  <csilvers@google.com>
3593
3594         * configure.ac: Export new conditional variable HAVE_ZLIB.
3595         * testsuite/Makefile.am (flagstest_o_specialfile): Condition
3596         on HAVE_ZLIB.
3597         (flagstest_o_specialfile_and_compress_debug_sections): Likewise.
3598         * configure, Makefile.in, testsuite/Makefile.in: Rebuild.
3599
3600 2008-04-07  Ian Lance Taylor  <iant@google.com>
3601
3602         * version.cc (version_string): Set to "1.5".
3603
3604         * x86_64.cc (Target_x86_64::Scan): Change from struct to class.
3605         Add issued_non_pic_error_ field.  Declare check_non_pic.
3606         (Target_x86_64::Scan::check_non_pic): New function.
3607         (Target_x86_64::Scan::local): Call check_non_pic as appropriate.
3608         (Target_x86_64::Scan::global): Likewise.
3609
3610         * output.cc (Output_reloc<SHT_REL>::local_section_offset): Add
3611         addend parameter.  Change caller.  Handle merge sections.
3612         (Output_reloc<SHT_REL>::symbol_value): Change parameter type from
3613         Address to Addend.  Don't add in the result of
3614         local_section_offset, pass down the addend and use the returned
3615         value.
3616         * output.h (class Output_reloc<SHT_REL>): Add Addend typedef.
3617         Update declarations of local_section_offset and symbol_value.
3618         * testsuite/two_file_test_1.cc (t18): New function.
3619         * testsuite/two_file_test_2.cc (f18): New function.
3620         * testsuite/two_file_test_main.cc (main): Call t18.
3621         * testsuite/two_file_test.h (t18, f18): Declare.
3622
3623         * configure.ac: Don't test for objdump, c++filt, or readelf.
3624         * testsuite/Makefile.am: Remove READELF and OBJDUMP_AND_CPPFILT
3625         conditionals.
3626         (TEST_READELF): New variable.
3627         (TEST_OBJDUMP, TEST_CXXFILT, TEST_STRIP): New variables.
3628         (check_PROGRAMS): Add two_file_strip_test.
3629         (two_file_strip_test): New target.
3630         (check_PROGRAMS): Add two_file_same_shared_strip_test.
3631         (two_file_same_shared_strip_test_SOURCES): New variable.
3632         (two_file_same_shared_strip_test_DEPENDENCIES): New variable.
3633         (two_file_same_shared_strip_test_LDFLAGS): New variable.
3634         (two_file_same_shared_strip_test_LDADD): New variable.
3635         (two_file_shared_strip.so): New target.
3636         (ver_test_2.syms, ver_test_4.syms): Use TEST_READELF.
3637         (ver_test_5.syms, ver_test_7.syms): Likewise.
3638         (ver_matching_test.stdout): Use TEST_OBJDUMP and TEST_CXXFILT.
3639         (strip_test_3.stdout): Use TEST_OBJDUMP.
3640         * configure, Makefile.in, testsuite/Makefile.in: Rebuild.
3641
3642 2008-04-04  Cary Coutant  <ccoutant@google.com>
3643
3644         * symtab.h (Symbol::is_weak_undefined): New function.
3645         (Symbol::is_strong_undefined): New function.
3646         (Symbol::is_absolute): New function.
3647         (Symbol::needs_plt_entry): Exclude weak undefined symbols.
3648         (Symbol::needs_dynamic_reloc): Exclude weak undefined and
3649         absolute symbols.
3650         * testsuite/Makefile.am (check_PROGRAMS): Add weak_undef_test.
3651         (weak_undef_test): New target.
3652         * testsuite/Makefile.in: Rebuild.
3653         * testsuite/weak_undef_file1.cc: New file.
3654         * testsuite/weak_undef_file2.cc: New file.
3655         * testsuite/weak_undef_test.cc: New file.
3656
3657 2008-04-03  Craig Silverstein  <csilvers@google.com>
3658
3659         * compressed_output.h (class Output_compressed_section): Use
3660         unsigned buffer.
3661         * compressed_output.cc (zlib_compress): Use unsigned buffers,
3662         add zlib header.
3663         (zlib_compressed_suffix): Removed.
3664         (Output_compressed_section::set_final_data_size): Use unsigned
3665         buffers.
3666         * testsuite/Makefile.am (flagstest_compress_debug_sections):
3667         Fix linker invocation.
3668         (flagstest_o_specialfile_and_compress_debug_sections):
3669         Likewise.
3670         * testsuite/Makefile.in: Regenerated.
3671
3672 2008-04-02  David S. Miller  <davem@davemloft.net>
3673
3674         *  dwarf_reader.cc (Sized_dwarf_line_info::read_header_prolog,
3675         Sized_dwarf_line_info::process_one_opcode): Use Swap_unaligned.
3676
3677 2008-04-02  Craig Silverstein  <csilvers@google.com>
3678
3679         * TODO: New file.
3680
3681 2008-04-02  Ian Lance Taylor  <iant@google.com>
3682
3683         * fileread.cc (File_read::find_view): Add byteshift and vshifted
3684         parameters.  Update for new key type to views_.  Change all
3685         callers.
3686         (File_read::read): Adjust for byteshift in returned view.
3687         (File_read::add_view): New function, broken out of
3688         find_and_make_view.
3689         (File_read::make_view): New function, broken out of
3690         find_and_make_view.
3691         (File_read::find_or_make_view): Add offset and aligned
3692         parameters.  Rewrite accordingly.  Change all callers.
3693         (File_read::get_view): Add offset and aligned parameters.  Adjust
3694         for byteshift in return value.
3695         (File_read::get_lasting_view): Likewise.
3696         * fileread.h (class File_read): Update declarations.
3697         (class File_read::View): Add byteshift_ field.  Add byteshift to
3698         constructor.  Add byteshift method.
3699         * archive.h (Archive::clear_uncached_views): New function.
3700         (Archive::get_view): Add aligned parameter.  Change all callers.
3701         * object.h (Object::get_view): Add aligned parameter.  Change all
3702         callers.
3703         (Object::get_lasting_view): Likewise.
3704
3705         * fileread.cc (File_read::release): Don't call clear_views if
3706         there are multiple objects.
3707         * fileread.h (File_read::clear_uncached_views): New function.
3708         * archive.cc (Add_archive_symbols::run): Call clear_uncached_views
3709         on the archive.
3710
3711 2008-03-31  Cary Coutant  <ccoutant@google.com>
3712
3713         Add thin archive support.
3714         * archive.cc (Archive::armagt): New const.
3715         (Archive::setup): Remove task parameter and calls to unlock.
3716         (Archive::unlock_nested_archives): New function.
3717         (Archive::read_header): Add nested_off parameter. Change
3718         all callers.
3719         (Archive::interpret_header): Likewise.
3720         (Archive::include_all_members): Change to handle thin
3721         archives.
3722         (Archive::include_member): Likewise.
3723         * archive.h (Archive::Archive): Add new parameters and
3724         initializers.
3725         (Archive::armagt): New const.
3726         (Archive::setup): Remove task parameter.
3727         (Archive::unlock_nested_archives): New function.
3728         (Archive::read_header): Add nested_off parameter.
3729         (Archive::interpret_header): Likewise.
3730         (Archive::Nested_archive_table): New typedef.
3731         (Archive::is_thin_archive_): New field.
3732         (Archive::nested_archives_): New field.
3733         (Archive::options_): New field.
3734         (Archive::dirpath_): New field.
3735         (Archive::task_): New field.
3736         * readsyms.cc (Read_symbols::do_read_symbols): Add check
3737         for thin archives.  Pass additional parameters to
3738         Archive::Archive.  Unlock the archive file after calling
3739         Archive::setup.
3740
3741 2008-03-29  Ian Lance Taylor  <iant@google.com>
3742
3743         * symtab.cc (Symbol_table::do_define_as_constant): Don't force a
3744         version symbol to be local.
3745         * testsuite/ver_test_4.sh: New file.
3746         * testsuite/Makefile.am (check_SCRIPTS): Add ver_test_4.sh.
3747         (check_DATA): Add ver_test_4.syms.
3748         (ver_test_4.syms): New target.
3749         * testsuite/Makefile.in: Rebuild.
3750
3751         * output.cc
3752         (Output_section::Input_section_sort_entry::has_priority): New
3753         function.
3754         (Output_section::Input_section_sort_entry::match_file_name): New
3755         function.
3756         (Output_section::Input_section_sort_entry::match_section_name):
3757         Remove.
3758         (Output_section::Input_section_sort_entry::match_section_name_prefix):
3759         Remove.
3760         (Output_section::Input_section_sort_entry::match_section_file):
3761         Remove.
3762         (Output_section::Input_section_sort_compare::operator()): Rewrite
3763         using new Input_section_sort_entry functions.  Sort crtbegin and
3764         crtend first.  Sort sections with no priority before sections with
3765         a priority.
3766         * testsuite/initpri1.c (d3): Check j != 4.
3767         (cd5): New constructor/destructor function.
3768         (main): Check j != 2.
3769
3770         * symtab.cc (Symbol_table::add_from_object): If we don't use the
3771         new symbol when resolving, don't call set_is_default.
3772         * testsuite/ver_test_7.cc: New file.
3773         * testsuite/ver_test_7.sh: New file.
3774         * testsuite/Makefile.am (ver_test_7.so): New target.
3775         (ver_test_7.o): New target.
3776         (check_SCRIPTS): Add ver_test_7.sh.
3777         (check_DATA): Add ver_test_7.syms.
3778         (ver_test_7.syms): New target.
3779
3780 2008-03-28  Ian Lance Taylor  <iant@google.com>
3781
3782         * layout.cc (Layout::layout): If we see an input section with a
3783         name that needs sorting, set the must_sort flag for the output
3784         section.
3785         (Layout::make_output_section): If the name of the output section
3786         indicates that it might require sorting, set the may_sort flag.
3787         * output.h (Output_section::may_sort_attached_input_sections): New
3788         function.
3789         (Output_section::set_may_sort_attached_input_sections): New
3790         function.
3791         (Output_section::must_sort_attached_input_sections): New
3792         function.
3793         (Output_section::set_must_sort_attached_input_sections): New
3794         function.
3795         (class Output_section): Declare Input_section_sort_entry.  Define
3796         Input_section_sort_compare.  Declare
3797         sort_attached_input_sections.  Add new fields:
3798         may_sort_attached_input_sections_,
3799         must_sort_attached_input_sections_,
3800         attached_input_sections_are_sorted_.
3801         * output.cc (Output_section::Output_section): Initialize new
3802         fields.
3803         (Output_section::add_input_section): Add an entry to
3804         input_sections_ if may_sort or must_sort are true.
3805         (Output_section::set_final_data_size): Call
3806         sort_attached_input_sections if necessary.
3807         (Output_section::Input_section_sort_entry): Define new class.
3808         (Output_section::Input_section_sort_compare::operator()): New
3809         function.
3810         (Output_section::sort_attached_input_sections): New function.
3811         * configure.ac: Check whether the compiler supports constructor
3812         priorities.  Define a CONSTRUCTOR_PRIORITY automake conditional.
3813         * testsuite/initpri1.c: New file.
3814         * testsuite/Makefile.am (check_PROGRAMS): Add initpri1 if
3815         CONSTRUCTOR_PRIORITY.
3816         (initpri1_SOURCES, initpri1_DEPENDENCIES): New variables.
3817         (initpri1_LDFLAGS): New variable.
3818         * configure, Makefile.in, testsuite/Makefile.in: Rebuild.
3819
3820 2008-03-27  Ian Lance Taylor  <iant@google.com>
3821
3822         * common.cc (Sort_commons::operator): Correct sorting algorithm.
3823         * testsuite/common_test_1.c: New file.
3824         * testsuite/Makefile.am (check_PROGRAMS): Add common_test_1.
3825         (common_test_1_SOURCES): New variable.
3826         (common_test_1_DEPENDENCIES): New variable.
3827         (common_test_1_LDFLAGS): New variable.
3828
3829         * symtab.cc (Symbol_table::add_from_object): Handle saw_undefined_
3830         and commons_ correctly when NAME/VERSION does not override
3831         NAME/NULL.
3832         * testsuite/ver_test_6.c: New file.
3833         * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_6
3834         (ver_test_6_SOURCES, ver_test_6_DEPENDENCIES): New variables.
3835         (ver_test_6_LDFLAGS, ver_test_6_LDADD): New variables.
3836
3837 2008-03-26  Ian Lance Taylor  <iant@google.com>
3838
3839         * symtab.cc (Symbol_table::add_from_relobj): Don't set the version
3840         of an undefined symbol from a version script.
3841         * testsuite/Makefile.am (ver_test_5.so): New target.
3842         (ver_test_5.o): New target.
3843         (check_SCRIPTS): Add ver_test_5.sh.
3844         (check_DATA): Add ver_test_5.syms.
3845         (ver_test_5.syms): New target.
3846         * testsuite/ver_test_5.cc: New file.
3847         * testsuite/ver_test_5.script: New file.
3848         * testsuite/ver_test_5.sh: New file.
3849         * Makefile.in, testsuite/Makefile.in: Rebuild.
3850
3851         PR gold/5986
3852         Fix problems building gold with gcc 4.3.0.
3853         * gold.h (TEMPLATE_ATTRIBUTE_PRINTF_4): Define.
3854         (gold_error_at_location, gold_warning_at_location): Use it.
3855         * configure.ac: Check whether we can compile and use a template
3856         function with a printf attribute.
3857         * x86_64.cc (Target_x86_64::do_code_fill): Swap out a 32-bit value
3858         when jumping over bytes.
3859         * object.cc: Instantiate Object::read_section_data.
3860         * debug.h: Include <cstring>
3861         * dwarf_reader.cc: Include <algorithm>
3862         * main.cc: Include <cstring>.
3863         * options.cc: Include <cstring>.
3864         * output.cc: Include <cstring>.
3865         * script.cc: Include <cstring>.
3866         * script.h: Include <string>.
3867         * symtab.cc: Include <cstring> and <algorithm>.
3868         * target-select.cc: Include <cstring>.
3869         * version.cc: Include <string>.
3870         * testsuite/testmain.cc: Include <cstdlib>.
3871         * configure, config.in: Rebuild.
3872
3873 2008-03-25  Ian Lance Taylor  <iant@google.com>
3874
3875         * options.cc: Include "../bfd/bfdver.h".
3876         (options::help): Print bug reporting address.
3877
3878         * version.cc (print_version): Adjust output for current value of
3879         BFD_VERSION_STRING.
3880
3881         * NEWS: New file.
3882
3883         * options.cc (options::help): Print list of supported targets.
3884         * target-select.h: Include <vector>.
3885         (class Target_selector): Make machine_, size_, and is_big_endian_
3886         fields const.  Add bfd_name_ and instantiated_target_ fields.
3887         (Target_selector::Target_selector): Add bfd_name parameter.
3888         (Target_selector::recognize): Make non-virtual, call
3889         do_recognize.
3890         (Target_selector::recognize_by_name): Make non-virtual, call
3891         do_recognize_by_name.
3892         (Target_selector::supported_names): New function.
3893         (Target_selector::bfd_name): New function.
3894         (Target_selector::do_instantiate_target): New pure virtual
3895         function.
3896         (Target_selector::do_recognize): New virtual function.
3897         (Target_selector::do_recognize_by_name): New virtual function.
3898         (Target_selector::instantiate_target): New private function.
3899         (supported_target_names): Declare.
3900         * target-select.cc (Target_selector::Target_selector): Update for
3901         new parameter and fields.
3902         (select_target_by_name): Check that the name matches before
3903         calling recognize_by_name.
3904         (supported_target_names): New function.
3905         * i386.cc (class Target_selector_i386): Update Target_selector
3906         constructor call.  Remove recognize and recognize_by_name.  Add
3907         do_instantiate_target.
3908         * x86_64.cc (class Target_selector_x86_64): Likewise.
3909         * testsuite/testfile.cc (class Target_selector_test): Update for
3910         changes to Target_selector.
3911
3912         * README: Rewrite, with some notes on unsupported features.
3913
3914 2008-03-24  Cary Coutant  <ccoutant@google.com>
3915
3916         * i386.cc (Target_i386::Got_type): New enum declaration.
3917         (Target_i386::Scan::local): Updated callers of Output_data_got
3918         member functions.
3919         (Target_i386::Scan::global): Likewise.
3920         (Target_i386::Relocate::relocate): Likewise.
3921         (Target_i386::Relocate::relocate_tls): Likewise.
3922         * object.h (Got_offset_list): New class.
3923         (Sized_relobj::local_has_got_offset): Added got_type parameter.
3924         (Sized_relobj::local_got_offset): Likewise.
3925         (Sized_relobj::set_local_got_offset): Likewise.
3926         (Sized_relobj::local_has_tls_got_offset): Removed.
3927         (Sized_relobj::local_tls_got_offset): Removed.
3928         (Sized_relobj::set_local_tls_got_offset): Removed.
3929         (Sized_relobj::Local_got_offsets): Changed to store a list of offsets.
3930         * output.cc (Output_data_got::add_global): Added got_type parameter.
3931         (Output_data_got::add_global_with_rel): Likewise.
3932         (Output_data_got::add_global_with_rela): Likewise.
3933         (Output_data_got::add_global_pair_with_rel): New function.
3934         (Output_data_got::add_global_pair_with_rela): New function.
3935         (Output_data_got::add_local): Added got_type parameter.
3936         (Output_data_got::add_local_with_rel): Likewise.
3937         (Output_data_got::add_local_with_rela): Likewise.
3938         (Output_data_got::add_local_pair_with_rel): New function.
3939         (Output_data_got::add_local_pair_with_rela): New function.
3940         (Output_data_got::add_global_tls): Removed.
3941         (Output_data_got::add_global_tls_with_rel): Removed.
3942         (Output_data_got::add_global_tls_with_rela): Removed.
3943         (Output_data_got::add_local_tls): Removed.
3944         (Output_data_got::add_local_tls_with_rel): Removed.
3945         (Output_data_got::add_local_tls_with_rela): Removed.
3946         * output.h (Output_data_got::add_global): Added got_type parameter.
3947         (Output_data_got::add_global_with_rel): Likewise.
3948         (Output_data_got::add_global_with_rela): Likewise.
3949         (Output_data_got::add_global_pair_with_rel): New function.
3950         (Output_data_got::add_global_pair_with_rela): New function.
3951         (Output_data_got::add_local): Added got_type parameter.
3952         (Output_data_got::add_local_with_rel): Likewise.
3953         (Output_data_got::add_local_with_rela): Likewise.
3954         (Output_data_got::add_local_pair_with_rel): New function.
3955         (Output_data_got::add_local_pair_with_rela): New function.
3956         (Output_data_got::add_global_tls): Removed.
3957         (Output_data_got::add_global_tls_with_rel): Removed.
3958         (Output_data_got::add_global_tls_with_rela): Removed.
3959         (Output_data_got::add_local_tls): Removed.
3960         (Output_data_got::add_local_tls_with_rel): Removed.
3961         (Output_data_got::add_local_tls_with_rela): Removed.
3962         * resolve.cc (Symbol::override_base_with_special): Removed
3963         reference to has_got_offset_ field.
3964         * symtab.cc (Symbol::init_fields): Replaced initialization
3965         of got_offset_ with got_offsets_.  Removed initialization
3966         of has_got_offset_
3967         * symtab.h (Symbol::has_got_offset): Aded got_type parameter.
3968         (Symbol::got_offset): Likewise.
3969         (Symbol::set_got_offset): Likewise.
3970         (Symbol::has_tls_got_offset): Removed.
3971         (Symbol::tls_got_offset): Removed.
3972         (Symbol::set_tls_got_offset): Removed.
3973         (Symbol::got_offset_): Removed.
3974         (Symbol::tls_mod_got_offset_): Removed.
3975         (Symbol::tls_pair_got_offset_): Removed.
3976         (Symbol::got_offsets_): New field.
3977         (Symbol::has_got_offset): Removed.
3978         (Symbol::has_tls_mod_got_offset): Removed.
3979         (Symbol::has_tls_pair_got_offset): Removed.
3980         * x86_64.cc (Target_x86_64::Got_type): New enum declaration.
3981         (Target_x86_64::Scan::local): Updated callers of Output_data_got
3982         member functions.
3983         (Target_x86_64::Scan::global): Likewise.
3984         (Target_x86_64::Relocate::relocate): Likewise.
3985         (Target_x86_64::Relocate::relocate_tls): Likewise.
3986
3987 2008-03-25  Ben Elliston  <bje@au.ibm.com>
3988
3989         * yyscript.y: Fix spelling error in comment.
3990
3991 2008-03-24  Ian Lance Taylor  <iant@google.com>
3992
3993         * options.h (class General_options): Define build_id option.
3994         * layout.h (class Layout): Declare write_build_id, create_note,
3995         create_build_id.  Add build_id_note_ member.
3996         * layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
3997         "libiberty.h", "md5.h", "sha1.h".
3998         (Layout::Layout): Initialize eh_frame_data_,
3999         eh_frame_hdr_section_, and build_id_note_.
4000         (Layout::finalize): Call create_build_id.
4001         (Layout::create_note): New function, broken out of
4002         Layout::create_gold_note.
4003         (Layout::create_gold_note): Call create_note.
4004         (Layout::create_build_id): New function.
4005         (Layout::write_build_id): New function.
4006         (Close_task_runner::run): Call write_build_id.
4007
4008         * x86_64.cc: Correct license to GPLv3.
4009
4010 2008-03-23  Ian Lance Taylor  <iant@google.com>
4011
4012         * options.cc: Include "demangle.h".
4013         (parse_optional_string): New function.
4014         (parse_long_option): Handle takes_optional_argument.
4015         (parse_short_option): Update dash_z initializer.  Handle
4016         takes_optional_argument.
4017         (General_options::General_options): Initialize do_demangle_.
4018         (General_options::finalize): Set do_demangle_.  Handle demangling
4019         style.
4020         * options.h (parse_optional_string): Declare.
4021         (struct One_option): Add optional_arg field.  Update constructor.
4022         Update call constructor calls.  Add takes_optional_argument
4023         function.
4024         (DEFINE_var): Add optional_arg__ parameter.  Change all callers.
4025         (DEFINE_optional_string): Define.
4026         (General_options::demangle): Change from DEFINE_bool to
4027         DEFINE_optional_string.
4028         (General_options::no_demangle): New function.
4029         (General_options::do_demangle): New function.
4030         (General_options::set_do_demangle): New function.
4031         (General_options::execstack_status_): Move definition to end of
4032         class definition.
4033         (General_options::static_): Likewise.
4034         (General_options::do_demangle_): New field.
4035         * object.cc (big_endian>::get_symbol_location_info): Call
4036         Options::do_demangle, not Options::demangle.
4037         * symtab.cc (demangle): Likewise.
4038
4039 2008-03-22  Ian Lance Taylor  <iant@google.com>
4040
4041         * gold.h: Include <cstddef> and <sys/types.h>
4042         * options.h: Include <cstring>.
4043
4044 2008-03-21  Ian Lance Taylor  <iant@google.com>
4045
4046         * Added source code to GNU binutils.