[PATCH] Use read_memory in ada_exception_message_1

Joel Brobecker brobecker@adacore.com
Fri Jul 3 17:50:33 GMT 2020


Hi Tom,

On Thu, Jul 02, 2020 at 03:13:46PM -0600, Tom Tromey wrote:
> Testing using the internal AdaCore test suite showed a regression from
> the target string reading changes.  In particular, now
> ada_exception_message_1 can get the wrong answer in some cases.
> 
> I was not able to reproduce this failure with the Fedora gnat.
> Perhaps it is related to some local change to gnat; I do not know.

It's probably a change that we made internally at AdaCore which
hasn't made its way to either the GCC repository or into the version
that Fedora uses. Considering the change that you are making,
I'm guessing this might have something to do with a change we made
that might have removed the terminating NUL character at the end
(Ada strings don't have a terminating NUL).

It would be useful to provide some information that shows what
we were supposed to get and what we actually do get, at the very
least for archeology purposes. This may also show help confirm
or refute my guess above.

> Meanwhile, because ada_exception_message_1 knows the length of the
> string to read, we can use read_memory here.  This fixes the bug.
> 
> I've updated the test suite to at least exercise this code path.
> However, as mentioned above, the new test does not actually provoke
> the failure.
> 
> gdb/ChangeLog
> 2020-07-02  Tom Tromey  <tromey@adacore.com>
> 
> 	* ada-lang.c (ada_exception_message_1): Use read_memory.
> 
> gdb/testsuite/ChangeLog
> 2020-07-02  Tom Tromey  <tromey@adacore.com>
> 
> 	* gdb.ada/catch_ex/foo.adb: Pass string to raise.
> 	* gdb.ada/catch_ex.exp: Examine catchpoint text.s

OK for me. Since we do know the string's length thanks to the fact
that Ada arrays have bounds built in, it seems just as well to read
the buffer without having to worry about reading things piecemeal
until we find a terminating NUL character.

Just one nit: In the last line of the ChangeLog entry above, there is
an unwanted trailing 's'.

-- 
Joel


More information about the Gdb-patches mailing list