public inbox for libstdc++@gcc.gnu.org
 help / color / mirror / Atom feed
[PATCH v16 00/39] Optimize type traits performance
 2023-10-17 11:28 UTC  (191+ messages)
` [PATCH v17 "
  ` [PATCH v17 02/39] c-family, c++: Look up built-in traits through gperf
  ` [PATCH v17 14/39] libstdc++: Optimize is_scoped_enum trait performance
  ` [PATCH v17 15/39] c++: Implement __is_member_pointer built-in trait
  ` [PATCH v17 19/39] c++: Implement __is_member_object_pointer "
  ` [PATCH v17 20/39] libstdc++: Optimize is_member_object_pointer trait performance
  ` [PATCH v17 22/39] libstdc++: Optimize is_reference "
  ` [PATCH v17 23/39] c++: Implement __is_function built-in trait
  ` [PATCH v17 24/39] libstdc++: Optimize is_function trait performance
  ` [PATCH v17 25/39] libstdc++: Optimize is_object "
  ` [PATCH v17 26/39] c++: Implement __remove_pointer built-in trait
  ` [PATCH v17 29/39] libstdc++: Optimize is_pointer trait performance
  ` [PATCH v17 30/39] c++, libstdc++: Implement __is_arithmetic built-in trait
  ` [PATCH v17 33/39] libstdc++: Optimize is_compound trait performance
  ` [PATCH v17 36/39] c++, libstdc++: Implement __is_signed built-in trait
  ` [PATCH v17 39/39] libstdc++: Optimize is_scalar trait performance
  ` [PATCH v18 00/40] Optimize type traits performance
    ` [PATCH v18 01/40] c++: Sort built-in traits alphabetically
    ` [PATCH v18 02/40] c-family, c++: Look up built-in traits through gperf
    ` [PATCH v18 03/40] c++: Accept the use of non-function-like built-in trait identifiers
    ` [PATCH v18 04/40] c++: Implement __is_const built-in trait
    ` [PATCH v18 05/40] libstdc++: Optimize is_const trait performance
    ` [PATCH v18 06/40] c++: Implement __is_volatile built-in trait
    ` [PATCH v18 07/40] libstdc++: Optimize is_volatile trait performance
    ` [PATCH v18 08/40] c++: Implement __is_array built-in trait
    ` [PATCH v18 09/40] libstdc++: Optimize is_array trait performance
    ` [PATCH v18 10/40] c++: Implement __is_unbounded_array built-in trait
    ` [PATCH v18 11/40] libstdc++: Optimize is_unbounded_array trait performance
    ` [PATCH v18 12/40] c++: Implement __is_bounded_array built-in trait
    ` [PATCH v18 13/40] libstdc++: Optimize is_bounded_array trait performance
    ` [PATCH v18 14/40] c++: Implement __is_scoped_enum built-in trait
    ` [PATCH v18 15/40] libstdc++: Optimize is_scoped_enum trait performance
    ` [PATCH v18 16/40] c++: Implement __is_member_pointer built-in trait
    ` [PATCH v18 17/40] libstdc++: Optimize is_member_pointer trait performance
    ` [PATCH v18 18/40] c++: Implement __is_member_function_pointer built-in trait
    ` [PATCH v18 19/40] libstdc++: Optimize is_member_function_pointer trait performance
    ` [PATCH v18 20/40] c++: Implement __is_member_object_pointer built-in trait
    ` [PATCH v18 21/40] libstdc++: Optimize is_member_object_pointer trait performance
    ` [PATCH v18 22/40] c++: Implement __is_reference built-in trait
    ` [PATCH v18 23/40] libstdc++: Optimize is_reference trait performance
    ` [PATCH v18 24/40] c++: Implement __is_function built-in trait
    ` [PATCH v18 25/40] libstdc++: Optimize is_function trait performance
    ` [PATCH v18 26/40] libstdc++: Optimize is_object "
    ` [PATCH v18 27/40] c++: Implement __remove_pointer built-in trait
    ` [PATCH v18 28/40] libstdc++: Optimize remove_pointer trait performance
    ` [PATCH v18 29/40] c++: Implement __is_pointer built-in trait
    ` [PATCH v18 30/40] libstdc++: Optimize is_pointer trait performance
    ` [PATCH v18 31/40] c++: Implement __is_arithmetic built-in trait
    ` [PATCH v18 32/40] libstdc++: Optimize is_arithmetic trait performance
    ` [PATCH v18 33/40] libstdc++: Optimize is_fundamental "
    ` [PATCH v18 34/40] libstdc++: Optimize is_compound "
    ` [PATCH v18 35/40] c++: Implement __is_unsigned built-in trait
    ` [PATCH v18 36/40] libstdc++: Optimize is_unsigned trait performance
    ` [PATCH v18 37/40] c++: Implement __is_signed built-in trait
    ` [PATCH v18 38/40] libstdc++: Optimize is_signed trait performance
    ` [PATCH v18 39/40] c++: Implement __is_scalar built-in trait
    ` [PATCH v18 40/40] libstdc++: Optimize is_scalar trait performance
    ` [PATCH v19 00/40] Optimize type traits performance
      ` [PATCH v19 01/40] c++: Sort built-in traits alphabetically
      ` [PATCH v19 02/40] c-family, c++: Look up built-in traits through gperf
      ` [PATCH v19 03/40] c++: Accept the use of built-in trait identifiers
      ` [PATCH v19 04/40] c++: Implement __is_const built-in trait
      ` [PATCH v19 05/40] libstdc++: Optimize is_const trait performance
      ` [PATCH v19 06/40] c++: Implement __is_volatile built-in trait
      ` [PATCH v19 07/40] libstdc++: Optimize is_volatile trait performance
      ` [PATCH v19 08/40] c++: Implement __is_array built-in trait
      ` [PATCH v19 09/40] libstdc++: Optimize is_array trait performance
      ` [PATCH v19 10/40] c++: Implement __is_unbounded_array built-in trait
      ` [PATCH v19 11/40] libstdc++: Optimize is_unbounded_array trait performance
      ` [PATCH v19 12/40] c++: Implement __is_bounded_array built-in trait
      ` [PATCH v19 13/40] libstdc++: Optimize is_bounded_array trait performance
      ` [PATCH v19 14/40] c++: Implement __is_scoped_enum built-in trait
      ` [PATCH v19 15/40] libstdc++: Optimize is_scoped_enum trait performance
      ` [PATCH v19 16/40] c++: Implement __is_member_pointer built-in trait
      ` [PATCH v19 17/40] libstdc++: Optimize is_member_pointer trait performance
      ` [PATCH v19 18/40] c++: Implement __is_member_function_pointer built-in trait
      ` [PATCH v19 19/40] libstdc++: Optimize is_member_function_pointer trait performance
      ` [PATCH v19 20/40] c++: Implement __is_member_object_pointer built-in trait
      ` [PATCH v19 21/40] libstdc++: Optimize is_member_object_pointer trait performance
      ` [PATCH v19 22/40] c++: Implement __is_reference built-in trait
      ` [PATCH v19 23/40] libstdc++: Optimize is_reference trait performance
      ` [PATCH v19 24/40] c++: Implement __is_function built-in trait
      ` [PATCH v19 25/40] libstdc++: Optimize is_function trait performance
      ` [PATCH v19 26/40] libstdc++: Optimize is_object "
      ` [PATCH v19 27/40] c++: Implement __remove_pointer built-in trait
      ` [PATCH v19 28/40] libstdc++: Optimize remove_pointer trait performance
      ` [PATCH v19 29/40] c++: Implement __is_pointer built-in trait
      ` [PATCH v19 30/40] libstdc++: Optimize is_pointer trait performance
      ` [PATCH v19 31/40] c++: Implement __is_arithmetic built-in trait
      ` [PATCH v19 32/40] libstdc++: Optimize is_arithmetic trait performance
      ` [PATCH v19 33/40] libstdc++: Optimize is_fundamental "
      ` [PATCH v19 34/40] libstdc++: Optimize is_compound "
      ` [PATCH v19 35/40] c++: Implement __is_unsigned built-in trait
      ` [PATCH v19 36/40] libstdc++: Optimize is_unsigned trait performance
      ` [PATCH v19 37/40] c++: Implement __is_signed built-in trait
      ` [PATCH v19 38/40] libstdc++: Optimize is_signed trait performance
      ` [PATCH v19 39/40] c++: Implement __is_scalar built-in trait
      ` [PATCH v19 40/40] libstdc++: Optimize is_scalar trait performance
      ` [PATCH v20 00/40] Optimize type traits performance
        ` [PATCH v20 01/40] c++: Sort built-in traits alphabetically
        ` [PATCH v20 02/40] c-family, c++: Look up built-in traits via identifier node
        ` [PATCH v20 03/40] c++: Accept the use of built-in trait identifiers
        ` [PATCH v20 04/40] c++: Implement __is_const built-in trait
        ` [PATCH v20 05/40] libstdc++: Optimize is_const trait performance
        ` [PATCH v20 06/40] c++: Implement __is_volatile built-in trait
        ` [PATCH v20 07/40] libstdc++: Optimize is_volatile trait performance
        ` [PATCH v20 08/40] c++: Implement __is_array built-in trait
        ` [PATCH v20 09/40] libstdc++: Optimize is_array trait performance
        ` [PATCH v20 10/40] c++: Implement __is_unbounded_array built-in trait
        ` [PATCH v20 11/40] libstdc++: Optimize is_unbounded_array trait performance
        ` [PATCH v20 12/40] c++: Implement __is_bounded_array built-in trait
        ` [PATCH v20 13/40] libstdc++: Optimize is_bounded_array trait performance
        ` [PATCH v20 14/40] c++: Implement __is_scoped_enum built-in trait
        ` [PATCH v20 15/40] libstdc++: Optimize is_scoped_enum trait performance
        ` [PATCH v20 16/40] c++: Implement __is_member_pointer built-in trait
        ` [PATCH v20 17/40] libstdc++: Optimize is_member_pointer trait performance
        ` [PATCH v20 18/40] c++: Implement __is_member_function_pointer built-in trait
        ` [PATCH v20 19/40] libstdc++: Optimize is_member_function_pointer trait performance
        ` [PATCH v20 20/40] c++: Implement __is_member_object_pointer built-in trait
        ` [PATCH v20 21/40] libstdc++: Optimize is_member_object_pointer trait performance
        ` [PATCH v20 22/40] c++: Implement __is_reference built-in trait
        ` [PATCH v20 23/40] libstdc++: Optimize is_reference trait performance
        ` [PATCH v20 24/40] c++: Implement __is_function built-in trait
        ` [PATCH v20 25/40] libstdc++: Optimize is_function trait performance
        ` [PATCH v20 26/40] libstdc++: Optimize is_object "
        ` [PATCH v20 27/40] c++: Implement __remove_pointer built-in trait
        ` [PATCH v20 28/40] libstdc++: Optimize remove_pointer trait performance
        ` [PATCH v20 29/40] c++: Implement __is_pointer built-in trait
        ` [PATCH v20 30/40] libstdc++: Optimize is_pointer trait performance
        ` [PATCH v20 31/40] c++: Implement __is_arithmetic built-in trait
        ` [PATCH v20 32/40] libstdc++: Optimize is_arithmetic trait performance
        ` [PATCH v20 33/40] libstdc++: Optimize is_fundamental "
        ` [PATCH v20 34/40] libstdc++: Optimize is_compound "
        ` [PATCH v20 35/40] c++: Implement __is_unsigned built-in trait
        ` [PATCH v20 36/40] libstdc++: Optimize is_unsigned trait performance
        ` [PATCH v20 37/40] c++: Implement __is_signed built-in trait
        ` [PATCH v20 38/40] libstdc++: Optimize is_signed trait performance
        ` [PATCH v20 39/40] c++: Implement __is_scalar built-in trait
        ` [PATCH v20 40/40] libstdc++: Optimize is_scalar trait performance
        ` [PATCH v21 00/30] Optimize type traits performance
          ` [PATCH v21 01/30] c-family, c++: Look up built-in traits via identifier node
          ` [PATCH v21 02/30] c++: Accept the use of built-in trait identifiers
          ` [PATCH v21 03/30] c++: Implement __is_const built-in trait
          ` [PATCH v21 04/30] libstdc++: Optimize std::is_const compilation performance
          ` [PATCH v21 05/30] c++: Implement __is_volatile built-in trait
          ` [PATCH v21 06/30] libstdc++: Optimize std::is_volatile compilation performance
          ` [PATCH v21 07/30] c++: Implement __is_array built-in trait
          ` [PATCH v21 08/30] libstdc++: Optimize std::is_array compilation performance
          ` [PATCH v21 09/30] c++: Implement __is_unbounded_array built-in trait
          ` [PATCH v21 10/30] libstdc++: Optimize std::is_unbounded_array compilation performance
          ` [PATCH v21 11/30] c++: Implement __is_bounded_array built-in trait
          ` [PATCH v21 12/30] libstdc++: Optimize std::is_bounded_array compilation performance
          ` [PATCH v21 13/30] c++: Implement __is_scoped_enum built-in trait
          ` [PATCH v21 14/30] libstdc++: Optimize std::is_scoped_enum compilation performance
          ` [PATCH v21 15/30] c++: Implement __is_member_pointer built-in trait
          ` [PATCH v21 16/30] libstdc++: Optimize std::is_member_pointer compilation performance
          ` [PATCH v21 17/30] c++: Implement __is_member_function_pointer built-in trait
          ` [PATCH v21 18/30] libstdc++: Optimize std::is_member_function_pointer compilation performance
          ` [PATCH v21 19/30] c++: Implement __is_member_object_pointer built-in trait
          ` [PATCH v21 20/30] libstdc++: Optimize std::is_member_object_pointer compilation performance
          ` [PATCH v21 21/30] c++: Implement __is_reference built-in trait
          ` [PATCH v21 22/30] libstdc++: Optimize std::is_reference compilation performance
          ` [PATCH v21 23/30] c++: Implement __is_function built-in trait
          ` [PATCH v21 24/30] libstdc++: Optimize std::is_function compilation performance
          ` [PATCH v21 25/30] c++: Implement __is_object built-in trait
          ` [PATCH v21 26/30] libstdc++: Optimize std::is_object compilation performance
          ` [PATCH v21 27/30] c++: Implement __remove_pointer built-in trait
          ` [PATCH v21 28/30] libstdc++: Optimize std::remove_pointer compilation performance
          ` [PATCH v21 29/30] c++: Implement __is_pointer built-in trait
          ` [PATCH v21 30/30] libstdc++: Optimize std::is_pointer compilation performance

[PATCH v2] libstdc++: Workaround for LLVM-61763 in ranges
 2023-10-16  3:55 UTC 

[PATCH] libstdc++: Workaround for LLVM-61763 in ranges
 2023-10-14  8:32 UTC  (2+ messages)

[PATCH 2/2] testsuite: Replace many dg-require-thread-fence with dg-require-atomic-exchange
 2023-10-12 22:23 UTC  (11+ messages)
        ` [PATCH v2 1/2] testsuite: Add dg-require-atomic-cmpxchg-word
          ` Ping: "
        ` [PATCH v2 2/2] testsuite: Replace many dg-require-thread-fence with dg-require-atomic-cmpxchg-word
          ` Ping: "

[PATCH][_Hashtable] Avoid redundant usage of rehash policy
 2023-10-12 17:02 UTC  (2+ messages)

[PATCH] libstdc++: Fix tr1/8_c_compatibility/cstdio/functions.cc regression with recent glibc
 2023-10-12 12:05 UTC  (2+ messages)

page:  |  | latest

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