public inbox for libstdc++@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH 0/2] Optimize is_bounded_array trait performance
@ 2023-09-12  2:38 Ken Matsui
  2023-09-12  2:38 ` [PATCH 1/2] c++: Implement __is_bounded_array built-in trait Ken Matsui
  2023-09-12  2:38 ` [PATCH 2/2] libstdc++: Optimize is_bounded_array trait performance Ken Matsui
  0 siblings, 2 replies; 3+ messages in thread
From: Ken Matsui @ 2023-09-12  2:38 UTC (permalink / raw)
  To: gcc-patches; +Cc: libstdc++, Ken Matsui

This patch series optimizes is_bounded_array trait
performance. The first patch implements __is_bounded_array
built-in trait. The second patch optimizes is_bounded_array
trait performance by using __is_bounded_array built-in trait
if available.

The performance improvement is shown in the following benchmark:

https://github.com/ken-matsui/gsoc23/blob/main/is_bounded_array_v.md#mon-sep-11-072608-pm-pdt-2023

Time:
Peak Memory Usage:
Total Memory Usage:

Ken Matsui (2):
  c++: Implement __is_bounded_array built-in trait
  libstdc++: Optimize is_bounded_array trait performance

 gcc/cp/constraint.cc                        |  3 ++
 gcc/cp/cp-trait.def                         |  1 +
 gcc/cp/semantics.cc                         |  4 +++
 gcc/testsuite/g++.dg/ext/has-builtin-1.C    |  3 ++
 gcc/testsuite/g++.dg/ext/is_bounded_array.C | 38 +++++++++++++++++++++
 libstdc++-v3/include/std/type_traits        |  5 +++
 6 files changed, 54 insertions(+)
 create mode 100644 gcc/testsuite/g++.dg/ext/is_bounded_array.C

-- 
2.42.0


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-09-12  2:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-12  2:38 [PATCH 0/2] Optimize is_bounded_array trait performance Ken Matsui
2023-09-12  2:38 ` [PATCH 1/2] c++: Implement __is_bounded_array built-in trait Ken Matsui
2023-09-12  2:38 ` [PATCH 2/2] libstdc++: Optimize is_bounded_array trait performance Ken Matsui

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