]> git.ipfire.org Git - thirdparty/binutils-gdb.git/log
thirdparty/binutils-gdb.git
2 months agoFix seg-fault in the DWARF reader code when accessing an abbreviatuin table with...
Nick Clifton [Tue, 19 Mar 2024 14:16:47 +0000 (14:16 +0000)] 
Fix seg-fault in the DWARF reader code when accessing an abbreviatuin table with a corrupt entry offset.

  PR 31456

2 months agold: Support LD_UNDER_TEST environment variable
H.J. Lu [Sat, 16 Mar 2024 13:23:19 +0000 (06:23 -0700)] 
ld: Support LD_UNDER_TEST environment variable

Support LD_UNDER_TEST environment variable to test a different linker.
Issue an error if LD_UNDER_TEST isn't an absolute full path.

* testsuite/config/default.exp: If LD_UNDER_TEST environment
variable exists, set ld and LD to it and set up tmpdir/ld/ld.
Issue an error if LD_UNDER_TEST isn't an absolute full path.

2 months agoFix free of unallocated memory in the BFD library's compression code.
Nick Clifton [Tue, 19 Mar 2024 12:48:04 +0000 (12:48 +0000)] 
Fix free of unallocated memory in the BFD library's compression code.

  PR 31455

2 months agoFix typo in previous patch to ld.texi
Nick Clifton [Tue, 19 Mar 2024 11:44:34 +0000 (11:44 +0000)] 
Fix typo in previous patch to ld.texi

2 months agogdb/python: Fix segfault when iterating over empty linetable
Toby Lloyd Davies [Tue, 19 Mar 2024 11:08:46 +0000 (11:08 +0000)] 
gdb/python: Fix segfault when iterating over empty linetable

symtab-> linetable () is set to null in
buildsym_compunit::end_compunit_symtab_with_blockvector () if the symtab
has no linetable. Attempting to iterate over this linetable using the
Python API caused GDB to segfault.

Approved-By: Tom Tromey <tom@tromey.com>
2 months agoAdd myself to gdb/MAINTAINERS
Toby Lloyd Davies [Tue, 19 Mar 2024 08:52:34 +0000 (08:52 +0000)] 
Add myself to gdb/MAINTAINERS

2 months ago[gdb] Further fix "value is not available" with debug frame
Tom de Vries [Tue, 19 Mar 2024 09:30:36 +0000 (10:30 +0100)] 
[gdb] Further fix "value is not available" with debug frame

In commit 2aaba744467 ("[gdb] Fix "value is not available" with debug frame")
I fixed a case in frame_unwind_register_value where using "set debug frame on"
caused an "info frame" command to abort, reporting a "value is not available"
error, due to the tpidruro register being unavailable.

Subsequently, commit bbb12eb9c84 ("gdb/arm: Remove tpidruro register from
non-FreeBSD target descriptions") removed the unavailable register, which
caused a progression on test-case gdb.base/inline-frame-cycle-unwind.exp.

While investigating the progression (see PR python/31437), I found that the
"debug frame" output of the test-case (when reverting commit bbb12eb9c84)
showed a smilar problem:
...
Python Exception <class 'gdb.error'>: value is not available^M
...
that was absent without "debug frame".

Fix this likewise in fetch_lazy_register, and update the test-case to check
for the exception.

Furthermore, I realized that there's both value::entirely_available and
value::entirely_unavailable, and that commit 2aaba744467 handled the case
of !entirely_available by printing unavailable.

Instead, print:
- "unavailable" for entirely_unavailable, and
- "partly unavailable" for !entirely_unavailable && !entirely_available.

Tested on x86_64-linux and arm-linux.

2 months agoLoongArch: Add relaxation for R_LARCH_CALL36
mengqinggang [Wed, 28 Feb 2024 09:42:36 +0000 (17:42 +0800)] 
LoongArch: Add relaxation for R_LARCH_CALL36

This relaxation is effective for both macro instructions (call36, tail36)
and explicit relocation instructions (pcaddu18i + jirl).

call36 f   -> bl f
  R_LARCH_CALL36  ->   R_LARCH_B26

tail36 $t0, f   -> b f
  R_LARCH_CALL36  ->   R_LARCH_B26

2 months agoAutomatic date update in version.in
GDB Administrator [Tue, 19 Mar 2024 00:00:22 +0000 (00:00 +0000)] 
Automatic date update in version.in

2 months agoRegenerate AArch64 opcodes files
Nick Clifton [Mon, 18 Mar 2024 18:38:23 +0000 (18:38 +0000)] 
Regenerate AArch64 opcodes files

2 months agoaarch64: Add support for SVE ADDPT, SUBPT, MADPT, MLAPT instructions
Yury Khrustalev [Mon, 26 Feb 2024 13:43:48 +0000 (13:43 +0000)] 
aarch64: Add support for SVE ADDPT, SUBPT, MADPT, MLAPT instructions

The following instructions are added in this patch:

- ADDPT (predicated): Add checked pointer vectors (predicated).
- ADDPT (unpredicated): Add checked pointer vectors (unpredicated).
- SUBPT (predicated): Subtract checked pointer vectors (predicated).
- SUBPT (unpredicated): Subtract checked pointer vectors (unpredicated).
- MADPT: Multiply-add checked pointer vectors, writing multiplicand
- MLAPT: Multiply-add checked pointer vectors, writing addend

These instructions are part of Checked Pointer Arithmetic extension
and are enabled when both CPA and SVE are enabled. To achieve this,
both flag "+sve" and "+cpa" should be active.

This patch adds assembler and disassembler support for these instructions
with relevant checks. Tests are included as well.

Regression tested on the aarch64-none-linux-gnu target and no regressions
have been found.

2 months agoaarch64: Add support for (M)ADDPT and (M)SUBPT instructions
Yury Khrustalev [Wed, 21 Feb 2024 12:52:23 +0000 (12:52 +0000)] 
aarch64: Add support for (M)ADDPT and (M)SUBPT instructions

The following instructions are added in this patch:

 - ADDPT and SUBPT - Add/Subtract checked pointer
 - MADDPT and MSUBPT - Multiply Add/Subtract checked pointer

These instructions are part of Checked Pointer Arithmetic extension.
This patch adds assembler and disassembler support for these instructions
with relevant checks. Tests are included as well.

A new flag "+cpa" added to documentation. This flag enables CPA extension.

Regression tested on the aarch64-none-linux-gnu target and no regressions
have been found.

2 months ago[PATCH] ld: Improve documentation of -rpath-link search paths
Nick Clifton [Mon, 18 Mar 2024 16:51:49 +0000 (16:51 +0000)] 
[PATCH] ld: Improve documentation of -rpath-link search paths

2 months agoRemove some unnecessary Ada expression code
Tom Tromey [Thu, 29 Feb 2024 19:07:28 +0000 (12:07 -0700)] 
Remove some unnecessary Ada expression code

ada_bitwise_operation differs from the "usual" bitwise operations only
in that it calls value_cast at the end.  However, because gdb is
generally fairly lax about integer types, and because (perhaps oddly)
C-style binary promotion is done here anyway, it seems to me that this
code isn't needed.

2 months agoFix Ada 'ptype' of access to array
Tom Tromey [Thu, 29 Feb 2024 16:46:11 +0000 (09:46 -0700)] 
Fix Ada 'ptype' of access to array

ptype is a bit funny, in that it accepts both expressions and type
names.  It also evaluates the resulting expression using
EVAL_AVOID_SIDE_EFFECTS -- which both seems sensible (as a user would
you expect ptype to possibly cause inferior execution?), but is also a
historical artifact of how expressions are implemented (there's no
EVAL_FOR_TYPE).

In Ada, calling a function with an array will sometimes result in a
"thick pointer" array descriptor being made.  This is essentially a
structure holding a pointer and bounds information.

Currently, in such a callee, printing the type of the array will yield
funny results:

    (gdb) print str.all
    $1 = "Hello World"
    (gdb) ptype str
    type = array (<>) of character
    (gdb) ptype str.all
    type = array (1 .. 0) of character

That "1 .. 0" is the result of an EVAL_AVOID_SIDE_EFFECTS branch
trying to do "something" with an array descriptor, without doing too
much.

I tried briefly to make this code really dereference the array
descriptor and get the correct runtime type.  However, that proved to
be tricky; it certainly can't be done for all access types, because
that will cause dynamic type resolution and end up printing just the
runtime type -- which with variants may be pretty far from what the
user may expect.

Instead, this patch arranges to just leave such types alone in this
situation.  I don't think this should have an extra effects, because
things like array subscripting still work on thick pointers.

This patch also touches arrayptr.exp, because in that case the access
type is a "thin pointer", and this ensures that the output does not
change in that scenario.

2 months agoUse string_view in quirk_rust_enum
Tom Tromey [Wed, 14 Feb 2024 15:00:03 +0000 (08:00 -0700)] 
Use string_view in quirk_rust_enum

quirk_rust_enum makes string copies to store in an unordered_map.
However, the original strings have an appropriate lifetime, and so no
copying is needed.  With C++17, we can rely on string_view having a
std::hash specialization, so this patch changes this code to use
string_view rather than string.

2 months agoSet __file__ when source'ing a Python script
Tom Tromey [Fri, 8 Mar 2024 18:15:01 +0000 (11:15 -0700)] 
Set __file__ when source'ing a Python script

This patch arranges to set __file__ when source'ing a Python script.
This fixes a problem that was introduced by the "source" rewrite, and
then pointed out by Lancelot Six.

Reviewed-by: Lancelot Six <lancelot.six@amd.com>
Approved-By: Andrew Burgess <aburgess@redhat.com>
2 months agoClear board_info entry after waiting for process
Tom Tromey [Thu, 14 Mar 2024 17:35:25 +0000 (11:35 -0600)] 
Clear board_info entry after waiting for process

When certain DAP tests are run in a certain order, dejagnu will throw
an exception during shutdown.  After adding many logging statements, I
tracked this down to kill_wait_spawned_process not clearing the
'fileid' board_info entry, causing dejagnu to try to wait for the
process a second time -- and fail.

Tom de Vries then pointed out a second instance of this, which I
tracked down to the same problem occurring when spawning gdbserver.

This version of the patch fixes this by adding a new proc that can be
used to clean up board_info after waiting for a process to exit.  I'm
not sure why this problem hasn't affected the test suite in the past.

Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=31435
Approved-By: Andrew Burgess <aburgess@redhat.com>
2 months agobfd: add missing include <time.h>
Clément Chigot [Wed, 13 Mar 2024 10:05:01 +0000 (11:05 +0100)] 
bfd: add missing include <time.h>

bdfio.c is defining bfd_get_current_time which is returning a time_t.
This type is defined in time.h and thus, must be included in bfd main
header to avoid undefined type when include bfd.h.

Note that most of the time, <time.h> is pulled by <sys/stat.h> already
included in bfd.h. That's why it went unnoticed.

2 months agoFix compiling bfd/vms-lib.c for a 32-bit host.
Nick Clifton [Mon, 18 Mar 2024 10:26:16 +0000 (10:26 +0000)] 
Fix compiling bfd/vms-lib.c for a 32-bit host.

2 months agogdb/testsuite: attach to i386 process stopped in vDSO
Andrew Burgess [Fri, 15 Mar 2024 12:07:12 +0000 (12:07 +0000)] 
gdb/testsuite: attach to i386 process stopped in vDSO

Fedora GDB has carried around a patch for a while which tested
attaching to an i386 process which is stopped within the vDSO library
region.  Apparently, at some point in the distant past there was an
issue finding symbol information for this region in this situation.

I'm struggling to track down the precise details of what the original
bug was, however, acquiring symbol information for the vDSO region is
different than for "normal" shared libraries -- the vDSO information
is synthesised within GDB during the attach / inferior creation
process -- so it's not unreasonable to imagine that there could be a
bug specifically in this area of GDB which wouldn't impact "normal"
shared libraries.

I looked for references to vDSO in our testsuite and couldn't find
any tests that looked like they did the same sort of thing, so I'd
like to propose adding this test to our testsuite.

It's a pretty simple test, and doesn't take long to run, so the cost
of adding this is not huge.

Approved-By: Tom Tromey <tom@tromey.com>
2 months agoArm64: check matching operands for predicated B16B16 insns
Jan Beulich [Mon, 18 Mar 2024 08:17:36 +0000 (09:17 +0100)] 
Arm64: check matching operands for predicated B16B16 insns

Except for bfml{a,s} their 1st and 3rd operands need to match - pass
the TIED macro argument accordingly. While doing that also slightly
re-arrange table entries, such that all predicated insns are close
together.

At the same time change the existing test source to actually use non-
matching operands for the respective bfml{a,s} forms.

2 months agoArm64: correct B16B16 indexed bf{mla,mls,mul}
Jan Beulich [Mon, 18 Mar 2024 08:17:15 +0000 (09:17 +0100)] 
Arm64: correct B16B16 indexed bf{mla,mls,mul}

Their index is in bits 19, 20, and 22. Bit 11 in particular is already
set in the base opcode. Note also how disassembler output didn't match
assembler input in the respective testcase.

2 months agoRISC-V: Tidy smstateen and ssstateen testcases.
Nelson Chu [Mon, 18 Mar 2024 05:32:01 +0000 (13:32 +0800)] 
RISC-V: Tidy smstateen and ssstateen testcases.

gas/
* testsuite/gas/riscv/march-imply-smstateen.d: Added.
* testsuite/gas/riscv/smstateen-csr-s.d: Removed.
* testsuite/gas/riscv/ssstateen-csr.d: Likewise.
* testsuite/gas/riscv/ssstateen-csr.s: Likewise.

2 months agoAutomatic date update in version.in
GDB Administrator [Mon, 18 Mar 2024 00:00:39 +0000 (00:00 +0000)] 
Automatic date update in version.in

2 months ago[gdb/testsuite] Fix gdb.base/list-no-debug.exp on debian
Tom de Vries [Sun, 17 Mar 2024 15:48:43 +0000 (16:48 +0100)] 
[gdb/testsuite] Fix gdb.base/list-no-debug.exp on debian

On debian 12, aarch64-linux I run into:
...
(gdb) list .^M
No symbol table is loaded.  Use the "file" command.^M
(gdb) FAIL: gdb.base/list-nodebug.exp: first 'list .'
...

The test-case expects some debug info, but none for main.  Instead, there's no
debug info at all.

Fix this by adding another source file to the test-case, and compiling it with
debug info.

Tested on aarch64-linux.

Approved-By: Andrew Burgess <aburgess@redhat.com>
PR testsuite/31290
Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=31290

2 months agoAutomatic date update in version.in
GDB Administrator [Sun, 17 Mar 2024 00:00:27 +0000 (00:00 +0000)] 
Automatic date update in version.in

2 months agoAutomatic date update in version.in
GDB Administrator [Sat, 16 Mar 2024 00:00:24 +0000 (00:00 +0000)] 
Automatic date update in version.in

2 months agoUse size_t in gdb_bfd_section_data
Tom Tromey [Fri, 15 Mar 2024 16:22:42 +0000 (10:22 -0600)] 
Use size_t in gdb_bfd_section_data

BFD recently changed bfd_mmap to use size_t, not bfd_size_type.  This
patch updates gdb_bfd_section_data to follow.  Without this patch, if
the two types ever differ, gdb would fail to build.

Approved-By: Simon Marchi <simon.marchi@efficios.com>
2 months agogas/NEWS: Remove mention of AArch64 B16B16 extension
Andrew Carlotti [Fri, 15 Mar 2024 15:29:22 +0000 (15:29 +0000)] 
gas/NEWS: Remove mention of AArch64 B16B16 extension

This aligns the 2.42 NEWS with the update backported to the 2.42 release
branch.

2 months agox86/APX: legacy promoted insns can't access %xmm16-%xmm31
Jan Beulich [Fri, 15 Mar 2024 09:29:35 +0000 (10:29 +0100)] 
x86/APX: legacy promoted insns can't access %xmm16-%xmm31

Irrespective of the encoding being EVEX, the usable SIMD register range
continues to be limited to %xmm0-%xmm15. Enforce this in gas (but
continue to generate code, as in principle we know how to encode
things) and recognize/flag the case in the disassembler.

Oddly enough wrong forms were actually used in the testsuite (register-
only forms are then really meaningless to test here, and are hence
dropped instead of adjusted).

Convert the POP2 test that needs touching anyway (due to a bad ModR/M
byte having been chosen) to .insn.

2 months agoAutomatic date update in version.in
GDB Administrator [Fri, 15 Mar 2024 00:00:35 +0000 (00:00 +0000)] 
Automatic date update in version.in

2 months ago[gdb/build] Fix build on postmarketos
Tom de Vries [Thu, 14 Mar 2024 20:28:44 +0000 (21:28 +0100)] 
[gdb/build] Fix build on postmarketos

I tried building gdbserver on postmarketos (which is based on alpine linux,
which uses musl libc), and ran into:
...
gdbserver/linux-low.cc: In lambda function:
gdbserver/linux-low.cc:1907:41: error: \
  'W_EXITCODE' was not declared in this scope
 1907 |               mark_lwp_dead (leader_lp, W_EXITCODE (0, 0), true);
      |                                         ^~~~~~~~~~
...

The macro W_EXITCODE is not defined in gdbsupport/gdb_wait.h.

OTOH, WSETEXIT is defined there, but unused:
...
 /* These are not defined in POSIX, but are used by our programs.  */

 #ifndef WSETEXIT
 # ifdef W_EXITCODE
 #define WSETEXIT(w,status) ((w) = W_EXITCODE(status,0))
 # else
 #define WSETEXIT(w,status) ((w) = (0 | ((status) << 8)))
 # endif
 #endif
...

Fix this by dropping the WSETEXIT definition, and instead defining W_EXITCODE.

Tested on x86_64-linux, in combination with an "#undef W_EXITCODE" to make
sure the definition is exercised.

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

2 months agogdbserver/linux: probe for libiconv in configure
Simon Marchi [Thu, 14 Mar 2024 17:39:18 +0000 (13:39 -0400)] 
gdbserver/linux: probe for libiconv in configure

Make gdbserver's build system locate libiconv when building for Linux.

Commit 07b3255c3bae ("Filter invalid encodings from Linux thread names")
make libiconv madantory for building gdbserver on Linux.

While trying to cross-compile gdb for xtensa-fsf-linux-uclibc (with a
toolchain generated with crosstool-ng), I got:

    /home/smarchi/src/binutils-gdb/gdbserver/linux-low.cc:48:10: fatal error: iconv.h: No such file or directory
       48 | #include <iconv.h>
          |          ^~~~~~~~~

I downloaded GNU libiconv, built it for that host, and installed it in
an arbitrary directory.  I had to modify the gdbserver build system to
locate libiconv and use it, the result is this patch.

I eventually found that crosstool-ng has a config option to make uclibc
provide an implementation of iconv, which is of course much easier.  But
given that this patch is now written, I think it would be worth merging
it, it could help some people who do not have iconv built-in their libc
in the future (and may not have the luxury of rebuilding their libc like
I do).

Using AM_ICONV in configure.ac adds these options for configure (the
same we have for gdb):

    --with-libiconv-prefix[=DIR]  search for libiconv in DIR/include and DIR/lib
    --without-libiconv-prefix     don't search for libiconv in includedir and libdir
    --with-libiconv-type=TYPE     type of library to search for (auto/static/shared)

It sets the `LIBICONV` variable with whatever is needed to link with
libiconv, and adds the necessary `-I` flag to `CPPFLAGS`.

To avoid unnecessarily linking against libiconv on hosts that don't need
it, set `MAYBE_LIBICONV` with the contents of `LIBICONV` only if the
host is Linux, and use `MAYBE_LIBICONV` in `Makefile.in`.

Since libiconv is a hard requirement for Linux hosts, error out if it is
not found.

The bits in acinclude.m4 are similar to what we have in
gdb/acinclude.m4.

Update the top-level build system to support building against an in-tree
libiconv (I did not test this part though).  Something tells me that the
all-gdbserver dependency on all-libiconv is unnecessary, since there is
already a dependency of configure-gdbserver on all-libiconv (and
all-gdbserver surely depends on configure-gdbserver).  I just copied
what's done for GDB though.

ChangeLog:

* Makefile.def: Add configure-gdbserver and all-gdbserver
dependencies on all-libiconv.
* Makefile.in: Re-generate.

Change-Id: I90f8ef88dd4917df5a68b45550d93622fc9cfed4
Approved-By: Tom Tromey <tom@tromey.com>
2 months agoPass alignment when using GCC_C_FE_VERSION_2
Tom Tromey [Wed, 21 Feb 2024 15:22:01 +0000 (08:22 -0700)] 
Pass alignment when using GCC_C_FE_VERSION_2

When the GCC compiler plugin responds with GCC_C_FE_VERSION_2, gdb can
use the new 'finish_record_with_alignment' method.  This lets gdb pass
alignment information to the compiler, which in turn fixes the test
case included in this patch.

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

2 months agoRemove 'if' from GDB_PY_HANDLE_EXCEPTION
Tom Tromey [Fri, 22 Dec 2023 18:43:26 +0000 (11:43 -0700)] 
Remove 'if' from GDB_PY_HANDLE_EXCEPTION

This removes the embedded 'if' from GDB_PY_HANDLE_EXCEPTION and
GDB_PY_SET_HANDLE_EXCEPTION.  I believe this 'if' was necessary with
the old gdb try/catch macros, but it no longer is: these should only
ever be called from a 'catch' block, where it's already known that an
exception was thrown.

Simon pointed out, though, that in a few spots, these were in facts
called outside of 'catch' blocks.  This patch cleans up these spots.
I also found one spot where a redundant 'return nullptr' could be
removed.

2 months ago[gdb/tdep] Fix gdb.base/watchpoint-unaligned.exp on aarch64
Tom de Vries [Thu, 14 Mar 2024 10:25:10 +0000 (11:25 +0100)] 
[gdb/tdep] Fix gdb.base/watchpoint-unaligned.exp on aarch64

On aarch64-linux, with test-case gdb.base/watchpoint-unaligned.exp I run into:
...
(gdb) watch data.u.size8twice[1]^M
Hardware watchpoint 241: data.u.size8twice[1]^M
(gdb) PASS: gdb.base/watchpoint-unaligned.exp: watch data.u.size8twice[1]
continue^M
Continuing.^M
FAIL: gdb.base/watchpoint-unaligned.exp: continue (timeout)
FAIL: gdb.base/watchpoint-unaligned.exp: size8twice write
...

This happens as follows.

We start the exec and set an 8-byte hardware watchpoint on
data.u.size8twice[1] at address 0x440048:
...
(gdb) p sizeof (data.u.size8twice[1])
$1 = 8
(gdb) p &data.u.size8twice[1]
$2 = (uint64_t *) 0x440048 <data+16>
...

We continue execution, and a 16-byte write at address 0x440040 triggers the
hardware watchpoint:
...
  4101c8:       a9000801        stp     x1, x2, [x0]
...

When checking whether a watchpoint has triggered in
aarch64_stopped_data_address, we check against address 0x440040 (passed in
parameter addr_trap).  This behaviour is documented:
...
  /* ADDR_TRAP reports the first address of the memory range
     accessed by the CPU, regardless of what was the memory
     range watched.  ...  */
...
and consequently the matching logic compares against an addr_watch_aligned:
...
  && addr_trap >= addr_watch_aligned
  && addr_trap < addr_watch + len)
...

However, the comparison fails:
...
(gdb) p /x addr_watch_aligned
$3 = 0x440048
(gdb) p addr_trap >= addr_watch_aligned
$4 = false
...

Consequently, aarch64_stopped_data_address returns false, and
stopped_by_watchpoint returns false, and watchpoints_triggered returns 0,
which make infrun think it's looking at a delayed hardware
breakpoint/watchpoint trap:
...
  [infrun] handle_signal_stop: stop_pc=0x4101c8
  [infrun] handle_signal_stop: delayed hardware breakpoint/watchpoint trap, ignoring
...
Infrun then ignores the trap and continues, but runs into the same situation
again and again, causing a hang which then causes the test timeout.

Fix this by allowing a match 8 bytes below addr_watch_aligned.  This
introduces the possibility for false positives, so we only do this for regular
"value changed" watchpoints.

An earlier version of this patch worked by aligning addr_watch_aligned to 16
instead of 8:
...
-  const CORE_ADDR addr_watch_aligned = align_down (state->dr_addr_wp[i], 8);
+  const CORE_ADDR addr_watch_aligned = align_down (state->dr_addr_wp[i], 16);
...
but while that fixed the test-case, it didn't fix the problem completely, so
extend the test-case to check more scenarios.

Tested on aarch64-linux.

Tested-By: Luis Machado <luis.machado@arm.com>
Approved-By: Luis Machado <luis.machado@arm.com>
PR tdep/29423
Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=29423

2 months agoAutomatic date update in version.in
GDB Administrator [Thu, 14 Mar 2024 00:01:12 +0000 (00:01 +0000)] 
Automatic date update in version.in

2 months agoRemove extraneous word from manual
Tom Tromey [Wed, 13 Mar 2024 19:01:44 +0000 (13:01 -0600)] 
Remove extraneous word from manual

I noticed that the manual has an extra "either", which makes a
sentence ungrammatical.  This patch removes it.

2 months agoopcodes: Fix build verbosity
Christophe Lyon [Mon, 11 Mar 2024 22:05:19 +0000 (22:05 +0000)] 
opcodes: Fix build verbosity

Add $(AM_V_xxx) in a few places where they were missing.

2 months agobfd: Use size_t in the BFD mmap interface
H.J. Lu [Wed, 13 Mar 2024 13:45:16 +0000 (06:45 -0700)] 
bfd: Use size_t in the BFD mmap interface

Change the size type in the BFD mmap interface from bfd_size_type to
size_t to be consistent with the size type of the host mmap interface.

* bfdio.c (bfd_iovec): Change the bmmap size type to size_t.
(bfd_mmap): Likewise.
(memory_bmmap): Likewise.
* cache.c (cache_bmmap): Change the bmmap size type to size_t.
* opncls.c (opncls_bmmap): Change the bmmap size type to size_t.
* bfd-in2.h: Regenerated.
* libbfd.h: Likewise.

2 months agobfd: Use MAP_FAILED for mmap failure
H.J. Lu [Wed, 13 Mar 2024 13:31:28 +0000 (06:31 -0700)] 
bfd: Use MAP_FAILED for mmap failure

Use MAP_FAILED, instead of ((void *) -1), for mmap failure and use
((void *) -1) only if MAP_FAILED is undefined.

* bfdio.c (bfd_mmap): Replace (void *) -1 with MAP_FAILED for
mmap failure.
* bfdwin.c: Don't include <sys/mman.h>.
(MAP_FILE): Removed.
(bfd_get_file_window): Replace (void *) -1 with MAP_FAILED for
mmap failure.
* cache.c: Don't include <sys/mman.h>.
(cache_bmmap): Replace (void *) -1 with MAP_FAILED for mmap
failure.
* opncls.c (opncls_bmmap): Likewise.
* sysdep.h: Include <sys/mman.h> if HAVE_MMAP is define.
(MAP_FILE): New.  Defined as 0 if undefined.
(MAP_FAILED): New.  Defined as ((void *) -1) if undefined.

2 months agobfd: Don't call bfd_write with 0 size
H.J. Lu [Tue, 12 Mar 2024 21:02:55 +0000 (14:02 -0700)] 
bfd: Don't call bfd_write with 0 size

There is no need to call bfd_write with 0 size.

* elf-strtab.c (_bfd_elf_strtab_emit): Don't call bfd_write with
0 size.

2 months agoRISC-V: Add -march=help for gas
Hau Hsu [Fri, 23 Feb 2024 06:17:28 +0000 (14:17 +0800)] 
RISC-V: Add -march=help for gas

Use -march=help for gas to print all supported extensions and versions.

Here is part of the output of `as -march=help`:
All available -march extensions for RISC-V:
        e                                       1.9
        i                                       2.1, 2.0
        m                                       2.0
        a                                       2.1, 2.0
        f                                       2.2, 2.0
        d                                       2.2, 2.0
        q                                       2.2, 2.0
        c                                       2.0
        v                                       1.0
        h                                       1.0
        zicbom                                  1.0
        zicbop                                  1.0
        ...

This patch assumes that the supported extensions with the same versions
are listed together. For example:
static struct riscv_supported_ext riscv_supported_std_ext[] =
{
  ...
  {"i",         ISA_SPEC_CLASS_20191213,        2, 1, 0 },
  {"i",         ISA_SPEC_CLASS_20190608,        2, 1, 0 },
  {"i",         ISA_SPEC_CLASS_2P2,             2, 0, 0 },
  ...
};

For the "i" extension, 2.1.0 with different spec class are listed together.
This patch records the previous printed extension and version.  If the
current extension and version are the same as the previous one, skip
printing.

bfd/
* elfxx-riscv.c (riscv_print_extensions): New function.  Print
available extensions and versions.
* elfxx-riscv.h (riscv_print_extensions): New declaration.
gas/
* gas/config/tc-riscv.c (md_parse_option): Parse 'help' keyword in
-march option to print available extensions and versions.
* testsuite/gas/riscv/march-help.l: New testcase for -march=help.
* testsuite/gas/riscv/riscv.exp: Updated.

2 months agoAutomatic date update in version.in
GDB Administrator [Wed, 13 Mar 2024 00:00:36 +0000 (00:00 +0000)] 
Automatic date update in version.in

2 months ago[gdb/tdep] Fix gdb.base/watch-bitfields.exp on aarch64
Tom de Vries [Tue, 12 Mar 2024 16:08:18 +0000 (17:08 +0100)] 
[gdb/tdep] Fix gdb.base/watch-bitfields.exp on aarch64

On aarch64-linux, with test-case gdb.base/watch-bitfields.exp I run into:
...
(gdb) continue^M
Continuing.^M
^M
Hardware watchpoint 2: -location q.a^M
^M
Old value = 1^M
New value = 0^M
main () at watch-bitfields.c:42^M
42        q.h--;^M
(gdb) FAIL: $exp: -location watch against bitfields: q.e: 0->5: continue
...

In a minimal form, if we step past line 37 which sets q.e, and we have a
watchpoint set on q.e, it triggers:
...
$ gdb -q -batch watch-bitfields -ex "b 37" -ex run -ex "watch q.e" -ex step
Breakpoint 1 at 0x410204: file watch-bitfields.c, line 37.

Breakpoint 1, main () at watch-bitfields.c:37
37        q.e = 5;
Hardware watchpoint 2: q.e

Hardware watchpoint 2: q.e

Old value = 0
New value = 5
main () at /home/vries/gdb/src/gdb/testsuite/gdb.base/watch-bitfields.c:38
38        q.f = 6;
...

However, if we set in addition a watchpoint on q.a, the watchpoint on q.e
doesn't trigger.

How does this happen?

Bitfield q.a is just bit 0 of byte 0, and bitfield q.e is bit 4..7 of byte 1
and bit 1 of byte 2.  So, watch q.a should watch byte 0, and watch q.e should
watch bytes 1 and 2.

Using "maint set show-debug-regs on" (and some more detailed debug prints) we
get:
...
WP2: addr=0x440028 (orig=0x440029), ctrl=0x000000d5, ref.count=1
  ctrl: enabled=1, offset=1, len=2
WP3: addr=0x440028 (orig=0x440028), ctrl=0x00000035, ref.count=1
  ctrl: enabled=1, offset=0, len=1
...
which matches that.

When executing line 37, a hardware watchpoint trap triggers and we hit
aarch64_stopped_data_address with addr_trap == 0x440028:
...
(gdb) p /x addr_trap
$1 = 0x440028
....
and since the loop in aarch64_stopped_data_address walks backward, we check
WP3 first, which matches, and consequently target_stopped_by_watchpoint
returns true in watchpoints_triggered.

Likewise for target_stopped_data_address, which also returns addr == 0x440028.
Watchpoints_triggered matches watchpoint q.a to that address, and sets
watch_triggered_yes.

However, subsequently the value of q.a is checked, and it's the same value as
before (becase the insn in line 37 didn't change q.a), so the watchpoint
hardware trap is not reported to the user.

The problem originates from that fact that aarch64_stopped_data_address picked
WP3 instead of WP2.

There's something we can do about this.  In the example above, both
target_stopped_by_watchpoint and target_stopped_data_address returned true.
Instead we can return true in target_stopped_by_watchpoint but false in
target_stopped_data_address.  This lets watchpoints_triggered known that a
watchpoint was triggered, but we don't know where, and both watchpoints
get set to watch_triggered_unknown.

Subsequently, the values of both q.a and q.e are checked, and since q.e is not
the same value as before, the watchpoint hardware trap is reported to the user.

Note that this works well for regular (write) watchpoints (watch command), but
not for read watchpoints (rwatch command), because for those no value is
checked.  Likewise for access watchpoints (awatch command).

So, fix this by:
- passing a nullptr in aarch64_fbsd_nat_target::stopped_by_watchpoint and
  aarch64_linux_nat_target::stopped_by_watchpoint to make clear we're not
  interested in the stop address,
- introducing a two-phase approach in aarch64_stopped_data_address, where:
  - phase one handles access and read watchpoints, as before, and
  - phase two handles write watchpoints, where multiple matches cause:
    - return true if addr_p == null, and
    - return false if addr_p != null.

Tested on aarch64-linux.

Approved-By: Luis Machado <luis.machado@arm.com>
PR tdep/31214
Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=31214

2 months agocontrib: sync dg-extract-results.sh with GCC
Sam James [Mon, 11 Mar 2024 20:57:46 +0000 (20:57 +0000)] 
contrib: sync dg-extract-results.sh with GCC

This syncs dg-extract-results.sh with GCC.

It contains two commits: r14-4333-g346f5991569fae and r14-9393-g64273a7e6bd8ba.

contrib/ChangeLog:
* dg-extract-results.sh: Sync with GCC.

Approved-By: Tom Tromey <tom@tromey.com>
2 months agocontrib: sync dg-extract-results.py with GCC
Sam James [Mon, 11 Mar 2024 20:57:45 +0000 (20:57 +0000)] 
contrib: sync dg-extract-results.py with GCC

This syncs dg-extract-results.py with GCC.

It contains only one commit: r14-7145-g8f67953d0198fe.

contrib/ChangeLog:
        * dg-extract-results.py: Sync with GCC.

Approved-By: Tom Tromey <tom@tromey.com>
2 months agogdb: Deprecate MPX commands.
Schimpe, Christina [Tue, 5 Mar 2024 15:14:53 +0000 (15:14 +0000)] 
gdb: Deprecate MPX commands.

This patch deprecates the MPX commands "show/set mpx bound".
Intel listed Intel(R) Memory Protection Extensions (MPX) as removed
in 2019.  Following gcc v9.1, the linux kernel v5.6 and glibc v2.35,
deprecate MPX in GDB.

2 months agoLoongArch: Scan all illegal operand instructions without interruption
Lulu Cai [Sat, 2 Mar 2024 02:47:42 +0000 (10:47 +0800)] 
LoongArch: Scan all illegal operand instructions without interruption

Currently, gas will exit immediately and report an error when
it sees illegal operands, and will not process the remaining
instructions. Replace as_fatal with as_bad to check for all
illegal operands.

Add test cases for illegal operands of some instructions.

2 months agoLoongArch: Fix gas and ld test cases
Lulu Cai [Thu, 7 Mar 2024 03:09:14 +0000 (11:09 +0800)] 
LoongArch: Fix gas and ld test cases

* After adding the old LE relax, all old LE relocations will have
  an R_LARCH_RELAX relocation. Fix the gas test case failure caused
  by the implementation of the old LE relax.

* loongarch64-elf does not support pie and -z norelro options,
  removed in test files.

2 months agognulib: re-generate build files
Simon Marchi [Tue, 12 Mar 2024 02:41:19 +0000 (22:41 -0400)] 
gnulib: re-generate build files

I see some changes in the generated files when running update-gnulib.sh.
The changes appeared with commit 35b38b0182d0 ("Finalized intl-update
patches (trois)").  This is most likely due to how the autotools were
ran in that commit, possibly with some different -I arguments.

Change-Id: Idaad8084b0e91e22d066f573775e21d0c7a039cb

2 months agoAutomatic date update in version.in
GDB Administrator [Tue, 12 Mar 2024 00:00:46 +0000 (00:00 +0000)] 
Automatic date update in version.in

2 months agoSync libbacktrace from gcc [PR31327]
Sam James [Mon, 11 Mar 2024 17:21:07 +0000 (17:21 +0000)] 
Sync libbacktrace from gcc [PR31327]

Note that this includes Nick's fix from edf64cd235f5ecb3725e7cf1ff83bbdb6dd53340 which
landed upstream a bit differently as r13-1566-g9ed57796235abc in GCC.

This pulls in libbacktrace as of r14-9404-gc775a030af9cad in GCC trunk.

Note that I have dropped a top-level Darwin change from r14-4825-g6a6d3817afa02b
which would've required an autoreconf, as it should be handled separately.

Approved-By: Tom Tromey <tom@tromey.com>
2 months agoRemove tui-out.[ch]
Tom Tromey [Wed, 13 Dec 2023 02:22:07 +0000 (19:22 -0700)] 
Remove tui-out.[ch]

The other day on irc, we were discussing the "m_line" hack in
tui-out.c, and I mentioned that it would be nice to replace this with
a new ui_out_flag.

Later, I looked at ui_out_flag and found:

      ui_source_list = (1 << 0),

... and sure enough, this is tested already.

This patch removes tui-out.[ch] and changes the TUI to use an ordinary
cli-out object without this flag set.

As far as I can tell, this doesn't affect behavior at all -- the TUI
tests all pass, and interactively I tried switching stack frames,
"list", etc, and it all seems to work.

New in v2: fixed the problem pointed out by Keith, and added a test
case for that scenario.

Reviewed-By: Andrew Burgess <aburgess@redhat.com>
2 months agogdb/Makefile.in: remove ACLOCAL_AMFLAGS
Simon Marchi [Mon, 11 Mar 2024 19:32:40 +0000 (15:32 -0400)] 
gdb/Makefile.in: remove ACLOCAL_AMFLAGS

aclocal picks up the relevant include paths from AC_CONFIG_MACRO_DIRS in
configure.ac, so there's no need to pass `-I ../config` here.

Passing `-I ../config` is actually annoying, because it makes the output
different between when the update is triggered by the maintainer mode
and when aclocal or autoreconf is ran with no special flags.  The
difference in the output is due to the order of include paths being
different.

Change-Id: I2c963876516570842f20b4a6a470867e7a941006
Approved-By: Tom Tromey <tom@tromey.com>
2 months agoSpecial case NULL pointers in dynamic type resolution
Tom Tromey [Tue, 13 Feb 2024 18:47:38 +0000 (11:47 -0700)] 
Special case NULL pointers in dynamic type resolution

commit f18fc7e5 ("gdb, types: Resolve pointer types dynamically")
caused a regression on a test case in the AdaCore internal test suite.

The issue here is that gdb would try to resolve the type of a dynamic
pointer that happened to be NULL.  In this case, the "Location address
is not set." error would end up being thrown from the DWARF expression
evaluator.

I think it makes more sense to special-case NULL pointers and not try
to resolve their target type, as that type can't really be accessed
anyway.

This patch implements this idea, and also adds the missing Ada test
case.

2 months agogdb/testsuite: reformat file with a more recent version of black
Andrew Burgess [Mon, 11 Mar 2024 17:53:41 +0000 (17:53 +0000)] 
gdb/testsuite: reformat file with a more recent version of black

A Python file in my previous commit (5eb2254a1d1) was formatted with
an older version of black, which gives slightly different results.

Reformat with a newer version of black.  This should make our
post-commit testing happy again.

No functional changes in this commit.

2 months agolibctf: fix uninitialized variables in testsuite
Nick Alcock [Tue, 30 Jan 2024 14:18:54 +0000 (14:18 +0000)] 
libctf: fix uninitialized variables in testsuite

Just because a path is an error path doesn't mean the program terminates
there if you don't ask it to.  And we don't want to -- but that means
we need to initialize the variables that are missed if an error happens to
*something*.  Type ID 0 (unimplemented) will do: it'll induce further
ECTF_BADID errors, but that's no bad thing.

libctf/ChangeLog:

* testsuite/libctf-writable/libctf-errors.c: Initialize variables.

2 months agogdb: re-generate aclocal.m4
Simon Marchi [Mon, 11 Mar 2024 16:50:44 +0000 (12:50 -0400)] 
gdb:  re-generate aclocal.m4

I get some changes when running `autoreconf -vf` in the gdb directory,
fix that.

I did a bisect, it appears to have been introduced in this commit, not
sure why we haven't spotted that before.

    commit 862776f26a59516467c98091994c3dac90383159
    Author:     Arsen Arsenovi? <arsen@aarsen.me>
    AuthorDate: Wed Nov 15 12:53:04 2023 +0000
    Commit:     Nick Clifton <nickc@redhat.com>
    CommitDate: Wed Nov 15 12:53:04 2023 +0000

Change-Id: I798d2fbff40c39dbc899832c64e72b2859b536b9

2 months agogdb, btrace: fix error diagnostics
Markus Metzger [Fri, 18 Feb 2022 12:53:31 +0000 (13:53 +0100)] 
gdb, btrace: fix error diagnostics

When we improved error messages in

    cd393cec3ab gdb, btrace: improve error messages

we cleared the original errno.  When the error reason can not be explained
in a more detailed error message, and we fall back to the default error
message, it now gives Success as error.

Restore the original errno to fix that.

2 months agogdb/unwinders: better support for $pc not saved
Andrew Burgess [Wed, 24 Jan 2024 13:52:59 +0000 (13:52 +0000)] 
gdb/unwinders: better support for $pc not saved

This started with a Red Hat bug report which can be seen here:

  https://bugzilla.redhat.com/show_bug.cgi?id=1850710

The problem reported here was using GDB on GNU/Linux for S390, the
user stepped into JIT generated code.  As they enter the JIT code GDB
would report 'PC not saved', and this same message would be reported
after each step/stepi.

Additionally, the user had 'set disassemble-next-line on', and once
they entered the JIT code this output was not displayed, nor were any
'display' directives displayed.

The user is not making use of the JIT plugin API to provide debug
information.  But that's OK, they aren't expecting any source level
debug here, they are happy to use 'stepi', but the missing 'display'
directives are a problem, as is the constant 'PC not saved' (error)
message.

What is happening here is that as GDB is failing to find any debug
information for the JIT generated code, it is falling back on to the
S390 prologue unwinder to try and unwind frame #0.  Unfortunately,
without being able to identify the function boundaries, the S390
prologue scanner can't help much, in fact, it doesn't even suggest an
arbitrary previous $pc value (some targets that use a link-register
will, by default, assume the link-register contains the previous $pc),
instead the S390 will just say, "sorry, I have no previous $pc value".

The result of this is that when GDB tries to find frame #1 we end
throwing an error from frame_unwind_pc (the 'PC not saved' error).
This error is not caught anywhere except at the top-level interpreter
loop, and so we end up skipping all the 'display' directive handling.

While thinking about this, I wondered, could I trigger the same error
using the Python Unwinder API?  What happens if a Python unwinder
claims a frame, but then fails to provide a previous $pc value?

Turns out that exactly the same thing happens, which is great, as that
means we now have a way to reproduce this bug on any target.  And so
the test included with this patch does just this.  I have a Python
unwinder that claims a frame, but doesn't provide any previous
register values.

I then do two tests, first I stop in the claimed frame (i.e. frame #0
is the frame that can't be unwound), I perform a few steps, and check
the backtrace.  And second, I stop in a child of the problem
frame (i.e. frame #1 is the frame that can't be unwound), and from
here I check the backtrace.

While all this is going on I have a 'display' directive in place, and
each time GDB stops I check that the display directive triggers.

Additionally, when checking the backtrace, I am checking that the
backtrace finishes with the message 'Backtrace stopped: frame did not
save the PC'.

As for the fix I chose to add a call to frame_unwind_pc directly to
get_prev_frame_always_1.  Calling frame_unwind_pc will cache the
unwound $pc value, so this doesn't add much additional work as
immediately after the new frame_unwind_pc call, we call
get_prev_frame_maybe_check_cycle, which actually generates the
previous frame, which will always (I think) require a call to
frame_unwind_pc anyway.

The reason for adding the frame_unwind_pc call into
get_prev_frame_always_1, is that if the frame_unwind_pc call fails we
want to set the frames 'stop_reason', and get_prev_frame_always_1
seems to be the place where this is done, so I wanted to keep the new
stop_reason setting code next to all the existing stop_reason setting
code.

Additionally, once we enter get_prev_frame_maybe_check_cycle we
actually create the previous frame, then, if it turns out that the
previous frame can't be created we need to remove the frame .. this
seemed more complex than just making the check in
get_prev_frame_always_1.

With this fix in place the original S390 bug is fixed, and also the
test added in this commit, that uses the Python API, is also fixed.

Reviewed-By: Kevin Buettner <kevinb@redhat.com>
2 months agogdb/testsuite: Reduce gdb.threads/threadcrash.exp reliance on libc symbols
Guinevere Larsen [Mon, 11 Mar 2024 09:57:32 +0000 (10:57 +0100)] 
gdb/testsuite: Reduce gdb.threads/threadcrash.exp reliance on libc symbols

The test gdb.threads/threadcrash.exp demanded GDB to fully unwind and
print the names of all functions. However, some of the functions are
from the libc library, and so the test implicitly demanded libc symbols
to be available, and would fail otherwise, as was raised in PR
gdb/31293.

This commit changes it so we only explicitly check for functions that
are not provided by threadcrash.c if they are indeed available.

Tested on arm-linux and x86_64-linux.

Approved-By: Tom de Vries <tdevries@suse.de>
Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=31293

2 months agogdb/testsuite: Simplify gdb.threads/threadcrash.exp
Tom de Vries [Mon, 11 Mar 2024 09:57:32 +0000 (10:57 +0100)] 
gdb/testsuite: Simplify gdb.threads/threadcrash.exp

I noticed in gdb.threads/threadcrash.exp that the usage of test_list is
somewhat convoluted.

Simplify the test-case by storing a classification instead of a pattern in
test_list.

Tested on arm-linux and x86_64-linux.

2 months agogdb/testsuite: Use _inferior_thread_count in gdb.threads/threadcrash.exp
Guinevere Larsen [Mon, 11 Mar 2024 09:57:31 +0000 (10:57 +0100)] 
gdb/testsuite: Use _inferior_thread_count in gdb.threads/threadcrash.exp

A linaro PR [1] reports that the gdb.threads/threadcrash.exp test-case fails
to cout the number of threads in the inferior:
...
FAIL: gdb.threads/threadcrash.exp: test_gcore: $thread_count == 7
FAIL: gdb.threads/threadcrash.exp: test_gcore: $thread_count == [llength $test_list]
...

Fix this by getting the convenience variable _inferior_thread_count as opposed
to calculating it based on the output of "info threads".

Tested on arm-linux and x86_64-linux.

Reviewed-By: Lancelot Six <lancelot.six@amd.com>
Approved-By: Tom de Vries <tdevries@suse.de>
[1] https://linaro.atlassian.net/browse/GNU-1120

2 months agogdb/testsuite: Fix gdb.threads/threadcrash.exp with check-readmore
Tom de Vries [Mon, 11 Mar 2024 09:57:31 +0000 (10:57 +0100)] 
gdb/testsuite: Fix gdb.threads/threadcrash.exp with check-readmore

With check-readmore, I run into:
...
FAIL: gdb.threads/threadcrash.exp: test_corefile: \
  $thread_count == [llength $test_list]
...

The problem is that the clauses in the gdb_test_multiple for
"thread apply all backtrace" intent to match one line, but actually can
match more than one line, and consequently a match for one type of thread can
consume a line that was supposed to match another thread.

For instance, there's this regexp:
...
    -re "\[^\n\]*syscall_task .location=SIGNAL_ALT_STACK\[^\n\]*" {
...

It's limited at the end by \[^\n\]*, meaning the match stops at the end of the
line.

But it doesn't start with a ^, and consequently can match more than one line.
The "\[^\n\]*" at the start doesn't prevent this, there's an implicit .* at
the start of each pattern, unless it's anchored using a ^.

Fix this by rewriting the regexps in a "^\r\n$hs$regexp$hs$eol" style, where:
- hs is: \[^\n\]* (horizontal space), and
- eol is (?=\r\n) (look-ahead end-of-line).

It also turned out to be necessary to drop the -lbl switch, and introduce a
corresponding explicit clause.  The -lbl clause is placed ALAP, and
consequently allowed the default fail clause to trigger.

Tested on arm-linux and x86_64-linux.

2 months agogdb/testsuite: Reduce indentation in gdb.threads/threadcrash.exp
Tom de Vries [Mon, 11 Mar 2024 09:57:31 +0000 (10:57 +0100)] 
gdb/testsuite: Reduce indentation in gdb.threads/threadcrash.exp

In test-case gdb.threads/threadcrash.exp we have an unnecessarily indented
gdb_test_multiple:
...
    gdb_test_multiple "thread apply all backtrace" \
"Get thread information" -lbl {
    -re "#\[0-9\]+\\\?\\\?\[^\n\]*" {
...

Fix this by moving the command into a variable, allowing the
"gdb_test_multiple ... {" to fit on a single 80 chars line.

Tested on arm-linux and x86_64-linux.

2 months agox86: KeyLocker insn interaction with -msse-check / .sse_check
Jan Beulich [Mon, 11 Mar 2024 07:23:45 +0000 (08:23 +0100)] 
x86: KeyLocker insn interaction with -msse-check / .sse_check

Some of these have no explicit %xmm operand(s), yet they still act SSE-
like (in leaveing bits 128 and up untouched). Hence they want similarly
diagnosing, if that was asked for.

2 months agox86/APX: permit wider than 4-bit immediates with V{EXTRACT,INSERT}{F,I}128
Jan Beulich [Mon, 11 Mar 2024 07:23:11 +0000 (08:23 +0100)] 
x86/APX: permit wider than 4-bit immediates with V{EXTRACT,INSERT}{F,I}128

These aren't useful, but can be encoded for their AVX forms and hence
should also be permitted for the APX surrogates. Extend the respective
conditional by a base opcode check, to restrict it to VROUND{P,S}{S,D}.

2 months agox86: don't open-code REG_{SP,FP}
Jan Beulich [Mon, 11 Mar 2024 07:22:35 +0000 (08:22 +0100)] 
x86: don't open-code REG_{SP,FP}

Since we have the #define-s, we should also use them.

2 months agotests: force non-deterministic mode in non-deterministic tests
Stephen Kitt [Mon, 11 Mar 2024 07:21:47 +0000 (08:21 +0100)] 
tests: force non-deterministic mode in non-deterministic tests

Since ar can be built defaulting to deterministic mode, tests which
expect non-deterministic behaviour need to explicitly set the U flag.

The non-deterministic member test expects SOURCE_DATE_EPOCH to not be
set; this documents that. Unconditionally unsetting the variable
causes issues in test infrastructure (which expects unsetenv to only
be called on variables which are already set).

Signed-off-by: Stephen Kitt <steve@sk2.org>
2 months agoAutomatic date update in version.in
GDB Administrator [Mon, 11 Mar 2024 00:00:31 +0000 (00:00 +0000)] 
Automatic date update in version.in

2 months agoAutomatic date update in version.in
GDB Administrator [Sun, 10 Mar 2024 00:00:26 +0000 (00:00 +0000)] 
Automatic date update in version.in

2 months ago[gdb/python] Handle deprecation of PyErr_{Fetch,Restore} in 3.12
Tom de Vries [Sat, 9 Mar 2024 15:13:10 +0000 (16:13 +0100)] 
[gdb/python] Handle deprecation of PyErr_{Fetch,Restore} in 3.12

Starting python version 3.12, PyErr_Fetch and PyErr_Restore are deprecated.

Use PyErr_GetRaisedException and PyErr_SetRaisedException instead, for
python >= 3.12.

Tested on aarch64-linux.

Approved-By: Tom Tromey <tom@tromey.com>
2 months ago[gdb/python] Normalize exceptions in gdbpy_err_fetch
Tom de Vries [Sat, 9 Mar 2024 15:13:10 +0000 (16:13 +0100)] 
[gdb/python] Normalize exceptions in gdbpy_err_fetch

With python 3.12, I run into:
...
(gdb) PASS: gdb.python/py-block.exp: check variable access
python print (block['nonexistent'])^M
Python Exception <class 'KeyError'>: 'nonexistent'^M
Error occurred in Python: 'nonexistent'^M
(gdb) FAIL: gdb.python/py-block.exp: check nonexistent variable
...

The problem is that that PyErr_Fetch returns a normalized exception, while the
test-case matches the output for an unnormalized exception.

With python 3.6, PyErr_Fetch returns an unnormalized exception, and the
test passes.

Fix this by:
- updating the test-case to match the output for a normalized exception, and
- lazily forcing normalized exceptions using PyErr_NormalizeException.

Tested on aarch64-linux.

Approved-By: Tom Tromey <tom@tromey.com>
2 months ago[gdb/python] Use gdbpy_err_fetch::{type,value} as getters
Tom de Vries [Sat, 9 Mar 2024 15:13:10 +0000 (16:13 +0100)] 
[gdb/python] Use gdbpy_err_fetch::{type,value} as getters

Similar to gdbpy_err_fetch::value, add a getter gdbpy_err_fetch::type, and use
both consistently to get gdbpy_err_fetch members m_error_value and
m_error_type.

Tested on aarch64-linux.

2 months agoReinstate bfd_print_error as an extern function
Alan Modra [Sat, 9 Mar 2024 09:57:32 +0000 (20:27 +1030)] 
Reinstate bfd_print_error as an extern function

* bfd.c (_bfd_print): Renamed from bfd_print_error.
(bfd_print_error): Reinstate previous code but using the above.
(error_handler_fprintf, error_handler_sprintf): Adjust.
* bfd-in2.h: Regenerate.

2 months agoRe: Move bfd_init to bfd.c
Alan Modra [Sat, 9 Mar 2024 09:18:48 +0000 (19:48 +1030)] 
Re: Move bfd_init to bfd.c

Commit b1c95bc4dd73 cleared some bfd static variables, with bad
results since bfd_set_error_program_name is often called before
bfd_init.

* bfd.c (bfd_init): Don't clear _bfd_error_program_name.

2 months agoprint cached error messages using _bfd_error_handler
Alan Modra [Sat, 9 Mar 2024 02:56:19 +0000 (13:26 +1030)] 
print cached error messages using _bfd_error_handler

* bfd.c (bfd_print_error): Make static.  Don't print program name.
(error_handler_fprintf): Print program name here.
* format.c (print_warnmsg): Use _bfd_error_handler to print
cached messages.
* bfd-in2.h: Regenerate.

2 months agoAvoid race when writing to index cache
Tom Tromey [Sun, 28 Jan 2024 16:14:04 +0000 (09:14 -0700)] 
Avoid race when writing to index cache

The background DWARF reader changes introduced a race when writing to
the index cache.  The problem here is that constructing the
index_cache_store_context object should only happen on the main
thread, to ensure that the various value captures do not race.

This patch adds an assert to the construct to that effect, and then
arranges for this object to be constructed by the cooked_index_worker
constructor -- which is only invoked on the main thread.

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

2 months agoMove the 'store' method to index_cache_store_context
Tom Tromey [Sat, 27 Jan 2024 15:59:06 +0000 (08:59 -0700)] 
Move the 'store' method to index_cache_store_context

I think it is cleaner for 'store' to be a method on
index_cache_store_context rather than on the global index cache
itself.  This patch makes this change.

2 months agoCapture the per-BFD object in index_cache_store_context
Tom Tromey [Sat, 27 Jan 2024 15:56:53 +0000 (08:56 -0700)] 
Capture the per-BFD object in index_cache_store_context

This changes index_cache_store_context to also capture the per-BFD
object when it is constructed.  This is used when storing to the
cache, and this approach makes the code a little simpler.

2 months agoCapture directory in index_cache_store_context
Tom Tromey [Sat, 27 Jan 2024 15:52:46 +0000 (08:52 -0700)] 
Capture directory in index_cache_store_context

I noticed that index_cache_store_context captures the 'enabled'
setting, but not the index cache directory.  This patch makes this
change, which avoids a possible race -- with background reading, the
user could possibly change this directory at the exact moment the
writer examines the variable.

2 months agoRename members of index_cache_store_context
Tom Tromey [Sat, 27 Jan 2024 15:51:10 +0000 (08:51 -0700)] 
Rename members of index_cache_store_context

This renames the private members of index_cache_store_context to start
with "m_".

2 months agoAutomatic date update in version.in
GDB Administrator [Sat, 9 Mar 2024 00:00:29 +0000 (00:00 +0000)] 
Automatic date update in version.in

2 months agoAdd return value to DAP scope
Tom Tromey [Mon, 12 Feb 2024 17:12:26 +0000 (10:12 -0700)] 
Add return value to DAP scope

A bug report in the DAP specification repository pointed out that it
is typical for DAP implementations to put a function's return value
into the outermost scope.

This patch changes gdb to follow this convention.

Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=31341
Reviewed-By: Kévin Le Gouguec <legouguec@adacore.com>
2 months agoExport "finish" return value to Python
Tom Tromey [Mon, 12 Feb 2024 15:12:02 +0000 (08:12 -0700)] 
Export "finish" return value to Python

This patch changes the Python "stop" event emission code to also add
the function return value, if it is known.  This happens when the stop
comes from a "finish" command and when the value can be fetched.

The test is in the next patch.

Reviewed-By: Eli Zaretskii <eliz@gnu.org>
2 months agogas: Fix x86 build with GCC 6.4
H.J. Lu [Fri, 8 Mar 2024 16:08:02 +0000 (08:08 -0800)] 
gas: Fix x86 build with GCC 6.4

Add "()" to silence GCC 6.4:

.../gas/config/tc-i386.c: In function ‘x86_ginsn_lea’:
.../gas/config/tc-i386.c:5738:19: error: logical not is only applied to the left hand side of comparison [-Werror=logical-not-parentheses]
   if (!i.base_reg != (!i.index_reg || i.index_reg->reg_num == RegIZ))
                   ^~
cc1: all warnings being treated as errors

PR gas/31464
* config/tc-i386.c (x86_ginsn_lea): Add "()" to silence GCC 6.4.

2 months agoAvoid race when reading dwz file
Tom Tromey [Thu, 25 Jan 2024 13:48:22 +0000 (06:48 -0700)] 
Avoid race when reading dwz file

PR gdb/31260 points out a race introduced by the background reading
changes.  If a given objfile is re-opened when it is already being
read, dwarf2_initialize_objfile will call dwarf2_read_dwz_file again,
causing the 'dwz_file' to be reset.

This patch fixes the problem by arranging to open the dwz just once:
when the dwarf2_per_bfd object is created.

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

2 months agobfd: Change the --with-mmap default to true
H.J. Lu [Wed, 6 Mar 2024 23:23:57 +0000 (15:23 -0800)] 
bfd: Change the --with-mmap default to true

Change the configure default to using mmap.

* configure.ac: Change the --with-mmap default to true.
* configure: Regenerated.

2 months agobfd: Don't hard-code BFD_JUMP_TABLE_COPY
H.J. Lu [Wed, 6 Mar 2024 23:23:56 +0000 (15:23 -0800)] 
bfd: Don't hard-code BFD_JUMP_TABLE_COPY

In BFD_JUMP_TABLE_COPY, replace _bfd_generic_init_private_section_data
with NAME##_init_private_section_data so that ELF targets can properly
replace it with _bfd_elf_init_private_section_data.

* aout-target.h (MY_init_private_section_data): New.
* coff-rs6000.c (_bfd_xcoff_init_private_section_data): New.
* coffcode.h (coff_init_private_section_data): New.
* elfxx-target.h (bfd_elfNN_init_private_section_data): New.
* libecoff.h (_bfd_ecoff_init_private_section_data): New.
* mach-o-target.c (bfd_mach_o_init_private_section_data): New.
* mmo.c (mmo_init_private_section_data): New.
* plugin.c (bfd_plugin_init_private_section_data): New.
* ppcboot.c (ppcboot_init_private_section_data): New.
* som.c (som_init_private_section_data): New.
* targets.c (BFD_JUMP_TABLE_COPY): Replace
_bfd_generic_init_private_section_data with
NAME##_init_private_section_data.
* vms-alpha.c (vms_init_private_section_data): New.
* elf-bfd.h (_bfd_generic_init_private_section_data): Removed.
* bfd-in2.h: Regenerated.

2 months agoRISC-V: Support Zabha extension.
Jiawei [Wed, 28 Feb 2024 08:27:17 +0000 (16:27 +0800)] 
RISC-V: Support Zabha extension.

The Zabha extension[1] supports for byte and halfword
atomic memory operations. This patch add all instructions
include in Zabha. Further work is waiting Zacas[2] merge.

[1] https://github.com/riscv/riscv-zabha/tags
[2] https://sourceware.org/pipermail/binutils/2023-May/127700.html

Version log:
Add new imply relation that Zabha extension implies A extension.

bfd/ChangeLog:

        * elfxx-riscv.c (riscv_implicit_subsets): New imply.
        (riscv_multi_subset_supports): New extension.
        (riscv_multi_subset_supports_ext): Ditto.

gas/ChangeLog:

        * testsuite/gas/riscv/zabha-32.d: New test.
        * testsuite/gas/riscv/zabha.d: New test.
        * testsuite/gas/riscv/zabha.s: New test.

include/ChangeLog:

        * opcode/riscv-opc.h (MATCH_AMOADD_B): New opcodes.
        (MASK_AMOADD_B): Ditto.
        (MATCH_AMOXOR_B): Ditto.
        (MASK_AMOXOR_B): Ditto.
        (MATCH_AMOOR_B): Ditto.
        (MASK_AMOOR_B): Ditto.
        (MATCH_AMOAND_B): Ditto.
        (MASK_AMOAND_B): Ditto.
        (MATCH_AMOMIN_B): Ditto.
        (MASK_AMOMIN_B): Ditto.
        (MATCH_AMOMAX_B): Ditto.
        (MASK_AMOMAX_B): Ditto.
        (MATCH_AMOMINU_B): Ditto.
        (MASK_AMOMINU_B): Ditto.
        (MATCH_AMOMAXU_B): Ditto.
        (MASK_AMOMAXU_B): Ditto.
        (MATCH_AMOSWAP_B): Ditto.
        (MASK_AMOSWAP_B): Ditto.
        (MATCH_AMOADD_H): Ditto.
        (MASK_AMOADD_H): Ditto.
        (MATCH_AMOXOR_H): Ditto.
        (MASK_AMOXOR_H): Ditto.
        (MATCH_AMOOR_H): Ditto.
        (MASK_AMOOR_H): Ditto.
        (MATCH_AMOAND_H): Ditto.
        (MASK_AMOAND_H): Ditto.
        (MATCH_AMOMIN_H): Ditto.
        (MASK_AMOMIN_H): Ditto.
        (MATCH_AMOMAX_H): Ditto.
        (MASK_AMOMAX_H): Ditto.
        (MATCH_AMOMINU_H): Ditto.
        (MASK_AMOMINU_H): Ditto.
        (MATCH_AMOMAXU_H): Ditto.
        (MASK_AMOMAXU_H): Ditto.
        (MATCH_AMOSWAP_H): Ditto.
        (MASK_AMOSWAP_H): Ditto.
        (DECLARE_INSN): New declare.
        * opcode/riscv.h (enum riscv_insn_class): New class.

opcodes/ChangeLog:

        * riscv-opc.c: New instructions.

2 months agoAutomatic date update in version.in
GDB Administrator [Fri, 8 Mar 2024 00:00:21 +0000 (00:00 +0000)] 
Automatic date update in version.in

2 months agoAutomatic date update in version.in
GDB Administrator [Thu, 7 Mar 2024 00:00:53 +0000 (00:00 +0000)] 
Automatic date update in version.in

2 months agoAdd "-j1" to make command lines in the create-a-release README.
Nick Clifton [Wed, 6 Mar 2024 10:57:39 +0000 (10:57 +0000)] 
Add "-j1" to make command lines in the create-a-release README.

3 months agoLoongArch: Fix some test cases for TLS transition and relax
Lulu Cai [Thu, 25 Jan 2024 11:20:00 +0000 (19:20 +0800)] 
LoongArch: Fix some test cases for TLS transition and relax

3 months agoLoongArch: Add dtpoff calculation function
Lulu Cai [Fri, 23 Feb 2024 08:28:22 +0000 (16:28 +0800)] 
LoongArch: Add dtpoff calculation function

When tls_sec is NULL, we should not access the virtual address
of tls_sec.

3 months agoLoongArch: Delete extra instructions when TLS type transition
Lulu Cai [Wed, 24 Jan 2024 09:43:20 +0000 (17:43 +0800)] 
LoongArch: Delete extra instructions when TLS type transition

This modification mainly changes the timing of type transition,
adds relaxation to the old LE instruction sequence, and fixes
bugs in extreme code models.

We strictly distinguish between type transition and relaxation.
Type transition is from one type to another, while relaxation
is the removal of instructions under the same TLS type. Detailed
instructions are as follows:

1. For type transition, only the normal code model of DESC/IE
does type transition, and each relocation is accompanied by a
RELAX relocation. Neither abs nor extreme will do type transition,
and no RELAX relocation will be generated.
The extra instructions when DESC transitions to other TLS types
will be deleted during the type transition.

2. Implemented relaxation for the old LE instruction sequence.
The first two instructions of LE's 32-bit and 64-bit models
use the same relocations and cannot be distinguished based on
relocations. Therefore, for LE's instruction sequence, any code
model will try to relax.

3. Some function names have been adjusted to facilitate understanding,
parameters have been adjusted, and unused macros have been deleted.

3 months agoDon't use bfd_error_handler in bfd_abort
Alan Modra [Tue, 5 Mar 2024 04:03:40 +0000 (14:33 +1030)] 
Don't use bfd_error_handler in bfd_abort

We don't want to lose an abort message when bfd_set_error_handler has
been called to ignore or cache errors.

PR ld/31444
* bfd.c (_bfd_abort): Don't use _bfd_error_handler.

3 months agoAutomatic date update in version.in
GDB Administrator [Wed, 6 Mar 2024 00:00:59 +0000 (00:00 +0000)] 
Automatic date update in version.in