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 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494
|
/**************************************************************************/
/* */
/* OCaml */
/* */
/* KC Sivaramakrishnan, Indian Institute of Technology, Madras */
/* Stephen Dolan, University of Cambridge */
/* */
/* Copyright 2016 Indian Institute of Technology, Madras */
/* Copyright 2016 University of Cambridge */
/* */
/* All rights reserved. This file is distributed under the terms of */
/* the GNU Lesser General Public License version 2.1, with the */
/* special exception on linking described in the file LICENSE. */
/* */
/**************************************************************************/
/* Platform-specific concurrency and memory primitives */
#ifndef CAML_PLAT_THREADS_H
#define CAML_PLAT_THREADS_H
#ifdef CAML_INTERNALS
#include <pthread.h>
#include <errno.h>
#include <string.h>
#include "config.h"
#include "mlvalues.h"
#include "sys.h"
#ifdef _MSC_VER
#include <intrin.h>
#endif
#if defined(MAP_ANON) && !defined(MAP_ANONYMOUS)
#define MAP_ANONYMOUS MAP_ANON
#endif
/* Hint for busy-waiting loops */
Caml_inline void cpu_relax(void) {
#ifdef __GNUC__
#if defined(__x86_64__) || defined(__i386__)
__asm__ volatile("pause" ::: "memory");
#elif defined(__aarch64__)
__asm__ volatile ("yield" ::: "memory");
#elif defined(__riscv)
/* Encoding of the pause instruction */
__asm__ volatile (".4byte 0x100000F");
#elif defined(__ppc64__)
__asm__ volatile ("or 1, 1, 1 # low priority");
__asm__ volatile ("or 2, 2, 2 # medium priority");
__asm__ volatile ("" ::: "memory");
#else
/* Just a compiler barrier */
__asm__ volatile ("" ::: "memory");
#endif
#elif defined(_MSC_VER)
/* It would be better to use YieldProcessor to have a portable implementation
but this would require windows.h which we can't include here (it would
conflict with caml/instruct.h on ATOM, for instance)
*/
#if defined(_M_IX86) || defined(_M_X64)
_mm_pause();
#endif
#endif
}
/* Atomic read-modify-write instructions, with full fences */
Caml_inline uintnat atomic_fetch_add_verify_ge0(atomic_uintnat* p, intnat v) {
uintnat result = atomic_fetch_add(p,v);
CAMLassert ((intnat)result > 0);
return result;
}
/* Warning: blocking functions.
Blocking functions are for use in the runtime outside of the
mutator, or when the domain lock is not held.
In order to use them inside the mutator and while holding the
domain lock, one must make sure that the wait is very short, and
that no deadlock can arise from the interaction with the domain
locks and the stop-the-world sections.
In particular one must not call [caml_plat_lock_blocking] on a
mutex while the domain lock is held:
- if any critical section of the mutex crosses an allocation, a
blocking section releasing the domain lock, or any other
potential STW section, nor
- if the same lock is acquired at any point using [Mutex.lock] or
[caml_plat_lock_non_blocking] on the same domain (circular
deadlock with the domain lock).
Hence, as a general rule, prefer [caml_plat_lock_non_blocking] to
lock a mutex when inside the mutator and holding the domain lock.
The domain lock must be held in order to call
[caml_plat_lock_non_blocking].
These functions never raise exceptions; errors are fatal. Thus, for
usages where bugs are susceptible to be introduced by users, the
functions from caml/sync.h should be used instead.
*/
typedef pthread_mutex_t caml_plat_mutex;
#define CAML_PLAT_MUTEX_INITIALIZER PTHREAD_MUTEX_INITIALIZER
CAMLextern void caml_plat_mutex_init(caml_plat_mutex*);
Caml_inline void caml_plat_lock_blocking(caml_plat_mutex*);
Caml_inline void caml_plat_lock_non_blocking(caml_plat_mutex*);
Caml_inline int caml_plat_try_lock(caml_plat_mutex*);
void caml_plat_assert_locked(caml_plat_mutex*);
void caml_plat_assert_all_locks_unlocked(void);
Caml_inline void caml_plat_unlock(caml_plat_mutex*);
void caml_plat_mutex_free(caml_plat_mutex*);
typedef pthread_cond_t caml_plat_cond;
#define CAML_PLAT_COND_INITIALIZER PTHREAD_COND_INITIALIZER
void caml_plat_cond_init(caml_plat_cond*);
void caml_plat_wait(caml_plat_cond*, caml_plat_mutex*); /* blocking */
void caml_plat_broadcast(caml_plat_cond*);
void caml_plat_signal(caml_plat_cond*);
void caml_plat_cond_free(caml_plat_cond*);
/* Futexes
A futex is an integer that can be waited on and woken, used to build other
synchronisation primitives. Either uses OS facilities directly, or a
condition variable fallback.
*/
typedef struct caml_plat_futex /* {
// this field is available regardless of implementation
caml_plat_futex_word value;
<possibly other fields>; ...
} */ caml_plat_futex;
typedef uint32_t caml_plat_futex_value;
typedef _Atomic caml_plat_futex_value caml_plat_futex_word;
/* Block while [futex] has the value [undesired], until woken by [wake_all()] */
void caml_plat_futex_wait(caml_plat_futex* futex,
caml_plat_futex_value undesired);
/* Wake all threads [wait()]-ing on [futex] */
void caml_plat_futex_wake_all(caml_plat_futex* futex);
/* Initialise the futex for the first time, use [CAML_PLAT_FUTEX_INITIALIZER] to
do this statically */
void caml_plat_futex_init(caml_plat_futex* ftx, caml_plat_futex_value value);
/* Deinitialise the futex; no-op if native futexes are used */
void caml_plat_futex_free(caml_plat_futex*);
/* [CAML_PLAT_FUTEX_FALLBACK] can be defined to use the condition variable
fallback, even if a futex implementation is available. */
#ifndef CAML_PLAT_FUTEX_FALLBACK
# if defined(_WIN32) \
|| (defined(__linux__) && defined(HAS_LINUX_FUTEX_H)) \
|| defined(__FreeBSD__) || defined(__OpenBSD__)
/* TODO We have implementations for these platforms, but they are
currently untested, so use the fallback instead.
|| defined(__NetBSD__) || defined(__DragonFly__) */
# else
/* Use the fallback on platforms that we do not have an OS-specific
implementation for, such as macOS. */
# define CAML_PLAT_FUTEX_FALLBACK
# endif
#endif
#ifdef CAML_PLAT_FUTEX_FALLBACK
struct caml_plat_futex {
caml_plat_futex_word value;
caml_plat_mutex mutex;
caml_plat_cond cond;
};
# define CAML_PLAT_FUTEX_INITIALIZER(value) \
{ (value), CAML_PLAT_MUTEX_INITIALIZER, CAML_PLAT_COND_INITIALIZER }
#else
struct caml_plat_futex {
caml_plat_futex_word value;
};
# define CAML_PLAT_FUTEX_INITIALIZER(value) { (value) }
#endif /* CAML_PLAT_FUTEX_FALLBACK */
/* Latches
A binary latch is a boolean value with a [wait()] operation. It has two
states, "released" and "unreleased" (or "set"). [latch_set()] can be used to
set the latch to unreleased, [latch_release()] can be used to release it, and
[latch_wait()] can be used from the unreleased state to block until
[latch_release()] is called.
[latch_set()]
+------------------------------------+
v |
UNRELEASED RELEASED
| ^
+-< unblock [latch_wait()] callers >-+
[latch_release()]
This type of object is also called a manual-reset event in Windows APIs, or
it can be considered a special case of Java's [CountDownLatch] or C++'s
[std::latch] with the counter capped at one.
*/
typedef caml_plat_futex caml_plat_binary_latch;
/* Released state */
#define Latch_released 0 /* must be zero, see barrier initialisation */
/* Unreleased state, no [latch_wait()] callers */
#define Latch_unreleased 1
/* Unreleased state, at least one [latch_wait()] caller */
#define Latch_contested 2
/* Initialise the latch to a released state */
#define CAML_PLAT_LATCH_INITIALIZER CAML_PLAT_FUTEX_INITIALIZER(Latch_released)
Caml_inline void caml_plat_latch_init(caml_plat_binary_latch* latch) {
caml_plat_futex_init(latch, Latch_released);
}
/* Release the latch, waking any waiters */
void caml_plat_latch_release(caml_plat_binary_latch*);
/* Block until released. This is no-op (but more expensive than checking with
[is_released()]) if the latch has already been released. */
void caml_plat_latch_wait(caml_plat_binary_latch*);
/* Check if a latch is released */
Caml_inline int caml_plat_latch_is_released(caml_plat_binary_latch* latch) {
return atomic_load_acquire(&latch->value) == Latch_released;
}
/* Check if a latch is unreleased */
Caml_inline int caml_plat_latch_is_set(caml_plat_binary_latch* latch) {
return !caml_plat_latch_is_released(latch);
}
/* Set the latch to unreleased */
Caml_inline void caml_plat_latch_set(caml_plat_binary_latch* latch) {
atomic_store_release(&latch->value, Latch_unreleased);
}
/* Barriers
A barrier is an object used to synchronise a variable number of
threads/parties. Each party arrives at the barrier, and only once all parties
have arrived can any threads leave the barrier. There are two variants: the
"single-sense" barrier must be manually reset before it can be reused,
whereas the "sense-reversing" barrier can be reused immediately after it has
been released.
| Operation | [caml_plat_barrier_*] function |
| |---------------+---------------------|
| | Single-sense | Sense-reversing |
|-----------|---------------+---------------------|
| Reset | [reset] | automatic at [flip] |
| Arrive | [arrive] | [arrive] |
| Check | [is_released] | [sense_has_flipped] |
| Block | [wait] | [wait_sense] |
| Release | [release] | [flip] |
The lifecycle is as follows:
Reset (1 thread) (other threads)
| |
+----------+------------+
|
Arrive (all threads)
|
| check arrival number
+----------+------------+
| |
Check or Block Release
(non-final threads) (final thread)
| |
Leaving the barrier after [Block] or a nonzero [Check] result synchronises
with the [Release] of the barrier from the final thread, which in turn
synchronises with the non-final threads at the time they [Arrive]d.
That is, on non-final threads, anything performed before [Check]/[Block] may
race with code in other threads that happens before they [Arrive], and
anything performed after [Arrive] is entirely unsynchronised by the barrier,
so may race with code in other threads that happens after they [Arrive]. In
particular, code between [Arrive] and [Check]/[Block] may race with code
before or after the barrier in all other threads. The final thread is the
exception, and may execute code after [Arrive] but before [Release] that will
still be synchronised by the barrier.
*/
typedef struct caml_plat_barrier {
caml_plat_futex futex;
atomic_uintnat arrived; /* includes sense bit */
} caml_plat_barrier;
/* This initialises both a single-sense and sense-reversing barrier, for
single-sense this is the released state ([Latch_released], which must be 0)
and for sense-reversing it is just a valid initialised state. */
#define CAML_PLAT_BARRIER_INITIALIZER \
{ CAML_PLAT_FUTEX_INITIALIZER(Latch_released), 0 }
typedef uintnat barrier_status;
#define BARRIER_SENSE_BIT 0x100000
/* Arrive at the barrier, returns the number of parties that have arrived at the
barrier (including this one); the caller should check whether it is the last
expected party to arrive, and release or flip the barrier if so.
In a sense-reversing barrier, this also encodes the current sense of the
barrier in [BARRIER_SENSE_BIT], which should be masked off if checking for
the last arrival. */
Caml_inline barrier_status caml_plat_barrier_arrive(caml_plat_barrier* barrier)
{
return 1 + atomic_fetch_add(&barrier->arrived, 1);
}
/* -- Single-sense --
[futex] is used as a binary latch. */
/* Reset the barrier to 0 arrivals, block new waiters */
Caml_inline void caml_plat_barrier_reset(caml_plat_barrier* barrier) {
caml_plat_latch_set(&barrier->futex);
atomic_store_release(&barrier->arrived, 0);
}
/* Check if the barrier has been released */
Caml_inline int caml_plat_barrier_is_released(caml_plat_barrier* barrier) {
return caml_plat_latch_is_released(&barrier->futex);
}
/* Release the barrier unconditionally, letting all parties through */
Caml_inline void caml_plat_barrier_release(caml_plat_barrier* barrier) {
caml_plat_latch_release(&barrier->futex);
}
/* Block until released */
Caml_inline void caml_plat_barrier_wait(caml_plat_barrier* barrier) {
caml_plat_latch_wait(&barrier->futex);
}
/* -- Sense-reversing -- */
/* Flip the sense of the barrier, releasing current waiters and
blocking new ones.
[current_sense] should be [(b & BARRIER_SENSE_BIT)] with [b] as
returned by [barrier_arrive()]. */
void caml_plat_barrier_flip(caml_plat_barrier*, barrier_status current_sense);
Caml_inline int
caml_plat_barrier_sense_has_flipped(caml_plat_barrier* barrier,
barrier_status current_sense)
{
return (atomic_load_acquire(&barrier->futex.value) & BARRIER_SENSE_BIT)
!= current_sense;
}
/* Block until flipped */
void caml_plat_barrier_wait_sense(caml_plat_barrier*,
barrier_status current_sense);
/* Spin-wait loops
We provide the macros [SPIN_WAIT], [SPIN_WAIT_NTIMES(N)] and
[SPIN_WAIT_BOUNDED] that expand to [for]-loop headers for spin-wait
loops. The latter two are expected to be used alongside OS-based
synchronisation (e.g. latches, barriers).
Example usage:
SPIN_WAIT {
if (condition_has_come_true()) {
break; // or return;
}
perform_useful_spin_work();
}
[SPIN_WAIT] spins for unbounded time, and should only be used when hashing
out contention over a short critical section that only one thread needs to
run, where more complex synchronisation would be too expensive and
unnecessary.
[SPIN_WAIT_NTIMES(N)] should be used with one of the [Max_spins_*] constants
defined below (though the N expression doesn't need to be a constant), it
loops the body up to N times and then ends, even if the condition hasn't come
true. Exactly how much spinning is optimal can be tricky and may warrant
profiling, with the caveat that it is also probably machine-dependent.
Typically, [Max_spins_long] iterations are only useful when there are exactly
2 domains, otherwise [Max_spins_short] is best to yield to OS synchronisation
as fast as possible.
[SPIN_WAIT_BOUNDED] expands to [SPIN_WAIT_NTIMES(Max_spins_medium)] and
should be used when there is useful work to do in the body of the loop.
*/
/* The exact values here are estimates based on data from a specific machine,
and shouldn't be focused on too much. */
#define Max_spins_long 1000
#define Max_spins_medium 300
#define Max_spins_short 30
#define SPIN_WAIT_NTIMES(N) \
unsigned CAML_GENSYM(spins) = 0; \
unsigned CAML_GENSYM(max_spins) = (N); \
for (; CAML_GENSYM(spins) < CAML_GENSYM(max_spins); \
cpu_relax(), ++CAML_GENSYM(spins))
#define SPIN_WAIT_BOUNDED SPIN_WAIT_NTIMES(Max_spins_medium)
#define SPIN_WAIT SPIN_WAIT_BACK_OFF(Max_spins_long)
/* [SPIN_WAIT_*] implementation details */
struct caml_plat_srcloc {
const char* file;
int line;
const char* function;
};
/* Start/continue backing off, returns the next [sleep_ns] */
CAMLextern unsigned caml_plat_spin_back_off(unsigned sleep_ns,
const struct caml_plat_srcloc* loc);
Caml_inline unsigned caml_plat_spin_step(unsigned spins,
unsigned max_spins,
const struct caml_plat_srcloc *loc) {
cpu_relax();
if (CAMLlikely(spins < max_spins)) {
return spins + 1;
} else {
/* [spins] becomes [sleep_ns] at this point, which remains greater than
[max_spins] */
return caml_plat_spin_back_off(spins, loc);
}
}
#define SPIN_WAIT_BACK_OFF(max_spins) \
unsigned CAML_GENSYM(spins) = 0; \
unsigned CAML_GENSYM(max_spins) = (max_spins); \
static const struct caml_plat_srcloc CAML_GENSYM(loc) = { \
__FILE__, __LINE__, __func__ \
}; \
for (; 1; CAML_GENSYM(spins) = caml_plat_spin_step( \
CAML_GENSYM(spins), CAML_GENSYM(max_spins), &CAML_GENSYM(loc)))
/* Memory management primitives (mmap) */
uintnat caml_mem_round_up_pages(uintnat size);
/* The size given to caml_mem_map and caml_mem_commit must be a multiple of
caml_plat_pagesize. The size given to caml_mem_unmap and caml_mem_decommit
must match the size given to caml_mem_map/caml_mem_commit for mem.
*/
void* caml_mem_map(uintnat size, int reserve_only);
void* caml_mem_commit(void* mem, uintnat size);
void caml_mem_decommit(void* mem, uintnat size);
void caml_mem_unmap(void* mem, uintnat size);
CAMLnoret void caml_plat_fatal_error(const char * action, int err);
Caml_inline void check_err(const char* action, int err)
{
if (err) caml_plat_fatal_error(action, err);
}
#ifdef DEBUG
CAMLextern CAMLthread_local int caml_lockdepth;
#define DEBUG_LOCK(m) (caml_lockdepth++)
#define DEBUG_UNLOCK(m) (caml_lockdepth--)
#else
#define DEBUG_LOCK(m)
#define DEBUG_UNLOCK(m)
#endif
Caml_inline void caml_plat_lock_blocking(caml_plat_mutex* m)
{
check_err("lock", pthread_mutex_lock(m));
DEBUG_LOCK(m);
}
Caml_inline int caml_plat_try_lock(caml_plat_mutex* m)
{
int r = pthread_mutex_trylock(m);
if (r == EBUSY) {
return 0;
} else {
check_err("try_lock", r);
DEBUG_LOCK(m);
return 1;
}
}
CAMLextern void caml_plat_lock_non_blocking_actual(caml_plat_mutex* m);
Caml_inline void caml_plat_lock_non_blocking(caml_plat_mutex* m)
{
if (!caml_plat_try_lock(m)) {
caml_plat_lock_non_blocking_actual(m);
}
}
Caml_inline void caml_plat_unlock(caml_plat_mutex* m)
{
DEBUG_UNLOCK(m);
check_err("unlock", pthread_mutex_unlock(m));
}
extern intnat caml_plat_pagesize;
extern intnat caml_plat_mmap_alignment;
#endif /* CAML_INTERNALS */
#endif /* CAML_PLATFORM_H */
|