gdb: rename c_printchar as language_defn::printchar
[deliverable/binutils-gdb.git] / binutils / ChangeLog
1 2020-12-15 Vivek Das Mohapatra <vivek@collabora.com>
2
3 * readelf.c (get_dynamic_type): Handle DT_GNU_FLAGS_1.
4 (process_dynamic_section): Likewise.
5
6 2020-12-11 Cary Coutant <ccoutant@gmail.com>
7
8 * readelf.c (get_machine_name): Update list of e_machine values.
9
10 2020-12-11 Sebastian Huber <sebastian.huber@embedded-brains.de>
11
12 * ar.c (write_archive): Cast iostream pointer to FILE *.
13 * arsup.c (ar_save): Likewise.
14 * objcopy.c (copy_file): Likewise.
15
16 2020-12-07 Nick Clifton <nickc@redhat.com>
17
18 * objcopy.c (is_mergeable_note_section): Remove reference to
19 SHF_GNU_BUILD_NOTE.
20
21 2020-12-07 Siddhesh Poyarekar <siddhesh@sourceware.org>
22
23 PR 26945
24 * ar.c
25 (write_archive) [!defined (_WIN32) || defined (__CYGWIN32__)]:
26 Initialize TARGET_STAT and OFD to pass to SMART_RENAME.
27 * arsup.c
28 (ar_save) [defined (_WIN32) || defined (__CYGWIN32__)]:
29 Likewise.
30 * bucomm.h (smart_rename): Add new arguments to declaration.
31 * objcopy.c
32 (strip_main)[defined (_WIN32) || defined (__CYGWIN32__)]:
33 Initialize COPYFD and pass to SMART_RENAME.
34 (copy_main) [defined (_WIN32) || defined (__CYGWIN32__)]:
35 Likewise.
36 * rename.c (try_preserve_permissions): New function.
37 (smart_rename): Use it and add new arguments.
38
39 2020-12-07 Siddhesh Poyarekar <siddhesh@sourceware.org>
40
41 PR 26945
42 * objcopy.c (copy_file): New argument IN_STAT. Return stat of
43 ibfd through it.
44 (strip_main): Remove redundant stat calls. adjust copy_file
45 calls.
46 (copy_main): Likewise.
47
48 2020-12-07 Siddhesh Poyarekar <siddhesh@sourceware.org>
49
50 PR 26945
51 * bucomm.c (make_tempname): Add argument to return file
52 descriptor.
53 * bucomm.h (make_tempname): Likewise.
54 * ar.c: Include libbfd.h.
55 (write_archive): Adjust for change in make_tempname. Call
56 bfd_fdopenw instead of bfd_openw.
57 * objcopy.c: Include libbfd.h.
58 (copy_file): New argument OFD. Use bfd_fdopenw instead of
59 bfd_openw.
60 (strip_main): Adjust for change in make_tempname and
61 copy_file.
62 (copy_main): Likewise.
63
64
65 2020-12-07 Nick Clifton <nickc@redhat.com>
66
67 * README-how-to-make-a-release (point releases): Add a note to
68 update the milestone list on sourceware's bugzilla.
69
70 2020-12-04 Alan Modra <amodra@gmail.com>
71
72 * dwarf.c (frame_display_row): Do without static variable "sloc".
73 (cu_tu_indexes_read): Move to file scope.
74 (free_debug_memory): Reset it here, along with level_type_signed.
75 Free and clear a number of other static variables.
76 * readelf.c (arm_attr_public_tag <table>): Constify, updating..
77 (arm_attr_tag_*): ..all these uses.
78 (process_mips_specific): Free "rels" on error path.
79
80 2020-11-27 Nick Clifton <nickc@redhat.com>
81
82 PR 26865
83 * windres.c (main): If the preprocessor name includes spaces,
84 ensure that it is quoted.
85
86 2020-11-27 Jozef Lawrynowicz <jozef.l@mittosystems.com>
87
88 * testsuite/lib/binutils-common.exp (supports_noinit_section): New.
89 (supports_persistent_section): New.
90
91 2020-11-23 Nick Alcock <nick.alcock@oracle.com>
92
93 * readelf.c (dump_section_as_ctf): Call ctf_arc_symsect_endianness.
94
95 2020-11-25 Alan Modra <amodra@gmail.com>
96
97 * testsuite/binutils-all/nm.exp (ifunc): xfail more targets.
98
99 2020-11-20 Nick Alcock <nick.alcock@oracle.com>
100
101 * readelf.c (dump_section_as_ctf): Use .dynsym and .dynstr, not
102 .symtab and .strtab.
103
104 2020-11-20 Nick Alcock <nick.alcock@oracle.com>
105
106 * objdump.c (dump_ctf): Report errors from ctf_archive_iter.
107 * readelf.c (dump_section_as_ctf): Likewise.
108
109 2020-11-20 Nick Alcock <nick.alcock@oracle.com>
110
111 * objdump.c (dump_ctf): Use ctf_dict_open, not
112 ctf_arc_open_by_name.
113 * readelf.c (dump_section_as_ctf): Likewise.
114
115 2020-11-20 Nick Alcock <nick.alcock@oracle.com>
116
117 * objdump.c (dump_ctf_errs): Rename ctf_file_t to ctf_dict_t.
118 (dump_ctf_archive_member): Likewise.
119 (dump_ctf): Likewise. Use ctf_dict_close, not ctf_file_close.
120 * readelf.c (dump_ctf_errs): Rename ctf_file_t to ctf_dict_t.
121 (dump_ctf_archive_member): Likewise.
122 (dump_section_as_ctf): Likewise. Use ctf_dict_close, not
123 ctf_file_close.
124
125 2020-11-20 Nick Clifton <nickc@redhat.com>
126
127 PR 22967
128 * nm.c (ifunc_type_chars): New variable.
129 (long_options): Add --ifunc-chars.
130 (print_symbol): Use ifunc_type_chars for ifunc symbols.
131 (main): Handle the new option.
132 * doc/binutils.texi: Document the new option.
133 * configure.ac: Add --enable-f-for-ifunc-symbols option which
134 changes the default symbol displayed by nm.
135 * NEWS: Mention the new feature.
136 * testsuite/binutils-all/nm.exp: Test the new feature.
137 * config.in: Regenerate.
138 * configure: Regenerate.
139
140 2020-11-20 Linda Zhang <lindasc@qq.com>
141
142 PR 20979
143 * dllwrap.c (main): Deprecate and warn the use of dllwrap.
144
145 2020-11-20 Jozef Lawrynowicz <jozef.l@mittosystems.com>
146
147 * testsuite/binutils-all/readelf-maskos-1a.d: Fix test for unrecognized
148 bit set in SHF_MASKOS range.
149 * testsuite/binutils-all/readelf-maskos-1b.d: Likewise.
150 * testsuite/binutils-all/readelf-maskos-unknown.s: New test.
151
152 2020-11-18 Jozef Lawrynowicz <jozef.l@mittosystems.com>
153
154 * NEWS: Announce SHF_GNU_RETAIN support.
155 * readelf.c (get_elf_section_flags): Handle SHF_GNU_RETAIN.
156 Recognize SHF_GNU_RETAIN and SHF_GNU_MBIND only for supported OSABIs.
157 * testsuite/binutils-all/readelf.exp: Run new tests.
158 Don't run run_dump_test when there isn't an assembler available.
159 * testsuite/lib/binutils-common.exp (supports_gnu_osabi): Adjust
160 comment.
161 * testsuite/binutils-all/readelf-maskos-1a.d: New test.
162 * testsuite/binutils-all/readelf-maskos-1b.d: New test.
163 * testsuite/binutils-all/readelf-maskos.s: New test.
164 * testsuite/binutils-all/retain1.s: New test.
165 * testsuite/binutils-all/retain1a.d: New test.
166 * testsuite/binutils-all/retain1b.d: New test.
167
168 2020-11-17 Howard Chu <hyc@symas.com>
169
170 * ar.c (main): Place the libdeps record in the second archive
171 slot.
172
173 2020-11-13 Nick Clifton <nickc@redhat.com>
174
175 PR 26829
176 * dwarf.c (struct dwo_info): Add cu_offset field.
177 (add_dwo_info): Add cu_offset parameter. Record in new dwo_info
178 struct.
179 (add_dwo_name): Add cu_offset field.
180 (add_dwo_dir): Add cu_offset field.
181 (add_dwo_id): Add cu_offset field.
182 (read_and_display_attr_value): Pass cu_offset to dwo recording
183 functions.
184 (load_separate_debug_files): Accumulate name, dir and id values
185 and display once for each CU.
186 * testsuite/binutils-all/dwo.sL Use a separate CU for the second
187 dwo link.
188 * testsuite/binutils-all/readelf.k2: Update expected output.
189
190 2020-11-11 Bernd Edlinger <bernd.edlinger@hotmail.de>
191
192 * dwarf.c (display_debug_rnglists_list): Only bias the
193 DW_RLS_offset_pair with the base address.
194
195 2020-11-10 Nick Clifton <nickc@redhat.com>
196
197 * dwarf.c (skip_attr_bytes): Correctly handle DW_FORM_ref8.
198 (get_type_abbrev_from_form): Accept DW_FORM_ref8.
199
200 2020-11-09 Andreas Schwab <schwab@linux-m68k.org>
201
202 * Makefile.am (development.exp): Fix regexp.
203 * Makefile.in: Regenerate.
204
205 2020-11-09 Nick Clifton <nickc@redhat.com>
206
207 PR 26847
208 * dwarf.c (read_and_display_attr_value): In wide mode, display the
209 name of the form.
210
211 2020-11-09 Alan Modra <amodra@gmail.com>
212
213 * elfedit (usage): Avoid false positive "may be used uninitialised".
214 Don't leak memory.
215
216 2020-11-09 Howard Chu <hyc@symas.com>
217
218 * ar.c (main): Use plugin_target rather than "target" when
219 resetting libdeps_bfd target.
220
221 2020-11-06 H.J. Lu <hongjiu.lu@intel.com>
222
223 * elfedit.c: Include "libiberty.h".
224 (usage): Update help message.
225
226 2020-11-03 Howard Chu <hyc@symas.com>
227
228 * ar.c (long_options): Add --record-libdeps.
229 (usage): Mention the new option.
230 (decode_options): Handle the new option.
231 (replace_members): If necessary, create a bfd to hold the libdeps
232 description.
233 * binemul.c (ar_emul_append_bfd): New function.
234 (ar_emul_replace_bfd): New function.
235 (ar_emul_default_append): Replace file_name and target arguments
236 with new_bfd argument.
237 (ar_emul_default_replace): Likewise.
238 * binemul.h: Update prototypes.
239 (struct bin_emulation_xfer_struct): Update fields.
240 * doc/binutils.texi: Document the new option.
241 * NEWS: Mention the new feature.
242 * emul_aix.c (ar_emul_aix_append): Update.
243 (ar_emul_aix_replace): Likewise.
244 * testsuite/binutils-all/ar.exp: Add test of new feature.
245
246 2020-10-30 H.J. Lu <hongjiu.lu@intel.com>
247
248 PR gas/26703
249 * readelf.c (decode_x86_isa): Handle
250 * GNU_PROPERTY_X86_ISA_1_BASELINE.
251 * testsuite/binutils-all/i386/empty.d: Updated.
252 * testsuite/binutils-all/i386/ibt.d: Likewise.
253 * testsuite/binutils-all/i386/pr21231a.d: Likewise.
254 * testsuite/binutils-all/i386/pr21231b.d: Likewise.
255 * testsuite/binutils-all/i386/shstk.d: Likewise.
256 * testsuite/binutils-all/x86-64/empty-x32.d: Likewise.
257 * testsuite/binutils-all/x86-64/empty.d: Likewise.
258 * testsuite/binutils-all/x86-64/ibt-x32.d: Likewise.
259 * testsuite/binutils-all/x86-64/ibt.d: Likewise.
260 * testsuite/binutils-all/x86-64/pr21231a.d: Likewise.
261 * testsuite/binutils-all/x86-64/pr21231b.d: Likewise.
262 * testsuite/binutils-all/x86-64/pr23494a-x32.d: Likewise.
263 * testsuite/binutils-all/x86-64/pr23494a.d: Likewise.
264 * testsuite/binutils-all/x86-64/pr23494c-x32.d: Likewise.
265 * testsuite/binutils-all/x86-64/pr23494c.d: Likewise.
266 * testsuite/binutils-all/x86-64/pr23494d-x32.d: Likewise.
267 * testsuite/binutils-all/x86-64/pr23494d.d: Likewise.
268 * testsuite/binutils-all/x86-64/pr23494e-x32.d: Likewise.
269 * testsuite/binutils-all/x86-64/pr23494e.d: Likewise.
270 * testsuite/binutils-all/x86-64/shstk-x32.d: Likewise.
271 * testsuite/binutils-all/x86-64/shstk.d: Likewise.
272
273 2020-10-29 H.J. Lu <hongjiu.lu@intel.com>
274
275 PR binutils/26808
276 * dwarf.c (abbrev_list): Add abbrev_base.
277 (new_abbrev_list): Add an abbrev_base argument and record it.
278 (find_abbrev_list_by_abbrev_offset): Add an abbrev_base argument
279 and match it.
280 (process_debug_info): Pass abbrev_base to new_abbrev_list and
281 find_abbrev_list_by_abbrev_offset.
282 (display_debug_abbrev): Pass 0 abbrev_base to new_abbrev_list
283 and find_abbrev_list_by_abbrev_offset.
284 * testsuite/binutils-all/x86-64/pr26808.dump: New file.
285 * testsuite/binutils-all/x86-64/pr26808.dwp.bz2: Likewise.
286 * testsuite/binutils-all/x86-64/x86-64.exp: Run PR binutils/26808
287 test.
288
289 2020-10-29 Nick Clifton <nickc@redhat.com>
290
291 PR 26805
292 * objcopy.c (is_dwo_section): Check for missing or short section
293 names.
294
295 2020-10-26 Andreas Rammhold <andreas@rammhold.de>
296
297 * README-how-to-make-a-release: Use sha256sum instead of md5sum.
298
299 2020-10-28 Nick Clifton <nickc@redhat.com>
300
301 PR 26795
302 * elfedit.c (process_archive): Remove spurious call to free().
303
304 2020-10-27 Nick Clifton <nickc@redhat.com>
305
306 * dwarf.c (struct abbrev_list): New structure. Used to collect
307 lists of abbreviation sets.
308 (struct abbrev_map): New structure. Used to map CU offsets to
309 abbreviation offsets.
310 (record_abbrev_list): New function. A new entry to an
311 abbreviation list.
312 (free_all_abbrevs): Update to free abbreviation lists.
313 (new_abbrev_list): New function. Start a new abbreviation
314 list.
315 (find_abbrev_list_by_abbrev_offset): New function.
316 (find_abbrev_map_by_offset): New function.
317 (add_abbrev): Add abbrev_list parameter.
318 (add_abbrev_attr): Likewise.
319 (process_abbrev_section): Rename to process_abbrev_set and add
320 list parameter.
321 (get_type_abbrev_from_form): New function. Attempts to decode the
322 forms used by DW_AT_type attributes.
323 (get_type_signedness): Display type names if operating in wide
324 mode. Use get_type_abbrev_from_form.
325 (read_and_display_attr_value): Use get_type_abbrev_from_form.
326 (process_debug_info): Pre-parse the CU headers to collate all the
327 abbrevs before starting the main scan.
328 (process_debug_abbrev): Do not free any loaded abbrevs.
329 (free_debug_memory): Free the abbrev maps.
330
331 2020-10-22 H.J. Lu <hongjiu.lu@intel.com>
332
333 * testsuite/binutils-all/objcopy.exp (objcopy_test): Report
334 error message on error.
335
336 2020-10-22 Dr. David Alan Gilbert <dgilbert@redhat.com>
337
338 * windmc.c (write_header_define): Fix printf format.
339 (write_header): Likewise.
340
341 2020-10-21 Nick Clifton <nickc@redhat.com>
342
343 * dwarf.c (skip_attr_bytes): Accept DWARF versions higher than 4
344 when processing the DW_FORM_ref_addr form.
345 Skip bytes in DW_FORM_block and DW_FORM_exprloc forms.
346 Handle DW_FORM_indirect.
347 (get_type_signedness): Allow a limited amount of recursion.
348 Do not attempt to decode types that use the DW_FORM_ref_addr form.
349 (read_and_display_attr_value): Do not attempt to decode types
350 that use the DW_FORM_ref_addr form.
351
352 2020-10-20 Alan Modra <amodra@gmail.com>
353
354 * readelf.c: Delete whitespace at end of line throughout.
355 (SECTION_NAME, SECTION_NAME_VALID): New.
356 (SECTION_NAME_PRINT): Rename from SECTION_NAME. Formatting.
357 (printable_section_name, dump_relocations): Use SECTION_NAME_PRINT.
358 (process_section_headers, process_section_groups): Likewise.
359 (shdr_to_ctf_sect): Likewise.
360 (find_section, find_section_in_set): Use SECTION_NAME_VALID.
361 (ia64_process_unwind, hppa_process_unwind): Likewise.
362 (display_debug_section, initialise_dumps_byname): Likewise.
363 (process_lto_symbol_tables): Likewise. Check trailing period of
364 lto symbol table names.
365 (display_lto_symtab): Use sizeof instead of strlen.
366
367 2020-10-20 Nelson Chu <nelson.chu@sifive.com>
368
369 * MAINTAINERS (RISC-V): Add myself as RISC-V co-maintainer.
370
371 2020-10-19 Nick Clifton <nickc@redhat.com>
372
373 * readelf.c (do_lto_syms): New local.
374 (long_option_values): Add OPTION_LTO_SYMS.
375 (options): Add --lto-syms.
376 (usage): Mention the new option.
377 (parse_args): Parse the new option.
378 (get_lto_kind): New function.
379 (get_lto_visibility): New function.
380 (get_lto_sym_type): New function.
381 (display_lto_symtab): New function - displays the contents of an
382 LTo symbol table section.
383 (process_lto_symbol_tables): New functions. Calls
384 dipslay_lto_symtab on any LTO symbol table section.
385 (process_object_file): Call process_lto_symbol_tables.
386 * doc/binutils.texi: Document the new option.
387 * NEWS: Mention the new feature.
388
389 2020-10-09 H.J. Lu <hongjiu.lu@intel.com>
390
391 PR gas/26703
392 * readelf.c (decode_x86_compat_2_isa): New function.
393 (decode_x86_isa): Updated for new X86_ISA_1_XXX bits.
394 (decode_x86_feature_1): Handle GNU_PROPERTY_X86_FEATURE_2_MASK.
395 (print_gnu_property_note): Handle X86_COMPAT_2_ISA_1_USED,
396 and X86_COMPAT_2_ISA_1_NEEDED.
397 * testsuite/binutils-all/i386/pr21231b.s: Updated to the current
398 GNU_PROPERTY_X86_ISA_1_USED and GNU_PROPERTY_X86_ISA_1_NEEDED
399 values.
400 * testsuite/binutils-all/x86-64/pr21231b.s: Likewise.
401 * testsuite/binutils-all/x86-64/pr23494a.s: Likewise.
402 * testsuite/binutils-all/x86-64/pr23494b.s: Likewise.
403 * testsuite/binutils-all/x86-64/pr23494c.s: Likewise.
404 * testsuite/binutils-all/i386/empty.d: Updated.
405 * testsuite/binutils-all/i386/ibt.d: Likewise.
406 * testsuite/binutils-all/i386/pr21231a.d: Likewise.
407 * testsuite/binutils-all/i386/pr21231b.d: Likewise.
408 * testsuite/binutils-all/i386/shstk.d: Likewise.
409 * testsuite/binutils-all/x86-64/empty-x32.d: Likewise.
410 * testsuite/binutils-all/x86-64/empty.d: Likewise.
411 * testsuite/binutils-all/x86-64/ibt-x32.d: Likewise.
412 * testsuite/binutils-all/x86-64/ibt.d: Likewise.
413 * testsuite/binutils-all/x86-64/pr21231a.d: Likewise.
414 * testsuite/binutils-all/x86-64/pr21231b.d: Likewise.
415 * testsuite/binutils-all/x86-64/pr23494a-x32.d: Likewise.
416 * testsuite/binutils-all/x86-64/pr23494a.d: Likewise.
417 * testsuite/binutils-all/x86-64/pr23494c-x32.d: Likewise.
418 * testsuite/binutils-all/x86-64/pr23494c.d: Likewise.
419 * testsuite/binutils-all/x86-64/pr23494d-x32.d: Likewise.
420 * testsuite/binutils-all/x86-64/pr23494d.d: Likewise.
421 * testsuite/binutils-all/x86-64/pr23494e-x32.d: Likewise.
422 * testsuite/binutils-all/x86-64/pr23494e.d: Likewise.
423 * testsuite/binutils-all/x86-64/shstk-x32.d: Likewise.
424 * testsuite/binutils-all/x86-64/shstk.d: Likewise.
425
426 2020-10-06 Nick Clifton <nickc@redhat.com>
427
428 * objcopy.c (copy_object): Compare input and output sections by
429 pointer rather than name.
430
431 2020-10-05 Nick Clifton <nickc@redhat.com>
432
433 PR 26698
434 * windmc.c (mc_unify_path): Fix typo checking character at end of
435 pathname.
436
437 2020-10-05 Samanta Navarro <ferivoz@riseup.net>
438
439 * doc/binutils.texi: Fix spelling mistakes.
440
441 2020-09-29 Mark Wielaard <mark@klomp.org>
442
443 * dwarf.c (display_loclists_list): Handle DW_LLE_start_end and
444 DW_LLE_start_length. Only add base_address for DW_LLE_offset_pair.
445
446 2020-09-25 Alan Modra <amodra@gmail.com>
447
448 * elfcomm.c (byte_put_little_endian, byte_put_big_endian): Support
449 more field sizes.
450 * readelf.c (target_specific_reloc_handling <MSP430>): Limit
451 allowed reloc_size. Don't read_leb128 outside of section.
452
453 2020-09-23 Mark Wielaard <mark@klomp.org>
454
455 * dwarf.c (process_debug_info): Print Unit Type for DWARF5.
456 * testsuite/binutils-all/dw5.W: Adjust expected output.
457 * testsuite/binutils-all/dwarf-attributes.W: Likewise.
458
459 2020-09-23 Mark Wielaard <mark@klomp.org>
460
461 * dwarf.c (read_and_display_attr_value): Handle DW_FORM_ref_addr
462 for dwarf_version 5 just as version 3 and 4 (only 2 is
463 different).
464 (process_debug_info): Allow DW_UT_partial.
465
466 2020-09-24 Nick Clifton <nickc@redhat.com>
467
468 PR 26662
469 * doc/binutils.texi (nm): Document that 'c' is used for small
470 common symbols.
471
472 2020-09-21 Ludovic Courtès <ludo@gnu.org>
473
474 * doc/binutils.texi (objcopy, strip): Say that
475 '--strip-unneeded' implies '--strip-debug'.
476
477 2020-09-16 Anatoly Parshintsev <kupokupokupopo@gmail.com>
478
479 * verilog.c (verilog_write_address): Properly handle 64-bit
480 addresses to avoid truncation of the high part.
481
482 2020-09-16 Alan Modra <amodra@gmail.com>
483
484 * nm.c (print_symbol): Adjust elf_symbol_from invocation.
485 * objcopy.c (is_hidden_symbol): Likewise.
486
487 2020-09-15 Nick Clifton <nickc@redhat.com>
488
489 * README-how-to-make-a-release (https): Add a reminder to create a
490 new Bugzilla tag for the point release, once it has been published.
491
492 2020-09-11 H.J. Lu <hongjiu.lu@intel.com>
493
494 * readelf.c (get_note_type): Support NT_X86_CET.
495
496 2020-09-11 Nick Clifton <nickc@redhat.com>
497
498 PR 26595
499 * dwarf.c (load_separate_debug_info): Return NULL rather than
500 FALSE in error situations.
501 (load_separate_debug_file): Move code to load debug links to ...
502 (check_for_and_load_links): ... here. New function. Load
503 separate debug information pointed to by debuglink and
504 debugaltlink sections. Recursively scan newly loaded debug
505 information for more links and load them too.
506
507 2020-09-09 Alan Modra <amodra@gmail.com>
508
509 PR 26578
510 * dwarf.c (parse_gnu_debugaltlink): Don't alloc build_id_data.
511 (load_separate_debug_files): Use a stack var for build_id_data.
512
513 2020-09-08 H.J. Lu <hongjiu.lu@intel.com>
514
515 PR ld/26587
516 * testsuite/binutils-all/objcopy.exp: Pass --disable-reloc-section
517 to ld on PE targets for PR 25662 test.
518
519 2020-09-08 Jozef Lawrynowicz <jozef.l@mittosystems.com>
520 Kuan-Lin Chen <kuanlinchentw@gmail.com>
521
522 * readelf.c (target_specific_reloc_handling): Handle
523 R_MSP430{,X}_GNU_{SET,SUB}_ULEB128.
524
525 2020-09-02 Alan Modra <amodra@gmail.com>
526
527 * objdump.c (disassemble_bytes): Use an unsigned type for "addend".
528
529 2020-08-30 Alan Modra <amodra@gmail.com>
530
531 * readelf.c (print_gnu_build_attribute_name): Use unsigned long
532 long for "bytes".
533
534 2020-08-28 Nick Clifton <nickc@redhat.com>
535
536 PR 26548
537 * dwarf.c (read_leb128): When checking for overflow of a signed
538 read, use a signed shift.
539
540 2020-08-28 Cooper Qu <cooper.qu@linux.alibaba.com>
541
542 * readelf.c (get_csky_section_type_name): New.
543 (get_section_type_name): Add handler for CSKY.
544 (display_csky_attribute): New.
545 (process_arch_specific): Add handler for CSKY.
546 * testsuite/binutils-all/strip-3.d: Remove .csky.attributes
547 section.
548
549 2020-08-27 Jozef Lawrynowicz <jozef.l@mittosystems.com>
550
551 * readelf.c (get_msp430x_section_type_name): Rename to ...
552 (get_msp430_section_type_name): ... this.
553 (get_section_type_name): Use get_msp430_section_type_name.
554 (display_msp430x_attribute): Rename to ...
555 (display_msp430_attribute): ... this.
556 (process_arch_specific): Use display_msp430_attribute.
557
558 2020-08-27 John David Anglin <danglin@gcc.gnu.org>
559
560 PR 26356
561 * testsuite/binutils-all/objcopy.exp (objcopy --reverse-bytes): Add
562 "-j $PRIVATE$" to command on hppa*-*-hpux*.
563 * testsuite/lib/utils-lib.exp (default_binutils_run): Remove existing
564 dollar-sign quotes before quoting. Do this prior to generating log
565 output.
566
567 2020-08-27 Ralf Habacker <ralf.habacker@freenet.de>
568
569 PR 26088
570 * mclex.c (skip_until_eol): If eol was found, increment line
571 number.
572
573 2020-08-27 Nick Alcock <nick.alcock@oracle.com>
574
575 * objdump.c (dump_ctf_errs): Unquote CTF error messages.
576 * readelf.c (dump_ctf_errs): Likewise.
577
578 2020-08-27 Nick Alcock <nick.alcock@oracle.com>
579
580 * objdump.c (dump_ctf_archive_member): Move error-
581 reporting...
582 (dump_ctf_errs): ... into this separate function.
583 (dump_ctf): Call it on open errors.
584 * readelf.c (dump_ctf_archive_member): Move error-
585 reporting...
586 (dump_ctf_errs): ... into this separate function. Support
587 calls with NULL fp. Adjust for new err parameter to
588 ctf_errwarning_next.
589 (dump_section_as_ctf): Call it on open errors.
590
591 2020-08-27 Nick Alcock <nick.alcock@oracle.com>
592
593 * Makefile.am (readelf_LDADD): Move $(LIBINTL) after $(LIBCTF_NOBFD).
594 * Makefile.in: Regenerated.
595
596 2020-08-26 Nick Clifton <nickc@redhat.com>
597
598 PR 26405
599 * readelf.c (get_segment_type): Handle OpenBSD segment types.
600
601 2020-08-26 Alan Modra <amodra@gmail.com>
602
603 PR 26412
604 * objcopy.c (copy_object): Don't fwrite NULL contents.
605
606 2020-08-26 Katayama Hirofumi <katayama.hirofumi.mz@gmail.com>
607
608 PR 26340
609 * rcparse.y (AUTOCHECKBOX): Add WS_TABSTOP to the base style.
610
611 2020-08-24 Alan Modra <amodra@gmail.com>
612
613 * readelf.c (dump_section_as_strings) Avoid false positive
614 "may be used uninitialised".
615
616 2020-08-22 H.J. Lu <hongjiu.lu@intel.com>
617
618 PR ld/26382
619 * nm.c (print_symname): Display only one '@' for undefined
620 versioned symbols.
621 * doc/binutils.texi: Update nm version information.
622
623 2020-08-21 Mark Wielaard <mark@klomp.org>
624
625 * testsuite/binutils-all/readelf.exp (readelf_wi_test): Also
626 recognize DW_LANG_C11.
627
628 2020-08-19 Alan Modra <amodra@gmail.com>
629
630 PR 26349
631 * readelf.c (dump_relocations): Use BFD_VMA_FMT to print offset
632 and info fields.
633 (dump_section_as_strings): Don't use %tx to display offset.
634
635 2020-08-14 Alan Modra <amodra@gmail.com>
636
637 PR 26388
638 * dwarf.c (free_debug_memory): Free alloc_num_debug_info_entries
639 of debug_information. Correct test of max_loc_offsets and
640 max_range_lists.
641 * rddbg.c (read_debugging_info): Free dhandle on error.
642
643 2020-08-14 Alan Modra <amodra@gmail.com>
644
645 * testsuite/binutils-all/mangled.s: Use dc.a rather than dc.d.
646
647 2020-08-13 Alan Modra <amodra@gmail.com>
648
649 PR 26348
650 * objcopy.c (copy_object): Report file name with endian error.
651 Error and return on abfd->read_only.
652
653 2020-08-12 Tom Tromey <tromey@adacore.com>
654
655 * dwarf-mode.el (Version): Now 1.6.
656 (dwarf-die-button-action): Tighten DIE reference regexp.
657 (dwarf-font-lock-keywords): Update name regexp.
658
659 2020-08-12 Nick Clifton <nickc@redhat.com>
660
661 PR binutils/26331
662 * readelf.c (do_demangle): New option flag.
663 (print_symbol): If do_demangle is enabled, demangle the symbol.
664 (enum long_option_values): New enum to hold long option values.
665 (options): Add demangle, no-demangle, recursion-limit and
666 no-recursion-limit options. Alpha sort the table.
667 (usage): Describe the new options.
668 (parse_args): Handle the new options.
669 * NEWS: Mention the new feature.
670 * doc/binutils.texi: Document the new feature.
671 * testsuite/binutils-all/readelf.exp: Test the new feature.
672 * testsuite/binutils-all/mangled.s: New file - assembler source.
673 * testsuite/binutils-all/readelf.demangled: New file - expected
674 output from readelf.
675
676 2020-08-12 Nick Clifton <nickc@redhat.com>
677
678 * po/sr.po: Updated Serbian translation.
679
680 2020-08-10 H.J. Lu <hongjiu.lu@intel.com>
681
682 PR binutils/26302
683 * nm.c (with_symbol_versions): Removed.
684 (long_option_values): Add OPTION_WITH_SYMBOL_VERSIONS.
685 (long_options): Update --with-symbol-versions entry.
686 (print_symbol): Remove the with_symbol_versions check.
687 (main): Add OPTION_WITH_SYMBOL_VERSIONS for backward
688 compatibility.
689 * doc/binutils.texi: Remove --with-symbol-versions.
690
691 2020-08-05 Alan Modra <amodra@gmail.com>
692
693 PR 26337
694 * objdump.c (load_specific_debug_section): Revert last change.
695
696 2020-08-05 Alan Modra <amodra@gmail.com>
697
698 PR 26337
699 * objdump.c (load_specific_debug_section): Don't malloc space for
700 section contents, use bfd_malloc_and_get_section.
701
702 2020-07-30 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
703
704 * Makefile.am (AM_CPPFLAGS): Add LARGEFILE_CPPFLAGS.
705 * Makefile.in, doc/Makefile.in: Regenerate.
706 * configure: Regenerate.
707
708 2020-07-30 H.J. Lu <hongjiu.lu@intel.com>
709
710 * testsuite/binutils-all/i386/compressed-1a.d: Pass --gdwarf-3
711 to assembler.
712 * testsuite/binutils-all/i386/compressed-1b.d: Likewise.
713 * testsuite/binutils-all/i386/compressed-1c.d: Likewise.
714 * testsuite/binutils-all/x86-64/compressed-1a.d: Likewise.
715 * testsuite/binutils-all/x86-64/compressed-1b.d: Likewise.
716 * testsuite/binutils-all/x86-64/compressed-1c.d: Likewise.
717
718 2020-07-29 Maciej W. Rozycki <macro@linux-mips.org>
719
720 * testsuite/binutils-all/mips/global-local-symtab-sort-o32.d:
721 New test.
722 * testsuite/binutils-all/mips/global-local-symtab-sort-o32t.d:
723 New test.
724 * testsuite/binutils-all/mips/global-local-symtab-sort-n32.d:
725 New test.
726 * testsuite/binutils-all/mips/global-local-symtab-sort-n32t.d:
727 New test.
728 * testsuite/binutils-all/mips/global-local-symtab-sort-n64.d:
729 New test.
730 * testsuite/binutils-all/mips/global-local-symtab-sort-n64t.d:
731 New test.
732 * testsuite/binutils-all/mips/global-local-symtab-final-o32.d:
733 New test.
734 * testsuite/binutils-all/mips/global-local-symtab-final-n32.d:
735 New test.
736 * testsuite/binutils-all/mips/global-local-symtab-final-n64.d:
737 New test.
738 * testsuite/binutils-all/mips/mips.exp: Run the new tests.
739
740 2020-07-29 Maciej W. Rozycki <macro@linux-mips.org>
741
742 * testsuite/binutils-all/mips/global-local-symtab-o32.d: New
743 test.
744 * testsuite/binutils-all/mips/global-local-symtab-o32t.d: New
745 test.
746 * testsuite/binutils-all/mips/global-local-symtab-n32.d: New
747 test.
748 * testsuite/binutils-all/mips/global-local-symtab-n32t.d: New
749 test.
750 * testsuite/binutils-all/mips/global-local-symtab-n64.d: New
751 test.
752 * testsuite/binutils-all/mips/mips.exp: Run the new tests.
753
754 2020-07-28 H.J. Lu <hongjiu.lu@intel.com>
755
756 PR binutils/26301
757 * configure: Regenerated.
758
759 2020-07-28 H.J. Lu <hongjiu.lu@intel.com>
760
761 PR binutils/26301
762 * configure: Regenerated.
763
764 2020-07-27 Alan Modra <amodra@gmail.com>
765
766 * objdump.c (dump_section): Don't return without calling
767 process_section_p.
768
769 2020-07-27 H.J. Lu <hongjiu.lu@intel.com>
770
771 * doc/binutils.texi: Replace preceeded with preceded.
772
773 2020-07-26 Maciej W. Rozycki <macro@linux-mips.org>
774
775 * testsuite/binutils-all/mips/mips.exp (run_dump_test_abi)
776 (run_dump_test_o32, run_dump_test_n32, run_dump_test_n64): New
777 procedures.
778 (has_newabi): Remove variable.
779 (has_abi, abi_asflags, abi_ldflags): New associative array
780 variables.
781 (irixemul): New variable.
782 Replace `run_dump_test' calls where applicable throughout with
783 `run_dump_test_o32', `run_dump_test_n32' and `run_dump_test_n64'
784 as appropriate. Use `noarch' for tests that require their own
785 architecture setting.
786 * testsuite/binutils-all/mips/mips-ase-1.d: Remove GAS flags.
787 * testsuite/binutils-all/mips/mips-ase-2.d: Likewise.
788 * testsuite/binutils-all/mips/mips-ase-3.d: Likewise.
789 * testsuite/binutils-all/mips/mips-note-2-n32.d: Likewise.
790 * testsuite/binutils-all/mips/mips-note-2-n64.d: Likewise.
791 * testsuite/binutils-all/mips/mips-note-2.d: Likewise.
792 * testsuite/binutils-all/mips/mips-note-2r-n32.d: Likewise.
793 * testsuite/binutils-all/mips/mips-note-2r-n64.d: Likewise.
794 * testsuite/binutils-all/mips/mips-note-2r.d: Likewise.
795 * testsuite/binutils-all/mips/mips-reginfo-n32.d: Likewise.
796 * testsuite/binutils-all/mips/mips-reginfo.d: Likewise.
797 * testsuite/binutils-all/mips/mips16-extend-noinsn.d: Likewise.
798 * testsuite/binutils-all/mips/mips16-pcrel.d: Likewise.
799 * testsuite/binutils-all/mips/mips16-alias.d: Remove `-32' from
800 GAS flags.
801 * testsuite/binutils-all/mips/mips16-extend-insn.d: Likewise.
802 * testsuite/binutils-all/mips/mips16-noalias.d: Likewise.
803 * testsuite/binutils-all/mips/mips16-undecoded.d: Likewise.
804 * testsuite/binutils-all/mips/mips16e2-extend-insn.d: Likewise.
805 * testsuite/binutils-all/mips/mips16e2-undecoded.d: Likewise.
806 * testsuite/binutils-all/mips/mixed-micromips.d: Likewise.
807 * testsuite/binutils-all/mips/mixed-mips16.d: Likewise.
808
809 2020-07-24 Aaron Merey <amerey@redhat.com>
810
811 * Makefile.am: Replace LIBDEBUGINFOD with DEBUGINFOD_LIBS.
812 * Makefile.in: Rebuild.
813 * configure: Rebuild.
814 * doc/Makefile.in: Rebuild.
815
816 2020-07-24 Nick Clifton <nickc@redhat.com>
817
818 * README-how-to-make-a-release: Various small updates whilst
819 creating the 2.35 release.
820
821 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
822
823 * testsuite/lib/binutils-common.exp (run_dump_test): Add 'cc'
824 option.
825
826 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
827
828 * objdump.c (dump_ctf_archive_member): Remove linefeeds.
829 (dump_ctf): Likewise.
830
831 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
832
833 * objdump.c (ctf_archive_member): Print CTF errors and warnings.
834 * readelf.c (dump_ctf_archive_member): Likewise.
835
836 2020-07-22 Nick Clifton <nickc@redhat.com>
837
838 * readelf.c (parse_args): Silence potential warnings about a
839 memory resource leak when allocating space for ctf option values.
840 (dump_section_as_ctf): Fix typo checking dump_ctf_strtab_name
841 variable.
842
843 2020-07-21 Nick Clifton <nickc@redhat.com>
844
845 * po/sv.po: Updated Swedish translation.
846
847 2020-07-14 Claudiu Zissulescu <claziss@gmail.com>
848
849 * testsuite/binutils-all/arc/double_regs.s: New test.
850 * testsuite/binutils-all/arc/objdump.exp: Add the above test.
851
852 2020-07-13 Nick Clifton <nickc@redhat.com>
853
854 * po/fr.po: Updated French translation.
855
856 2020-07-13 Alan Modra <amodra@gmail.com>
857
858 * testsuite/lib/binutils-common.exp (is_pecoff_format): Accept
859 optional machine-os arg.
860
861 2020-07-11 H.J. Lu <hongjiu.lu@intel.com>
862
863 * readelf.c (decode_x86_feature_2): Handle
864 GNU_PROPERTY_X86_FEATURE_2_TMM.
865
866 2020-07-10 Tom de Vries <tdevries@suse.de>
867
868 * dwarf.c (display_debug_lines_decoded): Don't emit meaningless
869 information in the end_sequence row.
870 * testsuite/binutils-all/dw5.W: Update.
871 * testsuite/binutils-all/objdump.WL: Update.
872
873 2020-07-09 Alan Modra <amodra@gmail.com>
874
875 * dlltool.c: Remove powerpc PE support and comments.
876 * configure.ac: Remove powerpc PE dlltool config.
877 * configure: Regenerate.
878
879 2020-07-09 Nick Clifton <nickc@redhat.com>
880
881 * rclex.c: Add OWNERDRAW keyword.
882 * rcparse.y: Add OWNERDRAW token.
883 (menuitem_flag) Add BITMAP and OWNERDRAW entries.
884 * resrc.c (write_rc_menuitems): Add support for OWNERDRAW and
885 BITMAP flags.
886 * windres.c (extended_menuitems): Likewise.
887 * testsuite/binutils-all/windres/menuitem_flags.rc: New test.
888
889 2020-07-09 Alan Modra <amodra@gmail.com>
890
891 * readelf (slurp_hppa_unwind_table): Set table_len before use
892 in relocation sanity checks.
893
894 2020-07-07 Alan Modra <amodra@gmail.com>
895
896 * testsuite/binutils-all/ar.exp: Use is_xcoff_format.
897 * testsuite/binutils-all/nm.exp: Likewise.
898 * testsuite/binutils-all/copy-2.d: Run only for elf and pe targets.
899 * testsuite/binutils-all/copy-3.d: Run only for elf targets.
900 * testsuite/binutils-all/set-section-alignment.d: Likewise.
901 * testsuite/binutils-all/copy-4.d: Don't run for xcoff.
902
903 2020-07-07 Alan Modra <amodra@gmail.com>
904
905 * testsuite/lib/binutils-common.exp (is_xcoff_format): New.
906 * testsuite/binutils-all/objcopy.exp (pr25662): Exclude xcoff.
907
908 2020-07-06 Nick Clifton <nickc@redhat.com>
909
910 * po/bg.po: Updated Bulgarian translation.
911 * po/pt.po: Updated Portuguese translation.
912 * po/uk.po: Updated Ukranian translation.
913
914 2020-07-06 Alan Modra <amodra@gmail.com>
915
916 * readelf.c (print_dynamic_symbol): Don't sprintf to buffer to
917 find string length.
918
919 2020-07-04 Nick Clifton <nickc@redhat.com>
920
921 * configure: Regenerate.
922 * po/binutils.pot: Regenerate.
923
924 2020-07-04 Nick Clifton <nickc@redhat.com>
925
926 Binutils 2.35 branch created.
927
928 2020-07-02 Nick Clifton <nickc@redhat.com>
929
930 PR 26028
931 * readelf.c (print_symbol): Handle truncation of symbol names.
932 (options): Add -T/--silent-truncation option.
933 (parse_args): Handle the option.
934 (print_dynamic_symbol): Correct calculation of width available to
935 display symbol name.
936 * doc/binutils.texi: Document the -T option to readelf.
937 * NEWS: Mention the new feature.
938
939 2020-06-30 H.J. Lu <hongjiu.lu@intel.com>
940
941 * NEWS: Mention x86 NaCl target support removal.
942 * dwarf.c (init_dwarf_regnames_by_bfd_arch_and_mach): Remove
943 x86 NaCl target support.
944 * testsuite/binutils-all/elfedit-1.d: Likewise.
945 * testsuite/binutils-all/i386/i386.exp: Likewise.
946 * testsuite/binutils-all/x86-64/objects.exp: Likewise.
947 * testsuite/binutils-all/x86-64/pr23494a-x32.d: Likewise.
948 * testsuite/binutils-all/x86-64/pr23494a.d: Likewise.
949 * testsuite/binutils-all/x86-64/pr23494b-x32.d: Likewise.
950 * testsuite/binutils-all/x86-64/pr23494b.d: Likewise.
951 * testsuite/binutils-all/x86-64/pr23494c-x32.d: Likewise.
952 * testsuite/binutils-all/x86-64/pr23494c.d: Likewise.
953 * testsuite/binutils-all/x86-64/pr23494d-x32.d: Likewise.
954 * testsuite/binutils-all/x86-64/pr23494d.d: Likewise.
955 * testsuite/binutils-all/x86-64/pr23494e-x32.d: Likewise.
956 * testsuite/binutils-all/x86-64/pr23494e.d: Likewise.
957 * testsuite/binutils-all/x86-64/x86-64.exp: Likewise.
958
959 2020-06-30 Nick Clifton <nickc@redhat.com>
960
961 * dwarf.c (read_and_display_attr_value): Support
962 DW_FORM_GNU_strp_alt when used with DW_AT_dwo_name and
963 DW_AT_comp_dir.
964
965 2020-06-30 Alan Modra <amodra@gmail.com>
966
967 * testsuite/binutils-all/readelf.exp (readelf_dump_test): Remove
968 xfail for nds32.
969
970 2020-06-29 Hans-Peter Nilsson <hp@bitrange.com>
971
972 * dwarf.c (display_debug_str_offsets): Rename local variable
973 index to idx. Move to top of function.
974
975 2020-06-29 Alan Modra <amodra@gmail.com>
976
977 * dwarf.c: Use C style comments.
978 * resrc.c: Likewise.
979
980 2020-06-27 Alan Modra <amodra@gmail.com>
981
982 * elfcomm.c (setup_nested_archive): Set nested_arch->file to NULL
983 after freeing.
984 (release_archive): Set fields of arch to NULL after freeing.
985
986 2020-06-26 Nick Alcock <nick.alcock@oracle.com>
987
988 * readelf.c (dump_section_as_ctf): Support .ctf archives using
989 ctf_arc_bufopen. Automatically load the .ctf member of such
990 archives as the parent of all other members, unless specifically
991 overridden via --ctf-parent. Split out dumping code into...
992 (dump_ctf_archive_member): ... here, as in objdump, and call
993 it once per archive member.
994 (dump_ctf_indent_lines): Code style fix.
995
996 2020-06-26 Nick Alcock <nick.alcock@oracle.com>
997
998 * configure.ac [--enable-libctf]: New, default yes.
999 Set ENABLE_LIBCTF accordingly.
1000 * Makefile.am [!ENABLE_LIBCTF]: Empty LIBCTF and LIBCTF_NOBFD.
1001 * configure: Regenerate.
1002 * config.in: Regenerate.
1003 * Makefile.in: Regenerate.
1004 * aclocal.m4: Regenerate.
1005 * objdump.c (usage): Conditionalize portions on ENABLE_LIBCTF.
1006 (option_values): Likewise.
1007 (long_options): Likewise.
1008 (main): Likewise.
1009 (dump_ctf_indent_lines): Conditionalize out when !ENABLE_LIBCTF.
1010 (make_ctfsect): Likewise.
1011 (dump_ctf_archive_member): Likewise.
1012 (dump_ctf) [ENABLE_LIBCTF]: Likewise.
1013 (dump_ctf) [!ENABLE_LIBCTF]: New empty stub.
1014 * readelf.c (options): Conditionalize portions on ENABLE_LIBCTF.
1015 (usage): Likewise.
1016 (process_section_contents): Likewise.
1017 (shdr_to_ctf_sect): Conditionalize out when !ENABLE_LIBCTF.
1018 (dump_ctf_indent_lines): Likewise.
1019 (dump_section_as_ctf) [ENABLE_LIBCTF]: Likewise.
1020
1021 2020-06-26 Jan Beulich <jbeulich@suse.com>
1022
1023 * doc/binutils.texi: Adjust description of x86's -Msuffix. Drop
1024 redundant text from x86 specific part of -M section.
1025
1026 2020-06-26 Pat Bernardi <bernardi@adacore.com>
1027
1028 * readelf.c (display_m68k_gnu_attribute): New function.
1029 (process_arch_specific): Call display_m68k_gnu_attribute for EM_68K.
1030
1031 2020-06-23 H.J. Lu <hongjiu.lu@intel.com>
1032
1033 PR binutils/26160
1034 * testsuite/binutils-all/pr26160.dwp.bz2: New file.
1035 * testsuite/binutils-all/pr26160.r: Likewise.
1036 * testsuite/binutils-all/readelf.exp: Run PR binutils/26160 test.
1037
1038 2020-06-23 Nick Clifton <nickc@redhat.com>
1039
1040 PR 26160
1041 * dwarf.c (fetch_indexed_string): Detect and handle old style
1042 .debug_str_offset tables.
1043 (display_debug_str_offsets): Likewise. Also add support for
1044 .debug_str_offsets.dwo sections.
1045
1046 2020-06-23 H.J. Lu <hongjiu.lu@intel.com>
1047
1048 PR binutils/26112
1049 * testsuite/binutils-all/pr26112.o.bz2: New file.
1050 * testsuite/binutils-all/pr26112.r: Likewise.
1051 * testsuite/binutils-all/readelf.exp: Run PR binutils/26112 test.
1052
1053 2020-06-23 Alan Modra <amodra@gmail.com>
1054
1055 * testsuite/binutils-all/objdump.exp (bintest.a): Correct
1056 remote_file delete command.
1057
1058 2020-06-22 Nick Clifton <nickc@redhat.com>
1059
1060 PR 26112
1061 * dwarf.c (display_debug_str_offsets): Add code to display the
1062 contents of the .debug_str_offsets section.
1063 (display_debug_macro): Add support for DW_MACRO_define_strx and
1064 DW_MACRO_undef_strx.
1065
1066 2020-06-22 Saagar Jha <saagar@saagarjha.com>
1067
1068 * od-macho.c: Dump linkedit data for new load commands.
1069
1070 2020-06-19 Alan Modra <amodra@gmail.com>
1071
1072 * testsuite/config/default.exp (ld_elf_shared_opt): Don't set.
1073 * testsuite/lib/binutils-common.exp (check_relro_support): New proc.
1074 (run_dump_test): Use check_relro_support to decide whether to pass
1075 extra ld option "-z norelro".
1076
1077 2020-06-11 Alan Modra <amodra@gmail.com>
1078
1079 * readelf.c (process_mips_specific): Don't alloc memory for
1080 Elf_Internal_Options.
1081
1082 2020-06-11 Alan Modra <amodra@gmail.com>
1083
1084 * readelf.c (process_mips_specific): Assert size of internal
1085 types match size of external types, and simplify allocation of
1086 internal buffer. Catch possible integer overflow when sanity
1087 checking option size. Don't assume options are a regular array.
1088 Sanity check reginfo option against option size. Use PRI macros
1089 when printing.
1090
1091 2020-06-10 Ralf Habacker <ralf.habacker@freenet.de>
1092
1093 PR 26082
1094 * mclex.c (yylex): Reject lines that reach end-of-file without a
1095 terminating newline character.
1096
1097 2020-06-08 Nick Clifton <nickc@redhat.com>
1098
1099 PR 26093
1100 * doc/binutils.texi (strings): Fix typo.
1101
1102 2020-06-08 Nick Clifton <nickc@redhat.com>
1103
1104 PR 26086
1105 * dwarf.c (process_debug_info): Check that there is space in the
1106 debug_information array before filling in an entry.
1107
1108 2020-06-06 Alan Modra <amodra@gmail.com>
1109
1110 * doc/binutils.texi (PowerPC -M option): Mention power10 and pwr10.
1111
1112 2020-06-05 Joel Anderson <joelanderson333@gmail.com>
1113
1114 PR 26082
1115 * mclex.c (yylex): Add test for an empty input stream.
1116
1117 2020-06-04 Stephen Casner <casner@acm.org>
1118
1119 * testsuite/binutils-all/pr25662-pdp11.s: Alternate source file
1120 for test using section pseudo-ops compatible with pdp11.
1121 * testsuite/binutils-all/objcopy.exp: Select alternate source.
1122
1123 2020-06-04 Jose E. Marchesi <jose.marchesi@oracle.com>
1124
1125 * objdump.c (disassemble_data): Set disasm_info.endian_code to
1126 disasm_info.endian after the latter is initialized to the
1127 endianness reported by BFD.
1128
1129 2020-06-04 Alan Modra <amodra@gmail.com>
1130
1131 * testsuite/binutils-all/i386/i386.exp: Remove global directive
1132 outside proc body.
1133 * testsuite/binutils-all/x86-64/objects.exp: Likewise.
1134 * testsuite/binutils-all/x86-64/x86-64.exp: Likewise.
1135
1136 2020-06-03 Joel Anderson <joelanderson333@gmail.com>
1137
1138 * windmc.h (struct mc_node): Add id_typecast field.
1139 * mcparse.y (message): Initialise the id_typecast field.
1140 * windmc.c (write_dbg): Use the id_typecast field as a parameter
1141 when calling write_dbg_define.
1142 (write_header): Likewise.
1143
1144 2020-06-03 Alan Modra <amodra@gmail.com>
1145
1146 PR 26069
1147 * objcopy.c (copy_relocations_in_section): Free relpp on error.
1148 Don't accidentally free isection->orelocation.
1149
1150 2020-06-02 Alan Modra <amodra@gmail.com>
1151
1152 * testsuite/binutils-all/ar.exp (obj): Set up object file name
1153 extension. Use throughout. Don't completely exclude non-ELF
1154 alpha targets. Run long_filenames test for tic30. Exclude thin
1155 archive tests for aix, ecoff and vms.
1156 * estsuite/binutils-all/objdump.exp (obj): Set up object file name
1157 extension. Use throughout. Don't exclude non-ELF alpha targets
1158 from "bintest.a".
1159
1160 2020-05-28 Max Filippov <jcmvbkbc@gmail.com>
1161
1162 * MAINTAINERS (Xtensa): Add myself as maintainer.
1163
1164 2020-05-23 Alan Modra <amodra@gmail.com>
1165
1166 * testsuite/binutils-all/ar.exp (many_files): New test.
1167
1168 2020-05-21 Alan Modra <amodra@gmail.com>
1169
1170 * addr2line.c: Replace "if (x) free (x)" with "free (x)" throughout.
1171 * dlltool.c: Likewise.
1172 * elfcomm.c: Likewise.
1173 * rddbg.c: Likewise.
1174 * readelf.c: Likewise.
1175 * stabs.c: Likewise.
1176 * windmc.c: Likewise.
1177 * windres.c: Likewise.
1178 * wrstabs.c: Likewise.
1179
1180 2020-05-21 Alan Modra <amodra@gmail.com>
1181
1182 * readelf.c (get_num_dynamic_syms): Bounds check mipsxlat array
1183 access.
1184
1185 2020-05-20 Nelson Chu <nelson.chu@sifive.com>
1186
1187 * dwarf.c: Updated since DECLARE_CSR is changed.
1188
1189 2020-05-19 H.J. Lu <hjl.tools@gmail.com>
1190
1191 PR binutils/25809
1192 * readelf.c (process_program_headers): Warn if the PT_DYNAMIC
1193 segment doesn't match the .dynamic section and checks are
1194 enabled.
1195 (struct filedata): Add dynamic_symtab_section and
1196 dynamic_strtab_section fields.
1197 (process_section_headers): Set dynamic_symtab_section to the
1198 .dynsym section. Set dynamic_strtab_section to the .dynstr
1199 section.
1200 (process_dynamic_section): Warn if the .dynsym section doesn't
1201 match DT_SYMTAB and DT_SYMENT or the .dynstr section doesn't
1202 DT_STRTAB and DT_STRSZ. But only if checks are enabled.
1203
1204 2020-05-19 Alan Modra <amodra@gmail.com>
1205
1206 * ar.c (map_over_members, get_pos_bfd, delete_members, move_members),
1207 (replace_members): Use bfd_get_filename rather than accessing
1208 bfd->filename directly.
1209 * arsup.c (map_over_list, ar_delete, ar_replace, ar_extract): Likewise.
1210 * binemul.c (do_ar_emul_append): Likewise.
1211 * coffgrok.c (coff_grok): Likewise.
1212
1213 2020-05-18 Stafford Horne <shorne@gmail.com>
1214
1215 * MAINTAINERS (OR1K): Add myself as maintainer.
1216
1217 2020-05-07 Andrew Burgess <andrew.burgess@embecosm.com>
1218
1219 * doc/binutils.texi: Mention 'entry address' in the set-start and
1220 adjust-start options descriptions.
1221
1222 2020-05-05 Nick Clifton <nickc@redhat.com>
1223
1224 * dwarf.c (do_checks): New global variable.
1225 (display_formatted_table): Warn about an unexpected number of
1226 columns in the table, if checks are enabled. Do not complain
1227 about the lack of data following the number of entries in the
1228 table if the table is empty.
1229 (display_debug_lines_decoded): Only warn about an unexpected
1230 number of columns in a table if checks are enabled.
1231 * dwarf.h (do_checks): Add a prototype.
1232 * elfcomm.c (error): Remove weak attribute.
1233 (warn): Likewise.
1234 * readelf.c (do_checks): Delete.
1235 (warn): Delete.
1236 (process_section_headers): Only warn about empty sections if
1237 checks are enabled.
1238
1239 2020-05-04 Fangrui Song <maskray@google.com>
1240
1241 * objcopy.c (copy_object): Allow empty section.
1242 * testsuite/binutils-all/update-section.exp: Add test.
1243
1244 2020-05-04 Nick Clifton <nickc@redhat.com>
1245
1246 PR 25917
1247 * dwarf.c (display_debug_lines_decoded): Warn if encountering a
1248 supicious number of entries for DWARF-5 format directory and file
1249 name tables. Do not display file name table header if the table
1250 is empty. Do not allocate space for empty tables.
1251
1252 2020-05-04 Alan Modra <amodra@gmail.com>
1253
1254 * readelf.c (process_nds32_specific): Check size of .nds32_e_flags
1255 section. Don't assume endian of host matches nds32 target. Free
1256 buffer.
1257
1258 2020-05-01 Alan Modra <amodra@gmail.com>
1259 Haim Shimonovich <Haim.Shimonovich@ceva-dsp.com>
1260
1261 * objdump.c (disassemble_bytes): Don't scan for zeros when
1262 disassembling zeros. Translate "resuming at file offset" message.
1263 Formatting. Replace some signed variables with unsigned.
1264
1265 2020-04-30 Alex Coplan <alex.coplan@arm.com>
1266
1267 * testsuite/binutils-all/aarch64/in-order-all.d: Update to use new
1268 disassembly.
1269 * testsuite/binutils-all/aarch64/out-of-order-all.d: Likewise.
1270
1271 2020-04-30 Nick Clifton <nickc@redhat.com>
1272
1273 * testsuite/lib/binutils-common.exp (check_pie_support): New
1274 proc.
1275
1276 2020-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
1277
1278 * dwarf.c (display_debug_ranges): Ignore duplicate entries in
1279 range_entries for the same offset.
1280
1281 2020-04-29 Nick Clifton <nickc@redhat.com>
1282
1283 * readelf.c (warn): New function - like elfcomm.c version but only
1284 produces output if warnings are enabled.
1285 (struct options): Add --lint and --enable-checks.
1286 (usage): Add entry for --lint.
1287 (parse_args): Handle -L. If checks are enabled but no dumps have
1288 been selected then enable all dumps.
1289 (process_section_headers): Replace long if-then-else sequence with
1290 a switch. Add warning messages for empty SHT_REL, SHT_RELA and
1291 SHT_PROGBITS sections.
1292 (process_file): Do not complain if the file is an archive and lint
1293 mode has been enabled.
1294 * elfcomm.c (error): Make the function weak.
1295 (warn): Likewise.
1296 * NEWS: Mention the new feature.
1297 * doc/binutils.texi: Document the new feature.
1298 * dwarf.h (report_leb_status): Add file name and line number
1299 parameters. Include them in the diagnostic output.
1300 (READ_ULEB): Pass file and line number to report_leb_status.
1301 (READ_SLEB): Likewise.
1302 * dwarf.c (read_and_print_leb128): Pass file and line number to
1303 report_leb_status.
1304 * testsuite/binutils-all/readelf.exp: Add test of new feature.
1305 * testsuite/binutils-all/zero-sec.s: New test source file.
1306 * testsuite/binutils-all/zero-sec.r: Expected output from new
1307 test.
1308
1309 2020-04-29 Nick Clifton <nickc@redhat.com>
1310
1311 * po/sr.po: Updated Serbian translation.
1312
1313 2020-04-26 Alan Modra <amodra@gmail.com>
1314
1315 * readelf.c (get_num_dynamic_syms): Check DT_MIPS_XHASH was
1316 read before dereferencing, and gracefully return. Remove
1317 gnu_hash_error variable. Free gnu hash arrays if number of
1318 syms found is zero.
1319
1320 2020-04-24 Alan Modra <amodra@gmail.com>
1321
1322 * readelf.c (get_num_dynamic_syms): Check for nbuckets and nchains
1323 non-zero.
1324 (process_dynamic_section): Call get_num_dynamic_syms once rather
1325 than in segment loop. Break out of segment loop on a successful
1326 load of dynamic symbols. Formatting.
1327 (process_object): Return error status from process_dynamic_section.
1328
1329 2020-04-23 Anton Kolesov <anton.kolesov@synopsys.com>
1330
1331 * elf-bfd.h (elfcore_write_arc_v2): Add prototype.
1332 * elf.c (elfcore_grok_arc_v2): New function.
1333 (elfcore_grok_note): Call the new function to handle the corresponding
1334 note.
1335 (elfcore_write_arc_v2): New function.
1336 (elfcore_write_register_note): Call the new function to handle the
1337 corresponding pseudo-sections.
1338
1339 2020-04-22 Max Filippov <jcmvbkbc@gmail.com>
1340
1341 PR ld/25861
1342 * readelf.c (is_none_reloc): Recognize
1343 BFD_RELOC_XTENSA_PDIFF{8,16,32} and
1344 BFD_RELOC_XTENSA_NDIFF{8,16,32}.
1345
1346 2020-04-22 Nick Clifton <nickc@redhat.com>
1347
1348 * MAINTAINERS: Remove Chris Faylor as the ix86 PE maintainer.
1349
1350 2020-04-22 Alan Modra <amodra@gmail.com>
1351
1352 * readelf.c (archive_file_offset, archive_file_size, dynamic_addr),
1353 (dynamic_size, dynamic_nent, dynamic_strings, dynamic_strings_length),
1354 (num_dynamic_syms, nbuckets, nchains, buckets, chains),
1355 (ngnubuckets, gnubuckets, gnuchains, mipsxlat, ngnuchains),
1356 (gnusymidx, dynamic_symbols, dynamic_syminfo, dynamic_syminfo_offset),
1357 (dynamic_syminfo_nent, program_interpreter, dynamic_info),
1358 (dynamic_info_DT_GNU_HASH, dynamic_info_DT_MIPS_XHASH, version_info),
1359 (dynamic_section, symtab_shndx_list, group_count, section_groups),
1360 (section_headers_groups): Move to struct filedata. Update use
1361 throughout file.
1362
1363 2020-04-22 Alan Modra <amodra@gmail.com>
1364
1365 * readelf.c (struct dump_data): New, used..
1366 (cmdline): ..here, and..
1367 (struct filedata): ..here. Adjust all uses.
1368 (request_dump_bynumber, request_dump, parse_args): Pass in a
1369 struct dump_data* rather than Filedata*. Adjust callers.
1370 (main): Don't set cmdline.file_name.
1371
1372 2020-04-20 Alan Modra <amodra@gmail.com>
1373
1374 * readelf.c (process_symbol_table): Clear ngnuchains, ngnubuckets
1375 and nbuckets.
1376
1377 2020-04-20 Alan Modra <amodra@gmail.com>
1378
1379 * readelf.c (process_section_headers): Free dynamic symbols etc.
1380 earlier.
1381
1382 2020-04-20 Alan Modra <amodra@gmail.com>
1383
1384 * readelf.c (get_num_dynamic_syms): Formatting. Don't return
1385 on error without freeing.
1386 (process_dynamic_section): Don't recreate dynamic symbols from
1387 dynamic tag info when the dynamic symbols have already been
1388 read via section headers.
1389
1390 2020-04-17 Fredrik Strupe <fredrik@strupe.net>
1391
1392 * testsuite/binutils-all/arm/vdup-cond.d: New test for testing that
1393 conditional VDUP instructions are disassembled correctly.
1394 * testsuite/binutils-all/arm/vdup-cond.s: New file used by
1395 vdup-cond.d.
1396 * testsuite/binutils-all/arm/vdup-thumb.d: New test for testing
1397 that VDUP instructions (which are conditional in A32) can be
1398 disassembled in thumb mode.
1399 * testsuite/binutils-all/arm/vdup-cond.s: New file used by
1400 vdup-thumb.d.
1401
1402 2020-04-17 Alan Modra <amodra@gmail.com>
1403
1404 PR 25840
1405 * debug.c (debug_class_type_samep): Don't segfault on NULL type.
1406
1407 2020-04-16 Alan Modra <amodra@gmail.com>
1408
1409 * doc/binutils.texi: Mention --no-show-raw-insn in objdump
1410 --no-addresses description.
1411
1412 2020-04-15 Alan Modra <amodra@gmail.com>
1413
1414 * objdump.c (no_addresses): New static var.
1415 (usage): Print help for --no-addresses.
1416 (long_options): Add --no-addresses entry.
1417 (objdump_print_addr_with_sym, objdump_print_addr): Omit symbol address.
1418 (disassemble_bytes): Don't print current line address, or reloc
1419 address.
1420 * doc/binutils.texi: Document objdump --no-addresses.
1421
1422 2020-04-15 Alan Modra <amodra@gmail.com>
1423
1424 PR 25822
1425 * readelf.c (get_num_dynamic_syms): Don't set num_of_syms when
1426 reading buckets or chains fails.
1427
1428 2020-04-15 Alan Modra <amodra@gmail.com>
1429
1430 * readelf.c (process_symbol_table): Zero gnubuckets, gnuchains
1431 etc. after freeing.
1432
1433 2020-04-15 Alan Modra <amodra@gmail.com>
1434
1435 * readelf.c (get_group_flags): Translate text.
1436 (get_file_type, get_symbol_binding, get_symbol_type),
1437 (get_ppc64_symbol_other, get_symbol_other): Increase size of buffer.
1438
1439 2020-04-15 Alan Modra <amodra@gmail.com>
1440
1441 PR 25821
1442 * readelf.c (get_num_dynamic_syms): Typo fix.
1443
1444 2020-04-14 Alan Modra <amodra@gmail.com>
1445
1446 * readelf.c (process_mips_specific): Free eopt and iopt. Avoid
1447 possibility of overflow when checking number of conflicts.
1448
1449 2020-04-14 H.J. Lu <hongjiu.lu@intel.com>
1450
1451 PR binutils/25707
1452 * readelf.c (nbuckets): New.
1453 (nchains): Likewise.
1454 (buckets): Likewise.
1455 (chains): Likewise.
1456 (ngnubuckets): Likewise.
1457 (gnubuckets): Likewise.
1458 (gnuchains): Likewise.
1459 (mipsxlat): Likewise.
1460 (ngnuchains): Likewise.
1461 (gnusymidx): Likewise.
1462 (VALID_SYMBOL_NAME): Likewise.
1463 (VALID_DYNAMIC_NAME): Use it.
1464 (get_dynamic_data): Moved before process_dynamic_section.
1465 (get_num_dynamic_syms): New function.
1466 (process_dynamic_section): Use DT_SYMTAB, DT_SYMENT, DT_HASH,
1467 DT_GNU_HASH and DT_MIPS_XHASH to reconstruct dynamic symbol
1468 table. Use DT_STRTAB and DT_STRSZ to reconstruct dynamic string
1469 table.
1470 (get_symbol_index_type): Don't print "bad section index" when
1471 there is no section header.
1472 (print_dynamic_symbol): Rewrite.
1473 (process_symbol_table): Call print_dynamic_symbol to dump dynamic
1474 symbol table.
1475
1476 2020-04-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1477
1478 * testsuite/lib/binutils-common.exp (supports_gnu_osabi): Don't
1479 enable on *-*-solaris*.
1480
1481 2020-03-30 Nick Clifton <nickc@redhat.com>
1482
1483 PR binutils/25662
1484 * objcopy.c (copy_object): When copying PE format files set the
1485 timestamp field in the pe_data structure if the preserve_dates
1486 flag is set.
1487 * testsuite/binutils-all/objcopy.exp (objcopy_test) Use
1488 --preserve-dates in place of the -p option, in order to make its
1489 effect more obvious.
1490
1491 2020-03-28 Alan Modra <amodra@gmail.com>
1492
1493 * testsuite/binutils-all/objcopy.exp (objcopy_test): Only
1494 clear_xfail hppa*-*-*elf*. Revert mips xfails.
1495
1496 2020-03-28 Alan Modra <amodra@gmail.com>
1497
1498 * testsuite/binutils-all/objcopy.exp (objcopy_test): Move xfails
1499 from here to calls. Remove "m8*-*-*" entry. Don't xfail tic54x
1500 but do xfail spu, mipstx39 and mips-sgi-irix for the executable
1501 test. Pass "-p" to objcopy for the executable test.
1502
1503 2020-03-27 Jozef Lawrynowicz <jozef.l@mittosystems.com>
1504
1505 PR binutils/25662
1506 * testsuite/binutils-all/objcopy.exp (objcopy_test): Add argument to
1507 specify whether an object file or executable should be built and tested.
1508 Change test names to report whether an object file or executable is
1509 being tested.
1510 * testsuite/binutils-all/pr25662.ld: New test.
1511 * testsuite/binutils-all/pr25662.s: New test.
1512
1513 2020-03-27 Alan Modra <amodra@gmail.com>
1514
1515 * readelf.c (process_archive): Don't double free qualified_name.
1516 Don't break out of loop with "negative" archive_file_size, just
1517 set file offset to max.
1518
1519 2020-03-25 Alan Modra <amodra@gmail.com>
1520
1521 * readelf.c (process_archive): Prevent endless loop.
1522
1523 2020-03-24 H.J. Lu <hongjiu.lu@intel.com>
1524
1525 PR binutils/25708
1526 * nm.c (print_symname): Replace _bfd_elf_get_symbol_version_name
1527 with bfd_get_symbol_version_string.
1528 (print_symbo): Pass TRUE to bfd_get_symbol_version_string.
1529 * objdump.c (objdump_print_symname): Likewise.
1530
1531 2020-03-24 H.J. Lu <hongjiu.lu@intel.com>
1532
1533 PR binutils/25708
1534 * nm.c (SYM_NAME): Removed.
1535 (print_symname): Add a pointer to struct extended_symbol_info
1536 argument. Call _bfd_elf_get_symbol_version_name to get symbol
1537 version.
1538 (print_symdef_entry): Pass NULL to print_symname.
1539 (print_symbol_info_bsd): Update call to print_symname.
1540 (print_symbol_info_sysv): Likewise.
1541 (print_symbol_info_posix): Likewise.
1542
1543 2020-03-24 Alan Modra <amodra@gmail.com>
1544
1545 * readelf.c (process_mips_specific): Free iconf on error path.
1546
1547 2020-03-23 Nick Clifton <nickc@redhat.com>
1548
1549 PR 25714
1550 * wrstabs.c (stab_pop_type): Replace assertion with error return.
1551 * write_stabs_in_sections_debugging_info: Likewise.
1552 * stab_enum_type: Likewise.
1553 * stab_modify_type: Likewise.
1554 * stab_struct_field: Likewise.
1555 * stab_end_struct_type: Likewise.
1556 * stab_start_class_type: Likewise.
1557 * stab_class_static_member: Likewise.
1558 * stab_class_baseclass: Likewise.
1559 * stab_class_start_method: Likewise.
1560 * stab_class_method_var: Likewise.
1561 * stab_class_end_method: Likewise.
1562 * stab_end_class_type: Likewise.
1563 * stab_typedef_type: Likewise.
1564 * stab_start_function: Likewise.
1565 * stab_end_block: Likewise.
1566 * stab_lineno: Likewise.
1567
1568 2020-03-20 Nick Clifton <nickc@redhat.com>
1569
1570 * readelf.c (get_compression_header): Add ATTRIBUTE_WARN_UNUSED_RESULT.
1571 (process_section_headers): Check the return value from
1572 get_compression_header.
1573 (dump_section_as_strings): Likewise.
1574 (dump_section_as_bytes): Likewise.
1575 (load_specific_debug_section): Likewise.
1576
1577 2020-03-20 H.J. Lu <hongjiu.lu@intel.com>
1578
1579 * ar.c (main): Update bfd_plugin_set_program_name call.
1580 * nm.c (main): Likewise.
1581
1582 2020-03-19 Nick Clifton <nickc@redhat.com>
1583
1584 PR 25676
1585 * testsuite/binutils-all/dw4.s: New test source file.
1586 * testsuite/binutils-all/nm.exp: Run the new test.
1587
1588 2020-03-19 H.J. Lu <hongjiu.lu@intel.com>
1589
1590 * readelf.c (process_symbol_table): Use unsigned long for si.
1591
1592 2020-03-19 Alan Modra <amodra@gmail.com>
1593
1594 * elfcomm.c: Don't include bfd.h or bucomm.h.
1595 (program_name): Declare.
1596 (process_archive_index_and_symbols): Replace bfd_boolean with int,
1597 and substitute FALSE and TRUE.
1598 (setup_archive, setup_nested_archive): Likewise.
1599 * elfcomm.h: Likewise.
1600
1601 2020-03-19 Alan Modra <amodra@gmail.com>
1602
1603 * readelf.c (process_archive): Always return via path freeing
1604 memory. Formatting.
1605
1606 2020-03-19 Alan Modra <amodra@gmail.com>
1607
1608 * readelf.c (process_netbsd_elf_note): Validate descsz before
1609 accessing descdata. Formatting.
1610
1611 2020-03-19 Alan Modra <amodra@gmail.com>
1612
1613 * elfcomm.c (setup_archive): Make file_size an off_t. Comment.
1614 * elfcomm.h (setup_archive): Update prototype.
1615
1616 2020-03-16 Alan Modra <amodra@gmail.com>
1617
1618 * readelf.c (get_symbols): New function.
1619 (process_relocs, ia64_process_unwind, hppa_process_unwind),
1620 (arm_process_unwind, get_symbol_for_build_attribute): Use it.
1621
1622 2020-03-16 Alan Modra <amodra@gmail.com>
1623
1624 * unwind-ia64.c (unw_decode_uleb128): Prevent overlarge shifts.
1625 Detect shift overflows and check that terminating byte is found.
1626 Print an error on a bad uleb128.
1627
1628 2020-03-14 Alan Modra <amodra@gmail.com>
1629
1630 * readelf.c (process_file): Clean ba_cache.
1631
1632 2020-03-14 Alan Modra <amodra@gmail.com>
1633
1634 * elfcomm.h (setup_archive): Update prototype.
1635 * elfcomm.c (setup_archive): Add file_size parameter and sanity
1636 check longnames_size.
1637 (setup_nested_archive): Get file size and pass to setup_archive.
1638 * elfedit.c (process_archive): Likewise.
1639 * readelf.c (process_archive): Pass filedata->file_size to
1640 setup_archive.
1641
1642 2020-03-14 Alan Modra <amodra@gmail.com>
1643
1644 * readelf.c (dump_section_as_strings): Free memory on error exit.
1645 (dump_section_as_bytes, process_notes_at): Likewise.
1646 (get_build_id): Free enote.
1647
1648 2020-03-13 Kamil Rytarowski <n54@gmx.com>
1649
1650 * readelf.c (get_netbsd_elfcore_note_type): Add support for
1651 NT_NETBSDCORE_LWPSTATUS notes.
1652
1653 2020-03-13 Alan Modra <amodra@gmail.com>
1654
1655 * elfcomm.c (get_archive_member_name): Always return malloc'd
1656 string or NULL.
1657 * elfedit.c (process_archive): Tidy memory on all return paths.
1658 * readelf.c (process_archive): Likewise.
1659 (process_symbol_table): Likewise.
1660 (ba_cache): New, replacing ..
1661 (get_symbol_for_build_attribute): ..static vars here. Free
1662 strtab and symtab before loading new ones. Reject symtab without
1663 valid strtab in loop, breaking out of loop on valid symtab.
1664 (process_file): Free ba_cache symtab and strtab here, resetting
1665 ba_cache.
1666
1667 2020-03-12 Alan Modra <amodra@gmail.com>
1668
1669 * readelf.c (process_section_headers): Don't just set
1670 filedata->section_headers NULL, free it first. Similarly for
1671 dynamic_symbols, dynamic_strings, dynamic_syminfo and
1672 symtab_shndx_list. Zero associated counts too.
1673 (process_object): Free symtab_shndx_list.
1674 (process_file): Free various allocated filedata tables.
1675
1676 2020-03-11 Nick Clifton <nickc@redhat.com>
1677
1678 PR 25611
1679 PR 25614
1680 * dwarf.h (DWARF2_Internal_LineInfo): Add li_address_size and
1681 li_segment_size fields.
1682 * dwarf.c (read_debug_line_header): Record the address size and
1683 segment selector size values (if present) in the lineinfo
1684 structure.
1685 (display_formatted_table): Warn if the format count is empty but
1686 the table itself is not empty.
1687 Display the format count and entry count at the start of the table
1688 dump.
1689 (display_debug_lines_raw): Display the address size and segement
1690 selector size fields, if present.
1691 * testsuite/binutils-all/dw5.W: Update expected output.
1692
1693 2020-03-11 Alan Modra <amodra@gmail.com>
1694
1695 PR 25651
1696 * objcopy.c (copy_object): Test "gaps" not gap_fill_set or
1697 pad_to_set on second block of code dealing with padding.
1698 Replace "c" with "num_sec" and don't recalculate number of
1699 sections on second block. Size arrays using sizeof (element)
1700 rather than sizeof (element type).
1701
1702 2020-03-10 Alan Modra <amodra@gmail.com>
1703
1704 * objdump.c (disassemble_section): Don't call qsort unless
1705 sym count is at least two.
1706 (disassemble_data): Don't call memcpy with NULL src.
1707
1708 2020-03-09 Alan Modra <amodra@gmail.com>
1709
1710 PR 25645
1711 * readelf.c (dump_ia64_vms_dynamic_fixups): Pass size and nmemb
1712 to get_data rather than multiplying.
1713 (dump_ia64_vms_dynamic_relocs): Likewise.
1714 (process_version_sections): Correct order of size and nmemb args
1715 in get_data call.
1716 (process_mips_specific): Likewise.
1717
1718 2020-03-08 H.J. Lu <hongjiu.lu@intel.com>
1719
1720 * readelf.c (get_dynamic_data): Replace "memory chekers" with
1721 "memory checkers" in comments.
1722
1723 2020-03-06 Simon Marchi <simon.marchi@efficios.com>
1724
1725 PR 25491
1726 * doc/Makefile.am: Rename MOSTLYCLEANFILES to MAINTAINERCLEANFILES.
1727 * doc/Makefile.in: Re-generate.
1728
1729 2020-03-06 Nick Clifton <nickc@redhat.com>
1730
1731 * objcopy.c (check_new_section_flags): New function. Reject the
1732 SEC_COFF_SHARED flag if the target is not a COFF binary.
1733 (copy_object): Call check_new_section_flags.
1734 (setup_section): Likewise.
1735 * doc/binutils.texi (objcopy): Add a note that the 'share' section
1736 flag cannot be applied to ELF binaries.
1737
1738 2020-03-06 Alan Modra <amodra@gmail.com>
1739
1740 PR 25637
1741 * objcopy.c (filter_symbols): Correct rem_leading_char logic.
1742
1743 2020-03-05 Alan Modra <amodra@gmail.com>
1744
1745 PR 25629
1746 * objcopy.c (filter_symbols): Don't segfault on NULL
1747 prefix_symbols_string.
1748
1749 2020-03-04 Christian Eggers <ceggers@gmx.de>
1750
1751 * objcopy.c (copy_object): Convert from bytes to octets for
1752 --gap-fill and --pad-to.
1753
1754 2020-03-03 Nick Clifton <nickc@redhat.com>
1755
1756 PR 25625
1757 * prdbg.c (pr_tag_type): Remove call to abort.
1758
1759 2020-03-02 Aaron Merey <amerey@redhat.com>
1760
1761 * binutils/testsuite/binutils-all/debuginfod.exp: Improve port
1762 selection.
1763
1764 2020-03-02 Nick Clifton <nickc@redhat.com>
1765
1766 PR 25543
1767 * readelf.c (dump_section_as_strings): Display new-line characters
1768 as \n and then insert a line break.
1769 * testsuite/binutils-all/pr25543.s: New test.
1770 * testsuite/binutils-all/pr25543.d: Test driver.
1771 * testsuite/binutils-all/readelf.exp: Run the new test.
1772
1773 2020-02-27 Nick Clifton <nickc@redhat.com>
1774
1775 PR 25526
1776 * readelf.c (process_ia64_vms_dynamic_relocs): Check to see if
1777 get_data is unable to load the string table.
1778
1779 2020-02-26 Alan Modra <amodra@gmail.com>
1780
1781 * elfedit.c: Indent labels correctly.
1782 * readelf.c: Likewise.
1783 * resres.c: Likewise.
1784
1785 2020-02-25 H.J. Lu <hongjiu.lu@intel.com>
1786
1787 PR binutils/25584
1788 * ar.c (main): Pass 0 to bfd_plugin_set_program_name.
1789 * nm.c (main): Pass 1 to bfd_plugin_set_program_name.
1790
1791 2020-02-24 Nick Clifton <nickc@redhat.com>
1792
1793 PR 25499
1794 * doc/binutils.texi (objdump): Fix typo in description of
1795 objdump's -g option.
1796
1797 2020-02-20 Nelson Chu <nelson.chu@sifive.com>
1798
1799 * dwarf.c (regname_internal_riscv): Updated since the DECLARE_CSR
1800 is changed.
1801
1802 2020-02-19 Jordan Rupprecht <rupprecht@google.com>
1803
1804 * objdump.c (show_line): call bfd_demangle when using do_demangle.
1805
1806 2020-02-19 Andrew Burgess <andrew.burgess@embecosm.com>
1807
1808 * configure: Regenerate.
1809
1810 2020-02-10 Fangrui Song <maskray@google.com>
1811
1812 * objcopy.c (parse_flags): Handle "exclude".
1813 * doc/binutils.texi: Document the support.
1814
1815 2020-02-10 Aaron Merey <amerey@redhat.com>
1816
1817 * binutils/testsuite/binutils-all/debuginfod.exp:
1818 Replace set ::env with setenv.
1819 Start server before setting environment variable.
1820 Specify tmpdir as the location of the server's
1821 database.
1822 Check additional server metrics at start-up.
1823
1824 2020-02-07 Nick Clifton <nickc@redhat.com>
1825
1826 * README-how-to-make-a-release: Add note about updating the
1827 GAS/NEWS URL in the next release.
1828
1829 2020-02-07 Sergey Belyashov <sergey.belyashov@gmail.com>
1830
1831 PR 25469
1832 * readelf.c (get_machine_flags): Add support for Z80N machine
1833 number.
1834
1835 2020-02-07 Nick Clifton <nickc@redhat.com>
1836
1837 * dwarf.c (display_debug_lines_decoded): Force a NUL termination
1838 of the truncated file name.
1839
1840 2020-02-06 Andrew Burgess <andrew.burgess@embecosm.com>
1841
1842 * objdump.c (print_jump_visualisation): New function.
1843 (disassemble_bytes): Call new function.
1844
1845 2020-02-06 Alan Modra <amodra@gmail.com>
1846
1847 * testsuite/lib/binutils-common.exp (match_target): Accept '!' before
1848 TCL procedure.
1849 (supports_gnu_osabi): New procedure.
1850 (is_generic): New, from ld-lib.exp.
1851 (supports_gnu_unique): Use the above.
1852
1853 2020-02-04 Alan Modra <amodra@gmail.com>
1854
1855 * Makefile.am (CFILES): Add od-elf32_avr.c.
1856 * Makefile.in: Regenerate.
1857 * po/POTFILES.in: Regenerate.
1858
1859 2020-02-03 Andreas Schwab <schwab@linux-m68k.org>
1860
1861 * readelf.c (dump_relocations, dump_relocations)
1862 (decode_arm_unwind_bytecode, process_dynamic_section)
1863 (get_symbol_visibility, get_alpha_symbol_other): Add newline to
1864 error message.
1865
1866 2020-02-03 Sergei Trofimovich <siarheit@google.com>
1867
1868 * coffdump.c (program_name): Drop redundant definition.
1869 * srconv.c (program_name): Likewise
1870 * sysdump.c (program_name): Likewise
1871
1872 2020-02-02 H.J. Lu <hongjiu.lu@intel.com>
1873
1874 PR gas/25380
1875 * objdump.c (sym_ok): Return FALSE if 2 sections are in the
1876 same file with different section pointers.
1877
1878 2020-02-01 Nick Clifton <nickc@redhat.com>
1879
1880 * README-how-to-make-a-release: Update with more details on the
1881 release making process.
1882
1883 2020-01-31 Nick Clifton <nickc@redhat.com>
1884
1885 * po/sv.po: Updated Swedish translation.
1886
1887 2020-01-28 Nick Clifton <nickc@redhat.com>
1888
1889 * readelf.c (get_build_id): Simplify warning message about corrupt
1890 notes encountered whilst scanning for the build-id.
1891
1892 2020-01-27 Roland McGrath <mcgrathr@google.com>
1893
1894 * objcopy.c (compare_gnu_build_notes): Fix comparison results
1895 for overlapping ranges so that (A == B) == (B == A) holds.
1896
1897 2020-01-27 Alan Modra <amodra@gmail.com>
1898
1899 * testsuite/lib/binutils-common.exp (big_or_little_endian): Replace
1900 case statement with switch statement.
1901
1902 2020-01-24 Nick Clifton <nickc@redhat.com>
1903
1904 * readelf.c (get_build_id): Fix warning messages about corrupt
1905 notes.
1906
1907 2020-01-23 Nick Clifton <nickc@redhat.com>
1908
1909 * po/fr.po: Updated French translation.
1910
1911 2020-01-22 Yuri Chornoivan <yurchor@mageia.org>
1912
1913 PR 25417
1914 * readelf.c (get_alpha_symbol_other): Fix error message typo.
1915
1916 2020-01-20 Nick Clifton <nickc@redhat.com>
1917
1918 * po/pt.po: Updated Portuguese translation.
1919 * po/uk.po: Updated Ukranian translation.
1920
1921 2020-01-18 Nick Clifton <nickc@redhat.com>
1922
1923 * README-how-to-make-a-release: Update notes on how to cut a
1924 branch for a release.
1925
1926 2020-01-18 Nick Clifton <nickc@redhat.com>
1927
1928 * configure: Regenerate.
1929 * po/binutils.pot: Regenerate.
1930
1931 2020-01-18 Nick Clifton <nickc@redhat.com>
1932
1933 Binutils 2.34 branch created.
1934
1935 2020-01-17 Thomas Troeger <tstroege@gmx.de>
1936
1937 * objdump.c (jump_info_visualize_address): Discard jumps that are
1938 no longer needed.
1939 (disassemble_bytes): Only compute the maximum level if jumps were
1940 detected.
1941
1942 2020-01-13 Nick Clifton <nickc@redhat.com>
1943
1944 * objdump.c (disassemble_bytes): Remove C99-ism.
1945 * testsuite/binutils-all/debuginfod.exp: New tests.
1946
1947 2020-01-13 Thomas Troeger <tstroege@gmx.de>
1948
1949 * objdump.c (visualize_jumps, color_output, extended_color_output)
1950 (detected_jumps): New variables.
1951 (usage): Add the new jump visualization options.
1952 (option_values): Add new option value.
1953 (long_options): Add the new option.
1954 (jump_info_new, jump_info_free): New functions.
1955 (jump_info_min_address, jump_info_max_address): Likewise.
1956 (jump_info_end_address, jump_info_is_start_address): Likewise.
1957 (jump_info_is_end_address, jump_info_size): Likewise.
1958 (jump_info_unlink, jump_info_insert): Likewise.
1959 (jump_info_add_front, jump_info_move_linked): Likewise.
1960 (jump_info_intersect, jump_info_merge): Likewise.
1961 (jump_info_sort, jump_info_visualize_address): Likewise.
1962 (disassemble_jumps): New function - used to locate jumps.
1963 (disassemble_bytes): Add ascii art generation.
1964 (disassemble_section): Add scan to locate jumps.
1965 (main): Parse the new visualization option.
1966 * doc/binutils.texi: Document the new feature.
1967 * NEWS: Mention the new feature.
1968
1969 2020-01-13 Alan Modra <amodra@gmail.com>
1970
1971 PR 25360
1972 PR 25361
1973 * dwarf.c (display_debug_frames): Move fde_fc earlier. Free
1974 fde_fc col_type and col_offset.
1975 * readelf.c (apply_relocations): Move symsec check earlier.
1976 (free_debug_section): Free reloc_info.
1977 (process_notes_at): Free pnotes on error path.
1978 (process_object): Free dump_sects here..
1979 (process_archive): ..not here.
1980
1981 2020-01-13 Alan Modra <amodra@gmail.com>
1982
1983 PR 25362
1984 * nm.c (display_rel_file): Free dyn_syms.
1985
1986 2020-01-09 Nick Clifton <nickc@redhat.com>
1987
1988 PR 25220
1989 * objcopy.c (empty_name): New variable.
1990 (need_sym_before): Prevent an attempt to free a static variable.
1991 (filter_symbols): Avoid strcmp test by checking for pointer
1992 equality.
1993
1994 2020-01-09 Nick Clifton <nickc@redhat.com>
1995
1996 * po/zh_TW.po: Updated Traditional Chinese translation.
1997
1998 2020-01-09 Aaron Merey <amerey@redhat.com>
1999
2000 * Makefile.am (readelf_LDADD, objdump_LDADD): Add libdebuginfod.
2001 * Makefile.in: Regenerate.
2002 * NEWS: Update.
2003 * config.in: Regenerate.
2004 * configure: Regenerate.
2005 * configure.ac: Call AC_DEBUGINFOD.
2006 * doc/Makefile.in: Regenerate.
2007 * doc/binutils.texi: Add section on using binutils
2008 with debuginfod.
2009 * dwarf.c (debuginfod_fetch_separate_debug_info): New function.
2010 Query debuginfod servers for the target debug file.
2011 (load_separate_debug_info): Call
2012 debuginfod_fetch_separate_debug_info if configured with
2013 debuginfod.
2014 (load_separate_debug_files): Add file argument to
2015 load_separate_debug_info calls.
2016 * dwarf.h (get_build_id): Add declaration.
2017 * objdump.c (get_build_id): New function. Get build-id of file.
2018 * readelf.c (get_build_id): Likewise.
2019 * testsuite/binutils-all/debuginfod.exp: New tests.
2020 * testsuite/binutils-all/linkdebug.s: Add .note.gnu.build-id
2021 section.
2022
2023 2020-01-02 Sergey Belyashov <sergey.belyashov@gmail.com>
2024
2025 * readelf.c: Add support for new Z*) relocations and machine
2026 types.
2027
2028 2020-01-01 Alan Modra <amodra@gmail.com>
2029
2030 Update year range in copyright notice of all files.
2031
2032 For older changes see ChangeLog-2019
2033 \f
2034 Copyright (C) 2020 Free Software Foundation, Inc.
2035
2036 Copying and distribution of this file, with or without modification,
2037 are permitted in any medium without royalty provided the copyright
2038 notice and this notice are preserved.
2039
2040 Local Variables:
2041 mode: change-log
2042 left-margin: 8
2043 fill-column: 74
2044 version-control: never
2045 End:
This page took 0.073983 seconds and 4 git commands to generate.