public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH v2] gcc-13: aarch64: Document new cores
@ 2022-11-14 14:53 Philipp Tomsich
  2022-11-14 14:56 ` Kyrylo Tkachov
  0 siblings, 1 reply; 4+ messages in thread
From: Philipp Tomsich @ 2022-11-14 14:53 UTC (permalink / raw)
  To: gcc-patches; +Cc: Richard Sandiford, Kyrylo Tkachov, Philipp Tomsich

Document the new cores added recently:
 - ampere1a
 - cortex-x1c
 - cortex-a715
 - cortex-x3
 - neoverse-v2

Signed-off-by: Philipp Tomsich <philipp.tomsich@vrull.eu>
---

Changes in v2:
- Change capitalization of ARM to Arm.
- Add documentation for Cortex-X3 and Neoverse V2.

 htdocs/gcc-13/changes.html | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/htdocs/gcc-13/changes.html b/htdocs/gcc-13/changes.html
index 0daf921b..b82e198b 100644
--- a/htdocs/gcc-13/changes.html
+++ b/htdocs/gcc-13/changes.html
@@ -210,7 +210,16 @@ a work-in-progress.</p>
 <!-- .................................................................. -->
 <h2 id="targets">New Targets and Target Specific Improvements</h2>
 
-<!-- <h3 id="aarch64">AArch64</h3> -->
+<h3 id="aarch64">AArch64</h3>
+<ul>
+  <li>A number of new CPUs are supported through the <code>-mcpu</code> and
+  <code>-mtune</code> options (GCC identifiers in parentheses).
+    <ul>
+      <li>Ampere-1A (<code>ampere1a</code>).</li>
+      <li>ARM Cortex-X1C (<code>cortex-x1c</code>).</li>
+      <li>ARM Cortex-A715 (<code>cortex-a715</code>).</li>
+    </ul>
+</ul>
 
 <h3 id="amdgcn">AMD Radeon (GCN)</h3>
 <ul>
-- 
2.34.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: [PATCH v2] gcc-13: aarch64: Document new cores
  2022-11-14 14:53 [PATCH v2] gcc-13: aarch64: Document new cores Philipp Tomsich
@ 2022-11-14 14:56 ` Kyrylo Tkachov
  2022-11-14 14:57   ` Philipp Tomsich
  2022-11-14 15:03   ` Philipp Tomsich
  0 siblings, 2 replies; 4+ messages in thread
From: Kyrylo Tkachov @ 2022-11-14 14:56 UTC (permalink / raw)
  To: Philipp Tomsich, gcc-patches; +Cc: Richard Sandiford



> -----Original Message-----
> From: Philipp Tomsich <philipp.tomsich@vrull.eu>
> Sent: Monday, November 14, 2022 2:54 PM
> To: gcc-patches@gcc.gnu.org
> Cc: Richard Sandiford <Richard.Sandiford@arm.com>; Kyrylo Tkachov
> <Kyrylo.Tkachov@arm.com>; Philipp Tomsich <philipp.tomsich@vrull.eu>
> Subject: [PATCH v2] gcc-13: aarch64: Document new cores
> 
> Document the new cores added recently:
>  - ampere1a
>  - cortex-x1c
>  - cortex-a715
>  - cortex-x3
>  - neoverse-v2

Thanks, but I think the patch doesn't reflect those yet 😉
Ok with the entries added as discussed.
Thanks,
Kyirll

> 
> Signed-off-by: Philipp Tomsich <philipp.tomsich@vrull.eu>
> ---
> 
> Changes in v2:
> - Change capitalization of ARM to Arm.
> - Add documentation for Cortex-X3 and Neoverse V2.
> 
>  htdocs/gcc-13/changes.html | 11 ++++++++++-
>  1 file changed, 10 insertions(+), 1 deletion(-)
> 
> diff --git a/htdocs/gcc-13/changes.html b/htdocs/gcc-13/changes.html
> index 0daf921b..b82e198b 100644
> --- a/htdocs/gcc-13/changes.html
> +++ b/htdocs/gcc-13/changes.html
> @@ -210,7 +210,16 @@ a work-in-progress.</p>
>  <!-- .................................................................. -->
>  <h2 id="targets">New Targets and Target Specific Improvements</h2>
> 
> -<!-- <h3 id="aarch64">AArch64</h3> -->
> +<h3 id="aarch64">AArch64</h3>
> +<ul>
> +  <li>A number of new CPUs are supported through the <code>-
> mcpu</code> and
> +  <code>-mtune</code> options (GCC identifiers in parentheses).
> +    <ul>
> +      <li>Ampere-1A (<code>ampere1a</code>).</li>
> +      <li>ARM Cortex-X1C (<code>cortex-x1c</code>).</li>
> +      <li>ARM Cortex-A715 (<code>cortex-a715</code>).</li>
> +    </ul>
> +</ul>
> 
>  <h3 id="amdgcn">AMD Radeon (GCN)</h3>
>  <ul>
> --
> 2.34.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] gcc-13: aarch64: Document new cores
  2022-11-14 14:56 ` Kyrylo Tkachov
@ 2022-11-14 14:57   ` Philipp Tomsich
  2022-11-14 15:03   ` Philipp Tomsich
  1 sibling, 0 replies; 4+ messages in thread
From: Philipp Tomsich @ 2022-11-14 14:57 UTC (permalink / raw)
  To: Kyrylo Tkachov; +Cc: Richard Sandiford, gcc-patches

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

I’ll hold off pushing until these are on master.

On Mon 14. Nov 2022 at 15:56, Kyrylo Tkachov <Kyrylo.Tkachov@arm.com> wrote:

>
>
> > -----Original Message-----
> > From: Philipp Tomsich <philipp.tomsich@vrull.eu>
> > Sent: Monday, November 14, 2022 2:54 PM
> > To: gcc-patches@gcc.gnu.org
> > Cc: Richard Sandiford <Richard.Sandiford@arm.com>; Kyrylo Tkachov
> > <Kyrylo.Tkachov@arm.com>; Philipp Tomsich <philipp.tomsich@vrull.eu>
> > Subject: [PATCH v2] gcc-13: aarch64: Document new cores
> >
> > Document the new cores added recently:
> >  - ampere1a
> >  - cortex-x1c
> >  - cortex-a715
> >  - cortex-x3
> >  - neoverse-v2
>
> Thanks, but I think the patch doesn't reflect those yet 😉
> Ok with the entries added as discussed.
> Thanks,
> Kyirll
>
> >
> > Signed-off-by: Philipp Tomsich <philipp.tomsich@vrull.eu>
> > ---
> >
> > Changes in v2:
> > - Change capitalization of ARM to Arm.
> > - Add documentation for Cortex-X3 and Neoverse V2.
> >
> >  htdocs/gcc-13/changes.html | 11 ++++++++++-
> >  1 file changed, 10 insertions(+), 1 deletion(-)
> >
> > diff --git a/htdocs/gcc-13/changes.html b/htdocs/gcc-13/changes.html
> > index 0daf921b..b82e198b 100644
> > --- a/htdocs/gcc-13/changes.html
> > +++ b/htdocs/gcc-13/changes.html
> > @@ -210,7 +210,16 @@ a work-in-progress.</p>
> >  <!-- ..................................................................
> -->
> >  <h2 id="targets">New Targets and Target Specific Improvements</h2>
> >
> > -<!-- <h3 id="aarch64">AArch64</h3> -->
> > +<h3 id="aarch64">AArch64</h3>
> > +<ul>
> > +  <li>A number of new CPUs are supported through the <code>-
> > mcpu</code> and
> > +  <code>-mtune</code> options (GCC identifiers in parentheses).
> > +    <ul>
> > +      <li>Ampere-1A (<code>ampere1a</code>).</li>
> > +      <li>ARM Cortex-X1C (<code>cortex-x1c</code>).</li>
> > +      <li>ARM Cortex-A715 (<code>cortex-a715</code>).</li>
> > +    </ul>
> > +</ul>
> >
> >  <h3 id="amdgcn">AMD Radeon (GCN)</h3>
> >  <ul>
> > --
> > 2.34.1
>
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] gcc-13: aarch64: Document new cores
  2022-11-14 14:56 ` Kyrylo Tkachov
  2022-11-14 14:57   ` Philipp Tomsich
@ 2022-11-14 15:03   ` Philipp Tomsich
  1 sibling, 0 replies; 4+ messages in thread
From: Philipp Tomsich @ 2022-11-14 15:03 UTC (permalink / raw)
  To: Kyrylo Tkachov; +Cc: gcc-patches, Richard Sandiford

I squashed (so these are actually in the commit) and applied to master.
Philipp.

On Mon, 14 Nov 2022 at 15:56, Kyrylo Tkachov <Kyrylo.Tkachov@arm.com> wrote:
>
>
>
> > -----Original Message-----
> > From: Philipp Tomsich <philipp.tomsich@vrull.eu>
> > Sent: Monday, November 14, 2022 2:54 PM
> > To: gcc-patches@gcc.gnu.org
> > Cc: Richard Sandiford <Richard.Sandiford@arm.com>; Kyrylo Tkachov
> > <Kyrylo.Tkachov@arm.com>; Philipp Tomsich <philipp.tomsich@vrull.eu>
> > Subject: [PATCH v2] gcc-13: aarch64: Document new cores
> >
> > Document the new cores added recently:
> >  - ampere1a
> >  - cortex-x1c
> >  - cortex-a715
> >  - cortex-x3
> >  - neoverse-v2
>
> Thanks, but I think the patch doesn't reflect those yet 😉
> Ok with the entries added as discussed.
> Thanks,
> Kyirll
>
> >
> > Signed-off-by: Philipp Tomsich <philipp.tomsich@vrull.eu>
> > ---
> >
> > Changes in v2:
> > - Change capitalization of ARM to Arm.
> > - Add documentation for Cortex-X3 and Neoverse V2.
> >
> >  htdocs/gcc-13/changes.html | 11 ++++++++++-
> >  1 file changed, 10 insertions(+), 1 deletion(-)
> >
> > diff --git a/htdocs/gcc-13/changes.html b/htdocs/gcc-13/changes.html
> > index 0daf921b..b82e198b 100644
> > --- a/htdocs/gcc-13/changes.html
> > +++ b/htdocs/gcc-13/changes.html
> > @@ -210,7 +210,16 @@ a work-in-progress.</p>
> >  <!-- .................................................................. -->
> >  <h2 id="targets">New Targets and Target Specific Improvements</h2>
> >
> > -<!-- <h3 id="aarch64">AArch64</h3> -->
> > +<h3 id="aarch64">AArch64</h3>
> > +<ul>
> > +  <li>A number of new CPUs are supported through the <code>-
> > mcpu</code> and
> > +  <code>-mtune</code> options (GCC identifiers in parentheses).
> > +    <ul>
> > +      <li>Ampere-1A (<code>ampere1a</code>).</li>
> > +      <li>ARM Cortex-X1C (<code>cortex-x1c</code>).</li>
> > +      <li>ARM Cortex-A715 (<code>cortex-a715</code>).</li>
> > +    </ul>
> > +</ul>
> >
> >  <h3 id="amdgcn">AMD Radeon (GCN)</h3>
> >  <ul>
> > --
> > 2.34.1
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-11-14 15:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-14 14:53 [PATCH v2] gcc-13: aarch64: Document new cores Philipp Tomsich
2022-11-14 14:56 ` Kyrylo Tkachov
2022-11-14 14:57   ` Philipp Tomsich
2022-11-14 15:03   ` Philipp Tomsich

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).