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