From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 85A6C3857803; Thu, 23 Feb 2023 14:04:00 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 85A6C3857803 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1677161040; bh=5eKrjvcHvlK2m2irShiikVm20YZyc+6KBPsnu21TSjQ=; h=From:To:Subject:Date:In-Reply-To:References:From; b=jLgqszgipb5X8pb/xEQ5wGQeespO0Txu0NxZeE2LY/hCdXkvyZ8Ldp1PWTWyVJkWi ILWsxNBmdy3jhaHCOYdb38QpmT+rK3LKBErhDARo/HXGP0BYVbNHI/nKxac+QFOT/q y+VimtUjCQnfrg1JKWkU9rdyccwCbTSfPkxIIq3A= 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 14:03:58 +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 #8 from CVS Commits --- The master branch has been updated by Matthias Kretz : https://gcc.gnu.org/g:2e29e2fbeb8936e5c85cefaf547cba42e17e137b commit r13-6298-g2e29e2fbeb8936e5c85cefaf547cba42e17e137b 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.=