From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17410 invoked by alias); 27 Aug 2016 01:24:45 -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 17399 invoked by uid 89); 27 Aug 2016 01:24:45 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.4 required=5.0 tests=AWL,BAYES_20,RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy=power8, power7, initializations, 32bt X-HELO: gate.crashing.org Received: from gate.crashing.org (HELO gate.crashing.org) (63.228.1.57) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 27 Aug 2016 01:24:44 +0000 Received: from gate.crashing.org (localhost.localdomain [127.0.0.1]) by gate.crashing.org (8.14.1/8.13.8) with ESMTP id u7R1OegI021383; Fri, 26 Aug 2016 20:24:41 -0500 Received: (from segher@localhost) by gate.crashing.org (8.14.1/8.14.1/Submit) id u7R1OeMh021382; Fri, 26 Aug 2016 20:24:40 -0500 Date: Sat, 27 Aug 2016 01:24:00 -0000 From: Segher Boessenkool To: Michael Meissner , gcc-patches@gcc.gnu.org, David Edelsohn , Bill Schmidt Subject: Re: [PATCH], Patch #7, Add PowerPC vector initialization tests Message-ID: <20160827012439.GA20847@gate.crashing.org> References: <20160804043344.GA8391@ibm-tiger.the-meissners.org> <20160804150336.GA22744@gate.crashing.org> <20160808225520.GA29239@ibm-tiger.the-meissners.org> <20160811231517.GA2148@ibm-tiger.the-meissners.org> <20160819221754.GA28759@ibm-tiger.the-meissners.org> <20160819235939.GA21010@ibm-tiger.the-meissners.org> <20160826192950.GA5763@ibm-tiger.the-meissners.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160826192950.GA5763@ibm-tiger.the-meissners.org> User-Agent: Mutt/1.4.2.3i X-IsSubscribed: yes X-SW-Source: 2016-08/txt/msg01909.txt.bz2 On Fri, Aug 26, 2016 at 03:29:50PM -0400, Michael Meissner wrote: > These patches add more tests to the PowerPC vector initialization tests. Four > of the tests added (#4, #5, #8, and #9) just try to do a bunch of vector > initializations for the different vector type (char, short, float, and double). > > These other patches (#6, #7) test the code generated in paches #5 and #6. > > I have run tese tests on a big endian power7 system (with both 32-bt and 64-bit > tests runs), a big endian power8 system (just 64-bit tests), and a little > endian power8 system. There were no regressions. As these tests ok to > install? This is okay for trunk; one comment: > +/* { dg-final { scan-assembler "mtvsrd" } } */ This also matches mtvsrdd; if you don't want that, you can avoid it by writing it as {\mmtvsrd\M} (the {} instead of "" to avoid toothpickeritus). Thanks, Segher