From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 87633 invoked by alias); 12 Nov 2015 20:39:18 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 87623 invoked by uid 89); 12 Nov 2015 20:39:17 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=AWL,BAYES_05,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-lf0-f48.google.com Received: from mail-lf0-f48.google.com (HELO mail-lf0-f48.google.com) (209.85.215.48) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Thu, 12 Nov 2015 20:39:16 +0000 Received: by lfs39 with SMTP id 39so41256486lfs.3 for ; Thu, 12 Nov 2015 12:39:12 -0800 (PST) MIME-Version: 1.0 X-Received: by 10.25.15.22 with SMTP id e22mr8388369lfi.92.1447360752399; Thu, 12 Nov 2015 12:39:12 -0800 (PST) Received: by 10.114.71.114 with HTTP; Thu, 12 Nov 2015 12:39:12 -0800 (PST) In-Reply-To: <20151110183905.GA26185@ibm-tiger.the-meissners.org> References: <20151103202911.GA5304@ibm-tiger.the-meissners.org> <20151109003335.GA17170@ibm-tiger.the-meissners.org> <20151110183905.GA26185@ibm-tiger.the-meissners.org> Date: Thu, 12 Nov 2015 20:39:00 -0000 Message-ID: Subject: Re: [PATCH], Add power9 support to GCC, patch #8 (add integer multiply/add) From: David Edelsohn To: Michael Meissner , GCC Patches Content-Type: text/plain; charset=UTF-8 X-SW-Source: 2015-11/txt/msg01592.txt.bz2 On Tue, Nov 10, 2015 at 1:39 PM, Michael Meissner wrote: > This patch adds support for the MADDLD instruciton, which is a fused > multiply/add instruction for integers. At this time, it is for 64-bit > multiplies only. Eventually, we will restructure 128-bit multiply so that we > can use the 64x64 + 64 high bit varients. > > I have bootstrapped a compiler with this change in and there were no > regressions. Is it ok to apply to the trunk? > > [gcc] > 2015-11-10 Michael Meissner > > * config/rs6000/rs6000.h (TARGET_MADDLD): Add support for the ISA > 3.0 integer multiply-add instruction. > * config/rs6000/rs6000.md (mul3): Likewise. > > [gcc/testsuite] > 2015-11-10 Michael Meissner > > * gcc.target/powerpc/maddld.c: New test. Okay. Thanks, David