public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Martin Sebor <msebor@gmail.com>
To: Marek Polacek <polacek@redhat.com>
Cc: GCC Patches <gcc-patches@gcc.gnu.org>,  Jason Merrill <jason@redhat.com>
Subject: Re: C++ PATCH for c++/69496 (ICE on VLA in constexpr function)
Date: Wed, 27 Jan 2016 16:52:00 -0000	[thread overview]
Message-ID: <56A8F5BD.4010104@gmail.com> (raw)
In-Reply-To: <20160127111954.GQ25528@redhat.com>

>> I wonder if it might be better to instead reject VLAs in constexpr
>> functions altogether.  Not because they're not in C++, but because
>> C (or gcc) doesn't allow them to be initialized (and so accepting
>> an initialized VLA is a g++ extension of an extension), and
>> because in constexpr functions they are rejected without
>> initialization just like other uninitialized variables.
>
> I don't think we can do this at this time.  E.g. the following program works
> even with GCC 5 and -std=c++14:
>
> constexpr int
> foo (int n)
> {
>      int a[n] = { 1, 2, 3 };
>      int z = 0;
>      for (unsigned i = 0; i < 3; ++i)
>        z += a[i];
>      return z;
> }
>
> int
> main ()
> {
>    constexpr int n = foo (3);
>    __builtin_printf ("%d\n", n);
> }

This happens to work but I suspect it's only by accident.  When
the number of elements in the initializer is increased to exceed
the number of elements in the VLA GCC gets into infinite recursion.
(I opened bug 69516 with a test case).  The same error in a non-
constexpr function causes a SEGV at runtime (this is also
a regression WRT 4.9.3 -- I opened bug 69517 for it).

> So starting to reject such a code might broke working programs.  And we're
> able to reject non-standard code: -pedantic-errors.

I agree that there is some risk that it might break some working
programs.  I would expect the most common use of initialized VLAs
be to set all elements to zero using the "= { }" or "= { 0 }"
syntax.  Initializers with more elements are, IMO, likely to be
a bug where the user doesn't realize they defined a VLA rather
than an ordinary array.  Since VLAs are required to have at least
1 element, would diagnosing initializers with more than one element
more loudly (such as by default or with -Wall as opposed to with
-Wpedantic) be a good solution?

Martin

  reply	other threads:[~2016-01-27 16:52 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-26 23:02 Marek Polacek
2016-01-27  3:58 ` Martin Sebor
2016-01-27 11:20   ` Marek Polacek
2016-01-27 16:52     ` Martin Sebor [this message]
2016-01-27 21:08       ` Jason Merrill
2016-01-28 22:27       ` Marek Polacek
2016-01-29  3:29         ` Martin Sebor
2016-01-27 14:08 ` Jason Merrill
2016-01-27 14:11   ` Marek Polacek

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=56A8F5BD.4010104@gmail.com \
    --to=msebor@gmail.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=jason@redhat.com \
    --cc=polacek@redhat.com \
    /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).