* add vulcan support to gas
@ 2016-06-07 11:56 Virendra Pathak
2016-06-07 13:10 ` Syed Faisal Akber
0 siblings, 1 reply; 9+ messages in thread
From: Virendra Pathak @ 2016-06-07 11:56 UTC (permalink / raw)
To: binutils; +Cc: Virendra Kumar Pathak, nickc
[-- Attachment #1: Type: text/plain, Size: 1147 bytes --]
Hi binutils group,
We have a patch for adding -mcpu=vulcan support to gas.
Broadcom's Vulcan is a armv8-a aarch64 served based processor.
We have also got company wide FSF agreement for contributing to
binutils project.
However, recently I read on this group that now gcc does not pass
-mcpu flag to binutils. GCC now passes -march flag to binutils.
I verified this by compiling a simple hello world inspecting the
assembler flags.
[https://gcc.gnu.org/ml/gcc-patches/2015-08/msg01106.html]
[https://sourceware.org/ml/binutils/2015-08/msg00169.html]
Keeping this in mind, do we still need to add -mcpu=vulcan support to
gas, given that many armv8-a vendors have done it?
Kindly guide me on this.
Please also find the patch (-mcpu=vulcan) attached with this mail for review.
Tested the patch with aarch64-linux-gnu cross build,
aarch64-unknown-linux-gnu native build and make check (ld,gdb,gas,binutils).
Also verified the new option via command line.
Thanks for your time.
gas/ChangeLog:
* config/tc-aarch64.c (aarch64_cpus): Add vulcan.
* doc/c-aarch64.texi : Document that vulcan is a valid processor name
with regards,
Virendra Pathak
[-- Attachment #2: 0001-aarch64-add-vulcan-support-to-gas.patch.txt --]
[-- Type: text/plain, Size: 1324 bytes --]
From 1eff9ab01a0bb18261a1f3255afc44b52217a6d0 Mon Sep 17 00:00:00 2001
From: Virendra Pathak <virendra.pathak@broadcom.com>
Date: Mon, 30 May 2016 04:21:50 -0700
Subject: [PATCH] aarch64: add vulcan support to gas
---
gas/config/tc-aarch64.c | 3 +++
gas/doc/c-aarch64.texi | 1 +
2 files changed, 4 insertions(+)
diff --git a/gas/config/tc-aarch64.c b/gas/config/tc-aarch64.c
index 415663b..21fe4b5 100644
--- a/gas/config/tc-aarch64.c
+++ b/gas/config/tc-aarch64.c
@@ -7762,6 +7762,9 @@ static const struct aarch64_cpu_option_table aarch64_cpus[] = {
{"qdf24xx", AARCH64_FEATURE (AARCH64_ARCH_V8,
AARCH64_FEATURE_CRC | AARCH64_FEATURE_CRYPTO),
"Qualcomm QDF24XX"},
+ {"vulcan", AARCH64_FEATURE (AARCH64_ARCH_V8,
+ AARCH64_FEATURE_CRC | AARCH64_FEATURE_CRYPTO),
+ "Broadcom Vulcan"},
{"thunderx", AARCH64_FEATURE (AARCH64_ARCH_V8,
AARCH64_FEATURE_CRC | AARCH64_FEATURE_CRYPTO),
"Cavium ThunderX"},
diff --git a/gas/doc/c-aarch64.texi b/gas/doc/c-aarch64.texi
index a193908..0156012 100644
--- a/gas/doc/c-aarch64.texi
+++ b/gas/doc/c-aarch64.texi
@@ -61,6 +61,7 @@ on the target processor. The following processor names are recognized:
@code{cortex-a72},
@code{exynos-m1},
@code{qdf24xx},
+@code{vulcan},
@code{thunderx},
@code{xgene1}
and
--
2.1.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: add vulcan support to gas
2016-06-07 11:56 add vulcan support to gas Virendra Pathak
@ 2016-06-07 13:10 ` Syed Faisal Akber
2016-06-07 23:29 ` Marcus Shawcroft
0 siblings, 1 reply; 9+ messages in thread
From: Syed Faisal Akber @ 2016-06-07 13:10 UTC (permalink / raw)
To: Virendra Pathak, binutils; +Cc: Virendra Kumar Pathak, nickc
Sent from my BlackBerry 10 smartphone.
Original Message
From: Virendra Pathak
Sent: Tuesday, June 7, 2016 04:56
To: binutils@sourceware.org
Cc: Virendra Kumar Pathak; nickc@redhat.com
Subject: add vulcan support to gas
Hi binutils group,
We have a patch for adding -mcpu=vulcan support to gas.
Broadcom's Vulcan is a armv8-a aarch64 served based processor.
We have also got company wide FSF agreement for contributing to
binutils project.
However, recently I read on this group that now gcc does not pass
-mcpu flag to binutils. GCC now passes -march flag to binutils.
I verified this by compiling a simple hello world inspecting the
assembler flags.
[https://gcc.gnu.org/ml/gcc-patches/2015-08/msg01106.html]
[https://sourceware.org/ml/binutils/2015-08/msg00169.html]
Keeping this in mind, do we still need to add -mcpu=vulcan support to
gas, given that many armv8-a vendors have done it?
Kindly guide me on this.
Please also find the patch (-mcpu=vulcan) attached with this mail for review.
Tested the patch with aarch64-linux-gnu cross build,
aarch64-unknown-linux-gnu native build and make check (ld,gdb,gas,binutils).
Also verified the new option via command line.
Thanks for your time.
gas/ChangeLog:
* config/tc-aarch64.c (aarch64_cpus): Add vulcan.
* doc/c-aarch64.texi : Document that vulcan is a valid processor name
with regards,
Virendra Pathak
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: add vulcan support to gas
2016-06-07 13:10 ` Syed Faisal Akber
@ 2016-06-07 23:29 ` Marcus Shawcroft
2016-06-08 5:36 ` Virendra Pathak
0 siblings, 1 reply; 9+ messages in thread
From: Marcus Shawcroft @ 2016-06-07 23:29 UTC (permalink / raw)
To: Syed Faisal Akber; +Cc: Virendra Pathak, binutils, Virendra Kumar Pathak, nickc
On 7 June 2016 at 14:10, Syed Faisal Akber <faisal@akber.net> wrote:
>
>
> Sent from my BlackBerry 10 smartphone.
> Original Message
> From: Virendra Pathak
> Sent: Tuesday, June 7, 2016 04:56
> To: binutils@sourceware.org
> Cc: Virendra Kumar Pathak; nickc@redhat.com
> Subject: add vulcan support to gas
>
> Hi binutils group,
>
> We have a patch for adding -mcpu=vulcan support to gas.
> Broadcom's Vulcan is a armv8-a aarch64 served based processor.
> We have also got company wide FSF agreement for contributing to
> binutils project.
>
> However, recently I read on this group that now gcc does not pass
> -mcpu flag to binutils. GCC now passes -march flag to binutils.
> I verified this by compiling a simple hello world inspecting the
> assembler flags.
> [https://gcc.gnu.org/ml/gcc-patches/2015-08/msg01106.html]
> [https://sourceware.org/ml/binutils/2015-08/msg00169.html]
>
> Keeping this in mind, do we still need to add -mcpu=vulcan support to
> gas, given that many armv8-a vendors have done it?
> Kindly guide me on this.
>
> Please also find the patch (-mcpu=vulcan) attached with this mail for review.
Hi, The patch appears to be missing ?
> Tested the patch with aarch64-linux-gnu cross build,
> aarch64-unknown-linux-gnu native build and make check (ld,gdb,gas,binutils).
> Also verified the new option via command line.
>
> Thanks for your time.
>
>
> gas/ChangeLog:
> * config/tc-aarch64.c (aarch64_cpus): Add vulcan.
> * doc/c-aarch64.texi : Document that vulcan is a valid processor name
The proposed changelog entry is missing the author line.
Thanks
/Marcus
>
>
> with regards,
> Virendra Pathak
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: add vulcan support to gas
2016-06-07 23:29 ` Marcus Shawcroft
@ 2016-06-08 5:36 ` Virendra Pathak
2016-06-08 5:49 ` Virendra Pathak
2016-06-08 8:00 ` Marcus Shawcroft
0 siblings, 2 replies; 9+ messages in thread
From: Virendra Pathak @ 2016-06-08 5:36 UTC (permalink / raw)
To: Marcus Shawcroft
Cc: Syed Faisal Akber, binutils, Virendra Kumar Pathak, nickc
[-- Attachment #1: Type: text/plain, Size: 2278 bytes --]
Hi Marcus,
1) I have attached the binutils patch in the first mail
(https://sourceware.org/ml/binutils/2016-06/msg00064.html)
Attaching in this mail too . Corresponding GCC patch is here
https://gcc.gnu.org/ml/gcc-patches/2016-06/msg00541.html
2) Added the author entry in the ChangeLog
gas/ChangeLog:
Virendra Pathak (virendra.pathak@broadcom.com)
* config/tc-aarch64.c (aarch64_cpus): Add vulcan.
* doc/c-aarch64.texi : Document that vulcan is a valid processor name
with regards,
Virendra Pathak
On Wed, Jun 8, 2016 at 4:58 AM, Marcus Shawcroft
<marcus.shawcroft@gmail.com> wrote:
> On 7 June 2016 at 14:10, Syed Faisal Akber <faisal@akber.net> wrote:
>>
>>
>> Sent from my BlackBerry 10 smartphone.
>> Original Message
>> From: Virendra Pathak
>> Sent: Tuesday, June 7, 2016 04:56
>> To: binutils@sourceware.org
>> Cc: Virendra Kumar Pathak; nickc@redhat.com
>> Subject: add vulcan support to gas
>>
>> Hi binutils group,
>>
>> We have a patch for adding -mcpu=vulcan support to gas.
>> Broadcom's Vulcan is a armv8-a aarch64 served based processor.
>> We have also got company wide FSF agreement for contributing to
>> binutils project.
>>
>> However, recently I read on this group that now gcc does not pass
>> -mcpu flag to binutils. GCC now passes -march flag to binutils.
>> I verified this by compiling a simple hello world inspecting the
>> assembler flags.
>> [https://gcc.gnu.org/ml/gcc-patches/2015-08/msg01106.html]
>> [https://sourceware.org/ml/binutils/2015-08/msg00169.html]
>>
>> Keeping this in mind, do we still need to add -mcpu=vulcan support to
>> gas, given that many armv8-a vendors have done it?
>> Kindly guide me on this.
>>
>> Please also find the patch (-mcpu=vulcan) attached with this mail for review.
>
> Hi, The patch appears to be missing ?
>
>
>> Tested the patch with aarch64-linux-gnu cross build,
>> aarch64-unknown-linux-gnu native build and make check (ld,gdb,gas,binutils).
>> Also verified the new option via command line.
>>
>> Thanks for your time.
>>
>>
>> gas/ChangeLog:
>> * config/tc-aarch64.c (aarch64_cpus): Add vulcan.
>> * doc/c-aarch64.texi : Document that vulcan is a valid processor name
>
> The proposed changelog entry is missing the author line.
>
> Thanks
> /Marcus
>
>>
>>
>> with regards,
>> Virendra Pathak
[-- Attachment #2: 0001-aarch64-add-vulcan-support-to-gas.patch.txt --]
[-- Type: text/plain, Size: 1324 bytes --]
From 1eff9ab01a0bb18261a1f3255afc44b52217a6d0 Mon Sep 17 00:00:00 2001
From: Virendra Pathak <virendra.pathak@broadcom.com>
Date: Mon, 30 May 2016 04:21:50 -0700
Subject: [PATCH] aarch64: add vulcan support to gas
---
gas/config/tc-aarch64.c | 3 +++
gas/doc/c-aarch64.texi | 1 +
2 files changed, 4 insertions(+)
diff --git a/gas/config/tc-aarch64.c b/gas/config/tc-aarch64.c
index 415663b..21fe4b5 100644
--- a/gas/config/tc-aarch64.c
+++ b/gas/config/tc-aarch64.c
@@ -7762,6 +7762,9 @@ static const struct aarch64_cpu_option_table aarch64_cpus[] = {
{"qdf24xx", AARCH64_FEATURE (AARCH64_ARCH_V8,
AARCH64_FEATURE_CRC | AARCH64_FEATURE_CRYPTO),
"Qualcomm QDF24XX"},
+ {"vulcan", AARCH64_FEATURE (AARCH64_ARCH_V8,
+ AARCH64_FEATURE_CRC | AARCH64_FEATURE_CRYPTO),
+ "Broadcom Vulcan"},
{"thunderx", AARCH64_FEATURE (AARCH64_ARCH_V8,
AARCH64_FEATURE_CRC | AARCH64_FEATURE_CRYPTO),
"Cavium ThunderX"},
diff --git a/gas/doc/c-aarch64.texi b/gas/doc/c-aarch64.texi
index a193908..0156012 100644
--- a/gas/doc/c-aarch64.texi
+++ b/gas/doc/c-aarch64.texi
@@ -61,6 +61,7 @@ on the target processor. The following processor names are recognized:
@code{cortex-a72},
@code{exynos-m1},
@code{qdf24xx},
+@code{vulcan},
@code{thunderx},
@code{xgene1}
and
--
2.1.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: add vulcan support to gas
2016-06-08 5:36 ` Virendra Pathak
@ 2016-06-08 5:49 ` Virendra Pathak
2016-06-08 8:00 ` Marcus Shawcroft
1 sibling, 0 replies; 9+ messages in thread
From: Virendra Pathak @ 2016-06-08 5:49 UTC (permalink / raw)
To: Marcus Shawcroft
Cc: Syed Faisal Akber, binutils, Virendra Kumar Pathak, nickc
[-- Attachment #1: Type: text/plain, Size: 2745 bytes --]
Please find the ChangeLog in the correct format.
gas/ChangeLog:
Virendra Pathak <virendra.pathak@broadcom.com>
* config/tc-aarch64.c (aarch64_cpus): Add vulcan.
* doc/c-aarch64.texi : Document that vulcan is a valid processor name
Thanks.
with regards,
Virendra Pathak
On Wed, Jun 8, 2016 at 11:05 AM, Virendra Pathak
<virendra.pathak@broadcom.com> wrote:
> Hi Marcus,
>
> 1) I have attached the binutils patch in the first mail
> (https://sourceware.org/ml/binutils/2016-06/msg00064.html)
> Attaching in this mail too . Corresponding GCC patch is here
> https://gcc.gnu.org/ml/gcc-patches/2016-06/msg00541.html
>
> 2) Added the author entry in the ChangeLog
>
> gas/ChangeLog:
> Virendra Pathak (virendra.pathak@broadcom.com)
> * config/tc-aarch64.c (aarch64_cpus): Add vulcan.
> * doc/c-aarch64.texi : Document that vulcan is a valid processor name
> with regards,
> Virendra Pathak
>
>
> On Wed, Jun 8, 2016 at 4:58 AM, Marcus Shawcroft
> <marcus.shawcroft@gmail.com> wrote:
>> On 7 June 2016 at 14:10, Syed Faisal Akber <faisal@akber.net> wrote:
>>>
>>>
>>> Sent from my BlackBerry 10 smartphone.
>>> Original Message
>>> From: Virendra Pathak
>>> Sent: Tuesday, June 7, 2016 04:56
>>> To: binutils@sourceware.org
>>> Cc: Virendra Kumar Pathak; nickc@redhat.com
>>> Subject: add vulcan support to gas
>>>
>>> Hi binutils group,
>>>
>>> We have a patch for adding -mcpu=vulcan support to gas.
>>> Broadcom's Vulcan is a armv8-a aarch64 served based processor.
>>> We have also got company wide FSF agreement for contributing to
>>> binutils project.
>>>
>>> However, recently I read on this group that now gcc does not pass
>>> -mcpu flag to binutils. GCC now passes -march flag to binutils.
>>> I verified this by compiling a simple hello world inspecting the
>>> assembler flags.
>>> [https://gcc.gnu.org/ml/gcc-patches/2015-08/msg01106.html]
>>> [https://sourceware.org/ml/binutils/2015-08/msg00169.html]
>>>
>>> Keeping this in mind, do we still need to add -mcpu=vulcan support to
>>> gas, given that many armv8-a vendors have done it?
>>> Kindly guide me on this.
>>>
>>> Please also find the patch (-mcpu=vulcan) attached with this mail for review.
>>
>> Hi, The patch appears to be missing ?
>>
>>
>>> Tested the patch with aarch64-linux-gnu cross build,
>>> aarch64-unknown-linux-gnu native build and make check (ld,gdb,gas,binutils).
>>> Also verified the new option via command line.
>>>
>>> Thanks for your time.
>>>
>>>
>>> gas/ChangeLog:
>>> * config/tc-aarch64.c (aarch64_cpus): Add vulcan.
>>> * doc/c-aarch64.texi : Document that vulcan is a valid processor name
>>
>> The proposed changelog entry is missing the author line.
>>
>> Thanks
>> /Marcus
>>
>>>
>>>
>>> with regards,
>>> Virendra Pathak
[-- Attachment #2: 0001-aarch64-add-vulcan-support-to-gas.patch.txt --]
[-- Type: text/plain, Size: 1324 bytes --]
From 1eff9ab01a0bb18261a1f3255afc44b52217a6d0 Mon Sep 17 00:00:00 2001
From: Virendra Pathak <virendra.pathak@broadcom.com>
Date: Mon, 30 May 2016 04:21:50 -0700
Subject: [PATCH] aarch64: add vulcan support to gas
---
gas/config/tc-aarch64.c | 3 +++
gas/doc/c-aarch64.texi | 1 +
2 files changed, 4 insertions(+)
diff --git a/gas/config/tc-aarch64.c b/gas/config/tc-aarch64.c
index 415663b..21fe4b5 100644
--- a/gas/config/tc-aarch64.c
+++ b/gas/config/tc-aarch64.c
@@ -7762,6 +7762,9 @@ static const struct aarch64_cpu_option_table aarch64_cpus[] = {
{"qdf24xx", AARCH64_FEATURE (AARCH64_ARCH_V8,
AARCH64_FEATURE_CRC | AARCH64_FEATURE_CRYPTO),
"Qualcomm QDF24XX"},
+ {"vulcan", AARCH64_FEATURE (AARCH64_ARCH_V8,
+ AARCH64_FEATURE_CRC | AARCH64_FEATURE_CRYPTO),
+ "Broadcom Vulcan"},
{"thunderx", AARCH64_FEATURE (AARCH64_ARCH_V8,
AARCH64_FEATURE_CRC | AARCH64_FEATURE_CRYPTO),
"Cavium ThunderX"},
diff --git a/gas/doc/c-aarch64.texi b/gas/doc/c-aarch64.texi
index a193908..0156012 100644
--- a/gas/doc/c-aarch64.texi
+++ b/gas/doc/c-aarch64.texi
@@ -61,6 +61,7 @@ on the target processor. The following processor names are recognized:
@code{cortex-a72},
@code{exynos-m1},
@code{qdf24xx},
+@code{vulcan},
@code{thunderx},
@code{xgene1}
and
--
2.1.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: add vulcan support to gas
2016-06-08 5:36 ` Virendra Pathak
2016-06-08 5:49 ` Virendra Pathak
@ 2016-06-08 8:00 ` Marcus Shawcroft
2016-06-09 8:55 ` Virendra Pathak
1 sibling, 1 reply; 9+ messages in thread
From: Marcus Shawcroft @ 2016-06-08 8:00 UTC (permalink / raw)
To: Virendra Pathak; +Cc: Syed Faisal Akber, binutils, Virendra Kumar Pathak, nickc
On 8 June 2016 at 06:35, Virendra Pathak <virendra.pathak@broadcom.com> wrote:
> Hi Marcus,
>
> 1) I have attached the binutils patch in the first mail
Hi,
Thanks for the patch, I have a couple of minor comments:
+ {"vulcan", AARCH64_FEATURE (AARCH64_ARCH_V8,
+ AARCH64_FEATURE_CRC | AARCH64_FEATURE_CRYPTO),
+ "Broadcom Vulcan"},
{"thunderx", AARCH64_FEATURE (AARCH64_ARCH_V8,
Please add vulcan in alphabetical order.
@code{qdf24xx},
+@code{vulcan},
@code{thunderx},
Likewise.
> 2) Added the author entry in the ChangeLog
>
> gas/ChangeLog:
> Virendra Pathak (virendra.pathak@broadcom.com)
> * config/tc-aarch64.c (aarch64_cpus): Add vulcan.
> * doc/c-aarch64.texi : Document that vulcan is a valid processor name
No space between before the ':', full stop at the end of the sentence.
Thanks
/Marcus
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: add vulcan support to gas
2016-06-08 8:00 ` Marcus Shawcroft
@ 2016-06-09 8:55 ` Virendra Pathak
2016-06-13 13:20 ` Nick Clifton
0 siblings, 1 reply; 9+ messages in thread
From: Virendra Pathak @ 2016-06-09 8:55 UTC (permalink / raw)
To: Marcus Shawcroft
Cc: Syed Faisal Akber, binutils, Virendra Kumar Pathak, nickc
[-- Attachment #1: Type: text/plain, Size: 1403 bytes --]
Hi Marcus,
Thanks for the review.
Please find the updated patch (attached with this mail) with vulcan
name in alphabetical order.
Also fixed the ChangeLog. Please review it.
gas/ChangeLog:
Virendra Pathak <virendra.pathak@broadcom.com>
* config/tc-aarch64.c (aarch64_cpus): Add vulcan.
* doc/c-aarch64.texi: Document that vulcan is a valid processor name.
Thanks.
with regards,
Virendra Pathak
On Wed, Jun 8, 2016 at 1:29 PM, Marcus Shawcroft
<marcus.shawcroft@gmail.com> wrote:
> On 8 June 2016 at 06:35, Virendra Pathak <virendra.pathak@broadcom.com> wrote:
>> Hi Marcus,
>>
>> 1) I have attached the binutils patch in the first mail
>
> Hi,
>
> Thanks for the patch, I have a couple of minor comments:
>
>
> + {"vulcan", AARCH64_FEATURE (AARCH64_ARCH_V8,
> + AARCH64_FEATURE_CRC | AARCH64_FEATURE_CRYPTO),
> + "Broadcom Vulcan"},
> {"thunderx", AARCH64_FEATURE (AARCH64_ARCH_V8,
>
> Please add vulcan in alphabetical order.
>
> @code{qdf24xx},
> +@code{vulcan},
> @code{thunderx},
>
> Likewise.
>
>> 2) Added the author entry in the ChangeLog
>>
>> gas/ChangeLog:
>> Virendra Pathak (virendra.pathak@broadcom.com)
>> * config/tc-aarch64.c (aarch64_cpus): Add vulcan.
>
>> * doc/c-aarch64.texi : Document that vulcan is a valid processor name
>
> No space between before the ':', full stop at the end of the sentence.
>
> Thanks
> /Marcus
[-- Attachment #2: 0001-aarch64-add-vulcan-support-to-gas.patch.txt --]
[-- Type: text/plain, Size: 1318 bytes --]
From f0c701ad956fcff7eadf8471a1e8e9d48251d3fb Mon Sep 17 00:00:00 2001
From: Virendra Pathak <virendra.pathak@broadcom.com>
Date: Mon, 30 May 2016 04:21:50 -0700
Subject: [PATCH] aarch64: add vulcan support to gas
---
gas/config/tc-aarch64.c | 3 +++
gas/doc/c-aarch64.texi | 1 +
2 files changed, 4 insertions(+)
diff --git a/gas/config/tc-aarch64.c b/gas/config/tc-aarch64.c
index 415663b..c9cd044 100644
--- a/gas/config/tc-aarch64.c
+++ b/gas/config/tc-aarch64.c
@@ -7765,6 +7765,9 @@ static const struct aarch64_cpu_option_table aarch64_cpus[] = {
{"thunderx", AARCH64_FEATURE (AARCH64_ARCH_V8,
AARCH64_FEATURE_CRC | AARCH64_FEATURE_CRYPTO),
"Cavium ThunderX"},
+ {"vulcan", AARCH64_FEATURE (AARCH64_ARCH_V8,
+ AARCH64_FEATURE_CRC | AARCH64_FEATURE_CRYPTO),
+ "Broadcom Vulcan"},
/* The 'xgene-1' name is an older name for 'xgene1', which was used
in earlier releases and is superseded by 'xgene1' in all
tools. */
diff --git a/gas/doc/c-aarch64.texi b/gas/doc/c-aarch64.texi
index a193908..5b95b1a 100644
--- a/gas/doc/c-aarch64.texi
+++ b/gas/doc/c-aarch64.texi
@@ -62,6 +62,7 @@ on the target processor. The following processor names are recognized:
@code{exynos-m1},
@code{qdf24xx},
@code{thunderx},
+@code{vulcan},
@code{xgene1}
and
@code{xgene2}.
--
2.1.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: add vulcan support to gas
2016-06-09 8:55 ` Virendra Pathak
@ 2016-06-13 13:20 ` Nick Clifton
2016-07-07 10:23 ` Richard Earnshaw (lists)
0 siblings, 1 reply; 9+ messages in thread
From: Nick Clifton @ 2016-06-13 13:20 UTC (permalink / raw)
To: Virendra Pathak, Marcus Shawcroft
Cc: Syed Faisal Akber, binutils, Virendra Kumar Pathak
Hi Virendra,
> gas/ChangeLog:
> Virendra Pathak <virendra.pathak@broadcom.com>
>
> * config/tc-aarch64.c (aarch64_cpus): Add vulcan.
> * doc/c-aarch64.texi: Document that vulcan is a valid processor name.
Approved and applied. Thanks for contributing this patch.
From your original posting:
> Keeping this in mind, do we still need to add -mcpu=vulcan support to
> gas, given that many armv8-a vendors have done it?
Yes. Assembly level programmers may wish to generate their own gas command
lines. Plus it is entirely possible that one day gcc might pass the -mcpu
option on to gas.
Cheers
Nick
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: add vulcan support to gas
2016-06-13 13:20 ` Nick Clifton
@ 2016-07-07 10:23 ` Richard Earnshaw (lists)
0 siblings, 0 replies; 9+ messages in thread
From: Richard Earnshaw (lists) @ 2016-07-07 10:23 UTC (permalink / raw)
To: Nick Clifton, Virendra Pathak, Marcus Shawcroft
Cc: Syed Faisal Akber, binutils, Virendra Kumar Pathak
On 13/06/16 14:20, Nick Clifton wrote:
> Yes. Assembly level programmers may wish to generate their own gas command
> lines. Plus it is entirely possible that one day gcc might pass the -mcpu
> option on to gas.
>
Unlikely. It would put too onerous a restriction on having the latest
version of GAS installed. If the compiler needs to support a new
instruction, then obviously GAS has to know how to handle it, but GAS
shouldn't have to know about every CPU that's available for each
architecture in order for the compiler to support them.
That doesn't mean that GAS can't recognize CPU names, just that the
compiler should avoid such a feature.
R.
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2016-07-07 10:23 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-07 11:56 add vulcan support to gas Virendra Pathak
2016-06-07 13:10 ` Syed Faisal Akber
2016-06-07 23:29 ` Marcus Shawcroft
2016-06-08 5:36 ` Virendra Pathak
2016-06-08 5:49 ` Virendra Pathak
2016-06-08 8:00 ` Marcus Shawcroft
2016-06-09 8:55 ` Virendra Pathak
2016-06-13 13:20 ` Nick Clifton
2016-07-07 10:23 ` Richard Earnshaw (lists)
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).