public inbox for libstdc++@gcc.gnu.org
 help / color / mirror / Atom feed
From: Ken Matsui <kmatsui@cs.washington.edu>
To: "François Dumont" <frs.dumont@gmail.com>
Cc: gcc-patches@gcc.gnu.org, libstdc++@gcc.gnu.org
Subject: Re: [PATCH v5 6/6] libstdc++: make std::is_object dispatch to new built-in traits
Date: Tue, 13 Jun 2023 22:25:24 -0700	[thread overview]
Message-ID: <CAML+3pVfb80JUd3h_0+JmS-t8re_vWoQwuJJLmAFd_iJV6JyXw@mail.gmail.com> (raw)
In-Reply-To: <3dfd9968-ddab-f9cf-7350-23be286f7597@gmail.com>

On Tue, Jun 13, 2023 at 10:10 PM François Dumont <frs.dumont@gmail.com> wrote:
>
>
> On 13/06/2023 00:22, Ken Matsui via Libstdc++ wrote:
> > This patch gets std::is_object to dispatch to new built-in traits,
> > __is_function, __is_reference, and __is_void.
> >
> > libstdc++-v3/ChangeLog:
> >       * include/std/type_traits (is_object): Use new built-in traits,
> >       __is_function, __is_reference, and __is_void.
> >       (__is_object): Define this built-in-like macro.
> >       (is_object_v): Use built-in traits through the build-in-like macro.
> >
> > Signed-off-by: Ken Matsui <kmatsui@cs.washington.edu>
> > ---
> >   libstdc++-v3/include/std/type_traits | 19 +++++++++++++++++++
> >   1 file changed, 19 insertions(+)
> >
> > diff --git a/libstdc++-v3/include/std/type_traits b/libstdc++-v3/include/std/type_traits
> > index 780fcc00135..93335f94385 100644
> > --- a/libstdc++-v3/include/std/type_traits
> > +++ b/libstdc++-v3/include/std/type_traits
> > @@ -682,11 +682,23 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
> >       { };
> >
> >     /// is_object
> > +#if __has_builtin(__is_function) && __has_builtin(__is_reference) \
> > +    && __has_builtin(__is_void)
> > +
> > +#define __is_object(_Tp) \
> > +  (!(__is_function(_Tp) || __is_reference(_Tp) || __is_void(_Tp)))
>
> Is this evaluation order random ? Are all those builtin functions
> performances equivalent ?
>
> I would have felt that __is_void is the simplest/fastest cause only for
> 'void' so would have put it first.

This particular order is derived from the original implementation:

```
   template<typename _Tp>
     struct is_object
     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
                           is_void<_Tp>>>::type
     { };
```

From what I can see, it appears there shouldn't be any disparities in
performance based on these implementations in /gcc/cp/semantics.cc:

```
+    case CPTK_IS_FUNCTION:
+      return type_code1 == FUNCTION_TYPE;

+    case CPTK_IS_REFERENCE:
+      return type_code1 == REFERENCE_TYPE;

+    case CPTK_IS_VOID:
+      return VOID_TYPE_P (type1);
```

VOID_TYPE_P: gcc/tree.h

```
/* Nonzero if this type is the (possibly qualified) void type.  */
#define VOID_TYPE_P(NODE) (TREE_CODE (NODE) == VOID_TYPE)
```

> > +
> > +  template<typename _Tp>
> > +    struct is_object
> > +    : public __bool_constant<__is_object(_Tp)>
> > +    { };
> > +#else
> >     template<typename _Tp>
> >       struct is_object
> >       : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
> >                             is_void<_Tp>>>::type
> >       { };
> > +#endif
> >
> >     template<typename>
> >       struct is_member_pointer;
> > @@ -3235,8 +3247,15 @@ template <typename _Tp>
> >     inline constexpr bool is_arithmetic_v = is_arithmetic<_Tp>::value;
> >   template <typename _Tp>
> >     inline constexpr bool is_fundamental_v = is_fundamental<_Tp>::value;
> > +
> > +#ifdef __is_object
> > +template <typename _Tp>
> > +  inline constexpr bool is_object_v = __is_object(_Tp);
> > +#else
> >   template <typename _Tp>
> >     inline constexpr bool is_object_v = is_object<_Tp>::value;
> > +#endif
> > +
> >   template <typename _Tp>
> >     inline constexpr bool is_scalar_v = is_scalar<_Tp>::value;
> >   template <typename _Tp>

  reply	other threads:[~2023-06-14  5:25 UTC|newest]

Thread overview: 92+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-26  4:30 [PATCH 00/10] c++, libstdc++: get std::is_object to " Ken Matsui
2023-03-26  4:30 ` [PATCH 01/10] c++: implement __is_reference built-in trait Ken Matsui
2023-03-26  4:30 ` [PATCH 02/10] libstdc++: use new built-in trait __is_reference for std::is_reference Ken Matsui
2023-03-26  4:30 ` [PATCH 03/10] c++: implement __is_function built-in trait Ken Matsui
2023-03-26  4:30 ` [PATCH 04/10] libstdc++: use new built-in trait __is_function for std::is_function Ken Matsui
2023-03-26  4:30 ` [PATCH 05/10] libstdc++: use std::is_void instead of __is_void in helper_functions.h Ken Matsui
2023-03-26  4:30 ` [PATCH 06/10] libstdc++: remove unused __is_void in cpp_type_traits.h Ken Matsui
2023-03-26  4:30 ` [PATCH 07/10] c++: rename __is_void defined in pr46567.C to ____is_void Ken Matsui
2023-03-26  4:30 ` [PATCH 08/10] c++: implement __is_void built-in trait Ken Matsui
2023-03-26  4:30 ` [PATCH 09/10] libstdc++: use new built-in trait __is_void for std::is_void Ken Matsui
2023-03-26  4:30 ` [PATCH 10/10] libstdc++: make std::is_object dispatch to new built-in traits Ken Matsui
2023-03-30 18:32 ` [PATCH 0/7] c++, libstdc++: get std::is_object to " Ken Matsui
2023-03-30 18:39 ` [PATCH v2 " Ken Matsui
2023-03-30 18:39   ` [PATCH v2 1/7] c++: implement __is_reference built-in trait Ken Matsui
2023-03-30 18:39   ` [PATCH v2 2/7] libstdc++: use new built-in trait __is_reference for std::is_reference Ken Matsui
2023-03-30 18:39   ` [PATCH v2 3/7] c++: implement __is_function built-in trait Ken Matsui
2023-03-30 18:39   ` [PATCH v2 4/7] libstdc++: use new built-in trait __is_function for std::is_function Ken Matsui
2023-03-30 18:39   ` [PATCH v2 5/7] c++, libstdc++: implement __is_void built-in trait Ken Matsui
2023-03-30 18:39   ` [PATCH v2 6/7] libstdc++: use new built-in trait __is_void for std::is_void Ken Matsui
2023-03-30 18:39   ` [PATCH v2 7/7] libstdc++: make std::is_object dispatch to new built-in traits Ken Matsui
2023-04-02  7:53   ` [PATCH v3 0/6] c++, libstdc++: get std::is_object to " Ken Matsui
2023-04-02  7:53     ` [PATCH v3 1/6] c++: implement __is_reference built-in trait Ken Matsui
2023-04-02  7:53     ` [PATCH v3 2/6] libstdc++: use new built-in trait __is_reference for std::is_reference Ken Matsui
2023-04-02  7:53     ` [PATCH v3 3/6] c++: implement __is_function built-in trait Ken Matsui
2023-04-02  7:53     ` [PATCH v3 4/6] libstdc++: use new built-in trait __is_function for std::is_function Ken Matsui
2023-06-09 17:54       ` Patrick Palka
2023-06-09 23:53         ` Ken Matsui
2023-04-02  7:53     ` [PATCH v3 5/6] c++, libstdc++: implement __is_void built-in trait Ken Matsui
2023-04-02  7:53     ` [PATCH v3 6/6] libstdc++: make std::is_object dispatch to new built-in traits Ken Matsui
2023-06-11  2:43     ` [PATCH v4 0/6] c++, libstdc++: get std::is_object to " Ken Matsui
2023-06-11  2:43       ` [PATCH v4 1/6] c++: implement __is_reference built-in trait Ken Matsui
2023-06-11  2:43       ` [PATCH v4 2/6] libstdc++: use new built-in trait __is_reference for std::is_reference Ken Matsui
2023-06-12 18:09         ` François Dumont
2023-06-12 18:13           ` Ken Matsui
2023-06-11  2:43       ` [PATCH v4 3/6] c++: implement __is_function built-in trait Ken Matsui
2023-06-11  2:43       ` [PATCH v4 4/6] libstdc++: use new built-in trait __is_function for std::is_function Ken Matsui
2023-06-11  2:43       ` [PATCH v4 5/6] c++, libstdc++: implement __is_void built-in trait Ken Matsui
2023-06-11  2:43       ` [PATCH v4 6/6] libstdc++: make std::is_object dispatch to new built-in traits Ken Matsui
2023-06-12 22:22       ` [PATCH v5 0/6] c++, libstdc++: get std::is_object to " Ken Matsui
2023-06-12 22:22         ` [PATCH v5 1/6] c++: implement __is_reference built-in trait Ken Matsui
2023-06-12 22:22         ` [PATCH v5 2/6] libstdc++: use new built-in trait __is_reference for std::is_reference Ken Matsui
2023-06-12 22:22         ` [PATCH v5 3/6] c++: implement __is_function built-in trait Ken Matsui
2023-06-12 22:22         ` [PATCH v5 4/6] libstdc++: use new built-in trait __is_function for std::is_function Ken Matsui
2023-06-12 22:22         ` [PATCH v5 5/6] c++, libstdc++: implement __is_void built-in trait Ken Matsui
2023-06-12 22:22         ` [PATCH v5 6/6] libstdc++: make std::is_object dispatch to new built-in traits Ken Matsui
2023-06-14  5:10           ` François Dumont
2023-06-14  5:25             ` Ken Matsui [this message]
2023-06-12 22:39         ` [PATCH v6 0/6] c++, libstdc++: get std::is_object to " Ken Matsui
2023-06-12 22:39           ` [PATCH v6 1/6] c++: implement __is_reference built-in trait Ken Matsui
2023-06-12 22:39           ` [PATCH v6 2/6] libstdc++: use new built-in trait __is_reference for std::is_reference Ken Matsui
2023-06-12 22:39           ` [PATCH v6 3/6] c++: implement __is_function built-in trait Ken Matsui
2023-06-12 22:39           ` [PATCH v6 4/6] libstdc++: use new built-in trait __is_function for std::is_function Ken Matsui
2023-06-12 22:39           ` [PATCH v6 5/6] c++, libstdc++: implement __is_void built-in trait Ken Matsui
2023-06-12 22:39           ` [PATCH v6 6/6] libstdc++: make std::is_object dispatch to new built-in traits Ken Matsui
2023-06-12 22:47           ` [PATCH v7 0/6] c++, libstdc++: get std::is_object to " Ken Matsui
2023-06-12 22:47             ` [PATCH v7 1/6] c++: implement __is_reference built-in trait Ken Matsui
2023-06-20 16:06               ` Patrick Palka
2023-06-12 22:47             ` [PATCH v7 2/6] libstdc++: use new built-in trait __is_reference for std::is_reference Ken Matsui
2023-06-20 16:07               ` Patrick Palka
2023-06-12 22:47             ` [PATCH v7 3/6] c++: implement __is_function built-in trait Ken Matsui
2023-06-20 16:05               ` Patrick Palka
2023-06-12 22:47             ` [PATCH v7 4/6] libstdc++: use new built-in trait __is_function for std::is_function Ken Matsui
2023-06-20 16:05               ` Patrick Palka
2023-06-12 22:47             ` [PATCH v7 5/6] c++, libstdc++: implement __is_void built-in trait Ken Matsui
2023-06-20 16:00               ` Patrick Palka
2023-06-12 22:47             ` [PATCH v7 6/6] libstdc++: make std::is_object dispatch to new built-in traits Ken Matsui
2023-06-15 10:49             ` [PATCH v7 0/6] c++, libstdc++: get std::is_object to " Ken Matsui
2023-06-20 13:19               ` Ken Matsui
2023-06-20 15:32               ` Patrick Palka
2023-06-24 15:12                 ` Ken Matsui
2023-07-08  5:08                   ` [PATCH v8 " Ken Matsui
2023-07-08  5:08                     ` [PATCH v8 1/6] c++: implement __is_reference built-in trait Ken Matsui
2023-07-08  5:08                     ` [PATCH v8 2/6] libstdc++: use new built-in trait __is_reference for std::is_reference Ken Matsui
2023-07-12 10:08                       ` Jonathan Wakely
2023-07-08  5:08                     ` [PATCH v8 3/6] c++: implement __is_function built-in trait Ken Matsui
2023-07-08  5:08                     ` [PATCH v8 4/6] libstdc++: use new built-in trait __is_function for std::is_function Ken Matsui
2023-07-12 10:10                       ` Jonathan Wakely
2023-07-08  5:08                     ` [PATCH v8 5/6] c++, libstdc++: implement __is_void built-in trait Ken Matsui
2023-07-08  5:08                     ` [PATCH v8 6/6] libstdc++: make std::is_object dispatch to new built-in traits Ken Matsui
2023-07-13  2:33                     ` [PATCH v10 0/5] c++, libstdc++: Make " Ken Matsui
2023-07-13  2:33                       ` [PATCH v10 1/5] c++: Implement __is_reference built-in trait Ken Matsui
2023-07-13  2:33                       ` [PATCH v10 2/5] libstdc++: Use new built-in trait __is_reference for std::is_reference Ken Matsui
2023-07-13  2:56                         ` Ken Matsui
2023-09-04 15:00                           ` [PING][PATCH " Ken Matsui
2023-07-13  2:33                       ` [PATCH v10 3/5] c++: Implement __is_function built-in trait Ken Matsui
2023-07-13  2:41                         ` Ken Matsui
2023-08-22 19:52                         ` Patrick Palka
2023-09-04 15:00                           ` [PING][PATCH " Ken Matsui
2023-07-13  2:33                       ` [PATCH v10 4/5] libstdc++: Use new built-in trait __is_function for std::is_function Ken Matsui
2023-08-08 20:35                         ` Jonathan Wakely
2023-07-13  2:33                       ` [PATCH v10 5/5] libstdc++: Make std::is_object dispatch to new built-in traits Ken Matsui
2023-09-01 13:00                         ` [PING][PATCH " Ken Matsui

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=CAML+3pVfb80JUd3h_0+JmS-t8re_vWoQwuJJLmAFd_iJV6JyXw@mail.gmail.com \
    --to=kmatsui@cs.washington.edu \
    --cc=frs.dumont@gmail.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=libstdc++@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).