public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r13-3431] RISC-V: Add type attribute for atomic instructions.
@ 2022-10-21  7:32 Kito Cheng
  0 siblings, 0 replies; only message in thread
From: Kito Cheng @ 2022-10-21  7:32 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:bdac4b47cbdac52c7082c02f54ed07197161cb4d

commit r13-3431-gbdac4b47cbdac52c7082c02f54ed07197161cb4d
Author: Monk Chiang <monk.chiang@sifive.com>
Date:   Fri Oct 21 13:01:59 2022 +0800

    RISC-V: Add type attribute for atomic instructions.
    
    gcc/ChangeLog:
    
            * config/riscv/riscv.md: Add atomic type attribute.
            * config/riscv/sync.md: Add atomic type for atomic instructions.

Diff:
---
 gcc/config/riscv/riscv.md |  2 +-
 gcc/config/riscv/sync.md  | 15 ++++++++++-----
 2 files changed, 11 insertions(+), 6 deletions(-)

diff --git a/gcc/config/riscv/riscv.md b/gcc/config/riscv/riscv.md
index b3654915fde..9384ced0447 100644
--- a/gcc/config/riscv/riscv.md
+++ b/gcc/config/riscv/riscv.md
@@ -317,7 +317,7 @@
   "unknown,branch,jump,call,load,fpload,store,fpstore,
    mtc,mfc,const,arith,logical,shift,slt,imul,idiv,move,fmove,fadd,fmul,
    fmadd,fdiv,fcmp,fcvt,fsqrt,multi,auipc,sfb_alu,nop,ghost,bitmanip,rotate,
-   rdvlenb,rdvl,vsetvl,vlde,vste,vldm,vstm,vlds,vsts,
+   atomic,rdvlenb,rdvl,vsetvl,vlde,vste,vldm,vstm,vlds,vsts,
    vldux,vldox,vstux,vstox,vldff,vldr,vstr,
    vialu,viwalu,vext,vicalu,vshift,vnshift,vicmp,
    vimul,vidiv,viwmul,vimuladd,viwmuladd,vimerge,vimov,
diff --git a/gcc/config/riscv/sync.md b/gcc/config/riscv/sync.md
index 7deb290d9dc..449f275e6a2 100644
--- a/gcc/config/riscv/sync.md
+++ b/gcc/config/riscv/sync.md
@@ -62,7 +62,8 @@
       UNSPEC_ATOMIC_STORE))]
   "TARGET_ATOMIC"
   "%F2amoswap.<amo>%A2 zero,%z1,%0"
-  [(set (attr "length") (const_int 8))])
+  [(set_attr "type" "atomic")
+   (set (attr "length") (const_int 8))])
 
 (define_insn "atomic_<atomic_optab><mode>"
   [(set (match_operand:GPR 0 "memory_operand" "+A")
@@ -73,7 +74,8 @@
 	 UNSPEC_SYNC_OLD_OP))]
   "TARGET_ATOMIC"
   "%F2amo<insn>.<amo>%A2 zero,%z1,%0"
-  [(set (attr "length") (const_int 8))])
+  [(set_attr "type" "atomic")
+   (set (attr "length") (const_int 8))])
 
 (define_insn "atomic_fetch_<atomic_optab><mode>"
   [(set (match_operand:GPR 0 "register_operand" "=&r")
@@ -86,7 +88,8 @@
 	 UNSPEC_SYNC_OLD_OP))]
   "TARGET_ATOMIC"
   "%F3amo<insn>.<amo>%A3 %0,%z2,%1"
-  [(set (attr "length") (const_int 8))])
+  [(set_attr "type" "atomic")
+   (set (attr "length") (const_int 8))])
 
 (define_insn "atomic_exchange<mode>"
   [(set (match_operand:GPR 0 "register_operand" "=&r")
@@ -98,7 +101,8 @@
 	(match_operand:GPR 2 "register_operand" "0"))]
   "TARGET_ATOMIC"
   "%F3amoswap.<amo>%A3 %0,%z2,%1"
-  [(set (attr "length") (const_int 8))])
+  [(set_attr "type" "atomic")
+   (set (attr "length") (const_int 8))])
 
 (define_insn "atomic_cas_value_strong<mode>"
   [(set (match_operand:GPR 0 "register_operand" "=&r")
@@ -112,7 +116,8 @@
    (clobber (match_scratch:GPR 6 "=&r"))]
   "TARGET_ATOMIC"
   "%F5 1: lr.<amo>%A5 %0,%1; bne %0,%z2,1f; sc.<amo>%A4 %6,%z3,%1; bnez %6,1b; 1:"
-  [(set (attr "length") (const_int 20))])
+  [(set_attr "type" "atomic")
+   (set (attr "length") (const_int 20))])
 
 (define_expand "atomic_compare_and_swap<mode>"
   [(match_operand:SI 0 "register_operand" "")   ;; bool output

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-10-21  7:32 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-21  7:32 [gcc r13-3431] RISC-V: Add type attribute for atomic instructions Kito Cheng

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