From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 7EA7E38460B4; Tue, 6 Apr 2021 10:06:19 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 7EA7E38460B4 From: "crazylht at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/99881] Regression compare -O2 -ftree-vectorize with -O2 on SKX/CLX Date: Tue, 06 Apr 2021 10:06:19 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 11.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: crazylht at gmail dot com X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- 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 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Apr 2021 10:06:19 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D99881 --- Comment #4 from Hongtao.liu --- (In reply to Richard Biener from comment #3) > But 2 element construction _should_ be cheap. What is missing is the move > cost from GPR to XMM regs (but we do not have a good idea whether the sou= rces > are memory, so it's not as clear-cut here either). >=20 > IMHO a better approach might be to up unaligned vector store/load costs? >=20 > For the testcase at hand why does a throughput of 1 pose a problem? Ther= e's > only one punpckldq instruction around? >=20 There're several lea/add(which also may use port 5) instructions around punckldq, considering that FAST LEA and Int ALU will be common in address computation, throughput of 1 for punckldq will be a bottleneck. refer to https://godbolt.org/z/hK9r5vTzd for original case > Note that for the case of non-loop vectorization of 'double' the two elem= ent > vector CTORs are common and important to handle cheaply. See also all the > discussion in PR98856=