This is an archive of the discontinued LLVM Phabricator instance.

[clang] adds copy-constructible type-trait builtins
AbandonedPublic

Authored by cjdb on Oct 4 2022, 9:41 PM.

Details

Reviewers
aaron.ballman
Group Reviewers
Restricted Project
Summary
  • __is_copy_constructible
  • __is_nothrow_copy_constructible
  • __is_trivially_copy_constructible

This is information that the compiler already has, and should be exposed
so that the library doesn't need to reimplement the exact same
functionality.

Unlike their default-constructible cousins, the copy-construcitble
traits can't be implemented using __is_constructible, etc., because we
can't form references to void, and references are a fundamental part
of copy constructors.

This was originally a part of D116280.

Depends on D135177.

Diff Detail

Event Timeline

cjdb created this revision.Oct 4 2022, 9:41 PM
Herald added a project: Restricted Project. · View Herald TranscriptOct 4 2022, 9:41 PM
cjdb requested review of this revision.Oct 4 2022, 9:41 PM
Herald added a project: Restricted Project. · View Herald TranscriptOct 4 2022, 9:41 PM
Herald added a subscriber: cfe-commits. · View Herald Transcript
cjdb added reviewers: aaron.ballman, Restricted Project.Oct 4 2022, 9:41 PM
cjdb updated this revision to Diff 465278.Oct 4 2022, 9:43 PM

Restarts CI

cjdb updated this revision to Diff 465285.Oct 4 2022, 11:24 PM
cjdb edited the summary of this revision. (Show Details)

rewords commit message

erichkeane added a subscriber: Restricted Project.Oct 6 2022, 6:21 AM
erichkeane added a subscriber: erichkeane.

Please make sure these are going to be OK with libc++ here. "Triviality" is a bit of a hard nut, the standards have re-defined what they mean quite a few times, so this ends up being pretty worthless if it doesn't match the 'version' of this check that the library is trying to look at.

clang/include/clang/Basic/TokenKinds.def
534

So this one is a whole 'thing'. The Clang definition of 'trivially copy constructible' is a few DRs behind. We should probably discuss this with libcxx to make sure use of this wouldn't be broken.

philnik added a subscriber: philnik.Oct 6 2022, 6:57 AM

TBH I don't think adding these builtins is worth the extra maintenance cost. libc++'s implementation is already really simple, and actually uses __is_constructible, contrary to the statement in the summary. This is the whole implementation currently:

template <class _Tp>
struct _LIBCPP_TEMPLATE_VIS is_copy_constructible
    : public integral_constant<
          bool,
          __is_constructible(_Tp, __add_lvalue_reference_t<typename add_const<_Tp>::type>)> {};

#if _LIBCPP_STD_VER > 14
template <class _Tp>
inline constexpr bool is_copy_constructible_v = is_copy_constructible<_Tp>::value;
#endif

I don't think adding an extra #if __has_builtin(...) is worth it in this case, since we already use builtins for most of it. IMO the effort would be better spent adding a builtin for add_const; that would probably make the implementation about as efficient as adding a builtin specifically for is_copy_constructible. It would effectively just be __is_constructible(_Tp, __add_lvalue_reference(__add_const(_Tp))). The trivially and nothrow versions look very similar, just with __is_trivially_constructible and __is_nothrow_constructible respectively.

cjdb added inline comments.Oct 6 2022, 9:20 AM
clang/include/clang/Basic/TokenKinds.def
534

I'd prefer to get those DRs in before finalising D135238 and subsequent ones. Do you know the DR numbers I should be looking at, or should I just poke npaperbot?

erichkeane added inline comments.Oct 6 2022, 9:31 AM
clang/include/clang/Basic/TokenKinds.def
534

Not off the top of my head, Aaron and I both poked at it at one point trying to get trivially constructible right at one point, but I think we both gave up due to the ABI/versioning concerns.

royjacobson added inline comments.
clang/include/clang/Basic/TokenKinds.def
534

Maybe DR1734? Although it's about the trivially copyable trait, not trivially copy constructible.

erichkeane added inline comments.Oct 6 2022, 10:02 AM
clang/include/clang/Basic/TokenKinds.def
534

Yeah, I think that was the DR, that number sounds familiar.

cjdb added inline comments.Oct 6 2022, 10:14 AM
clang/include/clang/Basic/TokenKinds.def
534

The __is_trivially_* traits were, in part, what inspired the Great Split of D116208. I could remove them for now and revisit once I rip my hair out over these DRs, if that would substantially improve the chances of these commits landing (other commentary notwithstanding).

ldionne added a subscriber: ldionne.Oct 6 2022, 1:49 PM
ldionne added inline comments.
clang/include/clang/Basic/TokenKinds.def
534

I am not sure I see a problem with the "triviality" part of this -- we already use a compiler builtin for std::is_trivially_constructible, so I would expect either this patch is fine, or we already have a latent bug in libc++.

I think I can echo @philnik's comment about this not necessarily providing the biggest benefit since our implementation of std::is_trivially_copy_constructible is a fairly trivial wrapper on top of __is_trivially_constructible, but I wouldn't object to the patch on that basis. I think it would probably be possible to instead provide a set of basis builtin operations that we can then build all of the library type traits on top of -- that would provide the highest bang-for-our-buck ratio.

At the same time, there's something kind of enticing in the consistency of defining every single type trait as a builtin, without exception. If that's the end goal, I think that would also be neat and we'd likely regroup all of our type traits under a single header, since each of them would literally be a one liner.

There's also the question of whether GCC provides these builtins -- if they don't and if they don't have plans to, then we'd actually need to add complexity in libc++ to support both, which we would be unlikely to do given that there's probably not a huge compile-time performance benefit.

TLDR, I think the two questions that can help gauge how much interest there will be from libc++ to use this are:

  1. Is the plan to provide *all* the type traits as builtins?
  2. Will GCC implement them?

That being said, libc++ might not be the only potential user of these builtins, so I wouldn't necessarily make it a hard requirement to satisfy us.

cjdb added a subscriber: jwakely.Oct 6 2022, 2:26 PM
cjdb added inline comments.
clang/include/clang/Basic/TokenKinds.def
534

I think I can echo @philnik's comment about this not necessarily providing the biggest benefit since our implementation of std::is_trivially_copy_constructible is a fairly trivial wrapper on top of __is_trivially_constructible, but I wouldn't object to the patch on that basis.

I haven't had time to do anything properly in the way of benchmarking, but after looking at @philnik's quoted code, I see that I'd naively addressed __is_constructible(T, T const&), forgetting that __add_lvalue_reference would've fixed that issue.

  1. Is the plan to provide *all* the type traits as builtins?

Yes, with the possible exception of enable_if and add_const etc. (see D116203 for why the qualifier ones aren't already in). The hardest ones will probably be common_type, common_reference, *invocable*, and *swappable*. The former two depend on technology that doesn't exist in Clang yet, and the latter two are likely hard due there not being prior art.

  1. Will GCC implement them?

@jwakely do you know if there can be cross-compiler synergy here?

jwakely added inline comments.Oct 6 2022, 2:52 PM
clang/include/clang/Basic/TokenKinds.def
534

Which traits are you asking about, just the __is_{,trivially,nothrow}_copy_constructible ones? Or all type traits?

Either way, I think the answer is no. We already use __is_{,trivially,nothrow}_constructible for the copy-constructible traits, and it works fine. I'm not aware of any problems with it. So I don't see any benefit in adding these ones. As already mentioned, it creates *more* code to maintain when using these traits, because we still have to support older versions of other compilers that don't have all the new traits yet.

We've added traits for a few more things recently (__remove_cv, __remove_cvref, __remove_reference) but they can only be used in limited ways (you can't use them directly to implement std::remove_cv_t for example, because they don't mangle to the same thing, which is observable). So I'm sceptical about the benefits of implementing *every* trait as a built-in. There are some which are bottlenecks and worth doing, and some which aren't.

cjdb added inline comments.Oct 6 2022, 5:08 PM
clang/include/clang/Basic/TokenKinds.def
534

Which traits are you asking about, just the __is_{,trivially,nothrow}_copy_constructible ones? Or all type traits?

Either way, I think the answer is no. We already use __is_{,trivially,nothrow}_constructible for the copy-constructible traits, and it works fine. I'm not aware of any problems with it. So I don't see any benefit in adding these ones. As already mentioned, it creates *more* code to maintain when using these traits, because we still have to support older versions of other compilers that don't have all the new traits yet.

Thanks for filling in the knowledge-gap here. I think libc++ only supports the most recent two releases of Clang (and I think only the latest release of GCC), so that library code would have an expiration date of around most eighteen months. So I'm clearer on the libstdc++ side of things, how far back do you normally support?

We've added traits for a few more things recently (__remove_cv, __remove_cvref, __remove_reference) but they can only be used in limited ways (you can't use them directly to implement std::remove_cv_t for example, because they don't mangle to the same thing, which is observable).

Interesting. Is this a libstdc++ backwards-compat issue, or does it burrow into the Itanium ABI, which has mangling conventions for builtin type transformers?

cjdb abandoned this revision.Apr 20 2023, 3:11 PM

Abandoning, since this doesn't have consensus.

cjdb updated this revision to Diff 556500.Sep 11 2023, 3:59 PM

runs 'arc diff git merge-base HEAD origin --update D135238' to try and get CI happy

cjdb abandoned this revision.Sep 11 2023, 4:12 PM