public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libstdc++/105995] New: QoI: constexpr basic_string variable must use all of its SSO buffer
@ 2022-06-16  7:13 de34 at live dot cn
  2022-06-16  7:19 ` [Bug libstdc++/105995] " pinskia at gcc dot gnu.org
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: de34 at live dot cn @ 2022-06-16  7:13 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105995

            Bug ID: 105995
           Summary: QoI: constexpr basic_string variable must use all of
                    its SSO buffer
           Product: gcc
           Version: 12.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libstdc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: de34 at live dot cn
  Target Milestone: ---

The current implementation in libstdc++ only supports constexpr
std::basic_string variable of static storage duration which uses all of its SSO
buffer:

#include <string>

constexpr std::string str15{"0123456789abcde"};
// constexpr std::string str14{"0123456789abcd"}; // error: should we support
this?
// constexpr std::string str16{"0123456789abcdef"}; // error: unsupportable

constexpr std::u16string u16str7{u"0123456"};
constexpr std::u32string u32str3{U"012"};

int main()
{
    // constexpr std::string strdyn{"0123456789abcde"}; // error: unsupportable
}

Compiler Explorer links:
https://gcc.godbolt.org/z/cvbY1hK3G
https://gcc.godbolt.org/z/634888Y96

I think constexpr string variable that requires heap allocation is currently
unimplementable, and constexpr string variable of dynamic storage duration
can't be supported by libstdc++-v3 without ABI breakage now.

However, should we allow shorter strings to be stored into constexpr
basic_string variables? We can do this by always fully initializing the SSO
buffer (if it's used) during constant evluation.

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2022-08-03 13:49 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-16  7:13 [Bug libstdc++/105995] New: QoI: constexpr basic_string variable must use all of its SSO buffer de34 at live dot cn
2022-06-16  7:19 ` [Bug libstdc++/105995] " pinskia at gcc dot gnu.org
2022-06-16  7:41 ` de34 at live dot cn
2022-06-16 11:08 ` redi at gcc dot gnu.org
2022-06-16 11:14 ` redi at gcc dot gnu.org
2022-06-16 19:20 ` cvs-commit at gcc dot gnu.org
2022-06-16 19:21 ` redi at gcc dot gnu.org
2022-08-03 13:47 ` cvs-commit at gcc dot gnu.org
2022-08-03 13:49 ` redi at gcc dot gnu.org

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).