b8ae470f836f86c8fb1c60e8a188984f24a504f3
[deliverable/binutils-gdb.git] / binutils / ChangeLog
1 2019-12-17 Alan Modra <amodra@gmail.com>
2
3 * testsuite/binutils-all/objcopy.exp: Remove tic80 support.
4 * testsuite/binutils-all/objdump.exp: Likewise.
5
6 2019-12-11 Alan Modra <amodra@gmail.com>
7
8 * od-xcoff.c (dump_dumpx_core): Adjust for bfd_h_get_8 change.
9
10 2019-12-10 Alan Modra <amodra@gmail.com>
11
12 PR 24960
13 * objdump.c (disassemble_data): Call disassemble_free_target.
14
15 2019-12-10 Alan Modra <amodra@gmail.com>
16
17 * objdump.c (struct objdump_disasm_info): Delete "sec".
18 (find_symbol_for_address): Use inf->section rather than aux->sec.
19 (objdump_print_addr, disassemble_bytes): Likewise.
20 (disassemble_section): Don't set aux->sec.
21
22 2019-12-08 Alan Modra <amodra@gmail.com>
23
24 * testsuite/lib/binutils-common.exp (regexp_diff): Support #?REGEXP.
25
26 2019-11-22 Andrew Burgess <andrew.burgess@embecosm.com>
27
28 * dwarf.c (regname_internal_riscv): New function.
29 (init_dwarf_regnames_riscv): Use new function.
30
31 2019-11-22 Andrew Burgess <andrew.burgess@embecosm.com>
32
33 * dwarf.c (typedef dwarf_regname_lookup_ftype): New typedef.
34 (dwarf_regnames_lookup_func): New static global.
35 (init_dwarf_regnames_i386): Set dwarf_regnames_lookup_func.
36 (init_dwarf_regnames_iamcu): Likewise.
37 (init_dwarf_regnames_x86_64): Likewise.
38 (init_dwarf_regnames_aarch64): Likewise.
39 (init_dwarf_regnames_s390): Likewise.
40 (init_dwarf_regnames_riscv): Likewise.
41 (init_dwarf_regnames_by_elf_machine_code): Reset
42 dwarf_regnames_lookup_func to NULL.
43 (init_dwarf_regnames_by_bfd_arch_and_mach): Likewise.
44 (regname_internal_by_table_only): New function.
45 (regname): Make use of dwarf_regnames_lookup_func.
46
47 2019-11-22 Andrew Burgess <andrew.burgess@embecosm.com>
48
49 * dwarf.c (init_dwarf_regnames_i386): Make static.
50 (init_dwarf_regnames_iamcu): Make static.
51 (init_dwarf_regnames_x86_64): Make static.
52 (init_dwarf_regnames_aarch64): Make static.
53 (init_dwarf_regnames_s390): Make static.
54 (init_dwarf_regnames_riscv): Make static.
55 * dwarf.h (init_dwarf_regnames_i386): Delete declaration.
56 (init_dwarf_regnames_iamcu): Delete declaration.
57 (init_dwarf_regnames_x86_64): Delete declaration.
58 (init_dwarf_regnames_aarch64): Delete declaration.
59 (init_dwarf_regnames_s390): Delete declaration.
60 (init_dwarf_regnames_riscv): Delete declaration.
61
62 2019-11-22 Andrew Burgess <andrew.burgess@embecosm.com>
63
64 * dwarf.c (init_dwarf_regnames_by_bfd_arch_and_mach): New
65 function.
66 * dwarf.h (init_dwarf_regnames_by_bfd_arch_and_mach): Declare.
67 * objdump.c (dump_dwarf): Call new function instead of calling
68 specific initialization routines. Restrucure so that eh_addr_size
69 is still calculated correctly.
70
71 2019-11-22 Andrew Burgess <andrew.burgess@embecosm.com>
72
73 * dwarf.c (init_dwarf_regnames): Renamed to...
74 (init_dwarf_regnames_by_elf_machine_code): ...this.
75 * dwarf.h (init_dwarf_regnames): Renamed to...
76 (init_dwarf_regnames_by_elf_machine_code): ...this.
77 * readelf.c (process_file_header): Update call to use new name.
78
79 2019-11-22 Andrew Burgess <andrew.burgess@embecosm.com>
80
81 * dwarf.c (frame_need_space): Compare dwarf_regnames_count against
82 0, and only warn about large numbers of registers if the number is
83 more than the dwarf_regnames_count.
84
85 2019-11-25 Christian Eggers <ceggers@gmx.de>
86
87 * objdump.c (disassemble_data): Provide section parameter to
88 bfd_octets_per_byte.
89 (dump_section): likewise
90 (dump_section_header): likewise. Show SEC_ELF_OCTETS flag if set.
91
92 2019-11-21 Alan Modra <amodra@gmail.com>
93
94 PR 273
95 * size.c (sysv_internal_sizer, sysv_internal_printer): Exclude
96 sections with no flag bits set.
97 * testsuite/binutils-all/size.exp: Allow $CODE$ as a text section.
98
99 2019-11-21 Nick Clifton <nickc@redhat.com>
100
101 * objcopy.c (merge_gnu_build_notes): Allow for the possibility
102 that the new notes might actually be larger than the original
103 notes.
104
105 2019-11-21 Alan Modra <amodra@gmail.com>
106
107 * testsuite/lib/binutils-common.exp (is_pecoff_format): Rewrite
108 with positive logic and add more target triples.
109
110 2019-11-19 Alan Modra <amodra@gmail.com>
111
112 PR 24499
113 * objcopy.c (copy_file): Ignore --add-gnu-debuglink for archives.
114
115 2019-11-19 Alan Modra <amodra@gmail.com>
116
117 PR 24968
118 * objcopy.c (copy_object): For ELF output and non-ELF input without
119 arch, take arch from output file if not given by -B. Don't
120 bfd_get_arch_info when we already have iarch.
121
122 2019-11-19 Alan Modra <amodra@gmail.com>
123
124 PR 25191
125 * objcopy.c (is_nondebug_keep_contents_section): Use bfd_get_flavour.
126 (copy_object): Likewise.
127 (setup_section): Likewise. If flavour of input and output files
128 differ, restrict section flags to the intersection of input and
129 output bfd_applicable_section_flags.
130
131 2019-11-19 Alan Modra <amodra@gmail.com>
132
133 * bucomm.c (bfd_nonfatal_message): Add a space between program
134 name and file.
135
136 2019-11-18 Alan Modra <amodra@gmail.com>
137
138 PR 25198
139 * prdbg.c (tg_start_class_type): Correct scope of idbuf.
140
141 2019-11-08 Alan Modra <amodra@gmail.com>
142
143 PR 25172
144 * objdump.c (usage): Correct --stop-address description.
145
146 2019-11-07 Nick Clifton <nickc@redhat.com>
147
148 * ar.c (open_output_file): Check for filename validity before
149 prefixing with output directory.
150 Display the constructed output filename if in verbose mode.
151 (extract_file): Let open_output_file display the filename.
152
153 2019-11-07 Nick Clifton <nickc@redhat.com>
154
155 * objcopy.c (copy_object): Skip note sections that do not have
156 an output section. Always copy note sections, even if no
157 changes are made.
158
159 2019-11-06 Christian Eggers <ceggers@gmx.de>
160
161 * readelf.c (IN_RANGE): Rename parameter OFF to NELEM. Add
162 comment. Catch potential integer overflow and fix off by one
163 error whilst checking reloc location against section size.
164 (apply_relocations): Use IN_RANGE macro.
165
166 2019-11-04 Fangrui Song <maskray@google.com>
167
168 * objcopy.c (enum option_values): Add OPTION_KEEP_SECTION.
169 (SECTION_CONTEXT_KEEP): Define. Adjust other SECTION_CONTEXT macros.
170 (copy_usage): Describe --keep-section.
171 (strip_usage): Likewise.
172 (copy_main): Handle SECTION_CONTEXT_KEEP.
173 (strip_main): Likewise.
174 (is_strip_section_1): Likewise.
175 * testsuite/binutils-all/objcopy.exp: Add tests.
176 * testsuite/binutils-all/keep-section-1.d: New test driver file.
177 * testsuite/binutils-all/keep-section-2.d: Likewise.
178 * doc/binutils.texi: Document the new feature.
179 * NEWS: Mention the new feature.
180
181 2019-10-20 Palmer Dabbelt <palmer@sifive.com>
182
183 * MAINTAINERS: Change palmer@sifive.com to palmer@dabbelt.com.
184
185 2019-10-30 Fangrui Song <i@maskray.me>
186 Nick Clifton <nickc@redhat.com>
187
188 * ar.c (emum long option numbers): Declare. Use to provide
189 numerical values for long options.
190 (long_options): Add --output option.
191 (usage): Mention the --output option.
192 (open_output_file): New function. Create a filepath for an output
193 file and open it.
194 (extract_file): Use open_output_file().
195 (open_output_file):
196 * testsuite/binutils-all/ar.exp: Add a test of the new feature.
197 * doc/binutils.texi: Document the new feature.
198 * NEWS: Mention the new feature.
199
200 2019-10-26 Alan Modra <amodra@gmail.com>
201
202 * objcopy.c (sort_gnu_build_notes): Correct sort of deleted
203 note2.
204
205 2019-10-25 H.J. Lu <hongjiu.lu@intel.com>
206
207 * elfedit.c (elf_x86_feature): Report unknown x86 feature.
208
209 2019-10-25 H.J. Lu <hongjiu.lu@intel.com>
210
211 * elfedit.c (update_gnu_property): Replace BYTE_PUT with byte_put.
212
213 2019-10-25 Nick Clifton <nickc@redhat.com>
214
215 * objcopy.c (struct merged_note_section): New structure. Used to
216 chain together details of mergeable note sections.
217 (is_merged_note_section): Rename to is_megreable_note_section and
218 return true for note sections that use GNU_BUILD_ATTRS_SECTION_NAME
219 as a prefix.
220 (num_bytes): Delete
221 (objcoopy_internal_note): Add padded_namesz field.
222 (DEBUG_MERGE): New macro. Set to non-zero to enable debugging of
223 the note merging code.
224 (gap_exists): Rename to overlaps_or_adjoins and return TRUE for
225 overlapping notes or adjoining notes.
226 (contained_by, is_deleted_note, is_version_note)
227 (compare_gnu_build_notes, sort_gnu_build_notes): New functions.
228 (merge_gnu_build_notes): Rework. Sort notes into a mergeable
229 order first. Merge them. Then sort them into an ascending
230 address order before writing them out.
231 (copy_object): Handle more than one mergeable note section.
232 * testsuite/binutils-all/note-2-32.d: Update for new merging
233 behaviour.
234 * testsuite/binutils-all/note-2-32.s: Likewise.
235 * testsuite/binutils-all/note-2-64.d: Likewise.
236 * testsuite/binutils-all/note-2-64.s: Likewise.
237 * testsuite/binutils-all/note-3-32.d: Likewise.
238 * testsuite/binutils-all/note-3-32.s: Likewise.
239 * testsuite/binutils-all/note-3-64.d: Likewise.
240 * testsuite/binutils-all/note-3-64.s: Likewise.
241 * testsuite/binutils-all/note-4-32.d: Likewise.
242 * testsuite/binutils-all/note-4-32.s: Likewise.
243 * testsuite/binutils-all/note-4-64.d: Likewise.
244 * testsuite/binutils-all/note-4-64.s: Likewise.
245 * testsuite/binutils-all/note-6-32.s: New test source file.
246 * testsuite/binutils-all/note-6-64.s: New test source file.
247 * testsuite/binutils-all/note-6-32.d: New test driver file.
248 * testsuite/binutils-all/note-6-64.d: New test driver file.
249 * testsuite/binutils-all/objcopy.exp: Run the new test.
250
251 2019-10-25 Alan Modra <amodra@gmail.com>
252
253 * readelf.c (process_program_headers): Check PT_PHDR p_offset
254 as well as p_vaddr. Use p_filesz, not p_memsz, in vaddr test.
255
256 2019-10-21 Alan Modra <amodra@gmail.com>
257
258 PR 452
259 PR 25104
260 * ar.c (write_archive): Set BFD_ARCHIVE_FULL_PATH.
261 * doc/binutils.texi (extract from archive): Mention
262 restrictions when extracting from archives with full paths.
263 (ar P): Update to current P support.
264 (ar -X32_64): Fix spelling.
265
266 2019-10-14 Alan Modra <amodra@gmail.com>
267
268 * objcopy.c (compare_section_lma): Correct comment. Dereference
269 section pointer earlier and lose unnecessary const. Style fixes.
270 Add final sort by id.
271
272 2019-10-13 Nick Clifton <nickc@redhat.com>
273
274 * README-how-to-make-a-release: Add a note to reset the
275 development flag back to true after making a point release.
276
277 2019-10-12 Nick Clifton <nickc@redhat.com>
278
279 * README-how-to-make-a-release: Tweak a few sections based on the
280 results of the 2.33.1 release.
281
282 2019-10-11 Nick Clifton <nickc@redhat.com>
283
284 * po/zh_TW.po: Updated Chinese (traditional) translation.
285
286 2019-10-09 Alan Modra <amodra@gmail.com>
287
288 PR 25079
289 * ar.c (decode_options): Don't try for command options if
290 write_armap or mri_mode is selected.
291
292 2019-10-07 Jozef Lawrynowicz <jozef.l@mittosystems.com>
293
294 * readelf.c (display_msp430_gnu_attribute): New.
295 (process_arch_specific): Use msp430 specific handler for GNU
296 attributes.
297
298 2019-09-30 Nick Alcock <nick.alcock@oracle.com>
299
300 * objdump.c (main): Fix tabdamage.
301 * readelf.c (CTF_DUMP): Likewise.
302 (options): Likewise.
303 (dump_section_as_ctf): Likewise.
304
305 2019-08-03 Nick Alcock <nick.alcock@oracle.com>
306
307 * objdump.c (dump_ctf): Use the default CTF archive member as the
308 parent even when no parent section is specified.
309 (dump_ctf_archive_member): Only import from the parent
310 if this is not the default ".ctf" member.
311
312 2019-09-23 Nick Alcock <nick.alcock@oracle.com>
313
314 * Makefile.am (LIBCTF): Mention the .la file.
315 (LIBCTF_NOBFD): New.
316 (readelf_DEPENDENCIES): Use it.
317 (readelf_LDADD): Likewise.
318 * Makefile.in: Regenerated.
319
320 2019-07-13 Nick Alcock <nick.alcock@oracle.com>
321
322 * readelf.c (dump_ctf_symtab_name): Give default value.
323 (dump_ctf_strtab_name): Likewise.
324 (dump_section_as_ctf): Allow for the null string.
325
326 2019-07-08 Nick Alcock <nick.alcock@oracle.com>
327
328 * objdump.c (dump_ctf_archive_member): Dump the CTF header.
329 * readelf.c (dump_section_as_ctf): Likewise.
330
331 2019-10-02 Niklas Gürtler <profclonk@gmail.com>
332
333 PR 24942
334 * objcopy.c (copy_usage): Update description of
335 --set-section-alignment.
336 (copy_main): Interpret numeric argument of --set-section-alignment
337 as a byte alignment, not a power of two alignment.
338 * doc/binutils.texi: Update description of
339 --set-section-alignment.
340 * testsuite/binutils-all/set-section-alignment.d: New test.
341 * testsuite/binutils-all/objcopy.exp: Run the new test.
342
343 2019-09-30 Alan Modra <amodra@gmail.com>
344
345 PR 25046
346 * readelf.c (process_program_headers): Clear dynamic_addr and
347 dynamic_size earlier.
348
349 2019-09-24 Alan Modra <amodra@gmail.com>
350
351 PR 25031
352 * nm.c (print_format_string): New.
353 (get_print_format): Delete saved_format. Move earlier.
354 (set_print_width): Call get_print_format.
355 (print_value): Use print_format_string.
356
357 2019-09-23 Alan Modra <amodra@gmail.com>
358
359 * dlltool.c: Include coff-bfd.h.
360
361 2019-09-23 Alan Modra <amodra@gmail.com>
362
363 PR 25018
364 * dwarf.c (get_type_signedness): Delete ineffective pointer
365 comparison check. Properly range check uvalue offset on
366 recursive call.
367 (read_and_display_attr_value): Range check uvalue offset before
368 calling get_type_signedness.
369
370 2019-09-20 Alan Modra <amodra@gmail.com>
371
372 * ar.c (write_archive): Use bfd_set_thin_archive.
373
374 2019-09-18 Tamar Christina <tamar.christina@arm.com>
375
376 * testsuite/binutils-all/objdump.exp (objump -S): Update testcases.
377
378 2019-09-18 Alan Modra <amodra@gmail.com>
379
380 * addr2line.c, * bucomm.c, * coffgrok.c, * dlltool.c, * nm.c,
381 * objcopy.c, * objdump.c, * od-elf32_avr.c, * od-macho.c,
382 * od-xcoff.c, * prdbg.c, * rdcoff.c, * rddbg.c, * rescoff.c,
383 * resres.c, * size.c, * srconv.c, * strings.c, * windmc.c: Update
384 throughout for bfd section macro and function changes.
385
386 2019-09-18 Alan Modra <amodra@gmail.com>
387
388 * nm.c: Update bfd_get_section to bfd_asymbol_section throughout.
389 * objcopy.c: Likewise.
390 * objdump.c: Likewise.
391 * rdcoff.c: Likewise.
392 * objcopy.c (create_new_symbol): Use bfd_set_asymbol_name.
393 (filter_symbols): Likewise.
394
395 2019-09-18 Simon Marchi <simon.marchi@polymtl.ca>
396
397 * doc/Makefile.am (MOSTLYCLEANFILES): Clean all man pages,
398 cxxfilt.man and binutils.info.
399 (MAINTAINERCLEANFILES): Remove.
400 * doc/Makefile.in: Re-generate.
401
402 2019-09-18 Simon Marchi <simon.marchi@polymtl.ca>
403
404 * doc/Makefile.am: Remove references to binutils_TEXINFOS.
405 * doc/Makefile.in: Re-generate.
406
407 2019-09-18 Simon Marchi <simon.marchi@polymtl.ca>
408
409 * doc/Makefile.am (install-data-loca): Remove target.
410 (DISTCLEANFILES): Remove variable.
411 * doc/Makefile.in: Re-generate.
412
413 2019-09-18 Simon Marchi <simon.marchi@polymtl.ca>
414
415 * Makefile.in: Re-generate.
416 * configure: Re-generate.
417 * doc/Makefile.in: Re-generate.
418
419 2019-09-16 Phil Blundell <pb@pbcl.net>
420
421 * Makefile.in, configure. doc/Makefile.in: Regenerated.
422
423 2019-09-11 Tom Tromey <tom@tromey.com>
424
425 * objcopy.c (copy_archive): Update.
426 * bucomm.h (make_tempname, make_tempdir): Make argument const.
427 * bucomm.c (make_tempname, make_tempdir): Make argument const.
428
429 2019-09-11 Alan Modra <amodra@gmail.com>
430
431 PR 24907
432 * objdump.c (disassemble_bytes): Adjust code to avoid overlong
433 lines. Correct max_reloc_offset_into_insn test.
434
435 2019-09-10 Nick Clifton <nickc@redhat.com>
436
437 PR 24907
438 * objdump.c (null_print): New function.
439 (disassemble_bytes): Delete previous_octets local and replace with
440 a test of the max_reloc_offset_into_insn field of the
441 bfd_arch_info structure. If a reloc is a potential match for the
442 next insn, then perform a dummy disassembly in order to calculate
443 its real length.
444
445 2019-09-09 Phil Blundell <pb@pbcl.net>
446
447 binutils 2.33 branch created.
448
449 2019-09-06 Alan Modra <amodra@gmail.com>
450
451 * nm.c (print_object_filename_bsd, print_object_filename_sysv),
452 (print_object_filename_posix, print_archive_filename_bsd),
453 (print_archive_filename_sysv, print_archive_filename_posix),
454 (print_archive_member_bsd, print_archive_member_sysv),
455 (print_archive_member_posix): Constify parameter.
456 (struct output_fns <print_object_filename, print_archive_filename>),
457 (<print_archive_member>): Likewise.
458 * objcopy.c (copy_archive): Add cast for make_tempdir.
459
460 2019-08-29 Alan Modra <amodra@gmail.com>
461
462 * dwarf.c (check_uvalue): Remove unnecessary pointer checks.
463
464 2019-08-28 Niklas Gürtler <profclonk@gmail.com>
465
466 PR 24942
467 * objcopy.c (SECTION_CONTEXT_SET_ALIGNMENT): New constant.
468 (struct section_list): Add alignment field.
469 (command_line_switch): Add OPTION_SET_SECTION_ALIGNMENT.
470 (copy_options): Add --set-section-alignment.
471 (copy_usage): Describe --set-section-alignment.
472 (find_section_list): Initialise the alignment field.
473 (setup_section): Handle the alignment field.
474 (copy_main): Handle OPTION_SET_SECTION_ALIGNMENT.
475 * doc/binutils.texi: Document the new feature.
476 * NEWS: Mention the new feature.
477
478 2019-08-28 Nick Clifton <nickc@redhat.com>
479
480 PR 24931
481 * objdump.c (source_comment): New static variable.
482 (option_values): Add OPTION_SOURCE_COMMENT.
483 (long_opions): Add --source-comment.
484 (print_line): If source comment is set, use it as a prefix to the
485 source code line.
486 (main): Handle OPTION_SOURCE_COMMENT.
487 * doc/binutils.texi: Document the new option.
488 * NEWS: Mention the new feature.
489 * testsuite/binutils-all/objdump.exp (test_objdump_S): Add tests
490 of the -S and --source-comment options.
491
492 2019-08-27 Nick Clifton <nickc@redhat.com>
493
494 PR 24510
495 * dwarf.c (MAX_CU_NESTING): New constant.
496 (level_type_signed): New static array.
497 (skip_attr_bytes): New function.
498 (get_type_signedness): New function.
499 (read_and_print_leb128): New function.
500 (display_discr_list): New function.
501 (read_and_display_attr_value): Add start parameter.
502 Use new functions when handling DW_AT_type and DW_AT_discr_list.
503 (read_and_display_attr): Add start parameter. Pass to
504 read_and_display_attr_value.
505 (process_debug_info): Update call to read_and_display_attr.
506 (display_formatted_table): Likewise.
507 (display_debug_lines_decoded): Likewise. Also add start
508 parameter.
509 (display_debug_lines): Likewise.
510 * testsuite/binutils-all/dwarf-attributes.S: Update discrimination
511 lists.
512 * testsuite/binutils-all/dwarf-attributes.W: Update expected
513 output.
514
515 2019-08-26 Alan Modra <amodra@gmail.com>
516
517 PR 24938
518 * debug.c (debug_write_type): Call empty_type for NULL type here..
519 (debug_write_type): ..rather than in just one case here.
520
521 2019-08-23 Nick Clifton <nickc@redhat.com>
522
523 PR 24829
524 * dwarf.c (check_uvalue): New function. Ensures that a block's
525 size is valid.
526 (read_and_display_attr_value): Use check_value when processsing
527 DW_FORM_block<n> attributes.
528
529 2019-08-22 Nick Clifton <nickc@redhat.com>
530
531 PR 24921
532 * dwarf.c (process_cu_tu_index): Handle the case where a table
533 does not have any columns.
534
535 2019-08-19 Alan Modra <amodra@gmail.com>
536
537 PR 24898
538 * dwarf.c (display_debug_frames): Use the read_cie check and error
539 for augmentation data length.
540
541 2019-08-17 Alan Modra <amodra@gmail.com>
542
543 PR 24911
544 * dwarf.c (comp_addr_base): Dereference args.
545
546 2019-08-16 Alan Modra <amodra@gmail.com>
547
548 PR 24909
549 PR 23499
550 * readelf.c (get_symbol_version_string): Set sym_info earlier.
551
552 2019-08-15 Nick Clifton <nickc@redhat.com>
553
554 PR 24767
555 * doc/binutils.texi (nm): Document the 'n' symbol type.
556
557 2019-08-15 Christophe Vidal <support@krizalys.com>
558
559 * docs/binutils.texi: Fixed notice message disassembler options
560 section of the man page.
561
562 2019-08-09 Mihailo Stojanovic <mihailo.stojanovic@rt-rk.com>
563
564 * readelf.c (get_mips_dynamic_type): Return MIPS_XHASH dynamic type.
565 (get_mips_section_type_name): Return MI{S_XHASH name string.
566 (dynamic_section_mips_val): Initialize the .MIPS.xhash dynamic
567 info.
568 (process_symbol_table): Initialize the .MIPS.xhash section
569 pointer. Adjust the readelf output to support the new section.
570 (process_object): Set the .MIPS.xhash dynamic info to zero.
571
572 2019-08-09 Tamar Christina <tamar.christina@arm.com>
573
574 * testsuite/binutils-all/arm/in-order-all.d: Skip on pe, wince, coff.
575 * testsuite/binutils-all/arm/in-order.d: Likewise.
576 * testsuite/binutils-all/arm/out-of-order-all.d: Likewise.
577 * testsuite/binutils-all/arm/out-of-order.d: Likewise.
578
579 2019-08-08 Nick Clifton <nickc@redhat.com>
580
581 PR 24887
582 * readelf.c (process_notes_at): Left justify the "Data size"
583 column heading.
584 * testsuite/binutils-all/i386/empty.d: Adjust for new output format.
585 * testsuite/binutils-all/i386/ibt.d: Likewise.
586 * testsuite/binutils-all/i386/pr21231a.d: Likewise.
587 * testsuite/binutils-all/i386/pr21231b.d: Likewise.
588 * testsuite/binutils-all/i386/shstk.d: Likewise.
589 * testsuite/binutils-all/note-2-32.d: Likewise.
590 * testsuite/binutils-all/note-2-64.d: Likewise.
591 * testsuite/binutils-all/x86-64/empty-x32.d: Likewise.
592 * testsuite/binutils-all/x86-64/empty.d: Likewise.
593 * testsuite/binutils-all/x86-64/ibt-x32.d: Likewise.
594 * testsuite/binutils-all/x86-64/ibt.d: Likewise.
595 * testsuite/binutils-all/x86-64/pr21231a.d: Likewise.
596 * testsuite/binutils-all/x86-64/pr21231b.d: Likewise.
597 * testsuite/binutils-all/x86-64/pr23494a-x32.d: Likewise.
598 * testsuite/binutils-all/x86-64/pr23494a.d: Likewise.
599 * testsuite/binutils-all/x86-64/pr23494c-x32.d: Likewise.
600 * testsuite/binutils-all/x86-64/pr23494c.d: Likewise.
601 * testsuite/binutils-all/x86-64/pr23494d-x32.d: Likewise.
602 * testsuite/binutils-all/x86-64/pr23494d.d: Likewise.
603 * testsuite/binutils-all/x86-64/pr23494e-x32.d: Likewise.
604 * testsuite/binutils-all/x86-64/pr23494e.d: Likewise.
605 * testsuite/binutils-all/x86-64/shstk-x32.d: Likewise.
606 * testsuite/binutils-all/x86-64/shstk.d: Likewise.
607
608 2019-08-08 Nick Clifton <nickc@redhat.com>
609
610 * testsuite/gentestdlls.c (main): Move declaration of loop
611 variable outside of the for() statement.
612
613 2019-08-08 Jordan Rupprecht <rupprecht@google.com>
614
615 * readelf.c (process_note): Mask unknown description data bytes.
616
617 2019-08-08 Alan Modra <amodra@gmail.com>
618
619 * readelf.c (get_data): Improve overflow checks.
620
621 2019-08-07 Nick Clifton <nickc@redhat.com>
622
623 PR 24777
624 * doc/binutils.texi: Ensure consistent formating of title strings
625 for man pages. Extend the title of the size man page to be more
626 informative.
627
628 2019-08-07 Omair Majid <omajid@redhat.com>
629
630 * testsuite/binutils-all/objdump.exp
631 (test_objdump_dotnet_assemblies): Fix test to distinguish errors
632 in parsing simple pei-i386 and pei-x86-64 vs parsing the newly
633 introduced machine types.
634 * testsuite/gentestdlls.c (write_simple_dll): New function.
635 (main): Generate simple and Linux-specific variants of pei-i386
636 and pei-x86-64 files so both can be used by tests.
637
638 2019-08-07 Alan Modra <amodra@gmail.com>
639
640 PR 24876
641 * readelf.c (dump_ia64_unwind): Check that buffer is large
642 enough for "stamp" before reading.
643
644 2019-08-05 Nick Clifton <nickc@redhat.com>
645
646 PR 24874
647 * objcopy.c (merge_gnu_build_notes): Do not insist on the first
648 note being a version note.
649 Remove spurious debugging fprintf.
650
651 2019-08-05 Nick Clifton <nickc@redhat.com>
652
653 PR 24829
654 * readelf.c (apply_relocations): Catch potential integer overflow
655 whilst checking reloc location against section size.
656
657 2019-08-02 Alan Modra <amodra@gmail.com>
658
659 PR 24871
660 * readelf.c (ABSADDR): Delete.
661 (dump_ia64_unwind): Expand ABSADDR. Check validity of info.section.
662
663 2019-07-29 Martin Liska <mliska@suse.cz>
664
665 PR 24768
666 * nm.c (filter_symbols): Set report_plugin_err if
667 error is reported.
668 (display_rel_file): Report error for a missing LTO plugin.
669
670 2019-07-26 Alan Modra <amodra@gmail.com>
671
672 PR 24798
673 * dwarf.c (process_cu_tu_index): Avoid integer overflow on 64-bit
674 systems by casting ncols and nslots expressions to size_t. Display
675 number of columns and slots before giving up due to buffer overflow.
676 Use %u to display unsigned ints. Perform more pointer wrap tests.
677
678 2019-07-25 Tom Tromey <tromey@adacore.com>
679
680 PR 24809
681 * dwarf.c (display_debug_names): Display the contents of the
682 augmentation string, if it is printable.
683
684 2019-07-25 Nick Clifton <nickc@redhat.com>
685
686 PR 24837
687 * readelf.c (process_mips_specific): Check for buffer overflow
688 before reading reginfo information.
689
690 2019-07-24 Nick Clifton <nickc@redhat.com>
691
692 PR 13256
693 * ar.c (decode_options): Restart option scanning if no operation
694 is detected and argument remain to be scanned.
695
696 2019-07-23 Nick Clifton <nickc@redhat.com>
697
698 PR 24818
699 * objdump.c (is_relocateable): Delete.
700 (load_specific_debug_section): Test the abfd for relocations
701 directly, rather than relying upon is_relocateable.
702 (dump_dwarf): Delete initlialization of is_relocateable.
703
704 2019-07-23 Alan Modra <amodra@gmail.com>
705
706 * readelf.c (get_parisc_segment_type): Split off hpux entries..
707 (get_ia64_segment_type): ..and these..
708 (get_hpux_segment_type): ..to here.
709 (get_segment_type): Condition GNU_MBIND on osabi. Use
710 get_hpux_segment_type.
711 (get_symbol_binding): Do not print UNIQUE for ELFOSABI_NONE.
712 (get_symbol_type): Do not print IFUNC for ELFOSABI_NONE.
713
714 2019-07-23 Alan Modra <amodra@gmail.com>
715
716 * testsuite/binutils-all/objcopy.exp (elf64): Correct object
717 file used to set this variable.
718
719 2019-07-23 Omar Majid <omajid@redhat.com>
720
721 * Makefile.am (AUTOMAKE_OPTIONS): Add subdir-objects
722 (GENTESTDLLSPROG): Define.
723 (TEST_PROGS): Add GENTESTDLLSPROG.
724 * Makefile.in: Regenerate.
725 * testsuite/binutils-all/objdump.exp
726 (test_objdump_dotnet_assemblies): New proc.
727 Run the new proc.
728 * testsuite/gentestdlls.c: New source file.
729
730 2019-06-28 Nick Clifton <nickc@redhat.com>
731
732 PR 24707
733 * objdump.c (slurp_symtab): Fail with a helpful error message if
734 the symbol table is too large. Skip this check for MMO format
735 files.
736
737 2019-06-26 Nick Clifton <nickc@redhat.com>
738
739 PR 24703
740 * bucomm.c (bfd_nonfatal): If no bfd error code has been set then
741 indicate this in the output.
742 (bfd_nonfatal_message): Likewise.
743
744 2019-06-25 Jan Beulich <jbeulich@suse.com>
745
746 * readelf.c (dump_ctf_indent_lines): Rename local variable
747 "spaces" to "blanks".
748
749 2019-06-25 Jan Beulich <jbeulich@suse.com>
750
751 * objdump.c (dump_ctf_indent_lines): Rename local variable
752 "spaces" to "blanks".
753
754 2019-06-14 Alan Modra <amodra@gmail.com>
755
756 * Makefile.in: Regenerate.
757 * aclocal.m4: Regenerate.
758 * doc/Makefile.in: Regenerate.
759
760 2019-06-12 Christos Zoulas <christos@zoulas.com>
761
762 PR 24663
763 * readelf.c (process_netbsd_elf_note): Add support for
764 NT_NETBSD_PAX.
765 (process_note): Add support for PaX notes.
766
767 2019-06-12 Christos Zoulas <christos@zoulas.com>
768
769 PR 24665
770 * readelf.c (get_netbsd_elfcore_note_type): Add support for SH
771 core notes.
772
773 2019-06-12 Christos Zoulas <christos@zoulas.com>
774
775 PR 24664
776 * readelf.c (get_netbsd_elfcore_note_type): Add support for NetBSD
777 auxv notes.
778
779 2019-06-11 Christos Zoulas <christos@zoulas.com>
780
781 PR 24662
782 * readelf.c (get_alpha_symbol_other): New function.
783 (get_symbol_other): Use for Alpha symbols.
784 (is_32bit_pcrel_reloc): Add R_VAX_PCREL32.
785
786 2019-06-11 Christos Zoulas <christos@zoulas.com>
787
788 PR 24661
789 * readelf.c (decode_arm_unwind): Ensure that the local variable
790 'addr' is always initialised.
791
792 2019-06-10 Christos Zoulas <christos@zoulas.com>
793
794 PR 24651
795 * strings.c (print_strings): Use %u to print unsigned values in
796 decimal.
797
798 2019-06-10 Christos Zoulas <christos@zoulas.com>
799
800 PR 24649
801 * arsup.c (ar_open): Use asprintf in place of xmalloc and
802 sprintf.
803
804 2019-06-03 Nick Clifton <nickc@redhat.com>
805
806 Revert:
807 2019-05-29 Nick Clifton <nickc@redhat.com>
808
809 * configure.ac (LIBCTF): Export. Set to empty for non-ELF based
810 targets.
811 (HAVE_LIBCTF): Define if libctf support is available.
812 * Makefile.am (LIBCTF): Set value to @LIBCTF@.
813 * objdump.c: Make CTF code conditional upon HAVE_LIBCTF being
814 defined.
815 * readelf.c: Likewise.
816 * configure: Regenerate.
817 * Makefile.in: Regenerate.
818 * config.in: Regenerate.
819
820 2019-05-30 Nick Alcock <nick.alcock@oracle.com>
821
822 * objdump.c (make_ctfsect): Drop cts_type, cts_flags, and
823 cts_offset.
824 * readelf.c (shdr_to_ctf_sect): Likewise.
825
826 2019-05-30 Nick Clifton <nickc@redhat.com>
827
828 PR 24627
829 * readelf.c (process_version_sections): Add 0x prefix to address
830 display. Correct indentation.
831
832 2019-05-30 Alan Modra <amodra@gmail.com>
833
834 * testsuite/lib/binutils-common.exp (supports_gnu_unique): Add
835 s12z to targets not supporting this feature.
836
837 2019-05-30 Alan Modra <amodra@gmail.com>
838
839 * testsuite/lib/binutils-common.exp (run_dump_test): Support
840 tcl procedures for xfail args.
841
842 2019-05-29 Nick Clifton <nickc@redhat.com>
843
844 * README-how-to-make-a-release: Add libctf to list of directories
845 that need updates in their ChangeLogs.
846
847 2019-05-29 Nick Clifton <nickc@redhat.com>
848
849 * configure.ac (LIBCTF): Export. Set to empty for non-ELF based
850 targets.
851 (HAVE_LIBCTF): Define if libctf support is available.
852 * Makefile.am (LIBCTF): Set value to @LIBCTF@.
853 * objdump.c: Make CTF code conditional upon HAVE_LIBCTF being
854 defined.
855 * readelf.c: Likewise.
856 * configure: Regenerate.
857 * Makefile.in: Regenerate.
858 * config.in: Regenerate.
859
860 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
861
862 * MAINTAINERS: Add myself as CTF maintainer.
863
864 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
865
866 * objdump.c (ctf-api.h): New include.
867 (dump_ctf_section_info): New variable.
868 (dump_ctf_section_name): Likewise.
869 (usage): Describe new options.
870 (enum option_values): Add OPTION_CTF and OPTION_CTF_PARENT.
871 (main): Use them to add --ctf and --ctf-parent.
872 (read_section_stabs): Add new parameter, entsize_ptr.
873 (find_stabs_section): Adjust accordingly.
874 (make_ctfsect): New.
875 (dump_ctf_indent_lines): New.
876 (dump_ctf_archive_member): New.
877 (dump_ctf): New.
878 (dump_bfd): Call it. Free resources afterwards.
879 * readelf.c (ctf-api.h): New include.
880 (CTF_DUMP): New.
881 (static bfd_boolean do_ctf): Likewise.
882 (dump_ctf_parent_name): Likewise.
883 (dump_ctf_symtab_name): Likewise.
884 (dump_ctf_strtab_name): Likewise.
885 (OPTION_CTF_DUMP): Likewise.
886 (OPTION_CTF_PARENT): Likewise.
887 (OPTION_CTF_SYMBOLS): Likewise.
888 (OPTION_CTF_STRINGS): Likewise.
889 (options): Add them.
890 (usage): Likewise.
891 (parse_args): Handle the new options, requesting CTF_DUMP.
892 (process_section_contents): Handle CTF_DUMP.
893 (shdr_to_ctf_sect): New.
894 (dump_ctf_indent_lines): New.
895 (dump_section_as_ctf): New.
896 (main): Free resources.
897 * Makefile.am (LIBCTF): New variable.
898 (objdump_DEPENDENCIES): Use it.
899 (readelf_DEPENDENCIES): Likewise.
900 (objdump_LDADD): Likewise.
901 (readelf_LDADD): Likewise.
902 * aclocal.m4: Regenerated.
903 * Makefile.in: Likewise.
904
905 * doc/binutils.texi (objdump): Document the new options.
906 (readelf): Likewise.
907 * doc/ctf.options.texi: New.
908 * doc/Makefile.in: Regenerated.
909 * NEWS: Mention the new feature.
910
911 2019-05-27 Alan Modra <amodra@gmail.com>
912
913 * readelf.c (process_section_groups): Continue processing groups
914 when sh_entsize exceeds group size.
915
916 2019-05-24 Szabolcs Nagy <szabolcs.nagy@arm.com>
917
918 * readelf.c (get_aarch64_dynamic_type): Handle DT_AARCH64_VARIANT_PCS.
919 (get_aarch64_symbol_other): New, handles STO_AARCH64_VARIANT_PCS.
920 (get_symbol_other): Call get_aarch64_symbol_other.
921
922 2019-05-24 Alan Modra <amodra@gmail.com>
923
924 * objdump.c (disassemble_bytes): Set WIDE_OUTPUT in flags.
925
926 2019-05-23 Jose E. Marchesi <jose.marchesi@oracle.com>
927
928 * MAINTAINERS: Add myself as the maintainer for BPF.
929
930 2019-05-23 Jose E. Marchesi <jose.marchesi@oracle.com>
931
932 * readelf.c: Include elf/bpf.h.
933 (guess_is_rela): Hanle EM_BPF.
934 (dump_relocations): Likewise.
935 (is_32bit_abs_reloc): Likewise.
936 * testsuite/binutils-all/nm.exp: Add bpf-*-* to the list of
937 ELF targets.
938
939 2019-05-21 Tamar Christina <tamar.christina@arm.com>
940
941 * dwarf.c (dwarf_regnames_aarch64): Add SVE registers.
942 * testsuite/binutils-all/aarch64/sve-dwarf-registers.d: New test.
943 * testsuite/binutils-all/aarch64/sve-dwarf-registers.s: New test.
944
945 2019-05-20 Faraz Shahbazker <fshahbazker@wavecomp.com>
946
947 PR 14798
948 * testsuite/binutils-all/readelf.ss-mips: Update reference output.
949 * testsuite/binutils-all/readelf.ss-tmips: Likewise.
950
951 2019-05-20 Nick Clifton <nickc@redhat.com>
952
953 * po/ca.po: Updated Catalan translation.
954
955 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
956
957 * NEWS: Mention Armv8.1-M Mainline and MVE.
958
959 2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
960
961 * readelf.c (arm_attr_tag_MVE_arch): New array for Tag_MVE_arch values.
962 (arm_attr_public_tag arm_attr_public_tags): Add case for Tag_MVE_arch.
963
964 2019-05-14 Jamey Hicks <jamey.hicks@gmail.com>
965
966 PR 19921
967 * objcopy.c: Add new option --verilog-data-width. Use it to set
968 the value of VerilogDataWidth.
969 * doc/binutils.texi: Document the new option.
970 * testsuite/binutils-all/objcopy.exp: Run tests of new option.
971 * testsuite/binutils-all/verilog-1.hex: New file.
972 * testsuite/binutils-all/verilog-2.hex: New file.
973 * testsuite/binutils-all/verilog-4.hex: New file.
974 * testsuite/binutils-all/verilog-8.hex: New file.
975 * NEWS: Mention the new feature.
976
977 2019-05-10 Alan Modra <amodra@gmail.com>
978
979 * testsuite/binutils-all/objdump.exp (test_objdump_disas_limited),
980 (test_objdump_content_limited): Add text arg, use in place of .text.
981 (bintest_signed.o): Call get_standard_section_names for name of
982 text section.
983
984 2019-05-08 Faraz Shahbazker <fshahbazker@wavecomp.com>
985
986 * objdump.c (sign_extend_address): New function.
987 (dump_bfd): Sign-extend user-specified start/stop addresses
988 for targets that need it.
989 * testsuite/binutils-all/objdump.exp: Add tests for objdump
990 with start and stop addresses in higher address ranges.
991
992 2019-05-01 Matthew Malcomson <matthew.malcomson@arm.com>
993
994 * testsuite/binutils-all/objdump.exp: Correct executable
995 spelling.
996 * testsuite/binutils-all/compress.exp: Likewise.
997
998 2019-05-01 Nick Clifton <nickc@redhat.com>
999
1000 PR 24507
1001 * nm.c: (print_format): New variable.
1002 (value_format_32bit, value_format_64bit): Delete.
1003 (set_print_radix): Remove code to alter value_format strings.
1004 (set_output_format): Record chosen format in print_format.
1005 (get_print_format): New function - constructs a printf formatting
1006 string according to the requirements of size, radix, and output
1007 format.
1008 (print_value): Use get_print_format.
1009 * testsuite/binutils-all/nm.exp: Add tests of "nm --format=posix"
1010 and "nm -t d".
1011
1012 2019-04-30 Alan Modra <amodra@gmail.com>
1013
1014 * wrstabs.c (stab_start_class_type): Add assert to work around
1015 gcc9 warning. Tidy.
1016
1017 2019-04-24 Nick Clifton <nickc@redhat.com>
1018
1019 * objcopy.c (strip_main): Do not enable note merging by default if
1020 just stripping debug or dwo information.
1021 * doc/binutils.texi (strip): Update documentation.
1022
1023 2019-04-23 Nick Clifton <nickc@redhat.com>
1024
1025 * README-how-to-make-a-release: Add note to update the symbolic
1026 link from "docs" to "docs-2.x" on the sourceware website.
1027
1028 2019-04-16 Alan Modra <amodra@gmail.com>
1029
1030 * testsuite/binutils-all/copy-2.d: Don't run for ns32k-*-*.
1031 * testsuite/binutils-all/copy-3.d: Likewise.
1032
1033 2019-04-15 Thomas Preud'homme <thomas.preudhomme@arm.com>
1034
1035 * readelf.c (arm_attr_tag_CPU_arch): Add entry for Armv8.1-M Mainline.
1036
1037 2019-04-08 H.J. Lu <hongjiu.lu@intel.com>
1038
1039 * readelf.c (decode_x86_isa): Handle
1040 GNU_PROPERTY_X86_ISA_1_AVX512_BF16.
1041 * testsuite/binutils-all/i386/pr21231b.d: Updated.
1042 * testsuite/binutils-all/x86-64/pr21231b.d: Likewise.
1043
1044 2019-04-08 H.J. Lu <hongjiu.lu@intel.com>
1045
1046 * testsuite/binutils-all/nm.exp: Count i386-moss as ELF.
1047
1048 2019-03-26 Tamar Christina <tamar.christina@arm.com>
1049
1050 * testsuite/binutils-all/aarch64/in-order-all.d: Update.
1051 * testsuite/binutils-all/aarch64/in-order.d: Likewise.
1052 * testsuite/binutils-all/aarch64/out-of-order-all.d: Likewise.
1053 * testsuite/binutils-all/aarch64/out-of-order.d: Likewise.
1054 * testsuite/binutils-all/aarch64/out-of-order.s: Likewise.
1055 * testsuite/binutils-all/arm/in-order-all.d: Likewise.
1056 * testsuite/binutils-all/arm/in-order.d: Likewise.
1057 * testsuite/binutils-all/arm/out-of-order-all.d: Likewise.
1058 * testsuite/binutils-all/arm/out-of-order.d: Likewise.
1059 * testsuite/binutils-all/arm/out-of-order.s: Likewise.
1060
1061 2019-03-26 Nick Clifton <nickc@redhat.com>
1062
1063 * MAINTAINERS: Take over Dave Brolley's maintainerships for FR30,
1064 FRV and MEP.
1065
1066 2019-03-26 Alan Modra <amodra@gmail.com>
1067
1068 * objdump.c (dump_relocs_in_section): Warning fix.
1069
1070 2019-03-25 Tamar Christina <tamar.christina@arm.com>
1071
1072 * testsuite/binutils-all/arm/in-order-all.d: New test.
1073 * testsuite/binutils-all/arm/in-order.d: New test.
1074 * testsuite/binutils-all/arm/objdump.exp: Support .d tests.
1075 * testsuite/binutils-all/arm/out-of-order-all.d: New test.
1076 * testsuite/binutils-all/arm/out-of-order.T: New test.
1077 * testsuite/binutils-all/arm/out-of-order.d: New test.
1078 * testsuite/binutils-all/arm/out-of-order.s: New test.
1079
1080
1081 2019-03-25 Tamar Christina <tamar.christina@arm.com>
1082
1083 * testsuite/binutils-all/aarch64/in-order-all.d: New test.
1084 * testsuite/binutils-all/aarch64/out-of-order-all.d: New test.
1085 * testsuite/binutils-all/aarch64/out-of-order.d:
1086
1087 2019-03-25 Tamar Christina <tamar.christina@arm.com>
1088
1089 * testsuite/binutils-all/aarch64/in-order.d: New test.
1090 * testsuite/binutils-all/aarch64/out-of-order.d: Disassemble data as
1091 well.
1092
1093 2019-03-25 Tamar Christina <tamar.christina@arm.com>
1094
1095 * objdump.c (disassemble_bytes): Pass stop_offset.
1096 * testsuite/binutils-all/aarch64/out-of-order.T: New test.
1097 * testsuite/binutils-all/aarch64/out-of-order.d: New test.
1098 * testsuite/binutils-all/aarch64/out-of-order.s: New test.
1099
1100 2019-03-19 Nick Clifton <nickc@redhat.com>
1101
1102 PR 24360
1103 * objdump.c (load_specific_debug_section): Check that the amount
1104 of memory to be allocated matches the size of the section.
1105
1106 2019-03-13 Sudakshina Das <sudi.das@arm.com>
1107
1108 * readelf.c (get_aarch64_dynamic_type): Add case for
1109 DT_AARCH64_PAC_PLT.
1110 (dynamic_section_aarch64_val): Likewise.
1111
1112 2019-03-13 Sudakshina Das <sudi.das@arm.com>
1113 Szabolcs Nagy <szabolcs.nagy@arm.com>
1114
1115 * readelf.c (get_aarch64_dynamic_type): New.
1116 (get_dynamic_type): Use above for EM_AARCH64.
1117 (dynamic_section_aarch64_val): New.
1118 (process_dynamic_section): Use above for EM_AARCH64.
1119
1120 2019-03-13 Sudakshina Das <sudi.das@arm.com>
1121
1122 * readelf.c (decode_aarch64_feature_1_and): New.
1123 (print_gnu_property_note): Add case for AArch64 gnu notes.
1124
1125 2019-03-12 Alan Modra <amodra@gmail.com>
1126
1127 * objdump.c (load_specific_debug_section): Don't compare section
1128 size against file size.
1129 (dump_relocs_in_section): Don't compare reloc size against file size.
1130 Print "failed to read relocs" on bfd_get_reloc_upper_bound error.
1131
1132 2019-03-05 Nick Clifton <nickc@redhat.com>
1133
1134 PR 24295
1135 * doc/binutils.texi (ar cmdline): Fix spelling mistake.
1136
1137 2019-03-05 Nick Clifton <nickc@redhat.com>
1138
1139 * po/sv.po: Updated Swedish translation.
1140
1141 2019-03-05 Matthew Malcomson <matthew.malcomson@arm.com>
1142
1143 PR 24287
1144 * testsuite/lib/binutils-common.exp (run_dump_test): Replace a use
1145 of "lmap" with a "foreach" loop.
1146
1147 2019-03-04 Nick Clifton <nickc@redhat.com>
1148
1149 PR 24281
1150 * objcopy.c (copy_archive): Do not copy thin archives.
1151
1152 2019-02-27 Matthew Malcomson <matthew.malcomson@arm.com>
1153
1154 * testsuite/lib/binutils-common.exp: Allow multiple "as" lines.
1155
1156 2019-02-25 Nick Clifton <nickc@redhat.com>
1157
1158 * objdump.c (sym_ok): New function.
1159 (find_symbol_for_address): Use new function.
1160 (disassemble_section): Compare sections by name, not pointer.
1161 (dump_dwarf): Move code to initialise byte_get pointer and iterate
1162 over separate debug files from here to ...
1163 (dump_bfd): ... here. Add parameter indicating that a separate
1164 debug info file is being dumped. For main file, pull in the
1165 symbol tables from all separate debug info files.
1166 (display_object): Update call to dump_bfd.
1167 * doc/binutils.texi: Document extened behaviour of the
1168 --dwarf=follow-links option.
1169 * NEWS: Mention this new feature.
1170 * testsuite/binutils-all/objdump.WK2: Update expected output.
1171 * testsuite/binutils-all/objdump.exp (test_follow_debuglink): Add
1172 options and dump file parameters.
1173 Add extra test.
1174 * testsuite/binutils-all/objdump.WK3: New file.
1175 * testsuite/binutils-all/readelf.exp: Change expected output for
1176 readelf -wKis test.
1177 * testsuite/binutils-all/readelf.wKis: New file.
1178
1179 2019-02-22 Nick Clifton <nickc@redhat.com>
1180
1181 PR 23843
1182 * dwarf.h (struct separate_info): New structure for containing
1183 information on separate debug info files.
1184 * dwarf.c (struct dwo_info): New structure for containing dwo
1185 links.
1186 (first_dwo_info): Chain of dwo_info structures.
1187 (first_separate_file): Chain of separate_info structures.
1188 (separate_debug_file, separate_debug_filename): Delete.
1189 (fetch_alt_indirect_string): Scan all separate debug info files
1190 for the requested string.
1191 (add_dwo_info): New function.
1192 (add_dwo_name): New function.
1193 (add_dwo_dir): New function.
1194 (add_dwo_id: New function.
1195 (free_dwo_info): New function.
1196 (read_and_display_attr_value): Store DWO data using the new
1197 functions.
1198 (load_debug_section_with_follow): If necessary, scan the list of
1199 separate debug info files for the requested section.
1200 (add_separate_debug_file): New function.
1201 (load_separate_debug_info): Call add_separate_debug_file to store
1202 the information on the newly loaded file.
1203 (load_dwo_file): Likewise.
1204 (load_separate_debif_file): Rename to load_separate_debug_files.
1205 Change return type to boolean. If following links then attempt to
1206 load all separate debug info files, not just the first one.
1207 (free_debug_memory): Release memory in dwo_info and separate_info
1208 chains.
1209 * objdump.c (dump_dwarf): Iterate over all loaded debg info files.
1210 * readelf.c (process_object): Likewise.
1211 * doc/debug.options.texi: Update descriptions of links and
1212 follow-links options.
1213 * testsuite/binutils-all/objdump.WK2: Update expected output.
1214 * testsuite/binutils-all/readelf.k2: Likewise.
1215 * NEWS: Announce the new feature.
1216
1217 2019-02-21 Nick Clifton <nickc@redhat.com>
1218
1219 PR 24247
1220 * unwind-ia64.c: Include sysdep.h.
1221 (unw_decode_x1): Check current pointer against end pointer before
1222 accessing memory.
1223 (unw_decode_x2): Likewise.
1224 (unw_decode_x3): Likewise.
1225 (unw_decode_x4): Likewise.
1226 (unw_decode_r2): Likewise.
1227 (unw_decode_p2_p5): Likewise.
1228 (unw_decode_p7_p10): Likewise.
1229 (unw_decode): Likewise.
1230
1231 2019-02-20 Nick Clifton <nickc@redhat.com>
1232
1233 PR 24246
1234 * readelf.c (print_stapsdt_note): Harden against corrupt notes.
1235
1236 PR 24244
1237 * unwind-ia64.c (unw_decode_uleb128): Add end parameter, use it to
1238 prevent walking off the end of the buffer.
1239 (unw_decode_x1): Add end paramter, pass it to unw_decode_uleb128.
1240 (unw_decode_x2): Likewise.
1241 (unw_decode_x3): Likewise.
1242 (unw_decode_x4): Likewise.
1243 (unw_decode_r2): Pass the end parameter to unw_decode_uleb128.
1244 (unw_decode_r3): Likewise.
1245 (unw_decode_p7_p10): Likewise.
1246 (unw_decode_b2): Likewise.
1247 (unw_decode_b3_x4): Likewise.
1248
1249 PR 24243
1250 * readelf.c (process_mips_specific): Check for an options section
1251 that is too small to even contain a single option.
1252
1253 PR 24242
1254 * readelf.c (print_ia64_vms_note): Harden against corrupt notes.
1255
1256 2019-02-20 Alan Modra <amodra@gmail.com>
1257
1258 PR 24132
1259 PR 24138
1260 * readelf.c (get_data): Avoid possibility of overflow when
1261 checking for a read that may extend past end of file.
1262 (process_program_headers): Likewise.
1263
1264 2019-02-20 Alan Modra <amodra@gmail.com>
1265
1266 PR 24233
1267 * objdump.c (dump_bfd_private_header): Print warning if
1268 bfd_print_private_bfd_data returns false.
1269
1270 2019-02-12 Nick Clifton <nickc@redhat.com>
1271
1272 PR 23440
1273 * README-how-to-make-a-release: Use git clean to delete spurious
1274 files from the local source repository.
1275
1276 2019-02-08 Andrew Burgess <andrew.burgess@embecosm.com>
1277
1278 * size.c (berkeley_format): Delete.
1279 (enum output_format): New enum.
1280 (selected_output_format): New variable.
1281 (usage): Update to mention GNU format.
1282 (main): Update to extract options, and select format as needed.
1283 Handle GNU format where needed.
1284 (berkeley_sum): Renamed to...
1285 (berkeley_or_gnu_sum): ...this, and updated to handle both formats.
1286 (berkeley_format): Renamed to...
1287 (berkeley_or_gnu_format): ...this, and updated to handle both
1288 formats.
1289 (print_sizes): Handle GNU format.
1290 * doc/binutils.texi (size): Document new GNU format.
1291 * testsuite/binutils-all/size.exp: Add test of extended
1292 functionality.
1293 * NEWS: Mention new functionality.
1294
1295 2019-02-08 Andrew Burgess <andrew.burgess@embecosm.com>
1296
1297 * doc/binutils.texi (size): Update example output for Berkeley
1298 format output.
1299
1300 2019-02-07 Nick Clifton <nickc@redhat.com>
1301
1302 * README-how-to-make-a-release: Add a note about updating the
1303 obsolete targets in the bfd/config.bfd file.
1304
1305 2019-02-04 Nick Clifton <nickc@redhat.com>
1306
1307 * README-how-to-make-a-release: Add more notes on making a release.
1308
1309 2019-01-25 Nick Clifton <nickc@redhat.com>
1310
1311 PR 24131
1312 * readelf.c (process_notes_at): Prevent an illegal memory access
1313 when the note's namesize is zero.
1314 (decode_tic6x_unwind_bytecode): Add code to handle the case where
1315 no registers are specified in a frame pop instruction.
1316
1317 2019-01-25 Nick Clifton <nickc@redhat.com>
1318
1319 * po/bg.po: Updated Bulgarian translation.
1320
1321 2019-01-23 Nick Clifton <nickc@redhat.com>
1322
1323 * po/fr.po: Updated French translation.
1324 * po/pt.po: Updated Portuguese translation.
1325
1326 2019-01-21 Nick Clifton <nickc@redhat.com>
1327
1328 * po/uk.po: Updated Ukranian translation.
1329
1330 2019-01-19 Nick Clifton <nickc@redhat.com>
1331
1332 * configure: Regenerate.
1333 * binutils/po/binutils.pot.
1334
1335 * README-how-to-make-a-release: Update description on how to make
1336 a branch.
1337
1338 2018-06-24 Nick Clifton <nickc@redhat.com>
1339
1340 2.32 branch created.
1341
1342 2019-01-17 Nick Clifton <nickc@redhat.com>
1343
1344 * objdump.c (disassemble_section): When disassembling from a
1345 symbol only stop at the next symbol if the original symbol was not
1346 a function symbol. Otherwise continue disassembling until a new
1347 function is reached.
1348 * testsuite/binutils-all/objdump.exp: Add tests of extended
1349 functionality.
1350 * testsuite/binutils-all/disasm.s: New test source file.
1351
1352 2019-01-16 Kito Cheng <kito@andestech.com>
1353 Nelson Chu <nelson@andestech.com>
1354
1355 * readelf.c (get_riscv_section_type_name): New function.
1356 (get_section_type_name): Add handler for RISC-V.
1357 (riscv_attr_tag_t): Declare.
1358 (riscv_attr_tag): New.
1359 (display_riscv_attribute): New function.
1360 (process_attributes): Add handler for RISC-V.
1361 * testsuite/binutils-all/strip-3.d: Remove .riscv.attribute
1362 section.
1363
1364 2019-01-10 Nick Clifton <nickc@redhat.com>
1365
1366 PR 23963
1367 * objdump.c (sanitize_string): New function. Removes control
1368 characters from symbol names.
1369 (dump_section_header): Use new function.
1370 (objdump_print_symname): Likewise.
1371 (objdump_print_addr_with_sym): Likewise.
1372 (show_line): Likewise.
1373 (disassemble_bytes): Likewise.
1374 (disassemble_section): Likewise.
1375 (load_specific_debug_section): Likewise.
1376 (read_section_stabs): Likewise.
1377 (print_section_stabs): Likewise.
1378 (dump_section): Likewise.
1379 (dump_reloc_set): Likewise.
1380 (dump_relocs_in_section): Likewise.
1381 (dump_bfd): Likewise.
1382 (display_any_bfd): Likewise.
1383
1384 2019-01-09 Nick Clifton <nickc@redhat.com>
1385
1386 PR 24049
1387 * readelf.c (process_archive): Use arch.file_name in error
1388 messages until the qualified name is available.
1389
1390 2019-01-09 Andrew Paprocki <andrew@ishiboo.com>
1391
1392 * configure: Regenerate.
1393
1394 2019-01-09 Alan Modra <amodra@gmail.com>
1395
1396 * testsuite/binutils-all/cxxfilt.exp: Pass --no-strip-underscores
1397 unconditionally to tests needing the option rather than via a
1398 list of targets.
1399
1400 2019-01-08 Nick Clifton <nickc@redhat.com>
1401
1402 PR 24044
1403 * cxxfilt.c (hp_symbol_characters): Delete.
1404 (main): Remove depcreated demangling styles.
1405 * stabs.c (parse_stab_argtypes): Remove support for old gnu v2
1406 demangling opnames.
1407 * testsuite/binutils-all/cxxfilt.exp: Use the
1408 --no-strip-underscore option for targets that do prefix their
1409 symbols with underscores.
1410 Update tests to eliminate those that use gnu v2 encoding.
1411
1412 2019-01-08 Tamar Christina <tamar.christina@arm.com>
1413
1414 PR 24065
1415 * testsuite/binutils-all/copy-6.d: New test.
1416 * testsuite/binutils-all/objcopy.exp: Use it.
1417
1418 2019-01-08 Alan Modra <amodra@gmail.com>
1419
1420 * testsuite/lib/binutils-common.exp (run_dump_test): Don't prepend
1421 $srcdir/$subdir to source file name if it starts with "./".
1422
1423 2019-01-05 Yoshinori Sato <ysato@users.sourceforge.jp>
1424
1425 * readelf.c (get_machine_flags): Add RXv3 output.
1426
1427 2019-01-04 Nick Clifton <nickc@redhat.com>
1428
1429 PR 24005
1430 * objdump.c (load_specific_debug_section): Check for integer
1431 overflow before attempting to allocate contents.
1432
1433 2019-01-04 Nick Clifton <nickc@redhat.com>
1434
1435 PR 24001
1436 * objcopy.c (copy_object): Free dhandle after writing out the
1437 debug information.
1438 * objdump.c (dump_bfd): Free dhandle after printing out the debug
1439 information.
1440
1441
1442 2019-01-01 Alan Modra <amodra@gmail.com>
1443
1444 Update year range in copyright notice of all files.
1445
1446 For older changes see ChangeLog-2018
1447 \f
1448 Copyright (C) 2019 Free Software Foundation, Inc.
1449
1450 Copying and distribution of this file, with or without modification,
1451 are permitted in any medium without royalty provided the copyright
1452 notice and this notice are preserved.
1453
1454 Local Variables:
1455 mode: change-log
1456 left-margin: 8
1457 fill-column: 74
1458 version-control: never
1459 End:
This page took 0.056784 seconds and 3 git commands to generate.