/usr/include/OpenImageIO/atomic.h is in libopenimageio-dev 1.7.17~dfsg0-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 | /*
Copyright 2008 Larry Gritz and the other authors and contributors.
All Rights Reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the software's owners nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
(This is the Modified BSD License)
*/
/////////////////////////////////////////////////////////////////////////
/// @file atomic.h
///
/// @brief Wrappers and utilities for atomics.
/////////////////////////////////////////////////////////////////////////
#ifndef OPENIMAGEIO_ATOMIC_H
#define OPENIMAGEIO_ATOMIC_H
#include "oiioversion.h"
#include "platform.h"
#if defined(_MSC_VER)
// N.B. including platform.h also included <windows.h>
# pragma intrinsic (_InterlockedExchangeAdd)
# pragma intrinsic (_InterlockedCompareExchange)
# pragma intrinsic (_InterlockedCompareExchange64)
# if defined(_WIN64)
# pragma intrinsic(_InterlockedExchangeAdd64)
# endif
// InterlockedExchangeAdd64 & InterlockedExchange64 are not available for XP
# if defined(_WIN32_WINNT) && _WIN32_WINNT <= 0x0501
inline long long
InterlockedExchangeAdd64 (volatile long long *Addend, long long Value)
{
long long Old;
do {
Old = *Addend;
} while (_InterlockedCompareExchange64(Addend, Old + Value, Old) != Old);
return Old;
}
inline long long
InterlockedExchange64 (volatile long long *Target, long long Value)
{
long long Old;
do {
Old = *Target;
} while (_InterlockedCompareExchange64(Target, Value, Old) != Old);
return Old;
}
# endif
#endif
#if defined(__GNUC__) && (defined(_GLIBCXX_ATOMIC_BUILTINS) || (__GNUC__ * 100 + __GNUC_MINOR__ >= 401))
# define USE_GCC_ATOMICS
# if !defined(__clang__) && (__GNUC__ * 100 + __GNUC_MINOR__ >= 408)
# define OIIO_USE_GCC_NEW_ATOMICS
# endif
#endif
OIIO_NAMESPACE_BEGIN
#if OIIO_USE_STDATOMIC
using std::memory_order;
#else
enum memory_order {
#if defined(OIIO_USE_GCC_NEW_ATOMICS)
memory_order_relaxed = __ATOMIC_RELAXED,
memory_order_consume = __ATOMIC_CONSUME,
memory_order_acquire = __ATOMIC_ACQUIRE,
memory_order_release = __ATOMIC_RELEASE,
memory_order_acq_rel = __ATOMIC_ACQ_REL,
memory_order_seq_cst = __ATOMIC_SEQ_CST
#else
memory_order_relaxed,
memory_order_consume,
memory_order_acquire,
memory_order_release,
memory_order_acq_rel,
memory_order_seq_cst
#endif
};
#endif
/// Atomic version of: r = *at, *at += x, return r
/// For each of several architectures.
inline int
atomic_exchange_and_add (volatile int *at, int x,
memory_order order = memory_order_seq_cst)
{
#ifdef NOTHREADS
int r = *at; *at += x; return r;
#elif defined(OIIO_USE_GCC_NEW_ATOMICS)
return __atomic_fetch_add (at, x, order);
#elif defined(USE_GCC_ATOMICS)
return __sync_fetch_and_add ((int *)at, x);
#elif defined(_MSC_VER)
// Windows
return _InterlockedExchangeAdd ((volatile LONG *)at, x);
#else
# error No atomics on this platform.
#endif
}
inline long long
atomic_exchange_and_add (volatile long long *at, long long x,
memory_order order = memory_order_seq_cst)
{
#ifdef NOTHREADS
long long r = *at; *at += x; return r;
#elif defined(OIIO_USE_GCC_NEW_ATOMICS)
return __atomic_fetch_add (at, x, order);
#elif defined(USE_GCC_ATOMICS)
return __sync_fetch_and_add (at, x);
#elif defined(_MSC_VER)
// Windows
# if defined(_WIN64)
return _InterlockedExchangeAdd64 ((volatile LONGLONG *)at, x);
# else
return InterlockedExchangeAdd64 ((volatile LONGLONG *)at, x);
# endif
#else
# error No atomics on this platform.
#endif
}
/// Atomic version of: r = *at, *at &= x, return r
/// For each of several architectures.
inline int
atomic_exchange_and_and (volatile int *at, int x,
memory_order order = memory_order_seq_cst)
{
#ifdef NOTHREADS
int r = *at; *at &= x; return r;
#elif defined(OIIO_USE_GCC_NEW_ATOMICS)
return __atomic_fetch_and (at, x, order);
#elif defined(USE_GCC_ATOMICS)
return __sync_fetch_and_and ((int *)at, x);
#elif defined(_MSC_VER)
// Windows
return _InterlockedAnd ((volatile LONG *)at, x);
#else
# error No atomics on this platform.
#endif
}
inline long long
atomic_exchange_and_and (volatile long long *at, long long x,
memory_order order = memory_order_seq_cst)
{
#ifdef NOTHREADS
long long r = *at; *at &= x; return r;
#elif defined(OIIO_USE_GCC_NEW_ATOMICS)
return __atomic_fetch_and (at, x, order);
#elif defined(USE_GCC_ATOMICS)
return __sync_fetch_and_and (at, x);
#elif defined(_MSC_VER)
// Windows
# if defined(_WIN64)
return _InterlockedAnd64 ((volatile LONGLONG *)at, x);
# else
return InterlockedAnd64 ((volatile LONGLONG *)at, x);
# endif
#else
# error No atomics on this platform.
#endif
}
/// Atomic version of: r = *at, *at |= x, return r
/// For each of several architectures.
inline int
atomic_exchange_and_or (volatile int *at, int x,
memory_order order = memory_order_seq_cst)
{
#ifdef NOTHREADS
int r = *at; *at |= x; return r;
#elif defined(OIIO_USE_GCC_NEW_ATOMICS)
return __atomic_fetch_or (at, x, order);
#elif defined(USE_GCC_ATOMICS)
return __sync_fetch_and_or ((int *)at, x);
#elif defined(_MSC_VER)
// Windows
return _InterlockedOr ((volatile LONG *)at, x);
#else
# error No atomics on this platform.
#endif
}
inline long long
atomic_exchange_and_or (volatile long long *at, long long x,
memory_order order = memory_order_seq_cst)
{
#ifdef NOTHREADS
long long r = *at; *at |= x; return r;
#elif defined(OIIO_USE_GCC_NEW_ATOMICS)
return __atomic_fetch_or (at, x, order);
#elif defined(USE_GCC_ATOMICS)
return __sync_fetch_and_or (at, x);
#elif defined(_MSC_VER)
// Windows
# if defined(_WIN64)
return _InterlockedOr64 ((volatile LONGLONG *)at, x);
# else
return InterlockedOr64 ((volatile LONGLONG *)at, x);
# endif
#else
# error No atomics on this platform.
#endif
}
/// Atomic version of: r = *at, *at ^= x, return r
/// For each of several architectures.
inline int
atomic_exchange_and_xor (volatile int *at, int x,
memory_order order = memory_order_seq_cst)
{
#ifdef NOTHREADS
int r = *at; *at ^= x; return r;
#elif defined(OIIO_USE_GCC_NEW_ATOMICS)
return __atomic_fetch_xor (at, x, order);
#elif defined(USE_GCC_ATOMICS)
return __sync_fetch_and_xor ((int *)at, x);
#elif defined(_MSC_VER)
// Windows
return _InterlockedXor ((volatile LONG *)at, x);
#else
# error No atomics on this platform.
#endif
}
inline long long
atomic_exchange_and_xor (volatile long long *at, long long x,
memory_order order = memory_order_seq_cst)
{
#ifdef NOTHREADS
long long r = *at; *at ^= x; return r;
#elif defined(OIIO_USE_GCC_NEW_ATOMICS)
return __atomic_fetch_xor (at, x, order);
#elif defined(USE_GCC_ATOMICS)
return __sync_fetch_and_xor (at, x);
#elif defined(_MSC_VER)
// Windows
# if defined(_WIN64)
return _InterlockedXor64 ((volatile LONGLONG *)at, x);
# else
return InterlockedXor64 ((volatile LONGLONG *)at, x);
# endif
#else
# error No atomics on this platform.
#endif
}
/// Atomic version of:
/// if (*at == compareval) {
/// *at = newval; return true;
/// } else {
/// return false;
/// }
inline bool
atomic_compare_and_exchange (volatile int *at, int compareval, int newval,
bool weak = false,
memory_order success = memory_order_seq_cst,
memory_order failure = memory_order_seq_cst)
{
#ifdef NOTHREADS
if (*at == compareval) {
*at = newval; return true;
} else {
return false;
}
#elif defined(OIIO_USE_GCC_NEW_ATOMICS)
return __atomic_compare_exchange_n (at, &compareval, newval, weak,
success, failure);
#elif defined(USE_GCC_ATOMICS)
return __sync_bool_compare_and_swap (at, compareval, newval);
#elif defined(_MSC_VER)
return (_InterlockedCompareExchange ((volatile LONG *)at, newval, compareval) == compareval);
#else
# error No atomics on this platform.
#endif
}
inline bool
atomic_compare_and_exchange (volatile long long *at, long long compareval, long long newval,
bool weak = false,
memory_order success = memory_order_seq_cst,
memory_order failure = memory_order_seq_cst)
{
#ifdef NOTHREADS
if (*at == compareval) {
*at = newval; return true;
} else {
return false;
}
#elif defined(OIIO_USE_GCC_NEW_ATOMICS)
return __atomic_compare_exchange_n (at, &compareval, newval, weak,
success, failure);
#elif defined(USE_GCC_ATOMICS)
return __sync_bool_compare_and_swap (at, compareval, newval);
#elif defined(_MSC_VER)
return (_InterlockedCompareExchange64 ((volatile LONGLONG *)at, newval, compareval) == compareval);
#else
# error No atomics on this platform.
#endif
}
/// Atomic version of: r = *at, *at = x, return r
/// For each of several architectures.
inline int
atomic_exchange (volatile int *at, int x,
memory_order order = memory_order_seq_cst)
{
#ifdef NOTHREADS
int r = *at; *at = x; return r;
#elif defined(OIIO_USE_GCC_NEW_ATOMICS)
return __atomic_exchange_n (at, x, order);
#elif defined(USE_GCC_ATOMICS)
// No __sync version of atomic exchange! Do it the hard way:
while (1) {
int old = *at;
if (atomic_compare_and_exchange (at, old, x))
return old;
}
return 0; // can never happen
#elif defined(_MSC_VER)
// Windows
return _InterlockedExchange ((volatile LONG *)at, x);
#else
# error No atomics on this platform.
#endif
}
inline long long
atomic_exchange (volatile long long *at, long long x,
memory_order order = memory_order_seq_cst)
{
#ifdef NOTHREADS
long long r = *at; *at = x; return r;
#elif defined(OIIO_USE_GCC_NEW_ATOMICS)
return __atomic_exchange_n (at, x, order);
#elif defined(USE_GCC_ATOMICS)
// No __sync version of atomic exchange! Do it the hard way:
while (1) {
long long old = *at;
if (atomic_compare_and_exchange (at, old, x))
return old;
}
return 0; // can never happen
#elif defined(_MSC_VER)
// Windows
# if defined(_WIN64)
return _InterlockedExchange64 ((volatile LONGLONG *)at, x);
# else
return InterlockedExchange64 ((volatile LONGLONG *)at, x);
# endif
#else
# error No atomics on this platform.
#endif
}
/// Memory fence / synchronization barrier
OIIO_FORCEINLINE void
atomic_thread_fence (memory_order order = memory_order_seq_cst)
{
#ifdef NOTHREADS
// nothing
#elif OIIO_USE_STDATOMIC
std::__atomic_thread_fence (order);
#elif defined(OIIO_USE_GCC_NEW_ATOMICS)
__atomic_thread_fence (order);
#elif defined(USE_GCC_ATOMICS)
__sync_synchronize ();
#elif defined(__GNUC__) && (defined(__x86_64__) || defined(__i386__))
__asm__ __volatile__ ("":::"memory");
#elif defined(_MSC_VER)
MemoryBarrier ();
#else
# error No atomics on this platform.
#endif
}
/// Atomic integer. Increment, decrement, add, and subtract in a
/// totally thread-safe manner.
template<class T>
class atomic {
public:
/// Construct with initial value.
///
atomic (T val=0) : m_val(val) { }
~atomic () { }
/// Retrieve value
///
T load (memory_order order = memory_order_seq_cst) const {
return atomic_exchange_and_add (&m_val, 0, order);
}
/// Retrieve value
///
T operator() () const { return load(); }
/// Retrieve value
///
operator T() const { return load(); }
/// Fast retrieval of value, no interchange, don't care about memory
/// fences. Use with extreme caution!
T fast_value () const { return m_val; }
/// Assign new value, atomically.
void store (T x, memory_order order = memory_order_seq_cst) {
atomic_exchange (&m_val, x, order);
}
/// Atomic exchange
T exchange (T x, memory_order order = memory_order_seq_cst) {
return atomic_exchange (&m_val, x, order);
}
/// Atomic fetch-and-add: add x and return the old value.
T fetch_add (T x, memory_order order = memory_order_seq_cst) {
return atomic_exchange_and_add (&m_val, x, order);
}
/// Atomic fetch-and-subtract: subtract x and return the old value.
T fetch_sub (T x, memory_order order = memory_order_seq_cst) {
return atomic_exchange_and_add (&m_val, -x, order);
}
/// Atomic fetch-and-and: bitwise and with x and return the old value.
T fetch_and (T x, memory_order order = memory_order_seq_cst) {
return atomic_exchange_and_and (&m_val, x, order);
}
/// Atomic fetch-and-or: bitwise or with x and return the old value.
T fetch_or (T x, memory_order order = memory_order_seq_cst) {
return atomic_exchange_and_or (&m_val, x, order);
}
/// Atomic fetch-and-xor: bitwise xor with x and return the old value.
T fetch_xor (T x, memory_order order = memory_order_seq_cst) {
return atomic_exchange_and_xor (&m_val, x, order);
}
/// Assign new value.
///
T operator= (T x) { store(x); return x; }
/// Pre-increment: ++foo
///
T operator++ () { return fetch_add(1) + 1; }
/// Post-increment: foo++
///
T operator++ (int) { return fetch_add(1); }
/// Pre-decrement: --foo
///
T operator-- () { return fetch_sub(1) - 1; }
/// Post-decrement: foo--
///
T operator-- (int) { return fetch_sub(1); }
/// Add to the value, return the new result
///
T operator+= (T x) { return fetch_add(x) + x; }
/// Subtract from the value, return the new result
///
T operator-= (T x) { return fetch_sub(x) - x; }
/// Logical and, return the new result
///
T operator&= (T x) { return fetch_and(x) & x; }
/// Logical or, return the new result
///
T operator|= (T x) { return fetch_or(x) | x; }
/// Logical xor, return the new result
///
T operator^= (T x) { return fetch_xor(x) ^ x; }
bool bool_compare_and_swap (T compareval, T newval) {
return atomic_compare_and_exchange (&m_val, compareval, newval);
}
T operator= (const atomic &x) {
T r = x();
*this = r;
return r;
}
private:
#ifdef __arm__
OIIO_ALIGN(8)
#endif
volatile mutable T m_val;
// Disallow copy construction by making private and unimplemented.
atomic (atomic const &);
};
#ifdef NOTHREADS
typedef int atomic_int;
typedef long long atomic_ll;
#else
typedef atomic<int> atomic_int;
typedef atomic<long long> atomic_ll;
#endif
OIIO_NAMESPACE_END
#endif // OPENIMAGEIO_ATOMIC_H
|