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