From patchwork Tue Jun 28 01:26:08 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Antoni Boucher X-Patchwork-Id: 55057 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id D20043852773 for ; Tue, 28 Jun 2022 01:26:40 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D20043852773 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1656379600; bh=IBfFHgSX5Nus0JoXVpAa8mdt5hwVmwua7dF6RnW7cPo=; h=Date:Subject:To:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:Cc:From; b=qgCkoSL0OGHiF8q6CQh3jis2i6+B4WFu2gr9L2cbavLZ3eMpkj9HN00OtsvPF5ODb ASlVmgVlKa9vf0+Gyb4Q5V7Vz1t7/fkKzmfizMWRNx7x7HxRTBg5L24iIzrNyIf1Fa xdkzADvm3LwUqX0Qd3yaIwLScsofZhuYaTEdCj9I= X-Original-To: gcc-patches@gcc.gnu.org Delivered-To: gcc-patches@gcc.gnu.org Received: from mail-b.sr.ht (mail-b.sr.ht [173.195.146.151]) by sourceware.org (Postfix) with ESMTPS id 6CF133857805 for ; Tue, 28 Jun 2022 01:26:11 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 6CF133857805 Received: from git.sr.ht (unknown [173.195.146.142]) by mail-b.sr.ht (Postfix) with ESMTPSA id 53F5B11EE64 for ; Tue, 28 Jun 2022 01:26:08 +0000 (UTC) Date: Tue, 28 Jun 2022 01:26:08 +0000 Subject: [PATCH gcc 0/1] [PATCH] target: Fix asm generation for AVX builtins when using -masm=intel [PR106095] MIME-Version: 1.0 Message-ID: <165637956824.13615.7247999336313533072-0@git.sr.ht> X-Mailer: git.sr.ht To: gcc-patches@gcc.gnu.org X-Spam-Status: No, score=-0.8 required=5.0 tests=BAYES_00, FREEMAIL_FORGED_REPLYTO, KAM_DMARC_STATUS, KAM_SHORT, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) 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-Patchwork-Original-From: ~antoyo via Gcc-patches From: Antoni Boucher Reply-To: ~antoyo Cc: ~antoyo Errors-To: gcc-patches-bounces+patchwork=sourceware.org@gcc.gnu.org Sender: "Gcc-patches" Hi. This fixes the following bug: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106095 It's the first time I work outside of the jit component, so please tell me if I forgot anything. Here are the results of running the test: === gcc Summary === # of expected passes 182481 # of unexpected failures 91 # of unexpected successes 20 # of expected failures 1475 # of unsupported tests 2535 === g++ Summary === # of expected passes 231596 # of unexpected failures 1 # of expected failures 2083 # of unsupported tests 9948 === jit Summary === # of expected passes 14542 # of unexpected failures 1 === libstdc++ Summary === # of expected passes 15538 # of expected failures 95 # of unsupported tests 653 === libgomp Summary === # of expected passes 5012 # of expected failures 33 # of unsupported tests 323 === libitm Summary === # of expected passes 44 # of expected failures 3 # of unsupported tests 1 === libatomic Summary === # of expected passes 54 It's the first time I run the whole testsuite, so I'm not sure if those failures are normal. I got more unexpected failures for the gcc tests than what is shown in https://gcc.gnu.org/pipermail/gcc- testresults/2022-June/764154.html. In any case, I get the same failures when running the testsuite on master. Perhaps my configure command is wrong? I used the following: ../../gcc/configure --enable-host-shared --enable- languages=c,jit,c++,lto --enable-checking=release --prefix=(pwd)/../install Thanks for the review. Antoni Boucher (1): target: Fix asm generation for AVX builtins when using -masm=intel [PR106095] gcc/config/i386/sse.md | 10 ++--- gcc/testsuite/gcc.target/i386/pr106095.c | 47 ++++++++++++++++++++++++ 2 files changed, 52 insertions(+), 5 deletions(-) create mode 100644 gcc/testsuite/gcc.target/i386/pr106095.c