From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by sourceware.org (Postfix) with ESMTP id B95A3386184C for ; Mon, 28 Sep 2020 09:32:59 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org B95A3386184C Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-301-vZaA-_puO2K4UNAlsNOi_Q-1; Mon, 28 Sep 2020 05:32:57 -0400 X-MC-Unique: vZaA-_puO2K4UNAlsNOi_Q-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 752A91084CA2; Mon, 28 Sep 2020 09:32:56 +0000 (UTC) Received: from localhost (unknown [10.33.36.3]) by smtp.corp.redhat.com (Postfix) with ESMTP id 1FF2478822; Mon, 28 Sep 2020 09:32:55 +0000 (UTC) Date: Mon, 28 Sep 2020 10:32:55 +0100 From: Jonathan Wakely To: Patrick Palka Cc: gcc-patches@gcc.gnu.org, libstdc++@gcc.gnu.org Subject: Re: [PATCH 3/4] libstdc++: Add test that tracks range adaptors' sizes Message-ID: <20200928093255.GC3946@redhat.com> References: <20200928044854.46674-1-ppalka@redhat.com> <20200928044854.46674-3-ppalka@redhat.com> MIME-Version: 1.0 In-Reply-To: <20200928044854.46674-3-ppalka@redhat.com> X-Clacks-Overhead: GNU Terry Pratchett X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline X-Spam-Status: No, score=-13.8 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, KAM_SHORT, RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H5, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Sep 2020 09:33:01 -0000 On 28/09/20 00:48 -0400, Patrick Palka via Libstdc++ wrote: >libstdc++-v3/ChangeLog: > > * testsuite/std/ranges/adaptors/sizeof.cc: New test. OK. > .../testsuite/std/ranges/adaptors/sizeof.cc | 49 +++++++++++++++++++ > 1 file changed, 49 insertions(+) > create mode 100644 libstdc++-v3/testsuite/std/ranges/adaptors/sizeof.cc > >diff --git a/libstdc++-v3/testsuite/std/ranges/adaptors/sizeof.cc b/libstdc++-v3/testsuite/std/ranges/adaptors/sizeof.cc >new file mode 100644 >index 00000000000..5fb1ab7e4da >--- /dev/null >+++ b/libstdc++-v3/testsuite/std/ranges/adaptors/sizeof.cc >@@ -0,0 +1,49 @@ >+// Copyright (C) 2020 Free Software Foundation, Inc. >+// >+// This file is part of the GNU ISO C++ Library. This library is free >+// software; you can redistribute it and/or modify it under the >+// terms of the GNU General Public License as published by the >+// Free Software Foundation; either version 3, or (at your option) >+// any later version. >+ >+// This library is distributed in the hope that it will be useful, >+// but WITHOUT ANY WARRANTY; without even the implied warranty of >+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the >+// GNU General Public License for more details. >+ >+// You should have received a copy of the GNU General Public License along >+// with this library; see the file COPYING3. If not see >+// . >+ >+// { dg-options "-std=gnu++2a" } >+// { dg-do compile { target c++2a } } >+ >+#include >+#include >+ >+namespace ranges = std::ranges; >+ >+auto pred_f(int x) { return x%2 == 0; }; >+auto pred_l = [] (int x) { return x%2 == 0; }; >+ >+auto func_f(int x) { return x*x; } >+auto func_l = [] (int x) { return x*x; }; >+ >+using V = ranges::subrange; >+constexpr auto ptr = sizeof(int*); >+static_assert(sizeof(V) == 2*ptr); >+ >+static_assert(sizeof(ranges::take_view) == 4*ptr); >+static_assert(sizeof(ranges::drop_view) == 4*ptr); >+ >+static_assert(sizeof(ranges::filter_view) == 5*ptr); >+static_assert(sizeof(ranges::take_while_view) == 4*ptr); >+static_assert(sizeof(ranges::drop_while_view) == 5*ptr); >+static_assert(sizeof(ranges::transform_view) == 4*ptr); >+ >+static_assert(sizeof(ranges::filter_view) == 4*ptr); >+static_assert(sizeof(ranges::take_while_view) == 3*ptr); >+static_assert(sizeof(ranges::drop_while_view) == 4*ptr); >+static_assert(sizeof(ranges::transform_view) == 3*ptr); >+ >+static_assert(sizeof(ranges::split_view) == 5*ptr); >-- >2.28.0.618.g9bc233ae1c >