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