1 ;; Machine description for RISC-V atomic operations.
2 ;; Copyright (C) 2011-2024 Free Software Foundation, Inc.
3 ;; Contributed by Andrew Waterman (andrew@sifive.com).
4 ;; Based on MIPS target for GNU compiler.
6 ;; This file is part of GCC.
8 ;; GCC is free software; you can redistribute it and/or modify
9 ;; it under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation; either version 3, or (at your option)
13 ;; GCC is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ;; GNU General Public License for more details.
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with GCC; see the file COPYING3. If not see
20 ;; <http://www.gnu.org/licenses/>.
24 (define_insn "mem_thread_fence_ztso"
25 [(set (match_operand:BLK 0 "" "")
26 (unspec:BLK [(match_dup 0)] UNSPEC_MEMORY_BARRIER))
27 (match_operand:SI 1 "const_int_operand" "")] ;; model
30 enum memmodel model = (enum memmodel) INTVAL (operands[1]);
31 model = memmodel_base (model);
33 if (model == MEMMODEL_SEQ_CST)
34 return "fence\trw,rw";
38 [(set_attr "type" "atomic")
39 (set (attr "length") (const_int 4))])
41 ;; Atomic memory operations.
43 (define_insn "atomic_load_ztso<mode>"
44 [(set (match_operand:GPR 0 "register_operand" "=r")
46 [(match_operand:GPR 1 "memory_operand" "A")
47 (match_operand:SI 2 "const_int_operand")] ;; model
51 enum memmodel model = (enum memmodel) INTVAL (operands[2]);
52 model = memmodel_base (model);
54 if (model == MEMMODEL_SEQ_CST)
55 return "fence\trw,rw\;"
58 return "l<amo>\t%0,%1";
60 [(set_attr "type" "multi")
61 (set (attr "length") (const_int 12))])
63 (define_insn "atomic_store_ztso<mode>"
64 [(set (match_operand:GPR 0 "memory_operand" "=A")
66 [(match_operand:GPR 1 "reg_or_0_operand" "rJ")
67 (match_operand:SI 2 "const_int_operand")] ;; model
68 UNSPEC_ATOMIC_STORE))]
71 enum memmodel model = (enum memmodel) INTVAL (operands[2]);
72 model = memmodel_base (model);
74 if (model == MEMMODEL_SEQ_CST)
75 return "s<amo>\t%z1,%0\;"
78 return "s<amo>\t%z1,%0";
80 [(set_attr "type" "multi")
81 (set (attr "length") (const_int 8))])