mirror of
https://github.com/mpv-player/mpv
synced 2024-12-19 13:21:13 +00:00
885b744767
This should be more correct. The builtins were made to directly map to C11, and the way we use them is now relatively close to how gcc implements atomics in 4.9. In particular, we make use of the load and store builtins. I'm not entirely sure why gcc didn't support stdatomic.h in 4.8 already. Maybe support for the builtins was incomplete or broken - so there's a lot of room for doubt about the correctness of this.
67 lines
2.0 KiB
C
67 lines
2.0 KiB
C
/*
|
|
* 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/>.
|
|
*/
|
|
|
|
#ifndef MP_ATOMICS_H
|
|
#define MP_ATOMICS_H
|
|
|
|
#include <inttypes.h>
|
|
#include "config.h"
|
|
|
|
#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)}
|
|
|
|
#if HAVE_ATOMIC_BUILTINS
|
|
|
|
#define atomic_load(p) \
|
|
__atomic_load_n(&(p)->v, __ATOMIC_SEQ_CST)
|
|
#define atomic_store(p, val) \
|
|
__atomic_store_n(&(p)->v, val, __ATOMIC_SEQ_CST)
|
|
#define atomic_fetch_add(a, b) \
|
|
__atomic_fetch_add(&(a)->v, b, __ATOMIC_SEQ_CST)
|
|
|
|
#elif HAVE_SYNC_BUILTINS
|
|
|
|
#define atomic_load(p) \
|
|
(__sync_synchronize(), (p)->v)
|
|
#define atomic_store(p, val) \
|
|
((p)->v = (val), __sync_synchronize())
|
|
#define atomic_fetch_add(a, b) \
|
|
(__sync_add_and_fetch(&(a)->v, b), __sync_synchronize())
|
|
|
|
#else
|
|
# error "this should have been a configuration error, report a bug please"
|
|
#endif
|
|
|
|
#endif /* else HAVE_STDATOMIC */
|
|
|
|
#endif
|