]>
Commit | Line | Data |
---|---|---|
55455f89 CC |
1 | 2010-08-12 Cary Coutant <[email protected]> |
2 | ||
3 | * common.cc (Sort_commons::operator()): Remove unnecessary code. | |
4 | ||
e2054bcb ILT |
5 | 2010-08-13 Ian Lance Taylor <[email protected]> |
6 | ||
7 | * testsuite/incremental_test_1.c: Add prototype to avoid warning. | |
8 | ||
74f67560 DK |
9 | 2010-08-12 Cary Coutant <[email protected]> |
10 | Doug Kwan <[email protected]> | |
11 | ||
12 | * resolve.cc (Symbol_table::should_override): When a weak dynamic | |
13 | defintion overrides non-weak undef, remember that the original undef | |
14 | is not weak. | |
15 | * symtab.cc (Symbol_table::sized_write_global): For undef without | |
16 | an original weak binding, set binding to global in output. | |
17 | * testsuite/Makefile.am: Add new test strong_ref_weak_def. | |
18 | * testsuite/Makefile.in: Regenerate. | |
19 | * testsuite/strong_ref_weak_def.sh: New file. | |
20 | * testsuite/strong_ref_weak_def_1.c: Ditto. | |
21 | * testsuite/strong_ref_weak_def_2.c: Ditto. | |
22 | ||
d1238d12 CC |
23 | 2010-08-12 Cary Coutant <[email protected]> |
24 | ||
25 | * testsuite/incremental_test.sh: Rewrite. | |
26 | * testsuite/incremental_test_1.c: Rewrite. | |
27 | * testsuite/incremental_test_2.c: Rewrite. | |
28 | ||
0e70b911 CC |
29 | 2010-08-12 Cary Coutant <[email protected]> |
30 | ||
31 | * arm.cc (Target_arm::got_size): Add const. | |
32 | (Target_arm::got_entry_count): New function. | |
33 | (Target_arm::plt_entry_count): New function. | |
34 | (Target_arm::first_plt_entry_offset): New function. | |
35 | (Target_arm::plt_entry_size): New function. | |
36 | (Output_data_plt_arm::entry_count): New function. | |
37 | (Output_data_plt_arm::first_plt_entry_offset): New function. | |
38 | (Output_data_plt_arm::get_plt_entry_size): New function. | |
39 | * i386.cc (Target_i386::got_size): Add const. | |
40 | (Target_i386::got_entry_count): New function. | |
41 | (Target_i386::plt_entry_count): New function. | |
42 | (Target_i386::first_plt_entry_offset): New function. | |
43 | (Target_i386::plt_entry_size): New function. | |
44 | (Output_data_plt_i386::entry_count): New function. | |
45 | (Output_data_plt_i386::first_plt_entry_offset): New function. | |
46 | (Output_data_plt_i386::get_plt_entry_size): New function. | |
47 | * incremental-dump.cc (dump_incremental_inputs): Adjust call to | |
48 | find_incremental_inputs_sections. Dump incremental_got_plt section. | |
49 | * incremental.cc: Include target.h. | |
50 | (Sized_incremental_binary::do_find_incremental_inputs_sections): Add | |
51 | parameter. Adjust all callers. Find incremental_got_plt section. | |
52 | (Incremental_inputs::create_data_sections): Create incremental_got_plt | |
53 | section. | |
54 | (Output_section_incremental_inputs::set_final_data_size): Calculate | |
55 | size of incremental_got_plt section. | |
56 | (Output_section_incremental_inputs::do_write): Write the | |
57 | incremental_got_plt section. | |
58 | (Got_plt_view_info): New struct. | |
59 | (Local_got_offset_visitor): New class. | |
60 | (Global_got_offset_visitor): New class. | |
61 | (Global_symbol_visitor_got_plt): New class. | |
62 | (Output_section_incremental_inputs::write_got_plt): New function. | |
63 | * incremental.h (Incremental_binary::find_incremental_inputs_sections): | |
64 | Add parameter. Adjust all callers. | |
65 | (Incremental_binary::do_find_incremental_inputs_sections): Likewise. | |
66 | (Incremental_inputs::got_plt_section): New function. | |
67 | (Incremental_inputs::got_plt_section_): New data member. | |
68 | (Incremental_got_plt_reader): New class. | |
69 | * layout.cc (Layout::create_incremental_info_sections): Add the | |
70 | incremental_got_plt section. | |
71 | * object.h (Got_offset_list::get_list): New function. | |
72 | (Got offset_list::for_all_got_offsets): New function. | |
73 | (Sized_relobj::local_got_offset_list): New function. | |
74 | * powerpc.cc (Target_powerpc::got_size): Add const. | |
75 | (Target_powerpc::got_entry_count): New function. | |
76 | (Target_powerpc::plt_entry_count): New function. | |
77 | (Target_powerpc::first_plt_entry_offset): New function. | |
78 | (Target_powerpc::plt_entry_size): New function. | |
79 | (Output_data_plt_powerpc::entry_count): New function. | |
80 | (Output_data_plt_powerpc::first_plt_entry_offset): New function. | |
81 | (Output_data_plt_powerpc::get_plt_entry_size): New function. | |
82 | * sparc.cc (Target_sparc::got_size): Add const. | |
83 | (Target_sparc::got_entry_count): New function. | |
84 | (Target_sparc::plt_entry_count): New function. | |
85 | (Target_sparc::first_plt_entry_offset): New function. | |
86 | (Target_sparc::plt_entry_size): New function. | |
87 | (Output_data_plt_sparc::entry_count): New function. | |
88 | (Output_data_plt_sparc::first_plt_entry_offset): New function. | |
89 | (Output_data_plt_sparc::get_plt_entry_size): New function. | |
90 | * symtab.h (Symbol::got_offset_list): New function. | |
91 | (Symbol_table::for_all_symbols): New function. | |
92 | * target.h (Sized_target::got_entry_count): New function. | |
93 | (Sized_target::plt_entry_count): New function. | |
94 | (Sized_target::plt_entry_size): New function. | |
95 | * x86_64.cc (Target_x86_64::got_size): Add const. | |
96 | (Target_x86_64::got_entry_count): New function. | |
97 | (Target_x86_64::plt_entry_count): New function. | |
98 | (Target_x86_64::first_plt_entry_offset): New function. | |
99 | (Target_x86_64::plt_entry_size): New function. | |
100 | (Output_data_plt_x86_64::entry_count): New function. | |
101 | (Output_data_plt_x86_64::first_plt_entry_offset): New function. | |
102 | (Output_data_plt_x86_64::get_plt_entry_size): New function. | |
103 | ||
09ec0418 CC |
104 | 2010-08-12 Cary Coutant <[email protected]> |
105 | ||
106 | * archive.cc: Include incremental.h. | |
107 | (Archive::Archive): Initialize incremental_info_. | |
108 | (Archive::include_member): Record archive members in incremental info. | |
109 | (Add_archive_symbols::run): Record begin and end of an archive in | |
110 | incremental info. | |
111 | (Lib_group::include_member): Record objects in incremental info. | |
112 | * archive.h (Incremental_archive_entry): Forward declaration. | |
113 | (Archive::set_incremental_info): New member function. | |
114 | (Archive::incremental_info): New member function. | |
115 | (Archive::Unused_symbol_iterator): New class. | |
116 | (Archive::unused_symbols_begin): New member function. | |
117 | (Archive::unused_symbols_end): New member function. | |
118 | (Archive::incremental_info_): New data member. | |
119 | * incremental-dump.cc (find_input_containing_global): New function. | |
120 | (dump_incremental_inputs): Dump new incremental info sections. | |
121 | * incremental.cc: Include symtab.h. | |
122 | (Output_section_incremental_inputs): New class. | |
123 | (Sized_incremental_binary::do_find_incremental_inputs_sections): Support | |
124 | new incremental info sections. | |
125 | (Sized_incremental_binary::do_check_inputs): Likewise. | |
126 | (Incremental_inputs::report_archive): Remove. | |
127 | (Incremental_inputs::report_archive_begin): New function. | |
128 | (Incremental_inputs::report_archive_end): New function. | |
129 | (Incremental_inputs::report_object): New function. | |
130 | (Incremental_inputs::finalize_inputs): Remove. | |
131 | (Incremental_inputs::report_input_section): New function. | |
132 | (Incremental_inputs::report_script): Rewrite. | |
133 | (Incremental_inputs::finalize): Do nothing but finalize string table. | |
134 | (Incremental_inputs::create_incremental_inputs_section_data): Remove. | |
135 | (Incremental_inputs::sized_create_inputs_section_data): Remove. | |
136 | (Incremental_inputs::create_data_sections): New function. | |
137 | (Incremental_inputs::relocs_entsize): New function. | |
138 | (Output_section_incremental_inputs::set_final_data_size): New function. | |
139 | (Output_section_incremental_inputs::do_write): New function. | |
140 | (Output_section_incremental_inputs::write_header): New function. | |
141 | (Output_section_incremental_inputs::write_input_files): New function. | |
142 | (Output_section_incremental_inputs::write_info_blocks): New function. | |
143 | (Output_section_incremental_inputs::write_symtab): New function. | |
144 | * incremental.h (Incremental_script_entry): Forward declaration. | |
145 | (Incremental_object_entry): Forward declaration. | |
146 | (Incremental_archive_entry): Forward declaration. | |
147 | (Incremental_inputs): Forward declaration. | |
148 | (Incremental_inputs_header_data): Remove. | |
149 | (Incremental_inputs_header): Remove. | |
150 | (Incremental_inputs_header_write): Remove. | |
151 | (Incremental_inputs_entry_data): Remove. | |
152 | (Incremental_inputs_entry): Remove. | |
153 | (Incremental_inputs_entry_write): Remove. | |
154 | (enum Incremental_input_type): Add INCREMENTAL_INPUT_ARCHIVE_MEMBER. | |
155 | (Incremental_binary::find_incremental_inputs_sections): Add parameters. | |
156 | (Incremental_binary::do_find_incremental_inputs_sections): Likewise. | |
157 | (Sized_ncremental_binary::do_find_incremental_inputs_sections): | |
158 | Likewise. | |
159 | (Incremental_input_entry): New class. | |
160 | (Incremental_script_entry): New class. | |
161 | (Incremental_object_entry): New class. | |
162 | (Incremental_archive_entry): New class. | |
163 | (Incremental_inputs::Incremental_inputs): Initialize new data members. | |
164 | (Incremental_inputs::report_inputs): Remove. | |
165 | (Incremental_inputs::report_archive): Remove. | |
166 | (Incremental_inputs::report_archive_begin): New function. | |
167 | (Incremental_inputs::report_archive_end): New function. | |
168 | (Incremental_inputs::report_object): Change prototype. | |
169 | (Incremental_inputs::report_input_section): New function. | |
170 | (Incremental_inputs::report_script): Change prototype. | |
171 | (Incremental_inputs::get_reloc_count): New function. | |
172 | (Incremental_inputs::set_reloc_count): New function. | |
173 | (Incremental_inputs::create_data_sections): New function. | |
174 | (Incremental_inputs::create_incremental_inputs_section_data): Remove. | |
175 | (Incremental_inputs::inputs_section): New function. | |
176 | (Incremental_inputs::symtab_section): New function. | |
177 | (Incremental_inputs::relocs_section): New function. | |
178 | (Incremental_inputs::get_stringpool): Add const. | |
179 | (Incremental_inputs::command_line): Add const. | |
180 | (Incremental_inputs::inputs): Remove. | |
181 | (Incremental_inputs::command_line_key): New function. | |
182 | (Incremental_inputs::input_file_count): New function. | |
183 | (Incremental_inputs::input_files): New function. | |
184 | (Incremental_inputs::relocs_entsize): New function. | |
185 | (Incremental_inputs::sized_create_inputs_section_data): Remove. | |
186 | (Incremental_inputs::finalize_inputs): Remove. | |
187 | (Incremental_inputs::Input_info): Remove. | |
188 | (Incremental_inputs::lock_): Remove. | |
189 | (Incremental_inputs::inputs_): Change type. | |
190 | (Incremental_inputs::inputs_map_): Remove. | |
191 | (Incremental_inputs::current_object_entry_): New data member. | |
192 | (Incremental_inputs::inputs_section_): New data member. | |
193 | (Incremental_inputs::symtab_section_): New data member. | |
194 | (Incremental_inputs::relocs_section_): New data member. | |
195 | (Incremental_inputs::reloc_count_): New data member. | |
196 | (Incremental_inputs_reader): New class. | |
197 | (Incremental_symtab_reader): New class. | |
198 | (Incremental_relocs_reader): New class. | |
199 | * layout.cc (Layout::finalize): Move finalization of incremental info | |
200 | and creation of incremental info sections to follow finalization of | |
201 | symbol table. Set offsets for postprocessing sections. | |
202 | (Layout::create_incremental_info_sections): Call | |
203 | Incremental_inputs::create_data_sections. Add incremental symtab | |
204 | and relocs sections. Set sh_entsize and sh_link fields. Arrange for | |
205 | sections to layout after input sections. | |
206 | * layout.h (struct Timespec): Forward declaration. | |
207 | (Layout::incremental_inputs): Add const. | |
208 | (Layout::create_incremental_info_sections): Add parameter. | |
209 | * main.cc (main): Remove call to Incremental_inputs::report_inputs. | |
210 | * object.cc: Include incremental.h. | |
211 | (Relobj::finalize_incremental_relocs): New function. | |
212 | (Sized_relobj::do_layout): Record input sections in incremental info. | |
213 | * object.h (Object::output_section): New function. | |
214 | (Object::output_section_offset): Moved from Relobj. | |
215 | (Object::get_incremental_reloc_base): New function. | |
216 | (Object::get_incremental_reloc_count): New function. | |
217 | (Object::do_output_section): New function. | |
218 | (Object::do_output_section_offset): Moved from Relobj. | |
219 | (Object::do_get_incremental_reloc_base): New function. | |
220 | (Object::do_get_incremental_reloc_count): New function. | |
221 | (Object::Object): Initialize new data members. | |
222 | (Relobj::output_section): Renamed do_output_section and moved to | |
223 | protected. | |
224 | (Relobj::output_section_offset): Moved to Object. | |
225 | (Relobj::do_get_incremental_reloc_base): New function. | |
226 | (Relobj::do_get_incremental_reloc_count): New function. | |
227 | (Relobj::allocate_incremental_reloc_counts): New function. | |
228 | (Relobj::count_incremental_reloc): New function. | |
229 | (Relobj::finalize_incremental_relocs): New function. | |
230 | (Relobj::next_incremental_reloc_index): New function. | |
231 | (Relobj::reloc_counts_): New data member. | |
232 | (Relobj::reloc_bases_): New data member. | |
233 | (Sized_relobj::do_relocate_sections): Add parameter. Change caller. | |
234 | (Sized_relobj::relocate_sections): Add parameter. Change all callers. | |
235 | (Sized_relobj::incremental_relocs_scan): New function. | |
236 | (Sized_relobj::incremental_relocs_scan_reltype): New function. | |
237 | (Sized_relobj::incremental_relocs_write): New function. | |
238 | (Sized_relobj::incremental_relocs_write_reltype): New function. | |
239 | * plugin.cc (Plugin_manager::add_input_file): Rewrite test for | |
240 | incremental link. | |
241 | * readsyms.cc (Read_symbols::do_read_symbols): Move reporting of | |
242 | archives and object files elsewhere. | |
243 | (Add_symbols::run): Report object files here. | |
244 | (Finish_group::run): Report end of archive at end of group. | |
245 | * reloc.cc: Include layout.h, incremental.h. | |
246 | (Sized_relobj::do_read_relocs): Need relocations for incremental link. | |
247 | (Sized_relobj::do_scan_relocs): Record relocations for incremental link. | |
248 | (Sized_relobj::incremental_relocs_scan): New function. | |
249 | (Sized_relobj::incremental_relocs_scan_reltype): New function. | |
250 | (Sized_relobj::do_relocate_sections): Write incremental relocations. | |
251 | (Sized_relobj::incremental_relocs_write): New function. | |
252 | (Sized_relobj::incremental_relocs_write_reltype): New function. | |
253 | * script.cc (read_input_script): Rewrite test for incremental link. | |
254 | Change call to Incremental_inputs::report_script. | |
255 | * symtab.h (Symbol_table::first_global_index): New function. | |
256 | (Symbol_table::output_count): New function. | |
257 | ||
ce0d1972 DK |
258 | 2010-08-12 Doug Kwan <[email protected]> |
259 | ||
260 | * arm.cc (Target_arm::merge_object_attributes): Check command line | |
261 | options --no-wchar-size-warning and --no-enum-size-warning. | |
262 | * options.h (General_options): Add ld-compatible options | |
263 | --no-enum-size-warning and --no-wchar-size-warning. | |
264 | ||
6e5710ce ILT |
265 | 2010-08-04 Ian Lance Taylor <[email protected]> |
266 | ||
267 | * x86_64.cc (Target_x86_64::Scan::local): Use | |
268 | R_X86_64_GNU_VTINHERIT instead of R_386_GNU_VTINHERIT and | |
269 | R_X86_64_GNU_VTENTRY instead of R_386_GNU_VTENTRY. | |
270 | (Target_x86_64::Scan::global): Likewise. | |
271 | (Target_x86_64::Relocate::relocate): Likewise. | |
272 | (Target_x86_64::Relocatable_size_for_reloc::get_size_for_reloc): | |
273 | Likewise. | |
274 | ||
fef830db CC |
275 | 2010-08-03 Cary Coutant <[email protected]> |
276 | ||
277 | * merge.cc (Output_merge_string::do_add_input_section): Count strings | |
278 | to reserve space in merged_strings vector. Keep total input size | |
279 | for stats. | |
280 | (Output_merge_string::do_print_merge_stats): Print total input size. | |
281 | * merge.h (Output_merge_string): Add input_size_ field. | |
282 | * stringpool.cc (Stringpool_template::string_length): Move | |
283 | implementations out of Stringpool_template class and place in | |
284 | stringpool.h. | |
285 | * stringpool.h (string_length): Move out of Stringpool_template. | |
286 | ||
1e3811b0 ILT |
287 | 2010-08-03 Ian Lance Taylor <[email protected]> |
288 | ||
289 | PR 11712 | |
290 | * layout.cc (relaxation_loop_body): If address of load segment is | |
291 | set, adjust address to include headers if possible. | |
292 | ||
7af0c620 ILT |
293 | 2010-08-03 Ian Lance Taylor <[email protected]> |
294 | ||
295 | * version.cc (version_string): Bump to 1.10. | |
296 | ||
22f0da72 ILT |
297 | 2010-08-03 Ian Lance Taylor <[email protected]> |
298 | ||
299 | PR 11805 | |
300 | * layout.h (enum Output_section_order): Define. | |
301 | (class Layout): Update declarations. | |
302 | * layout.cc (Layout::get_output_section): Add order parameter. | |
303 | Remove is_interp, is_dynamic_linker_section, is_last_relro, and | |
304 | is_first_non_relro parameters. Change all callers. | |
305 | (Layout::choose_output_section): Likewise. | |
306 | (Layout::add_output_section_data): Likewise. | |
307 | (Layout::make_output_section): Likewise. Set order. | |
308 | (Layout::default_section_order): New function. | |
309 | (Layout::layout_eh_frame): Call add_output_section_to_nonload. | |
310 | * output.cc (Output_section::Output_section): Initialize order_. | |
311 | Don't initialize deleted fields. | |
312 | (Output_segment::Output_segment): Don't initialize deleted | |
313 | fields. | |
314 | (Output_segment::add_output_section_to_load): New function | |
315 | replacing add_output_section. Change all callers to call this or | |
316 | add_output_section_to_nonload. | |
317 | (Output_segment::add_output_section_to_nonload): New function. | |
318 | (Output_segment::remove_output_section): Rewrite. | |
319 | (Output_segment::add_initial_output_data): Likewise. | |
320 | (Output_segment::has_any_data_sections): Likewise. | |
321 | (Output_segment::is_first_section_relro): Likewise. | |
322 | (Output_segment::maximum_alignment): Likewise. | |
323 | (Output_segment::has_dynamic_reloc): New function replacing | |
324 | dynamic_reloc_count. Change all callers. | |
325 | (Output_segment::has_dynamic_reloc_list): New function replacing | |
326 | dynamic_reloc_count_list. Change all callers. | |
327 | (Output_segment::set_section_addresses): Rewrite. | |
328 | (Output_segment::set_offset): Rewrite. | |
329 | (Output_segment::find_first_and_last_list): Remove. | |
330 | (Output_segment::set_tls_offsets): Rewrite. | |
331 | (Output_segment::first_section_load_address): Likewise. | |
332 | (Output_segment::output_section_count): Likewise. | |
333 | (Output_segment::section_with_lowest_load_address): Likewise. | |
334 | (Output_segment::write_section_headers): Likewise. | |
335 | (Output_segment::print_sections_to_map): Likewise. | |
336 | * output.h (class Output_data): Remove dynamic_reloc_count_ | |
337 | field. Add has_dynamic_reloc_ field. Make bools into bitfields. | |
338 | (Output_data::add_dynamic_reloc): Rewrite. | |
339 | (Output_data::has_dynamic_reloc): New function. | |
340 | (Output_data::dynamic_reloc_count): Remove. | |
341 | (class Output_section): Add order_ field. Remvoe is_relro_local_, | |
342 | is_last_relro_, is_first_non_relro_, is_interp_, | |
343 | is_dynamic_linker_section_ fields. Add order and set_order | |
344 | functions. Remove is_relro_local, set_is_relro_local, | |
345 | is_last_relro, set_is_last_relro, is_first_non_relro, | |
346 | set_is_first_non_relro functions, is_interp, set_is_interp, | |
347 | is_dynamic_linker_section, and set_is_dynamic_linker_section | |
348 | functions. | |
349 | (class Output_segment): Change Output_data_list from std::list to | |
350 | std:;vector. Add output_lists_ field. Remove output_data_ and | |
351 | output_bss_ fields. Update declarations. | |
352 | ||
3ff2ccb0 ILT |
353 | 2010-08-02 Ian Lance Taylor <[email protected]> |
354 | ||
355 | * arm.cc (Target_arm::gc_process_relocs): Use typename. | |
356 | * powerpc.cc (Target_powerpc::gc_process_relocs): Likewise. | |
357 | * sparc.cc (Target_sparc::gc_process_relocs): Likewise. | |
358 | ||
88a4108b ILT |
359 | 2010-08-02 Ian Lance Taylor <[email protected]> |
360 | ||
361 | PR 11855 | |
362 | * script.cc (Script_options::Script_options): Initialize | |
363 | symbol_definitions_ and symbol_references_. | |
364 | (Script_options::add_symbol_assignment): Update | |
365 | symbol_definitions_ and symbol_references_. | |
366 | (Script_options::add_symbol_reference): New function. | |
367 | (script_symbol): New function. | |
368 | * script.h (class Script_options): Add symbol_definitions_ and | |
369 | symbol_references_ fields. | |
370 | (Script_options::referenced_const_iterator): New type. | |
371 | (Script_options::referenced_begin): New function. | |
372 | (Script_options::referenced_end): New function. | |
373 | (Script_options::is_referenced): New function. | |
374 | (Script_options::any_unreferenced): New function. | |
375 | * script-c.h (script_symbol): Declare. | |
376 | * yyscript.y (exp): Call script_symbol. | |
377 | * symtab.cc: Include "script.h". | |
378 | (Symbol_table::gc_mark_undef_symbols): Add layout parameter. | |
379 | Change all callers. Check symbols referenced by scripts. | |
380 | (Symbol_table::add_undefined_symbols_from_command_line): Add | |
381 | layout parameter. Change all callers. | |
382 | (Symbol_table::do_add_undefined_symbols_from_command_line): | |
383 | Likewise. Break out loop body. Check symbols referenced by | |
384 | scripts. | |
385 | (Symbol_table::add_undefined_symbol_from_command_line): New | |
386 | function broken out of | |
387 | do_add_undefined_symbols_from_command_line. | |
388 | * symtab.h (class Symbol_table): Update declarations. | |
389 | * archive.cc: Include "layout.h". | |
390 | (Archive::should_include_member): Add layout parameter. Change | |
391 | all callers. Check for symbol mentioned in expression. | |
392 | * archive.h (class Archive): Update declaration. | |
393 | * object.cc (Sized_relobj::do_should_include_member): Add layout | |
394 | parameter. | |
395 | * object.h (Object::should_include_member): Add layout parameter. | |
396 | Change all callers. | |
397 | (Object::do_should_include_member): Add layout parameter. | |
398 | (class Sized_relobj): Update declaration. | |
399 | * dynobj.cc (Sized_dynobj::do_should_include_member): Add layout | |
400 | parameter. | |
401 | * dynobj.h (class Sized_dynobj): Update declaration. | |
402 | * plugin.cc (Sized_pluginobj::do_should_include_member): Add | |
403 | layout parameter. | |
404 | * plugin.h (class Sized_pluginobj): Update declaration. | |
405 | ||
5f1ab67a ILT |
406 | 2010-08-02 Ian Lance Taylor <[email protected]> |
407 | ||
408 | PR 11866 | |
409 | * output.cc (Output_segment::set_offset): Search for the first and | |
410 | last sections rather than assuming that the list is in order. | |
411 | (Output_segment::find_first_and_last_list): New function. | |
412 | * output.h (class Output_segment): Update declarations. | |
413 | * testsuite/Makefile.am (check_PROGRAMS): Add relro_strip_test. | |
414 | (relro_strip_test_SOURCES): New variable. | |
415 | (relro_strip_test_DEPENDENCIES): New variable. | |
416 | (relro_strip_test_LDFLAGS): New variable. | |
417 | (relro_strip_test_LDADD): New variable. | |
418 | (relro_strip_test.so): New target. | |
419 | ||
a8df5856 ILT |
420 | 2010-08-02 Ian Lance Taylor <[email protected]> |
421 | ||
422 | * i386.cc (class Target_i386): Add got_tlsdesc_ field. | |
423 | (Target_i386::Target_i386):: Initialize got_tlsdesc_. | |
424 | (Target_i386::got_tlsdesc_section): New function. | |
425 | (Target_i386::got_section): Create space for GOT entries for | |
426 | TLSDESC relocations. | |
427 | (Target_i386::Scan::local): Use TLSDESC GOT for unoptimized | |
428 | R_386_TLS_GOTDESC. | |
429 | (Target_i386::Scan::global): Likewise. | |
430 | (Target_i386::Relocate::relocate_tls): Adjust GOT offset when | |
431 | using TLSDESC GOT. | |
432 | * x86_64.cc (class Target_x86_64): Add got_tlsdesc_ field. | |
433 | (Target_x86_64::Target_x86_64):: Initialize got_tlsdesc_. | |
434 | (Target_x86_64::got_tlsdesc_section): New function. | |
435 | (Target_x86_64::got_section): Create space for GOT entries for | |
436 | TLSDESC relocations. | |
437 | (Target_x86_64::Scan::local): Use TLSDESC GOT for unoptimized | |
438 | R_386_TLS_GOTDESC. | |
439 | (Target_x86_64::Scan::global): Likewise. | |
440 | (Target_x86_64::Relocate::relocate_tls): Adjust GOT offset when | |
441 | using TLSDESC GOT. | |
442 | ||
0c10a0a6 ILT |
443 | 2010-08-02 Ian Lance Taylor <[email protected]> |
444 | ||
445 | * testsuite/final_layout.sh: Use dc to convert from hex to | |
446 | decimal. | |
447 | ||
41cbeecc ST |
448 | 2010-07-29 Sriraman Tallam <[email protected]> |
449 | ||
450 | * arm.cc (Target_arm<big_endian>::gc_process_relocs): Add template | |
451 | paramter to the call to gold::gc_process_relocs. | |
452 | * i386.cc (Target_i386<big_endian>::gc_process_relocs): Add template | |
453 | paramter to the call to gold::gc_process_relocs. | |
454 | * x86_64.cc (Target_x86_64<big_endian>::gc_process_relocs): Add template | |
455 | parameter to the call to gold::gc_process_relocs. | |
456 | * powerpc.cc (Target_powerpc<big_endian>::gc_process_relocs): Add | |
457 | template parameter to the call to gold::gc_process_relocs. | |
458 | * sparc.cc (Target_sparc<big_endian>::gc_process_relocs): Add template | |
459 | paramter to the call to gold::gc_process_relocs. | |
460 | * gc.h (get_embedded_addend_size): New function. | |
461 | (gc_process_relocs): Save the size of the reloc for use by ICF. | |
462 | * icf.cc (get_section_contents): Get the addend from the text section | |
463 | for SHT_REL relocation sections. | |
464 | * icf.h (Icf::Reloc_addend_size_info): New typedef. | |
465 | (Icf::Reloc_info): Add new member reloc_addend_size_info. | |
466 | * int_encoding.h (read_from_pointer): New overloaded function. | |
467 | * testsuite/Makefile.am (icf_sht_rel_addend_test): New test. | |
468 | * testsuite/icf_sht_rel_addend_test.sh: New file. | |
469 | * testsuite/icf_sht_rel_addend_test_1.cc: New file. | |
470 | * testsuite/icf_sht_rel_addend_test_2.cc: New file. | |
471 | ||
6ea55b82 RW |
472 | 2010-07-28 Ralf Wildenhues <[email protected]> |
473 | ||
474 | * configure.ac (AM_INIT_AUTOMAKE): Use parallel-tests option. | |
475 | * Makefile.in: Regenerate. | |
476 | * testsuite/Makefile.in: Regenerate. | |
477 | ||
9691462b ILT |
478 | 2010-07-27 Jeffrey Yasskin <[email protected]> |
479 | ||
480 | * testsuite/debug_msg.sh: Test mixed weak/strong symbol behavior. | |
481 | * gold/testsuite/debug_msg.cc: Likewise. | |
482 | * gold/testsuite/odr_violation1.cc | |
483 | * gold/testsuite/odr_violation2.cc | |
484 | ||
76897331 CC |
485 | 2010-07-21 Cary Coutant <[email protected]> |
486 | ||
487 | * merge.h (Output_merge_string::Merged_string): Remove object, shndx, | |
488 | string, and length fields. | |
489 | (Output_merge_string::Merged_strings_list): New type. | |
490 | (Output_merge_string::Merged_strings_lists): New typedef. | |
491 | (Output_merge_string): Replace merged_strings_ with | |
492 | merged_strings_lists_. | |
493 | * merge.cc (Output_merge_string::do_add_input_section): Allocate new | |
494 | Merged_strings_list per input object and section. Don't store pointer | |
495 | to the string. Don't store length with each merged string entry. | |
496 | (Output_merge_string::finalize_merged_data): Loop over list of merged | |
497 | strings lists. Recompute length of each merged string. | |
498 | ||
78384e8f CC |
499 | 2010-07-15 Cary Coutant <[email protected]> |
500 | ||
501 | * plugin.cc (Plugin_finish::run): Don't call cleanup handlers from | |
502 | here. | |
503 | ||
783659f9 ILT |
504 | 2010-07-14 Ian Lance Taylor <[email protected]> |
505 | ||
506 | * descriptors.cc (Descriptors::open): Report correct name in error | |
507 | message. | |
508 | ||
131687b4 DK |
509 | 2010-07-13 Doug Kwan <[email protected]> |
510 | ||
511 | * arm.cc (Arm_input_section::Arm_input_section): For a | |
512 | SHT_ARM_EXIDX section, always keeps the input sections. | |
513 | (Arm_input_section::set_exidx_section_link): New method. | |
514 | (Arm_exidx_input_section::Arm_exidx_input_section): Initialize | |
515 | has_errors_ to false. | |
516 | (Arm_exidx_input_section::has_errors, | |
517 | Arm_exidx_input_section::set_has_errors): New methods. | |
518 | (Arm_exidx_input_section::has_errors_): New data member. | |
519 | (Arm_relobj::get_exidx_shndx_list): New method. | |
520 | (Arm_output_section::append_text_sections_to_list): Do not skip | |
521 | section without SHF_EXECINSTR. | |
522 | (Arm_output_section::fix_exidx_coverage): Skip input sections with | |
523 | errors. | |
524 | (Arm_relobj::make_exidx_input_section): Add new parameter for text | |
525 | section header. Make error messages more verbose. Check for | |
526 | a non-executable section linked to an EXIDX section. | |
527 | (Arm_relobj::do_read_symbols): Remove error checking, which has been | |
528 | moved to Arm_relobj::make_exidx_input_section. Add an assertion to | |
529 | check that there is no deferred EXIDX section if we exit early. | |
530 | Instead of not making an EXIDX section in case of an error, make one | |
531 | and set the has_errors flag of it. | |
532 | (Target_arm::do_finalize_sections): Fix up links of EXIDX sections | |
533 | in a relocatable link. | |
534 | (Target_arm::do_relax): Look for the EXIDX output section instead of | |
535 | assuming that it is called .ARM.exidx. | |
536 | (Target_arm::fix_exidx_coverage): Add a new parameter for input | |
537 | section list. Do not check for SHF_EXECINSTR section flags but | |
538 | skip any input section with errors. | |
539 | * output.cc (Output_section::Output_section): Initialize | |
540 | always_keeps_input_sections_ to false. | |
541 | (Output_section::add_input_section): Check for | |
542 | always_keeps_input_sections_. | |
543 | * output.h (Output_section::always_keeps_input_sections, | |
544 | Output_section::set_always_keeps_input_sections): New methods. | |
545 | (Output_section::always_keeps_input_sections): New data member. | |
546 | ||
69517287 RÁE |
547 | 2010-07-13 Rafael Espindola <[email protected]> |
548 | ||
549 | * fileread.cc (try_extra_search_path, find_file): Move to Input_file. | |
550 | * fileread.h (Input_file): Add try_extra_search_path and find_file. | |
551 | ||
82742395 ILT |
552 | 2010-07-13 Philip Herron <[email protected]> |
553 | Ian Lance Taylor <[email protected]> | |
554 | ||
555 | * output.h (Output_section_lookup_maps::add_merge_section): | |
556 | Correct check of whether value was inserted. | |
557 | (Output_section_lookup_maps::add_merge_input_section): Likewise. | |
558 | (Output_section_lookup_maps::add_relaxed_input_section): | |
559 | Likewise. | |
560 | * arm.cc (Target_arm::got_section): Remove used local os. | |
561 | * i386.cc (Target_i386::got_section): Likewise. | |
562 | * x86_64.cc (Target_x86_64::got_section): Likewise. | |
563 | * sparc.cc (Target_sparc::got_section): Likewise. | |
564 | (Target_sparc::relocate): Remove unused local have_got_offset. | |
565 | * powerpc.cc (Target_powerpc::relocate): Likewise. | |
566 | ||
f2d707b5 ILT |
567 | 2010-07-13 Ian Lance Taylor <[email protected]> |
568 | ||
241531d6 ILT |
569 | * compressed_output.cc (zlib_decompress): Fix signature in |
570 | !HAVE_ZLIB_H case. | |
571 | ||
f2d707b5 ILT |
572 | * archive.cc (Archive::include_member): Unlock an external member |
573 | of a thin archive. Don't bother to delete an object we know is | |
574 | NULL. | |
575 | ||
a2e47362 CC |
576 | 2010-07-12 Cary Coutant <[email protected]> |
577 | ||
578 | * compressed_output.cc (zlib_decompress): New function. | |
579 | (get_uncompressed_size): New function. | |
580 | (decompress_input_section): New function. | |
581 | * compressed_output.h (get_uncompressed_size): New function. | |
582 | (decompress_input_section): New function. | |
583 | * dwarf_reader.cc (Sized_dwarf_line_info::Sized_dwarf_line_info) | |
584 | Handle compressed debug sections. | |
585 | * layout.cc (is_compressed_debug_section): New function. | |
586 | (Layout::output_section_name): Map compressed section names to | |
587 | canonical names. | |
588 | * layout.h (is_compressed_debug_section): New function. | |
589 | (is_debug_info_section): Recognize compressed debug sections. | |
590 | * merge.cc: Include compressed_output.h. | |
591 | (Output_merge_data::do_add_input_section): Handle compressed | |
592 | debug sections. | |
593 | (Output_merge_string::do_add_input_section): Handle compressed | |
594 | debug sections. | |
595 | * object.cc: Include compressed_output.h. | |
596 | (Sized_relobj::Sized_relobj): Initialize new data members. | |
597 | (build_compressed_section_map): New function. | |
598 | (Sized_relobj::do_read_symbols): Handle compressed debug sections. | |
599 | * object.h (Object::section_is_compressed): New method. | |
600 | (Object::do_section_is_compressed): New method. | |
601 | (Sized_relobj::Compressed_section_map): New type. | |
602 | (Sized_relobj::do_section_is_compressed): New method. | |
603 | (Sized_relobj::compressed_sections_): New data member. | |
604 | * output.cc (Output_section::add_input_section): Handle compressed | |
605 | debug sections. | |
606 | * reloc.cc: Include compressed_output.h. | |
607 | (Sized_relobj::write_sections): Handle compressed debug sections. | |
608 | ||
ce279a62 CC |
609 | 2010-07-08 Cary Coutant <[email protected]> |
610 | ||
611 | * resolve.cc (Symbol_table::resolve): Remember whether undef was | |
612 | weak when resolving to a dynamic def. | |
613 | (Symbol_table::should_override): Add adjust_dyndef flag; set it | |
614 | for weak undef/dynamic def cases. Adjust callers. | |
615 | * symtab.cc (Symbol::init_fields): Initialize undef_binding_set_ and | |
616 | undef_binding_weak_. | |
617 | (Symbol_table::sized_write_globals): Adjust symbol binding. | |
618 | (Symbol_table::sized_write_symbol): Add binding parameter. | |
619 | * symtab.h (Symbol::set_undef_binding): New method. | |
620 | (Symbol::is_undef_binding_weak): New method. | |
621 | (Symbol::undef_binding_set_, Symbol::undef_binding_weak_): New members. | |
622 | (Symbol_table::should_override): Add new parameter. | |
623 | (Symbol_table::sized_write_symbol): Add new parameter. | |
624 | ||
625 | * testsuite/weak_undef_file1.cc: Add new test case. | |
626 | * testsuite/weak_undef_file2.cc: Fix header comment. | |
627 | * testsuite/weak_undef_test.cc: Add new test case. | |
628 | ||
b2286c10 DK |
629 | 2010-06-29 Doug Kwan <[email protected]> |
630 | ||
631 | * arm-reloc-property.cc (Arm_reloc_property::Arm_reloc_property): | |
632 | Initialize USE_SYMBOL_. | |
633 | * arm-reloc-property.h (Arm_reloc_property::uses_symbol): New method | |
634 | definition. | |
635 | (Arm_reloc_property::uses_symbol_): New data member declaration. | |
636 | * arm.cc (Target_arm::Relocate::relocate): Exit early if relocation | |
637 | uses symbol value and symbol is undefined but not weakly undefined. | |
638 | ||
4802450a RÁE |
639 | 2010-06-28 Rafael Espindola <[email protected]> |
640 | ||
641 | * plugin.cc (Plugin::load): Use dlerror. | |
642 | ||
e5ca47ba ILT |
643 | 2010-06-26 Jeffrey Yaskin <[email protected]> |
644 | ||
645 | * symtab.cc (detect_odr_violations): When reporting an ODR | |
646 | violation, report an object where the symbol is defined. | |
647 | ||
8a75a161 DK |
648 | 2010-06-25 Doug Kwan <[email protected]> |
649 | ||
650 | * arm.cc (Target_arm::can_check_for_functions_pointers): Return true. | |
651 | (Target_arm::section_may_have_icf_unsafe_pointers): New method | |
652 | definition. | |
653 | (Target_arm::Scan::local_reloc_may_be_function_pointer, | |
654 | Target_arm::Scan::global_reloc_may_be_function_pointer): Implement | |
655 | target hook to detect function points. | |
656 | (Target_arm::Scan::possible_function_pointer_reloc): New method. | |
657 | * icf.h (Icf::check_section_for_function_pointers): Change type of | |
658 | parameter SECTION_NAME to const reference to std::string. Use | |
659 | target hook to determine if section may have unsafe pointers. | |
660 | * target.h (Target::section_may_have_icf_unsafe_pointers): New | |
661 | method definition. | |
662 | ||
42218b9f RÁE |
663 | 2010-06-21 Rafael Espindola <[email protected]> |
664 | ||
665 | * fileread.cc (Input_file::find_fie): New | |
666 | (Input_file::open): Use Input_file::find_fie. | |
667 | * fileread.h (Input_file::find_fie): New | |
668 | * plugin.cc (set_extra_library_path): New. | |
669 | (Plugin::load): Add set_extra_library_path to the transfer vector. | |
670 | (Plugin_manager::set_extra_library_path): New. | |
671 | (Plugin_manager::add_input_file): Use the extra search path if set. | |
672 | (set_extra_library_path(): New. | |
673 | * plugin.h (Plugin_manager): Add set_extra_library_path and | |
674 | extra_search_path_. | |
675 | ||
a0506cca CC |
676 | 2010-06-19 Cary Coutant <[email protected]> |
677 | ||
678 | * layout.cc (gdb_sections): Add .debug_types. | |
679 | (lines_only_debug_sections): Likewise. | |
680 | ||
6508b958 RÁE |
681 | 2010-06-18 Rafael Espindola <[email protected]> |
682 | ||
683 | * plugin.cc (add_input_file,add_input_library) | |
684 | (Plugin_manager::add_input_file): Make filename arguments const. | |
685 | * plugin.h (Plugin_manager::add_input_file): Make filename arguments | |
686 | const. | |
687 | ||
3e235302 DK |
688 | 2010-06-16 Doug Kwan <[email protected]> |
689 | ||
690 | * arm.cc (Target_arm::do_finalize_sections): Do not emit an | |
691 | .ARM.attributes section if we have not merged any input | |
692 | attributes sections. | |
693 | ||
106e8a6c DK |
694 | 2010-06-15 Viktor Kutuzov <[email protected]> |
695 | ||
696 | * arm.cc: Allow combining objects with no EABI version | |
697 | information. | |
698 | ||
91ff43fe RÁE |
699 | 2010-06-15 Rafael Espindola <[email protected]> |
700 | ||
701 | * plugin.cc (Plugin_hook::run): Set in_real_elf for the start symbol. | |
702 | ||
68ed838c ILT |
703 | 2010-06-15 Viktor Kutuzov <[email protected]> |
704 | ||
705 | * fileread.cc: Only #include <sys/uio.h> if HAVE_READV. | |
706 | (struct iovec): Correct !HAVE_READV definition. | |
707 | ||
f3a2388f CC |
708 | 2010-06-10 Cary Coutant <[email protected]> |
709 | ||
710 | * object.cc (Sized_relobj::do_layout): Defer layout for reloc sections. | |
711 | (Sized_relobj::do_layout_deferred_sections): Do layout for deferred | |
712 | reloc sections. | |
713 | * object.h (Sized_relobj::deferred_layout_relocs_): New data member. | |
714 | ||
715 | PR 11683 | |
716 | * symtab.h (Symbol::is_placeholder): New member function. | |
717 | * target-reloc.h (relocate_section): Check for placeholder symbols. | |
718 | ||
719 | * testsuite/Makefile.am (plugin_test_8): New test. | |
720 | (plugin_test_9): New test. | |
721 | * testsuite/Makefile.in: Regenerate. | |
722 | ||
e1df38aa NC |
723 | 2010-06-09 Nick Clifton <[email protected]> |
724 | ||
725 | * yyscript.y (input_list_element): Allow strings prefixed with | |
726 | the '-' character. Treat these as libraries. | |
727 | * script.cc (script_add_library): New function. Adds a library | |
728 | specified by "-l<name>" found in an input script. | |
729 | * script-c.h: Add prototype for script_add_library. | |
730 | ||
25bbe950 DK |
731 | 2010-06-07 Doug Kwan <[email protected]> |
732 | ||
733 | * arm.cc (Target_arm::do_relax): Reserve more space for stubs. | |
734 | Restrict stub-group size to be within long conditional branch | |
735 | range when working around cortex-A8 erratum. | |
736 | ||
0f32ea4c ILT |
737 | 2010-06-07 Damien Diederen <[email protected]> |
738 | ||
739 | * gold-threads.cc (Lock_impl_threads::Lock_impl_threads): Correct | |
740 | #ifdef typo. | |
741 | ||
8fe2a369 ST |
742 | 2010-06-03 Sriraman Tallam <[email protected]> |
743 | ||
744 | PR gold/11658 | |
745 | * output.cc | |
746 | (Output_section::Input_section_sort_entry::compare_section_ordering): | |
747 | Change to return non-zero correctly. | |
748 | (Output_section::Input_section_sort_section_order_index_compare | |
749 | ::operator()): Change to fix ambiguity in comparisons. | |
750 | ||
6e9ba2ca ST |
751 | 2010-06-01 Sriraman Tallam <[email protected]> |
752 | ||
753 | * gold.h (is_wildcard_string): New function. | |
754 | * layout.cc (Layout::layout): Pass this pointer to add_input_section. | |
755 | (Layout::layout_eh_frame): Ditto. | |
756 | (Layout::find_section_order_index): New method. | |
757 | (Layout::read_layout_from_file): New method. | |
758 | * layout.h (Layout::find_section_order_index): New method. | |
759 | (Layout::read_layout_from_file): New method. | |
760 | (Layout::input_section_position_): New private member. | |
761 | (Layout::input_section_glob_): New private member. | |
762 | * main.cc (main): Call read_layout_from_file here. | |
763 | * options.h (--section-ordering-file): New option. | |
764 | * output.cc (Output_section::input_section_order_specified_): New | |
765 | member. | |
766 | (Output_section::Output_section): Initialize new member. | |
767 | (Output_section::add_input_section): Add new parameter. | |
768 | Keep input sections when --section-ordering-file is used. | |
769 | (Output_section::set_final_data_size): Sort input sections when | |
770 | section ordering file is specified. | |
771 | (Output_section::Input_section_sort_entry): Add new parameter. | |
772 | Check sorting type. | |
773 | (Output_section::Input_section_sort_entry::compare_section_ordering): | |
774 | New method. | |
775 | (Output_section::Input_section_sort_compare::operator()): Change to | |
776 | consider section_order_index. | |
777 | (Output_section::Input_section_sort_init_fini_compare::operator()): | |
778 | Change to consider section_order_index. | |
779 | (Output_section::Input_section_sort_section_order_index_compare | |
780 | ::operator()): New method. | |
781 | (Output_section::sort_attached_input_sections): Change to sort | |
782 | according to section order when specified. | |
e1df38aa NC |
783 | (Output_section::add_input_section<32, true>): Add new parameter. |
784 | (Output_section::add_input_section<64, true>): Add new parameter. | |
785 | (Output_section::add_input_section<32, false>): Add new parameter. | |
786 | (Output_section::add_input_section<64, false>): Add new parameter. | |
6e9ba2ca ST |
787 | * output.h (Output_section::add_input_section): Add new parameter. |
788 | (Output_section::input_section_order_specified): New | |
789 | method. | |
790 | (Output_section::set_input_section_order_specified): New method. | |
791 | (Input_section::Input_section): Initialize section_order_index_. | |
792 | (Input_section::section_order_index): New method. | |
793 | (Input_section::set_section_order_index): New method. | |
794 | (Input_section::section_order_index_): New member. | |
795 | (Input_section::Input_section_sort_section_order_index_compare): New | |
796 | struct. | |
797 | (Output_section::input_section_order_specified_): New member. | |
798 | * script-sections.cc (is_wildcard_string): Delete and move modified | |
799 | method to gold.h. | |
800 | (Output_section_element_input::Output_section_element_input): Modify | |
801 | call to is_wildcard_string. | |
802 | (Output_section_element_input::Input_section_pattern | |
803 | ::Input_section_pattern): Ditto. | |
804 | (Output_section_element_input::Output_section_element_input): Ditto. | |
805 | * testsuite/Makefile.am (final_layout): New test case. | |
806 | * testsuite/Makefile.in: Regenerate. | |
807 | * testsuite/final_layout.cc: New file. | |
808 | * testsuite/final_layout.sh: New file. | |
809 | ||
3537c84b RÁE |
810 | 2010-06-01 Rafael Espindola <[email protected]> |
811 | ||
812 | * plugin.cc (Plugin::load): Pass the output name to the plugin. | |
813 | ||
105b6afd RÁE |
814 | 2010-06-01 Rafael Espindola <[email protected]> |
815 | ||
816 | * plugin.cc (Sized_pluginobj::::do_add_symbols): Correctly set the | |
817 | visibility of symbols. | |
818 | ||
29e11421 DK |
819 | 2010-05-27 Doug Kwan <[email protected]> |
820 | ||
821 | * object.cc (Sized_relobj::do_finalize_local_symbols): Use offset | |
822 | from start of output section instead of address for a local symbol | |
823 | in a merged or relaxed section when doing a relocatable link. | |
824 | ||
5e0f337e RÁE |
825 | 2010-05-26 Rafael Espindola <[email protected]> |
826 | ||
827 | PR 11604 | |
828 | * gold/object.cc(Sized_relobj::do_layout_deferred_sections): Avoid | |
829 | adding sections the garbage collector removed. | |
830 | * gold/testsuite/Makefile.am: Add test. | |
831 | * gold/testsuite/Makefile.in: Regenerate. | |
832 | * gold/testsuite/plugin_test_7.sh: New. | |
833 | * gold/testsuite/plugin_test_7_1.c: New. | |
834 | * gold/testsuite/plugin_test_7_2.c: New. | |
835 | ||
f4187277 RÁE |
836 | 2010-05-26 Rafael Espindola <[email protected]> |
837 | ||
838 | * script-sections.cc (Output_section_definition::set_section_addresses): | |
839 | Check for --section-start. | |
840 | ||
5c388529 DK |
841 | 2010-05-26 Doug Kwan <[email protected]> |
842 | ||
843 | * arm.cc (Arm_scan_relocatable_relocs): New class. | |
844 | (Target_arm::relocate_special_relocatable): New method. | |
845 | (Arm_relocate_functions::arm_branch_common): Handle relocatable link. | |
846 | (Arm_relocate_functions::thumb_branch_common): Same. | |
847 | (Target_arm::scan_relocatable_relocs): Use Arm_scan_relocatable_relocs | |
848 | instead of Default_scan_relocatable_relocs. | |
849 | * target-reloc.h (relocate_for_relocatable): Let target handle | |
850 | relocation strategy Relocatable_relocs::RELOC_SPECIAL. | |
851 | * target.h (Sized_target::relocate_special_relocatable): New method. | |
852 | ||
bca1c3ae ILT |
853 | 2010-05-25 Viktor Kutuzov <[email protected]> |
854 | ||
855 | * timer.cc: Only #include <sys/times.h> if HAVE_TIMES is defined. | |
856 | ||
0439c796 DK |
857 | 2010-05-23 Doug Kwan <[email protected]> |
858 | ||
859 | * arm.cc (Arm_input_section::do_output_offset): Use convert_types | |
860 | instead of a cast. | |
861 | (Target_arm::apply_cortex_a8_workaround): Rewrite a conditional branch | |
862 | with a direct branch, not a conditional branch, to a stub. | |
863 | * merge.cc (Output_merge_base::record_input_section): New method | |
864 | defintion. | |
865 | (Output_merge_data::do_add_input_section): Record input section if | |
866 | keeps-input-sections flag is set. | |
867 | (Output_merge_string::do_add_input_section): Ditto. | |
868 | * merge.h (Output_merge_base::Output_merge_base): Initialize new data | |
869 | members KEEPS_INPUT_SECTIONS_, FIRST_RELOBJ_, FIRST_SHNDX_ and | |
870 | INPUT_SECTIONS_. | |
871 | (Output_merge_base::keeps_input_sections, | |
872 | Output_merge_base::set_keeps_input_sections, | |
873 | Output_merge_base::first_relobj, Output_merge_base::first_shndx): New | |
874 | method definitions. | |
875 | (Output_merge_base::Input_sections): New type declaration. | |
876 | (Output_merge_base::input_sections_begin, | |
877 | Output_merge_base::input_sections_end, | |
878 | Output_merge_base::do_set_keeps_input_sections): New method definitions. | |
879 | (Output_merge_base::bool keeps_input_sections_, | |
880 | Output_merge_base::first_relobj_, Output_merge_base::first_shndx_, | |
881 | Output_merge_base::input_sections_): New data members. | |
882 | (Output_merge_data::do_set_keeps_input_sections): New method | |
883 | defintion. | |
884 | (Output_merge_string::do_set_keeps_input_sections): Ditto. | |
885 | * output.cc (Output_section::Input_section::relobj): Move method | |
886 | defintion from class declaration to here and handle merge sections. | |
887 | (Output_section::Input_section::shndx): Ditto. | |
888 | (Output_section::Output_section): Remove initializations of removed | |
889 | data members and initialize new data member LOOKUP_MAPS_. | |
890 | (Output_section::add_input_section): Set keeps-input-sections flag | |
891 | for a newly created merge output section as appropriate. Adjust code | |
892 | to use Output_section_lookup_maps class. | |
893 | (Output_section::add_relaxed_input_section): Adjst code for lookup | |
894 | maps code refactoring. | |
895 | (Output_section::add_merge_input_section): Add a new parameter | |
896 | KEEPS_INPUT_SECTION. Adjust code to use Output_section_lookup_maps | |
897 | class. If adding input section to a newly created merge output | |
898 | section fails, remove the new merge section. | |
899 | (Output_section::convert_input_sections_in_list_to_relaxed_input_sections): | |
e1df38aa | 900 | Adjust code for use of the Output_section_lookup_maps class. |
0439c796 DK |
901 | (Output_section::find_merge_section): Ditto. |
902 | (Output_section::build_lookup_maps): New method defintion. | |
903 | (Output_section::find_relaxed_input_section): Adjust code to use | |
904 | Output_section_lookup_maps class. | |
905 | (Output_section::get_input_sections): Export merge sections. Adjust | |
906 | code to use Output_section_lookup_maps class. | |
907 | (Output_section:::add_script_input_section): Adjust code to use | |
908 | Output_section_lookup_maps class. Update lookup maps for merge | |
909 | sections also. | |
910 | (Output_section::discard_states): Use Output_section_lookup_maps. | |
911 | (Output_section::restore_states): Same. | |
912 | * output.h (Merge_section_properties): Move class defintion out of | |
913 | Output_section. | |
914 | (Output_section_lookup_maps): New class. | |
915 | (Output_section::Input_section::is_merge_section): New method | |
916 | defintion. | |
917 | (Output_section::Input_section::relobj): Move defintion out of class | |
918 | defintion. Declare method only. | |
919 | (Output_section::Input_section::shndx): Ditto. | |
920 | (Output_section::Input_section::output_merge_base): New method defintion. | |
921 | (Output_section::Input_section::u2_.pomb): New union field. | |
922 | (Output_section::Merge_section_by_properties_map, | |
923 | Output_section::Output_section_data_by_input_section_map, | |
924 | Output_section::Ouptut_relaxed_input_section_by_input_section_map): | |
925 | Remove types. | |
926 | (Output_section::add_merge_input_section): Add new parameter | |
927 | KEEPS_INPUT_SECTIONS. | |
928 | (Output_section::build_lookup_maps): New method declaration. | |
929 | (Output_section::merge_section_map_, | |
930 | Output_section::merge_section_by_properties_map_, | |
931 | Output_section::relaxed_input_section_map_, | |
932 | Output_section::is_relaxed_input_section_map_valid_): Remove data | |
933 | members. | |
934 | (Output_section::lookup_maps_): New data member. | |
935 | ||
76295588 L |
936 | 2010-05-21 Doug Kwan <[email protected]> |
937 | ||
938 | PR gold/11619 | |
939 | * arm.cc (Arm_input_section::do_output_offset): Add a cast to | |
940 | avoid a compilation error. | |
941 | ||
d103a984 RÁE |
942 | 2010-05-19 Rafael Espindola <[email protected]> |
943 | ||
944 | * script-sections.cc (Output_section_definition::allocate_to_segment): | |
945 | Update the phdrs_list even when the output section is NULL. | |
946 | * testsuite/Makefile.am: Add test. | |
947 | * testsuite/Makefile.in: Regenerate. | |
948 | * testsuite/script_test_9.cc: New. | |
949 | * testsuite/script_test_9.sh: New. | |
950 | * testsuite/script_test_9.t: New. | |
951 | ||
6625d24e DK |
952 | 2010-05-19 Doug Kwan <[email protected]> |
953 | ||
954 | * arm.cc (Arm_input_section::original_size): New method. | |
955 | (Arm_input_section::do_addralign): Add a cast. | |
956 | (Arm_input_section::do_output_offset): Remove static cast. | |
957 | (Arm_input_section::original_addralign, | |
958 | Arm_input_section::original_size_): Change type to uint32_t. | |
959 | (Arm_input_section::init): Add safe casts for section alignment | |
960 | and size. | |
961 | (Arm_input_section::set_final_data_size): Do not set address and | |
962 | offset of stub table. | |
963 | (Arm_output_section::fix_exidx_coverage): Change use of of | |
964 | Output_section::Simple_input_section to that of | |
965 | Output_section::Input_section. | |
966 | (Target_arm::do_relax): Set addresses and file offsets of Stub_tables | |
967 | except for the first pass. | |
968 | * output.cc (Output_section::get_input_sections): Change type of | |
969 | input_sections to std::list<Input_section>. | |
970 | (Output_section::add_script_input_section): Rename from | |
971 | Output_section::add_simple_input_section. Change type of SIS | |
972 | parameter from Simple_input_section to Input_section. | |
973 | * output.h (Output_section::Simple_input_section): Remove class. | |
974 | (Output_section::Input_section): Change class visibility to public. | |
975 | (Output_section::Input_section::addralign): Use stored alignments | |
976 | for special input sections if set. | |
977 | (Output_section::Input_section::set_addralign): New method. | |
978 | (Output_section::get_input_sections): Change parameter type from | |
979 | list of Simple_input_section to list of Input_section. | |
980 | (Output_section::add_script_input_section): Rename from | |
981 | Output_section::add_simple_input_section. Change first parameter's | |
982 | type from Simple_input_section to Input_section and remove the | |
983 | second and third parameters. | |
984 | * script-sections.cc (Input_section::Input_section_list): Change | |
985 | type to list of Output_section::Input_section/ | |
986 | (Input_section_info::Input_section_info): Change parameter type of | |
987 | INPUT_SECTION to Output_section::Input_section. | |
988 | (Input_section_info::input_section): Change return type. | |
989 | (Input_section_info::input_section_): Change type to | |
990 | Output_section::Input_section. | |
991 | (Output_section_element_input::set_section_addresses): Adjust code | |
992 | to use Output_section::Input_section instead of | |
993 | Output_section::Simple_input_section. Adjust code for renaming | |
994 | of Output_section::add_simple_input_section. | |
995 | (Orphan_output_section::set_section_addresses): Ditto. | |
996 | ||
e1e82ea4 RW |
997 | 2010-05-18 Ralf Wildenhues <[email protected]> |
998 | ||
999 | * gold.h (Unordered_multimap, Unordered_map): Fix defines for | |
1000 | when neither HAVE_TR1_UNORDERED_MAP nor HAVE_EXT_HASH_MAP are set. | |
1001 | ||
91e75c8a RÁE |
1002 | 2010-05-18 Rafael Espindola <[email protected]> |
1003 | ||
1004 | * options.cc (General_options::finalize): Handle -nostdlib. | |
1005 | * options.h (nostdlib): New option. | |
1006 | * script.cc (script_add_search_dir): Handle -nostdlib. | |
1007 | ||
da59ad79 DK |
1008 | 2010-05-12 Doug Kwan <[email protected]> |
1009 | ||
1010 | * arm.cc (Target_arm::do_finalize_sections): Create an empty | |
1011 | attributes section only if there no attributes section after merging. | |
1012 | (Target_arm::merge_object_attributes): Move value of | |
e1df38aa | 1013 | Tag_MPextension_use_legacy to that of Tag_MPextension_use. |
da59ad79 DK |
1014 | Handle Tag_DIV_use and Tag_MPextension_use_legacy. |
1015 | * testsuite/Makefile.am (check_SCRIPTS): Add arm_attr_merge.sh | |
1016 | (check_DATA): Add arm_attr_merge_6.stdout, arm_attr_merge_6r_stdout | |
1017 | and arm_attr_merge_7.stdout. | |
1018 | (arm_attr_merge_6.stdout, arm_attr_merge_6 arm_attr_merge_6a.o | |
1019 | arm_attr_merge_6b.o, arm_attr_merge_6r.stdout, arm_attr_merge_6r, | |
1020 | arm_attr_merge_7.stdout, arm_attr_merge_7, arm_attr_merge_7a.o, | |
1021 | arm_attr_merge_7b.o): New rules. | |
1022 | (MOSTLYCLEANFILES): Add arm_attr_merge_6, arm_attr_merge_6r and | |
1023 | arm_attr_merge_7 | |
1024 | * testsuite/Makefile.in: Regenerate. | |
1025 | * testsuite/arm_attr_merge.sh: New file. | |
1026 | * testsuite/arm_attr_merge_[67][ab].s: Same. | |
1027 | ||
3e01a7fd NC |
1028 | 2010-05-05 Nick Clifton <[email protected]> |
1029 | ||
1030 | * po/es.po: Updated Spanish translation. | |
1031 | ||
7ad2014a L |
1032 | 2010-04-27 H.J. Lu <[email protected]> |
1033 | ||
1034 | * Makefile.am (install-exec-local): Properly install gold as | |
1035 | default cross linker. | |
1036 | * Makefile.in: Regenerated. | |
1037 | ||
4fda8867 NC |
1038 | 2010-04-27 H.J. Lu <[email protected]> |
1039 | Nick Clifton <[email protected]> | |
1040 | ||
1041 | * configure.ac (install_as_default): Define and set to false | |
1042 | unless --enable-gold or --enable-gold=both/gold has been | |
1043 | specified. | |
1044 | * configure: Regenerate. | |
1045 | ||
1046 | * Makefile.am (install-exec-local): Install the executable as | |
1047 | 'ld.gold'. If install_as_default is true then also install it as | |
1048 | 'ld'. | |
1049 | * Makefile.in: Regenerated. | |
1050 | ||
bd288ea2 ILT |
1051 | 2010-04-24 Ian Lance Taylor <[email protected]> |
1052 | ||
1053 | * layout.cc (Layout::layout_reloc): In relocatable link don't | |
1054 | combine reloc sections for grouped sections. | |
1055 | ||
ef38fd8a ST |
1056 | 2010-04-23 Sriraman Tallam <[email protected]> |
1057 | ||
1058 | * gc.h (gc_process_relocs): Pass information on relocs pointing to | |
1059 | sections that are not ordinary to icf. | |
1060 | * icf.cc (get_section_contents): Handle relocation pointing to section | |
1061 | with no object or shndx information. | |
1062 | * testsuite/Makefile.am: Remove icf_virtual_function_folding_test.sh | |
1063 | * testsuite/Makefile.in: Regenerate. | |
1064 | * testsuite/icf_virtual_function_folding_test.cc: Remove printf. | |
1065 | * testsuite/icf_virtual_function_folding_test.sh: Delete file. | |
1066 | ||
f6973bdc ILT |
1067 | 2010-04-22 Ian Lance Taylor <[email protected]> |
1068 | ||
1069 | * expression.cc (Expression::Expression_eval_info): Add | |
1070 | result_alignment_pointer field. | |
1071 | (Expression::eval_with_dot): Add result_alignment_pointer | |
1072 | parameter. Change all callers. | |
1073 | (Expression::eval_maybe_dot): Likewise. | |
1074 | (class Binary_expression): Add alignment_pointer parameter to | |
1075 | left_value and right_value. Change all callers. | |
1076 | (BINARY_EXPRESSION): Set result alignment. | |
1077 | (class Trinary_expression): Add alignment_pointer parameter to | |
1078 | arg2_value and arg3_value. Change all callers. | |
1079 | (Trinary_cond::value): Set result alignment. | |
1080 | (Max_expression::value, Min_expression::value): Likewise. | |
1081 | (Align_expression::value): Likewise. | |
1082 | * script-sections.cc (class Sections_element): Add dot_alignment | |
1083 | parameter to set_section_addresses virtual function. Update | |
1084 | instantiations. | |
1085 | (class Output_section_element): Likewise. | |
1086 | (Script_sections::create_segments): Add dot_alignment parameter. | |
1087 | Change all callers. | |
1088 | (Script_sections::create_segments_from_phdrs_clause): Likewise. | |
1089 | (Script_sections::set_phdrs_clause_addresses): Likewise. | |
1090 | * script-sections.h: Update declarations. | |
1091 | * script.h: Update declarations. | |
1092 | * output.h (Output_segment::set_minimum_p_align): Don't decrease | |
1093 | min_p_align. | |
1094 | * testsuite/script_test_3.t: Set large alignment. | |
1095 | * testsuite/script_test_3.sh: Make sure that at least one LOAD | |
1096 | segment has expected alignment. | |
1097 | ||
9c9c98a5 NC |
1098 | 2010-04-22 Nick Clifton <[email protected]> |
1099 | ||
1100 | * po/gold.pot: Updated by the Translation project. | |
1101 | * po/vi.po: Updated Vietnamese translation. | |
1102 | ||
2253bfba L |
1103 | 2010-04-22 H.J. Lu <[email protected]> |
1104 | ||
1105 | * testsuite/Makefile.am (check_PROGRAMS): Add | |
1106 | icf_virtual_function_folding_test. | |
1107 | * testsuite/Makefile.in: Regenerated. | |
1108 | ||
85fdf906 AH |
1109 | 2010-04-15 Andrew Haley <[email protected]> |
1110 | ||
1111 | * options.h (merge_exidx_entries): New option. | |
1112 | * arm.cc (class Arm_exidx_fixup): Add new arg, merge_exidx_entries. | |
1113 | (class Arm_exidx_fixup::merge_exidx_entries_): New member. | |
1114 | (Output_section::fix_exidx_coverage): Add new arg, merge_exidx_entries. | |
1115 | (Target_arm::merge_exidx_entries): New function. | |
1116 | (process_exidx_entry): Don't merge if merge_exidx_entries_ is false. | |
1117 | (Arm_output_section::fix_exidx_coverage): Pass merge_exidx_entries | |
1118 | to Arm_exidx_fixup constructor. | |
1119 | Add new arg, merge_exidx_entries. | |
1120 | (Target_arm::fix_exidx_coverage): pass merge_exidx_entries to | |
1121 | Arm_output_section::fix_exidx_coverage. | |
1122 | ||
ce97fa81 ST |
1123 | 2010-04-18 Sriraman Tallam <[email protected]> |
1124 | ||
1125 | * icf.cc (get_section_contents): Check for preemptible functions. | |
1126 | Ignore addend when appropriate. | |
1127 | * symtab.cc (should_add_dynsym_entry): Add new parameter. Check for | |
1128 | section folded. | |
1129 | (add_from_relobj): Check for section folded. | |
1130 | (set_dynsym_indexes): Fix call to should_add_dynsym_entry. | |
1131 | * symtab.h (should_add_dynsym_entry): Add new parameter. | |
1132 | * target-reloc.h (scan_relocs): Check for section folded. | |
1133 | * x86_64.cc (Target_x86_64::Scan::possible_function_pointer_reloc): | |
1134 | Check reloc types for function pointers in shared objects. | |
1135 | * testsuite/Makefile.am (icf_virtual_function_folding_test): New test | |
1136 | case. | |
1137 | (icf_preemptible_functions_test): New test case. | |
1138 | (icf_string_merge_test): New test case. | |
1139 | * testsuite.Makefile.in: Regenerate. | |
1140 | * testsuite/icf_safe_so_test.sh: Change to not fold foo_glob and | |
1141 | bar_glob. Refactor code. | |
1142 | * testsuite/icf_preemptible_functions_test.cc: New file. | |
1143 | * testsuite/icf_preemptible_functions_test.sh: New file. | |
1144 | * testsuite/icf_string_merge_test.cc: New file. | |
1145 | * testsuite/icf_string_merge_test.sh: New file. | |
1146 | * testsuite/icf_virtual_function_folding_test.cc: New file. | |
1147 | * testsuite/icf_virtual_function_folding_test.sh: New file. | |
1148 | ||
04ceb17c DK |
1149 | 2010-04-14 Doug Kwan <[email protected]> |
1150 | ||
1151 | * arm.cc (Arm_output_section::fix_exidx_coverage): Mark object | |
1152 | for local symbol recounting if we remove a section due to ICF. | |
1153 | * gold.cc (queue_middle_gc_tasks): Create a dummy blocker if | |
1154 | there are no regular objects in input. | |
1155 | ||
153e7da4 DK |
1156 | 2010-04-13 Doug Kwan <[email protected]> |
1157 | ||
1158 | * arm.cc (Arm_input_section::set_final_data_size): Compute | |
1159 | accurate final data size instead of using current data size. | |
1160 | ||
4dbd9faf DK |
1161 | 2010-04-09 Doug Kwan <[email protected]> |
1162 | ||
1163 | * layout.cc (Layout::choose_output_section): Handle script section | |
1164 | types. | |
1165 | (Layout::make_output_section_for_script): Add section type parameter. | |
1166 | Handle script section types. | |
1167 | * layout.h (Layout::make_output_section_for_script): Add section | |
1168 | type parameter. | |
1169 | * output.cc (Output_section::Output_section): Initialize data member | |
1170 | is_noload_. | |
1171 | (Output_section::do_reset_address_and_file_offset): Do not set address | |
1172 | to 0 if section is a NOLOAD section. | |
1173 | * output.h (Output_section::is_noload): New method. | |
1174 | (Output_section::set_is_noload): Ditto. | |
1175 | (Output_section::is_noload_): New data member. | |
1176 | * script-c.h (Script_section_type): New enum type. | |
1177 | (struct Parser_output_section_header): Add new file section_type. | |
1178 | * script-sections.cc (Sections_element::output_section_name): Add | |
1179 | parameter for returning script section type. | |
1180 | (Output_section_definition::output_section_name): Ditto. | |
1181 | (Output_section_definition::section_type)P; New method. | |
1182 | (Output_section_definiton::script_section_type_name): Ditto. | |
1183 | (Output_section_definition::script_section_type_): New data member. | |
1184 | (Output_section_definition::Output_section_definition): Initialize | |
1185 | data member Output_section_definition::script_section_type_. | |
1186 | (Output_section_definition::create_sections): Pass script section type | |
1187 | to Layout::make_output_section_for_script. | |
1188 | (Output_section_definition::output_section_name): Return script | |
1189 | section type to caller. | |
1190 | (Output_section_definition::set_section_address): Do not advance | |
1191 | dot value and load address if section type is NOLOAD. Set address | |
1192 | of NOLOAD sections regardless of section flags. | |
1193 | (Output_section_definition::print): Print section type if it is | |
1194 | not SCRIPT_SECTION_TYPE_NONE. | |
1195 | (Output_section_definition::section_type): New method. | |
1196 | (Output_section_definition::script_section_type_name): Ditto. | |
1197 | (Script_sections::output_section_name): Add new parameter | |
1198 | PSECTION_TYPE for returning script section type. Pass it to | |
1199 | section elements. Handle discard sections. | |
1200 | (Sort_output_sections::operator()): Handle NOLOAD sections. | |
1201 | * script-sections.h (Script_sections::Section_type): New enum type. | |
1202 | (Script_sections::output_section_name): Add a new parameter for | |
1203 | returning script section type. | |
1204 | * script.cc (script_keyword_parsecodes): Add keywords COPY, DSECT, | |
1205 | INFO and NOLOAD. | |
1206 | * yyscript.y (union): Add new field SECTION_TYPE. | |
1207 | (COPY, DSECT, INFO, NOLOAD): New tokens. | |
1208 | (opt_address_and_section_type): Change type to output_section_header. | |
1209 | (section_type): New non-terminal | |
1210 | (section_header): Handle section type. | |
2253bfba | 1211 | (opt_address_and_section_type): Return section type value. |
4dbd9faf | 1212 | |
721ea635 L |
1213 | 2010-04-09 H.J. Lu <[email protected]> |
1214 | ||
1215 | * testsuite/plugin_common_test_1.c (foo): Add prototype. | |
1216 | * testsuite/plugin_common_test_2.c (foo): Likewise. | |
1217 | ||
6bf924b0 DK |
1218 | 2010-04-08 Doug Kwan <[email protected]> |
1219 | ||
1220 | * merge.cc (Output_merge_data::set_final_data_size): Handle empty | |
1221 | Output_merge_data. | |
1222 | * output.cc (Output_section::add_merge_input_section): Simplify | |
1223 | code and return status of Output_merge_base::add_input_section. | |
e1df38aa | 1224 | Update merge section map only if Output_merge_base::add_input_section |
6bf924b0 DK |
1225 | returns true. |
1226 | ||
24af6f92 DK |
1227 | 2010-04-07 Doug Kwan <[email protected]> |
1228 | ||
1229 | * arm.cc (Arm_relobj::scan_section_for_cortex_a8_erratum): Warn | |
1230 | if section is marked as containing instructions but has no mapping | |
1231 | symbols. | |
1232 | (Arm_relobj::do_count_local_symbols): Call adjust_sym_shndx to get | |
1233 | correct section index. | |
1234 | (Arm_relobj::find_linked_text_section): Ditto. | |
1235 | ||
00698fc5 CC |
1236 | 2010-04-07 Cary Coutant <[email protected]> |
1237 | ||
1238 | * archive.cc (include_member): Destroy Read_symbols_data object before | |
1239 | releasing file. | |
1240 | * object.cc (Read_symbols_data::~Read_symbols_data) New destructor. | |
1241 | * object.h (Read_symbols_data::Read_symbols_data) New constructor. | |
1242 | (Read_symbols_data::~Read_symbols_data) New destructor. | |
1243 | (Section_relocs::Section_relocs) New constructor. | |
1244 | (Section_relocs::~Section_relocs) New destructor. | |
1245 | (Read_relocs_data::Read_relocs_data) New constructor. | |
1246 | (Read_relocs_data::~Read_relocs_data) New destructor. | |
1247 | * testsuite/binary_unittest.cc (Sized_binary_test): Set sd member | |
1248 | pointers to NULL after deleting. | |
1249 | ||
7296d933 DK |
1250 | 2010-04-07 Doug Kwan <[email protected]> |
1251 | ||
1252 | * arm.cc: Replace "endianity" with "endianness" in comments. | |
1253 | (Arm_exidx_cantunwind): Ditto. | |
1254 | (Arm_relobj::Arm_relobj): Initialize merge_flags_and_attribures. | |
1255 | (Arm_relobj::merge_flags_and_attributes): New method. | |
1256 | (Arm_relobj::merge_flags_and_attributes_): New data member. | |
1257 | (Arm_exidx_cantunwind::do_fixed_endian_write): Fix formatting. | |
1258 | (Arm_relobj::scan_sections_for_stubs): Ditto. | |
1259 | (Arm_relobj::do_read_symbols): Check to see if we really want to | |
1260 | merge processor-specific flags and attributes. Exit early if | |
1261 | an object is empty except for section names and the undefined symbol. | |
1262 | (Target_arm::do_finalize_sections): Move check for ELF format to | |
1263 | Arm_relobj::do_read_symbols. Merge processor specific flags and | |
1264 | attributes from a regular object only when we have determined that | |
1265 | it is aapropriate. Do not create an .ARM.attributes section in | |
1266 | output if there is no regular input object. | |
1267 | (Target_arm::merge_processor_specific_flags): Check | |
1268 | --warn-mismatch before printing any error. | |
1269 | (Target_arm::merge_object_attributes): Ditto. | |
1270 | * gold.cc (queue_middle_tasks): Handle the case in which there is | |
1271 | no regular object in input. | |
1272 | * options.cc (General_options::parse_EB): New method. | |
1273 | (General_options::parse_EL): Same. | |
1274 | (General_options::General_options): Initialize endianness_. | |
1275 | * options.h (-EB, -EL, -no-pipeline-knowledge, -p, --warn-mismatch): | |
1276 | New options. | |
1277 | (General_options::Endianness): New enum. | |
1278 | (General_options::endianness): New method. | |
1279 | (General_options::endianness_): New data member. | |
1280 | * parameters.cc (Parameters::set_options): Check target endianness. | |
1281 | (Parameters::set_target_once): Ditto. | |
1282 | (Parameters::check_target_endianness): New method. | |
1283 | (parameters_force_valid_target): If either -EL or -EB is specified, | |
1284 | use it to define endianness of default target. | |
1285 | * parameters.h (Parameters::check_target_endianness): New method | |
1286 | declaration. | |
1287 | * target.h (class Target): Change "endianity" to "endianness" | |
1288 | in comments. | |
1289 | ||
efc8d4f2 RW |
1290 | 2010-04-07 Ralf Wildenhues <[email protected]> |
1291 | ||
1292 | * configure.ac (AM_INIT_AUTOMAKE): Add option no-dist. | |
1293 | * configure: Regenerate. | |
1294 | * Makefile.in: Regenerate. | |
1295 | * testsuite/Makefile.in: Regenerate. | |
1296 | ||
be234d88 CC |
1297 | 2010-04-06 Cary Coutant <[email protected]> |
1298 | ||
1299 | gcc PR lto/42757 | |
1300 | * plugin.cc (Pluginobj::get_symbol_resolution_info): Check for | |
1301 | prevailing definitions of common symbols. | |
1302 | * testsuite/plugin_test_6.sh: New test case. | |
1303 | * testsuite/plugin_common_test_1.c: New test case. | |
1304 | * testsuite/plugin_common_test_2.c: New test case. | |
1305 | * testsuite/Makefile.am (plugin_test_6): New test case. | |
1306 | * testsuite/Makefile.in: Regenerate. | |
1307 | ||
bd32c6bd NC |
1308 | 2010-04-06 Nick Clifton <[email protected]> |
1309 | ||
1310 | * po/vi.po: New Vietnamese translation. | |
1311 | ||
323c532f DK |
1312 | 2010-03-30 Doug Kwan <[email protected]> |
1313 | ||
1314 | * arm.cc (Target_arm::using_thumb_only): Handle v6-M | |
1315 | ||
4fcd97eb DK |
1316 | 2010-03-25 Doug Kwan <[email protected]> |
1317 | ||
1318 | * gold/arm.cc (Arm_exidx_fixup::update_offset_map): Rearrange code | |
1319 | to avoid a conversion warning on a 32-bit host. | |
1320 | ||
4ebf39db ILT |
1321 | 2010-03-24 Ian Lance Taylor <[email protected]> |
1322 | ||
1323 | * testsuite/script_test_3.t: Add a TLS segment. | |
1324 | * testsuite/Makefile.am (check_PROGRAMS): Add | |
1325 | tls_phdrs_script_test. | |
1326 | (tls_phdrs_script_test_SOURCES): Define. | |
1327 | (tls_phdrs_script_test_DEPENDENCIES): Define. | |
1328 | (tls_phdrs_script_test_LDFLAGS): Define. | |
1329 | (tls_phdrs_script_test_LDADD): Define. | |
1330 | * testsuite/Makefile.in: Rebuild. | |
1331 | ||
4a599bdd CC |
1332 | 2010-03-23 Cary Coutant <[email protected]> |
1333 | ||
1334 | * fileread.cc (find_or_make_view): Fix comment. | |
1335 | ||
6c93b22c ILT |
1336 | 2010-03-23 Ian Lance Taylor <[email protected]> |
1337 | ||
1338 | * script-sections.cc (class Orphan_section_placement): Define | |
1339 | PLACE_TLS and PLACE_TLS_BSS. | |
1340 | (Orphan_section_placement::Orphan_section_placement): Initialize | |
1341 | new places. | |
1342 | (Orphan_section_placement::find_place): Handle SHF_TLS sections. | |
1343 | * testsuite/Makefile.am (check_PROGRAMS): Add tls_script_test. | |
1344 | (tls_script_test_SOURCES): Define. | |
1345 | (tls_script_test_DEPENDENCIES): Define. | |
1346 | (tls_script_test_LDFLAGS): Define. | |
1347 | (tls_script_test_LDADD): Define. | |
1348 | * testsuite/Makefile.in: Rebuild. | |
1349 | ||
a2c7281b DK |
1350 | 2010-03-22 Doug Kwan <[email protected]> |
1351 | ||
1352 | * arm.cc (Arm_relocate_functions::abs8, | |
1353 | Arm_relocate_functions::abs16): Use correct check for overflow | |
1354 | specified in the ARM ELF specs. | |
1355 | (Arm_relocate_functions): thumb_branch_common. Handle bit 1 of branch | |
1356 | target of a BLX instruction specially. | |
1357 | (Reloc_stub::stub_type_for_reloc): Ditto. | |
1358 | (Relocate::relocate): Use symbolic names instead of numeric relocation | |
1359 | codes to report error. | |
1360 | (Target_arm::do_relox): Reduce default stub-group size for Cortex-A8 | |
1361 | workaround. | |
1362 | * testsuite/Makefile.am (check_DATA): add thumb_blx_in_range.stdout, | |
1363 | thumb_blx_out_of_range.stdout, thumb2_blx_in_range.stdout and | |
1364 | thumb2_blx_out_of_range.stdout | |
1365 | (thumb_bl_out_of_range, thumb_bl_out_of_range.o, | |
1366 | thumb2_bl_out_of_range, thumb2_bl_out_of_range.o): Fix dependenices. | |
1367 | (thumb_blx_in_range.stdout, thumb_blx_in_range, thumb_blx_in_range.o, | |
1368 | thumb_blx_out_of_range.stdout, thumb_blx_out_of_range, | |
1369 | thumb_blx_out_of_range.o, thumb2_blx_in_range.stdout, | |
1370 | thumb2_blx_in_range, thumb2_blx_in_range.o, | |
1371 | thumb2_blx_out_of_range.stdout, thumb2_blx_out_of_range, | |
1372 | thumb2_blx_out_of_range.o): New rules. | |
1373 | (MOSTLYCLEANFILES): Add thumb_blx_in_range, thumb_blx_out_of_range, | |
1374 | thumb2_blx_in_range and thumb2_blx_out_of_range. | |
1375 | * testsuite/Makefile.in: Regenerate. | |
1376 | * arm_branch_in_range.sh: Add tests for THUMB BLX. | |
1377 | * testsuite/thumb_blx_in_range.s: New file. | |
1378 | * testsuite/thumb_blx_out_of_range.s: New file. | |
1379 | ||
b0193076 RÁE |
1380 | 2010-03-22 Rafael Espindola <[email protected]> |
1381 | ||
1382 | * archive.cc (Should_include): Move to archive.h. | |
1383 | (should_include_member): Make it a member of Archive. | |
1384 | (Lib_group): New. | |
1385 | (Add_lib_group_symbols): New. | |
1386 | * archive.h: Include options.h. | |
1387 | (Archive_member): Moved from Archive. | |
1388 | (Should_include): Moved from archive.cc. | |
1389 | (Lib_group): New. | |
1390 | (Add_lib_group_symbols): New. | |
1391 | * dynobj.cc (do_should_include_member): New. | |
1392 | * dynobj.h (do_should_include_member): New. | |
1393 | * gold.cc (queue_initial_tasks): Update call to queue. | |
1394 | * main.cc (main): Print lib group stats. | |
1395 | * object.cc (do_should_include_member): New. | |
1396 | * object.h: Include archive.h. | |
1397 | (Object::should_include_member): New. | |
1398 | (Object::do_should_include_member): New. | |
1399 | (Sized_relobj::do_should_include_member): New. | |
1400 | * options.cc (General_options::parse_start_lib): New. | |
1401 | (General_options::parse_end_lib): New. | |
1402 | (Input_arguments::add_file): Handle lib groups. | |
1403 | (Input_arguments::start_group): Check we are not in a lib. | |
1404 | (Input_arguments::start_lib): New. | |
1405 | (Input_arguments::end_lib): New. | |
1406 | * options.h (General_options): Add start_lib and end_lib. | |
1407 | (Input_argument::lib_): New. | |
1408 | (Input_argument::lib): New. | |
1409 | (Input_argument::is_lib): New. | |
1410 | (Input_file_lib): New. | |
1411 | (Input_arguments::in_lib_): New. | |
1412 | (Input_arguments::in_lib): New. | |
1413 | (Input_arguments::start_lib): New. | |
1414 | (Input_arguments::end_lib_): New. | |
1415 | * plugin.cc (Pluginobj::get_symbol_resolution_info): Mark symbols | |
1416 | in unused members as preempted. | |
1417 | (Sized_pluginobj::do_should_include_member): New. | |
1418 | * plugin.h (Sized_pluginobj::do_should_include_member): New. | |
1419 | * readsyms.cc (Read_symbols::locks): If we are just reading a member, | |
1420 | return the blocker. | |
1421 | (Read_symbols::do_whole_lib_group): New. | |
1422 | (Read_symbols::do_lib_group): New. | |
1423 | (Read_symbols::do_read_symbols): Handle lib groups. | |
1424 | (Read_symbols::get_name): Handle lib groups. | |
1425 | * readsyms.h (Read_symbols): Add an archive member pointer. | |
1426 | (Read_symbols::do_whole_lib_group): New. | |
1427 | (Read_symbols::do_lib_group): New. | |
1428 | (Read_symbols::member_): New. | |
1429 | * script.cc (read_input_script): Update call to queue_soon. | |
1430 | ||
d099120c DK |
1431 | 2010-03-19 Doug Kwan <[email protected]> |
1432 | ||
1433 | * arm.cc (Stub_table::Stub_table): Initialize new data members | |
1434 | Stub_table::reloc_stubs_size_ and Stub_table::reloc_stubs_addralign_. | |
1435 | (Stub_table::add_reloc_stub): Assign stub offset and update | |
1436 | Stub_table::reloc_stubs_size_ and Stub_table::reloc_stubs_addralign_. | |
1437 | (Stub_table::reloc_stubs_size_, Stub_table::reloc_stubs_addralign_): | |
1438 | New data members. | |
1439 | (Stub_table::update_data_size_and_addralign): Use | |
1440 | Stub_table::reloc_stubs_size_ and Stub_table::reloc_stubs_addralign_ | |
1441 | instead of going over all reloc stubs. | |
1442 | (Stub_table::finalize_stubs): Do not assign reloc stub offsets. | |
1443 | * stringpool.cc (Stringpool_template::Stringpool_template): Initialize | |
1444 | Stringpool_template::offset_ to size of Stringpool_char. | |
1445 | (Stringpool_template::new_key_offset): Remove code to initialize | |
1446 | Stringpool_template::offset_. | |
1447 | * stringpool.h (Stringpool_template::set_no_zero_null): Set | |
1448 | Stringpool_template::offset_ to zero. | |
1449 | ||
1aa37384 DK |
1450 | 2010-03-15 Doug Kwan <[email protected]> |
1451 | ||
1452 | * stringpool.cc (Stringpool_template::Stringpool_template): Initialize | |
1453 | offset_. | |
1454 | (Stringpool_template::new_key_offset): New method. | |
1455 | (Stringpool_template::add_string): Assign offsets when adding new | |
1456 | strings. | |
1457 | (Stringpool_template::set_string_offsets): Do not set string offsets | |
1458 | when not optimizing. | |
1459 | * stringpool.h (Chunked_vector::Chunked_vector): Initialize data | |
1460 | member size_. | |
1461 | (Chunked_vector::clear): Clear size_. | |
1462 | (Chunked_vector::reserve): Call reserve method of all Element_vectors. | |
1463 | (Chunked_vector::size): Return size_. | |
1464 | (Chunked_vector::push_back): Use size_ to find insert position. | |
e1df38aa | 1465 | (Chunked_vector::size_): New data member. |
1aa37384 DK |
1466 | (Stringpool_template::set_no_zero_null): Assert string set is empty. |
1467 | (Stringpool_template::new_key_offset): New method declaration. | |
1468 | (Stringpool_template::offset_): New data member. | |
1469 | ||
b672b057 RÁE |
1470 | 2010-03-15 Rafael Espindola <[email protected]> |
1471 | ||
1472 | * readsyms.cc (Read_symbols::do_read_symbols): Update calls to | |
1473 | Add_symbols' constructor. | |
1474 | * readsyms.h (Add_symbols): Remove the input_group member. | |
1475 | ||
b6848d3c ILT |
1476 | 2010-03-10 Ian Lance Taylor <[email protected]> |
1477 | ||
1478 | * reloc.cc (Sized_relobj::split_stack_adjust_reltype): Call the | |
1479 | target to ask whether a reference to a symbol requires a stack | |
1480 | split. | |
1481 | * target.h (Target::is_call_to_non_split): New function. | |
1482 | (Target::do_is_call_to_non_split): Declare virtual function. | |
1483 | * target.cc: Include "symtab.h". | |
1484 | (Target::do_is_call_to_non_split): New function. | |
1485 | * i386.cc (Target_i386::do_is_call_to_non_split): New function. | |
1486 | ||
a2a5469e CC |
1487 | 2010-03-10 Cary Coutant <[email protected]> |
1488 | ||
1489 | * fileread.cc (File_read::~File_read): Don't delete whole_file_view_. | |
1490 | (File_read::open[1]): Remove initial mapping of whole_file_view_. | |
1491 | (File_read::open[2]): Add whole_file_view_ to list of views. | |
1492 | (File_read::make_view): Remove test of whole_file_view_. | |
1493 | (File_read::find_or_make_view): Create whole_file_view_ if | |
1494 | necessary. | |
1495 | (File_read::clear_views): Replace bool parameter with enum; | |
1496 | adjust all callers. Don't delete views with permanent data; | |
1497 | do delete cached views and views from archives if | |
1498 | --no-keep-files-mapped is set. Set whole_file_view_ to NULL | |
1499 | if clearing the corresponding view. | |
1500 | * fileread.h (File_read::Clear_views_mode): New enum. | |
1501 | (File_read::View::is_permanent_view): New method. | |
1502 | (File_read::clear_views): Replace bool parameter | |
1503 | with enum; adjust all callers. | |
1504 | * options.h (General_options): Change keep_files_mapped option; | |
1505 | add map_whole_files. | |
1506 | * readsyms.cc (Add_symbols::run): Delete sd_ object before | |
1507 | releasing the file. | |
1508 | * reloc.cc (Scan_relocs::run): Delete rd_ object before releasing | |
1509 | the file. | |
1510 | ||
8861f32b DM |
1511 | 2010-03-10 David S. Miller <[email protected]> |
1512 | ||
1513 | * sparc.cc (Target_sparc::Scan::local): Accept R_SPARC_WPLT30. | |
1514 | ||
d62d0f5f ST |
1515 | 2010-03-09 Sriraman Tallam <[email protected]> |
1516 | ||
1517 | * icf.cc (get_section_contents): Add '@' marker after processing the | |
1518 | merge reloc. | |
1519 | ||
9177756d DK |
1520 | 2010-03-08 Doug Kwan <[email protected]> |
1521 | ||
1522 | * gold/arm.cc (Arm_exidx_fixup::update_offset_map): Fix build breakage | |
1523 | due to a conversion warning. | |
1524 | (Arm_relobj::update_output_local_symbol_count): Check for local | |
1525 | symbol with unset output index. | |
1526 | ||
9e9e071b ILT |
1527 | 2010-03-05 Ian Lance Taylor <[email protected]> |
1528 | ||
1529 | * options.h (class General_options): Add --spare-dynamic-tags. | |
1530 | * output.cc (Output_data_dynamic::set_final_data_size): Implement | |
1531 | --spare-dynamic-tags. | |
1532 | ||
a81ee015 ILT |
1533 | 2010-03-05 Ian Lance Taylor <[email protected]> |
1534 | ||
1535 | * incremental.cc: Include "libiberty.h". | |
1536 | ||
44ec90b9 RO |
1537 | 2010-03-05 Rainer Orth <[email protected]> |
1538 | ||
1539 | * dynobj.h (Verdef::Verdef): Add is_info arg, is_info member | |
1540 | function, is_info_ member. | |
1541 | * dynobj.cc (Verdef::write): Set VER_FLG_INFO if this->is_info_. | |
1542 | (Versions::Versions): Update caller. | |
1543 | (Versions::define_base_version): Likewise. | |
1544 | (Versions::add_def): Likewise. | |
1545 | ||
0897ed3b ST |
1546 | 2010-03-03 Sriraman Tallam <[email protected]> |
1547 | ||
1548 | * i386.cc (Target_i386::can_check_for_function_pointers): New function. | |
1549 | (Scan::possible_function_pointer_reloc): New function. | |
1550 | (Scan::local_reloc_may_be_function_pointer): Change to call | |
1551 | possible_function_pointer_reloc. | |
1552 | (Scan::global_reloc_may_be_function_pointer): Ditto. | |
1553 | * icf.h (Icf::check_section_for_function_pointers): Change to reject | |
1554 | relocations in ".data.rel.ro._ZTV" section. | |
1555 | * testsuite/icf_safe_so_test.sh: Change to pass i386. | |
1556 | * testsuite/icf_safe_so_test.cc: Ditto. | |
1557 | * testsuite/icf_safe_test.cc: Ditto. | |
1558 | * testsuite/icf_safe_test.sh: Ditto. | |
1559 | ||
d3bbad62 ILT |
1560 | 2010-03-03 Viktor Kutuzov <[email protected]> |
1561 | Ian Lance Taylor <[email protected]> | |
1562 | ||
1563 | * target-reloc.h (relocate_section): Check the symbol table index | |
1564 | for -1U before setting the local symbol index. | |
1565 | (scan_relocatable_relocs): If copying the relocation, record that | |
1566 | the local symbol is required. | |
1567 | * object.h (Symbol_value::is_output_symtab_index_set): New | |
1568 | function. | |
1569 | (Symbol_value::may_be_discarded_from_output_symtab): New | |
1570 | function. | |
1571 | (Symbol_value::has_output_symtab_entry): New function. | |
1572 | (Symbol_value::needs_output_symtab_entry): Remove. | |
1573 | (Symbol_value::output_symtab_index): Make sure the symbol index is | |
1574 | set. | |
1575 | (Symbol_value::set_output_symtab_index): Make sure the symbol | |
1576 | index is not set. Make sure the new index is valid. | |
1577 | (Symbol_value::set_must_have_output_symtab_entry): New function. | |
1578 | (Symbol_value::has_output_dynsym_entry): New function. | |
1579 | (Symbol_value::set_output_dynsym_index): Make sure the new index | |
1580 | is valid. | |
1581 | (Sized_relobj::set_must_have_output_symtab_entry): New function. | |
1582 | * object.cc (Sized_relobj::do_count_local_symbols): Only discard a | |
1583 | local symbol if permitted. | |
1584 | (Sized_relobj::do_finalize_local_symbols): Call | |
1585 | is_output_symtab_index_set rather than needs_output_symtab_entry. | |
1586 | (Sized_relobj::write_local_symbols): Call has_output_symtab_entry | |
1587 | rather than needs_output_symtab_entry. Call | |
1588 | has_output_dynsym_entry rather than needs_output_dynsym_entry. | |
1589 | * arm.cc (Arm_relobj::update_output_local_symbol_count): Call | |
1590 | is_output_symtab_index_set rather than needs_output_symtab_entry. | |
1591 | * testsuite/discard_locals_relocatable_test.c: New file. | |
1592 | * testsuite/discard_locals_test.sh: Test -r. | |
1593 | * testsuite/Makefile.am (check_DATA): Add | |
1594 | discard_locals_relocatable_test1.syms, | |
1595 | discard_local_relocatable_test2.syms. | |
1596 | (MOSTLYCLEANFILES): Likewise. Also add | |
1597 | discard_locals_relocatable_test1.lout and | |
1598 | discard_locals_relocatable_test2.out. | |
1599 | (discard_locals_relocatable_test1.syms): New target. | |
1600 | (discard_locals_relocatable_test.o): New target. | |
1601 | (discard_locals_relocatable_test1.out): New target. | |
1602 | (discard_locals_relocatable_test2.syms): New target. | |
1603 | (discard_locals_relocatable_test2.out): New target. | |
1604 | (various): Add missing ../ld-new dependencies. | |
1605 | * testsuite/Makefile.in: Rebuild. | |
1606 | ||
7e8ccf26 NC |
1607 | 2010-03-03 Nick Clifton <[email protected]> |
1608 | ||
1609 | * po/fi.po: New Finnish translation. | |
1610 | ||
2a0ff005 DK |
1611 | 2010-03-01 Doug Kwan <[email protected]> |
1612 | ||
1613 | * layout.cc (Layout::Layout): Force section types of .init_array*, | |
1614 | .preinit_array* and .fini_array* sections. | |
1615 | * output.cc (Output_section::Input_section_sort_entry::has_priority): | |
1616 | Fix check of return value of std::string::find.(). | |
1617 | (Output_section::Input_section_sort_compare::operator()): Remove | |
1618 | comment about .init_array. | |
1619 | (Output_section::Input_section_sort_init_fini_compare::operator()): | |
1620 | New method. | |
1621 | (Output_section::sort_attached_input_sections): Handle .init_array | |
1622 | and .fini_array specially. | |
1623 | * output.h (Output_section::Inut_section_sort_compare): Update | |
1624 | comment. | |
1625 | (Output_section::Input_section_sort_init_fini_compare): New struct. | |
1626 | ||
c3e4ae29 DK |
1627 | 2010-02-26 Doug Kwan <[email protected]> |
1628 | ||
1629 | * arm.cc (Target_arm::Relocate::reloc_is_non_pic): Treat | |
1630 | R_ARM_PREL31 and R_ARM_SBREL31 as position independent. | |
1631 | * testsuite/debug_msg.sh: Avoid matching source line number for | |
1632 | use of global variable undef_int. | |
1633 | ||
2fd9ae7a DK |
1634 | 2010-02-26 Doug Kwan <[email protected]> |
1635 | ||
1636 | * arm.cc (Target_arm::scan_reloc_for_stub): Move code handling | |
1637 | R_ARM_V4BX to Target_arm::scan_reloc_section_for_stubs. | |
1638 | (Target_arm::scan_reloc_section_for_stubs): Instead of calling | |
1639 | scan_reloc_for_stub, do all processing of R_ARM_V4BX here. | |
1640 | * options.cc (General_options::General_options): Initialize member | |
1641 | fix_v4bx_. | |
1642 | * testsuite/Makefile.am (check_SCRIPTS): Add arm_fix_v4bx.sh | |
1643 | (check_DATA): Add arm_fix_v4bx.stdout, arm_fix_v4bx_interworking.stdout | |
1644 | and rm_no_fix_v4bx.stdout | |
1645 | (arm_fix_v4bx.stdout, arm_fix_v4bx, arm_fix_v4bx.o, | |
1646 | arm_fix_v4bx_interworking.stdout, arm_fix_v4bx_interworking, | |
1647 | arm_no_fix_v4bx.stdout, arm_no_fix_v4bx): New make rules. | |
1648 | (MOSTLYCLEANFILES): Add arm_fix_v4bx, arm_fix_v4bx_interworking | |
1649 | and arm_no_fix_v4bx. | |
1650 | * Makefile.in: Regenerate. | |
1651 | * testsuite/arm_fix_v4bx.s: New file. | |
1652 | * testsuite/arm_fix_v4bx.sh: Ditto. | |
1653 | ||
67ec7d0b DK |
1654 | 2010-02-24 Doug Kwan <[email protected]> |
1655 | ||
1656 | * arm.cc (Target_arm::got_section): Make the .got section the first | |
1657 | non RELRO section in the data segment. | |
1658 | * testsuite/script_test_5.sh: Fix match patterns to avoid matching | |
1659 | suffixes of section names. | |
1660 | ||
10165461 DK |
1661 | 2010-02-24 Doug Kwan <[email protected]> |
1662 | ||
1663 | * arm.cc (Target_arm::do_finalize_sections): Skip processor specific | |
1664 | flags and attributes merging if an input file is a binary file. | |
1665 | * fileread.cc (Input_file::open): Record format of original file. | |
1666 | * fileread.h (Input_file::Format): New enum type. | |
1667 | (Input_file::Input_file): Initialize data member format_. | |
1668 | (Input_file::format): New method definition. | |
1669 | (Input_file::format_):: New data member. | |
1670 | ||
4a54abbb DK |
1671 | 2010-02-24 Doug Kwan <[email protected]> |
1672 | ||
1673 | * arm.cc (Arm_output_data_got): New class. | |
1674 | (ARM_TCB_SIZE): New constant | |
1675 | (Target_arm): Use Arm_output_data_got instead of Output_data_got. | |
1676 | (Arm_output_section::fix_exidx_coverage): Add a parameter for layout. | |
1677 | If user uses a script with a SECTIONS clause, issue only a warning | |
1678 | for a misplaced EXIDX input section. Otherwise, issue an error. | |
1679 | (Arm_relobj::do_gc_process_relocs): Exit early if we are not doing | |
1680 | garbage collection. | |
1681 | (Target_arm::got_mode_index_entry): Handle static linking. | |
1682 | (Target_arm::Scan::local): Ditto. | |
1683 | (Target_arm::Scan::global): Ditto. | |
1684 | (Target_arm::Relocate::relocate_tls): Handle static linking. Fix | |
1685 | all incorrectly implemented relocations. | |
e1df38aa | 1686 | (Target_arm::fix_exidx_coverage): Pass layout to |
4a54abbb DK |
1687 | Arm_output_section::fix_exidx_coverage. |
1688 | * layout.cc (Layout::section_name_mapping): Remove trailing dots | |
1689 | from ".ARM.exidx." and ".ARM.extab.". | |
1690 | ||
ca419a6f ILT |
1691 | 2010-02-23 Viktor Kutuzov <[email protected]> |
1692 | ||
1693 | * arm.cc (Target_arm::do_finalize_sections): Create attribute | |
1694 | section if it does not already exist. | |
1695 | * attributes.cc (Attributes_section_data::Attributes_section_data): | |
1696 | Don't crash if size is zero. | |
1697 | ||
135b9c78 ILT |
1698 | 2010-02-23 Viktor Kutuzov <[email protected]> |
1699 | Ian Lance Taylor <[email protected]> | |
1700 | ||
1701 | * gold.cc (queue_middle_tasks): If no input files were opened, | |
1702 | exit. | |
1703 | * workqueue.h (Task_function::Task_function): Assert that there is | |
1704 | a blocker. | |
1705 | ||
bb0bfe4f DK |
1706 | 2010-02-22 Doug Kwan <[email protected]> |
1707 | ||
1708 | * gold-threads.h (Once::~Once): Explicitly define virtual destructor. | |
1709 | * icf.cc (get_section_contents): Cast snprintf arguments to long long | |
1710 | types to avoid warnings due to different uint64_t implementations | |
1711 | on different hosts. | |
1712 | ||
2a2b6d42 DK |
1713 | 2010-02-21 Doug Kwan <[email protected]> |
1714 | ||
1715 | * arm.cc (Arm_relocate_functions::arm_branch_common): Fix bug in | |
1716 | handling of the maximum backward branch offset. | |
1717 | (Arm_relocate_functions::thumb_branch_common): Ditto. | |
1718 | * testsuite/Makefile.am (check_SCRIPTS): Add arm_branch_in_range.sh. | |
1719 | (check_DATA): Add arm_bl_in_range.stdout, arm_bl_out_of_range.stdout | |
e1df38aa | 1720 | thumb_bl_in_range.stdout, thumb_bl_out_of_range.stdout, |
2a2b6d42 DK |
1721 | thumb2_bl_in_range.stdout and thumb2_bl_out_of_range.stdout. |
1722 | (arm_bl_in_range.stdout, arm_bl_in_range, arm_bl_in_range.o, | |
1723 | arm_bl_out_of_range.stdout, arm_bl_out_of_range, | |
1724 | arm_bl_out_of_range.o, thumb_bl_in_range.stdout, thumb_bl_in_range, | |
1725 | thumb_bl_in_range.o, thumb_bl_out_of_range.stdout, | |
1726 | thumb_bl_out_of_range thumb_bl_out_of_range.o, | |
1727 | thumb2_bl_in_range.stdout, thumb2_bl_in_range, thumb2_bl_in_range.o | |
1728 | thumb2_bl_out_of_range.stdout, thumb2_bl_out_of_range, | |
1729 | thumb2_bl_out_of_range.o): New rules. | |
1730 | (MOSTLYCLEANFILES): Add arm_bl_in_range, arm_bl_out_of_range, | |
1731 | thumb_bl_in_range, thumb_bl_out_of_range, thumb2_bl_in_range and | |
1732 | thumb2_bl_out_of_range | |
1733 | * testsuite/Makefile.in: Regenerate. | |
1734 | * testsuite/arm_bl_in_range.s: New file. | |
1735 | * testsuite/arm_bl_out_of_range.s: Ditto. | |
1736 | * testsuite/arm_branch_in_range.sh: Ditto. | |
1737 | * testsuite/arm_branch_range.t: Ditto. | |
1738 | * testsuite/thumb2_branch_range.t: Ditto. | |
1739 | * testsuite/thumb_bl_in_range.s: Ditto. | |
1740 | * testsuite/thumb_bl_out_of_range.s: Ditto. | |
1741 | * testsuite/thumb_branch_range.t: Ditto. | |
1742 | ||
b487ad64 ST |
1743 | 2010-02-20 Sriraman Tallam <[email protected]> |
1744 | ||
1745 | * gc.h (gc_process_relocs): Change vectors to point to the new list. | |
1746 | Add reloc offset information. | |
1747 | * icf.cc (get_section_contents): Change iterators to point to the new | |
1748 | vectors. Add reloc offset information to the contents. | |
1749 | * icf.h (Icf::Sections_reachable_info): New typedef. | |
1750 | (Icf::Sections_reachable_list): New typedef. | |
1751 | (Icf::Offset_info): New typedef. | |
1752 | (Icf::Reloc_info): New struct typedef. | |
1753 | (Icf::Reloc_info_list): New typedef. | |
1754 | (Icf::symbol_reloc_list): Delete method. | |
1755 | (Icf::addend_reloc_list): Delete method. | |
1756 | (Icf::section_reloc_list): Delete method. | |
1757 | (Icf::reloc_info_list): New method. | |
1758 | (Icf::reloc_info_list_): New member. | |
1759 | ||
f96accdf DK |
1760 | 2010-02-19 Doug Kwan <[email protected]> |
1761 | ||
1762 | * arm-reloc.def: Mark R_ARM_TLS_GD32, R_ARM_TLS_LDM32, | |
1763 | R_ARM_TLS_LDO32, R_ARM_TLS_IE32 and R_ARM_TLS_LE32 are implemented. | |
1764 | * arm.cc (Arm_relocation_functions): New forward declaration. | |
1765 | (Target_arm::Target_arm): Initialize new data members | |
1766 | got_mod_index_offset_ and tls_base_symbol_defined_. | |
1767 | (Target_arm::Relocate::relocate_tls): New method. | |
1768 | (Target_arm::optimize_tls_reloc, Target_arm::define_tls_base_symbol, | |
1769 | Target_arm::got_mod_index_entry, Target_arm::rel_tls_desc_section): | |
1770 | New methods. | |
1771 | (Target_arm::Got_type): Add GOT_TYPE_TLS_NOFFSET, GOT_TYPE_OFFSET, | |
1772 | GOT_TYPE_TLS_PAIR and GOT_TYPE_TLS_DESC. | |
1773 | (Target_arm::got_mod_index_offset_, | |
1774 | Target_arm::tls_base_symbol_defined_): New data members. | |
1775 | (Target_arm::Scan::local, Target::Scan::global, | |
1776 | Target_arm::Relocate::relocate): Handle 32-bit initial TLS | |
1777 | relocations. | |
1778 | ||
c8761b9a DK |
1779 | 2010-02-18 Doug Kwan <[email protected]> |
1780 | ||
1781 | * arm.cc (Arm_relobj::find_linked_text_section): New method. | |
1782 | (Arm_relobj::make_exidx_input_section): Pass section index of linked | |
1783 | text section as a parameter becuase some broken tools may not set | |
1784 | the link in section header. | |
1785 | (Target_arm::has_got_section): New method. | |
1786 | (Target_arm::scan_section_for_cortex_a8_stubs): Treat an input section | |
1787 | without any mapping symbol as data only. Remove warning. | |
1788 | (Arm_relobj::do_read_synbols): If an EXIDX input section has no | |
1789 | link in its section header, try to discover the link by inspecting the | |
1790 | REL31 relocation at the beginning of the section. | |
1791 | (Target_arm::Scan::check_non_pic): Report name of offending relocation | |
1792 | in error message. | |
1793 | (Target_arm::Scan::global): Treat any reference to the symbol | |
1794 | _GLOBAL_OFFSET_TABLE_ as a GOT access. | |
1795 | ||
21bb3914 ST |
1796 | 2010-02-12 Sriraman Tallam <[email protected]> |
1797 | ||
1798 | * arm.cc (Scan::local_reloc_may_be_function_pointer): New function. | |
1799 | (Scan::global_reloc_may_be_function_pointer): New function. | |
1800 | * sparc.cc (Scan::local_reloc_may_be_function_pointer): New function. | |
1801 | (Scan::global_reloc_may_be_function_pointer): New function. | |
1802 | * powerpc.cc (Scan::local_reloc_may_be_function_pointer): New function. | |
1803 | (Scan::global_reloc_may_be_function_pointer): New function. | |
1804 | * i386.cc (Scan::local_reloc_may_be_function_pointer): New function. | |
1805 | (Scan::global_reloc_may_be_function_pointer): New function. | |
1806 | * x86_64.cc (Scan::local_reloc_may_be_function_pointer): New function. | |
1807 | (Scan::global_reloc_may_be_function_pointer): New function. | |
1808 | (Scan::possible_function_pointer_reloc): New function. | |
1809 | (Target_x86_64::can_check_for_function_pointers): New function. | |
1810 | * gc.h (gc_process_relocs): Scan relocation types to determine if | |
1811 | function pointers were taken for targets that support it. | |
1812 | * icf.cc (Icf::find_identical_sections): Include functions for | |
1813 | folding in safe ICF whose pointer is not taken. | |
1814 | * icf.h (Secn_fptr_taken_set): New typedef. | |
1815 | (fptr_section_id_): New member. | |
1816 | (section_has_function_pointers): New function. | |
1817 | (set_section_has_function_pointers): New function. | |
1818 | (check_section_for_function_pointers): New function. | |
1819 | * options.h: Fix comment for safe ICF option. | |
1820 | * target.h (can_check_for_function_pointers): New function. | |
1821 | * testsuite/Makefile.am: Add icf_safe_so_test test case. | |
1822 | Modify icf_safe_test for X86-64. | |
1823 | * testsuite/Makefile.in: Regenerate. | |
1824 | * testsuite/icf_safe_so_test.cc: New file. | |
1825 | * testsuite/icf_safe_so_test.sh: New file. | |
1826 | * testsuite/icf_safe_test.cc (kept_func_3): New function. | |
1827 | (main): Change to take pointer to function kept_func_3. | |
1828 | * testsuite/icf_safe_test.sh (arch_specific_safe_fold): Check if safe | |
1829 | folding is done correctly for X86-64. | |
1830 | ||
0da6fa6c DM |
1831 | 2010-02-12 David S. Miller <[email protected]> |
1832 | ||
1833 | * output.h (Output_reloc<SHT_REL>::Output_reloc): Add | |
1834 | is_symbolless parameter. | |
1835 | (Output_reloc<SHT_REL>::is_symbolless): New. | |
1836 | (Output_reloc<SHT_REL>::is_symbolless_): New. | |
1837 | (Output_reloc<SHT_REL>::type_): Decrease to 29 bits. | |
1838 | (Output_reloc<SHT_RELA>::Output_reloc): Add is_symbolless parameter. | |
1839 | (Output_reloc<SHT_RELA>::is_symbolless): New. | |
1840 | (Output_data_reloc::add_global): Handle is_symbolless. | |
1841 | (Output_data_reloc::add_global_relative): Likewise. | |
1842 | (Output_data_reloc::add_local): Likewise. | |
1843 | (Output_data_reloc::add_local_relative): Likewise. | |
1844 | (Output_data_reloc::add_symbolless_global_addend): New. | |
1845 | (Output_data_reloc::add_symbolless_local_addend): New. | |
1846 | * output.cc (Output_reloc<SHT_REL>::Output_reloc): Handle | |
1847 | is_symbolless. | |
1848 | (Output_reloc::set_needs_dynsym_index): Test ->is_symbolless_ | |
1849 | instead of ->is_relative_ | |
1850 | (Output_reloc::write): Likewise. | |
1851 | (Output_reloc::get_symbol_index): Return 0 when ->is_symbolless_ | |
1852 | (Output_reloc::write_rel): Simplify. | |
1853 | ||
1854 | * sparc.cc (Target_sparc::Scan::local): Use | |
1855 | ->add_symbolless_local_addend as needed. | |
1856 | (Target_sparc::Scan::global): Use ->add_symbolless_global_addend as | |
1857 | needed. Also, emit appropriate unaligned vs. aligned dynamic reloc | |
1858 | based upon relocation offset. | |
1859 | ||
e4782e83 DK |
1860 | 2010-02-11 Doug Kwan <[email protected]> |
1861 | ||
1862 | * arm.cc (Target_arm::Scan::local): Fix bugs in relocation handling. | |
1863 | (Target_arm::Scan::global): Ditto. Also remove a comment before the | |
1864 | beginning of function. | |
1865 | (Target_arm::Relocate::relocate): Remove error messages for MOVW_ABS | |
1866 | and MOVT_ABS relocations. Those are non issued in scanning. Fix | |
1867 | parameter is_32bit in calls to should_apply_static_reloc. | |
1868 | * testsuite/Makefile.am (check_SCRIPTS): Add arm_abs_global.sh. | |
1869 | (check_DATA): Add arm_abs_global.stdout. | |
1870 | (arm_abs_lib.o, libarm_abs.so, arm_abs_global.o, arm_abs_global, | |
1871 | arm_abs_global.stdout): New rules. | |
1872 | (MOSTLLYCLEANFILES): Add arm_abs_global | |
1873 | * Makefile.in: Regenerate. | |
1874 | * testsuite/arm_abs_global.s: New file. | |
1875 | * testsuite/arm_abs_global.sh: Ditto. | |
1876 | * testsuite/arm_abs_lib.s: Ditto. | |
1877 | ||
93ceb764 ILT |
1878 | 2010-02-11 Ian Lance Taylor <[email protected]> |
1879 | ||
1880 | * gold.cc (queue_middle_gc_tasks): Use a separate blocker for each | |
1881 | Read_relocs task. | |
1882 | (queue_middle_tasks): Likewise, and also for Scan_relocs. Run | |
1883 | Allocate_commons_task first. | |
1884 | * reloc.cc (Read_relocs::run): Pass next_blocker_ down to next | |
1885 | task, rather than symtab_lock_. | |
1886 | (Gc_process_relocs::~Gc_process_relocs): New function. | |
1887 | (Gc_process_relocs::is_runnable): Check this_blocker_. | |
1888 | (Gc_process_relocs::locks): Use next_blocker_ rather than | |
1889 | blocker_. | |
1890 | (Scan_relocs::~Scan_relocs): New function. | |
1891 | (Scan_relocs::is_runnable): Check this_blocker_ rather than | |
1892 | symtab_lock_. | |
1893 | (Scan_relocs::locks): Drop symtab_lock_ and blocker_. Add | |
1894 | next_blocker_. | |
1895 | * reloc.h (class Read_relocs): Drop symtab_lock_ and blocker_ | |
1896 | fields. Add this_blocker_ and next_blocker_ fields. Adjust | |
1897 | constructor accordingly. | |
1898 | (class Gc_process_relocs): Likewise. | |
1899 | (class Scan_relocs): Likewise. | |
1900 | * common.h (class Allocate_commons_task): Remove symtab_lock_ | |
1901 | field, and corresponding constructor parameter. | |
1902 | * common.cc (Allocate_commons_tasK::is_runnable): Remove use of | |
1903 | symtab_lock_. | |
1904 | (Allocate_commons_task::locks): Likewise. | |
1905 | ||
114dfbe1 ILT |
1906 | 2010-02-11 Ian Lance Taylor <[email protected]> |
1907 | ||
1908 | * gold-threads.h (class Once): Define. | |
1909 | (class Initialize_lock): Rewrite as child of Once. | |
1910 | * gold-threads.cc (class Once_initialize): Define. | |
1911 | (once_pointer_control): New static variable. | |
1912 | (once_pointer, once_arg): New static variables. | |
1913 | (c_run_once): New static function. | |
1914 | (Once::Once, Once::run_once, Once::internal_run): New functions. | |
1915 | (class Initialize_lock_once): Remove. | |
1916 | (initialize_lock_control): Remove. | |
1917 | (initialize_lock_pointer): Remove. | |
1918 | (initialize_lock_once): Remove. | |
1919 | (Initialize_lock::Initialize_lock): Move to gold-threads.h. | |
1920 | (Initialize_lock::initialize): Rewrite. | |
1921 | (Initialize_lock::do_run_once): New function. | |
1922 | * archive.cc (Archive::interpret_header): Only clear name if it is | |
1923 | not already empty. | |
1924 | * fileread.cc: Include "gold-threads.h" | |
1925 | (file_counts_lock): New static variable. | |
1926 | (file_counts_initialize_lock): Likewise. | |
1927 | (File_read::release): Only increment counts when using --stats. | |
1928 | Use a lock around the increment. | |
1929 | * parameters.cc (class Set_parameters_target_once): Define. | |
1930 | (set_parameters_target_once): New static variable. | |
1931 | (Parameters::Parameters): Move here from parameters.h. | |
1932 | (Parameters::set_target): Rewrite. | |
1933 | (Parameters::set_target_once): New function. | |
1934 | (Parameters::clear_target): Move here and rewrite. | |
1935 | * parameters.h (class Parameters): Update declarations. Add | |
1936 | set_parameters_target_once_ field. | |
1937 | (Parameters::Parameters): Move to parameters.cc. | |
1938 | (Parameters::clear_target): Likewise. | |
1939 | * readsyms.cc (Read_symbols::do_group): Create a Start_group | |
1940 | task. | |
1941 | (Start_group::~Start_group): New function. | |
1942 | (Start_group::is_runnable): New function. | |
1943 | (Start_group::locks, Start_group::run): New functions. | |
1944 | (Finish_group::run): Change saw_undefined to size_t. | |
1945 | * readsyms.h (class Start_group): Define. | |
1946 | (class Finish_group): Change saw_undefined_ field to size_t. | |
1947 | (Finish_group::Finish_group): Remove saw_undefined and | |
1948 | this_blocker parameters. Change all callers. | |
1949 | (Finish_group::set_saw_undefined): New function. | |
1950 | (Finish_group::set_blocker): New function. | |
1951 | * symtab.h (class Symbol_table): Change saw_undefined to return | |
1952 | size_t. Change saw_undefined_ field to size_t. | |
1953 | * target-select.cc (Set_target_once::do_run_once): New function. | |
1954 | (Target_selector::Target_selector): Initialize set_target_once_ | |
1955 | field. Don't initialize lock_ and initialize_lock_ fields. | |
1956 | (Target_selector::instantiate_target): Rewrite. | |
1957 | (Target_selector::set_target): New function. | |
1958 | * target-select.h (class Set_target_once): Define. | |
1959 | (class Target_selector): Update declarations. Make | |
1960 | Set_target_once a friend. Remove lock_ and initialize_lock_ | |
1961 | fields. Add set_target_once_ field. | |
1962 | ||
fa17a3f4 ILT |
1963 | 2010-02-10 Ian Lance Taylor <[email protected]> |
1964 | ||
1965 | * dirsearch.cc (Dirsearch::initialize): Add all blockers before | |
1966 | queueing any tasks. | |
1967 | * gold.cc (queue_middle_gc_tasks): Likewise. Fix final blocker. | |
1968 | (queue_middle_tasks): Add all blockers before queueing any tasks. | |
1969 | (queue_final_tasks): Likewise. | |
1970 | * token.h (Task_token::add_blockers): New function. | |
1971 | * object.h (Input_objects::number_of_relobjs): New function. | |
1972 | ||
c7177d31 ILT |
1973 | 2010-02-10 Ian Lance Taylor <[email protected]> |
1974 | ||
5de0e392 ILT |
1975 | * i386.cc (Relocate::relocate_tls): A local symbol is final if not |
1976 | shared, not if not position independent. | |
1977 | * x86_64.cc (Relocate::relocate_tls): Likewise. | |
1978 | * testsuite/Makefile.am (check_PROGRAMS): Add tls_pie_pic_test. | |
1979 | (tls_pie_pic_test): New target. | |
1980 | * testsuite/Makefile.in: Rebuild. | |
1981 | ||
c7177d31 ILT |
1982 | * testsuite/Makefile.am (check_PROGRAMS): Add tls_pie_test. |
1983 | (tls_test_main_pie.o, tls_test_pie.o): New targets. | |
1984 | (tls_test_file2_pie.o, tls_test_c_pie.o, tls_pie_test): Likewise. | |
1985 | * testsuite/Makefile.in: Rebuild. | |
1986 | ||
684b268a DM |
1987 | 2010-02-09 David S. Miller <[email protected]> |
1988 | ||
1989 | * sparc.cc (Target_sparc::Scan::local): Do not emit relocs other than | |
1990 | R_SPARC_RELATIVE using ->add_local_relative(). | |
1991 | (Target_sparc::Scan::global): Likewise for ->add_global_relative(). | |
1992 | ||
612a8d3d DM |
1993 | * output.h (Output_data_dynamic::add_section_size): New method |
1994 | that takes two Output_data objects. | |
1995 | (Output_data_dynamic::Dynamic_entry): Create storage for secondary | |
1996 | entry param. Handle it in initializers. | |
1997 | * output.cc (Output_data_dynamic::Dynamic_entry::write): For | |
1998 | DYNAMIC_SECTION_SIZE, add in second object size if non-NULL. | |
1999 | * layout.h (Layout::add_target_dynamic_tags): Add dynrel_includes_plt | |
2000 | arg. | |
2001 | * layout.cc (Layout::add_target_dynamic_tags): If dynrel_includes_plt, | |
2002 | and .rela.plt exists, set DT_REL{,A}SZ to sum of .rela.dyn and .rela.plt | |
2003 | * arm.cc (Target_arm::do_finalize_sections): Update to pass false | |
2004 | for dynrel_includes_plt. | |
2005 | * i386.cc (Target_i386::do_finalize_sections): Likewise. | |
2006 | * x86_64.cc (Target_x86_64::do_finalize_sections): Likewise. | |
2007 | * sparc.cc (Target_sparc::make_plt_entry): Force .rela.dyn to be output | |
2008 | before .rela.plt | |
2009 | (Target_sparc::do_finalize_sections): Update to pass true for | |
2010 | dynrel_includes_plt. | |
2011 | * powerpc.cc (Target_powerpc::make_plt_entry): Force .rela.dyn to be | |
2012 | output before .rela.plt | |
2013 | (Target_powerpc::do_finalize_sections): Update to pass true for | |
2014 | dynrel_includes_plt when 32-bit. | |
2015 | ||
cb1be87e DK |
2016 | 2010-02-08 Doug Kwan <[email protected]> |
2017 | ||
2018 | * arm.cc (Arm_relobj::simple_input_section_output_address): New | |
2019 | method. | |
2020 | (Arm_relobj::section_needs_cortex_a8_stub_scanning, | |
2021 | Arm_relobj::scan_section_for_cortex_a8_stubs, | |
2022 | Arm_relobj::do_relocation_section): Instead of calling | |
2023 | Output_section::output_address, use faster | |
2024 | Arm_relobj::simple_input_section_output_address. | |
2025 | ||
705b5121 DM |
2026 | 2010-02-08 David S. Miller <[email protected]> |
2027 | ||
2028 | * sparc.cc (Target_sparc::Relocate::relocate): If relocation offset is | |
2029 | unaligned for R_SPARC_16, R_SPARC_32, or R_SPARC_64, use the unaligned | |
2030 | relocation helper function. | |
2031 | ||
024c4466 DM |
2032 | * sparc.cc (Target_sparc::Scan::local): Handle R_SPARC_GOTDATA_OP* |
2033 | just like R_SPARC_GOT{10,13,22}. | |
2034 | (Target_sparc::Scan::local): Likewise. | |
2035 | (Target_sparc::Relocate:relocate): Likewise. | |
2036 | ||
9109c078 ILT |
2037 | 2010-02-06 Ian Lance Taylor <[email protected]> |
2038 | ||
2039 | * configure.ac: Rewrite targetobjs duplicate removal code to use | |
2040 | only shell constructs. | |
2041 | * configure: Rebuild. | |
2042 | ||
cf846138 DK |
2043 | 2010-02-05 Doug Kwan <[email protected]> |
2044 | ||
2045 | PR 11247 | |
2046 | * arm.cc (Arm_relobj::section_is_scannable): New method. | |
2047 | (Arm_relobj::section_needs_reloc_stub_scanning): Use it. | |
2048 | (Arm_relobj::section_needs_cortex_a8_stub_scanning): Same. | |
2049 | ||
6cfaf60b DK |
2050 | 2010-02-04 Doug Kwan <[email protected]> |
2051 | ||
2052 | PR 11247 | |
2053 | * arm-reloc-property.cc (cstdio): Include. | |
2054 | * configure.ac (targetobjs): Remove duplicates. | |
2055 | * configure: Regenerate. | |
2056 | * resolve.cc (Symbol_table::resolve): Explicit instantiate both | |
2057 | big and little endian version for a given address size. | |
2058 | ||
5c57f1be DK |
2059 | 2010-02-03 Doug Kwan <[email protected]> |
2060 | ||
2061 | * arm-reloc-property.cc | |
2062 | (Arm_reloc_property_table::reloc_name_in_error_message): New method | |
2063 | definition. | |
2064 | * arm-reloc-property.h | |
2065 | (Arm_reloc_property_table::get_implemented_static_reloc_property): | |
2066 | New method definition. | |
2067 | (Arm_reloc_property_table::reloc_name_in_error_message): New method | |
2068 | declaration. | |
2069 | * arm-reloc.def (THM_MOVT_ABS, THM_MOVT_PREL, THM_MOVT_BREL): Change | |
2070 | overflow to N. | |
2071 | (GOT_PREL): Change implemented to Y. | |
2072 | * arm.cc (Target_arm::reloc_uses_thumb_bit): Remove method. | |
2073 | (Target_arm::Relocate::reloc_needs_sym_origin): Remove method. | |
2074 | (Arm_relocate_functions::movw_abs_nc): Remove method. | |
2075 | (Arm_relocate_functions::movt_abs): Ditto. | |
2076 | (Arm_relocate_functions::thm_movw_abs_nc): Ditto. | |
2077 | (Arm_relocate_functions::thm_movt_abs): Ditto. | |
2078 | (Arm_relocate_functions::movw_rel_nc): Ditto. | |
2079 | (Arm_relocate_functions::movw_rel): Ditto. | |
2080 | (Arm_relocate_functions::movt_rel): Ditto. | |
2081 | (Arm_relocate_functions:thm_movw_rel_nc): Ditto. | |
2082 | (Arm_relocate_functions:thm_movw_rel): Ditto. | |
2083 | (Arm_relocate_functions:thm_movt_rel): Ditto. | |
2084 | (Arm_relocate_functions::movw, Arm_relocate_functions::movt, | |
2085 | (Arm_relocate_functions::thm_movw, Arm_relocate_functions::thm_movt): | |
2086 | New method definitions. | |
2087 | (Arm_relocation_functions::arm_grp_alu): Add assertion for group index. | |
2088 | (Arm_relocation_functions::arm_grp_ldr): Ditto. | |
2089 | (Arm_relocation_functions::arm_grp_ldrs): Ditto. | |
2090 | (Arm_relocation_functions::arm_grp_ldc): Ditto. | |
2091 | (Target_arm::Relocate::relocate): Check for non-static or | |
2092 | unimplemented relocation code and exit early. Change calls to | |
2093 | Target_arm::reloc_uses_thumb_bit and | |
2094 | Target_arm::Reloc::reloc_needs_sym_origin to use relocation property | |
2095 | instead. Refactor code to handle similar relocations to increase | |
2096 | code sharing. Remove check for unsupported relocation code in switch | |
2097 | statement. | |
2098 | (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc): Use | |
2099 | relocation property table to find out size. Change error message to | |
2100 | print out the name of a relocation code instead of the numeric value. | |
2101 | (Target_arm::scan_reloc_for_stub): Use relocation property table | |
2102 | instead of calling Target_arm::reloc_uses_thumb_bit(). | |
2103 | ||
218c5831 DK |
2104 | 2010-02-02 Doug Kwan <[email protected]> |
2105 | ||
2106 | * arm.cc (Target_arm::relocate_section): Do view adjustment for all | |
2107 | types of relaxed input section. | |
2108 | ||
0d31c79d DK |
2109 | 2010-02-02 Doug Kwan <[email protected]> |
2110 | ||
2111 | * Makefile.am (HFILES): Add arm-reloc-property.h. | |
2112 | (DEFFILES): New. | |
2113 | (TARGETSOURCES): Add arm-reloc-property.cc | |
2114 | (ALL_TARGETOBJS): Add arm-reloc-property.$(OBJEXT) | |
2115 | (libgold_a_SOURCES): $(DEFFILES) | |
2116 | * Makefile.in: Regenerate. | |
2117 | * arm-reloc-property.cc: New file. | |
2118 | * arm-reloc-property.h: New file. | |
2119 | * arm-reloc.def: New file. | |
2120 | * arm.cc: Update comments. | |
2121 | (arm-reloc-property.h): New included header. | |
2122 | (arm_reloc_property_table): New global variable. | |
2123 | (Target_arm::do_select_as_default_target): New method definition. | |
2124 | * configure.tgt (armeb*-*-*,armbe*-*-*,arm*-*-*): Add | |
2125 | arm-reloc-property to targ_extra_obj. | |
2126 | * parameters.cc (set_parameters_target): Call | |
2127 | Target::select_as_default_target(). | |
2128 | * target.h (Target::select_as_default_target): New method definition. | |
2129 | (Target::do_select_as_default_target): Same. | |
2130 | ||
546c7457 DK |
2131 | 2010-02-01 Doug Kwan <[email protected]> |
2132 | ||
2133 | * arm.cc (Arm_exidx_fixup::Arm_exidx_fixup): Initialize | |
2134 | first_output_text_section_. | |
2135 | (Arm_exidx_fixup::first_output_text_section): New method definition. | |
2136 | (Arm_exidx_fixup::first_output_text_section_): New data member. | |
2137 | (Arm_exidx_fixup::process_exidx_section): Record the first text | |
2138 | output section seen. | |
2139 | (Arm_output_section::fix_exidx_coverage): Set correct linked section | |
2140 | and entsize in output section header. | |
2141 | ||
11b861d5 DK |
2142 | 2010-01-29 Viktor Kutuzov <[email protected]> |
2143 | ||
2144 | * gold/arm.cc: Added support for the ARM relocations: R_ARM_THM_PC8, | |
2145 | R_ARM_THM_PC12, R_ARM_THM_ALU_PREL_11_0. | |
2146 | (Arm_relocate_functions::thm_alu11): New Method. | |
2147 | (Arm_relocate_functions::thm_pc8): New Method. | |
2148 | (Arm_relocate_functions::thm_pc12): New Method. | |
2149 | (Target_arm::Scan::local): Handle the relocations. | |
2150 | (Target_arm::Scan::global): Likewise. | |
2151 | (Target_arm::Relocate::relocate): Likewise. | |
2152 | (Target_arm:Relocatable_size_for_reloc::get_size_for_reloc): Likewise. | |
2153 | ||
c9a2c125 DK |
2154 | 2010-01-29 Doug Kwan <[email protected]> |
2155 | ||
2156 | * arm.cc (Target_arm::Scan::global): General PLTs for the same set | |
2157 | of relocation types as ld. | |
2158 | ||
1521477a DK |
2159 | 2010-01-29 Doug Kwan <[email protected]> |
2160 | ||
2161 | * arm.cc (Arm_relocate_functions::arm_branch_common) Change visibility | |
2162 | to public. | |
2163 | (Arm_relocate_functions::thumb_branch_common): Ditto. | |
2164 | (Arm_relocate_functions::thm_call, Arm_relocate_functions::thm_jump24, | |
2165 | Arm_relocate_functions::thm_xpc22, Arm_relocate_functions::plt32, | |
2166 | Arm_relocate_functions::xpc25, Arm_relocate_functions::call, | |
2167 | Arm_relocate_functions::jump24): Remove. | |
2168 | (Target_arm::Relocate::relocate): Adjust code to call | |
2169 | Arm_relocation_functions::arm_branch_common and | |
2170 | Arm_relocation_functions::thumb_branch_common instead of their removed | |
e1df38aa | 2171 | wrappers. Merge switch-cases together to reduce source code size. |
1521477a | 2172 | |
e7eca48c DK |
2173 | 2010-01-29 Doug Kwan <[email protected]> |
2174 | ||
2175 | * arm.cc (Arm_relobj::Arm_relobj): Initialize new data member | |
2176 | output_local_symbol_count_needs_update_. | |
2177 | (Arm_relobj::output_local_symbol_count_needs_update, | |
2178 | Arm_relobj::set_output_local_symbol_count_needs_update, | |
2179 | Arm_relobj::update_output_local_symbol_count): New methods. | |
2180 | (Arm_relobj::output_local_symbol_count_needs_update_): New data | |
2181 | member. | |
2182 | (Arm_exidx_cantunwind::do_fixed_endian_write): Write address | |
2183 | of pointed function as in a R_ARM_PREL31 relocation. | |
2184 | (Arm_output_section<big_endian>::fix_exidx_coverage): Mark objects | |
2185 | for output local symbol count updating. | |
2186 | (Target_arm::do_relax): Update output local symbol counts in objects | |
2187 | if necessary. | |
2188 | * object.h (Sized_relobj::set_output_local_symbol_count): New method. | |
2189 | ||
02961d7e ILT |
2190 | 2010-01-29 Viktor Kutuzov <[email protected]> |
2191 | ||
2192 | * arm.cc: Added support for the ARM relocations: | |
2193 | R_ARM_MOVW_BREL_NC, R_ARM_MOVT_BREL, R_ARM_MOVW_BREL, | |
2194 | R_ARM_THM_MOVW_BREL_NC, R_ARM_THM_MOVT_BREL, R_ARM_THM_MOVW_BREL. | |
2195 | (Arm_relocate_functions::movw_rel_nc): Renamed (was | |
2196 | movw_prel_nc). | |
2197 | (Arm_relocate_functions::movw_rel): New method. | |
2198 | (Arm_relocate_functions::movt_rel): Renamed (was movt_prel). | |
2199 | (Arm_relocate_functions::thm_movw_rel_nc): Renamed (was | |
2200 | thm_movw_prel_nc). | |
2201 | (Arm_relocate_functions::thm_movw_rel): New method. | |
2202 | (Arm_relocate_functions::thm_movt_rel): Renamed (was | |
2203 | thm_movt_prel). | |
2204 | (Target_arm::Scan::local): Handle MOVW_BREL/MOVT_BREL | |
2205 | relocations. | |
2206 | (Target_arm::Scan::global): Likewise. | |
2207 | (Target_arm::Relocate::relocate): Likewise. | |
2208 | (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc): | |
2209 | Likewise. | |
2210 | ||
b10d2873 ILT |
2211 | 2010-01-27 Viktor Kutuzov <[email protected]> |
2212 | ||
2213 | * arm.cc: Added support for ARM group relocations. | |
2214 | (Target_arm::reloc_needs_sym_origin): New method. | |
2215 | (Arm_relocate_functions::calc_grp_kn): New method. | |
2216 | (Arm_relocate_functions::calc_grp_residual): New method. | |
2217 | (Arm_relocate_functions::calc_grp_gn): New method. | |
2218 | (Arm_relocate_functions::arm_grp_alu): New Method. | |
2219 | (Arm_relocate_functions::arm_grp_ldr): New Method. | |
2220 | (Arm_relocate_functions::arm_grp_ldrs): New Method. | |
2221 | (Arm_relocate_functions::arm_grp_ldc): New Method. | |
2222 | (Target_arm::Scan::local): Handle the ARM group relocations. | |
2223 | (Target_arm::Scan::global): Likewise. | |
2224 | (Target_arm::Relocate::relocate): Likewise. | |
2225 | (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc): | |
2226 | Likewise. | |
2227 | ||
2b328d4e DK |
2228 | 2010-01-26 Doug Kwan <[email protected]> |
2229 | ||
2230 | * arm.cc (set): Include. | |
2231 | (class Arm_exidx_fixup): Change type of last_input_section_ to const | |
2232 | pointer type. | |
2233 | (Arm_output_section::Text_section_list): New type. | |
2234 | (Arm_output_section::append_text_sections_to_list): New method. | |
2235 | (Arm_output_section::fix_exidx_coverage): Ditto. | |
2236 | (Arm_relobj::Arm_relobj): Initialize exidx_section_map_. | |
2237 | (Arm_relobj::convert_input_section_to_relaxed_section): Use | |
2238 | Relobj::set_section_offset() instead of | |
2239 | Sized_relobj::invalidate_section_offset(). | |
2240 | (Arm_relobj::section_needs_reloc_stub_scanning): Add an extra | |
2241 | parameter for section headers. Ignore relocation sections for | |
2242 | unallocated sections and EXIDX sections. | |
2243 | (Target_arm::fix_exidx_coverage): New method. | |
2244 | (Target_arm::output_section_address_less_than): New type. | |
2245 | (Arm_exidx_fixup::add_exidx_cantunwind_as_needed): Use index of the | |
2246 | linked text section instead of the EXIDX section. | |
2247 | (Arm_output_section::create_stub_group): Add an assertion to check | |
2248 | that this is not an EXIDX output section. | |
2249 | (Arm_output_section::append_text_sections_to_list): New method. | |
2250 | (Arm_output_section::fix_exidx_coverage): Ditto. | |
2251 | (Arm_relobj::scan_sections_for_stubs): Adjust call to | |
2252 | Arm_relobj::section_needs_reloc_stub_scanning. | |
2253 | (Target_arm::do_relax): Fix EXIDX output section coverage in the | |
2254 | first pass. | |
2255 | (Target_arm::fix_exidx_coverage): New method. | |
2256 | * object.h (Relobj::set_output_section): New method. | |
2257 | (Sized_relobj::invalidate_section_offset): Remove method. | |
2258 | (Sized_relobj::do_invalidate_section_offset): Remove method. | |
2259 | (Sized_relobj::do_set_section_offset): Handle offset value -1. | |
2260 | ||
c7f3c371 DK |
2261 | 2010-01-25 Doug Kwan <[email protected]> |
2262 | ||
2263 | * arm.cc (Arm_exidx_merged_section::do_output_offset): | |
2264 | Fix warning due to signed and unsigned comparison on a 32-bit host. | |
2265 | ||
8923b24c DK |
2266 | 2010-01-22 Doug Kwan <[email protected]> |
2267 | ||
2268 | * arm.cc (Target_arm::do_relax): Record an output section for section | |
2269 | offset adjustment it contains any stub table that has changed. | |
2270 | * layout.cc (Layout::clean_up_after_relaxation): Adjust section | |
2271 | offsets in an output section if necessary. | |
2272 | * output.cc (Output_section::Output_section): Initialize | |
2273 | section_offsets_need_adjustments_. | |
2274 | (Output_section::add_input_section_for_script): Renamed to | |
2275 | Output_section::add_simple_input_section. | |
2276 | (Output_section::save_states): Add a comment. | |
2277 | (Output_section::discard_states): New method defintion. | |
2278 | (Output_section::adjust_section_offsets): Same. | |
2279 | * output.h (Output_section::add_input_section_for_script): Renamed to | |
2280 | Output_section::add_simple_input_section. | |
2281 | (Output_section::discard_states): New method declaration. | |
2282 | (Output_section::adjust_section_offsets): Same. | |
2283 | (Output_section::section_offsets_need_adjustment, | |
2284 | Output_section::set_section_offsets_need_adjustment): New method | |
2285 | definitions. | |
2286 | (Output_section::section_offsets_need_adjustment_): New data member. | |
2287 | * script-sections.cc | |
2288 | (Output_section_element_input::set_section_address): Adjust code for | |
2289 | renaming of Output_section::add_input_section_for_script. | |
2290 | (Orphan_output_section::set_section_address): Same. | |
2291 | ||
9b2fd367 DK |
2292 | 2010-01-22 Viktor Kutuzov <[email protected]> |
2293 | ||
2294 | * gold/arm.cc (Target_arm): Updated fix_v4bx method and usage of | |
2295 | Fix_v4bx enum values . | |
2296 | * gold/options.h (General_options): New option definitions. | |
2297 | (General_options::fix_v4bx): New method. | |
2298 | (General_options::Fix_v4bx): New enum. | |
2299 | * gold/options.cc (General_options::parse_fix_v4bx): New method. | |
2300 | (General_options::parse_fix_v4bx_interworking): New method. | |
2301 | ||
80d0d023 DK |
2302 | 2010-01-22 Doug Kwan <[email protected]> |
2303 | ||
2304 | * arm.cc (Arm_exidx_fixup): New class. | |
2305 | ||
af2cdeae DK |
2306 | 2010-01-21 Doug Kwan <[email protected]> |
2307 | ||
2308 | * arm.cc (Arm_exidx_cantunwind, Arm_exidx_merged_section): New | |
2309 | classes. | |
2310 | (Arm_exidx_section_offset_map): New type. | |
2311 | ||
993d07c1 DK |
2312 | 2010-01-21 Doug Kwan <[email protected]> |
2313 | ||
2314 | * arm.cc (Arm_exidx_input_section): New class. | |
2315 | (Arm_relobj::exidx_input_section_by_link, | |
2316 | Arm_relobj::exidx_input_section_by_shndx, | |
2317 | Arm_relobj::make_exidx_input_section): New methods. | |
2318 | (read_arm_attributes_section): Remove. | |
2319 | (Arm_relobj::do_read_symbols): Look for ARM.exidx sections and record | |
2320 | information about them. | |
2321 | (Arm_dynobj::do_read_symbols): Move code in read_arm_attributes_section | |
2322 | to here. | |
2323 | ||
5ac169d4 DK |
2324 | 2010-01-20 Doug Kwan <[email protected]> |
2325 | ||
2326 | * arm.cc (Target_arm::Arm_input_section_map): Change key type from | |
2327 | Input_section_specifier to Section_id. | |
2328 | (Target_arm::new_arm_input_section: Adjust code for change of key | |
2329 | type. | |
2330 | (Target_arm::find_arm_input_section): Ditto. | |
2331 | * gc.h (object.h): Include for Section_id nand Section_id_hash. | |
2332 | (Section_id): Remove. | |
2333 | (Garbage_collection::Section_id_hash): Remove. | |
2334 | * icf.h (object.h): Include for Section_id nand Section_id_hash. | |
2335 | (Section_id): Remove. | |
2336 | (Icf::Section_id_hash): Remove. | |
2337 | * object.h (Section_id, Const_section_id, Section_id_hash, | |
2338 | Const_section_id_hash): New type definitions. | |
2339 | * output.cc (Output_section::add_relaxed_input_section): Change to | |
2340 | use Const_section_id instead of Input_section_specifier as key type. | |
2341 | (Output_section::add_merge_input_section): Ditto. | |
2342 | (Output_section::build_relaxation_map): Change to use Section_id | |
2343 | instead of Input_section_specifier as key type. | |
2344 | (Output_section::convert_input_sections_in_list_to_relaxed_sections): | |
2345 | Ditto. | |
2346 | (Output_section::convert_input_sections_to_relaxed_sections): Change | |
2347 | to use Const_section_id instead of Input_section_specifier as key type. | |
2348 | (Output_section::find_merge_section): Ditto. | |
2349 | (Output_section::find_relaxed_input_section): Ditto. | |
2350 | * output.h (Input_section_specifier): Remove class. | |
2351 | (Output_section::Output_section_data_by_input_section_map): Change | |
2352 | key type to Const_section_id. | |
2353 | (Output_section::Output_relaxed_input_section_by_input_section_map): | |
2354 | Ditto. | |
2355 | (Output_section::Relaxation_map): Change key type to Section_id. | |
2356 | ||
a2162063 ILT |
2357 | 2010-01-20 Viktor Kutuzov <[email protected]> |
2358 | ||
2359 | * gold/arm.cc: Added support for R_ARM_V4BX relocation | |
2360 | (class Arm_v4bx_stub): New class. | |
2361 | (DEF_STUBS): Updated definition to support v4_veneer_bx. | |
2362 | (Stub_factory::make_arm_v4bx_stub): New method. | |
2363 | (Stub_factory::elf32_arm_stub_v4_veneer_bx): New veneer template. | |
2364 | (Stub_table::empty): Handle v4bx stubs. | |
2365 | (Stub_table::add_arm_v4bx_stub): New method. | |
2366 | (Stub_table::find_arm_v4bx_stub): New method. | |
2367 | (Arm_relocate_functions::v4bx): New method. | |
2368 | (Target_arm::fix_v4bx): New method. | |
2369 | (Target_arm::Target_arm): Handle R_ARM_V4BX. | |
2370 | (Stub_table::relocate_stubs): Likewise. | |
2371 | (Stub_table::do_write): Likewise. | |
2372 | (Stub_table::update_data_size_and_addralign): Likewise. | |
2373 | (Stub_table::finalize_stubs): Likewise. | |
2374 | (Target_arm::Scan::local): Likewise. | |
2375 | (Target_arm::Scan::global): Likewise. | |
2376 | (Target_arm::do_finalize_sections): Likewise. | |
2377 | (Target_arm::Relocate::relocate): Likewise. | |
2378 | (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc): | |
2379 | Likewise. | |
2380 | (Target_arm::scan_reloc_for_stub): Likewise. | |
2381 | (Target_arm::scan_reloc_section_for_stubs): Likewise. | |
2382 | ||
5696ab0b ILT |
2383 | 2010-01-19 Ian Lance Taylor <[email protected]> |
2384 | ||
2385 | * output.cc (Output_section_headers::do_sized_write): Write large | |
2386 | segment count to sh_info field. | |
2387 | (Output_file_header::do_sized_write): For large segment count, | |
2388 | write PN_XNUM to e_phnum field. | |
2389 | ||
800d0f56 ILT |
2390 | 2010-01-15 Viktor Kutuzov <[email protected]> |
2391 | ||
2392 | * arm.cc (Arm_relocate_functions::thm_jump6): New function. | |
2393 | (Arm_relocate_functions::thm_jump8): New function. | |
2394 | (Arm_relocate_functions::thm_jump11): New function. | |
2395 | (Target_arm::Scan::local): Handle R_ARM_THM_JUMP6, R_ARM_THM_JUMP8, | |
2396 | R_ARM_THM_JUMP11. | |
2397 | (Target_arm::Scan::global): Likewise. | |
2398 | (Target_arm::Relocate::relocate): Likewise. | |
2399 | (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc): | |
2400 | Likewise. | |
2401 | ||
41263c05 DK |
2402 | 2010-01-14 Doug Kwan <[email protected]> |
2403 | ||
2404 | * arm.cc (map, utility): Include headers. | |
2405 | (Target_arm::apply_cortex_a8_workaround): New method. | |
2406 | (Arm_relobj::do_relocate_sections): Apply any Cortex-A8 workaround. | |
2407 | (Target_arm::Scan::local): Handle R_ARM_THM_JUMP24, R_ARM_THM_JUMP19. | |
2408 | (Target_arm::Scan::global): R_ARM_THM_JUMP19. | |
2409 | (Target_arm::do_finalize_sections): Set fix_cortex_a8_ according to | |
2410 | the --[no-]fix-cortex-a8 command line options. | |
2411 | (Target_arm::Relocate::relocate): Handle R_ARM_JUMP19. | |
2412 | (Target_arm::relocate_stub): Use addend in instruction template. | |
2413 | * options.h (DEFINE_bool): Set the user-set flag. | |
2414 | (General_options): Add --[no-]-fix-cortex options. | |
2415 | * output.cc (Output_section::convert_input_sections_to_relaxed_sections) | |
e1df38aa | 2416 | : Update fast look-up map after conversion. |
41263c05 | 2417 | |
459e9b03 ST |
2418 | 2010-01-14 Sriraman Tallam <[email protected]> |
2419 | ||
2420 | * object.cc (Sized_relobj::do_layout): Change to call layout_gnu_stack | |
2421 | in the first pass of do_layout. | |
2422 | ||
b521dfe4 DK |
2423 | 2010-01-13 Doug Kwan <[email protected]> |
2424 | ||
2425 | * arm.cc (Arm_relobj::section_needs_reloc_stub_scanning, | |
2426 | Arm_relobj::scan_sections_for_stubs): Rearrange code to avoid an | |
2427 | apparent compiler problem of not folding static constant integral | |
2428 | data members of elfcpp::Elf_sizes<32>. | |
2429 | ||
44272192 DK |
2430 | 2010-01-13 Doug Kwan <[email protected]> |
2431 | ||
2432 | * arm.cc (Arm_relobj::section_needs_reloc_stub_scanning, | |
2433 | Arm_relobj::section_needs_cortex_a8_stub_scanning, | |
2434 | Arm_relobj::scan_section_for_cortex_a8_erratum, | |
2435 | Arm_relobj::scan_span_for_cortex_a8_erratum): New methods. | |
2436 | (Arm_relobj::scan_sections_for_stubs): Move code deciding what | |
2437 | sections to scan for relocation stubs into a new method | |
2438 | Arm_relobj::section_needs_reloc_stub_scanning. Handle both | |
2439 | relocation and Cortex-A8 stub scanning. | |
2440 | (Target_arm::do_relax): Force stubs to be after stubbed sections | |
2441 | if fixing the Cortex-A8 erratum. Remove all Cortex-A8 stubs at | |
e1df38aa | 2442 | the beginning of a new relaxation pass. Update a comment. |
44272192 DK |
2443 | (Target_arm::scan_span_for_cortex_a8_erratum): New method definition. |
2444 | ||
44b71ece ILT |
2445 | 2010-01-12 Ian Lance Taylor <[email protected]> |
2446 | ||
2447 | * target-reloc.h (visibility_error): New inline function. | |
2448 | (relocate_section): Call visibility_error. | |
2449 | * testsuite/Makefile.am (check_DATA): Add protected_3.err. | |
2450 | (MOSTLYCLEANFILES): Likewise. | |
2451 | (protected_4_pic.o, protected_3.err): New targets. | |
2452 | * testsuite/protected_4.cc: New file. | |
2453 | ||
a120bc7f DK |
2454 | 2010-01-12 Doug Kwan <[email protected]> |
2455 | ||
2456 | * arm.cc (Cortex_a8_reloc): New class. | |
2457 | (Target_arm::Target_arm): Initialize new data members fix_cortex_a8_ | |
2458 | and cortex_a8_relocs_info_. | |
2459 | (Target_arm::fix_cortex_a8): New method definition. | |
2460 | (Target_arm::Cortex_a8_relocs_info): New type. | |
2461 | (Target_arm::fix_cortex_a8_, Target_arm::cortex_a8_relocs_info_): | |
2462 | New data member declarations. | |
2463 | (Target_arm::scan_reloc_for_stub): Record information about | |
2464 | relocations for THUMB branches that might be exempted from the | |
2465 | Cortex-A8 workaround. | |
2466 | (Target_arm::do_relax): Clear all Cortex-A8 relocation information | |
2467 | at the beginning of a relaxation pass. | |
2468 | ||
20138696 DK |
2469 | 2010-01-12 Doug Kwan <[email protected]> |
2470 | ||
2471 | * arm.cc (Arm_relobj::mapping_symbols_info_): New data member. | |
2472 | (Arm_relobj::Mapping_symbol_position, | |
2473 | Arm_reloj::Mapping_symbol_position_less, | |
2474 | Arm_relobj::Mapping_symbols_info): New types. | |
2475 | (Target_arm::is_mapping_symbol_name): New method definition. | |
2476 | (Arm_relobj::do_count_local_symbols): Save information about mapping | |
2477 | symbols. | |
2478 | ||
089d69dc DK |
2479 | 2010-01-11 Doug Kwan <[email protected]> |
2480 | ||
2481 | * arm.cc (Arm_relocate_functions::thumb32_branch_offset, | |
2482 | Arm_relocate_functions::thumb32_branch_upper, | |
2483 | Arm_relocate_functions::thumb32_branch_lower, | |
2484 | Arm_relocate_functions::thumb32_cond_branch_offset, | |
2485 | Arm_relocate_functions::thumb32_cond_branch_upper, | |
2486 | Arm_relocate_functions::thumb32_cond_branch_lower, | |
2487 | Arm_relocate_functions::thm_jump19): New methods to handle THUMB | |
2488 | branch offset encoding. | |
2489 | (Arm_relocate_functions::thumb_branch_common): Use new branch | |
2490 | offset encoding methods to avoid code duplication. | |
2491 | (Stub_template::Stub_template) Handle THUMB16_SPECIAL_TYPE. | |
2492 | (Stub_addend_reader::operator()): Use new branch encoding method | |
2493 | to avoid code duplication. | |
2494 | ||
99e5bff2 DK |
2495 | 2010-01-11 Doug Kwan <[email protected]> |
2496 | ||
2497 | * arm.cc (Arm_relobj::do_gc_process_relocs): New method. | |
2498 | (Target_arm::do_finalize_sections): Define special EXIDX section | |
2499 | symbols only if referenced. | |
2500 | * gc.h (Garbage_collection::add_reference): New method. | |
2501 | (gc_process_relocs): Use Garbage_collection::add_reference to avoid | |
2502 | code duplication. | |
2503 | ||
98e090bd ILT |
2504 | 2010-01-11 Ian Lance Taylor <[email protected]> |
2505 | ||
d0a91bd8 ILT |
2506 | * script.cc (Version_script_info::build_expression_list_lookup): |
2507 | Change complaing about duplicate wildcard match from error to | |
2508 | warning. | |
2509 | ||
98e090bd ILT |
2510 | * script.cc (class Lazy_demangler): Recreate--revert part of patch |
2511 | of 2009-12-30. | |
2512 | (Version_script_info::Version_script_info): Initialize globs_, | |
2513 | default_version_, default_is_global_, and exact_. Don't | |
2514 | initialize globals_ or locals_. | |
2515 | (Version_script_info::build_lookup_tables): Build local symbols | |
2516 | first. | |
2517 | (Version_script_info::unquote): New function. | |
2518 | (Version_script_info::add_exact_match): New function. | |
2519 | (Version_script_info::build_expression_list_lookup): Remove lookup | |
2520 | parameter. Add is_global parameter. Change all callers. Handle | |
2521 | wildcard pattern specially. Unquote pattern. Call | |
2522 | add_exact_match. | |
2523 | (Version_script_info::get_name_to_match): New function. | |
2524 | (Version_script_info::get_symbol_version): New function. | |
2525 | (Version_script_info::get_symbol_version_helper): Remove. | |
2526 | (Version_script_info::check_unmatched_names): Call unquote. | |
2527 | * script.h (class Version_script_info): Change get_symbol_version | |
2528 | to be non-inline and add is_global parameter; change all callers. | |
2529 | Rewrite symbol_is_local. Update declarations. Define struct | |
2530 | Version_tree_match, Exact, Globs. Don't define struct Lookup. | |
2531 | Remove globals_ and locals_ members. Add exact_, globs_, | |
2532 | default_version_, is_global_. | |
2533 | (Version_script_info::Glob): Remove pattern, add expression and | |
2534 | is_global. Update constructor. Change all callers. | |
2535 | * dynobj.cc (Versions::finalize): Mark the version symbol as the | |
2536 | default version. | |
2537 | (Versions::symbol_section_contents): If a symbol is undefined, or | |
2538 | defined in a dynamic object, set the version index to | |
2539 | VER_NDX_LOCAL. | |
2540 | * symtab.cc (Symbol_table::add_from_relobj): Don't call | |
2541 | symbol_is_local. | |
2542 | (Symbol_table::add_from_pluginobj): Likewise. | |
2543 | * testsuite/ver_matching_test.sh: blaza1 and blaza go into V2. | |
2544 | ||
d56962d3 DK |
2545 | 2010-01-11 Doug Kwan <[email protected]> |
2546 | ||
2547 | * Makefile.am (incremental_dump_DEPENDENCIES): Add libintl dependency. | |
2548 | (incremental_dump_LDADD): Add linking option for libintl. | |
2549 | * Makefile.in: Regenerate. | |
2550 | ||
94e6ee91 L |
2551 | 2010-01-11 H.J. Lu <[email protected]> |
2552 | ||
2553 | PR gold/11144 | |
2554 | * testsuite/Makefile.am (dynamic_list.stdout): Use --dyn-syms | |
2555 | instead of -Ds. | |
2556 | * testsuite/Makefile.in: Regenerated. | |
2557 | ||
e96c574b DK |
2558 | 2010-01-10 Doug Kwan <[email protected]> |
2559 | ||
2560 | * options.h (DEFINE_var): Use parentheses around argument varname__ | |
2561 | in macro body to avoid any unintended subsequent substitutions. | |
2562 | ||
7198066b ILT |
2563 | 2010-01-10 Ian Lance Taylor <[email protected]> |
2564 | ||
ba4d53bf ILT |
2565 | * resolve.cc (Symbol_table::resolve): Add symbols to list of ODR |
2566 | candidates before doing symbol resolution. | |
2567 | ||
7198066b ILT |
2568 | * resolve.cc (Symbol_table::resolve): Add symbols to the list of |
2569 | ODR candidates if only one is weak. | |
2570 | ||
a2beed37 ILT |
2571 | 2010-01-08 Ian Lance Taylor <[email protected]> |
2572 | ||
2573 | * script.cc (Version_script_info::build_expression_list_lookup): | |
2574 | Don't warn about ambiguous version, just record the ambiguity. | |
2575 | (Version_script_info::get_symbol_version_helper): Give error if | |
2576 | version is ambiguous. | |
2577 | ||
2fb7225c DK |
2578 | 2010-01-08 Doug Kwan <[email protected]> |
2579 | ||
2580 | * arm.cc (Stub_table::Stub_table): Initalize cortex_a8_stubs_, | |
2581 | prev_data_size_ and prev_addralign_. Remove initializer for | |
2582 | deleted data member has_been_changed_. | |
2583 | (Stub_table::empty): Look at both reloc_stubs_ and cortex_a8_stubs_ | |
2584 | to determine if the table is empty. | |
2585 | (Stub_table::has_been_changed, Stub_table_set_has_been_changed): | |
2586 | Remove. | |
2587 | (Stub_table::add_reloc_stub): Define method in class definition | |
2588 | instead of just declaring it there. | |
2589 | (Stub_table::add_cortex_a8_stub): New method definition. | |
2590 | (Stub_table::update_data_size_and_addralign): Ditto. | |
2591 | (Stub_table::finalize_stubs): Ditto. | |
2592 | (Stub_table::apply_cortex_a8_workaround_to_address_range): Ditto. | |
2593 | (Stub_table::do_addralign_): Return address alignment in the | |
2594 | (Stub_table::do_reset_address_and_file_offset): Define method in | |
2595 | class definition instead of declaring it there. Set current data | |
2596 | size to be the data size of the previous pass. | |
2597 | (Stub_table::set_final_data_size): Use current data size as the | |
2598 | final data size. | |
2599 | (Stub_table::relocate_stub): Change parameter type of stub from | |
2600 | Reloc_stub pointer to Stub pointer. | |
2601 | (Stub_table::addralign_, Stub_table::has_been_changed_): Remove. | |
2602 | (Stub_table::Cortex_a8_stub_list): New typedef. | |
2603 | (Stub_table::cortex_a8_stubs_, Stub_table::prev_data_size_, | |
2604 | Stub_table::prev_addralign_): New data member. | |
2605 | (Arm_relobj::Arm_relobj): Initialize data member | |
2606 | section_has_cortex_a8_workaround_. | |
2607 | (Arm_relobj::section_has_cortex_a8_workaround, | |
2608 | Arm_relobj::mark_section_for_cortex_a8_workaround): New method | |
2609 | definitions. | |
2610 | (Arm_relobj::section_has_cortex_a8_workaround_): New data member | |
2611 | declarations. | |
2612 | (Target_arm::relocate_stub): Change parameter type of stub from | |
2613 | Reloc_stub pointer to Stub pointer. | |
2614 | (Insn_template::size, Insn_template::alignment): Handle | |
2615 | THUMB16_SPECIAL_TYPE. | |
2616 | (Stub_table::remove_all_cortex_a8_stubs, Stub_table::finalize_stubs, | |
2617 | Stub_table::update_data_size_and_addralign, | |
2618 | Stub_table::apply_cortex_a8_workaround_to_address_range): New method | |
2619 | definitions. | |
2620 | (Stub_table::relocate_stubs): Handle Cortex-A8 stubs. | |
2621 | (Stub_table::do_write): Ditto. | |
2622 | (Target_arm::do_relax): Adjust code for changes in Stub_table. | |
2623 | ||
880cd20d ILT |
2624 | 2010-01-08 Ian Lance Taylor <[email protected]> |
2625 | ||
2626 | PR 11108 | |
2627 | * symtab.h (class Symbol): Remove fields is_target_special_ and | |
2628 | has_plt_offset_. Add field is_defined_in_discarded_section_. | |
2629 | (Symbol::is_defined_in_discarded_section): New function. | |
2630 | (Symbol::set_is_defined_in_discarded_section): New function. | |
2631 | (Symbol::has_plt_offset): Rewrite. | |
2632 | (Symbol::set_plt_offset): Verify that new offset is not -1U. | |
2633 | * symtab.cc (Symbol::init_fields): Initialize plt_offset_ to -1U. | |
2634 | Don't initialize is_target_special_ or has_plt_offset_. | |
2635 | Initialize is_defined_in_discarded_section_. | |
2636 | (Symbol_table::add_from_relobj): If appropriate, set | |
2637 | is_defined_in_discarded_section. | |
2638 | * resolve.cc (Symbol::override_base_with_special): Don't test | |
2639 | is_target_special_. Change has_plt_offset_ to has_plt_offset(). | |
2640 | * target-reloc.h (relocate_section): Do special handling for | |
2641 | symbols defined in discarded sections for global symbols as well | |
2642 | as local symbols. | |
2643 | ||
2703e3eb ILT |
2644 | 2010-01-08 Ian Lance Taylor <[email protected]> |
2645 | ||
2646 | * dynobj.cc (big_endian>::find_dynsym_sections): Set pi to NULL in | |
2647 | the SHT_SYMTAB case. | |
2648 | ||
339d40a3 ILT |
2649 | 2010-01-08 Ian Lance Taylor <[email protected]> |
2650 | ||
2651 | * object.cc (Sized_relobj::do_layout): Don't get confused if | |
2652 | layout_eh_frame returns NULL. | |
2653 | ||
abecea76 ILT |
2654 | 2010-01-08 Ian Lance Taylor <[email protected]> |
2655 | ||
2656 | PR 11084 | |
2657 | * dynobj.cc (Sized_dynobj::find_dynsym_sections): If there is no | |
2658 | dynamic symbol table, use the normal symbol table. | |
2659 | (Sized_dynobj::do_read_symbols): Remove assertion about type of | |
2660 | symbol table. | |
2661 | ||
6b7dd3f3 ILT |
2662 | 2010-01-08 Ian Lance Taylor <[email protected]> |
2663 | ||
2664 | PR 11072 | |
2665 | * layout.cc (Layout::include_section): Remove .gnu_debuglink | |
2666 | sections. | |
2667 | ||
36c50e63 L |
2668 | 2010-01-08 H.J. Lu <[email protected]> |
2669 | ||
2670 | * version.cc (print_version): Change to "Copyright 2010". | |
2671 | ||
e291e7b9 ILT |
2672 | 2010-01-08 Ian Lance Taylor <[email protected]> |
2673 | ||
2674 | PR 10287 | |
2675 | PR 11063 | |
2676 | * i386.cc (class Target_i386): Change return type of plt_section | |
2677 | to be non-const. | |
2678 | (class Output_data_plt_i386): Add tls_desc_rel_ field. | |
2679 | (Output_data_plt_i386::Output_data_plt_i386): Initialize | |
2680 | tls_desc_rel_ field. | |
2681 | (Output_data_plt_i386::rel_tls_desc): New function. | |
2682 | (Target_i386::rel_tls_desc_section): New function. | |
2683 | (Target_i386::Scan::local): Rewrite R_386_TLS_GOTDESC handling. | |
2684 | (Target_i386::Scan::global): For R_386_TLS_GOTDESC put | |
2685 | R_386_TLS_DESC reloc in rel_tls_desc_section. | |
2686 | * x86_64.cc (class Target_x86_64): Add tlsdesc_reloc_info_ field. | |
2687 | Define struct Tlsdesc_info. | |
2688 | (Target_x86_64::Target_x86_64): Initialize tlsdesc_reloc_info_. | |
2689 | (Target_x86_64::do_reloc_symbol_index): New function. | |
2690 | (Target_x86_64::add_tlsdesc_info): New function. | |
2691 | (class Output_data_plt_x86_64): Add tlsdesc_rel_ field. | |
2692 | (Output_data_plt_x86_64::Output_data_plt_x86_64): Initialize | |
2693 | tlsdesc_rel_ field. | |
2694 | (Output_data_plt_x86_64::rela_plt): Rename from rel_plt. Change | |
2695 | all callers. | |
2696 | (Output_data_plt_x86_64::rela_tlsdesc): New function. | |
2697 | (Target_x86_64::rela_tlsdesc_section): New function. | |
2698 | (Target_x86_64::Scan::local): Rewrite R_X86_64_GOTPC32_TLSDESC | |
2699 | handling. | |
2700 | (Target_x86_64::Scan::global): For R_X86_64_GOTPC32_TLSDESC put | |
2701 | (Target_x86_64::do_reloc_addend): New function. | |
2702 | R_X86_64_TLSDESC reloc in rela_tlsdesc_section. | |
2703 | * output.h (class Output_reloc) [SHT_REL]: Add new constructor | |
2704 | declarations. Define TARGET_CODE. Add arg field to u1_ union. | |
2705 | (Output_reloc::type): New function. | |
2706 | (Output_reloc::is_local_section_symbol): Check for TARGET_CODE. | |
2707 | (Output_reloc::is_target_specific): New function. | |
2708 | (Output_reloc::target_arg): New function. | |
2709 | (class Output_reloc) [SHT_RELA]: Add four new constructors for | |
2710 | absolute relocs and target specific relocs. | |
2711 | (class Output_data_reloc) [SHT_REL]: Add add_absolute and | |
2712 | add_target_specific. | |
2713 | (class Output_data_reloc) [SHT_RELA]: Likewise. | |
2714 | * output.cc (Output_reloc::Output_reloc): Add four new versions | |
2715 | for absolute relocs and target specific relocs. | |
2716 | (Output_reloc::set_needs_dynsym_index): Add TARGET_CODE case. | |
2717 | (Output_reloc::get_symbol_index): Likewise. | |
2718 | (Output_reloc::local_section_offset): Check that local_sym_index_ | |
2719 | is not TARGET_CODE or 0. | |
2720 | (Output_reloc::symbol_value): Likewise. | |
2721 | (Output_reloc::write) [SHT_RELA]: Call target for target specific | |
2722 | reloc. | |
2723 | * target.h (class Target): Add reloc_symbol_index and reloc_addend | |
2724 | functions. Add do_reloc_symbol_index and do_reloc_addend virtual | |
2725 | functions. | |
2726 | * layout.cc (add_target_dynamic_tags): Use output section for | |
2727 | DT_PLTRELSZ and DT_JMPREL. | |
2728 | ||
3a44184e ILT |
2729 | 2010-01-07 Ian Lance Taylor <[email protected]> |
2730 | ||
2731 | PR 11061 | |
2732 | * output.h (class Output_reloc) [SHT_RELA]: Add is_relative | |
2733 | function. | |
2734 | (class Output_data_reloc_generic): Define. | |
2735 | (class Output_data_reloc_base): Change base class to | |
2736 | Output_data_reloc_generic. Change add() method to call | |
2737 | bump_relative_reloc_count for a relative reloc. Remove | |
2738 | sort_relocs_ field. | |
2739 | * output.cc (Output_data_reloc_base::do_write): Change sort_reloc_ | |
2740 | to sort_relocs(). | |
2741 | * layout.cc (Layout::add_target_dynamic_tags): Change dyn_rel to | |
2742 | Output_data_reloc_generic*. Add DT_RELCOUNT/DT_RELACOUNT tag if | |
2743 | appropriate. | |
2744 | * layout.h (class Layout): Update declaration. | |
2745 | ||
ea715a34 ILT |
2746 | 2010-01-07 Ian Lance Taylor <[email protected]> |
2747 | ||
2748 | * output.h (class Output_data): Add const version of | |
2749 | output_section and do_output_section. | |
2750 | (class Output_section_data): Add const version of | |
2751 | do_output_section. | |
2752 | (class Output_section): Likewise. | |
2753 | * layout.cc (Layout::add_target_dynamic_tags): New function. | |
2754 | * layout.h (class Layout): Update declarations. | |
2755 | * arm.cc (Target_arm::do_finalize_sections): Use | |
2756 | add_target_dynamic_tags. | |
2757 | * i386.cc (Target_i386::do_finalize_sections): Likewise. | |
2758 | * powerpc.cc (Target_powerpc::do_finalize_sections): Likewise. | |
2759 | * sparc.cc (Target_sparc::do_finalize_sections): Likewise. | |
2760 | * x86_64.cc (Target_x86_64::do_finalize_sections): Likewise. | |
2761 | ||
659948a4 ILT |
2762 | 2010-01-07 Ian Lance Taylor <[email protected]> |
2763 | ||
2764 | PR 11042 | |
2765 | * copy-relocs.cc (Copy_relocs::emit_copy_reloc): Mark the dynamic | |
2766 | object as needed. | |
2767 | ||
9d3b86f6 ILT |
2768 | 2010-01-07 Dmitry Gorbachev <[email protected]> |
2769 | Ian Lance Taylor <[email protected]> | |
2770 | ||
2771 | PR 11019 | |
2772 | * object.cc: Instantiate Xindex::initialize_symtab_xindex and | |
2773 | Xindex::read_symtab_xindex. | |
2774 | ||
bb0d3eb0 DK |
2775 | 2010-01-07 Doug Kwan <[email protected]> |
2776 | ||
2777 | * arm.cc (Insn_template::Type): New enum value THUMB16_SPECIAL_TYPE. | |
2778 | (Insn_template::thumb16_bcond_insn): New method declaration. | |
2779 | (Insn_template): Fix spelling. | |
2780 | (Stub::thumb16_special): New method declaration. | |
2781 | (Stub::do_write): Define virtual method which was previously pure | |
2782 | virtual. | |
2783 | (Stub::do_thumb16_special): New method declaration. | |
2784 | (Stub::do_fixed_endian_write): New template member. | |
2785 | (Reloc_stub::do_write): Remove. | |
2786 | (Reloc_stub::do_fixed_endian_write): Remove. | |
2787 | (Cortex_a8_stub): New class definition. | |
2788 | (Stub_factory::make_cortex_a8_stub): New method definition. | |
2789 | (Stub_factory::Stub_factory): Add missing static storage class | |
2790 | qualifier for elf32_arm_stub_a8_veneer_blx. | |
2791 | ||
ffeef7df ILT |
2792 | 2010-01-07 Ian Lance Taylor <[email protected]> |
2793 | ||
dc3f80fe ILT |
2794 | PR 10980 |
2795 | * options.h (class General_options): Add --warn-unresolved-symbols | |
2796 | and --error-unresolved-symbols. | |
2797 | * errors.cc (Errors::undefined_symbol): Implement | |
2798 | --warn-unresolved-symbols. | |
2799 | ||
ffeef7df ILT |
2800 | * options.h (class General_options): Add -z text and -z textoff. |
2801 | * layout.cc (Layout::finish_dynamic_section): Implement -z text. | |
2802 | ||
f1ec9ded ST |
2803 | 2010-01-06 Sriraman Tallam <[email protected]> |
2804 | ||
2805 | * gc.h (Garbage_collection::Cident_section_map): New typedef. | |
2806 | (Garbage_collection::cident_sections): New function. | |
2807 | (Garbage_collection::add_cident_section): New function. | |
2808 | (Garbage_collection::cident_sections_): New member. | |
2809 | (gc_process_relocs): Add references to sections whose names are C | |
2810 | identifiers. | |
2811 | * gold.h (cident_section_start_prefix): New constant. | |
2812 | (cident_section_stop_prefix): New constant. | |
2813 | (is_cident): New function. | |
2814 | * layout.cc (Layout::define_section_symbols): Replace string constants | |
2815 | with the newly defined constants. | |
2816 | * object.cc (Sized_relobj::do_layout): Track sections whose names are | |
2817 | C identifiers. | |
2818 | * testsuite/Makefile.am: Add gc_orphan_section_test. | |
2819 | * testsuite/Makefile.in: Regenerate. | |
2820 | * testsuite/gc_orphan_section_test.cc: New file. | |
2821 | * testsuite/gc_orphan_section_test.sh: New file. | |
2822 | ||
6eda8c29 ILT |
2823 | 2010-01-06 Ian Lance Taylor <[email protected]> |
2824 | ||
b9674e17 ILT |
2825 | PR 10980 |
2826 | * options.h (class General_options): Add --warn-shared-textrel. | |
2827 | * layout.cc (Layout::finish_dynamic_section): Implement | |
2828 | --warn-shared-textrel. | |
2829 | ||
6eda8c29 ILT |
2830 | PR 10980 |
2831 | * options.h (class General_options): Add --warn-multiple-gp. | |
2832 | ||
32dcd44e ILT |
2833 | 2010-01-06 Viktor Kutuzov <[email protected]> |
2834 | ||
2835 | * Makefile.am (incremental_dump_DEPENDENCIES): Remove | |
2836 | $(THREADSLIB) and $(LIBDL). | |
2837 | * Makefile.in: Rebuild. | |
2838 | ||
a192ba05 ILT |
2839 | 2010-01-06 Ian Lance Taylor <[email protected]> |
2840 | ||
2841 | PR 10980 | |
2842 | * options.cc (General_options::parse_section_start): New function. | |
2843 | (General_options::section_start): New function. | |
2844 | (General_options::General_options): Initialize all members. | |
2845 | * options.h: Include <map> | |
2846 | (class General_options): Add --section-start. Add section_starts_ | |
2847 | member. | |
2848 | * layout.cc (Layout::attach_allocated_section_to_segment): If | |
2849 | --section-start was used, set the address of the segment. Remove | |
2850 | local sort_sections. | |
2851 | (Layout::relaxation_loop_body): If the address of the load segment | |
2852 | has been set by --section-start, don't use it. | |
2853 | * output.h (Output_segment::update_flags_for_output_section): New | |
2854 | function. | |
2855 | * output.cc (Output_segment::add_output_section): Call | |
2856 | update_flags_for_output_section. | |
2857 | ||
dde3f402 ILT |
2858 | 2010-01-05 Ian Lance Taylor <[email protected]> |
2859 | ||
62dfdd4d ILT |
2860 | PR 10980 |
2861 | * options.h (class General_options): Add --undefined-version. | |
2862 | * script.cc (struct Version_expression): Add was_matched_by_symbol | |
2863 | field. | |
2864 | (Version_script_info::matched_symbol): New function. | |
2865 | (Version_script_info::get_symbol_version_helper): Call | |
2866 | matched_symbol. | |
2867 | (Version_script_info::check_unmatched_names): New function. | |
2868 | * script.h (class Version_script_info): Update declarations. | |
2869 | * gold.cc (queue_middle_tasks): Handle --no-undefined-version. | |
2870 | ||
9c4ae156 ILT |
2871 | * options.h (class General_options): Use DEFINE_bool_alias for |
2872 | allow_multiple_definition. | |
2873 | * resolve.cc (Symbol_table::should_override): Don't test | |
2874 | allow_multiple_definition. | |
2875 | ||
dde3f402 ILT |
2876 | PR 10980 |
2877 | * options.h (class General_options): Add --cref. | |
2878 | * main.cc (main): Print cref table if --cref. Don't close mapfile | |
2879 | until after printing cref table. | |
2880 | * cref.cc: Include "symtab.h". | |
2881 | (class Cref_inputs): Define Cref_table_compare and Cref_table. | |
2882 | (Cref_table_compare::operator()): New function. | |
2883 | (Cref_inputs::gather_cref): New function. | |
2884 | (filecol): New static const. | |
2885 | (Cref_inputs::print_cref): New function. | |
2886 | (Cref::print_cref): New function. | |
2887 | * cref.h: Include <cstdio>. | |
2888 | (class Cref): Update declarations. | |
2889 | * mapfile.h (Mapfile::file): New function. | |
2890 | * object.h (class Object): Define Symbols. Declare virtual | |
2891 | do_get_global_symbols. | |
2892 | (Object::get_global_symbols): New function. | |
2893 | * object.cc (Input_objects::add_object): Pass object to cref_ if | |
2894 | --cref. | |
2895 | (Input_objects::archive_start): Likewise. | |
2896 | (Input_objects::archive_stop): Likewise. | |
2897 | (Input_objects::print_cref): New function. | |
2898 | * dynobj.h (Sized_dynobj::do_get_global_symbols): New function. | |
2899 | * dynobj.cc (big_endian>::do_add_symbols): Create symbols_ if | |
2900 | --cref. | |
2901 | * plugin.cc (Sized_pluginobj::do_get_global_symbols): New | |
2902 | function. | |
2903 | * plugin.h (class Sized_pluginobj): Update declarations. | |
2904 | ||
8781f709 ILT |
2905 | 2010-01-05 Ian Lance Taylor <[email protected]> |
2906 | ||
2907 | * symtab.cc (Symbol_table::add_from_object): Rename def parameter | |
2908 | to is_default_version. Rename insdef to insdefault. | |
2909 | (Symbol_table::add_from_relobj): Rename def to is_default_version | |
2910 | and local to is_forced_local. | |
2911 | (Symbol_table::add_from_pluginobj): Likewise. | |
2912 | (Symbol_table::add_from_dynobj): Likewise. | |
2913 | (Symbol_table::define_special_symbol): Rename insdef to | |
2914 | insdefault. | |
2915 | ||
fe35d28d ILT |
2916 | 2010-01-04 Ian Lance Taylor <[email protected]> |
2917 | ||
30bc8c46 ILT |
2918 | PR 10980 |
2919 | * options.h (class General_options): Add | |
2920 | --allow-multiple-definition and -z muldefs. | |
2921 | * resolve.cc (Symbol_table::should_override): Don't warn about a | |
2922 | multiple symbol definition if --allow-multiple-definition or -z | |
2923 | muldefs. | |
2924 | ||
7eaea549 ILT |
2925 | PR 10980 |
2926 | * options.h (class General_options): Add --add-needed and | |
2927 | --copy-dt-needed-entries. Tweak --as-needed help entry. | |
2928 | * object.cc (Input_objects::check_dynamic_dependencies): Give an | |
2929 | error if --copy-dt-needed-entries aka --add-needed is used and | |
2930 | would cause a change in behaviour. | |
2931 | ||
fe35d28d ILT |
2932 | PR 10980 |
2933 | * options.h (class General_options): Add -G as a short version of | |
2934 | --shared. Add no-op options -assert, -g, and -i. | |
2935 | ||
55a2bb35 ST |
2936 | 2010-01-04 Sriraman Tallam <[email protected]> |
2937 | ||
2938 | * gc.h (gc_process_relocs): Call is_section_foldable_candidate to | |
2939 | check for .text or .gnu.linkonce.t sections. | |
2940 | * icf.cc (Icf::find_identical_sections): Ditto. | |
2941 | Change the detection for mangled function name within the section | |
2942 | name. | |
2943 | * icf.h (is_section_foldable_candidate): New function. | |
2944 | ||
719328e1 ILT |
2945 | 2009-12-30 Ian Lance Taylor <[email protected]> |
2946 | ||
2947 | PR 10980 | |
2948 | * options.h (class General_options): Permit two dashes with | |
2949 | --retain-symbols-file. | |
2950 | ||
d7bb5745 ILT |
2951 | 2009-12-30 Ian Lance Taylor <[email protected]> |
2952 | ||
403a15dd ILT |
2953 | PR 10979 |
2954 | * layout.cc (Layout::relaxation_loop_body): If -Ttext was used, | |
2955 | don't put the file header and segment headers in the text | |
2956 | segment. | |
2957 | ||
eda294df ILT |
2958 | PR 10979 |
2959 | * common.cc (Sort_commons::operator()): Stabilize sort when both | |
2960 | entries are NULL. | |
2961 | (Symbol_table::do_allocate_commons_list): When allocating common | |
2962 | symbols, skip a symbol which is no longer common. | |
2963 | * symtab.h (Symbol::is_common): Test whether the symbol comes from | |
2964 | an object before checking its type. | |
2965 | * testsuite/common_test_2.c: New file. | |
2966 | * testsuite/common_test_3.c: New file. | |
2967 | * testsuite/Makefile.am (check_PROGRAMS): Add common_test_2. | |
2968 | (common_test_2_SOURCES, common_test_2_DEPENDENCIES): Define. | |
2969 | (common_test_2_LDFLAGS, common_test_2_LDADD): Define. | |
2970 | (common_test_2_pic.o, common_test_2.so): New targets. | |
2971 | (common_test_3_pic.o, common_test_3.so): New targets. | |
2972 | * testsuite/Makefile.in: Rebuild. | |
2973 | ||
d7bb5745 ILT |
2974 | PR 10979 |
2975 | * script.cc (read_input_script): If we see a new SECTIONS clause, | |
2976 | and we have added an input section, give an error. | |
2977 | * layout.h (class Layout): Add have_added_input_section function. | |
2978 | Add have_added_input_section_ field. | |
2979 | * layout.cc (Layout::Layout): Initialize | |
2980 | have_added_input_section_. | |
2981 | (Layout::layout): Set have_added_input_section_. | |
2982 | (Layout::layout_eh_frame): Likewise. | |
2983 | ||
fc59c572 ILT |
2984 | 2009-12-30 Ian Lance Taylor <[email protected]> |
2985 | ||
2986 | PR 10931 | |
2987 | * options.h (class General_options): Add --sort-common option. | |
2988 | * symtab.h (class Symbol_table): Define Sort_commons_order enum. | |
2989 | * common.cc (Sort_common): Add sort_order parameter to | |
2990 | constructor. Add sort_order_ field. | |
2991 | (Sort_commons::operator): Check sort_order_. | |
2992 | (Symbol_table::allocate_commons): Determine the sort order. | |
2993 | (Symbol_table::do_allocate_commons): Add sort_order parameter. | |
2994 | Change all callers. | |
2995 | (Symbol_table::do_allocate_commons_list): Likewise. | |
2996 | ||
1c74fab0 ILT |
2997 | 2009-12-30 Ian Lance Taylor <[email protected]> |
2998 | ||
2999 | PR 10916 | |
3000 | * symtab.cc (Symbol_table::add_from_relobj): When not exporting | |
3001 | symbols from this object, don't change the visibility of an | |
3002 | undefined symbol. | |
3003 | * testsuite/exclude_libs_test_1.c (lib1_ref): New function. | |
3004 | ||
6affe781 ILT |
3005 | 2009-12-30 Ian Lance Taylor <[email protected]> |
3006 | ||
3007 | PR 10861 | |
3008 | * script.h (class Version_script_info): Define Language enum. | |
3009 | Update declarations. Define Glob, Exact, and Lookup types. Add | |
3010 | new fields globals_, locals_, and is_finalized_. | |
3011 | * script.cc: Various formatting fixes. | |
3012 | (class Parser_closure): Change language_stack_ from a vector of | |
3013 | std::string to one of Version_script_info::Language. Adjust all | |
3014 | uses accordingly. | |
3015 | (class Lazy_demangler): Remove. | |
3016 | (struct Version_expression): Change language from std::string to | |
3017 | Version_script_info::Language. | |
3018 | (Version_script_info::Version_script_info): New function. | |
3019 | (Version_script_info::~Version_script_info): Don't call clear. | |
3020 | (Version_script_info::finalize): New function. | |
3021 | (Version_script_info::build_lookup_tables): New function. | |
3022 | (Version_script_info::build_expression_list_lookup): New | |
3023 | function. | |
3024 | (Version_script_info::get_symbol_version_helper): Rewrite to use | |
3025 | lookup tables. | |
3026 | (Version_script_info::print_expression_list): Adjust to use | |
3027 | Version_script_info::Language. | |
3028 | (script_push_lex_into_version_mode): Check that the version script | |
3029 | has not been finalized. | |
3030 | (version_script_push_lang): Change language string to | |
3031 | Version_script_info::Language. | |
3032 | * options.cc (Command_line::version_script): New function. | |
3033 | * options.h (class General_options): Add finalize_dynamic_list | |
3034 | function. Change version_script from declaration to definition. | |
3035 | * testsuite/ver_test_4.script: Remove duplicate def of t2_2. | |
3036 | * testsuite/version_script.map: Remove duplicate def of foo. | |
3037 | * testsuite/Makefile.am (ver_matching_def.so): Depend upon | |
3038 | version_script.map. | |
3039 | * testsuite/Makefile.in: Rebuild. | |
3040 | ||
818bf354 ILT |
3041 | 2009-12-30 Ian Lance Taylor <[email protected]> |
3042 | ||
3043 | PR 10843 | |
3044 | * target-reloc.h (relocate_for_relocatable): When copying a reloc, | |
3045 | if the input symbol index is 0, make the output symbol index 0. | |
3046 | ||
ebcc8304 ILT |
3047 | 2009-12-30 Ian Lance Taylor <[email protected]> |
3048 | ||
3049 | PR 10670 | |
3050 | * options.h (class General_options): Add -x/--discard-all. | |
3051 | * object.cc (Sized_relobj::do_count_local_symbols): Handle | |
3052 | --discard-all. If the local symbol needs a dynamic entry, check | |
3053 | that before handling --discard-locals. | |
3054 | ||
176fe33f ILT |
3055 | 2009-12-30 Ian Lance Taylor <[email protected]> |
3056 | ||
bb321bb1 ILT |
3057 | PR 10450 |
3058 | * output.cc (Output_segment::Output_segment): If PT_TLS, set the | |
3059 | flags to PF_R. | |
3060 | (Output_segment::add_output_section): Don't change the flags if | |
3061 | the type is PT_TLS. | |
3062 | ||
176fe33f ILT |
3063 | PR 10450 |
3064 | * dynobj.cc (Dynobj::create_gnu_hash_table): Add symbols to the | |
3065 | GNU hash table if they need a dynamic value. Otherwise, don't add | |
3066 | them if they are defined in a dynamic object or are forced local. | |
3067 | ||
e8cd95c7 ILT |
3068 | 2009-12-29 Ian Lance Taylor <[email protected]> |
3069 | ||
1b81fb71 ILT |
3070 | PR 10450 |
3071 | * layout.cc (Layout::create_dynamic_symtab): Only set entsize of | |
3072 | .gnu.hash table for a 32-bit target. | |
3073 | ||
8d6d383d ILT |
3074 | PR 10450 |
3075 | * symtab.h (Symbol::needs_dynsym_entry): A symbol in both a | |
3076 | regular and a dynamic object only needs a dynamic symbol table | |
3077 | entry if it is externally visible. | |
3078 | ||
e785ec03 ILT |
3079 | PR 10450 |
3080 | * i386.cc (class Target_i386): Initialize global_offset_table_ in | |
3081 | constructor. Add global_offset_table_ field. | |
3082 | (Target_i386::got_section): Set global_offset_table_. | |
3083 | (Target_i386::do_finalize_sections): Set global_offset_table_ | |
3084 | size. | |
3085 | * x86_64.cc (class Target_x86_64): Initialize global_offset_table_ | |
3086 | in constructor. Add global_offset_table_ field. | |
3087 | (Target_x86_64::got_section): Set global_offset_table_. | |
3088 | (Target_x86_64::do_finalize_sections): Set global_offset_table_ | |
3089 | size. | |
3090 | ||
1a2dff53 ILT |
3091 | * layout.cc (Layout::Layout): Initialize increase_relro_. |
3092 | (Layout::get_output_section): Add is_relro, is_last_relro, and | |
3093 | is_first_non_relro parameters. Change all callers. | |
3094 | (Layout::choose_output_section): Likewise. | |
3095 | (Layout::add_output_section_data): Likewise. | |
3096 | (Layout::make_output_section): Likewise. | |
3097 | (Layout::set_segment_offsets): Clear increase_relro when using a | |
3098 | linker script. | |
3099 | * layout.h (class Layout): Add increase_relro method. Add | |
3100 | increase_relro_ field. Update declarations. | |
3101 | * output.cc (Output_section::Output_section): Initialize | |
3102 | is_last_relro_ and is_first_non_relro_. | |
3103 | (Output_segment::add_output_section): Group relro sections is | |
3104 | do_sort is true. Handle is_last_relro and is_first_non_relro. | |
3105 | (Output_segment::maximum_alignment): Remove relro handling. | |
3106 | (Output_segment::set_section_addresses): Add increase_relro | |
3107 | parameter. Change all callers. Add initial alignment to align | |
3108 | relro sections on separate page. Remove old relro handling. | |
3109 | (Output_segment::set_section_list_addresses): Remove in_relro | |
3110 | parameter. Change all callers. | |
3111 | (Output_segment::set_offset): Add increase parameter. Change all | |
3112 | callers. Remove old relro handling. | |
3113 | * output.h (class Output_section): Add new methods: is_last_relro, | |
3114 | set_is_last_relro, is_first_non_relro, set_is_first_non_relro. | |
3115 | Add is_last_relro_ and is_first_non_relro_ fields. | |
3116 | * i386.cc (Target_i386::got_section): Don't call set_is_relro. | |
3117 | Create separate .got.plt section. Call increase_relro. | |
3118 | * x86_64.cc (Target_x86_64::got_section): Likewise. | |
3119 | * testsuite/relro_script_test.t: Add .got.plt. | |
3120 | ||
f0ba79e2 ILT |
3121 | PR 10450 |
3122 | * layout.cc (Layout::Layout): Initialize dynamic_symbol_ field. | |
3123 | (Layout::create_initial_dynamic_sections): Set dynamic_symbol_. | |
3124 | (Layout::finalize): Call set_dynamic_symbol_size. | |
3125 | (Layout::set_dynamic_symbol_size): New function. | |
3126 | * layout.h (class Layout): Add dynamic_symbol_ field. Declare | |
3127 | set_dynamic_symbol_size. | |
3128 | ||
e8cd95c7 ILT |
3129 | PR 10450 |
3130 | * output.h (class Output_section): Add is_entsize_zero_ field. | |
3131 | * output.cc (Output_section::Output_section): Initialize | |
3132 | is_entsize_zero_. | |
3133 | (Output_section::set_entsize): If two different entsizes are | |
3134 | requested, force it to zero. | |
3135 | (Output_section::add_input_section): Set flags for .debug_str | |
3136 | before updating section flags. Set entsize. | |
3137 | (Output_section::update_flags_for_input_section): Set SHF_MERGE | |
3138 | and SHF_STRING if all input sections have those flags. | |
3139 | ||
3e1b9a8a RÁE |
3140 | 2009-12-29 Rafael Espindola <[email protected]> |
3141 | ||
3142 | * main.cc (main): Fix the sys time reporting. | |
e8cd95c7 ILT |
3143 | * workqueue.cc (Workqueue::find_and_run_task): Fix the sys time |
3144 | reporting. | |
3e1b9a8a | 3145 | |
3dcad376 ST |
3146 | 2009-12-29 Sriraman Tallam <[email protected]> |
3147 | ||
3148 | * options.cc (General_options::parse_version): Allow -v to exit | |
3149 | without an error if there is nothing to link. | |
3150 | ||
084e2665 ILT |
3151 | 2009-12-29 Ian Lance Taylor <[email protected]> |
3152 | ||
3153 | * configure.ac: Set the MCMODEL_MEDIUM conditional to false if | |
3154 | using a version of gcc before 4.1. | |
3155 | * configure: Rebuild. | |
3156 | ||
250acde3 CD |
3157 | 2009-12-28 Chris Demetriou <[email protected]> |
3158 | ||
3159 | * attributes.cc (Output_attributes_section_data::do_write): Use | |
3160 | std::vector::front rather than std::vector::data. | |
3161 | ||
99fff23b ILT |
3162 | 2009-12-28 Ian Lance Taylor <[email protected]> |
3163 | ||
3164 | * symtab.h (class Symbol_table): Add enum Defined. | |
3165 | * resolve.cc (Symbol_table::should_override): Add defined | |
3166 | parameter. Change all callers. Test whether object is NULL | |
3167 | before calling a method on it. | |
3168 | (Symbol_table::report_resolve_problem): Add defined parameter. | |
3169 | Change all callers. | |
3170 | (Symbol_table::should_override_with_special): Likewise. | |
3171 | * symtab.cc (Symbol_table::define_in_output_data): Add defined | |
3172 | parameter. Change all callers. | |
3173 | (Symbol_table::do_define_in_output_data): Likewise. | |
3174 | (Symbol_table::define_in_output_segment): Likewise. | |
3175 | (Symbol_table::do_define_in_output_segment): Likewise. | |
3176 | (Symbol_table::define_as_constant): Likewise. | |
3177 | (Symbol_table::do_define_as_constant): Likewise. | |
3178 | * script.h (class Symbol_assignment): Add is_defsym parameter to | |
3179 | constructor; change all callers. | |
3180 | * script.cc (Script_options::add_symbol_assignment): Add is_defsym | |
3181 | parameter. Change all callers. Add is_defsym_ field. | |
3182 | (class Parser_closure): Add parsing_defsym parameter to | |
3183 | constructor; change all callers. Add parsing_defsym accessor | |
3184 | function. Add parsing_defsym_ field. | |
3185 | ||
556bd683 ILT |
3186 | 2009-12-28 Ian Lance Taylor <[email protected]> |
3187 | ||
3188 | * gold.cc (queue_middle_tasks): Fix formatting. | |
fa618ee4 | 3189 | * object.cc (Relobj::is_section_name_included): Likewise. |
556bd683 | 3190 | |
1782c879 ILT |
3191 | 2009-12-23 Ian Lance Taylor <[email protected]> |
3192 | ||
3193 | * i386.cc (Target_i386::do_calls_non_split): Recognize | |
3194 | -fsplit-stack prologue for a function with a static chain. | |
cbc999b9 ILT |
3195 | * x86_64.cc (Target_x86_64::do_calls_non_split): Recognize |
3196 | -fsplit-stack prologue when using %r11. | |
1782c879 | 3197 | |
329ca2b1 ST |
3198 | 2009-12-21 Sriraman Tallam <[email protected]> |
3199 | ||
3200 | * options.cc (General_options::parse_version): Make -v continue and do | |
3201 | the link like GNU ld does. | |
3202 | ||
d675ff46 RÁE |
3203 | 2009-12-17 Rafael Avila de Espindola <[email protected]> |
3204 | ||
3205 | * Makefile.am (CCFILES): Add timer.cc. | |
3206 | (HFILES): Add timer.h. | |
3207 | * configure.ac: Check for sysconf and times. | |
3208 | * main.cc: include timer.h. | |
3209 | (main): Use Timer instead of get_run_time. | |
3210 | * timer.cc: New. | |
3211 | * timer.h: New. | |
3212 | * workqueue.cc: include timer.h. | |
3213 | (Workqueue::find_and_run_task): | |
3214 | Report user, sys and wall time. | |
3215 | * Makefile.in: Regenerate. | |
3216 | * config.in: Regenerate. | |
3217 | * configure: Regenerate. | |
3218 | ||
d6344fb5 DK |
3219 | 2009-12-16 Doug Kwan <[email protected]> |
3220 | ||
3221 | * arm.cc (Arm_relobj::scan_sections_for_stubs): Exclude ICF-eliminated | |
3222 | sections. | |
3223 | * object.cc (Sized_relobj::do_finalize_local_symbols): Handle | |
3224 | relaxed input sections. | |
3225 | * output.cc (Output_section::find_relaxed_input_section): Change | |
3226 | return type to Output_relaxed_input_section pointer. Adjust code | |
3227 | for new type of relaxed_input_section_map_. | |
3228 | * output.h (Output_section::find_relaxed_input_section): Change | |
3229 | return type to Output_relaxed_input_section pointer. | |
3230 | (Output_section::Output_relaxed_input_section_by_input_section_map): | |
3231 | New type. | |
3232 | (Output_section::relaxed_input_section_map_): Change type to | |
3233 | Output_section::Output_relaxed_input_section_by_input_section_map. | |
3234 | * symtab.cc (Symbol_table::compute_final_value): Handle relaxed | |
3235 | input section. | |
3236 | ||
0e0d5469 ILT |
3237 | 2009-12-15 Ian Lance Taylor <[email protected]> |
3238 | ||
3239 | * layout.cc (Layout::create_shstrtab): Only write out after input | |
3240 | sections if we are compressing debug sections. | |
3241 | ||
0649a889 ILT |
3242 | 2009-12-15 Ian Lance Taylor <[email protected]> |
3243 | ||
3244 | * archive.cc (Archive::add_symbols): Only look up a symbol without | |
3245 | a version if there is, in fact, a version. | |
3246 | ||
2ea97941 ILT |
3247 | 2009-12-14 Ian Lance Taylor <[email protected]> |
3248 | ||
3249 | Revert -Wshadow changes, all changes from: | |
3250 | 2009-12-11 Doug Kwan <[email protected]> | |
3251 | 2009-12-11 Nick Clifton <[email protected]> | |
3252 | * configure.ac: Remove -Wshadow when setting WARN_CXXFLAGS. | |
3253 | ||
b0eec2cc DK |
3254 | 2009-12-11 Doug Kwan <[email protected]> |
3255 | ||
3256 | * arm.cc (Target_arm::do_finalize_sections): Fix build breakage | |
3257 | due to -Wshadow. | |
3258 | * attributes.cc (Object_attribute::size): Ditto. | |
3259 | (Attributes_section_data::size): Ditto. | |
3260 | (Attributes_section_data::Attributes_section_data): Ditto. | |
3261 | (Output_attributes_section_data::do_write): Ditto. | |
3262 | * attributes.h (Object_attribute::set_type): Ditto. | |
3263 | * testsuite/tls_test_main.cc (safe_lock, safe_unlock): Ditto. | |
3264 | ||
91d6fa6a NC |
3265 | 2009-12-11 Nick Clifton <[email protected]> |
3266 | ||
3267 | * archive.cc: Fix shadowed variable warnings. | |
3268 | * arm.cc: Likewise. | |
3269 | * compressed_output.cc: Likewise. | |
3270 | * compressed_output.h: Likewise. | |
3271 | * configure: Likewise. | |
3272 | * dwarf_reader.cc: Likewise. | |
3273 | * dynobj.cc: Likewise. | |
3274 | * dynobj.h: Likewise. | |
3275 | * ehframe.cc: Likewise. | |
3276 | * ehframe.h: Likewise. | |
3277 | * errors.cc: Likewise. | |
3278 | * expression.cc: Likewise. | |
3279 | * fileread.cc: Likewise. | |
3280 | * fileread.h: Likewise. | |
3281 | * freebsd.h: Likewise. | |
3282 | * i386.cc: Likewise. | |
3283 | * icf.cc: Likewise. | |
3284 | * incremental.h: Likewise. | |
3285 | * layout.cc: Likewise. | |
3286 | * layout.h: Likewise. | |
3287 | * mapfile.cc: Likewise. | |
3288 | * merge.cc: Likewise. | |
3289 | * merge.h: Likewise. | |
3290 | * object.cc: Likewise. | |
3291 | * object.h: Likewise. | |
3292 | * options.h: Likewise. | |
3293 | * output.cc: Likewise. | |
3294 | * output.h: Likewise. | |
3295 | * parameters.cc: Likewise. | |
3296 | * plugin.cc: Likewise. | |
3297 | * powerpc.cc: Likewise. | |
3298 | * reduced_debug_output.cc: Likewise. | |
3299 | * reduced_debug_output.h: Likewise. | |
3300 | * reloc.cc: Likewise. | |
3301 | * reloc.h: Likewise. | |
3302 | * resolve.cc: Likewise. | |
3303 | * script-sections.cc: Likewise. | |
3304 | * script.cc: Likewise. | |
3305 | * script.h: Likewise. | |
3306 | * sparc.cc: Likewise. | |
3307 | * symtab.cc: Likewise. | |
3308 | * symtab.h: Likewise. | |
3309 | * target-select.cc: Likewise. | |
3310 | * target-select.h: Likewise. | |
3311 | * token.h: Likewise. | |
3312 | * workqueue.cc: Likewise. | |
3313 | * workqueue.h: Likewise. | |
3314 | * x86_64.cc: Likewise. | |
3315 | ||
a0351a69 DK |
3316 | 2009-12-10 Doug Kwan <[email protected]> |
3317 | ||
3318 | * arm.cc (attributes.h): New include. | |
3319 | (Arm_relobj::Arm_relobj): Initialize attributes_section_data_. | |
3320 | (Arm_relobj::~Arm_relobj): Delete object pointed by | |
3321 | attributes_section_data_. | |
3322 | (Arm_relobj::attributes_section_data): New method definition. | |
3323 | (Arm_relobj::attributes_section_data_): New data member declaration. | |
3324 | (Arm_dynobj::Arm_dynobj): Initialize attributes_section_data_. | |
3325 | (Arm_dynobj::~Arm_dynobj): Delete object pointed by | |
3326 | attributes_section_data_. | |
3327 | (Arm_dynobj::attributes_section_data): New method definition. | |
3328 | (Arm_dynobj::attributes_section_data_): New data member declaration. | |
3329 | (Target_arm::Target_arm): Initialize attributes_section_data_. Change | |
3330 | initialization value of may_use_blx_ to false. | |
3331 | (Target_arm::using_thumb2, Target_arm::using_thumb_only, | |
3332 | Target_arm::may_use_arm_nop, Target_arm::may_use_thumb2_nop): Use | |
3333 | object attributes to compute results instead of hard-coding. | |
3334 | (Target_arm::do_attribute_arg_type, Target_arm::do_attributes_order, | |
3335 | Target_arm::get_secondary_compatible_arch, | |
3336 | Target_arm::set_secondary_compatible_arch | |
3337 | Target_arm::tag_cpu_arch_combine, Target_arm::aeabi_enum_name, | |
3338 | Target_arm::tag_cpu_name_value, Target_arm::merge_object_attributes): | |
3339 | New method declarations. | |
3340 | (Target_arm::get_aeabi_object_attribute): New method definition. | |
3341 | (Target_arm::attributes_section_data_): New data member declaration. | |
3342 | (read_arm_attributes_section): New template definition. | |
3343 | (Arm_relobj::do_read_symbols): Read attributes section if it exists. | |
3344 | (Arm_dynobj::do_read_symbols): Ditto. | |
3345 | (Target_arm::do_finalize_sections): Merge attributes sections from | |
3346 | input. Check for BLX use after attributes section merging. | |
3347 | Fix __exidx_start and __exidx_end visibility. Create an | |
3348 | .ARM.attributes section if necessary. | |
3349 | (Target_arm::get_secondary_compatible_arch, | |
3350 | Target_arm::set_secondary_compatible_arch, | |
3351 | Target_arm::tag_cpu_arch_combine, Target_arm::aeabi_enum_name, | |
3352 | Target_arm::tag_cpu_name_value, Target_arm::merge_object_attributes, | |
e1df38aa | 3353 | Target_arm::do_attribute_arg_type, Target_arm::do_attributes_order): |
a0351a69 DK |
3354 | New method definitions. |
3355 | ||
b59befec ILT |
3356 | 2009-12-09 Ian Lance Taylor <[email protected]> |
3357 | ||
3358 | * plugin.cc (Plugin::load): Don't cast from void* to a function | |
3359 | pointer. | |
3360 | ||
1276bc89 ILT |
3361 | 2009-12-09 Ian Lance Taylor <[email protected]> |
3362 | ||
3363 | * dynobj.cc (Sized_dynobj::do_read_symbols): Clear version | |
3364 | information fields. | |
3365 | ||
2f2de248 L |
3366 | 2009-12-09 H.J. Lu <[email protected]> |
3367 | ||
3368 | * testsuite/Makefile.am (two_file_shared_1_pic_2_test_DEPENDENCIES): | |
3369 | Replace two_file_shared_1.so with two_file_shared_2.so. | |
3370 | * testsuite/Makefile.in: Regenerated. | |
3371 | ||
4f787271 DK |
3372 | 2009-12-08 Doug Kwan <[email protected]> |
3373 | ||
3374 | * Makefile.am (CCFILES): Add attributes.cc and int_encoding.cc. | |
3375 | (HFILES): Add attributes.h and int_encoding.h. | |
3376 | * Makefile.in: Regenerate. | |
3377 | * dwarf_reader.cc (read_unsigned_LEB_128, read_signed_LEB_128): Move | |
3378 | function definitions to int_encoding.cc | |
3379 | * dwarf_reader.h (read_unsigned_LEB_128, read_signed_LEB_128): Move | |
3380 | prototypes to int_encoding.h | |
3381 | * reduced_debug_output.cc (int_encoding.h): New include. | |
3382 | (write_unsigned_LEB_128, get_length_as_unsigned_LEB_128): Move | |
3383 | function definitions to int_encoding.cc | |
3384 | (insert_into_vector, read_from_pointer): Move template definitions to | |
3385 | int_encoding.h | |
3386 | * attributes.cc: New file. | |
3387 | * attributes.h: New file. | |
3388 | * int_encoding.cc: New file. | |
3389 | * int_encoding.h: New file. | |
3390 | ||
20b52f1a RÁE |
3391 | 2009-12-07 Rafael Avila de Espindola <[email protected]> |
3392 | ||
3393 | PR gold/11055 | |
3394 | * incremental-dump.cc (dump_incremental_inputs): New. | |
3395 | (main): Use dump_incremental_inputs. | |
3396 | ||
53d7974c L |
3397 | 2009-12-07 H.J. Lu <[email protected]> |
3398 | ||
3399 | PR gold/10893 | |
3400 | * i386.cc (Target_i386::Scan::globa): Use is_func instead of | |
3401 | checking elfcpp::STT_FUNC. | |
3402 | (Target_i386::Relocate::relocate): Likewise. | |
3403 | * x86_64.cc (Target_x86_64::Scan::global): Likewise. | |
3404 | ||
3405 | * symtab.cc (Symbol_table::sized_write_symbol): Turn IFUNC | |
3406 | symbols from shared libraries into normal FUNC symbols. | |
3407 | ||
3408 | * symtab.h (Symbol): Add is_func and use it. | |
3409 | ||
05a352e6 DK |
3410 | 2009-12-05 Doug Kwan <[email protected]> |
3411 | ||
3412 | * arm.cc (Target_arm::arm_info): Initialize new fields | |
3413 | attributes_section and attributes_vendor. | |
3414 | * i386.cc (Target_i386::i386_info): Same. | |
3415 | * object.cc (Sized_relobj::do_layout): Skip attribute section. | |
3416 | * gold/powerpc.cc (Target_powerpc::powerpc_info): Initialize new | |
3417 | fields attributes_section and attributes_vendor. | |
53d7974c | 3418 | * sparc.cc (Target_sparc::sparc_info): Same. |
05a352e6 DK |
3419 | * target.h (Target::attributes_section, Target::attributes_vendor, |
3420 | Target::is_attributes_section, Target::attribute_arg_type, | |
3421 | Target::attributes_order): New method definitions. | |
3422 | (Target::Target_info::attributes_section, | |
3423 | Target::Target_info::attributes_vendor): New fields. | |
3424 | (Target::do_attribute_arg_type, Target::do_attributes_order): New | |
3425 | virtual method definitions. | |
3426 | * x86_64.cc (Target_x86_64::x86_64_info): Initialize new fields | |
3427 | attributes_section and attributes_vendor. | |
3428 | * testsuite/testfile.cc (Target_test::test_target_info): Same. | |
3429 | ||
f4e5969c DK |
3430 | 2009-12-05 Doug Kwan <[email protected]> |
3431 | ||
3432 | * arm.cc: Update comments about interworking and stub generation. | |
3433 | (Target_arm::Relocate::reloc_is_non_pic): Update list of relocations | |
3434 | considered as non-PIC. | |
3435 | (Arm_relocate_functions::base_abs): Fix formatting. | |
3436 | (Arm_relocate_functions::got_prel): Fix comment. Change interface | |
3437 | of function to use GOT entry address instead of offset. | |
3438 | (Target_arm::Scan::global): Issue an error if a symbol would need a | |
3439 | PLT does not get one because it is untyped. Remove code to create | |
3440 | dynamic symbols for relative branches. | |
3441 | (Target_arm::Relocate::relocate: Use 0 instead of false since function | |
3442 | takes unsigned integer instead of boolean. | |
3443 | ||
1abce4a6 L |
3444 | 2009-12-05 H.J. Lu <[email protected]> |
3445 | ||
3446 | * testsuite/Makefile.am (constructor_test_LDADD): New. Empty. | |
3447 | (two_file_test_LDADD): Likewise. | |
3448 | (common_test_1_LDADD): Likewise. | |
3449 | (exception_test_LDADD) Likewise. | |
3450 | (weak_test_LDADD): Likewise. | |
3451 | (many_sections_test_LDADD): Likewise. | |
3452 | (initpri1_LDADD): Likewise. | |
3453 | (script_test_1_LDADD): Likewise. | |
3454 | (script_test_2_LDADD): Likewise. | |
3455 | (justsyms_LDADD): Likewise. | |
3456 | (binary_test_LDADD): Likewise. | |
3457 | (large_LDADD): Likewise. | |
3458 | * testsuite/Makefile.in: Regenerated. | |
3459 | ||
adcf2816 | 3460 | 2009-12-04 H.J. Lu <[email protected]> |
1abce4a6 | 3461 | |
adcf2816 L |
3462 | * resolve.cc (symbol_to_bits): Treat STB_GNU_UNIQUE as STB_GLOBAL. |
3463 | (Symbol_table::override_with_special): Likewise. | |
3464 | (Symbol_table::add_from_object): Likewise. | |
3465 | ||
28e67f5d RÁE |
3466 | 2009-12-04 Rafael Avila de Espindola <[email protected]> |
3467 | ||
3468 | * incremental.cc (Incremental_inputs::sized_create_inputs_section_data): | |
3469 | Don't set the data_offset twice. | |
3470 | ||
ae10a101 RÁE |
3471 | 2009-12-04 Rafael Avila de Espindola <[email protected]> |
3472 | ||
3473 | * testsuite/Makefile.in: Regenerate. | |
3474 | ||
f59f41f3 DK |
3475 | 2009-12-03 Doug Kwan <[email protected]> |
3476 | ||
3477 | * arm.cc: Remove comment about missing .ARM.exidx section symbols. | |
3478 | (Target_arm::do_finalize_sections): Add parameter for symbol table | |
3479 | pointer. Add __exidx_start and __exidx_end symbols as appropriate. | |
3480 | * i386.cc (Target_i386::do_finalize_sections): Add an additional | |
3481 | parameter for symbol table pointer. | |
3482 | * layout.cc (Layout::finalize): Call Target::finalize_sections with | |
3483 | an additional parameter for a pointer to symbol table. | |
3484 | * powerpc.cc (Target_powerpc::do_finalize_sections): Add an additional | |
3485 | parameter for a symbol table pointer. | |
3486 | * sparc.cc (Target_sparc::do_finalize_sections): Ditto. | |
3487 | * target.h (Target::finalize_sections, Target::do_finalize_sections): | |
3488 | Ditto. | |
3489 | * x86_64.cc (Target_x86_64::do_finalize_sections): Add an additional | |
3490 | parameter for a symbol table pointer. | |
3491 | ||
ca55d848 RÁE |
3492 | 2009-12-03 Rafael Avila de Espindola <[email protected]> |
3493 | ||
3494 | * incremental.cc (Incremental_inputs_header) | |
3495 | (Incremental_inputs_header_write, Incremental_inputs_entry) | |
3496 | (Incremental_inputs_entry_write): Move ... | |
3497 | * incremental.h (Incremental_inputs_header) | |
3498 | (Incremental_inputs_header_write, Incremental_inputs_entry) | |
3499 | (Incremental_inputs_entry_write): here. | |
3500 | ||
3aec4f9c RÁE |
3501 | 2009-12-02 Rafael Avila de Espindola <[email protected]> |
3502 | ||
3503 | * incremental.cc (make_sized_incremental_binary): Set the target. | |
3504 | Error if it is incompatible. | |
3505 | * output.h (Output_file): Add filename method. | |
3506 | ||
9c0ae74d RÁE |
3507 | 2009-12-02 Rafael Avila de Espindola <[email protected]> |
3508 | ||
3509 | * incremental.cc (Incremental_inputs_entry): Remove unused argument | |
3510 | from the get_* methods. | |
3511 | ||
a45500ae RÁE |
3512 | 2009-12-02 Rafael Avila de Espindola <[email protected]> |
3513 | ||
3514 | * incremental-dump.cc (main): Check that the offeset of a script is 0. | |
3515 | * incremental.cc (Incremental_inputs::sized_create_inputs_section_data): | |
3516 | Write 0 for the data_offset of scripts. | |
3517 | ||
325e6408 RÁE |
3518 | 2009-12-02 Rafael Avila de Espindola <[email protected]> |
3519 | ||
3520 | * testsuite/Makefile.am: Add the incremental_test.sh test. | |
3521 | * testsuite/incremental_test.sh: New. | |
3522 | * testsuite/incremental_test_1.c: New. | |
3523 | * testsuite/incremental_test_2.c: New. | |
3524 | ||
954c3e2e RÁE |
3525 | 2009-12-01 Rafael Avila de Espindola <[email protected]> |
3526 | ||
3527 | * incremental-dump.cc (main): Fix typos. | |
3528 | ||
f8086623 RÁE |
3529 | 2009-11-27 Rafael Avila de Espindola <[email protected]> |
3530 | ||
3531 | PR gold/11025 | |
3532 | * incremental-dump.cc (main): Use llu to print 64 bit values. | |
3533 | ||
3b0dd6ac L |
3534 | 2009-11-26 Per Øyvind Karlsen <[email protected]> |
3535 | H.J. Lu <[email protected]> | |
3536 | ||
3537 | * Makefile.am (incremental_dump_DEPENDENCIES): Add $(THREADSLIB) | |
3538 | $(LIBDL). | |
3539 | (incremental_dump_LDADD): Likewise. | |
3540 | * Makefile.in: Regenerated. | |
3541 | ||
a6d1ef57 | 3542 | 2009-11-25 Doug Kwan <[email protected]> |
e1df38aa | 3543 | |
a6d1ef57 DK |
3544 | Revert: |
3545 | ||
3546 | 2009-11-25 Doug Kwan <[email protected]> | |
3547 | ||
3548 | * arm.cc (Target_arm::Target_arm): Move method definition | |
3549 | outside of class definition. Add code to handle | |
3550 | --target1-rel, --target1-abs and --target2= options. | |
3551 | (Target_arm::get_reloc_reloc_type): Change method to be | |
3552 | non-static and const. | |
3553 | (Target_arm::target1_is_rel_, Target_arm::target2_reloc_): | |
3554 | New data member declaration. | |
3555 | (Target_arm::Scan::local, Target_arm::Scan::global, | |
3556 | Target_arm::Relocate::relocate, | |
3557 | Target_arm::Relocatable_size_for_reloc::get_size_for_reloc): | |
3558 | Adjust call to Target_arm::get_real_reloc_type. | |
3559 | (Target_arm::get_real_reloc_type): Use command line options | |
3560 | to determine real types of R_ARM_TARGET1 and R_ARM_TARGET2. | |
3561 | * options.h (--target1-rel, --target1-abs, --target2): New | |
3562 | ARM-only options. | |
3563 | ||
50aeb7d4 DK |
3564 | 2009-11-25 Doug Kwan <[email protected]> |
3565 | ||
3566 | * arm.cc (Target_arm::Target_arm): Move method definition outside of | |
3567 | class definition. Add code to handle --target1-rel, --target1-abs | |
3568 | and --target2= options. | |
3569 | (Target_arm::get_reloc_reloc_type): Change method to be non-static | |
3570 | and const. | |
3571 | (Target_arm::target1_is_rel_, Target_arm::target2_reloc_): New data | |
3572 | member declaration. | |
3573 | (Target_arm::Scan::local, Target_arm::Scan::global, | |
3574 | Target_arm::Relocate::relocate, | |
3575 | Target_arm::Relocatable_size_for_reloc::get_size_for_reloc): Adjust | |
3576 | call to Target_arm::get_real_reloc_type. | |
3577 | (Target_arm::get_real_reloc_type): Use command line options to | |
3578 | determine real types of R_ARM_TARGET1 and R_ARM_TARGET2. | |
3579 | * options.h (--target1-rel, --target1-abs, --target2): New ARM-only | |
3580 | options. | |
3581 | ||
51938283 DK |
3582 | 2009-11-25 Doug Kwan <[email protected]> |
3583 | ||
3584 | * arm.cc (Target_arm::may_use_thumb2_nop): New method definition. | |
3585 | (Arm_relocate_functions::thumb_branch_common): New metod declaration. | |
3586 | (Arm_relocate_functions::abs12, Arm_relocate_functions::abs16): Fix | |
3587 | formatting. | |
3588 | (Arm_relocate_functions::thm_call): Replace body with a call to | |
3589 | Arm_relocate_functions::thumb_branch_common. | |
3590 | (Arm_relocate_functions::thm_jump24, | |
3591 | Arm_relocate_functions::thm_xpc22): New method definitions. | |
3592 | (Arm_relocate_functions::thumb_branch_common): New method definition. | |
3593 | (Reloc_stub::stbu_type_for_reloc): Fix incorrect uses of bit-wise-or | |
3594 | operator. | |
3595 | (Target_arm::Relocate::relocate): Adjust call to thm_call. | |
3596 | Add code to handle R_ARM_THM_XPC22 and R_ARM_THM_JUMP24. | |
3597 | ||
e2b8f3c4 RÁE |
3598 | 2009-11-24 Rafael Avila de Espindola <[email protected]> |
3599 | ||
3600 | * Makefile.am: Build incremental-dump | |
3601 | * Makefile.in: Regenerate. | |
3602 | * incremental-dump.cc: New. | |
3603 | * incremental.cc (Incremental_inputs_header_data, | |
3604 | Incremental_inputs_entry_data): Move to incremental.h | |
3605 | * incremental.h: (Incremental_inputs_header_data, | |
3606 | Incremental_inputs_entry_data): Move from incremental.cc | |
3607 | ||
bcba9aec RÁE |
3608 | 2009-11-24 Rafael Avila de Espindola <[email protected]> |
3609 | ||
3610 | * incremental.cc (Incremental_inputs_header, | |
3611 | Incremental_inputs_header_write, Incremental_inputs_entry, | |
3612 | Incremental_inputs_entry_write): Add a typedef with the data type. | |
3613 | ||
7c3afe08 RÁE |
3614 | 2009-11-24 Rafael Avila de Espindola <[email protected]> |
3615 | ||
3616 | * incremental.cc (Incremental_inputs_header, | |
3617 | Incremental_inputs_header_write, Incremental_inputs_entry, | |
3618 | Incremental_inputs_entry_write): Update comment about which | |
3619 | type has the filed descriptions. | |
3620 | ||
d204b6e9 DK |
3621 | 2009-11-15 Doug Kwan <[email protected]> |
3622 | ||
3623 | * arm.cc (Target_arm::may_use_arm_nop): New method definition. | |
3624 | (Arm_relocate_functions::arm_branch_common): Change method defintion | |
3625 | in class definition to a method declaration and update list of formal | |
3626 | parameters. | |
3627 | (Arm_relocate_functions::plt32, Arm_relocate_functions::call, | |
3628 | Arm_relocation_functions::jump24): Adjust call to | |
3629 | Arm_relocate_functions::arm_branch_common. Update list of formal | |
3630 | parameters. | |
3631 | (Arm_relocate_functions::xpc25): New method definition. | |
3632 | (Arm_relocate_functions::arm_branch_common): Move method defintion | |
3633 | out from class definition. Use stubs for mode-switching and extending | |
3634 | branch ranges. | |
3635 | (Target_arm::Relocate::relocate): Handle weakly-undefined symbols | |
3636 | specially. Change code to enable use of stubs in ARM branches. | |
3637 | ||
43d12afe DK |
3638 | 2009-11-10 Doug Kwan <[email protected]> |
3639 | ||
3640 | * arm.cc (Arm_relobj::do_relocate_sections): Remove options parameter | |
3641 | in method declaration. | |
3642 | (Target_arm::relocate_stub): New method declaration. | |
3643 | (Target_arm::default_target): Change to return a pointer instead of | |
3644 | a const reference. | |
3645 | (Reloc_stub::stub_type_for_reloc): Adjust for the change in | |
3646 | Target_arm::default_target. | |
3647 | (Arm_Relobj::do_relocate_sections): Remove options paramater in | |
3648 | method definition. | |
3649 | (Target_arm::relocate_section): Adjust view. | |
3650 | (Target_arm::relocate_stub): New method definition. | |
3651 | ||
ac33a407 DK |
3652 | 2009-11-10 Doug Kwan <[email protected]> |
3653 | ||
3654 | * i386.cc (Target_i386::do_calls_non_split): Add a cast to avoid | |
3655 | a format warning. | |
3656 | * incremental.cc (open_incremental_binary): Initialized local | |
3657 | variables to avoid warnings. | |
3658 | * object.cc (make_elf_object): Ditto. | |
3659 | * x86_64.cc (Target_x86_64::do_calls_non_split): Add a cast to avoid | |
3660 | a format warning. | |
e1df38aa | 3661 | |
88ee28e9 L |
3662 | 009-11-09 H.J. Lu <[email protected]> |
3663 | ||
3664 | PR gold/10930 | |
3665 | * testsuite/plugin_test.c: Include "config.h". | |
3666 | ||
2daedcd6 DK |
3667 | 2009-11-09 Doug Kwan <[email protected]> |
3668 | ||
3669 | * arm.cc (Target_arm::fake_relnum_for_stubs): New constant. | |
3670 | (arm_symbol_value): Remove. | |
3671 | (Arm_relocate_functions::arm_branch_common, | |
3672 | Arm_relocate_functions::abs8, Arm_relocate_functions::thm_abs5, | |
3673 | Arm_relocate_functions::abs12, Arm_relocate_functions::abs16, | |
3674 | Arm_relocate_functions::abs32, Arm_relocate_functions::rel32, | |
3675 | Arm_relocate_functions::thm_call, Arm_relocate_functions::plt32, | |
3676 | Arm_relocate_functions::call, Arm_relocate_functions::jump24, | |
3677 | Arm_relocate_functions::prel31, Arm_relocate_functions::mov_abs_nc, | |
3678 | Arm_relocate_functions::movt_abs, Arm_relocate_functions::movw_abs_nc, | |
3679 | Arm_relocate_functions::thm_mobw_abs_nc, | |
3680 | Arm_relocate_functions::thm_mov_abs, | |
3681 | Arm_relocate_functions::movw_prel_nc, | |
3682 | Arm_relocate_functions::thm_movt_abs, | |
3683 | Arm_relocate_functions::movt_prel, | |
3684 | Arm_relocate_functions::thm_movw_prel_nc, | |
3685 | Arm_relocate_functions::thm_movt_prel): Adjust callers of the above. | |
3686 | (Target_arm::Relocate::relocate): Only decompose address into two | |
3687 | parts if relocation type uses the thumb-bit and pass the actual | |
3688 | bit instead of a flag indicating that the thumb-bit is used. Adjust | |
3689 | calls to methods in Arm_relocate_functions for this change. | |
3690 | ||
1276bc89 | 3691 | 2009-11-08 Ian Lance Taylor <[email protected]> |
3e4afc80 ILT |
3692 | |
3693 | PR 10925 | |
3694 | * reloc.cc: Instantiate | |
3695 | Sized_relobj::initialize_input_to_output_maps and | |
3696 | Sized_relobj:free_input_to_output_maps. | |
3697 | ||
e53ad1b5 ILT |
3698 | 2009-11-06 Ian Lance Taylor <[email protected]> |
3699 | ||
3700 | PR 10876 | |
3701 | * defstd.cc (in_segment): Set only_if_ref true for "end". | |
3702 | ||
eb44217c DK |
3703 | 2009-11-06 Doug Kwan <[email protected]> |
3704 | ||
3705 | * arm.cc (class Reloc_stub): Correct a comment. | |
3706 | (Target_arm::Target_arm): Initialize arm_input_section_map_. | |
3707 | (Target_arm::scan_section_for_stubs): New method declaration. | |
3708 | (Target_arm::do_make_elf_object, Target_arm::do_make_output_section): | |
3709 | Change methods from private to protected. | |
3710 | (Target_arm::do_may_relax): New method definition. | |
3711 | (Target_arm::do_relax, Target_arm::group_sections, | |
3712 | Target_arm::scan_reloc_for_stub, | |
3713 | Target_arm::scan_reloc_section_for_stubs): New method declarations. | |
3714 | (Target_arm::arm_input_section_map_): New data member declaration. | |
3715 | (Target_arm::scan_reloc_for_stub, | |
3716 | Target_arm::scan_reloc_section_for_stubs, | |
3717 | Target_arm::scan_section_for_stubs, Target_arm::group_sections, | |
3718 | Target_arm::do_relax): New method definitions. | |
3719 | ||
5d329b7d ILT |
3720 | 2009-11-06 Mikolaj Zalewski <[email protected]> |
3721 | ||
3722 | * configure.ac: Check for (struct stat)::st_mtim | |
3723 | * fileread.cc (File_read::get_mtime): Use st_mtim if available. | |
3724 | * config.in: Regenerate. | |
3725 | * configure: Regenerate. | |
3726 | ||
96a0d71b ILT |
3727 | 2009-11-05 Ian Lance Taylor <[email protected]> |
3728 | ||
3729 | PR 10910 | |
3730 | * output.cc (Output_segment::add_output_section): Add missing | |
3731 | return statement. | |
3732 | ||
594c8e5e ILT |
3733 | 2009-11-04 Ian Lance Taylor <[email protected]> |
3734 | ||
3735 | PR 10880 | |
3736 | * object.h (class Object): Add is_needed and set_is_needed | |
3737 | methods. Add is_needed_ field. Make bool fields into bitfields. | |
3738 | * symtab.cc (Symbol_table::set_dynsym_indexes): If a symbol is | |
3739 | defined in a dynamic object and referenced by a regular object, | |
3740 | set is_needed for the dynamic object. | |
3741 | * layout.cc (Layout::finish_dynamic_section): Don't add DT_NEEDED | |
3742 | if the file is marked with as_needed and it is not needed. | |
3743 | ||
22b127cc ILT |
3744 | 2009-11-04 Ian Lance Taylor <[email protected]> |
3745 | ||
3746 | PR 10887 | |
3747 | * arm.cc (Target_arm::do_finalize_sections): Don't add dynamic | |
3748 | tags if data is discarded by linker script. | |
3749 | * i386.cc (Target_i386::do_finalize_sections): Likewise. | |
3750 | * powerpc.cc (Target_powerpc::do_finalize_sections): Likewise. | |
3751 | * sparc.cc (Target_sparc::do_finalize_sections): Likewise. | |
3752 | * x86_64.cc (Target_x86_64::do_finalize_sections): Likewise. | |
3753 | ||
f5c870d2 ILT |
3754 | 2009-11-04 Ian Lance Taylor <[email protected]> |
3755 | ||
3756 | * layout.cc (Layout::get_output_section): Add is_interp and | |
3757 | is_dynamic_linker_section parameters. Change all callers. | |
3758 | (Layout::choose_output_section): Likewise. | |
3759 | (Layout::make_output_section): Likewise. | |
3760 | (Layout::add_output_section_data): Add is_dynamic_linker_section | |
3761 | parameter. Change all callers. | |
3762 | * layout.h (class Layout): Update declarations. | |
3763 | * output.h (class Output_section): Add is_interp, set_is_interp, | |
3764 | is_dynamic_linker_section, set_is_dynamic_linker_section methods. | |
3765 | Add is_interp_, is_dynamic_linker_section_ fields. Change | |
3766 | generate_code_fills_at_write_ to a bitfield. | |
3767 | * output.cc (Output_section::Output_sections): Initialize new | |
3768 | fields. | |
3769 | (Output_segment::add_output_section): Add do_sort parameter. | |
3770 | Change all callers. | |
3771 | ||
1ae4d23b ILT |
3772 | 2009-11-03 Ian Lance Taylor <[email protected]> |
3773 | ||
3774 | PR 10860 | |
3775 | * options.h (class General_options): Add --warn-common. | |
3776 | * resolve.cc (Symbol_table::resolve): Handle --warn-common when | |
3777 | merging two common symbols. | |
3778 | (Symbol_table::should_override): Handle --warn-common when merging | |
3779 | a common symbol with a defined symbol. Use report_resolve_problem | |
3780 | for multiple definitions. | |
3781 | (Symbol_table::report_resolve_problem): New function. | |
3782 | * symtab.h (class Symbol_table): Declare report_resolve_problem. | |
3783 | ||
55da9579 DK |
3784 | 2009-11-03 Doug Kwan <[email protected]> |
3785 | ||
3786 | * arm.cc (Target_arm::Target_arm): Initialize stub_tables_ and | |
3787 | stub_factory_. | |
3788 | (Target_arm::stub_factory): New method definition. | |
3789 | (Target_arm::new_arm_input_section, | |
3790 | Target_arm::find_arm_input_section, Target_arm::new_stub_table, | |
3791 | Target_arm::reloc_uses_thumb_bit): New method declarations. | |
e1df38aa | 3792 | (Target_arm::Stub_table_list, Target_arm::Arm_input_section_map): |
55da9579 DK |
3793 | New type definitions. |
3794 | (Target_arm::stub_tables_, Target_arm::stub_factory_): New data | |
3795 | member declarations. | |
3796 | (Target_arm::reloc_uses_thumb_bit, Target_arm::new_arm_input_section, | |
3797 | Target_arm::find_arm_input_section, Target_arm::new_stub_table): | |
3798 | New method definitions. | |
3799 | ||
37a9ac43 ILT |
3800 | 2009-11-03 Ian Lance Taylor <[email protected]> |
3801 | ||
3802 | * options.h (class General_options): Add --warn_constructors. | |
3803 | ||
b3d6a3d4 ILT |
3804 | 2009-11-03 Ian Lance Taylor <[email protected]> |
3805 | ||
3806 | PR 10893 | |
3807 | * defstd.cc (in_section): Add entries for __rel_iplt_start, | |
3808 | __rel_iplt_end, __rela_iplt_start, __rela_iplt_end, and __stack. | |
3809 | ||
934b01dd ILT |
3810 | 2009-11-03 Ian Lance Taylor <[email protected]> |
3811 | ||
3812 | PR 10895 | |
3813 | * po/Make-in ($(srcdir)/$(PACKAGE).pot): Pass -C and | |
3814 | --msgid-bugs-address. | |
3815 | (install-pdf): New target. | |
3816 | (install-data_yes): Look up one directory to find mkinstalldirs. | |
3817 | ||
03c1939b L |
3818 | 2009-11-03 H.J. Lu <[email protected]> |
3819 | ||
3820 | * po/Make-in (.po.gmo): Don't generate .gmo files in source | |
3821 | tree. | |
3822 | ||
ebd95253 DK |
3823 | 2009-10-30 Doug Kwan <[email protected]> |
3824 | ||
3825 | * arm.cc (Stub_addend_reader): Fix bug in previouls check-in. | |
3826 | ||
e9bbb538 DK |
3827 | 2009-10-30 Doug Kwan <[email protected]> |
3828 | ||
3829 | * arm.cc (Stub_addend_reader): New struct template definition | |
3830 | and partial specializations. | |
3831 | (Stub_addend_reader::operator()): New method definition for a | |
3832 | partially specialized template. | |
3833 | ||
d5b40221 DK |
3834 | 2009-10-30 Doug Kwan <[email protected]> |
3835 | ||
3836 | * arm.cc (Arm_relobj::processor_specific_flags): New method | |
3837 | definition. | |
3838 | (Arm_relobj::do_read_symbols): New method declaration. | |
3839 | (Arm_relobj::processor_specific_flags_): New data member declaration. | |
3840 | (Arm_dynobj): New class definition. | |
3841 | (Target_arm::do_finalize_sections): Add input_objects parameter. | |
3842 | (Target_arm::do_adjust_elf_header): New method declaration. | |
3843 | (Target_arm::are_eabi_versions_compatible, | |
3844 | (Target_arm::merge_processor_specific_flags): New method declaration. | |
3845 | (Target_arm::do_make_elf_object): New overloaded method definitions | |
3846 | and declaration. | |
3847 | (Arm_relobj::do_read_symbols): New method definition. | |
3848 | (Arm_dynobj::do_read_symbols): Ditto. | |
3849 | (Target_arm::do_finalize_sections): Add input_objects parameters. | |
3850 | Merge processor-specific flags from all input objects. | |
3851 | (Target_arm::are_eabi_versions_compatible, | |
3852 | Target_arm::merge_processor_specific_flags, | |
3853 | Target_arm::do_adjust_elf_header, Target_arm::do_make_elf_object): | |
3854 | New method definitions. | |
3855 | * i386.cc (Target_i386::do_finalize_sections): Add unnamed | |
3856 | Input_objects pointer type parameter. | |
3857 | * layout.cc (Layout::finalize): Pass input objects to target's. | |
3858 | finalize_sections function. | |
3859 | * output.cc (Output_file_header::do_sized_write): Set ELF file | |
3860 | header's processor-specific flags. | |
3861 | * powerpc.cc (Target_powerpc::do_finalize_sections): Add unnamed | |
3862 | Input_objects pointer type parameter. | |
3863 | * sparc.cc (Target_sparc::do_finalize_sections): Same. | |
3864 | * target.h (Input_objects): New forward class declaration. | |
3865 | (Target::processor_specific_flags, | |
3866 | Target::are_processor_specific_flags_sect): New method definitions. | |
3867 | (Target::finalize_sections): Add input_objects parameter. | |
3868 | (Target::Target): Initialize processor_specific_flags_ and | |
3869 | are_processor_specific_flags_set_. | |
3870 | (Target::do_finalize_sections): Add unnamed Input_objects pointer type | |
3871 | parameter. | |
3872 | (Target::set_processor_specific_flags): New method definition. | |
3873 | (Target::processor_specific_flags_, | |
3874 | Target::are_processor_specific_flags_set_): New data member | |
3875 | declarations. | |
3876 | * x86_64.cc (Target_x86_64::do_finalize_sections): Add unnamed | |
3877 | Input_objects pointer type parameter. | |
3878 | ||
ebabffbd DK |
3879 | 2009-10-30 Doug Kwan <[email protected]> |
3880 | ||
3881 | * arm.cc: Use Arm_address instead of elfcpp::Elf_types<32>::Elf_Addr. | |
3882 | ||
ad0f2072 ILT |
3883 | 2009-10-28 Ian Lance Taylor <[email protected]> |
3884 | ||
3885 | * object.h (class Relobj): Drop options parameter from | |
3886 | gc_process_relocs, scan_relocs, relocate, do_gc_process_relocs, | |
3887 | do_scan_relocs, do_relocate. Change all callers. | |
3888 | (class Sized_relobj): Drop options parameters from | |
3889 | do_gc_process_relocs, do_scan_relocs, do_relocate, | |
3890 | do_relocate_sections, relocate_sections, emit_relocs_scan, | |
3891 | emit_relocs_scan_reltype. Change all callers. | |
3892 | (struct Relocate_info): Remove options field and all references to | |
3893 | it. | |
3894 | * reloc.h (class Read_relocs): Remove options constructor | |
3895 | parameter and options_ field. Change all callers. | |
3896 | (class Gc_process_relocs, class Scan_relocs): Likewise. | |
3897 | (class Relocate_task): Likewise. | |
3898 | * target-reloc.h (scan_relocs): Remove options parameter. Change | |
3899 | all callers. | |
3900 | (scan_relocatable_relocs): Likewise. | |
3901 | * target.h (class Sized_target): Remove options parameter from | |
3902 | gc_process_relocs, scan_relocs, scan_relocatable_relocs. Change | |
3903 | all callers. | |
3904 | * gc.h (gc_process_relocs): Remove options parameter. Change all | |
3905 | callers. | |
3906 | * arm.cc: Update functions to remove options parameters. | |
3907 | * i386.cc: Likewise. | |
3908 | * powerpc.cc: Likewise. | |
3909 | * sparc.cc: Likewise. | |
3910 | * x86_64.cc: Likewise. | |
3911 | * testsuite/testfile.cc: Likewise. | |
3912 | ||
8ffa3667 DK |
3913 | 2009-10-28 Doug Kwan <[email protected]> |
3914 | ||
3915 | * arm.cc (Arm_relobj): New class definition. | |
e1df38aa | 3916 | (Arm_relobj::scan_sections_for_stubs, |
8ffa3667 DK |
3917 | Arm_relobj::do_count_local_symbols, Arm_relobj::do_relocate_sections): |
3918 | New method definitions. | |
3919 | ||
40f36857 CC |
3920 | 2009-10-28 Cary Coutant <[email protected]> |
3921 | ||
3922 | * plugin.h (Plugin::Plugin): Initialize cleanup_done_. | |
3923 | (Plugin::cleanup_done_): New member. | |
3924 | (Plugin_manager::Plugin_manager): Remove cleanup_done_. | |
3925 | (Plugin_manager::cleanup_done_): Remove. | |
3926 | (Plugin_manager::add_input_file): Edit error message. | |
3927 | * plugin.cc (Plugin::cleanup): Test and set cleanup_done_. | |
3928 | (Plugin_manager::cleanup): Remove use of cleanup_done_. | |
3929 | ||
2c849493 ILT |
3930 | 2009-10-27 Mikolaj Zalewski <[email protected]> |
3931 | ||
3932 | * fileread.cc: (File_read::View::~View): Use the new | |
3933 | data_ownership_ filed. | |
3934 | (File_read::~File_read): Dispose the new whole_file_view_. | |
3935 | (File_read::open): Mmap the whole file if needed. | |
3936 | (File_read::open): Use whole_file_view_ instead of contents_. | |
3937 | (File_read::find_view): Use whole_file_view_ if applicable. | |
3938 | (File_read::do_read): Use whole_file_view_ instead of contents_. | |
3939 | (File_read::make_view): Use whole_file_view_ instead of contents_, | |
3940 | update File_read::View::View call. | |
3941 | (File_read::find_or_make_view): Update File_read::View::View | |
3942 | call. | |
3943 | * fileread.h: (File_read::File_read): Initialize whole_file_view_, | |
3944 | remove contents_ | |
3945 | (File_read::View::Data_ownership): New enum. | |
3946 | (File_read::View::View): Replace bool mapped_ with Data_ownership | |
3947 | argument. | |
3948 | (File_read::View::mapped_): Remove (replaced by data_ownership_). | |
3949 | (File_read::View::data_ownership_): New field. | |
3950 | (File_read::contents_): Remove (replaced by whole_file_view_). | |
3951 | (File_read::whole_file_view_): New field. | |
3952 | * options.h (class General_options): Add --keep-files-mapped. | |
3953 | ||
24998053 CC |
3954 | 2009-10-27 Cary Coutant <[email protected]> |
3955 | ||
3956 | * symtab.cc (add_from_pluginobj): Pass correct value for is_ordinary. | |
3957 | * testsuite/Makefile.am (plugin_test_5): New test case. | |
3958 | * testsuite/Makefile.in: Regenerate. | |
3959 | ||
72adc4fa DK |
3960 | 2009-10-25 Doug Kwan <[email protected]> |
3961 | ||
3962 | * object.h (Sized_relobj::View_size, Sized_relobj::Views): Change | |
3963 | from private to protected to allow access by child class. | |
3964 | (Sized_relobj::do_relocate_sections): New method declaration. | |
3965 | (Sized_relobj::relocate_sections): Virtualize. | |
e1df38aa | 3966 | * reloc.cc (Sized_relobj::do_relocate_sections): Rename from |
72adc4fa DK |
3967 | Sized_relobj::relocate_sections. Instantiate template explicitly |
3968 | for different target sizes and endianity. | |
3969 | ||
07f508a2 DK |
3970 | 2009-10-24 Doug Kwan <[email protected]> |
3971 | ||
3972 | * arm.cc (Arm_output_section, Arm_relobj): Forward class declarations. | |
3973 | (Arm_input_section::as_arm_input_section): New method. | |
3974 | (Arm_output_section): New class definition. | |
3975 | (Arm_output_section::create_stub_group, | |
3976 | Arm_output_section::group_sections): New method definitions. | |
3977 | ||
10ad9fe5 DK |
3978 | 2009-10-22 Doug Kwan <[email protected]> |
3979 | ||
3980 | * arm.cc (Arm_input_section): New class definition. | |
3981 | (Arm_input_section::init, Arm_input_section:do_write, | |
3982 | Arm_input_section::set_final_data_size, | |
3983 | Arm_input_section::do_reset_address_and_file_offset): New method | |
3984 | definitions. | |
3985 | ||
56ee5e00 DK |
3986 | 2009-10-21 Doug Kwan <[email protected]> |
3987 | ||
3988 | * arm.cc (Stub_table, Arm_input_section): New forward class | |
3989 | declarations. | |
3990 | (Stub_table): New class defintion. | |
3991 | (Stub_table::add_reloc_stub, Stub_table::relocate_stubs | |
3992 | Stub_table::do_reset_address_and_file_offset, Stub_table::do_write): | |
3993 | New method definition. | |
3994 | ||
b569affa DK |
3995 | 2009-10-21 Doug Kwan <[email protected]> |
3996 | ||
3997 | * arm.cc: Update copyright comments. | |
3998 | (Target_arm): New forward class template declaration. | |
3999 | (Arm_address): New type. | |
4000 | (ARM_MAX_FWD_BRANCH_OFFSET, ARM_MAX_BWD_BRANCH_OFFSET, | |
4001 | THM_MAX_FWD_BRANCH_OFFSET, THM_MAX_BWD_BRANCH_OFFSET, | |
4002 | THM2_MAX_FWD_BRANCH_OFFSET, THM2_MAX_BWD_BRANCH_OFFSET): New | |
4003 | constants. | |
4004 | (Insn_template): Same. | |
4005 | (DEF_STUBS): New macro. | |
4006 | (Stub_type): New enum type. | |
4007 | (Stub_template): New class definition. | |
4008 | (Stub): Same. | |
4009 | (Reloc_stub): Same. | |
4010 | (Stub_factory): Same. | |
4011 | (Target_arm::Target_arm): Initialize may_use_blx_ and | |
4012 | should_force_pic_veneer_. | |
4013 | (Target_arm::may_use_blx, Target_arm::set_may_use_blx, | |
4014 | Target_arm::should_force_pic_veneer, | |
4015 | Target_arm::set_should_force_pic_veneer, Target_arm::using_thumb2, | |
4016 | Target_arm::using_thumb_only, Target_arm:;default_target): New | |
4017 | method defintions. | |
4018 | (Target_arm::may_use_blx_, Target_arm::should_force_pic_veneer_): | |
4019 | New data member declarations. | |
4020 | (Insn_template::size, Insn_template::alignment): New method defintions. | |
4021 | (Stub_template::Stub_template): New method definition. | |
4022 | (Reloc_stub::Key::name, Reloc_stub::stub_type_for_reloc, | |
4023 | Reloc_stub::do_fixed_endian_write, Reloc_stub::do_write): Same. | |
4024 | (Stub_factory::Stub_factory): New method definition. | |
4025 | * gold.h (string_hash): New template. | |
4026 | * output.h (Input_section_specifier::hash_value): Use | |
4027 | gold::string_hash. | |
4028 | (Input_section_specifier::string_hash): Remove. | |
4029 | * stringpool.cc (Stringpool_template::string_hash): Use | |
4030 | gold::string_hash. | |
4031 | ||
6c172549 DK |
4032 | 2009-10-20 Doug Kwan <[email protected]> |
4033 | ||
4034 | * object.cc (Sized_relobj::do_finalize_local_symbols): Handle section | |
4035 | symbols of relaxed input sections. | |
4036 | * output.h (Output_section::find_relaxed_input_section): Make | |
4037 | method public. | |
4038 | ||
c5617f2f DK |
4039 | 2009-10-16 Doug Kwan <[email protected]> |
4040 | ||
4041 | * dynobj.cc (Versions::Versions): Initialize version_script_. | |
4042 | Only insert base version symbol definition for a shared object | |
4043 | if version script defines any version versions. | |
4044 | (Versions::define_base_version): New method definition. | |
4045 | (Versions::add_def): Check that base version is not needed. | |
4046 | (Versions::add_need): Define base version lazily. | |
4047 | * dynobj.h (Versions::define_base_version): New method declaration. | |
4048 | (Versions::needs_base_version_): New data member declaration. | |
4049 | * testsuite/Makefile.am (check_SCRIPTS): Add no_version_test.sh | |
4050 | (check_DATA): Add no_version_test.stdout. | |
4051 | (libno_version_test.so, no_version_test.o no_version_test.stdout): | |
4052 | New make rules. | |
4053 | * testsuite/Makefile.in: Regenerate. | |
4054 | * testsuite/no_version_test.c: New file. | |
4055 | * testsuite/no_version_test.sh: Ditto. | |
4056 | ||
3c12dcdb DK |
4057 | 2009-10-16 Doug Kwan <[email protected]> |
4058 | ||
4059 | * expression.cc (class Segment_start_expression): New class definition. | |
4060 | (Segment_start_expression::value): New method definition. | |
4061 | (script_exp_function_segment_start): Return a new | |
4062 | Segment_start_expression. | |
4063 | * gold/script-c.h (script_saw_segment_start_expression): New function | |
4064 | prototype. | |
4065 | * script-sections.cc (Script_sections::Script_sections): Initialize | |
4066 | SAW_SEGMENT_START_EXPRESSION_ to false. | |
4067 | (Script_sections::set_section_addresses): Use -Ttext, -Tdata | |
4068 | and -Tbbs options to specify section addresses if given in | |
4069 | command line and no SEGMENT_START expression is seen in a script. | |
4070 | * script-sections.h (Script_sections::saw_segment_start_expression, | |
4071 | Script_sections::set_saw_segment_start_expression): New method | |
4072 | definition. | |
4073 | (Script_sections::saw_segment_start_expression_): New data member | |
4074 | declaration. | |
4075 | * script.cc (script_saw_segment_start_expression): New function. | |
4076 | * yyscript.y (SEGMENT_START): Call script_saw_segment_start_expression. | |
4077 | * testsuite/Makefile.am (check_SCRIPTS): Add script_test_6.sh, | |
4078 | script_test_7.sh and script_test_8.sh. | |
4079 | (check_DATA): Add script_test_6.stdout, script_test_7.stdout and | |
4080 | script_test_8.stdout. | |
4081 | (MOSTLYCLEANFILES): Add script_test_6, script_test_7 and script_test_8. | |
4082 | (script_test_6, script_test_6.stdout, script_test_7, | |
4083 | script_test_7.stdout, script_test_8, script_test_8.stdout): New rules. | |
4084 | * Makefile.in: Regenerate. | |
4085 | * testsuite/script_test_6.sh: New file. | |
4086 | * testsuite/script_test_6.t: Same. | |
4087 | * testsuite/script_test_7.sh: Same. | |
4088 | * testsuite/script_test_7.t: Same. | |
4089 | * testsuite/script_test_8.sh: Same. | |
4090 | ||
64b1ae37 DK |
4091 | 2009-10-16 Doug Kwan <[email protected]> |
4092 | ||
4093 | * output.cc (Output_segment::set_section_list_address): Cast | |
4094 | expressions to unsigned long long type to avoid format warnings. | |
4095 | ||
661be1e2 ILT |
4096 | 2009-10-15 Ian Lance Taylor <[email protected]> |
4097 | ||
12edd763 | 4098 | * script.cc (Script_options::add_symbol_assignment): Always add a |
b3d6a3d4 | 4099 | dot assignment to script_sections_. |
12edd763 ILT |
4100 | * script-sections.cc (Script_sections::add_dot_assignment): |
4101 | Initialize if necessary. | |
4102 | ||
68b6574b ILT |
4103 | * layout.cc (Layout::relaxation_loop_body): Don't crash if we see |
4104 | program headers with no load segment if there is a linker script. | |
4105 | ||
661be1e2 ILT |
4106 | * layout.cc (Layout::set_segment_offsets): Align the file offset |
4107 | to the segment aligment for -N or -n with no load segment. | |
4108 | * output.cc (Output_segment::add_output_section): Don't crash if | |
4109 | the first section is a TLS section. | |
4110 | (Output_segment::set_section_list_addresses): Print an error | |
4111 | message if the address moves backward in a linker script. | |
4112 | * script-sections.cc | |
4113 | (Output_section_element_input::set_section_addresses): Don't | |
4114 | increase *dot_value for a SHF_TLS/SHT_NOBITS section. | |
4115 | (Orphan_output_section::set_section_addresses): Likewise. | |
4116 | ||
f15f61a7 DK |
4117 | 2009-10-15 Doug Kwan <[email protected]> |
4118 | ||
4119 | * layout.cc (Layout::finish_dynamic_section): Generate tags | |
4120 | DT_FINI_ARRAY, DT_FINI_ARRAYSZ, DT_INIT_ARRAY, DT_INIT_ARRAYSZ, | |
4121 | DT_PREINIT_ARRAY, DT_PREINIT_ARRAYSZ as needed. If -Bsymbolic is | |
4122 | used, add DT_SYMBOLIC and set DF_SYMBOLIC in DT_FLAGS. | |
4123 | ||
82bb573a ILT |
4124 | 2009-10-14 Ian Lance Taylor <[email protected]> |
4125 | ||
4126 | * object.h (class Relocate_info): Add reloc_shdr and data_shdr | |
4127 | fields. | |
4128 | * object.cc (Sized_relobj::relocate_sections): Set reloc_shdr and | |
4129 | data_shdr fields of relinfo. | |
4130 | * i386.cc (class Target_i386::Relocate): Remove ldo_addrs_ field. | |
4131 | (Target_i386::Relocate::relocate_tls): Don't call fix_up_ldo. For | |
4132 | R_386_TLS_LDO_32, adjust based on section flags. | |
4133 | (Target_i386::Relocate::fix_up_ldo): Remove. | |
4134 | ||
374ad285 ILT |
4135 | 2009-10-13 Ian Lance Taylor <[email protected]> |
4136 | ||
4137 | Add support for -pie. | |
4138 | * options.h (class General_options): Add -pie and | |
4139 | --pic-executable. | |
4140 | (General_options::output_is_position_independent): Test -pie. | |
4141 | (General_options::output_is_executable): Return true if not shared | |
4142 | and not relocatable. | |
4143 | (General_options::output_is_pie): Remove. | |
4144 | * options.cc (General_options::finalize): Reject incompatible uses | |
4145 | of -pie. | |
4146 | * gold.cc (queue_middle_tasks): A -pie link is not static. | |
4147 | * symtab.h (Symbol::needs_plt_entry): Return false if -pie. | |
4148 | * symtab.cc (Symbol::final_value_is_known): Return false if | |
4149 | output_is_position_independent. | |
4150 | * layout.cc (Layout::set_segment_offsets): Start at address 0 if | |
4151 | output_is_position_independent. | |
4152 | * output.cc (Output_file_header::do_sized_write): Use ET_DYN if | |
4153 | output_is_position_independent. | |
4154 | * i386.cc (Output_data_plt_i386::do_write): Use the PIC PLT if | |
4155 | output_is_position_independent. | |
4156 | * testsuite/Makefile.am (check_PROGRAMS): Add basic_pie_test and | |
4157 | two_file_pie_test. | |
4158 | (basic_pie_test.o, basic_pie_test): New targets. | |
4159 | (two_file_test_1_pie.o, two_file_test_1b_pie.o): New targets. | |
4160 | (two_file_test_2_pie.o, two_file_test_main_pie.o): New targets. | |
4161 | (two_file_pie_test): New target. | |
4162 | * testsuite/Makefile.in: Rebuild. | |
4163 | * README: Remove note saying that -pie is not supported. | |
4164 | ||
c6585162 ILT |
4165 | 2009-10-13 Bernhard Reutner-Fischer <[email protected]> |
4166 | ||
4167 | * options.h (class General_options): Add -init and -fini. | |
4168 | * layout.cc (Layout::finish_dynamic_section): Emit | |
4169 | given init and fini functions. | |
4170 | ||
032ce4e9 ST |
4171 | 2009-10-13 Sriraman Tallam <[email protected]> |
4172 | ||
4173 | * gc.h (gc_process_relocs): Check if icf is enabled using new | |
4174 | function. | |
4175 | * gold.cc (queue_initial_tasks): Likewise. | |
4176 | (queue_middle_tasks): Likewise. | |
4177 | * object.cc (do_layout): Likewise. | |
4178 | * symtab.cc (is_section_folded): Likewise. | |
4179 | * main.cc (main): Likewise. | |
4180 | * reloc.cc (Read_relocs::run): Likewise. | |
4181 | (Sized_relobj::do_scan_relocs): Likewise. | |
4182 | * icf.cc (is_function_ctor_or_dtor): New function. | |
4183 | (Icf::find_identical_sections): Check if function is ctor or dtor when | |
4184 | safe icf is chosen. | |
4185 | * options.h (General_options::icf): Change option to be an enum. | |
4186 | (Icf_status): New enum. | |
4187 | (icf_enabled): New method. | |
4188 | (icf_safe_folding): New method. | |
4189 | (set_icf_status): New method. | |
4190 | (icf_status_): New variable. | |
4191 | * (options.cc) (General_options::finalize): Set icf_status_. | |
4192 | * testsuite/Makefile.am: Add commands to build icf_safe_test. Modify | |
4193 | icf_test and icf_keep_unique_test to use the --icf enum flag. | |
4194 | * testsuite/icf_safe_test.sh: New file. | |
e1df38aa | 4195 | * testsuite/icf_safe_test.cc: New file. |
032ce4e9 | 4196 | |
f345227a ST |
4197 | 2009-10-12 Sriraman Tallam <[email protected]> |
4198 | ||
4199 | * symtab.h: Check for GOLD_SYMTAB_H before header includes. Remove | |
4200 | includes to gc.h and icf.h. | |
4201 | * arm.cc: Include gc.h. | |
4202 | * gold.cc: Likewise. | |
4203 | * i386.cc: Likewise. | |
4204 | * powerpc.cc: Likewise. | |
4205 | * sparc.cc: Likewise. | |
4206 | * x86_64.cc: Likewise. | |
4207 | * gc.h: Include icf.h. | |
4208 | ||
1c7814ed ILT |
4209 | 2009-10-11 Ian Lance Taylor <[email protected]> |
4210 | ||
4211 | * plugin.cc: Include "gold.h" before other header files. | |
4212 | ||
ae3b5189 CD |
4213 | 2009-10-10 Chris Demetriou <[email protected]> |
4214 | ||
4215 | * options.h (Input_file_argument::Input_file_type): New enum. | |
4216 | (Input_file_argument::is_lib_): Replace with... | |
4217 | (Input_file_argument::type_): New member. | |
4218 | (Input_file_argument::Input_file_argument): Take Input_file_type | |
4219 | 'type' rather than boolean 'is_lib' as second argument. | |
4220 | (Input_file_argument::is_lib): Use type_. | |
4221 | (Input_file_argument::is_searched_file): New function. | |
4222 | (Input_file_argument::may_need_search): Handle is_searched_file. | |
4223 | * options.cc (General_options::parse_library): Support -l:filename. | |
4224 | (General_options::parse_just_symbols): Update for Input_file_argument | |
4225 | changes. | |
4226 | (Command_line::process): Likewise. | |
4227 | * archive.cc (Archive::get_file_and_offset): Likewise. | |
4228 | * plugin.cc (Plugin_manager::release_input_file): Likewise. | |
4229 | * script.cc (read_script_file, script_add_file): Likewise. | |
4230 | * fileread.cc (Input_file::Input_file): Likewise. | |
4231 | (Input_file::will_search_for): Handle is_searched_file. | |
4232 | (Input_file::open): Likewise. | |
4233 | * readsyms.cc (Read_symbols::get_name): Likewise. | |
4234 | * testsuite/Makefile.am (searched_file_test): New test. | |
4235 | * testsuite/Makefile.in: Regenerate. | |
4236 | * testsuite/searched_file_test.cc: New file. | |
4237 | * testsuite/searched_file_test_lib.cc: New file. | |
4238 | ||
f3048a1d ILT |
4239 | 2009-10-09 Andrew Pinski <[email protected]> |
4240 | Ian Lance Taylor <[email protected]> | |
4241 | ||
4242 | * descriptor.cc: Include <cstdio> and "binary-io.h". | |
4243 | (Descriptors::open): Open the files in binary mode always. | |
4244 | * script.cc (Lex::get_token): Treat \r as whitespace. | |
4245 | ||
d4780e57 ILT |
4246 | 2009-10-09 Ian Lance Taylor <[email protected]> |
4247 | ||
4248 | * testsuite/retain_symbols_file_test.sh: Don't test for __tcf_0. | |
4249 | ||
d9a893b8 ILT |
4250 | 2009-10-09 Andrew Pinski <[email protected]> |
4251 | Ian Lance Taylor <[email protected]> | |
4252 | ||
4253 | * configure.ac: Check for readv function also. | |
4254 | * fileread.cc (readv): Define if not HAVE_READV. | |
4255 | * fileread.h (File_read:: max_readv_entries): Set to 1 if readv | |
4256 | does not exist. | |
4257 | * config.in: Regenerate. | |
4258 | * configure: Regenerate. | |
4259 | ||
c0a62865 DK |
4260 | 2009-10-09 Doug Kwan <[email protected]> |
4261 | ||
4262 | * layout.cc (Layout::make_output_section): Call target hook to make | |
4263 | ordinary output section. | |
4264 | (Layout::finalize): Adjust parameter list of call the | |
4265 | Target::may_relax(). | |
4266 | * layout.h (class Layout::section_list): New method. | |
4267 | * merge.h (Output_merge_base::entsize): Change visibility to public. | |
4268 | (Output_merge_base::is_string, Output_merge_base::do_is_string): | |
4269 | New methods. | |
4270 | (Output_merge_string::do_is_string): New method. | |
4271 | * object.cc (Sized_relobj::do_setup): renamed from | |
4272 | Sized_relobj::set_up. | |
4273 | * object.h (Sized_relobj::adjust_shndx, | |
4274 | Sized_relobj::initializ_input_to_output_maps, | |
4275 | Sized_relobj::free_input_to_output_maps): Change visibilities to | |
4276 | protected. | |
4277 | (Sized_relobj::setup): Virtualize. | |
4278 | (Sized_relobj::do_setup): New method declaration. | |
4279 | (Sized_relobj::invalidate_section_offset, | |
4280 | Sized_relobj::do_invalidate_section_offset): New method decfinitions. | |
4281 | (Sized_relobj::elf_file, Sized_relobj::local_values): New methods. | |
4282 | * options.cc (parse_int): New function. | |
4283 | * options.h (parse_int): New declaration. | |
4284 | (DEFINE_int): New macro. | |
4285 | (stub_group_size): New option. | |
4286 | * output.cc (Output_section::Output_section): Initialize memebers | |
4287 | merge_section_map_, merge_section_by_properties_map_, | |
4288 | relaxed_input_section_map_, is_relaxed_input_section_map_valid_. | |
4289 | (Output_section::add_input_section): Handled deferred code-fill | |
4290 | generation and remove an old comment. | |
4291 | (Output_section::add_relaxed_input_section): New method definition. | |
4292 | (Output_section::add_merge_input_section): Use merge section by | |
4293 | properties map to speed to search. Update merge section maps | |
4294 | as appropriate. | |
4295 | (Output_section::build_relaxation_map): New method definition. | |
4296 | (Output_section::convert_input_sections_in_list_to_relaxed_sections): | |
4297 | Same. | |
4298 | (Output_section::relax_input_section): Renamed to | |
4299 | Output_section::convert_input_sections_to_relaxed_sections and change | |
4300 | interface to take a vector of pointers to relaxed sections. | |
4301 | (Output_section::find_merge_section, | |
4302 | Output_section::find_relaxed_input_section): New method definitions. | |
4303 | (Output_section::is_input_address_mapped, | |
4304 | Output_section::output_offset, Output_section::output_address): | |
4305 | Use output section data maps to speed up searching. | |
4306 | (Output_section::find_starting_output_address): Add comments. | |
4307 | (Output_section::do_write, | |
4308 | Output_section::write_to_postprocessing_buffer): Do code-fill | |
4309 | generation as appropriate. | |
4310 | (Output_section::get_input_sections): Invalidate relaxed input section | |
4311 | map. | |
4312 | (Output_section::restore_states): Adjust type of checkpoint . | |
4313 | Invalidate relaxed input section map. | |
4314 | * output.h (Output_merge_base): New class declaration. | |
4315 | (Input_section_specifier): New class defintion. | |
4316 | (class Output_relaxed_input_section) Change base class to | |
4317 | Output_section_data_build. | |
4318 | (Output_relaxed_input_section::Output_relaxed_input_section): Adjust | |
4319 | base class initializer. | |
4320 | (Output_section::add_relaxed_input_section): New method declaration. | |
4321 | (Output_section::Input_section): Change visibility to protected. | |
4322 | (Output_section::Input_section::relobj, | |
4323 | Output_section::Input_section::shndx): Handle relaxed input sections. | |
4324 | Output_section::input_sections) Change visibility to protected. Also | |
4325 | define overload to return a non-const pointer. | |
4326 | (Output_section::Merge_section_properties): New class defintion. | |
4327 | (Output_section::Merge_section_by_properties_map, | |
4328 | Output_section::Output_section_data_by_input_section_map, | |
4329 | Output_section::Relaxation_map): New types. | |
4330 | (Output_section::relax_input_section): Rename method to | |
4331 | Output_section::convert_input_sections_to_relaxed_sections and change | |
4332 | interface to take a vector of relaxed section pointers. | |
4333 | (Output_section::find_merge_section, | |
4334 | Output_section::find_relaxed_input_section, | |
4335 | Output_section::build_relaxation_map, | |
4336 | Output_section::convert_input_sections_in_list_to_relaxed_sections): | |
4337 | New method declarations. | |
4338 | (Output_section::merge_section_map_ | |
4339 | Output_section::merge_section_by_properties_map_, | |
4340 | Output_section::relaxed_input_section_map_, | |
4341 | Output_section::is_relaxed_input_section_map_valid_, | |
4342 | Output_section::generate_code_fills_at_write_): New data members. | |
4343 | * script-sections.cc | |
4344 | (Output_section_element_input::set_section_addresses): Call | |
4345 | current_data_size and addralign methods of relaxed input sections. | |
4346 | (Orphan_output_section::set_section_addresses): Call current_data_size | |
4347 | and addralign methods of relaxed input sections. | |
4348 | * symtab.cc (Symbol_table::compute_final_value): Extract template | |
4349 | from the body of Symbol_table::sized_finalize_symbol. | |
4350 | (Symbol_table::sized_finalized_symbol): Call | |
4351 | Symbol_table::compute_final_value. | |
4352 | * symtab.h (Symbol_table::Compute_final_value_status): New enum type. | |
4353 | (Symbol_table::compute_final_value): New templated method declaration. | |
4354 | * target.cc (Target::do_make_output_section): New method defintion. | |
4355 | * target.h (Target::make_output_section): New method declaration. | |
4356 | (Target::relax): Add more parameters for input objects, symbol table | |
4357 | and layout. Adjust call to do_relax. | |
4358 | (Target::do_make_output_section): New method declaration. | |
4359 | (Target::do_relax): Add parameters for input objects, symbol table | |
4360 | and layout. | |
4361 | ||
d446d6c4 ILT |
4362 | 2009-10-09 Andrew Pinski <[email protected]> |
4363 | ||
4364 | * pread.c: Include stdio.h. | |
4365 | ||
bc06c745 ILT |
4366 | 2009-10-09 Andrew Pinski <[email protected]> |
4367 | ||
4368 | * plugin.cc: Don't include dlfcn.h when ENABLE_PLUGINS is not | |
4369 | defined. | |
4370 | ||
75aea3d0 ILT |
4371 | 2009-10-09 Andrew Pinski <[email protected]> |
4372 | ||
4373 | * dwarf_reader.cc (Sized_dwarf_line_info::Sized_dwarf_line_info): | |
4374 | Change read_shndx type to unsigned int. | |
4375 | (Sized_dwarf_line_info::read_lines): Change shndx type to unsigned | |
4376 | int. | |
4377 | (Sized_dwarf_line_info::read_line_mappings): Likewise. | |
4378 | * dwarf_reader.h (Sized_dwarf_line_info::Sized_dwarf_line_info): | |
4379 | Change read_shndx type to unsigned int. | |
4380 | (Sized_dwarf_line_info::read_lines): Change shndx type to unsigned | |
4381 | int. | |
4382 | (Sized_dwarf_line_info::read_line_mappings): Likewise. | |
4383 | * layout.cc (Layout::create_symtab_sections): Cast the result of | |
4384 | local_symcount * symsize to off_t in the gold_assert. | |
4385 | ||
be8fcb75 ILT |
4386 | 2009-10-09 Viktor Kutuzov <[email protected]> |
4387 | ||
4388 | * arm.cc (Target_arm::relocate::reloc_is_non_pic): Return true for | |
4389 | R_ARM_THM_ABS5, R_ARM_ABS8, R_ARM_ABS12, R_ARM_ABS16, | |
4390 | R_ARM_BASE_ABS. | |
4391 | (Arm_relocate_functions::abs8): Remove has_thumb_bit parameter. | |
4392 | (Arm_relocate_functions::thm_abs5): New function. | |
4393 | (Arm_relocate_functions::abs12): New function. | |
4394 | (Arm_relocate_functions::abs16): New function. | |
4395 | (Arm_relocate_functions::base_abs): New function. | |
4396 | (Scan::check_non_pic): Handle R_ARM_ABS32_NOI. | |
4397 | (Scan::local): Remove special handling of R_ARM_ABS8. Handle | |
4398 | R_ARM_ABS32_NOI, R_ARM_THM_ABS5, R_ARM_ABS12, R_ARM_ABS16, and | |
4399 | R_ARM_BASE_ABS. | |
4400 | (Scan::global): Likewise. | |
4401 | (Relocate::relocate): Handle R_ARM_ABS12, R_ARM_ABS16, | |
4402 | R_ARM_ABS32_NOI, R_ARM_THM_ABS5, and R_ARM_BASE_ABS. | |
4403 | (Relocatable_size_for_reloc::get_size_for_reloc): Handle | |
4404 | R_ARM_ABS16, R_ARM_THM_ABS5, R_ARM_ABS32_NOI, R_ARM_ABS12, and | |
4405 | R_ARM_BASE_ABS. | |
4406 | ||
c2a122b6 ILT |
4407 | 2009-10-09 Viktor Kutuzov <[email protected]> |
4408 | ||
4409 | * arm.cc (Arm_relocate_functions::movw_prel_nc): New function. | |
4410 | (Arm_relocate_functions::movt_prel): New function. | |
4411 | (Arm_relocate_functions::thm_movw_prel_nc): New function. | |
4412 | (Arm_relocate_functions::thm_movt_prel): New function. | |
4413 | (Scan::local): Handle R_ARM_MOVW_PREL_NC, R_ARM_MOVT_PREL, | |
4414 | R_ARM_THM_MOVW_PREL_NC, and R_ARM_THM_MOVT_PREL. | |
4415 | (Scan::global, Relocate::relocate): Likewise. | |
4416 | (Relocatable_size_for_reloc::get_size_for_reloc): Likewise. | |
4417 | ||
c4aa1e2d ILT |
4418 | 2009-10-09 Mikolaj Zalewski <[email protected]> |
4419 | ||
4420 | * gold.cc: (queue_initial_tasks): Pass incremental_inputs to | |
4421 | Incremental_checker. | |
4422 | * incremental.cc: (INCREMENTAL_LINK_VERSION): Change type to | |
4423 | unsigned int. | |
4424 | (class Incremental_inputs_header): New class. | |
4425 | (Incremental_inputs_header_writer): Edit comment. | |
4426 | (Incremental_inputs_entry): New class. | |
4427 | (Incremental_inputs_entry_writer): Edit comment. | |
4428 | (Sized_incremental_binary::do_find_incremental_inputs_section): | |
4429 | Add *strtab_shndx parameter, fill it. | |
4430 | (Sized_incremental_binary::do_check_inputs): New method. | |
4431 | (Incremental_checker::can_incrementally_link_output_file): Use | |
4432 | Sized_incremental_binary::check_inputs. | |
4433 | (Incremental_inputs::report_command_line): Save command line in | |
4434 | command_line_. | |
4435 | * incremental.h: | |
4436 | (Incremental_binary::find_incremental_inputs_section): New | |
4437 | method. | |
4438 | (Incremental_binary::do_find_incremental_inputs_section): Add | |
4439 | strtab_shndx parameter. | |
4440 | (Incremental_binary::do_check_inputs): New pure virtual method. | |
4441 | (Sized_incremental_binary::do_check_inputs): Declare. | |
4442 | (Incremental_checker::Incremental_checker): Add incremental_inputs | |
4443 | parameter, use it to initialize incremental_inputs_. | |
4444 | (Incremental_checker::incremental_inputs_): New field. | |
4445 | (Incremental_checker::command_line): New method. | |
4446 | (Incremental_checker::inputs): New method. | |
4447 | (Incremental_checker::command_line_): New field. | |
4448 | ||
c549a694 ILT |
4449 | 2009-10-09 Mikolaj Zalewski <[email protected]> |
4450 | ||
4451 | * incremental.cc: Include <cstdarg> and "target-select.h". | |
4452 | (vexplain_no_incremental): New function. | |
4453 | (explain_no_incremental): New function. | |
4454 | (Incremental_binary::error): New method. | |
4455 | (Sized_incremental_binary::do_find_incremental_inputs_section): New | |
4456 | method. | |
4457 | (make_sized_incremental_binary): New function. | |
4458 | (open_incremental_binary): New function. | |
4459 | (can_incrementally_link_file): Add checks if output is ELF and has | |
4460 | inputs section. | |
4461 | * incremental.h: Include "elfcpp_file.h" and "output.h". | |
4462 | (Incremental_binary): New class. | |
4463 | (Sized_incremental_binary): New class. | |
4464 | (open_incremental_binary): Declare. | |
4465 | * object.cc (is_elf_object): Use | |
4466 | elfcpp::Elf_recognizer::is_elf_file. | |
4467 | (make_elf_object): Use elfcpp::Elf_recognizer::is_valid_header. | |
4468 | * output.h (Output_file::filesize): New method. | |
4469 | ||
fd3c5f0b ILT |
4470 | 2009-10-07 Viktor Kutuzov <[email protected]> |
4471 | ||
4472 | * arm.cc (Arm_relocate_functions::extract_arm_movw_movt_addend): | |
4473 | New function. | |
4474 | (Arm_relocate_functions::insert_val_arm_movw_movt): New function. | |
4475 | (Arm_relocate_functions::extract_thumb_movw_movt_addend): New | |
4476 | function. | |
4477 | (Arm_relocate_functions::insert_val_thumb_movw_movt): New | |
4478 | function. | |
4479 | (Arm_relocate_functions::movw_abs_nc): New function. | |
4480 | (Arm_relocate_functions::movt_abs): New function. | |
4481 | (Arm_relocate_functions::thm_movw_abs_nc): New function. | |
4482 | (Arm_relocate_functions::thm_movt_abs): New function. | |
4483 | (Scan::local): Handle R_ARM_MOVW_ABS_NC, R_ARM_MOVT_ABS, | |
4484 | R_ARM_THM_MOVW_ABS_NC, R_ARM_THM_MOVT_ABS. | |
4485 | (Scan::global): Likewise. | |
4486 | (Relocate::relocate): Likewise. | |
4487 | (Relocatable_size_for_reloc::get_size_for_reloc): Likewise. | |
4488 | ||
7f5309a5 ILT |
4489 | 2009-10-07 Viktor Kutuzov <[email protected]> |
4490 | ||
4491 | * arm.cc (Arm_relocate_functions::got_prel) New function. | |
4492 | (Scan::local, Scan::global): Handle R_ARM_GOT_PREL. | |
4493 | (Relocate::relocate): Likewise. | |
4494 | (Relocatable_size_for_reloc::get_size_for_reloc): Likewise. | |
4495 | ||
364c7fa5 ILT |
4496 | 2009-10-06 Ian Lance Taylor <[email protected]> |
4497 | ||
4498 | * options.h (class General_options): Define | |
4499 | split_stack_adjust_size parameter. | |
4500 | * object.h (class Object): Add uses_split_stack_ and | |
4501 | has_no_split_stack_ fields. Add uses_split_stack and | |
4502 | has_no_split_stack accessor functions. Declare | |
4503 | handle_split_stack_section. | |
4504 | (class Reloc_symbol_changes): Define. | |
4505 | (class Sized_relobj): Define Function_offsets. Declare | |
4506 | split_stack_adjust, split_stack_adjust_reltype, and | |
4507 | find_functions. | |
4508 | * object.cc (Object::handle_split_stack_section): New function. | |
4509 | (Sized_relobj::do_layout): Call handle_split_stack_section. | |
4510 | * dynobj.cc (Sized_dynobj::do_layout): Call | |
4511 | handle_split_stack_section. | |
4512 | * reloc.cc (Sized_relobj::relocate_sections): Call | |
4513 | split_stack_adjust for executable sections in split_stack | |
4514 | objects. Pass reloc_map to relocate_section. | |
4515 | (Sized_relobj::split_stack_adjust): New function. | |
4516 | (Sized_relobj::split_stack_adjust_reltype): New function. | |
4517 | (Sized_relobj::find_functions): New function. | |
4518 | * target-reloc.h: Include "object.h". | |
4519 | (relocate_section): Add reloc_symbol_changes parameter. Change | |
4520 | all callers. | |
4521 | * target.h (class Target): Add calls_non_split method. Declare | |
4522 | do_calls_non_split virtual method. Declare match_view and | |
4523 | set_view_to_nop. | |
4524 | * target.cc: Include "elfcpp.h". | |
4525 | (Target::do_calls_non_split): New function. | |
4526 | (Target::match_view): New function. | |
4527 | (Target::set_view_to_nop): New function. | |
4528 | * gold.cc (queue_middle_tasks): Give an error if mixing | |
4529 | split-stack and non-split-stack objects with -r. | |
4530 | * i386.cc (Target_i386::relocate_section): Add | |
4531 | reloc_symbol_changes parameter. | |
4532 | (Target_i386::do_calls_non_split): New function. | |
4533 | * x86_64.cc (Target_x86_64::relocate_section): Add | |
4534 | reloc_symbol_changes parameter. | |
4535 | (Target_x86_64::do_calls_non_split): New function. | |
4536 | * arm.cc (Target_arm::relocate_section): Add reloc_symbol_changes | |
4537 | parameter. | |
4538 | * powerpc.cc (Target_powerpc::relocate_section): Add | |
4539 | reloc_symbol_changes parameter. | |
4540 | * sparc.cc (Target_sparc::relocate_section): Add | |
4541 | reloc_symbol_changes parameter. | |
4542 | * configure.ac: Call AM_CONDITIONAL for the default target. | |
4543 | * configure: Rebuild. | |
4544 | * testsuite/Makefile.am (TEST_AS): New variable. | |
4545 | (check_SCRIPTS): Add split_i386.sh and split_x86_64.sh. | |
4546 | (check_DATA): Add split_i386 and split_x86_64 files. | |
4547 | (SPLIT_DEFSYMS): Define. | |
4548 | (split_i386_[1234n].o): New targets. | |
4549 | (split_i386_[124]): New targets. | |
4550 | (split_i386_[1234r].stdout): New targets. | |
4551 | (split_x86_64_[1234n].o): New targets. | |
4552 | (split_x86_64_[124]): New targets. | |
4553 | (split_x86_64_[1234r].stdout): New targets. | |
4554 | (MOSTLYCLEANFILES): Add new executables. | |
4555 | * testsuite/split_i386.sh: New file. | |
4556 | * testsuite/split_x86_64.sh: New file. | |
4557 | * testsuite/split_i386_1.s: New file. | |
4558 | * testsuite/split_i386_2.s: New file. | |
4559 | * testsuite/split_i386_3.s: New file. | |
4560 | * testsuite/split_i386_4.s: New file. | |
4561 | * testsuite/split_i386_n.s: New file. | |
4562 | * testsuite/split_x86_64_1.s: New file. | |
4563 | * testsuite/split_x86_64_2.s: New file. | |
4564 | * testsuite/split_x86_64_3.s: New file. | |
4565 | * testsuite/split_x86_64_4.s: New file. | |
4566 | * testsuite/split_x86_64_n.s: New file. | |
4567 | * testsuite/testfile.cc (Target_test): Update relocation_section | |
4568 | function. | |
4569 | * testsuite/Makefile.in: Rebuild. | |
4570 | ||
e8a9fcda ILT |
4571 | 2009-10-06 Ian Lance Taylor <[email protected]> |
4572 | ||
4573 | * i386.cc (class Target_i386::Relocate): Add ldo_addrs_ field. | |
4574 | (Target_i386::Relocate::relocate_tls): Call fix_up_ldo before | |
4575 | changing local_dynamic_type_ from LOCAL_DYNAMIC_NONE. When | |
4576 | handling R_386_TLS_LDO_32, if local_dynamic_type_ is NONE, push | |
4577 | the address on ldo_addrs_. | |
4578 | (Target_i386::Relocate::fix_up_ldo): New function. | |
4579 | ||
e99daf92 ILT |
4580 | 2009-10-06 Rafael Espindola <[email protected]> |
4581 | ||
4582 | * plugin.cc (add_input_library): New. | |
4583 | (Plugin::load): Add add_input_library to tv. | |
4584 | (Plugin_manager::add_input_file): Add the is_lib argument. | |
4585 | (add_input_file): Update call to Plugin_manager::add_input_file. | |
4586 | (add_input_library): New. | |
4587 | * plugin.h (Plugin_manager::add_input_file): Add the is_lib argument. | |
4588 | ||
966d4097 DK |
4589 | 2009-09-30 Doug Kwan <[email protected]> |
4590 | ||
4591 | * arm.cc (Target_arm::may_need_copy_reloc): Check for THUMB function | |
4592 | symbol and call Symbol::may_need_copy_reloc to determine if | |
4593 | a copy reloc is needed. | |
4594 | * copy-relocs.cc (Copy_relocs::need_copy_reloc): Return false if -z | |
4595 | nocopyreloc is given in command line. | |
4596 | (Copy_relocs::emit_copy_reloc): Assert that -z nocopyreloc is not | |
4597 | given in command line. | |
4598 | * i386.cc (Target_i386::may_need_copy_reloc): Remove. | |
4599 | (Target_i386::Scan::global): Use Symbol::may_need_copy_reloc instead | |
4600 | of the removed Target_i386::may_need_copy_reloc. | |
4601 | * options.h (copyreloc): New option with default value false. | |
4602 | * powerpc.cc (Target_powerpc::may_need_copy_reloc): Remove. | |
4603 | (Target_powerpc::Scan::global): Use Symbol::may_need_copy_reloc | |
4604 | instead of the removed Target_powerpc::may_need_copy_reloc. | |
4605 | * sparc.cc (Target_powerpc::may_need_copy_reloc): Remove. | |
4606 | (Target_sparc::Scan::global): Use Symbol::may_need_copy_reloc | |
4607 | instead of the removed Target_sparc::may_need_copy_reloc. | |
4608 | * symtab.h (Symbol::may_need_copy_reloc): New method definition. | |
4609 | * x86_64.cc (Target_powerpc::may_need_copy_reloc): Remove. | |
4610 | (Target_x86_64::Scan::global): Use Symbol::may_need_copy_reloc | |
4611 | instead of the removed Target_x86_64::may_need_copy_reloc. | |
4612 | ||
029ba973 ILT |
4613 | 2009-09-30 Ian Lance Taylor <[email protected]> |
4614 | ||
4615 | * object.h (class Object): Remove target_ field, and target, | |
4616 | sized_target, and set_target methods. | |
4617 | (Object::sized_target): Remove. | |
4618 | (class Sized_relobj): Update declarations. Remove sized_target. | |
4619 | * object.cc (Sized_relobj::setup): Remove target parameter. | |
4620 | Change all callers. | |
4621 | (Input_objects::add_object): Don't do anything with the target. | |
4622 | (make_elf_sized_object): Add punconfigured parameter. Change all | |
4623 | callers. Set or test parameter target. | |
4624 | * dynobj.cc (Sized_dynobj::target): Remove target parameter. | |
4625 | Change all callers. | |
4626 | * parameters.cc (Parameters::set_target): Change parameter type to | |
4627 | be non-const. | |
4628 | (Parameters::default_target): Remove. | |
4629 | (set_parameters_target): Change parameter type to be non-const. | |
4630 | (parameters_force_valid_target): New function. | |
4631 | (parameters_clear_target): New function. | |
4632 | * parameters.h (class Parameters): Update declarations. Remove | |
4633 | default_target method. Add sized_target and clear_target | |
4634 | methods. Change target_ to be non-const. | |
4635 | (set_parameters_target): Update declaration. | |
4636 | (parameters_force_valid_target): Declare. | |
4637 | (parameters_clear_target): Declare. | |
4638 | * readsyms.cc (Read_symbols::do_read_symbols): Pass punconfigured | |
4639 | as NULL if we aren't searching. | |
4640 | (Add_symbols::run): Don't check for compatible target. | |
4641 | * fileread.cc (Input_file::open_binary): Call | |
4642 | parameters_force_valid_target. | |
4643 | * gold.cc (queue_middle_tasks): Likewise. | |
4644 | * plugin.cc (make_sized_plugin_object): Likewise. Don't call | |
4645 | set_target on object. | |
4646 | * dynobj.h (class Sized_dynobj): Update declarations. | |
4647 | * archive.cc (Archive::get_elf_object_for_member): Return NULL if | |
4648 | make_elf_object returns NULL. | |
4649 | (Archive::include_member): Don't check whether object target is | |
4650 | compatible. | |
4651 | * output.cc (Output_section::add_input_section): Get target from | |
4652 | parameters. | |
4653 | (Output_section::relax_input_section): Likewise. | |
4654 | * reloc.cc (Sized_relobj::do_gc_process_relocs): Get target from | |
4655 | parameters. | |
4656 | (Sized_relobj::do_scan_relocs): Likewise. | |
4657 | (Sized_relobj::relocate_sections): Likewise. | |
4658 | * resolve.cc (Symbol_table::resolve): Likewise. | |
4659 | * symtab.cc (Symbol_table::wrap_symbol): Likewise. Remove object | |
4660 | parameter. Change all callers. | |
4661 | (Symbol_table::add_from_object): Get target from parameters. | |
4662 | (Symbol_table::add_from_relobj): Don't check object target. | |
4663 | (Symbol_table::add_from_dynobj): Likewise. | |
4664 | (Symbol_table::define_special_symbol): Get target from | |
4665 | parameters. | |
4666 | * symtab.h (class Symbol_table): Update declaration. | |
4667 | * testsuite/binary_unittest.cc (gold_testsuite): Remove target | |
4668 | parameter. Change all callers. Clear parameter target. | |
4669 | (Binary_test): Test target here. | |
4670 | * testsuite/object_unittest.cc (gold_testsuite): Remove | |
4671 | target_test_pointer parameter. Change all callers. | |
4672 | (Object_test): Test target here. | |
4673 | ||
a6a22b83 ILT |
4674 | 2009-09-26 Ian Lance Taylor <[email protected]> |
4675 | ||
4676 | * testsuite/initpri1.c: Don't try to use constructor priorities if | |
4677 | compiling with gcc before 4.3. | |
4678 | ||
6a8f49fe ILT |
4679 | 2009-09-22 Mikolaj Zalewski <[email protected]> |
4680 | ||
4681 | * testsuite/retain_symbols_file_test.sh (check_present): Change | |
4682 | output file name to retain_symbols_file_test.stdout. | |
4683 | (check_absent): Likewise. | |
4684 | ||
8c604651 CS |
4685 | 2009-09-18 Craig Silverstein <[email protected]> |
4686 | ||
4687 | * object.cc (Sized_relobj::do_count): Test should_retain_symbol map. | |
4688 | * options.cc: Include <cerrno> and <fstream>. | |
4689 | (General_options::finalize): Parse -retain-symbols-file tag. | |
4690 | * options.h: New flag. | |
4691 | (General_options): New method should_retain_symbol, new | |
4692 | variable symbols_to_retain. | |
4693 | * symtab.cc (Symbol_table::sized_finalize_symbol): Test | |
4694 | should_retain_symbol map. | |
4695 | * testsuite/Makefile.am (retain_symbols_file_test): New test. | |
4696 | * testsuite/Makefile.in: Regenerate. | |
4697 | * testsuite/retain_symbols_file_test.sh: New file. | |
4698 | ||
ca58b19f NC |
4699 | 2009-09-18 Nick Clifton <[email protected]> |
4700 | ||
4701 | * po/es.po: Updated Spanish translation. | |
4702 | ||
20e6d0d6 DK |
4703 | 2009-09-17 Doug Kwan <[email protected]> |
4704 | ||
4705 | * debug.h (DEBUG_RELAXATION): New constant. | |
4706 | (DEBUG_ALL): Add DEBUG_RELAXATION. | |
4707 | (debug_string_to_enum): Add relaxation debug option. | |
4708 | * layout.cc | |
4709 | (Layout::Relaxation_debug_check::check_output_data_for_reset_values, | |
4710 | Layout::Relaxation_debug_check::read_sections, | |
4711 | Layout::Relaxation_debug_check::read_sections): New method definitions. | |
4712 | (Layout::Layout): Initialize data members | |
4713 | record_output_section_data_from_scrips_, | |
4714 | script_output_section_data_list_ and relaxation_debug_check_. | |
4715 | (Layout::save_segments, Layout::restore_segments, | |
4716 | Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation, | |
4717 | Layout::relaxation_loop_body): New method definitions. | |
4718 | (Layout::finalize): Support relaxation. Move section layout code to | |
4719 | Layout::relaxation_loop_body. | |
4720 | (Layout::set_asection_address_from_script): Move code for orphan | |
4721 | section placement out. | |
4722 | (Layout::place_orphan_sections_in_script): New method definition. | |
4723 | * layout.h (Output_segment_headers, Output_file_header): | |
4724 | New forward class declarations. | |
4725 | (Layout::~Layout): Define. | |
4726 | (Layout::new_output_section_data_from_script): New method definition. | |
4727 | (Layout::place_orphan_sections_in_script): New method declaration. | |
4728 | (Layout::Segment_states): New type declaration. | |
4729 | (Layout::save_segments, Layout::restore_segments, | |
4730 | Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation, | |
4731 | Layout::relaxation_loop_body): New method declarations. | |
4732 | (Layout::Output_section_data_list): New type declaration. | |
4733 | (Layout::Relaxation_debug_check): New class definition. | |
4734 | (Layout::record_output_section_data_from_script_, | |
4735 | Layout::script_output_section_data_list_, Layout::segment_states_, | |
4736 | Layout::relaxation_debug_check_): New data members. | |
4737 | * output.cc: (Output_section_headers::do_size): New method definition. | |
4738 | (Output_section_headers::Output_section_headers): Move size | |
4739 | computation to Output_section_headers::do_size. | |
4740 | (Output_segment_headers::do_size): New method definition. | |
e1df38aa | 4741 | (Output_file_header::Output_file_header): Move size computation to |
20e6d0d6 DK |
4742 | Output_file_header::do_size and call it. |
4743 | (Output_file_header::do_size): New method definition. | |
4744 | (Output_data_group::Output_data_group): Adjust call to | |
4745 | Output_section_data. | |
4746 | (Output_data_dynamic::set_final_data_size): Add DT_NULL tag only once. | |
4747 | (Output_symtab_xindex::do_write): Add array bound check. | |
4748 | (Output_section::Input_section::print_to_mapfile): Handle | |
4749 | RELAXED_INPUT_SECTION_CODE. | |
4750 | (Output_section::Output_section): Initialize data member checkpoint_. | |
4751 | (Output_section::~Output_section): Delete checkpoint object pointed | |
4752 | by checkpoint_. | |
4753 | (Output_section::add_input_section): Always add an Input_section if | |
4754 | relaxing. | |
4755 | (Output_section::add_merge_input_section): Add assert. | |
4756 | (Output_section::relax_input_section): New method definition. | |
4757 | (Output_section::set_final_data_size): Set load address to zero for | |
4758 | an unallocated section. | |
4759 | (Output_section::do_address_and_file_offset_have_reset_values): | |
4760 | New method definition. | |
4761 | (Output_section::Input_section_sort_enty::Input_section_sort_enty): | |
4762 | Handle relaxed input section. | |
4763 | (Output_section::sort_attached_input_sections): Checkpoint input | |
4764 | section list lazily. | |
4765 | (Output_section::get_input_sections): Change type of input_sections to | |
4766 | list of Simple_input_section pointers. Checkpoint input section list | |
4767 | lazily. Also handle relaxed input sections. | |
4768 | (Output_section::add_input_section_for_script): Take a reference to | |
4769 | a Simple_input_section object instead of Relobj pointer and section | |
4770 | index as parameter. Handle relaxed input sections. | |
4771 | (Output_section::save_states, Output_section::restore_states): New | |
4772 | method definitions. | |
4773 | * output.h (Output_data::Output_data): Initialize is_data_size_fixed_. | |
4774 | (Output_data::is_data_size_fixed): New method definition. | |
4775 | (Output_data::reset_addresss_and_file_offset): Do not reset data size | |
4776 | if it is fixed. | |
4777 | (Output_data::address_and_file_offset_have_reset_values): New method | |
4778 | definition. | |
4779 | (Output_data::do_address_and_file_offset_have_reset_values): New method | |
4780 | definition. | |
4781 | (Output_data::set_data_size): Check that data size is not fixed. | |
4782 | (Output_data::fix_data_size): New method definition. | |
4783 | (Output_data::is_data_size_fixed_): New data member. | |
4784 | (Output_section_headers::set_final_data_size): New method definition. | |
4785 | (Output_section_headers::do_size): New method declaration. | |
4786 | (Output_segment_headers::set_final_data_size): New method definition. | |
4787 | (Output_segment_headers::do_size): New method declaration. | |
4788 | (Output_file_header::set_final_data_size)::New method definition. | |
4789 | (Output_file_header::do_size)::New method declaration. | |
4790 | (Output_section_data::Output_section_data): Add new parameter | |
4791 | is_data_size_fixed and use it to fix data size. | |
4792 | (Output_data_const::Output_data_const): Adjust call to base class | |
4793 | constructor and fix data size. | |
4794 | (Output_data_const_buffer::Output_data_const_buffer): Adjust call to | |
4795 | base class constructor and fix data size. | |
4796 | (Output_data_fixed_space::Output_data_fixed_space): Adjust call to | |
4797 | base class constructor and fix data size. | |
4798 | (Output_data_zero_fill::Output_data_zero_fill): Adjust call to base | |
4799 | class constructor and fix data size. | |
4800 | (Output_data_group::set_final_data_size): New method definition. | |
4801 | (Output_data_dynamic::Dynamic_entry::tag): New method definition. | |
4802 | (Output_symtab_xindex::Output_symtab_xindex): Adjust call to base | |
4803 | class constructor and fix data size. | |
4804 | (Output_relaxed_input_section): New class definition. | |
4805 | (Output_section::Simple_input_section): New class definition. | |
4806 | (Output_section::get_input_sections): Adjust parameter list. | |
4807 | (Output_section::add_input_section_for_script): Same. | |
4808 | (Output_section::save_states, Output_section::restore_states, | |
4809 | Output_section::do_address_and_file_offset_have_reset_values, | |
4810 | (Output_section::Input_section::Input_section): Handle | |
4811 | RELAXED_INPUT_SECTION_CODE. Add new overload for | |
4812 | Output_relaxed_input_section. | |
4813 | (Output_section::Input_section::is_input_section, | |
4814 | Output_section::Input_section::set_output_section): Handle relaxed | |
4815 | input section. | |
4816 | (Output_section::Input_section::is_relaxed_input_section, | |
4817 | Output_section::Input_section::output_section_data, | |
4818 | Output_section::Input_section::relaxed_input_section): New method | |
4819 | definitions. | |
4820 | (Output_section::Input_section::RELAXED_INPUT_SECTION_CODE): New enum | |
4821 | value. | |
4822 | (Output_section::Input_section::u1_): Update comments. | |
4823 | (Output_section::Input_section::u2_): Add new union member poris. | |
4824 | (Output_section::Checkpoint_output_section): New classs definition. | |
4825 | (Output_section::relax_input_section): New method declaration. | |
4826 | (Output_section::checkpoint_): New data member. | |
4827 | (Output_segment): Update comments. | |
4828 | (Output_segment::Output_segment): Un-privatize copy constructor. | |
4829 | (Output_segment::operator=): Un-privatize. | |
4830 | * script-sections.cc (Output_section_element::Input_section_list): | |
4831 | Change element type to Output_section::Simple_input_section. | |
4832 | (Output_section_element_dot_assignment::set_section_addresses): | |
4833 | Register output section data for relaxation clean up. | |
4834 | (Output_data_exression::Output_data_expression): Adjust call to base | |
4835 | constructor to fix data size. | |
4836 | (Output_section_element_data::set_section_addresses): Register | |
4837 | Output_data_expression object for relaxation clean up. | |
4838 | (struct Input_section_info): Replace Relobj pointer and section index | |
4839 | pair with Output_section::Simple_input_section and Convert struct to a | |
4840 | class. | |
4841 | (Input_section_sorter::operator()): Adjust access to | |
e1df38aa | 4842 | Input_section_info data member to use accessors. |
20e6d0d6 DK |
4843 | (Output_section_element_input::set_section_addresses): Use layout |
4844 | parameter. Adjust code to use Output_section::Simple_input_section | |
4845 | and Input_secction_info classes. Register filler for relaxation | |
4846 | clean up. | |
4847 | (Orphan_output_section::set_section_addresses): Replace Relobj pointer | |
4848 | and section index pair with Output_section::Simple_input_section | |
4849 | class. Adjust code accordingly. | |
4850 | (Phdrs_element::release_segment): New method definition. | |
4851 | (Script_sections::attach_sections_using_phdrs_clause): Do not modify | |
4852 | segment list. | |
4853 | (Script_sections::release_segments): New method definition. | |
4854 | * gold/script-sections.h (Script_sections::release_segments): New | |
4855 | method declaration. | |
4856 | * gold/target.h (Target::may_relax, Target::relax, | |
4857 | Target::do_may_relax, Target::do_relax): New method definitions. | |
4858 | ||
5e445df6 ILT |
4859 | 2009-09-17 Viktor Kutuzov <[email protected]> |
4860 | ||
4861 | * arm.cc (has_signed_unsigned_overflow): New function. | |
4862 | (Arm_relocate_functions::abs8): New function. | |
4863 | (Target_arm::Scan::local): Handle R_ARM_ABS8. | |
4864 | (Target_arm::Scan::global): Likewise. | |
4865 | (Target_arm::relocate::relocate): Likewise. | |
4866 | (Target_arm::Relocatable_size_for_reloc::get_size_for_reloc): | |
4867 | Likewise. | |
4868 | ||
8c604651 | 4869 | 2009-09-16 Cary Coutant <[email protected]> |
72fef11a CC |
4870 | |
4871 | * testsuite/Makefile.am (MOSTLYCLEANFILES): Add more generated files. | |
4872 | * testsuite/Makefile.in: Regenerate. | |
4873 | ||
1e9cc1c2 NC |
4874 | 2009-09-11 Nick Clifton <[email protected]> |
4875 | ||
4876 | * po/gold.pot: Updated by the Translation project. | |
4877 | ||
6a89f575 CC |
4878 | 2009-09-08 Cary Coutant <[email protected]> |
4879 | ||
4880 | * output.cc (Output_file::open): Add execute permission to empty file. | |
4881 | * testsuite/Makefile.am (permission_test): New test. | |
4882 | * testsuite/Makefile.in: Regenerate. | |
4883 | ||
fdcac5af ILT |
4884 | 2009-09-02 Ian Lance Taylor <[email protected]> |
4885 | ||
4886 | * output.cc (Output_file::resize): Call map_no_anonymous rather | |
4887 | than map. | |
4888 | ||
44453f85 ILT |
4889 | 2009-09-01 Mikolaj Zalewski <[email protected]> |
4890 | ||
4891 | * gold.cc: Include "incremental.h". | |
4892 | (queue_initial_tasks): Call Incremental_checker methods. | |
4893 | * incremental.cc: Include "output.h". | |
4894 | (Incremental_checker::can_incrementally_link_output_file): New | |
4895 | method. | |
4896 | * incremental.h (Incremental_checker): New class. | |
4897 | ||
4898 | * output.cc (Output_file::open_for_modification): New method. | |
4899 | (Output_file::map_anonymous): Changed return type to bool. Record | |
4900 | map in base_ field. | |
4901 | (Output_file::map_no_anonymous): New method, broken out of map. | |
4902 | (Output_file::map): Use map_no_anonymous and map_anonymous. | |
4903 | * output.h (class Output_file): Update declarations. | |
4904 | ||
293c1386 CC |
4905 | 2009-08-24 Cary Coutant <[email protected]> |
4906 | ||
4907 | * options.h (Command_line::Pre_options): New class. | |
4908 | (Command_line::pre_options): New member. | |
4909 | * options.cc (gold::options::ready_to_register): New variable. | |
4910 | (One_option::register_option): Do nothing if not registering options. | |
4911 | Assert if same short option registered twice. | |
4912 | (General_options::General_options): Turn off option registration when | |
4913 | done constructing. | |
4914 | (Command_line::Pre_options::Pre_options): New constructor. | |
4915 | ||
f773f3d2 CC |
4916 | 2009-08-24 Cary Coutant <[email protected]> |
4917 | ||
06a73cfe CC |
4918 | * options.h (General_options::no_keep_memory): Remove incorrect |
4919 | short option. | |
f773f3d2 | 4920 | |
a15af8e2 RW |
4921 | 2009-08-24 Ralf Wildenhues <[email protected]> |
4922 | ||
4923 | * Makefile.am (am__skiplex, am__skipyacc): New. | |
4924 | * Makefile.in: Regenerate. | |
4925 | ||
c462b41b RW |
4926 | 2009-08-22 Ralf Wildenhues <[email protected]> |
4927 | ||
14ec8efd RW |
4928 | * Makefile.am (AM_CPPFLAGS): Renamed from ... |
4929 | (INCLUDES): ... this. | |
4930 | * testsuite/Makefile.am (AUTOMAKE_OPTIONS): Add -Wno-portability. | |
4931 | (AM_CPPFLAGS): Renamed from ... | |
4932 | (INCLUDE): ... this. | |
4933 | * Makefile.in, testsuite/Makefile.in: Regenerate. | |
4934 | ||
81ecdfbb RW |
4935 | * Makefile.in: Regenerate. |
4936 | * aclocal.m4: Likewise. | |
4937 | * config.in: Likewise. | |
4938 | * configure: Likewise. | |
4939 | * testsuite/Makefile.in: Likewise. | |
4940 | ||
c462b41b RW |
4941 | * Makefile.am (AUTOMAKE_OPTIONS): Add foreign. |
4942 | * testsuite/Makefile.am (AUTOMAKE_OPTIONS): Add foreign. | |
4943 | * Makefile.in: Regenerate. | |
4944 | * testsuite/Makefile.in: Regenerate. | |
4945 | ||
2da73f13 CC |
4946 | 2009-08-19 Cary Coutant <[email protected]> |
4947 | ||
4948 | * resolve.cc (Symbol_table::resolve): Don't complain about defined | |
4949 | symbols in shared libraries overridden by hidden or internal symbols | |
4950 | in the main program. | |
4951 | ||
2db70501 CD |
4952 | 2009-08-19 Chris Demetriou <[email protected]> |
4953 | ||
4954 | * testsuite/debug_msg.sh: Match .* rather than ${srcdir} when | |
4955 | checking source file names in error messages. | |
4956 | ||
f733487b DK |
4957 | 2009-08-18 Doug Kwan <[email protected]> |
4958 | ||
4959 | * dynobj.cc (Sized_dynobj::setup): Take a Target object instead of | |
4960 | an elcpp::Ehdr as parameter. Adjust call to set_target. | |
4961 | * dynobj.h (Sized_dynobj::setup): Take a Target object instead of | |
4962 | an elfcpp::Ehdr as parameter. | |
4963 | * object.cc (Object::set_target): Remove the version that looks up | |
4964 | a target and sets it. | |
4965 | (Sized_relobj::setup): Take a Target object instead of | |
4966 | an elfcpp::Ehdr as parameter. Adjust call to set_target. | |
4967 | (make_elf_sized_object): Find target and ask target to | |
4968 | make an ELF object. | |
4969 | * object.h: (Object::set_target): Remove the version that looks up | |
4970 | a target and sets it. | |
4971 | (Sized_relobj::setup): Take a Target object instead of | |
4972 | an elfcpp:Ehdr as parameter. | |
4973 | * target.cc: Include dynobj.h. | |
4974 | (Target::do_make_elf_object_implementation): New. | |
4975 | (Target::do_make_elf_object): New. | |
4976 | * target.h (Target::make_elf_object): New template declaration. | |
4977 | (Target::do_make_elf_object): New method declarations. | |
4978 | (Target::do_make_elf_object_implementation): New template declaration. | |
4979 | ||
cc70f101 ILT |
4980 | 2009-08-14 Ian Lance Taylor <[email protected]> |
4981 | ||
4982 | * gold.h (FUNCTION_NAME): Define. | |
4983 | (gold_unreachable): Use FUNCTION_NAME. | |
4984 | ||
ef5e0cb1 ST |
4985 | 2009-08-12 Sriraman Tallam <[email protected]> |
4986 | ||
4987 | * icf.cc (Icf::find_identical_sections): Issue a warning when a | |
4988 | symbol in the --keep-unique list is not found. | |
4989 | ||
48c187ce ST |
4990 | 2009-08-12 Sriraman Tallam <[email protected]> |
4991 | ||
4992 | * icf.cc (Icf::find_identical_sections): Unfold symbols that have | |
4993 | been maked as --keep-unique. | |
4994 | (Icf::unfold_section): New function. | |
4995 | * icf.h (Icf::unfold_section): New function. | |
4996 | * options.h (General_options::keep_unique): New option. | |
4997 | * testsuite/Makefile.am: Add commands to build icf_keep_unique_test. | |
4998 | * testsuite/Makefile.in: Regenerate. | |
4999 | * testsuite/icf_keep_unique_test.sh: New file. | |
5000 | * testsuite/icf_keep_unique_test.cc: New file. | |
5001 | ||
645afe0c CC |
5002 | 2009-08-12 Cary Coutant <[email protected]> |
5003 | ||
5004 | PR 10471 | |
5005 | * resolve.cc (Symbol_table::resolve): Check for references from | |
5006 | dynamic objects to hidden and internal symbols. | |
5007 | * testsuite/Makefile.am (hidden_test.sh): New test. | |
5008 | * testsuite/Makefile.in: Regenerate. | |
5009 | * testsuite/hidden_test.sh: New script. | |
5010 | * testsuite/hidden_test_1.c: New test source. | |
5011 | * testsuite/hidden_test_main.c: New test source. | |
5012 | ||
11af873f DK |
5013 | 2009-08-11 Doug Kwan <[email protected]> |
5014 | ||
5015 | * arm.cc: Update comments. | |
5016 | (Target_arm::do_finalize_sections): Add a special PT_ARM_EXIDX | |
5017 | segment to locate the .ARM.exidx section if present. | |
5018 | ||
b9f7d72d DK |
5019 | 2009-08-09 Doug Kwan <[email protected]> |
5020 | ||
5021 | * dynobj.h (Sized_dynobj::do_section_entsize): Revert the previous | |
5022 | patch. | |
5023 | ||
ddd3c53c ST |
5024 | 2009-08-07 Sriraman Tallam <[email protected]> |
5025 | * dynobj.h (Sized_dynobj::do_section_entsize): Add return to avoid | |
5026 | compiler warnings. | |
5027 | ||
27721062 ST |
5028 | 2009-08-06 Sriraman Tallam <[email protected]> |
5029 | ||
5030 | * x86_64.cc (Target_x86_64::Relocate::relocate_tls): Check for a | |
5031 | valid tls_segment only for non-debug-section relocations. | |
5032 | * testsuite/Makefile.am: Add gc_tls_test. | |
5033 | * testsuite/Makefile.in: Regenerate. | |
5034 | * testsuite/gc_tls_test.cc: New file. | |
5035 | * testsuite/gc_tls_test.sh: New file. | |
5036 | ||
ef15dade | 5037 | 2009-08-05 Sriraman Tallam <[email protected]> |
e1df38aa | 5038 | |
ef15dade ST |
5039 | * icf.cc: New file. |
5040 | * icf.h: New file. | |
5041 | * Makefile.am (CCFILES): Add icf.cc. | |
5042 | (HFILES): Add icf.h | |
5043 | * Makefile.in: Regenerate. | |
5044 | * dynobj.h (Sized_dynobj::do_section_entsize): New function. | |
5045 | * gc.h (gc_process_relocs): Populate lists used by icf to contain | |
5046 | section, symbol and addend information for the relocs. | |
5047 | * gold.cc (queue_middle_tasks): Call identical code folding. | |
5048 | * gold.h: Add defines for multimap. | |
5049 | * layout.cc (Layout::create_symtab_sections): Add symtab as parameter | |
5050 | to the call of finalize_local_symbols. | |
5051 | * main.cc (main): Create object of class Icf. | |
5052 | * object.cc (Sized_relobj::do_layout): Allow this function to be | |
5053 | called twice during icf. | |
5054 | (Sized_relobj::do_finalize_local_symbols): Fold symbols corresponding | |
5055 | to sections marked as identical by icf. | |
5056 | (Sized_relobj::do_section_flags): Get section_flags from Symbols_data | |
5057 | when available. | |
5058 | (Sized_relobj::do_section_entsize): New function. | |
5059 | * object.h (Object::section_entsize): New function. | |
5060 | (Object::do_section_entsize): New pure virtual function. | |
5061 | (Relobj::finalize_local_symbols): Add new parameter. | |
5062 | (Relobj::do_section_entsize): New function. | |
5063 | * options.h (General_options::icf): New option. | |
5064 | (General_options::icf_iterations): New option. | |
5065 | (General_options::print_icf_sections): New option. | |
5066 | * plugin.cc (Sized_pluginobj::do_section_entsize): New function. | |
5067 | * plugin.h (Sized_pluginobj::do_section_entsize): New function. | |
5068 | * reloc.cc (Read_relocs::run): Delay scanning relocs when doing | |
5069 | icf. | |
5070 | * symtab.cc (Symbol_table::is_section_folded): New function. | |
5071 | (Symbol_table::sized_finalize_symbol): Fold symbols corresponding | |
5072 | to sections marked as identical by icf. | |
5073 | * symtab.h (Symbol_table::set_icf): New function. | |
5074 | (Symbol_table::icf): New function. | |
5075 | (Symbol_table::is_section_folded): New function. | |
5076 | (Symbol_table::icf_): New data member. | |
5077 | * target-reloc.h (relocate_section): Ignore sections folded by icf. | |
5078 | * testsuite/Makefile.am: Add commands to build icf_test. | |
5079 | * testsuite/Makefile.in: Regenerate. | |
5080 | * testsuite/icf_test.sh: New file. | |
5081 | * testsuite/icf_test.cc: New file. | |
5082 | ||
c3b65ac4 CD |
5083 | 2009-07-24 Chris Demetriou <[email protected]> |
5084 | ||
5085 | * layout.cc (is_compressible_debug_section): Fix incorrect | |
5086 | comment about compressed section names. | |
5087 | ||
1caf2c51 ILT |
5088 | 2009-07-20 Ian Lance Taylor <[email protected]> |
5089 | ||
5090 | PR 10419 | |
5091 | * x86_64.cc (Target_x86_64::do_code_fill): Correct nop sequences. | |
5092 | ||
1ef4d87f ILT |
5093 | 2009-07-16 Ian Lance Taylor <[email protected]> |
5094 | ||
5095 | PR 10400 | |
5096 | * layout.h: #include <map>. | |
5097 | (class Kept_section): Change from struct to class. Add accessors | |
5098 | and setters. Add section size to Comdat_group mapping. Change | |
5099 | Comdat_group to std::map. Add is_comdat_ field. Add | |
5100 | linkonce_size field in union. | |
5101 | (class Layout): Update declaration of find_or_add_kept_section. | |
5102 | Don't declare find_kept_object. | |
5103 | * layout.cc (Layout::find_or_add_kept_section): Remove candidate | |
5104 | parameter. Add object, shndx, is_comdat, and is_group_name | |
5105 | parameters. Change all callers. Adjust for new Kept_section. | |
5106 | (Layout::find_kept_object): Remove. | |
5107 | * object.cc (Sized_relobj::include_section_group): Update use of | |
5108 | Kept_section. Rename secnum to shndx. Only record | |
5109 | Kept_comdat_section if sections are the same size. | |
5110 | (Sized_relobj::include_linkonce_section): Update use of | |
5111 | Kept_section. Only record Kept_comdat_section if sections are the | |
5112 | same size. Set size of linkonce section. | |
5113 | (Sized_relobj::map_to_kept_section): Update call to | |
5114 | get_kept_comdat_section. | |
5115 | * object.h (class Sized_relobj): Rename fields in | |
5116 | Kept_comdat_section to drop trailing underscores; change object | |
5117 | field to Relobj*. Change Kept_comdat_section_table to store | |
5118 | struct rather than pointer. | |
5119 | (Sized_relobj::set_kept_comdat_section): Remove kept parameter. | |
5120 | Add kept_object and kept_shndx parameters. Change all callers. | |
5121 | (Sized_relobj::get_kept_comdat_section): Change return type to | |
5122 | bool. Add kept_object and kept_shndx parameters. Change all | |
5123 | callers. | |
5124 | * plugin.cc (Pluginobj::include_comdat_group): Update call to | |
5125 | Layout::find_or_add_kept_section. | |
5126 | ||
37c3b7b0 ILT |
5127 | 2009-07-09 Ian Lance Taylor <[email protected]> |
5128 | ||
5129 | * merge.cc (Object_merge_map::initialize_input_to_output_map): | |
5130 | Reserve space in the hash table. | |
5131 | ||
98fa85cb ILT |
5132 | 2009-07-06 Mikolaj Zalewski <[email protected]> |
5133 | ||
5134 | * fileread.cc (File_read::get_mtime): New method. | |
5135 | * fileread.h (Timespec): New structure. | |
5136 | (File_read::get_mtime): New method. | |
5137 | * incremental.cc (Incremental_inputs_entry_data::timestamp_usec): | |
5138 | Renamed from timestamp_nsec. | |
5139 | (Incremental_inputs_entry_write::timestamp_sec): Fix argument to | |
5140 | Elf_Xword. | |
e1df38aa | 5141 | (Incremental_inputs_entry_write::timestamp_usec): Renamed from |
98fa85cb | 5142 | timestamp_nsec. |
e1df38aa | 5143 | (Incremental_inputs::report_archive): Save mtime; style fix. |
98fa85cb ILT |
5144 | (Incremental_inputs::report_obejct): Save mtime; style fix. |
5145 | (Incremental_inputs::report_script): Save mtime; style fix. | |
5146 | (Incremental_inputs::finalize_inputs): Style fix. | |
5147 | (Incremental_inputs::finalize): Style fix. | |
5148 | (Incremental_inputs::create_input_section_data): Store inputs | |
5149 | mtime. | |
5150 | * incremental.h (Incremental_inputs::report_script): Add mtime | |
5151 | argument. | |
5152 | (Incremental_inputs::Input_info::Input_info): Intialize only one | |
5153 | union member. | |
5154 | (Incremental_inputs::Input_info::archive): Move to nameless | |
5155 | union. | |
5156 | (Incremental_inputs::Input_info::obejct): Move to nameless union. | |
5157 | (Incremental_inputs::Input_info::script): Move to nameless union. | |
5158 | (Incremental_inputs::mtime): New field. | |
5159 | * script.cc (read_input_script): Pass file mtime to | |
5160 | Incremental_input. | |
5161 | * script.h (Script_info::inputs): Style fix. | |
5162 | ||
c9d70757 ILT |
5163 | 2009-07-01 Ian Lance Taylor <[email protected]> |
5164 | ||
5165 | * freebsd.h (Target_freebsd::do_adjust_elf_header): Use size | |
5166 | instead of 32. | |
5167 | ||
9c547ec3 ILT |
5168 | 2009-06-24 Ian Lance Taylor <[email protected]> |
5169 | ||
5170 | PR 10156 | |
5171 | * layout.cc (Layout::choose_output_section): If we find an | |
5172 | existing section, update the flags. | |
5173 | (Layout::create_notes): New function, broken out of | |
5174 | Layout::finalize. | |
5175 | (Layout::finalize): Don't create note sections. | |
5176 | (Layout::create_note): Don't crash if linker script discards | |
5177 | section. | |
5178 | (Layout::create_gold_note): Likewise. | |
5179 | (Layout::create_build_id): Likewise. Don't set | |
5180 | after_input_sections on the section. | |
5181 | (Layout::create_executable_stack_info): Remove target parameter. | |
5182 | Change caller. | |
5183 | * layout.h (class Layout): Declare create_notes. Update | |
5184 | declaration of create_executable_stack_info. | |
5185 | * gold.cc (queue_middle_tasks): Call create_notes. | |
5186 | * output.cc (Output_section::update_flags_for_input_section): Move | |
5187 | here from output.h. If SHF_ALLOC flag is newly set, mark address | |
5188 | invalid. | |
5189 | * output.h (Output_data::mark_address_invalid): New function. | |
5190 | (class Output_section): Only declare, not define, | |
5191 | update_flags_for_input_section. Remove set_flags. | |
5192 | ||
55458500 ILT |
5193 | 2009-06-24 Ian Lance Taylor <[email protected]> |
5194 | ||
5195 | * script-sections.cc (Output_section_definition:: | |
5196 | set_section_addresses): Rename shadowing local load_address to | |
5197 | laddr. | |
5198 | ||
1307d6cd ILT |
5199 | 2009-06-24 Ian Lance Taylor <[email protected]> |
5200 | ||
5201 | PR 10244 | |
5202 | * reloc.cc (relocate_sections): Skip empty relocation sections. | |
5203 | ||
ec3f783e ILT |
5204 | 2009-06-23 Ian Lance Taylor <[email protected]> |
5205 | ||
5206 | PR 10156 | |
5207 | * layout.cc (Layout::create_note): Use choose_output_section | |
5208 | rather than make_output_section. | |
5209 | ||
459c9f1c ILT |
5210 | 2009-06-23 Ian Lance Taylor <[email protected]> |
5211 | ||
5212 | PR 10237 | |
5213 | * options.cc (General_options::parse_V): Set printed_version_. | |
5214 | (General_options::General_options): Initialize printed_version_. | |
5215 | * options.h (class General_options): Add printed_version_ field. | |
5216 | * gold.cc (queue_initial_tasks): If there are no input files, | |
5217 | don't give a fatal error if we printed the version information. | |
5218 | (queue_middle_tasks): If using -r with a shared object, give a | |
5219 | fatal error rather than an ordinary error. | |
5220 | ||
1518dc8f ILT |
5221 | 2009-06-23 Ian Lance Taylor <[email protected]> |
5222 | ||
5223 | PR 10219 | |
5224 | * layout.cc (Layout::Layout): Initialize have_stabstr_section_. | |
5225 | (Layout::make_output_section): Set have_stabstr_section_ if we see | |
5226 | a .stab*str section. | |
5227 | (Layout::finalize): Call link_stabs_sections. | |
5228 | (Layout::link_stabs_sections): New file. | |
5229 | * layout.h (class Layout): Add have_stabstr_section_ field. | |
5230 | Declare link_stabs_sections. | |
5231 | ||
3d857b98 DK |
5232 | 2009-06-23 Doug Kwan <[email protected]> |
5233 | ||
5234 | * Makefile.am (libgold_a_LIBADD): New. | |
5235 | (ld_new_DEPENDENCIES, ld_new_LDADD): Remove LIBOBJS | |
5236 | * Makefile.in: Regenerate. | |
5237 | * config.in (HAVE_DECL_MEMMEM, HAVE_DECL_STRNDUP): New. | |
5238 | * configure: Regenerate. | |
5239 | * configure.ac (AC_CHECK_DECLS): Add strndup and memmem. | |
5240 | * fileread.cc: Include sys/state.h | |
5241 | * gold.h: Declare memmem and strndup if found missing. | |
5242 | * gold_reloc.h: Include byteswap.h if HAVE_BYTESWAP_H is defined. | |
5243 | ||
0639a6f6 ILT |
5244 | 2009-06-23 Ian Lance Taylor <[email protected]> |
5245 | ||
5246 | * configure.ac: Call AC_CHECK_DECLS using C, not C++. | |
5247 | * configure: Rebuild. | |
5248 | ||
8d63875c ILT |
5249 | 2009-06-23 Ian Lance Taylor <[email protected]> |
5250 | ||
5251 | PR 10147 | |
5252 | * object.cc (Object::section_contents): Don't try to get a view if | |
5253 | the section has length zero. | |
5254 | (Object::handle_gnu_warning_section): If the section is empty, use | |
5255 | the name of the section as the warning. | |
5256 | ||
f7c8a183 ILT |
5257 | 2009-06-23 Ian Lance Taylor <[email protected]> |
5258 | ||
5259 | PR 10133 | |
5260 | * stringpool.h (class Stringpool_template): Add optimize_ field. | |
5261 | (Stringpool_template::set_optimize): New function. | |
5262 | * stringpool.cc (Stringpool_template::Stringpool_template): | |
5263 | Initialize optimize_ field. | |
5264 | (Stringpool_template::set_string_offsets): Test local optimize | |
5265 | fild rather than parameter. | |
5266 | * layout.cc (Layout::Layout): Call set_optimize on the section | |
5267 | name stringpool. | |
5268 | ||
e6a307ba ILT |
5269 | 2009-06-22 Ian Lance Taylor <[email protected]> |
5270 | ||
5271 | PR 10030 | |
5272 | * yyscript.y: Parse TARGET. | |
5273 | * script.cc (script_set_target): New function. | |
5274 | * script-c.h (script_set_target): Declare. | |
5275 | * options.cc (General_options::string_to_object_format): Rename | |
5276 | from string_to_object_format in anonymous namespace. Change | |
5277 | callers. | |
5278 | * options.h (class General_options): Declare | |
5279 | string_to_object_format. | |
5280 | ||
3ee173de ILT |
5281 | 2009-06-22 Ian Lance Taylor <[email protected]> |
5282 | ||
5283 | * script-sections.cc (Script_sections::create_segments): Don't put | |
5284 | program headers in a PT_LOAD segment if -n or -N. | |
5285 | ||
5286 | 2009-06-22 Ian Lance Taylor <[email protected]> | |
e1c74d60 ILT |
5287 | |
5288 | PR 10141 | |
5289 | * options.h (class General_options): Add -z lazy and -z now. Sort | |
5290 | -z options into alphabetical order. | |
5291 | * layout.cc (Layout::finish_dynamic_section): Handle -z now. | |
5292 | ||
cd6739a1 | 5293 | 2009-06-21 Ian Lance Taylor <[email protected]> |
8a5e3e08 ILT |
5294 | |
5295 | * layout.cc (Layout::make_output_section): Call | |
5296 | Target::new_output_section. | |
5297 | (Layout::attach_allocated_section_to_segment): Put large section | |
5298 | sections in a separate load segment with the large segment flag | |
5299 | set. | |
5300 | (Layout::segment_precedes): Sort large data segments after other | |
5301 | load segments. | |
5302 | (align_file_offset): New static function. | |
5303 | (Layout::set_segment_offsets): Use align_file_offset. | |
5304 | * output.h (class Output_section): Add is_small_section_ and | |
5305 | is_large_section_ fields. | |
5306 | (Output_section::is_small_section): New function. | |
5307 | (Output_section::set_is_small_section): New function. | |
5308 | (Output_section::is_large_section): New function. | |
5309 | (Output_section::set_is_large_section): New function. | |
5310 | (Output_section::is_large_data_section): New function. | |
5311 | (class Output_segment): Add is_large_data_segment_ field. | |
5312 | (Output_segment::is_large_data_segment): New function. | |
5313 | (Output_segment::set_is_large_data_segment): New function. | |
5314 | * output.cc (Output_section::Output_section): Initialize new | |
5315 | fields. | |
5316 | (Output_segment::Output_segment): Likewise. | |
5317 | (Output_segment::add_output_section): Add assertion that large | |
5318 | data sections always go in large data segments. Force small data | |
5319 | sections to the end of the list of data sections. Force small BSS | |
5320 | sections to the start of the list of BSS sections. For large BSS | |
5321 | sections to the end of the list of BSS sections. | |
5322 | * symtab.h (class Symbol): Declare is_common_shndx. | |
5323 | (Symbol::is_defined): Check Symbol::is_common_shndx. | |
5324 | (Symbol::is_common): Likewise. | |
5325 | (class Symbol_table): Define enum Commons_section_type. Update | |
5326 | declarations. Add small_commons_ and large_commons_ fields. | |
5327 | * symtab.cc (Symbol::is_common_shndx): New function. | |
5328 | (Symbol_table::Symbol_table): Initialize new fields. | |
5329 | (Symbol_table::add_from_object): Put small and large common | |
5330 | symbols in the right list. | |
5331 | (Symbol_table::sized_finalized_symbol): Check | |
5332 | Symbol::is_common_shndx. | |
5333 | (Symbol_table::sized_write_globals): Likewise. | |
5334 | * common.cc (Symbol_table::do_allocate_commons): Allocate new | |
5335 | common symbol lists. Don't call do_allocate_commons_list if the | |
5336 | list is empty. | |
5337 | (Symbol_table::do_allocate_commons_list): Remove is_tls | |
5338 | parameter. Add comons_section_type parameter. Change all | |
5339 | callers. Handle small and large common symbols. | |
5340 | * object.cc (Sized_relobj::do_finalize_local_symbols): Check | |
5341 | Symbol::is_common_shndx. | |
5342 | * resolve.cc (symbol_to_bits): Likewise. | |
5343 | * target.h (Target::small_common_shndx): New function. | |
5344 | (Target::small_common_section_flags): New function. | |
5345 | (Target::large_common_shndx): New function. | |
5346 | (Target::large_common_section_flags): New function. | |
5347 | (Target::new_output_section): New function. | |
5348 | (Target::Target_info): Add small_common_shndx, large_common_shndx, | |
5349 | small_common_section_flags, and large_common_section_flags | |
5350 | fields. | |
5351 | (Target::do_new_output_section): New virtual function. | |
5352 | * arm.cc (Target_arm::arm_info): Initialize new fields. | |
5353 | * i386.cc (Target_i386::i386_info): Likewise. | |
5354 | * powerpc.cc (Target_powerpc::powerpc_info) [all versions]: | |
5355 | Likewise. | |
5356 | * sparc.c (Target_sparc::sparc_info) [all versions]: Likewise. | |
5357 | * x86_64.cc (Target_x86_64::x86_64_info): Likewise. | |
5358 | (Target_x86_64::do_new_output_section): New function. | |
5359 | * configure.ac: Define conditional MCMODEL_MEDIUM. | |
5360 | * testsuite/Makefile.am (check_PROGRAMS): Add large. | |
5361 | (large_SOURCES, large_CFLAGS, large_DEPENDENCIES): Define. | |
5362 | (large_LDFLAGS): Define. | |
5363 | * testsuite/large.c: New file. | |
5364 | * testsuite/testfile.cc (Target_test::test_target_info): | |
5365 | Initialize new fields. | |
5366 | * configure, testsuite/Makefile.in: Rebuild. | |
5367 | ||
bb04269c DK |
5368 | 2009-06-05 Doug Kwan <[email protected]> |
5369 | ||
5370 | * Makefile.am (CCFILES): Add target.cc. | |
e1df38aa | 5371 | * Makefile.in: Regenerate. |
bb04269c DK |
5372 | * i386.cc (class Target_i386): Define new virtual method to |
5373 | override do_is_local_label_name in parent. | |
5374 | * object.cc (Sized_relobj::do_count_local_symbols): Discard | |
5375 | local symbols if --discard-locals or -X is given. | |
5376 | * options.h (class General_options): Declare new options | |
5377 | '--discard-locals' and '-X' for discarding locals. | |
5378 | * target.h (class Target): Define new methods is_local_label_name. | |
5379 | Declare new virtual method do_is_local_label_name. | |
5380 | * target.cc: New file. | |
5381 | * testsuite/Makefile.am (check_PROGRAMS): Add discard_locals_test. | |
5382 | (check_SCRIPTS): Add discard_locals_test.sh. | |
5383 | (check_DATA): Add discard_local_tests.syms. | |
5384 | (discard_locals_test_SOURCES, discard_locals_test_LDFLAGS): Define. | |
5385 | (discard_local_tests.syms, discard_locals_test.o): New make rules. | |
5386 | * testsuite/Makefile.in: Regenerate. | |
5387 | * testsuite/discard_locals_test.c: New file. | |
5388 | * testsuite/discard_locals_test.sh: Same. | |
5389 | ||
805bb01c DK |
5390 | 2009-06-05 Doug Kwan <[email protected]> |
5391 | ||
5392 | * object.cc (Sized_relobj::Sized_relobj): Initialize | |
5393 | discarded_eh_frame_shndx_ to -1U. | |
5394 | (Sized_relobj::do_layout): Record index of a discard .eh_frame | |
5395 | section. | |
5396 | (Sized_relobj::do_count_local_symbols): Skip local symbols in | |
5397 | a discarded .eh_frame section. | |
5398 | (Sized_relobj::do_finalize_local_symbols): Ditto. | |
5399 | * object.h (class Sized_relobj): Declare new member | |
5400 | discarded_eh_frame_shndx_. | |
5401 | * testsuite/Makefile.am (check_PROGRAMS): Add local_labels_test. | |
5402 | (local_labels_test.o, local_labels_test): New rules. | |
5403 | * testsuite/Makefile.in: Regenerate. | |
5404 | ||
1dcd334d DK |
5405 | 2009-06-04 Doug Kwan <[email protected]> |
5406 | ||
5407 | * layout.cc (Layout::section_name_mapping): Add mapping for | |
5408 | special ARM sections. | |
5409 | ||
96d49306 DK |
5410 | 2009-06-03 Doug Kwan <[email protected]> |
5411 | ||
5412 | * arm.cc (utils::sign_extend): Reverse test in gold_assert. | |
5413 | (utils::has_overflow): Same. | |
5414 | ||
dff16297 ILT |
5415 | 2009-06-03 Ian Lance Taylor <[email protected]> |
5416 | ||
5417 | * layout.cc (Layout::section_name_mapping): New array, replacing | |
5418 | Layout::linkonce_mapping. | |
5419 | (Layout::section_name_mapping_count): New variable, replacing | |
5420 | Layout::linkonce_mapping_count. | |
5421 | (Layout::linkonce_output_name): Remove. | |
5422 | (Layout::output_section_name): Rewrite. | |
5423 | * layout.h (class Layout): Rename Linkonce_mapping to | |
5424 | Section_name_mapping, linkonce_mapping to section_name_mapping, | |
5425 | linkonce_mapping_count to section_name_mapping_count. Don't | |
5426 | declare linkonce_output_name. | |
5427 | ||
c121c671 DK |
5428 | 2009-06-03 Doug Kwan <[email protected]> |
5429 | ||
5430 | * gold/arm.cc (namespace utils): New. | |
5431 | (Target_arm::reloc_is_non_pic): Define new method. | |
5432 | (class Arm_relocate_functions): New. | |
5433 | (Target_arm::Relocate::relocate): Handle relocation types used by | |
5434 | Android. | |
5435 | ||
07800fab ILT |
5436 | 2009-06-03 Ian Lance Taylor <[email protected]> |
5437 | ||
5438 | * arm.cc (Target_arm::scan::global): Use || instead of |. | |
5439 | ||
c121c671 DK |
5440 | 2009-06-02 Doug Kwan <[email protected]> |
5441 | ||
5442 | * gold/arm.cc (Target_arm::Scan::Scan): Initialize | |
5443 | issued_non_pic_error_. | |
5444 | (class Target_arm::Scan): Declare new method check_non_pic. | |
5445 | Define new method symbol_needs_plt_entry. | |
5446 | Declare new data member issued_non_pic_error_. | |
5447 | (class Target_arm::Relocate): Declare new method | |
5448 | should_apply_static_reloc. | |
5449 | (Target_arm::may_need_copy_reloc): Handle STT_ARM_TFUNC. | |
5450 | (Target_arm::Scan::check_non_pic): Define new method. | |
5451 | (Target_arm::Scan::local): Handle a small subset of reloc types used | |
5452 | by Android. | |
5453 | (Target_arm::Scan::local): Same. | |
5454 | (Target_arm::Relocate::should_apply_statci_reloc): Define new method. | |
5455 | ||
b19b0c6d ILT |
5456 | 2009-05-31 Mikolaj Zalewski <[email protected]> |
5457 | ||
5458 | * incremental.cc (Incremental_inputs::report_command_line): Filter | |
5459 | out --incremental-* options. | |
5460 | ||
94cdfcff DK |
5461 | 2009-05-29 Doug Kwan <[email protected]> |
5462 | ||
5463 | * gold/arm.cc (Output_data_plt_arm): Forward declaration for new | |
5464 | template class. | |
5465 | (class Target_arm): Update comment. | |
5466 | (Target_arm::Target_arm): Initialize new data members GOT_, | |
5467 | PLT_, GOT_PLT_, REL_DYN_, COPY_RELOCS_ and DYNBSS_. | |
5468 | Declare new methods Target_arm::got_section, Target_arm::make_plt_entry | |
5469 | and Target_arm::rel_dyn_section. | |
5470 | Declare new_enum Target_arm::Got_type. | |
5471 | Declare new data members GOT_, PLT_, GOT_PLT_, REL_DYN_, COPY_RELOCS_ | |
5472 | and DYNBSS_. | |
5473 | Update commments for member do_dynsym_value. | |
5474 | (Target_arm::got_size, Target_arm::plt_section, | |
5475 | Target_arm::may_need_copy_reloc and Target_arm::copy_reloc): Define | |
5476 | new methods inside class defintion. | |
5477 | (Target_arm::got_section): Define new method. | |
5478 | (Target_arm::rel_dyn_section): Same. | |
5479 | (Output_data_plt_arm): New template class. | |
5480 | (Output_data_plt_arm::Output_data_plt_arm): Define constructor. | |
5481 | (Output_data_plt_arm:do_adjust_output_section): Define new method. | |
5482 | (Output_data_plt_arm::add_entry): Same. | |
5483 | (Output_data_plt_arm::first_plt_entry): Define new | |
5484 | static data member for PLT instruction template. | |
5485 | (Output_data_plt_arm::plt_entry): Same. | |
5486 | (Output_data_plt_arm::do_write): Define new method. | |
5487 | (Target_arm::make_plt_entry): Same. | |
5488 | (Target_arm::do_finalize_sections): Same. | |
5489 | (Target_arm::do_dynsym_value): Same. | |
5490 | ||
4a657b0d DK |
5491 | 2009-05-28 Doug Kwan <[email protected]> |
5492 | ||
5493 | * Makefile.am (TARGETSOURCES): Add arm.cc. | |
5494 | (ALL_TARGETOBJECTS): Add arm.$(OBJEXT) | |
5495 | * Makefile.in: Regenerate. | |
5496 | * arm.cc: New file. | |
5497 | * configure.tgt: Add armbe*-*-*, armeb*-*-* and arm*-*-* targets. | |
5498 | ||
e7ae8c36 DK |
5499 | 2009-05-26 Doug Kwan <[email protected]> |
5500 | ||
5501 | * options.cc (General_options::parse_exclude_libs). Fix a comment. | |
5502 | (General_options::check_excluded_libs): Strip off directories in | |
5503 | archive name before matching like GNU ld does. | |
5504 | * testsuite/Makefile.am (MOSTLYCLEANFILES, | |
5505 | exclude_libs_test_DEPENDENCIES): Add alt/libexclude_libs_test_3.a | |
5506 | (exclude_libs_test_LDFLAGS): Add linker option | |
5507 | -Wl,--exclude-libs,libexclude_libs_test_3 | |
5508 | (exclude_libs_test_LADD): Add alt/libexclude_libs_test_3.a as | |
5509 | an explicit archive without using -l. | |
5510 | (alt/libexclude_libs_test_3.a): New make rule. | |
5511 | * testsuite/Makefile.in: Regenerate. | |
5512 | * testsuite/exclude_libs_test.c : Declare lib3_default(). | |
5513 | (main): Call it. | |
5514 | * exclude_libs_test.sh: Add tests for alt/exclude_libs_test_3.a. | |
5515 | * exclude_libs_test_3.c: New file. | |
5516 | ||
f12e7348 NC |
5517 | 2009-05-26 Nick Clifton <[email protected]> |
5518 | ||
5519 | * po/id.po: New Indonesian translation. | |
5520 | * po/gold.pot: Updated template file. | |
5521 | ||
4daadc0d ST |
5522 | 2009-05-22 Sriraman Tallam <[email protected]> |
5523 | ||
e1df38aa | 5524 | * testsuite/Makefile.am: Add -ffunction-sections to compile |
4daadc0d ST |
5525 | gc_comdat_test files. Add -Wl,--gc-sections to build |
5526 | gc_comdat_test. | |
5527 | * testsuite/Makefile.in: Regenerate. | |
5528 | * testsuite/gc_comdat_test.sh: Fix the condition around grep. | |
5529 | ||
531813ad ST |
5530 | 2009-05-21 Sriraman Tallam <[email protected]> |
5531 | ||
5532 | * object.cc (Sized_relobj::map_to_kept_section): Return NULL if the | |
5533 | kept comdat section was garbage collected. | |
5534 | * testsuite/Makefile.am: Add test gc_comdat_test.sh. | |
5535 | * testsuite/Makefile.in: Regenerate. | |
5536 | * testsuite/gc_comdat_test.sh: New file. | |
5537 | * testsuite/gc_comdat_test_1.cc: New file. | |
5538 | * testsuite/gc_comdat_test_2.cc: New file. | |
5539 | ||
65514900 CC |
5540 | 2009-05-19 Doug Kwan <[email protected]> |
5541 | ||
5542 | * archive.cc (Archive::Archive): Move constructor from archive.h | |
5543 | to here. Initialize no_export_. | |
5544 | (Archive::get_elf_object_for_member): Set no_export flag of object. | |
5545 | * archive.h (Archive::Archive): Move constructor body to | |
5546 | archive.cc. | |
5547 | (Archive::no_export): New method. | |
5548 | (Archive::no_export_): New field. | |
5549 | * object.h (Object::Object): Initialize no_export_ to false. | |
5550 | (Object::no_export, Object::set_no_export): New methods. | |
5551 | (Object::no_export_): New field. | |
5552 | * options.cc (General_options::parse_exclude_libs): New method. | |
5553 | (General_options::check_excluded_libs) Same. | |
5554 | * options.h (exclude_libs): New option. | |
5555 | (General_options::check_excluded_libs): New method declaration. | |
5556 | (General_options::excluded_libs_): New field. | |
5557 | * symtab.cc (Symbol_table::add_from_relobj): Hide symbols with | |
5558 | default or protected visibility if an object has no-export flag set. | |
5559 | testsuite/Makefile.am (check_PROGRAMS): Add exclude_libs_test. | |
5560 | (check_SCRIPTS): Add exclude_libs_test.sh. | |
5561 | (check_DATA): Add exclude_libs_test.syms. | |
5562 | (MOSTLYCLEANFILES): Add exclude_libs_test.syms, | |
5563 | libexclude_libs_test_1.a and libexclude_libs_test_2.a. | |
5564 | (exclude_libs_test_SOURCES, exclude_libs_test_DEPENDENCIES, | |
5565 | exclude_libs_test_LDFLAGS and exclude_libs_test_LDADD): Define. | |
5566 | (exclude_libs_test.syms, libexclude_libs_test_1.a, | |
5567 | libexclude_libs_test_2.a): New rules. | |
5568 | * testsuite/Makefile.in: Regenerate. | |
5569 | * testsuite/exclude_libs_test.c: New file. | |
5570 | * testsuite/exclude_libs_test.sh: Ditto. | |
5571 | * testsuite/exclude_libs_test_1.c: Ditto. | |
5572 | * testsuite/exclude_libs_test_2.c: Ditto. | |
5573 | ||
1b77ea50 ILT |
5574 | 2009-05-15 Ian Lance Taylor <[email protected]> |
5575 | ||
5576 | * configure.ac: Check for declarations for cases where libiberty.h | |
5577 | checks HAVE_DECL_xxx. | |
5578 | * configure, config.in: Rebuild. | |
5579 | ||
072fe7ce ILT |
5580 | 2009-05-15 Mikolaj Zalewski <[email protected]> |
5581 | ||
5582 | * gold.h (Incremental_argument_list): Remove (invalid) forward | |
5583 | declaration. | |
5584 | * incremental.cc (Incremental_inputs::report_achive): New method. | |
5585 | (Incremental_inputs::report_object): New method. | |
5586 | (Incremental_inputs::report_script): New method. | |
5587 | (Incremental_inputs::finalize_inputs): New method. | |
5588 | (Incremental_inputs::finalize): Call finalize_inputs(). | |
5589 | (Incremental_inputs::sized_create_incremental_inputs_section_data): | |
5590 | Create inputs entries. | |
5591 | * incremental.h (Incremental_input_type): New enum. | |
5592 | (Incremental_inputs::Incremental_input): Initialize new fields. | |
5593 | (Incremental_inputs::report_inputs): New method. | |
5594 | (Incremental_inputs::report_achive): New method. | |
5595 | (Incremental_inputs::report_object): New method. | |
5596 | (Incremental_inputs::report_script): New method. | |
5597 | (Incremental_inputs::finalize_inputs): New method. | |
5598 | (Incremental_inputs::Input_info): New struct. | |
5599 | (Incremental_inputs::Input_info_map): New typedef. | |
5600 | (Incremental_inputs::lock_): New field. | |
5601 | (Incremental_inputs::Inputs_): New field. | |
5602 | (Incremental_inputs::Inputs_map): New field. | |
5603 | * main.cc (main): Call Incremental_input::report_inputs. | |
5604 | * options.h (Input_argument_list): Typedef moved from | |
5605 | Input_arguments. | |
5606 | (Input_file_group::Files): Remove, use ::Input_argument_list. | |
5607 | (Input_file_group::Input_argument_list): Remove, use | |
5608 | ::Input_argument_list. | |
5609 | * plugin.cc (Plugin_manager::add_input_file): Add error in | |
5610 | incremental build. | |
5611 | * read_syms.cc (do_read_syms): Call Incremental_input::report_* | |
5612 | functions. | |
5613 | * script.cc (read_input_script): Call | |
5614 | Incremental_input::report_script. | |
5615 | * script.h (Script_info): New class. | |
5616 | ||
b0481b0b ILT |
5617 | 2009-04-27 Ian Lance Taylor <[email protected]> |
5618 | ||
5619 | * x86_64.cc (do_adjust_output_section): Set entsize to | |
5620 | plt_entry_size. | |
5621 | ||
b22a5a41 | 5622 | 2009-04-23 Elliott Hughes <[email protected]> |
6d1e3092 CD |
5623 | |
5624 | * output.cc (Output_file::close): After short writes, continue | |
5625 | writing from the correct offset in the buffer being written. | |
5626 | ||
40fde488 CD |
5627 | 2009-04-23 Chris Demetriou <[email protected]> |
5628 | ||
5629 | * configure.ac (HAVE_TR1_UNORDERED_MAP_REHASH): New define. | |
5630 | * configure: Regenerate. | |
5631 | * config.in: Regenerate. | |
5632 | * gold.h: Avoid std::tr1::unordered_map and std::tr1::unordered_set | |
5633 | if HAVE_TR1_UNORDERED_MAP_REHASH is not defined. | |
5634 | ||
3ce2c28e ILT |
5635 | 2009-04-21 Mikolaj Zalewski <[email protected]> |
5636 | ||
5637 | * incremental.cc (Incremental_inputs_header_data): Renamed from | |
5638 | Incremental_input_header_data. | |
5639 | (Incremental_inputs_header_data::data_size): New field. | |
5640 | (Incremental_inputs_header_data::put_input_file_count): Renamed | |
5641 | from input_file_count. | |
5642 | (Incremental_inputs_header_data::put_command_line_offset): Renamed | |
5643 | from command_line_offset. | |
5644 | (Incremental_inputs_header_data::put_reserved): Renamed from | |
5645 | put_reserved. | |
5646 | (Incremental_inputs_entry_data): Renamed from | |
5647 | Incremental_input_entry_data. | |
5648 | (Incremental_inputs_entry_data::data_size): New field. | |
5649 | (Incremental_inputs::report_command_line): New method. | |
5650 | (Incremental_inputs::finalize): New method. | |
5651 | (Incremental_inputs::create_incremental_inputs_data): New method. | |
5652 | (Incremental_inputs::sized_create_incremental_inputs_data): New method. | |
5653 | * incremental.h: New file. | |
5654 | * layout.cc (Layout::Layout): Handle new incremental_inputs_. | |
5655 | (Layout::finalize): Create incremental inputs section in | |
5656 | incremental builds. | |
5657 | (Layout::create_incremental_info_sections): New method. | |
5658 | * layout.h (Layout::incremental_inputs): New method. | |
5659 | (Layout::create_incremental_info_sections): New method. | |
5660 | (Layout::incremental_inputs_): New field. | |
5661 | * main.cc (main): Notify Incremental_input of the command line. | |
5662 | ||
e55bde5e ILT |
5663 | 2009-04-01 Ian Lance Taylor <[email protected]> |
5664 | Mikolaj Zalewski <[email protected]> | |
5665 | ||
5666 | * gold.h (reserve_unordered_map): Define, three versions, one for | |
5667 | each version of Unordered_map. | |
5668 | * layout.cc (Layout::Layout): Remove options parameter. Add | |
5669 | number_of_input_files parameter. Don't initialize options_. | |
5670 | Initialize number_of_input_files_ and resized_signatures_. Move | |
5671 | sections_are_attached_. | |
5672 | (Layout::layout_group): Reserve space for group_signatures_. | |
5673 | (Layout::find_or_add_kept_section): Change name parameter to be a | |
5674 | reference. Resize signatures_ map when it gets large enough. | |
5675 | (Layout::layout_eh_frame): Use parameters->options() instead of | |
5676 | this->options_. | |
5677 | (Layout::make_output_section): Likewise. | |
5678 | (Layout::attach_allocated_section_to_segment): Likewise. | |
5679 | (Layout::finalize, Layout::create_executable_stack): Likewise. | |
5680 | (Layout::set_segment_offsets, Layout::create_interp): Likewise. | |
5681 | (Layout::finish_dynamic_section, Layout::write_binary): Likewise. | |
5682 | * layout.h (class Layout): Update declarations. Remove options_ | |
5683 | field. Add number_of_input_files_ and resized_signatures_ | |
5684 | fields. Move sections_are_attached_ field. | |
5685 | * main.cc (main): Pass number of input files to Layout | |
5686 | constructor. Don't pass options. | |
5687 | ||
154b857c ILT |
5688 | 2009-03-30 Ian Lance Taylor <[email protected]> |
5689 | ||
5690 | * ffsll.c (ffsll): Correct implementation. | |
5691 | ||
2f35ab9b ILT |
5692 | 2009-03-27 Ian Lance Taylor <[email protected]> |
5693 | ||
fd03461a ILT |
5694 | * ffsll.c: New file. |
5695 | * configure.ac: Call AC_REPLACE_FUNCS on ffsll. | |
5696 | * gold.h (ffsll): Declare if HAVE_FFSLL is not defined. | |
5697 | * ftruncate.c (ftruncate): Declare before definition. | |
5698 | * mremap.c (mremap): Likewise. | |
5699 | * pread.c (pread): Likewise. | |
5700 | * configure, Makefile.in, config.in: Rebuild. | |
5701 | ||
2f35ab9b ILT |
5702 | * mremap.c: New file. |
5703 | * configure.ac: Call AC_REPLACE_FUNCS on mremap. | |
5704 | * gold.h (MREMAP_MAYMOVE): Define if HAVE_MREMAP is not defined. | |
5705 | (mremap): Declare if HAVE_MREMAP is not defined. | |
5706 | * configure, Makefile.in, config.in: Rebuild. | |
5707 | ||
33aea2fd CC |
5708 | 2009-03-27 Cary Coutant <[email protected]> |
5709 | ||
5710 | * powerpc.cc (Target_powerpc::check_non_pic): Assert that output is | |
5711 | position independent. | |
5712 | * sparc.cc (Target_sparc::check_non_pic): Likewise. | |
5713 | * x86_64.cc (Target_x86_64::check_non_pic): Likewise. | |
5714 | ||
6d479619 CC |
5715 | 2009-03-24 Cary Coutant <[email protected]> |
5716 | ||
5717 | * symtab.h (needs_plt_entry): Check for unsatisfied reference from | |
5718 | an executable. | |
5719 | (needs_dynamic_reloc): Likewise. | |
5720 | ||
afc06bb8 ILT |
5721 | 2009-03-24 Ian Lance Taylor <[email protected]> |
5722 | ||
5723 | * yyscript.y (file_cmd): Recognize EXTERN. | |
5724 | (extern_name_list, extern_name_list_body): New nonterminals. | |
5725 | * script.cc (script_add_extern): Define. | |
5726 | * script-c.h (script_add_extern): Declare. | |
5727 | ||
f6060a4d ILT |
5728 | 2009-03-24 Rafael Avila de Espindola <[email protected]> |
5729 | ||
5730 | * object.cc (is_elf_object): Define. | |
5731 | * object.h (is_elf_object): Declare. | |
5732 | * archive.cc (Archive::get_elf_object_for_member): Call | |
5733 | is_elf_object. | |
33aea2fd | 5734 | * readsyms.cc (Read_symbols::do_read_symbols): Likewise. |
f6060a4d | 5735 | |
26736d8e ILT |
5736 | 2009-03-24 Elliott Hughes <[email protected]> |
5737 | ||
5738 | * output.cc (Output_file::map_anonymous): Define. | |
5739 | (Output_file::map): Use map_anonymous. If the regular mmap fails, | |
5740 | try an anonymous one. Report the size if the mmap fails. | |
5741 | * output.h (class Output_file): Declare map_anonymous. | |
5742 | ||
22fd9730 ILT |
5743 | 2009-03-24 Ian Lance Taylor <[email protected]> |
5744 | ||
5745 | * target-select.cc (instantiate_target): Don't acquire the lock if | |
5746 | the instantiated_target_ field has already been set. | |
5747 | ||
cb010894 ILT |
5748 | 2009-03-23 Ian Lance Taylor <[email protected]> |
5749 | ||
7f055c20 ILT |
5750 | * gold-threads.h (class Initialize_lock): Define. |
5751 | * gold-threads.cc (class Initialize_lock_once): Define. | |
5752 | (initialize_lock_control): New static variable. | |
5753 | (initialize_lock_pointer): New static variable. | |
5754 | (initialize_lock_once): New static function. | |
5755 | (Initialize_lock::Initialize_lock): Define. | |
5756 | (Initialize_lock::initialize): Define. | |
5757 | * target-select.h: Include "gold-threads.h". | |
5758 | (class Target_selector): Add lock_ and initialize_lock_ fields. | |
5759 | Don't define instantiate_target, just declare it. | |
5760 | * target-select.cc (Target_selector::Target_selector): Initialize | |
5761 | new fields. | |
5762 | (Target_selector::instantiate_target): Define. | |
5763 | * descriptors.h: Include "gold-threads.h". | |
5764 | (class Descriptors): Add initialize_lock_ field. | |
5765 | * descriptors.cc (Descriptors::Descriptors): Initialize new | |
5766 | field. | |
5767 | (Descriptors::open): Use initialize_lock_ field | |
5768 | * errors.h (class Errors): Add initialize_lock_ field. | |
5769 | * errors.cc (Errors::Errors): Initialize new field. | |
5770 | (Errors::initialize_lock): Use initialize_lock_ field. | |
5771 | * powerpc.cc (class Target_selector_powerpc): Remove | |
5772 | instantiated_target_ field. In do_recognize call | |
5773 | instantiate_target rather than do_instantiate_target. In | |
5774 | do_instantiate_target just allocate a new target. | |
5775 | * sparc.cc (class Target_selector_sparc): Likewise. | |
5776 | ||
36959681 ILT |
5777 | * freebsd.h: New file. |
5778 | * i386.cc: Include "freebsd.h". | |
5779 | (Target_i386): Derive from Target_freebsd rather than | |
5780 | Sized_target. | |
5781 | (Target_selector_i386): Derive from Target_selector_freebsd rather | |
5782 | than Target_selector. | |
5783 | * x86_64.cc: Include "freebsd.h". | |
5784 | (Target_x86_64): Derive from Target_freebsd rather than | |
5785 | Sized_target. | |
5786 | (Target_selector_x86_64): Derive from Target_selector_freebsd | |
5787 | rather than Target_selector. | |
5788 | * target.h (class Target): Add adjust_elf_header and | |
5789 | do_adjust_elf_header. | |
5790 | * output.cc (Output_file_header:: do_sized_write): Call target | |
5791 | adjust_elf_header routine. | |
5792 | * configure.tgt: Set targ_osabi. | |
5793 | * configure.ac: Define GOLD_DEFAULT_OSABI. | |
5794 | * parameters.cc (Parameters::default_target): Pass | |
5795 | GOLD_DEFAULT_OSABI to select_target. | |
5796 | * target-select.h (class Target_selector): Make instantiate_target | |
5797 | protected rather than private. | |
5798 | * Makefile.am (HFILES): Add freebsd.h. | |
5799 | * configure, Makefile.in, config.in: Rebuild. | |
5800 | ||
cb010894 ILT |
5801 | * merge.cc (do_add_input_section): Correct pend value. Change |
5802 | message about last entry not being null terminated from error to | |
5803 | warning. | |
5804 | ||
0e879927 ILT |
5805 | 2009-03-20 Mikolaj Zalewski <[email protected]> |
5806 | ||
5807 | * incremental.cc: New file. | |
5808 | * Makefile.am (CCFILES): Add incremental.cc. | |
5809 | * Makefile.in: Rebuild. | |
5810 | ||
41105937 PP |
5811 | 2009-03-19 Paul Pluzhnikov <[email protected]> |
5812 | ||
5813 | * layout.cc (Layout::output_section_name): Preserve names | |
5814 | of '.note.' sections. | |
e1df38aa | 5815 | |
60439920 ILT |
5816 | 2009-03-19 Ian Lance Taylor <[email protected]> |
5817 | ||
5818 | * descriptors.cc (Descriptors::open): Check that the options are | |
5819 | valid before using them. | |
5820 | ||
0d371ad3 ILT |
5821 | 2009-03-18 Ian Lance Taylor <[email protected]> |
5822 | ||
5823 | * script-sections.h: Include <list>. | |
5824 | (class Script_sections): Change Sections_elements from std::vector | |
5825 | to std::list. Typedef public Elements_iterator. Add | |
5826 | orphan_section_placement_, data_segment_align_start_, and | |
5827 | saw_data_segment_align_ fields. Remove data_segment_align_index_ | |
5828 | field. | |
5829 | * script-sections.cc (class Orphan_section_placement): New class. | |
5830 | (class Sections_element): Add virtual functions is_relro and | |
5831 | orphan_section_init. Remove virtual function place_orphan_here. | |
5832 | (class Output_section_definition): Add is_relro and | |
5833 | orphan_section_init. Remove place_orphan_here. | |
5834 | (class Orphan_output_section): Likewise. | |
5835 | (Script_sections::Script_sections): Update for field changes. | |
5836 | (Script_sections::data_segment_align): Set saw_data_segment_align_ | |
5837 | and data_segment_align_start_, not data_segment_align_index. | |
5838 | (Script_sections::data_segment_relro_end): Check | |
5839 | saw_data_segment_align_. Use data_segment_align_start_ rather | |
5840 | than data_segment_align_index_. | |
5841 | (Script_sections::place_orphan): Rewrite to use | |
5842 | Orphan_section_placement. | |
5843 | ||
9201d894 ILT |
5844 | 2009-03-17 Ian Lance Taylor <[email protected]> |
5845 | ||
9c5b8369 ILT |
5846 | * archive.cc (Archive::add_symbols): Check for a version attached |
5847 | to the symbol name in the archive map. | |
5848 | * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_11. | |
5849 | (ver_test_11_SOURCES, ver_test_11_DEPENDENCIES): Define. | |
5850 | (ver_test_11_LDFLAGS, ver_test_11_LDADD): Define. | |
5851 | (ver_test_11.a): New target. | |
5852 | * testsuite/Makefile.in: Rebuild. | |
5853 | ||
9201d894 ILT |
5854 | * configure.ac: Check for chsize and posix_fallocate. Replace |
5855 | ftruncate. | |
5856 | * ftruncate.c: New file, from gnulib. | |
5857 | * output.cc (posix_fallocate): Define dummy version if not | |
5858 | HAVE_POSIX_FALLOCATE. | |
5859 | (Output_file::map): Call posix_fallocate rather than lseek and | |
5860 | write. | |
5861 | * gold.h (ftruncate): Declare if not HAVE_FTRUNCATE. | |
5862 | * configure, Makefile.in, config.in: Rebuild. | |
5863 | ||
ef4ab7a8 | 5864 | 2009-03-17 Paul Pluzhnikov <[email protected]> |
e1df38aa | 5865 | |
ef4ab7a8 PP |
5866 | * layout.h (Layout::create_note): Add section_name parameter. |
5867 | * layout.cc (Layout::create_note): Likewise. | |
5868 | (Layout::create_build_id, Layout::create_gold_note): Fix callers. | |
e1df38aa | 5869 | |
8c500701 ILT |
5870 | 2009-03-17 Ian Lance Taylor <[email protected]> |
5871 | ||
e85b18e1 ILT |
5872 | * descriptors.cc: Include "options.h". |
5873 | (FD_CLOEXEC, O_CLOEXEC): Define if not defined. | |
5874 | (Descriptors::open): Always use O_CLOEXEC when opening a new | |
5875 | descriptor. If we have a plugin, and O_CLOEXEC was not defined, | |
5876 | then set FD_CLOEXEC. | |
5877 | ||
9efe6174 ILT |
5878 | * sparc.cc (class Target_sparc): Add has_got_section. |
5879 | (Target_sparc::Scan::global): If we see _GLOBAL_OFFSET_TABLE_, | |
5880 | make sure we have a GOT section. | |
5881 | ||
5882 | * sparc.cc (optimize_tls_reloc): Recognize R_SPARC_TLS_IE_ADD. | |
5883 | (Target_sparc::Scan::local): Likewise. | |
5884 | (Target_sparc::Scan::global): Likewise. | |
5885 | (Target_sparc::Relocate::relocate): Likewise. | |
5886 | (Target_sparc::Relocate::relocate_tls): Likewise. | |
5887 | ||
8c500701 ILT |
5888 | * symtab.cc (Symbol_table::define_default_version): New function, |
5889 | broken out of add_from_object. | |
5890 | (Symbol_table::add_from_object): Call define_default_version. | |
5891 | (Symbol_table::define_special_symbol): Add resolve_oldsym | |
5892 | parameter. Change all callers. If the version for a symbol comes | |
5893 | from a version script, resolve it with the symbol with the same | |
5894 | name with no version. Also add the symbol without a version if | |
5895 | appropriate. | |
5896 | (do_define_in_output_data): If resolving with oldsym, don't delete | |
5897 | sym. | |
5898 | (do_define_in_output_segment): Likewise. | |
5899 | (do_define_as_constant): Likewise. | |
5900 | * symtab.h (class Symbol_table): Update declarations. | |
5901 | ||
f1ed28fb ILT |
5902 | 2009-03-13 Ian Lance Taylor <[email protected]> |
5903 | ||
15f8229b ILT |
5904 | * readsyms.cc (Read_symbols::incompatible_warning): New function. |
5905 | (Read_symbols::requeue): New function. | |
5906 | (Read_symbols::do_read_symbols): If make_elf_object fails because | |
5907 | the target type is not configured, and the file was searched for, | |
5908 | issue a warning and retry with the next directory. | |
5909 | (Add_symbols::run): If the file has an incompatible format, and | |
5910 | it was searched for, requeue the Read_symbols task. On error, | |
5911 | release the object. | |
5912 | * readsyms.h (class Read_symbols): Add dirindex_ field. Add | |
5913 | dirindex parameter to constructor. Change all callers. Declare | |
5914 | incompatible_warning and requeue. | |
5915 | (class Add_symbols): Add dirpath_, dirindex_, mapfile_, | |
5916 | input_argument_ and input_group_ fields. Add them to | |
5917 | constructor. Change all callers. | |
5918 | (class Read_script): Add dirindex_ field. Add it to constructor. | |
5919 | Change all callers. | |
5920 | * archive.cc (Archive::setup): Remove input_objects parameter. | |
5921 | Change all callers. | |
5922 | (Archive::get_file_and_offset): Likewise. | |
5923 | (Archive::read_all_symbols): Likewise. | |
5924 | (Archive::read_symbols): Likewise. | |
5925 | (Archive::get_elf_object_for_member): Remove input_objects | |
5926 | parameter. Add punconfigured parameter. Change all callers. | |
5927 | (Archive::add_symbols): Change return type to bool. Check return | |
5928 | value of include_member. | |
5929 | (Archive::include_all_members): Likewise. | |
5930 | (Archive::include_member): Change return type to bool. Return | |
5931 | false if first included object has incompatible target. Set | |
5932 | included_member_ field. | |
5933 | (Add_archive_symbols::run): If add_symbols returns false, requeue | |
5934 | Read_symbols task. | |
5935 | * archive.h (class Archive): Add included_member_ field. | |
5936 | Initialize it in constructor. Add input_file and searched_for | |
5937 | methods. Update declarations. | |
5938 | (class Add_archive_symbols): Add dirpath_, dirindex_, and | |
5939 | input_argument_ fields. Add them to constructor. Change all | |
5940 | callers. | |
5941 | * script.cc: Include "target-select.h". | |
5942 | (class Parser_closure): Add skip_on_incompatible_target_ and | |
5943 | found_incompatible_target_ fields. Add | |
5944 | skip_on_incompatible_target parameter to constructor. Change all | |
5945 | callers. Add methods skip_on_incompatible_target, | |
5946 | clear_skip_on_incompatible_target, found_incompatible_target, and | |
5947 | set_found_incompatible_target. | |
5948 | (read_input_script): Add dirindex parameter. Change all callers. | |
5949 | If parser finds an incompatible target, requeue Read_symbols | |
5950 | task. | |
5951 | (script_set_symbol): Clear skip_on_incompatible_target in | |
5952 | closure. | |
5953 | (script_add_assertion, script_parse_option): Likewise. | |
5954 | (script_start_sections, script_add_phdr): Likewise. | |
5955 | (script_check_output_format): New function. | |
5956 | * script.h (read_input_script): Update declaration. | |
5957 | * script-c.h (script_check_output_format): Declare. | |
5958 | * yyscript.y (file_cmd): Handle OUTPUT_FORMAT. | |
5959 | (ignore_cmd): Remove OUTPUT_FORMAT. | |
5960 | * fileread.cc (Input_file::Input_file): Add explicit this. | |
5961 | (Input_file::will_search_for): New function. | |
5962 | (Input_file::open): Add pindex parameter. Change all callers. | |
5963 | * fileread.h (class Input_file): Add input_file_argument method. | |
5964 | Declare will_search_for. Update declarations. | |
5965 | * object.cc (make_elf_object): Add punconfigured parameter. | |
5966 | Change all callers. | |
5967 | * object.h (class Object): Make input_file public. Add | |
5968 | searched_for method. | |
5969 | (make_elf_object): Update declaration. | |
5970 | * dirsearch.cc (Dirsearch::find): Add pindex parameter. Use it to | |
5971 | restart search. | |
5972 | * dirsearch.h (class Dirsearch): Update declaration. | |
5973 | * options.h (class General_options): Add --warn-search-mismatch. | |
5974 | * parameters.cc (Parameters::is_compatible_target): New function. | |
5975 | * parameters.h (class Parameters): Declare is_compatible_target. | |
5976 | * workqueue.cc (Workqueue::add_blocker): New function. | |
5977 | * workqueue.h (class Workqueue): Declare add_blocker. | |
5978 | ||
f1ed28fb ILT |
5979 | * fileread.cc (Input_file::open): Remove options parameter. |
5980 | Change all callers. | |
5981 | (Input_file::open_binary): Likewise. | |
5982 | * script.cc (read_input_script): Likewise. | |
5983 | * readsyms.h (class Read_symbols): Remove options_ field. Remove | |
5984 | options parameter from constructor. Change all callers. | |
5985 | (class Read_script): Likewise. | |
5986 | * fileread.h (class Input_file): Update declarations. | |
5987 | * script.h (read_input_script): Update declaration. | |
5988 | ||
34dd024a NC |
5989 | 2009-03-10 Nick Clifton <[email protected]> |
5990 | ||
5991 | * po/es.po: New Spanish translation. | |
5992 | ||
6d71b17c CC |
5993 | 2009-03-06 Cary Coutant <[email protected]> |
5994 | ||
5995 | * options.cc (parse_short_option): Keep dash_z from registering itself. | |
5996 | ||
031cdbed ILT |
5997 | 2009-03-03 Ian Lance Taylor <[email protected]> |
5998 | ||
5999 | PR 9918 | |
6000 | * target-reloc.h (relocate_section): Pass output_section to | |
6001 | relocate. | |
6002 | * i386.cc (Target_i386::should_apply_static_reloc): Add | |
6003 | output_section parameter. Change all callers. | |
6004 | (Target_i386::Relocate::relocate): Add output_section parameter. | |
6005 | * x86_64.cc (Target_x86_64::Relocate::relocate): Likewise. | |
6006 | * sparc.cc (Target_sparc::Relocate::relocate): Likewise. | |
6007 | * powerpc.cc (Target_powerpc::Relocate::relocate): Likewise. | |
6008 | * testsuite/two_file_shared.sh: New script. | |
6009 | * testsuite/Makefile.am (check_SCRIPTS): Add two_file_shared.sh. | |
6010 | (check_DATA): Add two_file_shared.dbg. | |
6011 | (two_file_shared.dbg): New target. | |
6012 | * testsuite/Makefile.in: Rebuild. | |
6013 | ||
15d5fa16 ILT |
6014 | 2009-03-01 Ian Lance Taylor <[email protected]> |
6015 | ||
6016 | * configure.ac: Check for byteswap.h. | |
6017 | * configure: Rebuild. | |
6018 | * config.in: Rebuild. | |
6019 | ||
8a4c0b0d ILT |
6020 | 2009-03-01 Mikolaj Zalewski <[email protected]> |
6021 | ||
6022 | * layout.cc (Layout::find_or_add_kept_section): New function. | |
6023 | (Layout::add_comdat): Removed. | |
6024 | * layout.h (struct Kept_section): Move out of class Layout. | |
6025 | Remove trailing underscores from field names. Add group_sections | |
6026 | field. Rename group_ field to is_group. Change all uses. | |
6027 | (class Layout): Declare find_or_add_kept_section, not add_comdat. | |
6028 | * object.cc (Sized_relobj::Sized_relobj): Don't initialize | |
6029 | comdat_groups_ field. | |
6030 | (Sized_relobj::include_section_group): Use | |
6031 | find_or_add_kept_section and Kept_section::group_sections. | |
6032 | (Sized_relobj::include_linkonce_section): Likewise. | |
6033 | * object.cc (class Sized_relobj): Don't define Comdat_group or | |
6034 | Comdat_group_table. Remove find_comdat_group and | |
6035 | add_comdat_group. Remove comdat_groups_ field. | |
6036 | * plugin.cc (include_comdat_group): Use | |
6037 | Layout::find_or_add_kept_section. | |
6038 | ||
b4ecf66b ILT |
6039 | 2009-02-28 Ian Lance Taylor <[email protected]> |
6040 | ||
14359ca0 ILT |
6041 | * README: --gc-sections and map files are now supported. Document |
6042 | some build requirements. | |
6043 | ||
b4ecf66b ILT |
6044 | PR 6992 |
6045 | * symtab.cc (Symbol_table::sized_write_section_symbol): In a | |
6046 | relocatable link set the value of the section symbol to zero. | |
6047 | * object.cc (Sized_relobj::do_finalize_local_symbols): In a | |
6048 | relocatable link don't include the section address in the local | |
6049 | symbol value. | |
6050 | ||
0602e05a ILT |
6051 | 2009-02-27 Ian Lance Taylor <[email protected]> |
6052 | ||
fd9d194f ILT |
6053 | PR 6811 |
6054 | * options.h (class Search_directory): Add is_system_directory. | |
6055 | (class General_options): Declare is_in_system_directory. | |
6056 | * options.cc (get_relative_sysroot): Make static. | |
6057 | (get_default_sysroot): Make static. | |
6058 | (General_optoins::is_in_system_directory): New function. | |
6059 | * fileread.cc (Input_file::is_in_system_directory): New function. | |
6060 | * fileread.h (class Input_file): Declare is_in_system_directory. | |
6061 | * object.h (class Object): Add is_in_system_directory. | |
6062 | (class Input_objects): Remove system_library_directory_ field. | |
6063 | * object.cc (Input_objects::add_object): Don't set | |
6064 | system_library_directory_. | |
6065 | (input_objects::found_in_system_library_directory): Remove. | |
6066 | * symtab.cc (Symbol_table::write_globals): Remove input_objects | |
6067 | parameter. Change all callers. | |
6068 | (Symbol_table::sized_write_globals): Likewise. | |
6069 | (Symbol_table::warn_about_undefined_dynobj_symbol): Likewise. | |
6070 | Call Object::is_in_system_directory. | |
6071 | * symtab.h (class Symbol_table): Update declarations. | |
6072 | ||
61edd21f ILT |
6073 | PR 5990 |
6074 | * descriptors.h (Open_descriptor): Add is_on_stack field. | |
6075 | * descriptors.cc (Descriptors::open): If the descriptor is on the | |
6076 | top of the stack, remove it. Initialize is_on_stack field. | |
6077 | (Descriptors::release): Only add pod to stack if it is not on the | |
6078 | stack already. | |
6079 | (Descriptors::close_some_descriptor): Clear stack_next and | |
6080 | is_on_stack fields. | |
6081 | ||
e29e076a ILT |
6082 | PR 7091 |
6083 | * output.cc (Output_section::find_starting_output_address): Rename | |
6084 | from starting_output_address; add PADDR parameter; change return | |
6085 | type. | |
6086 | * output.h (class Output_section): Declare | |
6087 | find_starting_output_address instead of starting_output_address. | |
6088 | * object.cc (Sized_relobj::do_finalize_local_symbols): Handle a | |
6089 | section symbol for which we can't find a merge section. | |
6090 | ||
0602e05a ILT |
6091 | PR 9836 |
6092 | * symtab.cc (Symbol_table::add_from_object): If the visibility is | |
6093 | hidden or internal, force the symbol to be local. | |
6094 | * resolve.cc (Symbol::override_visibility): Define. | |
6095 | (Symbol::override_base): Use override_visibility. | |
6096 | (Symbol_table::resolve): Likewise. | |
6097 | (Symbol::override_base_with_special): Likewise. | |
6098 | (Symbol_table::override_with_special): If the visibility is hidden | |
6099 | or internal, force the symbol to be local. | |
6100 | * symtab.h (class Symbol): Add set_visibility and | |
6101 | override_visibility. | |
6102 | * testsuite/ver_test_1.sh: New file. | |
6103 | * testsuite/Makefile.am (check_SCRIPTS): Add ver_test_1.sh. | |
6104 | (check_DATA): Add ver_test_1.syms. | |
6105 | (ver_test_1.syms): New target. | |
6106 | * testsuite/Makefile.in: Rebuild. | |
6107 | ||
401a9a73 CC |
6108 | 2009-02-25 Cary Coutant <[email protected]> |
6109 | ||
6110 | * layout.cc (Layout::choose_output_section): Don't rename sections | |
6111 | when using a linker script that has a SECTIONS clause. | |
6112 | * Makefile.in: Regenerate. | |
6113 | ||
6114 | * testsuite/Makefile.am (script_test_5.sh): New test case. | |
6115 | * testsuite/Makefile.in: Regenerate. | |
6116 | * testsuite/script_test_5.cc: New file. | |
6117 | * testsuite/script_test_5.sh: New file. | |
6118 | * testsuite/script_test_5.t: New file. | |
6119 | ||
f488e4b0 CC |
6120 | 2009-02-13 Rafael Avila de Espindola <[email protected]> |
6121 | ||
6122 | * archive.cc (Archive::include_member): Update calls to add_symbols. | |
6123 | * dynobj.cc (Sized_dynobj<size, big_endian>::make_version_map): Add | |
6124 | the Layout argument. | |
6125 | * dynobj.h (do_add_symbols): Add the Layout argument. | |
6126 | * object.cc (Sized_relobj<size, big_endian>::do_add_symbols): Add the | |
6127 | Layout argument. | |
6128 | * object.h (Object::add_symbols): Add the Layout argument. | |
6129 | (Object::do_add_symbols): Add the Layout argument. | |
6130 | (Sized_relobj::do_add_symbols): Add the Layout argument. | |
6131 | * plugin.cc (Sized_pluginobj<size, big_endian>::do_add_symbols): | |
6132 | Unify the two versions. | |
6133 | (Add_plugin_symbols): Remove. | |
6134 | * plugin.h (Pluginobj::add_symbols, Pluginobj::do_add_symbols): Remove. | |
6135 | (Sized_pluginobj::do_add_symbols): Unify the two versions. | |
6136 | (Add_plugin_symbols): Remove. | |
6137 | * readsyms.cc (Read_symbols::do_read_symbols): Update call to | |
6138 | Add_symbols. Use Add_symbols instead of Add_plugin_symbols. | |
6139 | (Add_symbols::run): Make it work with Pulginobj. | |
6140 | ||
89dd1680 ILT |
6141 | 2009-02-06 Ian Lance Taylor <[email protected]> |
6142 | ||
6143 | * object.cc (Sized_relobj::do_layout): Make info message start | |
6144 | with lower case letter. | |
6145 | ||
266d0a74 ILT |
6146 | 2009-02-06 Mikolaj Zalewski <[email protected]> |
6147 | ||
602b464e ILT |
6148 | * binary.cc: Fix file comment. |
6149 | ||
266d0a74 ILT |
6150 | * options.h (enum Incremental_disposition): Define. |
6151 | (class General_options): Add new options: --incremental, | |
6152 | --incremental_changed, --incremental_unchanged, | |
6153 | --incremental_unknown. Add incremental_disposition_ and | |
6154 | implicit_incremental_ fields. | |
6155 | (General_options::incremental_disposition): New function. | |
6156 | (class Position_dependent_options): Add incremental_disposition | |
6157 | option. | |
6158 | (Position_dependent_options::copy_from_options): Set incremental | |
6159 | dispositions. | |
6160 | * options.cc (General_options::parse_incremental_changed): New | |
6161 | function. | |
6162 | (General_options::parse_incremental_unchanged): New function. | |
6163 | (General_options::parse_incremental_unknown): New function. | |
6164 | (General_options::General_options): Initialize new fields | |
6165 | incremental_disposition_ and implicit_incremental_. | |
6166 | (General_options::finalize): Check for uasge of --incremental-* | |
6167 | without --incremental. | |
6168 | ||
f073bbf7 CD |
6169 | 2009-02-06 Chris Demetriou <[email protected]> |
6170 | ||
6171 | * gold.h (gold_undefined_symbol): Change to take only a Symbol | |
6172 | pointer and to report location as the file name associated with | |
6173 | the symbol. | |
6174 | (gold_undefined_symbol_at_location): New function to replace the | |
6175 | old gold_undefined_symbol functionality. | |
6176 | * target-reloc.h (relocate_section): Update to use | |
6177 | gold_undefined_symbol_at_location. | |
6178 | * symtab.cc (Symbol_table::warn_about_undefined_dynobj_symbol): | |
6179 | Call gold_undefined_symbol function rather than gold_error. | |
6180 | * errors.h (Errors::undefined_symbol): Take location as a | |
6181 | string, rather than calculating it from a relocation. | |
6182 | * errors.cc (Errors::fatal): Print "fatal error:" before the | |
6183 | formatted message. | |
6184 | (Errors::error, Errors::error_at_location): Print "error: " | |
6185 | before the formatted message. | |
6186 | (Errors::undefined_symbol): Take location as a string, rather | |
6187 | than calculating it from a relocation. | |
6188 | (gold_undefined_symbol_at_location): New function akin to | |
6189 | old gold_undefined_symbol, calculates location from relocation. | |
6190 | (gold_undefined_symbol): Change to take only a Symbol pointer | |
6191 | and to report location as the file name associated with the symbol. | |
6192 | * testsuite/debug_msg.sh: Update for changed error messages. | |
6193 | * testsuite/undef_symbol.sh: Likewise. | |
6194 | ||
8e94a90c ILT |
6195 | 2009-02-04 Duncan Sands <[email protected]> |
6196 | ||
6197 | PR 9812 | |
6198 | * reduced_debug_output.h | |
6199 | (Output_reduced_debug_abbrev_section::failed): Use format for | |
6200 | gold_warning. | |
6201 | (Output_reduced_debug_info_section::faild): Likewise. | |
6202 | ||
88a0e15b ILT |
6203 | 2009-01-31 Mikolaj Zalewski <[email protected]> |
6204 | ||
6205 | * script.cc (Lazy_demangler): New class. | |
6206 | (Version_script_info::get_symbol_version_helper): Demangle a | |
6207 | symbol only once. | |
6208 | ||
5efc7cd2 CC |
6209 | 2009-01-29 Cary Coutant <[email protected]> |
6210 | ||
6211 | * i386.cc (Target_i386::Relocate::relocate): Recognize non-PIC calls | |
6212 | to __tls_get_addr. | |
6213 | * x86_64.cc (Target_x86_64::Relocate::relocate): Likewise. | |
6214 | ||
e0ebcf42 ILT |
6215 | 2009-01-28 Ian Lance Taylor <[email protected]> |
6216 | ||
5efc7cd2 | 6217 | * version.cc (version_string): Bump to 1.9. |
75fe7426 | 6218 | |
e0ebcf42 ILT |
6219 | * gold.h: Include <cstring> and <stdint.h>. |
6220 | * version.cc: Include <cstdio>. | |
6221 | * object.cc (Sized_relobj::do_layout): Initialize gc_sd to avoid a | |
6222 | warning. | |
6223 | * reduced_debug_output.cc (insert_into_vector): Rename from | |
6224 | Insert_into_vector; change all callers. Use Swap_unaligned to | |
6225 | avoid aliasing issue; remove union since it is unnecessary. | |
6226 | ||
8e2813be | 6227 | 2009-01-27 Sriraman Tallam <[email protected]> |
6d03d481 ST |
6228 | |
6229 | * Makefile.am (CCFILES): Add gc.cc. | |
6230 | (HFILES): Add gc.h. | |
6231 | * Makefile.in: Regenerate. | |
6232 | * gold.cc (Gc_runner): New class. | |
6233 | (queue_initial_tasks): Call garbage collection related tasks | |
6234 | when corresponding options are invoked. | |
6235 | (queue_middle_gc_tasks): New function. | |
6236 | (queue_middle_tasks): Reorder tasks to allow relocs to be read and | |
6237 | processed early before laying out sections during garbage collection. | |
6238 | * gold.h (queue_middle_gc_tasks): New function. | |
6239 | (is_prefix_of): Move from "layout.cc". | |
6240 | * i386.cc (Target_i386::gc_process_relocs): New function. | |
6241 | * layout.cc (is_prefix_of): Remove. Move to "gold.h" | |
6242 | * main.cc (main): Create object of class "Garbage_collection". | |
6243 | * object.cc (Relobj::copy_symbols_data): New function. | |
6244 | (Relobj::is_section_name_included): New function. | |
e1df38aa NC |
6245 | (Sized_relobj::do_layout): Allow this function to be called twice |
6246 | during garbage collection and defer layout of section during the | |
6d03d481 ST |
6247 | first call. |
6248 | * object.h (Relobj::get_symbols_data): New function. | |
6249 | (Relobj::is_section_name_included): New function. | |
6250 | (Relobj::copy_symbols_data): New function. | |
6251 | (Relobj::set_symbols_data): New function. | |
6252 | (Relobj::get_relocs_data): New function. | |
6253 | (Relobj::set_relocs_data): New function. | |
6254 | (Relobj::is_output_section_offset_invalid): New pure virtual function. | |
6255 | (Relobj::gc_process_relocs): New function. | |
6256 | (Relobj::do_gc_process_relocs): New pure virtual function. | |
6257 | (Relobj::sd_): New data member. | |
6258 | (Sized_relobj::is_output_section_offset_invalid): New function. | |
6259 | (Sized_relobj::do_gc_process_relocs): New function. | |
6260 | * options.h (General_options::gc_sections): Modify to not be a no-op. | |
6261 | (General_options::print_gc_sections): New option. | |
6262 | * plugin.cc (Plugin_finish::run): Remove function call to | |
6263 | Plugin_manager::layout_deferred_objects. Move it to "gold.cc". | |
6264 | * powerpc.cc (Target_powerpc::gc_process_relocs): New function. | |
6265 | * reloc.cc (Read_relocs::run): Add task to process relocs and | |
6266 | determine unreferenced sections when doing garbage collection. | |
6267 | (Gc_process_relocs): New class. | |
6268 | (Sized_relobj::do_gc_process_relocs): New function. | |
6269 | (Sized_relobj::do_scan_relocs): Don't try to scan the relocs for | |
6270 | sections that are garbage collected. | |
6271 | * reloc.h (Gc_process_relocs): New class. | |
6272 | * sparc.cc (Target_sparc::gc_process_relocs): New function. | |
6273 | * symtab.cc (Symbol::should_add_dynsym_entry): Do not add entries for | |
6274 | symbols whose corresponding sections are garbage collected. | |
6275 | (Symbol_table::Symbol_table): Add new parameter for the garbage | |
6276 | collection object. | |
6277 | (Symbol_table::gc_mark_undef_symbols): New function. | |
6278 | (Symbol_table::gc_mark_symbol_for_shlib): New function. | |
6279 | (Symbol_table::gc_mark_dyn_syms): New function. | |
6280 | (Symbol_table::resolve): Do not treat symbols seen in dynamic objects | |
6281 | as garbage. | |
6282 | (Symbol_table::add_from_object): Likewise. | |
6283 | (Symbol_table::add_from_relobj): When building shared objects, do not | |
6284 | treat externally visible symbols as garbage. | |
6285 | (Symbol_table::sized_finalize_symbol): Do not check dynamic symbol | |
6286 | table information for static and relocatable links. | |
6287 | * symtab.h (Symbol_table::set_gc): New function. | |
6288 | (Symbol_table::gc): New function. | |
6289 | (Symbol_table::gc_mark_undef_symbols): New function. | |
6290 | (Symbol_table::gc_mark_symbol_for_shlib): New function. | |
6291 | (Symbol_table::gc_mark_dyn_syms): New function. | |
6292 | (Symbol_table::gc_): New data member. | |
e1df38aa | 6293 | * target.h (Sized_target::gc_process_relocs): New pure virtual |
6d03d481 ST |
6294 | function. |
6295 | * x86_64.cc (Target_x86_64::gc_process_relocs): New function. | |
6296 | * testsuite/testfile.cc (Target_test::gc_process_relocs): New function. | |
6297 | ||
3b293544 CF |
6298 | 2009-01-20 Chris Faylor <[email protected]> |
6299 | ||
6300 | * options.h (General_options::gc_sections): Define as a no-op for now. | |
6301 | (General_options::no_keep_memory): Ditto. | |
6302 | (General_options::Bshareable): Define. | |
6303 | * options.cc (General_options::finalize): Honor -Bshareable. | |
6304 | ||
83d22aa8 AS |
6305 | 2009-01-20 Andreas Schwab <[email protected]> |
6306 | ||
6307 | * powerpc.cc (Powerpc_relocate_functions::rel16_ha): Don't try to | |
6308 | read the value in the contents, since we don't use it. Use the | |
6309 | template endianness when writing. | |
6310 | (Relocate::relocate): Use it for R_PPC_REL16_HA. | |
6311 | ||
cd536b21 AS |
6312 | 2009-01-19 Andreas Schwab <[email protected]> |
6313 | ||
6314 | * configure.tgt (powerpc64-*): Fix targ_obj. | |
6315 | ||
99e9a495 ILT |
6316 | 2009-01-15 Ian Lance Taylor <[email protected]> |
6317 | ||
6318 | * object.cc (Sized_relobj::write_local_symbols): Don't write out | |
6319 | local symbols when stripping all symbols. | |
6320 | ||
bbbfea06 CC |
6321 | 2009-01-14 Cary Coutant <[email protected]> |
6322 | ||
99e9a495 | 6323 | * output.cc (Output_reloc): Add explicit instantiations. |
bbbfea06 | 6324 | |
0f7c0701 CC |
6325 | 2009-01-14 Cary Coutant <[email protected]> |
6326 | ||
6327 | * archive.cc (Archive::get_elf_object_for_member): Remove call | |
6328 | to File_read::claim_for_plugin. | |
6329 | * descriptors.cc (Descriptors::open): Remove reference to | |
6330 | is_claimed. | |
6331 | (Descriptors::claim_for_plugin): Remove. | |
6332 | * descriptors.h (Descriptors::claim_for_plugin): Remove. | |
6333 | (Descriptors::is_claimed): Remove. | |
6334 | (claim_descriptor_for_plugin): Remove. | |
6335 | * fileread.cc (File_read::claim_for_plugin): Remove. | |
6336 | * fileread.h (File_read::claim_for_plugin): Remove. | |
6337 | (File_read::descriptor): Reopen descriptor if necessary. | |
6338 | * plugin.cc (Plugin::load): Add two new APIs to transfer vector. | |
6339 | (Plugin_manager::all_symbols_read): Add task parameter. Change | |
6340 | all callers. | |
6341 | (Plugin_manager::get_input_file): New function. | |
6342 | (Plugin_manager::release_input_file): New function. | |
6343 | (Pluginobj::Pluginobj): Add filesize parameter and initialize | |
6344 | corresponding data member. | |
6345 | (Sized_pluginobj::Sized_pluginobj): Add filesize parameter | |
6346 | and pass to base constructor. Change all callers. | |
6347 | (get_input_file, release_input_file): New functions. | |
6348 | (make_sized_plugin_object): Add filesize parameter. Change all callers. | |
6349 | * plugin.h (Plugin_manager::Plugin_manager): Initialize task_ member. | |
6350 | (Plugin_manager::all_symbols_read): Add task parameter. | |
6351 | (Plugin_manager::get_input_file): New function. | |
6352 | (Plugin_manager::release_input_file): New function. | |
6353 | (Plugin_manager::task_): New data member. | |
6354 | (Pluginobj::Pluginobj): Add filesize parameter. | |
6355 | (Pluginobj::filename): New function. | |
6356 | (Pluginobj::descriptor): New function. | |
6357 | (Pluginobj::filesize): New function. | |
6358 | (Pluginobj::filesize_): New data member. | |
6359 | (Sized_pluginobj::Sized_pluginobj): Add filesize parameter. | |
6360 | * readsyms.cc (Read_symbols::do_read_symbols): Remove call to | |
6361 | File_read::claim_for_plugin; use Object::unlock to unlock the file. | |
6362 | ||
6363 | * testsuite/Makefile.am (plugin_test_4): New test case for plugins | |
6364 | with archive libraries. | |
6365 | * testsuite/Makefile.in: Regenerate. | |
6366 | * testsuite/plugin_test.c (struct sym_info): New type. | |
6367 | (get_input_file, release_input_file): New static variables. | |
6368 | (onload): Capture new transfer vector entries. | |
6369 | (claim_file_hook): Stop reading at end of file according to filesize. | |
6370 | Factor out parsing of readelf output into separate function. | |
6371 | (all_symbols_read_hook): Exercise get_input_file and release_input_file | |
6372 | APIs and get the source file name from the symbol table. Convert | |
6373 | source file name to corresponding object file name. Print info | |
6374 | message when adding new input files. | |
6375 | (parse_readelf_line): New function. | |
6376 | * testsuite/plugin_test_1.sh: Add checks for new info messages. | |
6377 | * testsuite/plugin_test_2.sh: Likewise. | |
6378 | * testsuite/plugin_test_3.sh: Likewise. | |
6379 | * testsuite/plugin_test_4.sh: New test case. | |
6380 | ||
62a6d109 ILT |
6381 | 2009-01-07 Ian Lance Taylor <[email protected]> |
6382 | ||
6383 | * version.cc (version_string): Bump to 1.8. | |
6384 | ||
483620e8 CC |
6385 | 2008-12-23 Cary Coutant <[email protected]> |
6386 | ||
6387 | * gold.cc (gold_exit): Call plugin cleanup handlers on exit. | |
6388 | * plugin.cc (Plugin_manager::finish): Rename as | |
6389 | layout_deferred_objects. Move cleanup to separate function. | |
6390 | (Plugin_manager::cleanup): New function. | |
6391 | (Plugin_finish::run): Call layout_deferred_objects and cleanup | |
6392 | separately. | |
6393 | * plugin.h (Plugin_manager::finish): Rename as | |
6394 | layout_deferred_objects. | |
6395 | (Plugin_manager::cleanup): New function. | |
6396 | (Plugin_manager::cleanup_done): New field. | |
6397 | ||
d66a9eb3 CC |
6398 | 2008-12-23 Cary Coutant <[email protected]> |
6399 | ||
6400 | * plugin.cc (is_visible_from_outside): New function. | |
6401 | (Pluginobj::get_symbol_resolution_info): Call is_visible_from_outside | |
6402 | so we don't return "IR only" status for exported symbols or -r links. | |
6403 | ||
6404 | * testsuite/Makefile.am (plugin_test_3): New test case. | |
6405 | * testsuite/Makefile.in: Regenerate. | |
6406 | * testsuite/plugin_test_3.sh: New file. | |
6407 | ||
5995b570 CC |
6408 | 2008-12-22 Cary Coutant <[email protected]> |
6409 | ||
6410 | * object.cc (Sized_relobj::layout_section): New function. | |
6411 | (Sized_relobj::do_layout): Defer layout of input sections until after | |
6412 | plugin has provided replacement files. | |
6413 | (Sized_relobj::do_layout_deferred_sections): New function. | |
6414 | * object.h (Relobj::set_section_offset): Remove virtual keyword. | |
6415 | (Relobj::layout_deferred_sections): New function. | |
6416 | (Relobj::do_layout_deferred_sections): New function. | |
6417 | (Sized_relobj::do_layout_deferred_sections): New function. | |
6418 | (Sized_relobj::layout_section): New function. | |
6419 | (Sized_relobj::Deferred_layout): New structure. | |
6420 | (Sized_relobj::deferred_layout_): New field. | |
6421 | * plugin.cc (Plugin_manager::finish): Renamed, was cleanup. | |
6422 | Change all callers. Layout deferred sections. | |
6423 | (class Plugin_finish): Renamed, was Plugin_cleanup. Change all | |
6424 | references. | |
6425 | (Plugin_hook::run): Move code from do_plugin_hook inline. | |
6426 | (Plugin_hook::do_plugin_hook): Remove. | |
6427 | * plugin.h (Plugin_manager::Plugin_manager): Add missing initializers. | |
6428 | (Plugin_manager::finish): Renamed, was cleanup. | |
6429 | (Plugin_manager::should_defer_layout): New function. | |
6430 | (Plugin_manager::add_deferred_layout_object): New function. | |
6431 | (Plugin_manager::Deferred_layout_list): New type. | |
6432 | (Plugin_manager::deferred_layout_objects_): New field. | |
6433 | (Plugin_hook::do_plugin_hook): Remove. | |
6434 | ||
ee769c88 ILT |
6435 | 2008-12-17 Ian Lance Taylor <[email protected]> |
6436 | ||
6437 | * options.h (class General_options): Add --no case for | |
6438 | --export-dynamic. | |
6439 | ||
abc8dcba CC |
6440 | 2008-12-16 Cary Coutant <[email protected]> |
6441 | ||
6442 | * plugin.cc (Plugin::load): Move LDPT_MESSAGE to front of transfer | |
6443 | vector. | |
6444 | (Plugin_manager::claim_file): Create plugin object even if | |
6445 | plugin did not call the add_symbols callback. | |
6446 | (Plugin_obj::get_symbol_resolution_info): Guard against plugin | |
6447 | asking for more symbols than were added. | |
6448 | * testsuite/Makefile.am (plugin_test_1): Add test case with | |
6449 | no global symbols. | |
6450 | (empty.syms): New target. | |
6451 | * testsuite/Makefile.in: Regenerate. | |
6452 | * testsuite/plugin_test.c (claim_file_hook): Add new debug | |
6453 | message. Don't call add_symbols if no globals. | |
6454 | (all_symbols_read_hook): Don't provide replacement for empty | |
6455 | claimed file. | |
6456 | ||
b0074644 ILT |
6457 | 2008-12-12 Ian Lance Taylor <[email protected]> |
6458 | ||
68943102 ILT |
6459 | * target-reloc.h (Default_scan_relocatable_relocs): Only discard |
6460 | r_type == 0 for a local symbol with r_sym == 0. | |
6461 | (scan_relocatable_relocs): Pass r_sym to | |
6462 | local_non_section_strategy. | |
6463 | * reloc.cc (Emit_relocs_strategy::local_non_section_strategy): Add | |
6464 | r_sym parameter. | |
6465 | ||
b0074644 ILT |
6466 | * configure.ac: Update test for TLS descriptors: they are |
6467 | supported as of glibc 2.9. | |
6468 | * configure: Rebuild. | |
6469 | ||
c2508178 ILT |
6470 | 2008-12-11 Ian Lance Taylor <[email protected]> |
6471 | ||
6472 | PR 7091 | |
6473 | * target-reloc.h (Default_scan_relocatable_relocs): For each | |
6474 | function, map r_type == 0 to RELOC_DISCARD. | |
6475 | ||
2756a258 CC |
6476 | 2008-12-10 Cary Coutant <[email protected]> |
6477 | ||
6478 | * layout.cc (Layout::add_comdat): Allow COMDAT group from a replacement | |
6479 | object to override a kept COMDAT group from a plugin object. | |
6480 | ||
bb6f53d3 ILT |
6481 | 2008-12-09 Ian Lance Taylor <[email protected]> |
6482 | ||
fbc558e1 ILT |
6483 | PR 7088 |
6484 | * yyscript.y (file_cmd): Handle INPUT. | |
6485 | ||
bb6f53d3 ILT |
6486 | * testsuite/initpri1.c: Change all declarations to be full |
6487 | prototypes by adding void, to avoid compiler warnings. | |
6488 | ||
4674ecfc CC |
6489 | 2008-12-05 Rafael Avila de Espindola <[email protected]> |
6490 | ||
6491 | * options.cc (General_options::parse_plugin_opt): New. | |
6492 | (General_options::add_plugin): The argument now is just the filename. | |
6493 | (General_options::add_plugin_option): New. | |
6494 | * options.h (plugin_opt): New. | |
6495 | (add_plugin): Change argument name. | |
6496 | (add_plugin_option): New. | |
6497 | * plugin.cc (Plugin::load): Don't parse the plugin option. | |
6498 | * plugin.h (Plugin::Plugin): Rename argument. Init filename_. | |
6499 | (Plugin::add_option): New. | |
6500 | (Plugin::args_): Change type. | |
6501 | (Plugin::filename_): New. | |
6502 | (Plugin_manager::add_plugin_option): New. | |
6503 | * testsuite/Makefile.am (plugin_test_1): Use new syntax. | |
6504 | * testsuite/Makefile.in: Regenerate. | |
6505 | ||
fd06b4aa CC |
6506 | 2008-12-05 Cary Coutant <[email protected]> |
6507 | ||
6508 | * layout.cc (Layout::include_section): Check for SHF_EXCLUDE. | |
6509 | Handle --strip-lto-sections option. | |
6510 | * options.h (strip_lto_sections): New option. | |
6511 | ||
6c52134c CC |
6512 | 2008-12-01 Cary Coutant <[email protected]> |
6513 | ||
6514 | * plugin.cc (ld_plugin_message): Change format parameter to const. | |
6515 | Fix mismatch between new[] and delete. | |
6516 | ||
a45248e0 CC |
6517 | 2008-11-14 Cary Coutant <[email protected]> |
6518 | ||
6519 | * reloc.cc (Sized_relobj::do_read_relocs): Use constant invalid_address | |
6520 | instead of -1U. | |
6521 | ||
c82fbeee CS |
6522 | 2008-11-05 Craig Silverstein <[email protected]> |
6523 | ||
6524 | * options.cc (General_options::parse_dynamic_list): New function. | |
6525 | * options.h (General_options): New flags dynamic_list, | |
6526 | dynamic_list_data, dynamic_list_cpp_new, and | |
6527 | dynamic_list_cpp_typeinfo. New variable dynamic_list_. | |
6528 | (General_options::in_dynamic_list): New function. | |
6529 | * script.cc (Lex::Mode): New enum DYNAMIC_LIST. | |
6530 | (Lex::can_start_name): Add support for DYNAMIC_LIST mode. | |
6531 | (Lex::can_continue_name): Likewise. | |
6532 | (yylex): Likewise. | |
6533 | (read_script_file): New parameter script_options. | |
6534 | (read_dynamic_list): New function. | |
6535 | (Script_options::define_dynamic_list): New function. | |
6536 | (dynamic_list_keyword_parsecodes): New variable. | |
6537 | (dynamic_list_keywords): New variable. | |
6538 | * script.h (Script_options::define_dynamic_list): New function | |
6539 | prototype. | |
6540 | (read_dynamic_list): New function prototype. | |
6541 | * symtab.cc (strprefix): New macro. | |
6542 | (Symbol::should_add_dynsym_entry): Support dynamic_list, | |
6543 | dynamic_list_data, dynamic_list_cpp_new, and | |
6544 | dynamic_list_cpp_typeinfo. | |
6545 | * yyscript.y (PARSING_DYNAMIC_LIST): New token. | |
6546 | (dynamic_list_expr): New rule. | |
6547 | (dynamic_list_nodes): Likewise. | |
6548 | (dynamic_list_node): Likewise. | |
6549 | * testsuite/Makefile.am (dynamic_list): New test. | |
6550 | * testsuite/Makefile.in: Regenerated. | |
6551 | * testsuite/dynamic_list.t: New file. | |
6552 | * testsuite/dynamic_list.sh: New file. | |
6553 | ||
e0bb29a5 CS |
6554 | 2008-11-05 Craig Silverstein <[email protected]> |
6555 | ||
6556 | * testsuite/tls_test_c.c: Add prototype for t11 and t11_last. | |
6557 | * testsuite/tls_test_c.c (t11): Add explicit "void" to prototype. | |
6558 | (t11_last): Likewise. | |
6559 | * testsuite/ver_test_6.c (main): Likewise. | |
6560 | ||
4e1e25e0 CC |
6561 | 2008-10-07 Cary Coutant <[email protected]> |
6562 | ||
6563 | * options.c (General_options::finalize): Add check for -static and | |
6564 | -shared. | |
6565 | * gold.cc (queue_middle_tasks): Assert that list of dynamic objects | |
6566 | is not empty. | |
6567 | ||
92f03fcb CC |
6568 | 2008-10-02 Cary Coutant <[email protected]> |
6569 | ||
6570 | * plugin.cc (make_sized_plugin_object): Fix conditional | |
6571 | compilation to work when not all targets are enabled. | |
6572 | ||
fbd8a257 CC |
6573 | 2008-09-29 Cary Coutant <[email protected]> |
6574 | ||
6575 | * archive.cc (Archive::get_file_and_offset): Use filename instead | |
6576 | of name to get library path. | |
6577 | (Archive::include_member): Unlock external member of a thin archive. | |
6578 | ||
6579 | * testsuite/Makefile.am (TEST_AR): New variable. | |
6580 | (thin_archive_test_1): New test. | |
6581 | (thin_archive_test_2): New test. | |
81636b3f CC |
6582 | * testsuite/Makefile.in: Regenerate. |
6583 | * testsuite/thin_archive_main.cc: New file. | |
6584 | * testsuite/thin_archive_test_1.cc: New file. | |
6585 | * testsuite/thin_archive_test_2.cc: New file. | |
6586 | * testsuite/thin_archive_test_3.cc: New file. | |
6587 | * testsuite/thin_archive_test_4.cc: New file. | |
fbd8a257 | 6588 | |
eff45813 CC |
6589 | 2008-09-29 Cary Coutant <[email protected]> |
6590 | ||
6591 | * mapfile.cc (Mapfile::print_input_section): Change -1U to -1ULL. | |
6592 | * object.cc (Sized_relobj::do_layout): Use constant invalid_address | |
6593 | instead of -1U. | |
6594 | (Sized_relobj::do_finalize_local_symbols): Likewise. | |
6595 | (Sized_relobj::map_to_kept_section): Likewise. | |
6596 | * object.h (Sized_relobj::invalid_address): New constant. | |
6597 | (Sized_relobj::do_output_section_offset): Check for invalid_address | |
6598 | and return -1ULL. | |
6599 | * output.cc (Output_reloc::local_section_offset): Use constant | |
6600 | invalid_address instead of -1U. | |
6601 | (Output_reloc::get_address): Likewise. | |
6602 | (Output_section::output_address): Change -1U to -1ULL. | |
6603 | * output.h (Output_reloc::invalid_address): New constant. | |
6604 | * reloc.cc (Sized_relobj::write_sections): Use constant | |
6605 | invalid_address instead of -1U. | |
6606 | (Sized_relobj::relocate_sections): Likewise. | |
6607 | * symtab.cc (Symbol_table::sized_finalize_symbol): Handle symbol | |
6608 | values for merge sections. | |
6609 | * target-reloc.h (relocate_for_relocatable): Use constant | |
6610 | invalid_address instead of -1U. | |
6611 | ||
89fc3421 CC |
6612 | 2008-09-19 Cary Coutant <[email protected]> |
6613 | ||
6614 | Add plugin functionality for link-time optimization (LTO). | |
6615 | * configure.ac (plugins): Add --enable-plugins option. | |
6616 | * configure: Regenerate. | |
6617 | * config.in: Regenerate. | |
6618 | * Makefile.am (LIBDL): New variable. | |
6619 | (CCFILES): Add plugin.cc. | |
6620 | (HFILES): Add plugin.h. | |
6621 | (ldadd_var): Add LIBDL. | |
6622 | * Makefile.in: Regenerate. | |
6623 | ||
6624 | * archive.cc: Include "plugin.h". | |
6625 | (Archive::setup): Don't preread archive symbols when using a plugin. | |
6626 | (Archive::get_file_and_offset): Add memsize parameter. Change callers. | |
6627 | (Archive::get_elf_object_for_member): Call plugin hooks for claiming | |
6628 | files. | |
6629 | (Archive::include_member): Add symbols from plugin objects. | |
6630 | * archive.h (Archive::get_file_and_offset): Add memsize parameter. | |
6631 | * descriptors.cc (Descriptors::open): Check for file descriptors | |
6632 | abandoned by plugins. | |
6633 | (Descriptors::claim_for_plugin): New function. | |
6634 | * descriptors.h (Descriptors::claim_for_plugin): New function. | |
6635 | (Open_descriptor::is_claimed): New field. | |
6636 | (claim_descriptor_for_plugin): New function. | |
6637 | * fileread.cc (File_read::claim_for_plugin): New function. | |
6638 | * fileread.h (File_read::claim_for_plugin): New function. | |
6639 | (File_read::descriptor): New function. | |
6640 | * gold.cc: Include "plugin.h". | |
6641 | (queue_initial_tasks): Add task to call plugin hooks for generating | |
6642 | new object files. | |
6643 | * main.cc: Include "plugin.h". | |
6644 | (main): Load plugin libraries. | |
6645 | * object.h (Pluginobj): Declare. | |
6646 | (Object::pluginobj): New function. | |
6647 | (Object::do_pluginobj): New function. | |
6648 | (Object::set_target): New function. | |
6649 | * options.cc: Include "plugin.h". | |
6650 | (General_options::parse_plugin): New function. | |
6651 | (General_options::General_options): Initialize plugins_ field. | |
6652 | (General_options::add_plugin): New function. | |
6653 | * options.h (Plugin_manager): Declare. | |
6654 | (General_options): Add --plugin option. | |
6655 | (General_options::has_plugins): New function. | |
6656 | (General_options::plugins): New function. | |
6657 | (General_options::add_plugin): New function. | |
6658 | (General_options::plugins_): New field. | |
6659 | * plugin.cc: New file. | |
6660 | * plugin.h: New file. | |
6661 | * readsyms.cc: Include "plugin.h". | |
6662 | (Read_symbols::do_read_symbols): Check for archive before checking | |
6663 | for ELF file. Call plugin hooks to claim files. | |
6664 | * resolve.cc (Symbol_table::resolve): Record when symbol is referenced | |
6665 | from a real object file; force override when processing replacement | |
6666 | files. | |
6667 | * symtab.cc (Symbol::init_fields): Initialize in_real_elf_ field. | |
6668 | (Symbol::init_base_object): Likewise. | |
6669 | (Symbol::init_base_output_data): Likewise. | |
6670 | (Symbol::init_base_output_segment): Likewise. | |
6671 | (Symbol::init_base_constant): Likewise. | |
6672 | (Symbol::init_base_undefined): Likewise. | |
6673 | (Symbol::output_section): Assert that object is not a plugin. | |
6674 | (Symbol_table::add_from_pluginobj): New function. | |
6675 | (Symbol_table::sized_finalize_symbol): Treat symbols from plugins as | |
6676 | undefined. | |
6677 | (Symbol_table::sized_write_globals): Likewise. | |
6678 | (Symbol_table::add_from_pluginobj): Instantiate template. | |
6679 | * symtab.h (Sized_pluginobj): Declare. | |
6680 | (Symbol::in_real_elf): New function. | |
6681 | (Symbol::set_in_real_elf): New function. | |
6682 | (Symbol::in_real_elf_): New field. | |
6683 | (Symbol_table::add_from_pluginobj): New function. | |
6684 | ||
6685 | * testsuite/Makefile.am (AM_CFLAGS): New variable. | |
6686 | (LIBDL): New variable. | |
6687 | (LDADD): Add LIBDL. | |
6688 | (check_PROGRAMS): Add plugin_test_1 and plugin_test_2. | |
6689 | (check_SCRIPTS): Add plugin_test_1.sh and plugin_test_2.sh. | |
6690 | (check_DATA): Add plugin_test_1.err and plugin_test_2.err. | |
6691 | (MOSTLYCLEANFILES): Likewise. | |
6692 | * testsuite/Makefile.in: Regenerate. | |
6693 | * testsuite/plugin_test.c: New file. | |
6694 | * testsuite/plugin_test_1.sh: New file. | |
6695 | * testsuite/plugin_test_2.sh: New file. | |
6696 | ||
de31bda5 ILT |
6697 | 2008-09-16 Ian Lance Taylor <[email protected]> |
6698 | ||
9c2d0ef9 ILT |
6699 | * target-reloc.h (relocate_section): Check whether a symbol is |
6700 | defined by the ABI before reporting an undefined symbol error. | |
6701 | * target.h (Target::is_defined_by_abi): Make parameter const. | |
6702 | (Target::do_is_defined_by_abi): Likewise. | |
6703 | * i386.cc (Target_i386::do_is_defined_by_abi): Likewise. | |
6704 | * powerpc.cc (Target_powerpc::do_is_defined_by_abi): Likewise. | |
6705 | * sparc.cc (Target_sparc::do_is_defined_by_abi): Likewise. | |
6706 | * x86_64.cc (Target_x86_64::do_is_defined_by_abi): Likewise. | |
6707 | * testsuite/Makefile.am (tls_test_shared.so): Add -Wl,-z,defs. | |
6708 | * testsuite/Makefile.in: Rebuild. | |
6709 | ||
de31bda5 ILT |
6710 | * fileread.cc (make_view): Add casts to avoid warning. |
6711 | ||
9fa33bee AO |
6712 | 2008-09-16 Alexandre Oliva <[email protected]> |
6713 | ||
6714 | * i386.cc (Target_i386::define_tls_base_symbol): Update comments. | |
6715 | * x86_64.cc (Target_x86_64::define_tls_base_symbol): Likewise. | |
6716 | ||
183fd0e3 AO |
6717 | 2008-09-16 Alexandre Oliva <[email protected]> |
6718 | ||
6719 | * options.h (General_options::output_is_executable): New. | |
6720 | (General_options::output_is_pie): New. | |
6721 | * i386.cc (Target_i386::define_tls_base_symbol): Use SEGMENT_START | |
6722 | for shared libraries. | |
6723 | * x86_64.cc (Target_x86_64::define_tls_base_symbol): Likewise. | |
6724 | ||
7be8330a CD |
6725 | 2008-09-11 Chris Demetriou <[email protected]> |
6726 | ||
6727 | * options.h (origin): New -z option. | |
6728 | * layout.cc (Layout:finish_dynamic_section): If "-z origin" | |
6729 | is specified, set DF_ORIGIN in DT_FLAGS and set DF_1_ORIGIN | |
6730 | in DT_FLAGS_1. | |
6731 | ||
a9caad02 CC |
6732 | 2008-09-05 Cary Coutant <[email protected]> |
6733 | ||
6734 | * fileread.cc (File_read::make_view): Add check for attempt to map | |
6735 | beyond end of file. | |
6736 | ||
ae6dce4d CC |
6737 | 2008-09-05 Cary Coutant <[email protected]> |
6738 | ||
6739 | * symtab.cc (Symbol_table::add_from_dynobj): Fix typos in | |
6740 | explicit instantiations. | |
6741 | ||
d7ab2a47 KVH |
6742 | 2008-08-28 Kris Van Hees <[email protected]> |
6743 | ||
6744 | PR gold/6858 | |
6745 | * options.cc (General_options::finalize): Allow undefined symbols | |
6746 | in shlibs if linking -shared. | |
6747 | ||
6748 | PR gold/6859 | |
6749 | * symtab.cc (Symbol::init_base_undefined): Mark explicitly undefined | |
6750 | symbols as not needing a dynsym entry. | |
6751 | ||
1e52a9c1 CS |
6752 | 2008-08-20 Craig Silverstein <[email protected]> |
6753 | ||
6754 | * fileread.cc (File_read::open): Do not lock the file unless it | |
6755 | was successfully opened. | |
6756 | ||
d85c80a3 CC |
6757 | 2008-08-14 Cary Coutant <[email protected]> |
6758 | ||
6759 | * x86_64.cc (Target_x86_64::Relocate::relocat_tls): | |
6760 | Use addend for DTPOFF32, DTPOFF64, and TPOFF32 relocs. | |
6761 | * testsuite/tls_test.cc (struct int128): 128-bit struct | |
6762 | for testing TLS relocs with non-zero addend. | |
6763 | (v12): New TLS variable. | |
6764 | (t12): New test. | |
6765 | (t_last): Add check for v12. | |
6766 | * testsuite/tls_test.h (t12): New function. | |
6767 | * testsuite/tls_test_main.cc (thread_routine): Call new test. | |
6768 | ||
2d924fd9 ILT |
6769 | 2008-08-13 Ian Lance Taylor <[email protected]> |
6770 | ||
6771 | * layout.cc (Layout::attach_allocated_section_to_segment): Don't | |
6772 | set tls_segment_ or relro_segment_. | |
6773 | (Layout::make_output_segment): Set tls_segment_ and relro_segment_ | |
6774 | when appropriate. | |
6775 | * output.h (Output_section::clear_is_relro): New function. | |
6776 | * output.cc (Output_segment::add_output_section): Handle SHF_TLS | |
6777 | sections specially even when output_data_ is empty. | |
6778 | (Output_segment::maximum_alignment): When first section is relro, | |
6779 | only force alignment for PT_LOAD segments. | |
6780 | * script.cc (script_data_segment_align): New function. | |
6781 | (script_data_segment_relro_end): New function. | |
6782 | * script-c.h (script_data_segment_align): Declare. | |
6783 | (script_data_segment_relro_end): Declare. | |
6784 | * script-sections.h (class Script_sections): Declare | |
6785 | data_segment_align and data_segment_relro_end. Add fields | |
6786 | segment_align_index_ and saw_relro_end_. | |
6787 | * script-sections.cc (class Sections_element): Add set_is_relro | |
6788 | virtual function. Add new bool* parameter to place_orphan_here. | |
6789 | Add get_output_section virtual function. | |
6790 | (class Output_section_definition): Add set_is_relro. Add new | |
6791 | bool* parameter to place_orphan_here. Add get_output_section. | |
6792 | Add is_relro_ field. | |
6793 | (Output_section_definition::Output_section_definition): Initialize | |
6794 | evaluated_address_, evaluated_load_address, evaluated_addralign_, | |
6795 | and is_relro_ fields. | |
6796 | (Output_section_definition::place_orphan_here): Add is_relro | |
6797 | parameter. | |
6798 | (Output_section_definition::set_section_addresses): Set relro for | |
6799 | output section. | |
6800 | (Output_section_definition::alternate_constraint): Likewise. | |
6801 | (class Orphan_output_section): Add new bool* parameter to | |
6802 | place_orphan_here. Add get_output_section. | |
6803 | (Orphan_output_section::place_orphan_here): Add is_relro | |
6804 | parameter. | |
6805 | (Script_sections::Script_sections): Initialize | |
6806 | data_segment_align_index_ and saw_relro_end_. | |
6807 | (Script_sections::data_segment_align): New function. | |
6808 | (Script_sections::data_segment_relro_end): New function. | |
6809 | (Script_sections::place_orphan): Set or clear is_relro. | |
6810 | (Script_sections::set_section_addresses): Force alignment of first | |
6811 | TLS section. | |
6812 | * yyscript.y (exp): Call script_data_segment_align and | |
6813 | script_data_segment_relro_end. | |
6814 | * testsuite/relro_script_test.t: New file. | |
6815 | * testsuite/relro_test.cc (using_script): Declare. | |
6816 | (t1, t2): Test using_script. | |
6817 | * testsuite/Makefile.am (check_PROGRAMS): Add relro_script_test. | |
6818 | (relro_script_test_SOURCES): Define. | |
6819 | (relro_script_test_DEPENDENCIES): Define. | |
6820 | (relro_script_test_LDFLAGS): Define. | |
6821 | (relro_script_test_LDADD): Define. | |
6822 | (relro_script_test.so): New target. | |
6823 | * testsuite/Makefile.in: Rebuild. | |
6824 | ||
f827c9a9 CC |
6825 | 2008-08-06 Cary Coutant <[email protected]> |
6826 | ||
6827 | * archive.cc (Archive::total_archives, Archive::total_members) | |
6828 | (Archive::total_members_loaded): New variables. | |
6829 | (Archive::setup): Add parameter. Add option to preread | |
6830 | archive symbols. | |
6831 | (Archive::read_armap): Add counter. | |
6832 | (Archive::get_file_and_offset): New function. | |
6833 | (Archive::get_elf_object_for_member): New function. | |
6834 | (Archive::read_all_symbols): New function. | |
6835 | (Archive::read_symbols): New function. | |
6836 | (Archive::add_symbols): Add counters. | |
6837 | (Archive::include_all_members): Use armap to find members if it's | |
6838 | already built. | |
6839 | (Archive::include_member): Skip reading symbols if already read. | |
6840 | Factored code into Archive::get_file_and_offset and | |
6841 | Archive::get_elf_object_for_member. Changed call to | |
6842 | Mapfile::report_include_archive_member. | |
6843 | (Archive::print_stats): New function. | |
6844 | * archive.h: Declare Object and Read_symbols_data classes. | |
6845 | (Archive::Archive): Add initializers for new members. | |
6846 | (Archive::setup): Add parameter. | |
6847 | (Archive::print_stats): New function. | |
6848 | (Archive::total_archives, Archive::total_members) | |
6849 | (Archive::total_members_loaded): New variables. | |
6850 | (Archive::get_file_and_offset): New function. | |
6851 | (Archive::get_elf_object_for_member): New function. | |
6852 | (Archive::read_all_symbols): New function. | |
6853 | (Archive::read_symbols): New function. | |
6854 | (Archive::Archive_member): New class. | |
6855 | (Archive::members_): New member. | |
6856 | (Archive::num_members_): New member. | |
6857 | * main.cc: Include archive.h. | |
6858 | (main): Call Archive::print_stats. | |
6859 | * mapfile.cc (Mapfile::report_include_archive_member): Delete | |
6860 | archive parameter; member_name is now the fully-decorated name. | |
6861 | * mapfile.h (Mapfile::report_include_archive_member): Likewise. | |
6862 | * options.h: (General_options): Add --preread-archive-symbols option. | |
6863 | * readsyms.cc (Read_symbols::do_read_symbols): Change call to | |
6864 | Archive::setup. | |
6865 | ||
de4c45bd ILT |
6866 | 2008-08-04 Ian Lance Taylor <[email protected]> |
6867 | ||
6868 | * symtab.h (Symbol::use_plt_offset): New function. | |
6869 | * i386.cc (Relocate::relocate): Call Symbol::use_plt_offset. | |
6870 | * powerpc.cc (Relocate::relocate): Likewise. | |
6871 | * sparc.cc (Relocate::relocate): Likewise. | |
6872 | * x86_64.cc (Relocate::relocate): Likewise. | |
6873 | * testsuite/weak_plt.sh: New test. | |
6874 | * testsuite/weak_plt_main.cc: New test. | |
6875 | * testsuite/weak_plt_shared.cc: New test. | |
6876 | * testsuite/Makefile.am (check_SCRIPTS): Add weak_plt.sh. | |
6877 | (check_PROGRAMS): Add weak_plt. | |
6878 | (check_DATA): Add weak_plt_shared.so. | |
6879 | (weak_plt_main_pic.o, weak_plt): New targets. | |
6880 | (weak_plt_shared_pic.o, weak_plt_shared.so): New targets. | |
6881 | * testsuite/Makefile.in: Rebuild. | |
6882 | ||
6883 | * testsuite/Makefile.am (weak_alias_test_1.so): Depend upon | |
6884 | gcctestdir/ld. | |
6885 | (weak_alias_test_2.so, weak_alias_test_4.so): Likewise. | |
6886 | * testsuite/Makefile.in: Rebuild. | |
6887 | ||
323ee3f4 AM |
6888 | 2008-08-04 Alan Modra <[email protected]> |
6889 | ||
6890 | * Makefile.am (POTFILES.in): Set LC_ALL=C. | |
6891 | * Makefile.in: Regenerate. | |
6892 | * po/POTFILES.in: Regenerate. | |
6893 | ||
7c07ecec ILT |
6894 | 2008-07-29 Ian Lance Taylor <[email protected]> |
6895 | ||
6896 | * script.cc (Script_options::finalize_symbols): Finalize SECTIONS | |
6897 | symbols before other symbols. | |
6898 | * testsuite/script_test_2.cc (test_addr): Declare. | |
6899 | (test_addr_alias): Declare. | |
6900 | (main): Check that test_addr and test_addr_alias have the right | |
cd536b21 | 6901 | values. |
7c07ecec ILT |
6902 | * testsuite/script_test_2.t: Define test_addr_alias and |
6903 | test_addr. | |
6904 | ||
5778530e ILT |
6905 | 2008-07-24 Ian Lance Taylor <[email protected]> |
6906 | ||
2a00e4fb ILT |
6907 | PR 5990 |
6908 | * descriptors.cc: New file. | |
6909 | * descriptors.h: New file. | |
6910 | * gold-threads.h (class Hold_optional_lock): New class. | |
6911 | * fileread.cc: Include "descriptors.h". | |
6912 | (File_read::~File_read): Release descriptor rather than closing | |
6913 | it. | |
6914 | (File_read::open) [file]: Call open_descriptor rather than open. | |
6915 | Set is_descriptor_opened_. | |
6916 | (File_read::open) [memory]: Assert that descriptor is not open. | |
6917 | (File_read::reopen_descriptor): New function. | |
6918 | (File_read::release): Release descriptor. | |
6919 | (File_read::do_read): Make non-const. Reopen descriptor. | |
6920 | (File_read::read): Make non-const. | |
6921 | (File_read::make_view): Reopen descriptor. | |
6922 | (File_read::do_readv): Likewise. | |
6923 | * fileread.h (class File_read): Add is_descriptor_opened_ field. | |
6924 | Update declarations. | |
6925 | * layout.cc: Include "descriptors.h". | |
6926 | (Layout::create_build_id): Use open_descriptor rather than open. | |
6927 | * output.cc: Include "descriptors.h". | |
6928 | (Output_file::open): Use open_descriptor rather than open. | |
6929 | * archive.cc (Archive::const_iterator): Change Archive to be | |
6930 | non-const. | |
6931 | (Archive::begin, Archive::end): Make non-const. | |
6932 | (Archive::count_members): Likewise. | |
6933 | * archive.h (class Archive): Update declarations. | |
6934 | * object.h (Object::read): Make non-const. | |
6935 | * Makefile.am (CCFILES): Add descriptors.cc. | |
6936 | (HFILES): Add descriptors.h. | |
6937 | * Makefile.in: Rebuild. | |
6938 | ||
801647d1 ILT |
6939 | PR 6716 |
6940 | * gold.h: Always include <clocale>. Add Solaris workarounds | |
6941 | following code in binutils/sysdep.h. | |
6942 | ||
5edd166e ILT |
6943 | PR 6048 |
6944 | * ehframe.cc (Eh_frame::add_ehframe_input_section): Check whether | |
6945 | this->eh_frame_hdr_ is NULL before using it. | |
6946 | ||
c89ad728 ILT |
6947 | * dynobj.cc (Versions::Versions): Update comment. |
6948 | ||
aa86f06b ILT |
6949 | * dynobj.cc (Versions::Versions): If there is an soname, use it as |
6950 | the base version name. | |
6951 | ||
5778530e ILT |
6952 | * stringpool.cc (Stringpool_template::add_with_length): Set key to |
6953 | array size plus one. | |
6954 | (Stringpool_template::set_string_offsets): Subtract one from key | |
6955 | before using it as an array index. | |
6956 | (Stringpool_template::get_offset_with_length): Likewise. | |
6957 | (Stringpool_template::write_to_buffer): Likewise. | |
6958 | * stringpool.h (Stringpool_template::get_offset_from_key): | |
6959 | Likewise. | |
6960 | ||
057ead22 ILT |
6961 | 2008-07-23 Ian Lance Taylor <[email protected]> |
6962 | ||
7f649c59 ILT |
6963 | PR 6658 |
6964 | * object.h (Merged_symbol_value::value): Do our best to handle a | |
6965 | negative addend. | |
6966 | ||
057ead22 ILT |
6967 | PR 6647 |
6968 | * script.cc (Version_script_info::get_versions): Don't add empty | |
6969 | version tag to return value. | |
6970 | (Version_script_info::get_symbol_version_helper): Change return | |
6971 | type to bool. Add pversion parameter. Change all callers. | |
6972 | (script_register_vers_node): Don't require a non-NULL tag. | |
6973 | * script.h (class Version_script_info): Update declarations. | |
6974 | (Version_script_info::get_symbol_version): Change return type to | |
6975 | bool. Add version parameter. Change all callers. | |
6976 | * symtab.cc (Sized_symbol::add_from_relobj): Rework version | |
6977 | handling. Handle an empty version from a version script. | |
6978 | (Symbol_table::define_special_symbol): Likewise. | |
6979 | * testsuite/ver_test_10.script: New file. | |
6980 | * testsuite/ver_test_10.sh: New file. | |
6981 | * testsuite/Makefile.am (check_SCRIPTS): Add ver_test_10.sh. | |
6982 | (check_DATA): Add ver_test_10.syms. | |
6983 | (ver_test_10.syms, ver_test_10.so): New target. | |
6984 | * testsuite/Makefile.in: Rebuild. | |
6985 | ||
58e54ac2 CD |
6986 | 2008-07-23 Simon Baldwin <[email protected]> |
6987 | ||
6988 | * symtab.cc (Symbol_table::sized_write_symbol): Only set st_size | |
6989 | to zero for undefined symbols from dynamic libraries. | |
6990 | ||
95d14cd3 ILT |
6991 | 2008-07-23 Ian Lance Taylor <[email protected]> |
6992 | ||
6993 | * symtab.cc (Symbol_table::resolve): Remove version parameter. | |
6994 | Change all callers. | |
6995 | * symtab.h (class Symbol_table): Update declaration. | |
6996 | * testsuite/ver_test_9.cc: New file. | |
6997 | * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_9. | |
6998 | (ver_test_9_SOURCES, ver_test_9_DEPENDENCIES): Define. | |
6999 | (ver_test_9_LDFLAGS, ver_test_9_LDADD): Define. | |
7000 | (ver_test_9.so, ver_test_9.o): New targets. | |
7001 | * testsuite/Makefile.in: Rebuild. | |
7002 | ||
92de84a6 ILT |
7003 | 2008-07-22 Ian Lance Taylor <[email protected]> |
7004 | ||
34810851 ILT |
7005 | * options.h (class General_options): Define --check-sections. |
7006 | * layout.cc (Layout::set_segment_offsets): Handle | |
7007 | --check-sections. | |
7008 | ||
af6156ef ILT |
7009 | * options.h (class General_options): Define -n/--nmagic and |
7010 | -N/--omagic. | |
7011 | * options.cc (General_options::finalize): For -n/--nmagic or | |
7012 | -N/--omagic, set -static. | |
7013 | * layout.cc (Layout::attach_allocated_section_to_segment): If | |
7014 | -N/--omagic, don't put read-only and read-write sections in | |
7015 | different segments. | |
7016 | (Layout::find_first_load_seg): If -N/--omagic, don't insist on | |
7017 | finding a read-only segment. | |
7018 | (Layout::set_segment_offsets): If -N/--omagic or -n/--nmagic, | |
7019 | don't set the minimum segment alignment to the common page size, | |
7020 | and don't set the file offset to the address modulo the page size. | |
7021 | * script-sections.cc (Script_sections::create_segments): If | |
7022 | -n/--omagic, don't put read-only and read-write sections in | |
7023 | different segments. | |
7024 | ||
92de84a6 ILT |
7025 | * cref.cc: New file. |
7026 | * cref.h: New file. | |
7027 | * options.h (class General_options): Add --print-symbol-counts. | |
7028 | * main.cc (main): Issue defined symbol report if requested. | |
7029 | * archive.cc (Archive::interpret_header): Make into a const member | |
7030 | function. | |
7031 | (Archive::add_symbols): Call Input_objects::archive_start and | |
7032 | archive_stop. | |
7033 | (Archive::const_iterator): Define new class. | |
7034 | (Archive::begin, Archive::end): New functions. | |
7035 | (Archive::include_all_members): Rewrite to use iterator. | |
7036 | (Archive::count_members): New function. | |
7037 | * archive.h (class Archive): Update declarations. | |
7038 | (Archive::filename): New function. | |
7039 | * object.cc: Include "cref.h". | |
7040 | (Sized_relobj::Sized_relobj): Initialize defined_count_. | |
7041 | (Sized_relobj::do_get_global_symbol_counts): New function. | |
7042 | (Input_objects::add_object): Add object to cross-referencer. | |
7043 | (Input_objects::archive_start): New function. | |
7044 | (Input_objects::archive_stop): New function. | |
7045 | (Input_objects::print_symbol_counts): New function. | |
7046 | * object.h: Declare Cref and Archive. | |
7047 | (Object::get_global_symbol_counts): New function. | |
7048 | (Object::do_get_global_symbol_counts): New pure virtual function. | |
7049 | (class Sized_relobj): Add defined_count_ field. Update | |
7050 | declarations. | |
7051 | (class Input_objects): Add cref_ field. Update constructor. | |
7052 | Update declarations. | |
7053 | * dynobj.cc (Sized_dynobj::Sized_dynobj): Initialize symbols_ and | |
7054 | defined_count_. | |
7055 | (Sized_dynobj::do_add_symbols): Allocate symbols_ if printing | |
7056 | symbol counts. | |
7057 | (Sized_dynobj::do_get_global_symbol_counts): New function. | |
7058 | * dynobj.h (class Sized_dynobj): Add fields symbols_ and | |
7059 | defined_count_. Update declarations. Define Symbols typedef. | |
7060 | * symtab.cc (Symbol_table::add_from_relobj): Add defined | |
7061 | parameter. Change all callers. | |
7062 | (Symbol_table::add_from_dynobj): Add sympointers and defined | |
7063 | parameters. Change all callers. | |
7064 | * symtab.h (class Symbol_table): Update declarations. | |
7065 | * Makefile.am (CCFILES): Add cref.cc. | |
7066 | (HFILES): Add cref.h. | |
7067 | * Makefile.in: Rebuild. | |
7068 | ||
3f7c5e1d CD |
7069 | 2008-07-22 Simon Baldwin <[email protected]> |
7070 | ||
7071 | * symtab.cc (Symbol_table::sized_write_symbol): Set symbol size | |
7072 | to zero when writing undefined symbols. | |
7073 | ||
e0b64032 ILT |
7074 | 2008-07-22 Ian Lance Taylor <[email protected]> |
7075 | ||
7076 | * output.cc (Output_section::add_input_section): Don't try to | |
7077 | merge empty merge sections. | |
7078 | ||
096b02cf CS |
7079 | 2008-07-21 Craig Silverstein <[email protected]> |
7080 | ||
7081 | * symtab.cc (Symbol_table::warn_about_undefined_dynobj_symbol): | |
7082 | Include symbol version in error message. | |
cd536b21 | 7083 | |
1d1f116d CD |
7084 | 2008-07-20 Chris Demetriou <[email protected]> |
7085 | ||
cd536b21 | 7086 | * configure.ac (gold_cv_c_random_seed): New configured variable. |
1d1f116d CD |
7087 | (RANDOM_SEED_CFLAGS): New substituted variable. |
7088 | * Makefile.am (AM_CFLAGS, AM_CXXFLAGS): Add $(RANDOM_SEED_CFLAGS). | |
7089 | * configure: Rebuild. | |
7090 | * Makefile.in: Likewise. | |
7091 | * testsuite/Makefile.in: Likewise. | |
7092 | ||
a18f591e ILT |
7093 | 2008-07-18 Ian Lance Taylor <[email protected]> |
7094 | ||
7095 | * symtab.cc (Symbol_table::add_from_object): Rewrite the case | |
7096 | where we see NAME/NULL and NAME/VERSION as separate symbols. | |
7097 | * testsuite/ver_test_main.cc (main): Call t4. | |
7098 | (t4, t4_2a): Define. | |
7099 | * testsuite/ver_test_2.cc (t4_2): Define. | |
7100 | * testsuite/ver_test_2.script: Put t4_2a in VER2. | |
7101 | * testsuite/ver_test_4.cc (t4_2a): Define. | |
7102 | * testsuite/ver_test_4.script: Put t4_2a in VER2. | |
7103 | * testsuite/ver_test.h (t4, t4_2, t4_2a): Declare. | |
7104 | ||
c6e3f6ed ILT |
7105 | 2008-07-17 Ian Lance Taylor <[email protected]> |
7106 | ||
7107 | * dynobj.cc (Versions::add_def): If we give an error about a | |
7108 | missing version, go ahead and create the version anyhow. | |
7109 | ||
ef9beddf ILT |
7110 | 2008-07-10 Ian Lance Taylor <[email protected]> |
7111 | ||
7112 | Handle output sections with more than 0x7fffffff bytes. | |
7113 | * object.h (class Relobj): Change map_to_output_ to | |
7114 | output_sections_, and just keep a section pointer. Change all | |
7115 | uses. Move comdat group support to Sized_relobj. | |
7116 | (Relobj::is_section_specially_mapped): Remove. | |
7117 | (Relobj::output_section): Remove poff parameter. Change all | |
7118 | callers. | |
7119 | (Relobj::output_section_offset): New function. | |
7120 | (Relobj::set_section_offset): Rewrite. | |
7121 | (Relobj::map_to_output): Remove. | |
7122 | (Relobj::output_sections): New function. | |
7123 | (Relobj::do_output_section_offset): New pure virtual function. | |
7124 | (Relobj::do_set_section_offset): Likewise. | |
7125 | (class Sized_relobj): Add section_offsets_ field. Add comdat | |
7126 | group support from Relobj. Update declarations. | |
7127 | (Sized_relobj::get_output_section_offset): New function. | |
7128 | (Sized_relobj::do_output_section_offset): New function. | |
7129 | (Sized_relobj::do_set_section_offset): New function. | |
7130 | * object.cc (Relobj::output_section_address): Remove. | |
7131 | (Sized_relobj::Sized_relobj): Initialize new fields. | |
7132 | (Sized_relobj::include_section_group): Cast find_kept_object to | |
7133 | Sized_relobj. | |
7134 | (Sized_relobj::include_linkonce_section): Likewise. | |
7135 | (Sized_relobj::do_layout): Use separate arrays for output section | |
7136 | and output offset. | |
7137 | (Sized_relobj::do_count_local_symbols): Change map_to_output to | |
7138 | output_sections. | |
7139 | (Sized_relobj::do_finalize_local_symbols): Change map_to_output to | |
7140 | output_sections and section_offsets. | |
7141 | (Sized_relobj::write_local_symbols): Likewise. | |
7142 | (map_to_kept_section): Compute output address directly. | |
7143 | * reloc.cc (Sized_relobj::do_read_relocs): Change map_to_output to | |
7144 | output_sections and section_offsets. | |
7145 | (Sized_relobj::write_sections): Likewise. | |
7146 | (Sized_relobj::relocate_sections): Likewise. | |
7147 | * symtab.cc (sized_finalize_symbol): Use output_section_offset. | |
7148 | * output.h (class Output_reloc): Update declarations. Change | |
7149 | u2_.relobj to Sized_relobj*. | |
7150 | (class Output_data_reloc): Change add functions to use | |
7151 | Sized_relobj*. | |
7152 | * output.cc (Output_reloc::Output_reloc): Change relobj to | |
7153 | Sized_relobj*. | |
7154 | (Output_reloc::local_section_offset): Change return type to | |
7155 | Elf_Addr. Use get_output_section_offset. | |
7156 | (Output_reloc::get_address): Likewise. | |
7157 | (Output_section::is_input_address_mapped): Don't call | |
7158 | is_section_specially_mapped. | |
7159 | (Output_section::output_offset): Likewise. | |
7160 | (Output_section::output_address): Likewise. | |
7161 | (Output_section::starting_output_address): Likewise. | |
7162 | * copy-relocs.cc (Copy_relocs::copy_reloc): Change object | |
7163 | parameter to Sized_relobj*. | |
7164 | (Copy_relocs::need_copy_reloc): Likewise. | |
7165 | (Copy_relocs::save): Likewise. | |
7166 | * copy-relocs.h (class Copy_relocs): Update declarations. | |
7167 | (class Copy_relocs::Copy_reloc_entry): Change constructor to use | |
7168 | Sized_relobj*. Change relobj_ field to Sized_relobj*. | |
7169 | * target-reloc.h (relocate_for_relocatable): Change | |
7170 | offset_in_output_section type to Elf_Addr. Change code that uses | |
7171 | it as well. | |
7172 | * layout.cc (Layout::layout): Always set *off. | |
7173 | * mapfile.cc (Mapfile::print_input_section): Use | |
7174 | output_section_offset. | |
7175 | * i386.cc (Target_i386::copy_reloc): Change object parameter to | |
7176 | Sized_relobj*. | |
7177 | * powerpc.cc (Target_powerpc::copy_reloc): Likewise. | |
7178 | * sparc.cc (Target_sparc::copy_reloc): Likewise. | |
7179 | * x86_64.cc (Target_x86_64::copy_reloc): Likewise. | |
7180 | ||
5cb66f97 ILT |
7181 | 2008-07-03 Ian Lance Taylor <[email protected]> |
7182 | ||
7183 | * layout.cc (Layout::include_section): Do not discard unrecognized | |
7184 | SHT_STRTAB sections. | |
7185 | ||
afe47622 CS |
7186 | 2008-06-30 Craig Silverstein <[email protected]> |
7187 | ||
7188 | * script.cc (Lex::can_continue_name): Make '?' allowable in | |
7189 | version-script names. | |
7190 | * testsuite/version_script.map: Change glob pattern to use '?' | |
7191 | ||
5adf9721 ILT |
7192 | 2008-06-30 Manish Singh <[email protected]> |
7193 | ||
7194 | PR 6585 | |
7195 | * symtab.cc (Symbol_table::add_undefined_symbols_from_command_line): | |
7196 | Correct typo. | |
7197 | ||
e6fde208 ILT |
7198 | 2008-06-30 Ian Lance Taylor <[email protected]> |
7199 | ||
7200 | PR 6660 | |
7201 | PR 6682 | |
7202 | * powerpc.cc (Powerpc_relocate_functions::addr16_ha) [both | |
7203 | versions]: Don't try to read the value in the contents, since we | |
7204 | don't use it. Use the template endianness when writing. | |
7205 | ||
3f2e6a2d CC |
7206 | 2008-06-25 Cary Coutant <[email protected]> |
7207 | ||
7208 | * fileread.cc (File_read::make_view): Assert on zero-length view. | |
7209 | * object.cc (Sized_relobj::do_read_symbols): Don't try to read | |
7210 | symbol table when there are no symbols to read. | |
7211 | ||
c43d3a48 CS |
7212 | 2008-06-23 Craig Silverstein <[email protected]> |
7213 | ||
7214 | * version.cc (version_string): Bump to 1.7 | |
7215 | ||
5f494ea0 CS |
7216 | 2008-06-18 Craig Silverstein <[email protected]> |
7217 | ||
7218 | * powerpc.cc (Powerpc_relocate_functions::addr16_ha): cast | |
7219 | constant 0xFFFF to type Valtype. | |
7220 | (Powerpc_relocate_functions::rel16_ha): Likewise. | |
7221 | ||
c42e122e ILT |
7222 | 2008-06-17 Ian Lance Taylor <[email protected]> |
7223 | ||
f34787f8 ILT |
7224 | * output.h (Output_section::Input_section): Initialize p2align_ to |
7225 | zero for Output_section_data constructors. | |
7226 | (Output_section::Input_section::addralign): If not an input | |
7227 | section, return the alignment of the Output_section_data. | |
7228 | * testsuite/copy_test.cc: New file. | |
7229 | * testsuite/copy_test_1.cc: New file. | |
7230 | * testsuite/copy_test_2.cc: New file. | |
7231 | * testsuite/Makefile.am (check_PROGRAMS): Add copy_test. | |
7232 | (copy_test_SOURCES, copy_test_DEPENDENCIES): New variables. | |
7233 | (copy_test_LDFLAGS, copy_test_LDADD): New variables. | |
7234 | (copy_test_1_pic.o, copy_test_1.so): New targets. | |
7235 | (copy_test_2_pic.o, copy_test_2.so): New targets. | |
7236 | * testsuite/Makefile.in: Rebuild. | |
7237 | ||
c42e122e ILT |
7238 | * script-sections.cc (Script_sections::place_orphan): Initialize |
7239 | local variable exact. | |
7240 | ||
ce3ac18a DE |
7241 | 2008-06-13 David Edelsohn <[email protected]> |
7242 | ||
7243 | * powerpc.cc (Output_data_plt_powerpc::do_write): 8 + 4 = 0xC. | |
7244 | ||
42cacb20 DE |
7245 | 2008-06-12 David Edelsohn <[email protected]> |
7246 | David S. Miller <[email protected]> | |
7247 | ||
7248 | * powerpc.cc: New file. | |
7249 | * Makefile.am (TARGETSOURCES): Add powerpc.cc | |
7250 | (ALL_TARGETOBJS): Add powerpc.$(OBJEXT) | |
7251 | * configure.tgt: Add entries for powerpc-* and powerpc64-*. | |
7252 | * Makefile.in: Rebuild. | |
7253 | ||
7b308235 ILT |
7254 | 2008-06-09 Ian Lance Taylor <[email protected]> |
7255 | ||
7256 | * testsuite/relro_test.cc: Include <cstdio>, <cstdlib>, and | |
7257 | <exception>. | |
7258 | (throwing, orig_terminate): New static variables. | |
7259 | (terminate_handler): New static function. | |
7260 | (t2): Set terminate handler. | |
7261 | ||
f0b886e3 ILT |
7262 | 2008-06-05 Kris Van Hees <[email protected]> |
7263 | ||
7264 | PR 6584 | |
cd536b21 | 7265 | * binary.cc (Binary_to_elf::sized_convert): Fix .data |
f0b886e3 ILT |
7266 | alignment. |
7267 | ||
3e90f135 CC |
7268 | 2008-05-30 Cary Coutant <[email protected]> |
7269 | ||
7270 | * archive.cc (Archive::include_all_members) Correct to step | |
7271 | over symbol table and extended name table in thin archives. | |
7272 | ||
e09ad04a ILT |
7273 | 2008-05-29 Kris Van Hees <[email protected]> |
7274 | ||
7275 | PR 6407 | |
7276 | * target-reloc.h (relocate_for_relocatable): Fix new_offset | |
7277 | calculation. | |
7278 | ||
62b01cb5 ILT |
7279 | 2008-05-28 Caleb Howe <[email protected]> |
7280 | ||
7281 | * reduced_debug_output.cc: New file. | |
7282 | * reduced_debug_output.h: New file. | |
92de84a6 | 7283 | * options.h (class General_options): Add --strip-debug-non-line. |
62b01cb5 ILT |
7284 | * options.cc (General_options::finalize): Add strip_debug_non_line |
7285 | to the strip heirarchy. | |
7286 | * layout.h (class Layout): Add debug_abbrev_ and debug_info_ | |
7287 | fields. | |
7288 | * layout.cc: Include "reduced_debug_output.h". | |
7289 | (Layout::Layout): Initialize new fields. | |
7290 | (line_only_debug_sections): New static array. | |
7291 | (is_lines_only_debug_sections): New static inline function. | |
7292 | (Layout::include_section): Handle --strip-debug-non-line. | |
7293 | (Layout::make_output_section): If --strip-debug-non-line, build | |
7294 | new output sections for .debug_abbrev and .debug_info. | |
7295 | * dwarf_reader.cc (read_unsigned_LEB_128): Move to namespace | |
7296 | gold. Warn about possible overflow. | |
7297 | (read_signed_LEB_128): Likewise. | |
7298 | * dwarf_reader.h: (read_unsigned_LEB_128): Declare. | |
7299 | (read_signed_LEB_128): Declare. | |
7300 | * Makefile.am (CCFILES): Add reduced_debug_output.cc. | |
7301 | (HFILES): Add reduced_debug_output.h. | |
7302 | * Makefile.in: Rebuild. | |
7303 | ||
7d9e3d98 ILT |
7304 | 2008-05-21 Ian Lance Taylor <[email protected]> |
7305 | ||
7306 | * mapfile.cc: New file. | |
7307 | * mapfile.h: New file. | |
7308 | * options.h (class General_options): Add -M/--print-map and -Map. | |
7309 | * options.cc (General_options::finalize): Make -M equivalent to | |
7310 | -Map -. | |
7311 | * main.cc: Include <cstdio> and "mapfile.h". | |
7312 | (main): Open mapfile if requested. | |
7313 | * gold.cc (class Middle_runner): Add mapfile_ field. Update | |
7314 | constructor. Change caller. | |
7315 | (queue_initial_tasks): Add mapfile parameter. Change caller. | |
7316 | (queue_middle_tasks): Likewise. | |
7317 | * gold.h (queue_initial_tasks, queue_middle_tasks): Update | |
7318 | declarations. | |
7319 | * archive.cc: Include "mapfile.h". | |
7320 | (Archive::add_symbols): Add mapfile parameter. Change all | |
7321 | callers. Pass mapfile, symbol, and reason to include_member. | |
7322 | (Archive::include_all_members): Add mapfile parameter. Change all | |
7323 | callers. | |
7324 | (Archive::include_member): Add mapfile, sym, and why parameters. | |
7325 | Change all callers. Report inclusion to map file. | |
7326 | * archive.h: Include "fileread.h". | |
7327 | (class Archive): Update declarations. | |
7328 | (Archive::file): New const method. | |
7329 | (class Add_archive_symbols): Add mapfile_ field. Update | |
7330 | constructor. Change all callers. | |
7331 | * readsyms.h (class Read_symbols): Likewise. | |
7332 | (class Finish_group): Likewise. | |
7333 | (class Read_script): Likewise. | |
7334 | * common.cc: Include "mapfile.h". | |
7335 | (Symbol_table::allocate_commons): Add mapfile parameter. Change | |
7336 | all callers. | |
7337 | (Symbol_table::do_allocate_commons): Likewise. | |
7338 | (Symbol_table::do_allocate_commons_list): Likewise. Report common | |
7339 | symbol allocation to mapfile. | |
7340 | * common.h (class Allocate_commons_task): Add mapfile_ field. | |
7341 | Update constructor. Change all callers. | |
7342 | * symtab.h (class Symbol_table): Update declarations. | |
7343 | * layout.cc: Include "mapfile.h". | |
7344 | (Layout_task_runner::run): Print information to mapfile. | |
7345 | (Layout::create_gold_note): Change Output_data_fixed_space to | |
7346 | Output_data_zero_fill. | |
7347 | (Layout::create_build_id): Likewise. | |
7348 | (Layout::print_to_mapfile): New function. | |
7349 | * layout.h (class Layout_task_runner): Add mapfile_ field. Update | |
7350 | constructor. Change caller. | |
7351 | (class Layout): Declare print_to_mapfile. | |
7352 | * output.cc (Output_section::Input_section::print_to_mapfile): New | |
7353 | function. | |
7354 | (Output_section::add_input_section): If producing a map, always | |
7355 | add to input_sections_ list. | |
7356 | (Output_section::do_print_to_mapfile): New function. | |
7357 | (Output_segment::print_sections_to_mapfile): New function. | |
7358 | (Output_segment::print_section_list_to_mapfile): New function. | |
7359 | * output.h: Include "mapfile.h". | |
7360 | (Output_data::print_to_mapfile): New function. | |
7361 | (Output_data::do_print_to_mapfile): New virtual function. | |
7362 | (Output_segment_headers::do_print_to_mapfile): New function. | |
7363 | (Output_file_header::do_print_to_mapfile): New function. | |
7364 | (Output_data_const::do_print_to_mapfile): New function. | |
7365 | (class Output_data_const_buffer): Add map_name_ field. Update | |
7366 | constructor. Change all callers. Add do_print_to_mapfile | |
7367 | function. | |
7368 | (class Output_data_fixed_space): Likewise. | |
7369 | (class Output_data_space): Likewise. | |
7370 | (class Output_data_zero_fill): New class. | |
7371 | (Output_data_strtab::do_print_to_mapfile): New function. | |
7372 | (Output_data_reloc_base::do_print_to_mapfile): New function. | |
7373 | (Output_relocatable_relocs::do_print_to_mapfile): New function. | |
7374 | (Output_data_group::do_print_to_mapfile): New function. | |
7375 | (Output_data_got::do_print_to_mapfile): New function. | |
7376 | (Output_data_dynamic::do_print_to_mapfile): New function. | |
7377 | (Output_symtab_xindex::do_print_to_mapfile): New function. | |
7378 | (class Output_section): Declare do_print_to_mapflie. Declare | |
7379 | print_to_mapfile in Input_section. | |
7380 | (class Output_segment): Declare new functions. | |
7381 | * object.h (Sized_relobj::symbol_count): New function. | |
7382 | * script-sections.cc | |
7383 | (Output_section_element_dot_assignment::set_section_addresses): | |
7384 | Change Output_data_fixed_space to Output_data_zero_fill. | |
7385 | (Output_data_expression::do_print_to_mapfile): New function. | |
7386 | * script.cc (read_input_script): Add mapfile parameter. Change | |
7387 | all callers. | |
7388 | * script.h (read_input_script): Update declaration. | |
7389 | * ehframe.h (Eh_frame_hdr::do_print_to_mapfile): New function. | |
7390 | (Eh_frame::do_print_to_mapfile): New function. | |
7391 | * merge.h (Output_merge_data::do_print_to_mapfile): New function. | |
7392 | (Output_merge_string::do_print_to_mapfile): New function. | |
7393 | * i386.cc (Output_data_plt_i386::do_print_to_mapfile): New | |
7394 | function. | |
7395 | * sparc.cc (Output_data_plt_sparc::do_print_to_mapfile): New | |
7396 | function. | |
7397 | * x86_64.cc (Output_data_plt_x86_64::do_print_to_mapfile): New | |
7398 | function. | |
7399 | * Makefile.am (CCFILES): Add mapfile.cc. | |
7400 | (HFILES): Add mapfile.h. | |
7401 | * Makefile.in: Rebuild. | |
7402 | ||
9f1d377b ILT |
7403 | 2008-05-19 Ian Lance Taylor <[email protected]> |
7404 | ||
7405 | * options.h (class General_options): Add -z relro. | |
7406 | * layout.cc (Layout::Layout): Initialize relro_segment_. | |
7407 | (Layout::add_output_section_data): Return the output section. | |
7408 | (Layout::make_output_section): Rcognize relro sections and mark | |
7409 | them appropriately. | |
7410 | (Layout::attach_allocated_section_to_segment): Put relro sections | |
7411 | in a PT_GNU_RELRO segment. | |
7412 | (Layout::create_initial_dynamic_sections): Mark the .dynamic | |
7413 | section as relro. | |
7414 | (Layout::segment_precedes): Sort PT_GNU_RELRO segments after | |
7415 | PT_TLS segments. | |
7416 | (Layout::linkonce_mapping): Map d.rel.ro.local to | |
7417 | .data.rel.ro.local. | |
7418 | (Layout::output_section_name): Us .data.rel.ro.local for any | |
7419 | section which begins with that. | |
7420 | * layout.h (class Layout): Update add_output_section_data | |
7421 | declaration. Add relro_segment_ field. | |
7422 | * output.cc (Output_section::Output_section): Initialize is_relro_ | |
7423 | and is_relro_local_ fields. | |
7424 | (Output_segment::add_output_section): Group relro sections. | |
7425 | (Output_segment::is_first_section_relro): New function. | |
7426 | (Output_segment::maximum_alignment): If there is a relro section, | |
7427 | align the segment to the common page size. | |
7428 | (Output_segment::set_section_addresses): Track whether we are | |
7429 | looking at relro sections. If the last section is a relro | |
7430 | section, align to the common page size. | |
7431 | (Output_segment::set_section_list_addresses): Add in_relro | |
7432 | parameter. Change all callers. Align to the page size when | |
7433 | moving from relro to non-relro section. | |
7434 | (Output_segment::set_offset): Align memsz of a PT_GNU_RELRO | |
7435 | segment. | |
7436 | * output.h (class Output_section): Add is_relro_ and | |
7437 | is_relro_local_ fields. | |
7438 | (Output_section::is_relro): New function. | |
7439 | (Output_section::set_is_relro): New function. | |
7440 | (Output_section::is_relro_local): New function. | |
7441 | (Output_section::set_is_relro_local): New function. | |
7442 | (class Output_segment): Update declarations. | |
7443 | * i386.cc (Target_i386::got_section): Mark .got section as relro. | |
7444 | * sparc.cc (Target_sparc::got_section): Likewise. | |
7445 | * x86_64.cc (Target_x86_64::got_section): Likewise. | |
7446 | * testsuite/relro_test_main.cc: New file. | |
7447 | * testsuite/relro_test.cc: New file. | |
7448 | * testsuite/Makefile.am (check_PROGRAMS): Add relro_test. | |
7449 | (relro_test_SOURCES, relro_test_DEPENDENCIES): New variables. | |
7450 | (relro_test_LDFLAGS, relro_test_LDADD): New variables. | |
7451 | (relro_test.so, relro_test_pic.o): New targets. | |
7452 | * testsuite/Makefile.in: Rebuild. | |
7453 | ||
a984ee1d ILT |
7454 | 2008-05-16 Ian Lance Taylor <[email protected]> |
7455 | ||
01676dcd ILT |
7456 | * output.cc (Output_segment::add_output_section): Remove front |
7457 | parameter. | |
7458 | * output.h (class Output_segment): Remove | |
7459 | add_initial_output_section and overloaded add_output_section. | |
7460 | Update declaration of remaining add_output_section. | |
7461 | * layout.cc (Layout::create_interp): Call add_output_section | |
7462 | rather than add_initial_output_section. | |
7463 | (Layout::finish_dynamic_section): Likewise. | |
7464 | ||
497897f9 ILT |
7465 | * i386.cc (Target_i386::Relocate::relocate_tls): Set dynamic type |
7466 | for TLS_GOTDESC and TLS_DESC_CALL. Only optimize TLS_LDO_32 if we | |
7467 | know the dynamic type. | |
7468 | * x86_64.cc (Target_x86_64::Relocate): Add saw_tls_block_reloc_ | |
7469 | field. Initialize it in constructor. | |
7470 | (Target_x86_64::Relocate::relocate_tls): Record that we saw a TLS | |
7471 | block reloc for TLSGD, GOTPC32_TLSDESC, TLSDESC_CALL, and TLSLD. | |
7472 | Only optimize DTPOFF32 and DTPOFF64 if we have seen a TLS block | |
7473 | reloc. | |
7474 | ||
a984ee1d ILT |
7475 | * output.cc (Output_reloc::get_address): Change return type to |
7476 | Elf_Addr. | |
7477 | * output.h (class Output_reloc): Update get_address declaration. | |
7478 | * x86_64.cc (Output_data_plt_x86_64::do_write): Use 64-bit types | |
7479 | for section addresses. | |
7480 | ||
55ba0940 ILT |
7481 | 2008-05-09 Ian Lance Taylor <[email protected]> |
7482 | ||
7483 | PR 6493 | |
7484 | * gold.cc (gold_nomem): Use return value of write. | |
7485 | ||
75517b77 ILT |
7486 | 2008-05-08 Ian Lance Taylor <[email protected]> |
7487 | ||
7488 | * symtab.c (Symbol::init_base_output_data): Add version | |
7489 | parameter. Change all callers. | |
7490 | (Symbol::init_base_output_segment): Likewise. | |
7491 | (Symbol::init_base_constant): Likewise. | |
7492 | (Symbol::init_base_undefined): Likewise. | |
7493 | (Sized_symbol::init_output_data): Likewise. | |
7494 | (Sized_symbol::init_output_segment): Likewise. | |
7495 | (Sized_symbol::init_constant): Likewise. | |
7496 | (Sized_symbol::init_undefined): Likewise. | |
7497 | (Symbol_table::do_define_in_output_data): If the new symbol has a | |
7498 | version, mark it as the default. | |
7499 | (Symbol_table::do_define_in_output_segment): Likewise. | |
7500 | (Symbol_table::do_define_as_constant): Likewise. | |
7501 | * symtab.h (class Symbol): Update declarations. | |
7502 | (class Sized_symbol): Likewise. | |
7503 | * resolve.cc (Symbol::override_version): New function. | |
c42e122e | 7504 | (Symbol::override_base): Call override_version. |
75517b77 ILT |
7505 | (Symbol::override_base_with_special): Likewise. |
7506 | * testsuite/ver_script_8.script: New file. | |
7507 | * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_8. | |
7508 | (ver_test_8_SOURCES, ver_test_8_DEPENDENCIES): Define. | |
7509 | (ver_test_8_LDFLAGS, ver_test_8_LDADD): Define. | |
7510 | (ver_test_8_1.so, ver_test_8_2.so): New targets. | |
7511 | ||
f1f70eae ILT |
7512 | 2008-05-06 Ian Lance Taylor <[email protected]> |
7513 | ||
f3e9c5c5 ILT |
7514 | PR 6049 |
7515 | * options.h (DEFINE_set): Add VARNAME_begin and VARNAME_end | |
7516 | functions. | |
7517 | (class General_options): Remove existing --undefined, and add | |
7518 | --no-undefined instead. Add new --undefined as synonym for -u. | |
7519 | * archive.cc (Archive::add_symbols): Check whether symbol was | |
7520 | named with -u. | |
7521 | * gold.cc (queue_middle_tasks): Add -u symbols to symbol table. | |
7522 | * symtab.h (class Symbol): Rename CONSTANT to IS_CONSTANT; change | |
7523 | all uses. Add IS_UNDEFINED. Update declarations to split | |
7524 | different versions of init_base. Declare init_base_undefined. | |
7525 | (Symbol::is_defined): Handle IS_UNDEFINED. | |
7526 | (Symbol::is_undefined): Likewise. | |
7527 | (Symbol::is_weak_undefined): Call is_undefined. | |
7528 | (Symbol::is_absolute): Handle IS_CONSTANT. | |
7529 | (class Sized_symbol): Update declarations to split different | |
7530 | versions of init. Declare init_undefined. | |
7531 | (class Symbol_table): Declare new functions. | |
7532 | * symtab.cc (Symbol::init_base_object): Rename from init_base. | |
7533 | Change all callers. | |
7534 | (Symbol::init_base_output_data): Likewise. | |
7535 | (Symbol::init_base_output_segment): Likewise. | |
7536 | (Symbol::init_base_constant): Likewise. | |
7537 | (Symbol::init_base_undefined): New function. | |
7538 | (Sized_symbol::init_object): Rename from init. Change all | |
7539 | callers. | |
7540 | (Sized_symbol::init_output_data): Likewise. | |
7541 | (Sized_symbol::init_output_segment): Likewise. | |
7542 | (Sized_symbol::init_constant): Likewise. | |
7543 | (Sized_symbol::init_undefined): New function. | |
7544 | (Symbol_table::add_undefined_symbols_from_command_line): New | |
7545 | function. | |
7546 | (Symbol_table::do_add_undefined_symbols_from_command_line): New | |
7547 | function. | |
7548 | (Symbol::final_value_is_known): Handle IS_UNDEFINED. | |
7549 | (Symbol::output_section): Likewise. | |
7550 | (Symbol::set_output_section): Likewise. | |
7551 | (Symbol_table::sized_finalize_symbol): Likewise. | |
7552 | (Symbol_table::sized_write_globals): Likewise. | |
7553 | * resolve.cc (Symbol_table::should_override): Likewise. | |
7554 | (Symbol::override_base_with_special): Likewise. | |
7555 | ||
8bdcdf2c ILT |
7556 | * symtab.cc (Symbol_table::add_from_dynobj): If we see a protected |
7557 | symbol, change it to have default visibility. | |
7558 | * testsuite/protected_1.cc: New file. | |
7559 | * testsuite/protected_2.cc: New file. | |
7560 | * testsuite/protected_3.cc: New file. | |
7561 | * testsuite/protected_main_1.cc: New file. | |
7562 | * testsuite/protected_main_2.cc: New file. | |
7563 | * testsuite/protected_main_3.cc: New file. | |
7564 | * testsuite/Makefile.am (check_PROGRAMS): Add protected_1. | |
7565 | (protected_1_SOURCES, protected_1_DEPENDENCIES): Define. | |
7566 | (protected_1_LDFLAGS, protected_1_LDADD): Define. | |
7567 | (protected_1.so): New target. | |
7568 | (protected_1_pic.o, protected_2_pic.o): New targets. | |
7569 | (protected_3_pic.o): New target. | |
7570 | (check_PROGRAMS): Add protected_2. | |
7571 | (protected_2_SOURCES, protected_2_DEPENDENCIES): Define. | |
7572 | (protected_2_LDFLAGS, protected_2_LDADD): Define. | |
7573 | * testsuite/Makefile.in: Rebuild. | |
7574 | ||
2b706932 ILT |
7575 | * options.h (DEFINE_var): Add set_user_set_##varname__. |
7576 | (DEFINE_bool_alias): New macro. | |
7577 | (class General_options): Define -Bstatic using DEFINE_bool_alias | |
7578 | rather than DEFINE_special. Add --undefined as an alias for -z | |
7579 | defs. | |
7580 | * options.cc (General_options::parse_Bstatic): Remove. | |
7581 | ||
d82a5bcc ILT |
7582 | * options.h (class General_options): Add --fatal-warnings. |
7583 | * main.cc (main): Implement --fatal-warnings. | |
7584 | * errors.h (Errors::warning_count): New function. | |
7585 | ||
f1f70eae ILT |
7586 | * options.h (class General_options): Add -Bsymbolic-functions. |
7587 | * symtab.h (Symbol::is_preemptible): Check for | |
7588 | -Bsymbolic-functions. | |
7589 | ||
8825ac63 ILT |
7590 | 2008-05-05 Ian Lance Taylor <[email protected]> |
7591 | ||
d98bc257 ILT |
7592 | * options.h (DEFINE_bool): For DASH_Z, create the negative option |
7593 | as noVARNAME rather than no-VARNAME. | |
7594 | (class General_options): Add option -z combreloc. | |
7595 | * output.h (class Output_reloc) [SHT_REL]: Declare compare and | |
7596 | get_address. | |
7597 | (Output_reloc::sort_before) [SHT_REL]: New function. | |
7598 | (Output_reloc::sort_before) [SHT_RELA]: New function. | |
7599 | (class Output_data_reloc_base): Add sort_relocs_ field. Define | |
7600 | Sort_relocs_comparison. | |
7601 | (Output_data_reloc_base::Output_data_reloc_base): Add sort_relocs | |
7602 | parameter. Change all callers. | |
7603 | (Output_data_reloc::Output_data_reloc) [both versions]: Add | |
7604 | sort_relocs parameter. Change all callers. | |
7605 | * output.cc (Output_reloc::get_address): New function, broken out | |
7606 | of write_rel. | |
7607 | (Output_reloc::write_rel): Call it. | |
7608 | (Output_reloc::compare): New function. | |
7609 | (Output_data_reloc_base::do_write): Optionally sort relocs. | |
7610 | ||
60b2b4e7 ILT |
7611 | * configure.ac: If targ_extra_obj is set, link it in. |
7612 | * configure.tgt: Initialize all variables. | |
7613 | (x86_64*): Set targ_extra_obj and targ_extra_size. | |
7614 | * configure: Rebuild. | |
7615 | ||
8825ac63 ILT |
7616 | * object.cc (Sized_relobj::include_section_group): Adjust section |
7617 | indexes read from group data. Build vector to pass to | |
7618 | layout_group. | |
7619 | * layout.cc (Layout::layout_group): Add flags and shndxes | |
7620 | parameters. Remove contents parameter. Change caller. Update | |
7621 | explicit instantiations. | |
7622 | * layout.h (class Layout): Update layout_group declaration. | |
7623 | * output.cc (Output_data_group::Output_data_group): Add flags and | |
7624 | input_shndxes parameters. Remove contents parameter. Change | |
7625 | caller. | |
7626 | (Output_data_group::do_write): Change input_sections_ to | |
7627 | input_shndxes_. | |
7628 | * output.h (class Output_data_group): Update constructor | |
7629 | declaration. Rename input_sections_ to input_shndxes_. | |
7630 | * testsuite/many_sections_test.cc: Add template. | |
7631 | ||
e94cf127 CC |
7632 | 2008-04-30 Cary Coutant <[email protected]> |
7633 | ||
4418b2d5 CC |
7634 | * target-reloc.h (relocate_section): Fix dead-pointer bug. |
7635 | ||
e94cf127 CC |
7636 | * layout.cc (Layout::include_section): Refactored check for debug |
7637 | info section. | |
7638 | (Layout::add_comdat): Add new parameters. Change type | |
7639 | of signature parameter. Add object and shndx to signatures table. | |
7640 | (Layout::find_kept_object): New function. | |
7641 | * layout.h: Include <cstring>. | |
7642 | (Layout::is_debug_info_section): New function. | |
7643 | (Layout::add_comdat): Add new parameters. | |
7644 | (Layout::find_kept_object): New function. | |
7645 | (Layout::Kept_section): New struct. | |
7646 | (Layout::Signatures): Change type of map range. | |
7647 | * object.cc (Relobj::output_section_address): New function. | |
7648 | (Sized_relobj::include_section_group): Add new parameters. Change | |
7649 | calls to Layout::add_comdat. Change to build table of kept comdat | |
7650 | groups and table mapping discarded sections to kept sections. | |
7651 | (Sized_relobj::include_linkonce_section): Likewise. Add new parameter. | |
7652 | (Sized_relobj::do_layout): Change calls to include_section_group and | |
7653 | include_linkonce_section. | |
7654 | (Sized_relobj::do_finalize_local_symbols): Do not set local symbol | |
7655 | value to zero when section is discarded. | |
7656 | (Sized_relobj::map_to_kept_section): New function. | |
7657 | * object.h (Relobj::output_section_address): New function. | |
7658 | (Relobj::Comdat_group): New type. | |
7659 | (Relobj::find_comdat_group): New function. | |
7660 | (Relobj::Comdat_group_table): New type. | |
7661 | (Relobj::Kept_comdat_section): New type. | |
7662 | (Relobj::Kept_comdat_section_table): New type. | |
7663 | (Relobj::add_comdat_group): New function. | |
7664 | (Relobj::set_kept_comdat_section): New function. | |
7665 | (Relobj::get_kept_comdat_section): New function. | |
7666 | (Relobj::comdat_groups_): New field. | |
7667 | (Relobj::kept_comdat_sections_): New field. | |
7668 | (Symbol_value::input_value): Update comment. | |
7669 | (Sized_relobj::map_to_kept_section) New function. | |
7670 | (Sized_relobj::include_linkonce_section): Add new parameter. | |
7671 | * target-reloc.h (Comdat_behavior): New type. | |
7672 | (get_comdat_behavior): New function. | |
7673 | (relocate_section): Add code to map a discarded section to the | |
7674 | corresponding kept section when applying a relocation. | |
7675 | ||
e4e5049b CS |
7676 | 2008-04-30 Craig Silverstein <[email protected]> |
7677 | ||
7678 | * dwarf_reader.cc (next_generation_count): New static var. | |
7679 | (Addr2line_cache_entry): New struct. | |
7680 | (addr2line_cache): New static var. | |
7681 | (Dwarf_line_info::one_addr2line): Added caching. | |
7682 | (Dwarf_line_info::clear_addr2line_cache): New function. | |
7683 | * dwarf_reader.h (Dwarf_line_info::one_addr2line): Add | |
7684 | cache-size parameter. | |
7685 | (Dwarf_line_info::one_addr2line_cache): New function. | |
7686 | * symtab.cc (Symbol_table::detect_odr_violations): Pass | |
7687 | new cache-size argument to one_addr2line(), and clear cache. | |
7688 | ||
d09e9154 CC |
7689 | 2008-04-28 Cary Coutant <[email protected]> |
7690 | ||
7691 | * i386.cc (Relocate::relocate): Fix typos for R_386_PC16 and | |
7692 | R_386_PC8 relocations. | |
7693 | ||
7ef73768 ILT |
7694 | 2008-04-23 Ian Lance Taylor <[email protected]> |
7695 | ||
55438702 ILT |
7696 | * object.cc (Sized_relobj::include_section_group): Check for |
7697 | invalid section group. | |
7698 | ||
c165fb93 ILT |
7699 | * object.cc (make_elf_object): Correct test for 64-bit ELF file |
7700 | header size. | |
7701 | ||
7ef73768 ILT |
7702 | * readsyms.cc (Read_symbols::do_read_symbols): Use get_view rather |
7703 | than read for file header. | |
7704 | * archive.cc (Archive::include_member): Likewise. | |
7705 | ||
6194aaab L |
7706 | 2008-04-23 Paolo Bonzini <[email protected]> |
7707 | ||
7708 | * aclocal.m4: Regenerate. | |
7709 | * configure: Regenerate. | |
7710 | ||
d491d34e ILT |
7711 | 2008-04-19 Ian Lance Taylor <[email protected]> |
7712 | ||
5ea2bac6 ILT |
7713 | * version.cc (version_string): Bump to 1.6. |
7714 | ||
7bc3e21a ILT |
7715 | * testsuite/Makefile.am (many_sections_r_test): New target. |
7716 | (many_sections_r_test_SOURCES): Remove. | |
7717 | (many_sections_r_test_DEPENDENCIES): Remove. | |
7718 | (many_sections_r_test_LDFLAGS): Remove. | |
7719 | (many_sections_r_test_LDADD): Remove. | |
7720 | ||
7fcd3aa9 ILT |
7721 | * object.cc (Sized_relobj::do_add_symbols): Always pass |
7722 | local_symbol_count_ to add_from_relobj. | |
7723 | ||
4c94d6ae ILT |
7724 | * testsuite/Makefile.am (many_sections_check.h): Only check one in |
7725 | every thousand variables. | |
7726 | * testsuite/Makefile.in: Rebuild. | |
7727 | ||
d491d34e ILT |
7728 | * object.cc (Xindex::initialize_symtab_xindex): New function. |
7729 | (Xindex::read_symtab_xindex): New function. | |
7730 | (Xindex::sym_xindex_to_shndx): New function. | |
7731 | (Sized_relobj::find_symtab): Pick up SHT_SYMTAB_SHNDX section if | |
7732 | available. | |
7733 | (Sized_relobj::do_initialize_xindex): New function. | |
7734 | (Sized_relobj::do_read_symbols): Adjust section links. | |
7735 | (Sized_relobj::symbol_section_and_value): Add is_ordinary | |
7736 | parameter. Change all callers. | |
7737 | (Sized_relobj::include_section_group): Adjust section links and | |
7738 | symbol section indexes. | |
7739 | (Sized_relobj::do_layout): Adjust section links. | |
7740 | (Sized_relobj::do_count_local_symbols): Adjust section links and | |
7741 | symbol section indexes. | |
7742 | (Sized_relobj::do_finalize_local_symbols): Distinguish between | |
7743 | ordinary and special symbols. | |
7744 | (Sized_relobj::write_local_symbols): Add symtab_xindex and | |
7745 | dynsym_xindex parameters. Change all callers. Adjust section | |
7746 | links. Use SHN_XINDEX when needed. | |
7747 | (Sized_relobj::get_symbol_location_info): Adjust section links. | |
7748 | Don't get fooled by special symbols. | |
7749 | * object.h (class Xindex): Define. | |
7750 | (class Object): Add xindex_ parameter. Declare virtual functoin | |
7751 | do_initialize_xindex. | |
7752 | (Object::adjust_sym_shndx): New function. | |
7753 | (Object::set_xindex): New protected function. | |
7754 | (class Symbol_value): Add is_ordinary_shndx_ field. | |
7755 | (Symbol_value::Symbol_value): Initialize is_ordinary_shndx_. | |
7756 | (Symbol_value::value): Assert ordinary section. | |
7757 | (Symbol_value::initialize_input_to_output_map): Likewise. | |
7758 | (Symbol_value::set_input_shndx): Add is_ordinary parameter. | |
7759 | Change all callers. | |
7760 | (Symbol_value::input_shndx): Add is_ordinary parameter. Change | |
7761 | all callers. | |
7762 | (class Sized_relobj): Update declarations. | |
7763 | (Sized_relobj::local_symbol_input_shndx): Add is_ordinary | |
7764 | parameter. Change all callers. | |
7765 | (Sized_relobj::adjust_shndx): New function. | |
7766 | * dynobj.cc (Sized_dynobj::Sized_dynobj): Initialize dynsym_shndx_ | |
7767 | field. | |
7768 | (Sized_dynobj::find_dynsym_sections): Remove pdynsym_shndx | |
7769 | parameter. Change all callers. Pick up SHT_DYNSYM_SHNDX section | |
7770 | for SHT_DYNSYM section if available. Set dynsym_shndx_ field. | |
7771 | (Sized_dynobj::read_dynsym_section): Adjust section links. | |
7772 | (Sized_dynobj::read_dynamic): Likewise. | |
7773 | (Sized_dynobj::do_read_symbols): Use dynsym_shndx_ field. Adjust | |
7774 | section links. | |
7775 | (Sized_dynobj::do_initialize_xindex): New function. | |
7776 | * dynobj.h (class Sized_dynobj): Add dynsym_shndx_ field. Declare | |
7777 | do_initialize_xindex. | |
7778 | (Sized_dynobj::adjust_shndx): New function. | |
7779 | * layout.cc (Layout::Layout): Initialize symtab_xindex_ and | |
7780 | dynsym_xindex_ fields. | |
7781 | (Layout::finalize): Add a call to set_section_indexes before | |
7782 | creating the symtab sections. | |
7783 | (Layout::set_section_indexes): Don't do anything if the section | |
7784 | already has a section index. | |
7785 | (Layout::create_symtab_sections): Add shnum parameter. Change | |
7786 | caller. Create .symtab_shndx section if needed. | |
7787 | (Layout::create_shdrs): Add shstrtab_section parameter. Change | |
7788 | caller. | |
7789 | (Layout::allocated_output_section_count): New function. | |
7790 | (Layout::create_dynamic_symtab): Create .dynsym_shndx section if | |
7791 | needed. | |
7792 | * layout.h (class Layout): Add symtab_xindex_ and dynsym_xindex_ | |
7793 | fields. Update declarations. | |
7794 | (Layout::symtab_xindex): New function. | |
7795 | (Layout::dynsym_xindex): New function. | |
7796 | (class Write_symbols_task): Add layout_ field. | |
7797 | (Write_symbols_task::Write_symbols_task): Add layout parameter. | |
7798 | Change caller. | |
7799 | * output.cc (Output_section_headers::Output_section_headers): Add | |
7800 | shstrtab_section parameter. Change all callers. | |
7801 | (Output_section_headers::do_sized_write): Store overflow values | |
7802 | for section count and section string table section index in | |
7803 | section header zero. | |
7804 | (Output_file_header::do_sized_write): Check for overflow of | |
7805 | section count and section string table section index. | |
7806 | (Output_symtab_xindex::do_write): New function. | |
7807 | (Output_symtab_xindex::endian_do_write): New function. | |
7808 | * output.h (class Output_section_headers): Add shstrtab_section_. | |
7809 | Update declarations. | |
7810 | (class Output_symtab_xindex): Define. | |
7811 | (Output_section::has_out_shndx): New function. | |
7812 | * symtab.cc (Symbol::init_fields): Initialize is_ordinary_shndx_ | |
7813 | field. | |
7814 | (Symbol::init_base): Add st_shndx and is_ordinary parameters. | |
7815 | Change all callers. | |
7816 | (Sized_symbol::init): Likewise. | |
7817 | (Symbol::output_section): Check for ordinary symbol. | |
7818 | (Symbol_table::add_from_object): Remove orig_sym parameter. Add | |
7819 | st_shndx, is_ordinary, and orig_st_shndx parameters. Change all | |
7820 | callers. | |
7821 | (Symbol_table::add_from_relobj): Add symndx_offset parameter. | |
7822 | Change all callers. Simplify handling of symbols from sections | |
7823 | not included in the link. | |
7824 | (Symbol_table::add_from_dynobj): Handle ordinary symbol | |
7825 | distinction. | |
7826 | (Weak_alias_sorter::operator()): Assert that symbols are | |
7827 | ordinary. | |
7828 | (Symbol_table::sized_finalize_symbol): Handle ordinary symbol | |
7829 | distinction. | |
7830 | (Symbol_table::write_globals): Add symtab_xindex and dynsym_xindex | |
7831 | parameters. Change all callers. | |
7832 | (Symbol_table::sized_write_globals): Likewise. Handle ordinary | |
7833 | symbol distinction. Use SHN_XINDEX when needed. | |
7834 | (Symbol_table::write_section_symbol): Add symtab_xindex | |
7835 | parameter. Change all callers. | |
7836 | (Symbol_table::sized_write_section_symbol): Likewise. Use | |
7837 | SHN_XINDEX when needed. | |
7838 | * symtab.h (class Symbol): Add is_ordinary_shndx_ field. Update | |
7839 | declarations. | |
7840 | (Symbol::shndx): Add is_ordinary parameter. Change all callers. | |
7841 | (Symbol::is_defined): Check is_ordinary. | |
7842 | (Symbol::is_undefined, Symbol::is_weak_undefined): Likewise. | |
7843 | (Symbol::is_absolute, Symbol::is_common): Likewise. | |
7844 | (class Sized_symbol): Update declarations. | |
7845 | (class Symbol_table): Update declarations. | |
7846 | * resolve.cc (Symbol::override_base): Add st_shndx and is_ordinary | |
7847 | parameters. Change all callers. | |
7848 | (Sized_symbol::override): Likewise. | |
7849 | (Symbol_table::override): Likewise. | |
7850 | (symbol_to_bits): Add is_ordinary parameter. Change all callers. | |
7851 | (Symbol_table::resolve): Remove orig_sym parameter. Add st_shndx, | |
7852 | is_ordinary, and orig_st_shndx parameters. Change all callers. | |
7853 | * copy-relocs.cc (Copy_relocs::emit_copy_reloc): Require symbol | |
7854 | to be in an ordinary section. | |
7855 | * dwarf_reader.cc (Sized_dwarf_line_info::symbol_section): Add | |
7856 | object and is_ordinary parameters. Change all callers. | |
7857 | (Sized_dwarf_line_info::read_relocs): Add object parameter. | |
7858 | Change all callers. Don't add undefined or non-ordinary symbols | |
7859 | to reloc_map_. | |
7860 | (Sized_dwarf_line_info::read_line_mappings): Add object parameter. | |
7861 | Change all callers. | |
7862 | * dwarf_reader.h (class Sized_dwarf_line_info): Update | |
7863 | declarations. | |
7864 | * ehframe.cc (Eh_frame::read_fde): Check for ordinary symbol. | |
7865 | * reloc.cc (Sized_relobj::do_read_relocs): Adjust section links. | |
7866 | (Sized_relobj::relocate_sections): Likewise. | |
7867 | * target-reloc.h (scan_relocs): Adjust section symbol index. | |
7868 | (scan_relocatable_relocs): Likewise. | |
7869 | * i386.cc (Scan::local): Check for ordinary symbols. | |
7870 | * sparc.cc (Scan::local): Likewise. | |
7871 | * x86_64.cc (Scan::local): Likewise. | |
7872 | * testsuite/binary_unittest.cc (Sized_binary_test): Update calls | |
7873 | to symbol_section_and_value. | |
7874 | * testsuite/many_sections_test.cc: New file. | |
7875 | * testsuite/Makefile.am (BUILT_SOURCES): Define. | |
7876 | (check_PROGRAMS): Add many_sections_test. | |
7877 | (many_sections_test_SOURCES): Define. | |
7878 | (many_sections_test_DEPENDENCIES): Define. | |
7879 | (many_sections_test_LDFLAGS): Define. | |
7880 | (BUILT_SOURCES): Add many_sections_define.h. | |
7881 | (many_sections_define.h): New target. | |
7882 | (BUILT_SOURCES): Add many_sections_check.h. | |
7883 | (many_sections_check.h): New target. | |
7884 | (check_PROGRAMS): Add many_sections_r_test. | |
7885 | (many_sections_r_test_SOURCES): Define. | |
7886 | (many_sections_r_test_DEPENDENCIES): Define. | |
7887 | (many_sections_r_test_LDFLAGS): Define. | |
7888 | (many_sections_r_test_LDADD): Define. | |
7889 | (many_sections_r_test.o): New target. | |
7890 | * testsuite/Makefile.in: Rebuild. | |
7891 | ||
c5818ff1 CC |
7892 | 2008-04-17 Cary Coutant <[email protected]> |
7893 | ||
7894 | * errors.cc (Errors::info): New function. | |
7895 | (gold_info): New function. | |
7896 | * errors.h (Errors::info): New function. | |
7897 | * gold.h (gold_info): New function. | |
7898 | * object.cc (Input_objects::add_object): Print trace output. | |
7899 | * options.cc (options::parse_set): New function. | |
7900 | (General_options::parse_wrap): Deleted. | |
7901 | (General_options::General_options): Deleted initializer. | |
7902 | * options.h (options::String_set): New typedef. | |
7903 | (options::parse_set): New function. | |
7904 | (DEFINE_set): New macro. | |
7905 | (General_options::wrap): Changed to use DEFINE_set. Changed | |
7906 | callers of any_wrap_symbols and is_wrap_symbol. | |
7907 | (General_options::trace, General_options::trace_symbol): | |
7908 | New options. | |
7909 | (General_options::any_wrap_symbols, General_options::is_wrap_symbol) | |
7910 | (General_options::wrap_symbols_): Deleted. | |
7911 | * symtab.cc (Symbol_table::add_from_object): Print trace output. | |
7912 | ||
b5be4a7c DM |
7913 | 2008-04-17 David S. Miller <[email protected]> |
7914 | ||
7915 | * options.cc (General_options::parse_V): New function. | |
7916 | * options.h: Add entries for -V and -Qy. | |
7917 | ||
155a0dd7 ILT |
7918 | 2008-04-17 Ian Lance Taylor <[email protected]> |
7919 | ||
7920 | * common.cc (Symbol_table::allocate_commons): Remove options | |
7921 | parameter. Change caller. | |
7922 | (Symbol_table::do_allocate_commons): Remove options parameter. | |
7923 | Change caller. Just call do_allocate_commons_list twice. | |
7924 | (Symbol_table::do_allocate_commons_list): New function, broken out | |
7925 | of do_allocate_commons. | |
7926 | * common.h (class Allocate_commons_task): Remove options_ field. | |
7927 | Update constructor. | |
7928 | * symtab.cc (Symbol_table::Symbol_table): Initialize | |
7929 | tls_commons_. | |
7930 | (Symbol_table::add_from_object): Put TLS common symbols on | |
7931 | tls_commons_ list. | |
7932 | (Symbol_table::sized_finalize_symbol): Handle STT_TLS symbols | |
7933 | which are IN_OUTPUT_DATA. | |
7934 | * symtab.h (class Symbol_table): Add tls_commons_ field. Update | |
7935 | allocate_commons and do_allocate_commons declarations. Declare | |
7936 | do_allocate_commons_list. | |
7937 | * gold.cc (queue_middle_tasks): Update creation of | |
7938 | Allocate_commons_task to not pass options. | |
7939 | * testsuite/Makefile.am (INCLUDES): Add -I.. . | |
7940 | (TLS_TEST_C_FLAGS): New variable. | |
7941 | (tls_test_c_pic.o): New target. | |
7942 | (tls_test_shared.so): Link in tls_test_c_pic.o. | |
7943 | (tls_test_c_pic_ie.o): New target. | |
7944 | (tls_test_ie_shared.so): Link in tls_test_c_pic_ie.o. | |
7945 | (tls_test_DEPENDENCIES, tls_test_LDADD): Add tls_test_c.o. | |
7946 | (tls_test_c.o): New target. | |
7947 | (tls_pic_test_DEPENDENCIES): Add tls_test_c_pic.o. | |
7948 | (tls_pic_test_LDADD): Likewise. | |
7949 | (tls_shared_gd_to_ie_test_DEPENDENCIES): Add tls_test_c_pic.o. | |
7950 | (tls_shared_gd_to_ie_test_LDADD): Likewise. | |
7951 | (tls_test_c_gnu2.o): New target. | |
7952 | (tls_shared_gnu2_gd_to_ie_test_DEPENDENCIES): Add | |
7953 | tls_test_c_gnu2.o. | |
7954 | (tls_shared_gnu2_gd_to_ie_test_LDADD): Likewise. | |
7955 | (tls_test_gnu2_shared.so): Link in tls_test_c_gnu2.o. | |
7956 | (tls_test_shared_nonpic.so): Link in tls_test_c.o. | |
7957 | * testsuite/tls_test.cc: Include "config.h". | |
7958 | (t_last): Call t11_last. | |
7959 | * testsuite/tls_test.h (t11, t11_last): Declare. | |
7960 | * testsuite/tls_test_c.c: New file. | |
7961 | * testsuite/tls_test_main.cc (thread_routine): Call t11. | |
7962 | * configure.ac: Check for OpenMP support. | |
7963 | * configure, config.in, Makefile.in: Rebuild. | |
7964 | * testsuite/Makefile.in: Rebuild. | |
7965 | ||
edfbb029 CC |
7966 | 2008-04-16 Cary Coutant <[email protected]> |
7967 | ||
7968 | * i386.cc (Target_i386::define_tls_base_symbol): New function. | |
7969 | (Target_i386::tls_base_symbol_defined_): New field. | |
7970 | (Target_i386::Scan::local): Define _TLS_MODULE_BASE_ symbol. | |
7971 | (Target_i386::Scan::global): Likewise. | |
7972 | * symtab.cc (sized_finalize_symbol): Add check for TLS symbol. | |
7973 | * x86_64.cc (Target_x86_64::define_tls_base_symbol): New function. | |
7974 | (Target_x86_64::tls_base_symbol_defined_): New field. | |
7975 | (Target_x86_64::Scan::local): Define _TLS_MODULE_BASE_ symbol. | |
7976 | (Target_x86_64::Scan::global): Likewise. | |
7977 | ||
f3c69fca CC |
7978 | 2008-04-16 Cary Coutant <[email protected]> |
7979 | ||
7980 | * symtab.h (Symbol::is_strong_undefined): Removed unused function. | |
7981 | (Symbol::needs_plt_entry): Allow weak undefined symbols. | |
7982 | (Symbol::needs_dynamic_reloc): Allow weak undefined symbols when | |
7983 | building shared libraries. | |
7984 | * testsuite/Makefile.am (weak_undef_nonpic_test): New target. | |
7985 | (weak_undef_file1_nonpic.o, weak_undef_file2_nonpic.o) | |
7986 | (weak_undef_lib_nonpic.so, alt/weak_undef_lib_nonpic.so): New targets. | |
7987 | * testsuite/Makefile.in: Rebuild. | |
7988 | * testsuite/weak_undef.h: New file. | |
7989 | * testsuite/weak_undef_file1.cc: Add extra test cases. | |
7990 | * testsuite/weak_undef_file2.cc: Likewise. | |
7991 | * testsuite/weak_undef_test.cc: Likewise. | |
7992 | ||
7c414435 DM |
7993 | 2008-04-16 David S. Miller <[email protected]> |
7994 | ||
32b769e1 DM |
7995 | * sparc.cc (Target_sparc::Scan): Change from struct to class. |
7996 | Add issued_non_pic_error_ field. Declare check_non_pic. | |
7997 | (Target_sparc::Scan::check_non_pic): New function. | |
7998 | (Target_sparc::Scan::local): Call check_non_pic as appropriate. | |
7999 | (Target_sparc::Scan::global): Likewise. | |
8000 | ||
11936fb1 DM |
8001 | * configure.ac (FN_PTRS_IN_SO_WITHOUT_PIC): Add sparc64. |
8002 | * configure: Rebuild. | |
8003 | ||
7c414435 DM |
8004 | * options.h (DEFINE_enable): New macro. |
8005 | (new_dtags): New enable option. | |
8006 | (initfirst, interpose, loadfltr, nodefaultlib, | |
8007 | nodelete, nodlopen, nodump): New -z options. | |
8008 | * layout.cc (Layout:finish_dynamic_section): If new | |
8009 | dtags enabled, emit DT_RUNPATH. Also, emit a | |
8010 | DT_FLAGS_1 containing any specified -z flags. | |
8011 | ||
85c7bf8b ILT |
8012 | 2008-04-16 Ian Lance Taylor <[email protected]> |
8013 | ||
12c0daef ILT |
8014 | * copy-relocs.cc: New file. |
8015 | * copy-relocs.h: New file. | |
8016 | * reloc.cc: Remove Copy_relocs code. | |
8017 | * reloc.h: Likewise. | |
8018 | * reloc-types.h (struct Reloc_types) [both versions]: Add | |
8019 | get_reloc_addend_noerror. | |
8020 | * output.h (class Output_data_reloc<elfcpp::SHT_REL>): Add | |
8021 | variants of add_global which take an addend which must be zero. | |
8022 | * i386.cc: Include "copy-relocs.h". | |
8023 | (class Target_i386): Change type of copy_relocs_ to variable, | |
8024 | update initializer. | |
8025 | (Target_i386::copy_reloc): Rewrite to pass to Copy_relocs class. | |
8026 | Change all callers. | |
8027 | (Target_i386::do_finalize_sections): Change handling of | |
8028 | copy_relocs_. | |
8029 | * sparc.cc: Include "copy-relocs.h". | |
8030 | (class Target_sparc): Change type of copy_relocs_ to variable, | |
8031 | update initializer. | |
8032 | (Target_sparc::copy_reloc): Rewrite to pass to Copy_relocs class. | |
8033 | Change all callers. | |
8034 | (Target_sparc::do_finalize_sections): Change handling of | |
8035 | copy_relocs_. | |
8036 | * x86_64.cc: Include "copy-relocs.h". | |
8037 | (class Target_x86_64): Change type of copy_relocs_ to variable, | |
8038 | update initializer. | |
8039 | (Target_x86_64::copy_reloc): Rewrite to pass to Copy_relocs | |
8040 | class. Change all callers. | |
8041 | (Target_x86_64::do_finalize_sections): Change handling of | |
8042 | copy_relocs_. | |
8043 | * Makefile.am (CCFILES): Add copy-relocs.cc. | |
8044 | (HFILES): Add copy-relocs.h. | |
8045 | ||
4f4995b6 ILT |
8046 | * Makefile.in, aclocal.m4, testsuite/Makefile.in: Rebuild. |
8047 | ||
85c7bf8b ILT |
8048 | * testsuite/script_test_4.sh: Permit leading zeroes. |
8049 | ||
4f2a9edd ILT |
8050 | 2008-04-15 Ian Lance Taylor <[email protected]> |
8051 | ||
e6188289 ILT |
8052 | * script-sections.cc (Script_sections::create_segments): Use |
8053 | header_size_adjustment even when there is enough room for the | |
8054 | headers. | |
8055 | * testsuite/script_test_4.sh: New file. | |
8056 | * testsuite/script_test_4.t: New file. | |
8057 | * testsuite/Makefile.am (check_SCRIPTS): Add script_test_4.sh. | |
8058 | (check_DATA): Add script_test_4.stdout. | |
8059 | (MOSTLYCLEANFILES): Likewise. | |
8060 | (script_test_4): New target. | |
8061 | (script_test_4.stdout): New target. | |
8062 | * testsuite/Makefile.in: Rebuild. | |
8063 | ||
4f2a9edd ILT |
8064 | * sparc.cc: Add definitions for Output_data_plt_sparc class |
8065 | constants. | |
8066 | ||
f5314dd5 DM |
8067 | 2008-04-14 David S. Miller <[email protected]> |
8068 | ||
8069 | * sparc.cc: New file. | |
8070 | * Makefile.am (TARGETSOURCES): Add sparc.cc | |
8071 | (ALL_TARGETOBJS): Add sparc.$(OBJEXT) | |
8072 | * configure.tgt: Document targ_extra_size and | |
8073 | targ_extra_big_endian. Add entries for sparc-* and | |
8074 | sparc64-*. | |
8075 | * configure.ac: Handle targ_extra_size and | |
8076 | targ_extra_big_endian. | |
8077 | * Makefile.in: Rebuild. | |
8078 | * configure: Likewise. | |
8079 | * po/POTFILES.in: Likewise. | |
8080 | * po/gold.pot: Likewise. | |
8081 | ||
154e0e9a ILT |
8082 | 2008-04-14 Ian Lance Taylor <[email protected]> |
8083 | ||
8084 | * layout.cc (Layout::Layout): Initialize sections_are_attached_. | |
8085 | (Layout::get_output_section): Ignore SHF_WRITE and SHF_EXECINSTR | |
8086 | in the name/type/flags to section mapping. Don't call | |
8087 | allocate_output_section. | |
8088 | (Layout::choose_output_section): Change parameter from adjust_name | |
8089 | to is_input_section. Don't permit input sections after sections | |
8090 | are attached to segments. Don't call allocate_output_section. | |
8091 | (Layout::layout_eh_frame): Call update_flags_for_input_section, | |
8092 | not write_enable_output_section. | |
8093 | (Layout::make_output_section): Don't push to | |
8094 | unattached_section_list_ nor call attach_to_segment. Call | |
8095 | attach_section_to_segment if sections are attached. | |
8096 | (Layout::attach_sections_to_segments): New function. | |
8097 | (Layout::attach_section_to_segment): New function. | |
8098 | (Layout::attach_allocated_section_to_segment): Rename from | |
8099 | attach_to_segment. Remove flags parameter. | |
8100 | (Layout::allocate_output_section): Remove function. | |
8101 | (Layout::write_enable_output_section): Remove function. | |
8102 | * layout.h (class Layout): Update for above changes. Add new | |
8103 | field sections_are_attached_. | |
8104 | * output.h (Output_section::update_flags_for_input_section): New | |
8105 | function. | |
8106 | * output.cc (Output_section::add_input_section): Call | |
8107 | update_flags_for_input_section. | |
8108 | * gold.cc (queue_middle_tasks): Call attach_sections_to_segments. | |
8109 | ||
009a67a2 CC |
8110 | 2008-04-11 Cary Coutant <[email protected]> |
8111 | ||
8112 | * i386.cc (Target_i386::got_mod_index_entry): Restore code previously | |
8113 | thought unnecessary. | |
8114 | * x86_64.cc (Target_x86_64::got_mod_index_entry): Likewise. | |
8115 | ||
759b1a24 ILT |
8116 | 2008-04-11 Ian Lance Taylor <[email protected]> |
8117 | ||
8118 | * output.h (class Output_section_data): Remove inline definition | |
8119 | of set_addralign. | |
8120 | * output.cc (Output_section_data::set_addralign): New function. | |
8121 | ||
c2b45e22 CC |
8122 | 2008-04-11 Cary Coutant <[email protected]> |
8123 | ||
8124 | Add support for TLS descriptors for i386 and x86_64. | |
8125 | * i386.cc (Target_i386::Relocate::tls_desc_gd_to_ie): New function. | |
8126 | (Target_i386::Relocate::tls_desc_gd_to_le): New function. | |
8127 | (Target_i386::Got_type): Add GOT_TYPE_TLS_NOFFSET and | |
8128 | GOT_TYPE_TLS_DESC. | |
8129 | (Target_i386::got_mod_index_entry): Remove unnecessary code. | |
8130 | (Target_i386::Scan::local): Implement R_386_TLS_GOTDESC and | |
8131 | R_386_TLS_DESC_CALL relocations. Fix problem with initial-exec | |
8132 | relocations. | |
8133 | (Target_i386::Scan::global): Fix problem with GD-to-IE relaxation. | |
8134 | Implement R_386_TLS_GOTDESC and R_386_TLS_DESC_CALL relocations; | |
8135 | Fix problem with initial-exec relocations. | |
8136 | (Target_i386::Relocate::relocate_tls): Likewise. | |
8137 | (Target_i386::Relocate::tls_gd_to_ie): Fix problem with GD-to-IE | |
8138 | relaxation. | |
8139 | * output.cc (Output_data_dynamic::Dynamic_entry::write): Add | |
8140 | support for section-plus-offset dynamic table entries. | |
8141 | * output.h (Output_data_dynamic::add_section_plus_offset): New function. | |
8142 | (Output_data_dynamic::Dynamic_entry): Add support for | |
8143 | section-plus-offset dynamic table entries. | |
8144 | (Output_data_dynamic::Classification): Likewise. | |
8145 | (Output_data_dynamic::classification_): Renamed offset_. | |
8146 | * x86_64.cc (Target_x86_64::Relocate::tls_desc_gd_to_ie): New function. | |
8147 | (Target_x86_64::Relocate::tls_desc_gd_to_le): New function. | |
8148 | (Target_x86_64::make_plt_section): New function. | |
8149 | (Target_x86_64::reserve_tlsdesc_entries): New function. | |
8150 | (Output_data_plt_x86_64::Output_data_plt_x86_64): Add new parameter. | |
8151 | (Output_data_plt_x86_64::reserve_tlsdesc_entry): New function. | |
8152 | (Output_data_plt_x86_64::has_tlsdesc_entry): New function. | |
8153 | (Output_data_plt_x86_64::get_tlsdesc_got_offset): New function. | |
8154 | (Output_data_plt_x86_64::get_tlsdesc_plt_offset): New function. | |
8155 | (Output_data_plt_x86_64::tlsdesc_plt_entry): New field. | |
8156 | (Output_data_plt_x86_64::set_final_data_size): Move out of line; | |
8157 | add extra PLT entry for TLS descriptors. | |
8158 | (Output_data_plt_x86_64::got_): New field. | |
8159 | (Output_data_plt_x86_64::tlsdesc_got_offset_): New field. | |
8160 | (Output_data_plt_x86_64::Output_data_plt_x86_64): Initialize new | |
8161 | fields. | |
8162 | (Output_data_plt_x86_64::do_write): Write extra PLT entry for TLS | |
8163 | descriptors. | |
8164 | (Target_x86_64::make_plt_entry): Factor out make_plt_section. | |
8165 | (Target_x86_64::got_mod_index_entry): Remove unnecessary code. | |
8166 | (Target_x86_64::Scan::local): Implement R_386_TLS_GOTDESC and | |
8167 | R_386_TLS_DESC_CALL relocations. | |
8168 | (Target_x86_64::Scan::global): Likewise. | |
8169 | (Target_x86_64::do_finalize_sections): Add dynamic table entries | |
8170 | for TLS descriptors. | |
8171 | (Relocate::relocate_tls): Fix problem with GD-to-IE relaxation. | |
8172 | Implement R_386_TLS_GOTDESC and R_386_TLS_DESC_CALL relocations. | |
8173 | (Target_x86_64::Relocate::tls_gd_to_ie): Fix problem with | |
8174 | GD-to-IE relaxation. | |
8175 | * configure.ac: Export new conditional variables TLS_GNU2_DIALECT | |
8176 | and TLS_DESCRIPTORS. | |
8177 | * Makefile.in: Rebuild. | |
8178 | * configure: Rebuild. | |
8179 | * testsuite/Makefile.am (tls_shared_gd_to_ie_test): New target. | |
8180 | (tls_test_shared2.so): New target. | |
8181 | (tls_shared_gd_to_ie_test_SOURCES): New variable. | |
8182 | (tls_shared_gd_to_ie_test_DEPENDENCIES): New variable. | |
8183 | (tls_shared_gd_to_ie_test_LDFLAGS): New variable. | |
8184 | (tls_shared_gd_to_ie_test_LDADD): New variable. | |
8185 | (tls_shared_gnu2_gd_to_ie_test): New target. | |
8186 | (tls_test_gnu2.o, tls_test_file2_gnu2.o, tls_test_gnu2_shared2.so): | |
8187 | New targets. | |
8188 | (tls_shared_gnu2_gd_to_ie_test_SOURCES): New variable. | |
8189 | (ls_shared_gnu2_gd_to_ie_test_DEPENDENCIES): New variable. | |
8190 | (tls_shared_gnu2_gd_to_ie_test_LDFLAGS): New variable. | |
8191 | (tls_shared_gnu2_gd_to_ie_test_LDADD): New variable. | |
8192 | (tls_shared_gnu2_test): New target. | |
8193 | (tls_test_gnu2_shared.so): New target. | |
8194 | (tls_shared_gnu2_test_SOURCES): New variable. | |
8195 | (tls_shared_gnu2_test_DEPENDENCIES): New variable. | |
8196 | (tls_shared_gnu2_test_LDFLAGS): New variable. | |
8197 | (tls_shared_gnu2_test_LDADD): New variable. | |
8198 | * testsuite/Makefile.in: Rebuild. | |
8199 | * testsuite/Makefile. | |
8200 | ||
83bfb6b7 ILT |
8201 | 2008-04-11 Ian Lance Taylor <[email protected]> |
8202 | ||
8203 | * testsuite/Makefile.am (justsyms_2r.o): Add dependency on | |
8204 | justsyms.t. | |
8205 | * testsuite/Makefile.in: Rebuild. | |
8206 | ||
8207 | * testsuite/script_test_2a.cc (script_test_string_a): Make 8 bytes | |
8208 | long. | |
8209 | * testsuite/script_test_2.cc (main): Adjust test. | |
8210 | ||
706e1f5e ILT |
8211 | 2008-04-11 David S. Miller <[email protected]> |
8212 | Ian Lance Taylor <[email protected]> | |
8213 | ||
8214 | * options.h (General_options): Add entries for '-Y' and | |
8215 | '-relax'. | |
8216 | * options.cc (General_options:finalize): If -Y was used, add those | |
8217 | entries to the library path instead of the default "/lib" and | |
8218 | "/usr/lib". | |
8219 | ||
7c98e6bb DM |
8220 | 2008-04-11 David S. Miller <[email protected]> |
8221 | ||
8222 | * testsuite/justsyms.t: Start at 0x100. | |
8223 | * testsuite/justsyms_1.cc: Adjust justsyms_string assertion. | |
83bfb6b7 ILT |
8224 | * testsuite/script_test_2b.cc (script_test_string_b): Make 8 bytes |
8225 | long. | |
8226 | * testsuite/script_test_2.cc: Adjust string and section length | |
8227 | checks. | |
7c98e6bb | 8228 | |
99a37bfd ILT |
8229 | 2008-04-09 Ian Lance Taylor <[email protected]> |
8230 | ||
2cefc357 ILT |
8231 | PR gold/5996 |
8232 | * script-sections.cc (Sections_element::allocate_to_segment): Add | |
8233 | orphan parameter. | |
8234 | (Output_section_definition::allocate_to_segment): Likewise. | |
8235 | (Orphan_output_section::allocate_to_segment): Likewise. | |
8236 | (Script_sections::attach_sections_using_phdrs_clause): Don't | |
8237 | propagate non-PT_LOAD segments to orphan sections. | |
8238 | * testsuite/Makefile.am (script_test_3.stdout): Generate using | |
8239 | readelf rather than objdump. | |
8240 | * testsuite/script_test_3.sh: Adjust accordingly. Test that | |
8241 | .interp section and PT_INTERP segment are the same size. | |
8242 | * testsuite/Makefile.in: Rebuild. | |
8243 | ||
99a37bfd ILT |
8244 | * symtab.cc (Symbol_table::add_from_dynobj): Only look for weak |
8245 | aliases for symbols defined in the same object. | |
8246 | * testsuite/Makefile.am (check_PROGRAMS): Add weak_alias_test. | |
8247 | (weak_alias_test_SOURCES): New variable. | |
8248 | (weak_alias_test_DEPENDENCIES): New variable. | |
8249 | (weak_alias_test_LDFLAGS): New variable. | |
8250 | (weak_alias_test_LDADD): New variable. | |
8251 | (weak_alias_test_1_pic.o, weak_alias_test_1.so): New targets. | |
8252 | (weak_alias_test_2_pic.o, weak_alias_test_2.so): New targets. | |
8253 | (weak_alias_test_3.o): New target. | |
8254 | (weak_alias_test_4_pic.o, weak_alias_test_4.so): New targets. | |
8255 | * testsuite/weak_alias_test_main.cc: New file. | |
8256 | * testsuite/weak_alias_test_1.cc: New file. | |
8257 | * testsuite/weak_alias_test_2.cc: New file. | |
8258 | * testsuite/weak_alias_test_3.cc: New file. | |
8259 | ||
780e49c5 ILT |
8260 | 2008-04-08 Ian Lance Taylor <[email protected]> |
8261 | ||
cdb0b8f5 ILT |
8262 | * options.h (class General_options): Add --noinhibit-exec option. |
8263 | * main.cc (main): Check --noinhibit-exec. | |
8264 | ||
0864d551 ILT |
8265 | * options.h (class General_options): Define --wrap as a special |
8266 | option. Add wrap_symbols_ field. | |
8267 | (General_options::any_wrap_symbols): New function. | |
8268 | (General_options::is_wrap_symbol): New function. | |
8269 | * options.cc (General_options::parse_wrap): New function. | |
8270 | (General_options::General_options): Initialize wrap_symbols_. | |
8271 | * symtab.cc (Symbol_table::wrap_symbol): New function. | |
8272 | (Symbol_table::add_from_object): Handle --wrap. | |
8273 | * symtab.h (class Symbol_table): Declare wrap_symbol. | |
8274 | * target.h (Target::wrap_char): New function. | |
8275 | (Target::Target_info): Add wrap_char field. | |
8276 | * i386.cc (Target_i386::i386_info): Initialize wrap_char. | |
8277 | * x86_64.cc (Target_x86_64::x86_64_info): Likewise. | |
8278 | * testsuite/testfile.cc (Target_test::test_target_info): | |
8279 | Likewise. | |
8280 | ||
789aa6de ILT |
8281 | * errors.cc (Errors::undefined_symbol): Mention symbol version if |
8282 | there is one. | |
8283 | ||
2c38906f ILT |
8284 | * layout.h (class Layout): Add added_eh_frame_data_ field. |
8285 | * layout.cc (Layout::Layout): Initialize new field. | |
8286 | (Layout::layout_eh_frame): Don't add eh_frame_data_ to .eh_frame | |
8287 | output section until we find a section we merged successfully. | |
8288 | * object.cc (Sized_relobj::check_eh_frame_flags): Don't require | |
8289 | that the size be non-zero. | |
8290 | ||
780e49c5 ILT |
8291 | * merge.cc (Object_merge_map::get_output_offset): Remove inline |
8292 | qualifier. | |
8293 | ||
7fcd0256 ILT |
8294 | 2008-04-08 Craig Silverstein <[email protected]> |
8295 | ||
8296 | * configure.ac: Export new conditional variable HAVE_ZLIB. | |
8297 | * testsuite/Makefile.am (flagstest_o_specialfile): Condition | |
8298 | on HAVE_ZLIB. | |
8299 | (flagstest_o_specialfile_and_compress_debug_sections): Likewise. | |
8300 | * configure, Makefile.in, testsuite/Makefile.in: Rebuild. | |
8301 | ||
6835af53 ILT |
8302 | 2008-04-07 Ian Lance Taylor <[email protected]> |
8303 | ||
e24f324c ILT |
8304 | * version.cc (version_string): Set to "1.5". |
8305 | ||
a036edd8 ILT |
8306 | * x86_64.cc (Target_x86_64::Scan): Change from struct to class. |
8307 | Add issued_non_pic_error_ field. Declare check_non_pic. | |
8308 | (Target_x86_64::Scan::check_non_pic): New function. | |
8309 | (Target_x86_64::Scan::local): Call check_non_pic as appropriate. | |
8310 | (Target_x86_64::Scan::global): Likewise. | |
8311 | ||
624f8810 ILT |
8312 | * output.cc (Output_reloc<SHT_REL>::local_section_offset): Add |
8313 | addend parameter. Change caller. Handle merge sections. | |
8314 | (Output_reloc<SHT_REL>::symbol_value): Change parameter type from | |
8315 | Address to Addend. Don't add in the result of | |
8316 | local_section_offset, pass down the addend and use the returned | |
8317 | value. | |
8318 | * output.h (class Output_reloc<SHT_REL>): Add Addend typedef. | |
8319 | Update declarations of local_section_offset and symbol_value. | |
8320 | * testsuite/two_file_test_1.cc (t18): New function. | |
8321 | * testsuite/two_file_test_2.cc (f18): New function. | |
8322 | * testsuite/two_file_test_main.cc (main): Call t18. | |
8323 | * testsuite/two_file_test.h (t18, f18): Declare. | |
8324 | ||
6835af53 ILT |
8325 | * configure.ac: Don't test for objdump, c++filt, or readelf. |
8326 | * testsuite/Makefile.am: Remove READELF and OBJDUMP_AND_CPPFILT | |
8327 | conditionals. | |
8328 | (TEST_READELF): New variable. | |
8329 | (TEST_OBJDUMP, TEST_CXXFILT, TEST_STRIP): New variables. | |
8330 | (check_PROGRAMS): Add two_file_strip_test. | |
8331 | (two_file_strip_test): New target. | |
8332 | (check_PROGRAMS): Add two_file_same_shared_strip_test. | |
8333 | (two_file_same_shared_strip_test_SOURCES): New variable. | |
8334 | (two_file_same_shared_strip_test_DEPENDENCIES): New variable. | |
8335 | (two_file_same_shared_strip_test_LDFLAGS): New variable. | |
8336 | (two_file_same_shared_strip_test_LDADD): New variable. | |
8337 | (two_file_shared_strip.so): New target. | |
8338 | (ver_test_2.syms, ver_test_4.syms): Use TEST_READELF. | |
8339 | (ver_test_5.syms, ver_test_7.syms): Likewise. | |
8340 | (ver_matching_test.stdout): Use TEST_OBJDUMP and TEST_CXXFILT. | |
8341 | (strip_test_3.stdout): Use TEST_OBJDUMP. | |
8342 | * configure, Makefile.in, testsuite/Makefile.in: Rebuild. | |
8343 | ||
86925eef CC |
8344 | 2008-04-04 Cary Coutant <[email protected]> |
8345 | ||
8346 | * symtab.h (Symbol::is_weak_undefined): New function. | |
8347 | (Symbol::is_strong_undefined): New function. | |
8348 | (Symbol::is_absolute): New function. | |
8349 | (Symbol::needs_plt_entry): Exclude weak undefined symbols. | |
8350 | (Symbol::needs_dynamic_reloc): Exclude weak undefined and | |
8351 | absolute symbols. | |
8352 | * testsuite/Makefile.am (check_PROGRAMS): Add weak_undef_test. | |
8353 | (weak_undef_test): New target. | |
8354 | * testsuite/Makefile.in: Rebuild. | |
8355 | * testsuite/weak_undef_file1.cc: New file. | |
8356 | * testsuite/weak_undef_file2.cc: New file. | |
8357 | * testsuite/weak_undef_test.cc: New file. | |
8358 | ||
126f3ece ILT |
8359 | 2008-04-03 Craig Silverstein <[email protected]> |
8360 | ||
8361 | * compressed_output.h (class Output_compressed_section): Use | |
8362 | unsigned buffer. | |
8363 | * compressed_output.cc (zlib_compress): Use unsigned buffers, | |
8364 | add zlib header. | |
8365 | (zlib_compressed_suffix): Removed. | |
8366 | (Output_compressed_section::set_final_data_size): Use unsigned | |
8367 | buffers. | |
8368 | * testsuite/Makefile.am (flagstest_compress_debug_sections): | |
8369 | Fix linker invocation. | |
8370 | (flagstest_o_specialfile_and_compress_debug_sections): | |
8371 | Likewise. | |
8372 | * testsuite/Makefile.in: Regenerated. | |
8373 | ||
deae2a14 DM |
8374 | 2008-04-02 David S. Miller <[email protected]> |
8375 | ||
8376 | * dwarf_reader.cc (Sized_dwarf_line_info::read_header_prolog, | |
8377 | Sized_dwarf_line_info::process_one_opcode): Use Swap_unaligned. | |
8378 | ||
70752818 ILT |
8379 | 2008-04-02 Craig Silverstein <[email protected]> |
8380 | ||
8381 | * TODO: New file. | |
8382 | ||
39d0cb0e ILT |
8383 | 2008-04-02 Ian Lance Taylor <[email protected]> |
8384 | ||
8385 | * fileread.cc (File_read::find_view): Add byteshift and vshifted | |
8386 | parameters. Update for new key type to views_. Change all | |
8387 | callers. | |
8388 | (File_read::read): Adjust for byteshift in returned view. | |
8389 | (File_read::add_view): New function, broken out of | |
8390 | find_and_make_view. | |
8391 | (File_read::make_view): New function, broken out of | |
8392 | find_and_make_view. | |
8393 | (File_read::find_or_make_view): Add offset and aligned | |
8394 | parameters. Rewrite accordingly. Change all callers. | |
8395 | (File_read::get_view): Add offset and aligned parameters. Adjust | |
8396 | for byteshift in return value. | |
8397 | (File_read::get_lasting_view): Likewise. | |
8398 | * fileread.h (class File_read): Update declarations. | |
8399 | (class File_read::View): Add byteshift_ field. Add byteshift to | |
8400 | constructor. Add byteshift method. | |
8401 | * archive.h (Archive::clear_uncached_views): New function. | |
8402 | (Archive::get_view): Add aligned parameter. Change all callers. | |
8403 | * object.h (Object::get_view): Add aligned parameter. Change all | |
8404 | callers. | |
8405 | (Object::get_lasting_view): Likewise. | |
8406 | ||
8407 | * fileread.cc (File_read::release): Don't call clear_views if | |
8408 | there are multiple objects. | |
8409 | * fileread.h (File_read::clear_uncached_views): New function. | |
8410 | * archive.cc (Add_archive_symbols::run): Call clear_uncached_views | |
8411 | on the archive. | |
8412 | ||
a1207466 CC |
8413 | 2008-03-31 Cary Coutant <[email protected]> |
8414 | ||
8415 | Add thin archive support. | |
8416 | * archive.cc (Archive::armagt): New const. | |
8417 | (Archive::setup): Remove task parameter and calls to unlock. | |
8418 | (Archive::unlock_nested_archives): New function. | |
8419 | (Archive::read_header): Add nested_off parameter. Change | |
8420 | all callers. | |
8421 | (Archive::interpret_header): Likewise. | |
8422 | (Archive::include_all_members): Change to handle thin | |
8423 | archives. | |
8424 | (Archive::include_member): Likewise. | |
8425 | * archive.h (Archive::Archive): Add new parameters and | |
8426 | initializers. | |
8427 | (Archive::armagt): New const. | |
8428 | (Archive::setup): Remove task parameter. | |
8429 | (Archive::unlock_nested_archives): New function. | |
8430 | (Archive::read_header): Add nested_off parameter. | |
8431 | (Archive::interpret_header): Likewise. | |
8432 | (Archive::Nested_archive_table): New typedef. | |
8433 | (Archive::is_thin_archive_): New field. | |
8434 | (Archive::nested_archives_): New field. | |
8435 | (Archive::options_): New field. | |
8436 | (Archive::dirpath_): New field. | |
8437 | (Archive::task_): New field. | |
8438 | * readsyms.cc (Read_symbols::do_read_symbols): Add check | |
8439 | for thin archives. Pass additional parameters to | |
8440 | Archive::Archive. Unlock the archive file after calling | |
8441 | Archive::setup. | |
cd536b21 | 8442 | |
479f6503 ILT |
8443 | 2008-03-29 Ian Lance Taylor <[email protected]> |
8444 | ||
686c8caf ILT |
8445 | * symtab.cc (Symbol_table::do_define_as_constant): Don't force a |
8446 | version symbol to be local. | |
8447 | * testsuite/ver_test_4.sh: New file. | |
8448 | * testsuite/Makefile.am (check_SCRIPTS): Add ver_test_4.sh. | |
8449 | (check_DATA): Add ver_test_4.syms. | |
8450 | (ver_test_4.syms): New target. | |
8451 | * testsuite/Makefile.in: Rebuild. | |
8452 | ||
ab794b6b ILT |
8453 | * output.cc |
8454 | (Output_section::Input_section_sort_entry::has_priority): New | |
8455 | function. | |
8456 | (Output_section::Input_section_sort_entry::match_file_name): New | |
8457 | function. | |
8458 | (Output_section::Input_section_sort_entry::match_section_name): | |
8459 | Remove. | |
8460 | (Output_section::Input_section_sort_entry::match_section_name_prefix): | |
8461 | Remove. | |
8462 | (Output_section::Input_section_sort_entry::match_section_file): | |
8463 | Remove. | |
8464 | (Output_section::Input_section_sort_compare::operator()): Rewrite | |
8465 | using new Input_section_sort_entry functions. Sort crtbegin and | |
8466 | crtend first. Sort sections with no priority before sections with | |
8467 | a priority. | |
8468 | * testsuite/initpri1.c (d3): Check j != 4. | |
8469 | (cd5): New constructor/destructor function. | |
8470 | (main): Check j != 2. | |
8471 | ||
479f6503 ILT |
8472 | * symtab.cc (Symbol_table::add_from_object): If we don't use the |
8473 | new symbol when resolving, don't call set_is_default. | |
8474 | * testsuite/ver_test_7.cc: New file. | |
8475 | * testsuite/ver_test_7.sh: New file. | |
8476 | * testsuite/Makefile.am (ver_test_7.so): New target. | |
8477 | (ver_test_7.o): New target. | |
8478 | (check_SCRIPTS): Add ver_test_7.sh. | |
8479 | (check_DATA): Add ver_test_7.syms. | |
8480 | (ver_test_7.syms): New target. | |
8481 | ||
2fd32231 ILT |
8482 | 2008-03-28 Ian Lance Taylor <[email protected]> |
8483 | ||
8484 | * layout.cc (Layout::layout): If we see an input section with a | |
8485 | name that needs sorting, set the must_sort flag for the output | |
8486 | section. | |
8487 | (Layout::make_output_section): If the name of the output section | |
8488 | indicates that it might require sorting, set the may_sort flag. | |
8489 | * output.h (Output_section::may_sort_attached_input_sections): New | |
8490 | function. | |
8491 | (Output_section::set_may_sort_attached_input_sections): New | |
8492 | function. | |
8493 | (Output_section::must_sort_attached_input_sections): New | |
8494 | function. | |
8495 | (Output_section::set_must_sort_attached_input_sections): New | |
8496 | function. | |
8497 | (class Output_section): Declare Input_section_sort_entry. Define | |
8498 | Input_section_sort_compare. Declare | |
8499 | sort_attached_input_sections. Add new fields: | |
8500 | may_sort_attached_input_sections_, | |
8501 | must_sort_attached_input_sections_, | |
8502 | attached_input_sections_are_sorted_. | |
8503 | * output.cc (Output_section::Output_section): Initialize new | |
8504 | fields. | |
8505 | (Output_section::add_input_section): Add an entry to | |
8506 | input_sections_ if may_sort or must_sort are true. | |
8507 | (Output_section::set_final_data_size): Call | |
8508 | sort_attached_input_sections if necessary. | |
8509 | (Output_section::Input_section_sort_entry): Define new class. | |
8510 | (Output_section::Input_section_sort_compare::operator()): New | |
8511 | function. | |
8512 | (Output_section::sort_attached_input_sections): New function. | |
8513 | * configure.ac: Check whether the compiler supports constructor | |
8514 | priorities. Define a CONSTRUCTOR_PRIORITY automake conditional. | |
8515 | * testsuite/initpri1.c: New file. | |
8516 | * testsuite/Makefile.am (check_PROGRAMS): Add initpri1 if | |
8517 | CONSTRUCTOR_PRIORITY. | |
8518 | (initpri1_SOURCES, initpri1_DEPENDENCIES): New variables. | |
8519 | (initpri1_LDFLAGS): New variable. | |
8520 | * configure, Makefile.in, testsuite/Makefile.in: Rebuild. | |
8521 | ||
18e6b24e ILT |
8522 | 2008-03-27 Ian Lance Taylor <[email protected]> |
8523 | ||
49bdd526 ILT |
8524 | * common.cc (Sort_commons::operator): Correct sorting algorithm. |
8525 | * testsuite/common_test_1.c: New file. | |
8526 | * testsuite/Makefile.am (check_PROGRAMS): Add common_test_1. | |
8527 | (common_test_1_SOURCES): New variable. | |
8528 | (common_test_1_DEPENDENCIES): New variable. | |
8529 | (common_test_1_LDFLAGS): New variable. | |
8530 | ||
18e6b24e ILT |
8531 | * symtab.cc (Symbol_table::add_from_object): Handle saw_undefined_ |
8532 | and commons_ correctly when NAME/VERSION does not override | |
8533 | NAME/NULL. | |
8534 | * testsuite/ver_test_6.c: New file. | |
8535 | * testsuite/Makefile.am (check_PROGRAMS): Add ver_test_6 | |
8536 | (ver_test_6_SOURCES, ver_test_6_DEPENDENCIES): New variables. | |
8537 | (ver_test_6_LDFLAGS, ver_test_6_LDADD): New variables. | |
8538 | ||
04bf7072 ILT |
8539 | 2008-03-26 Ian Lance Taylor <[email protected]> |
8540 | ||
5871526f ILT |
8541 | * symtab.cc (Symbol_table::add_from_relobj): Don't set the version |
8542 | of an undefined symbol from a version script. | |
8543 | * testsuite/Makefile.am (ver_test_5.so): New target. | |
8544 | (ver_test_5.o): New target. | |
8545 | (check_SCRIPTS): Add ver_test_5.sh. | |
8546 | (check_DATA): Add ver_test_5.syms. | |
8547 | (ver_test_5.syms): New target. | |
8548 | * testsuite/ver_test_5.cc: New file. | |
8549 | * testsuite/ver_test_5.script: New file. | |
8550 | * testsuite/ver_test_5.sh: New file. | |
8551 | * Makefile.in, testsuite/Makefile.in: Rebuild. | |
8552 | ||
04bf7072 ILT |
8553 | PR gold/5986 |
8554 | Fix problems building gold with gcc 4.3.0. | |
8555 | * gold.h (TEMPLATE_ATTRIBUTE_PRINTF_4): Define. | |
8556 | (gold_error_at_location, gold_warning_at_location): Use it. | |
8557 | * configure.ac: Check whether we can compile and use a template | |
8558 | function with a printf attribute. | |
8559 | * x86_64.cc (Target_x86_64::do_code_fill): Swap out a 32-bit value | |
8560 | when jumping over bytes. | |
8561 | * object.cc: Instantiate Object::read_section_data. | |
8562 | * debug.h: Include <cstring> | |
8563 | * dwarf_reader.cc: Include <algorithm> | |
8564 | * main.cc: Include <cstring>. | |
8565 | * options.cc: Include <cstring>. | |
8566 | * output.cc: Include <cstring>. | |
8567 | * script.cc: Include <cstring>. | |
8568 | * script.h: Include <string>. | |
8569 | * symtab.cc: Include <cstring> and <algorithm>. | |
8570 | * target-select.cc: Include <cstring>. | |
8571 | * version.cc: Include <string>. | |
8572 | * testsuite/testmain.cc: Include <cstdlib>. | |
8573 | * configure, config.in: Rebuild. | |
8574 | ||
874c5b28 ILT |
8575 | 2008-03-25 Ian Lance Taylor <[email protected]> |
8576 | ||
819d6c3a ILT |
8577 | * options.cc: Include "../bfd/bfdver.h". |
8578 | (options::help): Print bug reporting address. | |
8579 | ||
f4b2c6f5 ILT |
8580 | * version.cc (print_version): Adjust output for current value of |
8581 | BFD_VERSION_STRING. | |
8582 | ||
8583 | * NEWS: New file. | |
8584 | ||
e96caa79 ILT |
8585 | * options.cc (options::help): Print list of supported targets. |
8586 | * target-select.h: Include <vector>. | |
8587 | (class Target_selector): Make machine_, size_, and is_big_endian_ | |
8588 | fields const. Add bfd_name_ and instantiated_target_ fields. | |
8589 | (Target_selector::Target_selector): Add bfd_name parameter. | |
8590 | (Target_selector::recognize): Make non-virtual, call | |
8591 | do_recognize. | |
8592 | (Target_selector::recognize_by_name): Make non-virtual, call | |
8593 | do_recognize_by_name. | |
8594 | (Target_selector::supported_names): New function. | |
8595 | (Target_selector::bfd_name): New function. | |
8596 | (Target_selector::do_instantiate_target): New pure virtual | |
8597 | function. | |
8598 | (Target_selector::do_recognize): New virtual function. | |
8599 | (Target_selector::do_recognize_by_name): New virtual function. | |
8600 | (Target_selector::instantiate_target): New private function. | |
8601 | (supported_target_names): Declare. | |
8602 | * target-select.cc (Target_selector::Target_selector): Update for | |
8603 | new parameter and fields. | |
8604 | (select_target_by_name): Check that the name matches before | |
8605 | calling recognize_by_name. | |
8606 | (supported_target_names): New function. | |
8607 | * i386.cc (class Target_selector_i386): Update Target_selector | |
8608 | constructor call. Remove recognize and recognize_by_name. Add | |
8609 | do_instantiate_target. | |
8610 | * x86_64.cc (class Target_selector_x86_64): Likewise. | |
8611 | * testsuite/testfile.cc (class Target_selector_test): Update for | |
8612 | changes to Target_selector. | |
8613 | ||
874c5b28 ILT |
8614 | * README: Rewrite, with some notes on unsupported features. |
8615 | ||
0a65a3a7 CC |
8616 | 2008-03-24 Cary Coutant <[email protected]> |
8617 | ||
8618 | * i386.cc (Target_i386::Got_type): New enum declaration. | |
8619 | (Target_i386::Scan::local): Updated callers of Output_data_got | |
8620 | member functions. | |
8621 | (Target_i386::Scan::global): Likewise. | |
8622 | (Target_i386::Relocate::relocate): Likewise. | |
8623 | (Target_i386::Relocate::relocate_tls): Likewise. | |
8624 | * object.h (Got_offset_list): New class. | |
8625 | (Sized_relobj::local_has_got_offset): Added got_type parameter. | |
8626 | (Sized_relobj::local_got_offset): Likewise. | |
8627 | (Sized_relobj::set_local_got_offset): Likewise. | |
8628 | (Sized_relobj::local_has_tls_got_offset): Removed. | |
8629 | (Sized_relobj::local_tls_got_offset): Removed. | |
8630 | (Sized_relobj::set_local_tls_got_offset): Removed. | |
8631 | (Sized_relobj::Local_got_offsets): Changed to store a list of offsets. | |
8632 | * output.cc (Output_data_got::add_global): Added got_type parameter. | |
8633 | (Output_data_got::add_global_with_rel): Likewise. | |
8634 | (Output_data_got::add_global_with_rela): Likewise. | |
8635 | (Output_data_got::add_global_pair_with_rel): New function. | |
8636 | (Output_data_got::add_global_pair_with_rela): New function. | |
8637 | (Output_data_got::add_local): Added got_type parameter. | |
8638 | (Output_data_got::add_local_with_rel): Likewise. | |
8639 | (Output_data_got::add_local_with_rela): Likewise. | |
8640 | (Output_data_got::add_local_pair_with_rel): New function. | |
8641 | (Output_data_got::add_local_pair_with_rela): New function. | |
8642 | (Output_data_got::add_global_tls): Removed. | |
8643 | (Output_data_got::add_global_tls_with_rel): Removed. | |
8644 | (Output_data_got::add_global_tls_with_rela): Removed. | |
8645 | (Output_data_got::add_local_tls): Removed. | |
8646 | (Output_data_got::add_local_tls_with_rel): Removed. | |
8647 | (Output_data_got::add_local_tls_with_rela): Removed. | |
8648 | * output.h (Output_data_got::add_global): Added got_type parameter. | |
8649 | (Output_data_got::add_global_with_rel): Likewise. | |
8650 | (Output_data_got::add_global_with_rela): Likewise. | |
8651 | (Output_data_got::add_global_pair_with_rel): New function. | |
8652 | (Output_data_got::add_global_pair_with_rela): New function. | |
8653 | (Output_data_got::add_local): Added got_type parameter. | |
8654 | (Output_data_got::add_local_with_rel): Likewise. | |
8655 | (Output_data_got::add_local_with_rela): Likewise. | |
8656 | (Output_data_got::add_local_pair_with_rel): New function. | |
8657 | (Output_data_got::add_local_pair_with_rela): New function. | |
8658 | (Output_data_got::add_global_tls): Removed. | |
8659 | (Output_data_got::add_global_tls_with_rel): Removed. | |
8660 | (Output_data_got::add_global_tls_with_rela): Removed. | |
8661 | (Output_data_got::add_local_tls): Removed. | |
8662 | (Output_data_got::add_local_tls_with_rel): Removed. | |
8663 | (Output_data_got::add_local_tls_with_rela): Removed. | |
8664 | * resolve.cc (Symbol::override_base_with_special): Removed | |
8665 | reference to has_got_offset_ field. | |
8666 | * symtab.cc (Symbol::init_fields): Replaced initialization | |
8667 | of got_offset_ with got_offsets_. Removed initialization | |
8668 | of has_got_offset_ | |
53fcba31 | 8669 | * symtab.h (Symbol::has_got_offset): Aded got_type parameter. |
0a65a3a7 CC |
8670 | (Symbol::got_offset): Likewise. |
8671 | (Symbol::set_got_offset): Likewise. | |
8672 | (Symbol::has_tls_got_offset): Removed. | |
8673 | (Symbol::tls_got_offset): Removed. | |
8674 | (Symbol::set_tls_got_offset): Removed. | |
8675 | (Symbol::got_offset_): Removed. | |
8676 | (Symbol::tls_mod_got_offset_): Removed. | |
8677 | (Symbol::tls_pair_got_offset_): Removed. | |
8678 | (Symbol::got_offsets_): New field. | |
8679 | (Symbol::has_got_offset): Removed. | |
8680 | (Symbol::has_tls_mod_got_offset): Removed. | |
8681 | (Symbol::has_tls_pair_got_offset): Removed. | |
8682 | * x86_64.cc (Target_x86_64::Got_type): New enum declaration. | |
8683 | (Target_x86_64::Scan::local): Updated callers of Output_data_got | |
8684 | member functions. | |
8685 | (Target_x86_64::Scan::global): Likewise. | |
8686 | (Target_x86_64::Relocate::relocate): Likewise. | |
8687 | (Target_x86_64::Relocate::relocate_tls): Likewise. | |
8688 | ||
bd52eafb BE |
8689 | 2008-03-25 Ben Elliston <[email protected]> |
8690 | ||
8691 | * yyscript.y: Fix spelling error in comment. | |
8692 | ||
8b105e34 ILT |
8693 | 2008-03-24 Ian Lance Taylor <[email protected]> |
8694 | ||
8ed814a9 ILT |
8695 | * options.h (class General_options): Define build_id option. |
8696 | * layout.h (class Layout): Declare write_build_id, create_note, | |
8697 | create_build_id. Add build_id_note_ member. | |
8698 | * layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>, | |
8699 | "libiberty.h", "md5.h", "sha1.h". | |
8700 | (Layout::Layout): Initialize eh_frame_data_, | |
8701 | eh_frame_hdr_section_, and build_id_note_. | |
8702 | (Layout::finalize): Call create_build_id. | |
8703 | (Layout::create_note): New function, broken out of | |
8704 | Layout::create_gold_note. | |
8705 | (Layout::create_gold_note): Call create_note. | |
8706 | (Layout::create_build_id): New function. | |
8707 | (Layout::write_build_id): New function. | |
8708 | (Close_task_runner::run): Call write_build_id. | |
8709 | ||
8b105e34 ILT |
8710 | * x86_64.cc: Correct license to GPLv3. |
8711 | ||
086a1841 ILT |
8712 | 2008-03-23 Ian Lance Taylor <[email protected]> |
8713 | ||
8714 | * options.cc: Include "demangle.h". | |
8715 | (parse_optional_string): New function. | |
8716 | (parse_long_option): Handle takes_optional_argument. | |
8717 | (parse_short_option): Update dash_z initializer. Handle | |
8718 | takes_optional_argument. | |
8719 | (General_options::General_options): Initialize do_demangle_. | |
8720 | (General_options::finalize): Set do_demangle_. Handle demangling | |
8721 | style. | |
8722 | * options.h (parse_optional_string): Declare. | |
8723 | (struct One_option): Add optional_arg field. Update constructor. | |
8724 | Update call constructor calls. Add takes_optional_argument | |
8725 | function. | |
8726 | (DEFINE_var): Add optional_arg__ parameter. Change all callers. | |
8727 | (DEFINE_optional_string): Define. | |
8728 | (General_options::demangle): Change from DEFINE_bool to | |
8729 | DEFINE_optional_string. | |
8730 | (General_options::no_demangle): New function. | |
8731 | (General_options::do_demangle): New function. | |
8732 | (General_options::set_do_demangle): New function. | |
8733 | (General_options::execstack_status_): Move definition to end of | |
8734 | class definition. | |
8735 | (General_options::static_): Likewise. | |
8736 | (General_options::do_demangle_): New field. | |
8737 | * object.cc (big_endian>::get_symbol_location_info): Call | |
8738 | Options::do_demangle, not Options::demangle. | |
8739 | * symtab.cc (demangle): Likewise. | |
8740 | ||
cbb93e63 ILT |
8741 | 2008-03-22 Ian Lance Taylor <[email protected]> |
8742 | ||
8743 | * gold.h: Include <cstddef> and <sys/types.h> | |
8744 | * options.h: Include <cstring>. | |
8745 | ||
ec531623 ILT |
8746 | 2008-03-21 Ian Lance Taylor <[email protected]> |
8747 | ||
8748 | * Added source code to GNU binutils. |