From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2053 invoked by alias); 1 Jul 2014 10:07:12 -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 1995 invoked by uid 89); 1 Jul 2014 10:07:08 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-wi0-f175.google.com Received: from mail-wi0-f175.google.com (HELO mail-wi0-f175.google.com) (209.85.212.175) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Tue, 01 Jul 2014 10:07:04 +0000 Received: by mail-wi0-f175.google.com with SMTP id r20so7487367wiv.2 for ; Tue, 01 Jul 2014 03:07:01 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id; bh=bvTMzvxZv2KohtPNXeT9mBL9gxIzX7TUIrh7RJLyoJ4=; b=OzgSrdoi5oN7jqJgw9VCntR9/Z0vuns7teQWVjRAaB6kzjwD0YWva0fZWnQy+QIMHB mjT6QUa1pr5qa3AwanZx1CXtim83Cz9aDhW4vPhigmMKqfAhOxdv/afpiaZTU4WCbMaE RZNBa8SOe/8OQfOwBzKiq+HljjecdkHbudAWodKiZfM+uQavBER6L1+AIDoYC8ZvTQYQ Qa7gheAjUItP2OnYeKnbkkyFn29C+F0/xmDOeBuD91ljXtMZhxVVj4fsykPK8ACTGCxp Z6Wp3GllTTgtkxcUwn/f4kj8epJL5OY8/Ts9DrMLOzRyaxOiAyBrDI6SwecTyUkOMb3K QnNg== X-Gm-Message-State: ALoCoQmhv+EnPbFLBxYeuBvWD/hs2Zr+kZussws7zAXhdXhlcdnomm2hLJn/UqQZVjDIIj5ZjwA1 X-Received: by 10.181.13.137 with SMTP id ey9mr18667353wid.57.1404209221040; Tue, 01 Jul 2014 03:07:01 -0700 (PDT) Received: from gnx2647.cec-lab.gnb.st.com ([2a01:e35:2e1d:eaf0:210:75ff:fe1a:c986]) by mx.google.com with ESMTPSA id kr6sm47178017wjb.16.2014.07.01.03.06.59 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 01 Jul 2014 03:07:00 -0700 (PDT) From: Christophe Lyon To: gcc-patches@gcc.gnu.org Subject: [Patch ARM-AArch64/testsuite v2 00/21] Neon intrinsics executable tests Date: Tue, 01 Jul 2014 10:07:00 -0000 Message-Id: <1404209174-25364-1-git-send-email-christophe.lyon@linaro.org> X-IsSubscribed: yes X-SW-Source: 2014-07/txt/msg00022.txt.bz2 This patch series is an updated version of the series I sent here: https://gcc.gnu.org/ml/gcc-patches/2014-06/msg00532.html Compared to v1: - all tests moved from gcc.target/arm to gcc.target/aarch64 - README updated to make it obvious that these tests are execution-only - added README.neon-intrinsics in gcc.target/arm to indicate that these tests are shared with gcc.target/aarch64 - removed scan-asseembler directives from vadd.c test - moved vshl.c in the 1st patch since the README mentions it as an example where corner cases are tested - added ChangeLog entries OK for trunk? Thanks, Christophe. Christophe Lyon (21): Neon intrinsics execution tests initial framework. Add unary operators: vabs and vneg. Add binary operators: vadd, vand, vbic, veor, vorn, vorr, vsub. Add comparison operators: vceq, vcge, vcgt, vcle and vclt. Add comparison operators with floating-point operands: vcage, vcagt, vcale and cvalt. Add unary saturating operators: vqabs and vqneg. Add binary saturating operators: vqadd, vqsub. Add vabal tests. Add vabd tests. Add vabdl tests. Add vaddhn tests. Add vaddl tests. Add vaddw tests. Add vbsl tests. Add vclz tests. Add vdup and vmov tests. Add vld1_dup tests. Add vld2/vld3/vld4 tests. Add vld2_lane, vld3_lane and vld4_lane Add vmul tests. Add vuzp and vzip tests.