public inbox for libstdc++@gcc.gnu.org
 help / color / mirror / Atom feed
[PATCH v2] libstdc++: Workaround for LLVM-61763 in ranges
 2023-10-21 11:18 UTC  (3+ messages)

[PATCH] libstdc++: testsuite: Enhance codecvt_unicode with tests for length()
 2023-10-21 11:14 UTC  (5+ messages)
` [PATCH v2] "

[committed] libstdc++: Fix formatting of filesystem directory iterators
 2023-10-21 10:54 UTC 

[PATCH v18 00/40] Optimize type traits performance
 2023-10-20 21:37 UTC  (186+ messages)
` [PATCH v19 "
  ` [PATCH v19 02/40] c-family, c++: Look up built-in traits through gperf
  ` [PATCH v19 04/40] c++: Implement __is_const built-in trait
  ` [PATCH v19 06/40] c++: Implement __is_volatile "
  ` [PATCH v19 09/40] libstdc++: Optimize is_array trait performance
  ` [PATCH v19 10/40] c++: Implement __is_unbounded_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 16/40] c++: Implement __is_member_pointer "
  ` [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 22/40] c++: Implement __is_reference "
  ` [PATCH v19 27/40] c++: Implement __remove_pointer "
  ` [PATCH v19 29/40] c++: Implement __is_pointer "
  ` [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 37/40] c++: Implement __is_signed "
  ` [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 v22 00/31] Optimize type traits performance
        ` [PATCH v22 01/31] c++: Sort built-in traits alphabetically
        ` [PATCH v22 02/31] c-family, c++: Look up built-in traits via identifier node
        ` [PATCH v22 03/31] c++: Accept the use of built-in trait identifiers
        ` [PATCH v22 04/31] c++: Implement __is_const built-in trait
        ` [PATCH v22 05/31] libstdc++: Optimize std::is_const compilation performance
        ` [PATCH v22 06/31] c++: Implement __is_volatile built-in trait
        ` [PATCH v22 07/31] libstdc++: Optimize std::is_volatile compilation performance
        ` [PATCH v22 08/31] c++: Implement __is_array built-in trait
        ` [PATCH v22 09/31] libstdc++: Optimize std::is_array compilation performance
        ` [PATCH v22 10/31] c++: Implement __is_unbounded_array built-in trait
        ` [PATCH v22 11/31] libstdc++: Optimize std::is_unbounded_array compilation performance
        ` [PATCH v22 12/31] c++: Implement __is_bounded_array built-in trait
        ` [PATCH v22 13/31] libstdc++: Optimize std::is_bounded_array compilation performance
        ` [PATCH v22 14/31] c++: Implement __is_scoped_enum built-in trait
        ` [PATCH v22 15/31] libstdc++: Optimize std::is_scoped_enum compilation performance
        ` [PATCH v22 16/31] c++: Implement __is_member_pointer built-in trait
        ` [PATCH v22 17/31] libstdc++: Optimize std::is_member_pointer compilation performance
        ` [PATCH v22 18/31] c++: Implement __is_member_function_pointer built-in trait
        ` [PATCH v22 19/31] libstdc++: Optimize std::is_member_function_pointer compilation performance
        ` [PATCH v22 20/31] c++: Implement __is_member_object_pointer built-in trait
        ` [PATCH v22 21/31] libstdc++: Optimize std::is_member_object_pointer compilation performance
        ` [PATCH v22 22/31] c++: Implement __is_reference built-in trait
        ` [PATCH v22 23/31] libstdc++: Optimize std::is_reference compilation performance
        ` [PATCH v22 24/31] c++: Implement __is_function built-in trait
        ` [PATCH v22 25/31] libstdc++: Optimize std::is_function compilation performance
        ` [PATCH v22 26/31] c++: Implement __is_object built-in trait
        ` [PATCH v22 27/31] libstdc++: Optimize std::is_object compilation performance
        ` [PATCH v22 28/31] c++: Implement __remove_pointer built-in trait
        ` [PATCH v22 29/31] libstdc++: Optimize std::remove_pointer compilation performance
        ` [PATCH v22 30/31] c++: Implement __is_pointer built-in trait
        ` [PATCH v22 31/31] libstdc++: Optimize std::is_pointer compilation performance
        ` [PATCH v23 00/33] Optimize type traits performance
          ` [PATCH v23 01/33] c++: Sort built-in traits alphabetically
          ` [PATCH v23 02/33] c-family, c++: Look up built-in traits via identifier node
          ` [PATCH v23 03/33] c++: Accept the use of built-in trait identifiers
          ` [PATCH v23 04/33] c++: Implement __is_const built-in trait
          ` [PATCH v23 05/33] libstdc++: Optimize std::is_const compilation performance
          ` [PATCH v23 06/33] c++: Implement __is_volatile built-in trait
          ` [PATCH v23 07/33] libstdc++: Optimize std::is_volatile compilation performance
          ` [PATCH v23 08/33] c++: Implement __is_array built-in trait
          ` [PATCH v23 09/33] libstdc++: Optimize std::is_array compilation performance
          ` [PATCH v23 10/33] c++: Implement __is_unbounded_array built-in trait
          ` [PATCH v23 11/33] libstdc++: Optimize std::is_unbounded_array compilation performance
          ` [PATCH v23 12/33] c++: Implement __is_bounded_array built-in trait
          ` [PATCH v23 13/33] libstdc++: Optimize std::is_bounded_array compilation performance
          ` [PATCH v23 14/33] c++: Implement __is_scoped_enum built-in trait
          ` [PATCH v23 15/33] libstdc++: Optimize std::is_scoped_enum compilation performance
          ` [PATCH v23 16/33] c++: Implement __is_member_pointer built-in trait
          ` [PATCH v23 17/33] libstdc++: Optimize std::is_member_pointer compilation performance
          ` [PATCH v23 18/33] c++: Implement __is_member_function_pointer built-in trait
          ` [PATCH v23 19/33] libstdc++: Optimize std::is_member_function_pointer compilation performance
          ` [PATCH v23 20/33] c++: Implement __is_member_object_pointer built-in trait
          ` [PATCH v23 21/33] libstdc++: Optimize std::is_member_object_pointer compilation performance
          ` [PATCH v23 22/33] c++: Implement __is_reference built-in trait
          ` [PATCH v23 23/33] libstdc++: Optimize std::is_reference compilation performance
          ` [PATCH v23 24/33] c++: Implement __is_function built-in trait
          ` [PATCH v23 25/33] libstdc++: Optimize std::is_function compilation performance
          ` [PATCH v23 26/33] c++: Implement __is_object built-in trait
          ` [PATCH v23 27/33] libstdc++: Optimize std::is_object compilation performance
          ` [PATCH v23 28/33] c++: Implement __remove_pointer built-in trait
          ` [PATCH v23 29/33] libstdc++: Optimize std::remove_pointer compilation performance
          ` [PATCH v23 30/33] c++: Implement __is_pointer built-in trait
          ` [PATCH v23 31/33] libstdc++: Optimize std::is_pointer compilation performance
          ` [PATCH v23 32/33] c++: Implement __is_invocable built-in trait
          ` [PATCH v23 33/33] libstdc++: Optimize std::is_invocable compilation performance
          ` [PATCH v24 00/33] Optimize type traits performance
            ` [PATCH v24 33/33] libstdc++: Optimize std::is_invocable compilation performance

[PATCH] libstdc++ Add cstdarg to freestanding
 2023-10-20 20:55 UTC  (7+ messages)

[PATCH] libstdc++: Workaround for LLVM-61763 in ranges
 2023-10-20 18:32 UTC  (3+ messages)

[pushed] libstdc++: add casts to from_chars in <charconv> [PR111883]
 2023-10-20 16:34 UTC 

[PATCH][_Hashtable] Fix merge
 2023-10-19 17:11 UTC  (3+ 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).