From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 3661538515F1; Thu, 23 Feb 2023 16:31:12 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 3661538515F1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1677169872; bh=a8GX9bD0d1rrkEfWCjt/ZPcyLBXzsZ6tUMdXCWSMTxk=; h=From:To:Subject:Date:In-Reply-To:References:From; b=eJ/E9BQYveDLEOzUFdNkZaArF13RsAEcsOh0Sk7lpGYSj++dYh37mttmVedNggqvP 9ucV8rtLhI/TflgeTaWMlusbfArqn9LI5KEzfpFVkAC0Szu6BpEyuMSGArWjcQUCxH FvqbtaawJCove57kffTZ873YbX2xPyR3G4xy2zlI= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/108030] `std::experimental::simd` not inlined Date: Thu, 23 Feb 2023 16:31:11 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 12.2.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: mkretz at gcc dot gnu.org X-Bugzilla-Target-Milestone: 13.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D108030 --- Comment #10 from CVS Commits --- The releases/gcc-12 branch has been updated by Matthias Kretz : https://gcc.gnu.org/g:8e171d840584a564993201101cd1f2e920e7aecb commit r12-9200-g8e171d840584a564993201101cd1f2e920e7aecb Author: Matthias Kretz Date: Sat Jan 14 23:32:38 2023 +0100 libstdc++: Simplify three helper functions into one Broadcast is a very common function. This should reduce compile-time effort. Signed-off-by: Matthias Kretz libstdc++-v3/ChangeLog: PR libstdc++/108030 * include/experimental/bits/simd.h (__vector_broadcast): Implement via __vector_broadcast_impl instead of __call_with_n_evaluations + 2 lambdas. (__vector_broadcast_impl): New. (cherry picked from commit 2e29e2fbeb8936e5c85cefaf547cba42e17e137b)=