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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
* vim: set ts=8 sts=2 et sw=2 tw=80:
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef jit_shared_AtomicOperations_feeling_lucky_msvc_h
#define jit_shared_AtomicOperations_feeling_lucky_msvc_h
#include "mozilla/Assertions.h"
#include "mozilla/Types.h"
// Explicitly exclude tier-1 platforms.
#if ((defined(__x86_64__) || defined(_M_X64)) && defined(JS_CODEGEN_X64)) || \
((defined(__i386__) || defined(_M_IX86)) && defined(JS_CODEGEN_X86)) || \
(defined(__arm__) && defined(JS_CODEGEN_ARM)) || \
((defined(__aarch64__) || defined(_M_ARM64)) && defined(JS_CODEGEN_ARM64))
# error "Do not use this code on a tier-1 platform when a JIT is available"
#endif
#if !defined(_MSC_VER)
# error "This file only for Microsoft Visual C++"
#endif
// For overall documentation, see jit/AtomicOperations.h.
// Below, _ReadWriteBarrier is a compiler directive, preventing reordering of
// instructions and reuse of memory values across it in the compiler, but having
// no impact on what the CPU does.
// Note, here we use MSVC intrinsics directly. But MSVC supports a slightly
// higher level of function which uses the intrinsic when possible (8, 16, and
// 32-bit operations, and 64-bit operations on 64-bit systems) and otherwise
// falls back on CMPXCHG8B for 64-bit operations on 32-bit systems. We could be
// using those functions in many cases here (though not all). I have not done
// so because I don't yet know how far back those functions are supported.
// Note, _InterlockedCompareExchange takes the *new* value as the second
// argument and the *comparand* (expected old value) as the third argument.
inline bool js::jit::AtomicOperations::Initialize() {
// Nothing
return true;
}
inline void js::jit::AtomicOperations::ShutDown() {
// Nothing
}
inline bool js::jit::AtomicOperations::hasAtomic8() { return true; }
inline bool js::jit::AtomicOperations::isLockfree8() {
// The MSDN docs suggest very strongly that if code is compiled for Pentium
// or better the 64-bit primitives will be lock-free, see eg the "Remarks"
// secion of the page for _InterlockedCompareExchange64, currently here:
// https://msdn.microsoft.com/en-us/library/ttk2z1ws%28v=vs.85%29.aspx
//
// But I've found no way to assert that at compile time or run time, there
// appears to be no WinAPI is_lock_free() test.
return true;
}
inline void js::jit::AtomicOperations::fenceSeqCst() {
_ReadWriteBarrier();
#if defined(_M_IX86) || defined(_M_X64)
_mm_mfence();
#elif defined(_M_ARM64)
// MemoryBarrier is defined in winnt.h, which we don't want to include here.
// This expression is the expansion of MemoryBarrier.
__dmb(_ARM64_BARRIER_SY);
#else
# error "Unknown hardware for MSVC"
#endif
}
template <typename T>
inline T js::jit::AtomicOperations::loadSeqCst(T* addr) {
_ReadWriteBarrier();
T v = *addr;
_ReadWriteBarrier();
return v;
}
#ifdef _M_IX86
namespace js {
namespace jit {
# define MSC_LOADOP(T) \
template <> \
inline T AtomicOperations::loadSeqCst(T* addr) { \
_ReadWriteBarrier(); \
return (T)_InterlockedCompareExchange64((__int64 volatile*)addr, 0, 0); \
}
MSC_LOADOP(int64_t)
MSC_LOADOP(uint64_t)
# undef MSC_LOADOP
} // namespace jit
} // namespace js
#endif // _M_IX86
template <typename T>
inline void js::jit::AtomicOperations::storeSeqCst(T* addr, T val) {
_ReadWriteBarrier();
*addr = val;
fenceSeqCst();
}
#ifdef _M_IX86
namespace js {
namespace jit {
# define MSC_STOREOP(T) \
template <> \
inline void AtomicOperations::storeSeqCst(T* addr, T val) { \
_ReadWriteBarrier(); \
T oldval = *addr; \
for (;;) { \
T nextval = (T)_InterlockedCompareExchange64( \
(__int64 volatile*)addr, (__int64)val, (__int64)oldval); \
if (nextval == oldval) break; \
oldval = nextval; \
} \
_ReadWriteBarrier(); \
}
MSC_STOREOP(int64_t)
MSC_STOREOP(uint64_t)
# undef MSC_STOREOP
} // namespace jit
} // namespace js
#endif // _M_IX86
#define MSC_EXCHANGEOP(T, U, xchgop) \
template <> \
inline T AtomicOperations::exchangeSeqCst(T* addr, T val) { \
return (T)xchgop((U volatile*)addr, (U)val); \
}
#ifdef _M_IX86
# define MSC_EXCHANGEOP_CAS(T) \
template <> \
inline T AtomicOperations::exchangeSeqCst(T* addr, T val) { \
_ReadWriteBarrier(); \
T oldval = *addr; \
for (;;) { \
T nextval = (T)_InterlockedCompareExchange64( \
(__int64 volatile*)addr, (__int64)val, (__int64)oldval); \
if (nextval == oldval) break; \
oldval = nextval; \
} \
_ReadWriteBarrier(); \
return oldval; \
}
#endif // _M_IX86
namespace js {
namespace jit {
MSC_EXCHANGEOP(int8_t, char, _InterlockedExchange8)
MSC_EXCHANGEOP(uint8_t, char, _InterlockedExchange8)
MSC_EXCHANGEOP(int16_t, short, _InterlockedExchange16)
MSC_EXCHANGEOP(uint16_t, short, _InterlockedExchange16)
MSC_EXCHANGEOP(int32_t, long, _InterlockedExchange)
MSC_EXCHANGEOP(uint32_t, long, _InterlockedExchange)
#ifdef _M_IX86
MSC_EXCHANGEOP_CAS(int64_t)
MSC_EXCHANGEOP_CAS(uint64_t)
#else
MSC_EXCHANGEOP(int64_t, __int64, _InterlockedExchange64)
MSC_EXCHANGEOP(uint64_t, __int64, _InterlockedExchange64)
#endif
} // namespace jit
} // namespace js
#undef MSC_EXCHANGEOP
#undef MSC_EXCHANGEOP_CAS
#define MSC_CAS(T, U, cmpxchg) \
template <> \
inline T AtomicOperations::compareExchangeSeqCst(T* addr, T oldval, \
T newval) { \
return (T)cmpxchg((U volatile*)addr, (U)newval, (U)oldval); \
}
namespace js {
namespace jit {
MSC_CAS(int8_t, char, _InterlockedCompareExchange8)
MSC_CAS(uint8_t, char, _InterlockedCompareExchange8)
MSC_CAS(int16_t, short, _InterlockedCompareExchange16)
MSC_CAS(uint16_t, short, _InterlockedCompareExchange16)
MSC_CAS(int32_t, long, _InterlockedCompareExchange)
MSC_CAS(uint32_t, long, _InterlockedCompareExchange)
MSC_CAS(int64_t, __int64, _InterlockedCompareExchange64)
MSC_CAS(uint64_t, __int64, _InterlockedCompareExchange64)
} // namespace jit
} // namespace js
#undef MSC_CAS
#define MSC_FETCHADDOP(T, U, xadd) \
template <> \
inline T AtomicOperations::fetchAddSeqCst(T* addr, T val) { \
return (T)xadd((U volatile*)addr, (U)val); \
}
#define MSC_FETCHSUBOP(T) \
template <> \
inline T AtomicOperations::fetchSubSeqCst(T* addr, T val) { \
return fetchAddSeqCst(addr, (T)(0 - val)); \
}
#ifdef _M_IX86
# define MSC_FETCHADDOP_CAS(T) \
template <> \
inline T AtomicOperations::fetchAddSeqCst(T* addr, T val) { \
_ReadWriteBarrier(); \
T oldval = *addr; \
for (;;) { \
T nextval = (T)_InterlockedCompareExchange64((__int64 volatile*)addr, \
(__int64)(oldval + val), \
(__int64)oldval); \
if (nextval == oldval) break; \
oldval = nextval; \
} \
_ReadWriteBarrier(); \
return oldval; \
}
#endif // _M_IX86
namespace js {
namespace jit {
MSC_FETCHADDOP(int8_t, char, _InterlockedExchangeAdd8)
MSC_FETCHADDOP(uint8_t, char, _InterlockedExchangeAdd8)
MSC_FETCHADDOP(int16_t, short, _InterlockedExchangeAdd16)
MSC_FETCHADDOP(uint16_t, short, _InterlockedExchangeAdd16)
MSC_FETCHADDOP(int32_t, long, _InterlockedExchangeAdd)
MSC_FETCHADDOP(uint32_t, long, _InterlockedExchangeAdd)
#ifdef _M_IX86
MSC_FETCHADDOP_CAS(int64_t)
MSC_FETCHADDOP_CAS(uint64_t)
#else
MSC_FETCHADDOP(int64_t, __int64, _InterlockedExchangeAdd64)
MSC_FETCHADDOP(uint64_t, __int64, _InterlockedExchangeAdd64)
#endif
MSC_FETCHSUBOP(int8_t)
MSC_FETCHSUBOP(uint8_t)
MSC_FETCHSUBOP(int16_t)
MSC_FETCHSUBOP(uint16_t)
MSC_FETCHSUBOP(int32_t)
MSC_FETCHSUBOP(uint32_t)
MSC_FETCHSUBOP(int64_t)
MSC_FETCHSUBOP(uint64_t)
} // namespace jit
} // namespace js
#undef MSC_FETCHADDOP
#undef MSC_FETCHADDOP_CAS
#undef MSC_FETCHSUBOP
#define MSC_FETCHBITOPX(T, U, name, op) \
template <> \
inline T AtomicOperations::name(T* addr, T val) { \
return (T)op((U volatile*)addr, (U)val); \
}
#define MSC_FETCHBITOP(T, U, andop, orop, xorop) \
MSC_FETCHBITOPX(T, U, fetchAndSeqCst, andop) \
MSC_FETCHBITOPX(T, U, fetchOrSeqCst, orop) \
MSC_FETCHBITOPX(T, U, fetchXorSeqCst, xorop)
#ifdef _M_IX86
# define AND_OP &
# define OR_OP |
# define XOR_OP ^
# define MSC_FETCHBITOPX_CAS(T, name, OP) \
template <> \
inline T AtomicOperations::name(T* addr, T val) { \
_ReadWriteBarrier(); \
T oldval = *addr; \
for (;;) { \
T nextval = (T)_InterlockedCompareExchange64((__int64 volatile*)addr, \
(__int64)(oldval OP val), \
(__int64)oldval); \
if (nextval == oldval) break; \
oldval = nextval; \
} \
_ReadWriteBarrier(); \
return oldval; \
}
# define MSC_FETCHBITOP_CAS(T) \
MSC_FETCHBITOPX_CAS(T, fetchAndSeqCst, AND_OP) \
MSC_FETCHBITOPX_CAS(T, fetchOrSeqCst, OR_OP) \
MSC_FETCHBITOPX_CAS(T, fetchXorSeqCst, XOR_OP)
#endif
namespace js {
namespace jit {
MSC_FETCHBITOP(int8_t, char, _InterlockedAnd8, _InterlockedOr8,
_InterlockedXor8)
MSC_FETCHBITOP(uint8_t, char, _InterlockedAnd8, _InterlockedOr8,
_InterlockedXor8)
MSC_FETCHBITOP(int16_t, short, _InterlockedAnd16, _InterlockedOr16,
_InterlockedXor16)
MSC_FETCHBITOP(uint16_t, short, _InterlockedAnd16, _InterlockedOr16,
_InterlockedXor16)
MSC_FETCHBITOP(int32_t, long, _InterlockedAnd, _InterlockedOr, _InterlockedXor)
MSC_FETCHBITOP(uint32_t, long, _InterlockedAnd, _InterlockedOr, _InterlockedXor)
#ifdef _M_IX86
MSC_FETCHBITOP_CAS(int64_t)
MSC_FETCHBITOP_CAS(uint64_t)
#else
MSC_FETCHBITOP(int64_t, __int64, _InterlockedAnd64, _InterlockedOr64,
_InterlockedXor64)
MSC_FETCHBITOP(uint64_t, __int64, _InterlockedAnd64, _InterlockedOr64,
_InterlockedXor64)
#endif
} // namespace jit
} // namespace js
#undef MSC_FETCHBITOPX_CAS
#undef MSC_FETCHBITOPX
#undef MSC_FETCHBITOP_CAS
#undef MSC_FETCHBITOP
template <typename T>
inline T js::jit::AtomicOperations::loadSafeWhenRacy(T* addr) {
// This is also appropriate for double, int64, and uint64 on 32-bit
// platforms since there are no guarantees of access-atomicity.
return *addr;
}
template <typename T>
inline void js::jit::AtomicOperations::storeSafeWhenRacy(T* addr, T val) {
// This is also appropriate for double, int64, and uint64 on 32-bit
// platforms since there are no guarantees of access-atomicity.
*addr = val;
}
inline void js::jit::AtomicOperations::memcpySafeWhenRacy(void* dest,
const void* src,
size_t nbytes) {
MOZ_ASSERT(!((char*)dest <= (char*)src && (char*)src < (char*)dest + nbytes));
MOZ_ASSERT(!((char*)src <= (char*)dest && (char*)dest < (char*)src + nbytes));
::memcpy(dest, src, nbytes);
}
inline void js::jit::AtomicOperations::memmoveSafeWhenRacy(void* dest,
const void* src,
size_t nbytes) {
::memmove(dest, src, nbytes);
}
#endif // jit_shared_AtomicOperations_feeling_lucky_msvc_h
|