2013-05-23 19:23:32 +00:00
|
|
|
/*
|
|
|
|
* This file is part of mpv.
|
|
|
|
* Copyright (c) 2013 Stefano Pigozzi <stefano.pigozzi@gmail.com>
|
|
|
|
*
|
|
|
|
* mpv is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* mpv 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with mpv. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2014-05-20 23:04:47 +00:00
|
|
|
#ifndef MP_ATOMICS_H
|
|
|
|
#define MP_ATOMICS_H
|
2013-05-23 19:23:32 +00:00
|
|
|
|
2014-05-20 23:04:47 +00:00
|
|
|
#include <inttypes.h>
|
2013-12-30 15:33:50 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
2014-07-05 15:02:06 +00:00
|
|
|
#define HAVE_ATOMICS 1
|
|
|
|
|
2014-05-20 23:04:47 +00:00
|
|
|
#if HAVE_STDATOMIC
|
|
|
|
#include <stdatomic.h>
|
|
|
|
#else
|
|
|
|
|
|
|
|
// Emulate the parts of C11 stdatomic.h needed by mpv.
|
|
|
|
// Still relies on gcc/clang atomic builtins.
|
|
|
|
|
|
|
|
typedef struct { volatile unsigned long v; } atomic_ulong;
|
|
|
|
typedef struct { volatile int v; } atomic_int;
|
|
|
|
typedef struct { volatile _Bool v; } atomic_bool;
|
|
|
|
typedef struct { volatile long long v; } atomic_llong;
|
|
|
|
typedef struct { volatile uint_least32_t v; } atomic_uint_least32_t;
|
|
|
|
typedef struct { volatile unsigned long long v; } atomic_ullong;
|
|
|
|
|
|
|
|
#define ATOMIC_VAR_INIT(x) \
|
|
|
|
{.v = (x)}
|
2014-05-20 23:27:54 +00:00
|
|
|
|
2015-03-02 18:09:31 +00:00
|
|
|
#define memory_order_relaxed 1
|
|
|
|
#define memory_order_seq_cst 2
|
|
|
|
|
|
|
|
#define atomic_load_explicit(p, e) atomic_load(p)
|
|
|
|
|
2014-05-20 23:27:54 +00:00
|
|
|
#if HAVE_ATOMIC_BUILTINS
|
|
|
|
|
2014-05-20 23:04:47 +00:00
|
|
|
#define atomic_load(p) \
|
2014-05-20 23:27:54 +00:00
|
|
|
__atomic_load_n(&(p)->v, __ATOMIC_SEQ_CST)
|
2014-05-20 23:04:47 +00:00
|
|
|
#define atomic_store(p, val) \
|
2014-05-20 23:27:54 +00:00
|
|
|
__atomic_store_n(&(p)->v, val, __ATOMIC_SEQ_CST)
|
|
|
|
#define atomic_fetch_add(a, b) \
|
|
|
|
__atomic_fetch_add(&(a)->v, b, __ATOMIC_SEQ_CST)
|
2014-11-09 14:12:54 +00:00
|
|
|
#define atomic_compare_exchange_strong(a, b, c) \
|
|
|
|
__atomic_compare_exchange_n(&(a)->v, b, c, 0, __ATOMIC_SEQ_CST, \
|
|
|
|
__ATOMIC_SEQ_CST)
|
2014-05-20 23:04:47 +00:00
|
|
|
|
2014-01-01 19:42:13 +00:00
|
|
|
#elif HAVE_SYNC_BUILTINS
|
2014-05-20 23:27:54 +00:00
|
|
|
|
|
|
|
#define atomic_load(p) \
|
2014-05-28 20:37:37 +00:00
|
|
|
__sync_fetch_and_add(&(p)->v, 0)
|
2014-05-20 23:27:54 +00:00
|
|
|
#define atomic_store(p, val) \
|
2014-05-28 20:37:37 +00:00
|
|
|
(__sync_synchronize(), (p)->v = (val), __sync_synchronize())
|
2014-05-20 23:27:54 +00:00
|
|
|
#define atomic_fetch_add(a, b) \
|
2014-05-28 20:37:37 +00:00
|
|
|
__sync_fetch_and_add(&(a)->v, b)
|
2014-11-09 14:12:54 +00:00
|
|
|
// Assumes __sync_val_compare_and_swap is "strong" (using the C11 meaning).
|
|
|
|
#define atomic_compare_exchange_strong(p, old, new) \
|
|
|
|
({ __typeof__((p)->v) val_ = __sync_val_compare_and_swap(&(p)->v, *(old), new); \
|
|
|
|
bool ok_ = val_ == *(old); \
|
|
|
|
if (!ok_) *(old) = val_; \
|
|
|
|
ok_; })
|
2014-05-20 23:27:54 +00:00
|
|
|
|
2014-01-01 19:42:13 +00:00
|
|
|
#else
|
2014-07-05 15:02:06 +00:00
|
|
|
|
|
|
|
// This is extremely wrong. The build system actually disables code that has
|
|
|
|
// a serious dependency on working atomics, so this is barely ok.
|
|
|
|
#define atomic_load(p) ((p)->v)
|
|
|
|
#define atomic_store(p, val) ((p)->v = (val))
|
|
|
|
#define atomic_fetch_add(a, b) (((a)->v += (b)) - (b))
|
2014-11-09 14:12:54 +00:00
|
|
|
#define atomic_compare_exchange_strong(p, old, new) \
|
|
|
|
((p)->v == *(old) ? ((p)->v = (new), 1) : (*(old) = (p)->v, 0))
|
2014-07-05 15:02:06 +00:00
|
|
|
|
|
|
|
#undef HAVE_ATOMICS
|
|
|
|
#define HAVE_ATOMICS 0
|
|
|
|
|
|
|
|
#endif /* no atomics */
|
2014-05-20 23:04:47 +00:00
|
|
|
|
|
|
|
#endif /* else HAVE_STDATOMIC */
|
|
|
|
|
|
|
|
#endif
|