summaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/solaris2/kopensolaris-gnu/atomic.c
blob: 675a6d6ea79aa3bbf3989a4d66f4347d959b8fd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
/* Copyright (C) 2008 Free Software Foundation, Inc.
   This file is part of the GNU C Library.
   Contributed by David Bartley <dtbartle@csclub.uwaterloo.ca>, 2008.

   The GNU C Library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   The GNU C Library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with the GNU C Library; if not, write to the Free
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
   02111-1307 USA.  */

#include <sys/atomic.h>
#include <stdint.h>

/* This pulls in include/atomic.h rather than sysdeps/.../atomic.h.  */
#include <atomic.h>

/* membar_* */

void membar_enter (void)
{
  atomic_full_barrier ();
}

void membar_exit (void)
{
  atomic_full_barrier ();
}

void membar_producer (void)
{
  atomic_write_barrier ();
}

void membar_consumer (void)
{
  atomic_read_barrier ();
}

/* atomic_add_* */

void atomic_add_8 (volatile uint8_t *target, int8_t delta)
{
  atomic_add (target, delta);
}

void atomic_add_char (volatile unsigned char *target, signed char delta)
{
  atomic_add (target, delta);
}

void atomic_add_16 (volatile uint16_t *target, int16_t delta)
{
  atomic_add (target, delta);
}

void atomic_add_short (volatile unsigned short *target, short delta)
{
  atomic_add (target, delta);
}

void atomic_add_32 (volatile uint32_t *target, int32_t delta)
{
  atomic_add (target, delta);
}

void atomic_add_int (volatile unsigned int *target, int delta)
{
  atomic_add (target, delta);
}

void atomic_add_long (volatile unsigned long *target, long delta)
{
  atomic_add (target, delta);
}

void atomic_add_64 (volatile uint64_t *target, int64_t delta)
{
  atomic_add (target, delta);
}

void atomic_add_ptr (volatile void *target, ssize_t delta)
{
  atomic_add ((char **)target, delta);
}

uint8_t atomic_add_8_nv (volatile uint8_t *target, int8_t delta)
{
  return atomic_exchange_and_add (target, delta) + 1;
}

unsigned char atomic_add_char_nv (volatile unsigned char *target, signed char delta)
{
  return atomic_exchange_and_add (target, delta) + 1;
}

uint16_t atomic_add_16_nv (volatile uint16_t *target, int16_t delta)
{
  return atomic_exchange_and_add (target, delta) + 1;
}

unsigned short atomic_add_short_nv (volatile unsigned short *target, short delta)
{
  return atomic_exchange_and_add (target, delta) + 1;
}

uint32_t atomic_add_32_nv (volatile uint32_t *target, int32_t delta)
{
  return atomic_exchange_and_add (target, delta) + 1;
}

unsigned int atomic_add_int_nv (volatile unsigned int *target, int delta)
{
  return atomic_exchange_and_add (target, delta) + 1;
}

unsigned long atomic_add_long_nv (volatile unsigned long *target, long delta)
{
  return atomic_exchange_and_add (target, delta) + 1;
}

uint64_t atomic_add_64_nv (volatile uint64_t *target, int64_t delta)
{
  return atomic_exchange_and_add (target, delta) + 1;
}

void *atomic_add_ptr_nv (volatile void *target, ssize_t delta)
{
  return atomic_exchange_and_add ((char **)target, delta) + 1;
}

/* atomic_dec_* */

void atomic_dec_8 (volatile uint8_t *target)
{
  atomic_decrement (target);
}

void atomic_dec_uchar (volatile unsigned char *target)
{
  atomic_decrement (target);
}

void atomic_dec_16 (volatile uint16_t *target)
{
  atomic_decrement (target);
}

void atomic_dec_ushort (volatile unsigned short *target)
{
  atomic_decrement (target);
}

void atomic_dec_32 (volatile uint32_t *target)
{
  atomic_decrement (target);
}

void atomic_dec_uint (volatile unsigned int *target)
{
  atomic_decrement (target);
}

void atomic_dec_ulong (volatile unsigned long *target)
{
  atomic_decrement (target);
}

void atomic_dec_64 (volatile uint64_t *target)
{
  atomic_decrement (target);
}

uint8_t atomic_dec_8_nv (volatile uint8_t *target)
{
  return atomic_decrement_val (target) - 1;
}

unsigned char atomic_dec_uchar_nv (volatile unsigned char *target)
{
  return atomic_decrement_val (target) - 1;
}

uint16_t atomic_dec_16_nv (volatile uint16_t *target)
{
  return atomic_decrement_val (target) - 1;
}

unsigned short atomic_dec_ushort_nv (volatile unsigned short *target)
{
  return atomic_decrement_val (target) - 1;
}

uint32_t atomic_dec_32_nv (volatile uint32_t *target)
{
  return atomic_decrement_val (target) - 1;
}

unsigned int atomic_dec_uint_nv (volatile unsigned int *target)
{
  return atomic_decrement_val (target) - 1;
}

unsigned long atomic_dec_ulong_nv (volatile unsigned long *target)
{
  return atomic_decrement_val (target) - 1;
}

uint64_t atomic_dec_64_nv (volatile uint64_t *target)
{
  return atomic_decrement_val (target) - 1;
}