public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Matthew Wahab <matthew.wahab@foss.arm.com>
To: gcc-patches@gcc.gnu.org
Subject: Re: [PATCH 2/7][ARM] Multilib support for ARMv8.1.
Date: Mon, 07 Dec 2015 16:05:00 -0000	[thread overview]
Message-ID: <5665AE48.1000100@foss.arm.com> (raw)
In-Reply-To: <56572C13.4010909@foss.arm.com>

[-- Attachment #1: Type: text/plain, Size: 728 bytes --]

Ping. Updated patch attached.
Matthew

On 26/11/15 15:58, Matthew Wahab wrote:
> This patch sets up multilib support for ARMv8.1, treating it as a
> synonym for ARMv8. Since ARMv8.1 integer, FP or SIMD
> instructions are only generated for the new, instruction-specific
> instrinsics, mapping to ARMv8 rather than adding a new multilib variant
> is sufficient.
>
> Tested the series for arm-none-eabi with cross-compiled check-gcc on an
> ARMv8.1 emulator. Also tested arm-none-linux-gnueabihf with native
> bootstrap and make check.
>
> Ok for trunk?
> Matthew
>
> gcc/
> 2015-11-26  Matthew Wahab  <matthew.wahab@arm.com>
>
>      * config/arm/t-aprofile: Make "armv8.1-a" and "armv8.1-a+crc"
>      matches for "armv8-a".
>


[-- Attachment #2: 0002-ARM-Multilib-support-for-ARMv8.1.patch --]
[-- Type: text/x-patch, Size: 842 bytes --]

From c5c0f983e03135fe0cde29077353b429c0c502a2 Mon Sep 17 00:00:00 2001
From: Matthew Wahab <matthew.wahab@arm.com>
Date: Fri, 23 Oct 2015 09:37:12 +0100
Subject: [PATCH 2/7] [ARM] Multilib support for ARMv8.1

Change-Id: I65ee77768e22452ac15452cf6d4fdec3079ef852
---
 gcc/config/arm/t-aprofile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gcc/config/arm/t-aprofile b/gcc/config/arm/t-aprofile
index cf34161..b23f1bc 100644
--- a/gcc/config/arm/t-aprofile
+++ b/gcc/config/arm/t-aprofile
@@ -98,6 +98,8 @@ MULTILIB_MATCHES       += march?armv8-a=mcpu?xgene1
 
 # Arch Matches
 MULTILIB_MATCHES       += march?armv8-a=march?armv8-a+crc
+MULTILIB_MATCHES       += march?armv8-a=march?armv8.1-a
+MULTILIB_MATCHES       += march?armv8-a=march?armv8.1-a+crc
 
 # FPU matches
 MULTILIB_MATCHES       += mfpu?vfpv3-d16=mfpu?vfpv3
-- 
2.1.4


  reply	other threads:[~2015-12-07 16:05 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-26 15:58 [PATCH 1/7][ARM] Add " Matthew Wahab
2015-11-26 15:58 ` [PATCH 2/7][ARM] Multilib " Matthew Wahab
2015-12-07 16:05   ` Matthew Wahab [this message]
2015-12-10 10:43     ` Ramana Radhakrishnan
2015-11-26 16:01 ` [PATCH 3/7][ARM] Add patterns for new instructions Matthew Wahab
2015-12-07 16:07   ` Matthew Wahab
2015-12-10 10:44     ` Ramana Radhakrishnan
2015-11-26 16:02 ` [PATCH 4/7][ARM] Add ACLE feature macro for ARMv8.1 instructions Matthew Wahab
2015-12-07 16:07   ` Matthew Wahab
2015-12-08  7:45     ` Christian Bruel
2015-12-10 10:45       ` Ramana Radhakrishnan
2015-12-15 16:03         ` Matthew Wahab
2015-12-15 21:08           ` Ramana Radhakrishnan
2015-11-26 16:03 ` [PATCH 5/7][Testsuite] Support ARMv8.1 ARM tests Matthew Wahab
2015-11-26 16:10   ` Matthew Wahab
2015-11-27 13:45     ` Christophe Lyon
2015-11-27 17:11       ` Matthew Wahab
2015-11-27 17:42       ` Matthew Wahab
2015-12-07 16:10         ` Matthew Wahab
2015-12-09 15:02           ` Christophe Lyon
2015-12-10 10:49           ` Ramana Radhakrishnan
2015-12-15 16:07             ` Matthew Wahab
2015-12-15 21:05               ` Ramana Radhakrishnan
2015-11-26 16:05 ` [PATCH 6/7][ARM] Add ACLE intrinsics vqrdmlah and vqrdmlsh Matthew Wahab
2015-12-07 16:12   ` Matthew Wahab
2015-12-10 10:51     ` Ramana Radhakrishnan
2015-11-26 16:05 ` [PATCH 7/7][ARM] Add ACLE intrinsics vqrdmlah_lane and vqrdmlsh_lane Matthew Wahab
2015-11-26 16:10   ` Matthew Wahab
2015-12-07 16:13     ` Matthew Wahab
2015-12-10 10:51   ` Ramana Radhakrishnan
2015-11-27 14:09 ` [PATCH 1/7][ARM] Add support for ARMv8.1 Christophe Lyon
2015-11-27 17:11   ` Matthew Wahab
2015-11-27 17:56     ` Christophe Lyon
2015-12-07 16:04 ` Matthew Wahab
2015-12-10 10:43   ` Ramana Radhakrishnan
2015-12-10 11:02     ` Ramana Radhakrishnan
2015-12-16 11:20       ` Matthew Wahab
2015-12-16 11:28         ` Ramana Radhakrishnan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5665AE48.1000100@foss.arm.com \
    --to=matthew.wahab@foss.arm.com \
    --cc=gcc-patches@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).