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