]> git.ipfire.org Git - thirdparty/binutils-gdb.git/log
thirdparty/binutils-gdb.git
4 months agoRemove -pie from command line of fatal-warnings 1a and 1b tests.
Nick Clifton [Fri, 26 Jan 2024 10:25:04 +0000 (10:25 +0000)] 
Remove -pie from command line of fatal-warnings 1a and 1b tests.

4 months agox86/APX: TILE{RELEASE,ZERO} have no EVEX encodings
Jan Beulich [Fri, 26 Jan 2024 09:34:48 +0000 (10:34 +0100)] 
x86/APX: TILE{RELEASE,ZERO} have no EVEX encodings

Re-using the entire VEX decode hierarchy for the respective major opcode
has led to those two also being decoded as-if valid. Follow the earlier
USE_X86_64_EVEX_{PFX,W}_TABLE approach to avoid this happening.

4 months agox86/APX: no need to have decode go through x86_64_table[]
Jan Beulich [Fri, 26 Jan 2024 09:34:24 +0000 (10:34 +0100)] 
x86/APX: no need to have decode go through x86_64_table[]

As suggested during review already, all such entries have their first
slot as Bad_Opcode, so by adding two more enumerators we can avoid doing
that decode step altogether.

4 months agox86: make "-msyntax=intel -mnaked-reg" match ".intel_syntax noprefix"
Jan Beulich [Fri, 26 Jan 2024 09:32:37 +0000 (10:32 +0100)] 
x86: make "-msyntax=intel -mnaked-reg" match ".intel_syntax noprefix"

Adjustments made for the directive (by set_intel_syntax()) need also
making for the command line option. Break out respective code into a new
helper function, to also be invoked during command line processing.
Further also set register_prefix when processing -mnaked-reg.

4 months agox86/APX: optimize MOVBE
Jan Beulich [Fri, 26 Jan 2024 09:31:38 +0000 (10:31 +0100)] 
x86/APX: optimize MOVBE

With identical source and destination it can be covered by the NDD-to-
legacy conversion logic as well, even if in this case the original insn
doesn't use an NDD encoding. The size savings are even better here, for
the replacement (BSWAP) not having a ModR/M byte.

4 months agoLoongArch: Fix a bug of getting relocation type
mengqinggang [Fri, 26 Jan 2024 03:16:49 +0000 (11:16 +0800)] 
LoongArch: Fix a bug of getting relocation type

The old code works because R_LARCH_RELAX has no symbol index. It causes
'(rel + 1)->r_info == R_LARCH_RELAX' is 1 and ELFNN_R_TYPE (1) is 1.

4 months agoLoongArch: gas: Add support for s9 register
mengqinggang [Thu, 25 Jan 2024 06:44:12 +0000 (14:44 +0800)] 
LoongArch: gas: Add support for s9 register

In LoongArch ABI, r22 register can be used as frame pointer or
static register(s9).

Link: https://github.com/loongson/la-abi-specs/blob/release/lapcs.adoc#general-purpose-registers
4 months agoLoongArch: ld: Add support for TLS LE symbol with addend
mengqinggang [Thu, 25 Jan 2024 01:32:14 +0000 (09:32 +0800)] 
LoongArch: ld: Add support for TLS LE symbol with addend

Add support for TLS LE symbol with addend, such as:
  lu12i.w $t0, %le_hi20(a + 0x8)
  ori   $t0, $t0, %le_lo12(a + 0x8)

4 months agoAssertion failure dumping .eh_frame_hdr
Alan Modra [Thu, 25 Jan 2024 22:44:13 +0000 (09:14 +1030)] 
Assertion failure dumping .eh_frame_hdr

dwarf.c can hit "Assertion '(start) <= (end)' failed" on truncated
sections, due to get_encoded_eh_value wrongly returning a full count
for truncated words.

* dwarf.c (get_encoded_eh_value): Return zero for truncated words.

4 months agoAutomatic date update in version.in
GDB Administrator [Fri, 26 Jan 2024 00:00:23 +0000 (00:00 +0000)] 
Automatic date update in version.in

4 months agogdb: remove get_gdb_program_name
Simon Marchi [Thu, 25 Jan 2024 19:35:06 +0000 (14:35 -0500)] 
gdb: remove get_gdb_program_name

Nothing uses it.

Change-Id: I7a3fbf38e290a5147fbcbf175bc34f01dfb335c7

4 months agoelf: Add is_standard_elf
H.J. Lu [Thu, 25 Jan 2024 18:08:04 +0000 (10:08 -0800)] 
elf: Add is_standard_elf

PR ld/31289 tests failed for fr30-elf, frv-elf, ft32-elf, iq2000-elf,
mn10200-elf, ms1-elf and msp430-elf targets:

FAIL: ld-elf/fatal-warnings-2a
FAIL: ld-elf/fatal-warnings-2b
FAIL: ld-elf/fatal-warnings-3a
FAIL: ld-elf/fatal-warnings-3b
FAIL: ld-elf/fatal-warnings-4a
FAIL: ld-elf/fatal-warnings-4b

even though PR ld/31289 targets xfail for [is_generic] targets.  These
targets not only don't use the generic_link_hash_table linker, but also
don't use the standard ELF emulation.  Add is_standard_elf for ELF
targets which use the standard ELF emulation and replace [is_generic]
with ![is_standard_elf] in PR ld/31289 tests.

binutils/

PR ld/31289
* testsuite/lib/binutils-common.exp (is_standard_elf): New.

ld/

PR ld/31289
* testsuite/lib/binutils-common.exp (is_generic): Return 1 for
fr30-*-*, frv-*-elf, ft32-*-*, iq2000-*-*, mn10200-*-*,
moxie-*-moxiebox*, msp430-*-* and mt-*-*.
* testsuite/ld-elf/fatal-warnings-2a.d: Replace [is_generic]
with ![is_standard_elf].
* testsuite/ld-elf/fatal-warnings-2b.d: Likewise.
* testsuite/ld-elf/fatal-warnings-3a.d: Likewise.
* testsuite/ld-elf/fatal-warnings-3b.d: Likewise.
* testsuite/ld-elf/fatal-warnings-4a.d: Likewise.
* testsuite/ld-elf/fatal-warnings-4b.d: Likewise.

4 months agold: Always call output_unknown_cmdline_warning
H.J. Lu [Thu, 25 Jan 2024 15:39:05 +0000 (07:39 -0800)] 
ld: Always call output_unknown_cmdline_warning

Call output_unknown_cmdline_warning if there are no input files so that

$ ld -z bad-option

reports

ld: warning: -z bad-option ignored
ld: no input files

instead of

ld: no input files

PR ld/31289
* ldmain.c (main): Call output_unknown_cmdline_warning if there
are no input files.

4 months ago[gdb/testsuite] Fix regexp in vgdb_start
Tom de Vries [Thu, 25 Jan 2024 15:36:09 +0000 (16:36 +0100)] 
[gdb/testsuite] Fix regexp in vgdb_start

On Fedora 39 aarch64 I run into:
...
(gdb) target remote | vgdb --wait=2 --max-invoke-ms=2500 --pid=2114437^M
Remote debugging using | vgdb --wait=2 --max-invoke-ms=2500 --pid=2114437^M
relaying data between gdb and process 2114437^M
warning: remote target does not support file transfer, \
  attempting to access files from local filesystem.^M
Reading symbols from /lib/ld-linux-aarch64.so.1...^M
_start () at ../sysdeps/aarch64/dl-start.S:22^M
warning: 22     ../sysdeps/aarch64/dl-start.S: No such file or directory^M
(gdb) FAIL: gdb.base/valgrind-infcall.exp: target remote for vgdb
...

For contrast, on openSUSE Leap 15.4 x86_64 I have:
...
(gdb) target remote | vgdb --wait=2 --max-invoke-ms=2500 --pid=18797^M
Remote debugging using | vgdb --wait=2 --max-invoke-ms=2500 --pid=18797^M
relaying data between gdb and process 18797^M
warning: remote target does not support file transfer, \
  attempting to access files from local filesystem.^M
Reading symbols from /lib64/ld-linux-x86-64.so.2...^M
(No debugging symbols found in /lib64/ld-linux-x86-64.so.2)^M
0x0000000004002550 in _start () from /lib64/ld-linux-x86-64.so.2^M
(gdb) PASS: gdb.base/valgrind-infcall.exp: target remote for vgdb
...

The fail happens in vgdb_start because the regexp only matches the
"in _start ()" variant, not the "_start () at":
...
       gdb_test "$vgdbcmd" " in \\.?_start .*" "target remote for vgdb"
...
Which variant you get is determined by presence of debug info.

Fix this by also matching the "_start () at" variant.

Tested aarch64-linux and x86_64-linux.

Approved-By: Tom Tromey <tom@tromey.com>
4 months agogas: Update NEWS
Andrew Carlotti [Fri, 19 Jan 2024 17:15:04 +0000 (17:15 +0000)] 
gas: Update NEWS

Groups entries by architecture, and update AArch64 content.

4 months ago[gdb/build] Workaround gcc PR113599
Tom de Vries [Thu, 25 Jan 2024 15:31:47 +0000 (16:31 +0100)] 
[gdb/build] Workaround gcc PR113599

Since gcc commit d3f48f68227 ("c++: non-dependent .* operand folding
[PR112427]"), with gdb we run into PR gcc/113599 [1], a wrong-code bug, as
reported in PR build/31281.

Work around this by flipping inherit order:
...
-class thread_info : public refcounted_object,
-     public intrusive_list_node<thread_info>
+class thread_info : public intrusive_list_node<thread_info>,
+     public refcounted_object
...

An argument could be made that this isn't necessary, because this occurred in
an unreleased gcc version.

However, I think it could be useful when bisecting gcc for other problems in
building gdb.  Having this workaround means the bisect won't reintroduce the
problem.  Furthermore, the workaround is harmless.

Tested on Fedora rawhide x86_64.

Approved-By: Tom Tromey <tom@tromey.com>
Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=31281

[1] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113599

4 months ago[gdb/testsuite] Fix gdb.base/eh_return.exp
Tom de Vries [Thu, 25 Jan 2024 15:25:07 +0000 (16:25 +0100)] 
[gdb/testsuite] Fix gdb.base/eh_return.exp

On Fedora rawhide aarch64, I run into:
...
(gdb) PASS: gdb.base/eh_return.exp: set breakpoint on address
run ^M
Starting program: eh_return ^M
[Thread debugging using libthread_db enabled]^M
Using host libthread_db library "/lib64/libthread_db.so.1".^M
[Inferior 1 (process 1113051) exited normally]^M
(gdb) FAIL: gdb.base/eh_return.exp: hit breakpoint (the program exited)
...

This happens as follows: the test-case sets a breakpoint on the last
instruction of function eh2:
...
(gdb) break *0x00000000004103ec^M
...
and expects to hit the breakpoint, but instead the "br x6" is taken:
...
   0x00000000004103e0 <+176>:   cbz     x4, 0x4103ec <eh2+188>^M
   0x00000000004103e4 <+180>:   add     sp, sp, x5^M
   0x00000000004103e8 <+184>:   br      x6^M
   0x00000000004103ec <+188>:   ret^M
...

In contrast, with fedora f39 we have:
...
   0x00000000004103bc <+156>:   ldp     x2, x3, [sp, #48]^M
   0x00000000004103c0 <+160>:   ldp     x29, x30, [sp, #16]^M
   0x00000000004103c4 <+164>:   add     sp, sp, #0x50^M
   0x00000000004103c8 <+168>:   add     sp, sp, x4^M
   0x00000000004103cc <+172>:   ret^M

...
and the breakpoint is reached.

Fix this by detecting that the breakpoint is not hit, and declaring the test
unsupported.

Tested on aarch64-linux.

Approved-By: Tom Tromey <tom@tromey.com>
PR testsuite/31291
Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=31291

4 months agoFix attach-twice.c testcase for AIX.
Aditya Vidyadhar Kamath [Thu, 25 Jan 2024 12:28:29 +0000 (06:28 -0600)] 
Fix attach-twice.c testcase for AIX.

Currently, in AIX attach-twice.exp testcase is untested due to the below error.
gdb/testsuite/gdb.base/attach-twice.c:43:7: error: too few arguments to function 'ptrace'

This is because in AIX ptrace has five arguments. This patch is a fix for the same such that
this test case runs in AIX and other targets as well.

4 months agold: Improve --fatal-warnings for unknown command-line options
H.J. Lu [Wed, 24 Jan 2024 21:53:11 +0000 (13:53 -0800)] 
ld: Improve --fatal-warnings for unknown command-line options

There are 2 problems with --fatal-warnings for unknown command-line
options:

1. --fatal-warnings doesn't trigger an error for an unknown command-line
option when --fatal-warnings is the last command-line option.
2. When --fatal-warnings triggers an error for an unknown command-line
option, the message says that the unknown command-line option is ignored.

This patch queues unknown command-line option warnings and outputs queued
command-line option warnings after all command-line options have been
processed so that --fatal-warnings can work for unknown command-line
options regardless of the order of --fatal-warnings.

When --fatal-warnings is used, the linker message is changed from

ld: warning: -z bad-option ignored

to

ld: error: unsupported option: -z bad-option

The above also applies to "-z dynamic-undefined-weak" when the known
"-z dynamic-undefined-weak" option is ignored.

PR ld/31289
* ldelf.c (ldelf_after_parse): Use queue_unknown_cmdline_warning
to warn the ignored -z dynamic-undefined-weak option.
* ldmain.c (main): Call output_unknown_cmdline_warnings after
calling ldemul_after_parse.
* ldmisc.c (CMDLINE_WARNING_SIZE): New.
(cmdline_warning_list): Likewise.
(cmdline_warning_head): Likewise.
(cmdline_warning_tail): Likewise.
(queue_unknown_cmdline_warning): Likewise.
(output_unknown_cmdline_warnings): Likewise.
* ldmisc.h (queue_unknown_cmdline_warning): Likewise.
(output_unknown_cmdline_warnings): Likewise.
* emultempl/elf.em (gld${EMULATION_NAME}_handle_option): Use
queue_unknown_cmdline_warning to warn unknown -z option.
* testsuite/ld-elf/fatal-warnings-1a.d: New file.
* testsuite/ld-elf/fatal-warnings-1b.d: Likewise.
* testsuite/ld-elf/fatal-warnings-2a.d: Likewise.
* testsuite/ld-elf/fatal-warnings-2b.d: Likewise.
* testsuite/ld-elf/fatal-warnings-3a.d: Likewise.
* testsuite/ld-elf/fatal-warnings-3b.d: Likewise.
* testsuite/ld-elf/fatal-warnings-4a.d: Likewise.
* testsuite/ld-elf/fatal-warnings-4b.d: Likewise.

4 months agoAutomatic date update in version.in
GDB Administrator [Thu, 25 Jan 2024 00:00:45 +0000 (00:00 +0000)] 
Automatic date update in version.in

4 months agoriscv64-pei uninitialised data writing relocs
Alan Modra [Wed, 24 Jan 2024 22:11:14 +0000 (08:41 +1030)] 
riscv64-pei uninitialised data writing relocs

Without this patch the r_offset field of struct external_reloc is
uninitialised when using objcopy.

* coff/riscv64.h (SWAP_IN_RELOC_OFFSET): Define.
(SWAP_OUT_RELOC_OFFSET): Define.

4 months agoEmit stopped event for DAP attach request
Tom Tromey [Thu, 11 Jan 2024 16:52:55 +0000 (09:52 -0700)] 
Emit stopped event for DAP attach request

In an earlier patch, I wrote:

    ...  It also adds some machinery so that attach stops can be
    suppressed, which I think is the right thing to do.

However, after some discussions here at AdaCore, I now believe this to
be incorrect -- while DAP says that expected "continue" events should
be suppressed, there is no corresponding language for expected "stop"
events, and indeed "stop" events explicitly mention cases like "step".

This patch arranges for the stop event to be emitted again.

4 months agoHandle DW_AT_endianity on enumeration types
Tom Tromey [Tue, 9 Jan 2024 18:47:17 +0000 (11:47 -0700)] 
Handle DW_AT_endianity on enumeration types

A user found that gdb would not correctly print a field from an Ada
record using the scalar storage order feature.  We tracked this down
to a combination of problems.

First, GCC did not emit DW_AT_endianity on the enumeration type.
DWARF does not specify this, but it is an obvious and harmless
extension.  This was fixed in GCC recently:

    https://gcc.gnu.org/pipermail/gcc-patches/2024-January/642347.html
    https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=5d8b60effc7268448a94fbbbad923ab6871252cd

Second, GDB did not handle this attribute on enumeration types.  This
patch makes this change and adds a test case that will pass with the
patched GCC.

So far, the GCC patch isn't on the gcc-13 branch; but if it ever goes
in, the test case in this patch can be updated to reflect that.

Reviewed-By: Keith Seitz <keiths@redhat.com>
4 months agogdb/arm: Fix epilogue frame id
Thiago Jung Bauermann [Tue, 23 Jan 2024 17:11:33 +0000 (14:11 -0300)] 
gdb/arm: Fix epilogue frame id

arm_epilogue_frame_this_id has a comment saying that it fall backs to using
the current PC if the function start address can't be identified, but it
actually uses only the PC to make the frame id.

This patch makes the code match the comment.  Another hint that it's what
is intended is that arm_prologue_this_id, a function almost identical to
it, does that.

The problem was found by code inspection.  It fixes the following testsuite
failures:

FAIL: gdb.base/unwind-on-each-insn.exp: foo: instruction 9: check frame-id matches
FAIL: gdb.reverse/solib-reverse.exp: reverse-next third shr1
FAIL: gdb.reverse/solib-reverse.exp: reverse-next second shr1
FAIL: gdb.reverse/solib-reverse.exp: reverse-next first shr1
FAIL: gdb.reverse/solib-reverse.exp: reverse-next generic
FAIL: gdb.reverse/solib-reverse.exp: reverse-step into solib function one
FAIL: gdb.reverse/solib-reverse.exp: reverse-step within solib function one
FAIL: gdb.reverse/solib-reverse.exp: reverse-step into solib function two
FAIL: gdb.reverse/solib-reverse.exp: reverse-step within solib function two

Tested on arm-linux-gnueabi-hf.

4 months agogdb/testsuite: add test for backtracing for threaded inferiors from a corefile
Guinevere Larsen [Thu, 24 Aug 2023 09:00:35 +0000 (11:00 +0200)] 
gdb/testsuite: add test for backtracing for threaded inferiors from a corefile

This patch is based on an out-of-tree patch that fedora has been
carrying for a while. It tests if GDB is able to properly unwind a
threaded program in the following situations:
* regular threads
* in a signal handler
* in a signal handler executing on an alternate stack

And the final frame can either be in a syscall or in an infinite loop.

The test works by running the inferior until a crash to generate a
corefile, or until right before the crash. Then applies a backtrace to
all threads to see if any frame can't be identified, and the order of
the threads in GDB. Finally, it goes thread by thread and tries to
collect a large part of the backtrace, to confirm that everything is
being unwound correctly.

Co-Authored-By: Andrew Burgess <aburgess@redhat.com>
Reviewed-By: Luis Machado <luis.machado@arm.com>
Approved-By: Luis Machado <luis.machado@arm.com>
4 months agoaarch64: Eliminate unused variable warnings with -DNDEBUG
Andrew Carlotti [Tue, 23 Jan 2024 18:22:12 +0000 (18:22 +0000)] 
aarch64: Eliminate unused variable warnings with -DNDEBUG

4 months agoLoongArch: gas: Start a new frag after instructions that can be relaxed
mengqinggang [Thu, 18 Jan 2024 11:03:11 +0000 (19:03 +0800)] 
LoongArch: gas: Start a new frag after instructions that can be relaxed

For R_LARCH_TLS_{LE_HI20_R,LE_ADD_R,LD_PC_HI20,GD_PC_HI20, DESC_PC_HI20}
relocations, start a new frag to get correct eh_frame Call Frame Information
FDE DW_CFA_advance_loc info.

4 months agoLoongArch: gas: Don't define LoongArch .align
mengqinggang [Sun, 1 Oct 2023 07:29:44 +0000 (15:29 +0800)] 
LoongArch: gas: Don't define LoongArch .align

Gcc may generate "\t.align\t%d,54525952,4\n" before commit
b20c7ee066cb7d952fa193972e8bc6362c6e4063. To write 54525952 (NOP) to object
file, we call s_align_ptwo (-4). It result in alignment padding must be a
multiple of 4 if .align has second parameter.

Use default s_align_ptwo for .align.

4 months agoAdd myself as the KVX port maintainer
Paul Iannetta [Tue, 23 Jan 2024 16:03:11 +0000 (17:03 +0100)] 
Add myself as the KVX port maintainer

binutils/ChangeLog:

* MAINTAINERS: Add myself as the KVX port maintainer.

4 months agoAutomatic date update in version.in
GDB Administrator [Wed, 24 Jan 2024 00:00:33 +0000 (00:00 +0000)] 
Automatic date update in version.in

4 months agoaarch64: Update Architecture Extensions documentation
Andrew Carlotti [Mon, 15 Jan 2024 07:26:53 +0000 (07:26 +0000)] 
aarch64: Update Architecture Extensions documentation

Restructure the architecture extensions table, add a new table for architecture
version dependencies, add missing architecture extensions, and improve some
extension descriptions.

4 months agoaarch64: Include +predres2 in -march=armv8.9-a
Andrew Carlotti [Wed, 17 Jan 2024 12:37:15 +0000 (12:37 +0000)] 
aarch64: Include +predres2 in -march=armv8.9-a

This matches the dependencies in the architecture, in LLVM, and even in the
original Binutils commit message that mistakenly included it only in armv9.4-a.

4 months ago[PATCH v2] gas/NEWS, ld/NEWS: Announce LoongArch changes in 2.42
Xi Ruoyao [Tue, 23 Jan 2024 16:00:32 +0000 (16:00 +0000)] 
[PATCH v2] gas/NEWS, ld/NEWS: Announce LoongArch changes in 2.42

4 months agogdb: fix "list ." related crash
Guinevere Larsen [Mon, 22 Jan 2024 09:13:52 +0000 (10:13 +0100)] 
gdb: fix "list ." related crash

When a user attempts to use the "list ." command with an inferior that
doesn't have debug symbols, GDB would crash. This was reported as PR
gdb/31256.

The crash would happen when attempting to get the current symtab_and_line
for the stop location, because the symtab would return a null pointer
and we'd attempt to dereference it to print the line.

This commit fixes that by checking for an empty symtab and erroring out
of the function if it happens.

Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=31256
Approved-By: Tom Tromey <tom@tromey.com>
4 months agosim: sh: fix nested braces in struct init
Mike Frysinger [Tue, 23 Jan 2024 08:09:43 +0000 (03:09 -0500)] 
sim: sh: fix nested braces in struct init

The op struct includes an array of strings, but doesn't use braces
around that array when initializing.  This causes a ton of warnings
when using -Wmissing-braces.  Add them to fix.

The code this tool generates is the same before & after.

4 months agosim: riscv: Fix crash during instruction decoding
Jaydeep Patil [Thu, 11 Jan 2024 05:28:21 +0000 (05:28 +0000)] 
sim: riscv: Fix crash during instruction decoding

The match_never() function has been removed and thus step_once() crashes
during instruction decoding. Fixed it by checking for null pointer before
invoking function attached to match_func member of riscv_opcode structure

4 months agosim: frv: fix -Wincompatible-function-pointer-types warnings [PR sim/29752]
Mike Frysinger [Sun, 24 Dec 2023 08:39:52 +0000 (03:39 -0500)] 
sim: frv: fix -Wincompatible-function-pointer-types warnings [PR sim/29752]

Some compilers warn in the frv code:
sem.c:24343:41: error: incompatible function pointer types passing
  'void (SIM_CPU *, UINT, UDI)' (aka 'void (struct _sim_cpu *, unsigned int, unsigned long)')
  to parameter of type
  'void (*)(SIM_CPU *, UINT, DI)' (aka 'void (*)(struct _sim_cpu *, unsigned int, long)') [-Wincompatible-function-pointer-types]

This is due to frvbf_h_acc40U_set using UDI for setting the new value,
but using the common sim_queue_fn_di_write API which uses DI.  The same
size, but different sign.  We could change frvbf_h_acc40U_set to take a
DI without changing behavior in practice: the UDI is already passed via
the queue function which accepts a DI, and frvbf_h_acc40U_set already
casts the input to UDI before running any operations on it.  However,
these files are all generated, so manual changes here would be reverted.

Seems like we can only change the register type for all APIs in the cpu
definition.  This builds cleanly, and passes sim unittests.  Not sure if
it's 100% the answer, but seems to be the best we have currently.

Bug: https://sourceware.org/PR29752

4 months agoAutomatic date update in version.in
GDB Administrator [Tue, 23 Jan 2024 00:00:49 +0000 (00:00 +0000)] 
Automatic date update in version.in

4 months agogdb/testsuite: avoid duplicate test names in gdb.dwarf2/dw2-zero-range.exp (and more)
Simon Marchi [Fri, 19 Jan 2024 21:15:41 +0000 (21:15 +0000)] 
gdb/testsuite: avoid duplicate test names in gdb.dwarf2/dw2-zero-range.exp (and more)

Tom Tromey noticed that dw2-zero-range.exp reported a duplicate test
name.  This happens because have_index calls get_index_type with the
default test name.  Refactor the test to avoid this, while cleaning a
few other things, the most important being:

 - factor out the relocated and unrelocated parts in their own procs
 - give different names to generated binaries in different variations,
   such that all binaries are left in the test output directory (this
   makes it easier to debug a specific variation)

Change-Id: I7cdf7a344834852fbb035d7e0434559eab6b1e94

4 months agoFix 31252 gprofng causes testsuite parallel jobs fail
Vladimir Mezentsev [Sat, 20 Jan 2024 02:40:21 +0000 (18:40 -0800)] 
Fix 31252 gprofng causes testsuite parallel jobs fail

Before running our tests, we made a fake installation into ./tmpdir.
This installation changes libopcodes.la in the build area.
Gas testing may fail if gas and gprofng tests are run in parallel.

I create a script to run gprofng. Inside this script, LD_LIBRARY_PATH,
GPROFNG_SYSCONFDIR are set.
putenv_libcollector_ld_misc() first uses $GPROFNG_PRELOAD_LIBDIRS to create
directories for SP_COLLECTOR_LIBRARY_PATH ($SP_COLLECTOR_LIBRARY_PATH is used
to set up LD_PRELOAD).

gprofng/ChangeLog
2024-01-19  Vladimir Mezentsev  <vladimir.mezentsev@oracle.com>

PR gprofng/31252
PR gprofng/30808
* src/envsets.cc (putenv_libcollector_ld_misc): Use
$GPROFNG_PRELOAD_LIBDIRS first to build SP_COLLECTOR_LIBRARY_PATH.
* testsuite/config/default.exp: Create a script to run gprofng.
* testsuite/lib/display-lib.exp: Fix typo.

4 months agoUpdated Serbian translations for th bfd, gold and opcodes directories
Nick Clifton [Mon, 22 Jan 2024 17:26:36 +0000 (17:26 +0000)] 
Updated Serbian translations for th bfd, gold and opcodes directories

4 months agobinutils: Fix calloc argument order in srconv.c
Mark Wielaard [Sun, 21 Jan 2024 23:47:46 +0000 (00:47 +0100)] 
binutils: Fix calloc argument order in srconv.c

GCC 14 will warn about calling calloc with swapped size and count
arguments.

binutils/srconv.c: In function â€˜nints’:
binutils/srconv.c:598:36: error: â€˜xcalloc’ sizes specified with â€˜sizeof’ in the earlier argument and not in the later argument [-Werror=calloc-transposed-args]
  598 |   return (int *) (xcalloc (sizeof (int), x));
      |                                    ^~~
binutils/srconv.c:598:36: note: earlier argument should specify number of elements, later size of each element

binutils/

* srconv.c (nints): Swap xcalloc arguments.
(wr_du): Likewise.
(wr_dus): Likewise.

4 months agobinutils: Fix calloc argument order in coffgrok.c
Mark Wielaard [Sun, 21 Jan 2024 23:36:09 +0000 (00:36 +0100)] 
binutils: Fix calloc argument order in coffgrok.c

GCC 14 will warn about calling calloc with swapped size and count
arguments.

binutils-gdb/binutils/coffgrok.c: In function â€˜do_sections_p1’:
binutils-gdb/binutils/coffgrok.c:116:72: error: â€˜xcalloc’ sizes specified with â€˜sizeof’ in the earlier argument and not in the later argument [-Werror=calloc-transposed-args]
  116 |   struct coff_section *all = (struct coff_section *) (xcalloc (sizeof (struct coff_section),
      |                                                                        ^~~~~~
binutils-gdb/binutils/coffgrok.c:116:72: note: earlier argument should specify number of elements, later size of each element

binutils/

* coffgrok.c (empty_scope): Swap xcalloc arguments.
(empty_symbol): Likewise.
(do_lines): Likewise.
(doit): Likewise.
(coff_grok): Likewise.

4 months agolibsframe: Fix calloc argument order in dump_sframe_header
Mark Wielaard [Sun, 21 Jan 2024 23:12:45 +0000 (00:12 +0100)] 
libsframe: Fix calloc argument order in dump_sframe_header

GCC14 warns about the order of the arguments to calloc

libsframe/sframe-dump.c: In function â€˜dump_sframe_header’:
libsframe/sframe-dump.c:70:39: warning: â€˜calloc’ sizes specified with â€˜sizeof’ in the earlier argument and not in the later argument [-Wcalloc-transposed-args]
   70 |   flags_str = (char*) calloc (sizeof (char), SFRAME_HEADER_FLAGS_STR_MAX_LEN);
      |                                       ^~~~
libsframe/sframe-dump.c:70:39: note: earlier argument should specify number of elements, later size of each element

Fix this by swapping the size and count arguments.

libsframe/

* sframe-dump.c (dump_sframe_header): Swap arguments to calloc

4 months agoopcodes: tic4x_disassemble swap xcalloc arguments
Mark Wielaard [Sun, 21 Jan 2024 20:51:26 +0000 (21:51 +0100)] 
opcodes: tic4x_disassemble swap xcalloc arguments

GCC 14 will detect when the size and count arguments of calloc are
swapped.

binutils-gdb/opcodes/tic4x-dis.c: In function â€˜tic4x_disassemble’:
binutils-gdb/opcodes/tic4x-dis.c:710:32: error: â€˜xcalloc’ sizes specified with â€˜sizeof’ in the earlier argument and not in the later argument [-Werror=calloc-transposed-args]
  710 |       optab = xcalloc (sizeof (tic4x_inst_t *), (1 << TIC4X_HASH_SIZE));
      |                                ^~~~~~~~~~~~
binutils-gdb/opcodes/tic4x-dis.c:710:32: note: earlier argument should specify number of elements, later size of each element
binutils-gdb/opcodes/tic4x-dis.c:712:40: error: â€˜xcalloc’ sizes specified with â€˜sizeof’ in the earlier argument and not in the later argument [-Werror=calloc-transposed-args]
  712 |       optab_special = xcalloc (sizeof (tic4x_inst_t *), TIC4X_SPESOP_SIZE);
      |                                        ^~~~~~~~~~~~
binutils-gdb/opcodes/tic4x-dis.c:712:40: note: earlier argument should specify number of elements, later size of each element

opcodes/ChangeLog:

* /tic4x-dis.c (tic4x_disassemble): Swap size and count xcalloc
arguments.

4 months agoHandle EOF more gracefully in DAP
Tom Tromey [Wed, 10 Jan 2024 19:51:10 +0000 (12:51 -0700)] 
Handle EOF more gracefully in DAP

A user pointed out that gdb will print a Python exception when it gets
an EOF in DAP mode.  And, it turns out that an EOF like this also
causes gdb not to exit.  This is due to the refactoring that moved the
JSON reader to its own thread -- previously this caused an exception
to propagate and cause an exit, but now it just leaves the reader
hung.

This patch fixes these problems by arranging to handle EOF more
gracefully.

Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=31217

4 months agoFix handling of DW_OP_GNU_push_tls_address
Tom Tromey [Wed, 17 Jan 2024 11:29:59 +0000 (04:29 -0700)] 
Fix handling of DW_OP_GNU_push_tls_address

In one spot, DW_OP_GNU_push_tls_address is handled differently from
DW_OP_form_tls_address.  However, I think they should always be
treated identically.

Approved-by: Kevin Buettner <kevinb@redhat.com>
4 months agosim: Fix -Werror=shadow=local by changing mem to addr in sim_{read,write}
Mark Wielaard [Mon, 22 Jan 2024 11:58:11 +0000 (12:58 +0100)] 
sim: Fix -Werror=shadow=local by changing mem to addr in sim_{read,write}

m32c/cpu.h defines mem as enum value, which causes GCC 14 to emit

sim/m32c/gdb-if.c: In function â€˜sim_read’:
sim/m32c/gdb-if.c:162:33: error: declaration of â€˜mem’ shadows a previous local [-Werror=shadow=local]
  162 | sim_read (SIM_DESC sd, uint64_t mem, void *buf, uint64_t length)
      |                        ~~~~~~~~~^~~
In file included from ../../binutils-gdb/sim/m32c/gdb-if.c:38:
sim/m32c/cpu.h:83:3: note: shadowed declaration is here
   83 |   mem,
      |   ^~~

Fix this by renaming mem to addr in all sim_read and sim_write functions.
Most already used addr instead of mem. In one file, sim/rx/gdb-if.c, this
also meant renaming the local addr variable to vma.

4 months agosim: Fix some -Werror=shadow=compatible-local issues in aarch64/simulator.c
Mark Wielaard [Sun, 21 Jan 2024 22:47:35 +0000 (23:47 +0100)] 
sim: Fix some -Werror=shadow=compatible-local issues in aarch64/simulator.c

With GCC 14 -Werror=shadow=compatible-local flags the reuse of single
capital letters used in aarch64/cpustate.h enums

   88 | expand_logical_immediate (uint32_t S, uint32_t R, uint32_t N)
      |                                                   ~~~~~~~~~^
In file included from ../../binutils-gdb/sim/aarch64/aarch64-sim.h:27,
                 from ../../binutils-gdb/sim/aarch64/simulator.c:33:
  217 |   N = 1 << N_IDX
      |   ^

sim/aarch64/simulator.c: In function â€˜expand_logical_immediate’:
sim/aarch64/simulator.c:88:60: error: declaration of â€˜N’ shadows a previous local [-Werror=shadow=compatible-local]
sim/aarch64/cpustate.h:217:3: note: shadowed declaration is here

4 months agosim: Fix cc -Werror=shadow=local in cr16/simops.c
Mark Wielaard [Sun, 21 Jan 2024 22:52:50 +0000 (23:52 +0100)] 
sim: Fix cc -Werror=shadow=local in cr16/simops.c

include/opcode/cr16.h defines cc as an enum value, which causes GCC 14
to warn

sim/cr16/simops.c: In function â€˜cond_stat’:
sim/cr16/simops.c:138:26: error: declaration of â€˜cc’ shadows a previous local [-Werror=shadow=local]
  138 | static int cond_stat(int cc)
      |                      ~~~~^~
In file included from ../../binutils-gdb/sim/cr16/cr16-sim.h:26,
                 from ../../binutils-gdb/sim/cr16/simops.c:39:
sim/../include/opcode/cr16.h:149:3: note: shadowed declaration is here
  149 |   cc,
      |   ^~

Fix this by renaming cc in cr16/simops.c to cond.

4 months agogdb/testsuite: relax filename restriction in some gdb.btrace tests
Guinevere Larsen [Thu, 14 Dec 2023 09:52:29 +0000 (10:52 +0100)] 
gdb/testsuite: relax filename restriction in some gdb.btrace tests

The test gdb.btrace/tailcall.exp has multiple tests that include the
filename in the output. When testing with gcc, only a relative path is
printed, but when using clang, the full file path is printed instead.
This makes most of those tests fail, with the exception of "record goto
4" which allows for more characters before the file name. The test
gdb.btrace/recod_goto.exp suffers with the same issue

This commit allows for text before the filename. However, instead of how
the aforementioned "record goto 4", it uses a regexp that doesn't allow
for newlines, just in case some off output happens.

Approved-By: Tom Tromey <tom@tromey.com>
4 months agogdb/testsuite: modernize gdb.dwarf2/dw2-noloc.exp
Guinevere Larsen [Wed, 20 Dec 2023 11:46:42 +0000 (12:46 +0100)] 
gdb/testsuite: modernize gdb.dwarf2/dw2-noloc.exp

The test gdb.dwarf2/dw2-noloc.exp predates the dwarf assembler, and uses
some unreliable assumptions about where global labels get put.
Specifically, when using clang to compile the test, both labels it uses
to gauge the adresses of the main function get reshuffled to be side-by-side,
and the debug information ends up making it look like main's high pc is equal
to low pc, meaning we never enter the main function's scope, and that leads to
22 failures because the "main_*" variables are technically never in scope.

This patch modernizes the aforementioned test to use the dwarf
assembler, which removes all failures when using clang.  It also renames
the .c file to be more inline with current standard.

Approved-By: Tom Tromey <tom@tromey.com>
4 months agoLoongArch: Fix some test failures about TLS desc and TLS relaxation
Xi Ruoyao [Fri, 19 Jan 2024 16:38:24 +0000 (00:38 +0800)] 
LoongArch: Fix some test failures about TLS desc and TLS relaxation

There are two issues causing 11 test failures:

1. The TLS desc tests are matching the entire disassemble of a linked
   executable.  But if ld is configured --enable-default-hash-style=gnu
   (note that most modern distros use this option), the layout of the
   linked executables will be different and the immediate operands in
   the linked executables will also be different.  So we add
   "--hash-style=both" for these tests to cancel the effect of
   --enable-default-hash-style=gnu, like [x86_64 mark-plt tests].
2. By default objdump disassemble uses [pseudo-instructions] so "addi.w"
   is outputed as "li.w", causing mismatches in TLS relaxation tests.
   We can turn off the pseudo-instruction usage in objdump using "-M
   no-aliases" to fix them.

[x86_64 mark-plt tests]: 16666ccc91295d1568c5c2cb0e7600694840dfd9
[pseudo-instructions]: 17f9439038257b1de0c130a416a9a7645c653cb0

Signed-off-by: Xi Ruoyao <xry111@xry111.site>
4 months agoLoongArch: Do not add DF_STATIC_TLS for TLS LE
Tatsuyuki Ishi [Thu, 28 Dec 2023 14:58:00 +0000 (23:58 +0900)] 
LoongArch: Do not add DF_STATIC_TLS for TLS LE

TLS LE is exclusively for executables, while DF_STATIC_TLS is for DLLs.
DF_STATIC_TLS should only be set for TLS IE (and when it's DLL), not LE.

4 months agoLoongArch: Use tab to indent assembly in TLSDESC test suite
Tatsuyuki Ishi [Thu, 28 Dec 2023 14:58:01 +0000 (23:58 +0900)] 
LoongArch: Use tab to indent assembly in TLSDESC test suite

The usual convention is to use tabs. Not all test are following this,
but at least when using tabs, let's use it consistently throughout the
file.

4 months agox86/APX: also amend the PUSH2/POP2 testcase
Jan Beulich [Mon, 22 Jan 2024 07:52:30 +0000 (08:52 +0100)] 
x86/APX: also amend the PUSH2/POP2 testcase

Commit f530d5f1bab6 ("Update x86/APX: VROUND{P,S}{S,D} can generally be
encoded") took care of only half of the remaining issue. Add #pass here
as well.

4 months agoAutomatic date update in version.in
GDB Administrator [Mon, 22 Jan 2024 00:00:13 +0000 (00:00 +0000)] 
Automatic date update in version.in

4 months agogdb/infrun: lazily load curr_frame_id in process_event_stop_test
Lancelot SIX [Thu, 28 Dec 2023 11:51:31 +0000 (11:51 +0000)] 
gdb/infrun: lazily load curr_frame_id in process_event_stop_test

A recent(ish) change in gdb/infrun.c made process_event_stop_test load
debug information where it would not have done so previously.  The
change is:

    commit bf2813aff8f2988ad3d53e819a0415abf295c91f
    AuthorDate: Fri Sep 1 13:47:32 2023 +0200
    CommitDate: Mon Nov 20 10:54:03 2023 +0100

        gdb/record: print frame information when exiting a recursive call

        Currently,  when GDB is reverse stepping out of a function into the same
        function due to a recursive call, it doesn't print frame information, as
        reported by PR record/29178. This happens because when the inferior
        leaves the current frame, GDB decides to refresh the step information,
        clobbering the original step_frame_id, making it impossible to figure
        out later on that the frame has been changed.

        This commit changes GDB so that, if we notice we're in this exact
        situation, we won't refresh the step information.

        Because of implementation details, this change can cause some debug
        information to be read when it normally wouldn't before, which showed up
        as a regression on gdb.dwarf2/dw2-out-of-range-end-of-seq. Since that
        isn't a problem, the test was changed to allow for the new output.

        Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=29178

Although there is nothing wrong with this change in principle, it
happens to break most of the tests in gdb/testsuite/gdb.rocm/*.exp.
This is because those tests do rely on GDB not loading debug
information.  This is necessary because the debug information produced
for AMDGPU code is using DWARF extensions which are not supported by GDB
at this point.

In this patch, I propose to use a lazy loading mechanism so the frame_id
for the current frame is only computed when required instead of when
entering process_event_stop_test.  The lazy_loader class is currently
defined locally in infrun.c, but if it turns out to be useful elsewhere,
it could go somewhere under gdbsupport.

This patch should restore the behavior GDB had before
bf2813aff8f2988ad3d53e819a0415abf295c91f when it comes to load debug
info.

Another approach could have been to revert
fb84fbf8a51f5be2e78765508ebd9753af96b492 (gdb/infrun: simplify
process_event_stop_test) and adjust the implementation of
bf2813aff8f2988ad3d53e819a0415abf295c91f (gdb/record: print frame
information when exiting a recursive call).  However, I think that the
lazy loading works well with the simplification done recently, so I went
down that route.

Regression tested on x86_64-linux (Ubuntu 22.04) with AMDGPU support.

Change-Id: Ib63a162128130d1786a77c98623e9e3dcbc363b7
Approved-by: Kevin Buettner <kevinb@redhat.com>
4 months agoLoongArch: Do not emit R_LARCH_RELAX for two register macros
mengqinggang [Wed, 10 Jan 2024 01:55:13 +0000 (09:55 +0800)] 
LoongArch: Do not emit R_LARCH_RELAX for two register macros

For two register macros (e.g. la.local $t0, $t1, symbol) used in extreme code
model, do not emit R_LARCH_RELAX relocations.

4 months agoAutomatic date update in version.in
GDB Administrator [Sun, 21 Jan 2024 00:00:09 +0000 (00:00 +0000)] 
Automatic date update in version.in

4 months agogdb: remove SYMBOL_*_OPS macros
Simon Marchi [Fri, 19 Jan 2024 20:32:32 +0000 (15:32 -0500)] 
gdb: remove SYMBOL_*_OPS macros

Remove SYMBOL_BLOCK_OPS, SYMBOL_COMPUTED_OPS and SYMBOL_REGISTER_OPS, in
favor of methods on struct symbol.  More changes could be done here to
improve the design and make things safer, but I just wanted to do a
straightforward change to remove the macros for now.

Change-Id: I27adb74a28ea3c0dc9a85c2953413437cd95ad21
Reviewed-by: Kevin Buettner <kevinb@redhat.com>
4 months agoSimplify DWARF symtab inclusion handling
Tom Tromey [Mon, 15 Jan 2024 01:21:42 +0000 (18:21 -0700)] 
Simplify DWARF symtab inclusion handling

In the past, dwarf2_per_cu_data was allocated using malloc, so special
handling was needed for the vector used for symtab handling.  We
changed this to use 'new' a while back, so this code can now be
greatly simplified.

Regression tested on x86-64 Fedora 38.

Approved-By: Simon Marchi <simon.marchi@efficios.com>
4 months agoAutomatic date update in version.in
GDB Administrator [Sat, 20 Jan 2024 00:00:13 +0000 (00:00 +0000)] 
Automatic date update in version.in

4 months agogdb: remove deprecated_exec_file_display_hook and associated code
Andrew Burgess [Fri, 29 Dec 2023 09:50:10 +0000 (09:50 +0000)] 
gdb: remove deprecated_exec_file_display_hook and associated code

This commit removes deprecated_exec_file_display_hook and the
associated specify_exec_file_hook.

The specify_exec_file_hook is used to add a new hook function to
deprecated_exec_file_display_hook, but is only used from the insight
debugger.

I posted a patch to remove the use of specify_exec_file_hook from
insight, and instead use gdb::observers::executable_changed, this
patch can be found here (it has now been merged):

  https://inbox.sourceware.org/insight/6abeb45e97d9004ec331e94cf2089af00553de76.1702379379.git.aburgess@redhat.com/T/#u

With this merged we can now cleanup the GDB side as this code is now
unused.

There should be no user visible changes after this commit.

Approved-By: Tom Tromey <tom@tromey.com>
4 months agoFix remote serial read
Сергей Чернов [Fri, 19 Jan 2024 18:01:18 +0000 (11:01 -0700)] 
Fix remote serial read

After closing "Bug 30770 - serial.c does not preserve errno correctly"
https://sourceware.org/bugzilla/show_bug.cgi?id=30770
remote debugging became impossible due to an attempt to recv() by a call intended for the socket, and not for the character device file. The
documentation implicitly states that it is possible to use the read() call to work with a socket. But this does not mean in the general case that it is
permissible to use recv in the case of a non-socket.

condition:
os: Distributor ID:    Ubuntu
Description:    Ubuntu 23.10
Release:    23.10
Codename:    mantic

libc:
ldd (Ubuntu GLIBC 2.38-1ubuntu6) 2.38
kernel:
Linux klen-dev-um790pro 6.5.0-14-generic #14-Ubuntu SMP PREEMPT_DYNAMIC Tue Nov 14 14:59:49 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
gdb: build from trank at 15.0.50.20231226-git

GDB output:
$ arm-kgp-eabi-gdb
GNU gdb (Klen's_GNU_package_(KGP)_for_target::arm-kgp-eabi<rmprofile/lto>_host::x86_64-kgp-linux-gnu_znver4-avx512<<ílex>>)
15.0.50.20231226-git
....
(gdb) tar ext /dev/ttyACM1
Remote debugging using /dev/ttyACM1
Remote communication error.  Target disconnected: error while reading: Socket operation on non-socket.
(gdb)

after fix gdb work fine

$ arm-kgp-eabi-gdb -q
(gdb) tar ext /dev/ttyACM0
Remote debugging using /dev/ttyACM0
(gdb) mon swd
Target voltage: 0.0V
Available Targets:
No. Att Driver
       STM32F40x M4
(gdb) att 1
Attaching to Remote target
warning: No executable has been specified and target does not support
determining executable automatically.  Try using the "file" command.
0x08020c80 in ?? ()
(gdb)

Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=30770

4 months agogdb/ui-out.h: Fix exception handling in do_with_buffered_output
Aaron Merey [Fri, 19 Jan 2024 16:20:19 +0000 (11:20 -0500)] 
gdb/ui-out.h: Fix exception handling in do_with_buffered_output

Replace throw with throw_exeception in do_with_buffered_output.

This patch fixes regressions in gdb.dwarf2/dw2-dir-file-name.exp
caused by commit 519d63439.

do_with_buffered_output needs to use throw_exception instead of
throw to ensure that exceptions of the correct type are thrown.
If using throw, gdb_exception_error may be wrongly converted into
gdb_exception during print_frame_info.  This prevents the exception
from being caught in print_stack_frame.

4 months ago[gdb/testsuite] Update xfail in gdb.threads/attach-many-short-lived-threads.exp
Tom de Vries [Fri, 19 Jan 2024 16:40:03 +0000 (17:40 +0100)] 
[gdb/testsuite] Update xfail in gdb.threads/attach-many-short-lived-threads.exp

With test-case gdb.threads/attach-many-short-lived-threads.exp, I run into:
...
(gdb) attach 7773^M
Attaching to program: attach-many-short-lived-threads, process 7773^M
Cannot attach to lwp 7776: Operation not permitted (1)^M
(gdb) PASS: $exp: iter 1: attach
info threads^M
No threads.^M
(gdb) PASS: $exp: iter 1: no new threads
set breakpoint always-inserted on^M
(gdb) PASS: $exp: iter 1: set breakpoint always-inserted on
break break_fn^M
Breakpoint 1 at 0x400b4d: file attach-many-short-lived-threads.c, line 57.^M
(gdb) PASS: $exp: iter 1: break break_fn
continue^M
The program is not being run.^M
(gdb) FAIL: $exp: iter 1: break at break_fn: 1 \
  (the program is no longer running)
...

There's some code in the test-case dealing with a similar warning:
...
  -re "warning: Cannot attach to lwp $decimal: Operation not permitted" {
...

But since commit c6f7f9c80c3 ("Bail out of "attach" if a thread cannot be
traced"), the warning has been changed into an error.

Fix the FAIL by updating the test-case to expect an error instead of a
warning.

Tested on x86_64-linux.

Approved-By: Tom Tromey <tom@tromey.com>
4 months agogdb: remove unnecessary NULL checks for return value of value_from_register
Simon Marchi [Fri, 19 Jan 2024 15:35:37 +0000 (10:35 -0500)] 
gdb: remove unnecessary NULL checks for return value of value_from_register

value_from_register can't return nullptr, remove some NULL checks.

Change-Id: Ia6b32b8f86e593c535e3678a89dffe5544eb7ab0
Approved-By: Tom Tromey <tom@tromey.com>
4 months agold: Remove scripttempl/elf_chaos.sc
H.J. Lu [Fri, 19 Jan 2024 16:05:49 +0000 (08:05 -0800)] 
ld: Remove scripttempl/elf_chaos.sc

scripttempl/elf_chaos.sc is unused.  Remove it.

* scripttempl/elf_chaos.sc: Removed.

4 months agoRemove hosts/mipsbsd.h and scripttempl/mipsbsd.sc
H.J. Lu [Fri, 19 Jan 2024 15:15:30 +0000 (07:15 -0800)] 
Remove hosts/mipsbsd.h and scripttempl/mipsbsd.sc

Remove hosts/mipsbsd.h and scripttempl/mipsbsd.sc which are unused
after

commit 3596d8ceb2cdc35b4fd702ee9daace5a2d880174
Author: Alan Modra <amodra@gmail.com>
Date:   Wed Apr 18 15:39:34 2018 +0930

    Remove mips aout, coff, and pe support

bfd/

* hosts/mipsbsd.h: Removed.

ld/

* scripttempl/mipsbsd.sc: Removed.

4 months agold: fix 32-bit mingw DLL symbol export bug
Oleg Tolmatcev [Fri, 19 Jan 2024 15:02:45 +0000 (15:02 +0000)] 
ld: fix 32-bit mingw DLL symbol export bug

I think there's a bug in ld on 32-bit Windows.  Here is a tiny project for reproducing the problem:
https://github.com/oltolm/ld-mingw32-bug

A 32-bit DLL exports two stdcall functions "myfunc" and "myfunc64". The functions would normally get
exported as "myfunc@0" and "myfunc64@0". The "DEF" file exports them as "myfunc" and "myfunc64"
without the decorations. When you run the executable it shows an error message saying that it cannot
find "myfunc64".

I think it happens because the sorting in ld is wrong. I think it should use the exported names
"myfunc" and "myfunc64", but instead it uses the decorated names "myfunc@0" or "myfunc65@0". The
ordering of functions in the DLL is different depending on which names you use.

My patch changes ld to use undecorated exported names for sorting and it seems to fix the problem.
When I execute ctest in my project, it runs successfully.

4 months agoUpdate x86/APX: VROUND{P,S}{S,D} can generally be encoded
H.J. Lu [Fri, 19 Jan 2024 14:42:20 +0000 (06:42 -0800)] 
Update x86/APX: VROUND{P,S}{S,D} can generally be encoded

Append "#pass" to APX tests for targets which pad text sections with NOPs.

* testsuite/gas/i386/x86-64-apx-evex-promoted-intel.d: Append
"#pass".
* testsuite/gas/i386/x86-64-apx-evex-promoted.d: Likewise.

4 months agoUpdate readelf's and objdump's debug frame displaying feature to include the contents...
Nick Clifton [Fri, 19 Jan 2024 14:39:08 +0000 (14:39 +0000)] 
Update readelf's and objdump's debug frame displaying feature to include the contents of the .eh_frame_hdr section, if present.

4 months agold: Put all emulation options in ldlex.h
H.J. Lu [Wed, 17 Jan 2024 15:46:37 +0000 (07:46 -0800)] 
ld: Put all emulation options in ldlex.h

For each command line option, parse_args() calls ldemul_parse_args()
to check if the command line option is an emulation option.  But when
there is a conflict between the emulation option value and the default
option value, the default command line option will be processed as if
the emulation option is used.  Remove PARSE_AND_LIST_PROLOGUE and move
all emulation options to ldlex.h to avoid conflicts.

PR ld/31247
* ldlex.h (option_values): Add all emulation options.
* emulparams/elf32mcore.sh (PARSE_AND_LIST_PROLOGUE): Removed.
* emulparams/plt_unwind.sh (PARSE_AND_LIST_PROLOGUE): Likewise.
* emultempl/aarch64elf.em (PARSE_AND_LIST_PROLOGUE): Likewise.
* emultempl/alphaelf.em (PARSE_AND_LIST_PROLOGUE): Likewise.
* emultempl/armelf.em (PARSE_AND_LIST_PROLOGUE): Likewise.
* emultempl/avrelf.em (PARSE_AND_LIST_PROLOGUE): Likewise.
* emultempl/bfin.em (PARSE_AND_LIST_PROLOGUE): Likewise.
* emultempl/cskyelf.em (PARSE_AND_LIST_PROLOGUE): Likewise.
* emultempl/hppaelf.em (PARSE_AND_LIST_PROLOGUE): Likewise.
* emultempl/ia64elf.em (PARSE_AND_LIST_PROLOGUE): Likewise.
* emultempl/m68hc1xelf.em (PARSE_AND_LIST_PROLOGUE): Likewise.
* emultempl/m68kelf.em (PARSE_AND_LIST_PROLOGUE): Likewise.
* emultempl/metagelf.em (PARSE_AND_LIST_PROLOGUE): Likewise.
* emultempl/mipself.em (PARSE_AND_LIST_PROLOGUE): Likewise.
* emultempl/nds32elf.em (PARSE_AND_LIST_PROLOGUE): Likewise.
* emultempl/nto.em (PARSE_AND_LIST_PROLOGUE): Likewise.
* emultempl/ppc32elf.em (PARSE_AND_LIST_PROLOGUE): Likewise.
* emultempl/ppc64elf.em (PARSE_AND_LIST_PROLOGUE): Likewise.
* emultempl/riscvelf.em (PARSE_AND_LIST_PROLOGUE): Likewise.
* emultempl/rxelf.em (PARSE_AND_LIST_PROLOGUE): Likewise.
* emultempl/s390.em (PARSE_AND_LIST_PROLOGUE): Likewise.
* emultempl/scoreelf.em (PARSE_AND_LIST_PROLOGUE): Likewise.
* emultempl/spuelf.em (PARSE_AND_LIST_PROLOGUE): Likewise.
* emultempl/tic6xdsbt.em (PARSE_AND_LIST_PROLOGUE): Likewise.
* emultempl/vxworks.em (PARSE_AND_LIST_PROLOGUE): Likewise.
* emultempl/aix.em: Include "ldlex.h".
(OPTION_XXX): Removed.
(gld${EMULATION_NAME}_read_file): Replace lineno with linenumber.
* emultempl/beos.em (OPTION_XXX): Removed.
* emultempl/elf.em: Include "ldlex.h".
Don't check PARSE_AND_LIST_PROLOGUE.
(OPTION_XXX): Removed.
* emultempl/msp430.em: Include "ldlex.h".
(OPTION_XXX): Removed.
* emultempl/pe.em (OPTION_XXX): Removed.
* emultempl/pep.em (OPTION_XXX): Likewise.
* emultempl/ticoff.em: Include "ldlex.h".
(OPTION_XXX): Removed.
* emultempl/vms.em: Include "ldlex.h".
(OPTION_XXX): Removed.
* emultempl/xtensaelf.em (elf32xtensa_size_opt,
elf32xtensa_no_literal_movement, elf32xtensa_abi): Moved out of
PARSE_AND_LIST_PROLOGUE.
(PARSE_AND_LIST_PROLOGUE): Removed.

4 months agoAdd multilib.am to the list of top level files included in any release created by...
Nick Clifton [Fri, 19 Jan 2024 11:45:10 +0000 (11:45 +0000)] 
Add multilib.am to the list of top level files included in any release created by the src-release.sh script

4 months agox86-64: Dwarf2 register numbers for %bnd<N>
Jan Beulich [Fri, 19 Jan 2024 09:19:15 +0000 (10:19 +0100)] 
x86-64: Dwarf2 register numbers for %bnd<N>

I don't see why we shouldn't record them when they have been allocated,
even if they're (bogusly) named as reserved in the ABI right now.

4 months agox86/APX: VROUND{P,S}{S,D} can generally be encoded
Jan Beulich [Fri, 19 Jan 2024 09:18:32 +0000 (10:18 +0100)] 
x86/APX: VROUND{P,S}{S,D} can generally be encoded

VRNDSCALE{P,S}{S,D} is the AVX512 generalization of these AVX insns. As
long as the immediate has the top 4 bits clear, they are equivalent to
the earlier VEX-encoded insns, and hence can be used to permit use of
eGPR-s in the memory operand. Since this is the normal way of using
these insns, also alter the resulting diagnostic to complain about the
immediate, not the eGPR use.

4 months agox86/APX: be consistent with insn suffixes
Jan Beulich [Fri, 19 Jan 2024 09:17:44 +0000 (10:17 +0100)] 
x86/APX: be consistent with insn suffixes

When there's a suitably disambiguating register operand, suffixes are
generally omitted (unless in suffix-always mode). All NDD insns have a
suitable register operand, so they shouldn't have suffixes by default.

4 months agox86: drop redundant EVex128 from PUSH2/POP2
Jan Beulich [Fri, 19 Jan 2024 09:16:28 +0000 (10:16 +0100)] 
x86: drop redundant EVex128 from PUSH2/POP2

EVexMap4 already covers that.

4 months agox86: support APX forms of U{RD,WR}MSR
Jan Beulich [Fri, 19 Jan 2024 09:16:00 +0000 (10:16 +0100)] 
x86: support APX forms of U{RD,WR}MSR

This was missed in 6177c84d5edc ("Support APX GPR32 with extend evex
prefix").

4 months agogdb: Buffer output streams during events that might download debuginfo
Aaron Merey [Fri, 12 Jan 2024 19:38:45 +0000 (14:38 -0500)] 
gdb: Buffer output streams during events that might download debuginfo

Introduce new ui_file buffering_file to temporarily collect output
written to gdb_std* output streams during print_thread, print_frame_info
and print_stop_event.

This ensures that output during these functions is not interrupted
by debuginfod progress messages.

With the addition of deferred debuginfo downloading it is possible
for download progress messages to print during these events.
Without any intervention we can end up with poorly formatted output:

    (gdb) backtrace
    [...]
    #8  0x00007fbe8af7d7cf in pygi_invoke_c_callable (Downloading separate debug info for /lib64/libpython3.11.so.1.0
    function_cache=0x561221b224d0, state=<optimized out>...

To fix this we buffer writes to gdb_std* output streams while allowing
debuginfod progress messages to skip the buffers and print to the
underlying output streams immediately.  Buffered output is then written
to the output streams.  This ensures that progress messages print first,
followed by uninterrupted frame/thread/stop info:

    (gdb) backtrace
    [...]
    Downloading separate debug info for /lib64/libpython3.11.so.1.0
    #8  0x00007fbe8af7d7cf in pygi_invoke_c_callable (function_cache=0x561221b224d0, state=<optimized out>...

Co-Authored-By: Andrew Burgess <aburgess@redhat.com>
Approved-By: Andrew Burgess <aburgess@redhat.com>
4 months agoAutomatic date update in version.in
GDB Administrator [Fri, 19 Jan 2024 00:00:54 +0000 (00:00 +0000)] 
Automatic date update in version.in

4 months agoRewrite .debug_names writer
Tom Tromey [Mon, 4 Dec 2023 01:20:37 +0000 (18:20 -0700)] 
Rewrite .debug_names writer

This rewrites GDB's .debug_names writer.  It is now closer to the form
imagined in the DWARF spec.  In particular, names are emitted exactly
as they appear in the original DWARF.

In order to make the reader work nicely, some extensions were needed.
These were all documented in an earlier patch.  Note that in
particular this writer solves the "main name" problem by putting a
flag into the table.

GDB does not use the .debug_names hash table, so it also does not
write one.  I consider this hash table to be essentially useless in
general, due to the name canonicalization problem -- while DWARF says
that writers should use the system demangling style, (1) this style
varies across systems, so it can't truly be relied on; and (2) at
least GCC and one other compiler don't actually follow this part of
the spec anyway.

It's important to note, though, that even if the hash was somehow
useful, GDB probably still would not use it -- a sorted list of names
is needed for completion and performs reasonably well for other
lookups, so a hash table is just overhead, IMO.

String emission is also simplified.  There's no need in this writer to
ingest the contents of .debug_str.

A couple of tests are updated to reflect the fact that they now "fail"
because the tests don't include .debug_aranges in the .S file.
Arguably the .debug_names writer should also create this section; but
I did not implement that in this series, and there is a separate bug
about it.

Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=24820
Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=24549

4 months agoExport dwarf5_augmentation
Tom Tromey [Sun, 3 Dec 2023 22:05:35 +0000 (15:05 -0700)] 
Export dwarf5_augmentation

I don't know why gdb had the .debug_names augmentation string in two
separate places; this patch exports it in one spot, to be used in
another.

4 months agoRewrite .debug_names reader
Tom Tromey [Sat, 2 Dec 2023 20:18:13 +0000 (13:18 -0700)] 
Rewrite .debug_names reader

This rewrites the .debug_names reader to follow the spec.

Since it was first written, gdb's .debug_names writer has been
incorrect -- while the form of the section has been ok, the contents
have been very gdb-specific.

This patch fixes the reader side of this equation, rewriting the
reader to create a cooked index internally -- an important detail
because it allows for the deletion of a lot of code, and it means the
various readers will agree more often.

This reader checks for a new augmentation string.  For the time being,
all other producers are ignored -- the old GDB ones because they are
wrong, and clang because it does not emit DW_IDX_parent.  (If there
are any other producers, I'm unaware of them.)

While the new reader mostly runs in a worker thread, it does not try
to distribute its work.  This could be done by partitioning the name
table.  The parent computations could also be done in parallel after
all names have been read.  I haven't attempted this.

Note that this patch temporarily regresses gdb.base/gdb-index-err.exp.
This test writes an index using gdb -- but at this particular stage,
gdb cannot read the indexes it creates.  Rather than merge the patches
into a mega-patch, I've chosen to just accept this temporary
regression.

In v1 of this patch, I made the new reader more strict about requiring
.debug_aranges.  In v2, I've backed this out and kept the previous
logic.  This solved a few test failures, though it's arguably not the
right approach.

Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=25950

4 months agoAllow other results in DW_TAG_entry_point test
Tom Tromey [Wed, 17 Jan 2024 16:15:22 +0000 (09:15 -0700)] 
Allow other results in DW_TAG_entry_point test

DW_TAG_entry_point is implemented by adding a new LOC_BLOCK symbol --
that is, another function symbol.  However, the test case assumes that
"bt" will never pick this symbol.

This assumption seems unwarranted to me, and in fact this test will
regress with the debug-names target board after the .debug_names
rewrite.

This patch changes the test to allow either answer in the backtrace.
If only the main entry point is desired, then it seems that more work
must be done to handle DW_TAG_entry_point properly, as nothing
currently guarantees this property.

4 months agoRemove some .debug_names tests
Tom Tromey [Wed, 6 Dec 2023 23:16:55 +0000 (16:16 -0700)] 
Remove some .debug_names tests

These .debug_names tests were hand-written to mimic clang.  However,
they are difficult to update, and in any case the new reader won't
accept clang-generated indices.  Therefore this patch removes these
tests.

4 months agoExplicitly expand CUs in dw2-inline-with-lexical-scope.exp
Tom Tromey [Thu, 7 Dec 2023 19:18:00 +0000 (12:18 -0700)] 
Explicitly expand CUs in dw2-inline-with-lexical-scope.exp

dw2-inline-with-lexical-scope.exp relies on the main CU being
expanded.  However, it doesn't guarantee that this actually happens,
and with the new .debug_names reader, it won't, because the "main"
program will be found in the index without requiring CU expansion.

This patch fixes the problem by explicitly expanding the CU in
question.

Note that this is an artificial bug -- it occurs because the generated
.debug_aranges isn't correct.

4 months agoFix dw2-zero-range.exp when an index is in use
Tom Tromey [Wed, 6 Dec 2023 21:24:08 +0000 (14:24 -0700)] 
Fix dw2-zero-range.exp when an index is in use

dw2-zero-range.exp looks for a certain complaint, but this won't be
issued when an index is in use.  This patch changes the test to not
fail in this case.

4 months agoEmpty hash table fix in .debug_names reader
Tom Tromey [Mon, 4 Dec 2023 14:58:48 +0000 (07:58 -0700)] 
Empty hash table fix in .debug_names reader

The handling of an empty hash table in the .debug_names reader is
slightly wrong.

Currently the code assumes there is always an array of hashes.
However, section 6.1.1.4.5 Hash Lookup Table says:

    The optional hash lookup table immediately follows the list of
    type signatures.

and then:

    The hash lookup table is actually two separate arrays: an array of
    buckets, followed immediately by an array of hashes.

My reading of this is that the hash table as a whole is optional, and
so the hashes will not exist in this case.  (This also makes sense
because the hashes are not useful without the buckets anyway.)

Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=25950

4 months agoRemove cooked_index_worker::start_reading
Tom Tromey [Sun, 3 Dec 2023 19:40:06 +0000 (12:40 -0700)] 
Remove cooked_index_worker::start_reading

I noticed that cooked_index_worker::start_reading isn't really needed.
This patch removes it, and also removes the SCOPED_EXIT, in favor of a
direct call.

4 months agoChange cooked_index_worker to abstract base class
Tom Tromey [Sun, 3 Dec 2023 19:34:49 +0000 (12:34 -0700)] 
Change cooked_index_worker to abstract base class

This changes cooked_index_worker to be an abstract base class.  The
base class implementation is moved to cooked-index.c, and a concrete
subclass is added to read.c.

This change is preparation for the new .debug_names reader, which will
supply its own concrete implementation of the worker.

4 months agoDo not write the index cache from an index
Tom Tromey [Sun, 3 Dec 2023 19:10:14 +0000 (12:10 -0700)] 
Do not write the index cache from an index

The new .debug_names reader will work by creating a cooked index from
.debug_names.  This patch updates cooked_index::maybe_write_index to
avoid writing the index in this case.

However, in order to do this in a clean way, the readers are changed
so that a nullptr result from index_for_writing means "cannot be
done", and then the error message is moved into write_dwarf_index
(where it historically lived).

4 months agoMove cooked_index_functions to cooked-index.h
Tom Tromey [Wed, 6 Dec 2023 21:35:21 +0000 (14:35 -0700)] 
Move cooked_index_functions to cooked-index.h

This moves the declaration of cooked_index_functions to
cooked-index.h.  This makes it visible for use by the rewritten
.debug_names reader, and it also lets us move the implementation of
make_quick_functions into cooked-index.c, where it really belongs.

4 months agoAdd language to cooked_index_entry
Tom Tromey [Sat, 2 Dec 2023 22:42:42 +0000 (15:42 -0700)] 
Add language to cooked_index_entry

This adds a new 'lang' member to cooked_index_entry.  This holds the
language of the symbol.  This is primarily useful for the new
.debug_names reader, which will not scan the CUs for languages up
front.

This also changes cooked_index_shard::add to return a non-const
pointer.  This doesn't impact the current code, but is needed for the
new reader.

4 months agoDocument GDB extensions to DWARF .debug_names
Tom Tromey [Sun, 3 Dec 2023 20:42:29 +0000 (13:42 -0700)] 
Document GDB extensions to DWARF .debug_names

GDB's new .debug_names implementation uses some extensions.  This
patch adds some documentation on this to the manual.

Reviewed-By: Eli Zaretskii <eliz@gnu.org>
4 months agoRemove IS_ENUM_CLASS from cooked_index_flag
Tom Tromey [Sun, 3 Dec 2023 00:19:55 +0000 (17:19 -0700)] 
Remove IS_ENUM_CLASS from cooked_index_flag

I noticed that cooked_index_flag::IS_ENUM_CLASS is not needed.  This
patch removes it.

4 months agoRefactor quick-function installation in DWARF reader
Tom Tromey [Wed, 6 Dec 2023 21:29:40 +0000 (14:29 -0700)] 
Refactor quick-function installation in DWARF reader

While working on the previous patch, I saw that the handling of
quick-function installation could be unified
dwarf2_initialize_objfile.  In particular, at the end of the function,
if there is an index table, then it can be used to create the quick
function object.

This cleanup will be useful when rewriting the .debug_names reader.

4 months agoRefactor 'maint set dwarf synchronous' handling
Tom Tromey [Wed, 6 Dec 2023 15:32:52 +0000 (08:32 -0700)] 
Refactor 'maint set dwarf synchronous' handling

The new .debug_names reader will reuse the background reading
infrastructure of the cooked index code.  In order to share the
handling of 'maint set dwarf synchronous' -- and to avoid having to
export this global -- this patch refactors this to be handled directly
in dwarf2_initialize_objfile.

4 months agoAdd note to translators not to translate z/Architecture
Nick Clifton [Thu, 18 Jan 2024 11:25:48 +0000 (11:25 +0000)] 
Add note to translators not to translate z/Architecture