public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/103923] is_invocable<const T &, ...> inexplicably fails
Date: Thu, 06 Jan 2022 14:30:30 +0000	[thread overview]
Message-ID: <bug-103923-4-s8jIHWlYxd@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-103923-4@http.gcc.gnu.org/bugzilla/>

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

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |fdumont at gcc dot gnu.org

--- Comment #7 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Ugh, this is a big can of worms.

The current code is wrong, because __cache_default<Key, Hash> can silently give
the wrong answer, and cause ODR violations.

But if we change __cache_default to give the right answer, we break existing
tests:

FAIL: 23_containers/unordered_map/48101_neg.cc  (test for errors, line 27)
FAIL: 23_containers/unordered_set/85965.cc (test for excess errors)

We have tests that depend on NOT checking the hash function until all types are
complete. But that means it is impossible for __cache_default to do the right
thing, because it requires completeness.

The reason that __cache_default checks the hash function is to see whether it
throws or not. The code comments say:

                      // Mandatory to have erase not throwing.
                      __is_nothrow_invocable<const _Hash&, const _Tp&>>>;

and elsewhere:

      // Getting a bucket index from a node shall not throw because it is used
      // in methods (erase, swap...) that shall not throw. Need a complete
      // type to check this, so do it in the destructor not at class scope.
      static_assert(noexcept(declval<const __hash_code_base_access&>()
                        ._M_bucket_index(declval<const __node_value_type&>(),
                                         (std::size_t)0)),
                    "Cache the hash code or qualify your functors involved"
                    " in hash code and bucket index computation with
noexcept");

But this is nonsense. erase is not noexcept. [unord.req.except] specifically
says "erase(k) does not throw an exception unless that exception is thrown by
the container’s Hash or Pred object (if any)".

So why are we doing all this work (and causing bugs) to avoid throwing in
erase, when we are allowed to throw in erase?! swap isn't allowed to call a
throwing hash function, which seems to be a problem because we use
_M_update_bbegin() in swap, but maybe we can do that another way that doesn't
require calling _M_bucket_index.

I'm not sure how we can change the definition of __cache_default now, without
causing ABI breaks. But the current caching policy just seems wrong.

  parent reply	other threads:[~2022-01-06 14:30 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-05 23:16 [Bug c++/103923] New: " jengelh at inai dot de
2022-01-05 23:19 ` [Bug libstdc++/103923] " pinskia at gcc dot gnu.org
2022-01-06  9:23 ` redi at gcc dot gnu.org
2022-01-06  9:31 ` redi at gcc dot gnu.org
2022-01-06  9:37 ` redi at gcc dot gnu.org
2022-01-06  9:39 ` redi at gcc dot gnu.org
2022-01-06  9:46 ` redi at gcc dot gnu.org
2022-01-06 14:30 ` redi at gcc dot gnu.org [this message]
2022-01-06 14:53 ` redi at gcc dot gnu.org
2022-01-06 16:00 ` redi at gcc dot gnu.org

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=bug-103923-4-s8jIHWlYxd@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.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).