public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
From: Andreas Schwab <schwab@suse.de>
To: Andrew Burgess via Gdb-patches <gdb-patches@sourceware.org>
Cc: Andrew Burgess <aburgess@redhat.com>
Subject: Re: [PATCH] gdb: don't treat empty enums as flag enums
Date: Mon, 20 Feb 2023 14:58:28 +0100	[thread overview]
Message-ID: <mvmedqksakb.fsf@suse.de> (raw)
In-Reply-To: <92a46a82cbc43033fc03942674b80979cc91e572.1676901184.git.aburgess@redhat.com> (Andrew Burgess via Gdb-patches's message of "Mon, 20 Feb 2023 13:53:16 +0000")

On Feb 20 2023, Andrew Burgess via Gdb-patches wrote:

> In C++ it is possible to use an empty enum as a strong typedef.  For
> example, a user could write:
>
>   enum class my_type : unsigned char {};
>
> Now my_type can be used like 'unsigned char' except the compiler will
> not allow implicit conversion too and from the native 'unsigned char'
> type.
>
> This is used in the standard library for things like std::byte.
>
> Currently, when GDB prints a value of type my_type, it looks like
> this:
>
>   (gdb) print my_var
>   $1 = (unknown: 0x4)
>
> Which isn't great.  This gets worse when we consider something like:
>
>   std::vector<my_type> vec;
>
> When using a pretty-printer, this could look like this:
>
>   std::vector of length 2, capacity 2 = {(unknown: 0x2), (unknown: 0x4)}
>
> Clearly not great.  This is described in PR gdb/30148.
>
> The problem here is in dwarf2/read.c, we assume all enums are flag
> enums unless we find an enumerator with a non-flag like value.
> Clearly an empty enum contains no non-flag values, so we assume the
> enum is a flag enum.
>
> I propose adding an extra check here; that is, an empty enum should
> never be a flag enum.
>
> With this the above cases look more like:
>
>   (gdb) print my_var
>   $1 = (unknown: 0x4)

I guess this should look different from the output above?

-- 
Andreas Schwab, SUSE Labs, schwab@suse.de
GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE  1748 E4D4 88E3 0EEA B9D7
"And now for something completely different."

  reply	other threads:[~2023-02-20 13:58 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-20 13:53 Andrew Burgess
2023-02-20 13:58 ` Andreas Schwab [this message]
2023-02-20 14:29   ` Andrew Burgess
2023-02-21 19:42 ` Tom Tromey
2023-02-27 14:15   ` Andrew Burgess

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=mvmedqksakb.fsf@suse.de \
    --to=schwab@suse.de \
    --cc=aburgess@redhat.com \
    --cc=gdb-patches@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).