public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [wwwdocs] gcc-13: riscv: Document the T-Head CPU support
@ 2023-02-24 11:19 Christoph Muellner
  2023-03-05 10:18 ` Kito Cheng
  0 siblings, 1 reply; 3+ messages in thread
From: Christoph Muellner @ 2023-02-24 11:19 UTC (permalink / raw)
  To: gcc-patches, Kito Cheng, Jim Wilson, Palmer Dabbelt,
	Andrew Waterman, Philipp Tomsich
  Cc: Christoph Müllner

From: Christoph Müllner <christoph.muellner@vrull.eu>

This patch documents the new T-Head CPU support for RISC-V.

Signed-off-by: Christoph Müllner <christoph.muellner@vrull.eu>
---
 htdocs/gcc-13/changes.html | 24 +++++++++++++++++++++++-
 1 file changed, 23 insertions(+), 1 deletion(-)

diff --git a/htdocs/gcc-13/changes.html b/htdocs/gcc-13/changes.html
index a803f501..ce5ba35c 100644
--- a/htdocs/gcc-13/changes.html
+++ b/htdocs/gcc-13/changes.html
@@ -490,7 +490,29 @@ a work-in-progress.</p>
 
 <h3 id="riscv">RISC-V</h3>
 <ul>
-    <li>New ISA extension support for zawrs.</li>
+  <li>New ISA extension support for Zawrs.</li>
+  <li>Support for the following vendor extensions has been added:
+    <ul>
+      <li>XTheadBa</li>
+      <li>XTheadBb</li>
+      <li>XTheadBs</li>
+      <li>XTheadCmo</li>
+      <li>XTheadCondMov</li>
+      <li>XTheadFMemIdx</li>
+      <li>XTheadFmv</li>
+      <li>XTheadInt</li>
+      <li>XTheadMac</li>
+      <li>XTheadMemIdx</li>
+      <li>XTheadMemPair</li>
+      <li>XTheadSync</li>
+    </ul>
+  </li>
+  <li>The following new CPUs are supported through the <code>-mcpu</code>
+      option (GCC identifiers in parentheses).
+    <ul>
+      <li>T-Head's XuanTie C906 (<code>thead-c906</code>).</li>
+    </ul>
+  </li>
 </ul>
 
 <!-- <h3 id="rx">RX</h3> -->
-- 
2.39.2


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

* Re: [wwwdocs] gcc-13: riscv: Document the T-Head CPU support
  2023-02-24 11:19 [wwwdocs] gcc-13: riscv: Document the T-Head CPU support Christoph Muellner
@ 2023-03-05 10:18 ` Kito Cheng
  2023-03-15  9:09   ` Philipp Tomsich
  0 siblings, 1 reply; 3+ messages in thread
From: Kito Cheng @ 2023-03-05 10:18 UTC (permalink / raw)
  To: Christoph Muellner
  Cc: gcc-patches, Kito Cheng, Jim Wilson, Palmer Dabbelt,
	Andrew Waterman, Philipp Tomsich

LGTM :)


On Fri, Feb 24, 2023 at 7:19 PM Christoph Muellner
<christoph.muellner@vrull.eu> wrote:
>
> From: Christoph Müllner <christoph.muellner@vrull.eu>
>
> This patch documents the new T-Head CPU support for RISC-V.
>
> Signed-off-by: Christoph Müllner <christoph.muellner@vrull.eu>
> ---
>  htdocs/gcc-13/changes.html | 24 +++++++++++++++++++++++-
>  1 file changed, 23 insertions(+), 1 deletion(-)
>
> diff --git a/htdocs/gcc-13/changes.html b/htdocs/gcc-13/changes.html
> index a803f501..ce5ba35c 100644
> --- a/htdocs/gcc-13/changes.html
> +++ b/htdocs/gcc-13/changes.html
> @@ -490,7 +490,29 @@ a work-in-progress.</p>
>
>  <h3 id="riscv">RISC-V</h3>
>  <ul>
> -    <li>New ISA extension support for zawrs.</li>
> +  <li>New ISA extension support for Zawrs.</li>
> +  <li>Support for the following vendor extensions has been added:
> +    <ul>
> +      <li>XTheadBa</li>
> +      <li>XTheadBb</li>
> +      <li>XTheadBs</li>
> +      <li>XTheadCmo</li>
> +      <li>XTheadCondMov</li>
> +      <li>XTheadFMemIdx</li>
> +      <li>XTheadFmv</li>
> +      <li>XTheadInt</li>
> +      <li>XTheadMac</li>
> +      <li>XTheadMemIdx</li>
> +      <li>XTheadMemPair</li>
> +      <li>XTheadSync</li>
> +    </ul>
> +  </li>
> +  <li>The following new CPUs are supported through the <code>-mcpu</code>
> +      option (GCC identifiers in parentheses).
> +    <ul>
> +      <li>T-Head's XuanTie C906 (<code>thead-c906</code>).</li>
> +    </ul>
> +  </li>
>  </ul>
>
>  <!-- <h3 id="rx">RX</h3> -->
> --
> 2.39.2
>

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

* Re: [wwwdocs] gcc-13: riscv: Document the T-Head CPU support
  2023-03-05 10:18 ` Kito Cheng
@ 2023-03-15  9:09   ` Philipp Tomsich
  0 siblings, 0 replies; 3+ messages in thread
From: Philipp Tomsich @ 2023-03-15  9:09 UTC (permalink / raw)
  To: Kito Cheng
  Cc: Christoph Muellner, gcc-patches, Kito Cheng, Jim Wilson,
	Palmer Dabbelt, Andrew Waterman

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

Applied to master, thanks!
Philipp.

On Sun, 5 Mar 2023 at 11:18, Kito Cheng <kito.cheng@gmail.com> wrote:

> LGTM :)
>
>
> On Fri, Feb 24, 2023 at 7:19 PM Christoph Muellner
> <christoph.muellner@vrull.eu> wrote:
> >
> > From: Christoph Müllner <christoph.muellner@vrull.eu>
> >
> > This patch documents the new T-Head CPU support for RISC-V.
> >
> > Signed-off-by: Christoph Müllner <christoph.muellner@vrull.eu>
> > ---
> >  htdocs/gcc-13/changes.html | 24 +++++++++++++++++++++++-
> >  1 file changed, 23 insertions(+), 1 deletion(-)
> >
> > diff --git a/htdocs/gcc-13/changes.html b/htdocs/gcc-13/changes.html
> > index a803f501..ce5ba35c 100644
> > --- a/htdocs/gcc-13/changes.html
> > +++ b/htdocs/gcc-13/changes.html
> > @@ -490,7 +490,29 @@ a work-in-progress.</p>
> >
> >  <h3 id="riscv">RISC-V</h3>
> >  <ul>
> > -    <li>New ISA extension support for zawrs.</li>
> > +  <li>New ISA extension support for Zawrs.</li>
> > +  <li>Support for the following vendor extensions has been added:
> > +    <ul>
> > +      <li>XTheadBa</li>
> > +      <li>XTheadBb</li>
> > +      <li>XTheadBs</li>
> > +      <li>XTheadCmo</li>
> > +      <li>XTheadCondMov</li>
> > +      <li>XTheadFMemIdx</li>
> > +      <li>XTheadFmv</li>
> > +      <li>XTheadInt</li>
> > +      <li>XTheadMac</li>
> > +      <li>XTheadMemIdx</li>
> > +      <li>XTheadMemPair</li>
> > +      <li>XTheadSync</li>
> > +    </ul>
> > +  </li>
> > +  <li>The following new CPUs are supported through the
> <code>-mcpu</code>
> > +      option (GCC identifiers in parentheses).
> > +    <ul>
> > +      <li>T-Head's XuanTie C906 (<code>thead-c906</code>).</li>
> > +    </ul>
> > +  </li>
> >  </ul>
> >
> >  <!-- <h3 id="rx">RX</h3> -->
> > --
> > 2.39.2
> >
>

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

end of thread, other threads:[~2023-03-15  9:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-24 11:19 [wwwdocs] gcc-13: riscv: Document the T-Head CPU support Christoph Muellner
2023-03-05 10:18 ` Kito Cheng
2023-03-15  9:09   ` 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).