Don't pass unadorned zeros to varargs functions
[deliverable/binutils-gdb.git] / gold / ChangeLog
CommitLineData
5c294fee
TG
12014-12-25 Thomas Preud'homme <thomas.preudhomme@arm.com>
2
3 * arm.cc (Target_arm::do_adjust_elf_header): Set e_flags in ELF header
4 as hard float only when Tag_ABI_VFP_args is 1, using new enum value
5 AEABI_VFP_args_vfp to check that.
6 (Target_arm::merge_object_attributes): Handle new Tag_ABI_VFP_args
7 value and replace hardcoded values by enum values.
8
e30880c2
CC
92014-12-22 Cary Coutant <ccoutant@google.com>
10
11 * powerpc.cc (Target_powerpc::relocate): Fix overflow check.
12
bd040da1
L
132014-12-20 H.J. Lu <hongjiu.lu@intel.com>
14
15 PR gold/14608
16 * testsuite/debug_msg.cc (SometimesInlineFunction): Changed
17 to "return i * i * 3;".
18
e02a4046
CC
192014-12-16 Cary Coutant <ccoutant@google.com>
20
21 * mapfile.cc (Mapfile::print_input_section): Print uncompressed sizes.
22 (Mapfile::print_output_data): Use current_data_size() to avoid
23 assert for sections requiring postprocessing; if address is not valid,
24 print 0.
25 (Mapfile::print_output_section): Use current_data_size(); print note
26 that addresses and sizes are before compression.
27
add6016b
L
282014-12-14 H.J. Lu <hongjiu.lu@intel.com>
29
30 * aarch64.cc (AArch64_relocate_functions::maybe_apply_stub):
31 Cast current_group_size to unsigned long when reporting error.
32
0bf32ea9
JY
332014-12-10 Jing Yu <jingyu@google.com>
34
35 * aarch64.cc (Target_aarch64): Add new variable stub_group_size_.
36 (AArch64_relocate_functions::maybe_apply_stub): Add new parameter.
37 Update error message.
38 (Target_aarch64::do_relax): Use absolute value of option
39 stub_group_size. Replace local variable with class member
40 stub_group_size_.
41
cbcb23fa
AM
422014-12-04 Alan Modra <amodra@gmail.com>
43
44 * powerpc.cc (Target_powerpc::Branch_info::make_stub): Ignore
45 addend of PLTREL24 reloc when not generating a plt stub. Make
46 max_branch_offset an "Address".
fbad6518 47 (Stub_table::can_reach_stub): Make max_branch_offset an "Address".
cbcb23fa
AM
48 (Target_powerpc::Relocate::relocate): Likewise.
49
1611bc4a
AM
502014-12-04 Alan Modra <amodra@gmail.com>
51
52 PR 17670
53 * symtab.cc (Symbol::set_undefined): Remove assertion.
54 * powerpc.cc (Target_powerpc::symval_for_branch): Don't assert
55 on symbols defined in discarded sections, instead return false.
56 Rearrange params, update all callers.
57 (Target_powerpc::Branch_info::make_stub): Don't make stubs for
58 branches to syms in discarded sections.
59 (Global_symbol_visitor_opd::operator()): Set discarded opd syms
60 undefined and flag as discarded.
61 (Target_powerpc::Relocate::relocate): Localize variable.
62
4759c34e
L
632014-12-03 H.J. Lu <hongjiu.lu@intel.com>
64
65 PR gold/17675
66 * testsuite/Makefile.am (pie_copyrelocs_test_CXXFLAGS): New.
67 * testsuite/Makefile.in: Regenerated.
68
1f98a074
AM
692014-12-03 Alan Modra <amodra@gmail.com>
70
71 PR 17566
72 * powerpc.cc (Target_powerpc::Scan::local): Use add_local_section
73 when adding dynamic relocations against section symbols.
74
fb257835
DI
752014-12-01 Dimitry Ivanov <dimitry@google.com>
76
77 * layout.cc (Layout::finish_dynamic_section): When '-z global'
78 is specified set DF_1_GLOBAL in DT_FLAGS_1 flags.
79 * options.h (General_options): New -z option (global).
80
d8e60314
CC
812014-12-01 Cary Coutant <ccoutant@google.com>
82
83 PR gold/17578
84 * layout.cc (Layout::layout_gnu_stack): Don't warn when -z execstack
85 is given.
86 (Layout::create_executable_stack_info): Warn when -z noexecstack is
87 given but some inputs require executable stack.
88
982bbd97
CC
892014-11-26 Cary Coutant <ccoutant@google.com>
90
91 * layout.cc (gdb_sections): Keep .debug_gdb_scripts and
92 .debug_str_offsets; strip .debug_gnu_pubnames and
93 .debug_gnu_pubtypes.
94 (lines_only_debug_sections): Strip all four new sections.
95
bb779192
HS
962014-11-26 Jing Yu <jingyu@google.com>
97
98 * aarch64.cc (Relocate::tls_desc_gd_to_ie): Set ldr target
99 register to be x0 when to relax TLSDESC_LD64_LO12.
100
a3e60ddb
AM
1012014-11-26 Alan Modra <amodra@gmail.com>
102
103 * powerpc.cc (struct Stub_table_owner): New.
104 (Powerpc_relobj): Rename stub_table_ to stub_table_index_, an
105 unsigned int vector. Update all references.
106 (powerpc_relobj::set_stub_table): Take an unsigned int param
107 rather than a Stub_table. Update callers.
108 (Powerpc_relobj::clear_stub_table): New function.
109 (Target_powerpc): Add relax_failed_, relax_fail_count_ and
110 stub_group_size_ vars.
111 (Target_powerpc::new_stub_table): Delete.
112 (max_branch_delta): New function, extracted from..
113 (Target_powerpc::Relocate::relocate): ..here..
114 (Target_powerpc::Branch_info::make_stub): ..and here. Return
115 status on whether stub created successfully.
116 (Stub_control::Stub_control): Add "no_size_errors" param. Move
117 default sizing to..
118 (Target_powerpc::do_relax): ..here. Init stub_group_size_ and
119 reduce on relax failure.
120 (Target_powerpc::group_sections): Add "no_size_errors" param.
121 Use stub_group_size_. Set up group info in a temp vector,
122 before building Stub_table vector. Account for input sections
123 possibly already converted to relaxed sections.
124 (Stub_table::init): Delete. Merge into..
125 (Stub_table::Stub_table): ..here.
126 (Stub_table::can_reach_stub): New function.
127 (Stub_table::add_plt_call_entry): Add "from" parameter and
128 return true iff stub could be reached.
129 (Stub_table::add_long_branch_entry): Similarly. Add "r_type"
130 param too.
131 (Stub_table::clear_stubs): Add "all" param.
132
a20605cf
AM
1332014-11-26 Alan Modra <amodra@gmail.com>
134
135 * powerpc.cc (Stub_control::set_output_and_owner): New function.
136 (Target_powerpc::group_sections): Use it.
137
43b64deb
CC
1382014-11-25 Cary Coutant <ccoutant@google.com>
139
140 * binary.cc (Binary_to_elf::sized_convert): Add size to _start symbol.
141 (Binary_to_elf::write_symbol): Add st_size parameter.
142 * binary.h (Binary_to_elf::write_symbol): Add st_size parameter.
143
c924eb67
CC
1442014-11-25 Cary Coutant <ccoutant@google.com>
145
146 PR gold/17639
147 * object.cc (Sized_relobj_file): Initialize is_deferred_layout_.
148 (Sized_relobj_file::do_layout): Handle deferred sections properly
149 during GC pass 1. Don't add reloc sections to deferred list twice.
150 * object.h (Sized_relobj_file::is_deferred_layout): New function.
151 (Sized_relobj_file::is_deferred_layout_): New data member.
152
9d585188
L
1532014-11-21 H.J. Lu <hongjiu.lu@intel.com>
154
155 PR gold/17619
156 * x86_64.cc (Output_data_plt_x86_64_standard<size>::do_fill_plt_entry):
157 Check PC-relative offset overflow in PLT entry.
158
3ffaac20
AM
1592014-11-21 Alan Modra <amodra@gmail.com>
160
161 * powerpc.cc (Target_powerpc::Relocate::relocate): Correct test
162 for undefined weaks.
163
0cfb0717
AM
1642014-11-20 Alan Modra <amodra@gmail.com>
165
166 * powerpc.cc (Stub_control::Stub_control): Init stub14_group_size_
167 from --stub-group-size parameter divided by 1024.
168 (Powerpc_relocate_functions::rela, rela_ua): Add fieldsize
169 template parameter. Update all uses.
170 (Target_powerpc::Relocate::relocate): Rename has_plt_value to
171 has_stub_value. Set for long branches. Don't report overflow for
172 branch to undefined weak symbols. Print info message on
173 overflowing branch to stub.
174
f9dffbf0
AM
1752014-11-20 Alan Modra <amodra@gmail.com>
176
177 * powerpc.cc (Target_powerpc::do_relax): Add __go_go to thread_starters.
178
e88ba8d5
L
1792014-11-13 H.J. Lu <hongjiu.lu@intel.com>
180
181 * x86_64.cc (Target_x86_64<size>::Scan::global): Don't make PLT
182 entry for R_X86_64_GOTPLT64.
183 (Target_x86_64<size>::Relocate::relocate): Update comments for
184 R_X86_64_GOTPLT64.
185
d37ffe25
ED
1862014-11-06 Evgeniy Dushistov <dushistov@mail.ru>
187
188 * plugin.cc: use lock to searialize calls of Plugin_manager::claim_file
189 * plugin.h: add lock definition
190
9726c3c1
HS
1912014-10-29 Han Shen <shenhan@google.com>
192 Jing Yu <jingyu@google.com>
193
194 * aarch64-reloc.def: Add LD_PREL_LO12, ADR_PREL_LO21,
195 TLSLD_ADR_PAGE21, TLSLD_ADD_LO12_NC, TLSLD_MOVW_DTPREL_G1,
196 TLSLD_MOVW_DTPREL_G0_NC. Change property of TLS relocations to
197 Symbol::TLS_REF.
198 * aarch64.cc (Target_aarch64::do_can_check_for_function_pointers): New
199 method.
200 (Target_aarch64::reloc_needs_plt_for_ifunc): New method.
201 (Target_aarch64::tls_ld_to_le): New method.
202 (Target_aarch64::aarch64_info): Enable can_icf_inline_merge_sections
203 for 64bit targets.
204 (Output_data_plt_aarch64::irelative_rel_): New data member.
205 (Output_data_plt_aarch64::add_entry): Add irelative entries to plt.
206 (Output_data_plt_aarch64::add_local_ifunc_entry): New method.
207 (Output_data_plt_aarch64::add_relocation): New method.
208 (Output_data_plt_aarch64::do_write): Add gold_assert on got_irelative
209 offset. Add got_irelative size to got size.
210 (AArch64_relocate_functions): Typedef AArch64_valtype. Replace long
211 type string with the new typename.
212 (AArch64_relocate_functions::update_adr): Replace parameter x with
213 immed.
214 (AArch64_relocate_functions::update_movnz): Correct wrong val mask.
215 (AArch64_relocate_functions::reloc_common): New method.
216 (AArch64_relocate_funcsions::rela_general): Extract common part out
217 into reloc_common method.
218 (AArch64_relocate_functions::rela_general): Likewise.
219 (AArch64_relocate_functions::pcrela_general): Likewise.
220 (AArch64_relocate_functions::adr): New method.
221 (AArch64_relocate_functions::adrp): Calculate immed before calling
222 update_adr.
223 (AArch64_relocate_functions::adrp): Likewise.
224 (AArch64_relocate_functions::movnz): Cast x to SignedW type when
225 comparing x to 0. Calculate immed from ~x when x < 0.
226 (Target_aarch64::optimize_tls_reloc): Add new cases for
227 TLSLD_ADR_PAGE21, TLSLD_ADD_LO12_NC, TLSLD_MOVW_DTPREL_G1,
228 TLSLD_MOVW_DTPREL_G0_NC.
229 (Target_aarch64::possible_function_pointer_reloc): Implement this
230 method.
231 (Target_aarch64::Scan::local_reloc_may_be_function_pointer): Update
232 comment.
233 (Target_aarch64::Scan::local): Add codes to handle STT_GNU_IFUNC
234 symbol. Add cases for TLSLD_ADR_PAGE21, TLSLD_ADD_LO12_NC,
235 TLSLD_MOVW_DTPREL_G1, TLSLD_MOVW_DTPREL_G0_NC.
236 (Target_aarch64::Scan::global): Add codes to handle STT_GNU_IFUNC
237 symbol. Add cases for TLSLD_ADR_PAGE21, TLSLD_ADD_LO12_NC,
238 TLSLD_MOVW_DTPREL_G1, TLSLD_MOVW_DTPREL_G0_NC.
239 (Target_aarch64::make_plt_entry): Call add_entry with two more
240 parameters.
241 (Target_aarch64::make_local_ifunc_plt_entry): New method.
242 (Target_aarch64::Relocate::relocate): Add cases for LD_PREL_LO19,
243 ADR_PREL_LO21, TLSLD_ADR_PAGE21, TLSLD_ADD_LO12_NC,
244 TLSLD_MOVW_DTPREL_G1, TLSLD_MOVW_DTPREL_G0_NC.
245 (Target_aarch64::Relocate::relocate_tls): Add cases for
246 TLSLD_ADR_PAGE21, TLSLD_ADD_LO12_NC, TLSLD_MOVW_DTPREL_G1,
247 TLSLD_MOVW_DTPREL_G0_NC.
248 * testsuite/icf_safe_so_test.cc: Correct test comment.
249 * testsuite/icf_safe_test.sh: Add AArch64 arch.
250
80272b8c
AM
2512014-10-22 Alan Modra <amodra@gmail.com>
252
253 * powerpc.cc (do_relax): Add gcc-4.9 libgomp functions to
254 thread_starter.
255
998a69f4
AS
2562014-10-18 Andreas Schwab <schwab@linux-m68k.org>
257
258 * configure.tgt (targ_extra_obj) [aarch64*-*]: Define.
259
aed56ec5
CC
2602014-10-17 Cary Coutant <ccoutant@google.com>
261
262 * aarch64.cc (AArch64_relocate_functions::maybe_apply_stub):
263 Add "typename" keyword.
264
bb779192 2652014-10-15 Han Shen <shenhan@google.com>
83a01957
HS
266 Jing Yu <jingyu@google.com>
267
268 Patch for gold aarch64 backend to support relaxation.
269 * aarch64-reloc.def: Change format.
270 * aarch64.cc (class Reloc_stub): New class.
271 (class Stub_table): New class.
272 (class AArch64_relobj): New class.
273 (class AArch64_input_section): New class.
274 (class AArch64_output_section): New class.
275 (Target_aarch64::new_stub_table): New method.
276 (Target_aarch64::new_aarch64_input_section): New method.
277 (Target_aarch64::find_aarch64_input_section): New method.
278 (Target_aarch64::scan_section_for_stubs): New method.
279 (Target_aarch64::scan_reloc_section_for_stubs): New method.
280 (Target_aarch64::relocate_stub): New method.
281 (Target_aarch64::current_target): New method.
282 (Target_aarch64::do_make_elf_object): New method.
283 (Target_aarch64::do_may_relax): New method.
284 (Target_aarch64::do_relax): New method.
285 (Target_aarch64::group_sections): New method.
286 (Target_aarch64::scan_reloc_for_stub): New method.
287 (Target_aarch64::do_make_output_section): New method.
288 (Target_aarch64::stub_tables_): New data member.
289 (Target_aarch64::aarch64_input_section_map_): New data member.
290 (AArch64_relocate_functions::maybe_apply_stub): New method.
291
db4c9594
CC
2922014-09-30 Cary Coutant <ccoutant@google.com>
293
294 PR gold/17432
295 * resolve.cc (Symbol_table::resolve): Fix local shadowing error.
296
cd6da036
KC
2972014-09-30 Kito Cheng <kito@0xlab.org>
298
299 PR gold/13597
300 * layout.cc (Layout::create_dynamic_symtab): Build gnu-style
301 hash table before sysv-style hash table.
302
5f772412
ST
3032014-09-29 Sriraman Tallam <tmsriram@google.com>
304
305 * options.h (--pic-executable): Add negative to alias to -no-pie.
306
5efeedf6
CC
3072014-09-26 Cary Coutant <ccoutant@google.com>
308
309 PR gold/16773
310 * object.cc (Sized_relobj_file): Compute value of section symbols
311 for TLS sections the same as TLS symbols.
312
1707f183
CC
3132014-09-25 Cary Coutant <ccoutant@google.com>
314
315 PR gold/17432
316 * resolve.cc (Symbol_table::resolve): Override common placeholder
317 symbols, but adjust sizes.
318 * symtab.cc (Symbol_table::add_from_object): Don't add placeholder
319 symbols to common lists.
320
00cac886
AM
3212014-09-24 Alan Modra <amodra@gmail.com>
322
323 * po/POTFILES.in: Regenerate.
324
635aa30e
CC
3252014-09-23 Taiju Tsuiki <tzik@google.com>
326 Cary Coutant <ccoutant@google.com>
327
71b9b91b 328 PR gold/14860
635aa30e
CC
329 * gold.cc (queue_final_tasks): Add Write_sections_task as a blocker
330 on input_sections_blocker.
331 * layout.cc (Write_sections_task::locks): Unblock
332 input_sections_blocker_.
333 * layout.h (Write_sections_task::Write_sections_task): Add
334 input_sections_blocker.
335 * testsuite/Makefile.am (exception_x86_64_bnd_test): Add gcctestdir/ld
336 to DEPENDENCIES.
337 * testsuite/Makefile.in: Regenerate.
338
c0c71592
RÁE
3392014-09-18 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
340
341 * testsuite/Makefile.am (plugin_test_10): New test.
342 * testsuite/Makefile.in: Regenerate
343 * testsuite/plugin_common_test_2.c (c1): Align to 8.
344 * testsuite/plugin_test_10.sh: New file.
345
6168c2a1
RÁE
3462014-09-17 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
347
348 * plugin.cc (Sized_pluginobj::do_add_symbols): Ignore isym->size.
349 * resolve.cc (Symbol_table::resolve): Don't override common symbols
350 during the replacement phase.
351
3a531937
JY
3522014-09-17 Han Shen <shenhan@google.com>
353 Jing Yu <jingyu@google.com>
354
355 * aarch64-reloc.def: Add TLSGD_ADR_PAGE21, TLSGD_ADD_LO12_NC,
356 TLSDESC_ADR_PAGE21, TLSDESC_LD64_LO12, TLSDESC_ADD_LO12, TLSDESC_CALL.
357 * aarch64.cc (Target_aarch64): Add data members
358 got_irelative_, got_tlsdesc_, rela_irelative_, got_mod_index_offset_,
359 tlsdesc_reloc_info_, tls_base_symbol_defined_. Initialize them in
360 constructor.
361 (Target_aarch64::do_reloc_symbol_index): New method.
362 (Target_aarch64::do_reloc_addend): New method.
363 (Target_aarch64::add_tlsdesc_info): New method.
364 (Target_aarch64::do_dynsym_value): New method.
365 (Target_aarch64::do_make_data_plt): Add new parameters: got,
366 got_irelative. Pass them to Output_data_plt_aarch64_standard.
367 (Target_aarch64::make_data_plt): Add new parameters: got,
368 got_irelative. Pass them to do_make_data_plt.
369 (Target_aarch64::Relocate): Add skip_call_tls_get_addr_ variable.
370 (Target_aarch64::Relocate:tls_gd_to_le): New method.
371 (Target_aarch64::Relocate:tls_ie_to_le): New method.
372 (Target_aarch64::Relocate:tls_desc_gd_to_le): New method.
373 (Target_aarch64::Relocate:tls_desc_gd_to_ie): New method.
374 (Target_aarch64::got_tlsdesc_section): New method.
375 (Target_aarch64::make_local_ifunc_plt_entry): New method.
376 (Target_aarch64::define_tls_base_symbol): New method.
377 (Target_aarch64::reserve_tlsdesc_entries): New method.
378 (Target_aarch64::got_mod_index_entry): New method.
379 (Target_aarch64::rela_tlsdesc_section): New method.
380 (Target_aarch64::rela_irelative_section): New method.
381 (Target_aarch64::Tlsdesc_info): New struct.
382 (Target_aarch64::got_section): Create .got.plt space for IRELATIVE
383 relocations and tlsdesc relocations.
384 (Target_aarch64::optimize_tls_reloc): Implement method.
385 (Output_data_plt_aarch64): Add member variables: tlsdesc_rel_, got_,
386 got_irelative_, irelative_count_, tlsdesc_got_offset_. Initialize them
387 in constructor.
388 (Output_data_plt_aarch64::reserve_tlsdesc_entry): New method.
389 (Output_data_plt_aarch64::has_tlsdesc_entry): New method.
390 (Output_data_plt_aarch64::get_tlsdesc_got_offset): New method.
391 (Output_data_plt_aarch64::get_tlsdesc_plt_offset): New method.
392 (Output_data_plt_aarch64::rela_tlsdesc): New method.
393 (Output_data_plt_aarch64::rela_irelative): New method.
394 (Output_data_plt_aarch64::entry_count): Count IRELATIVE relocations.
395 (Output_data_plt_aarch64::first_plt_entry_offset): Add const attribute.
396 (Output_data_plt_aarch64::get_plt_tlsdesc_entry_size): New method.
397 (Output_data_plt_aarch64::fill_tlsdesc_entry): New method.
398 (Output_data_plt_aarch64::do_get_plt_tlsdesc_entry_size): New method.
399 (Output_data_plt_aarch64::do_fill_tlsdesc_entry): New method.
400 (Output_data_plt_aarch64_standard): New member variables:
401 plt_tlsdesc_entry_size, tlsdesc_plt_entry.
402 (Output_data_plt_aarch64_standard::Output_data_plt_aarch64_standard):
403 New parameter: got, got_irelative.
404 (Output_data_plt_aarch64_standard::do_get_plt_entry_size): New method.
405 (Output_data_plt_aarch64_standard::do_fill_tlsdesc_entry): New method.
406 (Output_data_plt_aarch64::do_write): Replace got_address with
407 gotplt_address. Add irelative_count_ to count. Write tlsdesc entry.
408 (AArch64_relocate_functions::update_movnz): New method.
409 (AArch64_relocate_functions): Correct format.
410 (AArch64_relocate_functions::movnz): New method.
411 (Target_aarch64::Scan::local): Correct format. Move r_sym, got to
412 before the switch. Add new cases to switch.
00cac886 413 Check ie_to_le relaxation on tlsie relocations. Add code handling
3a531937
JY
414 tlsgd tlsdesc cases.
415 (Target_aarch64::Scan::global): Move arp to front. Do copy_reloc when
416 needed. Add new cases to switch. Insert dynamic RELATIVE relocation
417 when needed. Add code handling tlsgd, tlsie, tlsdesc cases.
418 Call reloc_name_in_error_message to print unsupported reloc.
419 (Target_aarch64::make_plt_section): Pass got_ and got_irelative_ to
420 make_data_plt.
421 (Target_aarch64::do_finalize_sections): Emit relocs to save COPY
422 relocs. Fill in some more dynamic tags.
423 (Target_aarch64::Relocate::relocate): Handle tlsgd, tlsdesc relocs.
424 Skip call tls_get_addr when tlsgd is relaxed.
425 (Target_aarch64::Relocate::relocate_tls): Correct format. Add code
426 handling tlsgd, tlsdesc relocs, and tls gd->le, ie->le, tlsdesc->le,
427 tlsdesc->ie relaxation.
428
62661c93
SS
4292014-09-03 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
430
431 * mips.cc (Target_mips_nacl): New class.
432 (Target_selector_mips_nacl): New class.
433 (target_selector_mips32): Rename from target_selector_mips32be and use
434 Target_selector_mips_nacl instead of Target_selector_mips.
435 (target_selector_mips32el): Rename from target_selector_mips32 and use
436 Target_selector_mips_nacl instead of Target_selector_mips.
437 (target_selector_mips64): Rename from target_selector_mips64be and use
438 Target_selector_mips_nacl instead of Target_selector_mips.
439 (target_selector_mips64el): Rename from target_selector_mips64 and use
440 Target_selector_mips_nacl instead of Target_selector_mips.
441 (Target_mips::mips_info): Add const attribute.
442
54674d38
CC
4432014-09-02 Cary Coutant <ccoutant@google.com>
444
445 * dwp.cc (Sized_relobj_dwo::do_section_name): Add const attribute.
446 * dynobj.h (Sized_dynobj::do_section_name): Likewise.
447 * incremental.cc (Sized_relobj_incr::do_section_name): Likewise.
448 (Sized_incr_dynobj::do_section_name): Likewise.
449 * incremental.h (Sized_relobj_incr::do_section_name): Likewise.
450 (Sized_incr_dynobj::do_section_name): Likewise.
451 * object.h (Object::section_name): Likewise.
452 (Object::do_section_name): Likewise.
453 (Sized_relobj_file::do_section_name): Likewise.
454 * plugin.cc (Sized_pluginobj::do_section_name): Likewise.
455 * plugin.h (Sized_pluginobj::do_section_name): Likewise.
456
9860cbcf
CC
4572014-09-02 Cary Coutant <ccoutant@google.com>
458
459 PR gold/17005
460 * ehframe.cc (Fde::write): Add output_offset parameter.
461 (Cie::write): Likewise.
462 (Eh_frame::set_final_data_size): Account for offset within output
463 section.
464 (Eh_frame::do_sized_write): Likewise.
465 * ehframe.h (Fde::write): Add output_offset parameter.
466 (Cie::write): Likewise.
467 * output.cc (Output_section::Input_section_sort_entry): Remove
468 section_has_name_; add output_section_name parameter. Use
469 output section name for non-input sections.
470 (Output_section::Input_section_sort_entry::section_has_name): Remove.
471 (Output_section::Input_section_sort_entry::section_has_name_): Remove.
472 (Output_section::Input_section_sort_compare): Remove logic for
473 sections without names.
474 (Output_section::Input_section_sort_init_fini_compare): Likewise.
475 (Output_section::Input_section_sort_section_prefix_special_ordering_compare):
476 Likewise.
477 (Output_section::Input_section_sort_section_name_compare): Likewise.
478
8e33481e
HS
4792014-08-29 Han Shen <shenhan@google.com>
480 Jing Yu <jingyu@google.com>
481
482 * aarch64-reloc-property.cc
483 (AArch64_reloc_property_table::reloc_name_in_error_message): Fix bug in
484 reference reloc property in the table.
485 * aarch64-reloc.def: Add TLSLE reloc types and fix some errors in
486 3 other entries.
487 * aarch64.cc: (Output_data_got_aarch64::add_static_reloc):
488 2 new overloaded methods.
489 (Output_data_got_aarch64::do_write): Add code to write out
490 static relocs.
491 (class Output_data_got_aarch64::Static_reloc): New class to wrap
492 static relocs.
493 (Output_data_got_aarch64::static_relocs): New vector to
494 hold static relocs.
495 (Target_aarch64::TCB_SIZE): New const static memeber.
496 (Target_aarch64::tcb_size): New method.
497 (Target_aarch64::Relocate::relocate): Add code handling new reloc types.
498 (Target_aarch64::Relocate::relocate_tls): New method.
499 (Target_aarch64::Scan::local): Add code handling new reloc types.
500 (Target_aarch64::Scan::global): Add code handling new reloc types.
501
81233653
ST
5022014-08-13 Sriraman Tallam <tmsriram@google.com>
503
504 * options.h (-no-pie): Add option.
505
9363c7c3
JY
5062014-08-08 Jing Yu <jingyu@google.com>
507 Han Shen <shenhan@google.com>
508
509 * Makefile.am (HFILES): Add aarch64-reloc-property.h.
510 (DEFFILES): add aarch64-reloc.def.
511 (TARGETSOURCES): Add aarch64-reloc-property.cc.
512 (ALL_TARGETOBJS): Add aarch64-reloc-property.$(OBJEXT).
513 * Makefile.in: Regenerate.
514 * aarch64-reloc-property.cc: New file.
515 * aarch64-reloc-property.h: New file.
516 * aarch64-reloc.def: New file.
517 * aarch64.cc: Include aarch64-reloc-property.h. Replace spaces
518 with tab to make the format consistent.
519 (Output_data_got_aarch64::symbol_table_): New method.
520 (Target_aarch64::do_plt_address_for_global): New method.
521 (Target_aarch64::do_plt_address_for_local): New method.
522 (Target_aarch64::do_select_as_default_target): New method.
523 (Target_aarch64::do_make_data_plt): New method.
524 (Target_aarch64::make_data_plt): New method.
525 (Output_data_plt_aarch64::has_irelative_section): New method.
526 (Output_data_plt_aarch64::address_for_global): New method.
527 (Output_data_plt_aarch64::address_for_local): New method.
528 (Output_data_plt_aarch64::irelative_rel_): New parameter.
529 (Output_data_plt_aarch64::add_entry): Implement contents.
530 (Output_data_plt_aarch64::set_final_data_size): Fix typo.
531 (Output_data_plt_aarch64::do_write): Remove useless got_base. Set
532 the got_pov entry to plt0.
533 (Output_data_plt_aarch64_standard::do_fill_first_plt_entry):
534 Implement contents.
535 (Output_data_plt_aarch64_standard::do_fill_plt_entry): Implement.
536 (AArch64_howto): New struct.
537 (aarch64_howto[]): New static const array.
538 (AArch64_relocate_functions): New class.
539 (Target_aarch64::Scan::get_reference_flags): Remove method.
540 (Target_aarch64::Scan::local): Implement to support a few relocations.
541 (Target_aarch64::Scan::global): Implement to support a few relocations.
542 (Target_aarch64::make_plt_section): Implement contents.
543 (Target_aarch64::make_plt_entry): Implement contents.
544 (Target_aarch64::do_finalize_sections): Implement contents.
545 (Target_aarch64::Relocate::relocate): Implement a few relocations.
546 (Target_aarch64::relocate_section): Implement contents.
547
ad9fe6c1
AM
5482014-08-06 Alan Modra <amodra@gmail.com>
549
550 * testsuite/defsym_test.sh: Allow ppc64le localentry annotation.
551
7cd4e5b7
AM
5522014-08-06 Alan Modra <amodra@gmail.com>
553
554 PR 13227
555 * symtab.cc (Symbol_table::add_from_relobj): Warn on __gnu_lto_slim.
556
5ad9b0a7
ST
5572014-07-21 Sriraman Tallam <tmsriram@google.com>
558
559 * object.cc (Relobj::is_section_name_included): Add
7c16d96e 560 ".rodata.nptl_version" to not garbage collect this section.
5ad9b0a7 561
e051745c
CC
5622014-07-08 Cary Coutant <ccoutant@google.com>
563
564 * expression.cc (struct Expression::Expression_eval_info): Add
565 new fields type_pointer, vis_pointer, and nonvis_pointer.
566 (Expression::eval_maybe_dot): Add type_pointer, vis_pointer, and
567 nonvis_pointer parameters. Adjust all calls.
568 (Symbol_expression::value): Update type, visibility, and nonvis bits
569 in caller.
570 * script.cc (Symbol_assignment::sized_finalize): Update type,
571 visibility, and remaining st_other bits for new symbol.
572 * script.h: (Expression::eval_maybe_dot): Add type_pointer,
573 vis_pointer, and nonvis_pointer parameters.
574 * symtab.h (Symbol::set_type): New method.
575
576 * testsuite/Makefile.am (defsym_test): New test.
577 * testsuite/Makefile.in: Regenerate.
578 * testsuite/defsym_test.c: New file.
579 * testsuite/defsym_test.sh: New file.
580
f35c4853
CC
5812014-07-08 Cary Coutant <ccoutant@google.com>
582
583 PR gold/15639
584 * dynobj.h (Sized_dynobj::base_read_symbols): New method.
585 * dynobj.cc (Sized_dynobj::do_read_symbols): Move body to...
586 (Sized_dynobj::base_read_symbols): ...new method.
587 * object.h (Sized_relobj_file::base_read_symbols): New method.
588 * object.cc (Sized_relobj_file::do_read_symbols): Move body to...
589 (Sized_relobj_file::base_read_symbols): ...new method.
590 * arm.cc (Arm_relobj::do_read_symbols): Call base_read_symbols.
591 * mips.cc: (Mips_relobj::do_read_symbols): Likewise.
592 * powerpc.cc (Powerpc_dynobj::do_read_symbols): Likewise.
593
2900af2d
AM
5942014-07-04 Alan Modra <amodra@gmail.com>
595
596 * po/POTFILES.in: Regenerate.
597
053a4d68
JY
5982014-07-02 Jing Yu <jingyu@google.com>
599
600 * aarch64.cc: New file
601 * Makefile.am (TARGETSOURCES): Add aarch64.cc
602 (ALL_TARGETOBJS): Add aarch64.$(OBJEXT)
603 * Makefile.in: Regenerate.
604 * configure.tgt: Add entries for aarch64*.
605 * configure.ac: Likewise.
606 * configure: Likewise.
607
7b549045
AM
6082014-06-27 Alan Modra <amodra@gmail.com>
609
610 * symtab.cc (Symbol::should_add_dynsym_entry): Don't make inline.
611
cb818dbf
CC
6122014-06-24 Cary Coutant <ccoutant@google.com>
613
614 * dwp.cc (Dwo_file::read): Allow files with no .debug_types
615 sections.
616 (Dwo_file::sized_read_unit_index): Likewise.
617
9810d34d
SS
6182014-06-23 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
619
620 * mips.cc: New file.
621 * Makefile.am (TARGETSOURCES): Add mips.cc
622 (ALL_TARGETOBJS): Add mips.$(OBJEXT)
623 * configure.tgt: Add entries for mips*.
624 * configure.ac: Likewise.
625 * Makefile.in: Regenerate.
626 * configure: Likewise.
627
9baa787b
CC
6282014-06-09 Cary Coutant <ccoutant@google.com>
629
630 * dwarf_reader.cc (Dwarf_pubnames_table::read_header): Check that
631 unit_length is within section bounds.
632
8f89af0a
CC
6332014-06-09 Cary Coutant <ccoutant@google.com>
634
635 PR gold/16980
636 * layout.cc (Layout::print_to_mapfile): Print unattached sections in
637 map.
638
a47622ac
AM
6392014-06-07 Alan Modra <amodra@gmail.com>
640
641 * powerpc.cc (relocate): Treat field of cmpli insn as a bitfield.
642
4320c691
CC
6432014-06-06 Cary Coutant <ccoutant@google.com>
644
645 * dwarf_reader.h (Dwarf_pubnames_table): Remove output_section_offset_.
646 * dwarf_reader.cc (Dwarf_pubnames_table::read_section): Likewise.
647 (Dwarf_pubnames_table::read_header): Likewise.
648 * layout.cc (gdb_fast_lookup_sections): Add .debug_gnu_pubnames and
649 .debug_gnu_pubtypes.
650
270c9937
JB
6512014-06-05 Joel Brobecker <brobecker@adacore.com>
652
653 * Makefile.am (CONFIG_STATUS_DEPENDENCIES): New.
654 * Makefile.in, configure: Regenerate.
655
397998fc
AM
6562014-06-03 Alan Modra <amodra@gmail.com>
657
658 * powerpc.cc (addis_12_2): Define.
659 (Stub_table::do_write): Support fusion on ELFv2 stubs.
660
61f5c66f
AM
6612014-06-03 Alan Modra <amodra@gmail.com>
662
663 * testsuite/plugin_test.c (parse_readelf_line): Skip non-visibility
664 st_other output.
665
f6971787
AM
6662014-06-02 Alan Modra <amodra@gmail.com>
667
668 * powerpc.cc (Target_powerpc::local_reloc_may_be_function_pointer):
669 Only ignore relocs on ELFv1.
670 (Target_powerpc::global_reloc_may_be_function_pointer): Likewise.
671
f6fb8322
CC
6722014-05-30 Cary Coutant <ccoutant@google.com>
673
674 * testsuite/Makefile.am (ehdr_start_test_4): Fix typo in -B option.
675 * testsuite/Makefile.in: Regenerate.
676 * testsuite/ehdr_start_test_4.sh: Look for "U" instead of "w".
677
c23dd342
L
6782014-05-27 H.J. Lu <hongjiu.lu@intel.com>
679
680 PR gold/16945
681 * x86_64.cc (Target_x86_64::Relocate::relocate): Use signed int
682 for got_offset. Properly get GOT address for R_X86_64_PLTOFF64.
683
5fe7ffdc
AM
6842014-05-15 Alan Modra <amodra@gmail.com>
685
686 * powerpc.cc (do_plt_fde_location): Handle zero length .glink.
687 Compare FDE contents with DW_CFA_nop rather than 0.
688
a82bef93
ST
6892014-05-13 Sriraman Tallam <tmsriram@google.com>
690
691 * symtab.h (may_need_copy_reloc): Remove check for position independent
692 code.
693 * x86_64.cc (Target_x86_64<size>::Scan::global): Add check for no
694 position independence before pc absolute may_need_copy_reloc call.
695 Add check for executable output befor pc relative may_need_copy_reloc
696 call.
697 * i386.cc: Ditto.
698 * arm.cc: Ditto.
699 * sparc.cc: Ditto.
700 * tilegx.cc: Ditto.
701 * powerpc.cc: Add check for no position independence before
702 may_need_copy_reloc calls.
703 * testsuite/pie_copyrelocs_test.cc: New file.
704 * testsuite/pie_copyrelocs_shared_test.cc: New file.
705 * Makefile.am (pie_copyrelocs_test): New test.
5fe7ffdc 706 * Makefile.in: Regenerate.
a82bef93 707
53c66605
ML
7082014-05-08 Martin Liška <mliska@suse.cz>
709
710 * output.cc (Sized_relobj_file::do_layout): Fix typo in info message.
711
57b2284c
CC
7122014-05-06 Cary Coutant <ccoutant@google.com>
713
714 PR gold/16900
715 * i386.cc (Output_data_got_plt_i386): New class.
716 (Output_data_plt_i386::Output_data_plt_i386): Change type of got_plt
717 parameter. Change all callers.
718 (Output_data_plt_i386::layout_): Remove.
719 (Output_data_plt_i386::got_plt_): Change type.
720 (Target_i386::got_plt_): Change type. Change all references.
721 (Target_i386::got_section): Create instance of new class.
722 (Output_data_got_plt_i386::do_write): New function.
723 * x86_64.cc (Output_data_got_plt_x86_64): New class.
724 (Output_data_plt_x86_64::Output_data_plt_x86_64): Change type of got_plt
725 parameter. Change all callers.
726 (Output_data_plt_x86_64::layout_): Remove.
727 (Output_data_plt_x86_64::got_plt_): Change type.
728 (Target_x86_64::got_plt_): Change type. Change all references.
729 (Target_x86_64::got_section): Create instance of new class.
730 (Output_data_got_plt_x86_64::do_write): New function.
731 (Output_data_plt_x86_64::do_write): Don't write reserved words in GOT.
732 (Target_x86_64<size>::init_got_plt_for_update): Create instance of new
733 class.
734
6b97515d 7352014-05-05 Cary Coutant <ccoutant@google.com>
5fe7ffdc 736
6b97515d
CC
737 * gdb-index.cc (Gdb_index_info_reader): Don't complain about language
738 if we have pubnames/pubtypes.
739
d1bddd3c
CC
7402014-05-02 Cary Coutant <ccoutant@google.com>
741
5fe7ffdc
AM
742 * defstd.cc (in_segment): Define __ehdr_start here...
743 * layout.cc (Layout::finalize): ...Instead of here. Set the
744 output segment when known.
745 * resolve.cc (Symbol::override_base_with_special): Remember
746 the original binding.
747 * symtab.cc (Symbol::set_output_segment): New function.
748 (Symbol::set_undefined): New function.
749 * symtab.h (Symbol::is_weak_undefined): Check original undef
750 binding.
751 (Symbol::is_strong_undefined): New function.
752 (Symbol::set_output_segment): New function.
753 (Symbol::set_undefined): New function.
754 * target-reloc.h (is_strong_undefined): Remove.
755 (issue_undefined_symbol_error): Call Symbol::is_weak_undefined.
756 Check for hidden undefs.
757 (relocate_section): Call Symbol::is_strong_undefined.
758
759 * testsuite/Makefile.am (ehdr_start_test_1)
760 (ehdr_start_test_2, ehdr_start_test_3)
761 (ehdr_start_test_4, ehdr_start_test_5): New test cases.
762 * testsuite/Makefile.in: Regenerate.
763 * testsuite/ehdr_start_def.cc: New source file.
764 * testsuite/ehdr_start_test.cc: New source file.
765 * testsuite/ehdr_start_test.t: New linker script.
766 * testsuite/ehdr_start_test_4.sh: New shell script.
d1bddd3c 767
7849f6d8
CC
7682014-04-23 Cary Coutant <ccoutant@google.com>
769
bf2cc635 770 PR gold/16870
7849f6d8
CC
771 * x86_64.cc (Target_x86_64::Relocate::relocate): Add missing break.
772
99fd8cff
CC
7732014-04-15 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
774
775 * layout.cc (Layout::include_section): Allow a target to decide
776 whether to include a section.
777 * target.h (Target::should_include_section): New function.
778 (Target::do_should_include_section): New function.
779
91f43acd
CC
7802014-04-15 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
781
782 * copy-relocs.cc (Copy_relocs::Copy_reloc_entry::emit): Remove and
783 inline into ...
784 (Copy_relocs::emit): ... here.
785 * copy-relocs.h (Copy_reloc_entry): Change from class to struct.
786 (Copy_reloc_entry::make_copy_reloc): Change from private to protected.
787 (Copy_reloc_entry::entries_): Change from private to protected.
788
c4eb27e1
ST
7892014-04-02 Sriraman Tallam <tmsriram@google.com>
790
791 * icf.cc (get_section_contents): Replace copies of reloc
792 vectors with const references.
793
ae447ddd
CC
7942014-04-02 Cary Coutant <ccoutant@google.com>
795
796 * configure.ac (HAVE_PUBNAMES): Use C instead of C++.
797 (HAVE_NO_USE_LINKER_PLUGIN): Check for -fno-use-linker-plugin.
798 * configure: Regenerate.
799 * testsuite/Makefile.am (OPT_NO_PLUGINS): New macro for
800 -fno-use-linker-plugin.
801 (LINK1, CXXLINK1): Add it to the link command.
802 * testsuite/Makefile.in: Regenerate.
803
fa47fa92
AM
8042014-03-12 Alan Modra <amodra@gmail.com>
805
806 * Makefile.in: Regenerate.
807
9b12c500
CC
8082014-03-10 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
809
810 * symtab.h (Symbol::set_nonvis): New function.
811
beacaa96
CC
8122014-03-10 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
813
814 * symtab.cc (Sized_symbol<32>::init_output_data):
815 Instantiate the template.
816 (Sized_symbol<64>::init_output_data): Likewise.
817
800d9823
CC
8182014-03-10 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
819
820 * symtab.cc (Symbol_table::sized_write_globals): Allow a target to
821 adjust dynamic symbol value.
822 * target.h (Target::adjust_dyn_symbol): New function.
823 (Target::do_adjust_dyn_symbol): New function.
824
918fc1f8 8252014-03-10 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
5fe7ffdc 826
918fc1f8
CC
827 * output.cc (Output_data_dynamic::Dynamic_entry::write):
828 Get the value of DYNAMIC_CUSTOM dynamic entry.
829 * output.h (Output_data_dynamic::add_custom): New function.
830 (Dynamic_entry::Dynamic_entry): New constructor for DYNAMIC_CUSTOM
831 dynamic entry.
832 (enum Dynamic_entry::Classification): Add DYNAMIC_CUSTOM.
833 * target.h (Target::dynamic_tag_custom_value): New function.
834 (Target::do_dynamic_tag_custom_value): New function.
835
98ff9231
CC
8362014-03-10 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
837
838 * symtab.cc (Symbol_table::set_dynsym_indexes): Allow a target to set
839 dynsym indexes.
840 * target.h (Target::has_custom_set_dynsym_indexes): New function.
841 (Target::do_has_custom_set_dynsym_indexes): New function.
842 (Target::set_dynsym_indexes): New function.
843 (Target::do_set_dynsym_indexes): New function.
844
b80eed39
AM
8452014-03-07 Alan Modra <amodra@gmail.com>
846
847 * powerpc.cc (Powerpc_relocate_functions::Overflow_check): Add
848 CHECK_UNSIGNED, CHECK_LOW_INSN, CHECK_HIGH_INSN.
849 (Powerpc_relocate_functions::has_overflow_unsigned): New function.
850 (Powerpc_relocate_functions::has_overflow_bitfield,
851 overflowed): Use the above.
852 (Target_powerpc::Relocate::relocate): Correct overflow checking
853 for a number of relocations. Modify overflow test for 16-bit
854 fields in instructions to signed/unsigned according to whether
855 the field takes a signed or unsigned value.
856
4b95cf5c
AM
8572014-03-05 Alan Modra <amodra@gmail.com>
858
859 Update copyright years.
860
45965137
AM
8612014-03-05 Alan Modra <amodra@gmail.com>
862
863 * powerpc.cc (Target_powerpc::Scan::local, global): Support
864 R_PPC64_ADDR64_LOCAL.
865 (Target_powerpc::Relocate::relocate): Likewise.
866
2c80b753
AM
8672014-03-03 Alan Modra <amodra@gmail.com>
868
869 * dwp.cc (print_version): Update copyright year to current.
870
c1c69e83
AM
8712014-02-10 Alan Modra <amodra@gmail.com>
872
873 * po/gold.pot: Regenerate.
874
dd0c4e70
CC
8752014-02-06 Cary Coutant <ccoutant@google.com>
876
877 Fix problem where -u is ignored when a weak undef is seen.
878
879 * archive.cc (Library_base::should_include_member): Reorder
880 code to check for -u option if a weak undef has already been seen.
881 * testsuite/Makefile.am (weak_undef_test_2): New test case.
882 * testsuite/Makefile.in: Regenerate.
883 * testsuite/weak_undef_file3.cc: New file.
884 * testsuite/weak_undef_file4.cc: New file.
885 * testsuite/weak_undef_test_2.cc: New file.
886
1a221d3d
CC
8872014-02-05 Cary Coutant <ccoutant@google.com>
888
889 Fix issues with gold undefined symbol diagnostics.
890
891 PR binutils/15435
892 * errors.cc (Errors::undefined_symbol): Move undef vtable symbol
893 check to here.
894 * target-reloc.h (is_strong_undefined): New function.
895 (relocate_section): Move undef vtable symbol check from here.
896 Check for is_strong_undefined.
897
e889f0a4 8982014-02-05 Cary Coutant <ccoutant@google.com>
5fe7ffdc 899
e889f0a4
CC
900 Fix problems with the --dynamic-list option.
901
902 PR gold/13577
903 * options.cc (General_options::parse_dynamic_list):
904 Set have_dynamic_list_.
905 (General_options::General_options): Initialize have_dynamic_list_.
906 (General_options::finalize): Turn off -Bsymbolic and
907 -Bsymbolic-functions if --dynamic-list provided.
908 * options.h (General_options::have_dynamic_list): New function.
909 (General_options::have_dynamic_list_): New data member.
910 * symtab.h (Symbol::is_preemptible): Handle --dynamic-list
911 correctly.
5fe7ffdc 912
e889f0a4
CC
913 PR gold/16530
914 * symtab.cc (Symbol_table::add_from_relobj): If symbol is named
915 in --dynamic-list, mark it.
5fe7ffdc 916
e889f0a4
CC
917 * testsuite/Makefile.am (gc_dynamic_list_test.sh): New test case.
918 (dynamic_list_2): New test case.
919 * testsuite/Makefile.in: Regenerate.
920 * testsuite/dynamic_list_2.cc: New file.
921 * testsuite/dynamic_list_2.t: New file.
922 * testsuite/dynamic_list_lib1.cc: New file.
923 * testsuite/dynamic_list_lib2.cc: New file.
924 * testsuite/gc_dynamic_list_test.c: New file.
925 * testsuite/gc_dynamic_list_test.sh: New file.
926 * testsuite/gc_dynamic_list_test.t: New file.
927
ec673e64
CC
9282014-01-28 Cary Coutant <ccoutant@google.com>
929
930 Add .gdb_index version 7 support.
931
932 * gold/dwarf_reader.cc: include <utility> (for make_pair).
933 (Dwarf_abbrev_table::do_read_abbrevs): Check for compressed
934 debug sections.
935 (Dwarf_ranges_table::read_ranges_table): Likewise.
936 (Dwarf_pubnames_table::read_section): Check for GNU-style
937 sections, and for compressed debug sections.
938 (Dwarf_pubnames_table::read_header): Compute end address of table.
939 (Dwarf_pubnames_table::next_name): Return flag_byte. Check
940 for end of list by offset, not by offset == 0.
941 (Dwarf_info_reader::do_read_string_table): Check for compressed
942 debug sections.
943 * gold/dwarf_reader.h (Dwarf_pubnames_table::Dwarf_pubnames_table):
944 Initialize new data members.
945 (Dwarf_pubnames_table::next_name): return flag_byte.
946 (Dwarf_pubnames_table::end_of_table_): New data member.
947 (Dwarf_pubnames_table::is_gnu_style_): New data member.
948 * gold/gdb-index.cc (gdb_index_version): Update to version 7.
949 (Gdb_index_info_reader::read_pubtable): Read flag_byte.
950 (Gdb_index_info_reader::read_pubnames_and_pubtypes): Don't
951 read skeleton type unit DIEs.
952 (Gdb_index::add_symbol): Add flag_byte; adjust all callers.
953 (Gdb_index::do_write): Write flag_byte.
954 * gold/gdb-index.h (Gdb_index::add_symbol): Add flags parameter.
955 (Gdb_index::Cu_vector): Store flags along with cu indexes.
956 * gold/testsuite/gdb_index_test_3.sh: Allow versions 4-7.
957 * gold/testsuite/gdb_index_test_comm.sh: Likewise.
958
221fd5d5
L
9592014-01-08 H.J. Lu <hongjiu.lu@intel.com>
960
961 * version.cc (print_version): Update copyright year to 2014.
962
6c09fb0b
ILT
9632013-12-19 Dimitry Andric <dimitry@andric.com>
964
965 * stringpool.cc (Stringpool_template::reserve): Add
966 HAVE_UNORDERED_MAP case.
967 * stringpool.cc (Stringpool_template::print_stats): Likewise.
968
8356f2d0
CC
9692013-12-18 Cary Coutant <ccoutant@google.com>
970
971 * configure.ac: Check for <unordered_set> and <unordered_map>.
972 * config.in: Regenerate.
973 * configure: Regenerate.
974 * system.h: Use <unordered_set> and <unordered_map> if available.
975
f2c7d7ee
RM
9762013-12-10 Roland McGrath <mcgrathr@google.com>
977
978 * Makefile.am (install-exec-local): Prefix $(INSTALL_PROGRAM) uses
979 with $(INSTALL_PROGRAM_ENV).
980 * Makefile.in: Regenerate.
981
6632e8cc
CC
9822013-11-22 Cary Coutant <ccoutant@google.com>
983
984 * configure.ac: Add check for which library is needed for
985 dlopen.
986 * configure: Regenerate.
987
0c075858
CC
9882013-11-22 Cary Coutant <ccoutant@google.com>
989
990 * testsuite/Makefile.am (exception_x86_64_bnd_test): Use in-tree
991 assembler.
992 * testsuite/Makefile.in: Regenerate.
993
f49fe902
L
9942013-11-17 H.J. Lu <hongjiu.lu@intel.com>
995
996 * x86_64.cc (Target_x86_64<size>::Scan::get_reference_flags):
997 Handle R_X86_64_PC32_BND and R_X86_64_PLT32_BND just like
998 R_X86_64_PC32 and R_X86_64_PLT32, respectively.
999 (Target_x86_64<size>::Scan::local): Likewise.
1000 (Target_x86_64<size>::Scan::global): Likewise.
1001 (Target_x86_64<size>::Relocate::relocate): Likewise.
1002 (Target_x86_64<size>::Relocatable_size_for_reloc::get_size_for_reloc):
1003 Likewise.
1004 (Target_x86_64<size>::Scan::check_non_pic(): Handle
1005 R_X86_64_PC32_BND.
1006
1007 * testsuite/Makefile.am (check_PROGRAMS): Add
1008 exception_x86_64_bnd_test.
1009 (exception_x86_64_bnd_test_SOURCES): New macro.
1010 (exception_x86_64_bnd_test_DEPENDENCIES): Likewise.
1011 (exception_x86_64_bnd_test_LDFLAGS): Likewise.
1012 (exception_x86_64_bnd_test_LDADD): Likewise.
1013 (exception_x86_64_bnd_1.o): New rule.
1014 (exception_x86_64_bnd_2.o): Likewise.
1015 * testsuite/Makefile.in: Regenerated.
1016
9055360d
AM
10172013-11-15 Alan Modra <amodra@gmail.com>
1018
1019 * powerpc.cc (Target_powerpc::glink_section): Provide non-const
1020 accessor.
1021 (Target_powerpc::Branch_info::make_stub): Make global entry stubs.
1022 Only call ppc64_local_entry_offset for 64-bit. Restrict
1023 symval_for_branch lookup to ELFv1.
1024 (Stub_table::add_plt_call_entry): Use unsigned int off.
1025 (Output_data_glink::Address, invalid_address): New.
1026 (Output_data_glink::add_eh_frame): Move out of line. Add
1027 support for ELFv2.
1028 (Output_data_glink::add_global_entry, find_global_entry,
1029 global_entry_address): New functions.
1030 (Output_data_glink::global_entry_stubs_, end_branch_table_,
1031 ge_size): New variables.
1032 (Output_data_glink::set_final_data_size): Add global entry
1033 stub sizing.
1034 (Output_data_glink::do_write): Write global entry stubs.
1035 (Target_powerpc::Scan::reloc_needs_plt_for_ifunc): Add target
1036 parameter. Return true for ELFv2. Adjust callers.
1037 (Target_powerpc::Scan::local, global): Restrict opd lookup to
1038 ELFv1. Similarly for ifunc and dynamic relocation processing
1039 specific to ELFv1. Recognize that symbols are defined on
1040 their plt entries for ELFv2.
1041 (Target_powerpc::symval_for_branch): Assert if called for
1042 ELFv2 or ppc32.
1043 (Target_powerpc::Relocate::relocate): Use global entry plt
1044 stub for symbol value if such exists on ELFv2.
1045 (Target_powerpc::Relocate::relocate): Don't call
1046 symval_for_branch when ELFv2. Do adjust for local entry
1047 offset when ELFv2.
1048 (Target_powerpc::do_dynsym_value): Set symbols to global entry
1049 plt stub for ELFv2.
1050 (Target_powerpc::do_plt_address_for_global): Similarly.
1051
cafdd569
CC
10522013-11-14 Cary Coutant <ccoutant@google.com>
1053
1054 Revert patch -- this did not fix the problem, and there is
1055 no race there.
1056
1057 2013-11-14 Cary Coutant <ccoutant@google.com>
1058
1059 PR gold/14860
1060 * ehframe.cc (Eh_frame_hdr::Eh_frame_hdr): Initialize lock_.
1061 (Ehframe_hdr::set_final_data_size): Allocate a Lock.
1062 * ehframe.h (Eh_frame_hdr::record_fde): Hold the lock while
1063 updating fde_offsets_.
1064 (Eh_frame_hdr::lock_): New data member.
1065
94e49e16
CC
10662013-11-14 Cary Coutant <ccoutant@google.com>
1067
1068 * dwp.cc (Dwo_file_entry): New type.
1069 (File_list): Use Dwo_file_entry.
1070 (Dwo_file::verify): New function.
1071 (Dwo_file::verify_dwo_list): New function.
1072 (Dwo_file::sized_verify_dwo_list): New function.
1073 (Dwo_name_info_reader::visit_compilation_unit): Add dwo_id to file
1074 list.
1075 (Dwp_options): New enum type.
1076 (dwp_options): Add --verify-only.
1077 (usage): Likewise.
1078 (main): Likewise.
1079 * dwp.h (gold_info): Add declaration.
1080
7cdd7d57
CC
10812013-11-14 Cary Coutant <ccoutant@google.com>
1082
1083 PR gold/14860
1084 * ehframe.cc (Eh_frame_hdr::Eh_frame_hdr): Initialize lock_.
1085 (Ehframe_hdr::set_final_data_size): Allocate a Lock.
1086 * ehframe.h (Eh_frame_hdr::record_fde): Hold the lock while
1087 updating fde_offsets_.
1088 (Eh_frame_hdr::lock_): New data member.
1089
1d946cb3
CC
10902013-11-06 Cary Coutant <ccoutant@google.com>
1091
1092 PR gold/15758
1093 * object.cc (Sized_relobj_file::do_layout): Handle .eh_frame sections
1094 before reloc sections.
1095
4f65b40e
AM
10962013-11-04 Alan Modra <amodra@gmail.com>
1097
1098 * symtab.h (Symbol::Reference_flags): Add FUNC_DESC_ABI.
1099 (Symbol::needs_dynamic_reloc): Test new flag.
1100 * powerpc.cc (needs_dynamic_reloc, use_plt_offset): Delete.
1101 (Target_powerpc::Scan::get_reference_flags): Add target param.
1102 Return FUNC_DESC_ABI for 64-bit ELFv1.
1103 (Target_powerpc::Branch_info::make_stub): Adjust get_reference_flags
1104 call.
1105 (Target_powerpc::Scan::global): Use Symbol::needs_dynamic_reloc.
1106 (Target_powerpc::Relocate::relocate): Use Symbol::use_plt_offset.
1107
908794a9
CC
11082013-10-31 Cary Coutant <ccoutant@google.com>
1109
1110 Restore support for dwp v2 DWARF package file format.
1111
1112 * dwarf_reader.cc (Dwarf_info_reader::visit_type_unit): Add
1113 tu_length parameter. Adjust all callers.
1114 * dwarf_reader.h (Dwarf_info_reader::visit_type_unit): Likewise.
1115 * dwp.cc: Include dwarf.h.
1116 (Section_bounds): New struct type.
1117 (Unit_set): New struct type.
1118 (Dwo_file::Dwo_file): Initialize new data member.
1119 (Dwo_file::read_compunit_index, Dwo_file::read_typeunit_index):
1120 Combine and rename to...
1121 (Dwo_file::read_unit_index): ...this.
1122 (Dwo_file::sized_read_compunit_index)
1123 (Dwo_file::sized_read_typeunit_index): Combine and rename to...
1124 (Dwo_file::sized_read_unit_index): ...this.
1125 (Dwo_file::copy_section): Remove section_name, is_str_offsets
1126 parameters; add section_id parameter.
1127 (Dwo_file::add_cu_set, Dwo_file::add_tu_set): Combine and rename to...
1128 (Dwo_file::add_unit_set): ...this.
1129 (Dwo_file::shndx_map_): Remove.
1130 (Dwo_file::sect_offsets_): New data member.
1131 (Dwp_output_file::Dwp_output_file): Initialize new data members.
1132 (Dwp_output_file::add_section): Rename to...
1133 (Dwp_output_file::add_contribution): ...this.
1134 (Dwp_output_file::add_cu_set): Combine parameters into a struct.
1135 (Dwp_output_file::add_tu_set): Likewise.
1136 (Dwp_output_file::Contribution): New type.
1137 (Dwp_output_file::Section::contributions): New data member.
1138 (Dwp_output_file::Cu_or_tu_set): Remove.
1139 (Dwp_output_file::Section::Section): New ctor.
1140 (Dwp_output_file::Dwp_index::Shndx_pool): Remove.
1141 (Dwp_output_file::Dwp_index::Section_table): New type.
1142 (Dwp_output_file::Dwp_index::Dwp_index): Initialize new data members.
1143 (Dwp_output_file::Dwp_index::enter_set): Change type of "set"
1144 parameter.
1145 (Dwp_output_file::Dwp_index::shndx_pool): Remove.
1146 (Dwp_output_file::Dwp_index::shndx_pool_end): Remove.
1147 (Dwp_output_file::Dwp_index::section_table): New member function.
1148 (Dwp_output_file::Dwp_index::section_table_end): New member function.
1149 (Dwp_output_file::Dwp_index::shndx_pool_size): Remove.
1150 (Dwp_output_file::Dwp_index::section_table_rows): New member function.
1151 (Dwp_output_file::Dwp_index::section_table_cols): New member function.
1152 (Dwp_output_file::Dwp_index::shndx_pool_): Remove.
1153 (Dwp_output_file::Dwp_index::section_table_): New data member.
1154 (Dwp_output_file::Dwp_index::section_mask_): New data member.
1155 (Dwp_output_file::add_output_section): New member function.
1156 (Dwp_output_file::write_new_section): New member function.
1157 (Dwp_output_file::write_contributions): New member function.
1158 (Dwp_output_file::section_id_map_): New data member.
1159 (class Dwo_id_info_reader): Remove.
1160 (class Unit_reader): New class.
1161 (get_dwarf_section_name): New function.
1162 (Dwo_file::read_executable): Adjust initializations of class data.
1163 (Dwo_file::read): Add support for v2 package file format.
1164 (Dwo_file::read_unit_index): Likewise.
1165 (Dwo_file::sized_read_unit_index): Likewise.
1166 (Dwo_file::copy_section): Likewise.
1167 (Dwo_file::add_unit_set): Likewise.
1168 (Dwp_output_file::add_output_section): Likewise.
1169 (Dwp_output_file::add_contribution): Likewise.
1170 (Dwp_output_file::Dwp_index::find_or_add): Use row index to check
1171 for empty slot.
1172 (Dwp_output_file::Dwp_index::enter_set): Add support for v2 package
1173 file format.
1174 (Dwp_output_file::Dwp_index::grow): Use row index to check for empty
1175 slot.
1176 (Dwp_output_file::initialize): Remove unused function.
1177 (Dwp_output_file::finalize): Add support for v2 package file format.
1178 (Dwp_output_file::write_index): Likewise.
1179 * gdb-index.cc (Gdb_index_info_reader::visit_type_unit): Adjust
1180 function prototype.
1181
2500c017
CC
11822013-10-31 Cary Coutant <ccoutant@google.com>
1183
1184 * configure.ac: Fix check for -fmerge-constants.
1185 * configure.ac: Regenerate.
1186
dd0845d7
RM
11872013-10-30 Roland McGrath <mcgrathr@google.com>
1188
1189 * x86_64.cc (Output_data_plt_x86_64_nacl::first_plt_entry):
1190 Correct 9-byte nop sequence to match what the assembler generates.
1191
b4f7960d
AM
11922013-10-30 Alan Modra <amodra@gmail.com>
1193
1194 * powerpc.cc (Powerpc_relobj::abiversion, set_abiversion,
1195 ppc64_local_entry_offset, ppc64_local_entry_offset,
1196 do_read_symbols): New functions.
1197 (Powerpc_relobj::e_flags_, st_other_): New vars.
1198 (Powerpc_relobj::Powerpc_relobj): Call set_abiversion.
1199 (Powerpc_dynobj::abiversion, set_abiversion): New functions.
1200 (Powerpc_relobj::e_flags_): New var.
1201 (Target_powerpc::first_plt_entry_offset, plt_entry_size): Inline
1202 and adjust for ELFv2.
1203 (Target_powerpc::abiversion, set_abiversion, stk_toc): New functions.
1204 (Powerpc_relobj::do_find_special_sections): Check no .opd in ELFv2.
1205 (Powerpc_dynobj::do_find_special_sections): Likewise.
1206 (Target_powerpc::do_define_standard_symbols): Define ".TOC.".
1207 (Target_powerpc::Branch_info::make_stub): Adjust stub destination
1208 to ELFv2 local entry.
1209 (Target_powerpc::do_relax): No thread safe barriers needed for
1210 ELFv2.
1211 (Output_data_plt_powerpc::initial_plt_entry_size_,
1212 plt_entry_size): Delete. Replace all uses with
1213 first_plt_entry_offset() and plt_entry_size().
1214 (Output_data_plt_powerpc::Output_data_plt_powerpc): Remove
1215 reserved_size parm. Update callers.
1216 (Output_data_plt_powerpc::entry_count): Update.
1217 (Output_data_plt_powerpc::first_plt_entry_offset): Make private
1218 and use Target_powerpc::first_plt_entry_offset().
1219 (Output_data_plt_powerpc::get_plt_entry_size): Similarly and
1220 rename to plt_entry_size.
1221 (Output_data_plt_powerpc::add_ifunc_entry,
1222 add_local_ifunc_entry): Adjust reloc for ELFv2.
1223 (glink_eh_frame_fde_64): Rename to glink_eh_frame_fde_64v1.
1224 (glink_eh_frame_fde_64v2): New.
1225 (Stub_table::plt_call_size): Support ELFv2 sizing.
1226 (Output_data_glink::add_eh_frame): Use the new FDE.
1227 (Output_data_glink::set_final_data_size): Adjust for ELFv2 glink.
1228 (Stub_table::do_write): Write ELFv2 stubs and glink.
1229 (Target_powerpc::Relocate::relocate): Replaces nop after call
1230 with ld 2,24(1) and adjust local offset destination for ELFv2.
1231
f9c6b907
AM
12322013-10-30 Alan Modra <amodra@gmail.com>
1233
1234 * powerpc.cc (Target_powerpc::Scan::check_non_pic): Handle new relocs.
1235 (Target_powerpc::Scan::global, local): Likewise.
1236 (Target_powerpc::Relocate::relocate): Likewise. Check for overflow
1237 on all ppc64 @h and @ha relocs.
1238
e84fe78f
AM
12392013-10-14 Alan Modra <amodra@gmail.com>
1240
1241 * output.h (Output_data_got::add_constant): Tidy.
1242 (Output_data_got::add_constant_pair): New function.
1243 * powerpc.cc (Output_data_got_powerpc): Override all Output_data_got
1244 methods used so as to first call reserve_ent().
1245
679e4abf
RM
12462013-10-11 Roland McGrath <mcgrathr@google.com>
1247
44dcb735
RM
1248 * powerpc.cc (Output_data_got_powerpc): Remove unused methods
1249 add_got_entry and add_got_entry_pair.
1250
13323c49
RM
1251 * configure.ac (TLS_GNU2_DIALECT): Use -Werror in test.
1252 (HAVE_PUBNAMES): Likewise.
1253 * configure: Regenerate.
1254
1496b446
RM
1255 * testsuite/Makefile.am: Replace '-T foo' with '-Wl,-T,foo' throughout.
1256 * testsuite/Makefile.in: Regenerate.
1257
cc84c10b
RM
1258 * target.h (Target::adjust_elf_header, Target::do_adjust_elf_header):
1259 Remove const from declaration.
1260 * target.cc (Sized_target::do_adjust_elf_header): Update definition.
1261 * sparc.cc (Target_sparc::do_adjust_elf_header): Likewise.
1262 * output.h (Output_file_header): Remove const from member target_
1263 and corresponding constructor argument.
1264 * output.cc (Output_file_header::Output_file_header): Update prototype.
1265 (Output_file_header::do_sized_write): Use this->target_ in place
1266 of parameters()->target().
1267
52f66a2c
RM
1268 * testsuite/undef_symbol.cc (Foo::get_a): New method.
1269
2b64b551
RM
1270 * configure.ac (MERGE_CONSTANTS_FLAG): New check.
1271 * configure: Regenerate.
1272 * Makefile.in: Regenerate.
1273 * testsuite/merge_string_literals_1.c: Renamed to have .cc suffix.
1274 * testsuite/merge_string_literals_2.c: Likewise.
1275 * testsuite/Makefile.am
1276 (merge_string_literals_1.o, merge_string_literals_2.o): Update deps.
1277 (AM_CFLAGS, AM_CXXFLAGS): Use $(MERGE_CONSTANTS_FLAG) in place of
1278 literal -fmerge-constants.
1279 * testsuite/Makefile.in: Regenerate.
1280
43819297
RM
1281 * i386.cc (Target_i386): Remove unused member dynbss_.
1282 * arm.cc (Target_arm): Likewise.
1283 * powerpc.cc (Target_powerpc): Likewise.
1284 * sparc.cc (Target_sparc): Likewise.
1285 * tilegx.cc (Target_tilegx): Likewise.
1286 * x86_64.cc (Target_x86_64): Likewise.
1287 * dwarf_reader.h (Dwarf_info_reader): Remove unused members
1288 type_signature_, type_offset_.
1289 * plugin.h (Plugin_hook): Remove unused member layout_.
1290 * readsyms.h (Add_symbols): Remove unused members dirpath_, dirindex_,
1291 mapfile_.
1292 (Read_member): Remove unused members input_objects_, symtab_,
1293 mapfile_, layout_.
1294 (Check_library): Remove unused member symtab_.
1295 * archive.h (Lib_group): Remove unused member lib_.
1296 * archive.cc (Lib_group::Lib_group): Update initializer.
1297 * incremental.h (Incremental_binary): Remove unused member target_.
1298 (Incremental_script_entry): Removed unused member script_.
1299 * layout.h (Write_symbols_task): Remove unused member input_objects_.
1300 * icf.h (Icf): Remove unused member num_tracked_relocs.
1301
39d9ead7
RM
1302 * gold-threads.h (Once): Conditionalize member was_run_lock_ on
1303 [ENABLE_THREADS && __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4], matching
1304 its only use.
1305 * gold-threads.cc (Once::Once): Likewise conditionalize initializer.
1306
679e4abf
RM
1307 * archive.h: Use struct rather than class for forward declaration
1308 of Read_symbols_data.
1309
54de2ea6
CC
13102013-10-07 Cary Coutant <ccoutant@google.com>
1311
1312 PR gold/16010
1313 * testsuite/Makefile.am (icf_test): Fix dependencies.
1314 (icf_safe_test): Likewise.
1315 (icf_safe_so_test): Likewise.
1316 (large_symbol_alignment): Add empty _LDADD rule.
1317 * testsuite/Makefile.in: Regenerate.
1318
b14016f0
L
13192013-09-03 Pavel Chupin <pavel.v.chupin@intel.com>
1320
1321 PR gold/15927
1322 * x86_64.cc (Target_x86_64<size>::Scan::global): Use relative
1323 relocation for R_X86_64_32 on x32.
1324
eb426534
RM
13252013-08-27 Roland McGrath <mcgrathr@google.com>
1326
1327 * output.cc (Output_segment::set_section_addresses): Take new
1328 Target* argument. If target->isolate_execinstr() and the segment
1329 is executable and starts at a target->abi_pagesize() boundary,
1330 pad its end out to a target->abi_pagesize() boundary with code fill.
1331 * output.h (Output_segment::set_section_addresses): Update decl.
1332 * layout.h (Layout::check_output_data_for_reset_values): Take new
1333 argument RELAX_OUTPUTS.
1334 (Layout): New member relax_output_list_.
1335 (Layout::add_relax_output): New method.
1336 * layout.cc (Layout::Layout): Update constructor.
1337 (Layout::reset_relax_output): New method.
1338 (Layout::clean_up_after_relaxation): Call it.
1339 (Layout::prepare_for_relaxation): Update caller.
1340 (Layout::set_segment_offsets): Update callers of set_section_addresses.
1341 Call reset_relax_output before re-processing segments for
1342 isolate_execinstr case.
1343 (Layout::write_data): Handle relax_output_list_.
1344 (Layout::Relaxation_debug_check::check_output_data_for_reset_values):
1345 Take new argument RELAX_OUTPUTS. Assert it's an empty collection.
1346
9aff4b7a
NC
13472013-08-23 Yuri Chornoivan <yurchor@ukr.net>
1348
1349 PR binutils/15834
1350 * object.h: Fix typos.
1351
93f8221c
RM
13522013-08-16 Roland McGrath <mcgrathr@google.com>
1353
1354 * i386.cc (Target_i386_nacl::do_code_fill): New virtual function.
1355 * x86_64.cc (Target_x86_64_nacl::do_code_fill): New virtual function.
1356
e44c3715
CC
13572013-08-07 Cary Coutant <ccoutant@google.com>
1358
1359 Revert support for v2 DWP files:
1360
1361 2013-03-01 Cary Coutant <ccoutant@google.com>
1362
1363 Add dwp support for v2 DWARF package file format.
1364 * dwarf_reader.cc (Dwarf_info_reader::visit_type_unit): Add
1365 tu_length parameter. Adjust all callers.
1366 * dwarf_reader.h (Dwarf_info_reader::visit_type_unit): Likewise.
1367 * dwp.cc: Include dwarf.h.
1368 (Section_bounds): New struct type.
1369 (Unit_set): New struct type.
1370 (Dwo_file::Dwo_file): Initialize new data member.
1371 (Dwo_file::read_compunit_index, Dwo_file::read_typeunit_index):
1372 Combine and rename to...
1373 (Dwo_file::read_unit_index): ...this.
1374 (Dwo_file::sized_read_compunit_index)
1375 (Dwo_file::sized_read_typeunit_index): Combine and rename to...
1376 (Dwo_file::sized_read_unit_index): ...this.
1377 (Dwo_file::copy_section): Remove section_name, is_str_offsets
1378 parameters; add section_id parameter.
1379 (Dwo_file::add_cu_set, Dwo_file::add_tu_set): Combine and rename to...
1380 (Dwo_file::add_unit_set): ...this.
1381 (Dwo_file::shndx_map_): Remove.
1382 (Dwo_file::sect_offsets_): New data member.
1383 (Dwp_output_file::Dwp_output_file): Initialize new data members.
1384 (Dwp_output_file::add_section): Rename to...
1385 (Dwp_output_file::add_contribution): ...this.
1386 (Dwp_output_file::add_cu_set): Combine parameters into a struct.
1387 (Dwp_output_file::add_tu_set): Likewise.
1388 (Dwp_output_file::Contribution): New type.
1389 (Dwp_output_file::Section::contributions): New data member.
1390 (Dwp_output_file::Cu_or_tu_set): Remove.
1391 (Dwp_output_file::Section::Section): New ctor.
1392 (Dwp_output_file::Dwp_index::Shndx_pool): Remove.
1393 (Dwp_output_file::Dwp_index::Section_table): New type.
1394 (Dwp_output_file::Dwp_index::Dwp_index): Initialize new data members.
1395 (Dwp_output_file::Dwp_index::enter_set): Change type of "set"
1396 parameter.
1397 (Dwp_output_file::Dwp_index::shndx_pool): Remove.
1398 (Dwp_output_file::Dwp_index::shndx_pool_end): Remove.
1399 (Dwp_output_file::Dwp_index::section_table): New member function.
1400 (Dwp_output_file::Dwp_index::section_table_end): New member function.
1401 (Dwp_output_file::Dwp_index::shndx_pool_size): Remove.
1402 (Dwp_output_file::Dwp_index::section_table_rows): New member function.
1403 (Dwp_output_file::Dwp_index::section_table_cols): New member function.
1404 (Dwp_output_file::Dwp_index::shndx_pool_): Remove.
1405 (Dwp_output_file::Dwp_index::section_table_): New data member.
1406 (Dwp_output_file::Dwp_index::section_mask_): New data member.
1407 (Dwp_output_file::add_output_section): New member function.
1408 (Dwp_output_file::write_new_section): New member function.
1409 (Dwp_output_file::write_contributions): New member function.
1410 (Dwp_output_file::section_id_map_): New data member.
1411 (class Dwo_id_info_reader): Remove.
1412 (class Unit_reader): New class.
1413 (get_dwarf_section_name): New function.
1414 (Dwo_file::read_executable): Adjust initializations of class data.
1415 (Dwo_file::read): Add support for v2 package file format.
1416 (Dwo_file::read_unit_index): Likewise.
1417 (Dwo_file::sized_read_unit_index): Likewise.
1418 (Dwo_file::copy_section): Likewise.
1419 (Dwo_file::add_unit_set): Likewise.
1420 (Dwp_output_file::add_output_section): Likewise.
1421 (Dwp_output_file::add_contribution): Likewise.
1422 (Dwp_output_file::Dwp_index::find_or_add): Use row index to check
1423 for empty slot.
1424 (Dwp_output_file::Dwp_index::enter_set): Add support for v2 package
1425 file format.
1426 (Dwp_output_file::Dwp_index::grow): Use row index to check for empty
1427 slot.
1428 (Dwp_output_file::initialize): Remove unused function.
1429 (Dwp_output_file::finalize): Add support for v2 package file format.
1430 (Dwp_output_file::write_index): Likewise.
1431 * gdb-index.cc (Gdb_index_info_reader::visit_type_unit): Adjust
1432 function prototype.
1433
c6905c28
CC
14342013-07-31 Cary Coutant <ccoutant@google.com>
1435
1436 * object.cc (Sized_relobj::do_output_section_address): New function.
1437 (Sized_relobj): Instantiate explicitly.
1438 * object.h (Object::output_section_address): New function.
1439 (Object::do_output_section_address): New function.
1440 (Sized_relobj::do_output_section_address): New function.
1441 * powerpc.cc (Target_powerpc::symval_for_branch): Use it.
1442
14432013-07-30 Cary Coutant <ccoutant@google.com>
5cdb4d98 1444 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
a67858e0
CC
1445
1446 * parameters.cc (Parameters::entry): Return target-specific entry
1447 symbol name.
1448 * target.h (Target::entry_symbol_name): New function.
1449 (Target_info::entry_symbol_name): New data member.
1450
1451 * arm.cc (Target_arm::arm_info): Add entry_symbol_name.
1452 * i386.cc (Target_i386::i386_info): Likewise.
1453 (Target_i386_nacl::i386_nacl_info): Likewise.
1454 * sparc.cc (Target_sparc::sparc_info): Likewise.
1455 * tilegx.cc (Target_tilegx::tilegx_info): Likewise.
1456 * x86_64.cc: (Target_x86_64::x86_64_info) Likewise.
1457 (Target_x86_64_nacl::x86_64_nacl_info) Likewise.
1458 * testsuite/testfile.cc (Target_test::test_target_info): Likewise.
1459
234d4ab8
SA
14602013-07-22 Sterling Augustine <saugustine@google.com>
1461
1462 * dwarf_reader.cc (Dwarf_pubnames_table::read_section):
1463 Convert parameter shndx to local variable. Add parameters symtab
1464 and symtab_size. Scan over section names. Find relocation
1465 section corresponding to current section. Create and initialize
1466 reloc_mapper_ and reloc_type_.
1467 (Dwarf_pubnames_table::read_header): Add assertion. Change
1468 unit_length to off_t. Initialize member unit_length_. Fill in field
1469 cu_offset_.
1470 * dwarf_reader.h (Dwarf_pubnames_table::Dwarf_pubnames_table):
1471 Initialize new fields unit_length_ and cu_offset_.
1472 (Dwarf_pubnames_table::read_section): Update prototype.
1473 (Dwarf_pubnames_table::cu_offset): New member function.
1474 (Dwarf_pubnames_table::subsection_size): Likewise.
1475 (Dwarf_pubnames_table::cu_offset_, Dwarf_pubnames_table::unit_length):
1476 New fields.
1477 (Dwarf_info_reader::symtab, Dwarf_info_reader::symtab_size): Make
1478 member functions public.
1479 * gdb_index.cc (Gdb_index_info_reader::read_pubnames_and_pubtypes):
1480 Update comment. Rework logic. Move repeated parts to...
1481 (Gdb_index_info_reader::read_pubtable): ...here. New function.
1482 (Gdb_index::Gdb_index): Initialize new fields, pubnames_table_,
1483 pubtypes_table_, and stmt_list_offset.
1484 (Gdb_index::map_pubtable_to_dies, Gdb_index::find_pubname_offset,
1485 Gdb_index::find_pubtype_offset,
1486 Gdb_index::map_pubnames_and_types_to_dies): Define new functions.
1487 (Gdb_index::pubnames_read): Update prototype and rework logic.
1488 * gdb_index.h (Gdb_index_info_reader, Dwarf_pubnames_table):
1489 Forward declare.
1490 (Gdb_index::map_pubtable_to_dies, Gdb_index::find_pubname_offset,
1491 Gdb_index::find_pubtype_offset, Gdb_index::pubnames_table)
1492 Gdb_index::pubtypes_table, Gdb_index::map_pubnames_and_types_to_dies,
1493 Gdb_index::map_pubtable_to_dies):
1494 Declare functions.
1495 (Gdb_index::pubnames_read): Update declaration.
1496 (Gdb_index::Pubname_offset_map): New type.
1497 (Gdb_index::cu_pubname_map_, Gdb_index::cu_pubtype_map_,
1498 Gdb_index::pubnames_table_, Gdb_index::pubtypes_table_,
1499 Gdb_index::stmt_list_offset): Declare.
1500 (Gdb_index::pubnames_shndx_, Gdb_index::pubnames_offet_,
1501 Gdb_index::pubtypes_object_, Gdb_index::pubtypes_shndx_)
1502 Gdb_index::pubtypes_offset_): Remove.
1503
a3ed37d8
RM
15042013-07-19 Roland McGrath <mcgrathr@google.com>
1505
1506 * options.h (General_options): Add -Trodata-segment option.
1507 * parameters.cc (Parameters::check_rodata_segment): New function.
1508 (Parameters::set_target_once): Call it.
1509 * parameters.h (Parameters): Declare it (private member function).
1510 * layout.cc (load_seg_unusable_for_headers): New function, broken
1511 out of Layout::relaxation_loop_body. If TARGET->isolate_execinstr()
1512 then validate rodata segment rather than text segment.
1513 (relaxation_loop_body): Call that.
1514 (is_text_segment): New function. Don't admit a non-executable
1515 segment if TARGET->isolate_execinstr().
1516 (set_segment_offsets): Call it. Honor -Trodata-segment option.
1517
eb5b4ded
CC
15182013-07-15 Shawn Landden <shawnlandden@gmail.com>
1519
1520 PR gold/15070
1521 * fileread.h (File_read::get_view): Clarify comment about ALIGNED.
1522 * nacl.h (Sniff_file::View::View): Request aligned view.
1523
4d5effb9
CC
15242013-07-11 Cary Coutant <ccoutant@google.com>
1525
1526 * powerpc.cc (Target_powerpc::write_branch_lookup_table): Use
1527 correct BRLT entry size.
1528
ba8ca3e7
AM
15292013-07-03 Alan Modra <amodra@gmail.com>
1530
1531 * powerpc.cc (Target_powerpc::Relocate::relocate): Update self-call
1532 comment.
1533
267257d2
CC
15342013-07-01 Cary Coutant <ccoutant@google.com>
1535
1536 * dwarf_reader.cc (Dwarf_ranges_table::read_ranges_table): Save
1537 reloc_type_.
1538 (Dwarf_ranges_table::read_range_list): Call lookup_reloc.
1539 (Dwarf_ranges_table::lookup_reloc): New function.
1540 * dwarf_reader.h (Dwarf_ranges_table::Dwarf_ranges_table): Initialize
1541 reloc_type_.
1542 (Dwarf_ranges_table::lookup_reloc): New function.
1543 (Dwarf_ranges_table::reloc_type_): New data member.
1544
06f30c9d
CC
15452013-06-27 Jing Yu <jingyu@google.com>
1546
1547 PR gold/15662
1548 * powerpc.cc (Output_data_brlt_powerpc::reset_brlt_sizes): New
1549 function.
1550 (Output_data_brlt_powerpc::finalize_brlt_sizes): New function.
1551 (Target_powerpc::do_relax): Call the above.
1552
a2d7bf59
AM
15532013-06-27 Cary Coutant <ccoutant@google.com>
1554
1555 * powerpc.cc (Target_powerpc::symval_for_branch): Don't assert
1556 on garbage collected .opd section.
1557
15582013-06-27 Alan Modra <amodra@gmail.com>
1559
1560 * powerpc.cc (Target_powerpc::do_gc_add_reference): Test dst_shndx
1561 is non-zero.
1562 (Target_powerpc::do_gc_mark_symbols): Likewise for sym->shndx().
1563 (Target_powerpc::do_function_location): Likewise for loc->shndx.
1564
32364e50
CC
15652013-06-14 Cary Coutant <ccoutant@google.com>
1566
1567 * resolve.cc (Symbol::override_base): Don't override st_type
1568 from plugin placeholder symbols.
1569 (Symbol_table::resolve): Likewise.
1570 (Symbol_table::should_override): Don't complain about TLS mismatch
1571 if the TO symbol is a plugin placeholder.
1572 * testsuite/Makefile.am (plugin_test_tls): New test.
1573 * testsuite/Makefile.in: Regenerate.
1574 * testsuite/plugin_test_tls.sh: New test script.
1575 * testsuite/two_file_test_2_tls.cc: New test source.
1576 * testsuite/two_file_test_tls.cc: New test source.
1577
7fb47cc9
CC
15782013-06-05 Alexander Ivchenko <alexander.ivchenko@intel.com>
1579
1580 * layout.cc (Layout::set_segment_offsets): Taking care of the case when
1581 the maximum segment alignment is larger than the page size.
1582 * testsuite/Makefile.am (large_symbol_alignment): Test that Gold
1583 correctly aligns the symbols with large alignemnt.
1584 * testsuite/Makefile.in: Regenerate.
1585 * testsuite/large_symbol_alignment.cc: New file.
1586
6934001a
CC
15872013-05-30 Alexander Ivchenko <alexander.ivchenko@intel.com>
1588 Sriraman Tallam <tmsriram@google.com>
1589
1590 * options.h (sort_section): New option.
1591 * output.h (Input_section_sort_section_prefix_special_ordering_compare):
1592 Rename from Input_section_sort_section_name_special_ordering_compare.
1593 (Input_section_sort_section_name_compare): New struct.
1594 * output.cc (Output_section::Input_section_sort_section_name_compare::
1595 operator()): New function.
1596 (Output_section::sort_attached_input_sections): Use new sort function
1597 for .text if --sort-section=name is specified.
1598 * layout.cc (Layout::make_output_section):
1599 Add sorting by name when --sort-section=name is specified.
1600 * testsuite/Makefile.am (text_section_grouping): Test option
1601 --sort-section=name.
1602 * testsuite/Makefile.in: Regenerate.
1603 * testsuite/section_sorting_name.cc: New file.
1604 * testsuite/section_sorting_name.sh: New file.
1605
93acabad
CC
16062013-05-21 Cary Coutant <ccoutant@google.com>
1607
1608 * symtab.h (Symbol::is_cxx_vtable): New function.
1609 * target-reloc.h (relocate_section): Check for vtable symbol.
1610 * testsuite/Makefile.am (missing_key_func.sh): New test case.
1611 * testsuite/Makefile.in: Regenerate.
1612 * testsuite/missing_key_func.cc: New test source.
1613 * testsuite/missing_key_func.sh: New test script.
1614
60e8b3fc
CC
16152013-05-21 Cary Coutant <ccoutant@google.com>
1616
2b64b551
RM
1617 * object.cc (Sized_relobj_file::get_symbol_location_info): Set
1618 type of enclosing symbol.
1619 (Relocate_info::location): Check symbol type when describing symbol.
1620 * object.h (Symbol_location_info): Remove unused line_number;
1621 add enclosing_symbol_type.
1622 * testsuite/debug_msg.sh: Adjust expected output.
60e8b3fc 1623
9df9de2c
CC
16242013-05-13 Cary Coutant <ccoutant@google.com>
1625
2b64b551
RM
1626 * configure.ac: Export DEFAULT_TARGET.
1627 * configure: Regenerate.
1628 * Makefile.in: Regenerate.
1629 * testsuite/Makefile.am: Add .EXPORT_ALL_VARIABLES.
1630 * testsuite/Makefile.in: Regenerate.
1631 * testsuite/debug_msg.sh: Delete duplicate tests.
1632 Don't check undef_int error message match for powerpc where the
1633 source file and line number aren't available.
9df9de2c 1634
bbc5ae17
RM
16352013-05-10 Roland McGrath <mcgrathr@google.com>
1636
1637 * options.h (General_options): Add --rosegment-gap option.
1638 * options.cc (finalize): --rosegment-gap implies --rosegment.
1639 * layout.cc (set_segment_offsets): Let user option override
1640 target->rosegment_gap().
1641
0c6e6c39
RM
16422013-05-10 Roland McGrath <mcgrathr@google.com>
1643
1644 * options.h (General_options): Remove leading space from help
1645 messages for -nostdlib and --rosegment.
1646
cde7cb01
MR
16472013-05-03 Maciej W. Rozycki <macro@codesourcery.com>
1648
1649 PR ld/15365
1650 * layout.cc (Layout::finalize): Make __ehdr_start STV_HIDDEN.
1651
f31ae5b8
AM
16522013-05-03 Alan Modra <amodra@gmail.com>
1653
1654 * merge.cc (Output_merge_string::do_add_input_section): Correct
1655 scan for number of strings. Rename vars to avoid shadowing.
1656 Include missing terminator in input_size_.
1657
d3a7cd45
L
16582013-05-01 H.J. Lu <hongjiu.lu@intel.com>
1659
1660 * merge.cc (Output_merge_string<Char_type>::do_add_input_section):
1661 Restore empty string handling.
1662
6ad3daba
CC
16632013-05-01 Cary Coutant <ccoutant@google.com>
1664
1665 * stringpool.cc (Stringpool_template::new_key_offset): Fix
1666 uninitialized warning.
1667
e31908b6
CC
16682013-04-29 Alexander Ivchenko <alexander.ivchenko@intel.com>
1669
1670 * output.cc (Output_section::add_merge_input_section): Allow
1671 to merge sections if the alignment is more than character size.
1672 * merge.h (Output_merge_string::Output_merge_string): Remove
1673 assert.
1674 * merge.cc (Output_merge_string<Char_type>::do_add_input_section): Count
1675 only not-null strings. Check the alignment of strings.
1676 * stringpool.h
1677 (Stringpool_template<Stringpool_char>::Stringpool_template): Add
1678 alignment as the argument.
1679 (Stringpool_template<Stringpool_char>::addralign_): New class member.
1680 * stringpool.cc (Stringpool_template<Stringpool_char>::new_key_offset):
1681 Align non-zero length strings according to the addralign_.
1682 (Stringpool_template<Stringpool_char>::set_string_offsets):
1683 Updating offsets according to the given alignment.
1684 * testsuite/Makefile.am (text_section_grouping): Test if string
1685 literals are getting merged.
1686 * testsuite/Makefile.in: Regenerate.
1687 * testsuite/merge_string_literals_1.c: New file.
1688 * testsuite/merge_string_literals_2.c: Ditto.
1689 * testsuite/merge_string_literals.sh: Ditto.
1690
0e804863
ILT
16912013-04-26 Ian Lance Taylor <iant@google.com>
1692
1693 * target-reloc.h (relocate_section): If the reloc offset is out of
1694 range, pass VIEW as NULL to relocate.relocate.
1695 * arm.cc (Target_arm:Relocate::relocate): Check for a NULL view.
1696 * i386.cc (Target_i386::Relocate::relocate): Likewise.
1697 * powerpc.cc (Target_powerpc::Relocate::relocate): Likewise.
1698 * sparc.cc (Target_sparc::Relocate::relocate): Likewise.
1699 * tilegx.cc (Target_tilegx::Relocate::relocate): Likewise.
1700 * x86_64.cc (Target_x86_64::Relocate::relocate): Likewise.
1701
e7c5ea40
CC
17022013-04-26 Geoff Pike <gpike@chromium.org>
1703
1704 * gold.cc (queue_final_tasks): invoke layout->queue_build_id_tasks().
1705 * layout.cc (Hash_task): New class.
1706 (Layout::queue_build_id_tasks): New function.
1707 (Layout::write_build_id): Handle single-thread portion of build ID
1708 computation. (In some cases, all of it is single-threaded.) Replace
1709 {sha1,md5}_process_bytes with {sha1,md5}_buffer to get the same
1710 functionality in fewer lines of code.
1711 * layout.h (Layout::queue_build_id_tasks): New function declaration.
1712 * options.h (General_options): make "--build-id" default to tree
1713 rather than sha1. Add two new options related to --build-id=tree:
1714 --build-id-chunk-size-for-treehash and
1715 --build-id-min-file-size-for-treehash.
1716 * Makefile.am: add testing of --build-id=tree and related new options
1717 (these tests will be invoked by "make check").
1718 * Makefile.in: Regenerate.
1719
49926cd0
AM
17202013-04-25 Alan Modra <amodra@gmail.com>
1721
1722 * configure.tgt: Add powerpcle and powerpc64le.
1723
a4034750
AM
17242013-04-22 Alan Modra <amodra@gmail.com>
1725
1726 PR gold/15355
1727 * layout.cc (Layout::segment_precedes): Allow more than one
1728 segment with the same type and flags.
1729
e79c84aa
CC
17302013-04-15 Cary Coutant <ccoutant@google.com>
1731
1732 * layout.cc (Layout::set_relocatable_section_offsets): Don't
1733 allocate space in file for BSS sections.
1734
2199fbe7
CC
17352013-04-15 Cary Coutant <ccoutant@google.com>
1736
1737 * script-sections.cc (Orphan_output_section): Reset address
1738 to zero after each orphaned section for relocatable links.
1739
502e8a84
CC
17402013-04-15 Cary Coutant <ccoutant@google.com>
1741
a4034750
AM
1742 * symtab.cc (Symbol_table::sized_write_globals): Subtract
1743 section starting address for relocatable link.
1744 * testsuite/Makefile.am (script_test_11): New test.
1745 * testsuite/Makefile.in: Regenerate.
1746 * testsuite/script_test_11.c: New source file.
1747 * testsuite/script_test_11.t: New linker script.
502e8a84 1748
0cfdc767
AM
17492013-04-13 Alan Modra <amodra@gmail.com>
1750
1751 * powerpc.cc (Stub_control::can_add_to_stub_group): Don't set
1752 owner when sections are not adjacent and exceed group size.
1753 (Target_powerpc::group_sections): Handle corner case.
1754 (Target_powerpc::Branch_info::make_stub): Handle case where
1755 stub table doesn't exist due to branches in non-exec sections.
1756 (Target_powerpc::Relocate::relocate): Likewise.
1757
6830ee24
AM
17582013-04-11 Alan Modra <amodra@gmail.com>
1759
1760 PR gold/15354
1761 * powerpc.cc (Target_powerpc::make_brlt_section): Name section
1762 .branch_lt to match bfd ld. Adjust comments throughout file.
1763
54a3d865
ILT
17642013-04-04 Ian Lance Taylor <iant@google.com>
1765
1766 GCC PR c++/56840
1767 * object.cc (do_layout_deferred_sections): Handle .eh_frame
1768 sections before checking whether they are included in the link.
1769
9993ba11
ST
17702013-03-29 Sriraman Tallam <tmsriram@google.com>
1771
1772 * archive.cc (Archive::get_elf_object_for_member): Create the elf
1773 object before calling the plugin claim_file handler. Pass the elf
1774 object of the archive to the plugin. Delete the elf object if the
1775 plugin claims the file.
1776
ebacd51e
AM
17772013-03-21 Alan Modra <amodra@gmail.com>
1778
1779 * layout.cc (Layout::set_segment_offsets): Accept writable .text
1780 segment when omagic.
1781
117be58f
AM
17822013-03-21 Alan Modra <amodra@gmail.com>
1783
1784 * dwp.cc (Dwp_output_file::add_contribution): Avoid signed/unsigned
1785 comparison warning.
1786 * layout.cc (Layout::create_dynamic_symtab): Avoid "may be used
1787 uninitialized" warning.
1788
32e2b61d
AM
17892013-03-20 Alan Modra <amodra@gmail.com>
1790
1791 * symtab.h (Symbol::clear_version): New function.
1792 * symtab.cc (Symbol_table::set_dynsym_indexes): Don't set object
1793 is_needed by weak references. Clear version for symbols defined
1794 in as-needed objects that are not needed.
1795
b3ccdeb5
AM
17962013-03-15 Alan Modra <amodra@gmail.com>
1797
1798 * powerpc.cc (Target_powerpc::Scan::reloc_needs_plt_for_ifunc): Make
1799 static and public. Add report_err param. Return false for data refs.
1800 (Target_powerpc::rela_dyn_section): New overloaded function.
1801 (Target_powerpc::plt_, iplt_): Elucidate.
1802 (Output_data_plt_powerpc::entry_count): Handle current_data_size()==0.
1803 (Output_data_plt_powerpc::do_write): Don't write .iplt.
1804 (Output_data_plt_powerpc::plt_entry_count): Don't add .iplt entries.
1805 (Target_powerpc::Scan::local, global): Adjust reloc_needs_plt_for_ifunc
1806 calls. Put ifunc dynamic relocs in irela_dyn_section. Only
1807 push_branch and make_plt_entry for ifunc syms when
1808 reloc_needs_plt_for_ifunc.
1809 (Target_powerpc::Relocate::relocate): Don't use plt entry value
1810 for ifunc unless reloc_needs_plt_for_ifunc.
1811
ad3d8a2f
AM
18122013-03-15 Alan Modra <amodra@gmail.com>
1813
1814 * gc.h (gc_process_relocs): Don't look through function descriptors.
1815 * icf.cc (get_section_contents): Do so here instead.
1816
4d9aa155
AM
18172013-03-13 Alan Modra <amodra@gmail.com>
1818
1819 * powerpc.cc (is_branch_reloc): Forward declare.
1820 (Target_powerpc::do_can_check_for_function_pointers): New predicate.
1821 (Target_powerpc::Scan::local_reloc_may_be_function_pointer): Return
1822 false for 64-bit, true for 32-bit non-branch relocs.
1823 (Target_powerpc::Scan::global_reloc_may_be_function_pointer): Likewise.
1824 * testsuite/Makefile.am (icf_test): Use linker map file instead of
1825 nm output.
1826 (icf_safe_test): Generate linker map file as well as nm output.
1827 (icf_safe_so_test): Likewise.
1828 * testsuite/Makefile.in: Regenerate.
1829 * testsuite/icf_test.sh: Parse linker map file to determine
1830 section folding.
1831 * testsuite/icf_safe_test.sh: Likewise. Expect folding for PowerPC.
1832 * testsuite/icf_safe_so_test.sh: Likewise.
1833 (X86_32_or_ARM_specific_safe_fold): Merge into..
1834 (arch_specific_safe_fold): ..this.
1835 (X86_64_specific_safe_fold): Delete unused function.
1836
57420c20
AM
18372013-03-12 Alan Modra <amodra@gmail.com>
1838
1839 * gc.h (gc_process_relocs): Look through function descriptors
1840 to determine shndx, symvalue and addend used by ICF. Tidy
1841 variable duplication.
1842
dc3714f3
AM
18432013-03-11 Alan Modra <amodra@gmail.com>
1844
1845 * gold.cc (queue_middle_tasks): Move detect_odr_violations..
1846 * layout.cc (Layout_task_runner::run): ..to here.
1847 * symtab.h (struct Symbol_location): Extract from..
1848 (class Symbol_table): ..here.
1849 * symtab.cc (Symbol_table::linenos_from_loc): Invoke function_location.
1850 * target.h (class Target): Add function_location and
1851 do_function_location functions.
1852 (class Sized_target): Add do_function_location.
1853 * object.h (class Sized_relobj_file): Move find_shdr..
1854 (class Object): ..to here.
1855 * object.cc: Likewise. Update to suit. Instantiate.
1856 (Sized_relobj_file::find_eh_frame): Update find_shdr call.
1857 * powerpc.cc (class Powerpc_dynobj): New.
1858 (Target_powerpc::do_function_location): New function.
1859 (Powerpc_relobj::do_find_special_sections): Update find_shdr call.
1860 (Powerpc_dynobj::do_read_symbols): New function.
1861 (Target_powerpc::do_make_elf_object): Make a Powerpc_dynobj.
1862
956b03bb
ILT
18632013-03-08 Ian Lance Taylor <iant@google.com>
1864
1865 * options.cc (General_options::string_to_object_format): Accept
1866 "default".
1867
4bead2d5
AM
18682013-03-08 Alan Modra <amodra@gmail.com>
1869
1870 * ehframe.h (Post_fdes) Make it a vector of Post_fde rather than
1871 pointer to Post_fde.
1872 (struct Post_fde): Move definition to here..
1873 * ehframe.cc (struct Post_fde): ..from here.
1874 (Cie::write): Don't alloc Post_fde.
1875 (Eh_frame::do_sized_write): Update. Don't free Post_fde.
1876
02e60bf7
AM
18772013-03-07 Alan Modra <amodra@gmail.com>
1878
1879 * testsuite/discard_locals_relocatable_test.c: Add a powerpc
1880 relocation referencing .LC0.
1881 * testsuite/discard_locals_test.sh: Remove FIXMEs.
1882
8343f03a
AM
18832013-03-07 Alan Modra <amodra@gmail.com>
1884
1885 * testsuite/ifunc-sel.h (ifunc_sel, ifunc_one): Mark
1886 always_inline. Add assembly for powerpc to avoid GOT.
1887
3366d57c
AM
18882013-03-07 Alan Modra <amodra@gmail.com>
1889
1890 * testsuite/script_test_10.sh: Don't test .bss section
1891 header number.
1892
6c77229c
AM
18932013-03-06 Alan Modra <amodra@gmail.com>
1894
1895 * powerpc.cc (class Powerpc_relobj): Move some member functions.
1896 (Target_powerpc::symval_for_branch): Add symtab param. Update
1897 all callers. Handle folded sections.
1898 (Target_powerpc::do_gc_add_reference): Don't cast dynamic object
1899 to Powerpc_relobj.
1900 (Global_symbol_visitor_opd::operator()): Likewise.
1901
a39e4af6
AM
19022013-03-04 Alan Modra <amodra@gmail.com>
1903
1904 * testsuite/Makefile.am (final_layout_script.lds): Add .sbss.
1905 * testsuite/Makefile.in: Regenerate.
1906
d5834edb
CC
19072013-03-01 Cary Coutant <ccoutant@google.com>
1908
1909 Add dwp support for v2 DWARF package file format.
1910 * dwarf_reader.cc (Dwarf_info_reader::visit_type_unit): Add
1911 tu_length parameter. Adjust all callers.
1912 * dwarf_reader.h (Dwarf_info_reader::visit_type_unit): Likewise.
1913 * dwp.cc: Include dwarf.h.
1914 (Section_bounds): New struct type.
1915 (Unit_set): New struct type.
1916 (Dwo_file::Dwo_file): Initialize new data member.
1917 (Dwo_file::read_compunit_index, Dwo_file::read_typeunit_index):
1918 Combine and rename to...
1919 (Dwo_file::read_unit_index): ...this.
1920 (Dwo_file::sized_read_compunit_index)
1921 (Dwo_file::sized_read_typeunit_index): Combine and rename to...
1922 (Dwo_file::sized_read_unit_index): ...this.
1923 (Dwo_file::copy_section): Remove section_name, is_str_offsets
1924 parameters; add section_id parameter.
1925 (Dwo_file::add_cu_set, Dwo_file::add_tu_set): Combine and rename to...
1926 (Dwo_file::add_unit_set): ...this.
1927 (Dwo_file::shndx_map_): Remove.
1928 (Dwo_file::sect_offsets_): New data member.
1929 (Dwp_output_file::Dwp_output_file): Initialize new data members.
1930 (Dwp_output_file::add_section): Rename to...
1931 (Dwp_output_file::add_contribution): ...this.
1932 (Dwp_output_file::add_cu_set): Combine parameters into a struct.
1933 (Dwp_output_file::add_tu_set): Likewise.
1934 (Dwp_output_file::Contribution): New type.
1935 (Dwp_output_file::Section::contributions): New data member.
1936 (Dwp_output_file::Cu_or_tu_set): Remove.
1937 (Dwp_output_file::Section::Section): New ctor.
1938 (Dwp_output_file::Dwp_index::Shndx_pool): Remove.
1939 (Dwp_output_file::Dwp_index::Section_table): New type.
1940 (Dwp_output_file::Dwp_index::Dwp_index): Initialize new data members.
1941 (Dwp_output_file::Dwp_index::enter_set): Change type of "set"
1942 parameter.
1943 (Dwp_output_file::Dwp_index::shndx_pool): Remove.
1944 (Dwp_output_file::Dwp_index::shndx_pool_end): Remove.
1945 (Dwp_output_file::Dwp_index::section_table): New member function.
1946 (Dwp_output_file::Dwp_index::section_table_end): New member function.
1947 (Dwp_output_file::Dwp_index::shndx_pool_size): Remove.
1948 (Dwp_output_file::Dwp_index::section_table_rows): New member function.
1949 (Dwp_output_file::Dwp_index::section_table_cols): New member function.
1950 (Dwp_output_file::Dwp_index::shndx_pool_): Remove.
1951 (Dwp_output_file::Dwp_index::section_table_): New data member.
1952 (Dwp_output_file::Dwp_index::section_mask_): New data member.
1953 (Dwp_output_file::add_output_section): New member function.
1954 (Dwp_output_file::write_new_section): New member function.
1955 (Dwp_output_file::write_contributions): New member function.
1956 (Dwp_output_file::section_id_map_): New data member.
1957 (class Dwo_id_info_reader): Remove.
1958 (class Unit_reader): New class.
1959 (get_dwarf_section_name): New function.
1960 (Dwo_file::read_executable): Adjust initializations of class data.
1961 (Dwo_file::read): Add support for v2 package file format.
1962 (Dwo_file::read_unit_index): Likewise.
1963 (Dwo_file::sized_read_unit_index): Likewise.
1964 (Dwo_file::copy_section): Likewise.
1965 (Dwo_file::add_unit_set): Likewise.
1966 (Dwp_output_file::add_output_section): Likewise.
1967 (Dwp_output_file::add_contribution): Likewise.
1968 (Dwp_output_file::Dwp_index::find_or_add): Use row index to check
1969 for empty slot.
1970 (Dwp_output_file::Dwp_index::enter_set): Add support for v2 package
1971 file format.
1972 (Dwp_output_file::Dwp_index::grow): Use row index to check for empty
1973 slot.
1974 (Dwp_output_file::initialize): Remove unused function.
1975 (Dwp_output_file::finalize): Add support for v2 package file format.
1976 (Dwp_output_file::write_index): Likewise.
1977 * gdb-index.cc (Gdb_index_info_reader::visit_type_unit): Adjust
1978 function prototype.
1979
a68a081d
CC
19802013-03-01 Cary Coutant <ccoutant@google.com>
1981
1982 * dwarf_reader.cc (Dwarf_info_reader::check_buffer): Move
1983 function into class definition in header file.
1984 (Dwarf_info_reader::warn_corrupt_debug_section): New function.
1985 * dwarf_reader.h (Dwarf_info_reader::warn_corrupt_debug_section):
1986 New function.
1987 (Dwarf_info_reader::check_buffer): Move here from .cc file.
1988
9d5781f8
AM
19892013-02-28 Alan Modra <amodra@gmail.com>
1990
1991 * target.h (Target::plt_fde_location, do_plt_fde_location): Declare.
1992 * target.cc (Target::do_plt_fde_location): New function.
1993 * ehframe.h (class FDE): Add post_map field to u_.from_linker,
1994 accessor function, and constructor param.
1995 (struct Post_fde, Post_fdes): Declare.
1996 (Cie::write): Add post_fdes param.
1997 * ehframe.cc (Fde::write): Use plt_fde_location.
1998 (struct Post_fde): Define.
1999 (Cie::write): Stash FDEs added post merge mapping.
2000 (Eh_frame::add_ehframe_for_plt): Assert no new CIEs after mapping.
2001 Adjust Fde constructor call. Bump final_data_size_ for post map FDEs.
2002 (Eh_frame::do_sized_write): Arrange to write post map FDES after
2003 other FDEs.
2004 * powerpc.cc (Target_powerpc::do_plt_fde_location): New function.
2005 (Target_powerpc::has_glink): New function.
2006 (Target_powerpc::do_relax): Add eh_frame info for stubs.
2007 (struct Eh_cie, eh_frame_cie, glink_eh_frame_fde_64,
2008 glink_eh_frame_fde_32, default_fde): New data.
2009 (Stub_table::eh_frame_added_): New var.
2010 (Stub_table::find_long_branch_entry, stub_address, stub_offset):
2011 Make const.
2012 (Stub_table::add_eh_frame): New function.
2013 (Output_data_glink::add_eh_frame): New function.
2014 (Target_powerpc::make_glink_section): Call add_eh_frame.
2015
214383dd
ILT
20162013-02-15 Ian Lance Taylor <iant@google.com>
2017
2018 * options.h (DEFINE_uint64_alias): Define.
2019 (class General_options): Add -Ttext-segment as an alias for
2020 -Ttext.
2021
91c2b899
AM
20222013-02-15 Alan Modra <amodra@gmail.com>
2023
2024 * powerpc.cc (Stub_table::plt_off): New function, extracted from..
2025 (Stub_table::do_write): ..here, two places.
2026 (Stub_table::plt_call_size): Use it here too.
2027
20e2a8aa
ILT
20282013-02-11 Ian Lance Taylor <iant@google.com>
2029
2030 * descriptors.cc (Descriptors::close_all): New function.
2031 * descriptors.h (class Descriptors): Declare close_all.
2032 (close_all_descriptors): New inline function.
2033 * plugin.cc: Include "descriptors.h".
2034 (Plugin_manager::cleanup): Call close_all_descriptors.
2035
8952bc69
AM
20362013-02-06 Alan Modra <amodra@gmail.com>
2037
2038 * README: Update coding style link.
2039
29bd8b6b
CC
20402013-01-28 Cary Coutant <ccoutant@google.com>
2041
a4034750
AM
2042 * dwp.cc (File_list): New typedef.
2043 (Dwo_name_info_reader): New class.
2044 (Dwo_id_info_reader::Dwo_id_info_reader): Remove unused parameters.
2045 (Dwo_id_info_reader::visit_top_die): Remove unused member function.
2046 (Dwo_file::~Dwo_file): Delete input_file_ after obj_.
2047 (Dwo_file::read_executable): New function.
2048 (Dwo_file::read): Move common setup code to ...
2049 (Dwo_file::make_object): ... here.
2050 (dwp_options): Add --exec/-e.
2051 (usage): Likewise.
2052 (main): Likewise.
29bd8b6b 2053
c6ac678d
ST
20542013-01-24 Sriraman Tallam <tmsriram@google.com>
2055
2056 * layout.cc (Layout::layout): Check for option text_reorder.
2057 (Layout::make_output_section): Ditto.
2058 * options.h (text_reorder): New option.
2059 * output.cc (Input_section_sort_compare): Remove special ordering
2060 of section names.
2061 (Output_section::
2062 Input_section_sort_section_name_special_ordering_compare::
2063 operator()): New function.
2064 (Output_section::sort_attached_input_sections): Use new sort function
2065 for .text.
2066 * output.h (Input_section_sort_section_name_special_ordering_compare):
2067 New struct.
2068 * testsuite/Makefile.am (text_section_grouping): Test option
2069 --no-text-reorder
2070 * testsuite/Makefile.in: Regenerate.
2071 * testsuite/text_section_grouping.sh: Check order of functions without
2072 default text reordering.
2073
50701cc1
MF
20742013-01-18 Mike Frysinger <vapier@gentoo.org>
2075
2076 * options.h (General_options): Change default to true for new_dtags.
2077
b1b00fcc
MF
20782013-01-18 Mike Frysinger <vapier@gentoo.org>
2079
2080 * layout.cc (Layout::finish_dynamic_section): Only add DT_RPATH
2081 when enable_new_dtags is false. Only add DT_RUNPATH when
2082 enable_new_dtags is true.
2083
ec5b8187
AM
20842013-01-17 Serge Pavlov <serge.v.pavlov@gmail.com>
2085
2086 * powerpc.cc (Stub_table::find_plt_call_entry): Make types
2087 used in declaration and definition consistent.
2088 (Target_powerpc::symval_for_branch): Ditto.
2089
a880d4c4
ST
20902013-01-16 Sriraman Tallam <tmsriram@google.com>
2091
2092 * testsuite/plugin_final_layout.cc: Fix comment.
2093
7c381248
ST
20942013-01-16 Sriraman Tallam <tmsriram@google.com>
2095
2096 * layout.cc (Layout::layout): Do not do default sorting for
2097 text sections when section ordering is specified.
2098 (make_output_section): Ditto.
2099 * testsuite/plugin_final_layout.cc: Name the function sections
2100 to catch reordering issues.
2101
e2458743
AM
21022013-01-15 Alan Modra <amodra@gmail.com>
2103
2104 * powerpc.cc (Target_powerpc::do_relax): Default shared libs to
2105 plt-thread-safe.
2106
431ed302
AM
21072013-01-15 Alan Modra <amodra@gmail.com>
2108
2109 * testsuite/Makefile.am (final_layout_script.lds): Handle .got section.
2110 * testsuite/Makefile.in: Regenerate.
2111
0ec6429b
AM
21122013-01-14 Alan Modra <amodra@gmail.com>
2113
2114 * testsuite/Makefile.am (MOSTLYCLEANFILES): Add various output files.
2115 * testsuite/Makefile.in: Regenerate.
2116
0bf402d5
ILT
21172013-01-11 Pavel Chupin <pavel.v.chupin@intel.com>
2118
36af3926 2119 PR bfd/14430
0bf402d5
ILT
2120 Fix mingw gold build with plugins enabled
2121 * Makefile.am: Replace -ldl with @DLOPEN_LIBS@.
2122 * configure.ac: Export DLOPEN_LIBS and add headers check.
2123 * plugin.cc: Handle non-dlfcn case.
2124 * Makefile.in: Regenerate.
2125 * config.in: Regenerate.
2126 * configure: Regenerate.
2127 * testsuite/Makefile.in: Regenerate.
2128
9e9143bc
ST
21292013-01-09 Sriraman Tallam <tmsriram@google.com>
2130
2131 * output.h (sort_attached_input_sections): Change to be public.
2132 * script-sections.cc
2133 (Output_section_definition::set_section_addresses): Sort
2134 attached input sections according to section order before linker
2135 script assigns section addresses.
2136 (Orphan_output_section::set_section_addresses): Sort
2137 attached input sections according to section order before linker
2138 script assigns section addresses.
2139 * Makefile.am (final_layout.sh): Use a simple linker script to
2140 check if section ordering still works.
2141 * Makefile.in: Regenerate.
2142
679af368
ILT
21432013-01-09 Ben Cheng <bccheng@google.com>
2144
2145 * arm.cc (Target_arm::attributes_accept_div): New function.
2146 (Target_arm::attributes_forbid_div): New function.
2147 (Target_arm::merge_object_attributes): Merge the Tag_DIV_use
2148 attribute using the same new functions as what bfd/elf32_arm.c
2149 does.
2150
3136a00e
CC
21512013-01-07 Cary Coutant <ccoutant@google.com>
2152
2153 PR gold/14993
2154 * output.cc (Output_section::add_input_section): For incremental
2155 updates, don't track input sections that are allocated from patch
2156 space.
2157
f2a6224b
L
21582013-01-07 H.J. Lu <hongjiu.lu@intel.com>
2159 Ian Lance Taylor <iant@google.com>
2160
2161 PR gold/14897
2162 * configure.ac (--enable-ld): Removed.
2163 (install_as_default): Set to yes only for --enable-gold=default
2164 or --disable-ld.
2165 * configure: Regenerated.
2166
4f46f626
L
21672013-01-07 H.J. Lu <hongjiu.lu@intel.com>
2168
2169 * options.h (General_options): Add -fuse-ld= for GCC linker
2170 option compatibility.
2171
26e4ef59
CC
21722013-01-04 Cary Coutant <ccoutant@google.com>
2173
2174 * configure.ac: Fix typo restoring CXXFLAGS.
2175 * configure: Regenerate.
2176
3d587466
CC
21772013-01-04 Cary Coutant <ccoutant@google.com>
2178
4f46f626
L
2179 * testsuite/Makefile.am (CXXLINK_S): New macro.
2180 (debug_msg_so.err, debug_msg_ndebug.err): Use CXXLINK_S.
2181 * testsuite/Makefile.in: Regenerate.
3d587466 2182
44db6695
L
21832013-01-02 H.J. Lu <hongjiu.lu@intel.com>
2184
2185 * version.cc (print_version): Update copyright year to 2013.
2186
edcac0c1
ILT
21872012-12-20 Ian Lance Taylor <iant@google.com>
2188
2189 * layout.cc (Layout::special_ordering_of_input_section): New
2190 function.
2191 (Layout::layout): If input section requires special ordering, must
2192 sort input sections.
2193 (Layout::make_output_section): May sort .text input sections.
2194 (Layout::is_section_name_prefix_grouped): Remove.
2195 * layout.h (class Layout): Declare
2196 special_ordering_of_input_section. Don't declare
2197 is_section_name_prefix_grouped.
2198 * output.cc (Output_section::add_input_section): Revert last
2199 change.
2200 (Output_section::Input_section_sort::match_file_name): Don't crash
2201 if called on output section data.
2202 (Output_section::Input_section_sort_compare): Sort based on
2203 special ordering.
2204 (Output_section::Input_section_sort_section_order_index_compare):
2205 Revert last patch.
2206 (Output_section::sort_attached_input_sections): Likewise.
2207
28f2a4ac
ST
22082012-12-18 Sriraman Tallam <tmsriram@google.com>
2209
edcac0c1 2210 * layout.cc (Layout::is_section_name_prefix_grouped): New function.
28f2a4ac
ST
2211 * layout.h (Layout::is_section_name_prefix_grouped): New function.
2212 * output.cc (Output_section::add_input_section): Check if section
2213 name contains special prefix. Keep input sections to sort such
2214 sections.
2215 (Output_section::Input_section_sort_section_order_index_compare
2216 ::operator()): Group sections according to prefixes.
edcac0c1
ILT
2217 (Output_section::sort_attached_input_sections): Add condition to
2218 Input_section_entry constructor call.
28f2a4ac
ST
2219 * testsuite/Makefile.am (text_section_grouping): New test.
2220 * testsuite/Makefile.in: Regenerate.
2221 * testsuite/text_section_grouping.cc: New file.
2222 * testsuite/text_section_grouping.sh: New file.
2223
5bf135a7
NC
22242012-12-17 Nick Clifton <nickc@redhat.com>
2225
2226 * Makefile.am: Add copyright notice.
2227 * NEWS: Likewise.
2228 * README: Likewise.
2229 * configure.ac: Likewise.
2230 * ftruncate.c: Likewise.
2231 * Makefile.in: Regenerate.
2232
59965708
CC
22332012-12-14 Cary Coutant <ccoutant@google.com>
2234
a4034750
AM
2235 * testsuite/Makefile.am (exception_separate_shared_12_test): Add
2236 --no-as-needed flag.
2237 (exception_separate_shared_12_test): Likewise.
2238 (incremental_copy_test): Likewise.
2239 * testsuite/Makefile.in: Regenerate.
59965708 2240
2a77e2ab
CC
22412012-12-14 Cary Coutant <ccoutant@google.com>
2242
2243 * dwp.cc (Dwp_output_file::add_cu_set): Check for duplicate CUs.
2244 (Dwp_output_file::Dwp_index::enter_set): Add assert.
2245
e3deeb9c
AM
22462012-12-12 Alan Modra <amodra@gmail.com>
2247
2248 * powerpc.cc (class Track_tls): New.
2249 (class Relocate, class Scan): Inherit Track_tls.
2250 (Target_powerpc::Scan::local, global): Track tls optimization
2251 and avoid creating plt entry for __tls_get_addr if all uses
2252 are optimized away.
2253 (Target_powerpc::Relocate::relocate): Update to use Track_tls.
2254
d8f5a274
AM
22552012-12-12 Alan Modra <amodra@gmail.com>
2256
2257 * options.h (General_options): Add --toc-sort/--no-toc-sort.
2258 Replace no_toc_optimize with toc_optimize.
2259 * output.h (Output_section::input_sections): Provide non-const variant.
2260 * powerpc.cc (Powerpc_relobj::has_small_toc_reloc_,
2261 set_has_small_toc_reloc, has_small_toc_reloc): New variable and
2262 accessors.
2263 (Target_powerpc::Scan::local, global): Call set_has_small_toc_reloc.
2264 (class Sort_toc_sections): New.
2265 (Target_powerpc::do_finalize_sections): Sort toc sections.
2266 (Target_powerpc::Relocate::relocate): Update toc_optimize test.
2267
4c8a1de1
RM
22682012-12-10 Roland McGrath <mcgrathr@google.com>
2269
2270 * testsuite/binary_unittest.cc (read_all): New function.
2271 (Sized_binary_test): Use it instead of ::read.
2272 * fileread.cc (do_read): Don't assume pread always reads the whole
2273 amount in a single call.
2274
edc27beb
AM
22752012-12-10 Alan Modra <amodra@gmail.com>
2276
2277 * powerpc.cc (Target_selector_powerpc::Target_selector_powerpc):
2278 Set EM_PPC64 or EM_PPC here.
2279 (Target_selector_powerpc::do_recognize): Delete.
2280
906b9150
AM
22812012-12-10 Alan Modra <amodra@gmail.com>
2282
2283 * powerpc.cc (Powerpc_relobj::Powerpc_relobj): Init has14_ and
2284 stub_table_.
2285 (Target_powerpc::Branch_info::make_stub): Don't omit addend.
2286
418c15ae
RM
22872012-12-07 Roland McGrath <mcgrathr@google.com>
2288
2289 * testsuite/binary_unittest.cc (Sized_binary_test):
2290 Use open_descriptor rather than ::open.
2291
decdd3bc
AM
22922012-12-07 Alan Modra <amodra@gmail.com>
2293
2294 * powerpc.cc (Stub_table::do_write): Delete redundant Address
2295 typedef and invalid_address constant.
2296 (Output_data_glink, Stub_table, Target_powerpc): Explicitly
2297 instantiate constants.
2298
db399005
ILT
22992012-12-06 Roland McGrath <mcgrathr@google.com>
2300
2301 * configure.ac (HAVE_ZLIB): Use AM_ZLIB instead of AC_SEARCH_LIBS.
2302 Use $ac_cv_header_zlib_h = yes as the condition in AM_CONDITIONAL.
2303 * aclocal.m4: Regenerate.
2304 * configure: Regenerate.
2305 * Makefile.in: Regenerate.
2306 * testsuite/Makefile.in: Regenerate.
2307
aba6bc71
AM
23082012-12-07 Alan Modra <amodra@gmail.com>
2309
2310 * options.h (General_options): Add no_toc_optimize.
2311 * powerpc.cc (ok_lo_toc_insn): New function.
2312 (Target_powerpc::Relocate::relocate): Optimize toc access sequences.
2313
9e69ed50
AM
23142012-12-06 Alan Modra <amodra@gmail.com>
2315
2316 * options.h (General_options): Add plt_align, plt_static_chain,
2317 plt_thread_safe. Update stub_group_size help text.
2318 * powerpc.cc (Target_powerpc::plt_thread_safe): New access function
2319 for new plt_thread_safe_ var.
2320 (use_plt_offset): Correct comments.
2321 (Target_powerpc::do_relax): Look for thread creation symbols to
2322 determine default plt_thread_safe value. Clear plt call stubs
2323 as well as branch stubs each iteration.
2324 (add_2_2_11, add_12_12_11, bnectr_p4, cmpldi_2_0, xor_11_11_11): New
2325 insn constants.
2326 (l, hi, ha, write_insn): Move earlier.
2327 (Stub_table): Delete prev_size, add last_plt_size and last_branch_size.
2328 (Stub_table::clear_stubs): Rename from clear_long_branch_stubs, clear
2329 plt stubs too.
2330 (Stub_table::update_size): Adjust.
2331 (Stub_table::prev_size, set_prev_size): Delete.
2332 (Stub_table::stub_align): Let --plt-align affect result.
2333 (Stub_table::plt_call_size): Calculate sizes for various stubs.
2334 (Stub_table::branch_stub_size): Use last_plt_size in address calc.
2335 (Stub_table::add_plt_call_stub): Pass iterator to plt_call_size.
2336 (Stub_table::do_write): Support more stub variants.
2337
f43ba157
AM
23382012-12-04 Alan Modra <amodra@gmail.com>
2339
2340 * powerpc.cc (Powerpc_relobj::do_scan_relocs): Delete.
2341 (Target_powerpc::do_define_standard_symbols): New function.
2342
34171bc5
AM
23432012-12-03 Alan Modra <amodra@gmail.com>
2344
2345 * output.h: Formatting, whitespace.
2346
dc9589e9 23472012-12-03 Alan Modra <amodra@gmail.com>
ec661b9d
AM
2348
2349 * layout.h (Layout::get_executable_sections): Declare.
2350 * layout.cc (Layout::get_executable_sections): New function.
2351 * arm.cc (Target_arm::group_sections): Use it.
2352 (Arm_output_section::group_sections): Delete now redundant test.
2353 * output.cc (Output_reloc::Output_reloc): Add is_relative.
2354 param to handle relative relocs.
2355 * output.h (Output_reloc::Output_reloc <absolute reloc>): Likewise.
2356 (Output_data_reloc::add_absolute): Adjust.
2357 (Output_data_reloc::add_relative): New function.
2358 (Output_data::reset_data_size): New function.
2359 (Output_relaxed_input_section::set_relobj, set_shndx): New functions.
2360 (Output_section::set_addralign): New function.
2361 (Output_section::checkpoint_set_addralign): New function.
2362 (Output_section::clear_section_offsets_need_adjustment): New function.
2363 (Output_section::input_sections): Make public.
2364 * powerpc.cc (class Output_data_brlt_powerpc): New.
2365 (class Stub_table, class Stub_control): New.
2366 (Powerpc_relobj::has14_, set_has_14bit_branch, has_14bit_branch,
2367 stub_table_, set_stub_table, stub_table): New vectors and accessor
2368 functions.
2369 (Target_powerpc::do_may_relax, do_relax, push_branch,
2370 new_stub_table, stub_tables, brlt_section, group_sections,
2371 add_branch_lookup_table, find_branch_lookup_table,
2372 write_branch_lookup_table, make_brlt_section): New functions.
2373 (Target_powerpc::struct Sort_sections, class Branch_info): New.
2374 (Target_powerpc::brlt_section_, stub_tables_, branch_lookup_table_,
2375 branch_info_): New vars.
2376 (Target_powerpc::make_plt_entry, make_local_ifunc_plt_entry): Don't
2377 make call stubs here.
2378 (Output_data_glink): Remove all call stub handling from this class.
2379 (Target_powerpc::Scan::local, global): Save interesting branch
2380 relocs and relocs for ifunc. Adjust calls to plt entry functions.
2381 (Target_powerpc::do_finalize_sections): Only make reg save/restore
2382 functions on final link.
2383 (Target_powerpc::Relocate::relocate): Adjust lookup of call stubs.
2384 Handle long branch destinations too.
2385 (Target_powerpc::do_dynsym_value, do_plt_address_for_global,
2386 do_plt_address_for_local): Adjust lookup of plt call stubs.
2387
627b30b7
AM
23882012-11-30 Alan Modra <amodra@gmail.com>
2389
2390 * powerpc.c (Target_powerpc::Scan::global): Don't emit relative
2391 relocs against protected symbols when building 32-bit shared libs.
2392
40b469d7
AM
23932012-11-30 Alan Modra <amodra@gmail.com>
2394
2395 * powerpc.cc (Target_powerpc::make_plt_section): Add symtab
2396 param. Call got_section() to make .got. Update all callers
2397 and their callers and so on.
2398
bb66a627
AM
23992012-11-30 Alan Modra <amodra@gmail.com>
2400
2401 * powerpc.cc (Powerpc_relobj::do_scan_relocs): Make STB_LOCAL
2402 _GLOBAL_OFFSET_TABLE_ rather than STB_WEAK.
2403 (Output_data_got_powerpc::make_header): Update _GLOBAL_OFFSET_TABLE_
2404 value if it already exists.
2405
d2cf1c6c
L
24062012-11-19 H.J. Lu <hongjiu.lu@intel.com>
2407
2408 PR gold/14858
2409 * x86_64.cc (Relocate::tls_ld_to_le): Support x32.
2410
edccdf7c
RM
24112012-11-14 Roland McGrath <mcgrathr@google.com>
2412
2413 * arm.cc (Output_data_plt_arm_nacl::first_plt_entry): Use bic rather
2414 than bfc instruction for data sandboxing.
2415
6febeb74
AM
24162012-11-08 Alan Modra <amodra@gmail.com>
2417
2418 * po/POTFILES.in: Regenerate.
2419
0a6f1bf2
AM
24202012-11-05 Alan Modra <amodra@gmail.com>
2421
2422 * configure.ac: Apply 2012-09-10 change to config.in here.
2423 * configure: Regenerate.
2424
26a4e9cb
AM
24252012-11-05 Alan Modra <amodra@gmail.com>
2426
2427 * powerpc.cc (Powerpc_relobj): Delete "Offset" typedef.
2428 (struct Opd_ent): Use "Address" rather than "Offset".
2429 (Output_data_got_powerpc::got_base_offset): Return Valtype.
2430 (Target_powerpc::got_section): Make public.
2431 (Target_powerpc::scan_relocs): Move code setting symbols..
2432 (Powerpc_relobj::do_scan_relocs): ..to here, new function.
2433 Create _SDA_BASE_ only when referenced.
2434
cc928013
RM
24352012-11-02 Roland McGrath <mcgrathr@google.com>
2436
2437 * i386.cc (Target_i386::relocate_relocs): Remove extraneous typename
2438 from last change.
2439
50ed5eb1
RM
24402012-11-01 Roland McGrath <mcgrathr@google.com>
2441
62fe925a
RM
2442 * target.h (Sized_target::relocate_relocs): Use Elf_Off
2443 for offset_in_output_section parameter.
2444 (Sized_target::relocate_special_relocatable): Likewise.
2445 * arm.cc (Target_arm::relocate_relocs): Likewise.
2446 (Target_arm::relocate_special_relocatable): Likewise.
2447 * i386.cc (Target_i386::relocate_relocs): Likewise.
2448 * powerpc.cc (Target_powerpc::relocate_relocs): Likewise.
2449 * sparc.cc (Target_sparc::relocate_relocs): Likewise.
2450 * target-reloc.h (relocate_relocs): Likewise.
2451 * testsuite/testfile.cc (Target_test): Likewise.
2452 * tilegx.cc (Target_tilegx::relocate_relocs): Likewise.
2453 * x86_64.cc (Target_x86_64::relocate_relocs): Likewise.
2454
2455 * system.h: Move inclusion of <clocale> to after <libintl.h> in
2456 [ENABLE_NLS] section, and separately at top of [!ENABLE_NLS] section.
2457
2458 * descriptors.cc (set_close_on_exec): Add ATTRIBUTE_UNUSED to the
2459 parameter, which is unused in the [!F_SETFD] case.
2460
50ed5eb1
RM
2461 * dwarf_reader.cc (Sized_elf_reloc_mapper::symbol_section): Cast
2462 SYMNDX to off_t before comparing it to this->data_size().
2463 * output.cc (Output_symtab_xindex::endian_do_write): Likewise.
2464 * incremental.cc (Output_section_incremental_inputs::do_write):
2465 Cast GLOBAL_SYM_COUNT to off_t before comparing it to SYMTAB_SIZE.
2466
2cadc0bf
RM
2467 * nacl.cc: Include "libiberty.h" for vasprintf declaration.
2468
3bfcb652
NC
24692012-10-30 Steve McIntyre <steve.mcintyre@linaro.org>
2470
2471 * gold.cc (Target_arm::do_adjust_elf_header): Add the
2472 hard-float/soft-float ABI flag as appropriate for ET_DYN/ET_EXEC
2473 in EABI_VER5.
2474
c1a8d56e
CC
24752012-10-29 Cary Coutant <ccoutant@google.com>
2476
2477 * dwp.cc (usage): Add file and exit status parameters;
2478 add --help and --version options.
2479 (print_version): New function.
2480 (main): Add --help and --version options.
2481
b2490a7b
L
24822012-10-25 H.J. Lu <hongjiu.lu@intel.com>
2483
2484 * testsuite/Makefile.am (MOSTLYCLEANFILES): Add
2485 final_layout_sequence.txt.
2486 * testsuite/Makefile.in: Regenerated.
2487
aa543512
L
24882012-10-25 H.J. Lu <hongjiu.lu@intel.com>
2489
2490 * testsuite/Makefile.am (COMPILE1): New variable. Renamed from
2491 COMPILE generated by automake.
2492 (LINK1): Likewise.
2493 (CXXCOMPILE1): Likewise.
2494 (CXXLINK1): Likewise.
2495 (COMPILE): Strip out -Wp,-D_FORTIFY_SOURCE= from COMPILE1.
2496 (LINK): Likewise.
2497 (CXXCOMPILE): Likewise.
2498 (CXXLINK): Likewise.
2499 * testsuite/Makefile.in: Regenerated.
2500
d361fafb
L
25012012-10-25 H.J. Lu <hongjiu.lu@intel.com>
2502
2503 * dwp.cc (Dwo_file::record_target_info): Issue a fatal error
2504 on bad fwrite return.
2505
598c7410
L
25062012-10-25 H.J. Lu <hongjiu.lu@intel.com>
2507
2508 * dwp.cc (Dwo_file::remap_str_offset): Use section_offset_type
2509 on val.
2510
35c813e2
CC
25112012-10-23 Cary Coutant <ccoutant@google.com>
2512
2513 * testsuite/Makefile.am (TEST_OBJCOPY): New macro.
2514 * testsuite/Makefile.in: Regenerate.
2515 * testsuite/dwp_test.h: New source file.
2516 * testsuite/dwp_test_1.cc: New source file.
2517 * testsuite/dwp_test_1.s: New source file.
2518 * testsuite/dwp_test_1.sh: New source file.
2519 * testsuite/dwp_test_1b.cc: New source file.
2520 * testsuite/dwp_test_1b.s: New source file.
2521 * testsuite/dwp_test_2.cc: New source file.
2522 * testsuite/dwp_test_2.s: New source file.
2523 * testsuite/dwp_test_2.sh: New source file.
2524 * testsuite/dwp_test_main.cc: New source file.
2525 * testsuite/dwp_test_main.s: New source file.
2526
77429909
CC
25272012-10-23 Cary Coutant <ccoutant@google.com>
2528
2529 * dwp.h: New header file.
2530 * dwp.cc: New source file.
2531 * gold.h: Move shared declarations to system.h.
2532 * system.h: New header file.
2533 * Makefile.am: Add dwp.
2534 * Makefile.in: Regenerate.
2535
ed5d6712
CC
25362012-10-23 Cary Coutant <ccoutant@google.com>
2537
2538 * dwarf_reader.cc (Dwarf_ranges_table::read_range_list): Call
2539 Dwarf_info_reader::read_from_pointer.
2540 (Dwarf_pubnames_table::read_header): Likewise.
2541 (Dwarf_pubnames_table::next_name): Likewise.
2542 (Dwarf_die::read_attributes): Likewise.
2543 (Dwarf_die::skip_attributes): Likewise.
2544 (Dwarf_info_reader::read_from_pointer): New function template.
2545 * dwarf_reader.h (Dwarf_ranges_table): Add dwinfo_.
2546 (Dwarf_pubnames_table): Likewise.
2547 (Dwarf_info_reader::read_from_pointer): New function template.
2548 * gdb-index.cc (Gdb_index_info_reader): Adjust call to
2549 Dwarf_pubnames_table ctor.
2550
8787852d
CC
25512012-10-23 Cary Coutant <ccoutant@google.com>
2552
2553 * dwarf_reader.cc (Dwarf_info_reader::do_parse): Use stored
2554 abbrev_shndx.
2555 * dwarf_reader.h (Dwarf_info_reader::Dwarf_info_reader): Initialize
2556 abbrev_shndx_.
2557 (Dwarf_info_reader::set_abbrev_shndx): New method.
2558 (Dwarf_info_reader::abbrev_shndx_): New data member.
2559
9fc236f3
CC
25602012-10-23 Cary Coutant <ccoutant@google.com>
2561
2562 * dwarf_reader.cc (make_elf_reloc_mapper): Check size and endianness
2563 from object, not parameters.
2564 (Dwarf_info_reader::parse): Likewise.
2565 * object.h (Relobj::elfsize, Relobj::is_big_endian): New methods.
2566 (Relobj::do_elfsize, Relobj::do_is_big_endian): New methods.
2567 (Sized_relobj::do_elfsize, Sized_relobj::do_is_big_endian): New
2568 methods.
2569
effe8365
CC
25702012-10-23 Cary Coutant <ccoutant@google.com>
2571
2572 * fileread.cc (Input_file::Input_file): New constructor.
2573 * fileread.h (class Input_file): Add new constructor.
2574
1698990d
AM
25752012-10-18 Alan Modra <amodra@gmail.com>
2576
2577 PR gold/14727
2578 * object.cc (Relobj::is_section_name_included): Also match
2579 .sdata personality section.
2580
168a4726
AM
25812012-10-18 Alan Modra <amodra@gmail.com>
2582
2583 * target-reloc.h (class Default_comdat_behavior): New, package up..
2584 (get_comdat_behaviour): ..this.
2585 (relocate_section): Add Relocate_comdat_behavior template arg,
2586 adjust code to suit.
2587 * arm.cc (Target_arm::relocate_section): Adjust to suit.
2588 (Target_arm::scan_reloc_section): Likewise.
2589 * i386.cc (Target_i386::relocate_section): Likewise.
2590 * sparc.cc (Target_sparc::relocate_section): Likewise.
2591 * tilegx.cc (Target_tilegx::relocate_section): Likewise.
2592 * x86_64.cc (Target_x86_64::relocate_section): Likewise.
2593 * powerpc.cc (class Relocate_comdat_behavior): New.
2594 (Target_powerpc::relocate_section): Don't zap opd relocs. Supply
2595 gold::relocate_section with new template arg.
2596
acc276d8
AM
25972012-10-18 Alan Modra <amodra@gmail.com>
2598
2599 * powerpc.cc (Target_powerpc::Scan::local, global): Always emit
2600 dynamic relocs for GOT_TPREL got entries, without symbol if
2601 resolving locally.
2602 (Target_powerpc::do_gc_add_reference): Don't add for dynamic objects.
2603 (Target_powerpc::scan_relocs): Define _GLOBAL_OFFSET_TABLE_ early.
2604 (Target_powerpc::Relocate:relocate): REL32 reloc may be unaligned.
2605
e10f9870
AM
26062012-10-17 Alan Modra <amodra@gmail.com>
2607
2608 PR gold/14726
2609 * gold.cc (queue_middle_tasks): Call gc_mark_symbol on _init and _fini.
2610
ae034989
ST
26112012-10-16 Sriraman Tallam <tmsriram@google.com>
2612
2613 * layout.cc (Layout::include_section): Keep sections marked
2614 SHF_EXCLUDE when doing relocatable links.
2615
f3a0ed29
AM
26162012-10-16 Alan Modra <amodra@gmail.com>
2617
2618 * powerpc.cc (Target_powerpc::define_save_restore_funcs): New func.
2619 (Target_powerpc::do_finalize_sections): Call it.
2620 (Output_data_save_res): New class and supporting functions.
2621 (Target_powerpc::symval_for_branch): Only look up .opd entry for
2622 normal symbols defined in object files.
2623
c6de8ed4
AM
26242012-10-12 Alan Modra <amodra@gmail.com>
2625
2626 * powerpc.cc (Powerpc_relobj::add_gc_mark, process_gc_mark): New.
2627 (struct Opd_ent): Make "discard" a bit field. Add "gc_mark".
2628 (Target_powerpc::do_gc_mark_symbol): Delay marking function code
2629 section if scan_opd_relocs not yet called.
2630 (Target_powerpc::gc_process_relocs): Call process_gc_mark.
2631
03e25981
AM
26322012-10-12 Alan Modra <amodra@gmail.com>
2633
2634 * powerpc.cc (Output_data_plt_powerpc::add_entry, add_ifunc_entry,
2635 add_local_ifunc_entry): Revert last change.
2636 (Target_powerpc::make_plt_entry, make_local_ifunc_plt_entry): Likewise.
2637
c9824451
AM
26382012-10-05 Alan Modra <amodra@gmail.com>
2639
2640 * powerpc.cc (Target_powerpc::do_plt_address_for_local,
2641 do_plt_address_for_global): New functions.
2642 (Output_data_got_powerpc::do_write): Don't segfault when linking
2643 statically.
2644 (Output_data_plt_powerpc::add_entry, add_ifunc_entry,
2645 add_local_ifunc_entry): Return true on adding entry..
2646 (Target_powerpc::make_plt_entry): ..use to avoid unnecessary
2647 glink->add_entry call. Remove unused symtab param. Adjust calls.
2648 (Target_powerpc::make_local_ifunc_plt_entry): Likewise.
2649 (Target_powerpc::make_iplt_section): Remove symtab param. Don't
2650 set up symbols here.
2651 (Target_powerpc::do_finalize_sections): Instead set up __rela_iplt
2652 syms here. Do so even when no .iplt. Don't segfault when linking
2653 statically.
2654 (Output_data_glink::add_entry, find_entry): Rearrange params. Add
2655 new variants without reloc param.
2656 (Glink_sym_ent::Glink_sym_ent): Likewise.
2657 (Target_powerpc::Scan::reloc_needs_plt_for_ifunc): Accept any
2658 reloc when refs will resolve to plt call stub.
2659 (Target_powerpc::Scan::local): Correct ifunc handling. Allow
2660 R_PPC_PLTREL24 to resolve locally.
2661 (Target_powerpc::Scan::global): Correct ifunc handling.
2662 (Target_powerpc::Relocate::relocate): Correct local sym glink
2663 lookup. Don't destroy "value" when we have a plt call stub,
2664 and when checking plt call validity.
2665 (Target_powerpc::do_dynsym_value): Simplify.
2666
19fec8c1
AM
26672012-10-05 Alan Modra <amodra@gmail.com>
2668
2669 * i386.cc (Output_data_plt_i386::address_for_global,
2670 address_for_local): Add plt offset to returned value. Adjust uses.
2671 * sparc.cc (Output_data_plt_sparc::address_for_global,
2672 address_for_local): Likewise.
2673 * tilegx.cc (Output_data_plt_tilegx::address_for_global,
2674 address_for_local): Likewise.
2675 * x86_64.cc (Output_data_plt_x86_64::address_for_global,
2676 address_for_local): Likewise.
2677 * target.h (Target::plt_address_for_global, plt_address_for_local):
2678 Update comment.
2679 * output.cc (Output_reloc::symbol_value): Don't add plt offset here.
2680 (Output_data_got::Got_entry::write): Nor here.
2681 * output.h: Comment fix.
2682
e867b647
WL
26832012-10-02 Jiong Wang <jiwang@tilera.com>
2684
2685 * tilegx.cc (Target_tilegx::do_finalize_sections): Adjust
2686 global_offset_table_ value for larget got.
2687 (Target_tilegx::Relocate::relocate): Handle adjusted got value.
2688
e5d5f5ed
AM
26892012-09-29 Alan Modra <amodra@gmail.com>
2690
2691 * powerpc.cc (Target_powerpc::iplt_): New output section.
2692 (Target_powerpc::iplt_section, make_iplt_section,
2693 reloc_needs_plt_for_ifunc, make_local_ifunc_plt_entry): New functions.
2694 (Target_powerpc::make_plt_entry): Handle ifunc syms.
2695 Target_powerpc::plt_entry_count): Count iplt entries too.
2696 (Output_data_plt_powerpc::Output_data_plt_powerpc): Don't create
2697 reloc section in constructor. New params.
2698 (Target_powerpc::make_plt_section): Create reloc section here instead.
2699 (Output_data_plt_powerpc::add_ifunc_entry, add_local_ifunc_entry): New
2700 functions.
2701 (Output_data_plt_powerpc::initial_plt_entry_size_, name_): New vars.
2702 (Output_data_glink::add_entry, find_entry): New functions to
2703 deal with local syms.
2704 (Glink_sym_ent): Add support for local syms.
2705 (Output_data_glink::do_write): Handle ifunc plt entries.
2706 (Target_powerpc::Scan::get_reference_flags): Handle more relocs.
2707 (Target_powerpc::Scan::local, global): Handle ifunc syms.
2708 (Target_powerpc::Relocate::relocate): Likewise.
2709 (Target_powerpc::do_dynsym_value): Use glink stub, not plt entry.
2710
ec4dbad3
AM
27112012-09-25 Alan Modra <amodra@gmail.com>
2712
2713 * object.h (Sized_relobj_file::adjust_local_symbol,
2714 do_adjust_local_symbol): New functions.
2715 * object.cc (Sized_relobj_file::do_count_local_symbols): Use the above.
2716 * powerpc.cc (Powerpc_relobj::do_adjust_local_symbol): New function.
2717 (Powerpc_relobj::scan_opd_relocs): Warn on unexpected opd relocs
2718 and irregular opd entry spacing.
2719 (Powerpc_relobj::do_read_relocs): Add opd size checks.
2720 (Global_symbol_visitor_opd): New functor.
2721 (Target_powerpc::do_finalize_sections): Omit global symbols defined
2722 on deleted opd entries.
2723
5c0b3823
WL
27242012-09-15 Jiong Wang <jiwang@tilera.com>
2725
2726 * tilegx.cc: New file.
2727 * Makefile.am (TARGETSOURCES): Add tilegx.cc
2728 (ALL_TARGETOBJS): Add tilegx.$(OBJEXT)
2729 * configure.tgt: Add entries for tilegx*.
2730 * configure.ac: Likewise.
2731 * Makefile.in: Rebuild.
2732 * configure: Likewise.
2733 * testsuite/icf_safe_test.sh (arch_specific_safe_fold): Handle
2734 tilegx.
2735
bfdfa4cd
AM
27362012-09-13 Alan Modra <amodra@gmail.com>
2737
2738 * target-reloc.h (scan_relocs): Call scan.local for relocs
2739 against symbols in discarded sections. Pass is_discarded
2740 param.
2741 * arm.cc, * i386.cc, * sparc.cc, * x86_64.cc (Target_*::Scan::local):
2742 Add is_discarded param.
2743 * powerpc (Target_powerpc::Scan::local): Likewise. Use
2744 is_discarded to flag opd entry as discarded. Don't emit dyn
2745 relocs on such entries.
2746 (Target_powerpc::Scan::global): Similarly detect and handle
2747 such opd entries.
2748 (Powerpc_relobj): Replace opd_ent_shndx_ and opd_ent_off_ with
2749 opd_ent_. Update all uses.
2750 (Powerpc_relobj::get_opd_discard, set_opd_discard): New functions.
2751 (Target_powerpc::relocate_section): Zero out discarded opd
2752 entry relocs.
2753
d77a0555
ILT
27542012-09-12 Ian Lance Taylor <iant@google.com>
2755
2756 PR gold/14570
2757 * output.cc: Rename Output_data_got template parameter from size
2758 to got_size for all functions. Compile all variants of
2759 Output_data_got.
2760 (Output_data_got::Got_entry::write): Correct use of size for
2761 symbol value. Use local_is_tls rather than casting to
2762 Sized_relobj_file.
2763 * object.h (class Object): Add local_is_tls and do_local_is_tls.
2764 (class Sized_relobj_file): Add do_local_is_tls.
2765 * incremental.h (class Sized_relobj_incr): Add do_local_is_tls.
2766
815a1205
AM
27672012-09-11 Alan Modra <amodra@gmail.com>
2768
2769 PR gold/14566
2770 * layout.cc (Layout::set_segment_offsets): When using
2771 common-page-size alignment, ensure we are on a new max-page-size
2772 page.
2773 * output.cc (Output_segment::set_section_addresses): Use
2774 abi_pagesize, not common_pagesize for relro boundary.
2775 (Output_segment::set_offset): Likewise.
2776
bd73a62d
AM
27772012-09-11 Alan Modra <amodra@gmail.com>
2778
2779 * output.h (Output_data_got::add_global_tls, add_local_tls,
2780 add_local_tls_pair): New functions.
2781 (Output_data_got::add_local_pair_with_rel): Remove second
2782 reloc param. Expand comment.
2783 (Output_data_got::Got_entry): Rename use_plt_offset_ to
2784 use_plt_or_tls_offset_, similarly for constructor param.
2785 (Output_data_got::Got_entry::write): Add got_index param.
2786 * output.cc (Output_data_got::add_global_tls, add_local_tls,
2787 add_local_tls_pair): New functions.
2788 (Output_data_got::Got_entry::write): Handle tls symbols
2789 with use_plt_or_tls_offset_ set specially.
2790 (Output_data_got::add_local_pair_with_rel): Only one reloc.
2791 (Output_data_got::do_write): Replace iterator with index, pass
2792 index to entry write function.
2793 * target.h (Target::tls_offset_for_local, tls_offset_for_global,
2794 do_tls_offset_for_local, do_tls_offset_for_global): New functions.
2795 * arm.cc (Target_arm::Scan::local): Update add_local_pair_with_rel
2796 call.
2797 * i386.cc (Target_i386::Scan::local): Likewise.
2798 * sparc.cc (Target_sparc::Scan::local): Likewise.
2799 * x86_64.cc (Target_x86_64::Scan::local): Likewise.
2800 * powerpc.cc (Target_powerpc::do_tls_offset_for_local,
2801 do_tls_offset_for_global): New functions.
2802 (Target_powerpc::Scan::local): Correct TLS relocations and got
2803 entry values.
2804 (Target_powerpc::Scan::global): Don't emit unnecessary
2805 dynamic relocations on TLS GOT entries.
2806
00716ab1
AM
28072012-09-10 Matthias Klose <doko@ubuntu.com>
2808
2809 * config.in: Disable sanity check for kfreebsd.
2810
c891b3f9
SA
28112012-09-10 Sterling Augustine <saugustine@google.com>
2812
2813 * gdb-index.cc (Gdb_index::pubnames_read): New parameter.
2814 (Gdb_index::pubtypes_read): New parameter.
2815 (Gdb_index_info_reader::read_pubnames_and_pubtypes): Add parameters
2816 to calls.
2817 * gdb-index.h (Gdb_index): New fields pubnames_object_ and
2818 pubtypes_object_.
2819
e81fea4d
AM
28202012-09-09 Alan Modra <amodra@gmail.com>
2821
2822 * target.h (Target::gc_mark_symbol, do_gc_mark_symbol): New functions.
2823 (Sized_target::gc_add_reference, do_gc_add_reference): New functions.
2824 * gc.h (gc_process_relocs): Call target gc_add_reference.
2825 * gold.cc (queue_middle_tasks): Use gc_mark_symbol on start sym.
2826 * symtab.cc (Symbol_table::gc_mark_undef_symbols): Use gc_mark_symbol.
2827 (Symbol_table::gc_mark_symbol): Call target gc_mark_symbol. Remove
2828 unnecessary cast.
2829 * powerpc.cc (Powerpc_relobj::get_opd_ent): Rearrange parameters
2830 to cater for when we don't need code offset. Update use.
2831 (Powerpc_relobj::access_from_map_, opd_valid_): New vars.
2832 (Powerpc_relobj::access_from_map, add_reference, opd_valid,
2833 set_opd_valid): New functions.
2834 (Target_powerpc::do_gc_add_reference): New function.
2835 (Target_powerpc::gc_process_relocs): Call gc()->add_reference on
2836 stashed refs.
2837 (Target_powerpc::do_gc_mark_symbol): New function.
2838
d2d60eef
CC
28392012-09-06 Cary Coutant <ccoutant@google.com>
2840
2841 * dwarf_reader.cc (Dwarf_die::read_attributes): Add
2842 DW_FORM_GNU_addr_index and DW_FORM_GNU_str_index.
2843 (Dwarf_die::skip_attributes): Likewise.
2844 * object.cc (Read_symbols_data::~Read_symbols_data): Update comment.
2845 * testsuite/gdb_index_test.cc (inline_func_1): New function.
2846 (main): Call it.
2847 * testsuite/gdb_index_test_comm.sh: Check index for inline function.
2848
32ed4573
L
28492012-09-05 H.J. Lu <hongjiu.lu@intel.com>
2850
2851 * testsuite/script_test_3.t: Add .got.plt output section
2852 statement.
2853 * testsuite/script_test_4.t: Likewise.
2854
f4baf0d4
AM
28552012-09-05 Alan Modra <amodra@gmail.com>
2856
2857 * powerpc.cc (Powerpc_relocate_functions): Upcase enum values,
2858 update all uses and lose "enum" when using type.
2859
864a1b56
AM
28602012-09-05 Alan Modra <amodra@gmail.com>
2861
2862 * configure.ac (FN_PTRS_IN_SO_WITHOUT_PIC): False for powerpc.
2863 * configure: Regenerate.
2864 * testsuite/Makefile.am (final_layout.stdout): Pass --synthetic to nm.
2865 (plugin_final_layout.stdout): Likewise.
2866 (memory_test): Set page sizes to 0x1000.
2867 * testsuite/Makefile.in: Regenerate.
2868 * testsuite/discard_locals_test.sh: Add FIXME comment.
2869 * testsuite/justsyms_exec.c: Disable function test for powerpc64.
2870 * testsuite/pr14265.t: Add .got output section statement.
2871 * testsuite/script_test_2.t: Likewise.
2872 * testsuite/script_test_3.t: Likewise.
2873 * testsuite/script_test_4.t: Likewise.
2874 * testsuite/script_test_5.t: Likewise.
2875 * testsuite/script_test_6.t: Likewise.
2876 * testsuite/script_test_7.t: Likewise.
2877 * testsuite/script_test_9.t: Likewise.
2878
3ea0a085
AM
28792012-09-05 Alan Modra <amodra@gmail.com>
2880
2881 * powerpc.cc (Powerpc_relobj::get_opd_ent): Make const.
2882 (Powerpc_relocate_functions::Status): New typedef.
2883 (Target_powerpc::Scan::get_reference_flags): Handle more relocs.
2884 (Target_powerpc::Scan::local): Handle REL64.
2885 (Target_powerpc::Scan::global): Likewise, and dynamic relocs
2886 for REL32 and REL64.
2887 (Target_powerpc::symval_for_branch): New function, extracted from..
2888 (Target_powerpc::Relocate::relocate): ..here. Correct plt call
2889 checks. Report overflow errors.
2890
7404fe1b
AM
28912012-09-05 Alan Modra <amodra@gmail.com>
2892
2893 * object.h (Sized_relobj_file::emit_relocs): Delete.
2894 (Sized_relobj_file::emit_relocs_reltype): Delete.
2895 * reloc.cc (Sized_relobj_file::do_relocate_sections): Call target
2896 relocate_relocs for --emit-relocs.
2897 (Sized_relobj_file::emit_relocs, emit_relocs_reltype): Delete.
2898 * output.h: Update comment.
2899 (Output_segment::first_section): New function.
2900 (Output_segment::first_section_load_address): Use first_section.
2901 * output.cc (Output_segment::first_section): New function extracted..
2902 (Output_segment::first_section_load_address): ..from here. Delete.
2903 * target-reloc.h (relocate_for_relocatable): Rename to relocate_relocs.
2904 * target.h (Sized_target::relocate_for_relocatable): Likewise.
2905 * arm.cc (Target_arm::relocate_for_relocatable): Likewise, and
2906 adjust call to target.h function.
2907 * i386.cc (Target_i386): Likewise.
2908 * sparc.cc (Target_sparc): Likewise.
2909 * x86_64.cc (Target_x86_64): Likewise.
2910 * powerpc.cc (Target_powerpc): Likewise.
2911 (Target_powerpc::Scan::local, global): Handle R_POWERPC_TLS. Ensure
2912 first tls section has section symbol for optimised local dynamic
2913 output relocs.
2914 (Target_powerpc::Relocate::relocate): Correct local dynamic value.
2915 (Target_powerpc::relocate_relocs): Adjust relocs emitted for
2916 optimised tls code.
2917 * testsuite/testfile.cc (Target_test::relocate_for_relocatable):
2918 Rename to relocate_relocs. Update error message.
2919
957564c9
AS
29202012-09-04 Andreas Schwab <schwab@linux-m68k.org>
2921
2922 * powerpc.cc (do_make_elf_object): Allow ET_EXEC files with
2923 --just-symbols.
2924
dd93cd0a
AM
29252012-08-31 Alan Modra <amodra@gmail.com>
2926
2927 * powerpc.cc (Powerpc_relobj): Add and use Address typedef.
2928 (Powerpc_relobj::toc_base_offset): New stub function.
2929 (Target_powerpc): Add tp_offset, dtp_offset. Rename
2930 got_mod_index_offset to tlsld_got_offset. Update all refs.
2931 (Target_powerpc::Relocate::enum skip_tls): New.
2932 (Target_powerpc::call_tls_get_addr_): New var.
2933 (Target_powerpc::is_branch_reloc): Move to file scope.
2934 (Target_powerpc::relocate_tls, optimize_tls_reloc): Delete.
2935 (Target_powerpc::optimize_tls_gd, optimize_tls_ld, optimize_tls_ie):
2936 New functions.
2937 (Target_powerpc::enum Got_type): Delete old values, add new ones.
2938 (powerpc_info): Correct common_pagesize for ppc64.
2939 (at_tls_transform, needs_dynamic_reloc, use_plt_offset): New functions.
2940 (Powerpc_relocate_functions): Add overflow check enums and functions.
2941 Add non-shift version of rela, rela_ua. Delete all rel public
2942 functions. Delete addr16_lo. Add addr64, addr64_u, addr32,
2943 addr32_u, addr24, addr16_u, addr16_hi2, addr16_ha2, addr16_hi3,
2944 addr16_ha3, addr14 functions.
2945 (Output_data_got_powerpc::add_constant_pair): New function.
2946 (Output_data_got_powerpc::got_base_offset): Likewise.
2947 (Output_data_got_powerpc::do_write): Correct 64-bit got header.
2948 (instruction constants): Sort, add some more.
2949 (Output_data_glink::do_write): Add and use Address typedef. Use
2950 object->toc_base_offset() stub for 64-bit.
2951 (Target_powerpc::tlsld_got_offset): Use add_constant_pair.
2952 (Target_powerpc::Scan::get_reference_flags): Handle more relocs.
2953 (Target_powerpc::Scan::local, global): Emit relative dynamic reloc
2954 for R_PPC64_TOC. Handle more relocs. Generate got entries for TLS.
2955 Always treat .opd relocs as against locally defined symbol.
2956 Correct condition for RELATIVE relocs.
2957 (Target_powerpc::do_finalize_sections): Test for NULL sections.
2958 (Target_powerpc::Relocate::relocate): Use plt call stub as value
2959 for 32-bit syms with a plt entry. Correct ppc64 toc base
2960 calculations. Handle TLS relocs, and more. Add overflow
2961 checking and adjust for Powerpc_relocate_functions changes.
2962 (Target_powerpc::relocate_for_relocatable): Handle zero r_sym.
2963 Reinstate --emit-relocs code with FIXME.
2964
a1373b60
AM
29652012-08-30 Alan Modra <amodra@gmail.com>
2966
2967 * layout.cc (Layout::set_segment_offsets): Set p_align to
2968 abi_pagesize, not common_pagesize.
2969 (Layout::relaxation_loop_body): Similarly use abi_pagesize
2970 to determine whether file header can go in segment.
2971
703d02da
AM
29722012-08-30 Alan Modra <amodra@gmail.com>
2973
2974 * output.h (Output_reloc::Output_reloc <output section>): Add
2975 is_relative param. Adjust calls.
2976 (Output_reloc::add_output_section_relative): New functions.
2977 * output.cc (Output_reloc::Output_reloc <output section>): Handle
2978 is_relative.
2979 (Output_reloc::symbol_value): Handle SECTION_CODE.
2980
16164a6b
ST
29812012-08-24 Sriraman Tallam <tmsriram@google.com>
2982
2983 * gold.cc (queue_middle_tasks): Call layout again when unique
2984 segments for sections is desired.
2985 * layout.cc (Layout::Layout): Initialize new members.
2986 (Layout::get_output_section_flags): New function.
2987 (Layout::choose_output_section): Call get_output_section_flags.
2988 (Layout::layout): Make output section for mapping to a unique segment.
2989 (Layout::insert_section_segment_map): New function.
2990 (Layout::attach_allocated_section_to_segment): Make unique segment for
703d02da 2991 output sections marked so.
16164a6b
ST
2992 (Layout::segment_precedes): Check for unique segments when sorting.
2993 * layout.h (Layout::Unique_segment_info): New struct.
2994 (Layout::Section_segment_map): New typedef.
2995 (Layout::insert_section_segment_map): New function.
2996 (Layout::get_output_section_flags): New function.
2997 (Layout::is_unique_segment_for_sections_specified): New function.
2998 (Layout::set_unique_segment_for_sections_specified): New function.
2999 (Layout::unique_segment_for_sections_specified_): New member.
3000 (Layout::section_segment_map_): New member.
3001 * object.cc (Sized_relobj_file<size, big_endian>::do_layout):
3002 Rename is_gc_pass_one to is_pass_one.
3003 Rename is_gc_pass_two to is_pass_two.
3004 Rename is_gc_or_icf to is_two_pass.
3005 Check for which pass based on whether symbols data is present.
3006 Make it two pass when unique segments for sections is desired.
3007 * output.cc (Output_section::Output_section): Initialize new
3008 members.
3009 * output.h (Output_section::is_unique_segment): New function.
3010 (Output_section::set_is_unique_segment): New function.
3011 (Output_section::is_unique_segment_): New member.
3012 (Output_section::extra_segment_flags): New function.
3013 (Output_section::set_extra_segment_flags): New function.
3014 (Output_section::extra_segment_flags_): New member.
3015 (Output_section::segment_alignment): New function.
3016 (Output_section::set_segment_alignment): New function.
3017 (Output_section::segment_alignment_): New member.
3018 (Output_segment::Output_segment): Initialize is_unique_segment_.
3019 (Output_segment::is_unique_segment): New function.
3020 (Output_segment::set_is_unique_segment): New function.
3021 (Output_segment::is_unique_segment_): New member.
3022 * plugin.cc (allow_unique_segment_for_sections): New function.
3023 (unique_segment_for_sections): New function.
3024 (Plugin::load): Add new functions to transfer vector.
3025 * Makefile.am (plugin_final_layout.readelf.stdout): Add readelf output.
3026 * Makefile.in: Regenerate.
3027 * testsuite/plugin_final_layout.sh: Check if unique segment
3028 functionality works.
3029 * testsuite/plugin_section_order.c (onload): Check if new interfaces
3030 are available.
3031 (allow_unique_segment_for_sections): New global.
3032 (unique_segment_for_sections): New global.
3033 (claim_file_hook): Call allow_unique_segment_for_sections.
3034 (all_symbols_read_hook): Call unique_segment_for_sections.
16164a6b 3035
1e2bee4f
CC
30362012-08-22 Cary Coutant <ccoutant@google.com>
3037
3038 * layout.cc (Layout::include_section): Don't assert on GROUP
3039 sections with --emit-relocs.
3040
1d5dfe78
CC
30412012-08-21 Cary Coutant <ccoutant@google.com>
3042
3043 * symtab.cc (Symbol_table::gc_mark_undef_symbols): Don't assert
3044 if --export-dynamic-symbol names an undef symbol.
3045
c9269dff
AM
30462012-08-18 Alan Modra <amodra@gmail.com>
3047
3048 * powerpc.cc: Formatting and white space.
3049 (Powerpc_relobj): Rename got2_section_ to special_.
3050 Add opd_ent_shndx_ and opd_ent_off_ vectors.
3051 (Powerpc_relobj::opd_shndx, init_opd, get_opd_ent, set_opd_ent,
3052 scan_opd_relocs, do_read_relocs, opd_ent_ndx): New functions.
3053 (Target_powerpc): Add Address typedef and invalid_address. Use
3054 throughout.
3055 (Target_powerpc::is_branch_reloc): New function.
3056 (Powerpc_relocate_functions): Add Address typedef, use throughout.
3057 (Powerpc_relocate_functions:rela, rela_ua): Correct type used
3058 for dst_mask, value and addend.
3059 (Powerpc_relobj::do_find_special_sections): Find .opd for 64-bit.
3060 (ld_2_1, cror_15_15_15, cror_31_31_31): New insn constants.
3061 (Output_data_glink::do_write): Correct toc base. Don't try to use
3062 uint16_t for 24-bit offset. Use get_output_section_offset and
3063 check return.
3064 (Target_powerpc::Scan::local): Handle more relocs.
3065 (Target_powerpc::do_finalize_sections): Set up DT_PPC64_GLINK.
3066 (Target_powerpc::Relocate::relocate): Correct toc base calculation.
3067 Plug in toc restoring insn after plt calls. Translate branches
3068 to function descriptor symbols to corresponding entry point.
3069 (Target_powerpc::relocate_for_relocatable): Check return from
3070 get_output_section_offset.
3071 * symtab.h: Comment typo.
3072
b1759dce
ILT
30732012-08-14 Ian Lance Taylor <iant@google.com>
3074
3075 * x86_64.cc (Target_x86_64::Scan::global): Fix erroneous call to
3076 unsupported_relocal_local to call unsupported_reloc_global.
3077
b9b2ae8b
NC
30782012-08-14 Nick Clifton <nickc@redhat.com>
3079
3080 PR ld/14265
3081 * script-sections.cc (Sections_element::output_section_name): Add
3082 keep return parameter.
3083 (Output_section_element::match_name): Add keep return parameter.
3084 Return the value of the keep_ member.
3085 * script-sections.h (class Output_section): Update
3086 output_section_name prototype.
3087 * layout.cc (Layout::keep_input_section): New public member
3088 function.
3089 (Layout::choose_output_section): Pass keep parameter to
3090 output_section_name.
3091 * layout.h (class Layout): Add keep_input_section.
3092 * object.cc (Sized_relobj_file::do_layout): Check for kept input
3093 sections.
3094 * testsuite/Makefile.am: Add a test.
3095 * testsuite/Makefile.in: Regenerate.
3096 * testsuite/pr14265.c: Source file for the test.
3097 * testsuite/pr14265.t: Linker script for the test.
3098 * testsuite/pr14265.sh: Shell script for the test.
3099
921b5322
AM
31002012-08-14 Alan Modra <amodra@gmail.com>
3101
3102 * target.h (Target::output_section_name): New function.
3103 (Target::do_output_section_name): New function.
3104 * layout.cc (Layout::choose_output_section): Call the above.
3105 * powerpc.cc (Target_powerpc::do_output_section_name): New function.
3106
6ce78956
AM
31072012-08-14 Alan Modra <amodra@gmail.com>
3108
3109 * powerpc.cc: Update for renamed R_PPC_REL16 relocs.
3110 (Output_data_got_powerpc::do_write): Don't rely on base class lookup
3111 for replace_constant call.
3112 (Output_data_plt_powerpc::do_print_to_mapfile): New function.
3113 (Output_data_glink::do_print_to_mapfile): New function.
3114 (Target_powerpc::Scan::local): Ignore R_PPC64_TOCSAVE.
3115 (Target_powerpc::Relocate::relocate): Likewise.
3116
d1a8cabd
AM
31172012-08-14 Alan Modra <amodra@gmail.com>
3118
3119 * powerpc.cc (Powerpc_relobj::set_got2_shndx): Delete.
3120 (Powerpc_relobj::do_find_special_sections): Don't use set_got2_shndx.
3121 (Output_data_glink::add_entry,find_entry): Remove shndx param.
3122 (class Glink_sym_ent): Rename from struct Glink_sym_ent. Remove
3123 all references to shndx_. Handle special case for R_PPC_PLTREL24
3124 here.
3125 (class Glink_sym_ent_hash): Rename from struct Glink_sym_ent_hash.
3126 (Output_data_glink::do_write): Retrieve got2_shdnx from object.
3127 (Target_powerpc::make_plt_entry): Don't special case R_PPC_PLTREL24
3128 here.
3129 (Target_powerpc::Scan::global): Nor on make_plt_entry call.
3130 (Target_powerpc::Relocate::relocate): Nor on glink->find_entry call.
3131
d83ce4e3
AM
31322012-08-12 Alan Modra <amodra@gmail.com>
3133
3134 * powerpc.cc: Whitespace fixes. Wrap overly long lines.
3135 (glink insn constants): Use uint32_t.
3136 (Output_data_glink::add_entry): Use insert, not [] operator.
3137
cf43a2fe
AM
31382012-08-11 Alan Modra <amodra@gmail.com>
3139
3140 * object.h (Sized_relobj_file::find_shdr): New function.
3141 (Sized_relobj_file::find_special_sections): New function.
3142 * object.cc (Sized_relobj_file::find_shdr): New function.
3143 (Sized_relobj_file::find_eh_frame): Use find_shdr.
3144 (Sized_relobj_file::find_special_sections): New function, split out..
3145 (Sized_relobj_file::do_read_symbols): ..from here.
3146 * output.h (Output_data_got::replace_constant): New function.
3147 (Output_data_got::num_entries): New function.
3148 (Output_data_got::last_got_offset,set_got_size): Use num_entries.
3149 (Output_data_got::got_offset): Protected rather than private.
3150 (Output_data_got::replace_got_entry): New function.
3151 * output.cc (Output_data_got::replace_got_entry): New function.
3152 * powerpc.cc (class Powerpc_relobj): New.
3153 (class Powerpc_relocate_functions): Delete all psymval variants or
3154 convert to value,addend type. Delete pcrela, pcrela_unaligned.
3155 Implement _ha functions using corresponding _hi function.
3156 (Powerpc_relobj::find_special_sections): New function.
3157 (Target_powerpc::do_make_elf_object): New function.
3158 (class Output_data_got_powerpc): New.
3159 (class Output_data_glink): New.
3160 (class Powerpc_scan_relocatable_reloc): New.
3161 Many more changes througout file.
3162
3c892704
NC
31632012-08-09 Nick Clifton <nickc@redhat.com>
3164
3165 * po/vi.po: Updated Vietnamese translation.
3166
82435b3b
ILT
31672012-08-07 Ian Lance Taylor <iant@google.com>
3168
3169 * layout.cc (Layout::add_target_dynamic_tags): If
3170 dynrel_includes_plt but no dyn_rel, emit dynamic reloc tags for
3171 plt_rel.
3172
a6dc81d2
NC
31732012-07-30 Nick Clifton <nickc@redhat.com>
3174
3175 * po/gold.pot: Updated template.
3176 * po/es.po: Updated Spanish translation.
3177
f1415016
CC
31782012-07-18 Cary Coutant <ccoutant@google.com>
3179
3180 PR gold/14344
3181 * configure.ac: Add check for -gpubnames support.
3182 * configure: Regenerate.
3183 * testsuite/Makefile.am (gdb_index_test_1): Add check for -gpubnames
3184 support; force -gno-pubnames.
3185 (gdb_index_test_2, gdb_index_test_3): Add check for -gpubnames
3186 support.
3187 (gdb_index_test_4): New test.
3188 * testsuite/Makefile.in: Regenerate.
3189 * testsuite/gdb_index_test_1.sh: Refactor code into common file.
3190 * testsuite/gdb_index_test_2.sh: Likewise.
3191 * testsuite/gdb_index_test_3.sh: Don't look for space after colon.
3192 * testsuite/gdb_index_test_4.sh: New script.
3193 * testsuite/gdb_index_test_comm.sh: New script with common code;
3194 don't look for space after colon.
3195
b7fd7c37
ST
31962012-07-16 Sriraman Tallam <tmsriram@google.com>
3197
3198 * gold.cc (queue_middle_tasks): Update function order only after
3199 deferred objects due to plugins are processed.
3200
1f3212db
ILT
32012012-07-11 Ian Lance Taylor <iant@google.com>
3202
3203 * arm.cc (Arm_relocate_functions::abs16): Remove unused typedef.
3204 (Arm_exidx_cantunwind::do_fixed_endian_write): Likewise.
3205 (Target_arm::scan_reloc_for_stub): Likewise.
3206 * common.cc (Symbol_table::do_allocate_commons_list): Likewise.
3207 * dwarf_reader.cc (Dwarf_die::skip_attributes): Likewise.
3208 * ehframe.cc (Eh_frame::do_add_ehframe_input_section): Likewise.
3209 * incremental.cc (Sized_incr_dynobj::do_add_symbols): Likewise.
3210 * powerpc.cc (Target_powerpc::relocate_tls): Likewise.
3211
81c82a68
ILT
32122012-07-10 Dodji Seketeli <dodji@redhat.com>
3213 Ian Lance Taylor <iant@google.com>
3214
3215 PR gold/14309
3216 * configure.ac: Test whether std::tr1::hash<off_t> works.
3217 * gold.h: Add a specialization for std::tr1::hash<off_t> if
3218 needed.
3219 * output.h (class Output_fill): Add virtual destructor.
3220 * configure, config.in: Rebuild.
3221
eabc84f4
RM
32222012-06-22 Roland McGrath <mcgrathr@google.com>
3223
3224 * layout.cc (finalize): Define __ehdr_start symbol if applicable.
3225
370e30b6
RÁE
32262012-06-12 Rafael Ávila de Espíndola <respindola@mozilla.com>
3227
3228 * plugin.cc (Plugin::load): Handle position independent executables.
3229
fb1b895d
CC
32302012-06-06 Cary Coutant <ccoutant@google.com>
3231
3232 * layout.cc (gdb_sections): Remove ".debug_" prefixes,
3233 add .debug_macro.
3234 (lines_only_debug_sections): Likewise.
3235 (gdb_fast_lookup_sections): New static array.
3236 (is_gdb_debug_section): Rename formal parameter.
3237 (is_lines_only_debug_section): Likewise.
3238 (is_gdb_fast_lookup_section): New function.
3239 (Layout::include_section): Check for ".zdebug_" prefix; pass
3240 section name suffix to is_gdb_debug_section, et al.; check for
3241 fast-lookup sections when building .gdb_index.
3242 * options.h (--strip-debug-gdb): Update GDB version number.
3243
7c0640fa
CC
32442012-06-06 Cary Coutant <ccoutant@google.com>
3245
3246 * configure.ac: Add check for fallocate.
3247 * configure: Regenerate.
3248 * config.in: Regenerate.
3249
3250 * options.h (class General_options): Add --mmap-output-file and
3251 --posix-fallocate options.
3252 * output.cc: (posix_fallocate): Remove; replace with...
3253 (gold_fallocate): New function.
3254 (Output_file::map_no_anonymous): Call gold_fallocate.
3255 (Output_file::map): Check --mmap-output-file option.
3256
2a49eb69
DK
32572012-06-05 Jing Yu <jingyu@google.com>
3258
3259 * gold.h (textdomain): Add do {} to empty while(0).
3260 (bindtextdomain): Likewise.
3261
fad072ac
CC
32622012-06-04 Cary Coutant <ccoutant@google.com>
3263
3264 * dynobj.cc (Sized_dynobj::do_get_global_symbol_counts): Call
3265 has_dynsym_index.
3266
8cc69fb6
ST
32672012-05-25 Sriraman Tallam <tmsriram@google.com>
3268
3269 * symtab.cc (Symbol_table::define_special_symbol):
3270 Initialize *poldsym to prevent uninitialized variable errors.
3271
1be75daa
CC
32722012-05-23 Cary Coutant <ccoutant@google.com>
3273
3274 * layout.cc (Layout::section_name_mapping): Add rules to handle
3275 exact match on .data.rel.ro.local or .data.rel.ro.
3276 (Layout::output_section_name): Check for exact matches.
3277
9b689de0
CC
32782012-05-23 Cary Coutant <ccoutant@google.com>
3279
3280 * layout.cc (Layout::section_name_mapping): Match .data.rel.ro.*
3281 more carefully.
3282
b24fdbf5
CC
32832012-05-22 Cary Coutant <ccoutant@google.com>
3284
3285 * symtab.cc (Symbol::should_add_dynsym_entry): Check for relocatable
3286 object before exporting symbol.
3287
e550e1a2
L
32882012-05-21 H.J. Lu <hongjiu.lu@intel.com>
3289
3290 * testsuite/tls_test.cc: Include "config.h" first.
3291 * testsuite/tls_test_c.c: Likewise.
3292
df7b86aa
NC
32932012-05-17 Daniel Richard G. <skunk@iskunk.org>
3294 Nick Clifton <nickc@redhat.com>
3295
3296 PR 14072
3297 * configure.in: Add check that sysdep.h has been included before
3298 any system header files.
3299 * configure: Regenerate.
3300 * config.in: Regenerate.
3301
1007b503
CC
33022012-05-14 Cary Coutant <ccoutant@google.com>
3303
3304 * layout.cc (Layout::make_output_section): Mark .tdata section
3305 as RELRO.
3306 * testsuite/relro_test.cc: Add a TLS variable.
3307
fd885f3a
L
33082012-05-10 H.J. Lu <hongjiu.lu@intel.com>
3309
3310 PR gold/14091
3311 * x86_64.cc (Target_x86_64::Scan::local): For x32, generate
3312 R_X86_64_RELATIVE64 instead of R_X86_64_RELATIVE in case of
3313 R_X86_64_64.
3314
80f5885c
CC
33152012-05-08 Cary Coutant <ccoutant@google.com>
3316
3317 * layout.cc (gdb_sections): Update GDB version, add .debug_addr.
3318 (lines_only_debug_sections): Likewise.
3319
2e702c99
RM
33202012-05-02 Roland McGrath <mcgrathr@google.com>
3321
3322 * nacl.cc: New file.
3323 * nacl.h: New file.
3324 * Makefile.am (CCFILES, HFILES): Add them.
3325 * Makefile.in: Regenerate.
3326 * i386.cc (Output_data_plt_i386_nacl): New class.
3327 (Output_data_plt_i386_nacl_exec): New class.
3328 (Output_data_plt_i386_nacl_dyn): New class.
3329 (Target_i386_nacl): New class.
3330 (Target_selector_i386_nacl): New class.
3331 (target_selector_i386): Use it instead of Target_selector_i386.
3332 * x86_64.cc (Output_data_plt_x86_64_nacl): New class.
3333 (Target_x86_64_nacl): New class.
3334 (Target_selector_x86_64_nacl): New class.
3335 (target_selector_x86_64, target_selector_x32): Use it instead of
3336 Target_selector_x86_64.
3337 * arm.cc (Output_data_plt_arm_nacl): New class.
3338 (Target_arm_nacl): New class.
3339 (Target_selector_arm_nacl): New class.
3340 (target_selector_arm, target_selector_armbe): Use it instead of
3341 Target_selector_arm.
3342
3343 * target-select.cc (select_target): Take new Input_file* and off_t
3344 arguments, pass them on to recognize method of selector.
3345 * object.cc (make_elf_sized_object): Update caller.
3346 * parameters.cc (parameters_force_valid_target): Likewise.
3347 * incremental.cc (make_sized_incremental_binary): Likewise.
3348 * target-select.h: Update decl.
3349 (Target_selector::recognize): Take new Input_file* argument,
3350 pass it on to do_recognize.
3351 (Target_selector::do_recognize): Take new Input_file* argument.
3352 * freebsd.h (Target_selector_freebsd::do_recognize): Likewise.
3353 * powerpc.cc (Target_selector_powerpc::do_recognize): Likewise.
3354 * sparc.cc (Target_selector_sparc::do_recognize): Likewise.
3355 * testsuite/testfile.cc (Target_selector::do_recognize): Likewise.
3356
3357 * target.h (Target::Target_info): New members isolate_execinstr
3358 and rosegment_gap.
3359 (Target::isolate_execinstr, Target::rosegment_gap): New methods.
3360 * arm.cc (Target_arm::arm_info): Update initializer.
3361 * i386.cc (Target_i386::i386_info): Likewise.
3362 * powerpc.cc (Target_powerpc::powerpc_info): Likewise.
3363 * sparc.cc (Target_sparc::sparc_info): Likewise.
3364 * x86_64.cc (Target_x86_64::x86_64_info): Likewise.
3365 * testsuite/testfile.cc (Target_test::test_target_info): Likewise.
3366 * layout.cc (Layout::attach_allocated_section_to_segment):
3367 Take new const Target* argument. If target->isolate_execinstr(), act
3368 like --rosegment.
3369 (Layout::find_first_load_seg): Take new const Target* argument;
3370 if target->isolate_execinstr(), reject PF_X segments.
3371 (Layout::relaxation_loop_body): Update caller.
3372 (Layout::set_segment_offsets): If target->isolate_execinstr(),
3373 reset file offset to zero when we hit LOAD_SEG, and then do a second
3374 loop over the segments before LOAD_SEG to reassign offsets after
3375 addresses have been determined. Handle target->rosegment_gap().
3376 (Layout::attach_section_to_segment): Take new const Target* argument;
3377 pass it to attach_allocated_section_to_segment.
3378 (Layout::make_output_section): Update caller.
3379 (Layout::attach_sections_to_segments): Take new const Target* argument;
3380 pass it to attach_section_to_segment.
3381 * gold.cc (queue_middle_tasks): Update caller.
3382 * layout.h (Layout): Update method decls with new arguments.
3383
3384 * arm.cc (Target_arm::Target_arm): Take optional argument for the
3385 Target_info pointer to use.
3386 (Target_arm::do_make_data_plt): New virtual method.
3387 (Target_arm::make_data_plt): New method that calls it.
3388 (Target_arm::make_plt_entry): Use it.
3389 (Output_data_plt_arm::Output_data_plt_arm): Take additional argument
3390 for the section alignment.
3391 (Output_data_plt_arm::do_first_plt_entry_offset): New abstract virtual
3392 method.
3393 (Output_data_plt_arm::first_plt_entry_offset): Call it.
3394 (Output_data_plt_arm::do_get_plt_entry_size): New abstract virtual
3395 method.
3396 (Output_data_plt_arm::get_plt_entry_size): Call it.
3397 (Output_data_plt_arm::do_fill_plt_entry): New abstract virtual method.
3398 (Output_data_plt_arm::fill_plt_entry): New method that calls it.
3399 (Output_data_plt_arm::do_fill_first_plt_entry): New abstract virtual
3400 method.
3401 (Output_data_plt_arm::fill_first_plt_entry): New method that calls it.
3402 (Output_data_plt_arm::set_final_data_size): Use get_plt_entry_size
3403 method instead of sizeof(plt_entry).
3404 (Output_data_plt_arm::add_entry): Likewise.
3405 Use first_plt_entry_offset method instead of sizeof(first_plt_entry).
3406 (Target_arm::first_plt_entry_offset): Call method on this->plt_ rather
3407 than static method.
3408 (Target_arm::plt_entry_size): Likewise.
3409 (Output_data_plt_arm::first_plt_entry, Output_data_plt_arm::plt_entry):
3410 Move to ...
3411 (Output_data_plt_arm_standard): ... here, new class.
3412 (Output_data_plt_arm::do_write): Move guts of PLT filling to...
3413 (Output_data_plt_arm_standard::do_fill_first_plt_entry): ... here ...
3414 (Output_data_plt_arm_standard::do_fill_plt_entry): ... and here.
3415
3416 * x86_64.cc (Output_data_plt_x86_64::Output_data_plt_x86_64):
3417 Take additional argument for the PLT entry size.
3418 (Output_data_plt_x86_64::get_tlsdesc_plt_offset):
3419 Use get_plt_entry_size method rather than plt_entry_size variable.
3420 (Output_data_plt_x86_64::reserve_slot): Likewise.
3421 (Output_data_plt_x86_64::do_adjust_output_section): Likewise.
3422 (Output_data_plt_x86_64::add_entry): Likewise.
3423 (Output_data_plt_x86_64::add_local_ifunc_entry): Likewise.
3424 (Output_data_plt_x86_64::address_for_global): Likewise.
3425 (Output_data_plt_x86_64::address_for_local): Likewise.
3426 (Output_data_plt_x86_64::set_final_data_size): Likewise.
3427 (Output_data_plt_x86_64::first_plt_entry_offset): Likewise.
3428 Make method non-static.
3429 (Output_data_plt_x86_64::do_get_plt_entry_size): New abstract virtual
3430 method.
3431 (Output_data_plt_x86_64::get_plt_entry_size): Just call that.
3432 (Output_data_plt_x86_64::do_add_eh_frame): New abstract virtual method.
3433 (Output_data_plt_x86_64::add_eh_frame): New method to call it.
3434 (Output_data_plt_x86_64::do_fill_first_plt_entry): New abstract
3435 virtual method.
3436 (Output_data_plt_x86_64::fill_first_plt_entry): New method to call it.
3437 (Output_data_plt_x86_64::do_fill_plt_entry): New abstract
3438 virtual method.
3439 (Output_data_plt_x86_64::fill_plt_entry): New method to call it.
3440 (Output_data_plt_x86_64::do_fill_tlsdesc_entry): New abstract
3441 virtual method.
3442 (Output_data_plt_x86_64::fill_tlsdesc_entry): New method to call it.
3443 (Output_data_plt_x86_64::plt_entry_size)
3444 (Output_data_plt_x86_64::first_plt_entry)
3445 (Output_data_plt_x86_64::plt_entry)
3446 (Output_data_plt_x86_64::tlsdesc_plt_entry)
3447 (Output_data_plt_x86_64::plt_eh_frame_fde_size)
3448 (Output_data_plt_x86_64::plt_eh_frame_fde): Move to ...
3449 (Output_data_plt_x86_64_standard): ... here, new class.
3450 (Target_x86_64::Target_x86_64): Take optional argument for the
3451 Target_info pointer to use.
3452 (Target_x86_64::do_make_data_plt): New virtual method.
3453 (Target_x86_64::make_data_plt): New method to call it.
3454 (Target_x86_64::init_got_plt_for_update): Use that.
3455 Call this->plt_->add_eh_frame method here.
3456 (Output_data_plt_x86_64::init): Don't do add_eh_frame_for_plt here.
3457 (Target_x86_64::first_plt_entry_offset): Call method on this->plt_
3458 rather than static method.
3459 (Target_x86_64::plt_entry_size): Likewise.
3460 (Output_data_plt_x86_64::do_write): Use get_plt_entry_size method
3461 rather than plt_entry_size variable. Move guts of PLT filling to...
3462 (Output_data_plt_x86_64_standard::do_fill_first_plt_entry): ... here ...
3463 (Output_data_plt_x86_64_standard::do_fill_plt_entry): ... and here ...
3464 (Output_data_plt_x86_64_standard::do_fill_tlsdesc_entry): ... and here.
3465
3466 * i386.cc (Output_data_plt_i386::Output_data_plt_i386): Take
3467 additional argument for the section alignment.
3468 Don't do add_eh_frame_for_plt here.
3469 (Output_data_plt_i386::first_plt_entry_offset): Make the method
3470 non-static. Use get_plt_entry_size method rather than plt_entry_size
3471 variable.
3472 (Output_data_plt_i386::do_get_plt_entry_size): New abstract virtual
3473 method.
3474 (Output_data_plt_i386::get_plt_entry_size): Call it.
3475 (Output_data_plt_i386::do_add_eh_frame): New abstract virtual method.
3476 (Output_data_plt_i386::add_eh_frame): New method to call it.
3477 (Output_data_plt_i386::do_fill_first_plt_entry): New abstract virtual
3478 method.
3479 (Output_data_plt_i386::fill_first_plt_entry): New method to call it.
3480 (Output_data_plt_i386::do_fill_plt_entry): New abstract virtual
3481 method.
3482 (Output_data_plt_i386::fill_plt_entry): New method to call it.
3483 (Output_data_plt_i386::set_final_data_size): Use get_plt_entry_size
3484 method instead of plt_entry_size.
3485 (Output_data_plt_i386::plt_entry_size)
3486 (Output_data_plt_i386::plt_eh_frame_fde_size)
3487 (Output_data_plt_i386::plt_eh_frame_fde): Move to ...
3488 (Output_data_plt_i386_standard): ... here, new class.
3489 (Output_data_plt_i386_exec): New class.
3490 (Output_data_plt_i386::exec_first_plt_entry): Move to ...
3491 (Output_data_plt_i386_exec::first_plt_entry): ... here.
3492 (Output_data_plt_i386::exec_plt_entry): Move to ...
3493 (Output_data_plt_i386_exec::plt_entry): ... here.
3494 (Output_data_plt_i386_dyn): New class.
3495 (Output_data_plt_i386::first_plt_entry): Move to ...
3496 (Output_data_plt_i386_dyn::first_plt_entry): ... here.
3497 (Output_data_plt_i386::dyn_plt_entry): Move to ...
3498 (Output_data_plt_i386_dyn::plt_entry): ... here.
3499 (Target_i386::Target_i386): Take optional argument for the Target_info
3500 pointer to use.
3501 (Target_i386::do_make_data_plt): New virtual method.
3502 (Target_i386::make_data_plt): New method to call it.
3503 (Target_i386::make_plt_section): Use that.
3504 Call this->plt_->add_eh_frame method here.
3505 (Output_data_plt_i386::add_entry): Use get_plt_entry_size method
3506 rather than plt_entry_size variable.
3507 (Output_data_plt_i386::add_local_ifunc_entry): Likewise.
3508 (Output_data_plt_i386::address_for_local): Likewise.
3509 (Output_data_plt_i386::do_write): Likewise.
3510 Move guts of PLT filling to...
3511 (Output_data_plt_i386_exec::do_fill_first_plt_entry): ... here ...
3512 (Output_data_plt_i386_exec::do_fill_plt_entry): ... and here ...
3513 (Output_data_plt_i386_dyn::do_fill_first_plt_entry): ... and here ...
3514 (Output_data_plt_i386_dyn::do_fill_plt_entry): ... and here.
3515
b9b9f2ee
CC
35162012-05-01 Cary Coutant <ccoutant@google.com>
3517
3518 * dwarf_reader.cc (Dwarf_die::read_attributes)
3519 (Dwarf_die::skip_attributes, Dwarf_die::int_attribute)
3520 (Dwarf_die::uint_attribute): Remove DW_FORM_null.
3521 * reduced_debug_output.cc
3522 (Output_reduced_debug_info_section::get_die_end): Remove
3523 DW_FORM_GNU_ref_index. Add default case.
3524
57923f48
MW
35252012-04-26 Mark Wielaard <mjw@redhat.com>
3526
3527 * dwarf_reader.cc (Dwarf_die::address_attribute): New function.
3528 * dwarf_reader.h (Dwarf_die::address_attribute): Likewise.
3529 * gdb-index.cc (Gdb_index_info_reader::record_cu_ranges): Handle
3530 DW_AT_high_pc as offset from DW_AT_low_pc.
3531
3532 * testsuite/Makefile.am (gdb_index_test_3.sh): New test case.
3533 * testsuite/Makefile.in: Regenerate.
3534 * testsuite/gdb_index_test_3.c: New test source file.
3535 * testsuite/gdb_index_test_3.sh: New test source file.
3536
2c54b4f4
ILT
35372012-04-25 Ian Lance Taylor <iant@google.com>
3538
3539 * arm.cc (Target_arm::do_is_defined_by_abi): Make sym a const
3540 pointer.
3541 (Stub_addend_reader::operator()): Declare Arm_relocate_functions
3542 as a class, not a struct.
3543 (Target_arm::scan_span_for_cortex_a8_erratum): Likewise.
3544 (Target_arm::apply_cortex_a8_workaround): Likewise.
3545 * gc.h: Declare Reloc_types as a struct, not a class.
3546 * object.h: Declare Symbols_data as a struct.
3547 * reloc.h: Declare Read_relocs_data as a struct.
3548 * target.h: Declare Relocate_info as a struct.
3549
a5a5f7a3
DM
35502012-04-24 David S. Miller <davem@davemloft.net>
3551
3552 * sparc.cc (Target_sparc::Relocate::relax_call): New function.
3553 (Target_sparc::Relocate::relocate): Call it for R_SPARC_WDISP30
3554 and R_SPARC_WPLT30.
3555
f038d496
CC
35562012-04-24 Cary Coutant <ccoutant@google.com>
3557
3558 * incremental-dump.cc (find_input_containing_global): Replace
3559 magic number with symbolic constant.
3560 (dump_incremental_inputs): Update version number.
3561 * incremental.cc (Output_section_incremental_inputs): Update version
3562 number; import symbolic constants from Incremental_inputs_reader.
3563 (Incremental_inputs::create_data_sections): Align relocations
3564 section correctly for 64-bit targets.
3565 (Output_section_incremental_inputs::set_final_data_size): Use symbolic
3566 constants; add padding.
3567 (Output_section_incremental_inputs::write_header): Add assert for
3568 header_size.
3569 (Output_section_incremental_inputs::write_input_files): Add assert
3570 for input_entry_size.
3571 (Output_section_incremental_inputs::write_info_blocks): Add padding;
3572 add assert for object_info_size, input_section_entry_size,
3573 global_sym_entry_size.
3574 * incremental.h (Incremental_inputs_reader): Add symbolic constants
3575 for data structure sizes; use them.
3576 (Incremental_input_entry_reader): Import symbolic constants from
3577 Incremental_inputs_reader; use them.
3578
a4d85145
DM
35792012-04-23 David S. Miller <davem@davemloft.net>
3580
3581 * sparc.cc (class Target_sparc): Add elf_machine_, elf_flags_,
3582 and elf_flags_set_.
3583 (Target_sparc::Target_sparc): Initialize new fields.
3584 (Target_sparc::do_make_elf_object): New function.
3585 (Target_sparc::do_adjust_elf_header): New function.
3586
1d509098
CC
35872012-04-23 Cary Coutant <ccoutant@google.com>
3588
3589 * gdb-index.cc (Gdb_index::do_write): Use Swap_aligned32 for writing
3590 CU range table of gdb index.
3591
7ebeff7f
DM
35922012-04-20 David S. Miller <davem@davemloft.net>
3593
3594 * target.cc (Sized_target::do_adjust_elf_header): Use big_endian
3595 instead of false.
3596
13cf9988
DM
35972012-04-16 David S. Miller <davem@davemloft.net>
3598
2a1079e8
DM
3599 * sparc.cc (Target_sparc::got_address): New function.
3600 (Sparc_relocate_functions::gdop_hix22): New function.
3601 (Sparc_relocate_functions::gdop_lox10): New function.
3602 (Target_sparc::Scan::local): Do not emit a GOT entry for GOTDATA
3603 relocs.
3604 (Target_sparc::Scan::local): Likewise if the global symbol is not
3605 preemptible and is not IFUNC.
3606 (Target_sparc::Relocate::relocate): Perform GOTDATA code
3607 transformations for local and non-preemptible non-IFUNC global
3608 symbols.
3609
0bc964fc
DM
3610 * gdb-index.cc (Gdb_index::do_write): Use Swap_unaligned when
3611 writing out 64-bit part of ranges.
3612
661d7a80
DM
3613 * Makefile.am: Build IFUNC tests with -fPIC and -fPIE instead of
3614 -fpic and -fpie respectively.
3615 * Makefile.in: Regenerate.
3616
8c2bf391
DM
3617 * sparc.cc (class Target_sparc): Add rela_ifunc_.
3618 (Target_sparc::Target_sparc): Initialize new field.
3619 (Target_sparc::do_plt_section_for_global): New function.
3620 (Target_sparc::do_plt_section_for_local): New function.
3621 (Target_sparc::reloc_needs_plt_for_ifunc): New function.
3622 (Target_sparc::make_plt_section): New function, broken out of
3623 make_plt_entry. Use ORDER_NON_RELRO_FIRST for ".plt".
3624 (Target_sparc::make_plt_entry): Call make_plt_section.
3625 (Target_sparc::make_local_ifunc_plt_entry): New function.
3626 (Target_sparc::rela_ifunc_section): New function.
3627 (Target_sparc::plt_section): Remove const.
3628 (Output_data_plt_sparc): Update declarations. Define Global_ifunc
3629 and Local_ifunc types. Add global_ifuncs_, local_ifuncs_, ifunc_rel_,
3630 and ifunc_count_ fields.
3631 (Output_data_plt_sparc::Output_data_plt_sparc): Initialize new fields.
3632 (Output_data_plt_sparc::add_entry): Handle IFUNC symbols.
3633 (Output_data_plt_sparc::add_local_ifunc_entry): New function.
3634 (Output_data_plt_sparc::rela_ifunc): New function.
3635 (Output_data_plt_sparc::emit_pending_ifunc_relocs): New function.
3636 (Output_data_plt_sparc::has_ifunc_section): New function.
3637 (Output_data_plt_sparc::entry_count): Include ifunc_count_.
3638 (Output_data_plt_sparc::address_for_global): New function.
3639 (Output_data_plt_sparc::address_for_local): New function.
3640 (Output_data_plt_sparc::plt_index_to_offset): New function.
3641 (Output_data_plt_sparc::set_final_data_size): Use plt_index_to_offset
3642 and entry_count.
3643 (Output_data_plt_sparc::do_write): Use first_plt_entry_offset and
3644 entry_count.
3645 (Target_sparc::Scan::get_reference_flags): Add R_SPARC_IRELATIVE and
3646 R_SPARC_JMP_IREL to switch.
3647 (Target_sparc::Scan::check_non_pic): Likewise.
3648 (Target_sparc::Scan::local): Handle IFUNC symbols.
3649 (Target_sparc::Scan::local): Likewise.
3650 (Target_sparc::Relocate::relocate): Likewise, use plt_address_for_global
3651 and plt_address_for_local.
3652 (Target_sparc::do_finalize_sections): Call emit_pending_ifunc_relocs.
3653 Define __rel_iplt_start and __rel_iplt_end if doing a static link.
3654
13cf9988
DM
3655 * output.h (Output_reloc): Allow use_plt_offset for global relocs too.
3656 (class Output_data_reloc): Adjust calls to Output_reloc_type.
3657 (Output_data_reloc::add_global_relative): (RELA only) Add use_plt_offset.
3658 * output.cc (Output_reloc::Output_reloc): Add use_plt_offset flag for
3659 global relocs too.
3660 (Output_reloc::symbol_value): Respect use_plt_offset_ for global symbols.
3661 * powerpc.cc (Target_powerpc::Scan::global): Adjust add_global_relative
3662 calls.
3663 * sparc.cc (Target_sparc::Scan::global): Likewise.
3664 * x86_64.cc (Target_x86_64::Scan::global): Likewise.
3665
31821be0
CC
36662012-04-16 Cary Coutant <ccoutant@google.com>
3667
3668 * archive.cc (Library_base::should_include_member): Check for
3669 --export-dynamic-symbol.
3670 * options.h (class General_options): Add --export-dynamic-symbol.
3671 * symtab.cc (Symbol::should_add_dynsym_entry): Check for
3672 --export-dynamic-symbol.
3673 (Symbol_table::gc_mark_undef_symbols): Likewise.
3674 (Symbol_table::do_add_undefined_symbols_from_command_line): Likewise.
3675
2615994e
DM
36762012-04-12 David S. Miller <davem@davemloft.net>
3677
3678 * sparc.cc (Reloc::wdisp10): New relocation method.
3679 (Reloc::h34): Likewise.
3680 (Target_sparc::Scan::check_non_pic): Handle R_SPARC_H34.
3681 (Target_sparc::Scan::get_reference_flags): Handle R_SPARC_H34 and
3682 R_SPARC_WDISP10.
3683 (Target_sparc::Scan::local): Likewise.
3684 (Target_sparc::Scan::global): Likewise.
3685 (Target_sparc::Relocate::relocate): Likewise.
3686
6782735d
CC
36872012-04-09 Cary Coutant <ccoutant@google.com>
3688
3689 * gdb-index.cc (Gdb_index_info_reader::record_cu_ranges): Allow
3690 low_pc == 0.
3691
8c7a0b00
ILT
36922012-04-06 Ian Lance Taylor <iant@google.com>
3693
3694 * timer.cc: #include <unistd.h>.
3695
58797674
RM
36962012-04-06 Roland McGrath <mcgrathr@google.com>
3697
3698 * configure.in (AC_CHECK_HEADERS): Add locale.h.
3699 * config.in: Regenerate.
3700 * configure: Regenerate.
3701
44350750
NC
37022012-04-05 Nick Clifton <nickc@redhat.com>
3703
3704 * configure.ac (AC_CHECK_FUNCS): Add setlocale.
3705 (AM_LC_MESSAGES): Add.
3706 * aclocal.m4: Regenerate.
3707 * config.in: Regenerate.
3708 * configure: Regenerate.
3709
c1027032
CC
37102012-03-21 Cary Coutant <ccoutant@google.com>
3711
3712 * Makefile.am: Add gdb-index.cc, gdb-index.h.
3713 * Makefile.in: Regenerate.
3714 * dwarf_reader.cc (Sized_elf_reloc_mapper::do_initialize): New function.
3715 (Sized_elf_reloc_mapper::symbol_section): New function.
3716 (Sized_elf_reloc_mapper::do_get_reloc_target): New function.
3717 (make_elf_reloc_mapper): New function.
3718 (Dwarf_abbrev_table::clear_abbrev_codes): New function.
3719 (Dwarf_abbrev_table::do_read_abbrevs): New function.
3720 (Dwarf_abbrev_table::do_get_abbrev): New function.
3721 (Dwarf_ranges_table::read_ranges_table): New function.
3722 (Dwarf_ranges_table::read_range_list): New function.
3723 (Dwarf_pubnames_table::read_section): New function.
3724 (Dwarf_pubnames_table::read_header): New function.
3725 (Dwarf_pubnames_table::next_name): New function.
3726 (Dwarf_die::Dwarf_die): New function.
3727 (Dwarf_die::read_attributes): New function.
3728 (Dwarf_die::skip_attributes): New function.
3729 (Dwarf_die::set_name): New function.
3730 (Dwarf_die::set_linkage_name): New function.
3731 (Dwarf_die::attribute): New function.
3732 (Dwarf_die::string_attribute): New function.
3733 (Dwarf_die::int_attribute): New function.
3734 (Dwarf_die::uint_attribute): New function.
3735 (Dwarf_die::ref_attribute): New function.
3736 (Dwarf_die::child_offset): New function.
3737 (Dwarf_die::sibling_offset): New function.
3738 (Dwarf_info_reader::check_buffer): New function.
3739 (Dwarf_info_reader::parse): New function.
3740 (Dwarf_info_reader::do_parse): New function.
3741 (Dwarf_info_reader::do_read_string_table): New function.
3742 (Dwarf_info_reader::lookup_reloc): New function.
3743 (Dwarf_info_reader::get_string): New function.
3744 (Dwarf_info_reader::visit_compilation_unit): New function.
3745 (Dwarf_info_reader::visit_type_unit): New function.
3746 (Sized_dwarf_line_info::Sized_dwarf_line_info): Use
3747 Sized_elf_reloc_mapper.
3748 (Sized_dwarf_line_info::symbol_section): Remove function.
3749 (Sized_dwarf_line_info::read_relocs): Use Sized_elf_reloc_mapper.
3750 (Sized_dwarf_line_info::read_line_mappings): Remove object
3751 parameter, adjust callers.
3752 (Sized_dwarf_line_info::format_file_lineno): Fix type of cast.
3753 * dwarf_reader.h: Include <sys/types.h>.
3754 (class Track_relocs): Remove forward declaration.
3755 (class Elf_reloc_mapper): New class.
3756 (class Sized_elf_reloc_mapper): New class.
3757 (class Dwarf_abbrev_table): New class.
3758 (class Dwarf_range_list): New class.
3759 (class Dwarf_ranges_table): New class.
3760 (class Dwarf_pubnames_table): New class.
3761 (class Dwarf_die): New class.
3762 (class Dwarf_info_reader): New class.
3763 (Sized_dwarf_line_info::read_line_mappings): Remove object parameter.
3764 (Sized_dwarf_line_info::symbol_section): Remove member function.
3765 * dynobj.h (Sized_dynobj::do_section_contents): Refactor code from
3766 base class.
3767 * gdb-index.cc: New source file.
3768 * gdb-index.h: New source file.
3769 * incremental.cc (Sized_relobj_incr::do_layout): Track .debug_info
3770 and .debug_types sections, call Layout::add_to_gdb_index.
3771 (Sized_relobj_incr::do_section_name): Implement.
3772 (Sized_relobj_incr::do_section_contents): Adjust parameter list and
3773 return type; Implement.
3774 (Sized_incr_dynobj::do_section_contents): Adjust parameter list and
3775 return type.
3776 * incremental.h (Sized_relobj_incr::do_section_contents): Adjust
3777 parameter list and return type.
3778 (Sized_incr_dynobj::do_section_contents): Likewise.
3779 * layout.cc: Include gdb-index.h.
3780 (Layout::Layout): Initialize gdb_index_data_.
3781 (Layout::init_fixed_output_section): Check for .gdb_index section.
3782 (Layout::add_to_gdb_index): New function. Instantiate.
3783 * layout.h: Add forward declaration for class Gdb_index.
3784 (Layout::add_to_gdb_index): New member function.
3785 (Layout::gdb_index_data_): New data member.
3786 * main.cc: Include gdb-index.h.
3787 (main): Print statistics for gdb index.
3788 * object.cc (Object::section_contents): Move code into
3789 do_section_contents.
3790 (need_decompressed_section): Check for sections needed when building
3791 gdb index.
3792 (build_compressed_section_map): Likewise.
3793 (Sized_relobj_file::do_read_symbols): Need local symbols when building
3794 gdb index.
3795 (Sized_relobj_file::do_layout): Track .debug_info and .debug_types
3796 sections; call Layout::add_to_gdb_index.
3797 (Sized_relobj_file::do_decompressed_section_contents): Call
3798 do_section_contents directly.
3799 * object.h (Object::do_section_contents): Adjust parameter list and
3800 return type.
3801 (Object::do_decompressed_section_contents): Call do_section_contents
3802 directly.
3803 (Sized_relobj_file::do_section_contents): Adjust parameter list and
3804 return type.
3805 * options.h (class General_options): Add --gdb-index option.
3806 * plugin.cc (Sized_pluginobj::do_section_contents): Adjust parameter
3807 list and return type.
3808 * plugin.h (Sized_pluginobj::do_section_contents): Likewise.
3809 * reloc.h (Track_relocs::checkpoint): New function.
3810 (Track_relocs::reset): New function.
3811
3812 * testsuite/Makefile.am (gdb_index_test_1.sh, gdb_index_test_2.sh):
3813 New test cases.
3814 * testsuite/Makefile.in: Regenerate.
3815 * testsuite/gdb_index_test.cc: New test source file.
3816 * testsuite/gdb_index_test_1.sh: New test source file.
3817 * testsuite/gdb_index_test_2.sh: New test source file.
3818
647f1574
DK
38192012-03-19 Doug Kwan <dougkwan@google.com>
3820
3821 * arm.cc (Target_arm::do_define_standard_symbols): New method.
2e702c99 3822 (Target_arm::do_finalize_sections): Remove code which defines
647f1574
DK
3823 __exidx_start and __exidx_end. Make symbol table parameter
3824 anonymous as it is not used.
3825 * gold.cc (queue_middle_tasks): Call target hook to define any
3826 target-specific symbols.
3827 * target.h (Target::define_standard_symbols): New method.
3828 (Target::do_define_standard_symbols): Same.
3829 * testsuite/Makefile.am (arm_exidx_test): Dump relocations also.
3830 * testsuite/Makefile.in: Regenerate.
3831 * testsuite/arm_exidx.s: Generate data relocations for __exidx_start
3832 and __exidx_end.
3833 * testsuite/arm_exidx_test.sh: Check that no unused dynamic
3834 relocations are generated for __exidx_start and __exidx_end.
3835
7c6109da
DK
38362012-03-16 Doug Kwan <dougkwan@google.com>
3837
3838 * testsuite/Makefile.am: Disable test initpri3b.
3839 * testsuite/Makefile.in: Regenerate.
3840
7b8957f8
DK
38412012-03-15 Doug Kwan <dougkwan@google.com>
3842
3843 * arm.cc (Target_arm::got_section): Make .got section read-only
3844 if -z now is given.
3845
14dc9ef7
ILT
38462012-03-15 Ian Lance Taylor <iant@google.com>
3847
3848 PR gold/13850
3849 * layout.cc (Layout::make_output_section): Correctly mark
3850 SHT_INIT_ARRAY, et. al., as relro.
3851
fa40b62a
DK
38522012-03-14 Doug Kwan <dougkwan@google.com>
3853
3854 * gold/arm.cc (Target_arm::Scan::global): Generate R_ARM_GLOB_DAT
3855 dynamic relocations for protected symbols in shared objects.
3856
fd325007
ILT
38572012-03-13 Ian Lance Taylor <iant@google.com>
3858
3859 * resolve.cc (Symbol_table::resolve): When merging common symbols,
3860 keep the larger alignment.
3861
e8dd54e1
CC
38622012-03-12 Cary Coutant <ccoutant@google.com>
3863
3864 * dwarf_reader.cc (Sized_dwarf_line_info::process_one_opcode): Fix
3865 handling of DW_LNE_define_file.
3866
feb5f3b0
CC
38672012-03-12 Cary Coutant <ccoutant@google.com>
3868
3869 * reduced_debug_output.cc
3870 (Output_reduced_debug_info_section::get_die_end): Add new FORM
3871 codes to switch.
3872
a1fb4256
CC
38732012-02-29 Cary Coutant <ccoutant@google.com>
3874
3875 * object.cc (need_decompressed_section): Add #ifdef ENABLE_THREADS.
3876
5dd8762a
CC
38772012-02-29 Cary Coutant <ccoutant@google.com>
3878
3879 * dwarf_reader.cc (Sized_dwarf_line_info::Sized_dwarf_line_info):
3880 Call Object::decompressed_section_contents.
3881 * dwarf_reader.h (Sized_dwarf_line_info::~Sized_dwarf_line_info):
3882 New dtor.
3883 (Sized_dwarf_line_info::buffer_start_): New data member.
3884 * merge.cc (Output_merge_data::do_add_input_section): Call
3885 Object::decompressed_section_contents.
3886 (Output_merge_string::do_add_input_section): Likewise.
3887 * object.cc (need_decompressed_section): New function.
3888 (build_compressed_section_map): Decompress sections needed later.
3889 (Sized_relobj_file::do_decompressed_section_contents): New function.
3890 (Sized_relobj_file::do_discard_decompressed_sections): New function.
3891 * object.h (Object::decompressed_section_contents): New function.
3892 (Object::discard_decompressed_sections): New function.
3893 (Object::do_decompressed_section_contents): New function.
3894 (Object::do_discard_decompressed_sections): New function.
3895 (Compressed_section_info): New type.
3896 (Compressed_section_map): Include decompressed section contents.
3897 (Sized_relobj_file::do_decompressed_section_contents): New function.
3898 (Sized_relobj_file::do_discard_decompressed_sections): New function.
3899
7b5de7ee
CC
39002012-02-16 Cary Coutant <ccoutant@google.com>
3901
3902 * testsuite/Makefile.am (initpri2): Add --ctors-in-init-array option.
3903 * testsuite/Makefile.in: Regenerate.
3904
f9fa4a63
CC
39052012-02-14 Cary Coutant <ccoutant@google.com>
3906
3907 * options.cc (General_options::finalize): Disallow -pie and -static.
3908
2c175ebc
DK
39092012-02-03 Doug Kwan <dougkwan@google.com>
3910
3911 * arm.cc (Arm_relocate_functions::abs8,
3912 Arm_relocate_functions::abs16): Use
3913 Bits::has_signed_unsigned_overflow32.
3914 (Arm_relocate_functions::thm_abs8): Correct range of
3915 overflow check.
3916 * reloc.h (Bits class): Change minimum number of bits from 0 to 1
3917 in assertions.
3918
90cff06f
DK
39192012-02-02 Doug Kwan <dougkwan@google.com>
3920
3921 * arm.cc (Reloc_stub::stub_type_for_reloc): Use PIC stubs in all
3922 position independent outputs, not just shared objects.
3923
63887f3d
L
39242012-01-30 H.J. Lu <hongjiu.lu@intel.com>
3925
3926 * configure.ac: Check if -fpic -mtls-dialect=gnu2 works.
3927 * configure: Regenerated.
3928
bef2b434
ILT
39292012-01-27 Ian Lance Taylor <iant@google.com>
3930
3931 * reloc.h (Bits): New class with static functions, copied from
3932 namespace utils in arm.cc.
3933 * arm.cc (namespace utils): Remove. Rewrite all uses to use Bits
3934 instead.
3935
c335b55d
L
39362012-01-27 H.J. Lu <hongjiu.lu@intel.com>
3937
3938 * incremental.cc (write_info_blocks): Correct relocation offset.
3939
41194d9f
L
39402012-01-27 H.J. Lu <hongjiu.lu@intel.com>
3941
3942 * x86_64.cc (Relocate::tls_gd_to_ie): Support x32.
3943 (Relocate::tls_gd_to_le): Likewise.
3944
1bae613c
L
39452012-01-27 H.J. Lu <hongjiu.lu@intel.com>
3946
3947 * x86_64.cc (Scan::global): Support x32 IFUNC function pointer.
3948
24482ca0
L
39492012-01-27 H.J. Lu <hongjiu.lu@intel.com>
3950
3951 * configure.ac: Check if -mcmodel=medium works.
3952 * configure: Regenerated.
3953
c2c7840a
CC
39542012-01-24 Cary Coutant <ccoutant@google.com>
3955
3956 * int_encoding.cc (read_unsigned_LEB_128): Replaced with inline
3957 definition and ...
3958 (read_unsigned_LEB_128_x): ... this new function.
3959 (read_signed_LEB_128): Replaced with inline definition and ...
3960 (read_signed_LEB_128_x): ... this new function.
3961 * int_encoding.h (read_unsigned_LEB_128_x): New function.
3962 (read_unsigned_LEB_128): Add inline definition.
3963 (read_signed_LEB_128_x): New function.
3964 (read_signed_LEB_128): Add inline definition.
3965 * testsuite/Makefile.am (leb128_unittest): New unit test.
3966 * testsuite/Makefile.in: Regenerate.
3967 * testsuite/leb128_unittest.cc: New unit test.
3968
833de760 39692012-01-23 Ian Lance Taylor <iant@google.com>
9dee3b3c
ILT
3970
3971 PR gold/13617
3972 * i386.cc (Target_i386::do_code_fill): When using a jmp
3973 instruction, pad with nop instructions.
3974 * x86_64.cc (Target_x86_64::do_code_fill): Likewise.
3975
618d6666
L
39762012-01-22 H.J. Lu <hongjiu.lu@intel.com>
3977
3978 * x86_64.cc (gc_process_relocs): Add typename on types used in
3979 template.
3980 (scan_relocs): Likewise.
3981 (relocate_section): Likewise.
3982 (apply_relocation): Likewise.
3983
3660ff06
L
39842012-01-10 H.J. Lu <hongjiu.lu@intel.com>
3985
3986 * x86_64.cc (Scan::check_non_pic): Allow R_X86_64_32 for x32.
3987 (Scan::local): Use R_X86_64_RELATIVE relocation for R_X86_64_32
3988 under x32.
3989
fc51264f
L
39902012-01-09 H.J. Lu <hongjiu.lu@intel.com>
3991
3992 * x86_64.cc: Initial support for x32.
3993
dd74ae06
CC
39942012-01-03 Cary Coutant <ccoutant@google.com>
3995
3996 * gold/incremental.cc (Sized_incremental_binary::do_process_got_plt):
3997 Use abstract base class for GOT.
3998 * gold/output.h (class Output_data_got_base): New abstract base class.
3999 (class Output_data_got): Derive from new base class, adjust ctors.
4000 (Output_data_got::reserve_slot): Make virtual; rename to
4001 do_reserve_slot; Adjust callers.
4002 * gold/target.h (Sized_target::init_got_plt_for_update): Return
4003 pointer to abstract base class.
4004 * gold/x86_64.cc (Target_x86_64::init_got_plt_for_update): Likewise.
4005
83896202
ILT
40062011-12-18 Ian Lance Taylor <iant@google.com>
4007
4008 * object.h (Relobj::local_symbol_value): New function.
4009 (Relobj::local_plt_offset): New function.
4010 (Relobj::local_has_got_offset): New function.
4011 (Relobj::local_got_offset): New function.
4012 (Relobj::set_local_got_offset): New function.
4013 (Relobj::do_local_symbol_value): New pure virtual function.
4014 (Relobj::do_local_plt_offset): Likewise.
4015 (Relobj::do_local_has_got_offset): Likewise.
4016 (Relobj::do_local_got_offset): Likewise.
4017 (Relobj::do_set_local_got_offset): Likewise.
4018 (Sized_relobj::do_local_has_got_offset): Rename from
4019 local_has_got_offset.
4020 (Sized_relobj::do_local_got_offset): Rename from local_got_offset.
4021 (Sized_relobj::do_set_local_got_offset): Rename from
4022 set_local_got_offset.
4023 (Sized_relobj_file::do_local_plt_offset): Rename from
4024 local_plt_offset.
4025 (Sized_relobj_file::do_local_symbol_value): New function.
4026 * object.cc (Sized_relobj_file::do_local_plt_offset): Rename from
4027 local_plt_offset.
4028 * output.cc (Output_data_got::Got_entry::write): Change object to
4029 Relobj. Use local_symbol_value.
4030 (Output_data_got::add_global_with_rel): Change rel_dyn to
4031 Output_data_reloc_generic*. Use add_global_generic.
4032 (Output_data_got::add_global_with_rela): Remove. Change all
4033 callers to use add_global_with_rel.
4034 (Output_data_got::add_global_pair_with_rel): Change rel_dyn to
4035 Output_data_reloc_generic*. Use add_global_generic.
4036 (Output_data_got::add_global_pair_with_rela): Remove. Change all
4037 callers to use add_global_pair_with_rel.
4038 (Output_data_got::add_local): Change object to Relobj*.
4039 (Output_data_got::add_local_plt): Likewise.
4040 (Output_data_got::add_local_with_rel): Change object to Relobj*,
4041 change rel_dyn to Output_data_reloc_generic*. Use
4042 add_local_generic.
4043 (Output_data_got::add_local_with_rela): Remove. Change all
4044 callers to use all_local_with_rel.
4045 (Output_data_got::add_local_pair_with_rel): Change object to
4046 Relobj*, change rel_dyn to Output_data_reloc_generic*. Use
4047 add_output_section_generic.
4048 (Output_data_got::add_local_pair_with_rela): Remove. Change all
4049 callers to use add_local_pair_with_rel.
4050 (Output_data_got::reserve_local): Change object to Relobj*.
4051 * output.h: (class Output_data_reloc_generic): Add pure virtual
4052 declarations for add_global_generic, add_local_generic,
4053 add_output_section_generic.
4054 (class Output_data_reloc) [SHT_REL, SHT_RELA]: Implement new
4055 functions for Output_data_reloc_generic. Update declarations for
4056 changes listed in output.cc.
4057 (class Output_data_got): Change template parameter to got_size.
4058 Don't define Rel_dyn or Rela_dyn. Update declarations per above.
4059 * incremental.h (Sized_relobj_incr::do_local_symbol_value): New
4060 function.
4061 (Sized_relobj_incr::do_local_plt_offset): New function.
4062 * copy-relocs.cc (Copy_relocs::Copy_reloc_entry::emit): Call
4063 add_global_generic.
4064
76677ad0
CC
40652011-12-17 Cary Coutant <ccoutant@google.com>
4066
4067 * dwarf_reader.cc (Sized_dwarf_line_info::read_lines): Add casts.
4068 * resolve.cc (Symbol_table::resolve): Likewise.
4069 * i386.cc (Target_i386::do_code_fill): Use char constants for nop
4070 arrays.
4071 * x86_64.cc (Target_x86_64::do_code_fill): Likewise.
4072
8b8dd8d5
ILT
40732011-12-16 Ian Lance Taylor <iant@google.com>
4074
4075 * output.h (Output_data_reloc_generic::add): Only call
4076 add_dynamic_reloc if this is a dynamic reloc section.
4077
d55525b9
L
40782011-12-15 H.J. Lu <hongjiu.lu@intel.com>
4079
4080 PR gold/13505
4081 * target-reloc.h (apply_relocation): Replace <64, false> with
4082 <size, big_endian>.
4083
ff81c7c1
NC
40842011-11-25 Nick Clifton <nickc@redhat.com>
4085
4086 * po/it.po: New Italian translation.
4087
628f39be
SA
40882011-11-17 Sterling Augustine <saugustine@google.com>
4089
4090 * script.cc (script_include_directive): Implement.
4091 (read_script_file): New local variables name and search_path. Update
4092 comment. Call IS_ABSOLUTE_PATH and Dirsearch::find_file_in_dir_list.
4093 * dirsearch.h (Dirsearch::find_file_in_dir_list): Declare new method.
4094 * dirsearch.cc (Dirsearch::find_file_in_dir_list): Implement it.
4095
98ef3ea4
SA
40962011-11-11 Sterling Augustine <saugustine@google.com>
4097
4098 * yyscript.y (section_cmd): Add support for INCLUDE directive.
4099 (file_or_sections_cmd): Likewise.
4100
f4a8b6d7
DK
41012011-11-11 Doug Kwan <dougkwan@google.com>
4102
4103 * arm.cc (Target_arm::do_make_elf_object): Allow executable also
4104 if --just-symbols is given.
4105
29ab395d
DK
41062011-11-10 Doug Kwan <dougkwan@google.com>
4107
4108 PR gold/13362
4109 * arm.cc (Target_arm::Relocate::relocate_tls): Do unaligned accesses
4110 when processing data relocs.
4111 * reloc.h (Relocate_functions::rel_unaligned): New method.
4112 (Relocate_functions::pcrel_unaligned): Ditto.
4113 (Relocate_functions::rel32_unaligned): Ditto.
4114 (Relocate_functions::pcrel32_unaligned): Ditto.
4115
2c339f71
DK
41162011-11-09 Doug Kwan <dougkwan@google.com>
4117
4118 PR gold/13362
4119 * arm.cc (Arm_scan_relocatable_relocs::Default_scan_relocatable_relocs):
4120 Use unaligned 4-byte relocs for static 32-bit data as required by EABI.
4121 * reloc.h (Relocatable_relocs::Reloc_strategy): New enum
4122 RELOC_ADJUST_FOR_SECTION_4_UNALIGNED.
4123 (Relocate_functions::rel_unaligned): New.
4124 (Relocate_functions::rel32_unaligned): New.
4125 * target-reloc.h (relocate_for_relocatable): Add code to handle
4126 RELOC_ADJUST_FOR_SECTION_4_UNALIGNED.
4127 * testsuite/Makefile.am (arm_unaligned_reloc_r.stdout,
4128 arm_unaligned_reloc_r): New targets.
4129 * testsuite/Makefile.in: Regenerate.
4130 * arm_unaligned_reloc.sh: Check unaligned relocs in relocatable
4131 linking.
4132
3f3cddf1
ILT
41332011-11-02 Ian Lance Taylor <iant@google.com>
4134
4135 * configure.ac: Add --with-lib-path option. Define LIB_PATH and
4136 NATIVE_LINKER.
4137 * Makefile.am (AM_CPPFLAGS): Define TOOLLIBDIR.
4138 * options.cc (General_options::finalize): Use library search path
4139 from configure script if specified. If not native and no sysroot,
4140 only search TOOLLIBDIR.
4141 * options.h (Search_directory::Search_directory): Change name to
4142 const std::string&.
4143 (General_options::add_to_library_path_with_sysroot): Change arg to
4144 const std::string&.
4145 * configure, Makefile.in, config.in: Rebuild.
4146
a8e2273b
ILT
41472011-11-02 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
4148
4149 * arm.cc (Target_arm::may_use_v5t_interworking): Check whether
4150 we are working around the ARM1176 Erratum.
4151 * options.h (General_options::fix_arm1176): Add option.
4152 * testsuite/Makefile.am: Add testcases, and keep current ones
4153 working.
4154 * testsuite/Makefile.in: Regenerate.
4155 * testsuite/arm_fix_1176.s: New file.
4156 * testsuite/arm_fix_1176.sh: Likewise.
4157
cd6eab1c
ILT
41582011-11-02 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
4159
4160 * arm.cc (Target_arm::Target_arm): Remove initialisation of
4161 may_use_blx_.
4162 (Target_arm::may_use_blx): Remove method.
4163 (Target_arm::set_may_use_blx): Likewise.
4164 (Target_arm::may_use_v4t_interworking): New method.
4165 (Target_arm::may_use_v5t_interworking): Likewise.
4166 (Target_arm::may_use_blx_): Remove member variable.
4167 (Arm_relocate_functions::arm_branch_common): Check for v5T
4168 interworking.
4169 (Arm_relocate_functions::thumb_branch_common): Likewise.
4170 (Reloc_stub::stub_type_for_reloc): Likewise.
4171 (Target_arm::do_finalize_sections): Correct interworking checks.
4172 * testsuite/Makefile.am: Add new tests.
4173 * testsuite/Makefile.in: Regenerate.
4174 * testsuite/arm_farcall_arm_arm.s: New test.
4175 * testsuite/arm_farcall_arm_arm.sh: Likewise.
4176 * testsuite/arm_farcall_arm_thumb.s: Likewise.
4177 * testsuite/arm_farcall_arm_thumb.sh: Likewise.
4178 * testsuite/arm_farcall_thumb_arm.s: Likewise.
4179 * testsuite/arm_farcall_thumb_arm.sh: Likewise.
4180 * testsuite/arm_farcall_thumb_thumb.s: Likewise.
4181 * testsuite/arm_farcall_thumb_thumb.sh: Likewise.
4182
286adcf4
CC
41832011-10-31 Cary Coutant <ccoutant@google.com>
4184
4185 PR gold/13023
4186 * expression.cc (Expression::eval_with_dot): Add
4187 is_section_dot_assignment parameter.
4188 (Expression::eval_maybe_dot): Likewise. Adjust value when rhs is
4189 absolute and assigning to dot within a section.
4190 * script-sections.cc
4191 (Output_section_element_assignment::set_section_addresses): Pass
4192 dot_section to set_if_absolute.
4193 (Output_section_element_dot_assignment::finalize_symbols): Pass TRUE
4194 as is_section_dot_assignment flag to eval_with_dot.
4195 (Output_section_element_dot_assignment::set_section_addresses):
4196 Likewise.
4197 * script.cc (Symbol_assignment::set_if_absolute): Add dot_section
4198 parameter. Also set value if relative to dot_section; set the
4199 symbol's output_section.
4200 * script.h (Expression::eval_with_dot): Add is_section_dot_assignment
4201 parameter. Adjust all callers.
4202 (Expression::eval_maybe_dot): Likewise.
4203 (Symbol_assignment::set_if_absolute): Add dot_section parameter.
4204 Adjust all callers.
4205 * testsuite/script_test_2.t: Test assignment of an absolute value
4206 to dot within an output section element.
4207
9634ed06
CC
42082011-10-31 Cary Coutant <ccoutant@google.com>
4209
4210 * options.h (class General_options): Add --[no-]gnu-unique options.
4211 * symtab.cc (Symbol_table::sized_write_globals): Convert
4212 STB_GNU_UNIQUE to STB_GLOBAL if --no-gnu-unique.
4213
de4101c7
CC
42142011-10-31 Cary Coutant <ccoutant@google.com>
4215
4216 PR gold/13359
4217 * i386.cc (Target_i386::Relocate::relocate_tls): Remove
4218 unnecessary assertion.
4219 * x86_64.cc (Target_x86_64::Relocate::relocate_tls): Likewise.
4220
7257cc92
ST
42212011-10-31 Sriraman Tallam <tmsriram@google.com>
4222
4223 * symtab.h (Symbol_table::gc_mark_symbol_for_shlib): Rename to
4224 gc_mark_symbol.
4225 * symtab.cc (Symbol_table::gc_mark_symbol_for_shlib): Rename to
4226 gc_mark_symbol.
4227 Change to just keep the section associated with symbol.
4228 (Symbol_table::add_from_relobj): Mark symbols as not garbage when
4229 they are externally visible and --export-dynamic is turned on.
4230 (Symbol_table::gc_mark_dyn_syms): Call gc_mark_symbol.
4231
bfc34b3f
ILT
42322011-10-19 Ian Lance Taylor <iant@google.com>
4233
4234 PR gold/13163
4235 * script-sections.cc
4236 (Output_section_element_dot_assignment::needs_output_section): New
4237 function.
4238
ea0d8c47
ILT
42392011-10-19 Ian Lance Taylor <iant@google.com>
4240
4241 PR gold/13204
4242 * layout.cc (Layout::segment_precedes): Don't assert failure if a
4243 --section-start option was seen.
4244 * options.h (General_options::any_section_start): New function.
4245
abd242a9
DM
42462011-10-18 David S. Miller <davem@davemloft.net>
4247
4248 PR binutils/13301
4249 * sparc.cc (Target_sparc::Relocate::reloc_adjust_addr_): New
4250 member to track relocation locations that have moved during TLS
4251 reloc optimizations.
4252 (Target_sparc::Relocate::Relocate): Initialize to NULL.
4253 (Target_sparc::Relocate::relocate): Adjust view down by 4
4254 bytes if it matches reloc_adjust_addr_.
4255 (Target_sparc::Relocate::relocate_tls): Always move the
4256 __tls_get_addr call delay slot instruction forward 4 bytes when
4257 performing relaxation.
4258
bab9090f
CC
42592011-10-18 Cary Coutant <ccoutant@google.com>
4260
4261 * output.cc (posix_fallocate): Return 0 on success, errno on failure.
4262 (Output_file::map_no_anonymous): Check for non-zero
4263 return code from posix_fallocate.
4264
f7c5b166
CC
42652011-10-17 Cary Coutant <ccoutant@google.com>
4266
4267 PR gold/13245
4268 * plugin.cc (is_visible_from_outside): Check for symbols
4269 referenced from dynamic objects.
4270 * resolve.cc (Symbol_table::resolve): Don't count references
4271 from dynamic objects as references from real ELF files.
4272 * testsuite/plugin_test_2.sh: Adjust expected result.
4273
b490c0bb
CC
42742011-10-17 Cary Coutant <ccoutant@google.com>
4275
4276 * gold.cc: Include timer.h.
4277 (queue_middle_tasks): Stamp time.
4278 (queue_final_tasks): Likewise.
4279 * main.cc (main): Store timer in parameters. Print timers
4280 for each pass.
4281 * parameters.cc (Parameters::Parameters): Initialize timer_.
4282 (Parameters::set_timer): New function.
4283 (set_parameters_timer): New function.
4284 * parameters.h (Parameters::set_timer): New function.
4285 (Parameters::timer): New function.
4286 (Parameters::timer_): New data member.
4287 (set_parameters_timer): New function.
4288 * timer.cc (Timer::stamp): New function.
4289 (Timer::get_pass_time): New function.
4290 * timer.h (Timer::stamp): New function.
4291 (Timer::get_pass_time): New function.
4292 (Timer::pass_times_): New data member.
4293
f475cf7b
CC
42942011-10-17 Cary Coutant <ccoutant@google.com>
4295
4296 * readsyms.cc (Read_symbols::run): Don't queue an unblocker
4297 task for members of lib groups.
4298
cdd7e244
CC
42992011-10-17 Cary Coutant <ccoutant@google.com>
4300
4301 PR gold/13288
4f95c8b4 4302 * fileread.cc (File_read::find_view): Add assert.
cdd7e244
CC
4303 (File_read::make_view): Move bounds check (replace with assert)...
4304 (File_read::find_or_make_view): ... to here.
4305
dfb45471
CC
43062011-10-12 Cary Coutant <ccoutant@google.com>
4307
4f95c8b4 4308 * output.cc (Output_file::open_base_file): Handle case where
dfb45471
CC
4309 ::read returns less than requested size.
4310
53bbcc1b
CC
43112011-10-10 Cary Coutant <ccoutant@google.com>
4312
4f95c8b4 4313 * incremental.cc (Sized_relobj_incr::Sized_relobj_incr):
53bbcc1b
CC
4314 Initialize defined_count_.
4315 (Sized_relobj_incr::do_add_symbols): Count defined symbols.
4316 (Sized_relobj_incr::do_get_global_symbol_counts): Rewrite.
4317 (Sized_incr_dynobj::Sized_incr_dynobj): Initialize defined_count_.
4318 (Sized_incr_dynobj::do_add_symbols): Count defined symbols.
4319 (Sized_incr_dynobj::do_get_global_symbol_counts): Rewrite.
4f95c8b4 4320 * incremental.h (Sized_relobj_incr::defined_count_): New data
53bbcc1b
CC
4321 member.
4322 (Sized_incr_dynobj::defined_count_): New data member.
4f95c8b4 4323 * plugin.cc (Sized_pluginobj::do_get_global_symbol_counts):
53bbcc1b
CC
4324 Return zeroes instead of internal error.
4325
397b129b
CC
43262011-10-10 Cary Coutant <ccoutant@google.com>
4327
4328 PR gold/13249
4f95c8b4 4329 * output.cc (Output_reloc::Output_reloc): Add use_plt_offset flag.
397b129b 4330 (Output_reloc::symbol_value): Return PLT offset if flag is set.
4f95c8b4 4331 * output.h (class Output_reloc): Add use_plt_offset flag.
397b129b
CC
4332 (Output_reloc::type_): Adjust size of bit field.
4333 (Output_reloc::use_plt_offset_): New bit field.
4334 (class Output_data_reloc): Adjust all calls to Output_reloc_type.
4335 (Output_data_reloc::add_local_relative): (RELA only) Add use_plt_offset
4336 flag. Adjust all callers.
4f95c8b4 4337 * x86_64.cc (Target_x86_64::Scan::local): Check for IFUNC when
397b129b
CC
4338 creating RELATIVE relocations.
4339
d5698657
NC
43402011-10-10 Nick Clifton <nickc@redhat.com>
4341
4342 * po/es.po: Updated Spanish translation.
4343 * po/fi.po: Updated Finnish translation.
4344
6a59a5c2
DN
43452011-10-03 Diego Novillo <dnovillo@google.com>
4346
4347 * options.cc (parse_uint): Fix dereference of RETVAL.
4348
f0558624
ST
43492011-09-29 Sriraman Tallam <tmsriram@google.com>
4350
4351 * layout.h (section_order_map_): New member.
4352 (get_section_order_map): New member function.
4353 * output.cc (Output_section::add_input_section): Check for patterns
4354 only when --section-ordering-file is specified.
4355 * gold.cc (queue_middle_tasks): Delay updating order of sections till
4356 output_sections have been formed.
4357 * layout.cc (Layout_Layout): Initialize section_order_map_.
4358 * plugin.cc (update_section_order): Store order in order_map. Do not
4359 update the order.
4360 * testsuite/Makefile.am: Add test case for plugin_final_layout.
4361 * testsuite/Makefile.in: Regenerate.
4362 * testsuite/plugin_section_order.c: New file.
4363 * testsuite/plugin_final_layout.cc: New file.
4364 * testsuite/plugin_final_layout.sh: New file.
4365
a7dac153
CC
43662011-09-29 Cary Coutant <ccoutant@google.com>
4367
4f95c8b4 4368 * incremental.cc (Sized_incremental_binary::do_process_got_plt):
a7dac153 4369 Check for NULL.
4f95c8b4 4370 * symtab.cc (Symbol_table::add_from_relobj): Ignore version
a7dac153
CC
4371 symbols during incremental update.
4372 (Symbol_table::add_from_dynobj): Likewise.
4373
eebd87a5
ILT
43742011-09-27 Viktor Kutuzov <vkutuzov@accesssoftek.com>
4375 Ian Lance Taylor <iant@google.com>
4376
4377 * symtab.cc (Symbol_table::define_special_symbol): Always
4378 canonicalize version string.
4379
403a3331
CC
43802011-09-26 Cary Coutant <ccoutant@google.com>
4381
4f95c8b4
CC
4382 * gold.cc (queue_initial_tasks): Move option checks ...
4383 * options.cc (General_options::finalize): ... to here. Disable
403a3331
CC
4384 some options; make others fatal.
4385
235061c2
CC
43862011-09-26 Cary Coutant <ccoutant@google.com>
4387
4388 gcc PR lto/47247
4389 * plugin.cc (get_symbols_v2): New function.
4390 (Plugin::load): Add LDPT_GET_SYMBOLS_V2.
4391 (is_referenced_from_outside): New function.
4392 (Pluginobj::get_symbol_resolution_info): Add version parameter, return
4393 LDPR_PREVAILING_DEF_IRONLY_EXP when using new version.
4394 (get_symbols): Pass version parameter.
4395 (get_symbols_v2): New function.
4396 * plugin.h (Pluginobj::get_symbol_resolution_info): Add version
4397 parameter.
4398 * testsuite/plugin_test.c (get_symbols_v2): New static variable.
4399 (onload): Add LDPT_GET_SYMBOLS_V2.
4400 (all_symbols_read_hook): Use get_symbols_v2; check for
4401 LDPR_PREVAILING_DEF_IRONLY_EXP.
4402 * testsuite/plugin_test_3.sh: Update expected results.
4403
dc87f620
ILT
44042011-09-23 Simon Baldwin <simonb@google.com>
4405
4406 * configure.ac: Add new --with-gold-ldadd and --with-gold-ldflags
4407 configuration options.
4408 * configure: Regenerate.
4409 * Makefile.am: Handle GOLD_LDADD and GOLD_LDFLAGS.
4410 * Makefile.in: Regenerate.
4411 * testsuite/Makefile.in: Regenerate.
4412
a8279f82
ST
44132011-09-19 Sriraman Tallam <tmsriram@google.com>
4414
4415 * plugin.h (should_defer_layout): Modify to check for any_claimed_.
4416
0c9350c8
CC
44172011-09-19 Cary Coutant <ccoutant@google.com>
4418
4419 * incremental.cc (can_incremental_update): Fix typo in comment.
4420 * incremental.h (can_incremental_update): Likewise.
4421
aa06ae28
CC
44222011-09-18 Cary Coutant <ccoutant@google.com>
4423
4424 * incremental.cc (can_incremental_update): New function.
4425 * incremental.h (can_incremental_update): New function.
4426 * layout.cc (Layout::init_fixed_output_section): Call it.
4427 (Layout::make_output_section): Don't allow patch space in .eh_frame.
4428 * object.cc (Sized_relobj_file::do_layout): Call
4429 can_incremental_update.
4430
ebb300b2
CC
44312011-09-13 Cary Coutant <ccoutant@google.com>
4432
4433 * configure.ac: Check for glibc support for gnu_indirect_function
4434 support with static linking, setting automake conditional
4435 IFUNC_STATIC.
4436 * Makefile.in: Regenerate.
4437 * configure: Regenerate.
4438
4439 * testsuite/Makefile.am (ifuncmain1static, ifuncmain2static)
4440 (ifuncmain4static, ifuncmain5static, ifuncmain7static): Add check
4441 for IFUNC_STATIC.
4442 * testsuite/Makefile.in: Regenerate.
4443
1206d0d5
CC
44442011-09-13 Cary Coutant <ccoutant@google.com>
4445
4446 * incremental.cc (Sized_relobj_incr::do_layout): Call
4447 report_comdat_group for kept comdat sections.
4448 * testsuite/Makefile.am (incremental_comdat_test_1): New test.
4449 * testsuite/Makefile.in: Regenerate.
4450 * testsuite/incr_comdat_test_1.cc: New source file.
4451 * testsuite/incr_comdat_test_2_v1.cc: New source file.
4452 * testsuite/incr_comdat_test_2_v2.cc: New source file.
4453 * testsuite/incr_comdat_test_2_v3.cc: New source file.
4454
40b29874
ILT
44552011-09-13 Ian Lance Taylor <iant@google.com>
4456
4457 * object.cc (Sized_relobj_file::do_layout): Remove unused local
4458 variable external_symbols_offset.
4459
1b045aac
ILT
44602011-09-12 Ian Lance Taylor <iant@google.com>
4461
4462 * object.cc (Sized_relobj_file::do_layout): Remove assertion which
4463 triggered if object has no symbols.
4464
24c6c55a
DM
44652011-09-09 David S. Miller <davem@davemloft.net>
4466
4467 * output.cc (Output_fill_debug_info::do_write): Use Swap_unaligned.
4468 (Output_fill_debug_line::do_write): Likewise.
4469
66570254
CC
44702011-08-29 Cary Coutant <ccoutant@google.com>
4471
4472 * output.cc: (Output_fill_debug_info::do_minimum_hole_size): Add
4473 casts to match formatting specs.
4474 (Output_fill_debug_line::do_minimum_hole_size): Likewise.
4475
8ea8cd50
CC
44762011-08-26 Cary Coutant <ccoutant@google.com>
4477
4478 * layout.cc (Free_list::allocate): Provide guarantee of minimum
4479 remaining hole size when allocating.
4480 (Layout::make_output_section): Set fill methods for debug sections.
4481 * layout.h (Free_list::Free_list_node): Move from private to
4482 public.
4483 (Free_list::set_min_hole_size): New function.
4484 (Free_list::begin, Free_list::end): New functions.
4485 (Free_list::min_hole_): New data member.
4486 * output.cc: Include dwarf.h.
4487 (Output_fill_debug_info::do_minimum_hole_size): New function.
4488 (Output_fill_debug_info::do_write): New function.
4489 (Output_fill_debug_line::do_minimum_hole_size): New function.
4490 (Output_fill_debug_line::do_write): New function.
4491 (Output_section::Output_section): Initialize new data member.
4492 (Output_section::set_final_data_size): Ensure patch space is larger
4493 than minimum hole size.
4494 (Output_section::do_write): Fill holes in debug sections.
4495 * output.h (Output_fill): New class.
4496 (Output_fill_debug_info): New class.
4497 (Output_fill_debug_line): New class.
4498 (Output_section::set_free_space_fill): New function.
4499 (Output_section::free_space_fill_): New data member.
4500 * testsuite/Makefile.am (incremental_test_3): Add
4501 --incremental-patch option.
4502 (incremental_test_4): Likewise.
4503 (incremental_test_5): Likewise.
4504 (incremental_test_6): Likewise.
4505 (incremental_copy_test): Likewise.
4506 (incremental_common_test_1): Likewise.
4507 * testsuite/Makefile.in: Regenerate.
4508
7cf80422
NC
45092011-08-26 Nick Clifton <nickc@redhat.com>
4510
4511 * po/es.po: Updated Spanish translation.
4512
c3f7b0e5
CC
45132011-08-01 Cary Coutant <ccoutant@google.com>
4514
4515 * gold/testsuite/Makefile.am (justsyms_exec): New testcase.
4516 * gold/testsuite/Makefile.in: Regenerate.
4517 * gold/testsuite/justsyms_exec.c: New source file.
4518 * gold/testsuite/justsyms_lib.c: New source file.
4519
9590bf25
CC
45202011-08-01 Cary Coutant <ccoutant@google.com>
4521
4522 * layout.cc (Layout::set_segment_offsets): Don't realign text
4523 segment if -Ttext was specified.
4524 * object.cc (Sized_relobj_file::Sized_relobj_file): Store the ELF
4525 file type.
4526 * object.h (Sized_relobj_file::e_type): New function.
4527 (Sized_relobj_file::e_type_): New data member.
4528 * symtab.cc (Symbol_table::add_from_relobj): Don't add section
4529 base address for ET_EXEC files.
4530 * target.cc (Target::do_make_elf_object_implementation): Allow
4531 ET_EXEC files with --just-symbols option.
4532
dcd8d12e
CC
45332011-07-28 Cary Coutant <ccoutant@google.com>
4534
4535 * workqueue-internal.h (Workqueue_threader::should_cancel_thread):
4536 Add thread_number parameter.
4537 (Workqueue_threader_threadpool::should_cancel_thread): Likewise.
4538 * workqueue-threads.cc
4539 (Workqueue_threader_threadpool::should_cancel_thread): Cancel
4540 current thread if its thread number is greater than desired thread
4541 count.
4542 * workqueue.cc (Workqueue_threader_single::should_cancel_thread):
4543 Add thread_number parameter.
4544 (Workqueue::should_cancel_thread): Likewise.
4545 (Workqueue::find_runnable_or_wait): Pass thread_number to
4546 should_cancel_thread.
4547 * workqueue.h (Workqueue::should_cancel_thread): Add thread_number
4548 parameter.
4549
804eb480
ST
45502011-07-22 Sriraman Tallam <tmsriram@google.com>
4551
4552 * symtab.cc (Symbol_table::add_from_relobj): Mark symbol as referenced
4553 only after checking if it cannot be forced local.
4554 * symtab.h (is_externally_visible): Check if the symbol is not forced
4555 local.
4556
f1ddb600
ILT
45572011-07-15 Ian Lance Taylor <iant@google.com>
4558
4559 * options.h (class General_options): Add --print-output-format.
4560 Move -EL next to -EB, for better --help output.
4561 * target-select.cc: Include <cstdio>, "options.h", and
4562 "parameters.h".
4563 (Target_selector::do_target_bfd_name): New function.
4564 (print_output_format): New function.
4565 * target-select.h (class Target_selector): Update declarations.
4566 (Target_selector::target_bfd_name): New function.
4567 (print_output_format): Declare.
4568 * main.cc: Include "target-select.h".
4569 (main): Handle --print-output-format.
4570 * gold.cc: Include "target-select.h".
4571 (queue_initial_tasks): Handle --print-output-format when there are
4572 no input files.
4573 * parameters.cc (parameters_force_valid_target): Give a better
4574 error message if -EB/-EL does not match target.
4575 * freebsd.h (Target_selector_freebsd::do_target_bfd_name): New
4576 function.
4577
7d172687
ILT
45782011-07-15 Ian Lance Taylor <iant@google.com>
4579
4580 * i386.cc (class Output_data_plt_i386): Add layout_ field.
4581 (Output_data_plt_i386::Output_data_plt_i386): Initialize layout_.
4582 (Output_data_plt_i386::do_write): Write address of .dynamic
4583 section to first entry in .got.plt section.
4584 * x86_64.cc (class Output_data_plt_x86_64): Add layout_ field.
4585 (Output_data_plt_x86_64::Output_data_plt_x86_64) [both versions]:
4586 Initialize layout_.
4587 (Output_data_plt_x86_64::do_write): Write address of .dynamic
4588 section to first entry in .got.plt section.
4589 * layout.h (Layout::dynamic_section): New function.
4590
e9552f7e
ST
45912011-07-13 Sriraman Tallam <tmsriram@google.com>
4592
4593 * archive.cc (Archive::get_elf_object_for_member): Add extra parameter
4594 to claim_file call.
4595 * layout.cc (Layout::Layout): Initialize section_ordering_specified_,
4596 input_section_position_, and input_section_glob_.
4597 (read_layout_from_file): Call function section_ordering_specified.
4598 * layout.h (is_section_ordering_specified): New function.
4599 (section_ordering_specified): New function.
4600 (section_ordering_specified_): New boolean member.
4601 * main.cc(main): Call load_plugins after layout object is defined.
4602 * output.cc (Output_section::add_input_section): Use
4603 function section_ordering_specified to check if section ordering is
4604 needed.
4605 * output.cc (Output_section::add_relaxed_input_section): Use
4606 function section_ordering_specified to check if section ordering is
4607 needed.
4608 (Output_section::update_section_layout): New function.
4609 (Output_section::sort_attached_input_sections): Check if input section
4610 must be reordered.
4611 * output.h (Output_section::update_section_layout): New function.
4612 * plugin.cc (get_section_count): New function.
4613 (get_section_type): New function.
4614 (get_section_name): New function.
4615 (get_section_contents): New function.
4616 (update_section_order): New function.
58797674 4617 (allow_section_ordering): New function.
e9552f7e
ST
4618 (Plugin::load): Add the new interfaces to the transfer vector.
4619 (Plugin_manager::load_plugins): New parameter.
4620 (Plugin_manager::all_symbols_read): New parameter.
4621 (Plugin_manager::claim_file): New parameter. Save the elf object for
4622 unclaimed objects.
4623 (Plugin_manager::get_elf_object): New function.
4624 (Plugin_manager::get_view): Change to directly use the bool to check
4625 if get_view is called from claim_file_hook.
4626 * plugin.h (input_objects): New function
4627 (Plugin__manager::load_plugins): New parameter.
4628 (Plugin_manager::claim_file): New parameter.
4629 (Plugin_manager::get_elf_object): New function.
4630 (Plugin_manager::in_claim_file_handler): New function.
4631 (Plugin_manager::in_claim_file_handler_): New member.
4632 (layout): New function.
4633 * readsyms.cc (Read_symbols::do_read_symbols): Call the claim_file
4634 handler with an extra parameter. Make the elf object before calling
4635 claim_file handler.
4636 * testsuite/plugin_test.c (get_section_count): New function pointer.
4637 (get_section_type): New function pointer.
4638 (get_section_name): New function pointer.
4639 (get_section_contents): New function pointer.
4640 (update_section_order): New function pointer.
4641 (allow_section_ordering): New function pointer.
4642 (onload): Check if the new interfaces exist.
4643
9446efde
ILT
46442011-07-13 Ian Lance Taylor <iant@google.com>
4645
4646 * i386.cc (Target_i386::got_section): If -z now, make .got.plt a
4647 relro section.
4648 * x86_64.cc (Target_x86_64::got_section): Likewise.
4649 * testsuite/Makefile.am (check_PROGRAMS): Add relro_now_test.
4650 (relro_now_test_SOURCES): New variable.
4651 (relro_now_test_DEPENDENCIES): New variable.
4652 (relro_now_test_LDFLAGS): New variable.
4653 (relro_now_test_LDADD): New variable.
4654 (relro_now_test.so): New target.
4655 * testsuite/Makefile.in: Rebuild.
4656
07aa62f2
ILT
46572011-07-12 Ian Lance Taylor <iant@google.com>
4658
4659 PR gold/12980
4660 * i386.cc (Target_i386::Scan::global): For a GOT reloc, use a
4661 GLOB_DAT relocation rather than a RELATIVE relocation for a
4662 protected symbol when creating a shared library.
4663 * x86_64.cc (Target_x86_64::Scan::global): Likewise.
4664 * testsuite/protected_1.cc (f2, get_f2_addr): New functions.
4665 * testsuite/protected_main_1.cc (main): Test that protected
4666 function has same address.
4667
e2153196
ILT
46682011-07-11 Ian Lance Taylor <iant@google.com>
4669
4670 PR gold/12979
4671 * options.h (class General_options): Add -Bgroup.
4672 * options.cc (General_options::finalize): If -Bgroup is set,
4673 default to --unresolved-symbols=report-all.
4674 * layout.cc (Layout::finish_dynamic_section): Implement -Bgroup.
4675 * target-reloc.h (issue_undefined_symbol_error): Handle
4676 --unresolved-symbols=report-all.
4677
6daf5215
ILT
46782011-07-08 Ian Lance Taylor <iant@google.com>
4679
4680 PR gold/11985
4681 * layout.cc (Layout::create_initial_dynamic_sections): Don't crash
4682 if linker script discards key sections.
4683 (Layout::create_dynamic_symtab): Likewise.
4684 (Layout::assign_local_dynsym_offsets): Likewise.
4685 (Layout::sized_create_version_sections): Likewise.
4686 (Layout::create_interp): Likewise.
4687 (Layout::finish_dynamic_section): Likewise.
4688 (Layout::set_dynamic_symbol_size): Likewise.
4689
beabb2c6
ILT
46902011-07-08 Ian Lance Taylor <iant@google.com>
4691
4692 PR gold/12386
4693 * options.h (class General_options): Add --unresolved-symbols.
4694 * target-reloc.h (issue_undefined_symbol_error): Check
4695 --unresolved-symbols. Add comments.
4696
9c16daf1
ILT
46972011-07-08 Ian Lance Taylor <iant@google.com>
4698
4699 * testsuite/odr_violation2.cc (Ordering::operator()): Make
4700 expression more complex.
4701
191f1a2d
ILT
47022011-07-08 Ian Lance Taylor <iant@google.com>
4703
4704 PR gold/11317
4705 * target-reloc.h (issue_undefined_symbol_error): New inline
4706 function, broken out of relocate_section.
4707 (relocate_section): Call issue_undefined_symbol_error.
4708 * i386.cc (Target_i386::Relocate::relocate_tls): Don't crash if
4709 there is no TLS segment if we are about to issue an undefined
4710 symbol error.
4711 * x86_64.cc (Target_x86_64::relocate_tls): Likewise.
4712
62855347
ILT
47132011-07-08 Ian Lance Taylor <iant@google.com>
4714
4715 PR gold/12279
4716 * resolve.cc (Symbol_table::should_override): Add fromtype
4717 parameter. Change all callers. Give error when linking together
4718 TLS and non-TLS symbol.
4719 (Symbol_table::should_override_with_special): Add fromtype
4720 parameter. Change all callers.
4721 * i386.cc (Target_i386::Relocate::relocate_tls): Don't crash if
4722 there is no TLS segment if we have reported some errors.
4723 * x86_64.cc (Target_x86_64::relocate_tls): Likewise.
4724
67181c72
ILT
47252011-07-08 Ian Lance Taylor <iant@google.com>
4726
4727 PR gold/12372
4728 * target.h (Target::plt_address_for_global): New function.
4729 (Target::plt_address_for_local): New function.
4730 (Target::plt_section_for_global): Remove.
4731 (Target::plt_section_for_local): Remove.
4732 (Target::do_plt_address_for_global): New virtual function.
4733 (Target::do_plt_address_for_local): New virtual function.
4734 (Target::do_plt_section_for_global): Remove.
4735 (Target::do_plt_section_for_local): Remove.
4736 (Target::register_global_plt_entry): Add Symbol_table and Layout
4737 parameters.
4738 * output.cc (Output_data_got::Got_entry::write): Use
4739 plt_address_for_global and plt_address_for_local.
4740 * layout.cc (Layout::add_target_dynamic_tags): Use size and
4741 address of output section.
4742 * i386.cc (class Output_data_plt_i386): Add irelative_rel_,
4743 got_irelative_, and irelative_count_ fields. Update
4744 declarations.
4745 (Output_data_plt_i386::has_irelative_section): New function.
4746 (Output_data_plt_i386::entry_count): Add irelative_count_.
4747 (Output_data_plt_i386::set_final_data_size): Likewise.
4748 (class Target_i386): Add got_irelative_ and rel_irelative_
4749 fields. Update declarations.
4750 (Target_i386::Target_i386): Initialize new fields.
4751 (Target_i386::do_plt_address_for_global): New function replacing
4752 do_plt_section_for_global.
4753 (Target_i386::do_plt_address_for_local): New function replacing
4754 do_plt_section_for_local.
4755 (Target_i386::got_section): Create got_irelative_.
4756 (Target_i386::rel_irelative_section): New function.
4757 (Output_data_plt_i386::Output_data_plt_i386): Initialize new
4758 fields. Don't define __rel_iplt_{start,end}.
4759 (Output_data_plt_i386::add_entry): Add symtab and layout
4760 parameters. Change all callers. Use different PLT and GOT for
4761 IFUNC symbols.
4762 (Output_data_plt_i386::add_local_ifunc_entry): Add symtab and
4763 layout parameters. Change all callers. Use different PLT and
4764 GOT.
4765 (Output_data_plt_i386::rel_tls_desc): Fix formatting.
4766 (Output_data_plt_i386::rel_irelative): New function.
4767 (Output_data_plt_i386::address_for_global): New function.
4768 (Output_data_plt_i386::address_for_local): New function.
4769 (Output_data_plt_i386::do_write): Write out IRELATIVE area. Use
4770 IRELATIVE GOT when changing IFUNC GOT entries.
4771 (Target_i386::Scan::global): Use IRELATIVE GOT for IRELATIVE
4772 reloc.
4773 (Target_i386::do_finalize_sections): Create the __rel_iplt symbols
4774 if we didn't create an IRELATIVE GOT.
4775 (Target_i386::Relocate::relocate): Use plt_address_for_global and
4776 plt_address_for_local.
4777 (Target_i386::do_dynsym_value): Use plt_address_for_global.
4778 * x86_64.cc (class Output_data_plt_x86_64): Add irelative_rel_,
4779 got_irelative_, and irelative_count_ fields. Update
4780 declarations.
4781 (Output_data_plt_x86_64::Output_data_plt_x86_64) [both versions]:
4782 Initialize new fields. Remove symtab parameter. Change all
4783 callers.
4784 (Output_data_plt_x86_64::get_tlsdesc_plt_offset): Add
4785 irelative_count_.
4786 (Output_data_plt_x86_64::has_irelative_section): New function.
4787 (Output_data_plt_x86_64::entry_count): Add irelative_count_.
4788 (class Target_x86_64): Add got_irelative_ and rel_irelative_
4789 fields. Update declarations.
4790 (Target_x86_64::Target_x86_64): Initialize new fields.
4791 (Target_x86_64::do_plt_address_for_global): New function replacing
4792 do_plt_section_for_global.
4793 (Target_x86_64::do_plt_address_for_local): New function replacing
4794 do_plt_section_for_local.
4795 (Target_x86_64::got_section): Create got_irelative_.
4796 (Target_x86_64::rela_irelative_section): New function.
4797 (Output_data_plt_x86_64::init): Remove symtab parameter. Change
4798 all callers. Don't create __rel_iplt_{start,end}.
4799 (Output_data_plt_x86_64::add_entry): Add symtab and layout
4800 parameters. Change all callers. Use different PLT and GOT for
4801 IFUNC symbols.
4802 (Output_data_plt_x86_64::add_local_ifunc_entry): Add symtab and
4803 layout parameters. Change all callers. Use different PLT and
4804 GOT.
4805 (Output_data_plt_x86_64::add_relocation): Add symtab and layout
4806 parameters. Change all callers. Use different PLT and GOT for
4807 IFUNC symbols.
4808 (Output_data_plt_x86_64::rela_tlsdesc): Fix formatting.
4809 (Output_data_plt_x86_64::rela_irelative): New function.
4810 (Output_data_plt_x86_64::address_for_global): New function.
4811 (Output_data_plt_x86_64::address_for_local): New function.
4812 (Output_data_plt_x86_64::set_final_data_size): Likewise.
4813 (Output_data_plt_x86_64::do_write): Write out IRELATIVE area.
4814 (Target_x86_64::init_got_plt_for_update): Create got_irelative_.
4815 (Target_x86_64::register_global_plt_entry): Add symtab and layout
4816 parameters.
4817 (Target_x86_64::Scan::global): Use IRELATIVE GOT for IRELATIVE
4818 reloc.
4819 (Target_x86_64::do_finalize_sections): Create the __rela_iplt
4820 symbols if we didn't create an IRELATIVE GOT.
4821 (Target_x86_64::Relocate::relocate): Use plt_address_for_global and
4822 plt_address_for_local.
4823 (Target_x86_64::do_dynsym_value): Use plt_address_for_global.
4824 * testsuite/ifuncvar1.c: New test file.
4825 * testsuite/ifuncvar2.c: New test file.
4826 * testsuite/ifuncvar3.c: New test file.
4827 * testsuite/Makefile.am (check_PROGRAMS): Add ifuncvar.
4828 (ifuncvar1_pic.o, ifuncvar2_pic.o, ifuncvar.so): New targets.
4829 (ifuncvar_SOURCES, ifuncvar_DEPENDENCIES): New variables.
4830 (ifuncvar_LDFLAGS, ifuncvar_LDADD): New variables.
4831 * testsuite/Makefile.in: Rebuild.
4832
33c15b45
CC
48332011-07-07 Cary Coutant <ccoutant@google.com>
4834
4835 * testsuite/Makefile.am (two_file_test_1_v1_ndebug.o): New target.
4836 (two_file_test_1_ndebug.o): Likewise.
4837 (two_file_test_1b_ndebug.o): Likewise.
4838 (two_file_test_2_ndebug.o): Likewise.
4839 (two_file_test_main_ndebug.o): Likewise.
4840 (incremental_test_2): Link with no-debug versions.
4841
f48b5fb7
CC
48422011-07-06 Cary Coutant <ccoutant@google.com>
4843
4844 * gold/incremental.cc
4845 (Output_section_incremental_inputs::write_info_blocks): Check for
4846 hidden and internal symbols.
4847
221597a5
CC
48482011-07-06 Cary Coutant <ccoutant@google.com>
4849
4850 * incremental.cc (Sized_incremental_binary::do_file_has_changed):
4851 Check disposition for startup file.
4852 (Incremental_inputs::report_command_line): Ignore
4853 --incremental-startup-unchanged option.
4854 * options.cc (General_options::parse_incremental_startup_unchanged):
4855 New function.
4856 (General_options::General_options): Initialize new data member.
4857 * options.h (Incremental_disposition): Add INCREMENTAL_STARTUP.
4858 (General_options): Add --incremental-startup-unchanged option.
4859 (General_options::incremental_startup_disposition): New function.
4860 (General_options::incremental_startup_disposition_): New data member.
4861
e24719f6
CC
48622011-07-06 Cary Coutant <ccoutant@google.com>
4863
4864 * incremental.cc (Sized_incremental_binary::setup_readers): Pass
4865 input file index to Script_info ctor.
4866 (Sized_incremental_binary::do_file_has_changed): Find the
4867 command-line argument for files named in scripts.
4868 * incremental.h (Script_info::Script_info): New ctor
4869 with input file index.
4870 (Script_info::input_file_index): New function.
4871 (Script_info::input_file_index_): New data member.
4872 (Incremental_binary::get_library): Add const.
4873 (Incremental_binary::get_script_info): Add const.
4874 * readsyms.cc (Read_member::is_runnable): Check for this_blocker_.
4875 * testsuite/Makefile.am (incremental_test_5): New test case.
4876 (incremental_test_6): New test case.
4877 * testsuite/Makefile.in: Regenerate.
4878
8f7c81e8
CC
48792011-07-06 Cary Coutant <ccoutant@google.com>
4880
4881 * incremental.cc (Sized_incremental_binary::do_check_inputs): Add
4882 debug output when command lines differ.
4883
9fbd3822
CC
48842011-07-06 Cary Coutant <ccoutant@google.com>
4885
4886 * incremental.cc (Incremental_inputs::report_command_line): Ignore
4887 --incremental-patch option.
4888 * layout.cc (Free_list::allocate): Extend allocation beyond original
4889 end if enabled.
4890 (Layout::make_output_section): Mark sections that should get
4891 patch space.
4892 * options.cc (parse_percent): New function.
4893 * options.h (parse_percent): New function.
4894 (DEFINE_percent): New macro.
4895 (General_options): Add --incremental-patch option.
4896 * output.cc (Output_section::Output_section): Initialize new data
4897 members.
4898 (Output_section::add_input_section): Print section name when out
4899 of patch space.
4900 (Output_section::add_output_section_data): Likewise.
4901 (Output_section::set_final_data_size): Add patch space when
4902 doing --incremental-full.
4903 (Output_section::do_reset_address_and_file_offset): Remove patch
4904 space.
4905 (Output_segment::set_section_list_addresses): Print debug output
4906 only if --incremental-update.
4907 * output.h (Output_section::set_is_patch_space_allowed): New function.
4908 (Output_section::is_patch_space_allowed_): New data member.
4909 (Output_section::patch_space_): New data member.
4910 * parameters.cc (Parameters::incremental_full): New function.
4911 * parameters.h (Parameters::incremental_full): New function
4912 * testsuite/Makefile.am (incremental_test_2): Add test for
4913 --incremental-patch option.
4914 * testsuite/Makefile.in: Regenerate.
4915 * testsuite/two_file_test_1_v1.cc (t1, t2, t3): Add comments.
4916 (t18): Remove function body.
4917
f6cccc2c
DK
49182011-07-05 Doug Kwan <dougkwan@google.com>
4919
4920 PR gold/12771
4921 * arm.cc (Arm_relocate_functions::abs8): Use int32_t for addend and
4922 Arm_Address type for relocation result.
4923 (Arm_relocate_functions::abs16): Use unaligned access. Also fix
4924 overflow check.
4925 (Arm_relocate_functions::abs32): Use unaligned access.
4926 (Arm_relocate_functions::rel32): Ditto.
4927 (Arm_relocate_functions::prel31): Ditto.
4928 (Arm_exidix_cantunwind::do_fixed_endian_write): Ditto.
4929 * testsuite/Makefile.am: Add new test arm_unaligned_reloc for unaligned
4930 static data relocations.
4931 * testsuite/Makefile.in: Regnerate.
4932 * testsuite/arm_unaligned_reloc.{s,sh}: New files.
4933
28a13fec
ILT
49342011-07-05 Ian Lance Taylor <iant@google.com>
4935
4936 PR gold/12392
4937 * i386.cc (Target_i386::do_finalize_sections): Define __rel_iplt
4938 symbols if necessary.
4939 * x86_64.cc (Target_x86_64::do_finalize_sections): Likewise.
4940
24d47b34
ILT
49412011-07-05 Ian Lance Taylor <iant@google.com>
4942
4943 PR gold/12952
4944 * resolve.cc (Symbol::override_base_with_special): Simply override
4945 version with special symbol version, ignoring previous version.
4946
41f9cbbe
ILT
49472011-07-05 Ian Lance Taylor <iant@google.com>
4948
4949 * object.cc (Sized_relobj_file::include_section_group): Add
4950 information to comment about signature location.
4951
886288f1
ILT
49522011-07-02 Ian Lance Taylor <iant@google.com>
4953
4954 PR gold/12957
4955 * options.h (class General_options): Add -f and -F.
4956 * options.cc (General_options::finalize): Fatal error if -f/-F
4957 are used without -shared.
4958 * layout.cc (Layout::finish_dynamic_section): Implement -f/-F.
4959
ae3a6d4f
ILT
49602011-07-02 Ian Lance Taylor <iant@google.com>
4961
4962 * dirsearch.cc (Dir_cache::read_files): Ignore ENOTDIR errors.
4963
21131061
ILT
49642011-07-01 Ian Lance Taylor <iant@google.com>
4965
4966 PR gold/12525
4967 PR gold/12952
4968 * resolve.cc (Symbol::override_base_with_special): Don't override
4969 the version if the overriding symbol has a different name.
4970 * dynobj.cc (Versions::add_def): Add dynpool parameter. Change
4971 all callers. If we give an error about an undefined version,
4972 define the base version if necessary.
4973 * dynobj.h (class Versions): Update declaration.
4974 * testsuite/weak_alias_test_5.cc: New file.
4975 * testsuite/weak_alias_test.script: New file.
4976 * testsuite/weak_alias_test_main.cc: Check that versioned_symbol
4977 and versioned_alias have the right value, and call t2.
4978 * testsuite/Makefile.am (weak_alias_test_DEPENDENCIES): Add
4979 weak_alias_test_5.so.
4980 (weak_alias_test_LDADD): Likewise.
4981 (weak_alias_test_5_pic.o, weak_alias_test_5.so): New targets.
4982 * testsuite/Makefile.in: Rebuild.
4983
611062c0
ILT
49842011-07-01 Ian Lance Taylor <iant@google.com>
4985
4986 PR gold/12525
4987 * options.h (class General_options): Support -z notext.
4988 * testsuite/Makefile.am (two_file_shared_1_nonpic.so): Use
4989 -Wl,-z,notext.
4990 (two_file_shared_nonpic.so): Likewise.
4991 (two_file_shared_mixed.so): Likewise.
4992 (two_file_shared_mixed_1.so): Likewise.
4993 (weak_undef_lib_nonpic.so): Likewise.
4994 (alt/weak_undef_lib_nonpic.so): Likewise.
4995 (tls_test_shared_nonpic.so): Likewise.
4996 * testsuite/Makefile.in: Rebuild.
4997
328c7c2f
ILT
49982011-07-01 Ian Lance Taylor <iant@google.com>
4999
5000 PR gold/12525
5001 * configure.ac: Test whether static linking works, setting
5002 the automake conditional HAVE_STATIC.
5003 * testsuite/Makefile.am: Disable tests using -static if
5004 HAVE_STATIC is not true.
5005 * configure, testsuite/Makefile.in: Rebuild.
5006
02d7cd44
ILT
50072011-07-01 Ian Lance Taylor <iant@google.com>
5008
5009 PR gold/12525
5010 * ehframe.cc (Eh_frame_hdr::get_fde_pc): Handle DW_EH_PE_datarel.
5011 Assert if we see DW_EH_PE_indirect.
5012 * target.h (Target::ehframe_datarel_base): New function.
5013 (Target::do_ehframe_datarel_base): New target function.
5014 * i386.cc (Target_i386::do_ehframe_datarel_base): New function.
5015 * x86_64.cc (Target_x86_64::do_ehframe_datarel_base): New
5016 function.
5017
07a60597
ILT
50182011-07-01 Ian Lance Taylor <iant@google.com>
5019
5020 PR gold/12571
5021 * options.h (class General_options): Add
5022 --ld-generated-unwind-info.
5023 * ehframe.cc (Fde::write): Add address parameter. Change all
5024 callers. If associated with PLT, fill in address and size.
5025 (Cie::set_output_offset): Only add merge mapping if there is an
5026 object.
5027 (Cie::write): Add address parameter. Change all callers.
5028 (Eh_frame::add_ehframe_for_plt): New function.
5029 * ehframe.h (class Fde): Update declarations. Move shndx_ and
5030 input_offset_ fields into union u_, with new plt field.
5031 (Fde::Fde): Adjust for new union field.
5032 (Fde::Fde) [Output_data version]: New constructor.
5033 (Fde::add_mapping): Only add merge mapping if there is an object.
5034 (class Cie): Update declarations.
5035 (class Eh_frame): Declare add_ehframe_for_plt.
5036 * layout.cc (Layout::layout_eh_frame): Break out code into
5037 make_eh_frame_section, and call it.
5038 (Layout::make_eh_frame_section): New function.
5039 (Layout::add_eh_frame_for_plt): New function.
5040 * layout.h (class Layout): Update declarations.
5041 * merge.cc (Merge_map::add_mapping): Add assertion.
5042 * i386.cc: Include "dwarf.h".
5043 (class Output_data_plt_i386): Make first_plt_entry,
5044 dyn_first_plt_entry, exec_plt_entry, and dyn_plt_entry const. Add
5045 plt_eh_frame_cie_size, plt_eh_frame_fde_size, plt_eh_frame_cie,
5046 and plt_eh_frame_fde.
5047 (Output_data_plt_i386::Output_data_plt_i386): Align to 16-byte
5048 boundary. Call add_eh_frame_for_plt if appropriate.
5049 * x86_64.cc: Include "dwarf.h".
5050 (class Output_data_plt_x86_64): Align to 16-byte boundary. Make
5051 first_plt_entry, plt_entry and tlsdesc_plt_entry const. Add
5052 plt_eh_frame_cie_size, plt_eh_frame_fde_size, plt_eh_frame_cie,
5053 and plt_eh_frame_fde.
5054 (Output_data_plt_x86_64::init): Call add_eh_frame_for_plt if
5055 appropriate.
5056
14788a3f
ILT
50572011-06-29 Ian Lance Taylor <iant@google.com>
5058
5059 PR gold/12629
5060 * object.cc (Sized_relobj_file::layout_section): Change shdr
5061 parameter to be const.
5062 (Sized_relobj_file::layout_eh_frame_section): New function, broken
5063 out of do_layout.
5064 (Sized_relobj_file::do_layout): Defer .eh_frame sections if
5065 appropriate. Call layout_eh_frame_section.
5066 (Sized_relobj_file::do_layout_deferred_sections): Handle .eh_frame
5067 sections.
5068 * object.h (class Sized_relobj_file): Update declarations.
5069
6c21fce1
ILT
50702011-06-29 Ian Lance Taylor <iant@google.com>
5071
37e41b03 5072 PR gold/12652
6c21fce1
ILT
5073 * script.cc (Token::integer_value): Accept trailing M/m/K/k
5074 modifier.
5075 (Lex::gather_token): Accept trailing M/m/K/k for integers.
5076
4d5e4e62
ILT
50772011-06-29 Ian Lance Taylor <iant@google.com>
5078
5079 PR gold/12675
5080 * object.cc (Sized_relobj_file::check_eh_frame_flags): Check for
5081 SHT_X86_64_UNWIND.
5082 * layout.cc (Layout::layout_eh_frame): Likewise.
5083
886f533a
ILT
50842011-06-29 Ian Lance Taylor <iant@google.com>
5085
5086 PR gold/12695
5087 * layout.cc (Layout::symtab_section_shndx): New function.
5088 * layout.h (class Layout): Declare symtab_section_shndx.
5089 * output.cc (Output_section::write_header): Call it.
5090
f3ae1b28
ILT
50912011-06-29 Ian Lance Taylor <iant@google.com>
5092
5093 PR gold/12818
5094 * symtab.cc (Symbol::should_add_dynsym_entry): Don't add undefined
5095 symbols which are not used in a relocation.
5096
aecf301f
ILT
50972011-06-28 Ian Lance Taylor <iant@google.com>
5098
5099 PR gold/12898
5100 * layout.cc (Layout::segment_precedes): Don't crash if a linker
5101 script create indistinguishable segments.
5102 (Layout::set_segment_offsets): Use stable_sort when sorting
5103 segments. Pass this to Compare_segments constructor.
5104 * layout.h (class Layout): Make segment_precedes non-static.
5105 (class Compare_segments): Change from struct to class. Add
5106 layout_ field. Add constructor.
5107 * script-sections.cc
5108 (Script_sections::attach_sections_using_phdrs_clause): Rename
5109 local orphan to is_orphan. Don't report failure to put empty
5110 section in segment. On attachment failure, report name of
5111 section, and attach to first PT_LOAD segment.
5112
03ef7571
ILT
51132011-06-28 Ian Lance Taylor <iant@google.com>
5114
5115 PR gold/12934
5116 * target-select.cc (Target_selector::Target_selector): Add
5117 emulation parameter. Change all callers.
5118 (select_target_by_bfd_name): Rename from select_target_by_name.
5119 Change all callers.
5120 (select_target_by_emulation): New function.
5121 (supported_emulation_names): New function.
5122 * target-select.h (class Target_selector): Add emulation_ field.
5123 Update declarations.
5124 (Target_selector::recognize_by_bfd_name): Rename from
5125 recognize_by_name. Change all callers.
5126 (Target_selector::supported_bfd_names): Rename from
5127 supported_names. Change all callers.
5128 (Target_selector::recognize_by_emulation): New function.
5129 (Target_selector::supported_emulations): New function.
5130 (Target_selector::emulation): New function.
5131 (Target_selector::do_recognize_by_bfd_name): Rename from
5132 do_recognize_by_name. Change all callers.
5133 (Target_selector::do_supported_bfd_names): Rename from
5134 do_supported_names. Change all callers.
5135 (Target_selector::do_recognize_by_emulation): New function.
5136 (Target_selector::do_supported_emulations): New function.
5137 (select_target_by_bfd_name): Change name in declaration.
5138 (select_target_by_emulation): Declare.
5139 (supported_emulation_names): Declare.
5140 * parameters.cc (parameters_force_valid_target): Try to find
5141 target based on emulation from -m option.
5142 * options.h (class General_options): Change doc string for -m.
5143 * options.cc (help): Print emulations.
5144 (General_options::parse_V): Likewise.
5145 * freebsd.h (Target_selector_freebsd::Target_selector_freebsd):
5146 Add emulation parameter. Change all callers.
5147
200b2bb9
ILT
51482011-06-28 Ian Lance Taylor <iant@google.com>
5149
5150 * target.h (class Target): Add osabi_ field.
5151 (Target::osabi): New function.
5152 (Target::set_osabi): New function.
5153 (Target::Target): Initialize osabi_.
5154 (Target::do_adjust_elf_header): Make pure virtual.
5155 (Sized_target::do_adjust_elf_header): Declare.
5156 * target.cc (Sized_target::do_adjust_elf_header): New function.
5157 (class Sized_target): Instantiate all versions.
5158 * freebsd.h (class Target_freebsd): Remove.
5159 (Target_selector_freebsd::do_recognize): Call set_osabi on
5160 Target.
5161 (Target_selector_freebsd::do_recognize_by_name): Likewise.
5162 (Target_selector_freebsd::set_osabi): Remove.
5163 * i386.cc (class Target_i386): Inherit from Sized_target rather
5164 than Target_freebsd.
5165 * x86_64.cc (class Target_x86_64): Likewise.
5166
b3ce541e
ILT
51672011-06-28 Ian Lance Taylor <iant@google.com>
5168
5169 * target.h (Target::can_check_for_function_pointers): Rewrite.
5170 Make non-virtual.
5171 (Target::can_icf_inline_merge_sections): Likewise.
5172 (Target::section_may_have_icf_unsafe_poineters): Likewise.
5173 (Target::Target_info): Add can_icf_inline_merge_sections field.
5174 (Target::do_can_check_for_function_pointers): New virtual
5175 function.
5176 (Target::do_section_may_have_icf_unsafe_pointers): Likewise.
5177 * arm.cc (Target_arm::do_can_check_for_function_pointers): Rename
5178 from can_check_for_function_pointers, move in file.
5179 (Target_arm::do_section_may_have_icf_unsafe_pointers): Rename from
5180 section_may_have_icf_unsafe_poineters, move in file.
5181 (Target_arm::arm_info): Initialize can_icf_inline_merge_sections.
5182 * i386.cc (Target_i386::do_can_check_for_function_pointers):
5183 Rename from can_check_for_function_pointers, move in file.
5184 (Target_i386::can_icf_inline_merge_sections): Remove.
5185 (Target_i386::i386_info): Initialize
5186 can_icf_inline_merge_sections.
5187 * powerpc.cc (Target_powerpc::powerpc_info) [all versions]:
5188 Initialize can_icf_inline_merge_sections.
5189 * sparc.cc (Target_sparc::sparc_info) [both version]: Likewise.
5190 * x86_64.cc (Target_x86_64::do_can_check_for_function_pointers):
5191 Rename from can_check_for_function_pointers, move in file.
5192 (Target_x86_64::can_icf_inline_merge_sections): Remove.
5193 (Target_x86_64::x86_64_info): Initialize
5194 can_icf_inline_merge_sections.
5195 * testsuite/testfile.cc (Target_test::test_target_info):
5196 Likewise.
5197 * icf.cc (get_section_contents): Correct formatting.
5198
6d1c4efb
ILT
51992011-06-27 Ian Lance Taylor <iant@google.com>
5200
5201 * symtab.cc (Symbol::versioned_name): New function.
5202 (Symbol_table::add_to_final_symtab): Use versioned_name when
5203 appropriate.
5204 (Symbol_table::sized_write_symbol): Likewise.
5205 * symtab.h (class Symbol): Declare versioned_name.
5206 * stringpool.h (class Stringpool_template): Add variant of add
5207 which takes a std::basic_string.
5208 * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_12.
5209 (ver_test_12_SOURCES, ver_test_12_DEPENDENCIES): New variables.
5210 (ver_test_12_LDFLAGS, ver_test_12_LDADD): New variables.
5211 (ver_test_12.o): New target.
5212 * testsuite/Makefile.in: Rebuild.
5213
57eb9b50
DK
52142011-06-27 Doug Kwan <dougkwan@google.com>
5215
5216 * arm.cc (Arm_relocate_functions::thm_jump8,
5217 Arm_relocate_functions::thm_jump11): Use a wider signed
5218 type to compute offset.
5219 * testsuite/Makefile.am: Add new tests arm_thm_jump11 and
5220 arm_thm_jump8.
5221 * testsuite/Makefile.in: Regenerate.
5222 * testsuite/arm_branch_in_range.sh: Check test results of
5223 arm_thm_jump11 and arm_thm_jump8.
5224 * testsuite/arm_thm_jump11.s: New test source file.
5225 * testsuite/arm_thm_jump11.t: New linker script.
5226 * testsuite/arm_thm_jump8.s: New test source file.
5227 * testsuite/arm_thm_jump8.t: New linker script.
5228
487b39df
ILT
52292011-06-24 Ian Lance Taylor <iant@google.com>
5230
5231 * layout.cc: Include "object.h".
5232 (ctors_sections_in_init_array): New static variable.
5233 (Layout::is_ctors_in_init_array): New function.
5234 (Layout::layout): Add entry to ctors_sections_in_init_array if
5235 appropriate.
5236 * layout.h (class Layout): Declare is_ctors_in_init_array.
5237 * reloc.cc (Sized_relobj_file::do_relocate): Call reverse_words if
5238 is_ctors_reverse_view is set.
5239 (Sized_relobj_file::write_sections): Add layout parameter. Change
5240 all callers. Set is_ctors_reverse_view field of View_size.
5241 (Sized_relobj_file::reverse_words): New function.
5242 * object.h (Sized_relobj_file::View_size): Add
5243 is_ctors_reverse_view field.
5244 (class Sized_relobj_file): Update declarations.
5245 * testsuite/initpri3.c: New test.
5246 * testsuite/Makefile.am: (check_PROGRAMS): Add initpri3a and
5247 initpri3b.
5248 (initpri3a_SOURCES, initpri3a_DEPENDENCIES): New variables.
5249 (initpri3a_LDFLAGS, initpri3a_LDADD): New variables.
5250 (initpri3b_SOURCES, initpri3b_DEPENDENCIES): New variables.
5251 (initpri3b_LDFLAGS, initpri3b_LDADD): New variables.
5252 * testsuite/Makefile.in: Rebuild.
5253
472076e4
CC
52542011-06-24 Cary Coutant <ccoutant@google.com>
5255
5256 * testsuite/Makefile.am: Add in-tree assembler to gcctestdir.
5257 (debug_msg_cdebug.o, odr_violation1_cdebug.o, odr_violation2_cdebug.o)
5258 (debug_msg_cdebug.err): New targets.
5259 * testsuite/Makefile.in: Regenerate.
5260 * testsuite/debug_msg.sh: Check output of link with compressed debug.
5261 Fix checks for link with shared library.
5262
a60af0db
DK
52632011-06-24 Doug Kwan <dougkwan@google.com>
5264
5265 * arm.cc (Arm_output_section::append_text_sections_to_list): Do not
5266 skip empty text sections.
5267 * testsuite/arm_exidx_test.s: Test handling of an empty text section.
5268
5393d741
ILT
52692011-06-22 Ian Lance Taylor <iant@google.com>
5270
5271 PR gold/12910
5272 * options.h (class General_options): Add --ctors-in-init-array.
5273 * layout.cc (Layout::get_output_section): Treat SHT_INIT_ARRAY and
5274 friends as SHT_PROGBITS for merging sections.
5275 (Layout::layout): Remove special handling of .init_array and
5276 friends. Don't sort if doing relocatable link. Sort for .ctors
5277 and .dtors if ctors_in_init_array.
5278 (Layout::make_output_section): Force correct section types for
5279 .init_array and friends. Don't sort if doing relocatable link,
5280 Don't sort .ctors and .dtors if ctors_in_init_array.
5281 (Layout::section_name_mapping): Remove .ctors. and .dtorso.
5282 (Layout::output_section_name): Add relobj parameter. Change all
5283 callers. Handle .ctors. and .dtors. in code rather than table.
5284 Handle .ctors and .dtors if ctors_in_init_array.
5285 (Layout::match_file_name): New function, moved from output.cc.
5286 * layout.h (class Layout): Update declarations.
5287 * output.cc: Include "layout.h".
5288 (Input_section_sort_entry::get_priority): New function.
5289 (Input_section_sort_entry::match_file_name): Just call
5290 Layout::match_file_name.
5291 (Output_section::Input_section_sort_init_fini_compare::operator()):
5292 Handle .ctors and .dtors. Sort by explicit priority rather than
5293 by name.
5294 * configure.ac: Remove CONSTRUCTOR_PRIORITY test and conditional.
5295 * testsuite/initpri2.c: New test.
5296 * testsuite/Makefile.am: Don't test CONSTRUCTOR_PRIORITY.
5297 (check_PROGRAMS): Add initpri2.
5298 (initpri2_SOURCES, initpri2_DEPENDENCIES): New variables.
5299 (initpri2_LDFLAGS, initpri2_LDADD): New variables.
5300 * configure, testsuite/Makefile.in: Rebuild.
5301
e1f74f98
ILT
53022011-06-19 Ian Lance Taylor <iant@google.com>
5303
5304 PR gold/12880
5305 * layout.cc (Layout::attach_allocated_section_to_segment): Add a
5306 .interp section to a PT_INTERP segment even if we have seen a
5307 --dynamic-linker option. Don't do it if we have seen a PHDRS
5308 clause in a linker script.
5309 (Layout::finalize): Don't create a .interp section if we've
5310 already create a PT_INTERP segment.
5311 (Layout::create_interp): Always call choose_output_section (revert
5312 patch of 2011-06-17). Don't create PT_INTERP segment.
5313 * script-sections.cc
5314 (Script_sections::create_note_and_tls_segments): Add a .interp
5315 section to a PT_INTERP segment even if we have seen a
5316 --dynamic-linker option.
5317
766f91bb
ILT
53182011-06-18 Ian Lance Taylor <iant@google.com>
5319
5320 * layout.cc (Layout::finish_dynamic_section): Don't set DT_TEXTREL
5321 merely because a non-PT_LOAD segment has a dynamic reloc.
5322
0d212c3a
ILT
53232011-06-18 Ian Lance Taylor <iant@google.com>
5324
5325 * layout.cc (Layout::finish_dynamic_section): Don't create
5326 DT_FLAGS entry if not needed.
5327
911a5072
ILT
53282011-06-18 Ian Lance Taylor <iant@google.com>
5329
5330 PR gold/12745
5331 * layout.cc (Layout::layout_eh_frame): Correct handling of
5332 writable .eh_frame section.
5333
534b4e5f
ILT
53342011-06-17 Ian Lance Taylor <iant@google.com>
5335
5336 PR gold/12893
5337 * resolve.cc (Symbol_table::resolve): Don't give an error if a
5338 symbol is redefined with the exact same object and value.
5339
10b4f102
ILT
53402011-06-17 Ian Lance Taylor <iant@google.com>
5341
5342 PR gold/12880
5343 * layout.h (class Layout): Add interp_segment_ field.
5344 * layout.cc (Layout::Layout): Initialize interp_segment_ field.
5345 (Layout::attach_allocated_section_to_segment): If making shared
5346 library, put .interp section in PT_INTERP segment.
5347 (Layout::finalize): Also call create_interp if -dynamic-linker
5348 option was used.
5349 (Layout::create_interp): Assert that there is no PT_INTERP
5350 segment. If not using a SECTIONS clause, use make_output_section.
5351 (Layout::make_output_segment): Set interp_segment_ if PT_INTERP.
5352 * script-sections.cc
5353 (Script_sections::create_note_and_tls_segments): If making shared
5354 library, put .interp section in PT_INTERP segment.
5355
a29b0dad
ILT
53562011-06-17 Ian Lance Taylor <iant@google.com>
5357
e588ea8d
ILT
5358 * object.cc (Sized_relobj_file::do_layout): Keep warning sections
5359 when making a shared library.
5360
53612011-06-17 Ian Lance Taylor <iant@google.com>
5362
5363 * x86_64.cc (Target_x86_64::Scan::check_non_pic): Add gsym
5364 parameter. Change all callers. Don't issue warning about PC32
5365 against locally defined symbol.
a29b0dad 5366
9d3b0698
ILT
53672011-06-16 Ian Lance Taylor <iant@google.com>
5368
5369 * symtab.cc (Warnings::issue_warning): Don't warn if relocation
5370 occurs in same object.
5371
85b0f90c
AM
53722011-06-14 Alan Modra <amodra@gmail.com>
5373
5374 * po/POTFILES.in: Regenerate.
5375
a94907d9
ILT
53762011-06-09 Ian Lance Taylor <iant@google.com>
5377
5378 * script-sections.cc
5379 (Orphan_output_section::set_section_addresses): For a relocatable
5380 link set address to 0.
5381
4fb3a1c3
CC
53822011-06-09 Cary Coutant <ccoutant@google.com>
5383
5384 PR gold/12804
5385 * gold/gold.cc (queue_initial_tasks): Warn if --incremental is
5386 used with --compress-debug-sections.
5387 * gold/object.cc (Sized_relobj_file::do_layout): Report
5388 uncompressed size of compressed input sections.
5389
61220854
CC
53902011-06-08 Cary Coutant <ccoutant@google.com>
5391
5392 PR gold/12804
5393 * testsuite/two_file_test_2_v1.cc: Change initialization of
5394 v2 to keep it in .data.
5395
e6455dfb
CC
53962011-06-07 Cary Coutant <ccoutant@google.com>
5397
5398 * common.cc (Symbol_table::do_allocate_commons_list): Call
5399 gold_fallback.
5400 * errors.cc (Errors::fatal): Adjust call to gold_exit.
5401 (Errors::fallback): New function.
5402 (gold_fallback): New function.
5403 * errors.h (Errors::fallback): New function.
5404 * gold.cc (gold_exit): Change status parameter to enum; adjust
5405 all callers.
5406 (queue_initial_tasks): Call gold_fallback.
5407 * gold.h: Include cstdlib.
5408 (Exit_status): New enum type.
5409 (gold_exit): Change status parameter to enum.
5410 (gold_fallback): New function.
5411 * layout.cc (Layout::set_section_offsets): Call gold_fallback.
5412 (Layout::create_symtab_sections): Likewise.
5413 (Layout::create_shdrs): Likewise.
5414 * main.cc (main): Adjust call to gold_exit.
5415 * output.cc (Output_data_got::add_got_entry): Call gold_fallback.
5416 (Output_data_got::add_got_entry_pair): Likewise.
5417 (Output_section::add_input_section): Likewise.
5418 (Output_section::add_output_section_data): Likewise.
5419 (Output_segment::set_section_list_addresses): Likewise.
5420 * x86_64.cc (Output_data_plt_x86_64::add_entry): Likewise.
5421
fb0e076f
CC
54222011-06-07 Cary Coutant <ccoutant@google.com>
5423
5424 * layout.cc (Layout::set_segment_offsets): Don't adjust layout
5425 for incremental links.
5426 * output.cc (Output_segment::set_section_list_addresses): Remove
5427 FIXME and test for TLS or BSS.
5428
a5ee4d5d
CC
54292011-06-07 Cary Coutant <ccoutant@google.com>
5430
5431 * testsuite/Makefile.am: Add incremental_copy_test,
5432 incremental_common_test_1.
5433 * testsuite/Makefile.in: Regenerate.
5434 * testsuite/common_test_1_v1.c: New source file.
5435 * testsuite/common_test_1_v2.c: New source file.
5436 * testsuite/copy_test_v1.cc: New source file.
5437
5146f448
CC
54382011-06-07 Cary Coutant <ccoutant@google.com>
5439
5440 * common.cc (Symbol_table::do_allocate_commons_list): For incremental
5441 update, allocate common from bss section's free list.
5442 * incremental-dump.cc (dump_incremental_inputs): Print flag for
5443 linker-defined symbols.
5444 * incremental.cc (Sized_incremental_binary::do_process_got_plt):
5445 Skip GOT and PLT entries that are no longer referenced.
5446 (Output_section_incremental_inputs::write_info_blocks): Mark
5447 linker-defined symbols.
5448 (Sized_incr_relobj::do_add_symbols): Process linker-defined symbols.
5449 * output.cc (Output_section::allocate): New function.
5450 * output.h (Output_section::allocate): New function.
5451 * resolve.cc (Symbol_table::report_resolve_problem): Add case for
5452 linker-defined symbols.
5453 (Symbol::override_base_with_special): Copy is_predefined_ flag.
5454 * symtab.cc (Symbol::init_fields): Initialize is_predefined_ flag.
5455 (Symbol::init_base_output_data): Likewise.
5456 (Symbol::init_base_output_segment): Likewise.
5457 (Symbol::init_base_constant): Likewise.
5458 (Sized_symbol::init_output_data): Likewise.
5459 (Sized_symbol::init_output_segment): Likewise.
5460 (Sized_symbol::init_constant): Likewise.
5461 (Symbol_table::do_define_in_output_data): Likewise.
5462 (Symbol_table::do_define_in_output_segment): Likewise.
5463 (Symbol_table::do_define_as_constant): Likewise.
5464 * symtab.h (Symbol::is_predefined): New function.
5465 (Symbol::init_base_output_data): Add is_predefined parameter.
5466 (Symbol::init_base_output_segment): Likewise.
5467 (Symbol::init_base_constant): Likewise.
5468 (Symbol::is_predefined_): New data member.
5469 (Sized_symbol::init_output_data): Add is_predefined parameter.
5470 (Sized_symbol::init_output_segment): Likewise.
5471 (Sized_symbol::init_constant): Likewise.
5472 (enum Symbol_table::Defined): Add INCREMENTAL_BASE.
5473
26d3c67d
CC
54742011-06-07 Cary Coutant <ccoutant@google.com>
5475
5476 * copy-relocs.cc (Copy_relocs::copy_reloc): Call make_copy_reloc
5477 instead of emit_copy_reloc.
5478 (Copy_relocs::emit_copy_reloc): Refactor.
5479 (Copy_relocs::make_copy_reloc): New function.
5480 (Copy_relocs::add_copy_reloc): Remove.
5481 * copy-relocs.h (Copy_relocs::emit_copy_reloc): Move to public
5482 section.
5483 (Copy_relocs::make_copy_reloc): New function.
5484 (Copy_relocs::add_copy_reloc): Remove.
5485 * gold.cc (queue_middle_tasks): Emit old COPY relocations from
5486 unchanged input files.
5487 * incremental-dump.cc (dump_incremental_inputs): Print "COPY" flag.
5488 * incremental.cc (Sized_incremental_binary::do_reserve_layout):
5489 Reserve BSS space for COPY relocations.
5490 (Sized_incremental_binary::do_emit_copy_relocs): New function.
5491 (Output_section_incremental_inputs::write_info_blocks): Record
5492 whether a symbol is copied from a shared object.
5493 (Sized_incr_dynobj::do_add_symbols): Record COPY relocations.
5494 * incremental.h (enum Incremental_shlib_symbol_flags): New type.
5495 (INCREMENTAL_SHLIB_SYM_FLAGS_SHIFT): New constant.
5496 (Incremental_input_entry_reader::get_output_symbol_index): Add
5497 is_copy parameter.
5498 (Incremental_binary::emit_copy_relocs): New function.
5499 (Incremental_binary::do_emit_copy_relocs): New function.
5500 (Sized_incremental_binary::Sized_incremental_binary): Initialize
5501 new data member.
5502 (Sized_incremental_binary::add_copy_reloc): New function.
5503 (Sized_incremental_binary::do_emit_copy_relocs): New function.
5504 (Sized_incremental_binary::Copy_reloc): New struct.
5505 (Sized_incremental_binary::Copy_relocs): New typedef.
5506 (Sized_incremental_binary::copy_relocs_): New data member.
5507 * symtab.cc (Symbol_table::add_from_incrobj): Change return type.
5508 * symtab.h (Symbol_table::add_from_incrobj): Change return type.
5509 * target.h (Sized_target::emit_copy_reloc): New function.
5510 * x86_64.cc (Target_x86_64::emit_copy_reloc): New function.
5511
7cdb37d9
CC
55122011-06-02 Cary Coutant <ccoutant@google.com>
5513
5514 PR gold/12163
5515 * gold/archive.cc (Archive::Archive): Initialize new data member.
5516 (Archive::include_all_members): Return if archive has already been
5517 included.
5518 * gold/archive.h (Archive::include_all_members_): New data member.
5519
cc643b88
NC
55202011-06-02 Nick Clifton <nickc@redhat.com>
5521
5522 * dynobj.h: Fix spelling mistake in comment.
5523 * output.cc: Likewise.
5524
f62a3ca7 55252011-05-31 Doug Kwan <dougkwan@google.com>
2e702c99 5526 Asier Llano
f62a3ca7
DK
5527
5528 PR gold/12826
cc643b88 5529 * arm.cc (Target_arm::tag_cpu_arch_combine): Fix handling of
f62a3ca7
DK
5530 arch value that equals to elfcpp::MAX_TAG_CPU_ARCH.
5531 * testsuite/Makefile.am: (MOSTLYCLEANFILES): Clean up. Remove
5532 redundant arm_exidx_test.so.
5533 * testsuite/Makefile.in: Regenerate.
5534 (check_SCRIPTS): Add pr12826.sh
5535 (check_DATA): Add pr12826.stdout
5536 (pr12826.stdout, pr12826.so, pr12826_1.o, pr12826_2.o): New rules.
5537 * testsuite/pr12826.sh: New file.
5538 * testsuite/pr12826_1.s: Ditto.
5539 * testsuite/pr12826_1.s: Ditto.
5540
8dbe1edc
ILT
55412011-05-30 Ian Lance Taylor <iant@google.com>
5542
5543 * reloc.cc (Sized_relobj_file::do_read_relocs): Ignore empty reloc
5544 sections.
5545
c49875be
ILT
55462011-05-29 Ian Lance Taylor <iant@google.com>
5547
5548 PR gold/12804
5549 * testsuite/Makefile.am: Use different file name for two_file_test
5550 temporary file for each incremental test.
5551 * testsuite/Makefile.in: Rebuild.
5552
69d53f7a
ILT
55532011-05-29 Ian Lance Taylor <iant@google.com>
5554
5555 * binary.cc (Binary_to_elf::sized_convert): Don't crash if the
5556 binary input file is empty.
5557
41d0ab5f
ILT
55582011-05-27 Ian Lance Taylor <iant@google.com>
5559
5560 * testsuite/Makefile.am (ver_test_2.so): Use -Wl,-R,.
5561 (ver_test_9.so): Likewise.
5562 * testsuite/Makefile.in: Rebuild.
5563
89d8a36b
CC
55642011-05-26 Cary Coutant <ccoutant@google.com>
5565
5566 * incremental-dump.cc (dump_incremental_inputs): Print COMDAT groups.
5567 * incremental.cc (Incremental_inputs::report_input_section): Fix
5568 comment, indentation.
5569 (Incremental_inputs::report_comdat_group): New function.
5570 (Output_section_incremental_inputs::set_final_data_size): Adjust size
5571 of data for incremental input file entry.
5572 (Output_section_incremental_inputs::write_info_blocks): Write COMDAT
5573 group count, COMDAT group signatures.
5574 (Sized_incr_relobj::do_layout): Record kept COMDAT group info from
5575 an unchanged input file.
5576 * incremental.h (Incremental_object_entry::Incremental_object_entry):
5577 Initialize new data member.
5578 (Incremental_object_entry::add_comdat_group): New function.
5579 (Incremental_object_entry::get_comdat_group_count): New function.
5580 (Incremental_object_entry::get_comdat_signature_key): New function.
5581 (Incremental_object_entry::groups_): New data member.
5582 (Incremental_inputs::report_comdat_group): New function.
5583 (Incremental_input_entry_reader::get_symbol_offset): Adjust size of
5584 data for incremental input file entry.
5585 (Incremental_input_entry_reader::get_comdat_group_count): New function.
5586 (Incremental_input_entry_reader::get_input_section): Adjust size of
5587 data for incremental input file entry.
5588 (Incremental_input_entry_reader::get_global_symbol_reader): Likewise.
5589 (Incremental_input_entry_reader::get_comdat_group_signature): New
5590 function.
5591 * object.cc (Sized_relobj::include_section_group): Report kept
5592 COMDAT groups for incremental links.
5593
1706a06f
ILT
55942011-05-24 David Meyer <pdox@google.com>
5595
5596 * dirsearch.cc (Dirsearch::find): Replace n1 and n2 parameters
5597 with name parameter. Add found_name parameter.
5598 * fileread.cc (Input_file::find_file): Adjust code accordingly.
5599 * dirsearch.h (class Dirsearch): Update declaration.
5600
a10ae760
ILT
56012011-05-24 Ian Lance Taylor <iant@google.com>
5602
5603 * archive.cc (Library_base::should_include_member): Pull in object
5604 from archive if it defines the entry symbol.
5605 * parameters.cc (Parameters::entry): New function.
5606 * parameters.h (class Parameters): Declare entry.
5607 * output.h (class Output_file_header): Remove entry_ field.
5608 * output.cc (Output_file_header::Output_file_header): Remove entry
5609 parameter. Change all callers.
5610 (Output_file_header::entry): Use parameters->entry.
5611 * gold.cc (queue_middle_tasks): Likewise.
5612 * plugin.cc (Plugin_hook::run): Likewise.
5613
aa92d6ed
CC
56142011-05-24 Cary Coutant <ccoutant@google.com>
5615
5616 * gold.cc (queue_initial_tasks): Pass incremental base filename
5617 to Output_file::open_base_file; don't print error message.
5618 * incremental-dump.cc (main): Adjust call to
5619 Output_file::open_for_modification.
5620 * incremental-dump.cc (main): Likewise.
5621 * incremental.cc (Incremental_inputs::report_command_line):
5622 Ignore --incremental-base option when comparing command lines.
5623 Ignore parameter when given as separate argument.
5624 * options.h (class General_options): Add --incremental-base.
5625 * output.cc (Output_file::Output_file):
5626 (Output_file::open_base_file): Add base_name and writable parameters;
5627 read base file into new file; print error message here.
5628 (Output_file::map_no_anonymous): Add writable parameter; adjust all
5629 callers.
5630 * output.h (Output_file::open_for_modification): Rename to...
5631 (Output_file::open_base_file): ...this; add base_name and
5632 writable parameters; adjust all callers.
5633 (Output_file::map_no_anonymous): Add writable parameter; adjust all
5634 callers.
5635 * testsuite/Makefile.am (incremental_test_4): Test
5636 --incremental-base.
5637 * testsuite/Makefile.in: Regenerate.
5638
2eedd706
CC
56392011-05-24 Cary Coutant <ccoutant@google.com>
5640
5641 * testsuite/Makefile.am: Add incremental_test_2, incremental_test_3,
5642 incremental_test_4.
5643 * testsuite/Makefile.in: Regenerate.
5644 * testsuite/two_file_test_1_v1.cc: New test source file.
5645 * testsuite/two_file_test_1b_v1.cc: New test source file.
5646 * testsuite/two_file_test_2_v1.cc: New test source file.
5647
0f1c85a6
CC
56482011-05-24 Cary Coutant <ccoutant@google.com>
5649
5650 * dynobj.h (Dynobj::do_dynobj): New function.
5651 * incremental-dump.cc (dump_incremental_inputs): Print as_needed
5652 flag and soname for shared objects.
5653 * incremental.cc (Incremental_inputs::report_object): Make
5654 either Incremental_object_entry or Incremental_dynobj_entry; add
5655 soname to string table.
5656 (Incremental_inputs::report_input_section): Add assertion.
5657 (Output_section_incremental_inputs::set_final_data_size): Adjust
5658 type of input file entry for shared libraries; adjust size of
5659 shared library info entry.
5660 (Output_section_incremental_inputs::write_input_files): Write
5661 as_needed flag for shared libraries.
5662 (Output_section_incremental_inputs::write_info_blocks): Adjust type
5663 of input file entry for shared libraries; write soname.
5664 (Sized_incr_dynobj::Sized_incr_dynobj): Read as_needed flag and
5665 soname from incremental info.
5666 * incremental.h (enum Incremental_input_flags): Add
5667 INCREMENTAL_INPUT_AS_NEEDED.
5668 (Incremental_input_entry::Incremental_input_entry): Initialize new
5669 data member.
5670 (Incremental_input_entry::set_as_needed): New function.
5671 (Incremental_input_entry::as_needed): New function.
5672 (Incremental_input_entry::do_dynobj_entry): New function.
5673 (Incremental_input_entry::as_needed_): New data member.
5674 (Incremental_object_entry::Incremental_object_entry): Don't check
5675 for shared library.
5676 (Incremental_object_entry::do_type): Likewise.
5677 (class Incremental_dynobj_entry): New class.
5678 (Incremental_input_entry_reader::as_needed): New function.
5679 (Incremental_input_entry_reader::get_soname): New function.
5680 (Incremental_input_entry_reader::get_global_symbol_count): Rewrite.
5681 (Incremental_input_entry_reader::get_output_symbol_index): Adjust
5682 size of shared library info entry.
58797674 5683 * layout.cc (Layout::finish_dynamic_section): Don't test for
0f1c85a6
CC
5684 incremental link when adding DT_NEEDED entries.
5685 * object.h (Object::Object): Initialize new data member.
5686 (Object::dynobj): New function.
5687 (Object::set_as_needed): New function.
5688 (Object::as_needed): New function.
5689 (Object::do_dynobj): New function.
5690 (Object::as_needed_): New data member.
5691
6fa2a40b
CC
56922011-05-24 Cary Coutant <ccoutant@google.com>
5693
5694 * incremental-dump.cc (dump_incremental_inputs): Print dynamic reloc
5695 info; adjust display of GOT entries.
5696 * incremental.cc (Sized_incremental_binary::setup_readers): Allocate
5697 vector of input objects; remove file_status_.
5698 (Sized_incremental_binary::do_reserve_layout): Remove file_status_.
5699 (Sized_incremental_binary::do_process_got_plt): Adjust calls to
5700 got_plt reader; call target hooks to reserve GOT entries.
5701 (Output_section_incremental_inputs::set_final_data_size): Adjust size
5702 of input file info header and GOT info entry.
5703 (Output_section_incremental_inputs::write_info_blocks): Write dynamic
5704 relocation info.
5705 (Got_plt_view_info::got_descriptor): Remove.
5706 (Got_plt_view_info::sym_index): New data member.
5707 (Got_plt_view_info::input_index): New data member.
5708 (Local_got_offset_visitor::visit): Write input file index.
5709 (Global_got_offset_visitor::visit): Write 0 for input file index.
5710 (Global_symbol_visitor_got_plt::operator()): Replace got_descriptor
5711 with sym_index and input_index.
5712 (Output_section_incremental_inputs::write_got_plt): Adjust size of
5713 incremental info GOT entry; replace got_descriptor with input_index.
5714 (Sized_relobj_incr::Sized_relobj_incr): Adjust initializers; record
5715 map from input file index to object.
5716 (Sized_relobj_incr::do_layout): Replace direct data member reference
5717 with accessor function.
5718 (Sized_relobj_incr::do_for_all_local_got_entries): Move to base class.
5719 * incremental.h (Incremental_input_entry_reader::get_symbol_offset):
5720 Adjust size of input file info header.
5721 (Incremental_input_entry_reader::get_first_dyn_reloc): New function.
5722 (Incremental_input_entry_reader::get_dyn_reloc_count): New function.
5723 (Incremental_input_entry_reader::get_input_section): Adjust size of
5724 input file info header.
5725 (Incremental_got_plt_reader::Incremental_got_plt_reader): Adjust size
5726 of incremental info GOT entry.
5727 (Incremental_got_plt_reader::get_got_desc): Remove.
5728 (Incremental_got_plt_reader::get_got_symndx): New function.
5729 (Incremental_got_plt_reader::get_got_input_index): New function.
5730 (Sized_incremental_binary::Sized_incremental_binary): Remove
5731 file_status_; add input_objects_.
5732 (Sized_incremental_binary::~Sized_incremental_binary): Remove.
5733 (Sized_incremental_binary::set_file_is_unchanged): Remove.
5734 (Sized_incremental_binary::file_is_unchanged): Remove.
5735 (Sized_incremental_binary::set_input_object): New function.
5736 (Sized_incremental_binary::input_object): New function.
5737 (Sized_incremental_binary::file_status_): Remove.
5738 (Sized_incremental_binary::input_objects_): New data member.
5739 (Sized_relobj_incr): Rename Sized_incr_relobj to this; adjust all
5740 references.
5741 (Sized_relobj_incr::invalid_address): Move to base class.
5742 (Sized_relobj_incr::is_output_section_offset_invalid): Move to base
5743 class.
5744 (Sized_relobj_incr::do_output_section_offset): Likewise.
5745 (Sized_relobj_incr::do_for_all_local_got_entries): Likewise.
5746 (Sized_relobj_incr::section_offsets_): Likewise.
5747 * object.cc (Sized_relobj::do_for_all_local_got_entries): New
5748 function.
5749 (Sized_relobj_file::Sized_relobj_file): Remove local_got_offsets_.
5750 (Sized_relobj_file::layout_section): Replace refs to section_offsets_
5751 with accessor function.
5752 (Sized_relobj_file::do_layout): Likewise.
5753 (Sized_relobj_file::do_layout_deferred_sections): Likewise.
5754 (Sized_relobj_file::do_for_all_local_got_entries): Move to base class.
5755 (Sized_relobj_file::compute_final_local_value): Replace refs to
5756 section_offsets_ with accessor function.
5757 (Sized_relobj_file::do_finalize_local_symbols): Likewise.
5758 * object.h (Relobj::Relobj): Initialize new data members.
5759 (Relobj::add_dyn_reloc): New function.
5760 (Relobj::first_dyn_reloc): New function.
5761 (Relobj::dyn_reloc_count): New function.
5762 (Relobj::first_dyn_reloc_): New data member.
5763 (Relobj::dyn_reloc_count_): New data member.
5764 (Sized_relobj): Rename Sized_relobj_base to this; adjust all
5765 references.
5766 (Sized_relobj::Address): New typedef.
5767 (Sized_relobj::invalid_address): Move here from child class.
5768 (Sized_relobj::Sized_relobj): Initialize new data members.
5769 (Sized_relobj::sized_relobj): New function.
5770 (Sized_relobj::is_output_section_offset_invalid): Move here from
5771 child class.
5772 (Sized_relobj::get_output_section_offset): Likewise.
5773 (Sized_relobj::local_has_got_offset): Likewise.
5774 (Sized_relobj::local_got_offset): Likewise.
5775 (Sized_relobj::set_local_got_offset): Likewise.
5776 (Sized_relobj::do_for_all_local_got_entries): Likewise.
5777 (Sized_relobj::clear_got_offsets): New function.
5778 (Sized_relobj::section_offsets): Move here from child class.
5779 (Sized_relobj::do_output_section_offset): Likewise.
5780 (Sized_relobj::do_set_section_offset): Likewise.
5781 (Sized_relobj::Local_got_offsets): Likewise.
5782 (Sized_relobj::local_got_offsets_): Likewise.
5783 (Sized_relobj::section_offsets_): Likewise.
5784 (Sized_relobj_file): Rename Sized_relobj to this; adjust all
5785 references.
5786 (Sized_relobj_file::is_output_section_offset_invalid): Move to base
5787 class.
5788 (Sized_relobj_file::sized_relobj): New function
5789 (Sized_relobj_file::local_has_got_offset): Move to base class.
5790 (Sized_relobj_file::local_got_offset): Likewise.
5791 (Sized_relobj_file::set_local_got_offset): Likewise.
5792 (Sized_relobj_file::get_output_section_offset): Likewise.
5793 (Sized_relobj_file::do_for_all_local_got_entries): Likewise.
5794 (Sized_relobj_file::do_output_section_offset): Likewise.
5795 (Sized_relobj_file::do_set_section_offset): Likewise.
5796 (Sized_relobj_file::Local_got_offsets): Likewise.
5797 (Sized_relobj_file::local_got_offsets_): Likewise.
5798 (Sized_relobj_file::section_offsets_): Likewise.
5799 * output.cc (Output_reloc::Output_reloc): Adjust type of relobj
5800 (all constructors).
5801 (set_needs_dynsym_index): Convert relobj to derived class pointer.
5802 (Output_reloc::get_symbol_index): Likewise.
5803 (Output_reloc::local_section_offset): Likewise.
5804 (Output_reloc::get_address): Likewise.
5805 (Output_reloc::symbol_value): Likewise.
5806 (Output_data_got::reserve_slot): Move to class definition.
5807 (Output_data_got::reserve_local): New function.
5808 (Output_data_got::reserve_slot_for_global): Remove.
5809 (Output_data_got::reserve_global): New function.
5810 * output.h (Output_reloc::Output_reloc): Adjust type of relobj
5811 (all constructors, two instantiations).
5812 (Output_reloc::get_relobj): New function (two instantiations).
5813 (Output_reloc::u1_.relobj, Output_reloc::u2_.relobj): Adjust type.
5814 (Output_data_reloc_base::add): Convert relobj to derived class pointer.
5815 (Output_data_reloc::add_global): Adjust type of relobj.
5816 (Output_data_reloc::add_global_relative): Likewise.
5817 (Output_data_reloc::add_symbolless_global_addend): Likewise.
5818 (Output_data_reloc::add_local): Likewise.
5819 (Output_data_reloc::add_local_relative): Likewise.
5820 (Output_data_reloc::add_symbolless_local_addend): Likewise.
5821 (Output_data_reloc::add_local_section): Likewise.
5822 (Output_data_reloc::add_output_section): Likewise.
5823 (Output_data_reloc::add_absolute): Likewise.
5824 (Output_data_reloc::add_target_specific): Likewise.
5825 (Output_data_got::reserve_slot): Move definition here.
5826 (Output_data_got::reserve_local): New function.
5827 (Output_data_got::reserve_global): New function.
5828 * reloc.cc (Sized_relobj_file::do_read_relocs): Replace refs to
5829 section_offsets_ with accessor function.
5830 (Sized_relobj_file::write_sections): Likewise.
5831 (Sized_relobj_file::do_relocate_sections): Likewise.
5832 * target.h (Sized_target::reserve_local_got_entry): New function.
5833 (Sized_target::reserve_global_got_entry): New function.
5834 * x86_64.cc (Target_x86_64::reserve_local_got_entry): New function.
5835 (Target_x86_64::reserve_global_got_entry): New function.
5836 (Target_x86_64::init_got_plt_for_update): Create rela_dyn section.
5837
4829d394
CC
58382011-05-23 Cary Coutant <ccoutant@google.com>
5839
5840 * gold.cc (queue_middle_tasks): Process existing GOT/PLT entries.
5841 * incremental-dump.cc (dump_incremental_inputs): Mask high-order
5842 bit when checking got_type.
5843 * incremental.cc (Sized_incremental_binary::setup_readers):
5844 Store symbol table and string table locations; initialize bit vector
5845 of file status flags.
5846 (Sized_incremental_binary::do_reserve_layout): Set bit flag for
5847 unchanged files.
5848 (Sized_incremental_binary::do_process_got_plt): New function.
5849 (Sized_incremental_binary::get_symtab_view): Use stored locations.
5850 (Output_section_incremental_inputs::set_final_data_size): Record
5851 file index for each input file.
5852 (Output_section_incremental_inputs::write_got_plt): Store file index
5853 instead of input entry offset for each GOT entry.
5854 * incremental.h
5855 (Incremental_input_entry::Incremental_input_entry): Initialize new
5856 data member.
5857 (Incremental_input_entry::set_offset): Store file index.
5858 (Incremental_input_entry::get_file_index): New function.
5859 (Incremental_input_entry::file_index_): New data member.
5860 (Incremental_binary::process_got_plt): New function.
5861 (Incremental_binary::do_process_got_plt): New function.
5862 (Sized_incremental_binary::Sized_incremental_binary): Initialize new
5863 data members.
5864 (Sized_incremental_binary::~Sized_incremental_binary): New destructor.
5865 (Sized_incremental_binary::set_file_is_unchanged): New function.
5866 (Sized_incremental_binary::file_is_unchanged): New function.
5867 (Sized_incremental_binary::do_process_got_plt): New function.
5868 (Sized_incremental_binary::file_status_): New data member.
5869 (Sized_incremental_binary::main_symtab_loc_): New data member.
5870 (Sized_incremental_binary::main_strtab_loc_): New data member.
5871 * output.cc (Output_data_got::Got_entry::write): Add case
5872 RESERVED_CODE.
5873 (Output_data_got::add_global): Call add_got_entry.
5874 (Output_data_got::add_global_plt): Likewise.
5875 (Output_data_got::add_global_with_rel): Likewise.
5876 (Output_data_got::add_global_with_rela): Likewise.
5877 (Output_data_got::add_global_pair_with_rel): Call add_got_entry_pair.
5878 (Output_data_got::add_global_pair_with_rela): Likewise.
5879 (Output_data_got::add_local): Call add_got_entry.
5880 (Output_data_got::add_local_plt): Likewise.
5881 (Output_data_got::add_local_with_rel): Likewise.
5882 (Output_data_got::add_local_with_rela): Likewise.
5883 (Output_data_got::add_local_pair_with_rel): Call add_got_entry_pair.
5884 (Output_data_got::add_local_pair_with_rela): Likewise.
5885 (Output_data_got::reserve_slot): New function.
5886 (Output_data_got::reserve_slot_for_global): New function.
5887 (Output_data_got::add_got_entry): New function.
5888 (Output_data_got::add_got_entry_pair): New function.
5889 (Output_section::add_output_section_data): Edit FIXME.
5890 * output.h
5891 (Output_section_data_build::Output_section_data_build): New
5892 constructor with size parameter.
5893 (Output_data_space::Output_data_space): Likewise.
5894 (Output_data_got::Output_data_got): Initialize new data member; new
5895 constructor with size parameter.
5896 (Output_data_got::add_constant): Call add_got_entry.
5897 (Output_data_got::reserve_slot): New function.
5898 (Output_data_got::reserve_slot_for_global): New function.
5899 (class Output_data_got::Got_entry): Add RESERVED_CODE.
5900 (Output_data_got::add_got_entry): New function.
5901 (Output_data_got::add_got_entry_pair): New function.
5902 (Output_data_got::free_list_): New data member.
5903 * target.h (Sized_target::init_got_plt_for_update): New function.
5904 (Sized_target::register_global_plt_entry): New function.
5905 * x86_64.cc (Output_data_plt_x86_64::Output_data_plt_x86_64):
5906 Initialize new data member; call init; add constructor with PLT count.
5907 (Output_data_plt_x86_64::init): New function.
5908 (Output_data_plt_x86_64::add_relocation): New function.
5909 (Output_data_plt_x86_64::reserve_slot): New function.
5910 (Output_data_plt_x86_64::free_list_): New data member.
5911 (Target_x86_64::init_got_plt_for_update): New function.
5912 (Target_x86_64::register_global_plt_entry): New function.
5913 (Output_data_plt_x86_64::add_entry): Allocate from free list for
5914 incremental updates.
5915 (Output_data_plt_x86_64::add_relocation): New function.
5916 * testsuite/object_unittest.cc (Object_test): Set default options.
5917
ec69d6da
ILT
59182011-05-16 Ian Lance Taylor <iant@google.com>
5919
5920 * options.h (class General_options): Make -i a synonym for -r.
5921
732e31de
ILT
59222011-05-16 Ian Lance Taylor <iant@google.com>
5923
5924 * testsuite/tls_test_main.cc: Use semaphores instead of mutexes.
5925
403676b5
CC
59262011-05-10 Cary Coutant <ccoutant@google.com>
5927
5928 * object.cc (Sized_relobj::do_count_local_symbols): Check for
5929 strip_all (-s).
5930
5b7b7d6e
ILT
59312011-05-06 Ian Lance Taylor <iant@google.com>
5932
5933 * layout.cc (Layout::layout): If the output section flags change,
5934 update the ordering.
5935
f0f9babf
CC
59362011-04-25 Cary Coutant <ccoutant@google.com>
5937
5938 * incremental-dump.cc (dump_incremental_inputs): Print local
5939 symbol info for each input file.
5940 * incremental.cc
5941 (Output_section_incremental_inputs::set_final_data_size): Add local
5942 symbol info to input file entries in incremental info.
5943 (Output_section_incremental_inputs::write_info_blocks): Likewise.
5944 (Sized_incr_relobj::Sized_incr_relobj): Initialize new data members.
5945 (Sized_incr_relobj::do_add_symbols): Cosmetic change.
5946 (Sized_incr_relobj::do_count_local_symbols): Replace stub with
5947 implementation.
5948 (Sized_incr_relobj::do_finalize_local_symbols): Likewise.
5949 (Sized_incr_relobj::do_relocate): Write the local symbols.
5950 (Sized_incr_dynobj::do_add_symbols): Cosmetic change.
5951 * incremental.h (Incremental_inputs_reader::get_symbol_offset):
5952 Adjust size of input file header.
5953 (Incremental_inputs_reader::get_local_symbol_offset): New function.
5954 (Incremental_inputs_reader::get_local_symbol_count): New function.
5955 (Incremental_inputs_reader::get_input_section): Adjust size of input
5956 file header.
5957 (Incremental_inputs_reader::get_global_symbol_reader): Likewise.
5958 (Sized_incr_relobj::This): New typedef.
5959 (Sized_incr_relobj::sym_size): New const data member.
5960 (Sized_incr_relobj::Local_symbol): New struct.
5961 (Sized_incr_relobj::do_output_local_symbol_count): New function.
5962 (Sized_incr_relobj::do_local_symbol_offset): New function.
5963 (Sized_incr_relobj::local_symbol_count_): New data member.
5964 (Sized_incr_relobj::output_local_dynsym_count_): New data member.
5965 (Sized_incr_relobj::local_symbol_index_): New data member.
5966 (Sized_incr_relobj::local_symbol_offset_): New data member.
5967 (Sized_incr_relobj::local_dynsym_offset_): New data member.
5968 (Sized_incr_relobj::local_symbols_): New data member.
5969 * object.h (Relobj::output_local_symbol_count): New function.
5970 (Relobj::local_symbol_offset): New function.
5971 (Relobj::do_output_local_symbol_count): New function.
5972 (Relobj::do_local_symbol_offset): New function.
5973 (Sized_relobj::do_output_local_symbol_count): New function.
5974 (Sized_relobj::do_local_symbol_offset): New function.
5975
d0a9ace3
ILT
59762011-04-22 Vladimir Simonov <sv@sw.ru>
5977
5978 * descriptors.cc (set_close_on_exec): New function.
5979 (Descriptors::open): Use set_close_on_exec.
5980 * output.cc (S_ISLNK): Define if not defined.
5981
94a3fc8b
CC
59822011-04-22 Cary Coutant <ccoutant@google.com>
5983
5984 * incremental.cc (Sized_incremental_binary::setup_readers): Allocate
5985 global symbol map.
5986 (Sized_incremental_binary::do_apply_incremental_relocs): New function.
5987 (Sized_incr_relobj::do_add_symbols): Add symbols to global symbol map.
5988 (Sized_incr_relobj::do_relocate): Remap section indices in incremental
5989 relocations.
5990 (Sized_incr_dynobj::do_add_symbols): Add symbols to global symbol map.
5991 (Sized_incr_dynobj::do_for_all_global_symbols): Remove FIXME.
5992 (Sized_incr_dynobj::do_for_all_local_got_entries): Likewise.
5993 * incremental.h
5994 (Incremental_inputs_reader::global_symbol_reader_at_offset): New
5995 function.
5996 (Incremental_binary::apply_incremental_relocs): New function.
5997 (Incremental_binary::do_apply_incremental_relocs): New function.
5998 (Sized_incremental_binary::Sized_incremental_binary): Initialize new
5999 data member.
6000 (Sized_incremental_binary::add_global_symbol): New function.
6001 (Sized_incremental_binary::global_symbol): New function.
6002 (Sized_incremental_binary::do_apply_incremental_relocs): New function.
6003 (Sized_incremental_binary::symbol_map_): New data member.
6004 * layout.cc (Layout_task_runner::run): Apply incremental relocations.
6005 * target.h (Sized_target::apply_relocation): New function.
6006 * target-reloc.h (apply_relocation): New function.
6007 * x86_64.cc (Target_x86_64::apply_relocation): New function.
6008
c87e4302
DK
60092011-04-22 Doug Kwan <dougkwan@google.com>
6010
6011 * arm.cc (Arm_output_section::Arm_output_section): Set SHF_LINK_ORDER
6012 flag of a SHT_ARM_EXIDX section.
2e702c99 6013 * testsuite/Makefile.am (arm_exidx_test): New test rules.
c87e4302
DK
6014 * testsuite/Makefile.in: Regenerate.
6015 * testsuite/arm_exidx_test.s: New file.
6016 * testsuite/arm_exidx_test.sh: Same.
6017
e7782cf6
CC
60182011-04-20 Cary Coutant <ccoutant@google.com>
6019
6020 PR gold/12689
6021 * archive.h (Incremental_archive_entry::Archive_member):
6022 Initialize arg_serial_ (second constructor).
6023
308ecdc7
ILT
60242011-04-17 Ian Lance Taylor <iant@google.com>
6025
6026 * object.cc (Relocate_info::location): Simplify location string.
6027 * errors.cc (Errors::error_at_location): Don't print program
6028 name.
6029 (Errors::warning_at_location): Likewise.
6030 (Errors::undefined_symbol): Likewise.
6031 * testsuite/debug_msg.sh: Update accordingly.
6032
bec5b579
CC
60332011-04-14 Cary Coutant <ccoutant@google.com>
6034
6035 * gold/layout.cc (Layout::symtab_section_offset): New function.
6036 * gold/layout.h (Layout::symtab_section_offset): New function.
6037 * gold/reloc.cc (Sized_relobj::do_relocate): Call it.
6038
88597d34
ILT
60392011-04-12 Ian Lance Taylor <iant@google.com>
6040
6041 * configure.ac: Check for sys/mman.h and mmap. Check for mremap
6042 with MREMAP_MAYMOVE.
6043 * output.h (class Output_file): Add map_is_allocated_ field.
6044 * output.cc: Only #include <sys/mman.h> if it exists. If mmap is
6045 not available, provide stubs. If mremap is not available, #define
6046 it to gold_mremap.
6047 (MREMAP_MAYMOVE): Define if not defined.
6048 (Output_file::Output_file): Initialize map_is_allocated_.
6049 (Output_file::resize): Check map_is_allocated_.
6050 (Output_file::map_anonymous): If mmap fails, use malloc.
6051 (Output_file::unmap): Don't do anything for an anonymous map.
6052 * fileread.cc: Only #include <sys/mman.h> if it exists. If mmap
6053 is not available, provide stubs.
6054 (File_read::View::~View): Use free rather than delete[].
6055 (File_read::make_view): Use malloc rather than new[]. If mmap
6056 fails, use malloc.
6057 (File_read::find_or_make_view): Use malloc rather than new[].
6058 * gold.h: Remove HAVE_REMAP code.
6059 * mremap.c: #include <errno.h>. Only #include <sys/mman.h> if it
6060 exists. Rename mremap to gold_mremap. If mmap is not available
6061 don't do anything.
6062 * configure, config.in: Rebuild.
6063
11e361bc
ILT
60642011-04-11 Ian Lance Taylor <iant@google.com>
6065
6066 * incremental.cc (Sized_incr_relobj::do_add_symbols): Always
6067 initialize local variable v.
6068
cdc29364
CC
60692011-04-11 Cary Coutant <ccoutant@google.com>
6070
6071 * archive.cc (Archive::include_member): Adjust call to
6072 report_object.
6073 (Add_archive_symbols::run): Track argument serial numbers.
6074 (Lib_group::include_member): Likewise.
6075 (Add_lib_group_symbols::run): Adjust call to report_archive_begin.
6076 * archive.h (Incremental_archive_entry::Archive_member):
6077 Initialize arg_serial_.
6078 (Archive_member::arg_serial_): New data member.
6079 * dynobj.cc (Dynobj::Dynobj): Allow input_file_ to be NULL.
6080 (Sized_dynobj::do_add_symbols): Track symbols when doing an
6081 incremental link.
6082 (Sized_dynobj::do_for_all_local_got_entries): New function.
6083 * dynobj.h: (Sized_dynobj::do_for_all_local_got_entries): New
6084 function.
6085 * fileread.cc (get_mtime): New function.
6086 * fileread.h (get_mtime): New function.
6087 * gold.cc (queue_initial_tasks): Check for incremental update.
6088 (process_incremental_input): New function.
6089 (queue_middle_tasks): Don't force valid target for incremental
6090 update.
6091 * incremental-dump.cc (find_input_containing_global): Adjust
6092 size of symbol info entry.
6093 (dump_incremental_inputs): Dump argument serial number and
6094 in_system_directory flag; bias shndx by 1; print symbol names
6095 when dumping per-file symbol lists; use new symbol info readers.
6096 * incremental.cc
6097 (Output_section_incremental_inputs:update_data_size): New function.
6098 (Sized_incremental_binary::setup_readers): Setup input readers
6099 for each input file; build maps for files added from libraries
6100 and scripts.
6101 (Sized_incremental_binary::check_input_args): New function.
6102 (Sized_incremental_binary::do_check_inputs): Build map of argument
6103 serial numbers to input arguments.
6104 (Sized_incremental_binary::do_file_has_changed): Rename
6105 do_file_is_unchanged to this; compare file modification times.
6106 (Sized_incremental_binary::do_init_layout): New function.
6107 (Sized_incremental_binary::do_reserve_layout): New function.
6108 (Sized_incremental_binary::do_get_input_reader): Remove.
6109 (Sized_incremental_binary::get_symtab_view): New function.
6110 (Incremental_checker::can_incrementally_link_output_file): Remove.
6111 (Incremental_inputs::report_command_line): Exclude --debug options.
6112 (Incremental_inputs::report_archive_begin): Add parameter; track
6113 argument serial numbers; don't put input file entry for archive
6114 before archive members.
6115 (Incremental_inputs::report_archive_end): Put input file entry
6116 for archive after archive members.
6117 (Incremental_inputs::report_object): Add parameter; track argument
6118 serial numbers and in_system_directory flag.
6119 (Incremental_inputs::report_script): Add parameter; track argument
6120 serial numbers.
6121 (Output_section_incremental_inputs::set_final_data_size): Adjust
6122 size of symbol info entry; check for forwarding symbols.
6123 (Output_section_incremental_inputs::write_input_files): Write
6124 in_system_directory flag and argument serial number.
6125 (Output_section_incremental_inputs::write_info_blocks): Map section
6126 indices between incremental info and original input file; store
6127 input section index for each symbol.
6128 (class Local_got_offset_visitor): Derive from Got_offset_list::Visitor;
6129 change operator() to visit().
6130 (class Global_got_offset_visitor): Likewise.
6131 (class Global_symbol_visitor_got_plt):
6132 (Output_section_incremental_inputs::write_got_plt): Use new visitor
6133 classes.
6134 (Sized_incr_relobj::Sized_incr_relobj): New constructor.
6135 (Sized_incr_relobj::do_read_symbols): New function.
6136 (Sized_incr_relobj::do_layout): New function.
6137 (Sized_incr_relobj::do_layout_deferred_sections): New function.
6138 (Sized_incr_relobj::do_add_symbols): New function.
6139 (Sized_incr_relobj::do_should_include_member): New function.
6140 (Sized_incr_relobj::do_for_all_global_symbols): New function.
6141 (Sized_incr_relobj::do_for_all_local_got_entries): New function.
6142 (Sized_incr_relobj::do_section_size): New function.
6143 (Sized_incr_relobj::do_section_name): New function.
6144 (Sized_incr_relobj::do_section_contents): New function.
6145 (Sized_incr_relobj::do_section_flags): New function.
6146 (Sized_incr_relobj::do_section_entsize): New function.
6147 (Sized_incr_relobj::do_section_address): New function.
6148 (Sized_incr_relobj::do_section_type): New function.
6149 (Sized_incr_relobj::do_section_link): New function.
6150 (Sized_incr_relobj::do_section_info): New function.
6151 (Sized_incr_relobj::do_section_addralign): New function.
6152 (Sized_incr_relobj::do_initialize_xindex): New function.
6153 (Sized_incr_relobj::do_get_global_symbol_counts): New function.
6154 (Sized_incr_relobj::do_read_relocs): New function.
6155 (Sized_incr_relobj::do_gc_process_relocs): New function.
6156 (Sized_incr_relobj::do_scan_relocs): New function.
6157 (Sized_incr_relobj::do_count_local_symbols): New function.
6158 (Sized_incr_relobj::do_finalize_local_symbols): New function.
6159 (Sized_incr_relobj::do_set_local_dynsym_indexes): New function.
6160 (Sized_incr_relobj::do_set_local_dynsym_offset): New function.
6161 (Sized_incr_relobj::do_relocate): New function.
6162 (Sized_incr_relobj::do_set_section_offset): New function.
6163 (Sized_incr_dynobj::Sized_incr_dynobj): New function.
6164 (Sized_incr_dynobj::do_read_symbols): New function.
6165 (Sized_incr_dynobj::do_layout): New function.
6166 (Sized_incr_dynobj::do_add_symbols): New function.
6167 (Sized_incr_dynobj::do_should_include_member): New function.
6168 (Sized_incr_dynobj::do_for_all_global_symbols): New function.
6169 (Sized_incr_dynobj::do_for_all_local_got_entries): New function.
6170 (Sized_incr_dynobj::do_section_size): New function.
6171 (Sized_incr_dynobj::do_section_name): New function.
6172 (Sized_incr_dynobj::do_section_contents): New function.
6173 (Sized_incr_dynobj::do_section_flags): New function.
6174 (Sized_incr_dynobj::do_section_entsize): New function.
6175 (Sized_incr_dynobj::do_section_address): New function.
6176 (Sized_incr_dynobj::do_section_type): New function.
6177 (Sized_incr_dynobj::do_section_link): New function.
6178 (Sized_incr_dynobj::do_section_info): New function.
6179 (Sized_incr_dynobj::do_section_addralign): New function.
6180 (Sized_incr_dynobj::do_initialize_xindex): New function.
6181 (Sized_incr_dynobj::do_get_global_symbol_counts): New function.
6182 (make_sized_incremental_object): New function.
6183 (Incremental_library::copy_unused_symbols): New function.
6184 (Incremental_library::do_for_all_unused_symbols): New function.
6185 * incremental.h (enum Incremental_input_flags): New type.
6186 (class Incremental_checker): Remove.
6187 (Incremental_input_entry::Incremental_input_entry): Add argument
6188 serial number.
6189 (Incremental_input_entry::arg_serial): New function.
6190 (Incremental_input_entry::set_is_in_system_directory): New function.
6191 (Incremental_input_entry::is_in_system_directory): New function.
6192 (Incremental_input_entry::arg_serial_): New data member.
6193 (Incremental_input_entry::is_in_system_directory_): New data member.
6194 (class Script_info): Move here from script.h.
6195 (Script_info::Script_info): Add filename parameter.
6196 (Script_info::filename): New function.
6197 (Script_info::filename_): New data member.
6198 (Incremental_script_entry::Incremental_script_entry): Add argument
6199 serial number.
6200 (Incremental_object_entry::Incremental_object_entry): Likewise.
6201 (Incremental_object_entry::add_input_section): Build list of input
6202 sections with map to original shndx.
6203 (Incremental_object_entry::get_input_section_index): New function.
6204 (Incremental_object_entry::shndx_): New data member.
6205 (Incremental_object_entry::name_key_): Rename; adjust all refs.
6206 (Incremental_object_entry::sh_size_): Rename; adjust all refs.
6207 (Incremental_archive_entry::Incremental_archive_entry): Add argument
6208 serial number.
6209 (Incremental_inputs::report_archive_begin): Likewise.
6210 (Incremental_inputs::report_object): Likewise.
6211 (Incremental_inputs::report_script): Likewise.
6212 (class Incremental_global_symbol_reader): New class.
6213 (Incremental_input_entry_reader::Incremental_input_entry_reader): Read
6214 and store flags and input file type.
6215 (Incremental_input_entry_reader::arg_serial): New function.
6216 (Incremental_input_entry_reader::type): Extract type from flags.
6217 (Incremental_input_entry_reader::is_in_system_directory): New function.
6218 (Incremental_input_entry_reader::get_input_section_count): Call
6219 accessor function for type.
6220 (Incremental_input_entry_reader::get_symbol_offset): Call accessor
6221 function for type; adjust size of global symbol entry.
6222 (Incremental_input_entry_reader::get_global_symbol_count): Call
6223 accessor function for type.
6224 (Incremental_input_entry_reader::get_object_count): Likewise.
6225 (Incremental_input_entry_reader::get_object_offset): Likewise.
6226 (Incremental_input_entry_reader::get_member_count): Likewise.
6227 (Incremental_input_entry_reader::get_unused_symbol_count): Likewise.
6228 (Incremental_input_entry_reader::get_member_offset): Likewise.
6229 (Incremental_input_entry_reader::get_unused_symbol): Likewise.
6230 (Incremental_input_entry_reader::Global_symbol_info): Remove.
6231 (Incremental_input_entry_reader::get_global_symbol_info): Remove.
6232 (Incremental_input_entry_reader::get_global_symbol_reader): New
6233 function.
6234 (Incremental_input_entry_reader::get_output_symbol_index): New
6235 function.
6236 (Incremental_input_entry_reader::type_): Remove.
6237 (Incremental_input_entry_reader::flags_): New data member.
6238 (Incremental_inputs_reader::input_file_offset): New function.
6239 (Incremental_inputs_reader::input_file_index): New function.
6240 (Incremental_inputs_reader::input_file): Call input_file_offset.
6241 (Incremental_inputs_reader::input_file_at_offset): New function.
6242 (Incremental_relocs_reader::get_r_type): Reformat.
6243 (Incremental_relocs_reader::get_r_shndx): Reformat.
6244 (Incremental_relocs_reader::get_r_offset): Reformat.
6245 (Incremental_relocs_reader::data): New function.
6246 (Incremental_binary::Incremental_binary): Initialize new data members.
6247 (Incremental_binary::check_inputs): Add cmdline parameter.
6248 (Incremental_binary::file_is_unchanged): Remove.
6249 (Input_reader::arg_serial): New function.
6250 (Input_reader::get_unused_symbol_count): New function.
6251 (Input_reader::get_unused_symbol): New function.
6252 (Input_reader::do_arg_serial): New function.
6253 (Input_reader::do_get_unused_symbol_count): New function.
6254 (Input_reader::do_get_unused_symbol): New function.
6255 (Incremental_binary::input_file_count): New function.
6256 (Incremental_binary::get_input_reader): Change signature to use
6257 index instead of filename.
6258 (Incremental_binary::file_has_changed): New function.
6259 (Incremental_binary::get_input_argument): New function.
6260 (Incremental_binary::get_library): New function.
6261 (Incremental_binary::get_script_info): New function.
6262 (Incremental_binary::init_layout): New function.
6263 (Incremental_binary::reserve_layout): New function.
6264 (Incremental_binary::output_file): New function.
6265 (Incremental_binary::do_check_inputs): New function.
6266 (Incremental_binary::do_file_is_unchanged): Remove.
6267 (Incremental_binary::do_file_has_changed): New function.
6268 (Incremental_binary::do_init_layout): New function.
6269 (Incremental_binary::do_reserve_layout): New function.
6270 (Incremental_binary::do_input_file_count): New function.
6271 (Incremental_binary::do_get_input_reader): Change signature.
6272 (Incremental_binary::input_args_map_): New data member.
6273 (Incremental_binary::library_map_): New data member.
6274 (Incremental_binary::script_map_): New data member.
6275 (Sized_incremental_binary::Sized_incremental_binary): Initialize
6276 new data members.
6277 (Sized_incremental_binary::output_section): New function.
6278 (Sized_incremental_binary::inputs_reader): Add const.
6279 (Sized_incremental_binary::symtab_reader): Add const.
6280 (Sized_incremental_binary::relocs_reader): Add const.
6281 (Sized_incremental_binary::got_plt_reader): Add const.
6282 (Sized_incremental_binary::get_symtab_view): New function.
6283 (Sized_incremental_binary::Inputs_reader): New typedef.
6284 (Sized_incremental_binary::Input_entry_reader): New typedef.
6285 (Sized_incremental_binary::do_check_inputs): Add cmdline parameter.
6286 (Sized_incremental_binary::do_file_is_unchanged): Remove.
6287 (Sized_incremental_binary::do_file_has_changed): New function.
6288 (Sized_incremental_binary::do_init_layout): New function.
6289 (Sized_incremental_binary::do_reserve_layout): New function.
6290 (Sized_input_reader::Inputs_reader): Remove.
6291 (Sized_input_reader::Input_entry_reader): Remove.
6292 (Sized_input_reader::do_arg_serial): New function.
6293 (Sized_input_reader::do_get_unused_symbol_count): New function.
6294 (Sized_input_reader::do_get_unused_symbol): New function.
6295 (Sized_incremental_binary::do_input_file_count): New function.
6296 (Sized_incremental_binary::do_get_input_reader): Change signature;
6297 use index instead of filename.
6298 (Sized_incremental_binary::section_map_): New data member.
6299 (Sized_incremental_binary::input_entry_readers_): New data member.
6300 (class Sized_incr_relobj): New class.
6301 (class Sized_incr_dynobj): New class.
6302 (make_sized_incremental_object): New function.
6303 (class Incremental_library): New class.
6304 * layout.cc (Free_list::num_lists): New static data member.
6305 (Free_list::num_nodes): New static data member.
6306 (Free_list::num_removes): New static data member.
6307 (Free_list::num_remove_visits): New static data member.
6308 (Free_list::num_allocates): New static data member.
6309 (Free_list::num_allocate_visits): New static data member.
6310 (Free_list::init): New function.
6311 (Free_list::remove): New function.
6312 (Free_list::allocate): New function.
6313 (Free_list::dump): New function.
6314 (Free_list::print_stats): New function.
6315 (Layout_task_runner::run): Resize output file for incremental updates.
6316 (Layout::Layout): Initialize new data members.
6317 (Layout::set_incremental_base): New function.
6318 (Layout::init_fixed_output_section): New function.
6319 (Layout::layout_eh_frame): Do not build .eh_frame_hdr section for
6320 incremental updates.
6321 (Layout::create_gold_note): Do not create gold note section for
6322 incremental updates.
6323 (Layout::set_segment_offsets): Do not recalculate RELRO alignment
6324 for incremental updates.
6325 (Layout::set_section_offsets): For incremental updates, allocate space
6326 from free list.
6327 (Layout::create_symtab_sections): Layout with offsets relative to
6328 start of section; for incremental updates, allocate space from free
6329 list.
6330 (Layout::create_shdrs): For incremental updates, allocate space from
6331 free list.
6332 (Layout::finish_dynamic_section): For incremental updates, do not
6333 check --as-needed (fixed in subsequent patch).
6334 * layout.h (class Free_list): New class.
6335 (Layout::set_incremental_base): New function.
6336 (Layout::incremental_base): New function.
6337 (Layout::init_fixed_output_section): New function.
6338 (Layout::allocate): New function.
6339 (Layout::incremental_base_): New data member.
6340 (Layout::free_list_): New data member.
6341 * main.cc (main): Print Free_list statistics.
6342 * object.cc (Relobj::finalize_incremental_relocs): Add
6343 clear_counts parameter; clear counts only when clear_counts is set.
6344 (Sized_relobj::Sized_relobj): Initialize new base class.
6345 (Sized_relobj::do_layout): Don't report special sections.
6346 (Sized_relobj::do_for_all_local_got_entries): New function.
6347 (Sized_relobj::write_local_symbols): Add symtab_off parameter; add
6348 symtab_off to all symbol table offsets.
6349 (Sized_relobj::do_get_global_symbol_counts): Add typename keyword.
6350 * object.h (class Got_offset_list): Move to top of file.
6351 (Object::Object): Allow case where input_file == NULL.
6352 (Object::~Object): Likewise.
6353 (Object::input_file): Assert that input_file != NULL.
6354 (Object::lock): Allow case where input_file == NULL.
6355 (Object::unlock): Likewise.
6356 (Object::is_locked): Likewise.
6357 (Object::token): Likewise.
6358 (Object::release): Likewise.
6359 (Object::is_incremental): New function.
6360 (Object::get_mtime): New function.
6361 (Object::for_all_local_got_entries): New function.
6362 (Object::clear_view_cache_marks): Allow case where input_file == NULL.
6363 (Object::set_is_in_system_directory): New function.
6364 (Object::is_in_system_directory): New function.
6365 (Object::do_is_incremental): New function.
6366 (Object::do_get_mtime): New function.
6367 (Object::do_for_all_local_got_entries): New function.
6368 (Object::is_in_system_directory_): New data member.
6369 (Relobj::finalize_incremental_relocs): Add clear_counts parameter.
6370 (class Sized_relobj_base): New class.
6371 (class Sized_relobj): Derive from Sized_relobj_base.
6372 (class Sized_relobj::Symbols): Redeclare from base class.
6373 (class Sized_relobj::local_got_offset_list): Remove.
6374 (class Sized_relobj::Output_sections): Redeclare from base class.
6375 (class Sized_relobj::do_for_all_local_got_entries): New function.
6376 (class Sized_relobj::write_local_symbols): Add offset parameter.
6377 (class Sized_relobj::local_symbol_offset_): Update comment.
6378 (class Sized_relobj::local_dynsym_offset_): Update comment.
6379 * options.cc (Input_arguments::add_file): Remove const.
6380 * options.h (Input_file_argument::Input_file_argument):
6381 Initialize arg_serial_ (all constructors).
6382 (Input_file_argument::set_arg_serial): New function.
6383 (Input_file_argument::arg_serial): New function.
6384 (Input_file_argument::arg_serial_): New data member.
6385 (Input_arguments::Input_arguments): Initialize file_count_.
6386 (Input_arguments::add_file): Remove const.
6387 (Input_arguments::number_of_input_files): New function.
6388 (Input_arguments::file_count_): New data member.
6389 (Command_line::number_of_input_files): Call
6390 Input_arguments::number_of_input_files.
6391 * output.cc (Output_segment_headers::Output_segment_headers):
6392 Set current size.
6393 (Output_section::Input_section::current_data_size): New function.
6394 (Output_section::Output_section): Initialize new data members.
6395 (Output_section::add_input_section): Don't do merge sections for
6396 an incremental link; allocate space from free list for an
6397 incremental update.
6398 (Output_section::add_output_section_data): Allocate space from
6399 free list for an incremental update.
6400 (Output_section::update_data_size): New function.
6401 (Output_section::set_fixed_layout): New function.
6402 (Output_section::reserve): New function.
6403 (Output_segment::set_section_addresses): Remove const.
6404 (Output_segment::set_section_list_addresses): Remove const; allocate
6405 space from free list for an incremental update.
6406 (Output_segment::set_offset): Adjust size of RELRO segment for an
6407 incremental update.
6408 * output.h (Output_data::current_data_size): Move here from
6409 child classes.
6410 (Output_data::pre_finalize_data_size): New function.
6411 (Output_data::update_data_size): New function.
6412 (Output_section_headers::update_data_size): new function.
6413 (Output_section_data_build::current_data_size): Move to Output_data.
6414 (Output_data_strtab::update_data_size): New function.
6415 (Output_section::current_data_size): Move to Output_data.
6416 (Output_section::set_fixed_layout): New function.
6417 (Output_section::has_fixed_layout): New function.
6418 (Output_section::reserve): New function.
6419 (Output_section::update_data_size): New function.
6420 (Output_section::has_fixed_layout_): New data member.
6421 (Output_section::free_list_): New data member.
6422 (Output_segment::set_section_addresses): Remove const.
6423 (Output_segment::set_section_list_addresses): Remove const.
6424 * plugin.cc (Sized_pluginobj::do_for_all_local_got_entries):
6425 New function.
6426 * plugin.h (Sized_pluginobj::do_for_all_local_got_entries):
6427 New function.
6428 * readsyms.cc (Read_symbols::do_read_symbols): Add library
6429 parameter when calling Add_symbols constructor; store argument
6430 serial number for members of a lib group.
6431 (Add_symbols::locks): Allow case where token == NULL.
6432 (Add_symbols::run): Report libraries denoted by --start-lib/--end-lib.
6433 (Read_member::~Read_member): New function.
6434 (Read_member::is_runnable): New function.
6435 (Read_member::locks): New function.
6436 (Read_member::run): New function.
6437 (Check_script::~Check_script): New function.
6438 (Check_script::is_runnable): New function.
6439 (Check_script::locks): New function.
6440 (Check_script::run): New function.
6441 (Check_library::~Check_library): New function.
6442 (Check_library::is_runnable): New function.
6443 (Check_library::locks): New function.
6444 (Check_library::run): New function.
6445 * readsyms.h (Add_symbols::Add_symbols): Add library parameter.
6446 (Add_symbols::library_): New data member.
6447 (class Read_member): New class.
6448 (class Check_script): New class.
6449 (class Check_library): New class.
6450 * reloc.cc (Read_relocs::is_runnable): Allow case where
6451 token == NULL.
6452 (Read_relocs::locks): Likewise.
6453 (Scan_relocs::locks): Likewise.
6454 (Relocate_task::locks): Likewise.
6455 (Sized_relobj::do_scan_relocs): Tell finalize_incremental_relocs
6456 to clear counters.
6457 (Sized_relobj::incremental_relocs_scan): Fix comment.
6458 (Sized_relobj::do_relocate): Pass output file offset to
6459 write_local_symbols.
6460 (Sized_relobj::incremental_relocs_write_reltype): Use reloc_size
6461 from class declaration.
6462 * script.cc (read_input_script): Allocate Script_info; pass
6463 argument serial number to report_script.
6464 * script.h (class Script_info): Move to incremental.h.
6465 * symtab.cc (Symbol_table::add_from_incrobj): New function.
6466 * symtab.h (Symbol_table::add_from_incrobj): New function.
6467 (Symbol_table::set_file_offset): New function.
6468
b961d0d7
CC
64692011-04-05 Cary Coutant <ccoutant@google.com>
6470
6471 * incremental-dump.cc (dump_incremental_inputs): Change signature
6472 to take a Sized_incremental_binary; change caller. Use readers
6473 in Sized_incremental_binary.
6474 * incremental.cc
6475 (Sized_incremental_binary::find_incremental_inputs_sections):
6476 Rename do_find_incremental_inputs_sections to this.
6477 (Sized_incremental_binary::setup_readers): New function.
6478 (Sized_incremental_binary::do_check_inputs): Check
6479 has_incremental_info_ flag; move setup code to setup_readers;
6480 use input readers.
6481 (Sized_incremental_binary::do_file_is_unchanged): New function.
6482 (Sized_incremental_binary::do_get_input_reader): New function.
6483 * incremental.h (class Incremental_binary): Move to end of file.
6484 (Incremental_binary::file_is_unchanged): New function.
6485 (Incremental_binary::do_file_is_unchanged): New function.
6486 (Incremental_binary::Input_reader): New class.
6487 (Incremental_binary::get_input_reader): New function.
6488 (class Sized_incremental_binary): Move to end of file.
6489 (Sized_incremental_binary::Sized_incremental_binary): Setup the
6490 input section reader classes.
6491 (Sized_incremental_binary::has_incremental_info): New function.
6492 (Sized_incremental_binary::inputs_reader): New function.
6493 (Sized_incremental_binary::symtab_reader): New function.
6494 (Sized_incremental_binary::relocs_reader): New function.
6495 (Sized_incremental_binary::got_plt_reader): New function.
6496 (Sized_incremental_binary::do_file_is_unchanged): New function.
6497 (Sized_incremental_binary::Sized_input_reader): New class.
6498 (Sized_incremental_binary::get_input_reader): New function.
6499 (Sized_incremental_binary::find_incremental_inputs_sections):
6500 Rename do_find_incremental_inputs_sections to this.
6501 (Sized_incremental_binary::setup_readers): New function.
6502 (Sized_incremental_binary::has_incremental_info_): New data member.
6503 (Sized_incremental_binary::inputs_reader_): New data member.
6504 (Sized_incremental_binary::symtab_reader_): New data member.
6505 (Sized_incremental_binary::relocs_reader_): New data member.
6506 (Sized_incremental_binary::got_plt_reader_): New data member.
6507 (Sized_incremental_binary::current_input_file_): New data member.
6508
a869183f
PP
65092011-04-05 Paul Pluzhnikov <ppluzhnikov@google.com>
6510
6511 PR gold/12640
6512 * dwarf_reader.cc (Sized_dwarf_line_info): Fix vector bounds
6513 violation.
6514
65152011-03-30 Cary Coutant <ccoutant@google.com>
c7975edd
CC
6516
6517 * archive.cc (Archive::include_member): Adjust call to report_object.
6518 (Add_archive_symbols::run): Add script_info to call to
6519 report_archive_begin.
6520 (Lib_group::include_member): Adjust call to report_object.
6521 (Add_lib_group_symbols::run): Adjust call to report_object.
6522 * incremental-dump.cc (dump_incremental_inputs): Remove unnecessary
6523 blocks. Add object count for script input files.
6524 * incremental.cc (Incremental_inputs::report_archive_begin): Add
6525 script_info parameter; change all callers.
6526 (Incremental_inputs::report_object): Add script_info parameter;
6527 change all callers.
6528 (Incremental_inputs::report_script): Store backpointer to
6529 incremental info entry.
6530 (Output_section_incremental_inputs::set_final_data_size): Record
6531 additional information for scripts.
6532 (Output_section_incremental_inputs::write_info_blocks): Likewise.
6533 * incremental.h (Incremental_script_entry::add_object): New function.
6534 (Incremental_script_entry::get_object_count): New function.
6535 (Incremental_script_entry::get_object): New function.
6536 (Incremental_script_entry::objects_): New data member; adjust
6537 constructor.
6538 (Incremental_inputs::report_archive_begin): Add script_info parameter.
6539 (Incremental_inputs::report_object): Add script_info parameter.
6540 (Incremental_inputs_reader::get_object_count): New function.
6541 (Incremental_inputs_reader::get_object_offset): New function.
6542 * options.cc (Input_arguments::add_file): Return reference to
6543 new input argument.
6544 * options.h (Input_argument::set_script_info): New function.
6545 (Input_argument::script_info): New function.
6546 (Input_argument::script_info_): New data member; adjust all
6547 constructors.
6548 (Input_file_group::add_file): Return reference to new input argument.
6549 (Input_file_lib::add_file): Likewise.
6550 (Input_arguments::add_file): Likewise.
6551 * readsyms.cc (Add_symbols::run): Adjust call to report_object.
6552 * script.cc (Parser_closure::Parser_closure): Add script_info
6553 parameter; adjust all callers.
6554 (Parser_closure::script_info): New function.
6555 (Parser_closure::script_info_): New data member.
6556 (read_input_script): Report scripts earlier to incremental info.
6557 (script_add_file): Set script_info in Input_argument.
6558 (script_add_library): Likewise.
6559 * script.h (Script_options::Script_info): Rewrite class.
6560
a869183f 65612011-03-29 Cary Coutant <ccoutant@google.com>
e0c52780
CC
6562
6563 * archive.cc (Library_base::should_include_member): Move
6564 method here from class Archive.
6565 (Archive::Archive): Initialize base class.
6566 (Archive::should_include_member): Move to base class.
6567 (Archive::do_for_all_unused_symbols): New function.
6568 (Add_archive_symbols::run): Remove redundant access to
6569 incremental_inputs.
6570 (Lib_group::Lib_group): Initialize base class.
6571 (Lib_group::do_filename): New function.
6572 (Lib_group::include_member): Pass pointer to Lib_group to
6573 report_object.
6574 (Lib_group::do_for_all_unused_symbols): New function.
6575 (Add_lib_group_symbols::run): Report archive information for
6576 incremental links.
6577 * archive.h (class Library_base): New base class.
6578 (class Archive): Derive from Library_base.
6579 (Archive::filename): Move to base class.
6580 (Archive::set_incremental_info): Likewise.
6581 (Archive::incremental_info): Likewise.
6582 (Archive::Should_include): Likewise.
6583 (Archive::should_include_member): Likewise.
6584 (Archive::Armap_entry): Remove.
6585 (Archive::Unused_symbol_iterator): Remove.
6586 (Archive::unused_symbols_begin): Remove.
6587 (Archive::unused_symbols_end): Remove.
6588 (Archive::do_filename): New function.
6589 (Archive::do_get_mtime): New function.
6590 (Archive::do_for_all_unused_symbols): New function.
6591 (Archive::task_): Move to base class.
6592 (Archive::incremental_info_): Likewise.
6593 (class Lib_group): Derive from Library_base.
6594 (Lib_group::do_filename): New function.
6595 (Lib_group::do_get_mtime): New function.
6596 (Lib_group::do_for_all_unused_symbols): New function.
6597 (Lib_group::task_): Move to base class.
6598 * dynobj.cc (Sized_dynobj::do_for_all_global_symbols): New
6599 function.
6600 * dynobj.h (Sized_dynobj::do_for_all_global_symbols): New
6601 function.
6602 * incremental.cc (Incremental_inputs::report_archive_begin):
6603 Use Library_base; call library's get_mtime; add incremental inputs
6604 entry before members.
6605 (class Unused_symbol_visitor): New class.
6606 (Incremental_inputs::report_archive_end): Use Library_base; use
6607 visitor class to record unused symbols; don't add incremental inputs
6608 entry after members.
6609 (Incremental_inputs::report_object): Use Library_base.
6610 * incremental.h
6611 (Incremental_archive_entry::Incremental_archive_entry): Remove
6612 unused Archive parameter.
6613 (Incremental_inputs::report_archive_begin): Use Library_base.
6614 (Incremental_inputs::report_archive_end): Likewise.
6615 (Incremental_inputs::report_object): Likewise.
6616 * object.cc (Sized_relobj::do_for_all_global_symbols): New
6617 function.
6618 * object.h (Object::for_all_global_symbols): New function.
6619 (Object::do_for_all_global_symbols): New function.
6620 (Sized_relobj::do_for_all_global_symbols): New function.
6621 * plugin.cc (Sized_pluginobj::do_for_all_global_symbols): New
6622 function.
6623 * plugin.h (Sized_pluginobj::do_for_all_global_symbols): New
6624 function.
6625
61ab3e40
ILT
66262011-03-27 Ian Lance Taylor <iant@google.com>
6627
6628 * archive.cc (Archive::interpret_header): Return -1 if something
6629 goes wrong. Change callers accordingly.
6630
30e1f9e6
CC
66312011-03-25 Cary Coutant <ccoutant@google.com>
6632
6633 * testsuite/Makefile.am (final_layout.stdout): Use -n option with nm.
6634 * testsuite/Makefile.in: Regenerate.
6635
9370ce59 66362011-03-23 Rafael Ávila de Espíndola <respindola@mozilla.com>
9c793f14
RÁE
6637
6638 * plugin.cc (get_view): New.
6639 (Plugin::load): Pass get_view to the plugin.
6640 (Plugin_manager::get_view): New.
6641
9312bb0a
ILT
66422011-03-21 Ian Lance Taylor <iant@google.com>
6643
6644 * testsuite/final_layout.sh: Rewrite to not use dc.
07aead7b 6645 * testsuite/relro_test.sh: Fail if dc is not present.
9312bb0a 6646
7e12ba9e
ST
66472011-03-21 Sriraman Tallam <tmsriram@google.com>
6648
6649 * testsuite/icf_safe_so_test.sh: Add #!/bin/sh to start.
6650 Change == to -eq.
6651 * testsuite/icf_string_merge_test.sh: Add #!/bin/sh to start.
6652 * testsuite/icf_safe_test.sh: Add #!/bin/sh to start.
6653 Change == to -eq.
6654 * testsuite/icf_sht_rel_addend_test.sh: Add #!/bin/sh to start.
6655 * testsuite/icf_preemptible_functions_test.sh: Add #!/bin/sh to start.
6656
fd7a005d
ILT
66572011-03-14 Ian Lance Taylor <iant@google.com>
6658
6659 * script-sections.cc (Sort_output_sections::script_compare):
6660 Rename from is_before, change return type.
6661 (Sort_output_sections::operator()): Adjust accordingly.
6662
ed16fd1b
ILT
66632011-03-11 Jeffrey Yasskin <jyasskin@google.com>
6664
6665 PR gold/12572
6666 * testsuite/odr_violation2.cc: Add comment to make all error line
6667 numbers double digits.
6668 * testsuite/debug_msg.sh: Adjust expected errors.
6669
71ff8986
ILT
66702011-03-09 Jeffrey Yasskin <jyasskin@google.com>
6671
6672 * dwarf_reader.cc (Sized_dwarf_line_info): Include all lines,
6673 but mark earlier ones as non-canonical
6674 (offset_to_iterator): Update search target and example
6675 (do_addr2line): Return extra lines in a vector*
6676 (format_file_lineno): Extract from do_addr2line
6677 (one_addr2line): Add vector* out-param
6678 * dwarf_reader.h (Offset_to_lineno_entry): New field recording
6679 when a lineno entry appeared last for its instruction
6680 (Dwarf_line_info): Add vector* out-param
6681 * object.cc (Relocate_info): Pass NULL for the vector* out-param
6682 * symtab.cc (Odr_violation_compare): Include the lineno in the
6683 comparison again.
6684 (linenos_from_loc): New. Combine the canonical line for an
6685 address with its other lines.
6686 (True_if_intersect): New. Helper functor to make
6687 std::set_intersection a query.
6688 (detect_odr_violations): Compare sets of lines instead of just
6689 one line for each function. This became less deterministic, but
6690 has fewer false positives.
6691 * symtab.h: Declarations.
6692 * testsuite/Makefile.am (odr_violation2.o): Compile with -O2 to
6693 mix an optimized and non-optimized object in the same binary
6694 (odr_violation2.so): Same.
6695 * testsuite/Makefile.in: Regenerate from Makefile.am.
6696 * testsuite/debug_msg.cc (main): Make OdrDerived classes.
6697 * testsuite/debug_msg.sh: Update line numbers and add
6698 assertions.
6699 * testsuite/odr_violation1.cc: Use OdrDerived, in a
6700 non-optimized context.
6701 * testsuite/odr_violation2.cc: Make sure Ordering::operator()
6702 isn't inlined, and use OdrDerived in an optimized context.
6703 * testsuite/odr_header1.h: Defines OdrDerived, where
6704 optimization will change the
6705 first-instruction-in-the-destructor's file and line number.
6706 * testsuite/odr_header2.h: Defines OdrBase.
6707
a19fefdc
ILT
67082011-03-09 Ian Lance Taylor <iant@google.com>
6709
6710 * fileread.cc (File_read::clear_views): Don't delete the whole
6711 file view.
6712
ecb351e9
ILT
67132011-03-08 Ian Lance Taylor <iant@google.com>
6714
6715 PR gold/12525
6716 * fileread.cc: #include <climits>.
6717 (GOLD_IOV_MAX): Define.
6718 (File_read::read_multiple): Limit number of entries by iov_max.
6719 * fileread.h (class File_read): Always set max_readv_entries to
6720 128.
6721
b821d13c
ILT
67222011-03-07 Ian Lance Taylor <iant@google.com>
6723
6724 PR gold/12525
6725 * options.h (class General_options): Add -dy and -dn.
6726
89243142
CC
67272011-03-02 Cary Coutant <ccoutant@google.com>
6728
6729 * testsuite/script_test_9.t: Add TLS segment.
6730
d0773f31
ILT
67312011-03-02 Simon Baldwin <simonb@google.com>
6732
6733 * configure.ac: Add check for gnu_indirect_function support in
6734 the toolchain building binutils.
6735 * configure: Rebuild.
6736
9370ce59 67372011-02-18 Rafael Ávila de Espíndola <respindola@mozilla.com>
badc8139
RÁE
6738
6739 * symtab.cc (Symbol::should_add_dynsym_entry) Return false for
6740 plugin only symbols.
6741 (Symbol_table::sized_finalize_symbol) Mark symbol only present
6742 in plugin files as not needed in the symbol table.
6743
4cf7a849
ST
67442011-02-11 Sriraman Tallam <tmsriram@google.com>
6745
6746 * output.cc (Output_section::add_input_section): Delay fill
6747 generation for section ordering.
6748
b578bd7d
ILT
67492011-02-09 Ian Lance Taylor <iant@google.com>
6750
6751 PR gold/12316
6752 * object.h (class Sized_relobj): Remove clear_local_symbols.
6753 * reloc.cc (Sized_relobj::do_relocate): Don't call
6754 clear_local_symbols.
6755
9370ce59 67562011-02-08 Rafael Ávila de Espíndola <respindola@mozilla.com>
84ced98a
RÁE
6757
6758 * plugin.cc (is_visible_from_outside): Return true for symbols
6759 in the -u option.
6760
55382fb7
ILT
67612011-02-04 Jeffrey Yasskin <jyasskin@google.com>
6762
6763 * symtab.cc (Odr_violation_compare::operator()): Sort by just the
6764 filename.
6765
4e271fff
ST
67662011-02-02 Sriraman Tallam <tmsriram@google.com>
6767
6768 * icf.h (is_section_foldable_candidate): Change type of parameter
2e702c99 6769 to std::string.
4e271fff 6770 * icf.cc (Icf::find_identical_sections): Change type of local variable
2e702c99 6771 section_name to be std::string.
4e271fff
ST
6772 (is_function_ctor_or_dtor): Change type of parameter to std::string.
6773
d433c3ac
ILT
67742011-01-25 Ian Lance Taylor <iant@google.com>
6775
6776 * script.cc (script_add_extern): Rewrite to use
6777 add_symbol_reference.
6778
880473a6
DK
67792011-01-25 Doug Kwan <dougkwan@google.com>
6780
d433c3ac 6781 * icf.cc (get_section_contents): Always lock section's object.
880473a6 6782
f30f86fa
ILT
67832011-01-24 Ian Lance Taylor <iant@google.com>
6784
6785 * options.h (class General_options): Accept
6786 --no-detect-odr-violations.
6787
8e51a0b9
ILT
67882011-01-24 Ian Lance Taylor <iant@google.com>
6789
6790 * version.cc (version_string): Bump to 1.11.
6791
0f3b89d8
ILT
67922011-01-24 Ian Lance Taylor <iant@google.com>
6793
6794 * plugin.cc (class Plugin_rescan): Define new class.
6795 (Plugin_manager::claim_file): Set any_claimed_.
6796 (Plugin_manager::save_archive): New function.
6797 (Plugin_manager::save_input_group): New function.
6798 (Plugin_manager::all_symbols_read): Create Plugin_rescan task if
6799 necessary.
6800 (Plugin_manager::new_undefined_symbol): New function.
6801 (Plugin_manager::rescan): New function.
6802 (Plugin_manager::rescannable_defines): New function.
6803 (Plugin_manager::add_input_file): Set any_added_.
6804 * plugin.h (class Plugin_manager): define new fields rescannable_,
6805 undefined_symbols_, any_claimed_, and any_added_. Declare
6806 Plugin_rescan as friend. Declare new functions.
6807 (Plugin_manager::Rescannable): Define type.
6808 (Plugin_manager::Rescannable_list): Define type.
6809 (Plugin_manager::Undefined_symbol_list): Define type.
6810 (Plugin_manager::Plugin_manager): Initialize new fields.
6811 * archive.cc (Archive::defines_symbol): New function.
6812 (Add_archive_symbols::run): Pass archive to plugins if any.
6813 * archive.h (class Archive): Declare defines_symbol.
6814 * readsyms.cc (Input_group::~Input_group): New function.
6815 (Finish_group::run): Pass input_group to plugins if any.
6816 * readsyms.h (class Input_group): Declare destructor.
6817 * symtab.cc (add_from_object): Pass undefined symbol to plugins if
6818 any.
6819
3bb951e5
ILT
68202011-01-10 Ian Lance Taylor <iant@google.com>
6821
6822 * layout.cc (Layout::layout_eh_frame): Mark a writable .eh_frame
6823 section as relro.
6824 (Layout::set_segment_offsets): Reset increase_relro before calling
6825 set_section_addresses a second time.
6826
0aa45fac
CC
68272011-01-04 Cary Coutant <ccoutant@google.com>
6828
6829 * script-sections.cc (Sort_output_sections::operator()): Sort TLS
6830 sections before NOBITS sections.
6831
0db46eb4
L
68322011-01-01 H.J. Lu <hongjiu.lu@intel.com>
6833
6834 * version.cc (print_version): Update copyright to 2011.
6835
829c9745
CC
68362010-12-23 Cary Coutant <ccoutant@google.com>
6837
6838 * output.h (Output_data_reloc::add_output_section): Pass OD instead
6839 of OS to this->add. Add OD parameter to second form of the function.
6840
7500420b
ILT
68412010-12-20 Ian Lance Taylor <iant@google.com>
6842
6843 * dwarf_reader.cc (Sized_dwarf_line_info::read_lines): Only keep
6844 second of two consecutive entries with same offset.
6845
f8e9a930
RW
68462010-12-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
6847
6848 * testsuite/Makefile.am (ifuncmain2static_LDADD)
6849 (ifuncmain2_LDADD, ifuncmain4static_LDADD, ifuncmain4_LDADD)
6850 (ifuncmain7static_LDADD, ifuncmain7_LDADD): New empty variables,
6851 to avoid unneeded links against $(LDADD).
6852 * testsuite/Makefile.in: Regenerate.
6853
2fbb4320
ILT
68542010-12-15 Ian Lance Taylor <iant@google.com>
6855
6856 PR gold/12324
6857 * x86_64.cc (Target_x86_64::Scan::check_non_pic): Give an error
6858 for R_X86_64_32 and R_X86_64_PC32.
6859 * testsuite/Makefile.am (ver_matching_def.so): Depend on and use
6860 ver_matching_def_pic.o.
6861 (ver_matching_def_pic.o): New target.
6862
fedb228d
RW
68632010-12-14 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
6864
6865 * fileread.cc (file_counts_lock, file_counts_initialize_lock)
6866 (total_mapped_bytes, current_mapped_bytes, maximum_mapped_bytes):
6867 Move definition before File_read::View member definitions.
6868 (File_read::View::~View): Initialize and hold lock before
6869 updating current_mapped_bytes.
6870
9b547ce6
RW
68712010-12-14 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
6872
6873 * dwarf_reader.cc: Remove outdated comment.
6874 * gold-threads.cc: Fix typo in error message.
6875 * archive.cc: Fix typos in comments.
6876 * archive.h: Likewise.
6877 * arm-reloc-property.cc: Likewise.
6878 * arm-reloc-property.h: Likewise.
6879 * arm-reloc.def: Likewise.
6880 * arm.cc: Likewise.
6881 * attributes.h: Likewise.
6882 * cref.cc: Likewise.
6883 * ehframe.cc: Likewise.
6884 * fileread.h: Likewise.
6885 * gold.h: Likewise.
6886 * i386.cc: Likewise.
6887 * icf.cc: Likewise.
6888 * incremental.h: Likewise.
6889 * int_encoding.cc: Likewise.
6890 * layout.h: Likewise.
6891 * main.cc: Likewise.
6892 * merge.h: Likewise.
6893 * object.cc: Likewise.
6894 * object.h: Likewise.
6895 * options.cc: Likewise.
6896 * readsyms.cc: Likewise.
6897 * reduced_debug_output.cc: Likewise.
6898 * reloc.cc: Likewise.
6899 * script-sections.cc: Likewise.
6900 * sparc.cc: Likewise.
6901 * symtab.h: Likewise.
6902 * target-reloc.h: Likewise.
6903 * target.cc: Likewise.
6904 * target.h: Likewise.
6905 * timer.cc: Likewise.
6906 * timer.h: Likewise.
6907 * x86_64.cc: Likewise.
6908
83e17bd5
CC
69092010-12-09 Cary Coutant <ccoutant@google.com>
6910
6911 * layout.cc (Layout::layout_gnu_stack): Add warnings for executable
6912 stack.
6913 * layout.h (Layout::layout_gnu_stack): Add pointer to Object
6914 parameter; change all callers.
6915 * object.cc (Sized_relobj::do_layout): Adjust call to layout_gnu_stack.
6916 * options.h (warn_execstack): New option.
6917
017257f8
DK
69182010-12-07 Doug Kwan <dougkwan@google.com>
6919
6920 * arm.cc (Target_arm::Scan::get_reference_flags): Treat R_ARM_PREL31
6921 like function call relocations.
6922
c20cbc06
ILT
69232010-12-07 Ian Lance Taylor <iant@google.com>
6924
6925 * archive.cc (Archive::get_elf_object_for_member): Permit
6926 punconfigured to be NULL.
6927 (Archive::read_symbols): Pass NULL to get_elf_object_for_member.
6928 (Archive::include_member): Pass NULL to get_elf_object_for_member
6929 if we searched for the archive and this is the first included
6930 object.
6931
4dbfafcc
ILT
69322010-12-01 Ian Lance Taylor <iant@google.com>
6933
6934 * dwarf_reader.h (class Sized_dwarf_line_info): Add
6935 track_relocs_type_ field.
6936 * dwarf_reader.cc (Sized_dwarf_line_info::Sized_dwarf_line_info):
6937 Set track_relocs_type_.
6938 (Sized_dwarf_line_info::process_one_opcode): Ignore the section
6939 contents when using RELA relocs.
6940 (Sized_dwarf_line_info::read_relocs): Add the reloc addend to
6941 reloc_map_.
6942 * reloc.cc (Track_relocs::next_addend): New function.
6943 * reloc.h (class Track_relocs): Declare next_addend.
6944
e5e19edd
ILT
69452010-12-01 Ian Lance Taylor <iant@google.com>
6946
6947 * testsuite/icf_virtual_function_folding_test.cc (class Bar): Add
6948 virtual destructor.
6949
9a5ce24c
ILT
69502010-12-01 Ian Lance Taylor <iant@google.com>
6951
6952 * README: Update compilers known to work and fail.
6953
c7791212
NC
69542010-11-23 Matthias Klose <doko@ubuntu.com>
6955
6956 * configure.in: For --enable-gold, handle value `default' instead of
6957 `both*'. Always install ld as ld.bfd, install as ld if gold is
6958 not the default.
6959 * configure: Regenerate.
6960
0ad220c9
DK
69612010-11-18 Doug Kwan <dougkwan@google.com>
6962
6963 * expression.cc (BINARY_EXPRESSION): Initialize left_alignment
6964 and right_alignment to be zero. Store result alignment only if it is
6965 greater than existing alignment.
6966
ab8056e0
CC
69672010-11-16 Cary Coutant <ccoutant@google.com>
6968
6969 PR gold/12220
6970 * dwarf_reader.cc (Sized_dwarf_line_info::Sized_dwarf_line_info):
6971 Check for ".zdebug_line".
6972
fd064a5b
CC
69732010-11-16 Doug Kwan <dougkwan@google.com>
6974 Cary Coutant <ccoutant@google.com>
6975
6976 * output.h (Output_segment::set_section_addresses): Pass increase_relro
6977 by reference; adjust all callers.
6978 * output.cc (Output_segment::set_section_addresses): Adjust references
6979 to increase_relro. Add padding to *increase_relro when ORDER_RELRO_LAST
6980 list is empty.
6981 (Output_segment::set_offset): Assert if PT_GNU_RELRO segment does not
6982 end at page boundary.
6983
6fc6ea19
CC
69842010-11-16 Cary Coutant <ccoutant@google.com>
6985
6986 PR gold/12220
6987 * layout.cc (Layout::choose_output_section): Transform names of
6988 compressed sections even when using a script with a SECTIONS clause.
6989 (Layout::output_section_name): Remove code to transform
6990 compressed debug section names.
6991 * output.cc (Output_section::add_input_section): Use uncompressed
6992 section size when tracking input sections.
6993
95a2c8d6
RS
69942010-11-11 Richard Sandiford <richard.sandiford@linaro.org>
6995
6996 * symtab.h (Symbol::NON_PIC_REF): Remove.
6997 (Symbol::RELATIVE_REF, Symbol::TLS_REF): New Reference_flags.
6998 (Symbol::FUNCTION_CALL): Renumber. Reword comment.
6999 (Symbol::needs_dynamic_reloc): Don't check NON_PIC_REF.
7000 (Symbol::use_plt_offset): Take a flags argument and pass it
7001 directly to needs_dynamic_reloc. Restrict check for undefined
7002 weak symbols to function calls.
7003 * arm.cc (Target_arm::Scan::get_reference_flags): New function.
7004 (Target_arm::Scan::global): Use it.
7005 (Target_arm::Scan::scan_reloc_for_stub): Likewise.
7006 (Target_arm::Relocate::relocate): Likewise.
7007 (Target_arm::Relocate::should_apply_static_reloc): Replace flags
7008 parameter with an r_type parameter. Use get_reference_flags
7009 to get the flags.
7010 (Target_arm::Relocate::relocate): Update accordingly.
7011 * i386.cc (Target_i386::Scan::get_reference_flags): New function.
7012 (Target_i386::Scan::reloc_needs_plt_for_ifunc): Use it.
7013 (Target_i386::Scan::global): Likewise.
7014 (Target_i386::Relocate::relocate): Likewise.
7015 (Target_i386::Relocate::should_apply_static_reloc): Replace flags
7016 parameter with an r_type parameter. Use get_reference_flags
7017 to get the flags.
7018 (Target_i386::Relocate::relocate): Update accordingly.
7019 * powerpc.cc (Target_powerpc::Scan::get_reference_flags): New function.
7020 (Target_powerpc::Scan::global): Use it.
7021 (Target_powerpc::Scan::scan_reloc_for_stub): Likewise.
7022 (Target_powerpc::Relocate::relocate): Likewise.
7023 * sparc.cc (Target_sparc::Scan::get_reference_flags): New function.
7024 (Target_sparc::Scan::global): Use it.
7025 (Target_sparc::Scan::scan_reloc_for_stub): Likewise.
7026 (Target_sparc::Relocate::relocate): Likewise.
7027 * x86_64.cc (Target_x86_64::Scan::get_reference_flags): New function.
7028 (Target_x86_64::Scan::reloc_needs_plt_for_ifunc): Use it.
7029 (Target_x86_64::Scan::global): Likewise.
7030 (Target_x86_64::Relocate::relocate): Likewise.
7031
f625ae50
DK
70322010-11-08 Doug Kwan <dougkwan@google.com>
7033 Cary Coutant <ccoutant@google.com>
7034
7035 * arm.cc (Arm_exidx_merge_section::build_contents): New method.
7036 (Arm_exidx_merge_section::section_contents_): New data member.
7037 (Arm_input_section::Arm_input_section): Initialize original_contents_.
7038 (Arm_input_section::~Arm_input_section): De-allocate memory.
58797674 7039 (Arm_input_section::original_contents_): New data member.
f625ae50
DK
7040 (Arm_exidx_fixup::process_exidx_section): Pass EXIDX section contents
7041 in parameters instead of calling Object::section_contents without
7042 locking.
7043 (Arm_output_section::group_section): New parameter TASK. Pass it
7044 to callees that need locking objects.
7045 (Arm_output_section::fix_exidx_coverage): New parameter TASK. Use it
7046 to lock EXIDX input sections. Fix a formatting issue. Call
7047 Arm_exidx_merged_section::build_contents to create merged section
7048 contents.
7049 (Arm_output_section::create_stub_group): New parameter TASK. Use it
7050 to lock object of stub table owner.
7051 (Arm_exidx_input_section::Arm_exidx_input_section): Add new parameter
7052 TEXT_SIZE to initialize data member TEXT_SIZE_.
7053 (Arm_exidx_input_section::addralign): Fix typo in comment.
7054 (Arm_exidx_input_section::text_size): New method.
7055 (Target_arm::do_relax): New parameter TASK. Pass it to callees
7056 that require locking objects. Lock objects before scanning for stubs
7057 and updating local symbols.
7058 (Arm_input_section<big_endian>::init): Copy contents of original
7059 input section.
2e702c99 7060 (Arm_input_section<big_endian>::do_write): Use saved contents of
f625ae50
DK
7061 original input section instead of calling Object::section_contents
7062 without locking.
7063 (Arm_exidx_cantunwind::do_fixed_endian_write): Find out text section
7064 size without calling Object::section_size().
7065 (Arm_exidx_merged_section::Arm_exidx_merged_section): Add sanity check
7066 for size. Allocate a buffer for merged EXIDX entries.
7067 (Arm_exidx_merged_section::build_contents): New method.
2e702c99 7068 (Arm_exidx_merged_section::do_write): Move merge section contents
f625ae50
DK
7069 building code to Arm_exidx_merged_section::build_contetns. Write
7070 out contetns in buffer instead of building it on the fly.
7071 (Arm_relobj::make_exidx_input_section): Also pass text section size
7072 to Arm_exidx_input_section constructor.
7073 (Arm_relobj::do_read_symbols): Fix memory leak. Fix a formatting issue.
7074 (Arm_dynobj::do_read_symbols): Fix memory leak.
7075 * layout.cc (Layout::finalize): Pass TASK to Target::relax().
7076 * target.h: (class Task): Add forward declaration.
7077 (Target::relax): Add new parameter TASK and pass it to
7078 Target::do_relax().
7079 (Target::do_relax):: New parameter TASK. Fix a formatting issue.
7080
5f9bcf58
CC
70812010-11-05 Cary Coutant <ccoutant@google.com>
7082
7083 PR gold/10708
7084 * copy-relocs.cc (Copy_relocs::emit_copy_reloc): Hold a lock on the
7085 object when reading from the file.
7086 * gold.cc (queue_middle_tasks): Hold a lock on the object when doing
7087 second layout pass.
7088 * icf.cc (preprocess_for_unique_sections): Hold a lock on the object
7089 when reading section contents.
7090 (get_section_contents): Likewise.
7091 (icf::find_identical_sections): Likewise.
7092 * mapfile.cc (Mapfile::print_discarded_sections): Hold a lock on the
7093 object when reading from the file.
7094 * plugin.cc (Plugin_manager::layout_deferred_objects): Hold a lock on
7095 the object when doing deferred section layout.
7096
e597fa08
NC
70972010-11-03 Nick Clifton <nickc@redhat.com>
7098
7099 PR gold/12001
7100 * script.h (class Symbol_assignment: name): New member. Returns
7101 the name of the symbol.
7102 * scrfipt.cc (Script_options::is_pending_assignment): New member.
7103 Returns true if the given symbol name is on the list of
7104 assignments wating to be processed.
7105 * archive.cc (should_incldue_member): If the symbol is undefined,
7106 check to see if it is on the list of symbols pending assignment.
7107
3f9a3278
ILT
71082010-11-03 Ryan Mansfield <rmansfield@qnx.com>
7109
7110 * script-sections.cc (Script_sections::find_memory_region): Check
7111 for a NULL output section pointer.
7112
d06fb4d1
DK
71132010-10-29 Doug Kwan <dougkwan@google.com>
7114
7115 * arm.cc (Arm_outout_section::fix_exidx_coverage): Adjust call to
7116 Output_section::add_relaxed_input_section.
7117 * output.cc (Output_section::add_relaxed_input_section): Add new
7118 arguments LAYOUT and NAME. Set section order index.
7119 (Output_section::convert_input_sections_in_list_to_relaxed_sections):
7120 Copy section order index.
7121 * output.h (Output_section::add_relaxed_input_section): Add new
7122 arguments LAYOUT and NAME.
7123
90e24de5
ILT
71242010-10-29 Viktor Kutuzov <vkutuzov@accesssoftek.com>
7125
7126 * testsuite/Makefile.am: Move gcctestdir/ld rule to
2e702c99 7127 NATIVE_OR_CROSS_LINKER.
90e24de5
ILT
7128 * testsuite/Makefile.in: Regenerate.
7129
c9484ea5
DK
71302010-10-20 Doug Kwan <dougkwan@google.com>
7131
7132 * arm.cc (Arm_relobj::do_read_symbols): Warn about ARM EXIDX sections
7133 without SHF_LINK_ORDER flags.
7134 * layout.cc (Layout::choose_output_section): Do not filter
7135 SHF_LINK_ORDER flag in a relocatable link.
7136
5bc2f5be
CC
71372010-10-17 Cary Coutant <ccoutant@google.com>
7138
7139 * output.h (Output_segment::set_section_addresses): Change function
7140 signature. Update all callers.
7141 * output.cc (Output_segment::is_first_section_relro): Ignore TLS
7142 sections.
7143 (Output_segment::set_section_addresses): Align after last TLS
7144 section. Add padding before last relro section instead of after.
7145
0c91cf04
DK
71462010-10-17 Doug Kwan <dougkwan@google.com>
7147
7148 * gold/arm.cc (Target_arm::got_section): Use correct order and set
7149 GOT output section to be writable.
7150
8c21d9d3
CC
71512010-10-14 Cary Coutant <ccoutant@google.com>
7152
7153 * debug.h (DEBUG_INCREMENTAL): New flag.
2e702c99
RM
7154 (debug_string_to_enum): Add DEBUG_INCREMENTAL).
7155 * gold.cc (queue_initial_tasks): Check parameters for incremental link
7156 mode.
7157 * incremental.cc (report_command_line): Ignore all forms of
7158 --incremental.
7159 * layout.cc (Layout::Layout): Check parameters for incremental link
7160 mode.
7161 * options.cc (General_options::parse_incremental): New function.
7162 (General_options::parse_no_incremental): New function.
7163 (General_options::parse_incremental_full): New function.
7164 (General_options::parse_incremental_update): New function.
7165 (General_options::incremental_mode_): New data member.
7166 (General_options::finalize): Check incremental_mode_.
7167 * options.h (General_options): Update help text for --incremental.
7168 Add --no-incremental, --incremental-full, --incremental-update.
7169 (General_options::Incremental_mode): New enum type.
7170 (General_options::incremental_mode): New function.
7171 (General_options::incremental_mode_): New data member.
7172 * parameters.cc (Parameters::incremental_mode_): New data member.
7173 (Parameters::set_options): Set incremental_mode_.
7174 (Parameters::set_incremental_full): New function.
7175 (Parameters::incremental): New function.
7176 (Parameters::incremental_update): New function.
7177 (set_parameters_incremental_full): New function.
7178 * parameters.h (Parameters::set_incremental_full): New function.
7179 (Parameters::incremental): New function.
7180 (Parameters::incremental_update): New function.
7181 (Parameters::incremental_mode_): New data member.
7182 (set_parameters_incremental_full): New function.
7183 * plugin.cc (Plugin_manager::add_input_file): Check parameters for
7184 incremental link mode.
7185 * reloc.cc (Sized_relobj::do_read_relocs): Likewise.
7186 (Sized_relobj::do_relocate_sections): Likewise.
7187 * testsuite/Makefile.am (incremental_test): Use --incremental-full
7188 option.
7189 * testsuite/Makefile.in: Regenerate.
7190 * testsuite/incremental_test.sh: Filter all forms of --incremental.
8c21d9d3 7191
bb32aa18 71922010-10-12 Viktor Kutuzov <vkutuzov@accesssoftek.com>
eb373049
ILT
7193
7194 * script-sections.h (class Script_sections): Make
7195 Sections_elements typedef public.
7196 * script-sections.cc (class Sort_output_sections): Add elements_
7197 field. Add constructor which sets it; change all callers.
7198 (Sort_output_sections::is_before): New function.
7199 (Sort_output_sections::operator()): Call is_before.
7200 * configure.ac (NATIVE_OR_CROSS_LINKER): New automake
7201 conditional.
7202 * testsuite/script_test_10.sh: New test. Test script section
7203 order.
7204 * testsuite/script_test_10.t: Likewise.
7205 * testsuite/script_test_10.s: Likewise.
7206 * testsuite/Makefile.am: Wrap the cross linker tests and the
7207 common tests into NATIVE_OR_CROSS_LINKER.
7208 (check_SCRIPTS): Add script_test_10.sh.
7209 (check_DATA): Add script_test_10.stdout.
7210 (script_test_10.o, script_test_10): New targets.
7211 (script_test_10.stdout): New target.
7212 * configure, testsuite/Makefile.in: Regenerate.
7213
3cef7179
ILT
72142010-10-12 Viktor Kutuzov <vkutuzov@accesssoftek.com>
7215
7216 * arm.cc (Target_arm::Scan::local): Report the unsupported reloc
7217 error for the deprecated relocations.
7218 (Target_arm::Scan::global): Likewise.
7219 (Target_arm::Relocate::relocate): Likewise.
7220
7411e9a8
RS
72212010-10-12 Richard Sandiford <richard.sandiford@linaro.org>
7222
7223 * fileread.cc (Input_file::find_file): Initialize *found_name
7224 and *namep when using the fallback search for case 4.
7225
6a9da32a
CC
72262010-10-11 Cary Coutant <ccoutant@google.com>
7227
7228 * options.h (class General_options): Redefine -z lazy as an alias for
7229 the negation of -z now.
7230
ac897c20
ILT
72312010-10-11 Ian Lance Taylor <iant@google.com>
7232
7233 * resolve.cc (symbol_to_bits): Report the value of the unsupported
7234 binding.
7235
ea5cae92
NC
72362010-10-06 Nick Clifton <nickc@redhat.com>
7237
7238 * script-sections.cc(class Memory_region): Remove
7239 current_lma_offset_ field. Rename current_vma_offset_ to
7240 current_offset_. Add last_section_ field.
7241 (Memory_region::get_current_vma_address): Rename to
7242 get_current_address.
7243 (Memory_region::get_current_lma_address): Delete.
7244 (Memory_region::increment_vma_offset): Rename to
7245 increment_offset.
7246 (Memory_region::increment_lma_offset): Delete.
7247 (Memory_region::attributes_compatible): New method. Returns
7248 true if the provided section is compatible with the region.
7249 (Memory_region::get_last_section): New method. Returns the last
7250 section to use the region.
7251 (Memory_region::set_last_section): New method. Stores the last
7252 section to use the region.
7253 (Script_sections::block_in_region): New method. Returns true if
7254 a block of memory is contained within a region.
7255 (Script_sections::find_memory_region): New method. Locates a
7256 memory region to be used to set a VMA or LMA address.
7257 (Output_section_definition::set_section_addresses): Add code to
7258 check for addresses set by memory regions.
7259 (Output_segment::set_section_addresses): Remove memory region
7260 walking code.
7261 (Script_sections::create_segment): Add a warning if a header
7262 segment is created outside of any region.
7263 * script-sections.h (class Script_sections): Add prototypes for
7264 find_memory_region and block_in_region methods.
7265 * testsuite/memory_test.s: Use .long instead of .word.
7266 * testsuite/memory_test.t: Add some more output sections.
7267 * testsuite/memory_test.sh: Update expected output.
7268
a9bfd952
DK
72692010-10-02 Doug Kwan <dougkwan@google.com>
7270
7271 * symtab.cc (Symbol_table::Symbol_table_hash::operator()): Move
7272 defintion to symtab.h
7273 * symtab.h (Symbol_table::Symbol_table_hash::operator()): Change
7274 declaration to defintion.
7275
bacff3ab
NC
72762010-10-01 Nick Clifton <nickc@redhat.com>
7277
7278 * expression.cc (eval): Replace dummy argument with NULL.
7279 (eval_maybe_dot): Check for a NULL result section pointer.
7280 (Symbol_expression::value): Likewise.
7281 (Dot_expression::value): Likewise.
7282 (BINARY_EXPRESSION): Likewise.
7283 (Max_expression::value): Likewise.
7284 (Min_expression::value): Likewise.
7285 (Absolute_expression::value): Likewise.
7286 (Addr_expression::value_from_output_section): Likewise.
7287 (Loaddddr_expression::value_from_output_section): Likewise.
7288 (Segment_start_expression::value): Likewise.
7289 * script-sections.cc
7290 (Sections_elememt_dot_assignment::finalize_symbols): Replace dummy
7291 argument with NULL.
7292 (Sections_elememt_dot_assignment::set_section_addresses):
7293 Likewise.
7294 (Output_data_expression::do_write_to_buffer): Likewise.
7295 (Output_section_definition::finalize_symbols): Likewise.
7296 (Output_section_definition::set_section_addresses): Likewise.
7297
f81bc8b5
DK
72982010-09-30 Doug Kwan <dougkwan@google.com>
7299
7300 * gold/testsuite/arm_branch_out_of_range.sh: Fix broken tests.
7301
c95e9f27
ST
73022010-09-28 Sriraman Tallam <tmsriram@google.com>
7303
7304 * target.h (Target::can_icf_inline_merge_sections): New virtual
bacff3ab 7305 function.
c95e9f27
ST
7306 * x86_64.cc (Target__x86_64::can_icf_inline_merge_sections): New
7307 virtual function.
7308 * i386.cc (Target_i386::can_icf_inline_merge_sections): New
7309 virtual function.
7310 * icf.cc (get_section_contents): Inline merge sections only when
7311 target allows it.
7312
3cac54d2
RW
73132010-09-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
7314
7315 * configure: Regenerate.
7316
2904037a
ILT
73172010-09-17 Ian Lance Taylor <iant@google.com>
7318
7319 * testsuite/memory_test.sh: Adjust for change of 2010-09-10.
d4d91489
ILT
7320 * testsuite/Makefile.am (memory_test.o): New target.
7321 (memory_test): Depend on memory_test.o, gcctestdir/ld, and
7322 memory_test.t.
7323 * testsuite/Makefile.in: Rebuild.
2904037a 7324
bca7fb63
DK
73252010-09-17 Doug Kwan <dougkwan@google.com>
7326
7327 * arm.cc (Target_arm::Relocate::relocate): Ignore symbol type and
7328 defintion if relocation uses GOT entries of the symbol.
7329 * testsuite/icf_safe_test.sh: Fix test.
7330 * testsuite/icf_safe_so_test.sh: Fix test.
7331
4ef28648
CC
73322010-09-16 Cary Coutant <ccoutant@google.com>
7333
7334 * script_sections.cc (class Memory_region): Remove "NULL" from
7335 vector initializations.
7336
793990de
CC
73372010-09-15 Cary Coutant <ccoutant@google.com>
7338
7339 * incremental.cc (Output_section_incremental_inputs::write_info_blocks):
7340 Resolve forwarding symbols.
7341
81e015e2
DK
73422010-09-15 Doug Kwan <dougkwan@google.com>
7343
7344 * gold/testsuite/script_test_3.t: Add ARM special sections.
7345 * gold/testsuite/script_test_4.t: Same.
7346 * gold/testsuite/script_test_5.t: Same.
7347 * gold/testsuite/script_test_6.t: Same.
7348 * gold/testsuite/script_test_7.t: Same.
7349 * gold/testsuite/script_test_7.t: Same.
7350 * gold/testsuite/thumb_blx_out_of_range.s: Fix instruction alignment.
7351
36171d64
CC
73522010-09-14 Cary Coutant <ccoutant@google.com>
7353
7354 * x86_64.cc (Target_x86_64::saw_tls_block_reloc_): Remove member.
7355 (Target_x86_64::Relocate::relocate_tls): Replace check for
7356 saw_tls_block_reloc_ with test for executable section.
7357
d89051bd
CC
73582010-09-12 Cary Coutant <ccoutant@google.com>
7359
7360 * symtab.h (Symbol::needs_dynamic_reloc): Non-PIC calls from
7361 position-independent executables to shared libraries need dynamic
7362 relocations.
7363 (Symbol::may_need_copy_reloc): Do not generate COPY relocs in
7364 position-independent executables.
7365 * testsuite/Makefile.am (two_file_mixed_pie_test): New test.
7366 * testsuite/Makefile.in: Regenerate.
7367
fca41f0f
NC
73682010-09-10 Nick Clifton <nickc@redhat.com>
7369
7370 PR gold/11997
7371 * testsuite/memory_test.t: Discard any sections that are not
7372 needed.
7373
6695e4b3
L
73742010-09-09 H.J. Lu <hongjiu.lu@intel.com>
7375
7376 PR gold/11996
7377 * object.cc (Sized_relobj::do_finalize_local_symbols): Remove
7378 "This::" to work around a bug in gcc 4.2.
7379
7380 * testsuite/ifuncmain7.c (foo_ifunc): Add __attribute__ ((used)).
7381
0f72bf6f
RÁE
73822010-09-09 Rafael Espindola <espindola@google.com>
7383
7384 * layout.cc (Layout::attach_allocated_section_to_segment): Don't put
7385 sections with different PF_X flags in the same segment.
7386 (Layout::find_first_load_seg): Search all segments to find the first
7387 one.
7388 * options.h (rosegment): New.
7389
73902010-09-08 Rafael Espindola <espindola@google.com>
a6577478 7391
05a79166 7392 * layout.cc (Layout::set_segment_offsets): Always advance to a new page.
a6577478 7393
aa98ff75
DK
73942010-09-08 Doug Kwan <dougkwan@google.com>
7395
7396 * arm.cc (Arm_exidx_cantunwind::do_print_to_mapfile): New method.
7397 (Arm_relobj::do_relocate_sections): Add new parameter for output
7398 file to match the parent.
7399 (Target_arm::scan_reloc_section_for_stubs): Use would-be final values
7400 of local symbols instead of input values. Update code to track
7401 changes in gold::relocate_section.
7402 * object.cc (Sized_relobj::compute_final_local_value): New methods.
7403 (Sized_relobj::compute_final_local_value_internal): New methods.
7404 (Sized_relobj::do_finalize_local_symbols): Move code from loop
7405 body into private version of Sized_relobj::compute_final_local_value.
7406 Call the inline method.
7407 * object.h (Symbol_value::Symbol_value): Define destructor. Free
7408 merged symbol value if there is one.
7409 (Symbol_value::has_output_value): New method defintiion.
7410 (Sized_relobj::Compute_final_local_value_status): New enum type.
7411 (Sized_relobj::compute_final_local_value): New methods.
7412 (Sized_relobj::compute_final_local_value_internal): New methods.
7413 * Makefile.am (check_SCRIPTS): Add arm_branch_out_of_range.sh
7414 and arm_cortex_a8.sh.
7415 (thumb_bl_out_of_range_local, arm_cortex_a8_b_cond, arm_cortex_a8_bl,
7416 arm_cortex_a8_blx, arm_cortex_a8_local, arm_corte_a8_local_reloc):
7417 New tests.
7418 * Makefile.in: Regenerate.
7419 * testsuite/arm_bl_out_of_range.s: Update test.
7420 * testsuite/thumb_bl_out_of_range.s: Ditto.
7421 * testsuite/thumb_blx_out_of_range.s: Ditto.
7422 * testsuite/arm_branch_out_of_range.sh: New file.
7423 * testsuite/arm_cortex_a8.sh: Ditto.
7424 * testsuite/arm_cortex_a8_b.s: Ditto.
7425 * testsuite/arm_cortex_a8_b_cond.s: Ditto.
7426 * testsuite/arm_cortex_a8_b_local.s: Ditto.
7427 * testsuite/arm_cortex_a8_bl.s: Ditto.
7428 * testsuite/arm_cortex_a8_blx.s: Ditto.
7429 * testsuite/arm_cortex_a8_local.s: Ditto.
7430 * testsuite/arm_cortex_a8_local_reloc.s: Ditto.
7431 * testsuite/thumb_bl_out_of_range_local.s: Ditto.
7432
05a79166
L
74332010-09-08 Rafael Espindola <espindola@google.com>
7434
7435 * Makefile.am (memory_test.stdout): Run readelf with -W.
7436 * Makefile.in: Regenerate.
7437 * testsuite/memory_test.sh: Make the regexps accept both 32 and
7438 64 bit output.
7439
33dbc701
RÁE
74402010-09-08 Rafael Espindola <espindola@google.com>
7441
7442 * script-sections.cc (Script_sections::add_memory_region): Convert
7443 field precision to int.
7444 * script.cc (script_set_section_region, script_set_section_region):
7445 Convert field precision to int.
7446
731ca54a
RÁE
74472010-09-08 Rafael Espindola <espindola@google.com>
7448
7449 * arm.cc (do_finalize_sections): Create the __exidx_start and
7450 __exdix_end symbols even when the section is missing.
7451
7f8cd844
NC
74522010-09-08 Nick Clifton <nickc@redhat.com>
7453
7454 * README: Remove claim that MEMORY is not supported.
7455 * expression.cc (script_exp_function_origin)
7456 (script_exp_function_length): Move from here to ...
7457 * script.cc: ... here.
7458 (script_set_section_region, script_add_memory)
7459 (script_parse_memory_attr, script_include_directive): New
7460 functions.
7461 * script-sections.cc
7462 (class Memory_region): New class.
7463 (class Output_section_definition): Add set_memory_region,
7464 set_section_vma, set_section_lma and get_section_name methods.
7465 (class Script_Sections): Add add_memory_region,
7466 find_memory_region, find_memory_region_origin,
7467 find_memory_region_length and set_memory_region methods.
7468 Have set_section_addresses method walk the list of set memory
7469 regions.
7470 Extend the print methos to display memory regions.
7471 * script-sections.h: Add prototypes for new methods.
7472 Add enum for MEMORY region attributes.
7473 * yyscript.y: Add support for parsing MEMORY regions.
7474 * script-c.h: Add prototypes for new functions.
7475 * testsuite/Makefile.am: Add test of MEMORY region functionality.
7476 * testsuite/Makefile.in: Regenerate.
7477 * testsuite/memory_test.sh: New script.
7478 * testsuite/memory_test.s: New assembler source file.
7479 * testsuite/memory_test.t: New linker script.
7480
a4649286
DK
74812010-08-27 Doug Kwan <dougkwan@google.com>
7482
7483 * gold/resolve.cc (Symbol_table::should_override): Let a weak
7484 reference override an existing dynamic weak reference.
7485 * testsuite/Makefile.am: Add new test dyn_weak_ref.
7486 * testsuite/Makefile.in: Regenerate.
7487 * testsuite/dyn_weak_ref.sh: New file.
7488 * testsuite/dyn_weak_ref_1.c: Ditto.
7489 * testsuite/dyn_weak_ref_2.c: Ditto.
7490
b56648ad
ILT
74912010-08-27 Ian Lance Taylor <iant@google.com>
7492
7493 * incremental.h (class Incremental_input_entry): Add virtual
7494 destructor.
7495
809313cb
ILT
74962010-08-27 Ian Lance Taylor <iant@google.com>
7497
7498 * testsuite/start_lib_test_3.c: Mark t3 as used.
7499
11e32464
NC
75002010-08-27 Nick Clifton <nickc@redhat.com>
7501
7502 * options.cc (version_script): Fix small typo in previous
7503 whitespace tidyup.
7504
ca09d69a
NC
75052010-08-25 Nick Clifton <nickc@redhat.com>
7506
7507 * archive.cc: Formatting fixes: Remove whitespace between
7508 typename and following asterisk. Remove whitespace between
7509 function name and opening parenthesis.
7510 * archive.h: Likewise.
7511 * arm.cc: Likewise.
7512 * attributes.cc: Likewise.
7513 * attributes.h: Likewise.
7514 * common.cc: Likewise.
7515 * copy-relocs.cc: Likewise.
7516 * dirsearch.h: Likewise.
7517 * dynobj.cc: Likewise.
7518 * ehframe.cc: Likewise.
7519 * ehframe.h: Likewise.
7520 * expression.cc: Likewise.
7521 * fileread.cc: Likewise.
7522 * fileread.h: Likewise.
7523 * gc.h: Likewise.
7524 * gold-threads.cc: Likewise.
7525 * gold.cc: Likewise.
7526 * i386.cc: Likewise.
7527 * icf.h: Likewise.
7528 * incremental-dump.cc: Likewise.
7529 * incremental.cc: Likewise.
7530 * layout.cc: Likewise.
7531 * layout.h: Likewise.
7532 * main.cc: Likewise.
7533 * merge.cc: Likewise.
7534 * merge.h: Likewise.
7535 * object.cc: Likewise.
7536 * object.h: Likewise.
7537 * options.cc: Likewise.
7538 * options.h: Likewise.
7539 * output.cc: Likewise.
7540 * output.h: Likewise.
7541 * plugin.cc: Likewise.
7542 * plugin.h: Likewise.
7543 * powerpc.cc: Likewise.
7544 * reloc.cc: Likewise.
7545 * script-c.h: Likewise.
7546 * script-sections.cc: Likewise.
7547 * script.cc: Likewise.
7548 * stringpool.cc: Likewise.
7549 * symtab.cc: Likewise.
7550 * symtab.h: Likewise.
7551 * target.cc: Likewise.
7552 * timer.cc: Likewise.
7553 * timer.h: Likewise.
7554 * version.cc: Likewise.
7555 * x86_64.cc: Likewise.
7556
b8fa8750
NC
75572010-08-24 Nick Clifton <nickc@redhat.com>
7558
7559 PR 11899
7560 * layout.cc (segment_precedes): Sort segments by their physical
7561 addresses, if they have been set.
7562
9919d93b
CC
75632010-08-23 Cary Coutant <ccoutant@google.com>
7564
7565 * archive.cc (Lib_group::add_symbols): Lock object before deleting its
7566 symbols data.
7567 (Lib_group::include_member): Unlock object after deleting its
7568 symbols data.
7569 * testsuite/start_lib_test_3.c: Remove all global symbols to trigger
7570 the bug fixed here.
7571
97b4be1c
CC
75722010-08-19 Neil Vachharajani <nvachhar@google.com>
7573 Cary Coutant <ccoutant@google.com>
7574
7575 * gold/archive.h (Add_lib_group_symbols): Add readsyms_blocker_, adjust
7576 constructor, and set_blocker.
7577 * gold/archive.cc (Add_lib_group_symbols::is_runnable): Also check
7578 readsyms_blocker_.
7579 * gold/readsyms.cc (Read_symbols::do_lib_group): Also pass
7580 this->this_blocker_ to Add_lib_group_symbols::set_blocker.
7581 * testsuite/Makefile.am (start_lib_test): New test case.
7582 * testsuite/Makefile.in: Regenerate.
7583 * testsuite/start_lib_test_main.c: New file.
7584 * testsuite/start_lib_test_1.c: New file.
7585 * testsuite/start_lib_test_2.c: New file.
7586 * testsuite/start_lib_test_3.c: New file.
7587
dd0b1884
ILT
75882010-08-19 Ian Lance Taylor <iant@google.com>
7589
7590 * Makefile.in: Rebuild with automake 1.11.1.
7591 * aclocal.m4: Likewise.
7592 * testsuite/Makefile.in: Likewise.
7593
7223e9ca
ILT
75942010-08-19 Ian Lance Taylor <iant@google.com>
7595
7596 PR 10893
7597 * i386.cc (class Output_data_plt_i386): Update declarations.
7598 Define Global_ifunc and Local_ifunc types. Add global_ifuncs_ and
7599 local_ifuncs_ fields.
7600 (Target_i386::do_plt_section_for_global): New function.
7601 (Target_i386::do_plt_section_for_local): New function.
7602 (Output_data_plt_i386::Output_data_plt_i386): Add symtab
7603 parameter; change all callers. Initialize global_ifuncs_ and
7604 local_ifuncs_. If doing a static link define __rel_iplt_start and
7605 __rel_iplt_end.
7606 (Output_data_plt_i386::add_entry): Handle IFUNC symbols.
7607 (Output_data_plt_i386::add_local_ifunc_entry): New function.
7608 (Output_data_plt_i386::do_write): Fix GOT entries for IFUNC
7609 symbols.
7610 (Target_i386::make_plt_section): New function, broken out of
7611 make_plt_entry. Set sh_info field of .rel.plt to point to .plt.
7612 (Target_i386::make_plt_entry): Call make_plt_section.
7613 (Target_i386::make_local_ifunc_plt_entry): New function.
7614 (Target_i386::Scan::reloc_needs_iplt_for_ifunc): New function.
7615 (Target_i386::Scan::local): Handle IFUNC symbols. Add
7616 R_386_IRELATIVE to switch.
7617 (Target_i386::Scan::global): Likewise.
7618 (Target_i386::Relocate::relocate): Likewise.
7619 (Target_i386::Relocatable_size_for_reloc): Add R_386_IRELATIVE to
7620 switch.
7621 * x86_64.cc (class Output_data_plt_x86_64): Update declarations.
7622 (Target_x86_64::do_plt_section_for_global): New function.
7623 (Target_x86_64::do_plt_section_for_local): New function.
7624 (Output_data_plt_x86_64::Output_data_plt_x86_64): Add symtab
7625 parameter; change all callers. If doing a static link define
7626 __rela_iplt_start and __rela_iplt_end.
7627 (Output_data_plt_x86_64::add_entry): Handle IFUNC symbols.
7628 (Output_data_plt_x86_64::add_local_ifunc_entry): New function.
7629 (Target_x86_64::make_plt_section): Set sh_info field of .rel.plt
7630 to point to .plt.
7631 (Target_x86_64::make_local_ifunc_plt_entry): New function.
7632 (Target_x86_64::Scan::check_non_pic): Add R_X86_64_IRELATIVE to
7633 switch.
7634 (Target_x86_64::Scan::reloc_needs_iplt_for_ifunc): New function.
7635 (Target_x86_64::Scan::local): Handle IFUNC symbols. Add
7636 R_X86_64_IRELATIVE to switch.
7637 (Target_x86_64::Scan::global): Likewise.
7638 (Target_x86_64::Relocate::relocate): Likewise.
7639 (Target_x86_64::Relocatable_size_for_reloc): Add R_X86_64_IRELATIVE to
7640 switch.
7641 * target.h (class Target): Add plt_section_for_global and
7642 plt_section_for_local functions. Add do_plt_section_for_global
7643 and do_plt_section_for_local virtual functions.
7644 * symtab.h (Symbol::needs_plt_entry): Handle IFUNC symbol. Add
7645 clarifying comments.
7646 (Symbol::use_plt_offset): Handle IFUNC symbol.
7647 * object.cc (Sized_relobj::Sized_relobj): Initialize
7648 local_plt_offsets_.
7649 (Sized_relobj::local_has_plt_offset): New function.
7650 (Sized_relobj::local_plt_offset): New function.
7651 (Sized_relobj::set_local_plt_offset): New function.
7652 (Sized_relobj::do_count): Handle IFUNC symbol.
7653 * object.h (class Symbol_value): Add is_ifunc_symbol_ field. Take
7654 a bit away from input_shndx_ field. Add set_is_func_symbol and
7655 is_ifunc_symbol functions.
7656 (class Sized_relobj): Update declarations. Remove Tls_got_entry
7657 and Local_tls_got_offsets. Define Local_plt_offsets. Add
7658 local_plt_offsets_ field.
7659 (Sized_relobj::clear_local_symbols): Clear local_plt_offsets_.
7660 * output.h (class Output_section_data): Add non-const
7661 output_section function.
7662 (class Output_data_got): Update declarations.
7663 (class Output_data_got::Got_entry): Add use_plt_offset_ field.
7664 Add use_plt_offset parameter to global and local constructors.
7665 Change all callers. Change local_sym_index_ field to 31 bits.
7666 Change GSYM_CODE and CONSTANT_CODE accordingly.
7667 * output.cc (Output_data_reloc_base::do_adjust_output_section): If
7668 doing a static link don't set sh_link field.
7669 (Output_data_got::Got_entry::write): Use PLT offset if
7670 appropriate.
7671 (Output_data_got::add_global_plt): New function.
7672 (Output_data_got::add_local_plt): New function.
7673 * target-reloc.h (relocate_section): Handle IFUNC symbol.
7674 * defstd.cc (in_section): Remove entries for __rel_iplt_start,
7675 __rel_iplt_end, __rela_iplt_start, and __rela_iplt_end.
7676 * configure.ac: Set IFUNC automake conditional for glibc >= 2.11.
7677 * testsuite/Makefile.am: Add a bunch of IFUNC tests, all within
7678 IFUNC conditional.
7679 * testsuite/ifunc-sel.h: New file.
7680 * testsuite/ifuncmain1.c: New file.
7681 * testsuite/ifuncmain1vis.c: New file.
7682 * testsuite/ifuncmod1.c: New file.
7683 * testsuite/ifuncdep2.c: New file.
7684 * testsuite/ifuncmain2.c: New file.
7685 * testsuite/ifuncmain3.c: New file.
7686 * testsuite/ifuncmod3.c: New file.
7687 * testsuite/ifuncmain4.c: New file.
7688 * testsuite/ifuncmain5.c: New file.
7689 * testsuite/ifuncmod5.c: New file.
7690 * testsuite/ifuncmain6pie.c: New file.
7691 * testsuite/ifuncmod6.c: New file.
7692 * testsuite/ifuncmain7.c: New file.
7693 * configure, testsuite/Makefile.in: Rebuild.
7694
56f75c03
ILT
76952010-08-18 Ian Lance Taylor <iant@google.com>
7696
7697 * incremental.cc
7698 (Output_section_incremental_inputs::write_input_files): Add cast
7699 to avoid signed/unsigned comparison warning.
7700 (Output_section_incremental_inputs::write_info_blocks): Likewise.
7701
55455f89
CC
77022010-08-12 Cary Coutant <ccoutant@google.com>
7703
7704 * common.cc (Sort_commons::operator()): Remove unnecessary code.
7705
e2054bcb
ILT
77062010-08-13 Ian Lance Taylor <iant@google.com>
7707
7708 * testsuite/incremental_test_1.c: Add prototype to avoid warning.
7709
74f67560
DK
77102010-08-12 Cary Coutant <ccoutant@google.com>
7711 Doug Kwan <dougkwan@google.com>
7712
7713 * resolve.cc (Symbol_table::should_override): When a weak dynamic
7714 defintion overrides non-weak undef, remember that the original undef
7715 is not weak.
7716 * symtab.cc (Symbol_table::sized_write_global): For undef without
7717 an original weak binding, set binding to global in output.
7718 * testsuite/Makefile.am: Add new test strong_ref_weak_def.
7719 * testsuite/Makefile.in: Regenerate.
7720 * testsuite/strong_ref_weak_def.sh: New file.
7721 * testsuite/strong_ref_weak_def_1.c: Ditto.
7722 * testsuite/strong_ref_weak_def_2.c: Ditto.
7723
d1238d12
CC
77242010-08-12 Cary Coutant <ccoutant@google.com>
7725
7726 * testsuite/incremental_test.sh: Rewrite.
7727 * testsuite/incremental_test_1.c: Rewrite.
7728 * testsuite/incremental_test_2.c: Rewrite.
7729
0e70b911
CC
77302010-08-12 Cary Coutant <ccoutant@google.com>
7731
7732 * arm.cc (Target_arm::got_size): Add const.
7733 (Target_arm::got_entry_count): New function.
7734 (Target_arm::plt_entry_count): New function.
7735 (Target_arm::first_plt_entry_offset): New function.
7736 (Target_arm::plt_entry_size): New function.
7737 (Output_data_plt_arm::entry_count): New function.
7738 (Output_data_plt_arm::first_plt_entry_offset): New function.
7739 (Output_data_plt_arm::get_plt_entry_size): New function.
7740 * i386.cc (Target_i386::got_size): Add const.
7741 (Target_i386::got_entry_count): New function.
7742 (Target_i386::plt_entry_count): New function.
7743 (Target_i386::first_plt_entry_offset): New function.
7744 (Target_i386::plt_entry_size): New function.
7745 (Output_data_plt_i386::entry_count): New function.
7746 (Output_data_plt_i386::first_plt_entry_offset): New function.
7747 (Output_data_plt_i386::get_plt_entry_size): New function.
7748 * incremental-dump.cc (dump_incremental_inputs): Adjust call to
7749 find_incremental_inputs_sections. Dump incremental_got_plt section.
7750 * incremental.cc: Include target.h.
7751 (Sized_incremental_binary::do_find_incremental_inputs_sections): Add
7752 parameter. Adjust all callers. Find incremental_got_plt section.
7753 (Incremental_inputs::create_data_sections): Create incremental_got_plt
7754 section.
7755 (Output_section_incremental_inputs::set_final_data_size): Calculate
7756 size of incremental_got_plt section.
7757 (Output_section_incremental_inputs::do_write): Write the
7758 incremental_got_plt section.
7759 (Got_plt_view_info): New struct.
7760 (Local_got_offset_visitor): New class.
7761 (Global_got_offset_visitor): New class.
7762 (Global_symbol_visitor_got_plt): New class.
7763 (Output_section_incremental_inputs::write_got_plt): New function.
7764 * incremental.h (Incremental_binary::find_incremental_inputs_sections):
7765 Add parameter. Adjust all callers.
7766 (Incremental_binary::do_find_incremental_inputs_sections): Likewise.
7767 (Incremental_inputs::got_plt_section): New function.
7768 (Incremental_inputs::got_plt_section_): New data member.
7769 (Incremental_got_plt_reader): New class.
7770 * layout.cc (Layout::create_incremental_info_sections): Add the
7771 incremental_got_plt section.
7772 * object.h (Got_offset_list::get_list): New function.
7773 (Got offset_list::for_all_got_offsets): New function.
7774 (Sized_relobj::local_got_offset_list): New function.
7775 * powerpc.cc (Target_powerpc::got_size): Add const.
7776 (Target_powerpc::got_entry_count): New function.
7777 (Target_powerpc::plt_entry_count): New function.
7778 (Target_powerpc::first_plt_entry_offset): New function.
7779 (Target_powerpc::plt_entry_size): New function.
7780 (Output_data_plt_powerpc::entry_count): New function.
7781 (Output_data_plt_powerpc::first_plt_entry_offset): New function.
7782 (Output_data_plt_powerpc::get_plt_entry_size): New function.
7783 * sparc.cc (Target_sparc::got_size): Add const.
7784 (Target_sparc::got_entry_count): New function.
7785 (Target_sparc::plt_entry_count): New function.
7786 (Target_sparc::first_plt_entry_offset): New function.
7787 (Target_sparc::plt_entry_size): New function.
7788 (Output_data_plt_sparc::entry_count): New function.
7789 (Output_data_plt_sparc::first_plt_entry_offset): New function.
7790 (Output_data_plt_sparc::get_plt_entry_size): New function.
7791 * symtab.h (Symbol::got_offset_list): New function.
7792 (Symbol_table::for_all_symbols): New function.
7793 * target.h (Sized_target::got_entry_count): New function.
7794 (Sized_target::plt_entry_count): New function.
7795 (Sized_target::plt_entry_size): New function.
7796 * x86_64.cc (Target_x86_64::got_size): Add const.
7797 (Target_x86_64::got_entry_count): New function.
7798 (Target_x86_64::plt_entry_count): New function.
7799 (Target_x86_64::first_plt_entry_offset): New function.
7800 (Target_x86_64::plt_entry_size): New function.
7801 (Output_data_plt_x86_64::entry_count): New function.
7802 (Output_data_plt_x86_64::first_plt_entry_offset): New function.
7803 (Output_data_plt_x86_64::get_plt_entry_size): New function.
7804
09ec0418
CC
78052010-08-12 Cary Coutant <ccoutant@google.com>
7806
7807 * archive.cc: Include incremental.h.
7808 (Archive::Archive): Initialize incremental_info_.
7809 (Archive::include_member): Record archive members in incremental info.
7810 (Add_archive_symbols::run): Record begin and end of an archive in
7811 incremental info.
7812 (Lib_group::include_member): Record objects in incremental info.
7813 * archive.h (Incremental_archive_entry): Forward declaration.
7814 (Archive::set_incremental_info): New member function.
7815 (Archive::incremental_info): New member function.
7816 (Archive::Unused_symbol_iterator): New class.
7817 (Archive::unused_symbols_begin): New member function.
7818 (Archive::unused_symbols_end): New member function.
7819 (Archive::incremental_info_): New data member.
7820 * incremental-dump.cc (find_input_containing_global): New function.
7821 (dump_incremental_inputs): Dump new incremental info sections.
7822 * incremental.cc: Include symtab.h.
7823 (Output_section_incremental_inputs): New class.
7824 (Sized_incremental_binary::do_find_incremental_inputs_sections): Support
7825 new incremental info sections.
7826 (Sized_incremental_binary::do_check_inputs): Likewise.
7827 (Incremental_inputs::report_archive): Remove.
7828 (Incremental_inputs::report_archive_begin): New function.
7829 (Incremental_inputs::report_archive_end): New function.
7830 (Incremental_inputs::report_object): New function.
7831 (Incremental_inputs::finalize_inputs): Remove.
7832 (Incremental_inputs::report_input_section): New function.
7833 (Incremental_inputs::report_script): Rewrite.
7834 (Incremental_inputs::finalize): Do nothing but finalize string table.
7835 (Incremental_inputs::create_incremental_inputs_section_data): Remove.
7836 (Incremental_inputs::sized_create_inputs_section_data): Remove.
7837 (Incremental_inputs::create_data_sections): New function.
7838 (Incremental_inputs::relocs_entsize): New function.
7839 (Output_section_incremental_inputs::set_final_data_size): New function.
7840 (Output_section_incremental_inputs::do_write): New function.
7841 (Output_section_incremental_inputs::write_header): New function.
7842 (Output_section_incremental_inputs::write_input_files): New function.
7843 (Output_section_incremental_inputs::write_info_blocks): New function.
7844 (Output_section_incremental_inputs::write_symtab): New function.
7845 * incremental.h (Incremental_script_entry): Forward declaration.
7846 (Incremental_object_entry): Forward declaration.
7847 (Incremental_archive_entry): Forward declaration.
7848 (Incremental_inputs): Forward declaration.
7849 (Incremental_inputs_header_data): Remove.
7850 (Incremental_inputs_header): Remove.
7851 (Incremental_inputs_header_write): Remove.
7852 (Incremental_inputs_entry_data): Remove.
7853 (Incremental_inputs_entry): Remove.
7854 (Incremental_inputs_entry_write): Remove.
7855 (enum Incremental_input_type): Add INCREMENTAL_INPUT_ARCHIVE_MEMBER.
7856 (Incremental_binary::find_incremental_inputs_sections): Add parameters.
7857 (Incremental_binary::do_find_incremental_inputs_sections): Likewise.
7858 (Sized_ncremental_binary::do_find_incremental_inputs_sections):
7859 Likewise.
7860 (Incremental_input_entry): New class.
7861 (Incremental_script_entry): New class.
7862 (Incremental_object_entry): New class.
7863 (Incremental_archive_entry): New class.
7864 (Incremental_inputs::Incremental_inputs): Initialize new data members.
7865 (Incremental_inputs::report_inputs): Remove.
7866 (Incremental_inputs::report_archive): Remove.
7867 (Incremental_inputs::report_archive_begin): New function.
7868 (Incremental_inputs::report_archive_end): New function.
7869 (Incremental_inputs::report_object): Change prototype.
7870 (Incremental_inputs::report_input_section): New function.
7871 (Incremental_inputs::report_script): Change prototype.
7872 (Incremental_inputs::get_reloc_count): New function.
7873 (Incremental_inputs::set_reloc_count): New function.
7874 (Incremental_inputs::create_data_sections): New function.
7875 (Incremental_inputs::create_incremental_inputs_section_data): Remove.
7876 (Incremental_inputs::inputs_section): New function.
7877 (Incremental_inputs::symtab_section): New function.
7878 (Incremental_inputs::relocs_section): New function.
7879 (Incremental_inputs::get_stringpool): Add const.
7880 (Incremental_inputs::command_line): Add const.
7881 (Incremental_inputs::inputs): Remove.
7882 (Incremental_inputs::command_line_key): New function.
7883 (Incremental_inputs::input_file_count): New function.
7884 (Incremental_inputs::input_files): New function.
7885 (Incremental_inputs::relocs_entsize): New function.
7886 (Incremental_inputs::sized_create_inputs_section_data): Remove.
7887 (Incremental_inputs::finalize_inputs): Remove.
7888 (Incremental_inputs::Input_info): Remove.
7889 (Incremental_inputs::lock_): Remove.
7890 (Incremental_inputs::inputs_): Change type.
7891 (Incremental_inputs::inputs_map_): Remove.
7892 (Incremental_inputs::current_object_entry_): New data member.
7893 (Incremental_inputs::inputs_section_): New data member.
7894 (Incremental_inputs::symtab_section_): New data member.
7895 (Incremental_inputs::relocs_section_): New data member.
7896 (Incremental_inputs::reloc_count_): New data member.
7897 (Incremental_inputs_reader): New class.
7898 (Incremental_symtab_reader): New class.
7899 (Incremental_relocs_reader): New class.
7900 * layout.cc (Layout::finalize): Move finalization of incremental info
7901 and creation of incremental info sections to follow finalization of
7902 symbol table. Set offsets for postprocessing sections.
7903 (Layout::create_incremental_info_sections): Call
7904 Incremental_inputs::create_data_sections. Add incremental symtab
7905 and relocs sections. Set sh_entsize and sh_link fields. Arrange for
7906 sections to layout after input sections.
7907 * layout.h (struct Timespec): Forward declaration.
7908 (Layout::incremental_inputs): Add const.
7909 (Layout::create_incremental_info_sections): Add parameter.
7910 * main.cc (main): Remove call to Incremental_inputs::report_inputs.
7911 * object.cc: Include incremental.h.
7912 (Relobj::finalize_incremental_relocs): New function.
7913 (Sized_relobj::do_layout): Record input sections in incremental info.
7914 * object.h (Object::output_section): New function.
7915 (Object::output_section_offset): Moved from Relobj.
7916 (Object::get_incremental_reloc_base): New function.
7917 (Object::get_incremental_reloc_count): New function.
7918 (Object::do_output_section): New function.
7919 (Object::do_output_section_offset): Moved from Relobj.
7920 (Object::do_get_incremental_reloc_base): New function.
7921 (Object::do_get_incremental_reloc_count): New function.
7922 (Object::Object): Initialize new data members.
7923 (Relobj::output_section): Renamed do_output_section and moved to
7924 protected.
7925 (Relobj::output_section_offset): Moved to Object.
7926 (Relobj::do_get_incremental_reloc_base): New function.
7927 (Relobj::do_get_incremental_reloc_count): New function.
7928 (Relobj::allocate_incremental_reloc_counts): New function.
7929 (Relobj::count_incremental_reloc): New function.
7930 (Relobj::finalize_incremental_relocs): New function.
7931 (Relobj::next_incremental_reloc_index): New function.
7932 (Relobj::reloc_counts_): New data member.
7933 (Relobj::reloc_bases_): New data member.
7934 (Sized_relobj::do_relocate_sections): Add parameter. Change caller.
7935 (Sized_relobj::relocate_sections): Add parameter. Change all callers.
7936 (Sized_relobj::incremental_relocs_scan): New function.
7937 (Sized_relobj::incremental_relocs_scan_reltype): New function.
7938 (Sized_relobj::incremental_relocs_write): New function.
7939 (Sized_relobj::incremental_relocs_write_reltype): New function.
7940 * plugin.cc (Plugin_manager::add_input_file): Rewrite test for
7941 incremental link.
7942 * readsyms.cc (Read_symbols::do_read_symbols): Move reporting of
7943 archives and object files elsewhere.
7944 (Add_symbols::run): Report object files here.
7945 (Finish_group::run): Report end of archive at end of group.
7946 * reloc.cc: Include layout.h, incremental.h.
7947 (Sized_relobj::do_read_relocs): Need relocations for incremental link.
7948 (Sized_relobj::do_scan_relocs): Record relocations for incremental link.
7949 (Sized_relobj::incremental_relocs_scan): New function.
7950 (Sized_relobj::incremental_relocs_scan_reltype): New function.
7951 (Sized_relobj::do_relocate_sections): Write incremental relocations.
7952 (Sized_relobj::incremental_relocs_write): New function.
7953 (Sized_relobj::incremental_relocs_write_reltype): New function.
7954 * script.cc (read_input_script): Rewrite test for incremental link.
7955 Change call to Incremental_inputs::report_script.
7956 * symtab.h (Symbol_table::first_global_index): New function.
7957 (Symbol_table::output_count): New function.
7958
ce0d1972
DK
79592010-08-12 Doug Kwan <dougkwan@google.com>
7960
7961 * arm.cc (Target_arm::merge_object_attributes): Check command line
7962 options --no-wchar-size-warning and --no-enum-size-warning.
7963 * options.h (General_options): Add ld-compatible options
7964 --no-enum-size-warning and --no-wchar-size-warning.
7965
6e5710ce
ILT
79662010-08-04 Ian Lance Taylor <iant@google.com>
7967
7968 * x86_64.cc (Target_x86_64::Scan::local): Use
7969 R_X86_64_GNU_VTINHERIT instead of R_386_GNU_VTINHERIT and
7970 R_X86_64_GNU_VTENTRY instead of R_386_GNU_VTENTRY.
7971 (Target_x86_64::Scan::global): Likewise.
7972 (Target_x86_64::Relocate::relocate): Likewise.
7973 (Target_x86_64::Relocatable_size_for_reloc::get_size_for_reloc):
7974 Likewise.
7975
fef830db
CC
79762010-08-03 Cary Coutant <ccoutant@google.com>
7977
7978 * merge.cc (Output_merge_string::do_add_input_section): Count strings
7979 to reserve space in merged_strings vector. Keep total input size
7980 for stats.
7981 (Output_merge_string::do_print_merge_stats): Print total input size.
7982 * merge.h (Output_merge_string): Add input_size_ field.
7983 * stringpool.cc (Stringpool_template::string_length): Move
7984 implementations out of Stringpool_template class and place in
7985 stringpool.h.
7986 * stringpool.h (string_length): Move out of Stringpool_template.
7987
1e3811b0
ILT
79882010-08-03 Ian Lance Taylor <iant@google.com>
7989
7990 PR 11712
7991 * layout.cc (relaxation_loop_body): If address of load segment is
7992 set, adjust address to include headers if possible.
7993
7af0c620
ILT
79942010-08-03 Ian Lance Taylor <iant@google.com>
7995
7996 * version.cc (version_string): Bump to 1.10.
7997
22f0da72
ILT
79982010-08-03 Ian Lance Taylor <iant@google.com>
7999
8000 PR 11805
8001 * layout.h (enum Output_section_order): Define.
8002 (class Layout): Update declarations.
8003 * layout.cc (Layout::get_output_section): Add order parameter.
8004 Remove is_interp, is_dynamic_linker_section, is_last_relro, and
8005 is_first_non_relro parameters. Change all callers.
8006 (Layout::choose_output_section): Likewise.
8007 (Layout::add_output_section_data): Likewise.
8008 (Layout::make_output_section): Likewise. Set order.
8009 (Layout::default_section_order): New function.
8010 (Layout::layout_eh_frame): Call add_output_section_to_nonload.
8011 * output.cc (Output_section::Output_section): Initialize order_.
8012 Don't initialize deleted fields.
8013 (Output_segment::Output_segment): Don't initialize deleted
8014 fields.
8015 (Output_segment::add_output_section_to_load): New function
8016 replacing add_output_section. Change all callers to call this or
8017 add_output_section_to_nonload.
8018 (Output_segment::add_output_section_to_nonload): New function.
8019 (Output_segment::remove_output_section): Rewrite.
8020 (Output_segment::add_initial_output_data): Likewise.
8021 (Output_segment::has_any_data_sections): Likewise.
8022 (Output_segment::is_first_section_relro): Likewise.
8023 (Output_segment::maximum_alignment): Likewise.
8024 (Output_segment::has_dynamic_reloc): New function replacing
8025 dynamic_reloc_count. Change all callers.
8026 (Output_segment::has_dynamic_reloc_list): New function replacing
8027 dynamic_reloc_count_list. Change all callers.
8028 (Output_segment::set_section_addresses): Rewrite.
8029 (Output_segment::set_offset): Rewrite.
8030 (Output_segment::find_first_and_last_list): Remove.
8031 (Output_segment::set_tls_offsets): Rewrite.
8032 (Output_segment::first_section_load_address): Likewise.
8033 (Output_segment::output_section_count): Likewise.
8034 (Output_segment::section_with_lowest_load_address): Likewise.
8035 (Output_segment::write_section_headers): Likewise.
8036 (Output_segment::print_sections_to_map): Likewise.
8037 * output.h (class Output_data): Remove dynamic_reloc_count_
8038 field. Add has_dynamic_reloc_ field. Make bools into bitfields.
8039 (Output_data::add_dynamic_reloc): Rewrite.
8040 (Output_data::has_dynamic_reloc): New function.
8041 (Output_data::dynamic_reloc_count): Remove.
8042 (class Output_section): Add order_ field. Remvoe is_relro_local_,
8043 is_last_relro_, is_first_non_relro_, is_interp_,
8044 is_dynamic_linker_section_ fields. Add order and set_order
8045 functions. Remove is_relro_local, set_is_relro_local,
8046 is_last_relro, set_is_last_relro, is_first_non_relro,
8047 set_is_first_non_relro functions, is_interp, set_is_interp,
8048 is_dynamic_linker_section, and set_is_dynamic_linker_section
8049 functions.
8050 (class Output_segment): Change Output_data_list from std::list to
8051 std:;vector. Add output_lists_ field. Remove output_data_ and
8052 output_bss_ fields. Update declarations.
8053
3ff2ccb0
ILT
80542010-08-02 Ian Lance Taylor <iant@google.com>
8055
8056 * arm.cc (Target_arm::gc_process_relocs): Use typename.
8057 * powerpc.cc (Target_powerpc::gc_process_relocs): Likewise.
8058 * sparc.cc (Target_sparc::gc_process_relocs): Likewise.
8059
88a4108b
ILT
80602010-08-02 Ian Lance Taylor <iant@google.com>
8061
8062 PR 11855
8063 * script.cc (Script_options::Script_options): Initialize
8064 symbol_definitions_ and symbol_references_.
8065 (Script_options::add_symbol_assignment): Update
8066 symbol_definitions_ and symbol_references_.
8067 (Script_options::add_symbol_reference): New function.
8068 (script_symbol): New function.
8069 * script.h (class Script_options): Add symbol_definitions_ and
8070 symbol_references_ fields.
8071 (Script_options::referenced_const_iterator): New type.
8072 (Script_options::referenced_begin): New function.
8073 (Script_options::referenced_end): New function.
8074 (Script_options::is_referenced): New function.
8075 (Script_options::any_unreferenced): New function.
8076 * script-c.h (script_symbol): Declare.
8077 * yyscript.y (exp): Call script_symbol.
8078 * symtab.cc: Include "script.h".
8079 (Symbol_table::gc_mark_undef_symbols): Add layout parameter.
8080 Change all callers. Check symbols referenced by scripts.
8081 (Symbol_table::add_undefined_symbols_from_command_line): Add
8082 layout parameter. Change all callers.
8083 (Symbol_table::do_add_undefined_symbols_from_command_line):
8084 Likewise. Break out loop body. Check symbols referenced by
8085 scripts.
8086 (Symbol_table::add_undefined_symbol_from_command_line): New
8087 function broken out of
8088 do_add_undefined_symbols_from_command_line.
8089 * symtab.h (class Symbol_table): Update declarations.
8090 * archive.cc: Include "layout.h".
8091 (Archive::should_include_member): Add layout parameter. Change
8092 all callers. Check for symbol mentioned in expression.
8093 * archive.h (class Archive): Update declaration.
8094 * object.cc (Sized_relobj::do_should_include_member): Add layout
8095 parameter.
8096 * object.h (Object::should_include_member): Add layout parameter.
8097 Change all callers.
8098 (Object::do_should_include_member): Add layout parameter.
8099 (class Sized_relobj): Update declaration.
8100 * dynobj.cc (Sized_dynobj::do_should_include_member): Add layout
8101 parameter.
8102 * dynobj.h (class Sized_dynobj): Update declaration.
8103 * plugin.cc (Sized_pluginobj::do_should_include_member): Add
8104 layout parameter.
8105 * plugin.h (class Sized_pluginobj): Update declaration.
8106
5f1ab67a
ILT
81072010-08-02 Ian Lance Taylor <iant@google.com>
8108
8109 PR 11866
8110 * output.cc (Output_segment::set_offset): Search for the first and
8111 last sections rather than assuming that the list is in order.
8112 (Output_segment::find_first_and_last_list): New function.
8113 * output.h (class Output_segment): Update declarations.
8114 * testsuite/Makefile.am (check_PROGRAMS): Add relro_strip_test.
8115 (relro_strip_test_SOURCES): New variable.
8116 (relro_strip_test_DEPENDENCIES): New variable.
8117 (relro_strip_test_LDFLAGS): New variable.
8118 (relro_strip_test_LDADD): New variable.
8119 (relro_strip_test.so): New target.
8120
a8df5856
ILT
81212010-08-02 Ian Lance Taylor <iant@google.com>
8122
8123 * i386.cc (class Target_i386): Add got_tlsdesc_ field.
8124 (Target_i386::Target_i386):: Initialize got_tlsdesc_.
8125 (Target_i386::got_tlsdesc_section): New function.
8126 (Target_i386::got_section): Create space for GOT entries for
8127 TLSDESC relocations.
8128 (Target_i386::Scan::local): Use TLSDESC GOT for unoptimized
8129 R_386_TLS_GOTDESC.
8130 (Target_i386::Scan::global): Likewise.
8131 (Target_i386::Relocate::relocate_tls): Adjust GOT offset when
8132 using TLSDESC GOT.
8133 * x86_64.cc (class Target_x86_64): Add got_tlsdesc_ field.
8134 (Target_x86_64::Target_x86_64):: Initialize got_tlsdesc_.
8135 (Target_x86_64::got_tlsdesc_section): New function.
8136 (Target_x86_64::got_section): Create space for GOT entries for
8137 TLSDESC relocations.
8138 (Target_x86_64::Scan::local): Use TLSDESC GOT for unoptimized
8139 R_386_TLS_GOTDESC.
8140 (Target_x86_64::Scan::global): Likewise.
8141 (Target_x86_64::Relocate::relocate_tls): Adjust GOT offset when
8142 using TLSDESC GOT.
8143
0c10a0a6
ILT
81442010-08-02 Ian Lance Taylor <iant@google.com>
8145
8146 * testsuite/final_layout.sh: Use dc to convert from hex to
8147 decimal.
8148
41cbeecc
ST
81492010-07-29 Sriraman Tallam <tmsriram@google.com>
8150
8151 * arm.cc (Target_arm<big_endian>::gc_process_relocs): Add template
8152 paramter to the call to gold::gc_process_relocs.
8153 * i386.cc (Target_i386<big_endian>::gc_process_relocs): Add template
8154 paramter to the call to gold::gc_process_relocs.
8155 * x86_64.cc (Target_x86_64<big_endian>::gc_process_relocs): Add template
8156 parameter to the call to gold::gc_process_relocs.
8157 * powerpc.cc (Target_powerpc<big_endian>::gc_process_relocs): Add
8158 template parameter to the call to gold::gc_process_relocs.
8159 * sparc.cc (Target_sparc<big_endian>::gc_process_relocs): Add template
8160 paramter to the call to gold::gc_process_relocs.
8161 * gc.h (get_embedded_addend_size): New function.
8162 (gc_process_relocs): Save the size of the reloc for use by ICF.
8163 * icf.cc (get_section_contents): Get the addend from the text section
8164 for SHT_REL relocation sections.
8165 * icf.h (Icf::Reloc_addend_size_info): New typedef.
8166 (Icf::Reloc_info): Add new member reloc_addend_size_info.
8167 * int_encoding.h (read_from_pointer): New overloaded function.
8168 * testsuite/Makefile.am (icf_sht_rel_addend_test): New test.
8169 * testsuite/icf_sht_rel_addend_test.sh: New file.
8170 * testsuite/icf_sht_rel_addend_test_1.cc: New file.
8171 * testsuite/icf_sht_rel_addend_test_2.cc: New file.
8172
6ea55b82
RW
81732010-07-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
8174
8175 * configure.ac (AM_INIT_AUTOMAKE): Use parallel-tests option.
8176 * Makefile.in: Regenerate.
8177 * testsuite/Makefile.in: Regenerate.
8178
9691462b
ILT
81792010-07-27 Jeffrey Yasskin <jyasskin@google.com>
8180
8181 * testsuite/debug_msg.sh: Test mixed weak/strong symbol behavior.
8182 * gold/testsuite/debug_msg.cc: Likewise.
8183 * gold/testsuite/odr_violation1.cc
8184 * gold/testsuite/odr_violation2.cc
8185
76897331
CC
81862010-07-21 Cary Coutant <ccoutant@google.com>
8187
8188 * merge.h (Output_merge_string::Merged_string): Remove object, shndx,
8189 string, and length fields.
8190 (Output_merge_string::Merged_strings_list): New type.
8191 (Output_merge_string::Merged_strings_lists): New typedef.
8192 (Output_merge_string): Replace merged_strings_ with
8193 merged_strings_lists_.
8194 * merge.cc (Output_merge_string::do_add_input_section): Allocate new
8195 Merged_strings_list per input object and section. Don't store pointer
8196 to the string. Don't store length with each merged string entry.
8197 (Output_merge_string::finalize_merged_data): Loop over list of merged
8198 strings lists. Recompute length of each merged string.
8199
78384e8f
CC
82002010-07-15 Cary Coutant <ccoutant@google.com>
8201
8202 * plugin.cc (Plugin_finish::run): Don't call cleanup handlers from
8203 here.
8204
783659f9
ILT
82052010-07-14 Ian Lance Taylor <iant@google.com>
8206
8207 * descriptors.cc (Descriptors::open): Report correct name in error
8208 message.
8209
131687b4
DK
82102010-07-13 Doug Kwan <dougkwan@google.com>
8211
8212 * arm.cc (Arm_input_section::Arm_input_section): For a
8213 SHT_ARM_EXIDX section, always keeps the input sections.
8214 (Arm_input_section::set_exidx_section_link): New method.
8215 (Arm_exidx_input_section::Arm_exidx_input_section): Initialize
8216 has_errors_ to false.
8217 (Arm_exidx_input_section::has_errors,
8218 Arm_exidx_input_section::set_has_errors): New methods.
8219 (Arm_exidx_input_section::has_errors_): New data member.
8220 (Arm_relobj::get_exidx_shndx_list): New method.
8221 (Arm_output_section::append_text_sections_to_list): Do not skip
8222 section without SHF_EXECINSTR.
8223 (Arm_output_section::fix_exidx_coverage): Skip input sections with
8224 errors.
2e702c99 8225 (Arm_relobj::make_exidx_input_section): Add new parameter for text
131687b4
DK
8226 section header. Make error messages more verbose. Check for
8227 a non-executable section linked to an EXIDX section.
8228 (Arm_relobj::do_read_symbols): Remove error checking, which has been
8229 moved to Arm_relobj::make_exidx_input_section. Add an assertion to
8230 check that there is no deferred EXIDX section if we exit early.
8231 Instead of not making an EXIDX section in case of an error, make one
8232 and set the has_errors flag of it.
8233 (Target_arm::do_finalize_sections): Fix up links of EXIDX sections
8234 in a relocatable link.
8235 (Target_arm::do_relax): Look for the EXIDX output section instead of
8236 assuming that it is called .ARM.exidx.
2e702c99 8237 (Target_arm::fix_exidx_coverage): Add a new parameter for input
131687b4
DK
8238 section list. Do not check for SHF_EXECINSTR section flags but
8239 skip any input section with errors.
8240 * output.cc (Output_section::Output_section): Initialize
8241 always_keeps_input_sections_ to false.
8242 (Output_section::add_input_section): Check for
8243 always_keeps_input_sections_.
8244 * output.h (Output_section::always_keeps_input_sections,
8245 Output_section::set_always_keeps_input_sections): New methods.
8246 (Output_section::always_keeps_input_sections): New data member.
8247
69517287
RÁE
82482010-07-13 Rafael Espindola <espindola@google.com>
8249
8250 * fileread.cc (try_extra_search_path, find_file): Move to Input_file.
8251 * fileread.h (Input_file): Add try_extra_search_path and find_file.
8252
82742395
ILT
82532010-07-13 Philip Herron <herron.philip@googlemail.com>
8254 Ian Lance Taylor <iant@google.com>
8255
8256 * output.h (Output_section_lookup_maps::add_merge_section):
8257 Correct check of whether value was inserted.
8258 (Output_section_lookup_maps::add_merge_input_section): Likewise.
8259 (Output_section_lookup_maps::add_relaxed_input_section):
8260 Likewise.
8261 * arm.cc (Target_arm::got_section): Remove used local os.
8262 * i386.cc (Target_i386::got_section): Likewise.
8263 * x86_64.cc (Target_x86_64::got_section): Likewise.
8264 * sparc.cc (Target_sparc::got_section): Likewise.
8265 (Target_sparc::relocate): Remove unused local have_got_offset.
8266 * powerpc.cc (Target_powerpc::relocate): Likewise.
8267
f2d707b5
ILT
82682010-07-13 Ian Lance Taylor <iant@google.com>
8269
241531d6
ILT
8270 * compressed_output.cc (zlib_decompress): Fix signature in
8271 !HAVE_ZLIB_H case.
8272
f2d707b5
ILT
8273 * archive.cc (Archive::include_member): Unlock an external member
8274 of a thin archive. Don't bother to delete an object we know is
8275 NULL.
8276
a2e47362
CC
82772010-07-12 Cary Coutant <ccoutant@google.com>
8278
8279 * compressed_output.cc (zlib_decompress): New function.
8280 (get_uncompressed_size): New function.
8281 (decompress_input_section): New function.
8282 * compressed_output.h (get_uncompressed_size): New function.
8283 (decompress_input_section): New function.
8284 * dwarf_reader.cc (Sized_dwarf_line_info::Sized_dwarf_line_info)
8285 Handle compressed debug sections.
8286 * layout.cc (is_compressed_debug_section): New function.
8287 (Layout::output_section_name): Map compressed section names to
8288 canonical names.
8289 * layout.h (is_compressed_debug_section): New function.
8290 (is_debug_info_section): Recognize compressed debug sections.
8291 * merge.cc: Include compressed_output.h.
8292 (Output_merge_data::do_add_input_section): Handle compressed
8293 debug sections.
8294 (Output_merge_string::do_add_input_section): Handle compressed
8295 debug sections.
8296 * object.cc: Include compressed_output.h.
8297 (Sized_relobj::Sized_relobj): Initialize new data members.
8298 (build_compressed_section_map): New function.
8299 (Sized_relobj::do_read_symbols): Handle compressed debug sections.
8300 * object.h (Object::section_is_compressed): New method.
8301 (Object::do_section_is_compressed): New method.
8302 (Sized_relobj::Compressed_section_map): New type.
8303 (Sized_relobj::do_section_is_compressed): New method.
8304 (Sized_relobj::compressed_sections_): New data member.
8305 * output.cc (Output_section::add_input_section): Handle compressed
8306 debug sections.
8307 * reloc.cc: Include compressed_output.h.
8308 (Sized_relobj::write_sections): Handle compressed debug sections.
8309
ce279a62
CC
83102010-07-08 Cary Coutant <ccoutant@google.com>
8311
8312 * resolve.cc (Symbol_table::resolve): Remember whether undef was
8313 weak when resolving to a dynamic def.
8314 (Symbol_table::should_override): Add adjust_dyndef flag; set it
8315 for weak undef/dynamic def cases. Adjust callers.
8316 * symtab.cc (Symbol::init_fields): Initialize undef_binding_set_ and
8317 undef_binding_weak_.
8318 (Symbol_table::sized_write_globals): Adjust symbol binding.
8319 (Symbol_table::sized_write_symbol): Add binding parameter.
8320 * symtab.h (Symbol::set_undef_binding): New method.
8321 (Symbol::is_undef_binding_weak): New method.
8322 (Symbol::undef_binding_set_, Symbol::undef_binding_weak_): New members.
8323 (Symbol_table::should_override): Add new parameter.
8324 (Symbol_table::sized_write_symbol): Add new parameter.
8325
8326 * testsuite/weak_undef_file1.cc: Add new test case.
8327 * testsuite/weak_undef_file2.cc: Fix header comment.
8328 * testsuite/weak_undef_test.cc: Add new test case.
8329
b2286c10
DK
83302010-06-29 Doug Kwan <dougkwan@google.com>
8331
8332 * arm-reloc-property.cc (Arm_reloc_property::Arm_reloc_property):
8333 Initialize USE_SYMBOL_.
8334 * arm-reloc-property.h (Arm_reloc_property::uses_symbol): New method
8335 definition.
8336 (Arm_reloc_property::uses_symbol_): New data member declaration.
8337 * arm.cc (Target_arm::Relocate::relocate): Exit early if relocation
8338 uses symbol value and symbol is undefined but not weakly undefined.
8339
4802450a
RÁE
83402010-06-28 Rafael Espindola <espindola@google.com>
8341
8342 * plugin.cc (Plugin::load): Use dlerror.
8343
e5ca47ba
ILT
83442010-06-26 Jeffrey Yaskin <jyasskin@google.com>
8345
8346 * symtab.cc (detect_odr_violations): When reporting an ODR
8347 violation, report an object where the symbol is defined.
8348
8a75a161
DK
83492010-06-25 Doug Kwan <dougkwan@google.com>
8350
8351 * arm.cc (Target_arm::can_check_for_functions_pointers): Return true.
8352 (Target_arm::section_may_have_icf_unsafe_pointers): New method
8353 definition.
8354 (Target_arm::Scan::local_reloc_may_be_function_pointer,
8355 Target_arm::Scan::global_reloc_may_be_function_pointer): Implement
8356 target hook to detect function points.
8357 (Target_arm::Scan::possible_function_pointer_reloc): New method.
8358 * icf.h (Icf::check_section_for_function_pointers): Change type of
8359 parameter SECTION_NAME to const reference to std::string. Use
8360 target hook to determine if section may have unsafe pointers.
8361 * target.h (Target::section_may_have_icf_unsafe_pointers): New
8362 method definition.
8363
42218b9f
RÁE
83642010-06-21 Rafael Espindola <espindola@google.com>
8365
8366 * fileread.cc (Input_file::find_fie): New
8367 (Input_file::open): Use Input_file::find_fie.
8368 * fileread.h (Input_file::find_fie): New
8369 * plugin.cc (set_extra_library_path): New.
8370 (Plugin::load): Add set_extra_library_path to the transfer vector.
8371 (Plugin_manager::set_extra_library_path): New.
8372 (Plugin_manager::add_input_file): Use the extra search path if set.
8373 (set_extra_library_path(): New.
8374 * plugin.h (Plugin_manager): Add set_extra_library_path and
8375 extra_search_path_.
8376
a0506cca
CC
83772010-06-19 Cary Coutant <ccoutant@google.com>
8378
8379 * layout.cc (gdb_sections): Add .debug_types.
8380 (lines_only_debug_sections): Likewise.
8381
6508b958
RÁE
83822010-06-18 Rafael Espindola <espindola@google.com>
8383
8384 * plugin.cc (add_input_file,add_input_library)
8385 (Plugin_manager::add_input_file): Make filename arguments const.
8386 * plugin.h (Plugin_manager::add_input_file): Make filename arguments
8387 const.
8388
3e235302
DK
83892010-06-16 Doug Kwan <dougkwan@google.com>
8390
8391 * arm.cc (Target_arm::do_finalize_sections): Do not emit an
8392 .ARM.attributes section if we have not merged any input
8393 attributes sections.
8394
106e8a6c
DK
83952010-06-15 Viktor Kutuzov <vkutuzov@accesssoftek.com>
8396
8397 * arm.cc: Allow combining objects with no EABI version
8398 information.
8399
91ff43fe
RÁE
84002010-06-15 Rafael Espindola <espindola@google.com>
8401
8402 * plugin.cc (Plugin_hook::run): Set in_real_elf for the start symbol.
8403
68ed838c
ILT
84042010-06-15 Viktor Kutuzov <vkutuzov@accesssoftek.com>
8405
8406 * fileread.cc: Only #include <sys/uio.h> if HAVE_READV.
8407 (struct iovec): Correct !HAVE_READV definition.
8408
f3a2388f
CC
84092010-06-10 Cary Coutant <ccoutant@google.com>
8410
8411 * object.cc (Sized_relobj::do_layout): Defer layout for reloc sections.
8412 (Sized_relobj::do_layout_deferred_sections): Do layout for deferred
8413 reloc sections.
8414 * object.h (Sized_relobj::deferred_layout_relocs_): New data member.
8415
8416 PR 11683
8417 * symtab.h (Symbol::is_placeholder): New member function.
8418 * target-reloc.h (relocate_section): Check for placeholder symbols.
8419
8420 * testsuite/Makefile.am (plugin_test_8): New test.
8421 (plugin_test_9): New test.
8422 * testsuite/Makefile.in: Regenerate.
8423
e1df38aa
NC
84242010-06-09 Nick Clifton <nickc@redhat.com>
8425
8426 * yyscript.y (input_list_element): Allow strings prefixed with
8427 the '-' character. Treat these as libraries.
8428 * script.cc (script_add_library): New function. Adds a library
8429 specified by "-l<name>" found in an input script.
8430 * script-c.h: Add prototype for script_add_library.
8431
25bbe950
DK
84322010-06-07 Doug Kwan <dougkwan@google.com>
8433
8434 * arm.cc (Target_arm::do_relax): Reserve more space for stubs.
8435 Restrict stub-group size to be within long conditional branch
8436 range when working around cortex-A8 erratum.
8437
0f32ea4c
ILT
84382010-06-07 Damien Diederen <dd@crosstwine.com>
8439
8440 * gold-threads.cc (Lock_impl_threads::Lock_impl_threads): Correct
8441 #ifdef typo.
8442
8fe2a369
ST
84432010-06-03 Sriraman Tallam <tmsriram@google.com>
8444
8445 PR gold/11658
8446 * output.cc
8447 (Output_section::Input_section_sort_entry::compare_section_ordering):
8448 Change to return non-zero correctly.
8449 (Output_section::Input_section_sort_section_order_index_compare
8450 ::operator()): Change to fix ambiguity in comparisons.
8451
6e9ba2ca
ST
84522010-06-01 Sriraman Tallam <tmsriram@google.com>
8453
8454 * gold.h (is_wildcard_string): New function.
8455 * layout.cc (Layout::layout): Pass this pointer to add_input_section.
8456 (Layout::layout_eh_frame): Ditto.
8457 (Layout::find_section_order_index): New method.
8458 (Layout::read_layout_from_file): New method.
8459 * layout.h (Layout::find_section_order_index): New method.
8460 (Layout::read_layout_from_file): New method.
8461 (Layout::input_section_position_): New private member.
8462 (Layout::input_section_glob_): New private member.
8463 * main.cc (main): Call read_layout_from_file here.
8464 * options.h (--section-ordering-file): New option.
8465 * output.cc (Output_section::input_section_order_specified_): New
8466 member.
8467 (Output_section::Output_section): Initialize new member.
8468 (Output_section::add_input_section): Add new parameter.
8469 Keep input sections when --section-ordering-file is used.
8470 (Output_section::set_final_data_size): Sort input sections when
8471 section ordering file is specified.
8472 (Output_section::Input_section_sort_entry): Add new parameter.
8473 Check sorting type.
8474 (Output_section::Input_section_sort_entry::compare_section_ordering):
8475 New method.
8476 (Output_section::Input_section_sort_compare::operator()): Change to
8477 consider section_order_index.
8478 (Output_section::Input_section_sort_init_fini_compare::operator()):
8479 Change to consider section_order_index.
8480 (Output_section::Input_section_sort_section_order_index_compare
8481 ::operator()): New method.
8482 (Output_section::sort_attached_input_sections): Change to sort
8483 according to section order when specified.
e1df38aa
NC
8484 (Output_section::add_input_section<32, true>): Add new parameter.
8485 (Output_section::add_input_section<64, true>): Add new parameter.
8486 (Output_section::add_input_section<32, false>): Add new parameter.
8487 (Output_section::add_input_section<64, false>): Add new parameter.
6e9ba2ca
ST
8488 * output.h (Output_section::add_input_section): Add new parameter.
8489 (Output_section::input_section_order_specified): New
8490 method.
8491 (Output_section::set_input_section_order_specified): New method.
8492 (Input_section::Input_section): Initialize section_order_index_.
8493 (Input_section::section_order_index): New method.
8494 (Input_section::set_section_order_index): New method.
8495 (Input_section::section_order_index_): New member.
8496 (Input_section::Input_section_sort_section_order_index_compare): New
8497 struct.
8498 (Output_section::input_section_order_specified_): New member.
8499 * script-sections.cc (is_wildcard_string): Delete and move modified
8500 method to gold.h.
8501 (Output_section_element_input::Output_section_element_input): Modify
8502 call to is_wildcard_string.
8503 (Output_section_element_input::Input_section_pattern
8504 ::Input_section_pattern): Ditto.
8505 (Output_section_element_input::Output_section_element_input): Ditto.
8506 * testsuite/Makefile.am (final_layout): New test case.
8507 * testsuite/Makefile.in: Regenerate.
8508 * testsuite/final_layout.cc: New file.
8509 * testsuite/final_layout.sh: New file.
8510
3537c84b
RÁE
85112010-06-01 Rafael Espindola <espindola@google.com>
8512
8513 * plugin.cc (Plugin::load): Pass the output name to the plugin.
8514
105b6afd
RÁE
85152010-06-01 Rafael Espindola <espindola@google.com>
8516
8517 * plugin.cc (Sized_pluginobj::::do_add_symbols): Correctly set the
8518 visibility of symbols.
8519
29e11421
DK
85202010-05-27 Doug Kwan <dougkwan@google.com>
8521
8522 * object.cc (Sized_relobj::do_finalize_local_symbols): Use offset
8523 from start of output section instead of address for a local symbol
8524 in a merged or relaxed section when doing a relocatable link.
8525
5e0f337e
RÁE
85262010-05-26 Rafael Espindola <espindola@google.com>
8527
703d02da 8528 PR 11604
5e0f337e
RÁE
8529 * gold/object.cc(Sized_relobj::do_layout_deferred_sections): Avoid
8530 adding sections the garbage collector removed.
8531 * gold/testsuite/Makefile.am: Add test.
8532 * gold/testsuite/Makefile.in: Regenerate.
8533 * gold/testsuite/plugin_test_7.sh: New.
8534 * gold/testsuite/plugin_test_7_1.c: New.
8535 * gold/testsuite/plugin_test_7_2.c: New.
8536
f4187277
RÁE
85372010-05-26 Rafael Espindola <espindola@google.com>
8538
8539 * script-sections.cc (Output_section_definition::set_section_addresses):
8540 Check for --section-start.
8541
5c388529
DK
85422010-05-26 Doug Kwan <dougkwan@google.com>
8543
8544 * arm.cc (Arm_scan_relocatable_relocs): New class.
8545 (Target_arm::relocate_special_relocatable): New method.
8546 (Arm_relocate_functions::arm_branch_common): Handle relocatable link.
8547 (Arm_relocate_functions::thumb_branch_common): Same.
8548 (Target_arm::scan_relocatable_relocs): Use Arm_scan_relocatable_relocs
8549 instead of Default_scan_relocatable_relocs.
8550 * target-reloc.h (relocate_for_relocatable): Let target handle
8551 relocation strategy Relocatable_relocs::RELOC_SPECIAL.
8552 * target.h (Sized_target::relocate_special_relocatable): New method.
8553
bca1c3ae
ILT
85542010-05-25 Viktor Kutuzov <vkutuzov@accesssoftek.com>
8555
8556 * timer.cc: Only #include <sys/times.h> if HAVE_TIMES is defined.
8557
0439c796
DK
85582010-05-23 Doug Kwan <dougkwan@google.com>
8559
8560 * arm.cc (Arm_input_section::do_output_offset): Use convert_types
8561 instead of a cast.
8562 (Target_arm::apply_cortex_a8_workaround): Rewrite a conditional branch
8563 with a direct branch, not a conditional branch, to a stub.
8564 * merge.cc (Output_merge_base::record_input_section): New method
8565 defintion.
8566 (Output_merge_data::do_add_input_section): Record input section if
8567 keeps-input-sections flag is set.
8568 (Output_merge_string::do_add_input_section): Ditto.
8569 * merge.h (Output_merge_base::Output_merge_base): Initialize new data
8570 members KEEPS_INPUT_SECTIONS_, FIRST_RELOBJ_, FIRST_SHNDX_ and
8571 INPUT_SECTIONS_.
8572 (Output_merge_base::keeps_input_sections,
8573 Output_merge_base::set_keeps_input_sections,
8574 Output_merge_base::first_relobj, Output_merge_base::first_shndx): New
8575 method definitions.
8576 (Output_merge_base::Input_sections): New type declaration.
8577 (Output_merge_base::input_sections_begin,
8578 Output_merge_base::input_sections_end,
8579 Output_merge_base::do_set_keeps_input_sections): New method definitions.
8580 (Output_merge_base::bool keeps_input_sections_,
8581 Output_merge_base::first_relobj_, Output_merge_base::first_shndx_,
8582 Output_merge_base::input_sections_): New data members.
8583 (Output_merge_data::do_set_keeps_input_sections): New method
8584 defintion.
8585 (Output_merge_string::do_set_keeps_input_sections): Ditto.
8586 * output.cc (Output_section::Input_section::relobj): Move method
8587 defintion from class declaration to here and handle merge sections.
8588 (Output_section::Input_section::shndx): Ditto.
8589 (Output_section::Output_section): Remove initializations of removed
8590 data members and initialize new data member LOOKUP_MAPS_.
8591 (Output_section::add_input_section): Set keeps-input-sections flag
8592 for a newly created merge output section as appropriate. Adjust code
8593 to use Output_section_lookup_maps class.
8594 (Output_section::add_relaxed_input_section): Adjst code for lookup
8595 maps code refactoring.
2e702c99 8596 (Output_section::add_merge_input_section): Add a new parameter
0439c796
DK
8597 KEEPS_INPUT_SECTION. Adjust code to use Output_section_lookup_maps
8598 class. If adding input section to a newly created merge output
8599 section fails, remove the new merge section.
8600 (Output_section::convert_input_sections_in_list_to_relaxed_input_sections):
e1df38aa 8601 Adjust code for use of the Output_section_lookup_maps class.
2e702c99 8602 (Output_section::find_merge_section): Ditto.
0439c796 8603 (Output_section::build_lookup_maps): New method defintion.
2e702c99 8604 (Output_section::find_relaxed_input_section): Adjust code to use
0439c796
DK
8605 Output_section_lookup_maps class.
8606 (Output_section::get_input_sections): Export merge sections. Adjust
8607 code to use Output_section_lookup_maps class.
8608 (Output_section:::add_script_input_section): Adjust code to use
8609 Output_section_lookup_maps class. Update lookup maps for merge
8610 sections also.
8611 (Output_section::discard_states): Use Output_section_lookup_maps.
8612 (Output_section::restore_states): Same.
8613 * output.h (Merge_section_properties): Move class defintion out of
8614 Output_section.
8615 (Output_section_lookup_maps): New class.
8616 (Output_section::Input_section::is_merge_section): New method
8617 defintion.
8618 (Output_section::Input_section::relobj): Move defintion out of class
8619 defintion. Declare method only.
8620 (Output_section::Input_section::shndx): Ditto.
8621 (Output_section::Input_section::output_merge_base): New method defintion.
2e702c99 8622 (Output_section::Input_section::u2_.pomb): New union field.
0439c796
DK
8623 (Output_section::Merge_section_by_properties_map,
8624 Output_section::Output_section_data_by_input_section_map,
8625 Output_section::Ouptut_relaxed_input_section_by_input_section_map):
8626 Remove types.
2e702c99 8627 (Output_section::add_merge_input_section): Add new parameter
0439c796
DK
8628 KEEPS_INPUT_SECTIONS.
8629 (Output_section::build_lookup_maps): New method declaration.
8630 (Output_section::merge_section_map_,
8631 Output_section::merge_section_by_properties_map_,
8632 Output_section::relaxed_input_section_map_,
8633 Output_section::is_relaxed_input_section_map_valid_): Remove data
8634 members.
8635 (Output_section::lookup_maps_): New data member.
8636
76295588
L
86372010-05-21 Doug Kwan <dougkwan@google.com>
8638
8639 PR gold/11619
8640 * arm.cc (Arm_input_section::do_output_offset): Add a cast to
8641 avoid a compilation error.
8642
d103a984
RÁE
86432010-05-19 Rafael Espindola <espindola@google.com>
8644
8645 * script-sections.cc (Output_section_definition::allocate_to_segment):
8646 Update the phdrs_list even when the output section is NULL.
8647 * testsuite/Makefile.am: Add test.
8648 * testsuite/Makefile.in: Regenerate.
8649 * testsuite/script_test_9.cc: New.
8650 * testsuite/script_test_9.sh: New.
8651 * testsuite/script_test_9.t: New.
8652
6625d24e
DK
86532010-05-19 Doug Kwan <dougkwan@google.com>
8654
8655 * arm.cc (Arm_input_section::original_size): New method.
8656 (Arm_input_section::do_addralign): Add a cast.
8657 (Arm_input_section::do_output_offset): Remove static cast.
8658 (Arm_input_section::original_addralign,
8659 Arm_input_section::original_size_): Change type to uint32_t.
8660 (Arm_input_section::init): Add safe casts for section alignment
8661 and size.
8662 (Arm_input_section::set_final_data_size): Do not set address and
8663 offset of stub table.
8664 (Arm_output_section::fix_exidx_coverage): Change use of of
8665 Output_section::Simple_input_section to that of
8666 Output_section::Input_section.
8667 (Target_arm::do_relax): Set addresses and file offsets of Stub_tables
8668 except for the first pass.
8669 * output.cc (Output_section::get_input_sections): Change type of
8670 input_sections to std::list<Input_section>.
8671 (Output_section::add_script_input_section): Rename from
8672 Output_section::add_simple_input_section. Change type of SIS
8673 parameter from Simple_input_section to Input_section.
8674 * output.h (Output_section::Simple_input_section): Remove class.
8675 (Output_section::Input_section): Change class visibility to public.
8676 (Output_section::Input_section::addralign): Use stored alignments
8677 for special input sections if set.
8678 (Output_section::Input_section::set_addralign): New method.
8679 (Output_section::get_input_sections): Change parameter type from
8680 list of Simple_input_section to list of Input_section.
8681 (Output_section::add_script_input_section): Rename from
8682 Output_section::add_simple_input_section. Change first parameter's
8683 type from Simple_input_section to Input_section and remove the
8684 second and third parameters.
8685 * script-sections.cc (Input_section::Input_section_list): Change
8686 type to list of Output_section::Input_section/
8687 (Input_section_info::Input_section_info): Change parameter type of
8688 INPUT_SECTION to Output_section::Input_section.
8689 (Input_section_info::input_section): Change return type.
8690 (Input_section_info::input_section_): Change type to
8691 Output_section::Input_section.
8692 (Output_section_element_input::set_section_addresses): Adjust code
8693 to use Output_section::Input_section instead of
8694 Output_section::Simple_input_section. Adjust code for renaming
8695 of Output_section::add_simple_input_section.
8696 (Orphan_output_section::set_section_addresses): Ditto.
8697
e1e82ea4
RW
86982010-05-18 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
8699
8700 * gold.h (Unordered_multimap, Unordered_map): Fix defines for
8701 when neither HAVE_TR1_UNORDERED_MAP nor HAVE_EXT_HASH_MAP are set.
8702
91e75c8a
RÁE
87032010-05-18 Rafael Espindola <espindola@google.com>
8704
8705 * options.cc (General_options::finalize): Handle -nostdlib.
8706 * options.h (nostdlib): New option.
8707 * script.cc (script_add_search_dir): Handle -nostdlib.
8708
da59ad79
DK
87092010-05-12 Doug Kwan <dougkwan@google.com>
8710
8711 * arm.cc (Target_arm::do_finalize_sections): Create an empty
8712 attributes section only if there no attributes section after merging.
8713 (Target_arm::merge_object_attributes): Move value of
e1df38aa 8714 Tag_MPextension_use_legacy to that of Tag_MPextension_use.
da59ad79
DK
8715 Handle Tag_DIV_use and Tag_MPextension_use_legacy.
8716 * testsuite/Makefile.am (check_SCRIPTS): Add arm_attr_merge.sh
8717 (check_DATA): Add arm_attr_merge_6.stdout, arm_attr_merge_6r_stdout
8718 and arm_attr_merge_7.stdout.
8719 (arm_attr_merge_6.stdout, arm_attr_merge_6 arm_attr_merge_6a.o
8720 arm_attr_merge_6b.o, arm_attr_merge_6r.stdout, arm_attr_merge_6r,
8721 arm_attr_merge_7.stdout, arm_attr_merge_7, arm_attr_merge_7a.o,
8722 arm_attr_merge_7b.o): New rules.
8723 (MOSTLYCLEANFILES): Add arm_attr_merge_6, arm_attr_merge_6r and
8724 arm_attr_merge_7
8725 * testsuite/Makefile.in: Regenerate.
8726 * testsuite/arm_attr_merge.sh: New file.
8727 * testsuite/arm_attr_merge_[67][ab].s: Same.
8728
3e01a7fd
NC
87292010-05-05 Nick Clifton <nickc@redhat.com>
8730
8731 * po/es.po: Updated Spanish translation.
8732
7ad2014a
L
87332010-04-27 H.J. Lu <hongjiu.lu@intel.com>
8734
8735 * Makefile.am (install-exec-local): Properly install gold as
8736 default cross linker.
8737 * Makefile.in: Regenerated.
8738
4fda8867
NC
87392010-04-27 H.J. Lu <hongjiu.lu@intel.com>
8740 Nick Clifton <nickc@redhat.com>
8741
8742 * configure.ac (install_as_default): Define and set to false
8743 unless --enable-gold or --enable-gold=both/gold has been
8744 specified.
8745 * configure: Regenerate.
8746
8747 * Makefile.am (install-exec-local): Install the executable as
8748 'ld.gold'. If install_as_default is true then also install it as
8749 'ld'.
8750 * Makefile.in: Regenerated.
8751
bd288ea2
ILT
87522010-04-24 Ian Lance Taylor <iant@google.com>
8753
8754 * layout.cc (Layout::layout_reloc): In relocatable link don't
8755 combine reloc sections for grouped sections.
8756
ef38fd8a
ST
87572010-04-23 Sriraman Tallam <tmsriram@google.com>
8758
8759 * gc.h (gc_process_relocs): Pass information on relocs pointing to
8760 sections that are not ordinary to icf.
8761 * icf.cc (get_section_contents): Handle relocation pointing to section
8762 with no object or shndx information.
8763 * testsuite/Makefile.am: Remove icf_virtual_function_folding_test.sh
8764 * testsuite/Makefile.in: Regenerate.
8765 * testsuite/icf_virtual_function_folding_test.cc: Remove printf.
8766 * testsuite/icf_virtual_function_folding_test.sh: Delete file.
8767
f6973bdc
ILT
87682010-04-22 Ian Lance Taylor <iant@google.com>
8769
8770 * expression.cc (Expression::Expression_eval_info): Add
8771 result_alignment_pointer field.
8772 (Expression::eval_with_dot): Add result_alignment_pointer
8773 parameter. Change all callers.
8774 (Expression::eval_maybe_dot): Likewise.
8775 (class Binary_expression): Add alignment_pointer parameter to
8776 left_value and right_value. Change all callers.
8777 (BINARY_EXPRESSION): Set result alignment.
8778 (class Trinary_expression): Add alignment_pointer parameter to
8779 arg2_value and arg3_value. Change all callers.
8780 (Trinary_cond::value): Set result alignment.
8781 (Max_expression::value, Min_expression::value): Likewise.
8782 (Align_expression::value): Likewise.
8783 * script-sections.cc (class Sections_element): Add dot_alignment
8784 parameter to set_section_addresses virtual function. Update
8785 instantiations.
8786 (class Output_section_element): Likewise.
8787 (Script_sections::create_segments): Add dot_alignment parameter.
8788 Change all callers.
8789 (Script_sections::create_segments_from_phdrs_clause): Likewise.
8790 (Script_sections::set_phdrs_clause_addresses): Likewise.
8791 * script-sections.h: Update declarations.
8792 * script.h: Update declarations.
8793 * output.h (Output_segment::set_minimum_p_align): Don't decrease
8794 min_p_align.
8795 * testsuite/script_test_3.t: Set large alignment.
8796 * testsuite/script_test_3.sh: Make sure that at least one LOAD
8797 segment has expected alignment.
8798
9c9c98a5
NC
87992010-04-22 Nick Clifton <nickc@redhat.com>
8800
8801 * po/gold.pot: Updated by the Translation project.
8802 * po/vi.po: Updated Vietnamese translation.
8803
2253bfba
L
88042010-04-22 H.J. Lu <hongjiu.lu@intel.com>
8805
8806 * testsuite/Makefile.am (check_PROGRAMS): Add
8807 icf_virtual_function_folding_test.
8808 * testsuite/Makefile.in: Regenerated.
8809
85fdf906
AH
88102010-04-15 Andrew Haley <aph@redhat.com>
8811
8812 * options.h (merge_exidx_entries): New option.
8813 * arm.cc (class Arm_exidx_fixup): Add new arg, merge_exidx_entries.
8814 (class Arm_exidx_fixup::merge_exidx_entries_): New member.
8815 (Output_section::fix_exidx_coverage): Add new arg, merge_exidx_entries.
8816 (Target_arm::merge_exidx_entries): New function.
8817 (process_exidx_entry): Don't merge if merge_exidx_entries_ is false.
8818 (Arm_output_section::fix_exidx_coverage): Pass merge_exidx_entries
8819 to Arm_exidx_fixup constructor.
8820 Add new arg, merge_exidx_entries.
8821 (Target_arm::fix_exidx_coverage): pass merge_exidx_entries to
8822 Arm_output_section::fix_exidx_coverage.
8823
ce97fa81
ST
88242010-04-18 Sriraman Tallam <tmsriram@google.com>
8825
8826 * icf.cc (get_section_contents): Check for preemptible functions.
8827 Ignore addend when appropriate.
8828 * symtab.cc (should_add_dynsym_entry): Add new parameter. Check for
8829 section folded.
8830 (add_from_relobj): Check for section folded.
8831 (set_dynsym_indexes): Fix call to should_add_dynsym_entry.
8832 * symtab.h (should_add_dynsym_entry): Add new parameter.
8833 * target-reloc.h (scan_relocs): Check for section folded.
8834 * x86_64.cc (Target_x86_64::Scan::possible_function_pointer_reloc):
8835 Check reloc types for function pointers in shared objects.
8836 * testsuite/Makefile.am (icf_virtual_function_folding_test): New test
8837 case.
8838 (icf_preemptible_functions_test): New test case.
8839 (icf_string_merge_test): New test case.
8840 * testsuite.Makefile.in: Regenerate.
8841 * testsuite/icf_safe_so_test.sh: Change to not fold foo_glob and
8842 bar_glob. Refactor code.
8843 * testsuite/icf_preemptible_functions_test.cc: New file.
8844 * testsuite/icf_preemptible_functions_test.sh: New file.
8845 * testsuite/icf_string_merge_test.cc: New file.
8846 * testsuite/icf_string_merge_test.sh: New file.
8847 * testsuite/icf_virtual_function_folding_test.cc: New file.
8848 * testsuite/icf_virtual_function_folding_test.sh: New file.
8849
04ceb17c
DK
88502010-04-14 Doug Kwan <dougkwan@google.com>
8851
8852 * arm.cc (Arm_output_section::fix_exidx_coverage): Mark object
8853 for local symbol recounting if we remove a section due to ICF.
8854 * gold.cc (queue_middle_gc_tasks): Create a dummy blocker if
8855 there are no regular objects in input.
8856
153e7da4
DK
88572010-04-13 Doug Kwan <dougkwan@google.com>
8858
8859 * arm.cc (Arm_input_section::set_final_data_size): Compute
8860 accurate final data size instead of using current data size.
8861
4dbd9faf
DK
88622010-04-09 Doug Kwan <dougkwan@google.com>
8863
8864 * layout.cc (Layout::choose_output_section): Handle script section
8865 types.
8866 (Layout::make_output_section_for_script): Add section type parameter.
8867 Handle script section types.
8868 * layout.h (Layout::make_output_section_for_script): Add section
8869 type parameter.
8870 * output.cc (Output_section::Output_section): Initialize data member
8871 is_noload_.
8872 (Output_section::do_reset_address_and_file_offset): Do not set address
8873 to 0 if section is a NOLOAD section.
8874 * output.h (Output_section::is_noload): New method.
8875 (Output_section::set_is_noload): Ditto.
8876 (Output_section::is_noload_): New data member.
8877 * script-c.h (Script_section_type): New enum type.
8878 (struct Parser_output_section_header): Add new file section_type.
8879 * script-sections.cc (Sections_element::output_section_name): Add
8880 parameter for returning script section type.
8881 (Output_section_definition::output_section_name): Ditto.
8882 (Output_section_definition::section_type)P; New method.
8883 (Output_section_definiton::script_section_type_name): Ditto.
8884 (Output_section_definition::script_section_type_): New data member.
8885 (Output_section_definition::Output_section_definition): Initialize
8886 data member Output_section_definition::script_section_type_.
8887 (Output_section_definition::create_sections): Pass script section type
8888 to Layout::make_output_section_for_script.
8889 (Output_section_definition::output_section_name): Return script
8890 section type to caller.
8891 (Output_section_definition::set_section_address): Do not advance
8892 dot value and load address if section type is NOLOAD. Set address
8893 of NOLOAD sections regardless of section flags.
8894 (Output_section_definition::print): Print section type if it is
8895 not SCRIPT_SECTION_TYPE_NONE.
8896 (Output_section_definition::section_type): New method.
8897 (Output_section_definition::script_section_type_name): Ditto.
8898 (Script_sections::output_section_name): Add new parameter
8899 PSECTION_TYPE for returning script section type. Pass it to
8900 section elements. Handle discard sections.
8901 (Sort_output_sections::operator()): Handle NOLOAD sections.
8902 * script-sections.h (Script_sections::Section_type): New enum type.
2e702c99 8903 (Script_sections::output_section_name): Add a new parameter for
4dbd9faf
DK
8904 returning script section type.
8905 * script.cc (script_keyword_parsecodes): Add keywords COPY, DSECT,
8906 INFO and NOLOAD.
8907 * yyscript.y (union): Add new field SECTION_TYPE.
8908 (COPY, DSECT, INFO, NOLOAD): New tokens.
8909 (opt_address_and_section_type): Change type to output_section_header.
8910 (section_type): New non-terminal
8911 (section_header): Handle section type.
2253bfba 8912 (opt_address_and_section_type): Return section type value.
4dbd9faf 8913
721ea635
L
89142010-04-09 H.J. Lu <hongjiu.lu@intel.com>
8915
8916 * testsuite/plugin_common_test_1.c (foo): Add prototype.
8917 * testsuite/plugin_common_test_2.c (foo): Likewise.
8918
6bf924b0
DK
89192010-04-08 Doug Kwan <dougkwan@google.com>
8920
8921 * merge.cc (Output_merge_data::set_final_data_size): Handle empty
8922 Output_merge_data.
8923 * output.cc (Output_section::add_merge_input_section): Simplify
8924 code and return status of Output_merge_base::add_input_section.
e1df38aa 8925 Update merge section map only if Output_merge_base::add_input_section
6bf924b0
DK
8926 returns true.
8927
24af6f92
DK
89282010-04-07 Doug Kwan <dougkwan@google.com>
8929
8930 * arm.cc (Arm_relobj::scan_section_for_cortex_a8_erratum): Warn
8931 if section is marked as containing instructions but has no mapping
8932 symbols.
8933 (Arm_relobj::do_count_local_symbols): Call adjust_sym_shndx to get
8934 correct section index.
8935 (Arm_relobj::find_linked_text_section): Ditto.
8936
00698fc5
CC
89372010-04-07 Cary Coutant <ccoutant@google.com>
8938
8939 * archive.cc (include_member): Destroy Read_symbols_data object before
8940 releasing file.
8941 * object.cc (Read_symbols_data::~Read_symbols_data) New destructor.
8942 * object.h (Read_symbols_data::Read_symbols_data) New constructor.
8943 (Read_symbols_data::~Read_symbols_data) New destructor.
8944 (Section_relocs::Section_relocs) New constructor.
8945 (Section_relocs::~Section_relocs) New destructor.
8946 (Read_relocs_data::Read_relocs_data) New constructor.
8947 (Read_relocs_data::~Read_relocs_data) New destructor.
8948 * testsuite/binary_unittest.cc (Sized_binary_test): Set sd member
8949 pointers to NULL after deleting.
8950
7296d933
DK
89512010-04-07 Doug Kwan <dougkwan@google.com>
8952
8953 * arm.cc: Replace "endianity" with "endianness" in comments.
8954 (Arm_exidx_cantunwind): Ditto.
8955 (Arm_relobj::Arm_relobj): Initialize merge_flags_and_attribures.
8956 (Arm_relobj::merge_flags_and_attributes): New method.
8957 (Arm_relobj::merge_flags_and_attributes_): New data member.
8958 (Arm_exidx_cantunwind::do_fixed_endian_write): Fix formatting.
8959 (Arm_relobj::scan_sections_for_stubs): Ditto.
8960 (Arm_relobj::do_read_symbols): Check to see if we really want to
8961 merge processor-specific flags and attributes. Exit early if
8962 an object is empty except for section names and the undefined symbol.
8963 (Target_arm::do_finalize_sections): Move check for ELF format to
8964 Arm_relobj::do_read_symbols. Merge processor specific flags and
8965 attributes from a regular object only when we have determined that
8966 it is aapropriate. Do not create an .ARM.attributes section in
8967 output if there is no regular input object.
8968 (Target_arm::merge_processor_specific_flags): Check
8969 --warn-mismatch before printing any error.
8970 (Target_arm::merge_object_attributes): Ditto.
8971 * gold.cc (queue_middle_tasks): Handle the case in which there is
8972 no regular object in input.
8973 * options.cc (General_options::parse_EB): New method.
8974 (General_options::parse_EL): Same.
8975 (General_options::General_options): Initialize endianness_.
8976 * options.h (-EB, -EL, -no-pipeline-knowledge, -p, --warn-mismatch):
8977 New options.
8978 (General_options::Endianness): New enum.
8979 (General_options::endianness): New method.
8980 (General_options::endianness_): New data member.
8981 * parameters.cc (Parameters::set_options): Check target endianness.
8982 (Parameters::set_target_once): Ditto.
8983 (Parameters::check_target_endianness): New method.
8984 (parameters_force_valid_target): If either -EL or -EB is specified,
8985 use it to define endianness of default target.
8986 * parameters.h (Parameters::check_target_endianness): New method
8987 declaration.
8988 * target.h (class Target): Change "endianity" to "endianness"
8989 in comments.
8990
efc8d4f2
RW
89912010-04-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
8992
8993 * configure.ac (AM_INIT_AUTOMAKE): Add option no-dist.
8994 * configure: Regenerate.
8995 * Makefile.in: Regenerate.
8996 * testsuite/Makefile.in: Regenerate.
8997
be234d88
CC
89982010-04-06 Cary Coutant <ccoutant@google.com>
8999
9000 gcc PR lto/42757
9001 * plugin.cc (Pluginobj::get_symbol_resolution_info): Check for
9002 prevailing definitions of common symbols.
9003 * testsuite/plugin_test_6.sh: New test case.
9004 * testsuite/plugin_common_test_1.c: New test case.
9005 * testsuite/plugin_common_test_2.c: New test case.
9006 * testsuite/Makefile.am (plugin_test_6): New test case.
9007 * testsuite/Makefile.in: Regenerate.
9008
bd32c6bd
NC
90092010-04-06 Nick Clifton <nickc@redhat.com>
9010
9011 * po/vi.po: New Vietnamese translation.
9012
323c532f
DK
90132010-03-30 Doug Kwan <dougkwan@google.com>
9014
9015 * arm.cc (Target_arm::using_thumb_only): Handle v6-M
9016
4fcd97eb
DK
90172010-03-25 Doug Kwan <dougkwan@google.com>
9018
9019 * gold/arm.cc (Arm_exidx_fixup::update_offset_map): Rearrange code
9020 to avoid a conversion warning on a 32-bit host.
9021
4ebf39db
ILT
90222010-03-24 Ian Lance Taylor <iant@google.com>
9023
9024 * testsuite/script_test_3.t: Add a TLS segment.
9025 * testsuite/Makefile.am (check_PROGRAMS): Add
9026 tls_phdrs_script_test.
9027 (tls_phdrs_script_test_SOURCES): Define.
9028 (tls_phdrs_script_test_DEPENDENCIES): Define.
9029 (tls_phdrs_script_test_LDFLAGS): Define.
9030 (tls_phdrs_script_test_LDADD): Define.
9031 * testsuite/Makefile.in: Rebuild.
9032
4a599bdd
CC
90332010-03-23 Cary Coutant <ccoutant@google.com>
9034
9035 * fileread.cc (find_or_make_view): Fix comment.
9036
6c93b22c
ILT
90372010-03-23 Ian Lance Taylor <iant@google.com>
9038
9039 * script-sections.cc (class Orphan_section_placement): Define
9040 PLACE_TLS and PLACE_TLS_BSS.
9041 (Orphan_section_placement::Orphan_section_placement): Initialize
9042 new places.
9043 (Orphan_section_placement::find_place): Handle SHF_TLS sections.
9044 * testsuite/Makefile.am (check_PROGRAMS): Add tls_script_test.
9045 (tls_script_test_SOURCES): Define.
9046 (tls_script_test_DEPENDENCIES): Define.
9047 (tls_script_test_LDFLAGS): Define.
9048 (tls_script_test_LDADD): Define.
9049 * testsuite/Makefile.in: Rebuild.
9050
a2c7281b
DK
90512010-03-22 Doug Kwan <dougkwan@google.com>
9052
9053 * arm.cc (Arm_relocate_functions::abs8,
9054 Arm_relocate_functions::abs16): Use correct check for overflow
9055 specified in the ARM ELF specs.
9056 (Arm_relocate_functions): thumb_branch_common. Handle bit 1 of branch
9057 target of a BLX instruction specially.
9058 (Reloc_stub::stub_type_for_reloc): Ditto.
9059 (Relocate::relocate): Use symbolic names instead of numeric relocation
9060 codes to report error.
9061 (Target_arm::do_relox): Reduce default stub-group size for Cortex-A8
9062 workaround.
9063 * testsuite/Makefile.am (check_DATA): add thumb_blx_in_range.stdout,
9064 thumb_blx_out_of_range.stdout, thumb2_blx_in_range.stdout and
9065 thumb2_blx_out_of_range.stdout
9066 (thumb_bl_out_of_range, thumb_bl_out_of_range.o,
9067 thumb2_bl_out_of_range, thumb2_bl_out_of_range.o): Fix dependenices.
9068 (thumb_blx_in_range.stdout, thumb_blx_in_range, thumb_blx_in_range.o,
9069 thumb_blx_out_of_range.stdout, thumb_blx_out_of_range,
9070 thumb_blx_out_of_range.o, thumb2_blx_in_range.stdout,
9071 thumb2_blx_in_range, thumb2_blx_in_range.o,
9072 thumb2_blx_out_of_range.stdout, thumb2_blx_out_of_range,
9073 thumb2_blx_out_of_range.o): New rules.
2e702c99 9074 (MOSTLYCLEANFILES): Add thumb_blx_in_range, thumb_blx_out_of_range,
a2c7281b
DK
9075 thumb2_blx_in_range and thumb2_blx_out_of_range.
9076 * testsuite/Makefile.in: Regenerate.
9077 * arm_branch_in_range.sh: Add tests for THUMB BLX.
9078 * testsuite/thumb_blx_in_range.s: New file.
9079 * testsuite/thumb_blx_out_of_range.s: New file.
9080
b0193076
RÁE
90812010-03-22 Rafael Espindola <espindola@google.com>
9082
9083 * archive.cc (Should_include): Move to archive.h.
9084 (should_include_member): Make it a member of Archive.
9085 (Lib_group): New.
9086 (Add_lib_group_symbols): New.
9087 * archive.h: Include options.h.
9088 (Archive_member): Moved from Archive.
9089 (Should_include): Moved from archive.cc.
9090 (Lib_group): New.
9091 (Add_lib_group_symbols): New.
9092 * dynobj.cc (do_should_include_member): New.
9093 * dynobj.h (do_should_include_member): New.
9094 * gold.cc (queue_initial_tasks): Update call to queue.
9095 * main.cc (main): Print lib group stats.
9096 * object.cc (do_should_include_member): New.
9097 * object.h: Include archive.h.
9098 (Object::should_include_member): New.
9099 (Object::do_should_include_member): New.
9100 (Sized_relobj::do_should_include_member): New.
9101 * options.cc (General_options::parse_start_lib): New.
9102 (General_options::parse_end_lib): New.
9103 (Input_arguments::add_file): Handle lib groups.
9104 (Input_arguments::start_group): Check we are not in a lib.
9105 (Input_arguments::start_lib): New.
9106 (Input_arguments::end_lib): New.
9107 * options.h (General_options): Add start_lib and end_lib.
9108 (Input_argument::lib_): New.
9109 (Input_argument::lib): New.
9110 (Input_argument::is_lib): New.
9111 (Input_file_lib): New.
9112 (Input_arguments::in_lib_): New.
9113 (Input_arguments::in_lib): New.
9114 (Input_arguments::start_lib): New.
9115 (Input_arguments::end_lib_): New.
9116 * plugin.cc (Pluginobj::get_symbol_resolution_info): Mark symbols
9117 in unused members as preempted.
9118 (Sized_pluginobj::do_should_include_member): New.
9119 * plugin.h (Sized_pluginobj::do_should_include_member): New.
9120 * readsyms.cc (Read_symbols::locks): If we are just reading a member,
9121 return the blocker.
9122 (Read_symbols::do_whole_lib_group): New.
9123 (Read_symbols::do_lib_group): New.
9124 (Read_symbols::do_read_symbols): Handle lib groups.
9125 (Read_symbols::get_name): Handle lib groups.
9126 * readsyms.h (Read_symbols): Add an archive member pointer.
9127 (Read_symbols::do_whole_lib_group): New.
9128 (Read_symbols::do_lib_group): New.
9129 (Read_symbols::member_): New.
9130 * script.cc (read_input_script): Update call to queue_soon.
9131
d099120c
DK
91322010-03-19 Doug Kwan <dougkwan@google.com>
9133
9134 * arm.cc (Stub_table::Stub_table): Initialize new data members
9135 Stub_table::reloc_stubs_size_ and Stub_table::reloc_stubs_addralign_.
9136 (Stub_table::add_reloc_stub): Assign stub offset and update
9137 Stub_table::reloc_stubs_size_ and Stub_table::reloc_stubs_addralign_.
9138 (Stub_table::reloc_stubs_size_, Stub_table::reloc_stubs_addralign_):
9139 New data members.
2e702c99 9140 (Stub_table::update_data_size_and_addralign): Use
d099120c
DK
9141 Stub_table::reloc_stubs_size_ and Stub_table::reloc_stubs_addralign_
9142 instead of going over all reloc stubs.
2e702c99 9143 (Stub_table::finalize_stubs): Do not assign reloc stub offsets.
d099120c
DK
9144 * stringpool.cc (Stringpool_template::Stringpool_template): Initialize
9145 Stringpool_template::offset_ to size of Stringpool_char.
2e702c99 9146 (Stringpool_template::new_key_offset): Remove code to initialize
d099120c
DK
9147 Stringpool_template::offset_.
9148 * stringpool.h (Stringpool_template::set_no_zero_null): Set
9149 Stringpool_template::offset_ to zero.
9150
1aa37384
DK
91512010-03-15 Doug Kwan <dougkwan@google.com>
9152
9153 * stringpool.cc (Stringpool_template::Stringpool_template): Initialize
9154 offset_.
9155 (Stringpool_template::new_key_offset): New method.
9156 (Stringpool_template::add_string): Assign offsets when adding new
9157 strings.
9158 (Stringpool_template::set_string_offsets): Do not set string offsets
9159 when not optimizing.
9160 * stringpool.h (Chunked_vector::Chunked_vector): Initialize data
9161 member size_.
2e702c99
RM
9162 (Chunked_vector::clear): Clear size_.
9163 (Chunked_vector::reserve): Call reserve method of all Element_vectors.
9164 (Chunked_vector::size): Return size_.
9165 (Chunked_vector::push_back): Use size_ to find insert position.
e1df38aa 9166 (Chunked_vector::size_): New data member.
1aa37384
DK
9167 (Stringpool_template::set_no_zero_null): Assert string set is empty.
9168 (Stringpool_template::new_key_offset): New method declaration.
9169 (Stringpool_template::offset_): New data member.
9170
b672b057
RÁE
91712010-03-15 Rafael Espindola <espindola@google.com>
9172
9173 * readsyms.cc (Read_symbols::do_read_symbols): Update calls to
9174 Add_symbols' constructor.
9175 * readsyms.h (Add_symbols): Remove the input_group member.
9176
b6848d3c
ILT
91772010-03-10 Ian Lance Taylor <iant@google.com>
9178
9179 * reloc.cc (Sized_relobj::split_stack_adjust_reltype): Call the
9180 target to ask whether a reference to a symbol requires a stack
9181 split.
9182 * target.h (Target::is_call_to_non_split): New function.
9183 (Target::do_is_call_to_non_split): Declare virtual function.
9184 * target.cc: Include "symtab.h".
9185 (Target::do_is_call_to_non_split): New function.
9186 * i386.cc (Target_i386::do_is_call_to_non_split): New function.
9187
a2a5469e
CC
91882010-03-10 Cary Coutant <ccoutant@google.com>
9189
9190 * fileread.cc (File_read::~File_read): Don't delete whole_file_view_.
9191 (File_read::open[1]): Remove initial mapping of whole_file_view_.
9192 (File_read::open[2]): Add whole_file_view_ to list of views.
9193 (File_read::make_view): Remove test of whole_file_view_.
9194 (File_read::find_or_make_view): Create whole_file_view_ if
9195 necessary.
9196 (File_read::clear_views): Replace bool parameter with enum;
9197 adjust all callers. Don't delete views with permanent data;
9198 do delete cached views and views from archives if
9199 --no-keep-files-mapped is set. Set whole_file_view_ to NULL
9200 if clearing the corresponding view.
9201 * fileread.h (File_read::Clear_views_mode): New enum.
9202 (File_read::View::is_permanent_view): New method.
9203 (File_read::clear_views): Replace bool parameter
9204 with enum; adjust all callers.
9205 * options.h (General_options): Change keep_files_mapped option;
9206 add map_whole_files.
9207 * readsyms.cc (Add_symbols::run): Delete sd_ object before
9208 releasing the file.
9209 * reloc.cc (Scan_relocs::run): Delete rd_ object before releasing
9210 the file.
9211
8861f32b
DM
92122010-03-10 David S. Miller <davem@davemloft.net>
9213
9214 * sparc.cc (Target_sparc::Scan::local): Accept R_SPARC_WPLT30.
9215
d62d0f5f
ST
92162010-03-09 Sriraman Tallam <tmsriram@google.com>
9217
9218 * icf.cc (get_section_contents): Add '@' marker after processing the
9219 merge reloc.
9220
9177756d
DK
92212010-03-08 Doug Kwan <dougkwan@google.com>
9222
9223 * gold/arm.cc (Arm_exidx_fixup::update_offset_map): Fix build breakage
9224 due to a conversion warning.
9225 (Arm_relobj::update_output_local_symbol_count): Check for local
9226 symbol with unset output index.
9227
9e9e071b
ILT
92282010-03-05 Ian Lance Taylor <iant@google.com>
9229
9230 * options.h (class General_options): Add --spare-dynamic-tags.
9231 * output.cc (Output_data_dynamic::set_final_data_size): Implement
9232 --spare-dynamic-tags.
9233
a81ee015
ILT
92342010-03-05 Ian Lance Taylor <iant@google.com>
9235
9236 * incremental.cc: Include "libiberty.h".
9237
44ec90b9
RO
92382010-03-05 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
9239
9240 * dynobj.h (Verdef::Verdef): Add is_info arg, is_info member
9241 function, is_info_ member.
9242 * dynobj.cc (Verdef::write): Set VER_FLG_INFO if this->is_info_.
9243 (Versions::Versions): Update caller.
9244 (Versions::define_base_version): Likewise.
9245 (Versions::add_def): Likewise.
9246
0897ed3b
ST
92472010-03-03 Sriraman Tallam <tmsriram@google.com>
9248
9249 * i386.cc (Target_i386::can_check_for_function_pointers): New function.
9250 (Scan::possible_function_pointer_reloc): New function.
9251 (Scan::local_reloc_may_be_function_pointer): Change to call
9252 possible_function_pointer_reloc.
9253 (Scan::global_reloc_may_be_function_pointer): Ditto.
9254 * icf.h (Icf::check_section_for_function_pointers): Change to reject
9255 relocations in ".data.rel.ro._ZTV" section.
9256 * testsuite/icf_safe_so_test.sh: Change to pass i386.
9257 * testsuite/icf_safe_so_test.cc: Ditto.
9258 * testsuite/icf_safe_test.cc: Ditto.
9259 * testsuite/icf_safe_test.sh: Ditto.
9260
d3bbad62
ILT
92612010-03-03 Viktor Kutuzov <vkutuzov@accesssoftek.com>
9262 Ian Lance Taylor <iant@google.com>
9263
9264 * target-reloc.h (relocate_section): Check the symbol table index
9265 for -1U before setting the local symbol index.
9266 (scan_relocatable_relocs): If copying the relocation, record that
9267 the local symbol is required.
9268 * object.h (Symbol_value::is_output_symtab_index_set): New
9269 function.
9270 (Symbol_value::may_be_discarded_from_output_symtab): New
9271 function.
9272 (Symbol_value::has_output_symtab_entry): New function.
9273 (Symbol_value::needs_output_symtab_entry): Remove.
9274 (Symbol_value::output_symtab_index): Make sure the symbol index is
9275 set.
9276 (Symbol_value::set_output_symtab_index): Make sure the symbol
9277 index is not set. Make sure the new index is valid.
9278 (Symbol_value::set_must_have_output_symtab_entry): New function.
9279 (Symbol_value::has_output_dynsym_entry): New function.
9280 (Symbol_value::set_output_dynsym_index): Make sure the new index
9281 is valid.
9282 (Sized_relobj::set_must_have_output_symtab_entry): New function.
9283 * object.cc (Sized_relobj::do_count_local_symbols): Only discard a
9284 local symbol if permitted.
9285 (Sized_relobj::do_finalize_local_symbols): Call
9286 is_output_symtab_index_set rather than needs_output_symtab_entry.
9287 (Sized_relobj::write_local_symbols): Call has_output_symtab_entry
9288 rather than needs_output_symtab_entry. Call
9289 has_output_dynsym_entry rather than needs_output_dynsym_entry.
9290 * arm.cc (Arm_relobj::update_output_local_symbol_count): Call
9291 is_output_symtab_index_set rather than needs_output_symtab_entry.
9292 * testsuite/discard_locals_relocatable_test.c: New file.
9293 * testsuite/discard_locals_test.sh: Test -r.
9294 * testsuite/Makefile.am (check_DATA): Add
9295 discard_locals_relocatable_test1.syms,
9296 discard_local_relocatable_test2.syms.
9297 (MOSTLYCLEANFILES): Likewise. Also add
9298 discard_locals_relocatable_test1.lout and
9299 discard_locals_relocatable_test2.out.
9300 (discard_locals_relocatable_test1.syms): New target.
9301 (discard_locals_relocatable_test.o): New target.
9302 (discard_locals_relocatable_test1.out): New target.
9303 (discard_locals_relocatable_test2.syms): New target.
9304 (discard_locals_relocatable_test2.out): New target.
9305 (various): Add missing ../ld-new dependencies.
9306 * testsuite/Makefile.in: Rebuild.
9307
7e8ccf26
NC
93082010-03-03 Nick Clifton <nickc@redhat.com>
9309
9310 * po/fi.po: New Finnish translation.
9311
2a0ff005
DK
93122010-03-01 Doug Kwan <dougkwan@google.com>
9313
9314 * layout.cc (Layout::Layout): Force section types of .init_array*,
9315 .preinit_array* and .fini_array* sections.
9316 * output.cc (Output_section::Input_section_sort_entry::has_priority):
9317 Fix check of return value of std::string::find.().
9318 (Output_section::Input_section_sort_compare::operator()): Remove
9319 comment about .init_array.
9320 (Output_section::Input_section_sort_init_fini_compare::operator()):
9321 New method.
9322 (Output_section::sort_attached_input_sections): Handle .init_array
9323 and .fini_array specially.
9324 * output.h (Output_section::Inut_section_sort_compare): Update
9325 comment.
9326 (Output_section::Input_section_sort_init_fini_compare): New struct.
9327
c3e4ae29
DK
93282010-02-26 Doug Kwan <dougkwan@google.com>
9329
9330 * arm.cc (Target_arm::Relocate::reloc_is_non_pic): Treat
9331 R_ARM_PREL31 and R_ARM_SBREL31 as position independent.
9332 * testsuite/debug_msg.sh: Avoid matching source line number for
9333 use of global variable undef_int.
9334
2fd9ae7a
DK
93352010-02-26 Doug Kwan <dougkwan@google.com>
9336
9337 * arm.cc (Target_arm::scan_reloc_for_stub): Move code handling
9338 R_ARM_V4BX to Target_arm::scan_reloc_section_for_stubs.
9339 (Target_arm::scan_reloc_section_for_stubs): Instead of calling
9340 scan_reloc_for_stub, do all processing of R_ARM_V4BX here.
9341 * options.cc (General_options::General_options): Initialize member
9342 fix_v4bx_.
9343 * testsuite/Makefile.am (check_SCRIPTS): Add arm_fix_v4bx.sh
9344 (check_DATA): Add arm_fix_v4bx.stdout, arm_fix_v4bx_interworking.stdout
9345 and rm_no_fix_v4bx.stdout
9346 (arm_fix_v4bx.stdout, arm_fix_v4bx, arm_fix_v4bx.o,
9347 arm_fix_v4bx_interworking.stdout, arm_fix_v4bx_interworking,
9348 arm_no_fix_v4bx.stdout, arm_no_fix_v4bx): New make rules.
9349 (MOSTLYCLEANFILES): Add arm_fix_v4bx, arm_fix_v4bx_interworking
9350 and arm_no_fix_v4bx.
9351 * Makefile.in: Regenerate.
9352 * testsuite/arm_fix_v4bx.s: New file.
9353 * testsuite/arm_fix_v4bx.sh: Ditto.
9354
67ec7d0b
DK
93552010-02-24 Doug Kwan <dougkwan@google.com>
9356
9357 * arm.cc (Target_arm::got_section): Make the .got section the first
9358 non RELRO section in the data segment.
9359 * testsuite/script_test_5.sh: Fix match patterns to avoid matching
9360 suffixes of section names.
9361
10165461
DK
93622010-02-24 Doug Kwan <dougkwan@google.com>
9363
9364 * arm.cc (Target_arm::do_finalize_sections): Skip processor specific
9365 flags and attributes merging if an input file is a binary file.
9366 * fileread.cc (Input_file::open): Record format of original file.
9367 * fileread.h (Input_file::Format): New enum type.
2e702c99 9368 (Input_file::Input_file): Initialize data member format_.
10165461
DK
9369 (Input_file::format): New method definition.
9370 (Input_file::format_):: New data member.
9371
4a54abbb
DK
93722010-02-24 Doug Kwan <dougkwan@google.com>
9373
9374 * arm.cc (Arm_output_data_got): New class.
9375 (ARM_TCB_SIZE): New constant
9376 (Target_arm): Use Arm_output_data_got instead of Output_data_got.
9377 (Arm_output_section::fix_exidx_coverage): Add a parameter for layout.
9378 If user uses a script with a SECTIONS clause, issue only a warning
9379 for a misplaced EXIDX input section. Otherwise, issue an error.
2e702c99 9380 (Arm_relobj::do_gc_process_relocs): Exit early if we are not doing
4a54abbb
DK
9381 garbage collection.
9382 (Target_arm::got_mode_index_entry): Handle static linking.
9383 (Target_arm::Scan::local): Ditto.
9384 (Target_arm::Scan::global): Ditto.
9385 (Target_arm::Relocate::relocate_tls): Handle static linking. Fix
9386 all incorrectly implemented relocations.
e1df38aa 9387 (Target_arm::fix_exidx_coverage): Pass layout to
4a54abbb
DK
9388 Arm_output_section::fix_exidx_coverage.
9389 * layout.cc (Layout::section_name_mapping): Remove trailing dots
9390 from ".ARM.exidx." and ".ARM.extab.".
9391
ca419a6f
ILT
93922010-02-23 Viktor Kutuzov <vkutuzov@accesssoftek.com>
9393
9394 * arm.cc (Target_arm::do_finalize_sections): Create attribute
9395 section if it does not already exist.
9396 * attributes.cc (Attributes_section_data::Attributes_section_data):
9397 Don't crash if size is zero.
9398
135b9c78
ILT
93992010-02-23 Viktor Kutuzov <vkutuzov@accesssoftek.com>
9400 Ian Lance Taylor <iant@google.com>
9401
9402 * gold.cc (queue_middle_tasks): If no input files were opened,
9403 exit.
9404 * workqueue.h (Task_function::Task_function): Assert that there is
9405 a blocker.
9406
bb0bfe4f
DK
94072010-02-22 Doug Kwan <dougkwan@google.com>
9408
9409 * gold-threads.h (Once::~Once): Explicitly define virtual destructor.
9410 * icf.cc (get_section_contents): Cast snprintf arguments to long long
9411 types to avoid warnings due to different uint64_t implementations
9412 on different hosts.
9413
2a2b6d42
DK
94142010-02-21 Doug Kwan <dougkwan@google.com>
9415
9416 * arm.cc (Arm_relocate_functions::arm_branch_common): Fix bug in
9417 handling of the maximum backward branch offset.
2e702c99 9418 (Arm_relocate_functions::thumb_branch_common): Ditto.
2a2b6d42
DK
9419 * testsuite/Makefile.am (check_SCRIPTS): Add arm_branch_in_range.sh.
9420 (check_DATA): Add arm_bl_in_range.stdout, arm_bl_out_of_range.stdout
e1df38aa 9421 thumb_bl_in_range.stdout, thumb_bl_out_of_range.stdout,
2a2b6d42
DK
9422 thumb2_bl_in_range.stdout and thumb2_bl_out_of_range.stdout.
9423 (arm_bl_in_range.stdout, arm_bl_in_range, arm_bl_in_range.o,
9424 arm_bl_out_of_range.stdout, arm_bl_out_of_range,
9425 arm_bl_out_of_range.o, thumb_bl_in_range.stdout, thumb_bl_in_range,
9426 thumb_bl_in_range.o, thumb_bl_out_of_range.stdout,
9427 thumb_bl_out_of_range thumb_bl_out_of_range.o,
9428 thumb2_bl_in_range.stdout, thumb2_bl_in_range, thumb2_bl_in_range.o
9429 thumb2_bl_out_of_range.stdout, thumb2_bl_out_of_range,
9430 thumb2_bl_out_of_range.o): New rules.
9431 (MOSTLYCLEANFILES): Add arm_bl_in_range, arm_bl_out_of_range,
9432 thumb_bl_in_range, thumb_bl_out_of_range, thumb2_bl_in_range and
9433 thumb2_bl_out_of_range
9434 * testsuite/Makefile.in: Regenerate.
9435 * testsuite/arm_bl_in_range.s: New file.
9436 * testsuite/arm_bl_out_of_range.s: Ditto.
9437 * testsuite/arm_branch_in_range.sh: Ditto.
9438 * testsuite/arm_branch_range.t: Ditto.
9439 * testsuite/thumb2_branch_range.t: Ditto.
9440 * testsuite/thumb_bl_in_range.s: Ditto.
9441 * testsuite/thumb_bl_out_of_range.s: Ditto.
9442 * testsuite/thumb_branch_range.t: Ditto.
9443
b487ad64
ST
94442010-02-20 Sriraman Tallam <tmsriram@google.com>
9445
9446 * gc.h (gc_process_relocs): Change vectors to point to the new list.
9447 Add reloc offset information.
9448 * icf.cc (get_section_contents): Change iterators to point to the new
9449 vectors. Add reloc offset information to the contents.
9450 * icf.h (Icf::Sections_reachable_info): New typedef.
9451 (Icf::Sections_reachable_list): New typedef.
9452 (Icf::Offset_info): New typedef.
9453 (Icf::Reloc_info): New struct typedef.
9454 (Icf::Reloc_info_list): New typedef.
9455 (Icf::symbol_reloc_list): Delete method.
9456 (Icf::addend_reloc_list): Delete method.
9457 (Icf::section_reloc_list): Delete method.
9458 (Icf::reloc_info_list): New method.
9459 (Icf::reloc_info_list_): New member.
9460
f96accdf
DK
94612010-02-19 Doug Kwan <dougkwan@google.com>
9462
9463 * arm-reloc.def: Mark R_ARM_TLS_GD32, R_ARM_TLS_LDM32,
9464 R_ARM_TLS_LDO32, R_ARM_TLS_IE32 and R_ARM_TLS_LE32 are implemented.
9465 * arm.cc (Arm_relocation_functions): New forward declaration.
9466 (Target_arm::Target_arm): Initialize new data members
9467 got_mod_index_offset_ and tls_base_symbol_defined_.
9468 (Target_arm::Relocate::relocate_tls): New method.
9469 (Target_arm::optimize_tls_reloc, Target_arm::define_tls_base_symbol,
9470 Target_arm::got_mod_index_entry, Target_arm::rel_tls_desc_section):
9471 New methods.
2e702c99 9472 (Target_arm::Got_type): Add GOT_TYPE_TLS_NOFFSET, GOT_TYPE_OFFSET,
f96accdf
DK
9473 GOT_TYPE_TLS_PAIR and GOT_TYPE_TLS_DESC.
9474 (Target_arm::got_mod_index_offset_,
9475 Target_arm::tls_base_symbol_defined_): New data members.
9476 (Target_arm::Scan::local, Target::Scan::global,
9477 Target_arm::Relocate::relocate): Handle 32-bit initial TLS
9478 relocations.
9479
c8761b9a
DK
94802010-02-18 Doug Kwan <dougkwan@google.com>
9481
9482 * arm.cc (Arm_relobj::find_linked_text_section): New method.
9483 (Arm_relobj::make_exidx_input_section): Pass section index of linked
9484 text section as a parameter becuase some broken tools may not set
9485 the link in section header.
9486 (Target_arm::has_got_section): New method.
9487 (Target_arm::scan_section_for_cortex_a8_stubs): Treat an input section
9488 without any mapping symbol as data only. Remove warning.
9489 (Arm_relobj::do_read_synbols): If an EXIDX input section has no
9490 link in its section header, try to discover the link by inspecting the
9491 REL31 relocation at the beginning of the section.
9492 (Target_arm::Scan::check_non_pic): Report name of offending relocation
9493 in error message.
9494 (Target_arm::Scan::global): Treat any reference to the symbol
9495 _GLOBAL_OFFSET_TABLE_ as a GOT access.
9496
21bb3914
ST
94972010-02-12 Sriraman Tallam <tmsriram@google.com>
9498
9499 * arm.cc (Scan::local_reloc_may_be_function_pointer): New function.
9500 (Scan::global_reloc_may_be_function_pointer): New function.
9501 * sparc.cc (Scan::local_reloc_may_be_function_pointer): New function.
9502 (Scan::global_reloc_may_be_function_pointer): New function.
9503 * powerpc.cc (Scan::local_reloc_may_be_function_pointer): New function.
9504 (Scan::global_reloc_may_be_function_pointer): New function.
9505 * i386.cc (Scan::local_reloc_may_be_function_pointer): New function.
9506 (Scan::global_reloc_may_be_function_pointer): New function.
9507 * x86_64.cc (Scan::local_reloc_may_be_function_pointer): New function.
9508 (Scan::global_reloc_may_be_function_pointer): New function.
9509 (Scan::possible_function_pointer_reloc): New function.
9510 (Target_x86_64::can_check_for_function_pointers): New function.
9511 * gc.h (gc_process_relocs): Scan relocation types to determine if
9512 function pointers were taken for targets that support it.
9513 * icf.cc (Icf::find_identical_sections): Include functions for
9514 folding in safe ICF whose pointer is not taken.
9515 * icf.h (Secn_fptr_taken_set): New typedef.
9516 (fptr_section_id_): New member.
9517 (section_has_function_pointers): New function.
9518 (set_section_has_function_pointers): New function.
9519 (check_section_for_function_pointers): New function.
9520 * options.h: Fix comment for safe ICF option.
9521 * target.h (can_check_for_function_pointers): New function.
9522 * testsuite/Makefile.am: Add icf_safe_so_test test case.
9523 Modify icf_safe_test for X86-64.
9524 * testsuite/Makefile.in: Regenerate.
9525 * testsuite/icf_safe_so_test.cc: New file.
9526 * testsuite/icf_safe_so_test.sh: New file.
9527 * testsuite/icf_safe_test.cc (kept_func_3): New function.
9528 (main): Change to take pointer to function kept_func_3.
9529 * testsuite/icf_safe_test.sh (arch_specific_safe_fold): Check if safe
9530 folding is done correctly for X86-64.
9531
0da6fa6c
DM
95322010-02-12 David S. Miller <davem@davemloft.net>
9533
9534 * output.h (Output_reloc<SHT_REL>::Output_reloc): Add
9535 is_symbolless parameter.
9536 (Output_reloc<SHT_REL>::is_symbolless): New.
9537 (Output_reloc<SHT_REL>::is_symbolless_): New.
9538 (Output_reloc<SHT_REL>::type_): Decrease to 29 bits.
9539 (Output_reloc<SHT_RELA>::Output_reloc): Add is_symbolless parameter.
9540 (Output_reloc<SHT_RELA>::is_symbolless): New.
9541 (Output_data_reloc::add_global): Handle is_symbolless.
9542 (Output_data_reloc::add_global_relative): Likewise.
9543 (Output_data_reloc::add_local): Likewise.
9544 (Output_data_reloc::add_local_relative): Likewise.
9545 (Output_data_reloc::add_symbolless_global_addend): New.
9546 (Output_data_reloc::add_symbolless_local_addend): New.
9547 * output.cc (Output_reloc<SHT_REL>::Output_reloc): Handle
9548 is_symbolless.
9549 (Output_reloc::set_needs_dynsym_index): Test ->is_symbolless_
9550 instead of ->is_relative_
9551 (Output_reloc::write): Likewise.
9552 (Output_reloc::get_symbol_index): Return 0 when ->is_symbolless_
9553 (Output_reloc::write_rel): Simplify.
9554
9555 * sparc.cc (Target_sparc::Scan::local): Use
9556 ->add_symbolless_local_addend as needed.
9557 (Target_sparc::Scan::global): Use ->add_symbolless_global_addend as
9558 needed. Also, emit appropriate unaligned vs. aligned dynamic reloc
9559 based upon relocation offset.
9560
e4782e83
DK
95612010-02-11 Doug Kwan <dougkwan@google.com>
9562
9563 * arm.cc (Target_arm::Scan::local): Fix bugs in relocation handling.
9564 (Target_arm::Scan::global): Ditto. Also remove a comment before the
9565 beginning of function.
9566 (Target_arm::Relocate::relocate): Remove error messages for MOVW_ABS
9567 and MOVT_ABS relocations. Those are non issued in scanning. Fix
9568 parameter is_32bit in calls to should_apply_static_reloc.
9569 * testsuite/Makefile.am (check_SCRIPTS): Add arm_abs_global.sh.
9570 (check_DATA): Add arm_abs_global.stdout.
9571 (arm_abs_lib.o, libarm_abs.so, arm_abs_global.o, arm_abs_global,
9572 arm_abs_global.stdout): New rules.
9573 (MOSTLLYCLEANFILES): Add arm_abs_global
9574 * Makefile.in: Regenerate.
9575 * testsuite/arm_abs_global.s: New file.
9576 * testsuite/arm_abs_global.sh: Ditto.
9577 * testsuite/arm_abs_lib.s: Ditto.
9578
93ceb764
ILT
95792010-02-11 Ian Lance Taylor <iant@google.com>
9580
9581 * gold.cc (queue_middle_gc_tasks): Use a separate blocker for each
9582 Read_relocs task.
9583 (queue_middle_tasks): Likewise, and also for Scan_relocs. Run
9584 Allocate_commons_task first.
9585 * reloc.cc (Read_relocs::run): Pass next_blocker_ down to next
9586 task, rather than symtab_lock_.
9587 (Gc_process_relocs::~Gc_process_relocs): New function.
9588 (Gc_process_relocs::is_runnable): Check this_blocker_.
9589 (Gc_process_relocs::locks): Use next_blocker_ rather than
9590 blocker_.
9591 (Scan_relocs::~Scan_relocs): New function.
9592 (Scan_relocs::is_runnable): Check this_blocker_ rather than
9593 symtab_lock_.
9594 (Scan_relocs::locks): Drop symtab_lock_ and blocker_. Add
9595 next_blocker_.
9596 * reloc.h (class Read_relocs): Drop symtab_lock_ and blocker_
9597 fields. Add this_blocker_ and next_blocker_ fields. Adjust
9598 constructor accordingly.
9599 (class Gc_process_relocs): Likewise.
9600 (class Scan_relocs): Likewise.
9601 * common.h (class Allocate_commons_task): Remove symtab_lock_
9602 field, and corresponding constructor parameter.
9603 * common.cc (Allocate_commons_tasK::is_runnable): Remove use of
9604 symtab_lock_.
9605 (Allocate_commons_task::locks): Likewise.
9606
114dfbe1
ILT
96072010-02-11 Ian Lance Taylor <iant@google.com>
9608
9609 * gold-threads.h (class Once): Define.
9610 (class Initialize_lock): Rewrite as child of Once.
9611 * gold-threads.cc (class Once_initialize): Define.
9612 (once_pointer_control): New static variable.
9613 (once_pointer, once_arg): New static variables.
9614 (c_run_once): New static function.
9615 (Once::Once, Once::run_once, Once::internal_run): New functions.
9616 (class Initialize_lock_once): Remove.
9617 (initialize_lock_control): Remove.
9618 (initialize_lock_pointer): Remove.
9619 (initialize_lock_once): Remove.
9620 (Initialize_lock::Initialize_lock): Move to gold-threads.h.
9621 (Initialize_lock::initialize): Rewrite.
9622 (Initialize_lock::do_run_once): New function.
9623 * archive.cc (Archive::interpret_header): Only clear name if it is
9624 not already empty.
9625 * fileread.cc: Include "gold-threads.h"
9626 (file_counts_lock): New static variable.
9627 (file_counts_initialize_lock): Likewise.
9628 (File_read::release): Only increment counts when using --stats.
9629 Use a lock around the increment.
9630 * parameters.cc (class Set_parameters_target_once): Define.
9631 (set_parameters_target_once): New static variable.
9632 (Parameters::Parameters): Move here from parameters.h.
9633 (Parameters::set_target): Rewrite.
9634 (Parameters::set_target_once): New function.
9635 (Parameters::clear_target): Move here and rewrite.
9636 * parameters.h (class Parameters): Update declarations. Add
9637 set_parameters_target_once_ field.
9638 (Parameters::Parameters): Move to parameters.cc.
9639 (Parameters::clear_target): Likewise.
9640 * readsyms.cc (Read_symbols::do_group): Create a Start_group
9641 task.
9642 (Start_group::~Start_group): New function.
9643 (Start_group::is_runnable): New function.
9644 (Start_group::locks, Start_group::run): New functions.
9645 (Finish_group::run): Change saw_undefined to size_t.
9646 * readsyms.h (class Start_group): Define.
9647 (class Finish_group): Change saw_undefined_ field to size_t.
9648 (Finish_group::Finish_group): Remove saw_undefined and
9649 this_blocker parameters. Change all callers.
9650 (Finish_group::set_saw_undefined): New function.
9651 (Finish_group::set_blocker): New function.
9652 * symtab.h (class Symbol_table): Change saw_undefined to return
9653 size_t. Change saw_undefined_ field to size_t.
9654 * target-select.cc (Set_target_once::do_run_once): New function.
9655 (Target_selector::Target_selector): Initialize set_target_once_
9656 field. Don't initialize lock_ and initialize_lock_ fields.
9657 (Target_selector::instantiate_target): Rewrite.
9658 (Target_selector::set_target): New function.
9659 * target-select.h (class Set_target_once): Define.
9660 (class Target_selector): Update declarations. Make
9661 Set_target_once a friend. Remove lock_ and initialize_lock_
9662 fields. Add set_target_once_ field.
9663
fa17a3f4
ILT
96642010-02-10 Ian Lance Taylor <iant@google.com>
9665
9666 * dirsearch.cc (Dirsearch::initialize): Add all blockers before
9667 queueing any tasks.
9668 * gold.cc (queue_middle_gc_tasks): Likewise. Fix final blocker.
9669 (queue_middle_tasks): Add all blockers before queueing any tasks.
9670 (queue_final_tasks): Likewise.
9671 * token.h (Task_token::add_blockers): New function.
9672 * object.h (Input_objects::number_of_relobjs): New function.
9673
c7177d31
ILT
96742010-02-10 Ian Lance Taylor <iant@google.com>
9675
5de0e392
ILT
9676 * i386.cc (Relocate::relocate_tls): A local symbol is final if not
9677 shared, not if not position independent.
9678 * x86_64.cc (Relocate::relocate_tls): Likewise.
9679 * testsuite/Makefile.am (check_PROGRAMS): Add tls_pie_pic_test.
9680 (tls_pie_pic_test): New target.
9681 * testsuite/Makefile.in: Rebuild.
9682
c7177d31
ILT
9683 * testsuite/Makefile.am (check_PROGRAMS): Add tls_pie_test.
9684 (tls_test_main_pie.o, tls_test_pie.o): New targets.
9685 (tls_test_file2_pie.o, tls_test_c_pie.o, tls_pie_test): Likewise.
9686 * testsuite/Makefile.in: Rebuild.
9687
684b268a
DM
96882010-02-09 David S. Miller <davem@davemloft.net>
9689
9690 * sparc.cc (Target_sparc::Scan::local): Do not emit relocs other than
9691 R_SPARC_RELATIVE using ->add_local_relative().
9692 (Target_sparc::Scan::global): Likewise for ->add_global_relative().
9693
612a8d3d
DM
9694 * output.h (Output_data_dynamic::add_section_size): New method
9695 that takes two Output_data objects.
9696 (Output_data_dynamic::Dynamic_entry): Create storage for secondary
9697 entry param. Handle it in initializers.
9698 * output.cc (Output_data_dynamic::Dynamic_entry::write): For
9699 DYNAMIC_SECTION_SIZE, add in second object size if non-NULL.
9700 * layout.h (Layout::add_target_dynamic_tags): Add dynrel_includes_plt
9701 arg.
9702 * layout.cc (Layout::add_target_dynamic_tags): If dynrel_includes_plt,
9703 and .rela.plt exists, set DT_REL{,A}SZ to sum of .rela.dyn and .rela.plt
9704 * arm.cc (Target_arm::do_finalize_sections): Update to pass false
9705 for dynrel_includes_plt.
9706 * i386.cc (Target_i386::do_finalize_sections): Likewise.
9707 * x86_64.cc (Target_x86_64::do_finalize_sections): Likewise.
9708 * sparc.cc (Target_sparc::make_plt_entry): Force .rela.dyn to be output
9709 before .rela.plt
9710 (Target_sparc::do_finalize_sections): Update to pass true for
9711 dynrel_includes_plt.
9712 * powerpc.cc (Target_powerpc::make_plt_entry): Force .rela.dyn to be
9713 output before .rela.plt
9714 (Target_powerpc::do_finalize_sections): Update to pass true for
9715 dynrel_includes_plt when 32-bit.
9716
cb1be87e
DK
97172010-02-08 Doug Kwan <dougkwan@google.com>
9718
9719 * arm.cc (Arm_relobj::simple_input_section_output_address): New
9720 method.
9721 (Arm_relobj::section_needs_cortex_a8_stub_scanning,
9722 Arm_relobj::scan_section_for_cortex_a8_stubs,
9723 Arm_relobj::do_relocation_section): Instead of calling
9724 Output_section::output_address, use faster
9725 Arm_relobj::simple_input_section_output_address.
9726
705b5121
DM
97272010-02-08 David S. Miller <davem@davemloft.net>
9728
9729 * sparc.cc (Target_sparc::Relocate::relocate): If relocation offset is
9730 unaligned for R_SPARC_16, R_SPARC_32, or R_SPARC_64, use the unaligned
9731 relocation helper function.
9732
024c4466
DM
9733 * sparc.cc (Target_sparc::Scan::local): Handle R_SPARC_GOTDATA_OP*
9734 just like R_SPARC_GOT{10,13,22}.
9735 (Target_sparc::Scan::local): Likewise.
9736 (Target_sparc::Relocate:relocate): Likewise.
9737
9109c078
ILT
97382010-02-06 Ian Lance Taylor <iant@google.com>
9739
9740 * configure.ac: Rewrite targetobjs duplicate removal code to use
9741 only shell constructs.
9742 * configure: Rebuild.
9743
cf846138
DK
97442010-02-05 Doug Kwan <dougkwan@google.com>
9745
9746 PR 11247
9747 * arm.cc (Arm_relobj::section_is_scannable): New method.
9748 (Arm_relobj::section_needs_reloc_stub_scanning): Use it.
9749 (Arm_relobj::section_needs_cortex_a8_stub_scanning): Same.
9750
6cfaf60b
DK
97512010-02-04 Doug Kwan <dougkwan@google.com>
9752
9753 PR 11247
9754 * arm-reloc-property.cc (cstdio): Include.
9755 * configure.ac (targetobjs): Remove duplicates.
9756 * configure: Regenerate.
9757 * resolve.cc (Symbol_table::resolve): Explicit instantiate both
9758 big and little endian version for a given address size.
9759
5c57f1be
DK
97602010-02-03 Doug Kwan <dougkwan@google.com>
9761
9762 * arm-reloc-property.cc
9763 (Arm_reloc_property_table::reloc_name_in_error_message): New method
9764 definition.
9765 * arm-reloc-property.h
9766 (Arm_reloc_property_table::get_implemented_static_reloc_property):
9767 New method definition.
9768 (Arm_reloc_property_table::reloc_name_in_error_message): New method
9769 declaration.
9770 * arm-reloc.def (THM_MOVT_ABS, THM_MOVT_PREL, THM_MOVT_BREL): Change
9771 overflow to N.
9772 (GOT_PREL): Change implemented to Y.
9773 * arm.cc (Target_arm::reloc_uses_thumb_bit): Remove method.
9774 (Target_arm::Relocate::reloc_needs_sym_origin): Remove method.
9775 (Arm_relocate_functions::movw_abs_nc): Remove method.
9776 (Arm_relocate_functions::movt_abs): Ditto.
9777 (Arm_relocate_functions::thm_movw_abs_nc): Ditto.
9778 (Arm_relocate_functions::thm_movt_abs): Ditto.
9779 (Arm_relocate_functions::movw_rel_nc): Ditto.
9780 (Arm_relocate_functions::movw_rel): Ditto.
9781 (Arm_relocate_functions::movt_rel): Ditto.
9782 (Arm_relocate_functions:thm_movw_rel_nc): Ditto.
9783 (Arm_relocate_functions:thm_movw_rel): Ditto.
9784 (Arm_relocate_functions:thm_movt_rel): Ditto.
9785 (Arm_relocate_functions::movw, Arm_relocate_functions::movt,
9786 (Arm_relocate_functions::thm_movw, Arm_relocate_functions::thm_movt):
9787 New method definitions.
9788 (Arm_relocation_functions::arm_grp_alu): Add assertion for group index.
9789 (Arm_relocation_functions::arm_grp_ldr): Ditto.
9790 (Arm_relocation_functions::arm_grp_ldrs): Ditto.
9791 (Arm_relocation_functions::arm_grp_ldc): Ditto.
9792 (Target_arm::Relocate::relocate): Check for non-static or
9793 unimplemented relocation code and exit early. Change calls to
9794 Target_arm::reloc_uses_thumb_bit and
9795 Target_arm::Reloc::reloc_needs_sym_origin to use relocation property
9796 instead. Refactor code to handle similar relocations to increase
9797 code sharing. Remove check for unsupported relocation code in switch
9798 statement.
9799 (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc): Use
9800 relocation property table to find out size. Change error message to
9801 print out the name of a relocation code instead of the numeric value.
9802 (Target_arm::scan_reloc_for_stub): Use relocation property table
9803 instead of calling Target_arm::reloc_uses_thumb_bit().
9804
218c5831
DK
98052010-02-02 Doug Kwan <dougkwan@google.com>
9806
9807 * arm.cc (Target_arm::relocate_section): Do view adjustment for all
9808 types of relaxed input section.
9809
0d31c79d
DK
98102010-02-02 Doug Kwan <dougkwan@google.com>
9811
9812 * Makefile.am (HFILES): Add arm-reloc-property.h.
9813 (DEFFILES): New.
2e702c99
RM
9814 (TARGETSOURCES): Add arm-reloc-property.cc
9815 (ALL_TARGETOBJS): Add arm-reloc-property.$(OBJEXT)
0d31c79d
DK
9816 (libgold_a_SOURCES): $(DEFFILES)
9817 * Makefile.in: Regenerate.
9818 * arm-reloc-property.cc: New file.
9819 * arm-reloc-property.h: New file.
9820 * arm-reloc.def: New file.
9821 * arm.cc: Update comments.
9822 (arm-reloc-property.h): New included header.
9823 (arm_reloc_property_table): New global variable.
9824 (Target_arm::do_select_as_default_target): New method definition.
9825 * configure.tgt (armeb*-*-*,armbe*-*-*,arm*-*-*): Add
9826 arm-reloc-property to targ_extra_obj.
9827 * parameters.cc (set_parameters_target): Call
9828 Target::select_as_default_target().
9829 * target.h (Target::select_as_default_target): New method definition.
9830 (Target::do_select_as_default_target): Same.
9831
546c7457
DK
98322010-02-01 Doug Kwan <dougkwan@google.com>
9833
9834 * arm.cc (Arm_exidx_fixup::Arm_exidx_fixup): Initialize
9835 first_output_text_section_.
9836 (Arm_exidx_fixup::first_output_text_section): New method definition.
9837 (Arm_exidx_fixup::first_output_text_section_): New data member.
9838 (Arm_exidx_fixup::process_exidx_section): Record the first text
9839 output section seen.
9840 (Arm_output_section::fix_exidx_coverage): Set correct linked section
9841 and entsize in output section header.
9842
11b861d5
DK
98432010-01-29 Viktor Kutuzov <vkutuzov@accesssoftek.com>
9844
9845 * gold/arm.cc: Added support for the ARM relocations: R_ARM_THM_PC8,
9846 R_ARM_THM_PC12, R_ARM_THM_ALU_PREL_11_0.
9847 (Arm_relocate_functions::thm_alu11): New Method.
9848 (Arm_relocate_functions::thm_pc8): New Method.
9849 (Arm_relocate_functions::thm_pc12): New Method.
9850 (Target_arm::Scan::local): Handle the relocations.
9851 (Target_arm::Scan::global): Likewise.
9852 (Target_arm::Relocate::relocate): Likewise.
9853 (Target_arm:Relocatable_size_for_reloc::get_size_for_reloc): Likewise.
9854
c9a2c125
DK
98552010-01-29 Doug Kwan <dougkwan@google.com>
9856
9857 * arm.cc (Target_arm::Scan::global): General PLTs for the same set
9858 of relocation types as ld.
9859
1521477a
DK
98602010-01-29 Doug Kwan <dougkwan@google.com>
9861
9862 * arm.cc (Arm_relocate_functions::arm_branch_common) Change visibility
9863 to public.
9864 (Arm_relocate_functions::thumb_branch_common): Ditto.
9865 (Arm_relocate_functions::thm_call, Arm_relocate_functions::thm_jump24,
9866 Arm_relocate_functions::thm_xpc22, Arm_relocate_functions::plt32,
9867 Arm_relocate_functions::xpc25, Arm_relocate_functions::call,
9868 Arm_relocate_functions::jump24): Remove.
9869 (Target_arm::Relocate::relocate): Adjust code to call
9870 Arm_relocation_functions::arm_branch_common and
9871 Arm_relocation_functions::thumb_branch_common instead of their removed
e1df38aa 9872 wrappers. Merge switch-cases together to reduce source code size.
1521477a 9873
e7eca48c
DK
98742010-01-29 Doug Kwan <dougkwan@google.com>
9875
9876 * arm.cc (Arm_relobj::Arm_relobj): Initialize new data member
9877 output_local_symbol_count_needs_update_.
9878 (Arm_relobj::output_local_symbol_count_needs_update,
9879 Arm_relobj::set_output_local_symbol_count_needs_update,
9880 Arm_relobj::update_output_local_symbol_count): New methods.
9881 (Arm_relobj::output_local_symbol_count_needs_update_): New data
9882 member.
9883 (Arm_exidx_cantunwind::do_fixed_endian_write): Write address
9884 of pointed function as in a R_ARM_PREL31 relocation.
9885 (Arm_output_section<big_endian>::fix_exidx_coverage): Mark objects
9886 for output local symbol count updating.
9887 (Target_arm::do_relax): Update output local symbol counts in objects
9888 if necessary.
9889 * object.h (Sized_relobj::set_output_local_symbol_count): New method.
9890
02961d7e
ILT
98912010-01-29 Viktor Kutuzov <vkutuzov@accesssoftek.com>
9892
9893 * arm.cc: Added support for the ARM relocations:
9894 R_ARM_MOVW_BREL_NC, R_ARM_MOVT_BREL, R_ARM_MOVW_BREL,
9895 R_ARM_THM_MOVW_BREL_NC, R_ARM_THM_MOVT_BREL, R_ARM_THM_MOVW_BREL.
9896 (Arm_relocate_functions::movw_rel_nc): Renamed (was
9897 movw_prel_nc).
9898 (Arm_relocate_functions::movw_rel): New method.
9899 (Arm_relocate_functions::movt_rel): Renamed (was movt_prel).
9900 (Arm_relocate_functions::thm_movw_rel_nc): Renamed (was
9901 thm_movw_prel_nc).
9902 (Arm_relocate_functions::thm_movw_rel): New method.
9903 (Arm_relocate_functions::thm_movt_rel): Renamed (was
9904 thm_movt_prel).
9905 (Target_arm::Scan::local): Handle MOVW_BREL/MOVT_BREL
9906 relocations.
9907 (Target_arm::Scan::global): Likewise.
9908 (Target_arm::Relocate::relocate): Likewise.
9909 (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc):
9910 Likewise.
9911
b10d2873
ILT
99122010-01-27 Viktor Kutuzov <vkutuzov@accesssoftek.com>
9913
9914 * arm.cc: Added support for ARM group relocations.
9915 (Target_arm::reloc_needs_sym_origin): New method.
9916 (Arm_relocate_functions::calc_grp_kn): New method.
9917 (Arm_relocate_functions::calc_grp_residual): New method.
9918 (Arm_relocate_functions::calc_grp_gn): New method.
9919 (Arm_relocate_functions::arm_grp_alu): New Method.
9920 (Arm_relocate_functions::arm_grp_ldr): New Method.
9921 (Arm_relocate_functions::arm_grp_ldrs): New Method.
9922 (Arm_relocate_functions::arm_grp_ldc): New Method.
9923 (Target_arm::Scan::local): Handle the ARM group relocations.
9924 (Target_arm::Scan::global): Likewise.
9925 (Target_arm::Relocate::relocate): Likewise.
9926 (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc):
9927 Likewise.
9928
2b328d4e
DK
99292010-01-26 Doug Kwan <dougkwan@google.com>
9930
9931 * arm.cc (set): Include.
9932 (class Arm_exidx_fixup): Change type of last_input_section_ to const
9933 pointer type.
2e702c99 9934 (Arm_output_section::Text_section_list): New type.
2b328d4e
DK
9935 (Arm_output_section::append_text_sections_to_list): New method.
9936 (Arm_output_section::fix_exidx_coverage): Ditto.
9937 (Arm_relobj::Arm_relobj): Initialize exidx_section_map_.
2e702c99 9938 (Arm_relobj::convert_input_section_to_relaxed_section): Use
2b328d4e
DK
9939 Relobj::set_section_offset() instead of
9940 Sized_relobj::invalidate_section_offset().
2e702c99 9941 (Arm_relobj::section_needs_reloc_stub_scanning): Add an extra
2b328d4e
DK
9942 parameter for section headers. Ignore relocation sections for
9943 unallocated sections and EXIDX sections.
9944 (Target_arm::fix_exidx_coverage): New method.
9945 (Target_arm::output_section_address_less_than): New type.
9946 (Arm_exidx_fixup::add_exidx_cantunwind_as_needed): Use index of the
9947 linked text section instead of the EXIDX section.
9948 (Arm_output_section::create_stub_group): Add an assertion to check
9949 that this is not an EXIDX output section.
9950 (Arm_output_section::append_text_sections_to_list): New method.
9951 (Arm_output_section::fix_exidx_coverage): Ditto.
9952 (Arm_relobj::scan_sections_for_stubs): Adjust call to
2e702c99 9953 Arm_relobj::section_needs_reloc_stub_scanning.
2b328d4e
DK
9954 (Target_arm::do_relax): Fix EXIDX output section coverage in the
9955 first pass.
9956 (Target_arm::fix_exidx_coverage): New method.
9957 * object.h (Relobj::set_output_section): New method.
9958 (Sized_relobj::invalidate_section_offset): Remove method.
9959 (Sized_relobj::do_invalidate_section_offset): Remove method.
9960 (Sized_relobj::do_set_section_offset): Handle offset value -1.
9961
c7f3c371
DK
99622010-01-25 Doug Kwan <dougkwan@google.com>
9963
9964 * arm.cc (Arm_exidx_merged_section::do_output_offset):
9965 Fix warning due to signed and unsigned comparison on a 32-bit host.
9966
8923b24c
DK
99672010-01-22 Doug Kwan <dougkwan@google.com>
9968
9969 * arm.cc (Target_arm::do_relax): Record an output section for section
9970 offset adjustment it contains any stub table that has changed.
9971 * layout.cc (Layout::clean_up_after_relaxation): Adjust section
9972 offsets in an output section if necessary.
9973 * output.cc (Output_section::Output_section): Initialize
9974 section_offsets_need_adjustments_.
9975 (Output_section::add_input_section_for_script): Renamed to
9976 Output_section::add_simple_input_section.
9977 (Output_section::save_states): Add a comment.
9978 (Output_section::discard_states): New method defintion.
9979 (Output_section::adjust_section_offsets): Same.
9980 * output.h (Output_section::add_input_section_for_script): Renamed to
9981 Output_section::add_simple_input_section.
9982 (Output_section::discard_states): New method declaration.
9983 (Output_section::adjust_section_offsets): Same.
9984 (Output_section::section_offsets_need_adjustment,
9985 Output_section::set_section_offsets_need_adjustment): New method
9986 definitions.
9987 (Output_section::section_offsets_need_adjustment_): New data member.
9988 * script-sections.cc
9989 (Output_section_element_input::set_section_address): Adjust code for
9990 renaming of Output_section::add_input_section_for_script.
9991 (Orphan_output_section::set_section_address): Same.
9992
9b2fd367
DK
99932010-01-22 Viktor Kutuzov <vkutuzov@accesssoftek.com>
9994
9995 * gold/arm.cc (Target_arm): Updated fix_v4bx method and usage of
9996 Fix_v4bx enum values .
9997 * gold/options.h (General_options): New option definitions.
9998 (General_options::fix_v4bx): New method.
9999 (General_options::Fix_v4bx): New enum.
10000 * gold/options.cc (General_options::parse_fix_v4bx): New method.
10001 (General_options::parse_fix_v4bx_interworking): New method.
10002
80d0d023
DK
100032010-01-22 Doug Kwan <dougkwan@google.com>
10004
10005 * arm.cc (Arm_exidx_fixup): New class.
10006
af2cdeae
DK
100072010-01-21 Doug Kwan <dougkwan@google.com>
10008
10009 * arm.cc (Arm_exidx_cantunwind, Arm_exidx_merged_section): New
10010 classes.
10011 (Arm_exidx_section_offset_map): New type.
10012
993d07c1
DK
100132010-01-21 Doug Kwan <dougkwan@google.com>
10014
10015 * arm.cc (Arm_exidx_input_section): New class.
10016 (Arm_relobj::exidx_input_section_by_link,
10017 Arm_relobj::exidx_input_section_by_shndx,
10018 Arm_relobj::make_exidx_input_section): New methods.
10019 (read_arm_attributes_section): Remove.
10020 (Arm_relobj::do_read_symbols): Look for ARM.exidx sections and record
10021 information about them.
10022 (Arm_dynobj::do_read_symbols): Move code in read_arm_attributes_section
10023 to here.
10024
5ac169d4
DK
100252010-01-20 Doug Kwan <dougkwan@google.com>
10026
10027 * arm.cc (Target_arm::Arm_input_section_map): Change key type from
10028 Input_section_specifier to Section_id.
10029 (Target_arm::new_arm_input_section: Adjust code for change of key
10030 type.
10031 (Target_arm::find_arm_input_section): Ditto.
10032 * gc.h (object.h): Include for Section_id nand Section_id_hash.
10033 (Section_id): Remove.
10034 (Garbage_collection::Section_id_hash): Remove.
10035 * icf.h (object.h): Include for Section_id nand Section_id_hash.
10036 (Section_id): Remove.
10037 (Icf::Section_id_hash): Remove.
10038 * object.h (Section_id, Const_section_id, Section_id_hash,
10039 Const_section_id_hash): New type definitions.
10040 * output.cc (Output_section::add_relaxed_input_section): Change to
10041 use Const_section_id instead of Input_section_specifier as key type.
10042 (Output_section::add_merge_input_section): Ditto.
10043 (Output_section::build_relaxation_map): Change to use Section_id
10044 instead of Input_section_specifier as key type.
2e702c99 10045 (Output_section::convert_input_sections_in_list_to_relaxed_sections):
5ac169d4
DK
10046 Ditto.
10047 (Output_section::convert_input_sections_to_relaxed_sections): Change
10048 to use Const_section_id instead of Input_section_specifier as key type.
2e702c99 10049 (Output_section::find_merge_section): Ditto.
5ac169d4
DK
10050 (Output_section::find_relaxed_input_section): Ditto.
10051 * output.h (Input_section_specifier): Remove class.
10052 (Output_section::Output_section_data_by_input_section_map): Change
10053 key type to Const_section_id.
10054 (Output_section::Output_relaxed_input_section_by_input_section_map):
10055 Ditto.
10056 (Output_section::Relaxation_map): Change key type to Section_id.
10057
a2162063
ILT
100582010-01-20 Viktor Kutuzov <vkutuzov@accesssoftek.com>
10059
10060 * gold/arm.cc: Added support for R_ARM_V4BX relocation
10061 (class Arm_v4bx_stub): New class.
10062 (DEF_STUBS): Updated definition to support v4_veneer_bx.
10063 (Stub_factory::make_arm_v4bx_stub): New method.
10064 (Stub_factory::elf32_arm_stub_v4_veneer_bx): New veneer template.
10065 (Stub_table::empty): Handle v4bx stubs.
10066 (Stub_table::add_arm_v4bx_stub): New method.
10067 (Stub_table::find_arm_v4bx_stub): New method.
10068 (Arm_relocate_functions::v4bx): New method.
10069 (Target_arm::fix_v4bx): New method.
10070 (Target_arm::Target_arm): Handle R_ARM_V4BX.
10071 (Stub_table::relocate_stubs): Likewise.
10072 (Stub_table::do_write): Likewise.
10073 (Stub_table::update_data_size_and_addralign): Likewise.
10074 (Stub_table::finalize_stubs): Likewise.
10075 (Target_arm::Scan::local): Likewise.
10076 (Target_arm::Scan::global): Likewise.
10077 (Target_arm::do_finalize_sections): Likewise.
10078 (Target_arm::Relocate::relocate): Likewise.
10079 (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc):
10080 Likewise.
10081 (Target_arm::scan_reloc_for_stub): Likewise.
10082 (Target_arm::scan_reloc_section_for_stubs): Likewise.
10083
5696ab0b
ILT
100842010-01-19 Ian Lance Taylor <iant@google.com>
10085
10086 * output.cc (Output_section_headers::do_sized_write): Write large
10087 segment count to sh_info field.
10088 (Output_file_header::do_sized_write): For large segment count,
10089 write PN_XNUM to e_phnum field.
10090
800d0f56
ILT
100912010-01-15 Viktor Kutuzov <vkutuzov@accesssoftek.com>
10092
10093 * arm.cc (Arm_relocate_functions::thm_jump6): New function.
10094 (Arm_relocate_functions::thm_jump8): New function.
10095 (Arm_relocate_functions::thm_jump11): New function.
10096 (Target_arm::Scan::local): Handle R_ARM_THM_JUMP6, R_ARM_THM_JUMP8,
10097 R_ARM_THM_JUMP11.
10098 (Target_arm::Scan::global): Likewise.
10099 (Target_arm::Relocate::relocate): Likewise.
10100 (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc):
10101 Likewise.
10102
41263c05
DK
101032010-01-14 Doug Kwan <dougkwan@google.com>
10104
10105 * arm.cc (map, utility): Include headers.
10106 (Target_arm::apply_cortex_a8_workaround): New method.
10107 (Arm_relobj::do_relocate_sections): Apply any Cortex-A8 workaround.
10108 (Target_arm::Scan::local): Handle R_ARM_THM_JUMP24, R_ARM_THM_JUMP19.
10109 (Target_arm::Scan::global): R_ARM_THM_JUMP19.
10110 (Target_arm::do_finalize_sections): Set fix_cortex_a8_ according to
10111 the --[no-]fix-cortex-a8 command line options.
10112 (Target_arm::Relocate::relocate): Handle R_ARM_JUMP19.
10113 (Target_arm::relocate_stub): Use addend in instruction template.
10114 * options.h (DEFINE_bool): Set the user-set flag.
10115 (General_options): Add --[no-]-fix-cortex options.
10116 * output.cc (Output_section::convert_input_sections_to_relaxed_sections)
e1df38aa 10117 : Update fast look-up map after conversion.
41263c05 10118
459e9b03
ST
101192010-01-14 Sriraman Tallam <tmsriram@google.com>
10120
10121 * object.cc (Sized_relobj::do_layout): Change to call layout_gnu_stack
10122 in the first pass of do_layout.
10123
b521dfe4
DK
101242010-01-13 Doug Kwan <dougkwan@google.com>
10125
10126 * arm.cc (Arm_relobj::section_needs_reloc_stub_scanning,
10127 Arm_relobj::scan_sections_for_stubs): Rearrange code to avoid an
10128 apparent compiler problem of not folding static constant integral
10129 data members of elfcpp::Elf_sizes<32>.
10130
44272192
DK
101312010-01-13 Doug Kwan <dougkwan@google.com>
10132
10133 * arm.cc (Arm_relobj::section_needs_reloc_stub_scanning,
10134 Arm_relobj::section_needs_cortex_a8_stub_scanning,
10135 Arm_relobj::scan_section_for_cortex_a8_erratum,
10136 Arm_relobj::scan_span_for_cortex_a8_erratum): New methods.
10137 (Arm_relobj::scan_sections_for_stubs): Move code deciding what
10138 sections to scan for relocation stubs into a new method
10139 Arm_relobj::section_needs_reloc_stub_scanning. Handle both
10140 relocation and Cortex-A8 stub scanning.
10141 (Target_arm::do_relax): Force stubs to be after stubbed sections
10142 if fixing the Cortex-A8 erratum. Remove all Cortex-A8 stubs at
e1df38aa 10143 the beginning of a new relaxation pass. Update a comment.
44272192
DK
10144 (Target_arm::scan_span_for_cortex_a8_erratum): New method definition.
10145
44b71ece
ILT
101462010-01-12 Ian Lance Taylor <iant@google.com>
10147
10148 * target-reloc.h (visibility_error): New inline function.
10149 (relocate_section): Call visibility_error.
10150 * testsuite/Makefile.am (check_DATA): Add protected_3.err.
10151 (MOSTLYCLEANFILES): Likewise.
10152 (protected_4_pic.o, protected_3.err): New targets.
10153 * testsuite/protected_4.cc: New file.
10154
a120bc7f
DK
101552010-01-12 Doug Kwan <dougkwan@google.com>
10156
10157 * arm.cc (Cortex_a8_reloc): New class.
10158 (Target_arm::Target_arm): Initialize new data members fix_cortex_a8_
10159 and cortex_a8_relocs_info_.
10160 (Target_arm::fix_cortex_a8): New method definition.
10161 (Target_arm::Cortex_a8_relocs_info): New type.
10162 (Target_arm::fix_cortex_a8_, Target_arm::cortex_a8_relocs_info_):
10163 New data member declarations.
10164 (Target_arm::scan_reloc_for_stub): Record information about
10165 relocations for THUMB branches that might be exempted from the
10166 Cortex-A8 workaround.
10167 (Target_arm::do_relax): Clear all Cortex-A8 relocation information
10168 at the beginning of a relaxation pass.
10169
20138696
DK
101702010-01-12 Doug Kwan <dougkwan@google.com>
10171
10172 * arm.cc (Arm_relobj::mapping_symbols_info_): New data member.
10173 (Arm_relobj::Mapping_symbol_position,
10174 Arm_reloj::Mapping_symbol_position_less,
10175 Arm_relobj::Mapping_symbols_info): New types.
10176 (Target_arm::is_mapping_symbol_name): New method definition.
10177 (Arm_relobj::do_count_local_symbols): Save information about mapping
10178 symbols.
10179
089d69dc
DK
101802010-01-11 Doug Kwan <dougkwan@google.com>
10181
10182 * arm.cc (Arm_relocate_functions::thumb32_branch_offset,
10183 Arm_relocate_functions::thumb32_branch_upper,
10184 Arm_relocate_functions::thumb32_branch_lower,
10185 Arm_relocate_functions::thumb32_cond_branch_offset,
10186 Arm_relocate_functions::thumb32_cond_branch_upper,
10187 Arm_relocate_functions::thumb32_cond_branch_lower,
10188 Arm_relocate_functions::thm_jump19): New methods to handle THUMB
10189 branch offset encoding.
10190 (Arm_relocate_functions::thumb_branch_common): Use new branch
10191 offset encoding methods to avoid code duplication.
10192 (Stub_template::Stub_template) Handle THUMB16_SPECIAL_TYPE.
10193 (Stub_addend_reader::operator()): Use new branch encoding method
10194 to avoid code duplication.
10195
99e5bff2
DK
101962010-01-11 Doug Kwan <dougkwan@google.com>
10197
10198 * arm.cc (Arm_relobj::do_gc_process_relocs): New method.
10199 (Target_arm::do_finalize_sections): Define special EXIDX section
10200 symbols only if referenced.
10201 * gc.h (Garbage_collection::add_reference): New method.
10202 (gc_process_relocs): Use Garbage_collection::add_reference to avoid
10203 code duplication.
10204
98e090bd
ILT
102052010-01-11 Ian Lance Taylor <iant@google.com>
10206
d0a91bd8
ILT
10207 * script.cc (Version_script_info::build_expression_list_lookup):
10208 Change complaing about duplicate wildcard match from error to
10209 warning.
10210
98e090bd
ILT
10211 * script.cc (class Lazy_demangler): Recreate--revert part of patch
10212 of 2009-12-30.
10213 (Version_script_info::Version_script_info): Initialize globs_,
10214 default_version_, default_is_global_, and exact_. Don't
10215 initialize globals_ or locals_.
10216 (Version_script_info::build_lookup_tables): Build local symbols
10217 first.
10218 (Version_script_info::unquote): New function.
10219 (Version_script_info::add_exact_match): New function.
10220 (Version_script_info::build_expression_list_lookup): Remove lookup
10221 parameter. Add is_global parameter. Change all callers. Handle
10222 wildcard pattern specially. Unquote pattern. Call
10223 add_exact_match.
10224 (Version_script_info::get_name_to_match): New function.
10225 (Version_script_info::get_symbol_version): New function.
10226 (Version_script_info::get_symbol_version_helper): Remove.
10227 (Version_script_info::check_unmatched_names): Call unquote.
10228 * script.h (class Version_script_info): Change get_symbol_version
10229 to be non-inline and add is_global parameter; change all callers.
10230 Rewrite symbol_is_local. Update declarations. Define struct
10231 Version_tree_match, Exact, Globs. Don't define struct Lookup.
10232 Remove globals_ and locals_ members. Add exact_, globs_,
10233 default_version_, is_global_.
10234 (Version_script_info::Glob): Remove pattern, add expression and
10235 is_global. Update constructor. Change all callers.
10236 * dynobj.cc (Versions::finalize): Mark the version symbol as the
10237 default version.
10238 (Versions::symbol_section_contents): If a symbol is undefined, or
10239 defined in a dynamic object, set the version index to
10240 VER_NDX_LOCAL.
10241 * symtab.cc (Symbol_table::add_from_relobj): Don't call
10242 symbol_is_local.
10243 (Symbol_table::add_from_pluginobj): Likewise.
10244 * testsuite/ver_matching_test.sh: blaza1 and blaza go into V2.
10245
d56962d3
DK
102462010-01-11 Doug Kwan <dougkwan@google.com>
10247
10248 * Makefile.am (incremental_dump_DEPENDENCIES): Add libintl dependency.
10249 (incremental_dump_LDADD): Add linking option for libintl.
10250 * Makefile.in: Regenerate.
10251
94e6ee91
L
102522010-01-11 H.J. Lu <hongjiu.lu@intel.com>
10253
10254 PR gold/11144
10255 * testsuite/Makefile.am (dynamic_list.stdout): Use --dyn-syms
10256 instead of -Ds.
10257 * testsuite/Makefile.in: Regenerated.
10258
e96c574b
DK
102592010-01-10 Doug Kwan <dougkwan@google.com>
10260
10261 * options.h (DEFINE_var): Use parentheses around argument varname__
10262 in macro body to avoid any unintended subsequent substitutions.
10263
7198066b
ILT
102642010-01-10 Ian Lance Taylor <iant@google.com>
10265
ba4d53bf
ILT
10266 * resolve.cc (Symbol_table::resolve): Add symbols to list of ODR
10267 candidates before doing symbol resolution.
10268
7198066b
ILT
10269 * resolve.cc (Symbol_table::resolve): Add symbols to the list of
10270 ODR candidates if only one is weak.
10271
a2beed37
ILT
102722010-01-08 Ian Lance Taylor <iant@google.com>
10273
10274 * script.cc (Version_script_info::build_expression_list_lookup):
10275 Don't warn about ambiguous version, just record the ambiguity.
10276 (Version_script_info::get_symbol_version_helper): Give error if
10277 version is ambiguous.
10278
2fb7225c
DK
102792010-01-08 Doug Kwan <dougkwan@google.com>
10280
10281 * arm.cc (Stub_table::Stub_table): Initalize cortex_a8_stubs_,
703d02da
AM
10282 prev_data_size_ and prev_addralign_. Remove initializer for
10283 deleted data member has_been_changed_.
10284 (Stub_table::empty): Look at both reloc_stubs_ and cortex_a8_stubs_
10285 to determine if the table is empty.
10286 (Stub_table::has_been_changed, Stub_table_set_has_been_changed):
10287 Remove.
10288 (Stub_table::add_reloc_stub): Define method in class definition
10289 instead of just declaring it there.
10290 (Stub_table::add_cortex_a8_stub): New method definition.
10291 (Stub_table::update_data_size_and_addralign): Ditto.
10292 (Stub_table::finalize_stubs): Ditto.
10293 (Stub_table::apply_cortex_a8_workaround_to_address_range): Ditto.
10294 (Stub_table::do_addralign_): Return address alignment in the
10295 (Stub_table::do_reset_address_and_file_offset): Define method in
10296 class definition instead of declaring it there. Set current data
10297 size to be the data size of the previous pass.
10298 (Stub_table::set_final_data_size): Use current data size as the
10299 final data size.
10300 (Stub_table::relocate_stub): Change parameter type of stub from
10301 Reloc_stub pointer to Stub pointer.
10302 (Stub_table::addralign_, Stub_table::has_been_changed_): Remove.
10303 (Stub_table::Cortex_a8_stub_list): New typedef.
10304 (Stub_table::cortex_a8_stubs_, Stub_table::prev_data_size_,
10305 Stub_table::prev_addralign_): New data member.
10306 (Arm_relobj::Arm_relobj): Initialize data member
10307 section_has_cortex_a8_workaround_.
10308 (Arm_relobj::section_has_cortex_a8_workaround,
10309 Arm_relobj::mark_section_for_cortex_a8_workaround): New method
10310 definitions.
10311 (Arm_relobj::section_has_cortex_a8_workaround_): New data member
10312 declarations.
10313 (Target_arm::relocate_stub): Change parameter type of stub from
10314 Reloc_stub pointer to Stub pointer.
10315 (Insn_template::size, Insn_template::alignment): Handle
10316 THUMB16_SPECIAL_TYPE.
10317 (Stub_table::remove_all_cortex_a8_stubs, Stub_table::finalize_stubs,
10318 Stub_table::update_data_size_and_addralign,
10319 Stub_table::apply_cortex_a8_workaround_to_address_range): New method
10320 definitions.
10321 (Stub_table::relocate_stubs): Handle Cortex-A8 stubs.
10322 (Stub_table::do_write): Ditto.
10323 (Target_arm::do_relax): Adjust code for changes in Stub_table.
2fb7225c 10324
880cd20d
ILT
103252010-01-08 Ian Lance Taylor <iant@google.com>
10326
10327 PR 11108
10328 * symtab.h (class Symbol): Remove fields is_target_special_ and
10329 has_plt_offset_. Add field is_defined_in_discarded_section_.
10330 (Symbol::is_defined_in_discarded_section): New function.
10331 (Symbol::set_is_defined_in_discarded_section): New function.
10332 (Symbol::has_plt_offset): Rewrite.
10333 (Symbol::set_plt_offset): Verify that new offset is not -1U.
10334 * symtab.cc (Symbol::init_fields): Initialize plt_offset_ to -1U.
10335 Don't initialize is_target_special_ or has_plt_offset_.
10336 Initialize is_defined_in_discarded_section_.
10337 (Symbol_table::add_from_relobj): If appropriate, set
10338 is_defined_in_discarded_section.
10339 * resolve.cc (Symbol::override_base_with_special): Don't test
10340 is_target_special_. Change has_plt_offset_ to has_plt_offset().
10341 * target-reloc.h (relocate_section): Do special handling for
10342 symbols defined in discarded sections for global symbols as well
10343 as local symbols.
10344
2703e3eb
ILT
103452010-01-08 Ian Lance Taylor <iant@google.com>
10346
10347 * dynobj.cc (big_endian>::find_dynsym_sections): Set pi to NULL in
10348 the SHT_SYMTAB case.
10349
339d40a3
ILT
103502010-01-08 Ian Lance Taylor <iant@google.com>
10351
10352 * object.cc (Sized_relobj::do_layout): Don't get confused if
10353 layout_eh_frame returns NULL.
10354
abecea76
ILT
103552010-01-08 Ian Lance Taylor <iant@google.com>
10356
10357 PR 11084
10358 * dynobj.cc (Sized_dynobj::find_dynsym_sections): If there is no
10359 dynamic symbol table, use the normal symbol table.
10360 (Sized_dynobj::do_read_symbols): Remove assertion about type of
10361 symbol table.
10362
6b7dd3f3
ILT
103632010-01-08 Ian Lance Taylor <iant@google.com>
10364
10365 PR 11072
10366 * layout.cc (Layout::include_section): Remove .gnu_debuglink
10367 sections.
10368
36c50e63
L
103692010-01-08 H.J. Lu <hongjiu.lu@intel.com>
10370
10371 * version.cc (print_version): Change to "Copyright 2010".
10372
e291e7b9
ILT
103732010-01-08 Ian Lance Taylor <iant@google.com>
10374
10375 PR 10287
10376 PR 11063
10377 * i386.cc (class Target_i386): Change return type of plt_section
10378 to be non-const.
10379 (class Output_data_plt_i386): Add tls_desc_rel_ field.
10380 (Output_data_plt_i386::Output_data_plt_i386): Initialize
10381 tls_desc_rel_ field.
10382 (Output_data_plt_i386::rel_tls_desc): New function.
10383 (Target_i386::rel_tls_desc_section): New function.
10384 (Target_i386::Scan::local): Rewrite R_386_TLS_GOTDESC handling.
10385 (Target_i386::Scan::global): For R_386_TLS_GOTDESC put
10386 R_386_TLS_DESC reloc in rel_tls_desc_section.
10387 * x86_64.cc (class Target_x86_64): Add tlsdesc_reloc_info_ field.
10388 Define struct Tlsdesc_info.
10389 (Target_x86_64::Target_x86_64): Initialize tlsdesc_reloc_info_.
10390 (Target_x86_64::do_reloc_symbol_index): New function.
10391 (Target_x86_64::add_tlsdesc_info): New function.
10392 (class Output_data_plt_x86_64): Add tlsdesc_rel_ field.
10393 (Output_data_plt_x86_64::Output_data_plt_x86_64): Initialize
10394 tlsdesc_rel_ field.
10395 (Output_data_plt_x86_64::rela_plt): Rename from rel_plt. Change
10396 all callers.
10397 (Output_data_plt_x86_64::rela_tlsdesc): New function.
10398 (Target_x86_64::rela_tlsdesc_section): New function.
10399 (Target_x86_64::Scan::local): Rewrite R_X86_64_GOTPC32_TLSDESC
10400 handling.
10401 (Target_x86_64::Scan::global): For R_X86_64_GOTPC32_TLSDESC put
10402 (Target_x86_64::do_reloc_addend): New function.
10403 R_X86_64_TLSDESC reloc in rela_tlsdesc_section.
10404 * output.h (class Output_reloc) [SHT_REL]: Add new constructor
10405 declarations. Define TARGET_CODE. Add arg field to u1_ union.
10406 (Output_reloc::type): New function.
10407 (Output_reloc::is_local_section_symbol): Check for TARGET_CODE.
10408 (Output_reloc::is_target_specific): New function.
10409 (Output_reloc::target_arg): New function.
10410 (class Output_reloc) [SHT_RELA]: Add four new constructors for
10411 absolute relocs and target specific relocs.
10412 (class Output_data_reloc) [SHT_REL]: Add add_absolute and
10413 add_target_specific.
10414 (class Output_data_reloc) [SHT_RELA]: Likewise.
10415 * output.cc (Output_reloc::Output_reloc): Add four new versions
10416 for absolute relocs and target specific relocs.
10417 (Output_reloc::set_needs_dynsym_index): Add TARGET_CODE case.
10418 (Output_reloc::get_symbol_index): Likewise.
10419 (Output_reloc::local_section_offset): Check that local_sym_index_
10420 is not TARGET_CODE or 0.
10421 (Output_reloc::symbol_value): Likewise.
10422 (Output_reloc::write) [SHT_RELA]: Call target for target specific
10423 reloc.
10424 * target.h (class Target): Add reloc_symbol_index and reloc_addend
10425 functions. Add do_reloc_symbol_index and do_reloc_addend virtual
10426 functions.
10427 * layout.cc (add_target_dynamic_tags): Use output section for
10428 DT_PLTRELSZ and DT_JMPREL.
10429
3a44184e
ILT
104302010-01-07 Ian Lance Taylor <iant@google.com>
10431
10432 PR 11061
10433 * output.h (class Output_reloc) [SHT_RELA]: Add is_relative
10434 function.
10435 (class Output_data_reloc_generic): Define.
10436 (class Output_data_reloc_base): Change base class to
10437 Output_data_reloc_generic. Change add() method to call
10438 bump_relative_reloc_count for a relative reloc. Remove
10439 sort_relocs_ field.
10440 * output.cc (Output_data_reloc_base::do_write): Change sort_reloc_
10441 to sort_relocs().
10442 * layout.cc (Layout::add_target_dynamic_tags): Change dyn_rel to
10443 Output_data_reloc_generic*. Add DT_RELCOUNT/DT_RELACOUNT tag if
10444 appropriate.
10445 * layout.h (class Layout): Update declaration.
10446
ea715a34
ILT
104472010-01-07 Ian Lance Taylor <iant@google.com>
10448
10449 * output.h (class Output_data): Add const version of
10450 output_section and do_output_section.
10451 (class Output_section_data): Add const version of
10452 do_output_section.
10453 (class Output_section): Likewise.
10454 * layout.cc (Layout::add_target_dynamic_tags): New function.
10455 * layout.h (class Layout): Update declarations.
10456 * arm.cc (Target_arm::do_finalize_sections): Use
10457 add_target_dynamic_tags.
10458 * i386.cc (Target_i386::do_finalize_sections): Likewise.
10459 * powerpc.cc (Target_powerpc::do_finalize_sections): Likewise.
10460 * sparc.cc (Target_sparc::do_finalize_sections): Likewise.
10461 * x86_64.cc (Target_x86_64::do_finalize_sections): Likewise.
10462
659948a4
ILT
104632010-01-07 Ian Lance Taylor <iant@google.com>
10464
10465 PR 11042
10466 * copy-relocs.cc (Copy_relocs::emit_copy_reloc): Mark the dynamic
10467 object as needed.
10468
9d3b86f6
ILT
104692010-01-07 Dmitry Gorbachev <d.g.gorbachev@gmail.com>
10470 Ian Lance Taylor <iant@google.com>
10471
10472 PR 11019
10473 * object.cc: Instantiate Xindex::initialize_symtab_xindex and
10474 Xindex::read_symtab_xindex.
10475
bb0d3eb0
DK
104762010-01-07 Doug Kwan <dougkwan@google.com>
10477
10478 * arm.cc (Insn_template::Type): New enum value THUMB16_SPECIAL_TYPE.
10479 (Insn_template::thumb16_bcond_insn): New method declaration.
10480 (Insn_template): Fix spelling.
10481 (Stub::thumb16_special): New method declaration.
10482 (Stub::do_write): Define virtual method which was previously pure
10483 virtual.
10484 (Stub::do_thumb16_special): New method declaration.
10485 (Stub::do_fixed_endian_write): New template member.
10486 (Reloc_stub::do_write): Remove.
10487 (Reloc_stub::do_fixed_endian_write): Remove.
10488 (Cortex_a8_stub): New class definition.
10489 (Stub_factory::make_cortex_a8_stub): New method definition.
10490 (Stub_factory::Stub_factory): Add missing static storage class
10491 qualifier for elf32_arm_stub_a8_veneer_blx.
10492
ffeef7df
ILT
104932010-01-07 Ian Lance Taylor <iant@google.com>
10494
dc3f80fe
ILT
10495 PR 10980
10496 * options.h (class General_options): Add --warn-unresolved-symbols
10497 and --error-unresolved-symbols.
10498 * errors.cc (Errors::undefined_symbol): Implement
10499 --warn-unresolved-symbols.
10500
ffeef7df
ILT
10501 * options.h (class General_options): Add -z text and -z textoff.
10502 * layout.cc (Layout::finish_dynamic_section): Implement -z text.
10503
f1ec9ded
ST
105042010-01-06 Sriraman Tallam <tmsriram@google.com>
10505
10506 * gc.h (Garbage_collection::Cident_section_map): New typedef.
10507 (Garbage_collection::cident_sections): New function.
10508 (Garbage_collection::add_cident_section): New function.
10509 (Garbage_collection::cident_sections_): New member.
10510 (gc_process_relocs): Add references to sections whose names are C
10511 identifiers.
10512 * gold.h (cident_section_start_prefix): New constant.
10513 (cident_section_stop_prefix): New constant.
10514 (is_cident): New function.
10515 * layout.cc (Layout::define_section_symbols): Replace string constants
10516 with the newly defined constants.
10517 * object.cc (Sized_relobj::do_layout): Track sections whose names are
10518 C identifiers.
10519 * testsuite/Makefile.am: Add gc_orphan_section_test.
10520 * testsuite/Makefile.in: Regenerate.
10521 * testsuite/gc_orphan_section_test.cc: New file.
10522 * testsuite/gc_orphan_section_test.sh: New file.
10523
6eda8c29
ILT
105242010-01-06 Ian Lance Taylor <iant@google.com>
10525
b9674e17
ILT
10526 PR 10980
10527 * options.h (class General_options): Add --warn-shared-textrel.
10528 * layout.cc (Layout::finish_dynamic_section): Implement
10529 --warn-shared-textrel.
10530
6eda8c29
ILT
10531 PR 10980
10532 * options.h (class General_options): Add --warn-multiple-gp.
10533
32dcd44e
ILT
105342010-01-06 Viktor Kutuzov <vkutuzov@accesssoftek.com>
10535
10536 * Makefile.am (incremental_dump_DEPENDENCIES): Remove
10537 $(THREADSLIB) and $(LIBDL).
10538 * Makefile.in: Rebuild.
10539
a192ba05
ILT
105402010-01-06 Ian Lance Taylor <iant@google.com>
10541
10542 PR 10980
10543 * options.cc (General_options::parse_section_start): New function.
10544 (General_options::section_start): New function.
10545 (General_options::General_options): Initialize all members.
10546 * options.h: Include <map>
10547 (class General_options): Add --section-start. Add section_starts_
10548 member.
10549 * layout.cc (Layout::attach_allocated_section_to_segment): If
10550 --section-start was used, set the address of the segment. Remove
10551 local sort_sections.
10552 (Layout::relaxation_loop_body): If the address of the load segment
10553 has been set by --section-start, don't use it.
10554 * output.h (Output_segment::update_flags_for_output_section): New
10555 function.
10556 * output.cc (Output_segment::add_output_section): Call
10557 update_flags_for_output_section.
10558
dde3f402
ILT
105592010-01-05 Ian Lance Taylor <iant@google.com>
10560
62dfdd4d
ILT
10561 PR 10980
10562 * options.h (class General_options): Add --undefined-version.
10563 * script.cc (struct Version_expression): Add was_matched_by_symbol
10564 field.
10565 (Version_script_info::matched_symbol): New function.
10566 (Version_script_info::get_symbol_version_helper): Call
10567 matched_symbol.
10568 (Version_script_info::check_unmatched_names): New function.
10569 * script.h (class Version_script_info): Update declarations.
10570 * gold.cc (queue_middle_tasks): Handle --no-undefined-version.
10571
9c4ae156
ILT
10572 * options.h (class General_options): Use DEFINE_bool_alias for
10573 allow_multiple_definition.
10574 * resolve.cc (Symbol_table::should_override): Don't test
10575 allow_multiple_definition.
10576
dde3f402
ILT
10577 PR 10980
10578 * options.h (class General_options): Add --cref.
10579 * main.cc (main): Print cref table if --cref. Don't close mapfile
10580 until after printing cref table.
10581 * cref.cc: Include "symtab.h".
10582 (class Cref_inputs): Define Cref_table_compare and Cref_table.
10583 (Cref_table_compare::operator()): New function.
10584 (Cref_inputs::gather_cref): New function.
10585 (filecol): New static const.
10586 (Cref_inputs::print_cref): New function.
10587 (Cref::print_cref): New function.
10588 * cref.h: Include <cstdio>.
10589 (class Cref): Update declarations.
10590 * mapfile.h (Mapfile::file): New function.
10591 * object.h (class Object): Define Symbols. Declare virtual
10592 do_get_global_symbols.
10593 (Object::get_global_symbols): New function.
10594 * object.cc (Input_objects::add_object): Pass object to cref_ if
10595 --cref.
10596 (Input_objects::archive_start): Likewise.
10597 (Input_objects::archive_stop): Likewise.
10598 (Input_objects::print_cref): New function.
10599 * dynobj.h (Sized_dynobj::do_get_global_symbols): New function.
10600 * dynobj.cc (big_endian>::do_add_symbols): Create symbols_ if
10601 --cref.
10602 * plugin.cc (Sized_pluginobj::do_get_global_symbols): New
10603 function.
10604 * plugin.h (class Sized_pluginobj): Update declarations.
10605
8781f709
ILT
106062010-01-05 Ian Lance Taylor <iant@google.com>
10607
10608 * symtab.cc (Symbol_table::add_from_object): Rename def parameter
10609 to is_default_version. Rename insdef to insdefault.
10610 (Symbol_table::add_from_relobj): Rename def to is_default_version
10611 and local to is_forced_local.
10612 (Symbol_table::add_from_pluginobj): Likewise.
10613 (Symbol_table::add_from_dynobj): Likewise.
10614 (Symbol_table::define_special_symbol): Rename insdef to
10615 insdefault.
10616
fe35d28d
ILT
106172010-01-04 Ian Lance Taylor <iant@google.com>
10618
30bc8c46
ILT
10619 PR 10980
10620 * options.h (class General_options): Add
10621 --allow-multiple-definition and -z muldefs.
10622 * resolve.cc (Symbol_table::should_override): Don't warn about a
10623 multiple symbol definition if --allow-multiple-definition or -z
10624 muldefs.
10625
7eaea549
ILT
10626 PR 10980
10627 * options.h (class General_options): Add --add-needed and
10628 --copy-dt-needed-entries. Tweak --as-needed help entry.
10629 * object.cc (Input_objects::check_dynamic_dependencies): Give an
10630 error if --copy-dt-needed-entries aka --add-needed is used and
10631 would cause a change in behaviour.
10632
fe35d28d
ILT
10633 PR 10980
10634 * options.h (class General_options): Add -G as a short version of
10635 --shared. Add no-op options -assert, -g, and -i.
10636
55a2bb35
ST
106372010-01-04 Sriraman Tallam <tmsriram@google.com>
10638
10639 * gc.h (gc_process_relocs): Call is_section_foldable_candidate to
10640 check for .text or .gnu.linkonce.t sections.
10641 * icf.cc (Icf::find_identical_sections): Ditto.
10642 Change the detection for mangled function name within the section
10643 name.
10644 * icf.h (is_section_foldable_candidate): New function.
10645
719328e1
ILT
106462009-12-30 Ian Lance Taylor <iant@google.com>
10647
10648 PR 10980
10649 * options.h (class General_options): Permit two dashes with
10650 --retain-symbols-file.
10651
d7bb5745
ILT
106522009-12-30 Ian Lance Taylor <iant@google.com>
10653
403a15dd
ILT
10654 PR 10979
10655 * layout.cc (Layout::relaxation_loop_body): If -Ttext was used,
10656 don't put the file header and segment headers in the text
10657 segment.
10658
eda294df
ILT
10659 PR 10979
10660 * common.cc (Sort_commons::operator()): Stabilize sort when both
10661 entries are NULL.
10662 (Symbol_table::do_allocate_commons_list): When allocating common
10663 symbols, skip a symbol which is no longer common.
10664 * symtab.h (Symbol::is_common): Test whether the symbol comes from
10665 an object before checking its type.
10666 * testsuite/common_test_2.c: New file.
10667 * testsuite/common_test_3.c: New file.
10668 * testsuite/Makefile.am (check_PROGRAMS): Add common_test_2.
10669 (common_test_2_SOURCES, common_test_2_DEPENDENCIES): Define.
10670 (common_test_2_LDFLAGS, common_test_2_LDADD): Define.
10671 (common_test_2_pic.o, common_test_2.so): New targets.
10672 (common_test_3_pic.o, common_test_3.so): New targets.
10673 * testsuite/Makefile.in: Rebuild.
10674
d7bb5745
ILT
10675 PR 10979
10676 * script.cc (read_input_script): If we see a new SECTIONS clause,
10677 and we have added an input section, give an error.
10678 * layout.h (class Layout): Add have_added_input_section function.
10679 Add have_added_input_section_ field.
10680 * layout.cc (Layout::Layout): Initialize
10681 have_added_input_section_.
10682 (Layout::layout): Set have_added_input_section_.
10683 (Layout::layout_eh_frame): Likewise.
10684
fc59c572
ILT
106852009-12-30 Ian Lance Taylor <iant@google.com>
10686
10687 PR 10931
10688 * options.h (class General_options): Add --sort-common option.
10689 * symtab.h (class Symbol_table): Define Sort_commons_order enum.
10690 * common.cc (Sort_common): Add sort_order parameter to
10691 constructor. Add sort_order_ field.
10692 (Sort_commons::operator): Check sort_order_.
10693 (Symbol_table::allocate_commons): Determine the sort order.
10694 (Symbol_table::do_allocate_commons): Add sort_order parameter.
10695 Change all callers.
10696 (Symbol_table::do_allocate_commons_list): Likewise.
10697
1c74fab0
ILT
106982009-12-30 Ian Lance Taylor <iant@google.com>
10699
10700 PR 10916
10701 * symtab.cc (Symbol_table::add_from_relobj): When not exporting
10702 symbols from this object, don't change the visibility of an
10703 undefined symbol.
10704 * testsuite/exclude_libs_test_1.c (lib1_ref): New function.
10705
6affe781
ILT
107062009-12-30 Ian Lance Taylor <iant@google.com>
10707
10708 PR 10861
10709 * script.h (class Version_script_info): Define Language enum.
10710 Update declarations. Define Glob, Exact, and Lookup types. Add
10711 new fields globals_, locals_, and is_finalized_.
10712 * script.cc: Various formatting fixes.
10713 (class Parser_closure): Change language_stack_ from a vector of
10714 std::string to one of Version_script_info::Language. Adjust all
10715 uses accordingly.
10716 (class Lazy_demangler): Remove.
10717 (struct Version_expression): Change language from std::string to
10718 Version_script_info::Language.
10719 (Version_script_info::Version_script_info): New function.
10720 (Version_script_info::~Version_script_info): Don't call clear.
10721 (Version_script_info::finalize): New function.
10722 (Version_script_info::build_lookup_tables): New function.
10723 (Version_script_info::build_expression_list_lookup): New
10724 function.
10725 (Version_script_info::get_symbol_version_helper): Rewrite to use
10726 lookup tables.
10727 (Version_script_info::print_expression_list): Adjust to use
10728 Version_script_info::Language.
10729 (script_push_lex_into_version_mode): Check that the version script
10730 has not been finalized.
10731 (version_script_push_lang): Change language string to
10732 Version_script_info::Language.
10733 * options.cc (Command_line::version_script): New function.
10734 * options.h (class General_options): Add finalize_dynamic_list
10735 function. Change version_script from declaration to definition.
10736 * testsuite/ver_test_4.script: Remove duplicate def of t2_2.
10737 * testsuite/version_script.map: Remove duplicate def of foo.
10738 * testsuite/Makefile.am (ver_matching_def.so): Depend upon
10739 version_script.map.
10740 * testsuite/Makefile.in: Rebuild.
10741
818bf354
ILT
107422009-12-30 Ian Lance Taylor <iant@google.com>
10743
10744 PR 10843
10745 * target-reloc.h (relocate_for_relocatable): When copying a reloc,
10746 if the input symbol index is 0, make the output symbol index 0.
10747
ebcc8304
ILT
107482009-12-30 Ian Lance Taylor <iant@google.com>
10749
10750 PR 10670
10751 * options.h (class General_options): Add -x/--discard-all.
10752 * object.cc (Sized_relobj::do_count_local_symbols): Handle
10753 --discard-all. If the local symbol needs a dynamic entry, check
10754 that before handling --discard-locals.
10755
176fe33f
ILT
107562009-12-30 Ian Lance Taylor <iant@google.com>
10757
bb321bb1
ILT
10758 PR 10450
10759 * output.cc (Output_segment::Output_segment): If PT_TLS, set the
10760 flags to PF_R.
10761 (Output_segment::add_output_section): Don't change the flags if
10762 the type is PT_TLS.
10763
176fe33f
ILT
10764 PR 10450
10765 * dynobj.cc (Dynobj::create_gnu_hash_table): Add symbols to the
10766 GNU hash table if they need a dynamic value. Otherwise, don't add
10767 them if they are defined in a dynamic object or are forced local.
10768
e8cd95c7
ILT
107692009-12-29 Ian Lance Taylor <iant@google.com>
10770
1b81fb71
ILT
10771 PR 10450
10772 * layout.cc (Layout::create_dynamic_symtab): Only set entsize of
10773 .gnu.hash table for a 32-bit target.
10774
8d6d383d
ILT
10775 PR 10450
10776 * symtab.h (Symbol::needs_dynsym_entry): A symbol in both a
10777 regular and a dynamic object only needs a dynamic symbol table
10778 entry if it is externally visible.
10779
e785ec03
ILT
10780 PR 10450
10781 * i386.cc (class Target_i386): Initialize global_offset_table_ in
10782 constructor. Add global_offset_table_ field.
10783 (Target_i386::got_section): Set global_offset_table_.
10784 (Target_i386::do_finalize_sections): Set global_offset_table_
10785 size.
10786 * x86_64.cc (class Target_x86_64): Initialize global_offset_table_
10787 in constructor. Add global_offset_table_ field.
10788 (Target_x86_64::got_section): Set global_offset_table_.
10789 (Target_x86_64::do_finalize_sections): Set global_offset_table_
10790 size.
10791
1a2dff53
ILT
10792 * layout.cc (Layout::Layout): Initialize increase_relro_.
10793 (Layout::get_output_section): Add is_relro, is_last_relro, and
10794 is_first_non_relro parameters. Change all callers.
10795 (Layout::choose_output_section): Likewise.
10796 (Layout::add_output_section_data): Likewise.
10797 (Layout::make_output_section): Likewise.
10798 (Layout::set_segment_offsets): Clear increase_relro when using a
10799 linker script.
10800 * layout.h (class Layout): Add increase_relro method. Add
10801 increase_relro_ field. Update declarations.
10802 * output.cc (Output_section::Output_section): Initialize
10803 is_last_relro_ and is_first_non_relro_.
10804 (Output_segment::add_output_section): Group relro sections is
10805 do_sort is true. Handle is_last_relro and is_first_non_relro.
10806 (Output_segment::maximum_alignment): Remove relro handling.
10807 (Output_segment::set_section_addresses): Add increase_relro
10808 parameter. Change all callers. Add initial alignment to align
10809 relro sections on separate page. Remove old relro handling.
10810 (Output_segment::set_section_list_addresses): Remove in_relro
10811 parameter. Change all callers.
10812 (Output_segment::set_offset): Add increase parameter. Change all
10813 callers. Remove old relro handling.
10814 * output.h (class Output_section): Add new methods: is_last_relro,
10815 set_is_last_relro, is_first_non_relro, set_is_first_non_relro.
10816 Add is_last_relro_ and is_first_non_relro_ fields.
10817 * i386.cc (Target_i386::got_section): Don't call set_is_relro.
10818 Create separate .got.plt section. Call increase_relro.
10819 * x86_64.cc (Target_x86_64::got_section): Likewise.
10820 * testsuite/relro_script_test.t: Add .got.plt.
10821
f0ba79e2
ILT
10822 PR 10450
10823 * layout.cc (Layout::Layout): Initialize dynamic_symbol_ field.
10824 (Layout::create_initial_dynamic_sections): Set dynamic_symbol_.
10825 (Layout::finalize): Call set_dynamic_symbol_size.
10826 (Layout::set_dynamic_symbol_size): New function.
10827 * layout.h (class Layout): Add dynamic_symbol_ field. Declare
10828 set_dynamic_symbol_size.
10829
e8cd95c7
ILT
10830 PR 10450
10831 * output.h (class Output_section): Add is_entsize_zero_ field.
10832 * output.cc (Output_section::Output_section): Initialize
10833 is_entsize_zero_.
10834 (Output_section::set_entsize): If two different entsizes are
10835 requested, force it to zero.
10836 (Output_section::add_input_section): Set flags for .debug_str
10837 before updating section flags. Set entsize.
10838 (Output_section::update_flags_for_input_section): Set SHF_MERGE
10839 and SHF_STRING if all input sections have those flags.
10840
3e1b9a8a
RÁE
108412009-12-29 Rafael Espindola <espindola@google.com>
10842
10843 * main.cc (main): Fix the sys time reporting.
e8cd95c7
ILT
10844 * workqueue.cc (Workqueue::find_and_run_task): Fix the sys time
10845 reporting.
3e1b9a8a 10846
3dcad376
ST
108472009-12-29 Sriraman Tallam <tmsriram@google.com>
10848
10849 * options.cc (General_options::parse_version): Allow -v to exit
10850 without an error if there is nothing to link.
10851
084e2665
ILT
108522009-12-29 Ian Lance Taylor <iant@google.com>
10853
10854 * configure.ac: Set the MCMODEL_MEDIUM conditional to false if
10855 using a version of gcc before 4.1.
10856 * configure: Rebuild.
10857
250acde3
CD
108582009-12-28 Chris Demetriou <cgd@google.com>
10859
10860 * attributes.cc (Output_attributes_section_data::do_write): Use
10861 std::vector::front rather than std::vector::data.
10862
99fff23b
ILT
108632009-12-28 Ian Lance Taylor <iant@google.com>
10864
10865 * symtab.h (class Symbol_table): Add enum Defined.
10866 * resolve.cc (Symbol_table::should_override): Add defined
10867 parameter. Change all callers. Test whether object is NULL
10868 before calling a method on it.
10869 (Symbol_table::report_resolve_problem): Add defined parameter.
10870 Change all callers.
10871 (Symbol_table::should_override_with_special): Likewise.
10872 * symtab.cc (Symbol_table::define_in_output_data): Add defined
10873 parameter. Change all callers.
10874 (Symbol_table::do_define_in_output_data): Likewise.
10875 (Symbol_table::define_in_output_segment): Likewise.
10876 (Symbol_table::do_define_in_output_segment): Likewise.
10877 (Symbol_table::define_as_constant): Likewise.
10878 (Symbol_table::do_define_as_constant): Likewise.
10879 * script.h (class Symbol_assignment): Add is_defsym parameter to
10880 constructor; change all callers.
10881 * script.cc (Script_options::add_symbol_assignment): Add is_defsym
10882 parameter. Change all callers. Add is_defsym_ field.
10883 (class Parser_closure): Add parsing_defsym parameter to
10884 constructor; change all callers. Add parsing_defsym accessor
10885 function. Add parsing_defsym_ field.
10886
556bd683
ILT
108872009-12-28 Ian Lance Taylor <iant@google.com>
10888
10889 * gold.cc (queue_middle_tasks): Fix formatting.
fa618ee4 10890 * object.cc (Relobj::is_section_name_included): Likewise.
556bd683 10891
1782c879
ILT
108922009-12-23 Ian Lance Taylor <iant@google.com>
10893
10894 * i386.cc (Target_i386::do_calls_non_split): Recognize
10895 -fsplit-stack prologue for a function with a static chain.
cbc999b9
ILT
10896 * x86_64.cc (Target_x86_64::do_calls_non_split): Recognize
10897 -fsplit-stack prologue when using %r11.
1782c879 10898
329ca2b1
ST
108992009-12-21 Sriraman Tallam <tmsriram@google.com>
10900
10901 * options.cc (General_options::parse_version): Make -v continue and do
10902 the link like GNU ld does.
10903
d675ff46
RÁE
109042009-12-17 Rafael Avila de Espindola <espindola@google.com>
10905
10906 * Makefile.am (CCFILES): Add timer.cc.
10907 (HFILES): Add timer.h.
10908 * configure.ac: Check for sysconf and times.
10909 * main.cc: include timer.h.
10910 (main): Use Timer instead of get_run_time.
10911 * timer.cc: New.
10912 * timer.h: New.
10913 * workqueue.cc: include timer.h.
10914 (Workqueue::find_and_run_task):
10915 Report user, sys and wall time.
10916 * Makefile.in: Regenerate.
10917 * config.in: Regenerate.
10918 * configure: Regenerate.
10919
d6344fb5
DK
109202009-12-16 Doug Kwan <dougkwan@google.com>
10921
10922 * arm.cc (Arm_relobj::scan_sections_for_stubs): Exclude ICF-eliminated
10923 sections.
10924 * object.cc (Sized_relobj::do_finalize_local_symbols): Handle
10925 relaxed input sections.
10926 * output.cc (Output_section::find_relaxed_input_section): Change
10927 return type to Output_relaxed_input_section pointer. Adjust code
10928 for new type of relaxed_input_section_map_.
10929 * output.h (Output_section::find_relaxed_input_section): Change
10930 return type to Output_relaxed_input_section pointer.
10931 (Output_section::Output_relaxed_input_section_by_input_section_map):
10932 New type.
10933 (Output_section::relaxed_input_section_map_): Change type to
10934 Output_section::Output_relaxed_input_section_by_input_section_map.
10935 * symtab.cc (Symbol_table::compute_final_value): Handle relaxed
10936 input section.
10937
0e0d5469
ILT
109382009-12-15 Ian Lance Taylor <iant@google.com>
10939
10940 * layout.cc (Layout::create_shstrtab): Only write out after input
10941 sections if we are compressing debug sections.
10942
0649a889
ILT
109432009-12-15 Ian Lance Taylor <iant@google.com>
10944
10945 * archive.cc (Archive::add_symbols): Only look up a symbol without
10946 a version if there is, in fact, a version.
10947
2ea97941
ILT
109482009-12-14 Ian Lance Taylor <iant@google.com>
10949
10950 Revert -Wshadow changes, all changes from:
10951 2009-12-11 Doug Kwan <dougkwan@google.com>
10952 2009-12-11 Nick Clifton <nickc@redhat.com>
10953 * configure.ac: Remove -Wshadow when setting WARN_CXXFLAGS.
10954
b0eec2cc
DK
109552009-12-11 Doug Kwan <dougkwan@google.com>
10956
10957 * arm.cc (Target_arm::do_finalize_sections): Fix build breakage
10958 due to -Wshadow.
10959 * attributes.cc (Object_attribute::size): Ditto.
10960 (Attributes_section_data::size): Ditto.
10961 (Attributes_section_data::Attributes_section_data): Ditto.
10962 (Output_attributes_section_data::do_write): Ditto.
10963 * attributes.h (Object_attribute::set_type): Ditto.
10964 * testsuite/tls_test_main.cc (safe_lock, safe_unlock): Ditto.
10965
91d6fa6a
NC
109662009-12-11 Nick Clifton <nickc@redhat.com>
10967
10968 * archive.cc: Fix shadowed variable warnings.
10969 * arm.cc: Likewise.
10970 * compressed_output.cc: Likewise.
10971 * compressed_output.h: Likewise.
10972 * configure: Likewise.
10973 * dwarf_reader.cc: Likewise.
10974 * dynobj.cc: Likewise.
10975 * dynobj.h: Likewise.
10976 * ehframe.cc: Likewise.
10977 * ehframe.h: Likewise.
10978 * errors.cc: Likewise.
10979 * expression.cc: Likewise.
10980 * fileread.cc: Likewise.
10981 * fileread.h: Likewise.
10982 * freebsd.h: Likewise.
10983 * i386.cc: Likewise.
10984 * icf.cc: Likewise.
10985 * incremental.h: Likewise.
10986 * layout.cc: Likewise.
10987 * layout.h: Likewise.
10988 * mapfile.cc: Likewise.
10989 * merge.cc: Likewise.
10990 * merge.h: Likewise.
10991 * object.cc: Likewise.
10992 * object.h: Likewise.
10993 * options.h: Likewise.
10994 * output.cc: Likewise.
10995 * output.h: Likewise.
10996 * parameters.cc: Likewise.
10997 * plugin.cc: Likewise.
10998 * powerpc.cc: Likewise.
10999 * reduced_debug_output.cc: Likewise.
11000 * reduced_debug_output.h: Likewise.
11001 * reloc.cc: Likewise.
11002 * reloc.h: Likewise.
11003 * resolve.cc: Likewise.
11004 * script-sections.cc: Likewise.
11005 * script.cc: Likewise.
11006 * script.h: Likewise.
11007 * sparc.cc: Likewise.
11008 * symtab.cc: Likewise.
11009 * symtab.h: Likewise.
11010 * target-select.cc: Likewise.
11011 * target-select.h: Likewise.
11012 * token.h: Likewise.
11013 * workqueue.cc: Likewise.
11014 * workqueue.h: Likewise.
11015 * x86_64.cc: Likewise.
11016
a0351a69
DK
110172009-12-10 Doug Kwan <dougkwan@google.com>
11018
11019 * arm.cc (attributes.h): New include.
11020 (Arm_relobj::Arm_relobj): Initialize attributes_section_data_.
11021 (Arm_relobj::~Arm_relobj): Delete object pointed by
11022 attributes_section_data_.
11023 (Arm_relobj::attributes_section_data): New method definition.
11024 (Arm_relobj::attributes_section_data_): New data member declaration.
11025 (Arm_dynobj::Arm_dynobj): Initialize attributes_section_data_.
11026 (Arm_dynobj::~Arm_dynobj): Delete object pointed by
11027 attributes_section_data_.
11028 (Arm_dynobj::attributes_section_data): New method definition.
11029 (Arm_dynobj::attributes_section_data_): New data member declaration.
11030 (Target_arm::Target_arm): Initialize attributes_section_data_. Change
11031 initialization value of may_use_blx_ to false.
2e702c99 11032 (Target_arm::using_thumb2, Target_arm::using_thumb_only,
a0351a69
DK
11033 Target_arm::may_use_arm_nop, Target_arm::may_use_thumb2_nop): Use
11034 object attributes to compute results instead of hard-coding.
11035 (Target_arm::do_attribute_arg_type, Target_arm::do_attributes_order,
11036 Target_arm::get_secondary_compatible_arch,
11037 Target_arm::set_secondary_compatible_arch
11038 Target_arm::tag_cpu_arch_combine, Target_arm::aeabi_enum_name,
11039 Target_arm::tag_cpu_name_value, Target_arm::merge_object_attributes):
11040 New method declarations.
11041 (Target_arm::get_aeabi_object_attribute): New method definition.
11042 (Target_arm::attributes_section_data_): New data member declaration.
11043 (read_arm_attributes_section): New template definition.
11044 (Arm_relobj::do_read_symbols): Read attributes section if it exists.
11045 (Arm_dynobj::do_read_symbols): Ditto.
11046 (Target_arm::do_finalize_sections): Merge attributes sections from
11047 input. Check for BLX use after attributes section merging.
11048 Fix __exidx_start and __exidx_end visibility. Create an
11049 .ARM.attributes section if necessary.
11050 (Target_arm::get_secondary_compatible_arch,
11051 Target_arm::set_secondary_compatible_arch,
11052 Target_arm::tag_cpu_arch_combine, Target_arm::aeabi_enum_name,
11053 Target_arm::tag_cpu_name_value, Target_arm::merge_object_attributes,
e1df38aa 11054 Target_arm::do_attribute_arg_type, Target_arm::do_attributes_order):
a0351a69
DK
11055 New method definitions.
11056
b59befec
ILT
110572009-12-09 Ian Lance Taylor <iant@google.com>
11058
11059 * plugin.cc (Plugin::load): Don't cast from void* to a function
11060 pointer.
11061
1276bc89
ILT
110622009-12-09 Ian Lance Taylor <iant@google.com>
11063
11064 * dynobj.cc (Sized_dynobj::do_read_symbols): Clear version
11065 information fields.
11066
2f2de248
L
110672009-12-09 H.J. Lu <hongjiu.lu@intel.com>
11068
11069 * testsuite/Makefile.am (two_file_shared_1_pic_2_test_DEPENDENCIES):
11070 Replace two_file_shared_1.so with two_file_shared_2.so.
11071 * testsuite/Makefile.in: Regenerated.
11072
4f787271
DK
110732009-12-08 Doug Kwan <dougkwan@google.com>
11074
11075 * Makefile.am (CCFILES): Add attributes.cc and int_encoding.cc.
11076 (HFILES): Add attributes.h and int_encoding.h.
11077 * Makefile.in: Regenerate.
11078 * dwarf_reader.cc (read_unsigned_LEB_128, read_signed_LEB_128): Move
11079 function definitions to int_encoding.cc
11080 * dwarf_reader.h (read_unsigned_LEB_128, read_signed_LEB_128): Move
11081 prototypes to int_encoding.h
11082 * reduced_debug_output.cc (int_encoding.h): New include.
11083 (write_unsigned_LEB_128, get_length_as_unsigned_LEB_128): Move
11084 function definitions to int_encoding.cc
11085 (insert_into_vector, read_from_pointer): Move template definitions to
11086 int_encoding.h
11087 * attributes.cc: New file.
11088 * attributes.h: New file.
11089 * int_encoding.cc: New file.
11090 * int_encoding.h: New file.
11091
20b52f1a
RÁE
110922009-12-07 Rafael Avila de Espindola <espindola@google.com>
11093
11094 PR gold/11055
11095 * incremental-dump.cc (dump_incremental_inputs): New.
11096 (main): Use dump_incremental_inputs.
11097
53d7974c
L
110982009-12-07 H.J. Lu <hongjiu.lu@intel.com>
11099
11100 PR gold/10893
11101 * i386.cc (Target_i386::Scan::globa): Use is_func instead of
11102 checking elfcpp::STT_FUNC.
11103 (Target_i386::Relocate::relocate): Likewise.
11104 * x86_64.cc (Target_x86_64::Scan::global): Likewise.
11105
11106 * symtab.cc (Symbol_table::sized_write_symbol): Turn IFUNC
11107 symbols from shared libraries into normal FUNC symbols.
11108
11109 * symtab.h (Symbol): Add is_func and use it.
11110
05a352e6
DK
111112009-12-05 Doug Kwan <dougkwan@google.com>
11112
11113 * arm.cc (Target_arm::arm_info): Initialize new fields
11114 attributes_section and attributes_vendor.
11115 * i386.cc (Target_i386::i386_info): Same.
11116 * object.cc (Sized_relobj::do_layout): Skip attribute section.
11117 * gold/powerpc.cc (Target_powerpc::powerpc_info): Initialize new
11118 fields attributes_section and attributes_vendor.
53d7974c 11119 * sparc.cc (Target_sparc::sparc_info): Same.
05a352e6
DK
11120 * target.h (Target::attributes_section, Target::attributes_vendor,
11121 Target::is_attributes_section, Target::attribute_arg_type,
11122 Target::attributes_order): New method definitions.
11123 (Target::Target_info::attributes_section,
11124 Target::Target_info::attributes_vendor): New fields.
11125 (Target::do_attribute_arg_type, Target::do_attributes_order): New
11126 virtual method definitions.
11127 * x86_64.cc (Target_x86_64::x86_64_info): Initialize new fields
11128 attributes_section and attributes_vendor.
11129 * testsuite/testfile.cc (Target_test::test_target_info): Same.
11130
f4e5969c
DK
111312009-12-05 Doug Kwan <dougkwan@google.com>
11132
11133 * arm.cc: Update comments about interworking and stub generation.
11134 (Target_arm::Relocate::reloc_is_non_pic): Update list of relocations
11135 considered as non-PIC.
11136 (Arm_relocate_functions::base_abs): Fix formatting.
11137 (Arm_relocate_functions::got_prel): Fix comment. Change interface
11138 of function to use GOT entry address instead of offset.
11139 (Target_arm::Scan::global): Issue an error if a symbol would need a
11140 PLT does not get one because it is untyped. Remove code to create
11141 dynamic symbols for relative branches.
11142 (Target_arm::Relocate::relocate: Use 0 instead of false since function
11143 takes unsigned integer instead of boolean.
11144
1abce4a6
L
111452009-12-05 H.J. Lu <hongjiu.lu@intel.com>
11146
11147 * testsuite/Makefile.am (constructor_test_LDADD): New. Empty.
11148 (two_file_test_LDADD): Likewise.
11149 (common_test_1_LDADD): Likewise.
11150 (exception_test_LDADD) Likewise.
11151 (weak_test_LDADD): Likewise.
11152 (many_sections_test_LDADD): Likewise.
11153 (initpri1_LDADD): Likewise.
11154 (script_test_1_LDADD): Likewise.
11155 (script_test_2_LDADD): Likewise.
11156 (justsyms_LDADD): Likewise.
11157 (binary_test_LDADD): Likewise.
11158 (large_LDADD): Likewise.
11159 * testsuite/Makefile.in: Regenerated.
11160
adcf2816 111612009-12-04 H.J. Lu <hongjiu.lu@intel.com>
1abce4a6 11162
adcf2816
L
11163 * resolve.cc (symbol_to_bits): Treat STB_GNU_UNIQUE as STB_GLOBAL.
11164 (Symbol_table::override_with_special): Likewise.
11165 (Symbol_table::add_from_object): Likewise.
11166
28e67f5d
RÁE
111672009-12-04 Rafael Avila de Espindola <espindola@google.com>
11168
11169 * incremental.cc (Incremental_inputs::sized_create_inputs_section_data):
11170 Don't set the data_offset twice.
11171
ae10a101
RÁE
111722009-12-04 Rafael Avila de Espindola <espindola@google.com>
11173
11174 * testsuite/Makefile.in: Regenerate.
11175
f59f41f3
DK
111762009-12-03 Doug Kwan <dougkwan@google.com>
11177
11178 * arm.cc: Remove comment about missing .ARM.exidx section symbols.
11179 (Target_arm::do_finalize_sections): Add parameter for symbol table
11180 pointer. Add __exidx_start and __exidx_end symbols as appropriate.
11181 * i386.cc (Target_i386::do_finalize_sections): Add an additional
11182 parameter for symbol table pointer.
11183 * layout.cc (Layout::finalize): Call Target::finalize_sections with
11184 an additional parameter for a pointer to symbol table.
11185 * powerpc.cc (Target_powerpc::do_finalize_sections): Add an additional
11186 parameter for a symbol table pointer.
11187 * sparc.cc (Target_sparc::do_finalize_sections): Ditto.
11188 * target.h (Target::finalize_sections, Target::do_finalize_sections):
11189 Ditto.
11190 * x86_64.cc (Target_x86_64::do_finalize_sections): Add an additional
11191 parameter for a symbol table pointer.
11192
ca55d848
RÁE
111932009-12-03 Rafael Avila de Espindola <espindola@google.com>
11194
11195 * incremental.cc (Incremental_inputs_header)
11196 (Incremental_inputs_header_write, Incremental_inputs_entry)
11197 (Incremental_inputs_entry_write): Move ...
11198 * incremental.h (Incremental_inputs_header)
11199 (Incremental_inputs_header_write, Incremental_inputs_entry)
11200 (Incremental_inputs_entry_write): here.
11201
3aec4f9c
RÁE
112022009-12-02 Rafael Avila de Espindola <espindola@google.com>
11203
11204 * incremental.cc (make_sized_incremental_binary): Set the target.
11205 Error if it is incompatible.
11206 * output.h (Output_file): Add filename method.
11207
9c0ae74d
RÁE
112082009-12-02 Rafael Avila de Espindola <espindola@google.com>
11209
11210 * incremental.cc (Incremental_inputs_entry): Remove unused argument
11211 from the get_* methods.
11212
a45500ae
RÁE
112132009-12-02 Rafael Avila de Espindola <espindola@google.com>
11214
11215 * incremental-dump.cc (main): Check that the offeset of a script is 0.
11216 * incremental.cc (Incremental_inputs::sized_create_inputs_section_data):
11217 Write 0 for the data_offset of scripts.
11218
325e6408
RÁE
112192009-12-02 Rafael Avila de Espindola <espindola@google.com>
11220
11221 * testsuite/Makefile.am: Add the incremental_test.sh test.
11222 * testsuite/incremental_test.sh: New.
11223 * testsuite/incremental_test_1.c: New.
11224 * testsuite/incremental_test_2.c: New.
11225
954c3e2e
RÁE
112262009-12-01 Rafael Avila de Espindola <espindola@google.com>
11227
703d02da 11228 * incremental-dump.cc (main): Fix typos.
954c3e2e 11229
f8086623
RÁE
112302009-11-27 Rafael Avila de Espindola <espindola@google.com>
11231
11232 PR gold/11025
11233 * incremental-dump.cc (main): Use llu to print 64 bit values.
11234
3b0dd6ac
L
112352009-11-26 Per Øyvind Karlsen <peroyvind@mandriva.org>
11236 H.J. Lu <hongjiu.lu@intel.com>
11237
11238 * Makefile.am (incremental_dump_DEPENDENCIES): Add $(THREADSLIB)
11239 $(LIBDL).
11240 (incremental_dump_LDADD): Likewise.
11241 * Makefile.in: Regenerated.
11242
a6d1ef57 112432009-11-25 Doug Kwan <dougkwan@google.com>
e1df38aa 11244
a6d1ef57
DK
11245 Revert:
11246
11247 2009-11-25 Doug Kwan <dougkwan@google.com>
11248
11249 * arm.cc (Target_arm::Target_arm): Move method definition
11250 outside of class definition. Add code to handle
11251 --target1-rel, --target1-abs and --target2= options.
11252 (Target_arm::get_reloc_reloc_type): Change method to be
11253 non-static and const.
11254 (Target_arm::target1_is_rel_, Target_arm::target2_reloc_):
11255 New data member declaration.
11256 (Target_arm::Scan::local, Target_arm::Scan::global,
11257 Target_arm::Relocate::relocate,
11258 Target_arm::Relocatable_size_for_reloc::get_size_for_reloc):
11259 Adjust call to Target_arm::get_real_reloc_type.
11260 (Target_arm::get_real_reloc_type): Use command line options
11261 to determine real types of R_ARM_TARGET1 and R_ARM_TARGET2.
11262 * options.h (--target1-rel, --target1-abs, --target2): New
11263 ARM-only options.
11264
50aeb7d4
DK
112652009-11-25 Doug Kwan <dougkwan@google.com>
11266
11267 * arm.cc (Target_arm::Target_arm): Move method definition outside of
11268 class definition. Add code to handle --target1-rel, --target1-abs
11269 and --target2= options.
11270 (Target_arm::get_reloc_reloc_type): Change method to be non-static
11271 and const.
11272 (Target_arm::target1_is_rel_, Target_arm::target2_reloc_): New data
11273 member declaration.
11274 (Target_arm::Scan::local, Target_arm::Scan::global,
11275 Target_arm::Relocate::relocate,
11276 Target_arm::Relocatable_size_for_reloc::get_size_for_reloc): Adjust
11277 call to Target_arm::get_real_reloc_type.
11278 (Target_arm::get_real_reloc_type): Use command line options to
11279 determine real types of R_ARM_TARGET1 and R_ARM_TARGET2.
11280 * options.h (--target1-rel, --target1-abs, --target2): New ARM-only
11281 options.
11282
51938283
DK
112832009-11-25 Doug Kwan <dougkwan@google.com>
11284
11285 * arm.cc (Target_arm::may_use_thumb2_nop): New method definition.
11286 (Arm_relocate_functions::thumb_branch_common): New metod declaration.
11287 (Arm_relocate_functions::abs12, Arm_relocate_functions::abs16): Fix
11288 formatting.
11289 (Arm_relocate_functions::thm_call): Replace body with a call to
11290 Arm_relocate_functions::thumb_branch_common.
11291 (Arm_relocate_functions::thm_jump24,
11292 Arm_relocate_functions::thm_xpc22): New method definitions.
11293 (Arm_relocate_functions::thumb_branch_common): New method definition.
11294 (Reloc_stub::stbu_type_for_reloc): Fix incorrect uses of bit-wise-or
11295 operator.
11296 (Target_arm::Relocate::relocate): Adjust call to thm_call.
11297 Add code to handle R_ARM_THM_XPC22 and R_ARM_THM_JUMP24.
11298
e2b8f3c4
RÁE
112992009-11-24 Rafael Avila de Espindola <espindola@google.com>
11300
11301 * Makefile.am: Build incremental-dump
11302 * Makefile.in: Regenerate.
11303 * incremental-dump.cc: New.
11304 * incremental.cc (Incremental_inputs_header_data,
11305 Incremental_inputs_entry_data): Move to incremental.h
11306 * incremental.h: (Incremental_inputs_header_data,
11307 Incremental_inputs_entry_data): Move from incremental.cc
11308
bcba9aec
RÁE
113092009-11-24 Rafael Avila de Espindola <espindola@google.com>
11310
11311 * incremental.cc (Incremental_inputs_header,
11312 Incremental_inputs_header_write, Incremental_inputs_entry,
11313 Incremental_inputs_entry_write): Add a typedef with the data type.
11314
7c3afe08
RÁE
113152009-11-24 Rafael Avila de Espindola <espindola@google.com>
11316
11317 * incremental.cc (Incremental_inputs_header,
11318 Incremental_inputs_header_write, Incremental_inputs_entry,
11319 Incremental_inputs_entry_write): Update comment about which
11320 type has the filed descriptions.
11321
d204b6e9
DK
113222009-11-15 Doug Kwan <dougkwan@google.com>
11323
11324 * arm.cc (Target_arm::may_use_arm_nop): New method definition.
11325 (Arm_relocate_functions::arm_branch_common): Change method defintion
11326 in class definition to a method declaration and update list of formal
11327 parameters.
11328 (Arm_relocate_functions::plt32, Arm_relocate_functions::call,
11329 Arm_relocation_functions::jump24): Adjust call to
11330 Arm_relocate_functions::arm_branch_common. Update list of formal
11331 parameters.
11332 (Arm_relocate_functions::xpc25): New method definition.
11333 (Arm_relocate_functions::arm_branch_common): Move method defintion
11334 out from class definition. Use stubs for mode-switching and extending
11335 branch ranges.
11336 (Target_arm::Relocate::relocate): Handle weakly-undefined symbols
11337 specially. Change code to enable use of stubs in ARM branches.
11338
43d12afe
DK
113392009-11-10 Doug Kwan <dougkwan@google.com>
11340
11341 * arm.cc (Arm_relobj::do_relocate_sections): Remove options parameter
11342 in method declaration.
11343 (Target_arm::relocate_stub): New method declaration.
11344 (Target_arm::default_target): Change to return a pointer instead of
11345 a const reference.
11346 (Reloc_stub::stub_type_for_reloc): Adjust for the change in
11347 Target_arm::default_target.
11348 (Arm_Relobj::do_relocate_sections): Remove options paramater in
11349 method definition.
11350 (Target_arm::relocate_section): Adjust view.
11351 (Target_arm::relocate_stub): New method definition.
11352
ac33a407
DK
113532009-11-10 Doug Kwan <dougkwan@google.com>
11354
11355 * i386.cc (Target_i386::do_calls_non_split): Add a cast to avoid
11356 a format warning.
11357 * incremental.cc (open_incremental_binary): Initialized local
11358 variables to avoid warnings.
11359 * object.cc (make_elf_object): Ditto.
11360 * x86_64.cc (Target_x86_64::do_calls_non_split): Add a cast to avoid
11361 a format warning.
e1df38aa 11362
88ee28e9
L
11363009-11-09 H.J. Lu <hongjiu.lu@intel.com>
11364
11365 PR gold/10930
11366 * testsuite/plugin_test.c: Include "config.h".
11367
2daedcd6
DK
113682009-11-09 Doug Kwan <dougkwan@google.com>
11369
11370 * arm.cc (Target_arm::fake_relnum_for_stubs): New constant.
11371 (arm_symbol_value): Remove.
11372 (Arm_relocate_functions::arm_branch_common,
11373 Arm_relocate_functions::abs8, Arm_relocate_functions::thm_abs5,
11374 Arm_relocate_functions::abs12, Arm_relocate_functions::abs16,
11375 Arm_relocate_functions::abs32, Arm_relocate_functions::rel32,
11376 Arm_relocate_functions::thm_call, Arm_relocate_functions::plt32,
11377 Arm_relocate_functions::call, Arm_relocate_functions::jump24,
11378 Arm_relocate_functions::prel31, Arm_relocate_functions::mov_abs_nc,
11379 Arm_relocate_functions::movt_abs, Arm_relocate_functions::movw_abs_nc,
11380 Arm_relocate_functions::thm_mobw_abs_nc,
11381 Arm_relocate_functions::thm_mov_abs,
11382 Arm_relocate_functions::movw_prel_nc,
11383 Arm_relocate_functions::thm_movt_abs,
11384 Arm_relocate_functions::movt_prel,
11385 Arm_relocate_functions::thm_movw_prel_nc,
11386 Arm_relocate_functions::thm_movt_prel): Adjust callers of the above.
11387 (Target_arm::Relocate::relocate): Only decompose address into two
11388 parts if relocation type uses the thumb-bit and pass the actual
11389 bit instead of a flag indicating that the thumb-bit is used. Adjust
11390 calls to methods in Arm_relocate_functions for this change.
11391
1276bc89 113922009-11-08 Ian Lance Taylor <iant@google.com>
3e4afc80
ILT
11393
11394 PR 10925
11395 * reloc.cc: Instantiate
11396 Sized_relobj::initialize_input_to_output_maps and
11397 Sized_relobj:free_input_to_output_maps.
11398
e53ad1b5
ILT
113992009-11-06 Ian Lance Taylor <iant@google.com>
11400
11401 PR 10876
11402 * defstd.cc (in_segment): Set only_if_ref true for "end".
11403
eb44217c
DK
114042009-11-06 Doug Kwan <dougkwan@google.com>
11405
11406 * arm.cc (class Reloc_stub): Correct a comment.
11407 (Target_arm::Target_arm): Initialize arm_input_section_map_.
11408 (Target_arm::scan_section_for_stubs): New method declaration.
11409 (Target_arm::do_make_elf_object, Target_arm::do_make_output_section):
11410 Change methods from private to protected.
11411 (Target_arm::do_may_relax): New method definition.
11412 (Target_arm::do_relax, Target_arm::group_sections,
11413 Target_arm::scan_reloc_for_stub,
11414 Target_arm::scan_reloc_section_for_stubs): New method declarations.
11415 (Target_arm::arm_input_section_map_): New data member declaration.
11416 (Target_arm::scan_reloc_for_stub,
11417 Target_arm::scan_reloc_section_for_stubs,
11418 Target_arm::scan_section_for_stubs, Target_arm::group_sections,
11419 Target_arm::do_relax): New method definitions.
11420
5d329b7d
ILT
114212009-11-06 Mikolaj Zalewski <mikolaj@google.com>
11422
11423 * configure.ac: Check for (struct stat)::st_mtim
11424 * fileread.cc (File_read::get_mtime): Use st_mtim if available.
11425 * config.in: Regenerate.
11426 * configure: Regenerate.
11427
96a0d71b
ILT
114282009-11-05 Ian Lance Taylor <iant@google.com>
11429
11430 PR 10910
11431 * output.cc (Output_segment::add_output_section): Add missing
11432 return statement.
11433
594c8e5e
ILT
114342009-11-04 Ian Lance Taylor <iant@google.com>
11435
11436 PR 10880
11437 * object.h (class Object): Add is_needed and set_is_needed
11438 methods. Add is_needed_ field. Make bool fields into bitfields.
11439 * symtab.cc (Symbol_table::set_dynsym_indexes): If a symbol is
11440 defined in a dynamic object and referenced by a regular object,
11441 set is_needed for the dynamic object.
11442 * layout.cc (Layout::finish_dynamic_section): Don't add DT_NEEDED
11443 if the file is marked with as_needed and it is not needed.
11444
22b127cc
ILT
114452009-11-04 Ian Lance Taylor <iant@google.com>
11446
11447 PR 10887
11448 * arm.cc (Target_arm::do_finalize_sections): Don't add dynamic
11449 tags if data is discarded by linker script.
11450 * i386.cc (Target_i386::do_finalize_sections): Likewise.
11451 * powerpc.cc (Target_powerpc::do_finalize_sections): Likewise.
11452 * sparc.cc (Target_sparc::do_finalize_sections): Likewise.
11453 * x86_64.cc (Target_x86_64::do_finalize_sections): Likewise.
11454
f5c870d2
ILT
114552009-11-04 Ian Lance Taylor <iant@google.com>
11456
11457 * layout.cc (Layout::get_output_section): Add is_interp and
11458 is_dynamic_linker_section parameters. Change all callers.
11459 (Layout::choose_output_section): Likewise.
11460 (Layout::make_output_section): Likewise.
11461 (Layout::add_output_section_data): Add is_dynamic_linker_section
11462 parameter. Change all callers.
11463 * layout.h (class Layout): Update declarations.
11464 * output.h (class Output_section): Add is_interp, set_is_interp,
11465 is_dynamic_linker_section, set_is_dynamic_linker_section methods.
11466 Add is_interp_, is_dynamic_linker_section_ fields. Change
11467 generate_code_fills_at_write_ to a bitfield.
11468 * output.cc (Output_section::Output_sections): Initialize new
11469 fields.
11470 (Output_segment::add_output_section): Add do_sort parameter.
11471 Change all callers.
11472
1ae4d23b
ILT
114732009-11-03 Ian Lance Taylor <iant@google.com>
11474
11475 PR 10860
11476 * options.h (class General_options): Add --warn-common.
11477 * resolve.cc (Symbol_table::resolve): Handle --warn-common when
11478 merging two common symbols.
11479 (Symbol_table::should_override): Handle --warn-common when merging
11480 a common symbol with a defined symbol. Use report_resolve_problem
11481 for multiple definitions.
11482 (Symbol_table::report_resolve_problem): New function.
11483 * symtab.h (class Symbol_table): Declare report_resolve_problem.
11484
55da9579
DK
114852009-11-03 Doug Kwan <dougkwan@google.com>
11486
11487 * arm.cc (Target_arm::Target_arm): Initialize stub_tables_ and
11488 stub_factory_.
11489 (Target_arm::stub_factory): New method definition.
11490 (Target_arm::new_arm_input_section,
11491 Target_arm::find_arm_input_section, Target_arm::new_stub_table,
11492 Target_arm::reloc_uses_thumb_bit): New method declarations.
e1df38aa 11493 (Target_arm::Stub_table_list, Target_arm::Arm_input_section_map):
55da9579
DK
11494 New type definitions.
11495 (Target_arm::stub_tables_, Target_arm::stub_factory_): New data
11496 member declarations.
11497 (Target_arm::reloc_uses_thumb_bit, Target_arm::new_arm_input_section,
11498 Target_arm::find_arm_input_section, Target_arm::new_stub_table):
11499 New method definitions.
11500
37a9ac43
ILT
115012009-11-03 Ian Lance Taylor <iant@google.com>
11502
11503 * options.h (class General_options): Add --warn_constructors.
11504
b3d6a3d4
ILT
115052009-11-03 Ian Lance Taylor <iant@google.com>
11506
11507 PR 10893
11508 * defstd.cc (in_section): Add entries for __rel_iplt_start,
11509 __rel_iplt_end, __rela_iplt_start, __rela_iplt_end, and __stack.
11510
934b01dd
ILT
115112009-11-03 Ian Lance Taylor <iant@google.com>
11512
11513 PR 10895
11514 * po/Make-in ($(srcdir)/$(PACKAGE).pot): Pass -C and
11515 --msgid-bugs-address.
11516 (install-pdf): New target.
11517 (install-data_yes): Look up one directory to find mkinstalldirs.
11518
03c1939b
L
115192009-11-03 H.J. Lu <hongjiu.lu@intel.com>
11520
11521 * po/Make-in (.po.gmo): Don't generate .gmo files in source
11522 tree.
11523
ebd95253
DK
115242009-10-30 Doug Kwan <dougkwan@google.com>
11525
11526 * arm.cc (Stub_addend_reader): Fix bug in previouls check-in.
11527
e9bbb538
DK
115282009-10-30 Doug Kwan <dougkwan@google.com>
11529
11530 * arm.cc (Stub_addend_reader): New struct template definition
11531 and partial specializations.
11532 (Stub_addend_reader::operator()): New method definition for a
11533 partially specialized template.
11534
d5b40221
DK
115352009-10-30 Doug Kwan <dougkwan@google.com>
11536
11537 * arm.cc (Arm_relobj::processor_specific_flags): New method
11538 definition.
11539 (Arm_relobj::do_read_symbols): New method declaration.
11540 (Arm_relobj::processor_specific_flags_): New data member declaration.
11541 (Arm_dynobj): New class definition.
11542 (Target_arm::do_finalize_sections): Add input_objects parameter.
11543 (Target_arm::do_adjust_elf_header): New method declaration.
11544 (Target_arm::are_eabi_versions_compatible,
11545 (Target_arm::merge_processor_specific_flags): New method declaration.
11546 (Target_arm::do_make_elf_object): New overloaded method definitions
11547 and declaration.
11548 (Arm_relobj::do_read_symbols): New method definition.
11549 (Arm_dynobj::do_read_symbols): Ditto.
11550 (Target_arm::do_finalize_sections): Add input_objects parameters.
11551 Merge processor-specific flags from all input objects.
11552 (Target_arm::are_eabi_versions_compatible,
11553 Target_arm::merge_processor_specific_flags,
11554 Target_arm::do_adjust_elf_header, Target_arm::do_make_elf_object):
11555 New method definitions.
11556 * i386.cc (Target_i386::do_finalize_sections): Add unnamed
11557 Input_objects pointer type parameter.
11558 * layout.cc (Layout::finalize): Pass input objects to target's.
11559 finalize_sections function.
11560 * output.cc (Output_file_header::do_sized_write): Set ELF file
11561 header's processor-specific flags.
11562 * powerpc.cc (Target_powerpc::do_finalize_sections): Add unnamed
11563 Input_objects pointer type parameter.
11564 * sparc.cc (Target_sparc::do_finalize_sections): Same.
11565 * target.h (Input_objects): New forward class declaration.
11566 (Target::processor_specific_flags,
11567 Target::are_processor_specific_flags_sect): New method definitions.
11568 (Target::finalize_sections): Add input_objects parameter.
11569 (Target::Target): Initialize processor_specific_flags_ and
11570 are_processor_specific_flags_set_.
11571 (Target::do_finalize_sections): Add unnamed Input_objects pointer type
11572 parameter.
11573 (Target::set_processor_specific_flags): New method definition.
11574 (Target::processor_specific_flags_,
11575 Target::are_processor_specific_flags_set_): New data member
11576 declarations.
11577 * x86_64.cc (Target_x86_64::do_finalize_sections): Add unnamed
11578 Input_objects pointer type parameter.
11579
ebabffbd
DK
115802009-10-30 Doug Kwan <dougkwan@google.com>
11581
11582 * arm.cc: Use Arm_address instead of elfcpp::Elf_types<32>::Elf_Addr.
11583
ad0f2072
ILT
115842009-10-28 Ian Lance Taylor <iant@google.com>
11585
11586 * object.h (class Relobj): Drop options parameter from
11587 gc_process_relocs, scan_relocs, relocate, do_gc_process_relocs,
11588 do_scan_relocs, do_relocate. Change all callers.
11589 (class Sized_relobj): Drop options parameters from
11590 do_gc_process_relocs, do_scan_relocs, do_relocate,
11591 do_relocate_sections, relocate_sections, emit_relocs_scan,
11592 emit_relocs_scan_reltype. Change all callers.
11593 (struct Relocate_info): Remove options field and all references to
11594 it.
11595 * reloc.h (class Read_relocs): Remove options constructor
11596 parameter and options_ field. Change all callers.
11597 (class Gc_process_relocs, class Scan_relocs): Likewise.
11598 (class Relocate_task): Likewise.
11599 * target-reloc.h (scan_relocs): Remove options parameter. Change
11600 all callers.
11601 (scan_relocatable_relocs): Likewise.
11602 * target.h (class Sized_target): Remove options parameter from
11603 gc_process_relocs, scan_relocs, scan_relocatable_relocs. Change
11604 all callers.
11605 * gc.h (gc_process_relocs): Remove options parameter. Change all
11606 callers.
11607 * arm.cc: Update functions to remove options parameters.
11608 * i386.cc: Likewise.
11609 * powerpc.cc: Likewise.
11610 * sparc.cc: Likewise.
11611 * x86_64.cc: Likewise.
11612 * testsuite/testfile.cc: Likewise.
11613
8ffa3667
DK
116142009-10-28 Doug Kwan <dougkwan@google.com>
11615
11616 * arm.cc (Arm_relobj): New class definition.
e1df38aa 11617 (Arm_relobj::scan_sections_for_stubs,
8ffa3667
DK
11618 Arm_relobj::do_count_local_symbols, Arm_relobj::do_relocate_sections):
11619 New method definitions.
11620
40f36857
CC
116212009-10-28 Cary Coutant <ccoutant@google.com>
11622
11623 * plugin.h (Plugin::Plugin): Initialize cleanup_done_.
11624 (Plugin::cleanup_done_): New member.
11625 (Plugin_manager::Plugin_manager): Remove cleanup_done_.
11626 (Plugin_manager::cleanup_done_): Remove.
11627 (Plugin_manager::add_input_file): Edit error message.
11628 * plugin.cc (Plugin::cleanup): Test and set cleanup_done_.
11629 (Plugin_manager::cleanup): Remove use of cleanup_done_.
11630
2c849493
ILT
116312009-10-27 Mikolaj Zalewski <mikolajz@google.com>
11632
11633 * fileread.cc: (File_read::View::~View): Use the new
11634 data_ownership_ filed.
11635 (File_read::~File_read): Dispose the new whole_file_view_.
11636 (File_read::open): Mmap the whole file if needed.
11637 (File_read::open): Use whole_file_view_ instead of contents_.
11638 (File_read::find_view): Use whole_file_view_ if applicable.
11639 (File_read::do_read): Use whole_file_view_ instead of contents_.
11640 (File_read::make_view): Use whole_file_view_ instead of contents_,
11641 update File_read::View::View call.
11642 (File_read::find_or_make_view): Update File_read::View::View
11643 call.
11644 * fileread.h: (File_read::File_read): Initialize whole_file_view_,
11645 remove contents_
11646 (File_read::View::Data_ownership): New enum.
11647 (File_read::View::View): Replace bool mapped_ with Data_ownership
11648 argument.
11649 (File_read::View::mapped_): Remove (replaced by data_ownership_).
11650 (File_read::View::data_ownership_): New field.
11651 (File_read::contents_): Remove (replaced by whole_file_view_).
11652 (File_read::whole_file_view_): New field.
11653 * options.h (class General_options): Add --keep-files-mapped.
11654
24998053
CC
116552009-10-27 Cary Coutant <ccoutant@google.com>
11656
11657 * symtab.cc (add_from_pluginobj): Pass correct value for is_ordinary.
11658 * testsuite/Makefile.am (plugin_test_5): New test case.
11659 * testsuite/Makefile.in: Regenerate.
11660
72adc4fa
DK
116612009-10-25 Doug Kwan <dougkwan@google.com>
11662
11663 * object.h (Sized_relobj::View_size, Sized_relobj::Views): Change
11664 from private to protected to allow access by child class.
11665 (Sized_relobj::do_relocate_sections): New method declaration.
11666 (Sized_relobj::relocate_sections): Virtualize.
e1df38aa 11667 * reloc.cc (Sized_relobj::do_relocate_sections): Rename from
72adc4fa
DK
11668 Sized_relobj::relocate_sections. Instantiate template explicitly
11669 for different target sizes and endianity.
11670
07f508a2
DK
116712009-10-24 Doug Kwan <dougkwan@google.com>
11672
11673 * arm.cc (Arm_output_section, Arm_relobj): Forward class declarations.
11674 (Arm_input_section::as_arm_input_section): New method.
11675 (Arm_output_section): New class definition.
11676 (Arm_output_section::create_stub_group,
11677 Arm_output_section::group_sections): New method definitions.
11678
10ad9fe5
DK
116792009-10-22 Doug Kwan <dougkwan@google.com>
11680
11681 * arm.cc (Arm_input_section): New class definition.
11682 (Arm_input_section::init, Arm_input_section:do_write,
11683 Arm_input_section::set_final_data_size,
11684 Arm_input_section::do_reset_address_and_file_offset): New method
11685 definitions.
11686
56ee5e00
DK
116872009-10-21 Doug Kwan <dougkwan@google.com>
11688
11689 * arm.cc (Stub_table, Arm_input_section): New forward class
11690 declarations.
11691 (Stub_table): New class defintion.
11692 (Stub_table::add_reloc_stub, Stub_table::relocate_stubs
11693 Stub_table::do_reset_address_and_file_offset, Stub_table::do_write):
11694 New method definition.
11695
b569affa
DK
116962009-10-21 Doug Kwan <dougkwan@google.com>
11697
11698 * arm.cc: Update copyright comments.
11699 (Target_arm): New forward class template declaration.
11700 (Arm_address): New type.
11701 (ARM_MAX_FWD_BRANCH_OFFSET, ARM_MAX_BWD_BRANCH_OFFSET,
11702 THM_MAX_FWD_BRANCH_OFFSET, THM_MAX_BWD_BRANCH_OFFSET,
11703 THM2_MAX_FWD_BRANCH_OFFSET, THM2_MAX_BWD_BRANCH_OFFSET): New
11704 constants.
11705 (Insn_template): Same.
11706 (DEF_STUBS): New macro.
11707 (Stub_type): New enum type.
11708 (Stub_template): New class definition.
11709 (Stub): Same.
11710 (Reloc_stub): Same.
11711 (Stub_factory): Same.
11712 (Target_arm::Target_arm): Initialize may_use_blx_ and
11713 should_force_pic_veneer_.
11714 (Target_arm::may_use_blx, Target_arm::set_may_use_blx,
11715 Target_arm::should_force_pic_veneer,
11716 Target_arm::set_should_force_pic_veneer, Target_arm::using_thumb2,
11717 Target_arm::using_thumb_only, Target_arm:;default_target): New
11718 method defintions.
11719 (Target_arm::may_use_blx_, Target_arm::should_force_pic_veneer_):
11720 New data member declarations.
11721 (Insn_template::size, Insn_template::alignment): New method defintions.
11722 (Stub_template::Stub_template): New method definition.
11723 (Reloc_stub::Key::name, Reloc_stub::stub_type_for_reloc,
11724 Reloc_stub::do_fixed_endian_write, Reloc_stub::do_write): Same.
11725 (Stub_factory::Stub_factory): New method definition.
11726 * gold.h (string_hash): New template.
11727 * output.h (Input_section_specifier::hash_value): Use
11728 gold::string_hash.
11729 (Input_section_specifier::string_hash): Remove.
11730 * stringpool.cc (Stringpool_template::string_hash): Use
11731 gold::string_hash.
11732
6c172549
DK
117332009-10-20 Doug Kwan <dougkwan@google.com>
11734
11735 * object.cc (Sized_relobj::do_finalize_local_symbols): Handle section
11736 symbols of relaxed input sections.
11737 * output.h (Output_section::find_relaxed_input_section): Make
11738 method public.
11739
c5617f2f
DK
117402009-10-16 Doug Kwan <dougkwan@google.com>
11741
11742 * dynobj.cc (Versions::Versions): Initialize version_script_.
11743 Only insert base version symbol definition for a shared object
11744 if version script defines any version versions.
11745 (Versions::define_base_version): New method definition.
11746 (Versions::add_def): Check that base version is not needed.
11747 (Versions::add_need): Define base version lazily.
11748 * dynobj.h (Versions::define_base_version): New method declaration.
11749 (Versions::needs_base_version_): New data member declaration.
11750 * testsuite/Makefile.am (check_SCRIPTS): Add no_version_test.sh
11751 (check_DATA): Add no_version_test.stdout.
11752 (libno_version_test.so, no_version_test.o no_version_test.stdout):
11753 New make rules.
11754 * testsuite/Makefile.in: Regenerate.
11755 * testsuite/no_version_test.c: New file.
11756 * testsuite/no_version_test.sh: Ditto.
11757
3c12dcdb
DK
117582009-10-16 Doug Kwan <dougkwan@google.com>
11759
11760 * expression.cc (class Segment_start_expression): New class definition.
11761 (Segment_start_expression::value): New method definition.
11762 (script_exp_function_segment_start): Return a new
11763 Segment_start_expression.
11764 * gold/script-c.h (script_saw_segment_start_expression): New function
11765 prototype.
11766 * script-sections.cc (Script_sections::Script_sections): Initialize
11767 SAW_SEGMENT_START_EXPRESSION_ to false.
11768 (Script_sections::set_section_addresses): Use -Ttext, -Tdata
11769 and -Tbbs options to specify section addresses if given in
11770 command line and no SEGMENT_START expression is seen in a script.
11771 * script-sections.h (Script_sections::saw_segment_start_expression,
11772 Script_sections::set_saw_segment_start_expression): New method
11773 definition.
11774 (Script_sections::saw_segment_start_expression_): New data member
11775 declaration.
11776 * script.cc (script_saw_segment_start_expression): New function.
11777 * yyscript.y (SEGMENT_START): Call script_saw_segment_start_expression.
11778 * testsuite/Makefile.am (check_SCRIPTS): Add script_test_6.sh,
11779 script_test_7.sh and script_test_8.sh.
11780 (check_DATA): Add script_test_6.stdout, script_test_7.stdout and
11781 script_test_8.stdout.
11782 (MOSTLYCLEANFILES): Add script_test_6, script_test_7 and script_test_8.
11783 (script_test_6, script_test_6.stdout, script_test_7,
11784 script_test_7.stdout, script_test_8, script_test_8.stdout): New rules.
11785 * Makefile.in: Regenerate.
11786 * testsuite/script_test_6.sh: New file.
11787 * testsuite/script_test_6.t: Same.
11788 * testsuite/script_test_7.sh: Same.
11789 * testsuite/script_test_7.t: Same.
11790 * testsuite/script_test_8.sh: Same.
11791
64b1ae37
DK
117922009-10-16 Doug Kwan <dougkwan@google.com>
11793
11794 * output.cc (Output_segment::set_section_list_address): Cast
11795 expressions to unsigned long long type to avoid format warnings.
11796
661be1e2
ILT
117972009-10-15 Ian Lance Taylor <iant@google.com>
11798
12edd763 11799 * script.cc (Script_options::add_symbol_assignment): Always add a
b3d6a3d4 11800 dot assignment to script_sections_.
12edd763
ILT
11801 * script-sections.cc (Script_sections::add_dot_assignment):
11802 Initialize if necessary.
11803
68b6574b
ILT
11804 * layout.cc (Layout::relaxation_loop_body): Don't crash if we see
11805 program headers with no load segment if there is a linker script.
11806
661be1e2
ILT
11807 * layout.cc (Layout::set_segment_offsets): Align the file offset
11808 to the segment aligment for -N or -n with no load segment.
11809 * output.cc (Output_segment::add_output_section): Don't crash if
11810 the first section is a TLS section.
11811 (Output_segment::set_section_list_addresses): Print an error
11812 message if the address moves backward in a linker script.
11813 * script-sections.cc
11814 (Output_section_element_input::set_section_addresses): Don't
11815 increase *dot_value for a SHF_TLS/SHT_NOBITS section.
11816 (Orphan_output_section::set_section_addresses): Likewise.
11817
f15f61a7
DK
118182009-10-15 Doug Kwan <dougkwan@google.com>
11819
11820 * layout.cc (Layout::finish_dynamic_section): Generate tags
11821 DT_FINI_ARRAY, DT_FINI_ARRAYSZ, DT_INIT_ARRAY, DT_INIT_ARRAYSZ,
11822 DT_PREINIT_ARRAY, DT_PREINIT_ARRAYSZ as needed. If -Bsymbolic is
11823 used, add DT_SYMBOLIC and set DF_SYMBOLIC in DT_FLAGS.
11824
82bb573a
ILT
118252009-10-14 Ian Lance Taylor <iant@google.com>
11826
11827 * object.h (class Relocate_info): Add reloc_shdr and data_shdr
11828 fields.
11829 * object.cc (Sized_relobj::relocate_sections): Set reloc_shdr and
11830 data_shdr fields of relinfo.
11831 * i386.cc (class Target_i386::Relocate): Remove ldo_addrs_ field.
11832 (Target_i386::Relocate::relocate_tls): Don't call fix_up_ldo. For
11833 R_386_TLS_LDO_32, adjust based on section flags.
11834 (Target_i386::Relocate::fix_up_ldo): Remove.
11835
374ad285
ILT
118362009-10-13 Ian Lance Taylor <iant@google.com>
11837
11838 Add support for -pie.
11839 * options.h (class General_options): Add -pie and
11840 --pic-executable.
11841 (General_options::output_is_position_independent): Test -pie.
11842 (General_options::output_is_executable): Return true if not shared
11843 and not relocatable.
11844 (General_options::output_is_pie): Remove.
11845 * options.cc (General_options::finalize): Reject incompatible uses
11846 of -pie.
11847 * gold.cc (queue_middle_tasks): A -pie link is not static.
11848 * symtab.h (Symbol::needs_plt_entry): Return false if -pie.
11849 * symtab.cc (Symbol::final_value_is_known): Return false if
11850 output_is_position_independent.
11851 * layout.cc (Layout::set_segment_offsets): Start at address 0 if
11852 output_is_position_independent.
11853 * output.cc (Output_file_header::do_sized_write): Use ET_DYN if
11854 output_is_position_independent.
11855 * i386.cc (Output_data_plt_i386::do_write): Use the PIC PLT if
11856 output_is_position_independent.
11857 * testsuite/Makefile.am (check_PROGRAMS): Add basic_pie_test and
11858 two_file_pie_test.
11859 (basic_pie_test.o, basic_pie_test): New targets.
11860 (two_file_test_1_pie.o, two_file_test_1b_pie.o): New targets.
11861 (two_file_test_2_pie.o, two_file_test_main_pie.o): New targets.
11862 (two_file_pie_test): New target.
11863 * testsuite/Makefile.in: Rebuild.
11864 * README: Remove note saying that -pie is not supported.
11865
c6585162
ILT
118662009-10-13 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
11867
11868 * options.h (class General_options): Add -init and -fini.
11869 * layout.cc (Layout::finish_dynamic_section): Emit
11870 given init and fini functions.
11871
032ce4e9
ST
118722009-10-13 Sriraman Tallam <tmsriram@google.com>
11873
11874 * gc.h (gc_process_relocs): Check if icf is enabled using new
11875 function.
11876 * gold.cc (queue_initial_tasks): Likewise.
11877 (queue_middle_tasks): Likewise.
11878 * object.cc (do_layout): Likewise.
11879 * symtab.cc (is_section_folded): Likewise.
11880 * main.cc (main): Likewise.
11881 * reloc.cc (Read_relocs::run): Likewise.
11882 (Sized_relobj::do_scan_relocs): Likewise.
11883 * icf.cc (is_function_ctor_or_dtor): New function.
11884 (Icf::find_identical_sections): Check if function is ctor or dtor when
11885 safe icf is chosen.
11886 * options.h (General_options::icf): Change option to be an enum.
11887 (Icf_status): New enum.
11888 (icf_enabled): New method.
11889 (icf_safe_folding): New method.
11890 (set_icf_status): New method.
11891 (icf_status_): New variable.
11892 * (options.cc) (General_options::finalize): Set icf_status_.
11893 * testsuite/Makefile.am: Add commands to build icf_safe_test. Modify
11894 icf_test and icf_keep_unique_test to use the --icf enum flag.
11895 * testsuite/icf_safe_test.sh: New file.
e1df38aa 11896 * testsuite/icf_safe_test.cc: New file.
032ce4e9 11897
f345227a
ST
118982009-10-12 Sriraman Tallam <tmsriram@google.com>
11899
11900 * symtab.h: Check for GOLD_SYMTAB_H before header includes. Remove
11901 includes to gc.h and icf.h.
11902 * arm.cc: Include gc.h.
11903 * gold.cc: Likewise.
11904 * i386.cc: Likewise.
11905 * powerpc.cc: Likewise.
11906 * sparc.cc: Likewise.
11907 * x86_64.cc: Likewise.
11908 * gc.h: Include icf.h.
11909
1c7814ed
ILT
119102009-10-11 Ian Lance Taylor <iant@google.com>
11911
11912 * plugin.cc: Include "gold.h" before other header files.
11913
ae3b5189
CD
119142009-10-10 Chris Demetriou <cgd@google.com>
11915
11916 * options.h (Input_file_argument::Input_file_type): New enum.
11917 (Input_file_argument::is_lib_): Replace with...
11918 (Input_file_argument::type_): New member.
11919 (Input_file_argument::Input_file_argument): Take Input_file_type
11920 'type' rather than boolean 'is_lib' as second argument.
11921 (Input_file_argument::is_lib): Use type_.
11922 (Input_file_argument::is_searched_file): New function.
11923 (Input_file_argument::may_need_search): Handle is_searched_file.
11924 * options.cc (General_options::parse_library): Support -l:filename.
11925 (General_options::parse_just_symbols): Update for Input_file_argument
11926 changes.
11927 (Command_line::process): Likewise.
11928 * archive.cc (Archive::get_file_and_offset): Likewise.
11929 * plugin.cc (Plugin_manager::release_input_file): Likewise.
11930 * script.cc (read_script_file, script_add_file): Likewise.
11931 * fileread.cc (Input_file::Input_file): Likewise.
11932 (Input_file::will_search_for): Handle is_searched_file.
11933 (Input_file::open): Likewise.
11934 * readsyms.cc (Read_symbols::get_name): Likewise.
11935 * testsuite/Makefile.am (searched_file_test): New test.
11936 * testsuite/Makefile.in: Regenerate.
11937 * testsuite/searched_file_test.cc: New file.
11938 * testsuite/searched_file_test_lib.cc: New file.
11939
f3048a1d
ILT
119402009-10-09 Andrew Pinski <andrew_pinski@playstation.sony.com>
11941 Ian Lance Taylor <iant@google.com>
11942
11943 * descriptor.cc: Include <cstdio> and "binary-io.h".
11944 (Descriptors::open): Open the files in binary mode always.
11945 * script.cc (Lex::get_token): Treat \r as whitespace.
11946
d4780e57
ILT
119472009-10-09 Ian Lance Taylor <iant@google.com>
11948
11949 * testsuite/retain_symbols_file_test.sh: Don't test for __tcf_0.
11950
d9a893b8
ILT
119512009-10-09 Andrew Pinski <andrew_pinski@playstation.sony.com>
11952 Ian Lance Taylor <iant@google.com>
11953
11954 * configure.ac: Check for readv function also.
11955 * fileread.cc (readv): Define if not HAVE_READV.
11956 * fileread.h (File_read:: max_readv_entries): Set to 1 if readv
11957 does not exist.
11958 * config.in: Regenerate.
11959 * configure: Regenerate.
11960
c0a62865
DK
119612009-10-09 Doug Kwan <dougkwan@google.com>
11962
11963 * layout.cc (Layout::make_output_section): Call target hook to make
11964 ordinary output section.
11965 (Layout::finalize): Adjust parameter list of call the
11966 Target::may_relax().
11967 * layout.h (class Layout::section_list): New method.
11968 * merge.h (Output_merge_base::entsize): Change visibility to public.
11969 (Output_merge_base::is_string, Output_merge_base::do_is_string):
11970 New methods.
11971 (Output_merge_string::do_is_string): New method.
11972 * object.cc (Sized_relobj::do_setup): renamed from
11973 Sized_relobj::set_up.
11974 * object.h (Sized_relobj::adjust_shndx,
11975 Sized_relobj::initializ_input_to_output_maps,
11976 Sized_relobj::free_input_to_output_maps): Change visibilities to
11977 protected.
11978 (Sized_relobj::setup): Virtualize.
11979 (Sized_relobj::do_setup): New method declaration.
11980 (Sized_relobj::invalidate_section_offset,
11981 Sized_relobj::do_invalidate_section_offset): New method decfinitions.
11982 (Sized_relobj::elf_file, Sized_relobj::local_values): New methods.
11983 * options.cc (parse_int): New function.
11984 * options.h (parse_int): New declaration.
11985 (DEFINE_int): New macro.
11986 (stub_group_size): New option.
11987 * output.cc (Output_section::Output_section): Initialize memebers
11988 merge_section_map_, merge_section_by_properties_map_,
11989 relaxed_input_section_map_, is_relaxed_input_section_map_valid_.
11990 (Output_section::add_input_section): Handled deferred code-fill
11991 generation and remove an old comment.
11992 (Output_section::add_relaxed_input_section): New method definition.
11993 (Output_section::add_merge_input_section): Use merge section by
11994 properties map to speed to search. Update merge section maps
11995 as appropriate.
11996 (Output_section::build_relaxation_map): New method definition.
11997 (Output_section::convert_input_sections_in_list_to_relaxed_sections):
11998 Same.
11999 (Output_section::relax_input_section): Renamed to
12000 Output_section::convert_input_sections_to_relaxed_sections and change
12001 interface to take a vector of pointers to relaxed sections.
12002 (Output_section::find_merge_section,
12003 Output_section::find_relaxed_input_section): New method definitions.
12004 (Output_section::is_input_address_mapped,
12005 Output_section::output_offset, Output_section::output_address):
12006 Use output section data maps to speed up searching.
12007 (Output_section::find_starting_output_address): Add comments.
12008 (Output_section::do_write,
12009 Output_section::write_to_postprocessing_buffer): Do code-fill
12010 generation as appropriate.
12011 (Output_section::get_input_sections): Invalidate relaxed input section
12012 map.
12013 (Output_section::restore_states): Adjust type of checkpoint .
12014 Invalidate relaxed input section map.
12015 * output.h (Output_merge_base): New class declaration.
12016 (Input_section_specifier): New class defintion.
12017 (class Output_relaxed_input_section) Change base class to
12018 Output_section_data_build.
12019 (Output_relaxed_input_section::Output_relaxed_input_section): Adjust
12020 base class initializer.
12021 (Output_section::add_relaxed_input_section): New method declaration.
12022 (Output_section::Input_section): Change visibility to protected.
2e702c99 12023 (Output_section::Input_section::relobj,
c0a62865
DK
12024 Output_section::Input_section::shndx): Handle relaxed input sections.
12025 Output_section::input_sections) Change visibility to protected. Also
12026 define overload to return a non-const pointer.
12027 (Output_section::Merge_section_properties): New class defintion.
12028 (Output_section::Merge_section_by_properties_map,
12029 Output_section::Output_section_data_by_input_section_map,
12030 Output_section::Relaxation_map): New types.
12031 (Output_section::relax_input_section): Rename method to
12032 Output_section::convert_input_sections_to_relaxed_sections and change
12033 interface to take a vector of relaxed section pointers.
12034 (Output_section::find_merge_section,
12035 Output_section::find_relaxed_input_section,
12036 Output_section::build_relaxation_map,
12037 Output_section::convert_input_sections_in_list_to_relaxed_sections):
12038 New method declarations.
12039 (Output_section::merge_section_map_
12040 Output_section::merge_section_by_properties_map_,
12041 Output_section::relaxed_input_section_map_,
12042 Output_section::is_relaxed_input_section_map_valid_,
12043 Output_section::generate_code_fills_at_write_): New data members.
12044 * script-sections.cc
12045 (Output_section_element_input::set_section_addresses): Call
12046 current_data_size and addralign methods of relaxed input sections.
12047 (Orphan_output_section::set_section_addresses): Call current_data_size
12048 and addralign methods of relaxed input sections.
12049 * symtab.cc (Symbol_table::compute_final_value): Extract template
12050 from the body of Symbol_table::sized_finalize_symbol.
12051 (Symbol_table::sized_finalized_symbol): Call
12052 Symbol_table::compute_final_value.
12053 * symtab.h (Symbol_table::Compute_final_value_status): New enum type.
12054 (Symbol_table::compute_final_value): New templated method declaration.
12055 * target.cc (Target::do_make_output_section): New method defintion.
12056 * target.h (Target::make_output_section): New method declaration.
12057 (Target::relax): Add more parameters for input objects, symbol table
12058 and layout. Adjust call to do_relax.
12059 (Target::do_make_output_section): New method declaration.
12060 (Target::do_relax): Add parameters for input objects, symbol table
12061 and layout.
12062
d446d6c4
ILT
120632009-10-09 Andrew Pinski <andrew_pinski@playstation.sony.com>
12064
12065 * pread.c: Include stdio.h.
12066
bc06c745
ILT
120672009-10-09 Andrew Pinski <andrew_pinski@playstation.sony.com>
12068
12069 * plugin.cc: Don't include dlfcn.h when ENABLE_PLUGINS is not
12070 defined.
12071
75aea3d0
ILT
120722009-10-09 Andrew Pinski <andrew_pinski@playstation.sony.com>
12073
12074 * dwarf_reader.cc (Sized_dwarf_line_info::Sized_dwarf_line_info):
12075 Change read_shndx type to unsigned int.
12076 (Sized_dwarf_line_info::read_lines): Change shndx type to unsigned
12077 int.
12078 (Sized_dwarf_line_info::read_line_mappings): Likewise.
12079 * dwarf_reader.h (Sized_dwarf_line_info::Sized_dwarf_line_info):
12080 Change read_shndx type to unsigned int.
12081 (Sized_dwarf_line_info::read_lines): Change shndx type to unsigned
12082 int.
12083 (Sized_dwarf_line_info::read_line_mappings): Likewise.
12084 * layout.cc (Layout::create_symtab_sections): Cast the result of
12085 local_symcount * symsize to off_t in the gold_assert.
12086
be8fcb75
ILT
120872009-10-09 Viktor Kutuzov <vkutuzov@accesssoftek.com>
12088
12089 * arm.cc (Target_arm::relocate::reloc_is_non_pic): Return true for
12090 R_ARM_THM_ABS5, R_ARM_ABS8, R_ARM_ABS12, R_ARM_ABS16,
12091 R_ARM_BASE_ABS.
12092 (Arm_relocate_functions::abs8): Remove has_thumb_bit parameter.
12093 (Arm_relocate_functions::thm_abs5): New function.
12094 (Arm_relocate_functions::abs12): New function.
12095 (Arm_relocate_functions::abs16): New function.
12096 (Arm_relocate_functions::base_abs): New function.
12097 (Scan::check_non_pic): Handle R_ARM_ABS32_NOI.
12098 (Scan::local): Remove special handling of R_ARM_ABS8. Handle
12099 R_ARM_ABS32_NOI, R_ARM_THM_ABS5, R_ARM_ABS12, R_ARM_ABS16, and
12100 R_ARM_BASE_ABS.
12101 (Scan::global): Likewise.
12102 (Relocate::relocate): Handle R_ARM_ABS12, R_ARM_ABS16,
12103 R_ARM_ABS32_NOI, R_ARM_THM_ABS5, and R_ARM_BASE_ABS.
12104 (Relocatable_size_for_reloc::get_size_for_reloc): Handle
12105 R_ARM_ABS16, R_ARM_THM_ABS5, R_ARM_ABS32_NOI, R_ARM_ABS12, and
12106 R_ARM_BASE_ABS.
12107
c2a122b6
ILT
121082009-10-09 Viktor Kutuzov <vkutuzov@accesssoftek.com>
12109
12110 * arm.cc (Arm_relocate_functions::movw_prel_nc): New function.
12111 (Arm_relocate_functions::movt_prel): New function.
12112 (Arm_relocate_functions::thm_movw_prel_nc): New function.
12113 (Arm_relocate_functions::thm_movt_prel): New function.
12114 (Scan::local): Handle R_ARM_MOVW_PREL_NC, R_ARM_MOVT_PREL,
12115 R_ARM_THM_MOVW_PREL_NC, and R_ARM_THM_MOVT_PREL.
12116 (Scan::global, Relocate::relocate): Likewise.
12117 (Relocatable_size_for_reloc::get_size_for_reloc): Likewise.
12118
c4aa1e2d
ILT
121192009-10-09 Mikolaj Zalewski <mikolajz@google.com>
12120
12121 * gold.cc: (queue_initial_tasks): Pass incremental_inputs to
12122 Incremental_checker.
12123 * incremental.cc: (INCREMENTAL_LINK_VERSION): Change type to
12124 unsigned int.
12125 (class Incremental_inputs_header): New class.
12126 (Incremental_inputs_header_writer): Edit comment.
12127 (Incremental_inputs_entry): New class.
12128 (Incremental_inputs_entry_writer): Edit comment.
12129 (Sized_incremental_binary::do_find_incremental_inputs_section):
12130 Add *strtab_shndx parameter, fill it.
12131 (Sized_incremental_binary::do_check_inputs): New method.
12132 (Incremental_checker::can_incrementally_link_output_file): Use
12133 Sized_incremental_binary::check_inputs.
12134 (Incremental_inputs::report_command_line): Save command line in
12135 command_line_.
12136 * incremental.h:
12137 (Incremental_binary::find_incremental_inputs_section): New
12138 method.
12139 (Incremental_binary::do_find_incremental_inputs_section): Add
12140 strtab_shndx parameter.
12141 (Incremental_binary::do_check_inputs): New pure virtual method.
12142 (Sized_incremental_binary::do_check_inputs): Declare.
12143 (Incremental_checker::Incremental_checker): Add incremental_inputs
12144 parameter, use it to initialize incremental_inputs_.
12145 (Incremental_checker::incremental_inputs_): New field.
12146 (Incremental_checker::command_line): New method.
12147 (Incremental_checker::inputs): New method.
12148 (Incremental_checker::command_line_): New field.
12149
c549a694
ILT
121502009-10-09 Mikolaj Zalewski <mikolajz@google.com>
12151
12152 * incremental.cc: Include <cstdarg> and "target-select.h".
12153 (vexplain_no_incremental): New function.
12154 (explain_no_incremental): New function.
12155 (Incremental_binary::error): New method.
12156 (Sized_incremental_binary::do_find_incremental_inputs_section): New
12157 method.
12158 (make_sized_incremental_binary): New function.
12159 (open_incremental_binary): New function.
12160 (can_incrementally_link_file): Add checks if output is ELF and has
12161 inputs section.
12162 * incremental.h: Include "elfcpp_file.h" and "output.h".
12163 (Incremental_binary): New class.
12164 (Sized_incremental_binary): New class.
12165 (open_incremental_binary): Declare.
12166 * object.cc (is_elf_object): Use
12167 elfcpp::Elf_recognizer::is_elf_file.
12168 (make_elf_object): Use elfcpp::Elf_recognizer::is_valid_header.
12169 * output.h (Output_file::filesize): New method.
12170
fd3c5f0b
ILT
121712009-10-07 Viktor Kutuzov <vkutuzov@accesssoftek.com>
12172
12173 * arm.cc (Arm_relocate_functions::extract_arm_movw_movt_addend):
12174 New function.
12175 (Arm_relocate_functions::insert_val_arm_movw_movt): New function.
12176 (Arm_relocate_functions::extract_thumb_movw_movt_addend): New
12177 function.
12178 (Arm_relocate_functions::insert_val_thumb_movw_movt): New
12179 function.
12180 (Arm_relocate_functions::movw_abs_nc): New function.
12181 (Arm_relocate_functions::movt_abs): New function.
12182 (Arm_relocate_functions::thm_movw_abs_nc): New function.
12183 (Arm_relocate_functions::thm_movt_abs): New function.
12184 (Scan::local): Handle R_ARM_MOVW_ABS_NC, R_ARM_MOVT_ABS,
12185 R_ARM_THM_MOVW_ABS_NC, R_ARM_THM_MOVT_ABS.
12186 (Scan::global): Likewise.
12187 (Relocate::relocate): Likewise.
12188 (Relocatable_size_for_reloc::get_size_for_reloc): Likewise.
12189
7f5309a5
ILT
121902009-10-07 Viktor Kutuzov <vkutuzov@accesssoftek.com>
12191
12192 * arm.cc (Arm_relocate_functions::got_prel) New function.
12193 (Scan::local, Scan::global): Handle R_ARM_GOT_PREL.
12194 (Relocate::relocate): Likewise.
12195 (Relocatable_size_for_reloc::get_size_for_reloc): Likewise.
12196
364c7fa5
ILT
121972009-10-06 Ian Lance Taylor <iant@google.com>
12198
12199 * options.h (class General_options): Define
12200 split_stack_adjust_size parameter.
12201 * object.h (class Object): Add uses_split_stack_ and
12202 has_no_split_stack_ fields. Add uses_split_stack and
12203 has_no_split_stack accessor functions. Declare
12204 handle_split_stack_section.
12205 (class Reloc_symbol_changes): Define.
12206 (class Sized_relobj): Define Function_offsets. Declare
12207 split_stack_adjust, split_stack_adjust_reltype, and
12208 find_functions.
12209 * object.cc (Object::handle_split_stack_section): New function.
12210 (Sized_relobj::do_layout): Call handle_split_stack_section.
12211 * dynobj.cc (Sized_dynobj::do_layout): Call
12212 handle_split_stack_section.
12213 * reloc.cc (Sized_relobj::relocate_sections): Call
12214 split_stack_adjust for executable sections in split_stack
12215 objects. Pass reloc_map to relocate_section.
12216 (Sized_relobj::split_stack_adjust): New function.
12217 (Sized_relobj::split_stack_adjust_reltype): New function.
12218 (Sized_relobj::find_functions): New function.
12219 * target-reloc.h: Include "object.h".
12220 (relocate_section): Add reloc_symbol_changes parameter. Change
12221 all callers.
12222 * target.h (class Target): Add calls_non_split method. Declare
12223 do_calls_non_split virtual method. Declare match_view and
12224 set_view_to_nop.
12225 * target.cc: Include "elfcpp.h".
12226 (Target::do_calls_non_split): New function.
12227 (Target::match_view): New function.
12228 (Target::set_view_to_nop): New function.
12229 * gold.cc (queue_middle_tasks): Give an error if mixing
12230 split-stack and non-split-stack objects with -r.
12231 * i386.cc (Target_i386::relocate_section): Add
12232 reloc_symbol_changes parameter.
12233 (Target_i386::do_calls_non_split): New function.
12234 * x86_64.cc (Target_x86_64::relocate_section): Add
12235 reloc_symbol_changes parameter.
12236 (Target_x86_64::do_calls_non_split): New function.
12237 * arm.cc (Target_arm::relocate_section): Add reloc_symbol_changes
12238 parameter.
12239 * powerpc.cc (Target_powerpc::relocate_section): Add
12240 reloc_symbol_changes parameter.
12241 * sparc.cc (Target_sparc::relocate_section): Add
12242 reloc_symbol_changes parameter.
12243 * configure.ac: Call AM_CONDITIONAL for the default target.
12244 * configure: Rebuild.
12245 * testsuite/Makefile.am (TEST_AS): New variable.
12246 (check_SCRIPTS): Add split_i386.sh and split_x86_64.sh.
12247 (check_DATA): Add split_i386 and split_x86_64 files.
12248 (SPLIT_DEFSYMS): Define.
12249 (split_i386_[1234n].o): New targets.
12250 (split_i386_[124]): New targets.
12251 (split_i386_[1234r].stdout): New targets.
12252 (split_x86_64_[1234n].o): New targets.
12253 (split_x86_64_[124]): New targets.
12254 (split_x86_64_[1234r].stdout): New targets.
12255 (MOSTLYCLEANFILES): Add new executables.
12256 * testsuite/split_i386.sh: New file.
12257 * testsuite/split_x86_64.sh: New file.
12258 * testsuite/split_i386_1.s: New file.
12259 * testsuite/split_i386_2.s: New file.
12260 * testsuite/split_i386_3.s: New file.
12261 * testsuite/split_i386_4.s: New file.
12262 * testsuite/split_i386_n.s: New file.
12263 * testsuite/split_x86_64_1.s: New file.
12264 * testsuite/split_x86_64_2.s: New file.
12265 * testsuite/split_x86_64_3.s: New file.
12266 * testsuite/split_x86_64_4.s: New file.
12267 * testsuite/split_x86_64_n.s: New file.
12268 * testsuite/testfile.cc (Target_test): Update relocation_section
12269 function.
12270 * testsuite/Makefile.in: Rebuild.
12271
e8a9fcda
ILT
122722009-10-06 Ian Lance Taylor <iant@google.com>
12273
12274 * i386.cc (class Target_i386::Relocate): Add ldo_addrs_ field.
12275 (Target_i386::Relocate::relocate_tls): Call fix_up_ldo before
12276 changing local_dynamic_type_ from LOCAL_DYNAMIC_NONE. When
12277 handling R_386_TLS_LDO_32, if local_dynamic_type_ is NONE, push
12278 the address on ldo_addrs_.
12279 (Target_i386::Relocate::fix_up_ldo): New function.
12280
e99daf92
ILT
122812009-10-06 Rafael Espindola <espindola@google.com>
12282
12283 * plugin.cc (add_input_library): New.
12284 (Plugin::load): Add add_input_library to tv.
12285 (Plugin_manager::add_input_file): Add the is_lib argument.
12286 (add_input_file): Update call to Plugin_manager::add_input_file.
12287 (add_input_library): New.
12288 * plugin.h (Plugin_manager::add_input_file): Add the is_lib argument.
12289
966d4097
DK
122902009-09-30 Doug Kwan <dougkwan@google.com>
12291
12292 * arm.cc (Target_arm::may_need_copy_reloc): Check for THUMB function
12293 symbol and call Symbol::may_need_copy_reloc to determine if
12294 a copy reloc is needed.
12295 * copy-relocs.cc (Copy_relocs::need_copy_reloc): Return false if -z
12296 nocopyreloc is given in command line.
12297 (Copy_relocs::emit_copy_reloc): Assert that -z nocopyreloc is not
12298 given in command line.
12299 * i386.cc (Target_i386::may_need_copy_reloc): Remove.
12300 (Target_i386::Scan::global): Use Symbol::may_need_copy_reloc instead
12301 of the removed Target_i386::may_need_copy_reloc.
12302 * options.h (copyreloc): New option with default value false.
12303 * powerpc.cc (Target_powerpc::may_need_copy_reloc): Remove.
12304 (Target_powerpc::Scan::global): Use Symbol::may_need_copy_reloc
12305 instead of the removed Target_powerpc::may_need_copy_reloc.
12306 * sparc.cc (Target_powerpc::may_need_copy_reloc): Remove.
12307 (Target_sparc::Scan::global): Use Symbol::may_need_copy_reloc
12308 instead of the removed Target_sparc::may_need_copy_reloc.
12309 * symtab.h (Symbol::may_need_copy_reloc): New method definition.
12310 * x86_64.cc (Target_powerpc::may_need_copy_reloc): Remove.
12311 (Target_x86_64::Scan::global): Use Symbol::may_need_copy_reloc
12312 instead of the removed Target_x86_64::may_need_copy_reloc.
12313
029ba973
ILT
123142009-09-30 Ian Lance Taylor <iant@google.com>
12315
12316 * object.h (class Object): Remove target_ field, and target,
12317 sized_target, and set_target methods.
12318 (Object::sized_target): Remove.
12319 (class Sized_relobj): Update declarations. Remove sized_target.
12320 * object.cc (Sized_relobj::setup): Remove target parameter.
12321 Change all callers.
12322 (Input_objects::add_object): Don't do anything with the target.
12323 (make_elf_sized_object): Add punconfigured parameter. Change all
12324 callers. Set or test parameter target.
12325 * dynobj.cc (Sized_dynobj::target): Remove target parameter.
12326 Change all callers.
12327 * parameters.cc (Parameters::set_target): Change parameter type to
12328 be non-const.
12329 (Parameters::default_target): Remove.
12330 (set_parameters_target): Change parameter type to be non-const.
12331 (parameters_force_valid_target): New function.
12332 (parameters_clear_target): New function.
12333 * parameters.h (class Parameters): Update declarations. Remove
12334 default_target method. Add sized_target and clear_target
12335 methods. Change target_ to be non-const.
12336 (set_parameters_target): Update declaration.
12337 (parameters_force_valid_target): Declare.
12338 (parameters_clear_target): Declare.
12339 * readsyms.cc (Read_symbols::do_read_symbols): Pass punconfigured
12340 as NULL if we aren't searching.
12341 (Add_symbols::run): Don't check for compatible target.
12342 * fileread.cc (Input_file::open_binary): Call
12343 parameters_force_valid_target.
12344 * gold.cc (queue_middle_tasks): Likewise.
12345 * plugin.cc (make_sized_plugin_object): Likewise. Don't call
12346 set_target on object.
12347 * dynobj.h (class Sized_dynobj): Update declarations.
12348 * archive.cc (Archive::get_elf_object_for_member): Return NULL if
12349 make_elf_object returns NULL.
12350 (Archive::include_member): Don't check whether object target is
12351 compatible.
12352 * output.cc (Output_section::add_input_section): Get target from
12353 parameters.
12354 (Output_section::relax_input_section): Likewise.
12355 * reloc.cc (Sized_relobj::do_gc_process_relocs): Get target from
12356 parameters.
12357 (Sized_relobj::do_scan_relocs): Likewise.
12358 (Sized_relobj::relocate_sections): Likewise.
12359 * resolve.cc (Symbol_table::resolve): Likewise.
12360 * symtab.cc (Symbol_table::wrap_symbol): Likewise. Remove object
12361 parameter. Change all callers.
12362 (Symbol_table::add_from_object): Get target from parameters.
12363 (Symbol_table::add_from_relobj): Don't check object target.
12364 (Symbol_table::add_from_dynobj): Likewise.
12365 (Symbol_table::define_special_symbol): Get target from
12366 parameters.
12367 * symtab.h (class Symbol_table): Update declaration.
12368 * testsuite/binary_unittest.cc (gold_testsuite): Remove target
12369 parameter. Change all callers. Clear parameter target.
12370 (Binary_test): Test target here.
12371 * testsuite/object_unittest.cc (gold_testsuite): Remove
12372 target_test_pointer parameter. Change all callers.
12373 (Object_test): Test target here.
12374
a6a22b83
ILT
123752009-09-26 Ian Lance Taylor <iant@google.com>
12376
12377 * testsuite/initpri1.c: Don't try to use constructor priorities if
12378 compiling with gcc before 4.3.
12379
6a8f49fe
ILT
123802009-09-22 Mikolaj Zalewski <mikolajz@google.com>
12381
12382 * testsuite/retain_symbols_file_test.sh (check_present): Change
12383 output file name to retain_symbols_file_test.stdout.
12384 (check_absent): Likewise.
12385
8c604651
CS
123862009-09-18 Craig Silverstein <csilvers@google.com>
12387
12388 * object.cc (Sized_relobj::do_count): Test should_retain_symbol map.
12389 * options.cc: Include <cerrno> and <fstream>.
12390 (General_options::finalize): Parse -retain-symbols-file tag.
12391 * options.h: New flag.
12392 (General_options): New method should_retain_symbol, new
12393 variable symbols_to_retain.
12394 * symtab.cc (Symbol_table::sized_finalize_symbol): Test
12395 should_retain_symbol map.
12396 * testsuite/Makefile.am (retain_symbols_file_test): New test.
12397 * testsuite/Makefile.in: Regenerate.
12398 * testsuite/retain_symbols_file_test.sh: New file.
12399
ca58b19f
NC
124002009-09-18 Nick Clifton <nickc@redhat.com>
12401
12402 * po/es.po: Updated Spanish translation.
12403
20e6d0d6
DK
124042009-09-17 Doug Kwan <dougkwan@google.com>
12405
12406 * debug.h (DEBUG_RELAXATION): New constant.
12407 (DEBUG_ALL): Add DEBUG_RELAXATION.
12408 (debug_string_to_enum): Add relaxation debug option.
12409 * layout.cc
12410 (Layout::Relaxation_debug_check::check_output_data_for_reset_values,
12411 Layout::Relaxation_debug_check::read_sections,
12412 Layout::Relaxation_debug_check::read_sections): New method definitions.
12413 (Layout::Layout): Initialize data members
12414 record_output_section_data_from_scrips_,
12415 script_output_section_data_list_ and relaxation_debug_check_.
12416 (Layout::save_segments, Layout::restore_segments,
12417 Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
12418 Layout::relaxation_loop_body): New method definitions.
12419 (Layout::finalize): Support relaxation. Move section layout code to
12420 Layout::relaxation_loop_body.
12421 (Layout::set_asection_address_from_script): Move code for orphan
12422 section placement out.
12423 (Layout::place_orphan_sections_in_script): New method definition.
12424 * layout.h (Output_segment_headers, Output_file_header):
12425 New forward class declarations.
12426 (Layout::~Layout): Define.
12427 (Layout::new_output_section_data_from_script): New method definition.
12428 (Layout::place_orphan_sections_in_script): New method declaration.
12429 (Layout::Segment_states): New type declaration.
12430 (Layout::save_segments, Layout::restore_segments,
12431 Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
12432 Layout::relaxation_loop_body): New method declarations.
12433 (Layout::Output_section_data_list): New type declaration.
12434 (Layout::Relaxation_debug_check): New class definition.
12435 (Layout::record_output_section_data_from_script_,
12436 Layout::script_output_section_data_list_, Layout::segment_states_,
12437 Layout::relaxation_debug_check_): New data members.
12438 * output.cc: (Output_section_headers::do_size): New method definition.
12439 (Output_section_headers::Output_section_headers): Move size
12440 computation to Output_section_headers::do_size.
12441 (Output_segment_headers::do_size): New method definition.
e1df38aa 12442 (Output_file_header::Output_file_header): Move size computation to
20e6d0d6
DK
12443 Output_file_header::do_size and call it.
12444 (Output_file_header::do_size): New method definition.
12445 (Output_data_group::Output_data_group): Adjust call to
12446 Output_section_data.
12447 (Output_data_dynamic::set_final_data_size): Add DT_NULL tag only once.
12448 (Output_symtab_xindex::do_write): Add array bound check.
2e702c99 12449 (Output_section::Input_section::print_to_mapfile): Handle
20e6d0d6
DK
12450 RELAXED_INPUT_SECTION_CODE.
12451 (Output_section::Output_section): Initialize data member checkpoint_.
12452 (Output_section::~Output_section): Delete checkpoint object pointed
12453 by checkpoint_.
12454 (Output_section::add_input_section): Always add an Input_section if
12455 relaxing.
12456 (Output_section::add_merge_input_section): Add assert.
12457 (Output_section::relax_input_section): New method definition.
12458 (Output_section::set_final_data_size): Set load address to zero for
12459 an unallocated section.
12460 (Output_section::do_address_and_file_offset_have_reset_values):
12461 New method definition.
12462 (Output_section::Input_section_sort_enty::Input_section_sort_enty):
12463 Handle relaxed input section.
12464 (Output_section::sort_attached_input_sections): Checkpoint input
12465 section list lazily.
12466 (Output_section::get_input_sections): Change type of input_sections to
12467 list of Simple_input_section pointers. Checkpoint input section list
12468 lazily. Also handle relaxed input sections.
12469 (Output_section::add_input_section_for_script): Take a reference to
12470 a Simple_input_section object instead of Relobj pointer and section
12471 index as parameter. Handle relaxed input sections.
12472 (Output_section::save_states, Output_section::restore_states): New
12473 method definitions.
12474 * output.h (Output_data::Output_data): Initialize is_data_size_fixed_.
12475 (Output_data::is_data_size_fixed): New method definition.
12476 (Output_data::reset_addresss_and_file_offset): Do not reset data size
12477 if it is fixed.
12478 (Output_data::address_and_file_offset_have_reset_values): New method
12479 definition.
12480 (Output_data::do_address_and_file_offset_have_reset_values): New method
12481 definition.
12482 (Output_data::set_data_size): Check that data size is not fixed.
12483 (Output_data::fix_data_size): New method definition.
12484 (Output_data::is_data_size_fixed_): New data member.
12485 (Output_section_headers::set_final_data_size): New method definition.
12486 (Output_section_headers::do_size): New method declaration.
12487 (Output_segment_headers::set_final_data_size): New method definition.
12488 (Output_segment_headers::do_size): New method declaration.
12489 (Output_file_header::set_final_data_size)::New method definition.
12490 (Output_file_header::do_size)::New method declaration.
12491 (Output_section_data::Output_section_data): Add new parameter
12492 is_data_size_fixed and use it to fix data size.
12493 (Output_data_const::Output_data_const): Adjust call to base class
12494 constructor and fix data size.
12495 (Output_data_const_buffer::Output_data_const_buffer): Adjust call to
12496 base class constructor and fix data size.
12497 (Output_data_fixed_space::Output_data_fixed_space): Adjust call to
12498 base class constructor and fix data size.
12499 (Output_data_zero_fill::Output_data_zero_fill): Adjust call to base
12500 class constructor and fix data size.
12501 (Output_data_group::set_final_data_size): New method definition.
12502 (Output_data_dynamic::Dynamic_entry::tag): New method definition.
12503 (Output_symtab_xindex::Output_symtab_xindex): Adjust call to base
12504 class constructor and fix data size.
12505 (Output_relaxed_input_section): New class definition.
12506 (Output_section::Simple_input_section): New class definition.
12507 (Output_section::get_input_sections): Adjust parameter list.
12508 (Output_section::add_input_section_for_script): Same.
12509 (Output_section::save_states, Output_section::restore_states,
12510 Output_section::do_address_and_file_offset_have_reset_values,
12511 (Output_section::Input_section::Input_section): Handle
12512 RELAXED_INPUT_SECTION_CODE. Add new overload for
12513 Output_relaxed_input_section.
12514 (Output_section::Input_section::is_input_section,
12515 Output_section::Input_section::set_output_section): Handle relaxed
12516 input section.
12517 (Output_section::Input_section::is_relaxed_input_section,
12518 Output_section::Input_section::output_section_data,
12519 Output_section::Input_section::relaxed_input_section): New method
12520 definitions.
12521 (Output_section::Input_section::RELAXED_INPUT_SECTION_CODE): New enum
12522 value.
12523 (Output_section::Input_section::u1_): Update comments.
12524 (Output_section::Input_section::u2_): Add new union member poris.
12525 (Output_section::Checkpoint_output_section): New classs definition.
12526 (Output_section::relax_input_section): New method declaration.
12527 (Output_section::checkpoint_): New data member.
12528 (Output_segment): Update comments.
12529 (Output_segment::Output_segment): Un-privatize copy constructor.
12530 (Output_segment::operator=): Un-privatize.
12531 * script-sections.cc (Output_section_element::Input_section_list):
12532 Change element type to Output_section::Simple_input_section.
12533 (Output_section_element_dot_assignment::set_section_addresses):
12534 Register output section data for relaxation clean up.
12535 (Output_data_exression::Output_data_expression): Adjust call to base
12536 constructor to fix data size.
12537 (Output_section_element_data::set_section_addresses): Register
12538 Output_data_expression object for relaxation clean up.
12539 (struct Input_section_info): Replace Relobj pointer and section index
12540 pair with Output_section::Simple_input_section and Convert struct to a
12541 class.
12542 (Input_section_sorter::operator()): Adjust access to
e1df38aa 12543 Input_section_info data member to use accessors.
20e6d0d6
DK
12544 (Output_section_element_input::set_section_addresses): Use layout
12545 parameter. Adjust code to use Output_section::Simple_input_section
12546 and Input_secction_info classes. Register filler for relaxation
12547 clean up.
12548 (Orphan_output_section::set_section_addresses): Replace Relobj pointer
12549 and section index pair with Output_section::Simple_input_section
12550 class. Adjust code accordingly.
12551 (Phdrs_element::release_segment): New method definition.
12552 (Script_sections::attach_sections_using_phdrs_clause): Do not modify
12553 segment list.
12554 (Script_sections::release_segments): New method definition.
12555 * gold/script-sections.h (Script_sections::release_segments): New
12556 method declaration.
12557 * gold/target.h (Target::may_relax, Target::relax,
12558 Target::do_may_relax, Target::do_relax): New method definitions.
12559
5e445df6
ILT
125602009-09-17 Viktor Kutuzov <vkutuzov@accesssoftek.com>
12561
12562 * arm.cc (has_signed_unsigned_overflow): New function.
12563 (Arm_relocate_functions::abs8): New function.
12564 (Target_arm::Scan::local): Handle R_ARM_ABS8.
12565 (Target_arm::Scan::global): Likewise.
12566 (Target_arm::relocate::relocate): Likewise.
12567 (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc):
12568 Likewise.
12569
8c604651 125702009-09-16 Cary Coutant <ccoutant@google.com>
72fef11a
CC
12571
12572 * testsuite/Makefile.am (MOSTLYCLEANFILES): Add more generated files.
12573 * testsuite/Makefile.in: Regenerate.
12574
1e9cc1c2
NC
125752009-09-11 Nick Clifton <nickc@redhat.com>
12576
12577 * po/gold.pot: Updated by the Translation project.
12578
6a89f575
CC
125792009-09-08 Cary Coutant <ccoutant@google.com>
12580
12581 * output.cc (Output_file::open): Add execute permission to empty file.
12582 * testsuite/Makefile.am (permission_test): New test.
12583 * testsuite/Makefile.in: Regenerate.
12584
fdcac5af
ILT
125852009-09-02 Ian Lance Taylor <iant@google.com>
12586
12587 * output.cc (Output_file::resize): Call map_no_anonymous rather
12588 than map.
12589
44453f85
ILT
125902009-09-01 Mikolaj Zalewski <mikolajz@google.com>
12591
12592 * gold.cc: Include "incremental.h".
12593 (queue_initial_tasks): Call Incremental_checker methods.
12594 * incremental.cc: Include "output.h".
12595 (Incremental_checker::can_incrementally_link_output_file): New
12596 method.
12597 * incremental.h (Incremental_checker): New class.
12598
12599 * output.cc (Output_file::open_for_modification): New method.
12600 (Output_file::map_anonymous): Changed return type to bool. Record
12601 map in base_ field.
12602 (Output_file::map_no_anonymous): New method, broken out of map.
12603 (Output_file::map): Use map_no_anonymous and map_anonymous.
12604 * output.h (class Output_file): Update declarations.
12605
293c1386
CC
126062009-08-24 Cary Coutant <ccoutant@google.com>
12607
12608 * options.h (Command_line::Pre_options): New class.
12609 (Command_line::pre_options): New member.
12610 * options.cc (gold::options::ready_to_register): New variable.
12611 (One_option::register_option): Do nothing if not registering options.
12612 Assert if same short option registered twice.
12613 (General_options::General_options): Turn off option registration when
12614 done constructing.
12615 (Command_line::Pre_options::Pre_options): New constructor.
12616
f773f3d2
CC
126172009-08-24 Cary Coutant <ccoutant@google.com>
12618
06a73cfe
CC
12619 * options.h (General_options::no_keep_memory): Remove incorrect
12620 short option.
f773f3d2 12621
a15af8e2
RW
126222009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
12623
12624 * Makefile.am (am__skiplex, am__skipyacc): New.
12625 * Makefile.in: Regenerate.
12626
c462b41b
RW
126272009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
12628
14ec8efd
RW
12629 * Makefile.am (AM_CPPFLAGS): Renamed from ...
12630 (INCLUDES): ... this.
12631 * testsuite/Makefile.am (AUTOMAKE_OPTIONS): Add -Wno-portability.
12632 (AM_CPPFLAGS): Renamed from ...
12633 (INCLUDE): ... this.
12634 * Makefile.in, testsuite/Makefile.in: Regenerate.
12635
81ecdfbb
RW
12636 * Makefile.in: Regenerate.
12637 * aclocal.m4: Likewise.
12638 * config.in: Likewise.
12639 * configure: Likewise.
12640 * testsuite/Makefile.in: Likewise.
12641
c462b41b
RW
12642 * Makefile.am (AUTOMAKE_OPTIONS): Add foreign.
12643 * testsuite/Makefile.am (AUTOMAKE_OPTIONS): Add foreign.
12644 * Makefile.in: Regenerate.
12645 * testsuite/Makefile.in: Regenerate.
12646
2da73f13
CC
126472009-08-19 Cary Coutant <ccoutant@google.com>
12648
12649 * resolve.cc (Symbol_table::resolve): Don't complain about defined
12650 symbols in shared libraries overridden by hidden or internal symbols
12651 in the main program.
12652
2db70501
CD
126532009-08-19 Chris Demetriou <cgd@google.com>
12654
12655 * testsuite/debug_msg.sh: Match .* rather than ${srcdir} when
12656 checking source file names in error messages.
12657
f733487b
DK
126582009-08-18 Doug Kwan <dougkwan@google.com>
12659
12660 * dynobj.cc (Sized_dynobj::setup): Take a Target object instead of
12661 an elcpp::Ehdr as parameter. Adjust call to set_target.
12662 * dynobj.h (Sized_dynobj::setup): Take a Target object instead of
12663 an elfcpp::Ehdr as parameter.
12664 * object.cc (Object::set_target): Remove the version that looks up
12665 a target and sets it.
12666 (Sized_relobj::setup): Take a Target object instead of
12667 an elfcpp::Ehdr as parameter. Adjust call to set_target.
12668 (make_elf_sized_object): Find target and ask target to
12669 make an ELF object.
12670 * object.h: (Object::set_target): Remove the version that looks up
12671 a target and sets it.
12672 (Sized_relobj::setup): Take a Target object instead of
12673 an elfcpp:Ehdr as parameter.
12674 * target.cc: Include dynobj.h.
12675 (Target::do_make_elf_object_implementation): New.
2e702c99 12676 (Target::do_make_elf_object): New.
f733487b
DK
12677 * target.h (Target::make_elf_object): New template declaration.
12678 (Target::do_make_elf_object): New method declarations.
12679 (Target::do_make_elf_object_implementation): New template declaration.
12680
cc70f101
ILT
126812009-08-14 Ian Lance Taylor <iant@google.com>
12682
12683 * gold.h (FUNCTION_NAME): Define.
12684 (gold_unreachable): Use FUNCTION_NAME.
12685
ef5e0cb1
ST
126862009-08-12 Sriraman Tallam <tmsriram@google.com>
12687
12688 * icf.cc (Icf::find_identical_sections): Issue a warning when a
12689 symbol in the --keep-unique list is not found.
12690
48c187ce
ST
126912009-08-12 Sriraman Tallam <tmsriram@google.com>
12692
12693 * icf.cc (Icf::find_identical_sections): Unfold symbols that have
12694 been maked as --keep-unique.
12695 (Icf::unfold_section): New function.
12696 * icf.h (Icf::unfold_section): New function.
12697 * options.h (General_options::keep_unique): New option.
12698 * testsuite/Makefile.am: Add commands to build icf_keep_unique_test.
12699 * testsuite/Makefile.in: Regenerate.
12700 * testsuite/icf_keep_unique_test.sh: New file.
12701 * testsuite/icf_keep_unique_test.cc: New file.
12702
645afe0c
CC
127032009-08-12 Cary Coutant <ccoutant@google.com>
12704
12705 PR 10471
12706 * resolve.cc (Symbol_table::resolve): Check for references from
12707 dynamic objects to hidden and internal symbols.
12708 * testsuite/Makefile.am (hidden_test.sh): New test.
12709 * testsuite/Makefile.in: Regenerate.
12710 * testsuite/hidden_test.sh: New script.
12711 * testsuite/hidden_test_1.c: New test source.
12712 * testsuite/hidden_test_main.c: New test source.
12713
11af873f
DK
127142009-08-11 Doug Kwan <dougkwan@google.com>
12715
12716 * arm.cc: Update comments.
12717 (Target_arm::do_finalize_sections): Add a special PT_ARM_EXIDX
12718 segment to locate the .ARM.exidx section if present.
12719
b9f7d72d
DK
127202009-08-09 Doug Kwan <dougkwan@google.com>
12721
12722 * dynobj.h (Sized_dynobj::do_section_entsize): Revert the previous
12723 patch.
12724
ddd3c53c
ST
127252009-08-07 Sriraman Tallam <tmsriram@google.com>
12726 * dynobj.h (Sized_dynobj::do_section_entsize): Add return to avoid
12727 compiler warnings.
12728
27721062
ST
127292009-08-06 Sriraman Tallam <tmsriram@google.com>
12730
12731 * x86_64.cc (Target_x86_64::Relocate::relocate_tls): Check for a
12732 valid tls_segment only for non-debug-section relocations.
12733 * testsuite/Makefile.am: Add gc_tls_test.
12734 * testsuite/Makefile.in: Regenerate.
12735 * testsuite/gc_tls_test.cc: New file.
12736 * testsuite/gc_tls_test.sh: New file.
12737
ef15dade 127382009-08-05 Sriraman Tallam <tmsriram@google.com>
e1df38aa 12739
ef15dade
ST
12740 * icf.cc: New file.
12741 * icf.h: New file.
12742 * Makefile.am (CCFILES): Add icf.cc.
12743 (HFILES): Add icf.h
12744 * Makefile.in: Regenerate.
12745 * dynobj.h (Sized_dynobj::do_section_entsize): New function.
12746 * gc.h (gc_process_relocs): Populate lists used by icf to contain
12747 section, symbol and addend information for the relocs.
12748 * gold.cc (queue_middle_tasks): Call identical code folding.
12749 * gold.h: Add defines for multimap.
12750 * layout.cc (Layout::create_symtab_sections): Add symtab as parameter
12751 to the call of finalize_local_symbols.
12752 * main.cc (main): Create object of class Icf.
12753 * object.cc (Sized_relobj::do_layout): Allow this function to be
12754 called twice during icf.
12755 (Sized_relobj::do_finalize_local_symbols): Fold symbols corresponding
12756 to sections marked as identical by icf.
12757 (Sized_relobj::do_section_flags): Get section_flags from Symbols_data
12758 when available.
12759 (Sized_relobj::do_section_entsize): New function.
12760 * object.h (Object::section_entsize): New function.
12761 (Object::do_section_entsize): New pure virtual function.
12762 (Relobj::finalize_local_symbols): Add new parameter.
12763 (Relobj::do_section_entsize): New function.
12764 * options.h (General_options::icf): New option.
12765 (General_options::icf_iterations): New option.
12766 (General_options::print_icf_sections): New option.
12767 * plugin.cc (Sized_pluginobj::do_section_entsize): New function.
12768 * plugin.h (Sized_pluginobj::do_section_entsize): New function.
12769 * reloc.cc (Read_relocs::run): Delay scanning relocs when doing
12770 icf.
12771 * symtab.cc (Symbol_table::is_section_folded): New function.
12772 (Symbol_table::sized_finalize_symbol): Fold symbols corresponding
12773 to sections marked as identical by icf.
12774 * symtab.h (Symbol_table::set_icf): New function.
12775 (Symbol_table::icf): New function.
12776 (Symbol_table::is_section_folded): New function.
12777 (Symbol_table::icf_): New data member.
12778 * target-reloc.h (relocate_section): Ignore sections folded by icf.
12779 * testsuite/Makefile.am: Add commands to build icf_test.
12780 * testsuite/Makefile.in: Regenerate.
12781 * testsuite/icf_test.sh: New file.
12782 * testsuite/icf_test.cc: New file.
12783
c3b65ac4
CD
127842009-07-24 Chris Demetriou <cgd@google.com>
12785
12786 * layout.cc (is_compressible_debug_section): Fix incorrect
12787 comment about compressed section names.
12788
1caf2c51
ILT
127892009-07-20 Ian Lance Taylor <ian@airs.com>
12790
12791 PR 10419
12792 * x86_64.cc (Target_x86_64::do_code_fill): Correct nop sequences.
12793
1ef4d87f
ILT
127942009-07-16 Ian Lance Taylor <iant@google.com>
12795
12796 PR 10400
12797 * layout.h: #include <map>.
12798 (class Kept_section): Change from struct to class. Add accessors
12799 and setters. Add section size to Comdat_group mapping. Change
12800 Comdat_group to std::map. Add is_comdat_ field. Add
12801 linkonce_size field in union.
12802 (class Layout): Update declaration of find_or_add_kept_section.
12803 Don't declare find_kept_object.
12804 * layout.cc (Layout::find_or_add_kept_section): Remove candidate
12805 parameter. Add object, shndx, is_comdat, and is_group_name
12806 parameters. Change all callers. Adjust for new Kept_section.
12807 (Layout::find_kept_object): Remove.
12808 * object.cc (Sized_relobj::include_section_group): Update use of
12809 Kept_section. Rename secnum to shndx. Only record
12810 Kept_comdat_section if sections are the same size.
12811 (Sized_relobj::include_linkonce_section): Update use of
12812 Kept_section. Only record Kept_comdat_section if sections are the
12813 same size. Set size of linkonce section.
12814 (Sized_relobj::map_to_kept_section): Update call to
12815 get_kept_comdat_section.
12816 * object.h (class Sized_relobj): Rename fields in
12817 Kept_comdat_section to drop trailing underscores; change object
12818 field to Relobj*. Change Kept_comdat_section_table to store
12819 struct rather than pointer.
12820 (Sized_relobj::set_kept_comdat_section): Remove kept parameter.
12821 Add kept_object and kept_shndx parameters. Change all callers.
12822 (Sized_relobj::get_kept_comdat_section): Change return type to
12823 bool. Add kept_object and kept_shndx parameters. Change all
12824 callers.
12825 * plugin.cc (Pluginobj::include_comdat_group): Update call to
12826 Layout::find_or_add_kept_section.
12827
37c3b7b0
ILT
128282009-07-09 Ian Lance Taylor <iant@google.com>
12829
12830 * merge.cc (Object_merge_map::initialize_input_to_output_map):
12831 Reserve space in the hash table.
12832
98fa85cb
ILT
128332009-07-06 Mikolaj Zalewski <mikolajz@google.com>
12834
12835 * fileread.cc (File_read::get_mtime): New method.
12836 * fileread.h (Timespec): New structure.
12837 (File_read::get_mtime): New method.
12838 * incremental.cc (Incremental_inputs_entry_data::timestamp_usec):
12839 Renamed from timestamp_nsec.
12840 (Incremental_inputs_entry_write::timestamp_sec): Fix argument to
12841 Elf_Xword.
e1df38aa 12842 (Incremental_inputs_entry_write::timestamp_usec): Renamed from
98fa85cb 12843 timestamp_nsec.
e1df38aa 12844 (Incremental_inputs::report_archive): Save mtime; style fix.
98fa85cb
ILT
12845 (Incremental_inputs::report_obejct): Save mtime; style fix.
12846 (Incremental_inputs::report_script): Save mtime; style fix.
12847 (Incremental_inputs::finalize_inputs): Style fix.
12848 (Incremental_inputs::finalize): Style fix.
12849 (Incremental_inputs::create_input_section_data): Store inputs
12850 mtime.
12851 * incremental.h (Incremental_inputs::report_script): Add mtime
12852 argument.
12853 (Incremental_inputs::Input_info::Input_info): Intialize only one
12854 union member.
12855 (Incremental_inputs::Input_info::archive): Move to nameless
12856 union.
12857 (Incremental_inputs::Input_info::obejct): Move to nameless union.
12858 (Incremental_inputs::Input_info::script): Move to nameless union.
12859 (Incremental_inputs::mtime): New field.
12860 * script.cc (read_input_script): Pass file mtime to
12861 Incremental_input.
12862 * script.h (Script_info::inputs): Style fix.
12863
c9d70757
ILT
128642009-07-01 Ian Lance Taylor <ian@airs.com>
12865
12866 * freebsd.h (Target_freebsd::do_adjust_elf_header): Use size
12867 instead of 32.
12868
9c547ec3
ILT
128692009-06-24 Ian Lance Taylor <iant@google.com>
12870
12871 PR 10156
12872 * layout.cc (Layout::choose_output_section): If we find an
12873 existing section, update the flags.
12874 (Layout::create_notes): New function, broken out of
12875 Layout::finalize.
12876 (Layout::finalize): Don't create note sections.
12877 (Layout::create_note): Don't crash if linker script discards
12878 section.
12879 (Layout::create_gold_note): Likewise.
12880 (Layout::create_build_id): Likewise. Don't set
12881 after_input_sections on the section.
12882 (Layout::create_executable_stack_info): Remove target parameter.
12883 Change caller.
12884 * layout.h (class Layout): Declare create_notes. Update
12885 declaration of create_executable_stack_info.
12886 * gold.cc (queue_middle_tasks): Call create_notes.
12887 * output.cc (Output_section::update_flags_for_input_section): Move
12888 here from output.h. If SHF_ALLOC flag is newly set, mark address
12889 invalid.
12890 * output.h (Output_data::mark_address_invalid): New function.
12891 (class Output_section): Only declare, not define,
12892 update_flags_for_input_section. Remove set_flags.
12893
55458500
ILT
128942009-06-24 Ian Lance Taylor <iant@google.com>
12895
12896 * script-sections.cc (Output_section_definition::
12897 set_section_addresses): Rename shadowing local load_address to
12898 laddr.
12899
1307d6cd
ILT
129002009-06-24 Ian Lance Taylor <iant@google.com>
12901
12902 PR 10244
12903 * reloc.cc (relocate_sections): Skip empty relocation sections.
12904
ec3f783e
ILT
129052009-06-23 Ian Lance Taylor <iant@google.com>
12906
12907 PR 10156
12908 * layout.cc (Layout::create_note): Use choose_output_section
12909 rather than make_output_section.
12910
459c9f1c
ILT
129112009-06-23 Ian Lance Taylor <iant@google.com>
12912
12913 PR 10237
12914 * options.cc (General_options::parse_V): Set printed_version_.
12915 (General_options::General_options): Initialize printed_version_.
12916 * options.h (class General_options): Add printed_version_ field.
12917 * gold.cc (queue_initial_tasks): If there are no input files,
12918 don't give a fatal error if we printed the version information.
12919 (queue_middle_tasks): If using -r with a shared object, give a
12920 fatal error rather than an ordinary error.
12921
1518dc8f
ILT
129222009-06-23 Ian Lance Taylor <iant@google.com>
12923
12924 PR 10219
12925 * layout.cc (Layout::Layout): Initialize have_stabstr_section_.
12926 (Layout::make_output_section): Set have_stabstr_section_ if we see
12927 a .stab*str section.
12928 (Layout::finalize): Call link_stabs_sections.
12929 (Layout::link_stabs_sections): New file.
12930 * layout.h (class Layout): Add have_stabstr_section_ field.
12931 Declare link_stabs_sections.
12932
3d857b98
DK
129332009-06-23 Doug Kwan <dougkwan@google.com>
12934
12935 * Makefile.am (libgold_a_LIBADD): New.
12936 (ld_new_DEPENDENCIES, ld_new_LDADD): Remove LIBOBJS
2e702c99 12937 * Makefile.in: Regenerate.
3d857b98
DK
12938 * config.in (HAVE_DECL_MEMMEM, HAVE_DECL_STRNDUP): New.
12939 * configure: Regenerate.
12940 * configure.ac (AC_CHECK_DECLS): Add strndup and memmem.
12941 * fileread.cc: Include sys/state.h
12942 * gold.h: Declare memmem and strndup if found missing.
12943 * gold_reloc.h: Include byteswap.h if HAVE_BYTESWAP_H is defined.
12944
0639a6f6
ILT
129452009-06-23 Ian Lance Taylor <iant@google.com>
12946
12947 * configure.ac: Call AC_CHECK_DECLS using C, not C++.
12948 * configure: Rebuild.
12949
8d63875c
ILT
129502009-06-23 Ian Lance Taylor <iant@google.com>
12951
12952 PR 10147
12953 * object.cc (Object::section_contents): Don't try to get a view if
12954 the section has length zero.
12955 (Object::handle_gnu_warning_section): If the section is empty, use
12956 the name of the section as the warning.
12957
f7c8a183
ILT
129582009-06-23 Ian Lance Taylor <iant@google.com>
12959
12960 PR 10133
12961 * stringpool.h (class Stringpool_template): Add optimize_ field.
12962 (Stringpool_template::set_optimize): New function.
12963 * stringpool.cc (Stringpool_template::Stringpool_template):
12964 Initialize optimize_ field.
12965 (Stringpool_template::set_string_offsets): Test local optimize
12966 fild rather than parameter.
12967 * layout.cc (Layout::Layout): Call set_optimize on the section
12968 name stringpool.
12969
e6a307ba
ILT
129702009-06-22 Ian Lance Taylor <iant@google.com>
12971
12972 PR 10030
12973 * yyscript.y: Parse TARGET.
12974 * script.cc (script_set_target): New function.
12975 * script-c.h (script_set_target): Declare.
12976 * options.cc (General_options::string_to_object_format): Rename
12977 from string_to_object_format in anonymous namespace. Change
12978 callers.
12979 * options.h (class General_options): Declare
12980 string_to_object_format.
12981
3ee173de
ILT
129822009-06-22 Ian Lance Taylor <iant@google.com>
12983
12984 * script-sections.cc (Script_sections::create_segments): Don't put
12985 program headers in a PT_LOAD segment if -n or -N.
12986
129872009-06-22 Ian Lance Taylor <iant@google.com>
e1c74d60
ILT
12988
12989 PR 10141
12990 * options.h (class General_options): Add -z lazy and -z now. Sort
12991 -z options into alphabetical order.
12992 * layout.cc (Layout::finish_dynamic_section): Handle -z now.
12993
cd6739a1 129942009-06-21 Ian Lance Taylor <iant@google.com>
8a5e3e08
ILT
12995
12996 * layout.cc (Layout::make_output_section): Call
12997 Target::new_output_section.
12998 (Layout::attach_allocated_section_to_segment): Put large section
12999 sections in a separate load segment with the large segment flag
13000 set.
13001 (Layout::segment_precedes): Sort large data segments after other
13002 load segments.
13003 (align_file_offset): New static function.
13004 (Layout::set_segment_offsets): Use align_file_offset.
13005 * output.h (class Output_section): Add is_small_section_ and
13006 is_large_section_ fields.
13007 (Output_section::is_small_section): New function.
13008 (Output_section::set_is_small_section): New function.
13009 (Output_section::is_large_section): New function.
13010 (Output_section::set_is_large_section): New function.
13011 (Output_section::is_large_data_section): New function.
13012 (class Output_segment): Add is_large_data_segment_ field.
13013 (Output_segment::is_large_data_segment): New function.
13014 (Output_segment::set_is_large_data_segment): New function.
13015 * output.cc (Output_section::Output_section): Initialize new
13016 fields.
13017 (Output_segment::Output_segment): Likewise.
13018 (Output_segment::add_output_section): Add assertion that large
13019 data sections always go in large data segments. Force small data
13020 sections to the end of the list of data sections. Force small BSS
13021 sections to the start of the list of BSS sections. For large BSS
13022 sections to the end of the list of BSS sections.
13023 * symtab.h (class Symbol): Declare is_common_shndx.
13024 (Symbol::is_defined): Check Symbol::is_common_shndx.
13025 (Symbol::is_common): Likewise.
13026 (class Symbol_table): Define enum Commons_section_type. Update
13027 declarations. Add small_commons_ and large_commons_ fields.
13028 * symtab.cc (Symbol::is_common_shndx): New function.
13029 (Symbol_table::Symbol_table): Initialize new fields.
13030 (Symbol_table::add_from_object): Put small and large common
13031 symbols in the right list.
13032 (Symbol_table::sized_finalized_symbol): Check
13033 Symbol::is_common_shndx.
13034 (Symbol_table::sized_write_globals): Likewise.
13035 * common.cc (Symbol_table::do_allocate_commons): Allocate new
13036 common symbol lists. Don't call do_allocate_commons_list if the
13037 list is empty.
13038 (Symbol_table::do_allocate_commons_list): Remove is_tls
13039 parameter. Add comons_section_type parameter. Change all
13040 callers. Handle small and large common symbols.
13041 * object.cc (Sized_relobj::do_finalize_local_symbols): Check
13042 Symbol::is_common_shndx.
13043 * resolve.cc (symbol_to_bits): Likewise.
13044 * target.h (Target::small_common_shndx): New function.
13045 (Target::small_common_section_flags): New function.
13046 (Target::large_common_shndx): New function.
13047 (Target::large_common_section_flags): New function.
13048 (Target::new_output_section): New function.
13049 (Target::Target_info): Add small_common_shndx, large_common_shndx,
13050 small_common_section_flags, and large_common_section_flags
13051 fields.
13052 (Target::do_new_output_section): New virtual function.
13053 * arm.cc (Target_arm::arm_info): Initialize new fields.
13054 * i386.cc (Target_i386::i386_info): Likewise.
13055 * powerpc.cc (Target_powerpc::powerpc_info) [all versions]:
13056 Likewise.
13057 * sparc.c (Target_sparc::sparc_info) [all versions]: Likewise.
13058 * x86_64.cc (Target_x86_64::x86_64_info): Likewise.
13059 (Target_x86_64::do_new_output_section): New function.
13060 * configure.ac: Define conditional MCMODEL_MEDIUM.
13061 * testsuite/Makefile.am (check_PROGRAMS): Add large.
13062 (large_SOURCES, large_CFLAGS, large_DEPENDENCIES): Define.
13063 (large_LDFLAGS): Define.
13064 * testsuite/large.c: New file.
13065 * testsuite/testfile.cc (Target_test::test_target_info):
13066 Initialize new fields.
13067 * configure, testsuite/Makefile.in: Rebuild.
13068
bb04269c
DK
130692009-06-05 Doug Kwan <dougkwan@google.com>
13070
13071 * Makefile.am (CCFILES): Add target.cc.
e1df38aa 13072 * Makefile.in: Regenerate.
bb04269c
DK
13073 * i386.cc (class Target_i386): Define new virtual method to
13074 override do_is_local_label_name in parent.
13075 * object.cc (Sized_relobj::do_count_local_symbols): Discard
13076 local symbols if --discard-locals or -X is given.
13077 * options.h (class General_options): Declare new options
13078 '--discard-locals' and '-X' for discarding locals.
13079 * target.h (class Target): Define new methods is_local_label_name.
13080 Declare new virtual method do_is_local_label_name.
13081 * target.cc: New file.
13082 * testsuite/Makefile.am (check_PROGRAMS): Add discard_locals_test.
13083 (check_SCRIPTS): Add discard_locals_test.sh.
13084 (check_DATA): Add discard_local_tests.syms.
13085 (discard_locals_test_SOURCES, discard_locals_test_LDFLAGS): Define.
13086 (discard_local_tests.syms, discard_locals_test.o): New make rules.
13087 * testsuite/Makefile.in: Regenerate.
13088 * testsuite/discard_locals_test.c: New file.
13089 * testsuite/discard_locals_test.sh: Same.
13090
805bb01c
DK
130912009-06-05 Doug Kwan <dougkwan@google.com>
13092
13093 * object.cc (Sized_relobj::Sized_relobj): Initialize
13094 discarded_eh_frame_shndx_ to -1U.
13095 (Sized_relobj::do_layout): Record index of a discard .eh_frame
13096 section.
13097 (Sized_relobj::do_count_local_symbols): Skip local symbols in
13098 a discarded .eh_frame section.
13099 (Sized_relobj::do_finalize_local_symbols): Ditto.
13100 * object.h (class Sized_relobj): Declare new member
13101 discarded_eh_frame_shndx_.
13102 * testsuite/Makefile.am (check_PROGRAMS): Add local_labels_test.
13103 (local_labels_test.o, local_labels_test): New rules.
13104 * testsuite/Makefile.in: Regenerate.
13105
1dcd334d
DK
131062009-06-04 Doug Kwan <dougkwan@google.com>
13107
13108 * layout.cc (Layout::section_name_mapping): Add mapping for
13109 special ARM sections.
13110
96d49306
DK
131112009-06-03 Doug Kwan <dougkwan@google.com>
13112
13113 * arm.cc (utils::sign_extend): Reverse test in gold_assert.
13114 (utils::has_overflow): Same.
13115
dff16297
ILT
131162009-06-03 Ian Lance Taylor <iant@google.com>
13117
13118 * layout.cc (Layout::section_name_mapping): New array, replacing
13119 Layout::linkonce_mapping.
13120 (Layout::section_name_mapping_count): New variable, replacing
13121 Layout::linkonce_mapping_count.
13122 (Layout::linkonce_output_name): Remove.
13123 (Layout::output_section_name): Rewrite.
13124 * layout.h (class Layout): Rename Linkonce_mapping to
13125 Section_name_mapping, linkonce_mapping to section_name_mapping,
13126 linkonce_mapping_count to section_name_mapping_count. Don't
13127 declare linkonce_output_name.
13128
c121c671
DK
131292009-06-03 Doug Kwan <dougkwan@google.com>
13130
13131 * gold/arm.cc (namespace utils): New.
13132 (Target_arm::reloc_is_non_pic): Define new method.
13133 (class Arm_relocate_functions): New.
13134 (Target_arm::Relocate::relocate): Handle relocation types used by
13135 Android.
13136
07800fab
ILT
131372009-06-03 Ian Lance Taylor <iant@google.com>
13138
13139 * arm.cc (Target_arm::scan::global): Use || instead of |.
13140
c121c671
DK
131412009-06-02 Doug Kwan <dougkwan@google.com>
13142
13143 * gold/arm.cc (Target_arm::Scan::Scan): Initialize
13144 issued_non_pic_error_.
13145 (class Target_arm::Scan): Declare new method check_non_pic.
13146 Define new method symbol_needs_plt_entry.
13147 Declare new data member issued_non_pic_error_.
13148 (class Target_arm::Relocate): Declare new method
13149 should_apply_static_reloc.
13150 (Target_arm::may_need_copy_reloc): Handle STT_ARM_TFUNC.
13151 (Target_arm::Scan::check_non_pic): Define new method.
13152 (Target_arm::Scan::local): Handle a small subset of reloc types used
13153 by Android.
13154 (Target_arm::Scan::local): Same.
13155 (Target_arm::Relocate::should_apply_statci_reloc): Define new method.
13156
b19b0c6d
ILT
131572009-05-31 Mikolaj Zalewski <mikolajz@google.com>
13158
13159 * incremental.cc (Incremental_inputs::report_command_line): Filter
13160 out --incremental-* options.
13161
94cdfcff
DK
131622009-05-29 Doug Kwan <dougkwan@google.com>
13163
13164 * gold/arm.cc (Output_data_plt_arm): Forward declaration for new
13165 template class.
13166 (class Target_arm): Update comment.
13167 (Target_arm::Target_arm): Initialize new data members GOT_,
13168 PLT_, GOT_PLT_, REL_DYN_, COPY_RELOCS_ and DYNBSS_.
13169 Declare new methods Target_arm::got_section, Target_arm::make_plt_entry
13170 and Target_arm::rel_dyn_section.
13171 Declare new_enum Target_arm::Got_type.
13172 Declare new data members GOT_, PLT_, GOT_PLT_, REL_DYN_, COPY_RELOCS_
13173 and DYNBSS_.
13174 Update commments for member do_dynsym_value.
13175 (Target_arm::got_size, Target_arm::plt_section,
13176 Target_arm::may_need_copy_reloc and Target_arm::copy_reloc): Define
13177 new methods inside class defintion.
13178 (Target_arm::got_section): Define new method.
13179 (Target_arm::rel_dyn_section): Same.
13180 (Output_data_plt_arm): New template class.
13181 (Output_data_plt_arm::Output_data_plt_arm): Define constructor.
13182 (Output_data_plt_arm:do_adjust_output_section): Define new method.
13183 (Output_data_plt_arm::add_entry): Same.
13184 (Output_data_plt_arm::first_plt_entry): Define new
13185 static data member for PLT instruction template.
13186 (Output_data_plt_arm::plt_entry): Same.
13187 (Output_data_plt_arm::do_write): Define new method.
13188 (Target_arm::make_plt_entry): Same.
13189 (Target_arm::do_finalize_sections): Same.
13190 (Target_arm::do_dynsym_value): Same.
13191
4a657b0d
DK
131922009-05-28 Doug Kwan <dougkwan@google.com>
13193
13194 * Makefile.am (TARGETSOURCES): Add arm.cc.
13195 (ALL_TARGETOBJECTS): Add arm.$(OBJEXT)
13196 * Makefile.in: Regenerate.
13197 * arm.cc: New file.
13198 * configure.tgt: Add armbe*-*-*, armeb*-*-* and arm*-*-* targets.
13199
e7ae8c36
DK
132002009-05-26 Doug Kwan <dougkwan@google.com>
13201
13202 * options.cc (General_options::parse_exclude_libs). Fix a comment.
13203 (General_options::check_excluded_libs): Strip off directories in
13204 archive name before matching like GNU ld does.
13205 * testsuite/Makefile.am (MOSTLYCLEANFILES,
13206 exclude_libs_test_DEPENDENCIES): Add alt/libexclude_libs_test_3.a
13207 (exclude_libs_test_LDFLAGS): Add linker option
13208 -Wl,--exclude-libs,libexclude_libs_test_3
13209 (exclude_libs_test_LADD): Add alt/libexclude_libs_test_3.a as
13210 an explicit archive without using -l.
13211 (alt/libexclude_libs_test_3.a): New make rule.
13212 * testsuite/Makefile.in: Regenerate.
13213 * testsuite/exclude_libs_test.c : Declare lib3_default().
13214 (main): Call it.
13215 * exclude_libs_test.sh: Add tests for alt/exclude_libs_test_3.a.
13216 * exclude_libs_test_3.c: New file.
13217
f12e7348
NC
132182009-05-26 Nick Clifton <nickc@redhat.com>
13219
13220 * po/id.po: New Indonesian translation.
13221 * po/gold.pot: Updated template file.
13222
4daadc0d
ST
132232009-05-22 Sriraman Tallam <tmsriram@google.com>
13224
e1df38aa 13225 * testsuite/Makefile.am: Add -ffunction-sections to compile
4daadc0d
ST
13226 gc_comdat_test files. Add -Wl,--gc-sections to build
13227 gc_comdat_test.
13228 * testsuite/Makefile.in: Regenerate.
13229 * testsuite/gc_comdat_test.sh: Fix the condition around grep.
13230
531813ad
ST
132312009-05-21 Sriraman Tallam <tmsriram@google.com>
13232
13233 * object.cc (Sized_relobj::map_to_kept_section): Return NULL if the
13234 kept comdat section was garbage collected.
13235 * testsuite/Makefile.am: Add test gc_comdat_test.sh.
13236 * testsuite/Makefile.in: Regenerate.
13237 * testsuite/gc_comdat_test.sh: New file.
13238 * testsuite/gc_comdat_test_1.cc: New file.
13239 * testsuite/gc_comdat_test_2.cc: New file.
13240
65514900
CC
132412009-05-19 Doug Kwan <dougkwan@google.com>
13242
13243 * archive.cc (Archive::Archive): Move constructor from archive.h
13244 to here. Initialize no_export_.
13245 (Archive::get_elf_object_for_member): Set no_export flag of object.
13246 * archive.h (Archive::Archive): Move constructor body to
13247 archive.cc.
13248 (Archive::no_export): New method.
13249 (Archive::no_export_): New field.
13250 * object.h (Object::Object): Initialize no_export_ to false.
13251 (Object::no_export, Object::set_no_export): New methods.
13252 (Object::no_export_): New field.
13253 * options.cc (General_options::parse_exclude_libs): New method.
13254 (General_options::check_excluded_libs) Same.
13255 * options.h (exclude_libs): New option.
13256 (General_options::check_excluded_libs): New method declaration.
13257 (General_options::excluded_libs_): New field.
13258 * symtab.cc (Symbol_table::add_from_relobj): Hide symbols with
13259 default or protected visibility if an object has no-export flag set.
13260 testsuite/Makefile.am (check_PROGRAMS): Add exclude_libs_test.
13261 (check_SCRIPTS): Add exclude_libs_test.sh.
13262 (check_DATA): Add exclude_libs_test.syms.
13263 (MOSTLYCLEANFILES): Add exclude_libs_test.syms,
13264 libexclude_libs_test_1.a and libexclude_libs_test_2.a.
13265 (exclude_libs_test_SOURCES, exclude_libs_test_DEPENDENCIES,
13266 exclude_libs_test_LDFLAGS and exclude_libs_test_LDADD): Define.
13267 (exclude_libs_test.syms, libexclude_libs_test_1.a,
13268 libexclude_libs_test_2.a): New rules.
13269 * testsuite/Makefile.in: Regenerate.
13270 * testsuite/exclude_libs_test.c: New file.
13271 * testsuite/exclude_libs_test.sh: Ditto.
13272 * testsuite/exclude_libs_test_1.c: Ditto.
13273 * testsuite/exclude_libs_test_2.c: Ditto.
13274
1b77ea50
ILT
132752009-05-15 Ian Lance Taylor <iant@google.com>
13276
13277 * configure.ac: Check for declarations for cases where libiberty.h
13278 checks HAVE_DECL_xxx.
13279 * configure, config.in: Rebuild.
13280
072fe7ce
ILT
132812009-05-15 Mikolaj Zalewski <mikolajz@google.com>
13282
13283 * gold.h (Incremental_argument_list): Remove (invalid) forward
13284 declaration.
13285 * incremental.cc (Incremental_inputs::report_achive): New method.
13286 (Incremental_inputs::report_object): New method.
13287 (Incremental_inputs::report_script): New method.
13288 (Incremental_inputs::finalize_inputs): New method.
13289 (Incremental_inputs::finalize): Call finalize_inputs().
13290 (Incremental_inputs::sized_create_incremental_inputs_section_data):
13291 Create inputs entries.
13292 * incremental.h (Incremental_input_type): New enum.
13293 (Incremental_inputs::Incremental_input): Initialize new fields.
13294 (Incremental_inputs::report_inputs): New method.
13295 (Incremental_inputs::report_achive): New method.
13296 (Incremental_inputs::report_object): New method.
13297 (Incremental_inputs::report_script): New method.
13298 (Incremental_inputs::finalize_inputs): New method.
13299 (Incremental_inputs::Input_info): New struct.
13300 (Incremental_inputs::Input_info_map): New typedef.
13301 (Incremental_inputs::lock_): New field.
13302 (Incremental_inputs::Inputs_): New field.
13303 (Incremental_inputs::Inputs_map): New field.
13304 * main.cc (main): Call Incremental_input::report_inputs.
13305 * options.h (Input_argument_list): Typedef moved from
13306 Input_arguments.
13307 (Input_file_group::Files): Remove, use ::Input_argument_list.
13308 (Input_file_group::Input_argument_list): Remove, use
13309 ::Input_argument_list.
13310 * plugin.cc (Plugin_manager::add_input_file): Add error in
13311 incremental build.
13312 * read_syms.cc (do_read_syms): Call Incremental_input::report_*
13313 functions.
13314 * script.cc (read_input_script): Call
13315 Incremental_input::report_script.
13316 * script.h (Script_info): New class.
13317
b0481b0b
ILT
133182009-04-27 Ian Lance Taylor <iant@google.com>
13319
13320 * x86_64.cc (do_adjust_output_section): Set entsize to
13321 plt_entry_size.
13322
b22a5a41 133232009-04-23 Elliott Hughes <enh@google.com>
6d1e3092
CD
13324
13325 * output.cc (Output_file::close): After short writes, continue
13326 writing from the correct offset in the buffer being written.
13327
40fde488
CD
133282009-04-23 Chris Demetriou <cgd@google.com>
13329
13330 * configure.ac (HAVE_TR1_UNORDERED_MAP_REHASH): New define.
13331 * configure: Regenerate.
13332 * config.in: Regenerate.
13333 * gold.h: Avoid std::tr1::unordered_map and std::tr1::unordered_set
13334 if HAVE_TR1_UNORDERED_MAP_REHASH is not defined.
13335
3ce2c28e
ILT
133362009-04-21 Mikolaj Zalewski <mikolajz@google.com>
13337
13338 * incremental.cc (Incremental_inputs_header_data): Renamed from
13339 Incremental_input_header_data.
13340 (Incremental_inputs_header_data::data_size): New field.
13341 (Incremental_inputs_header_data::put_input_file_count): Renamed
13342 from input_file_count.
13343 (Incremental_inputs_header_data::put_command_line_offset): Renamed
13344 from command_line_offset.
13345 (Incremental_inputs_header_data::put_reserved): Renamed from
13346 put_reserved.
13347 (Incremental_inputs_entry_data): Renamed from
13348 Incremental_input_entry_data.
13349 (Incremental_inputs_entry_data::data_size): New field.
13350 (Incremental_inputs::report_command_line): New method.
13351 (Incremental_inputs::finalize): New method.
13352 (Incremental_inputs::create_incremental_inputs_data): New method.
13353 (Incremental_inputs::sized_create_incremental_inputs_data): New method.
13354 * incremental.h: New file.
13355 * layout.cc (Layout::Layout): Handle new incremental_inputs_.
703d02da 13356 (Layout::finalize): Create incremental inputs section in
3ce2c28e 13357 incremental builds.
703d02da 13358 (Layout::create_incremental_info_sections): New method.
3ce2c28e 13359 * layout.h (Layout::incremental_inputs): New method.
703d02da
AM
13360 (Layout::create_incremental_info_sections): New method.
13361 (Layout::incremental_inputs_): New field.
3ce2c28e
ILT
13362 * main.cc (main): Notify Incremental_input of the command line.
13363
e55bde5e
ILT
133642009-04-01 Ian Lance Taylor <iant@google.com>
13365 Mikolaj Zalewski <mikolajz@google.com>
13366
13367 * gold.h (reserve_unordered_map): Define, three versions, one for
13368 each version of Unordered_map.
13369 * layout.cc (Layout::Layout): Remove options parameter. Add
13370 number_of_input_files parameter. Don't initialize options_.
13371 Initialize number_of_input_files_ and resized_signatures_. Move
13372 sections_are_attached_.
13373 (Layout::layout_group): Reserve space for group_signatures_.
13374 (Layout::find_or_add_kept_section): Change name parameter to be a
13375 reference. Resize signatures_ map when it gets large enough.
13376 (Layout::layout_eh_frame): Use parameters->options() instead of
13377 this->options_.
13378 (Layout::make_output_section): Likewise.
13379 (Layout::attach_allocated_section_to_segment): Likewise.
13380 (Layout::finalize, Layout::create_executable_stack): Likewise.
13381 (Layout::set_segment_offsets, Layout::create_interp): Likewise.
13382 (Layout::finish_dynamic_section, Layout::write_binary): Likewise.
13383 * layout.h (class Layout): Update declarations. Remove options_
13384 field. Add number_of_input_files_ and resized_signatures_
13385 fields. Move sections_are_attached_ field.
13386 * main.cc (main): Pass number of input files to Layout
13387 constructor. Don't pass options.
13388
154b857c
ILT
133892009-03-30 Ian Lance Taylor <iant@google.com>
13390
13391 * ffsll.c (ffsll): Correct implementation.
13392
2f35ab9b
ILT
133932009-03-27 Ian Lance Taylor <iant@google.com>
13394
fd03461a
ILT
13395 * ffsll.c: New file.
13396 * configure.ac: Call AC_REPLACE_FUNCS on ffsll.
13397 * gold.h (ffsll): Declare if HAVE_FFSLL is not defined.
13398 * ftruncate.c (ftruncate): Declare before definition.
13399 * mremap.c (mremap): Likewise.
13400 * pread.c (pread): Likewise.
13401 * configure, Makefile.in, config.in: Rebuild.
13402
2f35ab9b
ILT
13403 * mremap.c: New file.
13404 * configure.ac: Call AC_REPLACE_FUNCS on mremap.
13405 * gold.h (MREMAP_MAYMOVE): Define if HAVE_MREMAP is not defined.
13406 (mremap): Declare if HAVE_MREMAP is not defined.
13407 * configure, Makefile.in, config.in: Rebuild.
13408
33aea2fd
CC
134092009-03-27 Cary Coutant <ccoutant@google.com>
13410
13411 * powerpc.cc (Target_powerpc::check_non_pic): Assert that output is
13412 position independent.
13413 * sparc.cc (Target_sparc::check_non_pic): Likewise.
13414 * x86_64.cc (Target_x86_64::check_non_pic): Likewise.
13415
6d479619
CC
134162009-03-24 Cary Coutant <ccoutant@google.com>
13417
13418 * symtab.h (needs_plt_entry): Check for unsatisfied reference from
13419 an executable.
13420 (needs_dynamic_reloc): Likewise.
13421
afc06bb8
ILT
134222009-03-24 Ian Lance Taylor <iant@google.com>
13423
13424 * yyscript.y (file_cmd): Recognize EXTERN.
13425 (extern_name_list, extern_name_list_body): New nonterminals.
13426 * script.cc (script_add_extern): Define.
13427 * script-c.h (script_add_extern): Declare.
13428
f6060a4d
ILT
134292009-03-24 Rafael Avila de Espindola <espindola@google.com>
13430
13431 * object.cc (is_elf_object): Define.
13432 * object.h (is_elf_object): Declare.
13433 * archive.cc (Archive::get_elf_object_for_member): Call
13434 is_elf_object.
33aea2fd 13435 * readsyms.cc (Read_symbols::do_read_symbols): Likewise.
f6060a4d 13436
26736d8e
ILT
134372009-03-24 Elliott Hughes <enh@google.com>
13438
13439 * output.cc (Output_file::map_anonymous): Define.
13440 (Output_file::map): Use map_anonymous. If the regular mmap fails,
13441 try an anonymous one. Report the size if the mmap fails.
13442 * output.h (class Output_file): Declare map_anonymous.
13443
22fd9730
ILT
134442009-03-24 Ian Lance Taylor <iant@google.com>
13445
13446 * target-select.cc (instantiate_target): Don't acquire the lock if
13447 the instantiated_target_ field has already been set.
13448
cb010894
ILT
134492009-03-23 Ian Lance Taylor <iant@google.com>
13450
7f055c20
ILT
13451 * gold-threads.h (class Initialize_lock): Define.
13452 * gold-threads.cc (class Initialize_lock_once): Define.
13453 (initialize_lock_control): New static variable.
13454 (initialize_lock_pointer): New static variable.
13455 (initialize_lock_once): New static function.
13456 (Initialize_lock::Initialize_lock): Define.
13457 (Initialize_lock::initialize): Define.
13458 * target-select.h: Include "gold-threads.h".
13459 (class Target_selector): Add lock_ and initialize_lock_ fields.
13460 Don't define instantiate_target, just declare it.
13461 * target-select.cc (Target_selector::Target_selector): Initialize
13462 new fields.
13463 (Target_selector::instantiate_target): Define.
13464 * descriptors.h: Include "gold-threads.h".
13465 (class Descriptors): Add initialize_lock_ field.
13466 * descriptors.cc (Descriptors::Descriptors): Initialize new
13467 field.
13468 (Descriptors::open): Use initialize_lock_ field
13469 * errors.h (class Errors): Add initialize_lock_ field.
13470 * errors.cc (Errors::Errors): Initialize new field.
13471 (Errors::initialize_lock): Use initialize_lock_ field.
13472 * powerpc.cc (class Target_selector_powerpc): Remove
13473 instantiated_target_ field. In do_recognize call
13474 instantiate_target rather than do_instantiate_target. In
13475 do_instantiate_target just allocate a new target.
13476 * sparc.cc (class Target_selector_sparc): Likewise.
13477
36959681
ILT
13478 * freebsd.h: New file.
13479 * i386.cc: Include "freebsd.h".
13480 (Target_i386): Derive from Target_freebsd rather than
13481 Sized_target.
13482 (Target_selector_i386): Derive from Target_selector_freebsd rather
13483 than Target_selector.
13484 * x86_64.cc: Include "freebsd.h".
13485 (Target_x86_64): Derive from Target_freebsd rather than
13486 Sized_target.
13487 (Target_selector_x86_64): Derive from Target_selector_freebsd
13488 rather than Target_selector.
13489 * target.h (class Target): Add adjust_elf_header and
13490 do_adjust_elf_header.
13491 * output.cc (Output_file_header:: do_sized_write): Call target
13492 adjust_elf_header routine.
13493 * configure.tgt: Set targ_osabi.
13494 * configure.ac: Define GOLD_DEFAULT_OSABI.
13495 * parameters.cc (Parameters::default_target): Pass
13496 GOLD_DEFAULT_OSABI to select_target.
13497 * target-select.h (class Target_selector): Make instantiate_target
13498 protected rather than private.
13499 * Makefile.am (HFILES): Add freebsd.h.
13500 * configure, Makefile.in, config.in: Rebuild.
13501
cb010894
ILT
13502 * merge.cc (do_add_input_section): Correct pend value. Change
13503 message about last entry not being null terminated from error to
13504 warning.
13505
0e879927
ILT
135062009-03-20 Mikolaj Zalewski <mikolajz@google.com>
13507
13508 * incremental.cc: New file.
13509 * Makefile.am (CCFILES): Add incremental.cc.
13510 * Makefile.in: Rebuild.
13511
41105937
PP
135122009-03-19 Paul Pluzhnikov <ppluzhnikov@google.com>
13513
13514 * layout.cc (Layout::output_section_name): Preserve names
13515 of '.note.' sections.
e1df38aa 13516
60439920
ILT
135172009-03-19 Ian Lance Taylor <iant@google.com>
13518
13519 * descriptors.cc (Descriptors::open): Check that the options are
13520 valid before using them.
13521
0d371ad3
ILT
135222009-03-18 Ian Lance Taylor <iant@google.com>
13523
13524 * script-sections.h: Include <list>.
13525 (class Script_sections): Change Sections_elements from std::vector
13526 to std::list. Typedef public Elements_iterator. Add
13527 orphan_section_placement_, data_segment_align_start_, and
13528 saw_data_segment_align_ fields. Remove data_segment_align_index_
13529 field.
13530 * script-sections.cc (class Orphan_section_placement): New class.
13531 (class Sections_element): Add virtual functions is_relro and
13532 orphan_section_init. Remove virtual function place_orphan_here.
13533 (class Output_section_definition): Add is_relro and
13534 orphan_section_init. Remove place_orphan_here.
13535 (class Orphan_output_section): Likewise.
13536 (Script_sections::Script_sections): Update for field changes.
13537 (Script_sections::data_segment_align): Set saw_data_segment_align_
13538 and data_segment_align_start_, not data_segment_align_index.
13539 (Script_sections::data_segment_relro_end): Check
13540 saw_data_segment_align_. Use data_segment_align_start_ rather
13541 than data_segment_align_index_.
13542 (Script_sections::place_orphan): Rewrite to use
13543 Orphan_section_placement.
13544
9201d894
ILT
135452009-03-17 Ian Lance Taylor <iant@google.com>
13546
9c5b8369
ILT
13547 * archive.cc (Archive::add_symbols): Check for a version attached
13548 to the symbol name in the archive map.
13549 * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_11.
13550 (ver_test_11_SOURCES, ver_test_11_DEPENDENCIES): Define.
13551 (ver_test_11_LDFLAGS, ver_test_11_LDADD): Define.
13552 (ver_test_11.a): New target.
13553 * testsuite/Makefile.in: Rebuild.
13554
9201d894
ILT
13555 * configure.ac: Check for chsize and posix_fallocate. Replace
13556 ftruncate.
13557 * ftruncate.c: New file, from gnulib.
13558 * output.cc (posix_fallocate): Define dummy version if not
13559 HAVE_POSIX_FALLOCATE.
13560 (Output_file::map): Call posix_fallocate rather than lseek and
13561 write.
13562 * gold.h (ftruncate): Declare if not HAVE_FTRUNCATE.
13563 * configure, Makefile.in, config.in: Rebuild.
13564
ef4ab7a8 135652009-03-17 Paul Pluzhnikov <ppluzhnikov@google.com>
e1df38aa 13566
ef4ab7a8
PP
13567 * layout.h (Layout::create_note): Add section_name parameter.
13568 * layout.cc (Layout::create_note): Likewise.
13569 (Layout::create_build_id, Layout::create_gold_note): Fix callers.
e1df38aa 13570
8c500701
ILT
135712009-03-17 Ian Lance Taylor <iant@google.com>
13572
e85b18e1
ILT
13573 * descriptors.cc: Include "options.h".
13574 (FD_CLOEXEC, O_CLOEXEC): Define if not defined.
13575 (Descriptors::open): Always use O_CLOEXEC when opening a new
13576 descriptor. If we have a plugin, and O_CLOEXEC was not defined,
13577 then set FD_CLOEXEC.
13578
9efe6174
ILT
13579 * sparc.cc (class Target_sparc): Add has_got_section.
13580 (Target_sparc::Scan::global): If we see _GLOBAL_OFFSET_TABLE_,
13581 make sure we have a GOT section.
13582
13583 * sparc.cc (optimize_tls_reloc): Recognize R_SPARC_TLS_IE_ADD.
13584 (Target_sparc::Scan::local): Likewise.
13585 (Target_sparc::Scan::global): Likewise.
13586 (Target_sparc::Relocate::relocate): Likewise.
13587 (Target_sparc::Relocate::relocate_tls): Likewise.
13588
8c500701
ILT
13589 * symtab.cc (Symbol_table::define_default_version): New function,
13590 broken out of add_from_object.
13591 (Symbol_table::add_from_object): Call define_default_version.
13592 (Symbol_table::define_special_symbol): Add resolve_oldsym
13593 parameter. Change all callers. If the version for a symbol comes
13594 from a version script, resolve it with the symbol with the same
13595 name with no version. Also add the symbol without a version if
13596 appropriate.
13597 (do_define_in_output_data): If resolving with oldsym, don't delete
13598 sym.
13599 (do_define_in_output_segment): Likewise.
13600 (do_define_as_constant): Likewise.
13601 * symtab.h (class Symbol_table): Update declarations.
13602
f1ed28fb
ILT
136032009-03-13 Ian Lance Taylor <iant@google.com>
13604
15f8229b
ILT
13605 * readsyms.cc (Read_symbols::incompatible_warning): New function.
13606 (Read_symbols::requeue): New function.
13607 (Read_symbols::do_read_symbols): If make_elf_object fails because
13608 the target type is not configured, and the file was searched for,
13609 issue a warning and retry with the next directory.
13610 (Add_symbols::run): If the file has an incompatible format, and
13611 it was searched for, requeue the Read_symbols task. On error,
13612 release the object.
13613 * readsyms.h (class Read_symbols): Add dirindex_ field. Add
13614 dirindex parameter to constructor. Change all callers. Declare
13615 incompatible_warning and requeue.
13616 (class Add_symbols): Add dirpath_, dirindex_, mapfile_,
13617 input_argument_ and input_group_ fields. Add them to
13618 constructor. Change all callers.
13619 (class Read_script): Add dirindex_ field. Add it to constructor.
13620 Change all callers.
13621 * archive.cc (Archive::setup): Remove input_objects parameter.
13622 Change all callers.
13623 (Archive::get_file_and_offset): Likewise.
13624 (Archive::read_all_symbols): Likewise.
13625 (Archive::read_symbols): Likewise.
13626 (Archive::get_elf_object_for_member): Remove input_objects
13627 parameter. Add punconfigured parameter. Change all callers.
13628 (Archive::add_symbols): Change return type to bool. Check return
13629 value of include_member.
13630 (Archive::include_all_members): Likewise.
13631 (Archive::include_member): Change return type to bool. Return
13632 false if first included object has incompatible target. Set
13633 included_member_ field.
13634 (Add_archive_symbols::run): If add_symbols returns false, requeue
13635 Read_symbols task.
13636 * archive.h (class Archive): Add included_member_ field.
13637 Initialize it in constructor. Add input_file and searched_for
13638 methods. Update declarations.
13639 (class Add_archive_symbols): Add dirpath_, dirindex_, and
13640 input_argument_ fields. Add them to constructor. Change all
13641 callers.
13642 * script.cc: Include "target-select.h".
13643 (class Parser_closure): Add skip_on_incompatible_target_ and
13644 found_incompatible_target_ fields. Add
13645 skip_on_incompatible_target parameter to constructor. Change all
13646 callers. Add methods skip_on_incompatible_target,
13647 clear_skip_on_incompatible_target, found_incompatible_target, and
13648 set_found_incompatible_target.
13649 (read_input_script): Add dirindex parameter. Change all callers.
13650 If parser finds an incompatible target, requeue Read_symbols
13651 task.
13652 (script_set_symbol): Clear skip_on_incompatible_target in
13653 closure.
13654 (script_add_assertion, script_parse_option): Likewise.
13655 (script_start_sections, script_add_phdr): Likewise.
13656 (script_check_output_format): New function.
13657 * script.h (read_input_script): Update declaration.
13658 * script-c.h (script_check_output_format): Declare.
13659 * yyscript.y (file_cmd): Handle OUTPUT_FORMAT.
13660 (ignore_cmd): Remove OUTPUT_FORMAT.
13661 * fileread.cc (Input_file::Input_file): Add explicit this.
13662 (Input_file::will_search_for): New function.
13663 (Input_file::open): Add pindex parameter. Change all callers.
13664 * fileread.h (class Input_file): Add input_file_argument method.
13665 Declare will_search_for. Update declarations.
13666 * object.cc (make_elf_object): Add punconfigured parameter.
13667 Change all callers.
13668 * object.h (class Object): Make input_file public. Add
13669 searched_for method.
13670 (make_elf_object): Update declaration.
13671 * dirsearch.cc (Dirsearch::find): Add pindex parameter. Use it to
13672 restart search.
13673 * dirsearch.h (class Dirsearch): Update declaration.
13674 * options.h (class General_options): Add --warn-search-mismatch.
13675 * parameters.cc (Parameters::is_compatible_target): New function.
13676 * parameters.h (class Parameters): Declare is_compatible_target.
13677 * workqueue.cc (Workqueue::add_blocker): New function.
13678 * workqueue.h (class Workqueue): Declare add_blocker.
13679
f1ed28fb
ILT
13680 * fileread.cc (Input_file::open): Remove options parameter.
13681 Change all callers.
13682 (Input_file::open_binary): Likewise.
13683 * script.cc (read_input_script): Likewise.
13684 * readsyms.h (class Read_symbols): Remove options_ field. Remove
13685 options parameter from constructor. Change all callers.
13686 (class Read_script): Likewise.
13687 * fileread.h (class Input_file): Update declarations.
13688 * script.h (read_input_script): Update declaration.
13689
34dd024a
NC
136902009-03-10 Nick Clifton <nickc@redhat.com>
13691
13692 * po/es.po: New Spanish translation.
13693
6d71b17c
CC
136942009-03-06 Cary Coutant <ccoutant@google.com>
13695
13696 * options.cc (parse_short_option): Keep dash_z from registering itself.
13697
031cdbed
ILT
136982009-03-03 Ian Lance Taylor <iant@google.com>
13699
13700 PR 9918
13701 * target-reloc.h (relocate_section): Pass output_section to
13702 relocate.
13703 * i386.cc (Target_i386::should_apply_static_reloc): Add
13704 output_section parameter. Change all callers.
13705 (Target_i386::Relocate::relocate): Add output_section parameter.
13706 * x86_64.cc (Target_x86_64::Relocate::relocate): Likewise.
13707 * sparc.cc (Target_sparc::Relocate::relocate): Likewise.
13708 * powerpc.cc (Target_powerpc::Relocate::relocate): Likewise.
13709 * testsuite/two_file_shared.sh: New script.
13710 * testsuite/Makefile.am (check_SCRIPTS): Add two_file_shared.sh.
13711 (check_DATA): Add two_file_shared.dbg.
13712 (two_file_shared.dbg): New target.
13713 * testsuite/Makefile.in: Rebuild.
13714
15d5fa16
ILT
137152009-03-01 Ian Lance Taylor <iant@google.com>
13716
13717 * configure.ac: Check for byteswap.h.
13718 * configure: Rebuild.
13719 * config.in: Rebuild.
13720
8a4c0b0d
ILT
137212009-03-01 Mikolaj Zalewski <mikolajz@google.com>
13722
13723 * layout.cc (Layout::find_or_add_kept_section): New function.
13724 (Layout::add_comdat): Removed.
13725 * layout.h (struct Kept_section): Move out of class Layout.
13726 Remove trailing underscores from field names. Add group_sections
13727 field. Rename group_ field to is_group. Change all uses.
13728 (class Layout): Declare find_or_add_kept_section, not add_comdat.
13729 * object.cc (Sized_relobj::Sized_relobj): Don't initialize
13730 comdat_groups_ field.
13731 (Sized_relobj::include_section_group): Use
13732 find_or_add_kept_section and Kept_section::group_sections.
13733 (Sized_relobj::include_linkonce_section): Likewise.
13734 * object.cc (class Sized_relobj): Don't define Comdat_group or
13735 Comdat_group_table. Remove find_comdat_group and
13736 add_comdat_group. Remove comdat_groups_ field.
13737 * plugin.cc (include_comdat_group): Use
13738 Layout::find_or_add_kept_section.
13739
b4ecf66b
ILT
137402009-02-28 Ian Lance Taylor <iant@google.com>
13741
14359ca0
ILT
13742 * README: --gc-sections and map files are now supported. Document
13743 some build requirements.
13744
b4ecf66b
ILT
13745 PR 6992
13746 * symtab.cc (Symbol_table::sized_write_section_symbol): In a
13747 relocatable link set the value of the section symbol to zero.
13748 * object.cc (Sized_relobj::do_finalize_local_symbols): In a
13749 relocatable link don't include the section address in the local
13750 symbol value.
13751
0602e05a
ILT
137522009-02-27 Ian Lance Taylor <iant@google.com>
13753
fd9d194f
ILT
13754 PR 6811
13755 * options.h (class Search_directory): Add is_system_directory.
13756 (class General_options): Declare is_in_system_directory.
13757 * options.cc (get_relative_sysroot): Make static.
13758 (get_default_sysroot): Make static.
13759 (General_optoins::is_in_system_directory): New function.
13760 * fileread.cc (Input_file::is_in_system_directory): New function.
13761 * fileread.h (class Input_file): Declare is_in_system_directory.
13762 * object.h (class Object): Add is_in_system_directory.
13763 (class Input_objects): Remove system_library_directory_ field.
13764 * object.cc (Input_objects::add_object): Don't set
13765 system_library_directory_.
13766 (input_objects::found_in_system_library_directory): Remove.
13767 * symtab.cc (Symbol_table::write_globals): Remove input_objects
13768 parameter. Change all callers.
13769 (Symbol_table::sized_write_globals): Likewise.
13770 (Symbol_table::warn_about_undefined_dynobj_symbol): Likewise.
13771 Call Object::is_in_system_directory.
13772 * symtab.h (class Symbol_table): Update declarations.
13773
61edd21f
ILT
13774 PR 5990
13775 * descriptors.h (Open_descriptor): Add is_on_stack field.
13776 * descriptors.cc (Descriptors::open): If the descriptor is on the
13777 top of the stack, remove it. Initialize is_on_stack field.
13778 (Descriptors::release): Only add pod to stack if it is not on the
13779 stack already.
13780 (Descriptors::close_some_descriptor): Clear stack_next and
13781 is_on_stack fields.
13782
e29e076a
ILT
13783 PR 7091
13784 * output.cc (Output_section::find_starting_output_address): Rename
13785 from starting_output_address; add PADDR parameter; change return
13786 type.
13787 * output.h (class Output_section): Declare
13788 find_starting_output_address instead of starting_output_address.
13789 * object.cc (Sized_relobj::do_finalize_local_symbols): Handle a
13790 section symbol for which we can't find a merge section.
13791
0602e05a
ILT
13792 PR 9836
13793 * symtab.cc (Symbol_table::add_from_object): If the visibility is
13794 hidden or internal, force the symbol to be local.
13795 * resolve.cc (Symbol::override_visibility): Define.
13796 (Symbol::override_base): Use override_visibility.
13797 (Symbol_table::resolve): Likewise.
13798 (Symbol::override_base_with_special): Likewise.
13799 (Symbol_table::override_with_special): If the visibility is hidden
13800 or internal, force the symbol to be local.
13801 * symtab.h (class Symbol): Add set_visibility and
13802 override_visibility.
13803 * testsuite/ver_test_1.sh: New file.
13804 * testsuite/Makefile.am (check_SCRIPTS): Add ver_test_1.sh.
13805 (check_DATA): Add ver_test_1.syms.
13806 (ver_test_1.syms): New target.
13807 * testsuite/Makefile.in: Rebuild.
13808
401a9a73
CC
138092009-02-25 Cary Coutant <ccoutant@google.com>
13810
13811 * layout.cc (Layout::choose_output_section): Don't rename sections
13812 when using a linker script that has a SECTIONS clause.
13813 * Makefile.in: Regenerate.
13814
13815 * testsuite/Makefile.am (script_test_5.sh): New test case.
13816 * testsuite/Makefile.in: Regenerate.
13817 * testsuite/script_test_5.cc: New file.
13818 * testsuite/script_test_5.sh: New file.
13819 * testsuite/script_test_5.t: New file.
13820
f488e4b0
CC
138212009-02-13 Rafael Avila de Espindola <espindola@google.com>
13822
13823 * archive.cc (Archive::include_member): Update calls to add_symbols.
13824 * dynobj.cc (Sized_dynobj<size, big_endian>::make_version_map): Add
13825 the Layout argument.
13826 * dynobj.h (do_add_symbols): Add the Layout argument.
13827 * object.cc (Sized_relobj<size, big_endian>::do_add_symbols): Add the
13828 Layout argument.
13829 * object.h (Object::add_symbols): Add the Layout argument.
13830 (Object::do_add_symbols): Add the Layout argument.
13831 (Sized_relobj::do_add_symbols): Add the Layout argument.
13832 * plugin.cc (Sized_pluginobj<size, big_endian>::do_add_symbols):
13833 Unify the two versions.
13834 (Add_plugin_symbols): Remove.
13835 * plugin.h (Pluginobj::add_symbols, Pluginobj::do_add_symbols): Remove.
13836 (Sized_pluginobj::do_add_symbols): Unify the two versions.
13837 (Add_plugin_symbols): Remove.
13838 * readsyms.cc (Read_symbols::do_read_symbols): Update call to
13839 Add_symbols. Use Add_symbols instead of Add_plugin_symbols.
13840 (Add_symbols::run): Make it work with Pulginobj.
13841
89dd1680
ILT
138422009-02-06 Ian Lance Taylor <iant@google.com>
13843
13844 * object.cc (Sized_relobj::do_layout): Make info message start
13845 with lower case letter.
13846
266d0a74
ILT
138472009-02-06 Mikolaj Zalewski <mikolajz@google.com>
13848
602b464e
ILT
13849 * binary.cc: Fix file comment.
13850
266d0a74
ILT
13851 * options.h (enum Incremental_disposition): Define.
13852 (class General_options): Add new options: --incremental,
13853 --incremental_changed, --incremental_unchanged,
13854 --incremental_unknown. Add incremental_disposition_ and
13855 implicit_incremental_ fields.
13856 (General_options::incremental_disposition): New function.
13857 (class Position_dependent_options): Add incremental_disposition
13858 option.
13859 (Position_dependent_options::copy_from_options): Set incremental
13860 dispositions.
13861 * options.cc (General_options::parse_incremental_changed): New
13862 function.
2e702c99
RM
13863 (General_options::parse_incremental_unchanged): New function.
13864 (General_options::parse_incremental_unknown): New function.
13865 (General_options::General_options): Initialize new fields
266d0a74 13866 incremental_disposition_ and implicit_incremental_.
2e702c99 13867 (General_options::finalize): Check for uasge of --incremental-*
266d0a74
ILT
13868 without --incremental.
13869
f073bbf7
CD
138702009-02-06 Chris Demetriou <cgd@google.com>
13871
13872 * gold.h (gold_undefined_symbol): Change to take only a Symbol
13873 pointer and to report location as the file name associated with
13874 the symbol.
13875 (gold_undefined_symbol_at_location): New function to replace the
13876 old gold_undefined_symbol functionality.
13877 * target-reloc.h (relocate_section): Update to use
13878 gold_undefined_symbol_at_location.
13879 * symtab.cc (Symbol_table::warn_about_undefined_dynobj_symbol):
13880 Call gold_undefined_symbol function rather than gold_error.
13881 * errors.h (Errors::undefined_symbol): Take location as a
13882 string, rather than calculating it from a relocation.
13883 * errors.cc (Errors::fatal): Print "fatal error:" before the
13884 formatted message.
13885 (Errors::error, Errors::error_at_location): Print "error: "
13886 before the formatted message.
13887 (Errors::undefined_symbol): Take location as a string, rather
13888 than calculating it from a relocation.
13889 (gold_undefined_symbol_at_location): New function akin to
13890 old gold_undefined_symbol, calculates location from relocation.
13891 (gold_undefined_symbol): Change to take only a Symbol pointer
13892 and to report location as the file name associated with the symbol.
13893 * testsuite/debug_msg.sh: Update for changed error messages.
13894 * testsuite/undef_symbol.sh: Likewise.
13895
8e94a90c
ILT
138962009-02-04 Duncan Sands <baldrick@free.fr>
13897
13898 PR 9812
13899 * reduced_debug_output.h
13900 (Output_reduced_debug_abbrev_section::failed): Use format for
13901 gold_warning.
13902 (Output_reduced_debug_info_section::faild): Likewise.
13903
88a0e15b
ILT
139042009-01-31 Mikolaj Zalewski <mikolajz@google.com>
13905
13906 * script.cc (Lazy_demangler): New class.
2e702c99 13907 (Version_script_info::get_symbol_version_helper): Demangle a
88a0e15b
ILT
13908 symbol only once.
13909
5efc7cd2
CC
139102009-01-29 Cary Coutant <ccoutant@google.com>
13911
13912 * i386.cc (Target_i386::Relocate::relocate): Recognize non-PIC calls
13913 to __tls_get_addr.
13914 * x86_64.cc (Target_x86_64::Relocate::relocate): Likewise.
13915
e0ebcf42
ILT
139162009-01-28 Ian Lance Taylor <iant@google.com>
13917
5efc7cd2 13918 * version.cc (version_string): Bump to 1.9.
75fe7426 13919
e0ebcf42
ILT
13920 * gold.h: Include <cstring> and <stdint.h>.
13921 * version.cc: Include <cstdio>.
13922 * object.cc (Sized_relobj::do_layout): Initialize gc_sd to avoid a
13923 warning.
13924 * reduced_debug_output.cc (insert_into_vector): Rename from
13925 Insert_into_vector; change all callers. Use Swap_unaligned to
13926 avoid aliasing issue; remove union since it is unnecessary.
13927
8e2813be 139282009-01-27 Sriraman Tallam <tmsriram@google.com>
6d03d481
ST
13929
13930 * Makefile.am (CCFILES): Add gc.cc.
13931 (HFILES): Add gc.h.
13932 * Makefile.in: Regenerate.
13933 * gold.cc (Gc_runner): New class.
13934 (queue_initial_tasks): Call garbage collection related tasks
13935 when corresponding options are invoked.
13936 (queue_middle_gc_tasks): New function.
13937 (queue_middle_tasks): Reorder tasks to allow relocs to be read and
13938 processed early before laying out sections during garbage collection.
13939 * gold.h (queue_middle_gc_tasks): New function.
13940 (is_prefix_of): Move from "layout.cc".
13941 * i386.cc (Target_i386::gc_process_relocs): New function.
13942 * layout.cc (is_prefix_of): Remove. Move to "gold.h"
13943 * main.cc (main): Create object of class "Garbage_collection".
13944 * object.cc (Relobj::copy_symbols_data): New function.
13945 (Relobj::is_section_name_included): New function.
e1df38aa
NC
13946 (Sized_relobj::do_layout): Allow this function to be called twice
13947 during garbage collection and defer layout of section during the
6d03d481
ST
13948 first call.
13949 * object.h (Relobj::get_symbols_data): New function.
13950 (Relobj::is_section_name_included): New function.
13951 (Relobj::copy_symbols_data): New function.
13952 (Relobj::set_symbols_data): New function.
13953 (Relobj::get_relocs_data): New function.
13954 (Relobj::set_relocs_data): New function.
13955 (Relobj::is_output_section_offset_invalid): New pure virtual function.
13956 (Relobj::gc_process_relocs): New function.
13957 (Relobj::do_gc_process_relocs): New pure virtual function.
13958 (Relobj::sd_): New data member.
13959 (Sized_relobj::is_output_section_offset_invalid): New function.
13960 (Sized_relobj::do_gc_process_relocs): New function.
13961 * options.h (General_options::gc_sections): Modify to not be a no-op.
13962 (General_options::print_gc_sections): New option.
13963 * plugin.cc (Plugin_finish::run): Remove function call to
13964 Plugin_manager::layout_deferred_objects. Move it to "gold.cc".
13965 * powerpc.cc (Target_powerpc::gc_process_relocs): New function.
13966 * reloc.cc (Read_relocs::run): Add task to process relocs and
13967 determine unreferenced sections when doing garbage collection.
13968 (Gc_process_relocs): New class.
13969 (Sized_relobj::do_gc_process_relocs): New function.
13970 (Sized_relobj::do_scan_relocs): Don't try to scan the relocs for
13971 sections that are garbage collected.
13972 * reloc.h (Gc_process_relocs): New class.
13973 * sparc.cc (Target_sparc::gc_process_relocs): New function.
13974 * symtab.cc (Symbol::should_add_dynsym_entry): Do not add entries for
13975 symbols whose corresponding sections are garbage collected.
13976 (Symbol_table::Symbol_table): Add new parameter for the garbage
13977 collection object.
13978 (Symbol_table::gc_mark_undef_symbols): New function.
13979 (Symbol_table::gc_mark_symbol_for_shlib): New function.
13980 (Symbol_table::gc_mark_dyn_syms): New function.
13981 (Symbol_table::resolve): Do not treat symbols seen in dynamic objects
13982 as garbage.
13983 (Symbol_table::add_from_object): Likewise.
13984 (Symbol_table::add_from_relobj): When building shared objects, do not
13985 treat externally visible symbols as garbage.
13986 (Symbol_table::sized_finalize_symbol): Do not check dynamic symbol
13987 table information for static and relocatable links.
13988 * symtab.h (Symbol_table::set_gc): New function.
13989 (Symbol_table::gc): New function.
13990 (Symbol_table::gc_mark_undef_symbols): New function.
13991 (Symbol_table::gc_mark_symbol_for_shlib): New function.
13992 (Symbol_table::gc_mark_dyn_syms): New function.
13993 (Symbol_table::gc_): New data member.
e1df38aa 13994 * target.h (Sized_target::gc_process_relocs): New pure virtual
6d03d481
ST
13995 function.
13996 * x86_64.cc (Target_x86_64::gc_process_relocs): New function.
13997 * testsuite/testfile.cc (Target_test::gc_process_relocs): New function.
13998
3b293544
CF
139992009-01-20 Chris Faylor <me.sourceware@sourceware.org>
14000
14001 * options.h (General_options::gc_sections): Define as a no-op for now.
14002 (General_options::no_keep_memory): Ditto.
14003 (General_options::Bshareable): Define.
14004 * options.cc (General_options::finalize): Honor -Bshareable.
14005
83d22aa8
AS
140062009-01-20 Andreas Schwab <schwab@suse.de>
14007
14008 * powerpc.cc (Powerpc_relocate_functions::rel16_ha): Don't try to
14009 read the value in the contents, since we don't use it. Use the
14010 template endianness when writing.
14011 (Relocate::relocate): Use it for R_PPC_REL16_HA.
14012
cd536b21
AS
140132009-01-19 Andreas Schwab <schwab@suse.de>
14014
14015 * configure.tgt (powerpc64-*): Fix targ_obj.
14016
99e9a495
ILT
140172009-01-15 Ian Lance Taylor <iant@google.com>
14018
14019 * object.cc (Sized_relobj::write_local_symbols): Don't write out
14020 local symbols when stripping all symbols.
14021
bbbfea06
CC
140222009-01-14 Cary Coutant <ccoutant@google.com>
14023
99e9a495 14024 * output.cc (Output_reloc): Add explicit instantiations.
bbbfea06 14025
0f7c0701
CC
140262009-01-14 Cary Coutant <ccoutant@google.com>
14027
14028 * archive.cc (Archive::get_elf_object_for_member): Remove call
14029 to File_read::claim_for_plugin.
14030 * descriptors.cc (Descriptors::open): Remove reference to
14031 is_claimed.
14032 (Descriptors::claim_for_plugin): Remove.
14033 * descriptors.h (Descriptors::claim_for_plugin): Remove.
14034 (Descriptors::is_claimed): Remove.
14035 (claim_descriptor_for_plugin): Remove.
14036 * fileread.cc (File_read::claim_for_plugin): Remove.
14037 * fileread.h (File_read::claim_for_plugin): Remove.
14038 (File_read::descriptor): Reopen descriptor if necessary.
14039 * plugin.cc (Plugin::load): Add two new APIs to transfer vector.
14040 (Plugin_manager::all_symbols_read): Add task parameter. Change
14041 all callers.
14042 (Plugin_manager::get_input_file): New function.
14043 (Plugin_manager::release_input_file): New function.
14044 (Pluginobj::Pluginobj): Add filesize parameter and initialize
14045 corresponding data member.
14046 (Sized_pluginobj::Sized_pluginobj): Add filesize parameter
14047 and pass to base constructor. Change all callers.
14048 (get_input_file, release_input_file): New functions.
14049 (make_sized_plugin_object): Add filesize parameter. Change all callers.
14050 * plugin.h (Plugin_manager::Plugin_manager): Initialize task_ member.
14051 (Plugin_manager::all_symbols_read): Add task parameter.
14052 (Plugin_manager::get_input_file): New function.
14053 (Plugin_manager::release_input_file): New function.
14054 (Plugin_manager::task_): New data member.
14055 (Pluginobj::Pluginobj): Add filesize parameter.
14056 (Pluginobj::filename): New function.
14057 (Pluginobj::descriptor): New function.
14058 (Pluginobj::filesize): New function.
14059 (Pluginobj::filesize_): New data member.
14060 (Sized_pluginobj::Sized_pluginobj): Add filesize parameter.
14061 * readsyms.cc (Read_symbols::do_read_symbols): Remove call to
14062 File_read::claim_for_plugin; use Object::unlock to unlock the file.
14063
14064 * testsuite/Makefile.am (plugin_test_4): New test case for plugins
14065 with archive libraries.
14066 * testsuite/Makefile.in: Regenerate.
14067 * testsuite/plugin_test.c (struct sym_info): New type.
14068 (get_input_file, release_input_file): New static variables.
14069 (onload): Capture new transfer vector entries.
14070 (claim_file_hook): Stop reading at end of file according to filesize.
14071 Factor out parsing of readelf output into separate function.
14072 (all_symbols_read_hook): Exercise get_input_file and release_input_file
14073 APIs and get the source file name from the symbol table. Convert
14074 source file name to corresponding object file name. Print info
14075 message when adding new input files.
14076 (parse_readelf_line): New function.
14077 * testsuite/plugin_test_1.sh: Add checks for new info messages.
14078 * testsuite/plugin_test_2.sh: Likewise.
14079 * testsuite/plugin_test_3.sh: Likewise.
14080 * testsuite/plugin_test_4.sh: New test case.
14081
62a6d109
ILT
140822009-01-07 Ian Lance Taylor <iant@google.com>
14083
14084 * version.cc (version_string): Bump to 1.8.
14085
483620e8
CC
140862008-12-23 Cary Coutant <ccoutant@google.com>
14087
14088 * gold.cc (gold_exit): Call plugin cleanup handlers on exit.
14089 * plugin.cc (Plugin_manager::finish): Rename as
14090 layout_deferred_objects. Move cleanup to separate function.
14091 (Plugin_manager::cleanup): New function.
14092 (Plugin_finish::run): Call layout_deferred_objects and cleanup
14093 separately.
14094 * plugin.h (Plugin_manager::finish): Rename as
14095 layout_deferred_objects.
14096 (Plugin_manager::cleanup): New function.
14097 (Plugin_manager::cleanup_done): New field.
14098
d66a9eb3
CC
140992008-12-23 Cary Coutant <ccoutant@google.com>
14100
14101 * plugin.cc (is_visible_from_outside): New function.
14102 (Pluginobj::get_symbol_resolution_info): Call is_visible_from_outside
14103 so we don't return "IR only" status for exported symbols or -r links.
14104
14105 * testsuite/Makefile.am (plugin_test_3): New test case.
14106 * testsuite/Makefile.in: Regenerate.
14107 * testsuite/plugin_test_3.sh: New file.
14108
5995b570
CC
141092008-12-22 Cary Coutant <ccoutant@google.com>
14110
14111 * object.cc (Sized_relobj::layout_section): New function.
14112 (Sized_relobj::do_layout): Defer layout of input sections until after
14113 plugin has provided replacement files.
14114 (Sized_relobj::do_layout_deferred_sections): New function.
14115 * object.h (Relobj::set_section_offset): Remove virtual keyword.
14116 (Relobj::layout_deferred_sections): New function.
14117 (Relobj::do_layout_deferred_sections): New function.
14118 (Sized_relobj::do_layout_deferred_sections): New function.
14119 (Sized_relobj::layout_section): New function.
14120 (Sized_relobj::Deferred_layout): New structure.
14121 (Sized_relobj::deferred_layout_): New field.
14122 * plugin.cc (Plugin_manager::finish): Renamed, was cleanup.
14123 Change all callers. Layout deferred sections.
14124 (class Plugin_finish): Renamed, was Plugin_cleanup. Change all
14125 references.
14126 (Plugin_hook::run): Move code from do_plugin_hook inline.
14127 (Plugin_hook::do_plugin_hook): Remove.
14128 * plugin.h (Plugin_manager::Plugin_manager): Add missing initializers.
14129 (Plugin_manager::finish): Renamed, was cleanup.
14130 (Plugin_manager::should_defer_layout): New function.
14131 (Plugin_manager::add_deferred_layout_object): New function.
14132 (Plugin_manager::Deferred_layout_list): New type.
14133 (Plugin_manager::deferred_layout_objects_): New field.
14134 (Plugin_hook::do_plugin_hook): Remove.
14135
ee769c88
ILT
141362008-12-17 Ian Lance Taylor <iant@google.com>
14137
14138 * options.h (class General_options): Add --no case for
14139 --export-dynamic.
14140
abc8dcba
CC
141412008-12-16 Cary Coutant <ccoutant@google.com>
14142
14143 * plugin.cc (Plugin::load): Move LDPT_MESSAGE to front of transfer
14144 vector.
14145 (Plugin_manager::claim_file): Create plugin object even if
14146 plugin did not call the add_symbols callback.
14147 (Plugin_obj::get_symbol_resolution_info): Guard against plugin
14148 asking for more symbols than were added.
14149 * testsuite/Makefile.am (plugin_test_1): Add test case with
14150 no global symbols.
14151 (empty.syms): New target.
14152 * testsuite/Makefile.in: Regenerate.
14153 * testsuite/plugin_test.c (claim_file_hook): Add new debug
14154 message. Don't call add_symbols if no globals.
14155 (all_symbols_read_hook): Don't provide replacement for empty
14156 claimed file.
14157
b0074644
ILT
141582008-12-12 Ian Lance Taylor <iant@google.com>
14159
68943102
ILT
14160 * target-reloc.h (Default_scan_relocatable_relocs): Only discard
14161 r_type == 0 for a local symbol with r_sym == 0.
14162 (scan_relocatable_relocs): Pass r_sym to
14163 local_non_section_strategy.
14164 * reloc.cc (Emit_relocs_strategy::local_non_section_strategy): Add
14165 r_sym parameter.
14166
b0074644
ILT
14167 * configure.ac: Update test for TLS descriptors: they are
14168 supported as of glibc 2.9.
14169 * configure: Rebuild.
14170
c2508178
ILT
141712008-12-11 Ian Lance Taylor <iant@google.com>
14172
14173 PR 7091
14174 * target-reloc.h (Default_scan_relocatable_relocs): For each
14175 function, map r_type == 0 to RELOC_DISCARD.
14176
2756a258
CC
141772008-12-10 Cary Coutant <ccoutant@google.com>
14178
14179 * layout.cc (Layout::add_comdat): Allow COMDAT group from a replacement
14180 object to override a kept COMDAT group from a plugin object.
14181
bb6f53d3
ILT
141822008-12-09 Ian Lance Taylor <iant@google.com>
14183
fbc558e1
ILT
14184 PR 7088
14185 * yyscript.y (file_cmd): Handle INPUT.
14186
bb6f53d3
ILT
14187 * testsuite/initpri1.c: Change all declarations to be full
14188 prototypes by adding void, to avoid compiler warnings.
14189
4674ecfc
CC
141902008-12-05 Rafael Avila de Espindola <espindola@google.com>
14191
14192 * options.cc (General_options::parse_plugin_opt): New.
14193 (General_options::add_plugin): The argument now is just the filename.
14194 (General_options::add_plugin_option): New.
14195 * options.h (plugin_opt): New.
14196 (add_plugin): Change argument name.
14197 (add_plugin_option): New.
14198 * plugin.cc (Plugin::load): Don't parse the plugin option.
14199 * plugin.h (Plugin::Plugin): Rename argument. Init filename_.
14200 (Plugin::add_option): New.
14201 (Plugin::args_): Change type.
14202 (Plugin::filename_): New.
14203 (Plugin_manager::add_plugin_option): New.
14204 * testsuite/Makefile.am (plugin_test_1): Use new syntax.
14205 * testsuite/Makefile.in: Regenerate.
14206
fd06b4aa
CC
142072008-12-05 Cary Coutant <ccoutant@google.com>
14208
14209 * layout.cc (Layout::include_section): Check for SHF_EXCLUDE.
14210 Handle --strip-lto-sections option.
14211 * options.h (strip_lto_sections): New option.
14212
6c52134c
CC
142132008-12-01 Cary Coutant <ccoutant@google.com>
14214
14215 * plugin.cc (ld_plugin_message): Change format parameter to const.
14216 Fix mismatch between new[] and delete.
14217
a45248e0
CC
142182008-11-14 Cary Coutant <ccoutant@google.com>
14219
14220 * reloc.cc (Sized_relobj::do_read_relocs): Use constant invalid_address
14221 instead of -1U.
14222
c82fbeee
CS
142232008-11-05 Craig Silverstein <csilvers@google.com>
14224
14225 * options.cc (General_options::parse_dynamic_list): New function.
14226 * options.h (General_options): New flags dynamic_list,
14227 dynamic_list_data, dynamic_list_cpp_new, and
14228 dynamic_list_cpp_typeinfo. New variable dynamic_list_.
14229 (General_options::in_dynamic_list): New function.
14230 * script.cc (Lex::Mode): New enum DYNAMIC_LIST.
14231 (Lex::can_start_name): Add support for DYNAMIC_LIST mode.
14232 (Lex::can_continue_name): Likewise.
14233 (yylex): Likewise.
14234 (read_script_file): New parameter script_options.
14235 (read_dynamic_list): New function.
14236 (Script_options::define_dynamic_list): New function.
14237 (dynamic_list_keyword_parsecodes): New variable.
14238 (dynamic_list_keywords): New variable.
14239 * script.h (Script_options::define_dynamic_list): New function
14240 prototype.
14241 (read_dynamic_list): New function prototype.
14242 * symtab.cc (strprefix): New macro.
14243 (Symbol::should_add_dynsym_entry): Support dynamic_list,
14244 dynamic_list_data, dynamic_list_cpp_new, and
14245 dynamic_list_cpp_typeinfo.
14246 * yyscript.y (PARSING_DYNAMIC_LIST): New token.
14247 (dynamic_list_expr): New rule.
14248 (dynamic_list_nodes): Likewise.
14249 (dynamic_list_node): Likewise.
14250 * testsuite/Makefile.am (dynamic_list): New test.
14251 * testsuite/Makefile.in: Regenerated.
14252 * testsuite/dynamic_list.t: New file.
14253 * testsuite/dynamic_list.sh: New file.
14254
e0bb29a5
CS
142552008-11-05 Craig Silverstein <csilvers@google.com>
14256
14257 * testsuite/tls_test_c.c: Add prototype for t11 and t11_last.
14258 * testsuite/tls_test_c.c (t11): Add explicit "void" to prototype.
14259 (t11_last): Likewise.
14260 * testsuite/ver_test_6.c (main): Likewise.
14261
4e1e25e0
CC
142622008-10-07 Cary Coutant <ccoutant@google.com>
14263
14264 * options.c (General_options::finalize): Add check for -static and
14265 -shared.
14266 * gold.cc (queue_middle_tasks): Assert that list of dynamic objects
14267 is not empty.
14268
92f03fcb
CC
142692008-10-02 Cary Coutant <ccoutant@google.com>
14270
14271 * plugin.cc (make_sized_plugin_object): Fix conditional
14272 compilation to work when not all targets are enabled.
14273
fbd8a257
CC
142742008-09-29 Cary Coutant <ccoutant@google.com>
14275
14276 * archive.cc (Archive::get_file_and_offset): Use filename instead
14277 of name to get library path.
14278 (Archive::include_member): Unlock external member of a thin archive.
14279
14280 * testsuite/Makefile.am (TEST_AR): New variable.
14281 (thin_archive_test_1): New test.
14282 (thin_archive_test_2): New test.
81636b3f
CC
14283 * testsuite/Makefile.in: Regenerate.
14284 * testsuite/thin_archive_main.cc: New file.
14285 * testsuite/thin_archive_test_1.cc: New file.
14286 * testsuite/thin_archive_test_2.cc: New file.
14287 * testsuite/thin_archive_test_3.cc: New file.
14288 * testsuite/thin_archive_test_4.cc: New file.
fbd8a257 14289
eff45813
CC
142902008-09-29 Cary Coutant <ccoutant@google.com>
14291
14292 * mapfile.cc (Mapfile::print_input_section): Change -1U to -1ULL.
14293 * object.cc (Sized_relobj::do_layout): Use constant invalid_address
14294 instead of -1U.
14295 (Sized_relobj::do_finalize_local_symbols): Likewise.
14296 (Sized_relobj::map_to_kept_section): Likewise.
14297 * object.h (Sized_relobj::invalid_address): New constant.
14298 (Sized_relobj::do_output_section_offset): Check for invalid_address
14299 and return -1ULL.
14300 * output.cc (Output_reloc::local_section_offset): Use constant
14301 invalid_address instead of -1U.
14302 (Output_reloc::get_address): Likewise.
14303 (Output_section::output_address): Change -1U to -1ULL.
14304 * output.h (Output_reloc::invalid_address): New constant.
14305 * reloc.cc (Sized_relobj::write_sections): Use constant
14306 invalid_address instead of -1U.
14307 (Sized_relobj::relocate_sections): Likewise.
14308 * symtab.cc (Symbol_table::sized_finalize_symbol): Handle symbol
14309 values for merge sections.
14310 * target-reloc.h (relocate_for_relocatable): Use constant
14311 invalid_address instead of -1U.
14312
89fc3421
CC
143132008-09-19 Cary Coutant <ccoutant@google.com>
14314
14315 Add plugin functionality for link-time optimization (LTO).
14316 * configure.ac (plugins): Add --enable-plugins option.
14317 * configure: Regenerate.
14318 * config.in: Regenerate.
14319 * Makefile.am (LIBDL): New variable.
14320 (CCFILES): Add plugin.cc.
14321 (HFILES): Add plugin.h.
14322 (ldadd_var): Add LIBDL.
14323 * Makefile.in: Regenerate.
14324
14325 * archive.cc: Include "plugin.h".
14326 (Archive::setup): Don't preread archive symbols when using a plugin.
14327 (Archive::get_file_and_offset): Add memsize parameter. Change callers.
14328 (Archive::get_elf_object_for_member): Call plugin hooks for claiming
14329 files.
14330 (Archive::include_member): Add symbols from plugin objects.
14331 * archive.h (Archive::get_file_and_offset): Add memsize parameter.
14332 * descriptors.cc (Descriptors::open): Check for file descriptors
14333 abandoned by plugins.
14334 (Descriptors::claim_for_plugin): New function.
14335 * descriptors.h (Descriptors::claim_for_plugin): New function.
14336 (Open_descriptor::is_claimed): New field.
14337 (claim_descriptor_for_plugin): New function.
14338 * fileread.cc (File_read::claim_for_plugin): New function.
14339 * fileread.h (File_read::claim_for_plugin): New function.
14340 (File_read::descriptor): New function.
14341 * gold.cc: Include "plugin.h".
14342 (queue_initial_tasks): Add task to call plugin hooks for generating
14343 new object files.
14344 * main.cc: Include "plugin.h".
14345 (main): Load plugin libraries.
14346 * object.h (Pluginobj): Declare.
14347 (Object::pluginobj): New function.
14348 (Object::do_pluginobj): New function.
14349 (Object::set_target): New function.
14350 * options.cc: Include "plugin.h".
14351 (General_options::parse_plugin): New function.
14352 (General_options::General_options): Initialize plugins_ field.
14353 (General_options::add_plugin): New function.
14354 * options.h (Plugin_manager): Declare.
14355 (General_options): Add --plugin option.
14356 (General_options::has_plugins): New function.
14357 (General_options::plugins): New function.
14358 (General_options::add_plugin): New function.
14359 (General_options::plugins_): New field.
14360 * plugin.cc: New file.
14361 * plugin.h: New file.
14362 * readsyms.cc: Include "plugin.h".
14363 (Read_symbols::do_read_symbols): Check for archive before checking
14364 for ELF file. Call plugin hooks to claim files.
14365 * resolve.cc (Symbol_table::resolve): Record when symbol is referenced
14366 from a real object file; force override when processing replacement
14367 files.
14368 * symtab.cc (Symbol::init_fields): Initialize in_real_elf_ field.
14369 (Symbol::init_base_object): Likewise.
14370 (Symbol::init_base_output_data): Likewise.
14371 (Symbol::init_base_output_segment): Likewise.
14372 (Symbol::init_base_constant): Likewise.
14373 (Symbol::init_base_undefined): Likewise.
14374 (Symbol::output_section): Assert that object is not a plugin.
14375 (Symbol_table::add_from_pluginobj): New function.
14376 (Symbol_table::sized_finalize_symbol): Treat symbols from plugins as
14377 undefined.
14378 (Symbol_table::sized_write_globals): Likewise.
14379 (Symbol_table::add_from_pluginobj): Instantiate template.
14380 * symtab.h (Sized_pluginobj): Declare.
14381 (Symbol::in_real_elf): New function.
14382 (Symbol::set_in_real_elf): New function.
14383 (Symbol::in_real_elf_): New field.
14384 (Symbol_table::add_from_pluginobj): New function.
14385
14386 * testsuite/Makefile.am (AM_CFLAGS): New variable.
14387 (LIBDL): New variable.
14388 (LDADD): Add LIBDL.
14389 (check_PROGRAMS): Add plugin_test_1 and plugin_test_2.
14390 (check_SCRIPTS): Add plugin_test_1.sh and plugin_test_2.sh.
14391 (check_DATA): Add plugin_test_1.err and plugin_test_2.err.
14392 (MOSTLYCLEANFILES): Likewise.
14393 * testsuite/Makefile.in: Regenerate.
14394 * testsuite/plugin_test.c: New file.
14395 * testsuite/plugin_test_1.sh: New file.
14396 * testsuite/plugin_test_2.sh: New file.
14397
de31bda5
ILT
143982008-09-16 Ian Lance Taylor <iant@google.com>
14399
9c2d0ef9
ILT
14400 * target-reloc.h (relocate_section): Check whether a symbol is
14401 defined by the ABI before reporting an undefined symbol error.
14402 * target.h (Target::is_defined_by_abi): Make parameter const.
14403 (Target::do_is_defined_by_abi): Likewise.
14404 * i386.cc (Target_i386::do_is_defined_by_abi): Likewise.
14405 * powerpc.cc (Target_powerpc::do_is_defined_by_abi): Likewise.
14406 * sparc.cc (Target_sparc::do_is_defined_by_abi): Likewise.
14407 * x86_64.cc (Target_x86_64::do_is_defined_by_abi): Likewise.
14408 * testsuite/Makefile.am (tls_test_shared.so): Add -Wl,-z,defs.
14409 * testsuite/Makefile.in: Rebuild.
14410
de31bda5
ILT
14411 * fileread.cc (make_view): Add casts to avoid warning.
14412
9fa33bee
AO
144132008-09-16 Alexandre Oliva <aoliva@redhat.com>
14414
14415 * i386.cc (Target_i386::define_tls_base_symbol): Update comments.
14416 * x86_64.cc (Target_x86_64::define_tls_base_symbol): Likewise.
14417
183fd0e3
AO
144182008-09-16 Alexandre Oliva <aoliva@redhat.com>
14419
14420 * options.h (General_options::output_is_executable): New.
14421 (General_options::output_is_pie): New.
14422 * i386.cc (Target_i386::define_tls_base_symbol): Use SEGMENT_START
14423 for shared libraries.
14424 * x86_64.cc (Target_x86_64::define_tls_base_symbol): Likewise.
14425
7be8330a
CD
144262008-09-11 Chris Demetriou <cgd@google.com>
14427
14428 * options.h (origin): New -z option.
14429 * layout.cc (Layout:finish_dynamic_section): If "-z origin"
14430 is specified, set DF_ORIGIN in DT_FLAGS and set DF_1_ORIGIN
14431 in DT_FLAGS_1.
14432
a9caad02
CC
144332008-09-05 Cary Coutant <ccoutant@google.com>
14434
14435 * fileread.cc (File_read::make_view): Add check for attempt to map
14436 beyond end of file.
14437
ae6dce4d
CC
144382008-09-05 Cary Coutant <ccoutant@google.com>
14439
14440 * symtab.cc (Symbol_table::add_from_dynobj): Fix typos in
14441 explicit instantiations.
14442
d7ab2a47
KVH
144432008-08-28 Kris Van Hees <kris.van.hees@oracle.com>
14444
14445 PR gold/6858
14446 * options.cc (General_options::finalize): Allow undefined symbols
14447 in shlibs if linking -shared.
14448
14449 PR gold/6859
14450 * symtab.cc (Symbol::init_base_undefined): Mark explicitly undefined
14451 symbols as not needing a dynsym entry.
14452
1e52a9c1
CS
144532008-08-20 Craig Silverstein <csilvers@google.com>
14454
14455 * fileread.cc (File_read::open): Do not lock the file unless it
14456 was successfully opened.
14457
d85c80a3
CC
144582008-08-14 Cary Coutant <ccoutant@google.com>
14459
14460 * x86_64.cc (Target_x86_64::Relocate::relocat_tls):
14461 Use addend for DTPOFF32, DTPOFF64, and TPOFF32 relocs.
14462 * testsuite/tls_test.cc (struct int128): 128-bit struct
14463 for testing TLS relocs with non-zero addend.
14464 (v12): New TLS variable.
14465 (t12): New test.
14466 (t_last): Add check for v12.
14467 * testsuite/tls_test.h (t12): New function.
14468 * testsuite/tls_test_main.cc (thread_routine): Call new test.
14469
2d924fd9
ILT
144702008-08-13 Ian Lance Taylor <iant@google.com>
14471
14472 * layout.cc (Layout::attach_allocated_section_to_segment): Don't
14473 set tls_segment_ or relro_segment_.
14474 (Layout::make_output_segment): Set tls_segment_ and relro_segment_
14475 when appropriate.
14476 * output.h (Output_section::clear_is_relro): New function.
14477 * output.cc (Output_segment::add_output_section): Handle SHF_TLS
14478 sections specially even when output_data_ is empty.
14479 (Output_segment::maximum_alignment): When first section is relro,
14480 only force alignment for PT_LOAD segments.
14481 * script.cc (script_data_segment_align): New function.
14482 (script_data_segment_relro_end): New function.
14483 * script-c.h (script_data_segment_align): Declare.
14484 (script_data_segment_relro_end): Declare.
14485 * script-sections.h (class Script_sections): Declare
14486 data_segment_align and data_segment_relro_end. Add fields
14487 segment_align_index_ and saw_relro_end_.
14488 * script-sections.cc (class Sections_element): Add set_is_relro
14489 virtual function. Add new bool* parameter to place_orphan_here.
14490 Add get_output_section virtual function.
14491 (class Output_section_definition): Add set_is_relro. Add new
14492 bool* parameter to place_orphan_here. Add get_output_section.
14493 Add is_relro_ field.
14494 (Output_section_definition::Output_section_definition): Initialize
14495 evaluated_address_, evaluated_load_address, evaluated_addralign_,
14496 and is_relro_ fields.
14497 (Output_section_definition::place_orphan_here): Add is_relro
14498 parameter.
14499 (Output_section_definition::set_section_addresses): Set relro for
14500 output section.
14501 (Output_section_definition::alternate_constraint): Likewise.
14502 (class Orphan_output_section): Add new bool* parameter to
14503 place_orphan_here. Add get_output_section.
14504 (Orphan_output_section::place_orphan_here): Add is_relro
14505 parameter.
14506 (Script_sections::Script_sections): Initialize
14507 data_segment_align_index_ and saw_relro_end_.
14508 (Script_sections::data_segment_align): New function.
14509 (Script_sections::data_segment_relro_end): New function.
14510 (Script_sections::place_orphan): Set or clear is_relro.
14511 (Script_sections::set_section_addresses): Force alignment of first
14512 TLS section.
14513 * yyscript.y (exp): Call script_data_segment_align and
14514 script_data_segment_relro_end.
14515 * testsuite/relro_script_test.t: New file.
14516 * testsuite/relro_test.cc (using_script): Declare.
14517 (t1, t2): Test using_script.
14518 * testsuite/Makefile.am (check_PROGRAMS): Add relro_script_test.
14519 (relro_script_test_SOURCES): Define.
14520 (relro_script_test_DEPENDENCIES): Define.
14521 (relro_script_test_LDFLAGS): Define.
14522 (relro_script_test_LDADD): Define.
14523 (relro_script_test.so): New target.
14524 * testsuite/Makefile.in: Rebuild.
14525
f827c9a9
CC
145262008-08-06 Cary Coutant <ccoutant@google.com>
14527
14528 * archive.cc (Archive::total_archives, Archive::total_members)
14529 (Archive::total_members_loaded): New variables.
14530 (Archive::setup): Add parameter. Add option to preread
14531 archive symbols.
14532 (Archive::read_armap): Add counter.
14533 (Archive::get_file_and_offset): New function.
14534 (Archive::get_elf_object_for_member): New function.
14535 (Archive::read_all_symbols): New function.
14536 (Archive::read_symbols): New function.
14537 (Archive::add_symbols): Add counters.
14538 (Archive::include_all_members): Use armap to find members if it's
14539 already built.
14540 (Archive::include_member): Skip reading symbols if already read.
14541 Factored code into Archive::get_file_and_offset and
14542 Archive::get_elf_object_for_member. Changed call to
14543 Mapfile::report_include_archive_member.
14544 (Archive::print_stats): New function.
14545 * archive.h: Declare Object and Read_symbols_data classes.
14546 (Archive::Archive): Add initializers for new members.
14547 (Archive::setup): Add parameter.
14548 (Archive::print_stats): New function.
14549 (Archive::total_archives, Archive::total_members)
14550 (Archive::total_members_loaded): New variables.
14551 (Archive::get_file_and_offset): New function.
14552 (Archive::get_elf_object_for_member): New function.
14553 (Archive::read_all_symbols): New function.
14554 (Archive::read_symbols): New function.
14555 (Archive::Archive_member): New class.
14556 (Archive::members_): New member.
14557 (Archive::num_members_): New member.
14558 * main.cc: Include archive.h.
14559 (main): Call Archive::print_stats.
14560 * mapfile.cc (Mapfile::report_include_archive_member): Delete
14561 archive parameter; member_name is now the fully-decorated name.
14562 * mapfile.h (Mapfile::report_include_archive_member): Likewise.
14563 * options.h: (General_options): Add --preread-archive-symbols option.
14564 * readsyms.cc (Read_symbols::do_read_symbols): Change call to
14565 Archive::setup.
14566
de4c45bd
ILT
145672008-08-04 Ian Lance Taylor <iant@google.com>
14568
14569 * symtab.h (Symbol::use_plt_offset): New function.
14570 * i386.cc (Relocate::relocate): Call Symbol::use_plt_offset.
14571 * powerpc.cc (Relocate::relocate): Likewise.
14572 * sparc.cc (Relocate::relocate): Likewise.
14573 * x86_64.cc (Relocate::relocate): Likewise.
14574 * testsuite/weak_plt.sh: New test.
14575 * testsuite/weak_plt_main.cc: New test.
14576 * testsuite/weak_plt_shared.cc: New test.
14577 * testsuite/Makefile.am (check_SCRIPTS): Add weak_plt.sh.
14578 (check_PROGRAMS): Add weak_plt.
14579 (check_DATA): Add weak_plt_shared.so.
14580 (weak_plt_main_pic.o, weak_plt): New targets.
14581 (weak_plt_shared_pic.o, weak_plt_shared.so): New targets.
14582 * testsuite/Makefile.in: Rebuild.
14583
14584 * testsuite/Makefile.am (weak_alias_test_1.so): Depend upon
14585 gcctestdir/ld.
14586 (weak_alias_test_2.so, weak_alias_test_4.so): Likewise.
14587 * testsuite/Makefile.in: Rebuild.
14588
323ee3f4
AM
145892008-08-04 Alan Modra <amodra@bigpond.net.au>
14590
14591 * Makefile.am (POTFILES.in): Set LC_ALL=C.
14592 * Makefile.in: Regenerate.
14593 * po/POTFILES.in: Regenerate.
14594
7c07ecec
ILT
145952008-07-29 Ian Lance Taylor <iant@google.com>
14596
14597 * script.cc (Script_options::finalize_symbols): Finalize SECTIONS
14598 symbols before other symbols.
14599 * testsuite/script_test_2.cc (test_addr): Declare.
14600 (test_addr_alias): Declare.
14601 (main): Check that test_addr and test_addr_alias have the right
cd536b21 14602 values.
7c07ecec
ILT
14603 * testsuite/script_test_2.t: Define test_addr_alias and
14604 test_addr.
14605
5778530e
ILT
146062008-07-24 Ian Lance Taylor <iant@google.com>
14607
2a00e4fb
ILT
14608 PR 5990
14609 * descriptors.cc: New file.
14610 * descriptors.h: New file.
14611 * gold-threads.h (class Hold_optional_lock): New class.
14612 * fileread.cc: Include "descriptors.h".
14613 (File_read::~File_read): Release descriptor rather than closing
14614 it.
14615 (File_read::open) [file]: Call open_descriptor rather than open.
14616 Set is_descriptor_opened_.
14617 (File_read::open) [memory]: Assert that descriptor is not open.
14618 (File_read::reopen_descriptor): New function.
14619 (File_read::release): Release descriptor.
14620 (File_read::do_read): Make non-const. Reopen descriptor.
14621 (File_read::read): Make non-const.
14622 (File_read::make_view): Reopen descriptor.
14623 (File_read::do_readv): Likewise.
14624 * fileread.h (class File_read): Add is_descriptor_opened_ field.
14625 Update declarations.
14626 * layout.cc: Include "descriptors.h".
14627 (Layout::create_build_id): Use open_descriptor rather than open.
14628 * output.cc: Include "descriptors.h".
14629 (Output_file::open): Use open_descriptor rather than open.
14630 * archive.cc (Archive::const_iterator): Change Archive to be
14631 non-const.
14632 (Archive::begin, Archive::end): Make non-const.
14633 (Archive::count_members): Likewise.
14634 * archive.h (class Archive): Update declarations.
14635 * object.h (Object::read): Make non-const.
14636 * Makefile.am (CCFILES): Add descriptors.cc.
14637 (HFILES): Add descriptors.h.
14638 * Makefile.in: Rebuild.
14639
801647d1
ILT
14640 PR 6716
14641 * gold.h: Always include <clocale>. Add Solaris workarounds
14642 following code in binutils/sysdep.h.
14643
5edd166e
ILT
14644 PR 6048
14645 * ehframe.cc (Eh_frame::add_ehframe_input_section): Check whether
14646 this->eh_frame_hdr_ is NULL before using it.
14647
c89ad728
ILT
14648 * dynobj.cc (Versions::Versions): Update comment.
14649
aa86f06b
ILT
14650 * dynobj.cc (Versions::Versions): If there is an soname, use it as
14651 the base version name.
14652
5778530e
ILT
14653 * stringpool.cc (Stringpool_template::add_with_length): Set key to
14654 array size plus one.
14655 (Stringpool_template::set_string_offsets): Subtract one from key
14656 before using it as an array index.
14657 (Stringpool_template::get_offset_with_length): Likewise.
14658 (Stringpool_template::write_to_buffer): Likewise.
14659 * stringpool.h (Stringpool_template::get_offset_from_key):
14660 Likewise.
14661
057ead22
ILT
146622008-07-23 Ian Lance Taylor <iant@google.com>
14663
7f649c59
ILT
14664 PR 6658
14665 * object.h (Merged_symbol_value::value): Do our best to handle a
14666 negative addend.
14667
057ead22
ILT
14668 PR 6647
14669 * script.cc (Version_script_info::get_versions): Don't add empty
14670 version tag to return value.
14671 (Version_script_info::get_symbol_version_helper): Change return
14672 type to bool. Add pversion parameter. Change all callers.
14673 (script_register_vers_node): Don't require a non-NULL tag.
14674 * script.h (class Version_script_info): Update declarations.
14675 (Version_script_info::get_symbol_version): Change return type to
14676 bool. Add version parameter. Change all callers.
14677 * symtab.cc (Sized_symbol::add_from_relobj): Rework version
14678 handling. Handle an empty version from a version script.
14679 (Symbol_table::define_special_symbol): Likewise.
14680 * testsuite/ver_test_10.script: New file.
14681 * testsuite/ver_test_10.sh: New file.
14682 * testsuite/Makefile.am (check_SCRIPTS): Add ver_test_10.sh.
14683 (check_DATA): Add ver_test_10.syms.
14684 (ver_test_10.syms, ver_test_10.so): New target.
14685 * testsuite/Makefile.in: Rebuild.
14686
58e54ac2
CD
146872008-07-23 Simon Baldwin <simonb@google.com>
14688
14689 * symtab.cc (Symbol_table::sized_write_symbol): Only set st_size
14690 to zero for undefined symbols from dynamic libraries.
14691
95d14cd3
ILT
146922008-07-23 Ian Lance Taylor <iant@google.com>
14693
14694 * symtab.cc (Symbol_table::resolve): Remove version parameter.
14695 Change all callers.
14696 * symtab.h (class Symbol_table): Update declaration.
14697 * testsuite/ver_test_9.cc: New file.
14698 * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_9.
14699 (ver_test_9_SOURCES, ver_test_9_DEPENDENCIES): Define.
14700 (ver_test_9_LDFLAGS, ver_test_9_LDADD): Define.
14701 (ver_test_9.so, ver_test_9.o): New targets.
14702 * testsuite/Makefile.in: Rebuild.
14703
92de84a6
ILT
147042008-07-22 Ian Lance Taylor <iant@google.com>
14705
34810851
ILT
14706 * options.h (class General_options): Define --check-sections.
14707 * layout.cc (Layout::set_segment_offsets): Handle
14708 --check-sections.
14709
af6156ef
ILT
14710 * options.h (class General_options): Define -n/--nmagic and
14711 -N/--omagic.
14712 * options.cc (General_options::finalize): For -n/--nmagic or
14713 -N/--omagic, set -static.
14714 * layout.cc (Layout::attach_allocated_section_to_segment): If
14715 -N/--omagic, don't put read-only and read-write sections in
14716 different segments.
14717 (Layout::find_first_load_seg): If -N/--omagic, don't insist on
14718 finding a read-only segment.
14719 (Layout::set_segment_offsets): If -N/--omagic or -n/--nmagic,
14720 don't set the minimum segment alignment to the common page size,
14721 and don't set the file offset to the address modulo the page size.
14722 * script-sections.cc (Script_sections::create_segments): If
14723 -n/--omagic, don't put read-only and read-write sections in
14724 different segments.
14725
92de84a6
ILT
14726 * cref.cc: New file.
14727 * cref.h: New file.
14728 * options.h (class General_options): Add --print-symbol-counts.
14729 * main.cc (main): Issue defined symbol report if requested.
14730 * archive.cc (Archive::interpret_header): Make into a const member
14731 function.
14732 (Archive::add_symbols): Call Input_objects::archive_start and
14733 archive_stop.
14734 (Archive::const_iterator): Define new class.
14735 (Archive::begin, Archive::end): New functions.
14736 (Archive::include_all_members): Rewrite to use iterator.
14737 (Archive::count_members): New function.
14738 * archive.h (class Archive): Update declarations.
14739 (Archive::filename): New function.
14740 * object.cc: Include "cref.h".
14741 (Sized_relobj::Sized_relobj): Initialize defined_count_.
14742 (Sized_relobj::do_get_global_symbol_counts): New function.
14743 (Input_objects::add_object): Add object to cross-referencer.
14744 (Input_objects::archive_start): New function.
14745 (Input_objects::archive_stop): New function.
14746 (Input_objects::print_symbol_counts): New function.
14747 * object.h: Declare Cref and Archive.
14748 (Object::get_global_symbol_counts): New function.
14749 (Object::do_get_global_symbol_counts): New pure virtual function.
14750 (class Sized_relobj): Add defined_count_ field. Update
14751 declarations.
14752 (class Input_objects): Add cref_ field. Update constructor.
14753 Update declarations.
14754 * dynobj.cc (Sized_dynobj::Sized_dynobj): Initialize symbols_ and
14755 defined_count_.
14756 (Sized_dynobj::do_add_symbols): Allocate symbols_ if printing
14757 symbol counts.
14758 (Sized_dynobj::do_get_global_symbol_counts): New function.
14759 * dynobj.h (class Sized_dynobj): Add fields symbols_ and
14760 defined_count_. Update declarations. Define Symbols typedef.
14761 * symtab.cc (Symbol_table::add_from_relobj): Add defined
14762 parameter. Change all callers.
14763 (Symbol_table::add_from_dynobj): Add sympointers and defined
14764 parameters. Change all callers.
14765 * symtab.h (class Symbol_table): Update declarations.
14766 * Makefile.am (CCFILES): Add cref.cc.
14767 (HFILES): Add cref.h.
14768 * Makefile.in: Rebuild.
14769
3f7c5e1d
CD
147702008-07-22 Simon Baldwin <simonb@google.com>
14771
14772 * symtab.cc (Symbol_table::sized_write_symbol): Set symbol size
14773 to zero when writing undefined symbols.
14774
e0b64032
ILT
147752008-07-22 Ian Lance Taylor <iant@google.com>
14776
14777 * output.cc (Output_section::add_input_section): Don't try to
14778 merge empty merge sections.
14779
096b02cf
CS
147802008-07-21 Craig Silverstein <csilvers@google.com>
14781
14782 * symtab.cc (Symbol_table::warn_about_undefined_dynobj_symbol):
14783 Include symbol version in error message.
cd536b21 14784
1d1f116d
CD
147852008-07-20 Chris Demetriou <cgd@google.com>
14786
cd536b21 14787 * configure.ac (gold_cv_c_random_seed): New configured variable.
1d1f116d
CD
14788 (RANDOM_SEED_CFLAGS): New substituted variable.
14789 * Makefile.am (AM_CFLAGS, AM_CXXFLAGS): Add $(RANDOM_SEED_CFLAGS).
14790 * configure: Rebuild.
14791 * Makefile.in: Likewise.
14792 * testsuite/Makefile.in: Likewise.
14793
a18f591e
ILT
147942008-07-18 Ian Lance Taylor <iant@google.com>
14795
14796 * symtab.cc (Symbol_table::add_from_object): Rewrite the case
14797 where we see NAME/NULL and NAME/VERSION as separate symbols.
14798 * testsuite/ver_test_main.cc (main): Call t4.
14799 (t4, t4_2a): Define.
14800 * testsuite/ver_test_2.cc (t4_2): Define.
14801 * testsuite/ver_test_2.script: Put t4_2a in VER2.
14802 * testsuite/ver_test_4.cc (t4_2a): Define.
14803 * testsuite/ver_test_4.script: Put t4_2a in VER2.
14804 * testsuite/ver_test.h (t4, t4_2, t4_2a): Declare.
14805
c6e3f6ed
ILT
148062008-07-17 Ian Lance Taylor <iant@google.com>
14807
14808 * dynobj.cc (Versions::add_def): If we give an error about a
14809 missing version, go ahead and create the version anyhow.
14810
ef9beddf
ILT
148112008-07-10 Ian Lance Taylor <iant@google.com>
14812
14813 Handle output sections with more than 0x7fffffff bytes.
14814 * object.h (class Relobj): Change map_to_output_ to
14815 output_sections_, and just keep a section pointer. Change all
14816 uses. Move comdat group support to Sized_relobj.
14817 (Relobj::is_section_specially_mapped): Remove.
14818 (Relobj::output_section): Remove poff parameter. Change all
14819 callers.
14820 (Relobj::output_section_offset): New function.
14821 (Relobj::set_section_offset): Rewrite.
14822 (Relobj::map_to_output): Remove.
14823 (Relobj::output_sections): New function.
14824 (Relobj::do_output_section_offset): New pure virtual function.
14825 (Relobj::do_set_section_offset): Likewise.
14826 (class Sized_relobj): Add section_offsets_ field. Add comdat
14827 group support from Relobj. Update declarations.
14828 (Sized_relobj::get_output_section_offset): New function.
14829 (Sized_relobj::do_output_section_offset): New function.
14830 (Sized_relobj::do_set_section_offset): New function.
14831 * object.cc (Relobj::output_section_address): Remove.
14832 (Sized_relobj::Sized_relobj): Initialize new fields.
14833 (Sized_relobj::include_section_group): Cast find_kept_object to
14834 Sized_relobj.
14835 (Sized_relobj::include_linkonce_section): Likewise.
14836 (Sized_relobj::do_layout): Use separate arrays for output section
14837 and output offset.
14838 (Sized_relobj::do_count_local_symbols): Change map_to_output to
14839 output_sections.
14840 (Sized_relobj::do_finalize_local_symbols): Change map_to_output to
14841 output_sections and section_offsets.
14842 (Sized_relobj::write_local_symbols): Likewise.
14843 (map_to_kept_section): Compute output address directly.
14844 * reloc.cc (Sized_relobj::do_read_relocs): Change map_to_output to
14845 output_sections and section_offsets.
14846 (Sized_relobj::write_sections): Likewise.
14847 (Sized_relobj::relocate_sections): Likewise.
14848 * symtab.cc (sized_finalize_symbol): Use output_section_offset.
14849 * output.h (class Output_reloc): Update declarations. Change
14850 u2_.relobj to Sized_relobj*.
14851 (class Output_data_reloc): Change add functions to use
14852 Sized_relobj*.
14853 * output.cc (Output_reloc::Output_reloc): Change relobj to
14854 Sized_relobj*.
14855 (Output_reloc::local_section_offset): Change return type to
14856 Elf_Addr. Use get_output_section_offset.
14857 (Output_reloc::get_address): Likewise.
14858 (Output_section::is_input_address_mapped): Don't call
14859 is_section_specially_mapped.
14860 (Output_section::output_offset): Likewise.
14861 (Output_section::output_address): Likewise.
14862 (Output_section::starting_output_address): Likewise.
14863 * copy-relocs.cc (Copy_relocs::copy_reloc): Change object
14864 parameter to Sized_relobj*.
14865 (Copy_relocs::need_copy_reloc): Likewise.
14866 (Copy_relocs::save): Likewise.
14867 * copy-relocs.h (class Copy_relocs): Update declarations.
14868 (class Copy_relocs::Copy_reloc_entry): Change constructor to use
14869 Sized_relobj*. Change relobj_ field to Sized_relobj*.
14870 * target-reloc.h (relocate_for_relocatable): Change
14871 offset_in_output_section type to Elf_Addr. Change code that uses
14872 it as well.
14873 * layout.cc (Layout::layout): Always set *off.
14874 * mapfile.cc (Mapfile::print_input_section): Use
14875 output_section_offset.
14876 * i386.cc (Target_i386::copy_reloc): Change object parameter to
14877 Sized_relobj*.
14878 * powerpc.cc (Target_powerpc::copy_reloc): Likewise.
14879 * sparc.cc (Target_sparc::copy_reloc): Likewise.
14880 * x86_64.cc (Target_x86_64::copy_reloc): Likewise.
14881
5cb66f97
ILT
148822008-07-03 Ian Lance Taylor <iant@google.com>
14883
14884 * layout.cc (Layout::include_section): Do not discard unrecognized
14885 SHT_STRTAB sections.
14886
afe47622
CS
148872008-06-30 Craig Silverstein <csilvers@cs.stanford.edu>
14888
14889 * script.cc (Lex::can_continue_name): Make '?' allowable in
14890 version-script names.
14891 * testsuite/version_script.map: Change glob pattern to use '?'
14892
5adf9721
ILT
148932008-06-30 Manish Singh <yosh@gimp.org>
14894
14895 PR 6585
14896 * symtab.cc (Symbol_table::add_undefined_symbols_from_command_line):
14897 Correct typo.
14898
e6fde208
ILT
148992008-06-30 Ian Lance Taylor <iant@google.com>
14900
14901 PR 6660
14902 PR 6682
14903 * powerpc.cc (Powerpc_relocate_functions::addr16_ha) [both
14904 versions]: Don't try to read the value in the contents, since we
14905 don't use it. Use the template endianness when writing.
14906
3f2e6a2d
CC
149072008-06-25 Cary Coutant <ccoutant@google.com>
14908
14909 * fileread.cc (File_read::make_view): Assert on zero-length view.
14910 * object.cc (Sized_relobj::do_read_symbols): Don't try to read
14911 symbol table when there are no symbols to read.
14912
c43d3a48
CS
149132008-06-23 Craig Silverstein <csilvers@google.com>
14914
14915 * version.cc (version_string): Bump to 1.7
14916
5f494ea0
CS
149172008-06-18 Craig Silverstein <csilvers@google.com>
14918
14919 * powerpc.cc (Powerpc_relocate_functions::addr16_ha): cast
14920 constant 0xFFFF to type Valtype.
14921 (Powerpc_relocate_functions::rel16_ha): Likewise.
14922
c42e122e
ILT
149232008-06-17 Ian Lance Taylor <iant@google.com>
14924
f34787f8
ILT
14925 * output.h (Output_section::Input_section): Initialize p2align_ to
14926 zero for Output_section_data constructors.
14927 (Output_section::Input_section::addralign): If not an input
14928 section, return the alignment of the Output_section_data.
14929 * testsuite/copy_test.cc: New file.
14930 * testsuite/copy_test_1.cc: New file.
14931 * testsuite/copy_test_2.cc: New file.
14932 * testsuite/Makefile.am (check_PROGRAMS): Add copy_test.
14933 (copy_test_SOURCES, copy_test_DEPENDENCIES): New variables.
14934 (copy_test_LDFLAGS, copy_test_LDADD): New variables.
14935 (copy_test_1_pic.o, copy_test_1.so): New targets.
14936 (copy_test_2_pic.o, copy_test_2.so): New targets.
14937 * testsuite/Makefile.in: Rebuild.
14938
c42e122e
ILT
14939 * script-sections.cc (Script_sections::place_orphan): Initialize
14940 local variable exact.
14941
ce3ac18a
DE
149422008-06-13 David Edelsohn <edelsohn@gnu.org>
14943
14944 * powerpc.cc (Output_data_plt_powerpc::do_write): 8 + 4 = 0xC.
14945
42cacb20
DE
149462008-06-12 David Edelsohn <edelsohn@gnu.org>
14947 David S. Miller <davem@davemloft.net>
14948
14949 * powerpc.cc: New file.
14950 * Makefile.am (TARGETSOURCES): Add powerpc.cc
14951 (ALL_TARGETOBJS): Add powerpc.$(OBJEXT)
14952 * configure.tgt: Add entries for powerpc-* and powerpc64-*.
14953 * Makefile.in: Rebuild.
14954
7b308235
ILT
149552008-06-09 Ian Lance Taylor <iant@google.com>
14956
14957 * testsuite/relro_test.cc: Include <cstdio>, <cstdlib>, and
14958 <exception>.
14959 (throwing, orig_terminate): New static variables.
14960 (terminate_handler): New static function.
14961 (t2): Set terminate handler.
14962
f0b886e3
ILT
149632008-06-05 Kris Van Hees <kris.van.hees@oracle.com>
14964
14965 PR 6584
cd536b21 14966 * binary.cc (Binary_to_elf::sized_convert): Fix .data
f0b886e3
ILT
14967 alignment.
14968
3e90f135
CC
149692008-05-30 Cary Coutant <ccoutant@google.com>
14970
14971 * archive.cc (Archive::include_all_members) Correct to step
14972 over symbol table and extended name table in thin archives.
14973
e09ad04a
ILT
149742008-05-29 Kris Van Hees <kris.van.hees@oracle.com>
14975
14976 PR 6407
14977 * target-reloc.h (relocate_for_relocatable): Fix new_offset
14978 calculation.
14979
62b01cb5
ILT
149802008-05-28 Caleb Howe <cshowe@google.com>
14981
14982 * reduced_debug_output.cc: New file.
14983 * reduced_debug_output.h: New file.
92de84a6 14984 * options.h (class General_options): Add --strip-debug-non-line.
62b01cb5
ILT
14985 * options.cc (General_options::finalize): Add strip_debug_non_line
14986 to the strip heirarchy.
14987 * layout.h (class Layout): Add debug_abbrev_ and debug_info_
14988 fields.
14989 * layout.cc: Include "reduced_debug_output.h".
14990 (Layout::Layout): Initialize new fields.
14991 (line_only_debug_sections): New static array.
14992 (is_lines_only_debug_sections): New static inline function.
14993 (Layout::include_section): Handle --strip-debug-non-line.
14994 (Layout::make_output_section): If --strip-debug-non-line, build
14995 new output sections for .debug_abbrev and .debug_info.
14996 * dwarf_reader.cc (read_unsigned_LEB_128): Move to namespace
14997 gold. Warn about possible overflow.
14998 (read_signed_LEB_128): Likewise.
14999 * dwarf_reader.h: (read_unsigned_LEB_128): Declare.
15000 (read_signed_LEB_128): Declare.
15001 * Makefile.am (CCFILES): Add reduced_debug_output.cc.
15002 (HFILES): Add reduced_debug_output.h.
15003 * Makefile.in: Rebuild.
15004
7d9e3d98
ILT
150052008-05-21 Ian Lance Taylor <iant@google.com>
15006
15007 * mapfile.cc: New file.
15008 * mapfile.h: New file.
15009 * options.h (class General_options): Add -M/--print-map and -Map.
15010 * options.cc (General_options::finalize): Make -M equivalent to
15011 -Map -.
15012 * main.cc: Include <cstdio> and "mapfile.h".
15013 (main): Open mapfile if requested.
15014 * gold.cc (class Middle_runner): Add mapfile_ field. Update
15015 constructor. Change caller.
15016 (queue_initial_tasks): Add mapfile parameter. Change caller.
15017 (queue_middle_tasks): Likewise.
15018 * gold.h (queue_initial_tasks, queue_middle_tasks): Update
15019 declarations.
15020 * archive.cc: Include "mapfile.h".
15021 (Archive::add_symbols): Add mapfile parameter. Change all
15022 callers. Pass mapfile, symbol, and reason to include_member.
15023 (Archive::include_all_members): Add mapfile parameter. Change all
15024 callers.
15025 (Archive::include_member): Add mapfile, sym, and why parameters.
15026 Change all callers. Report inclusion to map file.
15027 * archive.h: Include "fileread.h".
15028 (class Archive): Update declarations.
15029 (Archive::file): New const method.
15030 (class Add_archive_symbols): Add mapfile_ field. Update
15031 constructor. Change all callers.
15032 * readsyms.h (class Read_symbols): Likewise.
15033 (class Finish_group): Likewise.
15034 (class Read_script): Likewise.
15035 * common.cc: Include "mapfile.h".
15036 (Symbol_table::allocate_commons): Add mapfile parameter. Change
15037 all callers.
15038 (Symbol_table::do_allocate_commons): Likewise.
15039 (Symbol_table::do_allocate_commons_list): Likewise. Report common
15040 symbol allocation to mapfile.
15041 * common.h (class Allocate_commons_task): Add mapfile_ field.
15042 Update constructor. Change all callers.
15043 * symtab.h (class Symbol_table): Update declarations.
15044 * layout.cc: Include "mapfile.h".
15045 (Layout_task_runner::run): Print information to mapfile.
15046 (Layout::create_gold_note): Change Output_data_fixed_space to
15047 Output_data_zero_fill.
15048 (Layout::create_build_id): Likewise.
15049 (Layout::print_to_mapfile): New function.
15050 * layout.h (class Layout_task_runner): Add mapfile_ field. Update
15051 constructor. Change caller.
15052 (class Layout): Declare print_to_mapfile.
15053 * output.cc (Output_section::Input_section::print_to_mapfile): New
15054 function.
15055 (Output_section::add_input_section): If producing a map, always
15056 add to input_sections_ list.
15057 (Output_section::do_print_to_mapfile): New function.
15058 (Output_segment::print_sections_to_mapfile): New function.
15059 (Output_segment::print_section_list_to_mapfile): New function.
15060 * output.h: Include "mapfile.h".
15061 (Output_data::print_to_mapfile): New function.
15062 (Output_data::do_print_to_mapfile): New virtual function.
15063 (Output_segment_headers::do_print_to_mapfile): New function.
15064 (Output_file_header::do_print_to_mapfile): New function.
15065 (Output_data_const::do_print_to_mapfile): New function.
15066 (class Output_data_const_buffer): Add map_name_ field. Update
15067 constructor. Change all callers. Add do_print_to_mapfile
15068 function.
15069 (class Output_data_fixed_space): Likewise.
15070 (class Output_data_space): Likewise.
15071 (class Output_data_zero_fill): New class.
15072 (Output_data_strtab::do_print_to_mapfile): New function.
15073 (Output_data_reloc_base::do_print_to_mapfile): New function.
15074 (Output_relocatable_relocs::do_print_to_mapfile): New function.
15075 (Output_data_group::do_print_to_mapfile): New function.
15076 (Output_data_got::do_print_to_mapfile): New function.
15077 (Output_data_dynamic::do_print_to_mapfile): New function.
15078 (Output_symtab_xindex::do_print_to_mapfile): New function.
15079 (class Output_section): Declare do_print_to_mapflie. Declare
15080 print_to_mapfile in Input_section.
15081 (class Output_segment): Declare new functions.
15082 * object.h (Sized_relobj::symbol_count): New function.
15083 * script-sections.cc
15084 (Output_section_element_dot_assignment::set_section_addresses):
15085 Change Output_data_fixed_space to Output_data_zero_fill.
15086 (Output_data_expression::do_print_to_mapfile): New function.
15087 * script.cc (read_input_script): Add mapfile parameter. Change
15088 all callers.
15089 * script.h (read_input_script): Update declaration.
15090 * ehframe.h (Eh_frame_hdr::do_print_to_mapfile): New function.
15091 (Eh_frame::do_print_to_mapfile): New function.
15092 * merge.h (Output_merge_data::do_print_to_mapfile): New function.
15093 (Output_merge_string::do_print_to_mapfile): New function.
15094 * i386.cc (Output_data_plt_i386::do_print_to_mapfile): New
15095 function.
15096 * sparc.cc (Output_data_plt_sparc::do_print_to_mapfile): New
15097 function.
15098 * x86_64.cc (Output_data_plt_x86_64::do_print_to_mapfile): New
15099 function.
15100 * Makefile.am (CCFILES): Add mapfile.cc.
15101 (HFILES): Add mapfile.h.
15102 * Makefile.in: Rebuild.
15103
9f1d377b
ILT
151042008-05-19 Ian Lance Taylor <iant@google.com>
15105
15106 * options.h (class General_options): Add -z relro.
15107 * layout.cc (Layout::Layout): Initialize relro_segment_.
15108 (Layout::add_output_section_data): Return the output section.
15109 (Layout::make_output_section): Rcognize relro sections and mark
15110 them appropriately.
15111 (Layout::attach_allocated_section_to_segment): Put relro sections
15112 in a PT_GNU_RELRO segment.
15113 (Layout::create_initial_dynamic_sections): Mark the .dynamic
15114 section as relro.
15115 (Layout::segment_precedes): Sort PT_GNU_RELRO segments after
15116 PT_TLS segments.
15117 (Layout::linkonce_mapping): Map d.rel.ro.local to
15118 .data.rel.ro.local.
15119 (Layout::output_section_name): Us .data.rel.ro.local for any
15120 section which begins with that.
15121 * layout.h (class Layout): Update add_output_section_data
15122 declaration. Add relro_segment_ field.
15123 * output.cc (Output_section::Output_section): Initialize is_relro_
15124 and is_relro_local_ fields.
15125 (Output_segment::add_output_section): Group relro sections.
15126 (Output_segment::is_first_section_relro): New function.
15127 (Output_segment::maximum_alignment): If there is a relro section,
15128 align the segment to the common page size.
15129 (Output_segment::set_section_addresses): Track whether we are
15130 looking at relro sections. If the last section is a relro
15131 section, align to the common page size.
15132 (Output_segment::set_section_list_addresses): Add in_relro
15133 parameter. Change all callers. Align to the page size when
15134 moving from relro to non-relro section.
15135 (Output_segment::set_offset): Align memsz of a PT_GNU_RELRO
15136 segment.
15137 * output.h (class Output_section): Add is_relro_ and
15138 is_relro_local_ fields.
15139 (Output_section::is_relro): New function.
15140 (Output_section::set_is_relro): New function.
15141 (Output_section::is_relro_local): New function.
15142 (Output_section::set_is_relro_local): New function.
15143 (class Output_segment): Update declarations.
15144 * i386.cc (Target_i386::got_section): Mark .got section as relro.
15145 * sparc.cc (Target_sparc::got_section): Likewise.
15146 * x86_64.cc (Target_x86_64::got_section): Likewise.
15147 * testsuite/relro_test_main.cc: New file.
15148 * testsuite/relro_test.cc: New file.
15149 * testsuite/Makefile.am (check_PROGRAMS): Add relro_test.
15150 (relro_test_SOURCES, relro_test_DEPENDENCIES): New variables.
15151 (relro_test_LDFLAGS, relro_test_LDADD): New variables.
15152 (relro_test.so, relro_test_pic.o): New targets.
15153 * testsuite/Makefile.in: Rebuild.
15154
a984ee1d
ILT
151552008-05-16 Ian Lance Taylor <iant@google.com>
15156
01676dcd
ILT
15157 * output.cc (Output_segment::add_output_section): Remove front
15158 parameter.
15159 * output.h (class Output_segment): Remove
15160 add_initial_output_section and overloaded add_output_section.
15161 Update declaration of remaining add_output_section.
15162 * layout.cc (Layout::create_interp): Call add_output_section
15163 rather than add_initial_output_section.
15164 (Layout::finish_dynamic_section): Likewise.
15165
497897f9
ILT
15166 * i386.cc (Target_i386::Relocate::relocate_tls): Set dynamic type
15167 for TLS_GOTDESC and TLS_DESC_CALL. Only optimize TLS_LDO_32 if we
15168 know the dynamic type.
15169 * x86_64.cc (Target_x86_64::Relocate): Add saw_tls_block_reloc_
15170 field. Initialize it in constructor.
15171 (Target_x86_64::Relocate::relocate_tls): Record that we saw a TLS
15172 block reloc for TLSGD, GOTPC32_TLSDESC, TLSDESC_CALL, and TLSLD.
15173 Only optimize DTPOFF32 and DTPOFF64 if we have seen a TLS block
15174 reloc.
15175
a984ee1d
ILT
15176 * output.cc (Output_reloc::get_address): Change return type to
15177 Elf_Addr.
15178 * output.h (class Output_reloc): Update get_address declaration.
15179 * x86_64.cc (Output_data_plt_x86_64::do_write): Use 64-bit types
15180 for section addresses.
15181
55ba0940
ILT
151822008-05-09 Ian Lance Taylor <iant@google.com>
15183
15184 PR 6493
15185 * gold.cc (gold_nomem): Use return value of write.
15186
75517b77
ILT
151872008-05-08 Ian Lance Taylor <iant@google.com>
15188
15189 * symtab.c (Symbol::init_base_output_data): Add version
15190 parameter. Change all callers.
15191 (Symbol::init_base_output_segment): Likewise.
15192 (Symbol::init_base_constant): Likewise.
15193 (Symbol::init_base_undefined): Likewise.
15194 (Sized_symbol::init_output_data): Likewise.
15195 (Sized_symbol::init_output_segment): Likewise.
15196 (Sized_symbol::init_constant): Likewise.
15197 (Sized_symbol::init_undefined): Likewise.
15198 (Symbol_table::do_define_in_output_data): If the new symbol has a
15199 version, mark it as the default.
15200 (Symbol_table::do_define_in_output_segment): Likewise.
15201 (Symbol_table::do_define_as_constant): Likewise.
15202 * symtab.h (class Symbol): Update declarations.
15203 (class Sized_symbol): Likewise.
15204 * resolve.cc (Symbol::override_version): New function.
c42e122e 15205 (Symbol::override_base): Call override_version.
75517b77
ILT
15206 (Symbol::override_base_with_special): Likewise.
15207 * testsuite/ver_script_8.script: New file.
15208 * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_8.
15209 (ver_test_8_SOURCES, ver_test_8_DEPENDENCIES): Define.
15210 (ver_test_8_LDFLAGS, ver_test_8_LDADD): Define.
15211 (ver_test_8_1.so, ver_test_8_2.so): New targets.
15212
f1f70eae
ILT
152132008-05-06 Ian Lance Taylor <iant@google.com>
15214
f3e9c5c5
ILT
15215 PR 6049
15216 * options.h (DEFINE_set): Add VARNAME_begin and VARNAME_end
15217 functions.
15218 (class General_options): Remove existing --undefined, and add
15219 --no-undefined instead. Add new --undefined as synonym for -u.
15220 * archive.cc (Archive::add_symbols): Check whether symbol was
15221 named with -u.
15222 * gold.cc (queue_middle_tasks): Add -u symbols to symbol table.
15223 * symtab.h (class Symbol): Rename CONSTANT to IS_CONSTANT; change
15224 all uses. Add IS_UNDEFINED. Update declarations to split
15225 different versions of init_base. Declare init_base_undefined.
15226 (Symbol::is_defined): Handle IS_UNDEFINED.
15227 (Symbol::is_undefined): Likewise.
15228 (Symbol::is_weak_undefined): Call is_undefined.
15229 (Symbol::is_absolute): Handle IS_CONSTANT.
15230 (class Sized_symbol): Update declarations to split different
15231 versions of init. Declare init_undefined.
15232 (class Symbol_table): Declare new functions.
15233 * symtab.cc (Symbol::init_base_object): Rename from init_base.
15234 Change all callers.
15235 (Symbol::init_base_output_data): Likewise.
15236 (Symbol::init_base_output_segment): Likewise.
15237 (Symbol::init_base_constant): Likewise.
15238 (Symbol::init_base_undefined): New function.
15239 (Sized_symbol::init_object): Rename from init. Change all
15240 callers.
15241 (Sized_symbol::init_output_data): Likewise.
15242 (Sized_symbol::init_output_segment): Likewise.
15243 (Sized_symbol::init_constant): Likewise.
15244 (Sized_symbol::init_undefined): New function.
15245 (Symbol_table::add_undefined_symbols_from_command_line): New
15246 function.
15247 (Symbol_table::do_add_undefined_symbols_from_command_line): New
15248 function.
15249 (Symbol::final_value_is_known): Handle IS_UNDEFINED.
15250 (Symbol::output_section): Likewise.
15251 (Symbol::set_output_section): Likewise.
15252 (Symbol_table::sized_finalize_symbol): Likewise.
15253 (Symbol_table::sized_write_globals): Likewise.
15254 * resolve.cc (Symbol_table::should_override): Likewise.
15255 (Symbol::override_base_with_special): Likewise.
15256
8bdcdf2c
ILT
15257 * symtab.cc (Symbol_table::add_from_dynobj): If we see a protected
15258 symbol, change it to have default visibility.
15259 * testsuite/protected_1.cc: New file.
15260 * testsuite/protected_2.cc: New file.
15261 * testsuite/protected_3.cc: New file.
15262 * testsuite/protected_main_1.cc: New file.
15263 * testsuite/protected_main_2.cc: New file.
15264 * testsuite/protected_main_3.cc: New file.
15265 * testsuite/Makefile.am (check_PROGRAMS): Add protected_1.
15266 (protected_1_SOURCES, protected_1_DEPENDENCIES): Define.
15267 (protected_1_LDFLAGS, protected_1_LDADD): Define.
15268 (protected_1.so): New target.
15269 (protected_1_pic.o, protected_2_pic.o): New targets.
15270 (protected_3_pic.o): New target.
15271 (check_PROGRAMS): Add protected_2.
15272 (protected_2_SOURCES, protected_2_DEPENDENCIES): Define.
15273 (protected_2_LDFLAGS, protected_2_LDADD): Define.
15274 * testsuite/Makefile.in: Rebuild.
15275
2b706932
ILT
15276 * options.h (DEFINE_var): Add set_user_set_##varname__.
15277 (DEFINE_bool_alias): New macro.
15278 (class General_options): Define -Bstatic using DEFINE_bool_alias
15279 rather than DEFINE_special. Add --undefined as an alias for -z
15280 defs.
15281 * options.cc (General_options::parse_Bstatic): Remove.
15282
d82a5bcc
ILT
15283 * options.h (class General_options): Add --fatal-warnings.
15284 * main.cc (main): Implement --fatal-warnings.
15285 * errors.h (Errors::warning_count): New function.
15286
f1f70eae
ILT
15287 * options.h (class General_options): Add -Bsymbolic-functions.
15288 * symtab.h (Symbol::is_preemptible): Check for
15289 -Bsymbolic-functions.
15290
8825ac63
ILT
152912008-05-05 Ian Lance Taylor <iant@google.com>
15292
d98bc257
ILT
15293 * options.h (DEFINE_bool): For DASH_Z, create the negative option
15294 as noVARNAME rather than no-VARNAME.
15295 (class General_options): Add option -z combreloc.
15296 * output.h (class Output_reloc) [SHT_REL]: Declare compare and
15297 get_address.
15298 (Output_reloc::sort_before) [SHT_REL]: New function.
15299 (Output_reloc::sort_before) [SHT_RELA]: New function.
15300 (class Output_data_reloc_base): Add sort_relocs_ field. Define
15301 Sort_relocs_comparison.
15302 (Output_data_reloc_base::Output_data_reloc_base): Add sort_relocs
15303 parameter. Change all callers.
15304 (Output_data_reloc::Output_data_reloc) [both versions]: Add
15305 sort_relocs parameter. Change all callers.
15306 * output.cc (Output_reloc::get_address): New function, broken out
15307 of write_rel.
15308 (Output_reloc::write_rel): Call it.
15309 (Output_reloc::compare): New function.
15310 (Output_data_reloc_base::do_write): Optionally sort relocs.
15311
60b2b4e7
ILT
15312 * configure.ac: If targ_extra_obj is set, link it in.
15313 * configure.tgt: Initialize all variables.
15314 (x86_64*): Set targ_extra_obj and targ_extra_size.
15315 * configure: Rebuild.
15316
8825ac63
ILT
15317 * object.cc (Sized_relobj::include_section_group): Adjust section
15318 indexes read from group data. Build vector to pass to
15319 layout_group.
15320 * layout.cc (Layout::layout_group): Add flags and shndxes
15321 parameters. Remove contents parameter. Change caller. Update
15322 explicit instantiations.
15323 * layout.h (class Layout): Update layout_group declaration.
15324 * output.cc (Output_data_group::Output_data_group): Add flags and
15325 input_shndxes parameters. Remove contents parameter. Change
15326 caller.
15327 (Output_data_group::do_write): Change input_sections_ to
15328 input_shndxes_.
15329 * output.h (class Output_data_group): Update constructor
15330 declaration. Rename input_sections_ to input_shndxes_.
15331 * testsuite/many_sections_test.cc: Add template.
15332
e94cf127
CC
153332008-04-30 Cary Coutant <ccoutant@google.com>
15334
4418b2d5
CC
15335 * target-reloc.h (relocate_section): Fix dead-pointer bug.
15336
e94cf127
CC
15337 * layout.cc (Layout::include_section): Refactored check for debug
15338 info section.
15339 (Layout::add_comdat): Add new parameters. Change type
15340 of signature parameter. Add object and shndx to signatures table.
15341 (Layout::find_kept_object): New function.
15342 * layout.h: Include <cstring>.
15343 (Layout::is_debug_info_section): New function.
15344 (Layout::add_comdat): Add new parameters.
15345 (Layout::find_kept_object): New function.
15346 (Layout::Kept_section): New struct.
15347 (Layout::Signatures): Change type of map range.
15348 * object.cc (Relobj::output_section_address): New function.
15349 (Sized_relobj::include_section_group): Add new parameters. Change
15350 calls to Layout::add_comdat. Change to build table of kept comdat
15351 groups and table mapping discarded sections to kept sections.
15352 (Sized_relobj::include_linkonce_section): Likewise. Add new parameter.
15353 (Sized_relobj::do_layout): Change calls to include_section_group and
15354 include_linkonce_section.
15355 (Sized_relobj::do_finalize_local_symbols): Do not set local symbol
15356 value to zero when section is discarded.
15357 (Sized_relobj::map_to_kept_section): New function.
15358 * object.h (Relobj::output_section_address): New function.
15359 (Relobj::Comdat_group): New type.
15360 (Relobj::find_comdat_group): New function.
15361 (Relobj::Comdat_group_table): New type.
15362 (Relobj::Kept_comdat_section): New type.
15363 (Relobj::Kept_comdat_section_table): New type.
15364 (Relobj::add_comdat_group): New function.
15365 (Relobj::set_kept_comdat_section): New function.
15366 (Relobj::get_kept_comdat_section): New function.
15367 (Relobj::comdat_groups_): New field.
15368 (Relobj::kept_comdat_sections_): New field.
15369 (Symbol_value::input_value): Update comment.
15370 (Sized_relobj::map_to_kept_section) New function.
15371 (Sized_relobj::include_linkonce_section): Add new parameter.
15372 * target-reloc.h (Comdat_behavior): New type.
15373 (get_comdat_behavior): New function.
15374 (relocate_section): Add code to map a discarded section to the
15375 corresponding kept section when applying a relocation.
15376
e4e5049b
CS
153772008-04-30 Craig Silverstein <csilvers@google.com>
15378
15379 * dwarf_reader.cc (next_generation_count): New static var.
15380 (Addr2line_cache_entry): New struct.
15381 (addr2line_cache): New static var.
15382 (Dwarf_line_info::one_addr2line): Added caching.
15383 (Dwarf_line_info::clear_addr2line_cache): New function.
15384 * dwarf_reader.h (Dwarf_line_info::one_addr2line): Add
15385 cache-size parameter.
15386 (Dwarf_line_info::one_addr2line_cache): New function.
15387 * symtab.cc (Symbol_table::detect_odr_violations): Pass
15388 new cache-size argument to one_addr2line(), and clear cache.
15389
d09e9154
CC
153902008-04-28 Cary Coutant <ccoutant@google.com>
15391
15392 * i386.cc (Relocate::relocate): Fix typos for R_386_PC16 and
15393 R_386_PC8 relocations.
15394
7ef73768
ILT
153952008-04-23 Ian Lance Taylor <iant@google.com>
15396
55438702
ILT
15397 * object.cc (Sized_relobj::include_section_group): Check for
15398 invalid section group.
15399
c165fb93
ILT
15400 * object.cc (make_elf_object): Correct test for 64-bit ELF file
15401 header size.
15402
7ef73768
ILT
15403 * readsyms.cc (Read_symbols::do_read_symbols): Use get_view rather
15404 than read for file header.
15405 * archive.cc (Archive::include_member): Likewise.
15406
6194aaab
L
154072008-04-23 Paolo Bonzini <bonzini@gnu.org>
15408
15409 * aclocal.m4: Regenerate.
15410 * configure: Regenerate.
15411
d491d34e
ILT
154122008-04-19 Ian Lance Taylor <iant@google.com>
15413
5ea2bac6
ILT
15414 * version.cc (version_string): Bump to 1.6.
15415
7bc3e21a
ILT
15416 * testsuite/Makefile.am (many_sections_r_test): New target.
15417 (many_sections_r_test_SOURCES): Remove.
15418 (many_sections_r_test_DEPENDENCIES): Remove.
15419 (many_sections_r_test_LDFLAGS): Remove.
15420 (many_sections_r_test_LDADD): Remove.
15421
7fcd3aa9
ILT
15422 * object.cc (Sized_relobj::do_add_symbols): Always pass
15423 local_symbol_count_ to add_from_relobj.
15424
4c94d6ae
ILT
15425 * testsuite/Makefile.am (many_sections_check.h): Only check one in
15426 every thousand variables.
15427 * testsuite/Makefile.in: Rebuild.
15428
d491d34e
ILT
15429 * object.cc (Xindex::initialize_symtab_xindex): New function.
15430 (Xindex::read_symtab_xindex): New function.
15431 (Xindex::sym_xindex_to_shndx): New function.
15432 (Sized_relobj::find_symtab): Pick up SHT_SYMTAB_SHNDX section if
15433 available.
15434 (Sized_relobj::do_initialize_xindex): New function.
15435 (Sized_relobj::do_read_symbols): Adjust section links.
15436 (Sized_relobj::symbol_section_and_value): Add is_ordinary
15437 parameter. Change all callers.
15438 (Sized_relobj::include_section_group): Adjust section links and
15439 symbol section indexes.
15440 (Sized_relobj::do_layout): Adjust section links.
15441 (Sized_relobj::do_count_local_symbols): Adjust section links and
15442 symbol section indexes.
15443 (Sized_relobj::do_finalize_local_symbols): Distinguish between
15444 ordinary and special symbols.
15445 (Sized_relobj::write_local_symbols): Add symtab_xindex and
15446 dynsym_xindex parameters. Change all callers. Adjust section
15447 links. Use SHN_XINDEX when needed.
15448 (Sized_relobj::get_symbol_location_info): Adjust section links.
15449 Don't get fooled by special symbols.
15450 * object.h (class Xindex): Define.
15451 (class Object): Add xindex_ parameter. Declare virtual functoin
15452 do_initialize_xindex.
15453 (Object::adjust_sym_shndx): New function.
15454 (Object::set_xindex): New protected function.
15455 (class Symbol_value): Add is_ordinary_shndx_ field.
15456 (Symbol_value::Symbol_value): Initialize is_ordinary_shndx_.
15457 (Symbol_value::value): Assert ordinary section.
15458 (Symbol_value::initialize_input_to_output_map): Likewise.
15459 (Symbol_value::set_input_shndx): Add is_ordinary parameter.
15460 Change all callers.
15461 (Symbol_value::input_shndx): Add is_ordinary parameter. Change
15462 all callers.
15463 (class Sized_relobj): Update declarations.
15464 (Sized_relobj::local_symbol_input_shndx): Add is_ordinary
15465 parameter. Change all callers.
15466 (Sized_relobj::adjust_shndx): New function.
15467 * dynobj.cc (Sized_dynobj::Sized_dynobj): Initialize dynsym_shndx_
15468 field.
15469 (Sized_dynobj::find_dynsym_sections): Remove pdynsym_shndx
15470 parameter. Change all callers. Pick up SHT_DYNSYM_SHNDX section
15471 for SHT_DYNSYM section if available. Set dynsym_shndx_ field.
15472 (Sized_dynobj::read_dynsym_section): Adjust section links.
15473 (Sized_dynobj::read_dynamic): Likewise.
15474 (Sized_dynobj::do_read_symbols): Use dynsym_shndx_ field. Adjust
15475 section links.
15476 (Sized_dynobj::do_initialize_xindex): New function.
15477 * dynobj.h (class Sized_dynobj): Add dynsym_shndx_ field. Declare
15478 do_initialize_xindex.
15479 (Sized_dynobj::adjust_shndx): New function.
15480 * layout.cc (Layout::Layout): Initialize symtab_xindex_ and
15481 dynsym_xindex_ fields.
15482 (Layout::finalize): Add a call to set_section_indexes before
15483 creating the symtab sections.
15484 (Layout::set_section_indexes): Don't do anything if the section
15485 already has a section index.
15486 (Layout::create_symtab_sections): Add shnum parameter. Change
15487 caller. Create .symtab_shndx section if needed.
15488 (Layout::create_shdrs): Add shstrtab_section parameter. Change
15489 caller.
15490 (Layout::allocated_output_section_count): New function.
15491 (Layout::create_dynamic_symtab): Create .dynsym_shndx section if
15492 needed.
15493 * layout.h (class Layout): Add symtab_xindex_ and dynsym_xindex_
15494 fields. Update declarations.
15495 (Layout::symtab_xindex): New function.
15496 (Layout::dynsym_xindex): New function.
15497 (class Write_symbols_task): Add layout_ field.
15498 (Write_symbols_task::Write_symbols_task): Add layout parameter.
15499 Change caller.
15500 * output.cc (Output_section_headers::Output_section_headers): Add
15501 shstrtab_section parameter. Change all callers.
15502 (Output_section_headers::do_sized_write): Store overflow values
15503 for section count and section string table section index in
15504 section header zero.
15505 (Output_file_header::do_sized_write): Check for overflow of
15506 section count and section string table section index.
15507 (Output_symtab_xindex::do_write): New function.
15508 (Output_symtab_xindex::endian_do_write): New function.
15509 * output.h (class Output_section_headers): Add shstrtab_section_.
15510 Update declarations.
15511 (class Output_symtab_xindex): Define.
15512 (Output_section::has_out_shndx): New function.
15513 * symtab.cc (Symbol::init_fields): Initialize is_ordinary_shndx_
15514 field.
15515 (Symbol::init_base): Add st_shndx and is_ordinary parameters.
15516 Change all callers.
15517 (Sized_symbol::init): Likewise.
15518 (Symbol::output_section): Check for ordinary symbol.
15519 (Symbol_table::add_from_object): Remove orig_sym parameter. Add
15520 st_shndx, is_ordinary, and orig_st_shndx parameters. Change all
15521 callers.
15522 (Symbol_table::add_from_relobj): Add symndx_offset parameter.
15523 Change all callers. Simplify handling of symbols from sections
15524 not included in the link.
15525 (Symbol_table::add_from_dynobj): Handle ordinary symbol
15526 distinction.
15527 (Weak_alias_sorter::operator()): Assert that symbols are
15528 ordinary.
15529 (Symbol_table::sized_finalize_symbol): Handle ordinary symbol
15530 distinction.
15531 (Symbol_table::write_globals): Add symtab_xindex and dynsym_xindex
15532 parameters. Change all callers.
15533 (Symbol_table::sized_write_globals): Likewise. Handle ordinary
15534 symbol distinction. Use SHN_XINDEX when needed.
15535 (Symbol_table::write_section_symbol): Add symtab_xindex
15536 parameter. Change all callers.
15537 (Symbol_table::sized_write_section_symbol): Likewise. Use
15538 SHN_XINDEX when needed.
15539 * symtab.h (class Symbol): Add is_ordinary_shndx_ field. Update
15540 declarations.
15541 (Symbol::shndx): Add is_ordinary parameter. Change all callers.
15542 (Symbol::is_defined): Check is_ordinary.
15543 (Symbol::is_undefined, Symbol::is_weak_undefined): Likewise.
15544 (Symbol::is_absolute, Symbol::is_common): Likewise.
15545 (class Sized_symbol): Update declarations.
15546 (class Symbol_table): Update declarations.
15547 * resolve.cc (Symbol::override_base): Add st_shndx and is_ordinary
15548 parameters. Change all callers.
15549 (Sized_symbol::override): Likewise.
15550 (Symbol_table::override): Likewise.
15551 (symbol_to_bits): Add is_ordinary parameter. Change all callers.
15552 (Symbol_table::resolve): Remove orig_sym parameter. Add st_shndx,
15553 is_ordinary, and orig_st_shndx parameters. Change all callers.
15554 * copy-relocs.cc (Copy_relocs::emit_copy_reloc): Require symbol
15555 to be in an ordinary section.
15556 * dwarf_reader.cc (Sized_dwarf_line_info::symbol_section): Add
15557 object and is_ordinary parameters. Change all callers.
15558 (Sized_dwarf_line_info::read_relocs): Add object parameter.
15559 Change all callers. Don't add undefined or non-ordinary symbols
15560 to reloc_map_.
15561 (Sized_dwarf_line_info::read_line_mappings): Add object parameter.
15562 Change all callers.
15563 * dwarf_reader.h (class Sized_dwarf_line_info): Update
15564 declarations.
15565 * ehframe.cc (Eh_frame::read_fde): Check for ordinary symbol.
15566 * reloc.cc (Sized_relobj::do_read_relocs): Adjust section links.
15567 (Sized_relobj::relocate_sections): Likewise.
15568 * target-reloc.h (scan_relocs): Adjust section symbol index.
15569 (scan_relocatable_relocs): Likewise.
15570 * i386.cc (Scan::local): Check for ordinary symbols.
15571 * sparc.cc (Scan::local): Likewise.
15572 * x86_64.cc (Scan::local): Likewise.
15573 * testsuite/binary_unittest.cc (Sized_binary_test): Update calls
15574 to symbol_section_and_value.
15575 * testsuite/many_sections_test.cc: New file.
15576 * testsuite/Makefile.am (BUILT_SOURCES): Define.
15577 (check_PROGRAMS): Add many_sections_test.
15578 (many_sections_test_SOURCES): Define.
15579 (many_sections_test_DEPENDENCIES): Define.
15580 (many_sections_test_LDFLAGS): Define.
15581 (BUILT_SOURCES): Add many_sections_define.h.
15582 (many_sections_define.h): New target.
15583 (BUILT_SOURCES): Add many_sections_check.h.
15584 (many_sections_check.h): New target.
15585 (check_PROGRAMS): Add many_sections_r_test.
15586 (many_sections_r_test_SOURCES): Define.
15587 (many_sections_r_test_DEPENDENCIES): Define.
15588 (many_sections_r_test_LDFLAGS): Define.
15589 (many_sections_r_test_LDADD): Define.
15590 (many_sections_r_test.o): New target.
15591 * testsuite/Makefile.in: Rebuild.
15592
c5818ff1
CC
155932008-04-17 Cary Coutant <ccoutant@google.com>
15594
15595 * errors.cc (Errors::info): New function.
15596 (gold_info): New function.
15597 * errors.h (Errors::info): New function.
15598 * gold.h (gold_info): New function.
15599 * object.cc (Input_objects::add_object): Print trace output.
15600 * options.cc (options::parse_set): New function.
15601 (General_options::parse_wrap): Deleted.
15602 (General_options::General_options): Deleted initializer.
15603 * options.h (options::String_set): New typedef.
15604 (options::parse_set): New function.
15605 (DEFINE_set): New macro.
15606 (General_options::wrap): Changed to use DEFINE_set. Changed
15607 callers of any_wrap_symbols and is_wrap_symbol.
15608 (General_options::trace, General_options::trace_symbol):
15609 New options.
15610 (General_options::any_wrap_symbols, General_options::is_wrap_symbol)
15611 (General_options::wrap_symbols_): Deleted.
15612 * symtab.cc (Symbol_table::add_from_object): Print trace output.
15613
b5be4a7c
DM
156142008-04-17 David S. Miller <davem@davemloft.net>
15615
15616 * options.cc (General_options::parse_V): New function.
15617 * options.h: Add entries for -V and -Qy.
15618
155a0dd7
ILT
156192008-04-17 Ian Lance Taylor <iant@google.com>
15620
15621 * common.cc (Symbol_table::allocate_commons): Remove options
15622 parameter. Change caller.
15623 (Symbol_table::do_allocate_commons): Remove options parameter.
15624 Change caller. Just call do_allocate_commons_list twice.
15625 (Symbol_table::do_allocate_commons_list): New function, broken out
15626 of do_allocate_commons.
15627 * common.h (class Allocate_commons_task): Remove options_ field.
15628 Update constructor.
15629 * symtab.cc (Symbol_table::Symbol_table): Initialize
15630 tls_commons_.
15631 (Symbol_table::add_from_object): Put TLS common symbols on
15632 tls_commons_ list.
15633 (Symbol_table::sized_finalize_symbol): Handle STT_TLS symbols
15634 which are IN_OUTPUT_DATA.
15635 * symtab.h (class Symbol_table): Add tls_commons_ field. Update
15636 allocate_commons and do_allocate_commons declarations. Declare
15637 do_allocate_commons_list.
15638 * gold.cc (queue_middle_tasks): Update creation of
15639 Allocate_commons_task to not pass options.
15640 * testsuite/Makefile.am (INCLUDES): Add -I.. .
15641 (TLS_TEST_C_FLAGS): New variable.
15642 (tls_test_c_pic.o): New target.
15643 (tls_test_shared.so): Link in tls_test_c_pic.o.
15644 (tls_test_c_pic_ie.o): New target.
15645 (tls_test_ie_shared.so): Link in tls_test_c_pic_ie.o.
15646 (tls_test_DEPENDENCIES, tls_test_LDADD): Add tls_test_c.o.
15647 (tls_test_c.o): New target.
15648 (tls_pic_test_DEPENDENCIES): Add tls_test_c_pic.o.
15649 (tls_pic_test_LDADD): Likewise.
15650 (tls_shared_gd_to_ie_test_DEPENDENCIES): Add tls_test_c_pic.o.
15651 (tls_shared_gd_to_ie_test_LDADD): Likewise.
15652 (tls_test_c_gnu2.o): New target.
15653 (tls_shared_gnu2_gd_to_ie_test_DEPENDENCIES): Add
15654 tls_test_c_gnu2.o.
15655 (tls_shared_gnu2_gd_to_ie_test_LDADD): Likewise.
15656 (tls_test_gnu2_shared.so): Link in tls_test_c_gnu2.o.
15657 (tls_test_shared_nonpic.so): Link in tls_test_c.o.
15658 * testsuite/tls_test.cc: Include "config.h".
15659 (t_last): Call t11_last.
15660 * testsuite/tls_test.h (t11, t11_last): Declare.
15661 * testsuite/tls_test_c.c: New file.
15662 * testsuite/tls_test_main.cc (thread_routine): Call t11.
15663 * configure.ac: Check for OpenMP support.
15664 * configure, config.in, Makefile.in: Rebuild.
15665 * testsuite/Makefile.in: Rebuild.
15666
edfbb029
CC
156672008-04-16 Cary Coutant <ccoutant@google.com>
15668
15669 * i386.cc (Target_i386::define_tls_base_symbol): New function.
15670 (Target_i386::tls_base_symbol_defined_): New field.
15671 (Target_i386::Scan::local): Define _TLS_MODULE_BASE_ symbol.
15672 (Target_i386::Scan::global): Likewise.
15673 * symtab.cc (sized_finalize_symbol): Add check for TLS symbol.
15674 * x86_64.cc (Target_x86_64::define_tls_base_symbol): New function.
15675 (Target_x86_64::tls_base_symbol_defined_): New field.
15676 (Target_x86_64::Scan::local): Define _TLS_MODULE_BASE_ symbol.
15677 (Target_x86_64::Scan::global): Likewise.
15678
f3c69fca
CC
156792008-04-16 Cary Coutant <ccoutant@google.com>
15680
15681 * symtab.h (Symbol::is_strong_undefined): Removed unused function.
15682 (Symbol::needs_plt_entry): Allow weak undefined symbols.
15683 (Symbol::needs_dynamic_reloc): Allow weak undefined symbols when
15684 building shared libraries.
15685 * testsuite/Makefile.am (weak_undef_nonpic_test): New target.
15686 (weak_undef_file1_nonpic.o, weak_undef_file2_nonpic.o)
15687 (weak_undef_lib_nonpic.so, alt/weak_undef_lib_nonpic.so): New targets.
15688 * testsuite/Makefile.in: Rebuild.
15689 * testsuite/weak_undef.h: New file.
15690 * testsuite/weak_undef_file1.cc: Add extra test cases.
15691 * testsuite/weak_undef_file2.cc: Likewise.
15692 * testsuite/weak_undef_test.cc: Likewise.
15693
7c414435
DM
156942008-04-16 David S. Miller <davem@davemloft.net>
15695
32b769e1
DM
15696 * sparc.cc (Target_sparc::Scan): Change from struct to class.
15697 Add issued_non_pic_error_ field. Declare check_non_pic.
15698 (Target_sparc::Scan::check_non_pic): New function.
15699 (Target_sparc::Scan::local): Call check_non_pic as appropriate.
15700 (Target_sparc::Scan::global): Likewise.
15701
11936fb1
DM
15702 * configure.ac (FN_PTRS_IN_SO_WITHOUT_PIC): Add sparc64.
15703 * configure: Rebuild.
15704
7c414435
DM
15705 * options.h (DEFINE_enable): New macro.
15706 (new_dtags): New enable option.
15707 (initfirst, interpose, loadfltr, nodefaultlib,
15708 nodelete, nodlopen, nodump): New -z options.
15709 * layout.cc (Layout:finish_dynamic_section): If new
15710 dtags enabled, emit DT_RUNPATH. Also, emit a
15711 DT_FLAGS_1 containing any specified -z flags.
15712
85c7bf8b
ILT
157132008-04-16 Ian Lance Taylor <iant@google.com>
15714
12c0daef
ILT
15715 * copy-relocs.cc: New file.
15716 * copy-relocs.h: New file.
15717 * reloc.cc: Remove Copy_relocs code.
15718 * reloc.h: Likewise.
15719 * reloc-types.h (struct Reloc_types) [both versions]: Add
15720 get_reloc_addend_noerror.
15721 * output.h (class Output_data_reloc<elfcpp::SHT_REL>): Add
15722 variants of add_global which take an addend which must be zero.
15723 * i386.cc: Include "copy-relocs.h".
15724 (class Target_i386): Change type of copy_relocs_ to variable,
15725 update initializer.
15726 (Target_i386::copy_reloc): Rewrite to pass to Copy_relocs class.
15727 Change all callers.
15728 (Target_i386::do_finalize_sections): Change handling of
15729 copy_relocs_.
15730 * sparc.cc: Include "copy-relocs.h".
15731 (class Target_sparc): Change type of copy_relocs_ to variable,
15732 update initializer.
15733 (Target_sparc::copy_reloc): Rewrite to pass to Copy_relocs class.
15734 Change all callers.
15735 (Target_sparc::do_finalize_sections): Change handling of
15736 copy_relocs_.
15737 * x86_64.cc: Include "copy-relocs.h".
15738 (class Target_x86_64): Change type of copy_relocs_ to variable,
15739 update initializer.
15740 (Target_x86_64::copy_reloc): Rewrite to pass to Copy_relocs
15741 class. Change all callers.
15742 (Target_x86_64::do_finalize_sections): Change handling of
15743 copy_relocs_.
15744 * Makefile.am (CCFILES): Add copy-relocs.cc.
15745 (HFILES): Add copy-relocs.h.
15746
4f4995b6
ILT
15747 * Makefile.in, aclocal.m4, testsuite/Makefile.in: Rebuild.
15748
85c7bf8b
ILT
15749 * testsuite/script_test_4.sh: Permit leading zeroes.
15750
4f2a9edd
ILT
157512008-04-15 Ian Lance Taylor <iant@google.com>
15752
e6188289
ILT
15753 * script-sections.cc (Script_sections::create_segments): Use
15754 header_size_adjustment even when there is enough room for the
15755 headers.
15756 * testsuite/script_test_4.sh: New file.
15757 * testsuite/script_test_4.t: New file.
15758 * testsuite/Makefile.am (check_SCRIPTS): Add script_test_4.sh.
15759 (check_DATA): Add script_test_4.stdout.
15760 (MOSTLYCLEANFILES): Likewise.
15761 (script_test_4): New target.
15762 (script_test_4.stdout): New target.
15763 * testsuite/Makefile.in: Rebuild.
15764
4f2a9edd
ILT
15765 * sparc.cc: Add definitions for Output_data_plt_sparc class
15766 constants.
15767
f5314dd5
DM
157682008-04-14 David S. Miller <davem@davemloft.net>
15769
15770 * sparc.cc: New file.
15771 * Makefile.am (TARGETSOURCES): Add sparc.cc
15772 (ALL_TARGETOBJS): Add sparc.$(OBJEXT)
15773 * configure.tgt: Document targ_extra_size and
15774 targ_extra_big_endian. Add entries for sparc-* and
15775 sparc64-*.
15776 * configure.ac: Handle targ_extra_size and
15777 targ_extra_big_endian.
15778 * Makefile.in: Rebuild.
15779 * configure: Likewise.
15780 * po/POTFILES.in: Likewise.
15781 * po/gold.pot: Likewise.
15782
154e0e9a
ILT
157832008-04-14 Ian Lance Taylor <iant@google.com>
15784
15785 * layout.cc (Layout::Layout): Initialize sections_are_attached_.
15786 (Layout::get_output_section): Ignore SHF_WRITE and SHF_EXECINSTR
15787 in the name/type/flags to section mapping. Don't call
15788 allocate_output_section.
15789 (Layout::choose_output_section): Change parameter from adjust_name
15790 to is_input_section. Don't permit input sections after sections
15791 are attached to segments. Don't call allocate_output_section.
15792 (Layout::layout_eh_frame): Call update_flags_for_input_section,
15793 not write_enable_output_section.
15794 (Layout::make_output_section): Don't push to
15795 unattached_section_list_ nor call attach_to_segment. Call
15796 attach_section_to_segment if sections are attached.
15797 (Layout::attach_sections_to_segments): New function.
15798 (Layout::attach_section_to_segment): New function.
15799 (Layout::attach_allocated_section_to_segment): Rename from
15800 attach_to_segment. Remove flags parameter.
15801 (Layout::allocate_output_section): Remove function.
15802 (Layout::write_enable_output_section): Remove function.
15803 * layout.h (class Layout): Update for above changes. Add new
15804 field sections_are_attached_.
15805 * output.h (Output_section::update_flags_for_input_section): New
15806 function.
15807 * output.cc (Output_section::add_input_section): Call
15808 update_flags_for_input_section.
15809 * gold.cc (queue_middle_tasks): Call attach_sections_to_segments.
15810
009a67a2
CC
158112008-04-11 Cary Coutant <ccoutant@google.com>
15812
15813 * i386.cc (Target_i386::got_mod_index_entry): Restore code previously
15814 thought unnecessary.
15815 * x86_64.cc (Target_x86_64::got_mod_index_entry): Likewise.
15816
759b1a24
ILT
158172008-04-11 Ian Lance Taylor <iant@google.com>
15818
15819 * output.h (class Output_section_data): Remove inline definition
15820 of set_addralign.
15821 * output.cc (Output_section_data::set_addralign): New function.
15822
c2b45e22
CC
158232008-04-11 Cary Coutant <ccoutant@google.com>
15824
15825 Add support for TLS descriptors for i386 and x86_64.
15826 * i386.cc (Target_i386::Relocate::tls_desc_gd_to_ie): New function.
15827 (Target_i386::Relocate::tls_desc_gd_to_le): New function.
15828 (Target_i386::Got_type): Add GOT_TYPE_TLS_NOFFSET and
15829 GOT_TYPE_TLS_DESC.
15830 (Target_i386::got_mod_index_entry): Remove unnecessary code.
15831 (Target_i386::Scan::local): Implement R_386_TLS_GOTDESC and
15832 R_386_TLS_DESC_CALL relocations. Fix problem with initial-exec
15833 relocations.
15834 (Target_i386::Scan::global): Fix problem with GD-to-IE relaxation.
15835 Implement R_386_TLS_GOTDESC and R_386_TLS_DESC_CALL relocations;
15836 Fix problem with initial-exec relocations.
15837 (Target_i386::Relocate::relocate_tls): Likewise.
15838 (Target_i386::Relocate::tls_gd_to_ie): Fix problem with GD-to-IE
15839 relaxation.
15840 * output.cc (Output_data_dynamic::Dynamic_entry::write): Add
15841 support for section-plus-offset dynamic table entries.
15842 * output.h (Output_data_dynamic::add_section_plus_offset): New function.
15843 (Output_data_dynamic::Dynamic_entry): Add support for
15844 section-plus-offset dynamic table entries.
15845 (Output_data_dynamic::Classification): Likewise.
15846 (Output_data_dynamic::classification_): Renamed offset_.
15847 * x86_64.cc (Target_x86_64::Relocate::tls_desc_gd_to_ie): New function.
15848 (Target_x86_64::Relocate::tls_desc_gd_to_le): New function.
15849 (Target_x86_64::make_plt_section): New function.
15850 (Target_x86_64::reserve_tlsdesc_entries): New function.
15851 (Output_data_plt_x86_64::Output_data_plt_x86_64): Add new parameter.
15852 (Output_data_plt_x86_64::reserve_tlsdesc_entry): New function.
15853 (Output_data_plt_x86_64::has_tlsdesc_entry): New function.
15854 (Output_data_plt_x86_64::get_tlsdesc_got_offset): New function.
15855 (Output_data_plt_x86_64::get_tlsdesc_plt_offset): New function.
15856 (Output_data_plt_x86_64::tlsdesc_plt_entry): New field.
15857 (Output_data_plt_x86_64::set_final_data_size): Move out of line;
15858 add extra PLT entry for TLS descriptors.
15859 (Output_data_plt_x86_64::got_): New field.
15860 (Output_data_plt_x86_64::tlsdesc_got_offset_): New field.
15861 (Output_data_plt_x86_64::Output_data_plt_x86_64): Initialize new
15862 fields.
15863 (Output_data_plt_x86_64::do_write): Write extra PLT entry for TLS
15864 descriptors.
15865 (Target_x86_64::make_plt_entry): Factor out make_plt_section.
15866 (Target_x86_64::got_mod_index_entry): Remove unnecessary code.
15867 (Target_x86_64::Scan::local): Implement R_386_TLS_GOTDESC and
15868 R_386_TLS_DESC_CALL relocations.
15869 (Target_x86_64::Scan::global): Likewise.
15870 (Target_x86_64::do_finalize_sections): Add dynamic table entries
15871 for TLS descriptors.
15872 (Relocate::relocate_tls): Fix problem with GD-to-IE relaxation.
15873 Implement R_386_TLS_GOTDESC and R_386_TLS_DESC_CALL relocations.
15874 (Target_x86_64::Relocate::tls_gd_to_ie): Fix problem with
15875 GD-to-IE relaxation.
15876 * configure.ac: Export new conditional variables TLS_GNU2_DIALECT
15877 and TLS_DESCRIPTORS.
15878 * Makefile.in: Rebuild.
15879 * configure: Rebuild.
15880 * testsuite/Makefile.am (tls_shared_gd_to_ie_test): New target.
15881 (tls_test_shared2.so): New target.
15882 (tls_shared_gd_to_ie_test_SOURCES): New variable.
15883 (tls_shared_gd_to_ie_test_DEPENDENCIES): New variable.
15884 (tls_shared_gd_to_ie_test_LDFLAGS): New variable.
15885 (tls_shared_gd_to_ie_test_LDADD): New variable.
15886 (tls_shared_gnu2_gd_to_ie_test): New target.
15887 (tls_test_gnu2.o, tls_test_file2_gnu2.o, tls_test_gnu2_shared2.so):
15888 New targets.
15889 (tls_shared_gnu2_gd_to_ie_test_SOURCES): New variable.
15890 (ls_shared_gnu2_gd_to_ie_test_DEPENDENCIES): New variable.
15891 (tls_shared_gnu2_gd_to_ie_test_LDFLAGS): New variable.
15892 (tls_shared_gnu2_gd_to_ie_test_LDADD): New variable.
15893 (tls_shared_gnu2_test): New target.
15894 (tls_test_gnu2_shared.so): New target.
15895 (tls_shared_gnu2_test_SOURCES): New variable.
15896 (tls_shared_gnu2_test_DEPENDENCIES): New variable.
15897 (tls_shared_gnu2_test_LDFLAGS): New variable.
15898 (tls_shared_gnu2_test_LDADD): New variable.
15899 * testsuite/Makefile.in: Rebuild.
15900 * testsuite/Makefile.
15901
83bfb6b7
ILT
159022008-04-11 Ian Lance Taylor <iant@google.com>
15903
15904 * testsuite/Makefile.am (justsyms_2r.o): Add dependency on
15905 justsyms.t.
15906 * testsuite/Makefile.in: Rebuild.
15907
15908 * testsuite/script_test_2a.cc (script_test_string_a): Make 8 bytes
15909 long.
15910 * testsuite/script_test_2.cc (main): Adjust test.
15911
706e1f5e
ILT
159122008-04-11 David S. Miller <davem@davemloft.net>
15913 Ian Lance Taylor <iant@google.com>
15914
15915 * options.h (General_options): Add entries for '-Y' and
15916 '-relax'.
15917 * options.cc (General_options:finalize): If -Y was used, add those
15918 entries to the library path instead of the default "/lib" and
15919 "/usr/lib".
15920
7c98e6bb
DM
159212008-04-11 David S. Miller <davem@davemloft.net>
15922
15923 * testsuite/justsyms.t: Start at 0x100.
15924 * testsuite/justsyms_1.cc: Adjust justsyms_string assertion.
83bfb6b7
ILT
15925 * testsuite/script_test_2b.cc (script_test_string_b): Make 8 bytes
15926 long.
15927 * testsuite/script_test_2.cc: Adjust string and section length
15928 checks.
7c98e6bb 15929
99a37bfd
ILT
159302008-04-09 Ian Lance Taylor <iant@google.com>
15931
2cefc357
ILT
15932 PR gold/5996
15933 * script-sections.cc (Sections_element::allocate_to_segment): Add
15934 orphan parameter.
15935 (Output_section_definition::allocate_to_segment): Likewise.
15936 (Orphan_output_section::allocate_to_segment): Likewise.
15937 (Script_sections::attach_sections_using_phdrs_clause): Don't
15938 propagate non-PT_LOAD segments to orphan sections.
15939 * testsuite/Makefile.am (script_test_3.stdout): Generate using
15940 readelf rather than objdump.
15941 * testsuite/script_test_3.sh: Adjust accordingly. Test that
15942 .interp section and PT_INTERP segment are the same size.
15943 * testsuite/Makefile.in: Rebuild.
15944
99a37bfd
ILT
15945 * symtab.cc (Symbol_table::add_from_dynobj): Only look for weak
15946 aliases for symbols defined in the same object.
15947 * testsuite/Makefile.am (check_PROGRAMS): Add weak_alias_test.
15948 (weak_alias_test_SOURCES): New variable.
15949 (weak_alias_test_DEPENDENCIES): New variable.
15950 (weak_alias_test_LDFLAGS): New variable.
15951 (weak_alias_test_LDADD): New variable.
15952 (weak_alias_test_1_pic.o, weak_alias_test_1.so): New targets.
15953 (weak_alias_test_2_pic.o, weak_alias_test_2.so): New targets.
15954 (weak_alias_test_3.o): New target.
15955 (weak_alias_test_4_pic.o, weak_alias_test_4.so): New targets.
15956 * testsuite/weak_alias_test_main.cc: New file.
15957 * testsuite/weak_alias_test_1.cc: New file.
15958 * testsuite/weak_alias_test_2.cc: New file.
15959 * testsuite/weak_alias_test_3.cc: New file.
15960
780e49c5
ILT
159612008-04-08 Ian Lance Taylor <iant@google.com>
15962
cdb0b8f5
ILT
15963 * options.h (class General_options): Add --noinhibit-exec option.
15964 * main.cc (main): Check --noinhibit-exec.
15965
0864d551
ILT
15966 * options.h (class General_options): Define --wrap as a special
15967 option. Add wrap_symbols_ field.
15968 (General_options::any_wrap_symbols): New function.
15969 (General_options::is_wrap_symbol): New function.
15970 * options.cc (General_options::parse_wrap): New function.
15971 (General_options::General_options): Initialize wrap_symbols_.
15972 * symtab.cc (Symbol_table::wrap_symbol): New function.
15973 (Symbol_table::add_from_object): Handle --wrap.
15974 * symtab.h (class Symbol_table): Declare wrap_symbol.
15975 * target.h (Target::wrap_char): New function.
15976 (Target::Target_info): Add wrap_char field.
15977 * i386.cc (Target_i386::i386_info): Initialize wrap_char.
15978 * x86_64.cc (Target_x86_64::x86_64_info): Likewise.
15979 * testsuite/testfile.cc (Target_test::test_target_info):
15980 Likewise.
15981
789aa6de
ILT
15982 * errors.cc (Errors::undefined_symbol): Mention symbol version if
15983 there is one.
15984
2c38906f
ILT
15985 * layout.h (class Layout): Add added_eh_frame_data_ field.
15986 * layout.cc (Layout::Layout): Initialize new field.
15987 (Layout::layout_eh_frame): Don't add eh_frame_data_ to .eh_frame
15988 output section until we find a section we merged successfully.
15989 * object.cc (Sized_relobj::check_eh_frame_flags): Don't require
15990 that the size be non-zero.
15991
780e49c5
ILT
15992 * merge.cc (Object_merge_map::get_output_offset): Remove inline
15993 qualifier.
15994
7fcd0256
ILT
159952008-04-08 Craig Silverstein <csilvers@google.com>
15996
15997 * configure.ac: Export new conditional variable HAVE_ZLIB.
15998 * testsuite/Makefile.am (flagstest_o_specialfile): Condition
15999 on HAVE_ZLIB.
16000 (flagstest_o_specialfile_and_compress_debug_sections): Likewise.
16001 * configure, Makefile.in, testsuite/Makefile.in: Rebuild.
16002
6835af53
ILT
160032008-04-07 Ian Lance Taylor <iant@google.com>
16004
e24f324c
ILT
16005 * version.cc (version_string): Set to "1.5".
16006
a036edd8
ILT
16007 * x86_64.cc (Target_x86_64::Scan): Change from struct to class.
16008 Add issued_non_pic_error_ field. Declare check_non_pic.
16009 (Target_x86_64::Scan::check_non_pic): New function.
16010 (Target_x86_64::Scan::local): Call check_non_pic as appropriate.
16011 (Target_x86_64::Scan::global): Likewise.
16012
624f8810
ILT
16013 * output.cc (Output_reloc<SHT_REL>::local_section_offset): Add
16014 addend parameter. Change caller. Handle merge sections.
16015 (Output_reloc<SHT_REL>::symbol_value): Change parameter type from
16016 Address to Addend. Don't add in the result of
16017 local_section_offset, pass down the addend and use the returned
16018 value.
16019 * output.h (class Output_reloc<SHT_REL>): Add Addend typedef.
16020 Update declarations of local_section_offset and symbol_value.
16021 * testsuite/two_file_test_1.cc (t18): New function.
16022 * testsuite/two_file_test_2.cc (f18): New function.
16023 * testsuite/two_file_test_main.cc (main): Call t18.
16024 * testsuite/two_file_test.h (t18, f18): Declare.
16025
6835af53
ILT
16026 * configure.ac: Don't test for objdump, c++filt, or readelf.
16027 * testsuite/Makefile.am: Remove READELF and OBJDUMP_AND_CPPFILT
16028 conditionals.
16029 (TEST_READELF): New variable.
16030 (TEST_OBJDUMP, TEST_CXXFILT, TEST_STRIP): New variables.
16031 (check_PROGRAMS): Add two_file_strip_test.
16032 (two_file_strip_test): New target.
16033 (check_PROGRAMS): Add two_file_same_shared_strip_test.
16034 (two_file_same_shared_strip_test_SOURCES): New variable.
16035 (two_file_same_shared_strip_test_DEPENDENCIES): New variable.
16036 (two_file_same_shared_strip_test_LDFLAGS): New variable.
16037 (two_file_same_shared_strip_test_LDADD): New variable.
16038 (two_file_shared_strip.so): New target.
16039 (ver_test_2.syms, ver_test_4.syms): Use TEST_READELF.
16040 (ver_test_5.syms, ver_test_7.syms): Likewise.
16041 (ver_matching_test.stdout): Use TEST_OBJDUMP and TEST_CXXFILT.
16042 (strip_test_3.stdout): Use TEST_OBJDUMP.
16043 * configure, Makefile.in, testsuite/Makefile.in: Rebuild.
16044
86925eef
CC
160452008-04-04 Cary Coutant <ccoutant@google.com>
16046
16047 * symtab.h (Symbol::is_weak_undefined): New function.
16048 (Symbol::is_strong_undefined): New function.
16049 (Symbol::is_absolute): New function.
16050 (Symbol::needs_plt_entry): Exclude weak undefined symbols.
16051 (Symbol::needs_dynamic_reloc): Exclude weak undefined and
16052 absolute symbols.
16053 * testsuite/Makefile.am (check_PROGRAMS): Add weak_undef_test.
16054 (weak_undef_test): New target.
16055 * testsuite/Makefile.in: Rebuild.
16056 * testsuite/weak_undef_file1.cc: New file.
16057 * testsuite/weak_undef_file2.cc: New file.
16058 * testsuite/weak_undef_test.cc: New file.
16059
126f3ece
ILT
160602008-04-03 Craig Silverstein <csilvers@google.com>
16061
16062 * compressed_output.h (class Output_compressed_section): Use
16063 unsigned buffer.
16064 * compressed_output.cc (zlib_compress): Use unsigned buffers,
16065 add zlib header.
16066 (zlib_compressed_suffix): Removed.
16067 (Output_compressed_section::set_final_data_size): Use unsigned
16068 buffers.
16069 * testsuite/Makefile.am (flagstest_compress_debug_sections):
16070 Fix linker invocation.
16071 (flagstest_o_specialfile_and_compress_debug_sections):
16072 Likewise.
16073 * testsuite/Makefile.in: Regenerated.
16074
deae2a14
DM
160752008-04-02 David S. Miller <davem@davemloft.net>
16076
16077 * dwarf_reader.cc (Sized_dwarf_line_info::read_header_prolog,
16078 Sized_dwarf_line_info::process_one_opcode): Use Swap_unaligned.
16079
70752818
ILT
160802008-04-02 Craig Silverstein <csilvers@google.com>
16081
16082 * TODO: New file.
16083
39d0cb0e
ILT
160842008-04-02 Ian Lance Taylor <iant@google.com>
16085
16086 * fileread.cc (File_read::find_view): Add byteshift and vshifted
16087 parameters. Update for new key type to views_. Change all
16088 callers.
16089 (File_read::read): Adjust for byteshift in returned view.
16090 (File_read::add_view): New function, broken out of
16091 find_and_make_view.
16092 (File_read::make_view): New function, broken out of
16093 find_and_make_view.
16094 (File_read::find_or_make_view): Add offset and aligned
16095 parameters. Rewrite accordingly. Change all callers.
16096 (File_read::get_view): Add offset and aligned parameters. Adjust
16097 for byteshift in return value.
16098 (File_read::get_lasting_view): Likewise.
16099 * fileread.h (class File_read): Update declarations.
16100 (class File_read::View): Add byteshift_ field. Add byteshift to
16101 constructor. Add byteshift method.
16102 * archive.h (Archive::clear_uncached_views): New function.
16103 (Archive::get_view): Add aligned parameter. Change all callers.
16104 * object.h (Object::get_view): Add aligned parameter. Change all
16105 callers.
16106 (Object::get_lasting_view): Likewise.
16107
16108 * fileread.cc (File_read::release): Don't call clear_views if
16109 there are multiple objects.
16110 * fileread.h (File_read::clear_uncached_views): New function.
16111 * archive.cc (Add_archive_symbols::run): Call clear_uncached_views
16112 on the archive.
16113
a1207466
CC
161142008-03-31 Cary Coutant <ccoutant@google.com>
16115
16116 Add thin archive support.
16117 * archive.cc (Archive::armagt): New const.
16118 (Archive::setup): Remove task parameter and calls to unlock.
16119 (Archive::unlock_nested_archives): New function.
16120 (Archive::read_header): Add nested_off parameter. Change
16121 all callers.
16122 (Archive::interpret_header): Likewise.
16123 (Archive::include_all_members): Change to handle thin
16124 archives.
16125 (Archive::include_member): Likewise.
16126 * archive.h (Archive::Archive): Add new parameters and
16127 initializers.
16128 (Archive::armagt): New const.
16129 (Archive::setup): Remove task parameter.
16130 (Archive::unlock_nested_archives): New function.
16131 (Archive::read_header): Add nested_off parameter.
16132 (Archive::interpret_header): Likewise.
16133 (Archive::Nested_archive_table): New typedef.
16134 (Archive::is_thin_archive_): New field.
16135 (Archive::nested_archives_): New field.
16136 (Archive::options_): New field.
16137 (Archive::dirpath_): New field.
16138 (Archive::task_): New field.
16139 * readsyms.cc (Read_symbols::do_read_symbols): Add check
16140 for thin archives. Pass additional parameters to
16141 Archive::Archive. Unlock the archive file after calling
16142 Archive::setup.
cd536b21 16143
479f6503
ILT
161442008-03-29 Ian Lance Taylor <iant@google.com>
16145
686c8caf
ILT
16146 * symtab.cc (Symbol_table::do_define_as_constant): Don't force a
16147 version symbol to be local.
16148 * testsuite/ver_test_4.sh: New file.
16149 * testsuite/Makefile.am (check_SCRIPTS): Add ver_test_4.sh.
16150 (check_DATA): Add ver_test_4.syms.
16151 (ver_test_4.syms): New target.
16152 * testsuite/Makefile.in: Rebuild.
16153
ab794b6b
ILT
16154 * output.cc
16155 (Output_section::Input_section_sort_entry::has_priority): New
16156 function.
16157 (Output_section::Input_section_sort_entry::match_file_name): New
16158 function.
16159 (Output_section::Input_section_sort_entry::match_section_name):
16160 Remove.
16161 (Output_section::Input_section_sort_entry::match_section_name_prefix):
16162 Remove.
16163 (Output_section::Input_section_sort_entry::match_section_file):
16164 Remove.
16165 (Output_section::Input_section_sort_compare::operator()): Rewrite
16166 using new Input_section_sort_entry functions. Sort crtbegin and
16167 crtend first. Sort sections with no priority before sections with
16168 a priority.
16169 * testsuite/initpri1.c (d3): Check j != 4.
16170 (cd5): New constructor/destructor function.
16171 (main): Check j != 2.
16172
479f6503
ILT
16173 * symtab.cc (Symbol_table::add_from_object): If we don't use the
16174 new symbol when resolving, don't call set_is_default.
16175 * testsuite/ver_test_7.cc: New file.
16176 * testsuite/ver_test_7.sh: New file.
16177 * testsuite/Makefile.am (ver_test_7.so): New target.
16178 (ver_test_7.o): New target.
16179 (check_SCRIPTS): Add ver_test_7.sh.
16180 (check_DATA): Add ver_test_7.syms.
16181 (ver_test_7.syms): New target.
16182
2fd32231
ILT
161832008-03-28 Ian Lance Taylor <iant@google.com>
16184
16185 * layout.cc (Layout::layout): If we see an input section with a
16186 name that needs sorting, set the must_sort flag for the output
16187 section.
16188 (Layout::make_output_section): If the name of the output section
16189 indicates that it might require sorting, set the may_sort flag.
16190 * output.h (Output_section::may_sort_attached_input_sections): New
16191 function.
16192 (Output_section::set_may_sort_attached_input_sections): New
16193 function.
16194 (Output_section::must_sort_attached_input_sections): New
16195 function.
16196 (Output_section::set_must_sort_attached_input_sections): New
16197 function.
16198 (class Output_section): Declare Input_section_sort_entry. Define
16199 Input_section_sort_compare. Declare
16200 sort_attached_input_sections. Add new fields:
16201 may_sort_attached_input_sections_,
16202 must_sort_attached_input_sections_,
16203 attached_input_sections_are_sorted_.
16204 * output.cc (Output_section::Output_section): Initialize new
16205 fields.
16206 (Output_section::add_input_section): Add an entry to
16207 input_sections_ if may_sort or must_sort are true.
16208 (Output_section::set_final_data_size): Call
16209 sort_attached_input_sections if necessary.
16210 (Output_section::Input_section_sort_entry): Define new class.
16211 (Output_section::Input_section_sort_compare::operator()): New
16212 function.
16213 (Output_section::sort_attached_input_sections): New function.
16214 * configure.ac: Check whether the compiler supports constructor
16215 priorities. Define a CONSTRUCTOR_PRIORITY automake conditional.
16216 * testsuite/initpri1.c: New file.
16217 * testsuite/Makefile.am (check_PROGRAMS): Add initpri1 if
16218 CONSTRUCTOR_PRIORITY.
16219 (initpri1_SOURCES, initpri1_DEPENDENCIES): New variables.
16220 (initpri1_LDFLAGS): New variable.
16221 * configure, Makefile.in, testsuite/Makefile.in: Rebuild.
16222
18e6b24e
ILT
162232008-03-27 Ian Lance Taylor <iant@google.com>
16224
49bdd526
ILT
16225 * common.cc (Sort_commons::operator): Correct sorting algorithm.
16226 * testsuite/common_test_1.c: New file.
16227 * testsuite/Makefile.am (check_PROGRAMS): Add common_test_1.
16228 (common_test_1_SOURCES): New variable.
16229 (common_test_1_DEPENDENCIES): New variable.
16230 (common_test_1_LDFLAGS): New variable.
16231
18e6b24e
ILT
16232 * symtab.cc (Symbol_table::add_from_object): Handle saw_undefined_
16233 and commons_ correctly when NAME/VERSION does not override
16234 NAME/NULL.
16235 * testsuite/ver_test_6.c: New file.
16236 * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_6
16237 (ver_test_6_SOURCES, ver_test_6_DEPENDENCIES): New variables.
16238 (ver_test_6_LDFLAGS, ver_test_6_LDADD): New variables.
16239
04bf7072
ILT
162402008-03-26 Ian Lance Taylor <iant@google.com>
16241
5871526f
ILT
16242 * symtab.cc (Symbol_table::add_from_relobj): Don't set the version
16243 of an undefined symbol from a version script.
16244 * testsuite/Makefile.am (ver_test_5.so): New target.
16245 (ver_test_5.o): New target.
16246 (check_SCRIPTS): Add ver_test_5.sh.
16247 (check_DATA): Add ver_test_5.syms.
16248 (ver_test_5.syms): New target.
16249 * testsuite/ver_test_5.cc: New file.
16250 * testsuite/ver_test_5.script: New file.
16251 * testsuite/ver_test_5.sh: New file.
16252 * Makefile.in, testsuite/Makefile.in: Rebuild.
16253
04bf7072
ILT
16254 PR gold/5986
16255 Fix problems building gold with gcc 4.3.0.
16256 * gold.h (TEMPLATE_ATTRIBUTE_PRINTF_4): Define.
16257 (gold_error_at_location, gold_warning_at_location): Use it.
16258 * configure.ac: Check whether we can compile and use a template
16259 function with a printf attribute.
16260 * x86_64.cc (Target_x86_64::do_code_fill): Swap out a 32-bit value
16261 when jumping over bytes.
16262 * object.cc: Instantiate Object::read_section_data.
16263 * debug.h: Include <cstring>
16264 * dwarf_reader.cc: Include <algorithm>
16265 * main.cc: Include <cstring>.
16266 * options.cc: Include <cstring>.
16267 * output.cc: Include <cstring>.
16268 * script.cc: Include <cstring>.
16269 * script.h: Include <string>.
16270 * symtab.cc: Include <cstring> and <algorithm>.
16271 * target-select.cc: Include <cstring>.
16272 * version.cc: Include <string>.
16273 * testsuite/testmain.cc: Include <cstdlib>.
16274 * configure, config.in: Rebuild.
16275
874c5b28
ILT
162762008-03-25 Ian Lance Taylor <iant@google.com>
16277
819d6c3a
ILT
16278 * options.cc: Include "../bfd/bfdver.h".
16279 (options::help): Print bug reporting address.
16280
f4b2c6f5
ILT
16281 * version.cc (print_version): Adjust output for current value of
16282 BFD_VERSION_STRING.
16283
16284 * NEWS: New file.
16285
e96caa79
ILT
16286 * options.cc (options::help): Print list of supported targets.
16287 * target-select.h: Include <vector>.
16288 (class Target_selector): Make machine_, size_, and is_big_endian_
16289 fields const. Add bfd_name_ and instantiated_target_ fields.
16290 (Target_selector::Target_selector): Add bfd_name parameter.
16291 (Target_selector::recognize): Make non-virtual, call
16292 do_recognize.
16293 (Target_selector::recognize_by_name): Make non-virtual, call
16294 do_recognize_by_name.
16295 (Target_selector::supported_names): New function.
16296 (Target_selector::bfd_name): New function.
16297 (Target_selector::do_instantiate_target): New pure virtual
16298 function.
16299 (Target_selector::do_recognize): New virtual function.
16300 (Target_selector::do_recognize_by_name): New virtual function.
16301 (Target_selector::instantiate_target): New private function.
16302 (supported_target_names): Declare.
16303 * target-select.cc (Target_selector::Target_selector): Update for
16304 new parameter and fields.
16305 (select_target_by_name): Check that the name matches before
16306 calling recognize_by_name.
16307 (supported_target_names): New function.
16308 * i386.cc (class Target_selector_i386): Update Target_selector
16309 constructor call. Remove recognize and recognize_by_name. Add
16310 do_instantiate_target.
16311 * x86_64.cc (class Target_selector_x86_64): Likewise.
16312 * testsuite/testfile.cc (class Target_selector_test): Update for
16313 changes to Target_selector.
16314
874c5b28
ILT
16315 * README: Rewrite, with some notes on unsupported features.
16316
0a65a3a7
CC
163172008-03-24 Cary Coutant <ccoutant@google.com>
16318
16319 * i386.cc (Target_i386::Got_type): New enum declaration.
16320 (Target_i386::Scan::local): Updated callers of Output_data_got
16321 member functions.
16322 (Target_i386::Scan::global): Likewise.
16323 (Target_i386::Relocate::relocate): Likewise.
16324 (Target_i386::Relocate::relocate_tls): Likewise.
16325 * object.h (Got_offset_list): New class.
16326 (Sized_relobj::local_has_got_offset): Added got_type parameter.
16327 (Sized_relobj::local_got_offset): Likewise.
16328 (Sized_relobj::set_local_got_offset): Likewise.
16329 (Sized_relobj::local_has_tls_got_offset): Removed.
16330 (Sized_relobj::local_tls_got_offset): Removed.
16331 (Sized_relobj::set_local_tls_got_offset): Removed.
16332 (Sized_relobj::Local_got_offsets): Changed to store a list of offsets.
16333 * output.cc (Output_data_got::add_global): Added got_type parameter.
16334 (Output_data_got::add_global_with_rel): Likewise.
16335 (Output_data_got::add_global_with_rela): Likewise.
16336 (Output_data_got::add_global_pair_with_rel): New function.
16337 (Output_data_got::add_global_pair_with_rela): New function.
16338 (Output_data_got::add_local): Added got_type parameter.
16339 (Output_data_got::add_local_with_rel): Likewise.
16340 (Output_data_got::add_local_with_rela): Likewise.
16341 (Output_data_got::add_local_pair_with_rel): New function.
16342 (Output_data_got::add_local_pair_with_rela): New function.
16343 (Output_data_got::add_global_tls): Removed.
16344 (Output_data_got::add_global_tls_with_rel): Removed.
16345 (Output_data_got::add_global_tls_with_rela): Removed.
16346 (Output_data_got::add_local_tls): Removed.
16347 (Output_data_got::add_local_tls_with_rel): Removed.
16348 (Output_data_got::add_local_tls_with_rela): Removed.
16349 * output.h (Output_data_got::add_global): Added got_type parameter.
16350 (Output_data_got::add_global_with_rel): Likewise.
16351 (Output_data_got::add_global_with_rela): Likewise.
16352 (Output_data_got::add_global_pair_with_rel): New function.
16353 (Output_data_got::add_global_pair_with_rela): New function.
16354 (Output_data_got::add_local): Added got_type parameter.
16355 (Output_data_got::add_local_with_rel): Likewise.
16356 (Output_data_got::add_local_with_rela): Likewise.
16357 (Output_data_got::add_local_pair_with_rel): New function.
16358 (Output_data_got::add_local_pair_with_rela): New function.
16359 (Output_data_got::add_global_tls): Removed.
16360 (Output_data_got::add_global_tls_with_rel): Removed.
16361 (Output_data_got::add_global_tls_with_rela): Removed.
16362 (Output_data_got::add_local_tls): Removed.
16363 (Output_data_got::add_local_tls_with_rel): Removed.
16364 (Output_data_got::add_local_tls_with_rela): Removed.
16365 * resolve.cc (Symbol::override_base_with_special): Removed
16366 reference to has_got_offset_ field.
16367 * symtab.cc (Symbol::init_fields): Replaced initialization
16368 of got_offset_ with got_offsets_. Removed initialization
16369 of has_got_offset_
53fcba31 16370 * symtab.h (Symbol::has_got_offset): Aded got_type parameter.
0a65a3a7
CC
16371 (Symbol::got_offset): Likewise.
16372 (Symbol::set_got_offset): Likewise.
16373 (Symbol::has_tls_got_offset): Removed.
16374 (Symbol::tls_got_offset): Removed.
16375 (Symbol::set_tls_got_offset): Removed.
16376 (Symbol::got_offset_): Removed.
16377 (Symbol::tls_mod_got_offset_): Removed.
16378 (Symbol::tls_pair_got_offset_): Removed.
16379 (Symbol::got_offsets_): New field.
16380 (Symbol::has_got_offset): Removed.
16381 (Symbol::has_tls_mod_got_offset): Removed.
16382 (Symbol::has_tls_pair_got_offset): Removed.
16383 * x86_64.cc (Target_x86_64::Got_type): New enum declaration.
16384 (Target_x86_64::Scan::local): Updated callers of Output_data_got
16385 member functions.
16386 (Target_x86_64::Scan::global): Likewise.
16387 (Target_x86_64::Relocate::relocate): Likewise.
16388 (Target_x86_64::Relocate::relocate_tls): Likewise.
16389
bd52eafb
BE
163902008-03-25 Ben Elliston <bje@au.ibm.com>
16391
16392 * yyscript.y: Fix spelling error in comment.
16393
8b105e34
ILT
163942008-03-24 Ian Lance Taylor <iant@google.com>
16395
8ed814a9
ILT
16396 * options.h (class General_options): Define build_id option.
16397 * layout.h (class Layout): Declare write_build_id, create_note,
16398 create_build_id. Add build_id_note_ member.
16399 * layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
16400 "libiberty.h", "md5.h", "sha1.h".
16401 (Layout::Layout): Initialize eh_frame_data_,
16402 eh_frame_hdr_section_, and build_id_note_.
16403 (Layout::finalize): Call create_build_id.
16404 (Layout::create_note): New function, broken out of
16405 Layout::create_gold_note.
16406 (Layout::create_gold_note): Call create_note.
16407 (Layout::create_build_id): New function.
16408 (Layout::write_build_id): New function.
16409 (Close_task_runner::run): Call write_build_id.
16410
8b105e34
ILT
16411 * x86_64.cc: Correct license to GPLv3.
16412
086a1841
ILT
164132008-03-23 Ian Lance Taylor <iant@google.com>
16414
16415 * options.cc: Include "demangle.h".
16416 (parse_optional_string): New function.
16417 (parse_long_option): Handle takes_optional_argument.
16418 (parse_short_option): Update dash_z initializer. Handle
16419 takes_optional_argument.
16420 (General_options::General_options): Initialize do_demangle_.
16421 (General_options::finalize): Set do_demangle_. Handle demangling
16422 style.
16423 * options.h (parse_optional_string): Declare.
16424 (struct One_option): Add optional_arg field. Update constructor.
16425 Update call constructor calls. Add takes_optional_argument
16426 function.
16427 (DEFINE_var): Add optional_arg__ parameter. Change all callers.
16428 (DEFINE_optional_string): Define.
16429 (General_options::demangle): Change from DEFINE_bool to
16430 DEFINE_optional_string.
16431 (General_options::no_demangle): New function.
16432 (General_options::do_demangle): New function.
16433 (General_options::set_do_demangle): New function.
16434 (General_options::execstack_status_): Move definition to end of
16435 class definition.
16436 (General_options::static_): Likewise.
16437 (General_options::do_demangle_): New field.
16438 * object.cc (big_endian>::get_symbol_location_info): Call
16439 Options::do_demangle, not Options::demangle.
16440 * symtab.cc (demangle): Likewise.
16441
cbb93e63
ILT
164422008-03-22 Ian Lance Taylor <iant@google.com>
16443
16444 * gold.h: Include <cstddef> and <sys/types.h>
16445 * options.h: Include <cstring>.
16446
ec531623
ILT
164472008-03-21 Ian Lance Taylor <iant@google.com>
16448
16449 * Added source code to GNU binutils.
752937aa 16450\f
4b95cf5c 16451Copyright (C) 2008-2014 Free Software Foundation, Inc.
752937aa
NC
16452
16453Copying and distribution of this file, with or without modification,
16454are permitted in any medium without royalty provided the copyright
16455notice and this notice are preserved.
16456
16457Local Variables:
16458mode: change-log
16459left-margin: 8
16460fill-column: 74
16461version-control: never
16462End:
This page took 1.043705 seconds and 4 git commands to generate.